diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 0000000..8bb8e28 --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1 @@ +FROM mcr.microsoft.com/devcontainers/anaconda:1-3 diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..3948099 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,21 @@ +// Small devcontainer which loads anaconda. All postinstallation steps have to be done manually. +// This comes with snakemake and docker-in-docker. + +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/devcontainers/templates/tree/main/src/anaconda +{ + "name": "Anaconda (Python 3)", + "build": { + "context": "..", + "dockerfile": "Dockerfile" + }, + "features": { + "ghcr.io/devcontainers/features/docker-in-docker:2": {}, + // For yamlfmt + "ghcr.io/devcontainers/features/go:1": {}, + // For web display + "ghcr.io/devcontainers/features/node:1": {}, + // For scripting + "ghcr.io/va-h/devcontainers-features/uv:1": {} + } +} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..71dd116 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,105 @@ +name: Test SPRAS + +on: + pull_request: + branches: [main] + push: + branches: [main] + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow one concurrent deployment +concurrency: + group: 'pages' + cancel-in-progress: true + +jobs: + pre-commit: + name: Run pre-commit checks + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Setup Python + uses: actions/setup-python@v4 + with: + python-version: '3.11' + - name: Run pre-commit checks + uses: pre-commit/action@v3.0.0 + checks: + name: Run workflow + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + submodules: true + - name: Install uv for scripting + uses: astral-sh/setup-uv@v6.1.0 + with: + version: "0.7.13" + - name: Setup conda + uses: conda-incubator/setup-miniconda@v2 + with: + activate-environment: spras + environment-file: spras/environment.yml + auto-activate-base: false + miniconda-version: 'latest' + # Install spras in the environment using pip + - name: Install spras in conda env + shell: bash --login {0} + run: pip install ./spras + # Log conda environment contents + - name: Log conda environment + shell: bash --login {0} + run: conda list + - name: Process raw data through Snakemake + run: sh run_snakemake.sh + - name: Run Snakemake workflow for DMMMs + shell: bash --login {0} + run: snakemake --cores 1 --configfile configs/dmmm.yaml --show-failed-logs -s spras/Snakefile + # TODO: re-enable PRAs once RN/synthetic data PRs are merged. + # - name: Run Snakemake workflow for PRAs + # shell: bash --login {0} + # run: snakemake --cores 1 --configfile configs/pra.yaml --show-failed-logs -s spras/Snakefile + - name: Setup PNPM + uses: pnpm/action-setup@v4 + with: + version: 10 + - name: Install web dependencies + working-directory: ./web + run: pnpm install + - name: Run web builder + working-directory: ./web + run: pnpm build + - name: Upload built website distribution folder + uses: actions/upload-artifact@v4 + with: + name: build + path: web/dist + pages: + needs: checks + if: github.event_name != 'pull_request' + runs-on: ubuntu-latest + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + steps: + - name: Download Artifacts + uses: actions/download-artifact@v4 + with: + name: build + path: dist + - name: Setup Pages + uses: actions/configure-pages@v2 + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + path: dist + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.gitignore b/.gitignore index 82f9275..c30560a 100644 --- a/.gitignore +++ b/.gitignore @@ -14,8 +14,6 @@ dist/ downloads/ eggs/ .eggs/ -lib/ -lib64/ parts/ sdist/ var/ @@ -155,8 +153,14 @@ dmypy.json cython_debug/ # PyCharm -# JetBrains specific template is maintained in a separate JetBrains.gitignore that can -# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore -# and can be added to the global gitignore or merged into this file. For a more nuclear -# option (not recommended) you can uncomment the following to ignore the entire idea folder. -#.idea/ +.idea/ + +# Snakemake +.snakemake + +# Output +/output +/web/output + +# pnpm +.pnpm-store diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..11f80da --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "spras"] + path = spras + url = https://github.com/Reed-CompBio/spras diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..95040b7 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,30 @@ +# See https://pre-commit.com for more information +# See https://pre-commit.com/hooks.html for more hooks +# See https://pre-commit.com/ for documentation +default_language_version: + # Match this to the version specified in environment.yml + python: python3.11 +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.4.0 # Use the ref you want to point at + hooks: + # Attempts to load all yaml files to verify syntax. + - id: check-yaml + # Attempts to load all TOML files to verify syntax. + - id: check-toml + # Trims trailing whitespace. + - id: trailing-whitespace + # Preserves Markdown hard linebreaks. + args: [--markdown-linebreak-ext=md] + # Do not trim whitespace from all files, input files may need trailing whitespace for empty values in columns. + types_or: [markdown, python, yaml] + # Skip this Markdown file, which has an example of an input text file within it. + exclude: input/README.md + - repo: https://github.com/charliermarsh/ruff-pre-commit + rev: 'v0.0.269' + hooks: + - id: ruff + - repo: https://github.com/google/yamlfmt + rev: v0.17.0 + hooks: + - id: yamlfmt diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..24ee5b1 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.13 diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..22a1505 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,4 @@ +{ + "recommendations": ["astro-build.astro-vscode"], + "unwantedRecommendations": [] +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..bebd33f --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "editor.rulers": [ + 150 + ] +} \ No newline at end of file diff --git a/.yamlfmt.yaml b/.yamlfmt.yaml new file mode 100644 index 0000000..9d3236a --- /dev/null +++ b/.yamlfmt.yaml @@ -0,0 +1,2 @@ +formatter: + retain_line_breaks_single: true diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..69d5656 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,23 @@ +# Contributing + +## Helping Out + +There are `TODOs` that better enhance the reproducability of datasets or analysis of algorithm outputs, as well as +[open resolvable issues](https://github.com/Reed-CompBio/spras-benchmarking/). + +## Adding a dataset + +To add a dataset (see `datasets/yeast-osmotic-stress` as an example of a dataset): +1. Check that your dataset provider isn't already added (some of these datasets act as providers for multiple datasets) +1. Create a new folder under `datasets/` +1. Add a `raw` folder containing your data +1. Add an attached Snakefile that converts your `raw` data to `processed` data +1. Add your snakefile to the top-level `run_snakemake.sh` file. +1. If your dataset is a paper reproduction, add a `reproduction/raw` and `reproduction/processed` folder +1. Add your datasets to the appropiate `configs` + +## Adding an algorithm + +If you want to add an algorithm, refer to the [SPRAS repository](https://github.com/Reed-CompBio/SPRAS) instead. +If you want to test your new algorithm you PRed to SPRAS, you can swap out the `spras` submodule that this repository uses +with your fork of SPRAS. diff --git a/README.md b/README.md index 11ba15a..e5b4c4b 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,30 @@ -# spras-benchmarking -Benchmarking datasets for the [SPRAS](https://github.com/Reed-CompBio/spras) project +# SPRAS benchmarking + +![example workflow](https://github.com/Reed-CompBio/spras-benchmarking/actions/workflows/publish.yml/badge.svg) + +Benchmarking datasets for the [SPRAS](https://github.com/Reed-CompBio/spras) project. This repository contains gold standard datasets to evaluate on as well as paper reproductions & improvements incorporating new methodologies. + +## Setup + +This repository depends on SPRAS. If you want to reproduce the results of benchmarking locally, +you will need to setup SPRAS. SPRAS depends on [Docker](https://www.docker.com/) and [Conda](https://docs.conda.io/projects/conda/en/stable/). If it is hard to install either of these tools, +a [devcontainer](https://containers.dev/) is available for easy setup. + +```sh +conda env create -f spras/environment.yml +conda activate spras +pip install ./spras +``` + +To run the postprocess output scripts, we have a `pyproject.toml` which can be used with your desired python package manager. This separates +the `spras` conda environment from the small scripts we have. (on CI, we use [`uv`](https://docs.astral.sh/uv/).) + +To run the benchmarking pipeline, use: + +```sh +snakemake --cores 1 --configfile configs/dmmm.yaml --show-failed-logs -s spras/Snakefile +``` + +> [!NOTE] +> Each one of the dataset categories (at the time of writing, DMMM and PRA) are split into different configuration files. +> Run each one as you would want. diff --git a/configs/dmmm.yaml b/configs/dmmm.yaml new file mode 100644 index 0000000..9d0fec3 --- /dev/null +++ b/configs/dmmm.yaml @@ -0,0 +1,56 @@ +# Base Settings +hash_length: 7 +container_framework: docker +unpack_singularity: false + +container_registry: + base_url: docker.io + owner: reedcompbio + +reconstruction_settings: + locations: + reconstruction_dir: "output" + run: true + +analysis: + summary: + include: false + graphspace: + include: false + cytoscape: + include: false + ml: + include: true + aggregate_per_algorithm: true + evaluation: + include: false + +# Custom settings +algorithms: + - name: "omicsintegrator1" + params: + include: true + run1: + b: [2] + w: [.5] + d: [10] + mu: [2] + - name: "omicsintegrator2" + params: + include: true + run1: + b: [4] + g: [0] + +datasets: + - label: dmmmhiv060 + node_files: ["processed_prize_060.txt"] + edge_files: ["phosphosite-irefindex13.0-uniprot.txt"] + # Placeholder + other_files: [] + data_dir: "datasets/hiv/processed" + - label: dmmmhiv05 + node_files: ["processed_prize_05.txt"] + edge_files: ["phosphosite-irefindex13.0-uniprot.txt"] + other_files: [] + data_dir: "datasets/hiv/processed" diff --git a/configs/pra.yaml b/configs/pra.yaml new file mode 100644 index 0000000..f18c8f3 --- /dev/null +++ b/configs/pra.yaml @@ -0,0 +1,62 @@ +# Base Settings +# TODO: (same for dmmm.yaml): can we deduplicate this using snakemake? +hash_length: 7 +container_framework: docker +unpack_singularity: false + +container_registry: + base_url: docker.io + owner: reedcompbio + +reconstruction_settings: + locations: + reconstruction_dir: "output" + run: true + +analysis: + summary: + include: false + graphspace: + include: false + cytoscape: + include: false + ml: + include: true + aggregate_per_algorithm: true + evaluation: + include: false + +# Custom settings +algorithms: + - name: "omicsintegrator1" + params: + include: true + run1: + b: [2] + w: [.5] + d: [10] + mu: [2] + - name: "omicsintegrator2" + params: + include: true + run1: + b: [4] + g: [0] + - name: "pathlinker" + params: + include: true + run1: + k: [10, 20] + - name: "allpairs" + params: + include: true + +datasets: + - label: pramuscleskeletal2018 + node_files: ["sources.txt", "targets.txt"] + # DataLoader.py can currently only load a single edge file, which is the primary network + edge_files: ["interactome.tsv"] + # Placeholder + other_files: [] + # Relative path from the spras directory + data_dir: "datasets/rn-muscle-skeletal/processed" diff --git a/datasets/hiv/.gitignore b/datasets/hiv/.gitignore new file mode 100644 index 0000000..e6a1bb2 --- /dev/null +++ b/datasets/hiv/.gitignore @@ -0,0 +1 @@ +processed \ No newline at end of file diff --git a/datasets/hiv/Scripts/Data_Prep.py b/datasets/hiv/Scripts/Data_Prep.py new file mode 100644 index 0000000..1aca432 --- /dev/null +++ b/datasets/hiv/Scripts/Data_Prep.py @@ -0,0 +1,31 @@ +import pandas +import pickle +import os + +prize_05 = pandas.read_csv('raw/prize_05.csv', sep='\t', lineterminator='\n') +prize_060 = pandas.read_csv('raw/prize_060.csv', sep='\t', lineterminator='\n') + +prize_05['Uniprot'] = prize_05['Uniprot'].str.split('-', expand=False).str[0] +prize_05 = prize_05.sort_values('Prize', + ascending=False).drop_duplicates('Uniprot').sort_index() + +prize_060['Uniprot'] = prize_060['Uniprot'].str.split('-', expand=False).str[0] +prize_060 = prize_060.sort_values('Prize', + ascending=False).drop_duplicates('Uniprot').sort_index() + +prize_060_nodes = prize_060['Uniprot'].tolist() +prize_05_nodes = prize_05['Uniprot'].tolist() + +nodeset = list(set(prize_05_nodes+prize_060_nodes)) + +df = { + "NodeIDs": nodeset, + "prize_05": prize_05, + "prize_060": prize_060 +} + +if not os.path.exists('./Pickles'): + os.makedirs('./Pickles') + +with open("Pickles/NodeIDs.pkl","wb") as file: + pickle.dump(df,file) diff --git a/datasets/hiv/Scripts/Kegg_Orthology.py b/datasets/hiv/Scripts/Kegg_Orthology.py new file mode 100644 index 0000000..9f1de1c --- /dev/null +++ b/datasets/hiv/Scripts/Kegg_Orthology.py @@ -0,0 +1,64 @@ +from Bio.KEGG.KGML.KGML_parser import read +from bioservices import UniProt, KEGG +import pandas as pd +from more_itertools import chunked + +pathway = read(open("Raw_Data/ko03250.xml", 'r')) + +#Read in Kegg pathway data and keep only orthologs +entries_data = [] +for entry in pathway.entries.values(): + if entry.type == 'ortholog': + entries_data.append({ + 'name': entry.name + }) +entries_df = pd.DataFrame(entries_data) + +#Some orthologs have multiple ko codes in the same row +#The following two lines move all ko codes to individual rows +orthology_ids = entries_df['name'].str.split(' ').explode() +orthology_ids = orthology_ids.apply(lambda x: x.split(':')[1]).tolist() + +#Using bioservices KEGG class to map ortholog(ko) codes to human(hsa) codes +k = KEGG() +ko_hsa_map = k.link('hsa', '+'.join(orthology_ids)) +ko_hsa_dict = {x.split('\t')[0].split(':')[1]: x.split('\t')[1] for x in ko_hsa_map.split('\n')[:-1]} +ko_hsa_df = pd.DataFrame(ko_hsa_dict.items(),columns= ['KEGG_Orthology','HSA']) + +#Kegg .get is limited to 10 entries per call +#The following code chunks the hsa list into sets of 10 +#then calls the .get function on each which returns kegg api data in string format +hsa_chunked = list(chunked(ko_hsa_df['HSA'].tolist(),10)) +raw_uniprot = [] +for entry in hsa_chunked: + raw_uniprot.append(k.get('+'.join(entry)).split('\n///\n\n')) + +#Raw Kegg api data is filtered to obtain hsa and uniprot codes for each protein +#Note: Although bioservices .link and .conv return cleaner outputs, they do not support +#one to many relationships at this time. +#Note: bioservices also supplies a parser method for the kegg api but it is also broken at this time. +processed_uniprot = [] +for chunk in raw_uniprot: + for item in chunk: + item = item.split('\n') + processed_uniprot.append([(x.strip().split(' ')[1:],'hsa:'+(item[0].split(' '*7)[1])) + for x in item if 'UniProt' in x][0]) + +#Creates a dictionary where uniprot ids are keys and hsa ids are values +hsa_uniprot_dict = {} +for item in processed_uniprot : + for entry in item[0]: + hsa_uniprot_dict.update({'up:'+entry:item[1]}) + +#Creates a dataframe with uniprot and hsa values then merges with ko-hsa dataframe by hsa +hsa_uniprot_map = pd.DataFrame.from_dict(hsa_uniprot_dict.items()) +hsa_uniprot_map.columns = ['Uniprot','HSA'] +final_df = ko_hsa_df.merge(hsa_uniprot_map,on = 'HSA') +uniprotIDs = final_df['Uniprot'].apply(lambda x: x.split(':')[1]).tolist() + +#Filters the combined dataframe to include only rows where the uniprot code is in swissprot +u = UniProt() +tst = u.mapping(fr='UniProtKB', to='UniProtKB-Swiss-Prot',query = ','.join(uniprotIDs)) +failed_uniprot = pd.Series(list(set(tst['failedIds']))).apply(lambda x: 'up:'+x) + +final_df = final_df[~final_df['Uniprot'].isin(failed_uniprot)] diff --git a/datasets/hiv/Scripts/Name_Mapping.py b/datasets/hiv/Scripts/Name_Mapping.py new file mode 100644 index 0000000..9cace88 --- /dev/null +++ b/datasets/hiv/Scripts/Name_Mapping.py @@ -0,0 +1,205 @@ +import re +import time +import json +import zlib +from xml.etree import ElementTree +from urllib.parse import urlparse, parse_qs, urlencode +import requests +from requests.adapters import HTTPAdapter, Retry +import pickle + +POLLING_INTERVAL = 3 +API_URL = "https://rest.uniprot.org" + +retries = Retry(total=5, backoff_factor=0.25, status_forcelist=[500, 502, 503, 504]) +session = requests.Session() +session.mount("https://", HTTPAdapter(max_retries=retries)) + + +def main(): + + with open('Pickles/NodeIDs.pkl', 'rb') as file: + NodeIDs = pickle.load(file)["NodeIDs"] + + job_id = submit_id_mapping( + from_db="UniProtKB_AC-ID", to_db="UniProtKB", ids= NodeIDs + ) + if check_id_mapping_results_ready(job_id): + link = get_id_mapping_results_link(job_id) + uniprot_results = get_id_mapping_results_search(link) + + uniprot_IDs = [] + uniprot_map = {} + for i in uniprot_results.get('results'): + uniprot_IDs.append((i.get("to").get("uniProtkbId"))) + uniprot_map.update({i.get("from"):i.get("to").get("uniProtkbId")}) + + df ={ + "UniprotIDs": uniprot_IDs, + "UniprotMap": uniprot_map + } + + with open("Pickles/UniprotIDs.pkl","wb") as file: + pickle.dump(df,file) + + return + + + + +def check_response(response): + try: + response.raise_for_status() + except requests.HTTPError: + print(response.json()) + raise + + +def submit_id_mapping(from_db, to_db, ids): + request = requests.post( + f"{API_URL}/idmapping/run", + data={"from": from_db, "to": to_db, "ids": ",".join(ids)}, + ) + check_response(request) + return request.json()["jobId"] + + +def get_next_link(headers): + re_next_link = re.compile(r'<(.+)>; rel="next"') + if "Link" in headers: + match = re_next_link.match(headers["Link"]) + if match: + return match.group(1) + + +def check_id_mapping_results_ready(job_id): + while True: + request = session.get(f"{API_URL}/idmapping/status/{job_id}") + check_response(request) + j = request.json() + if "jobStatus" in j: + if j["jobStatus"] in ("NEW", "RUNNING"): + print(f"Retrying in {POLLING_INTERVAL}s") + time.sleep(POLLING_INTERVAL) + else: + raise Exception(j["jobStatus"]) + else: + return bool(j["results"] or j["failedIds"]) + + +def get_batch(batch_response, file_format, compressed): + batch_url = get_next_link(batch_response.headers) + while batch_url: + batch_response = session.get(batch_url) + batch_response.raise_for_status() + yield decode_results(batch_response, file_format, compressed) + batch_url = get_next_link(batch_response.headers) + + +def combine_batches(all_results, batch_results, file_format): + if file_format == "json": + for key in ("results", "failedIds"): + if key in batch_results and batch_results[key]: + all_results[key] += batch_results[key] + elif file_format == "tsv": + return all_results + batch_results[1:] + else: + return all_results + batch_results + return all_results + + +def get_id_mapping_results_link(job_id): + url = f"{API_URL}/idmapping/details/{job_id}" + request = session.get(url) + check_response(request) + return request.json()["redirectURL"] + + +def decode_results(response, file_format, compressed): + if compressed: + decompressed = zlib.decompress(response.content, 16 + zlib.MAX_WBITS) + if file_format == "json": + j = json.loads(decompressed.decode("utf-8")) + return j + elif file_format == "tsv": + return [line for line in decompressed.decode("utf-8").split("\n") if line] + elif file_format == "xlsx": + return [decompressed] + elif file_format == "xml": + return [decompressed.decode("utf-8")] + else: + return decompressed.decode("utf-8") + elif file_format == "json": + return response.json() + elif file_format == "tsv": + return [line for line in response.text.split("\n") if line] + elif file_format == "xlsx": + return [response.content] + elif file_format == "xml": + return [response.text] + return response.text + + +def get_xml_namespace(element): + m = re.match(r"\{(.*)\}", element.tag) + return m.groups()[0] if m else "" + + +def merge_xml_results(xml_results): + merged_root = ElementTree.fromstring(xml_results[0]) + for result in xml_results[1:]: + root = ElementTree.fromstring(result) + for child in root.findall("{http://uniprot.org/uniprot}entry"): + merged_root.insert(-1, child) + ElementTree.register_namespace("", get_xml_namespace(merged_root[0])) + return ElementTree.tostring(merged_root, encoding="utf-8", xml_declaration=True) + + +def print_progress_batches(batch_index, size, total): + n_fetched = min((batch_index + 1) * size, total) + print(f"Fetched: {n_fetched} / {total}") + + +def get_id_mapping_results_search(url): + parsed = urlparse(url) + query = parse_qs(parsed.query) + file_format = query["format"][0] if "format" in query else "json" + if "size" in query: + size = int(query["size"][0]) + else: + size = 500 + query["size"] = size + compressed = ( + query["compressed"][0].lower() == "true" if "compressed" in query else False + ) + parsed = parsed._replace(query=urlencode(query, doseq=True)) + url = parsed.geturl() + request = session.get(url) + check_response(request) + results = decode_results(request, file_format, compressed) + total = int(request.headers["x-total-results"]) + print_progress_batches(0, size, total) + for i, batch in enumerate(get_batch(request, file_format, compressed), 1): + results = combine_batches(results, batch, file_format) + print_progress_batches(i, size, total) + if file_format == "xml": + return merge_xml_results(results) + return results + + +def get_id_mapping_results_stream(url): + if "/stream/" not in url: + url = url.replace("/results/", "/results/stream/") + request = session.get(url) + check_response(request) + parsed = urlparse(url) + query = parse_qs(parsed.query) + file_format = query["format"][0] if "format" in query else "json" + compressed = ( + query["compressed"][0].lower() == "true" if "compressed" in query else False + ) + return decode_results(request, file_format, compressed) + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/datasets/hiv/Scripts/SPRAS_Formatting.py b/datasets/hiv/Scripts/SPRAS_Formatting.py new file mode 100644 index 0000000..837f52b --- /dev/null +++ b/datasets/hiv/Scripts/SPRAS_Formatting.py @@ -0,0 +1,28 @@ +import pickle +from pathlib import Path +import os + +current_directory = Path(os.path.dirname(os.path.realpath(__file__))) +PROCESSED_DIR = current_directory.parent / 'processed' + +with open('Pickles/UniprotIDs.pkl', 'rb') as file: + UniprotIDs = pickle.load(file) + +UIDs = UniprotIDs["UniprotIDs"] +UMap= UniprotIDs["UniprotMap"] + +with open('Pickles/NodeIDs.pkl','rb') as file2: + prizes = pickle.load(file2) + +prize_05 = prizes["prize_05"] +prize_060 = prizes["prize_060"] + +prize_05['Uniprot'] = prize_05['Uniprot'].apply(lambda x: UMap.get(x)) +prize_060['Uniprot'] = prize_060['Uniprot'].apply(lambda x: UMap.get(x)) + +prize_05.columns = ['NODEID','prize'] +prize_060.columns = ['NODEID','prize'] + + +prize_05.to_csv(PROCESSED_DIR / 'processed_prize_05.txt', sep='\t', header=True, index=False) +prize_060.to_csv(PROCESSED_DIR / 'processed_prize_060.txt', sep='\t', header=True, index=False) diff --git a/datasets/hiv/Snakefile b/datasets/hiv/Snakefile new file mode 100644 index 0000000..14c1d6b --- /dev/null +++ b/datasets/hiv/Snakefile @@ -0,0 +1,40 @@ +rule all: + input: + "processed/processed_prize_05.txt", + "processed/processed_prize_060.txt", + "processed/phosphosite-irefindex13.0-uniprot.txt" + +rule data_prep: + input: + "raw/prize_05.csv", + "raw/prize_060.csv" + output: + "Pickles/NodeIDs.pkl" + shell: + "uv run Scripts/Data_Prep.py" + +rule name_mapping: + input: + "Pickles/NodeIDs.pkl" + output: + "Pickles/UniprotIDs.pkl" + shell: + "uv run Scripts/Name_Mapping.py" + +rule spras_formatting: + input: + "Pickles/NodeIDs.pkl", + "Pickles/UniprotIDs.pkl" + output: + "processed/processed_prize_05.txt", + "processed/processed_prize_060.txt" + shell: + "uv run Scripts/SPRAS_Formatting.py" + +rule copy_network: + input: + "raw/phosphosite-irefindex13.0-uniprot.txt" + output: + "processed/phosphosite-irefindex13.0-uniprot.txt" + shell: + "cp raw/phosphosite-irefindex13.0-uniprot.txt processed/phosphosite-irefindex13.0-uniprot.txt" \ No newline at end of file diff --git a/hiv-benchmarking/hiv_raw_data/phosphosite-irefindex13.0-uniprot.txt b/datasets/hiv/raw/phosphosite-irefindex13.0-uniprot.txt similarity index 100% rename from hiv-benchmarking/hiv_raw_data/phosphosite-irefindex13.0-uniprot.txt rename to datasets/hiv/raw/phosphosite-irefindex13.0-uniprot.txt diff --git a/hiv-benchmarking/hiv_raw_data/prize_05.csv b/datasets/hiv/raw/prize_05.csv similarity index 100% rename from hiv-benchmarking/hiv_raw_data/prize_05.csv rename to datasets/hiv/raw/prize_05.csv diff --git a/hiv-benchmarking/hiv_raw_data/prize_060.csv b/datasets/hiv/raw/prize_060.csv similarity index 100% rename from hiv-benchmarking/hiv_raw_data/prize_060.csv rename to datasets/hiv/raw/prize_060.csv diff --git a/datasets/yeast-osmotic-stress/.gitignore b/datasets/yeast-osmotic-stress/.gitignore new file mode 100644 index 0000000..8796d48 --- /dev/null +++ b/datasets/yeast-osmotic-stress/.gitignore @@ -0,0 +1 @@ +processed diff --git a/yeast-osmotic-stress/README.md b/datasets/yeast-osmotic-stress/README.md similarity index 70% rename from yeast-osmotic-stress/README.md rename to datasets/yeast-osmotic-stress/README.md index 5eb17cd..151667c 100644 --- a/yeast-osmotic-stress/README.md +++ b/datasets/yeast-osmotic-stress/README.md @@ -4,51 +4,21 @@ This project is based on a published case study that studies the osmotic stress The set of files here was used to prepare the input Yeast Proteomic Data and conduct analysis on the output run by Omics Integrator. I swapped the files out as I got different output to analyze and compare. This worked because the number of files I worked with was small. -The major assumption here is that a user will copy the SPRAS repo separately and take the input (the prize1_dummies file and ChasmanNetwork-DirUndir.txt file) and config.yaml files here to run them with SPRAS. Then use the output files from SPRAS as the inputs to the notebooks here. I have included my ensemble file and pathway summary files here in order to run my notebooks as I did. +The major assumption here is that a user will copy the SPRAS repo separately and take the input (the prize1_dummies file and ChasmanNetwork-DirUndir.txt file) and config.yaml files here to run them with SPRAS. Then use the output files from SPRAS as the inputs to the notebooks here. I have included my ensemble file and pathway summary files here in order to run my notebooks as I did. -## Conda Environment +## Environment -The easiest way to install Python and the required packages is with [Anaconda](https://www.anaconda.com/download/). - -After installing Anaconda, you can run the following commands from this Directory -``` -conda env create -f environment.yml -conda activate yeast_env -``` -to create a conda environment with the required packages and activate that environment. -If you have a different version of Python already, you can install the specified versions of the required packages in your preferred manner instead of using Anaconda. - -## Raw Data - -List of raw data files and links to their sources: - -Prizes Input: -prizes.txt - https://github.com/gitter-lab/osmotic-stress/blob/master/Input%20Data/prizes.txt - -Network Input: -ChasmanNetwork-DirUndir.txt - https://github.com/gitter-lab/osmotic-stress/blob/master/Input%20Data/ChasmanNetwork-DirUndir.txt - -Dummy Nodes File: -dummy.txt - https://github.com/gitter-lab/osmotic-stress/blob/master/Input%20Data/dummy.txt - -Case Study Omics Integrator Edge Frequencies: -_edgeFreq.eda - https://github.com/gitter-lab/osmotic-stress/blob/master/Notebooks/Forest-TPS/_edgeFreq.eda - -Case Study Edge Results: -yeast_pcsf_network.sif - https://ars.els-cdn.com/content/image/1-s2.0-S2211124718313895-mmc4.zip - -Gold Standard Reference Pathways: -goldStandardUnionDetailed.txt - https://github.com/gitter-lab/osmotic-stress/blob/master/data/evaluation/goldStandardUnionDetailed.txt +All necessary packages are available at the top-level `pyproject.toml`. ## Scripts -The SPRAS_output folder contains my best SPRAS ensemble output, a single parameter combination output pathway with a Beta parameter of 1.75 exactly, and the pathway summary file for the ensemble file. Copy your files in here to analyze your outputs. +The SPRAS_output folder contains my best SPRAS ensemble output, a single parameter combination output pathway with a Beta parameter of 1.75 exactly, and the pathway summary file for the ensemble file. Copy your files in here to analyze your outputs. -1_Dummy_Node_Add.ipynb - Run 1st: Determines the largest prize value within our input prizes file and adds 3 dummy nodes all assigned with the highest prize to our input file. Outputs a new prizes file with the nodes added. Processes raw prizes file into the prize1_dummies file. Use this prize1_dummies file as your input to SPRAS. Note: I determined that the prizes file already contained 2 of the 5 dummy nodes with prizes, because of this I manually appended the other 3 from the dummy.txt file. +1_Dummy_Node_Add.ipynb - Run 1st: Determines the largest prize value within our input prizes file and adds 3 dummy nodes all assigned with the highest prize to our input file. Outputs a new prizes file with the nodes added. Processes raw prizes file into the prize1_dummies file. Use this prize1_dummies file as your input to SPRAS. Note: I determined that the prizes file already contained 2 of the 5 dummy nodes with prizes, because of this I manually appended the other 3 from the dummy.txt file. -2_Node_Summary_Histo.ipynb - Run 2nd: Takes the pathway-summary file and creates a histogram of the node results that were collected with prizes. Helps begin to understand the outputs. +2_Node_Summary_Histo.ipynb - Run 2nd: Takes the pathway-summary file and creates a histogram of the node results that were collected with prizes. Helps begin to understand the outputs. -3_Oi1_Output_Eval.ipynb - Run 3rd: Main analysis file. Takes the best resulting ensemble pathway file, the gold standard nodes, the case study edge results, and the case study edge frequencies as input files. Performs various exploratory data analysis and data prep tasks. Main task is performing set overlap between case study edge results and our results. Creates stats for describing the difference. Includes Venn Diagram visualization code too. One key thing with this file is when trying to analyze the single pathway output file (instead of an ensemble file) you will need to change the path to point inside the folder with the single pathway output file. +3_Oi1_Output_Eval.ipynb - Run 3rd: Main analysis file. Takes the best resulting ensemble pathway file, the gold standard nodes, the case study edge results, and the case study edge frequencies as input files. Performs various exploratory data analysis and data prep tasks. Main task is performing set overlap between case study edge results and our results. Creates stats for describing the difference. Includes Venn Diagram visualization code too. One key thing with this file is when trying to analyze the single pathway output file (instead of an ensemble file) you will need to change the path to point inside the folder with the single pathway output file. File_compare.py - Optional: I used this script to compare two network input files I received to confirm they were in fact the same input I needed for my Omics Integrator input. Can be used to compare any two files passed in as paths. This was specific to my case so if you use the input files here you do not need to run this. @@ -56,6 +26,6 @@ File_compare.py - Optional: I used this script to compare two network input file One huge factor in why my results may have been different than the original case study has to do with the lack of a dummy node parameter implemented in the SPRAS version of Omics Integrator 1, which allows a user to pass a file with a list of dummy nodes that the algorithm has to start its reconstructions through. This feature has since been added to SPRAS. -In the case study they ran the tuned parameters with a Beta of 1.75 and r of 0.01 (to add edge noise) and generated 1000 forests. In my case Omics integrator doesn't have a way to run multiple outputs with the same parameter combination in order to ensemble the results and look at edge frequencies. My work around was to use `np.linspace` with a range between 1 and 2 and running 250 - 1000 parameter combinations. The idea being to run parameters as close to 1.75 as possible and compare the outputs. +In the case study they ran the tuned parameters with a Beta of 1.75 and r of 0.01 (to add edge noise) and generated 1000 forests. In my case Omics integrator doesn't have a way to run multiple outputs with the same parameter combination in order to ensemble the results and look at edge frequencies. My work around was to use `np.linspace` with a range between 1 and 2 and running 250 - 1000 parameter combinations. The idea being to run parameters as close to 1.75 as possible and compare the outputs. When I tried to run Cytoscape on anything greater than or equal to 250 combinations, it would hang and then crash with a Java heap space error (see [SPRAS issue](https://github.com/Reed-CompBio/spras/issues/171)). More memory would need to be allocated to potentially fix this. diff --git a/datasets/yeast-osmotic-stress/Snakefile b/datasets/yeast-osmotic-stress/Snakefile new file mode 100644 index 0000000..8f1e9fe --- /dev/null +++ b/datasets/yeast-osmotic-stress/Snakefile @@ -0,0 +1,20 @@ +rule all: + input: + "processed/prizes1_dummies.txt", + "processed/network1.txt" + +rule process_prizes: + input: + "raw/prizes.txt" + output: + "processed/prizes1_dummies.txt" + shell: + "uv run process_prizes.py" + +rule copy_network: + input: + "raw/ChasmanNetwork-DirUndir.txt" + output: + "processed/network1.txt" + shell: + "cp raw/ChasmanNetwork-DirUndir.txt processed/network1.txt" diff --git a/datasets/yeast-osmotic-stress/process_prizes.py b/datasets/yeast-osmotic-stress/process_prizes.py new file mode 100644 index 0000000..81682a6 --- /dev/null +++ b/datasets/yeast-osmotic-stress/process_prizes.py @@ -0,0 +1,22 @@ +# This prepares prizes with dummy nodes. +import pandas as pd +from pathlib import Path +import os + +current_directory = Path(os.path.dirname(os.path.realpath(__file__))) + +if __name__ == '__main__': + # Get the raw prizes DF + prizes = current_directory / 'raw' / 'prizes.txt' + prizes_df = pd.read_csv(prizes, sep='\t', header=None, names=["NODEID", "prize"]) + + # Use the manually curated prize info + # TODO: where did this come from? + prizes_df2 = pd.DataFrame(data={"NODEID": ['YGR014W','YDR420W','YER118C'], + "prize": 10.051863}, index=[1596,1597,1598]) + + new_prizes_path = current_directory / 'processed' / 'prizes1_dummies.txt' + new_prizes = pd.concat([prizes_df, prizes_df2]) + new_prizes.to_csv(new_prizes_path, sep='\t', index=False, + columns=['NODEID','prize'], + header=['NODEID','prize']) diff --git a/yeast-osmotic-stress/Raw_data/ChasmanNetwork-DirUndir.txt b/datasets/yeast-osmotic-stress/raw/ChasmanNetwork-DirUndir.txt similarity index 100% rename from yeast-osmotic-stress/Raw_data/ChasmanNetwork-DirUndir.txt rename to datasets/yeast-osmotic-stress/raw/ChasmanNetwork-DirUndir.txt diff --git a/datasets/yeast-osmotic-stress/raw/README.md b/datasets/yeast-osmotic-stress/raw/README.md new file mode 100644 index 0000000..543a7e8 --- /dev/null +++ b/datasets/yeast-osmotic-stress/raw/README.md @@ -0,0 +1,21 @@ +# Raw Data + +List of raw data files and links to their sources: + +Prizes Input: +prizes.txt - https://github.com/gitter-lab/osmotic-stress/blob/master/Input%20Data/prizes.txt + +Network Input: +ChasmanNetwork-DirUndir.txt - https://github.com/gitter-lab/osmotic-stress/blob/master/Input%20Data/ChasmanNetwork-DirUndir.txt + +Dummy Nodes File: +dummy.txt - https://github.com/gitter-lab/osmotic-stress/blob/master/Input%20Data/dummy.txt + +Case Study Omics Integrator Edge Frequencies: +_edgeFreq.eda - https://github.com/gitter-lab/osmotic-stress/blob/master/Notebooks/Forest-TPS/_edgeFreq.eda + +Case Study Edge Results: +yeast_pcsf_network.sif - https://ars.els-cdn.com/content/image/1-s2.0-S2211124718313895-mmc4.zip + +Gold Standard Reference Pathways: +goldStandardUnionDetailed.txt - https://github.com/gitter-lab/osmotic-stress/blob/master/data/evaluation/goldStandardUnionDetailed.txt diff --git a/yeast-osmotic-stress/Raw_data/_edgeFreq.eda b/datasets/yeast-osmotic-stress/raw/_edgeFreq.eda similarity index 100% rename from yeast-osmotic-stress/Raw_data/_edgeFreq.eda rename to datasets/yeast-osmotic-stress/raw/_edgeFreq.eda diff --git a/datasets/yeast-osmotic-stress/raw/dummy.txt b/datasets/yeast-osmotic-stress/raw/dummy.txt new file mode 100644 index 0000000..c599ff3 --- /dev/null +++ b/datasets/yeast-osmotic-stress/raw/dummy.txt @@ -0,0 +1,5 @@ +YDR420W +YGR014W +YER118C +YIL147C +YPR075C \ No newline at end of file diff --git a/yeast-osmotic-stress/Raw_data/goldStandardUnionDetailed.txt b/datasets/yeast-osmotic-stress/raw/goldStandardUnionDetailed.txt similarity index 100% rename from yeast-osmotic-stress/Raw_data/goldStandardUnionDetailed.txt rename to datasets/yeast-osmotic-stress/raw/goldStandardUnionDetailed.txt diff --git a/yeast-osmotic-stress/Raw_data/prizes.txt b/datasets/yeast-osmotic-stress/raw/prizes.txt similarity index 100% rename from yeast-osmotic-stress/Raw_data/prizes.txt rename to datasets/yeast-osmotic-stress/raw/prizes.txt diff --git a/yeast-osmotic-stress/Raw_data/yeast_pcsf_network.sif b/datasets/yeast-osmotic-stress/raw/yeast_pcsf_network.sif similarity index 100% rename from yeast-osmotic-stress/Raw_data/yeast_pcsf_network.sif rename to datasets/yeast-osmotic-stress/raw/yeast_pcsf_network.sif diff --git a/hiv-benchmarking/10_build_prc_gene-ontology_hiv05_hiv060.ipynb b/hiv-benchmarking/10_build_prc_gene-ontology_hiv05_hiv060.ipynb deleted file mode 100644 index ffcb98e..0000000 --- a/hiv-benchmarking/10_build_prc_gene-ontology_hiv05_hiv060.ipynb +++ /dev/null @@ -1,2804 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "id": "ba432adb-a094-4edc-b820-158249c12ea0", - "metadata": {}, - "source": [ - "## Build Precision Recall Curve: " - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "id": "52e8ce7b-1420-4bab-9b97-f6a3720334a6", - "metadata": {}, - "outputs": [], - "source": [ - "import pandas as pd\n", - "import numpy as np\n", - "from sklearn.metrics import precision_recall_curve, average_precision_score\n", - "from collections import Counter\n", - "import matplotlib.pyplot as plt" - ] - }, - { - "cell_type": "markdown", - "id": "11bdeb6e-7d88-4a1f-b44f-a9da13037b29", - "metadata": {}, - "source": [ - "#### Functions: builds the dataframe of Node, scores, and label - needed to build the PRC" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "id": "7e03b1e7-ba34-41d9-9325-9afb81337a66", - "metadata": {}, - "outputs": [], - "source": [ - "def build_prc_df(ensemble_df, go_ensemble_list):\n", - " go_ensemble_prc_df = ensemble_df.copy()\n", - " go_ensemble_prc_df['y_go'] = 0\n", - " go_ensemble_prc_df.loc[go_ensemble_prc_df['Node'].isin(go_ensemble_list), 'y_go'] = 1\n", - " # go0000398_ensemble05_prc_df.head()\n", - " return go_ensemble_prc_df" - ] - }, - { - "cell_type": "markdown", - "id": "0c6135af-febc-4478-a3b0-fe63ea11f752", - "metadata": {}, - "source": [ - "##### Function: builds the dataframe that lists the number of times each biological process shows up in the overlap of ensemble pathways and the particular GO term" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "id": "569d5736-df6e-476a-9937-08a27fbbd8ca", - "metadata": {}, - "outputs": [], - "source": [ - "def build_biological_process_count_df(go_ensemble_prc_df, go_df):\n", - " overlap_df = go_ensemble_prc_df[go_ensemble_prc_df['y_go'] == 1].reset_index().drop('index', axis=1)\n", - " print(len(overlap_df))\n", - " merged_df = pd.merge(overlap_df, go_df, left_on='Node', right_on='Entry Name')\n", - " biological_processes = merged_df['Gene Ontology (biological process)']\n", - " # expand the list of biological processes on ';' char\n", - " biological_processes_go = [element.strip() for string in biological_processes for element in string.split(';')]\n", - " # build count df\n", - " df = pd.DataFrame(biological_processes_go, columns=['Element'])\n", - " go_count_df = df['Element'].value_counts().reset_index()\n", - " go_count_df.columns = ['Element', 'Count']\n", - " return go_count_df" - ] - }, - { - "cell_type": "markdown", - "id": "a1156966-16a7-4800-bd77-1ff26ec220dd", - "metadata": {}, - "source": [ - "## Part 1: Compare SPRAS hiv05 max node frequency and GO terms" - ] - }, - { - "cell_type": "markdown", - "id": "571e9d6d-5eee-4956-bf47-c74085f92d4e", - "metadata": {}, - "source": [ - "### Load hiv05 max ensemble node frequency" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "id": "023c43be-084f-4a8c-b3bd-45b57bbf1417", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Nodemax_freq
01433B_HUMAN0.16
11433E_HUMAN0.16
21433G_HUMAN0.16
31433S_HUMAN0.12
41433T_HUMAN0.16
\n", - "
" - ], - "text/plain": [ - " Node max_freq\n", - "0 1433B_HUMAN 0.16\n", - "1 1433E_HUMAN 0.16\n", - "2 1433G_HUMAN 0.16\n", - "3 1433S_HUMAN 0.12\n", - "4 1433T_HUMAN 0.16" - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "ensemble05_df = pd.read_csv(\"hiv_processed_data/hiv05-max-node-freq-ensemble.csv\")\n", - "ensemble05_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "id": "506ce371-cdeb-4e15-b1c5-05b76aacfa87", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "1237" - ] - }, - "execution_count": 5, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "ensemble05_proteins_list = ensemble05_df['Node']\n", - "len(ensemble05_proteins_list)" - ] - }, - { - "cell_type": "markdown", - "id": "7cb01ffc-2002-4b0f-9c63-c48608a20f54", - "metadata": {}, - "source": [ - "### 5 min: GO term --> mRNA splicing, via spliceosome (GO:0000398)" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "id": "6006d0e8-017d-4248-973b-c0cc76b6e690", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
EntryReviewedEntry NameProtein namesGene NamesGene Ontology (biological process)
0O00148reviewedDX39A_HUMANATP-dependent RNA helicase DDX39A (EC 3.6.4.13...DDX39A DDX39mRNA export from nucleus [GO:0006406]; mRNA sp...
1O14744reviewedANM5_HUMANProtein arginine N-methyltransferase 5 (PRMT5)...PRMT5 HRMT1L5 IBP72 JBP1 SKB1chromatin remodeling [GO:0006338]; circadian r...
2O14893reviewedGEMI2_HUMANGem-associated protein 2 (Gemin-2) (Component ...GEMIN2 SIP1mRNA processing [GO:0006397]; negative regulat...
3O15234reviewedCASC3_HUMANProtein CASC3 (Cancer susceptibility candidate...CASC3 MLN51intracellular mRNA localization [GO:0008298]; ...
4O15541reviewedR113A_HUMANE3 ubiquitin-protein ligase RNF113A (EC 2.3.2....RNF113A RNF113 ZNF183DNA repair [GO:0006281]; mRNA splicing, via sp...
\n", - "
" - ], - "text/plain": [ - " Entry Reviewed Entry Name \\\n", - "0 O00148 reviewed DX39A_HUMAN \n", - "1 O14744 reviewed ANM5_HUMAN \n", - "2 O14893 reviewed GEMI2_HUMAN \n", - "3 O15234 reviewed CASC3_HUMAN \n", - "4 O15541 reviewed R113A_HUMAN \n", - "\n", - " Protein names \\\n", - "0 ATP-dependent RNA helicase DDX39A (EC 3.6.4.13... \n", - "1 Protein arginine N-methyltransferase 5 (PRMT5)... \n", - "2 Gem-associated protein 2 (Gemin-2) (Component ... \n", - "3 Protein CASC3 (Cancer susceptibility candidate... \n", - "4 E3 ubiquitin-protein ligase RNF113A (EC 2.3.2.... \n", - "\n", - " Gene Names \\\n", - "0 DDX39A DDX39 \n", - "1 PRMT5 HRMT1L5 IBP72 JBP1 SKB1 \n", - "2 GEMIN2 SIP1 \n", - "3 CASC3 MLN51 \n", - "4 RNF113A RNF113 ZNF183 \n", - "\n", - " Gene Ontology (biological process) \n", - "0 mRNA export from nucleus [GO:0006406]; mRNA sp... \n", - "1 chromatin remodeling [GO:0006338]; circadian r... \n", - "2 mRNA processing [GO:0006397]; negative regulat... \n", - "3 intracellular mRNA localization [GO:0008298]; ... \n", - "4 DNA repair [GO:0006281]; mRNA splicing, via sp... " - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "go0000398_path = \"hiv_raw_data/uniprotkb_go_0000398_AND_taxonomy_id_96_2024_07_25.tsv\"\n", - "go0000398_df = pd.read_csv(go0000398_path, sep='\\t')\n", - "go0000398_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "id": "69148031-f4d4-4a18-8b77-e25831c98940", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Number of proteins in GO:0000398 and human taxonomy: 677\n", - "Number of proteins in GO:0000398 and human taxonomy, intersected with SPRAS hiv05 ensemble pathway nodes: 51\n" - ] - } - ], - "source": [ - "go0000398_proteins_list = go0000398_df['Entry Name']\n", - "print(\"Number of proteins in GO:0000398 and human taxonomy: \", len(go0000398_proteins_list))\n", - "go0000398_ensemble05 = list(set(go0000398_proteins_list) & set(ensemble05_proteins_list))\n", - "print(\"Number of proteins in GO:0000398 and human taxonomy, intersected with SPRAS hiv05 ensemble pathway nodes: \", len(go0000398_ensemble05))" - ] - }, - { - "cell_type": "markdown", - "id": "c373b267-8269-4c3d-9354-e08b191c6787", - "metadata": {}, - "source": [ - "#### Building the PRC:" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "id": "f64d814c-ffce-409a-b889-05dc1b6d4995", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Nodemax_freqy_go
01433B_HUMAN0.160
11433E_HUMAN0.160
21433G_HUMAN0.160
31433S_HUMAN0.120
41433T_HUMAN0.160
\n", - "
" - ], - "text/plain": [ - " Node max_freq y_go\n", - "0 1433B_HUMAN 0.16 0\n", - "1 1433E_HUMAN 0.16 0\n", - "2 1433G_HUMAN 0.16 0\n", - "3 1433S_HUMAN 0.12 0\n", - "4 1433T_HUMAN 0.16 0" - ] - }, - "execution_count": 8, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "go0000398_ensemble05_prc_df = build_prc_df(ensemble05_df, go0000398_ensemble05)\n", - "go0000398_ensemble05_prc_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "id": "ac579730-ec4a-4d6c-b95e-3e27de33b217", - "metadata": {}, - "outputs": [], - "source": [ - "# extract needed columns from df\n", - "y_true = go0000398_ensemble05_prc_df['y_go']\n", - "y_scores = go0000398_ensemble05_prc_df['max_freq']" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "id": "2360c54c-28c5-4833-8c0f-375916c4373e", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0.0688765896417117\n" - ] - } - ], - "source": [ - "precision, recall, thresholds = precision_recall_curve(y_true, y_scores)\n", - "# use avg precision score to calculate the area under the curve of precision recall curve\n", - "auc_precision_recall = average_precision_score(y_true, y_scores)\n", - "print(auc_precision_recall)" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "id": "9a6d27e6-c94f-47ed-9a82-3badc9a59858", - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "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58+xb98+LF68GDY2NujUqZOu3LfffoujR49i9+7desnCkCFDUL16dYwaNQq//fYbgIzesvXr16NPnz5YtWqV3lIlmWNYtmxZ3Lt3DwrFf6+PoUOHYvz48Zg6dSp+//131K9fP69hzJH2hIrMX+CF4d69e/jnn3/0fvBoNBq4ublhzZo1eomlEALr169HlSpVUK9ePQAZP4K++uorjBkzBtOnT9eV/fjjj9G5c2fdSYmZX8dZ/f333wCAcuXKZVtmxYoVaNKkCcqWLQsgowd+1qxZWL9+PYYNG1agx6517do1JCcno1atWi9Vj1bp0qXzXPaXX37JNZl98OCBroc8Ky8vL12ZnBLLBw8e6JU3Vsf9+/cBZPQoRkdHIzU1FV26dMGgQYMwbdo0XLt2DV999RWaNGmC06dPo0qVKgAyLoSxY8cOhIaG6iWFKpUKy5Ytw4ABA/SO179/f9y8eRPz589HgwYNdNsbN26M06dP610YJL91a5UrVw7Hjh3LNh5kmphYUon15Zdf4ssvv9TdlslkaNOmDX744Qe9ck5OTno9P0BGQnHx4kVMmDDB4PKcjRs3hrW1NcLDw9G3b188ffoUe/fuRatWrYz2TOa0lpv2S+jAgQMICQkxuMpTTrZt2wYAGDdunN4xypUrh969e2PFihX4+++/Ub16dd19AQEBBj0uzZs3R1hYGG7fvq1XNicHDhww+OKuVasWFi9eDBcXF922DRs2oFy5cqhbt65BD1JQUBBWr16NpKQkWFpaYv369QCAGTNmGMQs822lUqn7d1paGuLj46HRaNCyZUtMnToVp06dkiyx1A4BSnFRg5yEhIToJZVAxlq17777LubMmYO//vpL99ycOHECN2/exNdff60ru2HDBl09WePcsWNH7Nixw+jlaTN7/PgxAMDR0dHo/SdPnsTff/+NFStW6LZVrVoV9erVw/Lly186sZQ61rldkUwrPT0dFStWzLVcYmKi0aQSgG5R79ymYmjvN1ZP1jq0Kw08ffoUY8eOxbRp03Rl/f390bJlS0yZMgUbN27Ubbezs8Mbb7yBgIAANG/eHElJSVi3bh0++OADANBLAM3MzODr64vAwEC0b98eXl5euHjxImbPno02bdpg//79eq+F/NSt5eTkhOTkZN2C6fR6YGJJ2bI0l+PSlFbF3QyjLM2NXy82PwYMGIC3334bMpkMVlZWqFixotHhurJly8LMzEyvV+zy5csAgClTpuiGYLPSLvVx/fp1CCH05mbmla+vLyZMmICpU6fCw8MDNWvWRIsWLdCtWzejQ26ZaeeJVq1a1eC+N954Q1cmc7Ko7WnKTBsT7ZIpSUlJuvlXWvb29rC0tNTdrlu3LqZPnw4hBO7du4d58+YhOjoa1tbWevtdvnwZSUlJOSbMMTEx8Pb2xrVr1+Di4pLt/L7MFi9ejKVLl+Lvv/826BF+9uxZrvvnlTbJiYuLyzbhkkLmHvTMQkNDMWfOHKxZswYzZ84EkDFnzczMDO+9956unPb1auy1oJV1aZqstD3b4t8ri2W1fPlymJubo1atWrppD0DGD4Rp06bhzJkzetMa8kp73MyxlkLLli3zVC49PT1Px7SysjI63xXIeM9oy+RWBwC9H6rZ1ZH5/ZZ16acWLVrAx8dHb5g5OjoadevWxfvvv6/Xa92nTx+0aNECH3/8Mdq3b697L44bNw6LFy/GlStXdNs6duyIt956C4GBgZg6dSrmzp1boLq1RB6uUkemh4klZUsmk730cPOrrHz58nn6cjH2ZaD9QBw+fLhuEnpWpUqV0itbUJMnT0bfvn0RFhaGI0eOYOXKlZg9ezY+/vhjLFiwINv9hBDZfmBn16bMV2zKbp9NmzYZfJGtXLlSb0FxJycnvdh26dIF1atXR5cuXfDXX3/pvhSFEKhcuTLmz5+fbc+ttuczr3GcM2cORo0aheDgYAwbNgweHh5QKpV48OAB+vbtm+PUg/x644038Mcff+DcuXO6k5Nyk91zkt1JF0D2Cckbb7yBWrVqYf369fj666+RnJyM7du3o3nz5vD09NSV08YuLCws2ws3ZHcyjJb2eTCWmCckJGDTpk1Qq9WoU6eO0f2XL1+ul1haWlri6dOn2R5P2zOnfa1UqFABFhYWujWGX1bWK6ZlJz09XW9aRXY8PT1x6dIlpKSkGPQ4aoe4Mz8n2dUBZAx3a4ews9ahHRJ3dHSEtbU1EhISjP7Ycnd3xx9//KG7vWzZMjx58gQ9evQwKNuzZ08cOHAAJ0+eRKdOnaBWqzFnzhwEBwcbJINvvfUW3Nzc9JLW/NSd2dOnT2FhYZHnKTZkGl7frIGoEGmHxszMzHJNTitUqACZTPZSX4h+fn4YOnQohg4dipSUFHTq1AkLFy7EiBEj4OfnZ3SfcuXKQQiBS5cuGXzZ52W+XHZatWplMIyYW1JSqlQpTJ06Ff3798f8+fMxZswYABlxjIyMRPPmzXP98q5UqRJ27NiBqKioHHst161bhzJlymDPnj16yerevXtze2j51r17d6xevRrff/99nhNLR0dHnD171mC7toc5v0JDQzFixAjs378fT548QVxcnN5FHICMOO/duxdeXl663ur8qlatGmQymV5vpNbmzZsRHx+PqVOnolKlSgb3L1myBBs3bsTcuXN1iaKfnx+uXLmCmJgYg2F+IGN+sa2tre4+CwsLtGvXDj///DP27t2L1q1bF+hxaOWl51srL3Ms69Wrh3379uHkyZMIDAzUu+/EiROoWLFijvMrtXUAwPHjxw2mzRw/fhwymQz+/v4AMn6g1KtXD7/99hvu3btnkIjeu3dPLynUJqbGFkLXbtP+uImJiUFKSorRstrymX8I5afuzK5fv57n6TVkOrjcEFEB1KpVC2+88QaWLVtm9Is2LS1N1xvj6OiINm3aIDw83Oi8rpx64mJjYw0+rFUqlS6Ry6nHp0uXLgCgG5LWunXrFjZs2IBKlSrlODSaHXd3d7Rs2VLvLy9f0n369EHZsmUxa9Ys3fyw9957DzExMZg9e7bRfTIPz7777rsAgM8++8yg1zHz45PLM1YMyLwtLS1Nb86hVNq1a4dmzZph06ZNWLhwodEyd+7cwcSJE3W3K1asiPj4eN0ZwEBGr9g333xToDb07t0bCoUCa9aswdq1a2Fra6t77rW0w+Kff/650S/47IZwMytdujSqVq2q126t5cuXw8HBAaNHj0b37t0N/j744APExsbi559/1u2j7b3SDqdmtm/fPvz9999o37693o+DKVOmwMrKCgMHDtQN72e1detW7Ny5M9fHExERkae/ffv25Sn50U6ryfp4tm7ditu3b+tNTQAyVpu4cuWK3vs7MDAQnp6e+OGHH/SG3+/evYstW7agWbNmer2e2h8QWV97P//8MyIjI/VGU7Tv9VWrVumVTUtLw5o1a2BmZqbrUXZ1dYWTkxMOHz6MW7du6ZXfuXMnnjx5ojdPOT91a0VHR+POnTsGSTiZPvZYEhWATCbDmjVr0Lx5c9SqVQv9+/dHtWrVkJiYiOvXr2Pr1q2YPn26bnj422+/RcOGDdG2bVvdckNJSUk4deoUypQpgxkzZhg9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VFSU3pqWffv2RXx8PL799lv873//g4ODA5o3b44ZM2YU10MgIiIiKnJMLLMxZMgQDBkyxOh9q1atMtj28ccf4+OPPy7kVhERERG9ujgUTkRERESSYGJJRERERJJgYklEREREkmBiSURERESSYGJJRERERJJgYklEREREkmBiSURERESSYGJJRERERJJgYklEREREkmBiSURERESSYGJJRERERJJgYklEREREkmBiSURERESSYGJJRERERJJgYklEREREkmBiSURERESSYGJJRERERJJgYklEREREkmBiSURERESSYGJJRERERJJgYklEREREkmBiSURERESSYGJJRERERJJgYklEREREkmBiSURERESSYGJJRERERJJgYklEREREkmBiSURERESSYGJJRERERJJgYklEREREkmBiSURERESSYGJJRERERJJgYklEREREkmBiSURERESSYGJJRERERJJQFHcDpJCWloYnT54gJSUl2zI+Pj5F2CIiIiKiksekE8v9+/dj6tSpOHnyJNRqdbblZDIZ0tLSirBlRERERCWPySaWu3btQpcuXaDRaFCqVCmULVsWNjY2xd0sIiIiohLLZBPLyZMnIz09HfPmzcPQoUMhl8uLu0lEREREJZrJJpZ///03AgICMGzYsOJuChERERHBhM8Kt7Gxgaura3E3g4iIiIj+ZbKJZcuWLfHHH38gPT29uJtCRERERDDhxHLGjBlISkrC//73P2g0muJuDhEREVGJZ7JzLFeuXIk2bdpgwYIF2LVrF5o2bQovLy/IZDKDsjKZDOPHjy+GVhIRERGVHCabWE6aNAkymQxCCNy4cQM3btzItiwTSyIiIqLCZ7KJ5cqVKwu1/sWLF2PWrFmIiopCtWrVMG/ePDRp0iTb8ikpKZgyZQrWrVuH6OhoeHl5Ydy4cejfv3+htpOIiIjoVWGyiWVoaGih1b1p0yYMHz4cixcvRqNGjfDdd9+hTZs2uHTpUraXhuzZsycePnyI5cuXo3z58nj06BGv9kNEREQliskmloVp7ty5GDBgAAYOHAgAmDdvHvbt24clS5Zg+vTpBuX37t2LQ4cO4ebNm3B0dAQAlClTpiibTERERFTsXovE8vfff8eRI0cQGRkJmUwGd3d3NGnSBPXr1893XampqTh79izGjBmjtz04OBjHjx83us/OnTtRt25d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iLlz54pz587plm/i99Lrj4mliVu0aJHw9fUVSqVS1KlTRxw6dEh3X2hoqAgMDNQr/9tvv4natWsLpVIpypQpI5YsWVLELX615SeegYGBAoDBX2hoaNE3/BWW39doZkwsDeU3npcvXxYtW7YUlpaWwsvLS4wcOVIkJiYWcatfbfmN6YIFC0TVqlWFpaWlcHd3F++++664f/9+Ebf61XTw4MEcPxf5vfT6kwnBvnsiIiIienmcY0lEREREkmBiSURERESSYGJJRERERJJgYklEREREkmBiSURERESSYGJJRERERJJgYklEREREkmBiSURERESSYGJJRCZHJpPp/ZmZmcHe3h5vvvkmvvnmG6jV6uJuYp707dsXMpkMv/32m972pk2bQiaT4fbt28XSLiKiglIUdwOIiAoqNDQUAKDRaHD79m0cP34cp06dwu7du7F3714oFPyIIyIqSvzUJSKTtWrVKr3bp06dQtOmTfHrr7/ixx9/xHvvvVc8DSMiKqE4FE5Er40GDRqgb9++AIB9+/YVb2OIiEogJpZE9FqpVq0aAODRo0cG9wkhsHr1arz11ltwcHCApaUlatSogdmzZ2c7LzMhIQHTp09HnTp1YGtrCxsbG1StWhXDhw/HnTt3dOWeP3+OhQsXolWrVvD19YVKpYKTkxNat26NiIiIwnmwRESvGCaWRPRaiY+PBwC4uLjobU9PT0evXr3Qt29fXLhwAXXr1kWrVq3w+PFjfPrpp+jcuTPS09P19omKikL9+vXx+eef486dO2jevDlat24NpVKJBQsW4ODBg7qyJ0+exLBhw3D58mVUqFABXbp0QaVKlRAeHo5WrVphxYoVhf/giYiKGedYEtFrZe/evQCA1q1b622fPXs2fvrpJwQFBWH9+vUoXbo0gIweyXfeeQe//PILlixZgqFDh+r26dOnDy5duoR33nkH33//PaytrXX3Xbt2DRqNRne7UqVKOHbsGBo2bKh33HPnzqF58+YYMWIEevbsCRsbG8kfMxHRq4I9lkRk8tLT03Hjxg18+OGHOHz4MDp27IhevXrp7k9LS8OsWbNga2uLDRs26JJKALC2tsb3338PlUqF7777Trf9999/x6+//go3NzeDpBIAKlSogMqVK+tu+/n5GSSVAFC7dm0MHToUcXFxej2cRESvI/ZYEpHJkslkBtsGDBiAZcuWwczsv9/N586dQ0xMDNq0aQNnZ2eDfVxdXVGhQgX89ddfSEpKgqWlJfbv3w8AePfddw2SyuxoNBr8+uuvOH78OKKjo5GcnAwgo3cz8/+JiF5XTCyJyGRp17FMTk7G+fPn8c8//2D58uUICAjAgAEDdOW0C43v2bPHaDKa2dOnT+Hp6Yl79+4BAMqVK5entty/fx/t27fHhQsXsi2jnf9JRPS6YmJJRCYr6zqWM2fOxGeffYaPP/4YLVu2hK+vLwDo5kJWqFDB6HB1ZiqVSu92bomo1sCBA3HhwgV07doVn332GSpVqgRbW1uYmZlh2bJlGDRoEIQQeXxkRESmiYklEb02Ro8ejV9//RXh4eGYPHmy7kxsLy8vAED16tUNktHseHt7AwCuX7+ea9mEhARERETA1dUVmzdvhlwu17v/5s2b+XgURESmiyfvENFrZcaMGZDJZFi7dq1uncl69erB3t4eBw8eRFxcXJ7qadmyJQBg/fr1SExMzLFsbGws0tPT4e7ubpBUpqWlYdu2bQV4JEREpoeJJRG9VmrVqoVOnTohLS0NM2fOBJAxvD1q1Cg8f/4c3bp101vYXOvixYvYtGmT7nb9+vXRrFkzREdHY9CgQQbJ5fXr13HlyhUAGWtm2tvb46+//sKxY8d0ZTQaDUaPHo2rV68WxkMlInrlMLEkotfOpEmTIJPJsGLFCkRHRwMAPv/8c7zzzjvYv38/KlWqhIYNG+Ltt99Gy5YtUbZsWdSsWRMbN27Uq2ft2rWoWLEi1q1bBx8fH3Tu3Bk9evRA7dq1UbFiRZw8eRIAoFAoMHr0aKSlpSEwMBDBwcF4++23Ub58eSxdulRvbUwiotcZE0sieu3UrFkTXbp0QXJyMubOnQsAMDMzw4YNG7BlyxY0a9YM165dw9atW3Hp0iW4urpi0qRJmDFjhl49np6eOH36NCZNmgR3d3eEh4dj3759SE1NxfDhw9G8eXNd2c8//xyrV69GjRo1cOzYMezfvx81a9bEyZMnUbdu3SJ9/ERExUUmeJoiEREREUmAPZZEREREJAkmlkREREQkCSaWRERERCQJJpZEREREJAkmlkREREQkCSaWRERERCQJJpZEREREJAkmlkREREQkCSaWRERERCQJJpZEREREJAkmlkREREQkCSaWRERERCSJ/wMxPpm5jZhG5gAAAABJRU5ErkJggg==", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "plt.figure(figsize=(6, 4))\n", - "plt.plot(recall, precision, label=f'Precision-Recall Curve (AUC = {auc_precision_recall:.5f})')\n", - "plt.xlabel('Recall', fontsize=15)\n", - "plt.ylabel('Precision', fontsize=15)\n", - "plt.title('Precision-Recall Curve: mRNA splicing, via spliceosome (GO:0000398), hiv05', fontsize=12)\n", - "plt.legend(loc='best', fontsize=13)\n", - "plt.grid(True)\n", - "plt.show()" - ] - }, - { - "cell_type": "markdown", - "id": "5967bfea-f19e-44af-94bc-f59fe7e9618b", - "metadata": {}, - "source": [ - "#### Listing the biological processes for the proteins found in ensemble network" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "id": "f1e56e54-7143-4326-b3c2-fadee9cc628f", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "51\n" - ] - }, - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
ElementCount
0mRNA splicing, via spliceosome [GO:0000398]44
1RNA splicing [GO:0008380]13
2negative regulation of mRNA splicing, via spli...9
3mRNA processing [GO:0006397]9
4alternative mRNA splicing, via spliceosome [GO...7
5RNA splicing, via transesterification reaction...7
6positive regulation of transcription by RNA po...7
7regulation of alternative mRNA splicing, via s...7
8RNA processing [GO:0006396]6
9spliceosomal complex assembly [GO:0000245]6
10mRNA cis splicing, via spliceosome [GO:0045292]5
11mRNA splice site recognition [GO:0006376]5
12negative regulation of transcription by RNA po...5
13U2-type prespliceosome assembly [GO:1903241]5
14positive regulation of mRNA splicing, via spli...5
\n", - "
" - ], - "text/plain": [ - " Element Count\n", - "0 mRNA splicing, via spliceosome [GO:0000398] 44\n", - "1 RNA splicing [GO:0008380] 13\n", - "2 negative regulation of mRNA splicing, via spli... 9\n", - "3 mRNA processing [GO:0006397] 9\n", - "4 alternative mRNA splicing, via spliceosome [GO... 7\n", - "5 RNA splicing, via transesterification reaction... 7\n", - "6 positive regulation of transcription by RNA po... 7\n", - "7 regulation of alternative mRNA splicing, via s... 7\n", - "8 RNA processing [GO:0006396] 6\n", - "9 spliceosomal complex assembly [GO:0000245] 6\n", - "10 mRNA cis splicing, via spliceosome [GO:0045292] 5\n", - "11 mRNA splice site recognition [GO:0006376] 5\n", - "12 negative regulation of transcription by RNA po... 5\n", - "13 U2-type prespliceosome assembly [GO:1903241] 5\n", - "14 positive regulation of mRNA splicing, via spli... 5" - ] - }, - "execution_count": 12, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "go0000398_hiv05_count_df = build_biological_process_count_df(go0000398_ensemble05_prc_df, go0000398_df)\n", - "go0000398_hiv05_count_df[go0000398_hiv05_count_df['Count'] > 4]" - ] - }, - { - "cell_type": "markdown", - "id": "7b349288-bc3a-46cd-8b79-38d7186d79b1", - "metadata": {}, - "source": [ - "### 5 min: GO term --> cell division (GO:0051301)" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "id": "d939cfdc-9353-451e-8668-98b97fecaaf3", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
EntryReviewedEntry NameProtein namesGene NamesGene Ontology (biological process)
0A0A024R1X5unreviewedA0A024R1X5_HUMANBeclin-1BECN1 hCG_16958amyloid-beta metabolic process [GO:0050435]; a...
1A0A0S2Z4N5unreviewedA0A0S2Z4N5_HUMANTumor protein 63 (p63)TP63 TP73L hCG_16028cellular senescence [GO:0090398]; chromatin re...
2A0A140VK09unreviewedA0A140VK09_HUMANCalcium and integrin-binding protein 1 (Calmyrin)NaNangiogenesis [GO:0001525]; apoptotic process [...
3A0A2P9DU05unreviewedA0A2P9DU05_HUMANRho-associated protein kinase (EC 2.7.11.1)ROCK2actomyosin structure organization [GO:0031032]...
4A0A2R8Y4I8unreviewedA0A2R8Y4I8_HUMANSpastin (EC 5.6.1.1)SPAST SPG4axonogenesis [GO:0007409]; cytokinetic process...
\n", - "
" - ], - "text/plain": [ - " Entry Reviewed Entry Name \\\n", - "0 A0A024R1X5 unreviewed A0A024R1X5_HUMAN \n", - "1 A0A0S2Z4N5 unreviewed A0A0S2Z4N5_HUMAN \n", - "2 A0A140VK09 unreviewed A0A140VK09_HUMAN \n", - "3 A0A2P9DU05 unreviewed A0A2P9DU05_HUMAN \n", - "4 A0A2R8Y4I8 unreviewed A0A2R8Y4I8_HUMAN \n", - "\n", - " Protein names Gene Names \\\n", - "0 Beclin-1 BECN1 hCG_16958 \n", - "1 Tumor protein 63 (p63) TP63 TP73L hCG_16028 \n", - "2 Calcium and integrin-binding protein 1 (Calmyrin) NaN \n", - "3 Rho-associated protein kinase (EC 2.7.11.1) ROCK2 \n", - "4 Spastin (EC 5.6.1.1) SPAST SPG4 \n", - "\n", - " Gene Ontology (biological process) \n", - "0 amyloid-beta metabolic process [GO:0050435]; a... \n", - "1 cellular senescence [GO:0090398]; chromatin re... \n", - "2 angiogenesis [GO:0001525]; apoptotic process [... \n", - "3 actomyosin structure organization [GO:0031032]... \n", - "4 axonogenesis [GO:0007409]; cytokinetic process... " - ] - }, - "execution_count": 13, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "go0051301_path = \"hiv_raw_data/uniprotkb_go_0051301_AND_taxonomy_id_96_2024_07_29.tsv\"\n", - "go0051301_df = pd.read_csv(go0051301_path, sep='\\t')\n", - "go0051301_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "id": "607d1946-3322-42df-a448-9904482dfd66", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Number of proteins in GO:0051301 and human taxonomy: 1064\n", - "Number of proteins in GO:0051301 and human taxonomy, intersected with SPRAS hiv05 ensemble pathway nodes: 113\n" - ] - } - ], - "source": [ - "go0051301_proteins_list = go0051301_df['Entry Name']\n", - "print(\"Number of proteins in GO:0051301 and human taxonomy: \", len(go0051301_proteins_list))\n", - "go0051301_ensemble05 = list(set(go0051301_proteins_list) & set(ensemble05_proteins_list))\n", - "print(\"Number of proteins in GO:0051301 and human taxonomy, intersected with SPRAS hiv05 ensemble pathway nodes: \", len(go0051301_ensemble05))" - ] - }, - { - "cell_type": "markdown", - "id": "a6f678c5-4cdf-4fb5-a950-4b7569ce30aa", - "metadata": {}, - "source": [ - "#### Building the PRC:" - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "id": "d0bd3915-bb99-4730-859c-50aef0d482fe", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Nodemax_freqy_go
01433B_HUMAN0.160
11433E_HUMAN0.160
21433G_HUMAN0.160
31433S_HUMAN0.120
41433T_HUMAN0.160
\n", - "
" - ], - "text/plain": [ - " Node max_freq y_go\n", - "0 1433B_HUMAN 0.16 0\n", - "1 1433E_HUMAN 0.16 0\n", - "2 1433G_HUMAN 0.16 0\n", - "3 1433S_HUMAN 0.12 0\n", - "4 1433T_HUMAN 0.16 0" - ] - }, - "execution_count": 15, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "go0051301_ensemble05_prc_df = build_prc_df(ensemble05_df, go0051301_ensemble05)\n", - "go0051301_ensemble05_prc_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 16, - "id": "8857a213-0506-49df-913d-84e1159ab97c", - "metadata": {}, - "outputs": [], - "source": [ - "# extract needed columns from df\n", - "y_true = go0051301_ensemble05_prc_df['y_go']\n", - "y_scores = go0051301_ensemble05_prc_df['max_freq']" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "id": "3968042f-ab41-4753-9985-f6a340035bf4", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0.09764040405994252\n" - ] - } - ], - "source": [ - "precision, recall, thresholds = precision_recall_curve(y_true, y_scores)\n", - "# use avg precision score to calculate the area under the curve of precision recall curve\n", - "auc_precision_recall = average_precision_score(y_true, y_scores)\n", - "print(auc_precision_recall)" - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "id": "0fe64431-e220-4ced-932b-d5847b09dfaa", - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "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", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "plt.figure(figsize=(6, 4))\n", - "plt.plot(recall, precision, label=f'Precision-Recall Curve (AUC = {auc_precision_recall:.5f})')\n", - "plt.xlabel('Recall', fontsize=15)\n", - "plt.ylabel('Precision', fontsize=15)\n", - "plt.title('Precision-Recall Curve: cell division (GO:0051301), hiv05', fontsize=12)\n", - "plt.legend(loc='best', fontsize=13)\n", - "plt.grid(True)\n", - "plt.show()" - ] - }, - { - "cell_type": "markdown", - "id": "e774716b-bd41-45e6-9f6f-1736b23ba262", - "metadata": {}, - "source": [ - "#### Listing the biological processes for the proteins found in ensemble network" - ] - }, - { - "cell_type": "code", - "execution_count": 19, - "id": "cc85fa17-6779-4b4c-8eb7-08df39bba60b", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "113\n" - ] - }, - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
ElementCount
0cell division [GO:0051301]73
1mitotic cytokinesis [GO:0000281]20
2negative regulation of transcription by RNA po...16
3mitotic cell cycle [GO:0000278]14
4mitotic spindle assembly [GO:0090307]14
5protein phosphorylation [GO:0006468]11
6microtubule cytoskeleton organization [GO:0000...10
7DNA repair [GO:0006281]10
8chromosome segregation [GO:0007059]10
9mitotic spindle organization [GO:0007052]10
10G1/S transition of mitotic cell cycle [GO:0000...9
11mitotic sister chromatid segregation [GO:0000070]9
12apoptotic process [GO:0006915]9
13signal transduction [GO:0007165]9
14regulation of transcription by RNA polymerase ...9
\n", - "
" - ], - "text/plain": [ - " Element Count\n", - "0 cell division [GO:0051301] 73\n", - "1 mitotic cytokinesis [GO:0000281] 20\n", - "2 negative regulation of transcription by RNA po... 16\n", - "3 mitotic cell cycle [GO:0000278] 14\n", - "4 mitotic spindle assembly [GO:0090307] 14\n", - "5 protein phosphorylation [GO:0006468] 11\n", - "6 microtubule cytoskeleton organization [GO:0000... 10\n", - "7 DNA repair [GO:0006281] 10\n", - "8 chromosome segregation [GO:0007059] 10\n", - "9 mitotic spindle organization [GO:0007052] 10\n", - "10 G1/S transition of mitotic cell cycle [GO:0000... 9\n", - "11 mitotic sister chromatid segregation [GO:0000070] 9\n", - "12 apoptotic process [GO:0006915] 9\n", - "13 signal transduction [GO:0007165] 9\n", - "14 regulation of transcription by RNA polymerase ... 9" - ] - }, - "execution_count": 19, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "go0051301_hiv05_count_df = build_biological_process_count_df(go0051301_ensemble05_prc_df, go0051301_df)\n", - "go0051301_hiv05_count_df[go0051301_hiv05_count_df['Count'] > 8]" - ] - }, - { - "cell_type": "markdown", - "id": "9d0ffcfa-03de-46d6-a6ad-bfef28f302ee", - "metadata": {}, - "source": [ - "### 5 min: GO term --> positive regulation of transcription from RNA polymerase II promoter\t149 (GO:0045944)" - ] - }, - { - "cell_type": "code", - "execution_count": 20, - "id": "c21f3277-3fa1-45bb-ae2e-df045a7c744f", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
EntryReviewedEntry NameProtein namesGene NamesGene Ontology (biological process)
0A0A024R274unreviewedA0A024R274_HUMANMothers against decapentaplegic homolog (MAD h...SMAD4adrenal gland development [GO:0030325]; atriov...
1A0A024R5Z7unreviewedA0A024R5Z7_HUMANAnnexinANXA2 hCG_2004404angiogenesis [GO:0001525]; cell-matrix adhesio...
2A0A0A0MQU7unreviewedA0A0A0MQU7_HUMANHNF1 homeobox AHNF1Aapoptotic nuclear changes [GO:0030262]; bile a...
3A0A0S2Z310unreviewedA0A0S2Z310_HUMANSerine/threonine-protein kinase receptor (EC 2...ACVRL1angiogenesis [GO:0001525]; blood vessel remode...
4A0A0S2Z383unreviewedA0A0S2Z383_HUMANHomeobox protein Nkx-2.5 (Homeobox protein NK-...NKX2-5adult heart development [GO:0007512]; apoptoti...
\n", - "
" - ], - "text/plain": [ - " Entry Reviewed Entry Name \\\n", - "0 A0A024R274 unreviewed A0A024R274_HUMAN \n", - "1 A0A024R5Z7 unreviewed A0A024R5Z7_HUMAN \n", - "2 A0A0A0MQU7 unreviewed A0A0A0MQU7_HUMAN \n", - "3 A0A0S2Z310 unreviewed A0A0S2Z310_HUMAN \n", - "4 A0A0S2Z383 unreviewed A0A0S2Z383_HUMAN \n", - "\n", - " Protein names Gene Names \\\n", - "0 Mothers against decapentaplegic homolog (MAD h... SMAD4 \n", - "1 Annexin ANXA2 hCG_2004404 \n", - "2 HNF1 homeobox A HNF1A \n", - "3 Serine/threonine-protein kinase receptor (EC 2... ACVRL1 \n", - "4 Homeobox protein Nkx-2.5 (Homeobox protein NK-... NKX2-5 \n", - "\n", - " Gene Ontology (biological process) \n", - "0 adrenal gland development [GO:0030325]; atriov... \n", - "1 angiogenesis [GO:0001525]; cell-matrix adhesio... \n", - "2 apoptotic nuclear changes [GO:0030262]; bile a... \n", - "3 angiogenesis [GO:0001525]; blood vessel remode... \n", - "4 adult heart development [GO:0007512]; apoptoti... " - ] - }, - "execution_count": 20, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "go0045944_path = \"hiv_raw_data/uniprotkb_go_0045944_AND_taxonomy_id_96_2024_07_29.tsv\"\n", - "go0045944_df = pd.read_csv(go0045944_path, sep='\\t')\n", - "go0045944_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 21, - "id": "bb700bb4-0b10-4685-b2e5-0dd367e0a0ea", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Number of proteins in GO:0045944 and human taxonomy: 2197\n", - "Number of proteins in GO:0045944 and human taxonomy, intersected with SPRAS hiv05 ensemble pathway nodes: 191\n" - ] - } - ], - "source": [ - "go0045944_proteins_list = go0045944_df['Entry Name']\n", - "print(\"Number of proteins in GO:0045944 and human taxonomy: \", len(go0045944_proteins_list))\n", - "go0045944_ensemble05 = list(set(go0045944_proteins_list) & set(ensemble05_proteins_list))\n", - "print(\"Number of proteins in GO:0045944 and human taxonomy, intersected with SPRAS hiv05 ensemble pathway nodes: \", len(go0045944_ensemble05))" - ] - }, - { - "cell_type": "markdown", - "id": "11def2e7-d640-42c5-9552-67f34a2b928f", - "metadata": {}, - "source": [ - "#### Building the PRC:" - ] - }, - { - "cell_type": "code", - "execution_count": 22, - "id": "f338f683-5504-4004-a8a7-7a5c017cf0f1", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Nodemax_freqy_go
01433B_HUMAN0.160
11433E_HUMAN0.160
21433G_HUMAN0.160
31433S_HUMAN0.120
41433T_HUMAN0.160
\n", - "
" - ], - "text/plain": [ - " Node max_freq y_go\n", - "0 1433B_HUMAN 0.16 0\n", - "1 1433E_HUMAN 0.16 0\n", - "2 1433G_HUMAN 0.16 0\n", - "3 1433S_HUMAN 0.12 0\n", - "4 1433T_HUMAN 0.16 0" - ] - }, - "execution_count": 22, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "go0045944_ensemble05_prc_df = build_prc_df(ensemble05_df, go0045944_ensemble05)\n", - "go0045944_ensemble05_prc_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 23, - "id": "85c75534-9437-4ea5-a6f7-33baa5875f08", - "metadata": {}, - "outputs": [], - "source": [ - "# extract needed columns from df\n", - "y_true = go0045944_ensemble05_prc_df['y_go']\n", - "y_scores = go0045944_ensemble05_prc_df['max_freq']" - ] - }, - { - "cell_type": "code", - "execution_count": 24, - "id": "a7c58c90-48bc-4848-8d89-bba337a5d8f6", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0.18626784334728516\n" - ] - } - ], - "source": [ - "precision, recall, thresholds = precision_recall_curve(y_true, y_scores)\n", - "# use avg precision score to calculate the area under the curve of precision recall curve\n", - "auc_precision_recall = average_precision_score(y_true, y_scores)\n", - "print(auc_precision_recall)" - ] - }, - { - "cell_type": "code", - "execution_count": 25, - "id": "bce011dd-8729-48f5-95ee-9f8dd3fb1ce2", - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "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", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "plt.figure(figsize=(6, 4))\n", - "plt.plot(recall, precision, label=f'Precision-Recall Curve (AUC = {auc_precision_recall:.5f})')\n", - "plt.xlabel('Recall', fontsize=15)\n", - "plt.ylabel('Precision', fontsize=15)\n", - "plt.title('Precision-Recall Curve: positive regulation of transcription \\n from RNA polymerase II promoter 149 (GO:0045944), hiv05', fontsize=12)\n", - "plt.legend(loc='best', fontsize=13)\n", - "plt.grid(True)\n", - "plt.show()" - ] - }, - { - "cell_type": "markdown", - "id": "260ca10f-c583-478d-b1c8-b037bc1ee2b1", - "metadata": {}, - "source": [ - "#### Listing the biological processes for the proteins found in ensemble network" - ] - }, - { - "cell_type": "code", - "execution_count": 26, - "id": "ab293ac3-a2f8-410a-b7a9-e27773ca4429", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "191\n" - ] - }, - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
ElementCount
0positive regulation of transcription by RNA po...174
1regulation of transcription by RNA polymerase ...75
2positive regulation of DNA-templated transcrip...68
3negative regulation of transcription by RNA po...66
4transcription by RNA polymerase II [GO:0006366]38
5negative regulation of DNA-templated transcrip...38
6positive regulation of gene expression [GO:001...34
7regulation of DNA-templated transcription [GO:...32
8negative regulation of cell population prolife...26
9chromatin remodeling [GO:0006338]26
10negative regulation of apoptotic process [GO:0...24
11DNA damage response [GO:0006974]23
12apoptotic process [GO:0006915]21
13positive regulation of apoptotic process [GO:0...21
\n", - "
" - ], - "text/plain": [ - " Element Count\n", - "0 positive regulation of transcription by RNA po... 174\n", - "1 regulation of transcription by RNA polymerase ... 75\n", - "2 positive regulation of DNA-templated transcrip... 68\n", - "3 negative regulation of transcription by RNA po... 66\n", - "4 transcription by RNA polymerase II [GO:0006366] 38\n", - "5 negative regulation of DNA-templated transcrip... 38\n", - "6 positive regulation of gene expression [GO:001... 34\n", - "7 regulation of DNA-templated transcription [GO:... 32\n", - "8 negative regulation of cell population prolife... 26\n", - "9 chromatin remodeling [GO:0006338] 26\n", - "10 negative regulation of apoptotic process [GO:0... 24\n", - "11 DNA damage response [GO:0006974] 23\n", - "12 apoptotic process [GO:0006915] 21\n", - "13 positive regulation of apoptotic process [GO:0... 21" - ] - }, - "execution_count": 26, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "go0045944_count_df = build_biological_process_count_df(go0045944_ensemble05_prc_df, go0045944_df)\n", - "go0045944_count_df[go0045944_count_df['Count'] > 20 ]" - ] - }, - { - "cell_type": "markdown", - "id": "0a44aae1-996d-46ce-9a89-cf489e90eaf4", - "metadata": {}, - "source": [ - "## Part 2: Compare SPRAS hiv060 max node frequency and GO terms" - ] - }, - { - "cell_type": "markdown", - "id": "0ec01f2d-6f97-4430-a101-02b323d1b8dc", - "metadata": {}, - "source": [ - "### Load hiv060 max ensemble node frequency" - ] - }, - { - "cell_type": "code", - "execution_count": 27, - "id": "12d88981-be41-41d5-a393-72dc7e854be4", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Nodemax_freq
01433B_HUMAN0.04
11433E_HUMAN0.04
21433G_HUMAN0.04
31433T_HUMAN0.04
42A5A_HUMAN0.08
\n", - "
" - ], - "text/plain": [ - " Node max_freq\n", - "0 1433B_HUMAN 0.04\n", - "1 1433E_HUMAN 0.04\n", - "2 1433G_HUMAN 0.04\n", - "3 1433T_HUMAN 0.04\n", - "4 2A5A_HUMAN 0.08" - ] - }, - "execution_count": 27, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "ensemble060_df = pd.read_csv(\"hiv_processed_data/hiv060-max-node-freq-ensemble.csv\")\n", - "ensemble060_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 28, - "id": "da56fe6a-ed8f-417d-844b-5a5443afe10b", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "1029" - ] - }, - "execution_count": 28, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "ensemble060_proteins_list = ensemble060_df['Node']\n", - "len(ensemble060_proteins_list)" - ] - }, - { - "cell_type": "markdown", - "id": "c6289cd8-0972-4480-b011-3758c4fd04ad", - "metadata": {}, - "source": [ - "### 60 min: GO term --> cell division (GO:0051301)" - ] - }, - { - "cell_type": "code", - "execution_count": 29, - "id": "4dc493f3-51c0-4235-9b5b-c108e830c7d0", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Number of proteins in GO:0051301 and human taxonomy: 1064\n", - "Number of proteins in GO:0051301 and human taxonomy, intersected with SPRAS hiv060 ensemble pathway nodes: 101\n" - ] - } - ], - "source": [ - "go0051301_proteins_list = go0051301_df['Entry Name']\n", - "print(\"Number of proteins in GO:0051301 and human taxonomy: \", len(go0051301_proteins_list))\n", - "go0051301_ensemble060 = list(set(go0051301_proteins_list) & set(ensemble060_proteins_list))\n", - "print(\"Number of proteins in GO:0051301 and human taxonomy, intersected with SPRAS hiv060 ensemble pathway nodes: \", len(go0051301_ensemble060))" - ] - }, - { - "cell_type": "markdown", - "id": "ec00c8c7-85e7-4673-ad60-5502d554c5bc", - "metadata": {}, - "source": [ - "#### Build PRC" - ] - }, - { - "cell_type": "code", - "execution_count": 30, - "id": "703694e8-7489-42b6-9d63-792052f6ae77", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Nodemax_freqy_go
01433B_HUMAN0.040
11433E_HUMAN0.040
21433G_HUMAN0.040
31433T_HUMAN0.040
42A5A_HUMAN0.080
\n", - "
" - ], - "text/plain": [ - " Node max_freq y_go\n", - "0 1433B_HUMAN 0.04 0\n", - "1 1433E_HUMAN 0.04 0\n", - "2 1433G_HUMAN 0.04 0\n", - "3 1433T_HUMAN 0.04 0\n", - "4 2A5A_HUMAN 0.08 0" - ] - }, - "execution_count": 30, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "go0051301_ensemble060_prc_df = build_prc_df(ensemble060_df, go0051301_ensemble060)\n", - "go0051301_ensemble060_prc_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 31, - "id": "b7243613-4e70-463d-9b86-a27bcecd990f", - "metadata": {}, - "outputs": [], - "source": [ - "# extract needed columns from df\n", - "y_true = go0051301_ensemble060_prc_df['y_go']\n", - "y_scores = go0051301_ensemble060_prc_df['max_freq']" - ] - }, - { - "cell_type": "code", - "execution_count": 32, - "id": "cf2928ba-e2b3-418b-9afc-85d68928321c", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0.11148581561911794\n" - ] - } - ], - "source": [ - "precision, recall, thresholds = precision_recall_curve(y_true, y_scores)\n", - "# use avg precision score to calculate the area under the curve of precision recall curve\n", - "auc_precision_recall = average_precision_score(y_true, y_scores)\n", - "print(auc_precision_recall)" - ] - }, - { - "cell_type": "code", - "execution_count": 33, - "id": "931fe877-cf09-4329-aeba-ebaa0d807b84", - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "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t75++/bt8euvv2Lx4sW4du0aDh8+jOHDh6N+/frw9PQsqtMgIiKiF2RxQzwAEB4ejoSEBEyZMgWxsbGoVq0aduzYAR8fHwBAbGyswZooffv2RVJSEr799lt89NFHKFGiBEJCQjBjxoyiOgUiIiLKB4tMUABg6NChGDp0qMnnVq5caVT2wQcf4IMPPijgVhEREVFhsMghHiIiIiremKAQERGRxWGCQkRERBaHCQoRERFZHCYoREREZHGYoBAREZHFYYJCREREFocJChEREVkcJihERERkcZigEBERkcVhgkJEREQWhwkKERERWRwmKERERGRxmKAQERGRxWGCQkRERBaHCQoRERFZHCYoREREZHGYoBAREZHFYYJCREREFocJChEREVkcJihERERkcZigEBERkcVhgkJEREQWhwkKERERWRwmKERERGRxmKAQERGRxWGCQkRERBaHCQoRERFZHCYoREREZHGYoBAREZHFYYJCREREFocJChEREVkcJihERERkcZigEBERkcVhgkJEREQWx1qqHWVkZCAhIQFpaWnZ1ilXrpxUhyMiIqJXWL4TlN9//x1Tp07FsWPHoFars60nk8mQkZGR38MRERFRMZCvBGXbtm3o3LkzNBoNSpYsifLly8PBwUGqthEREVExla8EZfLkydBqtZg7dy6GDRsGuVwuVbuIiIioGMtXgnLu3DkEBQVh+PDhUrWHiIiIKH9X8Tg4OMDNzU2qthAREREByGeC0rJlS/z111/QarVStYeIiIgofwnKjBkz8OzZM3z00UfQaDRStYmIiIiKuXzNQVmxYgXatGmD+fPnY9u2bWjWrBm8vLwgk8mM6spkMnz22Wf5ORwREREVE/lKUCZNmgSZTAYhBK5evYqrV69mW5cJChEREZkr3z0oBWXRokWYNWsWYmNjUbVqVcydOxdNmjTJtn5aWhqmTJmCNWvWIC4uDl5eXpgwYQL69+9fYG0kIiKigpGvBKVPnz5StcPAhg0bMGLECCxatAiNGzfGd999hzZt2iA6Ojrb5fK7deuGe/fuYdmyZXjttddw//59rlxLRET0kpLsXjxSmjNnDgYMGICBAwcCAObOnYvdu3dj8eLFmD59ulH9Xbt2Yf/+/bh27RpKlSoFAPD19S3MJhMREZGEJEtQ/vzzTxw8eBB3796FTCaDh4cHmjRpgvr16+dp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iAoD56AQERGRxWGCQkRERBaHCQoRERFZHCYoREREZHGYoBAREZHFYYJCREREFocJChEREVkcJihERERkcZigEBERkcVhgkJEREQWhwkKERERWRwmKERERGRxmKAQERGRxWGCQkRERBaHCQoRERFZHCYoREREZHGYoBAREZHFYYJCREREFocJChEREVkcJihERERkcZigEBERkcVhgkJEREQWhwkKERERWRwmKERERGRxmKAQERGRxWGCQkRERBaHCQoRERFZHCYoREREZHGYoBAREZHFYYJCREREFocJChEREVkci01QFi1aBD8/P9jY2KBu3bo4ePBgtnV//fVXhIaGokyZMnByckJQUBB2795diK0lIiIiKVlkgrJhwwaMGDECEyZMQFRUFJo0aYI2bdrg1q1bJusfOHAAoaGh2LFjB06dOoXmzZujffv2iIqKKuSWExERkRQsMkGZM2cOBgwYgIEDB6Jy5cqYO3cuvL29sXjxYpP1586dizFjxqBevXrw9/fHtGnT4O/vj99++62QW05ERERSsC7qBjwvPT0dp06dwrhx4wzKw8LCcOTIEbP2odVqkZSUhFKlSmVbJy0tDWlpafrHiYmJAAC1Wg21Wv0CLTfRDo1G//9S7bO408WR8ZQOYyotxlN6jKm0CiKeBfHaWFyCEh8fD41GAzc3N4NyNzc3xMXFmbWPr7/+GsnJyejWrVu2daZPn47JkycblUdERMDOzi5vjc7G5Rgr6DqpIiMjJdknZWI8pceYSovxlB5jKi0p45mSkiLZvnQsLkHRkclkBo+FEEZlpqxfvx6TJk3Cli1b4Orqmm298ePHY9SoUfrHiYmJ8Pb2RlhYGJycnF684Vlc3nMFu29fAwCEhoZCoVBIst/iTK1WIzIykvGUEGMqLcZTeoyptAoinrpRCClZXILi4uICuVxu1Fty//59o16V523YsAEDBgzAzz//jJYtW+ZYV6VSQaVSGZUrFArJXjArubxA9kuMZ0FgTKXFeEqPMZWWlPEsiNfF4ibJKpVK1K1b16jrKTIyEo0aNcp2u/Xr16Nv375Yt24d3njjjYJuJhERERUgi+tBAYBRo0ahV69eCAwMRFBQEJYuXYpbt25h8ODBADKHZ+7cuYNVq1YByExOevfujXnz5qFhw4b63hdbW1s4OzsX2XkQERHRi7HIBCU8PBwJCQmY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", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "plt.figure(figsize=(6, 4))\n", - "plt.plot(recall, precision, label=f'Precision-Recall Curve (AUC = {auc_precision_recall:.5f})')\n", - "plt.xlabel('Recall', fontsize=15)\n", - "plt.ylabel('Precision', fontsize=15)\n", - "plt.title('Precision-Recall Curve: cell division (GO:0051301), hiv060', fontsize=12)\n", - "plt.legend(loc='best', fontsize=13)\n", - "plt.grid(True)\n", - "plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": 34, - "id": "62cc9b77-d385-46a3-a4de-5226d8bedeaf", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "101\n" - ] - }, - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
ElementCount
0cell division [GO:0051301]75
1mitotic cytokinesis [GO:0000281]17
2mitotic spindle organization [GO:0007052]13
3negative regulation of transcription by RNA po...13
4microtubule cytoskeleton organization [GO:0000...13
5mitotic cell cycle [GO:0000278]13
6mitotic spindle assembly [GO:0090307]12
7protein phosphorylation [GO:0006468]12
\n", - "
" - ], - "text/plain": [ - " Element Count\n", - "0 cell division [GO:0051301] 75\n", - "1 mitotic cytokinesis [GO:0000281] 17\n", - "2 mitotic spindle organization [GO:0007052] 13\n", - "3 negative regulation of transcription by RNA po... 13\n", - "4 microtubule cytoskeleton organization [GO:0000... 13\n", - "5 mitotic cell cycle [GO:0000278] 13\n", - "6 mitotic spindle assembly [GO:0090307] 12\n", - "7 protein phosphorylation [GO:0006468] 12" - ] - }, - "execution_count": 34, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "go0051301_hiv060_count_df = build_biological_process_count_df(go0051301_ensemble060_prc_df, go0051301_df)\n", - "go0051301_hiv060_count_df[go0051301_hiv060_count_df['Count'] > 10]" - ] - }, - { - "cell_type": "markdown", - "id": "1e20b813-df91-4686-8bc4-e341240756f3", - "metadata": {}, - "source": [ - "### 60 min: GO term --> mRNA splicing, via spliceosome (GO:0000398)" - ] - }, - { - "cell_type": "code", - "execution_count": 35, - "id": "5411a667-91c2-4204-b4dd-3f750e243e69", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Number of proteins in GO:0000398 and human taxonomy: 677\n", - "Number of proteins in GO:0000398 and human taxonomy, intersected with SPRAS hiv060 ensemble pathway nodes: 52\n" - ] - } - ], - "source": [ - "go0000398_proteins_list = go0000398_df['Entry Name']\n", - "print(\"Number of proteins in GO:0000398 and human taxonomy: \", len(go0000398_proteins_list))\n", - "go0000398_ensemble060 = list(set(go0000398_proteins_list) & set(ensemble060_proteins_list))\n", - "print(\"Number of proteins in GO:0000398 and human taxonomy, intersected with SPRAS hiv060 ensemble pathway nodes: \", len(go0000398_ensemble060))" - ] - }, - { - "cell_type": "markdown", - "id": "d657bd40-9359-4c22-a54d-5bfef477da8c", - "metadata": {}, - "source": [ - "#### Build the PRC:" - ] - }, - { - "cell_type": "code", - "execution_count": 36, - "id": "bc58ef1a-d227-4af0-8caf-99a3e5e569a7", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Nodemax_freqy_go
01433B_HUMAN0.040
11433E_HUMAN0.040
21433G_HUMAN0.040
31433T_HUMAN0.040
42A5A_HUMAN0.080
\n", - "
" - ], - "text/plain": [ - " Node max_freq y_go\n", - "0 1433B_HUMAN 0.04 0\n", - "1 1433E_HUMAN 0.04 0\n", - "2 1433G_HUMAN 0.04 0\n", - "3 1433T_HUMAN 0.04 0\n", - "4 2A5A_HUMAN 0.08 0" - ] - }, - "execution_count": 36, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "go0000398_ensemble060_prc_df = build_prc_df(ensemble060_df, go0000398_ensemble060)\n", - "go0000398_ensemble060_prc_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 37, - "id": "57198de2-3bd1-449a-bb48-7c4428bd6229", - "metadata": {}, - "outputs": [], - "source": [ - "# extract needed columns from df\n", - "y_true = go0000398_ensemble060_prc_df['y_go']\n", - "y_scores = go0000398_ensemble060_prc_df['max_freq']" - ] - }, - { - "cell_type": "code", - "execution_count": 38, - "id": "5f1103d7-dac9-4d42-badc-0bf4fd9d9411", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0.051246600774379085\n" - ] - } - ], - "source": [ - "precision, recall, thresholds = precision_recall_curve(y_true, y_scores)\n", - "# use avg precision score to calculate the area under the curve of precision recall curve\n", - "auc_precision_recall = average_precision_score(y_true, y_scores)\n", - "print(auc_precision_recall)" - ] - }, - { - "cell_type": "code", - "execution_count": 39, - "id": "4da7dfb0-6351-4cc1-8461-e8babbaf9293", - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "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q8BnYF5eXpBIJOp7vnp6ekIikeRxrYiIiIhInwKfgN6+fTvbZSIiIiLKXwp8FzwRERERFSzvXQKakJAApVKZ19UgIiIiem8VugT0xIkTmDJlCi5evKixfuvWrXBzc4OrqyucnZ3x008/5VENiYiIiN5vhS4BXbBgAb7//nu4uLio1925cwddu3bFgwcPULx4cSQlJeHLL7/EgQMH8rCmRERERO+nQpeAHj16FNWqVYOzs7N63fLly5GamorZs2fj/v37OH78OKRSKX788cc8rCkRERHR+6nQJaAPHjyAl5eXxrqoqCjY2tpiyJAhAIDq1aujQYMGOH36dB7UkIiIiOj9VugS0KwXGKWkpOD06dOoX78+5HK5er27uzvi4+NNXT0iIiKi916hS0C9vb1x7tw59fKuXbuQmpqKJk2aaJRLTEyEg4ODqatHRERE9N4rdAlo27Ztce3aNQwfPhxbt27F6NGjYWZmhnbt2mmUO3XqFLy9vfOolkRERETvr0KXgI4cORKlSpXCvHnz0KFDB1y6dAnDhg1DmTJl1GWOHTuG+/fv48MPP8zDmhIRERG9nwr8rTizcnR0xOnTp7Fx40Y8fPgQfn5+aNy4sUaZ+Ph4fPnll/j444/zqJZERERE769Cl4ACgI2NDXr37q338Xbt2ml1yRMRERGRaRS6LngiIiIiyt8KfAvo/v37AQC1a9eGpaWletlQHAdKREREZFoFPgFt2LAhJBIJLl26hLJly6qXDZV13lAiIiIiercKfAIaEhICiUSintNTtUxERERE+VOBT0DDw8OzXSYiIiKi/IUXIRERERGRSRW6BDQlJQUxMTFISkrSWyYpKQkxMTFITU01Yc2IiIiICCiECeicOXPg4+ODM2fO6C1z5swZ+Pj4YN68eSasGREREREBhTAB3bJlC3x8fNCgQQO9ZRo0aICSJUti8+bNJqwZEREREQGFMAG9ceMGKlasmGO5SpUq4caNGyaoERERERFlVugS0JcvX8LGxibHctbW1khMTDRBjYiIiIgos0KXgHp6euLEiRM5ljt58iTc3NxMUCMiIiIiyqzQJaDBwcG4efMmFixYoLfMwoULcePGDTRr1syENSMiIiIioBAmoF9//TXs7OwwbNgwtG/fHhEREbhy5QquXr2KiIgItG/fHkOHDoW9vT2+/vrrvK4uERER0XunwN8J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", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "plt.figure(figsize=(6, 4))\n", - "plt.plot(recall, precision, label=f'Precision-Recall Curve (AUC = {auc_precision_recall:.5f})')\n", - "plt.xlabel('Recall', fontsize=15)\n", - "plt.ylabel('Precision', fontsize=15)\n", - "plt.title('Precision-Recall Curve: mRNA splicing, via spliceosome (GO:0000398), hiv060', fontsize=12)\n", - "plt.legend(loc='best', fontsize=13)\n", - "plt.grid(True)\n", - "plt.show()" - ] - }, - { - "cell_type": "markdown", - "id": "24759cc3-239b-46ad-9bbd-dceb69e418e7", - "metadata": {}, - "source": [ - "#### Listing the biological processes for the proteins found in ensemble network" - ] - }, - { - "cell_type": "code", - "execution_count": 40, - "id": "cc28a645-2036-4398-ae09-fb7d71bd76f3", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "52\n" - ] - }, - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
ElementCount
0mRNA splicing, via spliceosome [GO:0000398]42
1RNA splicing [GO:0008380]15
2mRNA processing [GO:0006397]12
3positive regulation of transcription by RNA po...9
4regulation of alternative mRNA splicing, via s...9
5negative regulation of mRNA splicing, via spli...9
6spliceosomal complex assembly [GO:0000245]9
7RNA splicing, via transesterification reaction...8
8spliceosomal tri-snRNP complex assembly [GO:00...7
9positive regulation of mRNA splicing, via spli...7
10RNA processing [GO:0006396]6
11negative regulation of transcription by RNA po...6
12U2-type prespliceosome assembly [GO:1903241]6
13mRNA cis splicing, via spliceosome [GO:0045292]5
14mRNA splice site recognition [GO:0006376]5
15spliceosomal snRNP assembly [GO:0000387]5
\n", - "
" - ], - "text/plain": [ - " Element Count\n", - "0 mRNA splicing, via spliceosome [GO:0000398] 42\n", - "1 RNA splicing [GO:0008380] 15\n", - "2 mRNA processing [GO:0006397] 12\n", - "3 positive regulation of transcription by RNA po... 9\n", - "4 regulation of alternative mRNA splicing, via s... 9\n", - "5 negative regulation of mRNA splicing, via spli... 9\n", - "6 spliceosomal complex assembly [GO:0000245] 9\n", - "7 RNA splicing, via transesterification reaction... 8\n", - "8 spliceosomal tri-snRNP complex assembly [GO:00... 7\n", - "9 positive regulation of mRNA splicing, via spli... 7\n", - "10 RNA processing [GO:0006396] 6\n", - "11 negative regulation of transcription by RNA po... 6\n", - "12 U2-type prespliceosome assembly [GO:1903241] 6\n", - "13 mRNA cis splicing, via spliceosome [GO:0045292] 5\n", - "14 mRNA splice site recognition [GO:0006376] 5\n", - "15 spliceosomal snRNP assembly [GO:0000387] 5" - ] - }, - "execution_count": 40, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "go0000398_hiv060_count_df = build_biological_process_count_df(go0000398_ensemble060_prc_df, go0000398_df)\n", - "go0000398_hiv060_count_df[go0000398_hiv060_count_df['Count'] > 4]" - ] - }, - { - "cell_type": "markdown", - "id": "f66515a6-8cf4-448c-86d4-9b87997ed6b6", - "metadata": {}, - "source": [ - "### 60 min: GO term --> cell-cell adhesion (GO:0098609)" - ] - }, - { - "cell_type": "code", - "execution_count": 41, - "id": "d16b27eb-5772-43d5-b3ce-d50b1302f710", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
EntryReviewedEntry NameProtein namesGene NamesGene Ontology (biological process)
0A0A024R5Z7unreviewedA0A024R5Z7_HUMANAnnexinANXA2 hCG_2004404angiogenesis [GO:0001525]; cell-matrix adhesio...
1A0A0U2ZQU7unreviewedA0A0U2ZQU7_HUMANCadherin-1 (Epithelial cadherin)CDH1adherens junction organization [GO:0034332]; c...
2A0A140VJM0unreviewedA0A140VJM0_HUMANTesticular tissue protein Li 96 (Testicular ti...NaNcell adhesion mediated by integrin [GO:0033627...
3A0A1U9X8X8unreviewedA0A1U9X8X8_HUMANCorneodesmosinNaNcell-cell adhesion [GO:0098609]; skin morphoge...
4A0A384MDY0unreviewedA0A384MDY0_HUMANCatenin alpha-1CTNNA1 hCG_1782385apical junction assembly [GO:0043297]; axon re...
\n", - "
" - ], - "text/plain": [ - " Entry Reviewed Entry Name \\\n", - "0 A0A024R5Z7 unreviewed A0A024R5Z7_HUMAN \n", - "1 A0A0U2ZQU7 unreviewed A0A0U2ZQU7_HUMAN \n", - "2 A0A140VJM0 unreviewed A0A140VJM0_HUMAN \n", - "3 A0A1U9X8X8 unreviewed A0A1U9X8X8_HUMAN \n", - "4 A0A384MDY0 unreviewed A0A384MDY0_HUMAN \n", - "\n", - " Protein names Gene Names \\\n", - "0 Annexin ANXA2 hCG_2004404 \n", - "1 Cadherin-1 (Epithelial cadherin) CDH1 \n", - "2 Testicular tissue protein Li 96 (Testicular ti... NaN \n", - "3 Corneodesmosin NaN \n", - "4 Catenin alpha-1 CTNNA1 hCG_1782385 \n", - "\n", - " Gene Ontology (biological process) \n", - "0 angiogenesis [GO:0001525]; cell-matrix adhesio... \n", - "1 adherens junction organization [GO:0034332]; c... \n", - "2 cell adhesion mediated by integrin [GO:0033627... \n", - "3 cell-cell adhesion [GO:0098609]; skin morphoge... \n", - "4 apical junction assembly [GO:0043297]; axon re... " - ] - }, - "execution_count": 41, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "go0098609_path = \"hiv_raw_data/uniprotkb_go_0098609_AND_taxonomy_id_96_2024_07_29.tsv\"\n", - "go0098609_df = pd.read_csv(go0098609_path, sep='\\t')\n", - "go0098609_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 42, - "id": "4f385f87-0d94-4bb8-872b-0056f529b7a5", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Number of proteins in GO:0098609 and human taxonomy: 1308\n", - "Number of proteins in GO:0098609 and human taxonomy, intersected with SPRAS hiv060 ensemble pathway nodes: 24\n" - ] - } - ], - "source": [ - "go0098609_proteins_list = go0098609_df['Entry Name']\n", - "print(\"Number of proteins in GO:0098609 and human taxonomy: \", len(go0098609_proteins_list))\n", - "go0098609_ensemble060 = list(set(go0098609_proteins_list) & set(ensemble060_proteins_list))\n", - "print(\"Number of proteins in GO:0098609 and human taxonomy, intersected with SPRAS hiv060 ensemble pathway nodes: \", len(go0098609_ensemble060))" - ] - }, - { - "cell_type": "markdown", - "id": "7b874ff8-61af-47aa-82ff-c642f19c1e2d", - "metadata": {}, - "source": [ - "#### Build the PRC" - ] - }, - { - "cell_type": "code", - "execution_count": 43, - "id": "0134b908-d0b6-4edc-a879-41d10ec9f8ec", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Nodemax_freqy_go
01433B_HUMAN0.040
11433E_HUMAN0.040
21433G_HUMAN0.040
31433T_HUMAN0.040
42A5A_HUMAN0.080
\n", - "
" - ], - "text/plain": [ - " Node max_freq y_go\n", - "0 1433B_HUMAN 0.04 0\n", - "1 1433E_HUMAN 0.04 0\n", - "2 1433G_HUMAN 0.04 0\n", - "3 1433T_HUMAN 0.04 0\n", - "4 2A5A_HUMAN 0.08 0" - ] - }, - "execution_count": 43, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "go0098609_ensemble060_prc_df = build_prc_df(ensemble060_df, go0098609_ensemble060)\n", - "go0098609_ensemble060_prc_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 44, - "id": "e4375d27-1793-4663-bcb3-857a2da8e625", - "metadata": {}, - "outputs": [], - "source": [ - "# extract needed columns from df\n", - "y_true = go0098609_ensemble060_prc_df['y_go']\n", - "y_scores = go0098609_ensemble060_prc_df['max_freq']" - ] - }, - { - "cell_type": "code", - "execution_count": 45, - "id": "e258cfe0-6da4-4cea-a1af-a3fb9b2140bf", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0.023102923753173847\n" - ] - } - ], - "source": [ - "precision, recall, thresholds = precision_recall_curve(y_true, y_scores)\n", - "# use avg precision score to calculate the area under the curve of precision recall curve\n", - "auc_precision_recall = average_precision_score(y_true, y_scores)\n", - "print(auc_precision_recall)" - ] - }, - { - "cell_type": "code", - "execution_count": 46, - "id": "7282d195-9817-41d9-baab-9d062b4eab0e", - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "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DBig1w2cWkJCAqZMmYJy5crB0tISFhYWsLS0xJUrV3Dx4sUM45QbpH4/Acnfdl68eKHXU7d06VJYWVnpJjBevXoVly5dQs+ePQFAL56tWrVCeHi43mt89epVXa9menbu3InGjRujbNmyadbZsWMHKlSogCpVquhtt3nz5lCpVHrfujMj5ToSEhJ03y7fRFvSsn79etStWxd2dnawsLCAWq1GUFCQ3vts//79AKB7TbRSTjpNzdjn7uXLl7orVnbs2AGVSoVevXrp7Z+7uzsqV66s278SJUogf/78+PTTT7Fw4UK93tT07Nu3D+XKlUPNmjX1yvv27QsRMfjG3bp1a5ibm+u1F0C6vdgAdN+oXV1dM9WurVu36o4narUajo6OmVpOS/seSjm0kdZnIL3hj9TPpVU3ZfmHH36IJ0+eICAgANevX8eDBw8wYcIEHD16FAD0hrt27dqFXr16oVOnTti5cydCQ0MxcOBA9O3bV68XWDv04+XlhY0bN6J58+bo1KkTdu3aBTMzM0ybNi3L+1S5cmU0aNAA06dPx/r16/H48WMcPXoUQ4YMgbm5uV47tbSvX3aukH6V95B2WHLTpk26nqLExESsXLkS7du3h7Ozs9F9TC1luTam3bt3x9SpU9G4cWMMHjwYQUFBuHr1KtasWZOpdWb0XGq5MgFasWIFTp48iTNnzuD+/fv466+/ULduXb062kstU3rw4AEeP34MS0tLvQ+sWq1GRESE7jJX7XwgLy+vLLWrQYMG2LJliy5x8PLyQoUKFbB27do0l/nnn38gIvDw8DB4ztPTE0DyJaQppX4DabtFtUN4kyZN0tu31Fec2djY4OTJkzh58iS2b9+ORo0aYe3atfjuu+90dbTd9TVq1DCI1bp167Icq1GjRmHChAno0KEDtm/fjhMnTuDkyZOoXLmy3tDjq9JeFnvjxo1srystxl6j8uXLo0aNGroDYGJiIlatWoX27dujQIECAP6L5ejRow1iqb2E81UusX748GGGcX/w4AH++usvg+3a29tDRLK03Zs3bxqsR3uVyetuS1o2bdqEbt26oVChQli1ahWOHTuGkydPon///nj58qWuXnR0NCwsLAw+S+7u7mmuO6PP3YMHDyAicHNzM9jH48eP6/bP0dERBw8eRJUqVfDZZ5+hfPny8PT0xFdffZXuJeHR0dGKHifSon0+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WxdjxowBAFSqVAn58uVD/fr1MXnyZHh4eBgsY2VlBSsrK4NytVqt2BvCzNw8R9ZLjGdOYEyVxXgqjzFVlpLxzIuvS66bBG1paYlq1aoZdM2FhoaiTp06Rpd5/vw5zMz0d8X83+RDRHKmoURERJRn5boECABGjRqF//3vf1iyZAkuXryIkSNH4vbt2xgyZAiA5OGrgIAAXf22bdti06ZNWLBgAa5fv44jR45g+PDhqFmzJjw9Pd/UbhAREVEuleuGwACge/fuiI6OxqRJkxAeHo4KFSogODgYPj4+AIDw8HC9ewL17dsXsbGx+PHHH/HJJ5/AyckJTZo0wdSpU9/ULhAREVEulisTIAAYOnQohg4davS5ZcuWGZR99NFH+Oijj3K4VURERPQ2yJVDYEREREQ5iQkQERERmRwmQERERGRymAARERGRyWECRERERCaHCRARERGZHCZAREREZHKYABEREZHJYQJEREREJocJEBEREZkcJkBERERkcpgAERERkclhAkREREQmhwkQERERmRwmQERERGRymAARERGRyWECRERERCaHCRARERGZHCZAREREZHKYABEREZHJYQJEREREJocJEBEREZkcJkBERERkcpgAERERkclhAkREREQmhwkQERERmRwmQERERGRymAARERGRyWECRERERCaHCRARERGZHCZAREREZHKYABEREZHJYQJEREREJocJEBEREZkcJkBERERkciyUWlFCQgKio6MRFxeXZp3ChQsrtTkiIiKiV5btBGjPnj2YPHkyjh8/Do1Gk2Y9lUqFhISE7G6OiIiIKNuylQDt2LEDHTt2RGJiIvLnz49ixYrBzs5OqbYRERER5YhsJUATJ05EUlISZs+ejWHDhsHc3FypdhERERHlmGwlQBcuXICvry+GDx+uVHuIiIiIcly2rgKzs7ODm5ubUm0hIiIiei2ylQA1a9YMf/zxB5KSkpRqDxEREVGOy1YCNHXqVLx48QKffPIJEhMTlWoTERERUY7K1hygpUuXomXLlpgzZw527NiBRo0awcvLCyqVyqCuSqXChAkTsrM5IiIiIkVkKwH6+uuvoVKpICK4du0arl27lmZdJkBERESUW2S7ByinzJ8/H9OnT0d4eDjKly+P2bNno379+mnWj4uLw6RJk7Bq1SpERETAy8sLn3/+Ofr3759jbSQiIqK8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", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "plt.figure(figsize=(6, 4))\n", - "plt.plot(recall, precision, label=f'Precision-Recall Curve (AUC = {auc_precision_recall:.5f})')\n", - "plt.xlabel('Recall', fontsize=15)\n", - "plt.ylabel('Precision', fontsize=15)\n", - "plt.title('Precision-Recall Curve: cell-cell adhesion (GO:0098609), hiv060', fontsize=12)\n", - "plt.legend(loc='best', fontsize=13)\n", - "plt.grid(True)\n", - "plt.show()" - ] - }, - { - "cell_type": "markdown", - "id": "3fa1a6c4-8d84-4d23-a0b0-54fb71700bca", - "metadata": {}, - "source": [ - "#### Listing the biological processes for the proteins found in ensemble network" - ] - }, - { - "cell_type": "code", - "execution_count": 47, - "id": "e6930f99-afbd-4df2-8f27-83b7f6051229", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "24\n" - ] - }, - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
ElementCount
0cell-cell adhesion [GO:0098609]10
1intracellular signal transduction [GO:0035556]7
2signal transduction [GO:0007165]7
3actin cytoskeleton organization [GO:0030036]6
4peptidyl-tyrosine phosphorylation [GO:0018108]6
5response to xenobiotic stimulus [GO:0009410]6
6positive regulation of DNA-templated transcrip...6
7positive regulation of apoptotic process [GO:0...6
8negative regulation of apoptotic process [GO:0...6
9thymus development [GO:0048538]5
10positive regulation of cell population prolife...5
11positive regulation of transcription by RNA po...5
12T cell receptor signaling pathway [GO:0050852]5
\n", - "
" - ], - "text/plain": [ - " Element Count\n", - "0 cell-cell adhesion [GO:0098609] 10\n", - "1 intracellular signal transduction [GO:0035556] 7\n", - "2 signal transduction [GO:0007165] 7\n", - "3 actin cytoskeleton organization [GO:0030036] 6\n", - "4 peptidyl-tyrosine phosphorylation [GO:0018108] 6\n", - "5 response to xenobiotic stimulus [GO:0009410] 6\n", - "6 positive regulation of DNA-templated transcrip... 6\n", - "7 positive regulation of apoptotic process [GO:0... 6\n", - "8 negative regulation of apoptotic process [GO:0... 6\n", - "9 thymus development [GO:0048538] 5\n", - "10 positive regulation of cell population prolife... 5\n", - "11 positive regulation of transcription by RNA po... 5\n", - "12 T cell receptor signaling pathway [GO:0050852] 5" - ] - }, - "execution_count": 47, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "go0098609_hiv060_count_df = build_biological_process_count_df(go0098609_ensemble060_prc_df, go0098609_df)\n", - "go0098609_hiv060_count_df[go0098609_hiv060_count_df['Count'] > 4]" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "9b9d4d90-e2ac-4dac-9bd8-1b1889eacb48", - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "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.7" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/hiv-benchmarking/1_compare_prizes_network.ipynb b/hiv-benchmarking/1_compare_prizes_network.ipynb deleted file mode 100644 index 9797021..0000000 --- a/hiv-benchmarking/1_compare_prizes_network.ipynb +++ /dev/null @@ -1,1334 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "id": "01b0308e-9efd-46ee-bd97-15c1474df5a8", - "metadata": {}, - "outputs": [], - "source": [ - "# pip install pandas" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "id": "5b17d79b-a05a-4df2-b457-d60a359325f1", - "metadata": {}, - "outputs": [], - "source": [ - "import pandas as pd" - ] - }, - { - "cell_type": "markdown", - "id": "4c75e6c9-2fe3-4a7c-bad5-abae234659ae", - "metadata": {}, - "source": [ - "## Compare prizes and correctedprizes files:" - ] - }, - { - "cell_type": "markdown", - "id": "69b51b0c-5c81-40bb-b76e-7a443308a7e4", - "metadata": {}, - "source": [ - "#### 5 minutes" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "id": "2372785c-fb10-4dce-9ac8-5cb325ea3060", - "metadata": {}, - "outputs": [], - "source": [ - "corrected_prize_05_path = \"hiv_raw_data/correctedprize_05.csv\"\n", - "prize_05_path = \"hiv_raw_data/prize_05.csv\"" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "id": "2a768e4e-e9eb-4053-92d2-fa003c1ce033", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
UniprotPrize
0B0YIW25.029366
1Q990814.582688
2P027654.027456
3P699053.955817
4P067323.885428
\n", - "
" - ], - "text/plain": [ - " Uniprot Prize\n", - "0 B0YIW2 5.029366\n", - "1 Q99081 4.582688\n", - "2 P02765 4.027456\n", - "3 P69905 3.955817\n", - "4 P06732 3.885428" - ] - }, - "execution_count": 5, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "corrected_prize_05 = pd.read_csv(corrected_prize_05_path, sep='\\t', lineterminator='\\n')\n", - "corrected_prize_05.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "id": "5a86ba80-d08a-41c7-9f0f-f0c4c900ad6a", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
UniprotPrize
0B0YIW25.029366
1Q990814.582688
2P027654.027456
3P699053.955817
4P067323.885428
\n", - "
" - ], - "text/plain": [ - " Uniprot Prize\n", - "0 B0YIW2 5.029366\n", - "1 Q99081 4.582688\n", - "2 P02765 4.027456\n", - "3 P69905 3.955817\n", - "4 P06732 3.885428" - ] - }, - "execution_count": 5, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "prize_05 = pd.read_csv(prize_05_path, sep='\\t', lineterminator='\\n')\n", - "prize_05.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "id": "f1ebefbf-748d-4c28-8a64-7790d2d319f9", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "1123" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "len(corrected_prize_05)" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "id": "8754534c-233e-4ed5-81d7-c06f080bad21", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "1126" - ] - }, - "execution_count": 7, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "len(prize_05)" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "id": "bc8d5783-f137-41b0-988c-2360db2dcc8e", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
UniprotPrizemajorIdentifierintegerN
0B0YIW25.029366B0YIW2
1Q990814.582688Q99081
2P027654.027456P02765
3P699053.955817P69905
4P067323.885428P06732
\n", - "
" - ], - "text/plain": [ - " Uniprot Prize majorIdentifier integerN\n", - "0 B0YIW2 5.029366 B0YIW2 \n", - "1 Q99081 4.582688 Q99081 \n", - "2 P02765 4.027456 P02765 \n", - "3 P69905 3.955817 P69905 \n", - "4 P06732 3.885428 P06732 " - ] - }, - "execution_count": 8, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "split_df = prize_05['Uniprot'].str.split('-', expand=True)\n", - "split_df.columns = ['majorIdentifier', 'integerN']\n", - "split_df = split_df.fillna('')\n", - "prize_05 = pd.concat([prize_05, split_df], axis=1)\n", - "prize_05.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "id": "3ba57356-e3aa-4f4f-8d5f-d09dc5e1278c", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "168 proteins with isoform syntax\n" - ] - }, - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
UniprotPrizemajorIdentifierintegerN
16P68363-23.324208P683632
17P61978-23.318842P619782
27Q8IX15-33.160465Q8IX153
31Q9Y6V0-53.139505Q9Y6V05
33P49790-33.138374P497903
\n", - "
" - ], - "text/plain": [ - " Uniprot Prize majorIdentifier integerN\n", - "16 P68363-2 3.324208 P68363 2\n", - "17 P61978-2 3.318842 P61978 2\n", - "27 Q8IX15-3 3.160465 Q8IX15 3\n", - "31 Q9Y6V0-5 3.139505 Q9Y6V0 5\n", - "33 P49790-3 3.138374 P49790 3" - ] - }, - "execution_count": 9, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "secondary_identifiers_05 = prize_05[prize_05['integerN'] != '']\n", - "print(str(len(secondary_identifiers_05)) + \" proteins with isoform syntax\")\n", - "secondary_identifiers_05.head()" - ] - }, - { - "cell_type": "markdown", - "id": "6f7dc163-4717-4f7f-b96b-c6e599ba9815", - "metadata": {}, - "source": [ - "##### find intersection i.e. repeats of the same protein in prize_05" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "id": "8bddab17-b9d4-45fe-98cc-d1ecfafaa0f5", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Intersection: ['P49790', 'P26358']\n" - ] - } - ], - "source": [ - "secondary_identifiers_05_list = secondary_identifiers_05['majorIdentifier'].tolist()\n", - "prize_05_uniprot_list = prize_05['Uniprot'].tolist()\n", - "intersection_05 = list(set(secondary_identifiers_05_list) & set(prize_05_uniprot_list))\n", - "print(\"Intersection:\", intersection_05)" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "id": "3599aa3e-4d06-4156-8b10-b54ed326b406", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " Uniprot Prize majorIdentifier integerN\n", - "33 P49790-3 3.138374 P49790 3\n", - " Uniprot Prize majorIdentifier integerN\n", - "675 P49790 1.655626 P49790 \n", - "---x---\n", - " Uniprot Prize majorIdentifier integerN\n", - "368 P26358-2 1.98066 P26358 2\n", - " Uniprot Prize majorIdentifier integerN\n", - "339 P26358 2.001547 P26358 \n", - "---x---\n" - ] - } - ], - "source": [ - "for item in intersection_05:\n", - " print(secondary_identifiers_05.loc[secondary_identifiers_05['majorIdentifier'] == item])\n", - " print(prize_05.loc[prize_05['Uniprot'] == item])\n", - " print('---x---')" - ] - }, - { - "cell_type": "markdown", - "id": "25175b2f-cf91-4c2e-a3b3-a4b54177c5ad", - "metadata": {}, - "source": [ - "#### 60 minutes" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "id": "5c44dc40-ddb9-4864-9ad8-312a1c660db7", - "metadata": {}, - "outputs": [], - "source": [ - "corrected_prize_060_path = \"hiv_raw_data/correctedprize_060.csv\"\n", - "prize_060_path = \"hiv_raw_data/prize_060.csv\"" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "id": "0d99be71-4841-437b-81d3-acea3f3067e0", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
UniprotPrize
0A9Z1X76.343097
1Q990816.341176
2Q141526.278851
3P699055.581821
4B0YIW25.581821
\n", - "
" - ], - "text/plain": [ - " Uniprot Prize\n", - "0 A9Z1X7 6.343097\n", - "1 Q99081 6.341176\n", - "2 Q14152 6.278851\n", - "3 P69905 5.581821\n", - "4 B0YIW2 5.581821" - ] - }, - "execution_count": 7, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "corrected_prize_060 = pd.read_csv(corrected_prize_060_path, sep='\\t', lineterminator='\\n')\n", - "corrected_prize_060.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "id": "7a748d43-2b87-4d10-a121-77c97df7d186", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
UniprotPrize
0A9Z1X76.343097
1Q990816.341176
2Q141526.278851
3B0YIW25.581821
4P699055.581821
\n", - "
" - ], - "text/plain": [ - " Uniprot Prize\n", - "0 A9Z1X7 6.343097\n", - "1 Q99081 6.341176\n", - "2 Q14152 6.278851\n", - "3 B0YIW2 5.581821\n", - "4 P69905 5.581821" - ] - }, - "execution_count": 15, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "prize_060 = pd.read_csv(prize_060_path, sep='\\t', lineterminator='\\n')\n", - "prize_060.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 16, - "id": "2056469c-c6c4-41da-9a7e-415e75f855ef", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "1780" - ] - }, - "execution_count": 16, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "len(corrected_prize_060)" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "id": "0d918867-0062-4dcf-a809-8d694e8312d6", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "1788" - ] - }, - "execution_count": 17, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "len(prize_060)" - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "id": "913c97c1-c35c-4314-94f8-b6248b9de18e", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
UniprotPrizemajorIdentifierintegerN
0A9Z1X76.343097A9Z1X7
1Q990816.341176Q99081
2Q141526.278851Q14152
3B0YIW25.581821B0YIW2
4P699055.581821P69905
\n", - "
" - ], - "text/plain": [ - " Uniprot Prize majorIdentifier integerN\n", - "0 A9Z1X7 6.343097 A9Z1X7 \n", - "1 Q99081 6.341176 Q99081 \n", - "2 Q14152 6.278851 Q14152 \n", - "3 B0YIW2 5.581821 B0YIW2 \n", - "4 P69905 5.581821 P69905 " - ] - }, - "execution_count": 18, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "split_df = prize_060['Uniprot'].str.split('-', expand=True)\n", - "split_df.columns = ['majorIdentifier', 'integerN']\n", - "split_df = split_df.fillna('')\n", - "prize_060 = pd.concat([prize_060, split_df], axis=1)\n", - "prize_060.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 19, - "id": "2772df2d-31a5-4292-b44a-f1d3fe054264", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "253 proteins with isoform syntax\n" - ] - }, - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
UniprotPrizemajorIdentifierintegerN
8Q9UKV3-55.158391Q9UKV35
9Q96DC7-25.086508Q96DC72
11P37802-24.898987P378022
13Q9NRA8-34.898987Q9NRA83
28Q13740-24.630059Q137402
\n", - "
" - ], - "text/plain": [ - " Uniprot Prize majorIdentifier integerN\n", - "8 Q9UKV3-5 5.158391 Q9UKV3 5\n", - "9 Q96DC7-2 5.086508 Q96DC7 2\n", - "11 P37802-2 4.898987 P37802 2\n", - "13 Q9NRA8-3 4.898987 Q9NRA8 3\n", - "28 Q13740-2 4.630059 Q13740 2" - ] - }, - "execution_count": 19, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "secondary_identifiers_060 = prize_060[prize_060['integerN'] != '']\n", - "print(str(len(secondary_identifiers_060)) + \" proteins with isoform syntax\")\n", - "secondary_identifiers_060.head()" - ] - }, - { - "cell_type": "markdown", - "id": "f13e8482-713b-4307-98da-d9edbeb0ed0a", - "metadata": {}, - "source": [ - "##### find intersection i.e. repeats of the same protein in prize_060" - ] - }, - { - "cell_type": "code", - "execution_count": 20, - "id": "845c2cc9-7e7d-49a6-850e-159a26495c3f", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Intersection: ['Q7Z460', 'Q9NZN5', 'P49790', 'Q66PJ3', 'P26358', 'Q6KC79']\n" - ] - } - ], - "source": [ - "secondary_identifiers_060_list = secondary_identifiers_060['majorIdentifier'].tolist()\n", - "prize_060_uniprot_list = prize_060['Uniprot'].tolist()\n", - "intersection_060 = list(set(secondary_identifiers_060_list) & set(prize_060_uniprot_list))\n", - "print(\"Intersection:\", intersection_060)" - ] - }, - { - "cell_type": "code", - "execution_count": 21, - "id": "263c4034-e4f2-46a3-aa33-b87e76242fad", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " Uniprot Prize majorIdentifier integerN\n", - "1158 Q7Z460-4 1.867287 Q7Z460 4\n", - " Uniprot Prize majorIdentifier integerN\n", - "192 Q7Z460 3.545568 Q7Z460 \n", - "---x---\n", - " Uniprot Prize majorIdentifier integerN\n", - "1185 Q9NZN5-2 1.847335 Q9NZN5 2\n", - " Uniprot Prize majorIdentifier integerN\n", - "1061 Q9NZN5 1.953872 Q9NZN5 \n", - "---x---\n", - " Uniprot Prize majorIdentifier integerN\n", - "85 P49790-3 4.111796 P49790 3\n", - " Uniprot Prize majorIdentifier integerN\n", - "698 P49790 2.276198 P49790 \n", - "---x---\n", - " Uniprot Prize majorIdentifier integerN\n", - "1654 Q66PJ3-2 1.344998 Q66PJ3 2\n", - " Uniprot Prize majorIdentifier integerN\n", - "155 Q66PJ3 3.661493 Q66PJ3 \n", - "---x---\n", - " Uniprot Prize majorIdentifier integerN\n", - "555 P26358-2 2.379461 P26358 2\n", - " Uniprot Prize majorIdentifier integerN\n", - "251 P26358 3.272237 P26358 \n", - "---x---\n", - " Uniprot Prize majorIdentifier integerN\n", - "375 Q6KC79-2 2.770612 Q6KC79 2\n", - " Uniprot Prize majorIdentifier integerN\n", - "1038 Q6KC79 1.972153 Q6KC79 \n", - "---x---\n" - ] - } - ], - "source": [ - "for item in intersection_060:\n", - " print(secondary_identifiers_060.loc[secondary_identifiers_060['majorIdentifier'] == item])\n", - " print(prize_060.loc[prize_060['Uniprot'] == item])\n", - " print('---x---')" - ] - }, - { - "cell_type": "markdown", - "id": "69f05d34-7069-4c59-a692-82fbc0dec0a7", - "metadata": {}, - "source": [ - "## Compare prizes with network:" - ] - }, - { - "cell_type": "markdown", - "id": "b82400ed-2c59-489f-8928-2f6028d5e78c", - "metadata": {}, - "source": [ - "need to intersect the Uniprot identifiers in these prize files with those in the network file to see if the network file contains secondary identifiers with the -N syntax. If it does not, we will want to strip that syntax from the prize file as part of your preprocessing.\n" - ] - }, - { - "cell_type": "code", - "execution_count": 22, - "id": "b21398da-bcba-49d2-8e86-eb03bc2aa9df", - "metadata": {}, - "outputs": [], - "source": [ - "network_path = \"hiv_raw_data/phosphosite-irefindex13.0-uniprot.txt\"" - ] - }, - { - "cell_type": "code", - "execution_count": 23, - "id": "fb973892-77c0-4262-8059-0c94368c6b83", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
0123
0TACC1_HUMANRUXG_HUMAN0.736771U
1TACC1_HUMANKAT2A_HUMAN0.292198U
2TACC1_HUMANCKAP5_HUMAN0.724783U
3TACC1_HUMANYETS4_HUMAN0.542597U
4TACC1_HUMANLSM7_HUMAN0.714823U
\n", - "
" - ], - "text/plain": [ - " 0 1 2 3\n", - "0 TACC1_HUMAN RUXG_HUMAN 0.736771 U\n", - "1 TACC1_HUMAN KAT2A_HUMAN 0.292198 U\n", - "2 TACC1_HUMAN CKAP5_HUMAN 0.724783 U\n", - "3 TACC1_HUMAN YETS4_HUMAN 0.542597 U\n", - "4 TACC1_HUMAN LSM7_HUMAN 0.714823 U" - ] - }, - "execution_count": 23, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "network_df = pd.read_csv(network_path, sep='\\t', lineterminator='\\n', header=None)\n", - "network_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 24, - "id": "0af35deb-26a2-4d56-a8c9-6e1aa8d0a7de", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "Index([0, 1, 2, 3], dtype='int64')" - ] - }, - "execution_count": 24, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "network_df.columns" - ] - }, - { - "cell_type": "code", - "execution_count": 25, - "id": "b236932a-940b-486e-bc2f-8f1d30c8251f", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
0123proteinshuman
0TACC1_HUMANRUXG_HUMAN0.736771URUXGHUMAN
1TACC1_HUMANKAT2A_HUMAN0.292198UKAT2AHUMAN
2TACC1_HUMANCKAP5_HUMAN0.724783UCKAP5HUMAN
3TACC1_HUMANYETS4_HUMAN0.542597UYETS4HUMAN
4TACC1_HUMANLSM7_HUMAN0.714823ULSM7HUMAN
\n", - "
" - ], - "text/plain": [ - " 0 1 2 3 proteins human\n", - "0 TACC1_HUMAN RUXG_HUMAN 0.736771 U RUXG HUMAN\n", - "1 TACC1_HUMAN KAT2A_HUMAN 0.292198 U KAT2A HUMAN\n", - "2 TACC1_HUMAN CKAP5_HUMAN 0.724783 U CKAP5 HUMAN\n", - "3 TACC1_HUMAN YETS4_HUMAN 0.542597 U YETS4 HUMAN\n", - "4 TACC1_HUMAN LSM7_HUMAN 0.714823 U LSM7 HUMAN" - ] - }, - "execution_count": 25, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "proteins_df = network_df[1].str.split('_', expand=True)\n", - "proteins_df.columns = ['proteins', 'human']\n", - "proteins_df = proteins_df.fillna('')\n", - "network_df = pd.concat([network_df, proteins_df], axis=1)\n", - "network_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 26, - "id": "ea14f08d-0903-4699-b26a-f87b2e951505", - "metadata": {}, - "outputs": [], - "source": [ - "proteins_list = list(network_df['proteins'])\n", - "# print(proteins_list)" - ] - }, - { - "cell_type": "code", - "execution_count": 27, - "id": "70fcaa87-3485-465e-b042-2bfc3f551165", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[]\n" - ] - } - ], - "source": [ - "result = [x for x in proteins_list if '-' in x]\n", - "print(result)" - ] - }, - { - "cell_type": "markdown", - "id": "82dc4726-c924-478c-af6a-5901b5573f77", - "metadata": {}, - "source": [ - "--> this means that there are no proteins in the network file containing secondary identifiers with the -N syntax" - ] - }, - { - "cell_type": "code", - "execution_count": 30, - "id": "4070d8cb-cc14-497e-a9a2-05965eea96a3", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "['B7ZKJ8', 'Q9HBD4', 'J3KNL6', 'G3XAN8', 'F5H0R1', 'J3KPH8']\n" - ] - } - ], - "source": [ - "temp = list(set(proteins_list) & set(prize_05_uniprot_list))\n", - "print(temp)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "f63bb805-4869-4bc7-bfc3-b16e657dffac", - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "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.7" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/hiv-benchmarking/2_generate_protein_mapping_input.ipynb b/hiv-benchmarking/2_generate_protein_mapping_input.ipynb deleted file mode 100644 index cf46222..0000000 --- a/hiv-benchmarking/2_generate_protein_mapping_input.ipynb +++ /dev/null @@ -1,364 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "id": "14c98f02-2bf5-4e75-813d-f781339144fc", - "metadata": {}, - "outputs": [], - "source": [ - "import pandas as pd" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "id": "bf49d9c8-6e0a-4916-81c2-e454bcf3f96f", - "metadata": {}, - "outputs": [], - "source": [ - "prize_05_path = \"hiv_raw_data/prize_05.csv\"\n", - "prize_060_path = \"hiv_raw_data/prize_060.csv\"" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "id": "0dca49e1-af61-43ba-8657-4371aea162c7", - "metadata": {}, - "outputs": [], - "source": [ - "prize_05 = pd.read_csv(prize_05_path, sep='\\t', lineterminator='\\n')\n", - "prize_060 = pd.read_csv(prize_060_path, sep='\\t', lineterminator='\\n')" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "id": "941a97b3-0a51-486a-b2a5-412b4757b8c0", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
UniprotPrize
0B0YIW25.029366
1Q990814.582688
2P027654.027456
3P699053.955817
4P067323.885428
\n", - "
" - ], - "text/plain": [ - " Uniprot Prize\n", - "0 B0YIW2 5.029366\n", - "1 Q99081 4.582688\n", - "2 P02765 4.027456\n", - "3 P69905 3.955817\n", - "4 P06732 3.885428" - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "split_df_05 = prize_05['Uniprot'].str.split('-', expand=True)\n", - "split_df_05.columns = ['majorIdentifier', 'integerN']\n", - "split_df_05 = split_df_05.fillna('')\n", - "prize_05['Uniprot'] = split_df_05['majorIdentifier'].values\n", - "prize_05.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "id": "b15407c1-7493-4736-bee2-325f066601da", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
UniprotPrize
0A9Z1X76.343097
1Q990816.341176
2Q141526.278851
3B0YIW25.581821
4P699055.581821
\n", - "
" - ], - "text/plain": [ - " Uniprot Prize\n", - "0 A9Z1X7 6.343097\n", - "1 Q99081 6.341176\n", - "2 Q14152 6.278851\n", - "3 B0YIW2 5.581821\n", - "4 P69905 5.581821" - ] - }, - "execution_count": 5, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "split_df_060 = prize_060['Uniprot'].str.split('-', expand=True)\n", - "split_df_060.columns = ['majorIdentifier', 'integerN']\n", - "split_df_060 = split_df_060.fillna('')\n", - "prize_060['Uniprot'] = split_df_060['majorIdentifier'].values\n", - "prize_060.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "id": "6c27ee03-5c80-48e7-9368-61558809e6ac", - "metadata": {}, - "outputs": [], - "source": [ - "protein_list_05 = prize_05['Uniprot'].tolist()\n", - "protein_list_060 = prize_060['Uniprot'].tolist()" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "id": "4eb4a419-69c5-4c2b-8479-f42bca2034fa", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "2914\n" - ] - } - ], - "source": [ - "combined_protein_list = protein_list_05 + protein_list_060\n", - "print(len(combined_protein_list))" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "id": "81c75dad-d7d0-45be-b4ad-f30adab2e48c", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "2085\n" - ] - } - ], - "source": [ - "combined_protein_list = set(combined_protein_list)\n", - "print(len(combined_protein_list))" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "id": "7645de1f-34d4-4736-8989-a8b6bc353a0c", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Uniprot
0Q96K83
1P07305
2O95793
3Q5QP82
4Q9Y4I1
\n", - "
" - ], - "text/plain": [ - " Uniprot\n", - "0 Q96K83\n", - "1 P07305\n", - "2 O95793\n", - "3 Q5QP82\n", - "4 Q9Y4I1" - ] - }, - "execution_count": 9, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "proteins = pd.DataFrame(combined_protein_list, columns=['Uniprot'])\n", - "proteins.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "id": "ef941191-7808-4a3a-a02f-37bad073764b", - "metadata": {}, - "outputs": [], - "source": [ - "proteins.to_csv(\"hiv_processed_data/prize_list_proteins.txt\", header=None, index=False)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "922274fa-a27e-4386-8972-b844114f46b1", - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "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.7" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/hiv-benchmarking/3_preprocess_prize_file.ipynb b/hiv-benchmarking/3_preprocess_prize_file.ipynb deleted file mode 100644 index 98fd8c3..0000000 --- a/hiv-benchmarking/3_preprocess_prize_file.ipynb +++ /dev/null @@ -1,1374 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "id": "a0bc7f84-e8a9-4e23-b326-1e58b6b701bf", - "metadata": {}, - "source": [ - "## Preprocess Prize Files to SPRAS compatible format\n" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "id": "9269c94f-9a21-43c0-b8dc-e419d4b0add6", - "metadata": {}, - "outputs": [], - "source": [ - "import pandas as pd" - ] - }, - { - "cell_type": "markdown", - "id": "b8d0ae8d-4096-4e90-a3ff-747d67a76ae7", - "metadata": {}, - "source": [ - "### strip the -N syntax from original prize files & taking max prize value" - ] - }, - { - "cell_type": "markdown", - "id": "3eb77b6e-529b-43b0-aa81-f881c495a7c5", - "metadata": {}, - "source": [ - "#### prize_05" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "id": "1317d656-1177-4002-8c06-7e39a306ccca", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
UniprotPrize
0B0YIW25.029366
1Q990814.582688
2P027654.027456
3P699053.955817
4P067323.885428
\n", - "
" - ], - "text/plain": [ - " Uniprot Prize\n", - "0 B0YIW2 5.029366\n", - "1 Q99081 4.582688\n", - "2 P02765 4.027456\n", - "3 P69905 3.955817\n", - "4 P06732 3.885428" - ] - }, - "execution_count": 2, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "prize_05_path = \"hiv_raw_data/prize_05.csv\"\n", - "prize_05 = pd.read_csv(prize_05_path, sep='\\t', lineterminator='\\n')\n", - "prize_05.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "id": "96dc4aa7-ac34-4b0b-8653-50e483f78c92", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
UniprotPrize
0B0YIW25.029366
1Q990814.582688
2P027654.027456
3P699053.955817
4P067323.885428
\n", - "
" - ], - "text/plain": [ - " Uniprot Prize\n", - "0 B0YIW2 5.029366\n", - "1 Q99081 4.582688\n", - "2 P02765 4.027456\n", - "3 P69905 3.955817\n", - "4 P06732 3.885428" - ] - }, - "execution_count": 3, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "split_df_05 = prize_05['Uniprot'].str.split('-', expand=True)\n", - "split_df_05.columns = ['majorIdentifier', 'integerN']\n", - "split_df_05 = split_df_05.fillna('')\n", - "prize_05['Uniprot'] = split_df_05['majorIdentifier'].values\n", - "prize_05.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "id": "2ee2814b-9d81-4b42-80b7-eadd8c4d9998", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "['P26358', 'P49790', 'P46100']\n" - ] - } - ], - "source": [ - "uniprot_05 = prize_05['Uniprot'].tolist()\n", - "uniprot_05_set = set()\n", - "duplicate_uniprot_05 = [x for x in uniprot_05 if x in uniprot_05_set or uniprot_05_set.add(x)]\n", - "print(duplicate_uniprot_05)" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "id": "0dbf3724-2efb-4952-994e-3e7fc7d6bd0e", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "1126\n", - " Uniprot Prize\n", - "368 P26358 1.98066\n", - " Uniprot Prize\n", - "368 P26358 1.98066\n", - "--x--\n", - " Uniprot Prize\n", - "675 P49790 1.655626\n", - " Uniprot Prize\n", - "675 P49790 1.655626\n", - "--x--\n", - " Uniprot Prize\n", - "791 P46100 1.533349\n", - " Uniprot Prize\n", - "791 P46100 1.533349\n", - "--x--\n", - "1123\n" - ] - } - ], - "source": [ - "print(len(prize_05))\n", - "for protein in duplicate_uniprot_05:\n", - " mask = prize_05['Uniprot'] == protein\n", - " subset = prize_05[mask]\n", - " print(subset[subset.Prize != subset.Prize.max()])\n", - " index = subset.index[subset.Prize != subset.Prize.max()]\n", - " print(prize_05.loc[index])\n", - " prize_05 = prize_05.drop(index=index)\n", - " print('--x--')\n", - "print(len(prize_05))" - ] - }, - { - "cell_type": "markdown", - "id": "0a322df9-8bdc-4dab-9887-1b249f9dca98", - "metadata": {}, - "source": [ - "#### prize_060" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "id": "a1d82187-074b-4030-a3c3-efa3c2a63822", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
UniprotPrize
0A9Z1X76.343097
1Q990816.341176
2Q141526.278851
3B0YIW25.581821
4P699055.581821
\n", - "
" - ], - "text/plain": [ - " Uniprot Prize\n", - "0 A9Z1X7 6.343097\n", - "1 Q99081 6.341176\n", - "2 Q14152 6.278851\n", - "3 B0YIW2 5.581821\n", - "4 P69905 5.581821" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "prize_060_path = \"hiv_raw_data/prize_060.csv\"\n", - "prize_060 = pd.read_csv(prize_060_path, sep='\\t', lineterminator='\\n')\n", - "prize_060.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "id": "143cc2fd-a064-403f-b4d1-a8dca8ce958f", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
UniprotPrize
0A9Z1X76.343097
1Q990816.341176
2Q141526.278851
3B0YIW25.581821
4P699055.581821
\n", - "
" - ], - "text/plain": [ - " Uniprot Prize\n", - "0 A9Z1X7 6.343097\n", - "1 Q99081 6.341176\n", - "2 Q14152 6.278851\n", - "3 B0YIW2 5.581821\n", - "4 P69905 5.581821" - ] - }, - "execution_count": 7, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "split_df_060 = prize_060['Uniprot'].str.split('-', expand=True)\n", - "split_df_060.columns = ['majorIdentifier', 'integerN']\n", - "split_df_060 = split_df_060.fillna('')\n", - "prize_060['Uniprot'] = split_df_060['majorIdentifier'].values\n", - "prize_060.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "id": "3c6782bd-6ecf-44ca-8f8b-8fd2adf6a08b", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "['P29590', 'P26358', 'P49790', 'Q6KC79', 'Q7Z460', 'Q9NZN5', 'Q66PJ3', 'Q32MZ4']\n" - ] - } - ], - "source": [ - "uniprot_060 = prize_060['Uniprot'].tolist()\n", - "uniprot_060_set = set()\n", - "duplicate_uniprot_060 = [x for x in uniprot_060 if x in uniprot_060_set or uniprot_060_set.add(x)]\n", - "print(duplicate_uniprot_060)" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "id": "78e6a69e-b8f2-4bc5-a09b-ed0c19a3333a", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "1788\n", - " Uniprot Prize\n", - "315 P29590 2.997793\n", - " Uniprot Prize\n", - "315 P29590 2.997793\n", - "--x--\n", - " Uniprot Prize\n", - "555 P26358 2.379461\n", - " Uniprot Prize\n", - "555 P26358 2.379461\n", - "--x--\n", - " Uniprot Prize\n", - "698 P49790 2.276198\n", - " Uniprot Prize\n", - "698 P49790 2.276198\n", - "--x--\n", - " Uniprot Prize\n", - "1038 Q6KC79 1.972153\n", - " Uniprot Prize\n", - "1038 Q6KC79 1.972153\n", - "--x--\n", - " Uniprot Prize\n", - "1158 Q7Z460 1.867287\n", - " Uniprot Prize\n", - "1158 Q7Z460 1.867287\n", - "--x--\n", - " Uniprot Prize\n", - "1185 Q9NZN5 1.847335\n", - " Uniprot Prize\n", - "1185 Q9NZN5 1.847335\n", - "--x--\n", - " Uniprot Prize\n", - "1654 Q66PJ3 1.344998\n", - " Uniprot Prize\n", - "1654 Q66PJ3 1.344998\n", - "--x--\n", - " Uniprot Prize\n", - "1770 Q32MZ4 1.059807\n", - " Uniprot Prize\n", - "1770 Q32MZ4 1.059807\n", - "--x--\n", - "1780\n" - ] - } - ], - "source": [ - "print(len(prize_060))\n", - "for protein in duplicate_uniprot_060:\n", - " mask = prize_060['Uniprot'] == protein\n", - " subset = prize_060[mask]\n", - " print(subset[subset.Prize != subset.Prize.max()])\n", - " index = subset.index[subset.Prize != subset.Prize.max()]\n", - " print(prize_060.loc[index])\n", - " prize_060 = prize_060.drop(index=index)\n", - " print('--x--')\n", - "print(len(prize_060))" - ] - }, - { - "cell_type": "markdown", - "id": "239dc864-2968-4616-8123-9e2ff2cfe4b7", - "metadata": {}, - "source": [ - "### modifying column headers" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "id": "c9a760c9-3aca-42d3-bd81-653837fe6c1c", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
NODEIDprize
0B0YIW25.029366
1Q990814.582688
2P027654.027456
3P699053.955817
4P067323.885428
\n", - "
" - ], - "text/plain": [ - " NODEID prize\n", - "0 B0YIW2 5.029366\n", - "1 Q99081 4.582688\n", - "2 P02765 4.027456\n", - "3 P69905 3.955817\n", - "4 P06732 3.885428" - ] - }, - "execution_count": 10, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "prize_05 = prize_05.rename(columns={'Uniprot': 'NODEID', 'Prize':'prize'})\n", - "prize_05.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "id": "e86bfae3-de60-4a21-80ef-f098056bcc75", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
NODEIDprize
0A9Z1X76.343097
1Q990816.341176
2Q141526.278851
3B0YIW25.581821
4P699055.581821
\n", - "
" - ], - "text/plain": [ - " NODEID prize\n", - "0 A9Z1X7 6.343097\n", - "1 Q99081 6.341176\n", - "2 Q14152 6.278851\n", - "3 B0YIW2 5.581821\n", - "4 P69905 5.581821" - ] - }, - "execution_count": 11, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "prize_060 = prize_060.rename(columns={'Uniprot': 'NODEID', 'Prize':'prize'})\n", - "prize_060.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "id": "d72d14ca-69fc-4fff-9ff7-500b07a6f1e4", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
NODEIDprize
0B0YIW25.029366
1Q990814.582688
2P027654.027456
3P699053.955817
4P067323.885428
\n", - "
" - ], - "text/plain": [ - " NODEID prize\n", - "0 B0YIW2 5.029366\n", - "1 Q99081 4.582688\n", - "2 P02765 4.027456\n", - "3 P69905 3.955817\n", - "4 P06732 3.885428" - ] - }, - "execution_count": 12, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# prize_05['sources'] = pd.Series(dtype='boolean')\n", - "# prize_05['targets'] = pd.Series(dtype='boolean')\n", - "# prize_05['active'] = pd.Series(dtype='boolean')\n", - "prize_05.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "id": "73f98d5d-f498-4f7d-b6f5-91bcd9cc19c6", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
NODEIDprize
0A9Z1X76.343097
1Q990816.341176
2Q141526.278851
3B0YIW25.581821
4P699055.581821
\n", - "
" - ], - "text/plain": [ - " NODEID prize\n", - "0 A9Z1X7 6.343097\n", - "1 Q99081 6.341176\n", - "2 Q14152 6.278851\n", - "3 B0YIW2 5.581821\n", - "4 P69905 5.581821" - ] - }, - "execution_count": 13, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# prize_060['sources'] = pd.Series(dtype='boolean')\n", - "# prize_060['targets'] = pd.Series(dtype='boolean')\n", - "# prize_060['active'] = pd.Series(dtype='boolean')\n", - "prize_060.head()" - ] - }, - { - "cell_type": "markdown", - "id": "3c93ca16-a523-4a23-8a40-ae149aa704c7", - "metadata": {}, - "source": [ - "## do ID mapping based on the output from UNIPROT" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "id": "9484f482-ab44-4189-a9f8-c3afc7a9a990", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
FromEntryEntry Name
0Q96K83Q96K83ZN521_HUMAN
1P07305P07305H10_HUMAN
2O95793O95793STAU1_HUMAN
3Q5QP82Q5QP82DCA10_HUMAN
4Q9Y4I1Q9Y4I1MYO5A_HUMAN
\n", - "
" - ], - "text/plain": [ - " From Entry Entry Name\n", - "0 Q96K83 Q96K83 ZN521_HUMAN\n", - "1 P07305 P07305 H10_HUMAN\n", - "2 O95793 O95793 STAU1_HUMAN\n", - "3 Q5QP82 Q5QP82 DCA10_HUMAN\n", - "4 Q9Y4I1 Q9Y4I1 MYO5A_HUMAN" - ] - }, - "execution_count": 14, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "id_mapping = pd.read_csv(\"hiv_raw_data/idmapping_2024_06_26.tsv\", sep='\\t')\n", - "id_mapping = id_mapping.drop(columns=['Reviewed', 'Protein names'])\n", - "id_mapping.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "id": "da7a894e-808f-4149-9b55-a49156f2fce2", - "metadata": {}, - "outputs": [], - "source": [ - "def mapping(prize_protein_name, id_mapping_df):\n", - " try:\n", - " network_protein_name = id_mapping.loc[id_mapping['Entry'] == prize_protein_name, 'Entry Name'].iloc[0]\n", - " except IndexError:\n", - " network_protein_name = prize_protein_name + '_HUMAN'\n", - " return network_protein_name" - ] - }, - { - "cell_type": "code", - "execution_count": 16, - "id": "19e021c6-a155-47f0-9898-40b892cfe564", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "'plswork_HUMAN'" - ] - }, - "execution_count": 16, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "mapping('plswork', id_mapping)" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "id": "5058434e-0092-4d2a-b9be-5859ff7b1f65", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
NODEIDprizeMappedProteins
0B0YIW25.029366B0YIW2_HUMAN
1Q990814.582688HTF4_HUMAN
2P027654.027456FETUA_HUMAN
3P699053.955817HBA_HUMAN
4P067323.885428KCRM_HUMAN
\n", - "
" - ], - "text/plain": [ - " NODEID prize MappedProteins\n", - "0 B0YIW2 5.029366 B0YIW2_HUMAN\n", - "1 Q99081 4.582688 HTF4_HUMAN\n", - "2 P02765 4.027456 FETUA_HUMAN\n", - "3 P69905 3.955817 HBA_HUMAN\n", - "4 P06732 3.885428 KCRM_HUMAN" - ] - }, - "execution_count": 17, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "prize_05['MappedProteins'] = prize_05.apply(lambda row: mapping(row['NODEID'], id_mapping), axis=1)\n", - "prize_05.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "id": "992178b1-ac84-4e18-8df3-651d4a049417", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
NODEIDprize
0B0YIW2_HUMAN5.029366
1HTF4_HUMAN4.582688
2FETUA_HUMAN4.027456
3HBA_HUMAN3.955817
4KCRM_HUMAN3.885428
\n", - "
" - ], - "text/plain": [ - " NODEID prize\n", - "0 B0YIW2_HUMAN 5.029366\n", - "1 HTF4_HUMAN 4.582688\n", - "2 FETUA_HUMAN 4.027456\n", - "3 HBA_HUMAN 3.955817\n", - "4 KCRM_HUMAN 3.885428" - ] - }, - "execution_count": 18, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "mapped_proteins = prize_05['MappedProteins'].tolist()\n", - "prize_05['NODEID'] = mapped_proteins\n", - "prize_05 = prize_05.drop('MappedProteins',axis=1)\n", - "prize_05.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 19, - "id": "c87d15e9-2ab0-4a64-96b0-24665ae3e9bf", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
NODEIDprizeMappedProteins
0A9Z1X76.343097A9Z1X7_HUMAN
1Q990816.341176HTF4_HUMAN
2Q141526.278851EIF3A_HUMAN
3B0YIW25.581821B0YIW2_HUMAN
4P699055.581821HBA_HUMAN
\n", - "
" - ], - "text/plain": [ - " NODEID prize MappedProteins\n", - "0 A9Z1X7 6.343097 A9Z1X7_HUMAN\n", - "1 Q99081 6.341176 HTF4_HUMAN\n", - "2 Q14152 6.278851 EIF3A_HUMAN\n", - "3 B0YIW2 5.581821 B0YIW2_HUMAN\n", - "4 P69905 5.581821 HBA_HUMAN" - ] - }, - "execution_count": 19, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "prize_060['MappedProteins'] = prize_060.apply(lambda row: mapping(row['NODEID'], id_mapping), axis=1)\n", - "prize_060.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 20, - "id": "95d7715b-6129-4c11-8bdb-03d3685ebc82", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
NODEIDprize
0A9Z1X7_HUMAN6.343097
1HTF4_HUMAN6.341176
2EIF3A_HUMAN6.278851
3B0YIW2_HUMAN5.581821
4HBA_HUMAN5.581821
\n", - "
" - ], - "text/plain": [ - " NODEID prize\n", - "0 A9Z1X7_HUMAN 6.343097\n", - "1 HTF4_HUMAN 6.341176\n", - "2 EIF3A_HUMAN 6.278851\n", - "3 B0YIW2_HUMAN 5.581821\n", - "4 HBA_HUMAN 5.581821" - ] - }, - "execution_count": 20, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "mapped_proteins = prize_060['MappedProteins'].tolist()\n", - "prize_060['NODEID'] = mapped_proteins\n", - "prize_060 = prize_060.drop('MappedProteins',axis=1)\n", - "prize_060.head()" - ] - }, - { - "cell_type": "markdown", - "id": "c54a9c98-4b37-4ee9-a5b9-3f592d66256b", - "metadata": {}, - "source": [ - "## save these modified prize files " - ] - }, - { - "cell_type": "code", - "execution_count": 22, - "id": "4638409f-7e07-4bd7-9503-5d4fbfa37ce5", - "metadata": {}, - "outputs": [], - "source": [ - "prize_05.to_csv(\"hiv_processed_data/modified_prize_05.txt\", index=False, sep='\\t')\n", - "prize_060.to_csv(\"hiv_processed_data/modified_prize_060.txt\", index=False, sep='\\t')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "38fdf579-0e40-42ed-bc9b-49c428e3cf19", - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "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.7" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/hiv-benchmarking/4_filter_empty_pathways.ipynb b/hiv-benchmarking/4_filter_empty_pathways.ipynb deleted file mode 100644 index 5d7bb96..0000000 --- a/hiv-benchmarking/4_filter_empty_pathways.ipynb +++ /dev/null @@ -1,97 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 4, - "id": "242b3c92-0170-458b-a46b-1fcabbb4a01c", - "metadata": {}, - "outputs": [], - "source": [ - "import os" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "id": "66dc5430-b195-4422-a3da-9ad48491c29b", - "metadata": {}, - "outputs": [], - "source": [ - "hiv_preprocessing_results_path = \"spras-hiv-results/hiv-benchmarking-05-060-modified-v2\"" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "id": "1265f77c-c5a0-43d8-8d9d-60b55c602629", - "metadata": {}, - "outputs": [], - "source": [ - "def delete_empty_pathway_files_and_dirs(root_dir):\n", - " no_of_files_deleted = 0\n", - " for dirpath, dirnames, filenames in os.walk(root_dir, topdown=False):\n", - " # delete empty .txt files\n", - " for filename in filenames:\n", - " file_path = os.path.join(dirpath, filename)\n", - " if file_path.endswith('.txt') and os.path.isfile(file_path) and os.path.getsize(file_path) == 0:\n", - " print(\"Deleting File >>>\", file_path.replace('\\\\', '/'))\n", - " os.remove(file_path)\n", - " no_of_files_deleted += 1\n", - " \n", - " # look for remaining .txt files in the directory\n", - " txt_files_remaining = any(f.endswith('.txt') for f in os.listdir(dirpath))\n", - " \n", - " # delete directory if there are no remaining .txt files\n", - " if not txt_files_remaining:\n", - " print(\"Deleting Directory >>>\", dirpath.replace('\\\\', '/'))\n", - " for filename in os.listdir(dirpath):\n", - " file_path = os.path.join(dirpath, filename)\n", - " if os.path.isfile(file_path):\n", - " print(\"Deleting File >>>\", file_path.replace('\\\\', '/'))\n", - " os.remove(file_path)\n", - " os.rmdir(dirpath)\n", - " \n", - " print(no_of_files_deleted, \"file(s) have been deleted.\")" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "id": "633bb432-c781-4706-9c68-87446f842397", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0 file(s) have been deleted.\n" - ] - } - ], - "source": [ - "delete_empty_pathway_files_and_dirs(hiv_preprocessing_results_path)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "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.7" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/hiv-benchmarking/5_plot_num_nodes_summary_table.ipynb b/hiv-benchmarking/5_plot_num_nodes_summary_table.ipynb deleted file mode 100644 index 876492d..0000000 --- a/hiv-benchmarking/5_plot_num_nodes_summary_table.ipynb +++ /dev/null @@ -1,384 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "id": "ff83667b-3c8a-48f3-899a-ad0ec8da0b89", - "metadata": {}, - "outputs": [], - "source": [ - "import pandas as pd\n", - "import matplotlib.pyplot as plt" - ] - }, - { - "cell_type": "markdown", - "id": "e4b9697f-aab6-4f46-af3a-170bb789eeda", - "metadata": {}, - "source": [ - "### hiv05 summary table - number of nodes histogram" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "id": "73f14ff8-ca74-4263-80b0-0f3260d8eac2", - "metadata": {}, - "outputs": [], - "source": [ - "hiv05_summary = pd.read_csv('spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-pathway-summary.txt', sep='\\t')" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "id": "f0e0c77c-293d-4d96-8344-c807a19271f2", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
NameNumber of nodesNumber of undirected edgesNumber of connected componentsNodes in prizeNodes in sourcesNodes in targets
0output/hiv-omicsintegrator1-params-2G7CMNV/pat...5127245100
1output/hiv-omicsintegrator1-params-2NFVB7W/pat...844800
2output/hiv-omicsintegrator1-params-2NKIR7L/pat...2111102100
3output/hiv-omicsintegrator1-params-2NL4RDV/pat...000000
4output/hiv-omicsintegrator1-params-422WXNM/pat...10551000
\n", - "
" - ], - "text/plain": [ - " Name Number of nodes \\\n", - "0 output/hiv-omicsintegrator1-params-2G7CMNV/pat... 51 \n", - "1 output/hiv-omicsintegrator1-params-2NFVB7W/pat... 8 \n", - "2 output/hiv-omicsintegrator1-params-2NKIR7L/pat... 21 \n", - "3 output/hiv-omicsintegrator1-params-2NL4RDV/pat... 0 \n", - "4 output/hiv-omicsintegrator1-params-422WXNM/pat... 10 \n", - "\n", - " Number of undirected edges Number of connected components Nodes in prize \\\n", - "0 27 24 51 \n", - "1 4 4 8 \n", - "2 11 10 21 \n", - "3 0 0 0 \n", - "4 5 5 10 \n", - "\n", - " Nodes in sources Nodes in targets \n", - "0 0 0 \n", - "1 0 0 \n", - "2 0 0 \n", - "3 0 0 \n", - "4 0 0 " - ] - }, - "execution_count": 3, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "hiv05_summary.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 16, - "id": "4f8f0518-1143-423e-a514-7bf8608958dc", - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "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ItIMEw0iIiLSDBMNIiIi0gwTDSIiItIMEw0iIiLSDBMNIiIi0gwTDSIiItIMEw0iIiLSDBMNIiIi0kyBTDSmT58ORVEMbu7u7mq9iGD69Onw9PSEtbU1AgMDcebMmXwcMRERERlTIBMNAKhUqRKuX7+u3n799Ve1bsGCBVi0aBGWLFmC2NhYuLu7IygoCA8fPszHERMREdGLCmyiYW5uDnd3d/VWrFgxAM9nMxYvXowpU6agU6dOqFy5MiIiIvD48WNs2LAhn0dNREREGRXYROPChQvw9PSEv78/Xn/9dVy8eBEAEBcXh4SEBLRq1Uptq9Pp0LRpUxw9ejTLeCkpKUhMTDS4ERERkbYKZKIREBCANWvWYN++fVixYgUSEhLQoEED3LlzBwkJCQAANzc3g8e4ubmpdcbMnTsXjo6O6s3b21vTbSAiIqICmmgEBwejc+fOqFKlClq2bIndu3cDACIiItQ2iqIYPEZEMpVlNGnSJDx48EC9Xb16VZvBExERkapAJhovsrW1RZUqVXDhwgX16pMXZy9u3ryZaZYjI51OBwcHB4MbERERaatQJBopKSk4e/YsPDw84O/vD3d3d0RFRan1qampiI6ORoMGDfJxlERERPQi8/wegDHjxo1DSEgIfHx8cPPmTcyePRuJiYkICwuDoigYNWoU5syZgzJlyqBMmTKYM2cObGxs0LNnz/weOhEREWVQIBONa9euoUePHrh9+zaKFSuGevXq4dixY/D19QUAjB8/HsnJyRg2bBju3buHgIAA7N+/H/b29vk8ciIiIspIERHJ70Hkh8TERDg6OuLBgweZztfwm7g7z/q5NK9tnsUiIiIqCLL7Dn1RoThHg4iIiAonJhpERESkGSYaREREpBkmGkRERKQZJhpERESkGSYaREREpBkmGkRERKQZJhpERESkGSYaREREpBkmGkRERKQZJhpERESkGSYaREREpBkmGkRERKQZJhpERESkGSYaREREpBkmGkRERKQZJhpERESkGSYaREREpBkmGkRERKQZJhpERESkGSYaREREpBkmGkRERKQZJhpERESkGSYaREREpBkmGkRERKQZJhpERESkGSYaREREpBkmGkRERKQZJhpERESkGSYaREREpBkmGkRERKQZJhpERESkGSYaREREpBkmGkRERKQZJhpERESkGSYaREREpBkmGkRERKQZJhpERESkGSYaREREpBkmGkRERKQZJhpERESkGSYaREREpBkmGkRERKQZJhpERESkmQKfaMydOxeKomDUqFFqmYhg+vTp8PT0hLW1NQIDA3HmzJn8GyQREREZVaATjdjYWHz++eeoWrWqQfmCBQuwaNEiLFmyBLGxsXB3d0dQUBAePnyYTyMlIiIiYwpsopGUlIRevXphxYoVcHZ2VstFBIsXL8aUKVPQqVMnVK5cGREREXj8+DE2bNiQjyMmIiKiFxXYRGP48OFo27YtWrZsaVAeFxeHhIQEtGrVSi3T6XRo2rQpjh49+ncPk4iIiLJhnt8DMGbjxo04ceIEYmNjM9UlJCQAANzc3AzK3dzccPny5SxjpqSkICUlRb2fmJiYR6MlIiKirBS4GY2rV6/irbfewrp162BlZZVlO0VRDO6LSKayjObOnQtHR0f15u3tnWdjJiIiIuMKXKJx/Phx3Lx5E7Vq1YK5uTnMzc0RHR2Njz/+GObm5upMhn5mQ+/mzZuZZjkymjRpEh48eKDerl69qul2EBERUQE8dNKiRQv8+uuvBmX9+/dH+fLlMWHCBJQsWRLu7u6IiopCjRo1AACpqamIjo7G/Pnzs4yr0+mg0+k0HTsREREZKnCJhr29PSpXrmxQZmtrC1dXV7V81KhRmDNnDsqUKYMyZcpgzpw5sLGxQc+ePfNjyERERJSFApdo5MT48eORnJyMYcOG4d69ewgICMD+/fthb2+f30MjIiKiDBQRkfweRH5ITEyEo6MjHjx4AAcHB4M6v4m786yfS/Pa5lksIiKigiC779AXFbiTQYmIiOifg4kGERERaYaJBhEREWmGiQYRERFphokGERERaYaJBhEREWmGiQYRERFphokGERERaYaJBhEREWmGiQYRERFphokGERERaYaJBhEREWmGiQYRERFphokGERERaYaJBhEREWmGiQYRERFphokGERERaYaJBhEREWmGiQYRERFphokGERERaYaJBhEREWmGiQYRERFphokGERERaYaJBhEREWmGiQYRERFphokGERERaYaJBhEREWmGiQYRERFphokGERERaYaJBhEREWmGiQYRERFphokGERERaYaJBhEREWnG5ETjypUruHv37kvb3bt3D1euXDG1GyIiIirETE40/P398fbbb7+03fjx41GyZElTuyEiIqJC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nTsXjo6O6s3b21uT8RIREdH/FOhE4z//+Q+++uorHDhwAF5eXmq5u7s7gP/NbOjdvHkz0yyH3qRJk/DgwQP1dvXqVe0GTkRERAAKaKIhIhgxYgS2bduG7777Dv7+/gb1/v7+cHd3R1RUlFqWmpqK6OhoNGjQwGhMnU4HBwcHgxsRERFpq0CeozF8+HBs2LABX375Jezt7dWZC0dHR1hbW0NRFIwaNQpz5sxBmTJlUKZMGcyZMwc2Njbo2bNnPo+eiIiI9ApkorFs2TIAQGBgoEF5eHg4+vXrBwAYP348kpOTMWzYMNy7dw8BAQHYv38/7O3t/+bREhERUVYKZKIhIi9toygKpk+fjunTp2s/ICIiIjJJgTxHg4iIiP4ZmGgQERGRZphoEBERkWaYaBAREZFmmGgQERGRZphoEBERkWaYaBAREZFmmGgQERGRZphoEBERkWaYaBAREZFmmGgQERGRZphoEBERkWaYaBAREZFmmGgQERGRZphoEBERkWaYaBAREZFmmGgQERGRZphoEBERkWaYaBAREZFmmGgQERGRZphoEBERkWaYaBAREZFmmGgQERGRZphoEBERkWaYaBAREZFmmGgQERGRZphoEBERkWaYaBAREZFmmGgQERGRZphoEBERkWaYaBAREZFmmGgQERGRZphoEBERkWaYaBAREZFmmGgQERGRZphoEBERkWaYaBAREZFmmGgQERGRZphoEBERkWaYaBAREZFmmGgQERGRZphoEBERkWaYaBAREZFmzPN7AP9GfhN351msS/Pa5lksIiKivFYgZzQOHTqEkJAQeHp6QlEU7Nixw6BeRDB9+nR4enrC2toagYGBOHPmTP4MloiIiLJUIBONR48eoVq1aliyZInR+gULFmDRokVYsmQJYmNj4e7ujqCgIDx8+PBvHikRERFlp0AeOgkODkZwcLDROhHB4sWLMWXKFHTq1AkAEBERATc3N2zYsAFDhgz5O4dKRERE2SiQMxrZiYuLQ0JCAlq1aqWW6XQ6NG3aFEePHs3HkREREdGLCuSMRnYSEhIAAG5ubgblbm5uuHz5cpaPS0lJQUpKino/MTFRmwESERGRqtDNaOgpimJwX0QylWU0d+5cODo6qjdvb2+th0hERPSvV+gSDXd3dwD/m9nQu3nzZqZZjowmTZqEBw8eqLerV69qOk4iIiIqhImGv78/3N3dERUVpZalpqYiOjoaDRo0yPJxOp0ODg4OBjciIiLSVoE8RyMpKQl//PGHej8uLg4nT56Ei4sLfHx8MGrUKMyZMwdlypRBmTJlMGfOHNjY2KBnz575OGoiIiJ6UYFMNH766Sc0a9ZMvT9mzBgAQFhYGFavXo3x48cjOTkZw4YNw7179xAQEID9+/fD3t4+v4ZMRERERhTIRCMwMBAikmW9oiiYPn06pk+f/vcNioiIiF5ZoTtHg4iIiAoPJhpERESkGSYaREREpBkmGkRERKQZJhpERESkGSYaREREpBkmGkRERKQZJhpERESkGSYaREREpBkmGkRERKQZJhpERESkGSYaREREpBkmGkRERKQZJhpERESkGSYaREREpBkmGkRERKQZJhpERESkGSYaREREpBkmGkRERKQZJhpERESkGSYaREREpBkmGkRERKQZJhpERESkGSYaREREpBkmGkRERKQZJhpERESkGSYaREREpBnz/B4AERH9s/hN3J2n8S7Na/u3xs/rPozF/zfhjAYRERFphokGERERaYaJBhEREWmGiQYRERFphokGERERaYZXnVCB83ecUV7Y8Yx4osLt3/Qe5owGERERaYaJBhEREWmGiQYRERFphokGERERaYYng/4D/ROW/6X8VdhPVCvs4yf6J+GMBhEREWmGiQYRERFphokGERERaYaJBhEREWmGiQYRERFphled0L+S1lcl8KqH7BX2/VPYXz+8cuyfryC9xwr1jMbSpUvh7+8PKysr1KpVC4cPH87vIREREVEGhTbR2LRpE0aNGoUpU6bg559/RuPGjREcHIwrV67k99CIiIjo/xXaRGPRokUYOHAgBg0ahAoVKmDx4sXw9vbGsmXL8ntoRERE9P8K5TkaqampOH78OCZOnGhQ3qpVKxw9etToY1JSUpCSkqLef/DgAQAgMTExU9v0lMd5NtbCHt9YH4U9fl73wfiM/2+Ob6yPwh4/r/v4J8bXl4nIywNIIfTXX38JAPn+++8Nyt977z0pW7as0cdMmzZNAPDGG2+88cYbb3l0u3r16ku/swvljIaeoigG90UkU5nepEmTMGbMGPV+eno67t69C1dX1ywfk53ExER4e3vj6tWrcHBweOXHMz7jM37+9sH4jM/4pscXETx8+BCenp4vbVsoE42iRYuiSJEiSEhIMCi/efMm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RAnodDp4enqif//+RrdNRLBx40Y0adIE7u7usLKygre3N1q2bIlPP/00236I8owQkckAiE6nExGRESNGCACZPHmyQZtp06YJAJk7d65BedOmTQWAxMXFZYobFxcnAKRp06ZGYw0dOlR0Op1UqlRJOnfuLKVLlxYAUrZsWbl//77UqVNHXF1dpV27dhIYGCiKooiiKLJ3716DeAcOHBAAEhISIj4+PuLm5ibdunWToKAgMTc3FwAyffr0TOM7e/aslChRQgBIqVKlpGPHjtKkSROxtLQUMzMzWb9+vdF+2rRpI15eXuLu7i5dunSRdu3ayfLly1+6n7/55huxtrYWAFKzZk15/fXXpXr16gJA7Ozs5NChQ2rbFStWSFhYmNja2goACQsLU2+3bt3Kth/9ODt06CBly5YVNzc3CQkJkWbNmkmRIkUEgKxYsSLT49auXStFihQRRVGkYcOG8vrrr0vZsmUFgLi5ucnZs2czPaZLly7q+Dt06CDt27cXGxsbadu2rfj4+Iixj+ctW7aIpaWlAJBatWpJly5dpEaNGgJAXF1d5fTp0wbtJ0yYIADE3t5egoODpUePHhIYGChFixYVX1/fl+53orzARIMoFzImGn/99ZdYWVmJvb293L59W22jRaIBQD788EO1PDU1VVq2bCkApGLFihIYGCh3795V61euXCkApEmTJgbx9F+sACQoKEiSkpLUuh9//FHs7OzEzMxMfv75Z7U8LS1NKleuLADko48+kvT0dLXuxIkT4urqKra2tnLjxg2j/XTs2FGSk5Oz3qkvSEpKEjc3NwEgy5YtM6hbtGiRABAvLy958uSJQZ2vr6/RL+vsZBxn586dDfbHjh07BID4+PgYPObKlStibW0t5ubmsnPnTrX82bNnMmrUKAEgderUMXjMhg0bBICULFlSrl27ppZfvHhRvLy81DFkdPHiRbGxsRFHR0eJjo42qIuIiMjUT3Jysuh0OvHz85M7d+4YtH/69GmmGERaYaJBlAsZEw0RkZEjRwoAmThxolqmRaLxYsIgIvLVV18JAClSpIhcuHDBoC4tLU2KFi0qFhYWkpqaqpbrv1gVRZHff/89U0z9L+I33nhDLdu+fbsAkB49ehjdJ4sXLxYA8sEHH2TqR6fTGXyx5sSqVasEgDRu3Nhofa1atQSAREZGGpTnJtFwcHDI9OUsIlKlSpVMz9nUqVMFgPTp0ydT+ydPnoinp6cAkJiYGLW8cePGAiDTzI+IyPLly40mGm+99ZYAyHIGKDQ0VADI8ePHRUTkxo0b6uwMUX7iORpEeWjixImwsrLCkiVLcPv2bc36CQoKylSmP+nRz88PpUuXNqgrUqQI/Pz88PTpU6PjqlGjBsqVK5epvEePHgCAI0eOqGVRUVEAgNDQUKNj019CGhsbm6muZs2aKFGihNHHZeXw4cMAgF69ehmt7927t0G7vFC7dm24uLhkKi9btiyA5+ez5GR8Op0OXbt2NWj39OlT/PDDDzAzM0OXLl0yPUa/z1+k3+8dOnQwWv/ifi9evDi8vLywe/duLFy4MMtzRYi0xkSDKA95eHhg6NChSEpKwsKFCzXrx9iXta2tbZZ1GetTUlIy1fn6+hp9jJ+fHwAYfEnpTzrs3r27wYmW+lvt2rUBwGhC4+Pjk8UWZU3ft34sORljbnl5eRktt7OzA2C4D191fHfu3EFqairc3NxgaWmZqb29vT2cnJwylev3u7u7u9H9Pm7cOACG+z0iIgLOzs4YP348SpQogZIlS6Jfv37Yv39/1htPlMe4jgZRHpswYQKWL1+OTz/9VP3wf1Xp6enZ1me3aqTWK0o+e/YMABAcHIzixYtn2a58+fKZyqysrEzu92XblZfbbUqsnI5P/v8PZr9qH8+ePYOiKOjbt2+27SpVqqT+v3nz5vjjjz+wa9cu7N27F9HR0YiIiEBERAS6deuGTZs2vdIYiEzBRIMoj7m7u+PNN9/EokWLsGDBAnUm4UX6X7NJSUmZ6q5evarpGF90+fLlbMs9PT3VMv2v/aFDh6J9+/aaj03ft/5y1Rfpx+jh4aH5WIzx9PTEuXPnEBcXpx5ayejF8RUtWhSWlpZISEhAampqplmNhw8fGl3O3svLC3/++Sc+/vhjODg45Hh8Dg4O6NmzJ3r27AkAOHbsGLp27YovvvgC/fr1Q3BwcI5jEZmCh06INDBhwgTY2Nhg6dKluHHjhtE2+i+e8+fPZ6r7u6e2T548aXQckZGRAICGDRuqZS1btgTwv5U3tda4cWMAwPr1643W68v17f5u2Y0vNTUVmzdvNmhnYWGBunXrIj09HVu3bs30mI0bNxrtJ6/2e7169dCnTx8Az9fkINIaEw0iDRQvXhzDhg3D48ePERERYbRN06ZNAQAffPABHj9+rJZ/8803OV7EKq+kp6dj5MiRBuM4fvw4Pv30U5iZmWHIkCFqeZcuXVC+fHmsXr0a8+fPx9OnTw1ipaamYtu2bXn2JdatWze4ubnh8OHD+Pzzzw3qPv74Y8TGxsLLywsdO3bMk/5e1cCBA2FtbY3IyEjs3r1bLU9PT8fkyZPx119/oU6dOqhXr55ap9+fU6dONTix9PLly5g1a5bRfsaOHQtra2uMHj0aO3fuzFR/9+5dLF26FMnJyQCAK1euYPXq1QbPKfD8/JIDBw4AMO2cGaJXlt+XvRAVZnjh8taMbt68qS4aBSOXtz5+/FjKlSunrs3QuXNnqVu3rpiZmcm4ceOyvbw1PDw8U39ZXRKrZ+xyWv3lnO3atRMfHx9xd3eXbt26SevWrcXCwkIAyDvvvJMp1tmzZ9VFpTw8PKR169bStWtXqVevnjg5OQkA2b59e6Z+wsLCjI7tZTIu2FWrVi3p0aOHulCVra2twYJderm5vDWrcYaFhQkAOXDggEF5xgW7GjVqJD169FCfW2MLdqWnp0vHjh3VxbRCQ0OlQ4cOYmtrK23atMlywa6tW7eq+6FcuXLq46pXr64u5HXv3j0REfn5558FgNjY2EiTJk2kZ8+e0qFDBylWrJgAkLp160pKSsor7R8iU3BGg0gjxYoVw/Dhw7Ost7a2xrfffosePXrg4cOH+Prrr5Geno5NmzZl+zgtuLq6IiYmBi1btsSBAwdw8OBBVKxYEeHh4UZ/YZcvXx4nT57E9OnTUbx4cRw5cgS7d+/GrVu30KRJE4SHh6tT/XmhRYsWiI2NRY8ePXDt2jVs2bIFCQkJ6N27N44fP55vh030evfujUOHDqFdu3Y4e/YstmzZguTkZLz55ps4fvx4phNjFUXBpk2b8N5776FYsWL4+uuvcfLkSfznP//Btm3bsjxRtFOnTvjll18wZMgQPH36FHv27MHBgweRkpKCXr16YdeuXXB0dAQAlCpVCu+//z4CAwNx5coVbNu2Dd9//z38/Pzw8ccf4+DBg0aveiHKa4rI/58CTURERJTHOKNBREREmmGiQURERJphokFERESaYaJBREREmmGiQURERJphokFERESaYaJBREREmmGiQURERJphokFERESaYaJBREREmmGiQURERJphokFERESaYaJBREREmvk/PtxOSNObhHgAAAAASUVORK5CYII=", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "value_counts = hiv05_summary['Number of nodes'].value_counts()\n", - "# Sort the index (which represents the unique values in 'Number of nodes') in ascending order\n", - "sorted_value_counts = value_counts.sort_index()\n", - "plt.figure(figsize=(6, 4))\n", - "sorted_value_counts.plot(kind='bar', width=0.8)\n", - "plt.xlabel('Number of nodes', fontsize = 15)\n", - "plt.ylabel('Count of Pathways per Num. of Nodes', fontsize = 15)\n", - "plt.title('Num. of nodes value counts: hiv05-pathway-summary', fontsize=12)\n", - "plt.show()" - ] - }, - { - "cell_type": "markdown", - "id": "531a65aa-136b-4595-972f-4735786a9d9d", - "metadata": {}, - "source": [ - "### hiv060 summary table - number of nodes histogram" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "id": "50bd204d-a946-42c0-9371-b903bd6ad9c4", - "metadata": {}, - "outputs": [], - "source": [ - "hiv060_summary = pd.read_csv('spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-pathway-summary.txt', sep='\\t')" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "id": "7d4b240d-c6cf-4056-98ac-9a5461f611d7", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
NameNumber of nodesNumber of undirected edgesNumber of connected componentsNodes in prizeNodes in sourcesNodes in targets
0output/hiv060-omicsintegrator1-params-2G7CMNV/...1881226618800
1output/hiv060-omicsintegrator1-params-2NFVB7W/...2412122400
2output/hiv060-omicsintegrator1-params-2NKIR7L/...8246368200
3output/hiv060-omicsintegrator1-params-2NL4RDV/...211200
4output/hiv060-omicsintegrator1-params-422WXNM/...2814142800
\n", - "
" - ], - "text/plain": [ - " Name Number of nodes \\\n", - "0 output/hiv060-omicsintegrator1-params-2G7CMNV/... 188 \n", - "1 output/hiv060-omicsintegrator1-params-2NFVB7W/... 24 \n", - "2 output/hiv060-omicsintegrator1-params-2NKIR7L/... 82 \n", - "3 output/hiv060-omicsintegrator1-params-2NL4RDV/... 2 \n", - "4 output/hiv060-omicsintegrator1-params-422WXNM/... 28 \n", - "\n", - " Number of undirected edges Number of connected components Nodes in prize \\\n", - "0 122 66 188 \n", - "1 12 12 24 \n", - "2 46 36 82 \n", - "3 1 1 2 \n", - "4 14 14 28 \n", - "\n", - " Nodes in sources Nodes in targets \n", - "0 0 0 \n", - "1 0 0 \n", - "2 0 0 \n", - "3 0 0 \n", - "4 0 0 " - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "hiv060_summary.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "id": "bd1fc698-2c5c-42c0-b7f5-9e9281a9d6d2", - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "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", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "value_counts = hiv060_summary['Number of nodes'].value_counts()\n", - "# Sort the index (which represents the unique values in 'Number of nodes') in ascending order\n", - "sorted_value_counts = value_counts.sort_index()\n", - "plt.figure(figsize=(6, 4))\n", - "sorted_value_counts.plot(kind='bar', width=0.8)\n", - "plt.xlabel('Number of nodes', fontsize = 15)\n", - "plt.ylabel('Count of Pathways per Num. of Nodes', fontsize = 15)\n", - "plt.title('Num. of nodes value counts: hiv060-pathway-summary', fontsize=12)\n", - "plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "bcfb1607-f60f-44db-a66f-ca6221e61449", - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "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.7" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/hiv-benchmarking/6_build_kegg-orthology_to_swissprot_map.ipynb b/hiv-benchmarking/6_build_kegg-orthology_to_swissprot_map.ipynb deleted file mode 100644 index c0f512b..0000000 --- a/hiv-benchmarking/6_build_kegg-orthology_to_swissprot_map.ipynb +++ /dev/null @@ -1,1693 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "id": "ec6782fb-259c-4825-8026-94c3e3addaf1", - "metadata": {}, - "outputs": [], - "source": [ - "# pip install biopython" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "id": "1adec1c4-bd46-47e4-9e1a-a15cdfd160e6", - "metadata": {}, - "outputs": [], - "source": [ - "# pip install --upgrade biopython" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "id": "5a6b0889-e1d9-4e19-8c49-d403a113597d", - "metadata": {}, - "outputs": [], - "source": [ - "from Bio.KEGG.KGML.KGML_parser import read\n", - "import pandas as pd\n", - "import requests\n", - "import re" - ] - }, - { - "cell_type": "markdown", - "id": "13080009-bc5b-43ac-8110-77adaa806f46", - "metadata": {}, - "source": [ - "### parse KGML file to find human proteins using Biopython KGML parser" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "id": "08ee1cea-4f89-4b1b-95db-ad271d4415d4", - "metadata": {}, - "outputs": [], - "source": [ - "pathway = read(open(\"hiv_raw_data/ko03250.xml\", 'r'))" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "id": "01d3f295-b833-462c-be09-d3fb31e991d1", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Pathway: Viral life cycle - HIV-1\n", - "KEGG ID: path:ko03250\n", - "Image file: https://www.kegg.jp/kegg/pathway/ko/ko03250.png\n", - "Organism: ko\n", - "Entries: 85\n", - "Entry types:\n", - "\tortholog: 81\n", - "\tmap: 4\n", - "\n" - ] - } - ], - "source": [ - "print(pathway)" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "id": "60df040b-3fac-4616-bef1-6f1fc007db23", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "85\n" - ] - } - ], - "source": [ - "entries_data = []\n", - "for entry in pathway.entries.values():\n", - " entries_data.append({\n", - " 'id': entry.id,\n", - " 'name': entry.name,\n", - " 'type': entry.type,\n", - " 'link': entry.link,\n", - " 'reaction': entry.reaction,\n", - " })\n", - "entries_df = pd.DataFrame(entries_data)\n", - "print(len(entries_df))" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "id": "0474e6ee-879c-416b-93e2-eeaa03352f71", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
idnametypelinkreaction
0308ko:K19258orthologhttps://www.kegg.jp/dbget-bin/www_bget?K19258
1309ko:K24802orthologhttps://www.kegg.jp/dbget-bin/www_bget?K24802
2310ko:K22202orthologhttps://www.kegg.jp/dbget-bin/www_bget?K22202
3311ko:K24803orthologhttps://www.kegg.jp/dbget-bin/www_bget?K24803
4312ko:K22891orthologhttps://www.kegg.jp/dbget-bin/www_bget?K22891
\n", - "
" - ], - "text/plain": [ - " id name type link \\\n", - "0 308 ko:K19258 ortholog https://www.kegg.jp/dbget-bin/www_bget?K19258 \n", - "1 309 ko:K24802 ortholog https://www.kegg.jp/dbget-bin/www_bget?K24802 \n", - "2 310 ko:K22202 ortholog https://www.kegg.jp/dbget-bin/www_bget?K22202 \n", - "3 311 ko:K24803 ortholog https://www.kegg.jp/dbget-bin/www_bget?K24803 \n", - "4 312 ko:K22891 ortholog https://www.kegg.jp/dbget-bin/www_bget?K22891 \n", - "\n", - " reaction \n", - "0 \n", - "1 \n", - "2 \n", - "3 \n", - "4 " - ] - }, - "execution_count": 7, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "entries_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "id": "d1e61e46-d9f1-4b86-a260-18c1147c1f29", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "{'map', 'ortholog'}" - ] - }, - "execution_count": 8, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "set(entries_df['type'])" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "id": "1cb8ff9a-84fe-44a9-8f28-59950a5b4656", - "metadata": {}, - "outputs": [], - "source": [ - "proteins_df = entries_df[entries_df['type'] == 'ortholog'] " - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "id": "a744dc83-4096-4aba-93f6-d8c6b2db3c35", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
idnametypelinkreaction
0308ko:K19258orthologhttps://www.kegg.jp/dbget-bin/www_bget?K19258
1309ko:K24802orthologhttps://www.kegg.jp/dbget-bin/www_bget?K24802
2310ko:K22202orthologhttps://www.kegg.jp/dbget-bin/www_bget?K22202
3311ko:K24803orthologhttps://www.kegg.jp/dbget-bin/www_bget?K24803
4312ko:K22891orthologhttps://www.kegg.jp/dbget-bin/www_bget?K22891
\n", - "
" - ], - "text/plain": [ - " id name type link \\\n", - "0 308 ko:K19258 ortholog https://www.kegg.jp/dbget-bin/www_bget?K19258 \n", - "1 309 ko:K24802 ortholog https://www.kegg.jp/dbget-bin/www_bget?K24802 \n", - "2 310 ko:K22202 ortholog https://www.kegg.jp/dbget-bin/www_bget?K22202 \n", - "3 311 ko:K24803 ortholog https://www.kegg.jp/dbget-bin/www_bget?K24803 \n", - "4 312 ko:K22891 ortholog https://www.kegg.jp/dbget-bin/www_bget?K22891 \n", - "\n", - " reaction \n", - "0 \n", - "1 \n", - "2 \n", - "3 \n", - "4 " - ] - }, - "execution_count": 10, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "proteins_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "id": "e04719a5-8100-4db7-8804-bde52a618b1e", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
0123
0ko:K19258NoneNoneNone
1ko:K24802NoneNoneNone
2ko:K22202NoneNoneNone
3ko:K24803NoneNoneNone
4ko:K22891NoneNoneNone
\n", - "
" - ], - "text/plain": [ - " 0 1 2 3\n", - "0 ko:K19258 None None None\n", - "1 ko:K24802 None None None\n", - "2 ko:K22202 None None None\n", - "3 ko:K24803 None None None\n", - "4 ko:K22891 None None None" - ] - }, - "execution_count": 11, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "split_proteins_df = proteins_df['name'].str.split(' ', expand=True)\n", - "split_proteins_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "id": "36cd4ffd-60a2-4c36-8a77-0ffa14633867", - "metadata": {}, - "outputs": [], - "source": [ - "result = split_proteins_df.values.flatten()\n", - "proteins_list = [x for x in result if x is not None]" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "id": "f07f82f8-b54b-47a0-b6d1-abc51a3dc2de", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "['K19258', 'K24802', 'K22202', 'K24803', 'K22891', 'K25664', 'K22599', 'K22892', 'K25306', 'K25057', 'K24801', 'K24266', 'K12183', 'K12194', 'K12195', 'K12200', 'K22951', 'K22951', 'K24802', 'K24803', 'K25664', 'K22599', 'K25306', 'K25667', 'K25666', 'K22599', 'K04180', 'K04189', 'K06454', 'K12172', 'K14296', 'K15436', 'K14398', 'K24801', 'K10648', 'K18739', 'K25663', 'K10429', 'K14754', 'K03767', 'K25306', 'K24803', 'K11648', 'K09578', 'K25306', 'K24803', 'K15436', 'K14398', 'K11648', 'K06062', 'K19258', 'K22202', 'K22891', 'K14290', 'K25665', 'K19287', 'K24801', 'K24266', 'K01349', 'K15185', 'K15179', 'K15180', 'K15181', 'K15182', 'K15171', 'K15172', 'K22892', 'K18750', 'K06731', 'K22890', 'K12182', 'K12196', 'K15183', 'K02211', 'K15187', 'K15188', 'K25057', 'K03767', 'K04498', 'K07936', 'K18750', 'K22544', 'K22892', 'K25655', 'K25661', 'K22891', 'K27688']\n" - ] - } - ], - "source": [ - "orthology_ids = [item.replace('ko:', '') for item in proteins_list]\n", - "print(orthology_ids)" - ] - }, - { - "cell_type": "markdown", - "id": "36d98342-270f-4440-a7d2-a0c95068cda2", - "metadata": {}, - "source": [ - "### Building Orthology:HSA map through API calls" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "id": "95230d83-836e-43c2-844b-18e50a310c6e", - "metadata": {}, - "outputs": [], - "source": [ - "url_template = \"http://rest.genome.jp/link/ORTHOLOGY:{}\"" - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "id": "4a13f89c-1faa-418e-a609-f2e6a831019b", - "metadata": {}, - "outputs": [], - "source": [ - "orthology_hsa_map = {}" - ] - }, - { - "cell_type": "markdown", - "id": "c0a3568e-6ef3-40c9-b506-4c38f315e3ed", - "metadata": {}, - "source": [ - "The following cells build the Orthology:HSA map through API calls and save the dataframe locally as a CSV:" - ] - }, - { - "cell_type": "code", - "execution_count": 16, - "id": "037d5bd4-2ecc-43bf-ba1a-d3a8e2b8b445", - "metadata": {}, - "outputs": [], - "source": [ - "for item in orthology_ids:\n", - " # construct the API URL and make api call\n", - " url = url_template.format(item)\n", - " response = requests.get(url)\n", - " # if successful\n", - " if response.status_code == 200:\n", - " # get response text\n", - " response_text = response.text \n", - " # split the response into lines\n", - " lines = response_text.splitlines() \n", - " for line in lines:\n", - " parts = line.split('\\t') \n", - " # check if the line has at least 2 parts\n", - " if len(parts) > 1:\n", - " # Get the orthology and hsa ID\n", - " orthology_id = parts[0].split(\":\")[1]\n", - " hsa_id = parts[1] \n", - " # Check if the hsa ID contains \"hsa\"\n", - " if re.search(r'\\bhsa\\b', hsa_id):\n", - " # add the orthology-hsa mapping to the dictionary\n", - " orthology_hsa_map[orthology_id] = hsa_id" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "id": "7ad1e00a-4979-4f78-a9d7-68e417e553f1", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "{'K25057': 'hsa:11168',\n", - " 'K12183': 'hsa:7251',\n", - " 'K12194': 'hsa:29082',\n", - " 'K12195': 'hsa:79643',\n", - " 'K12200': 'hsa:10015',\n", - " 'K04180': 'hsa:1234',\n", - " 'K04189': 'hsa:7852',\n", - " 'K06454': 'hsa:920',\n", - " 'K12172': 'hsa:5903',\n", - " 'K14296': 'hsa:9972',\n", - " 'K15436': 'hsa:23534',\n", - " 'K14398': 'hsa:79869',\n", - " 'K10648': 'hsa:85363',\n", - " 'K18739': 'hsa:636',\n", - " 'K25663': 'hsa:9638',\n", - " 'K10429': 'hsa:55201',\n", - " 'K14754': 'hsa:4600',\n", - " 'K03767': 'hsa:5478',\n", - " 'K11648': 'hsa:6598',\n", - " 'K09578': 'hsa:5300',\n", - " 'K06062': 'hsa:8850',\n", - " 'K14290': 'hsa:7514',\n", - " 'K01349': 'hsa:5045',\n", - " 'K15185': 'hsa:27125',\n", - " 'K15179': 'hsa:7469',\n", - " 'K15180': 'hsa:25920',\n", - " 'K15181': 'hsa:51497',\n", - " 'K15182': 'hsa:7936',\n", - " 'K15171': 'hsa:6827',\n", - " 'K15172': 'hsa:6829',\n", - " 'K18750': 'hsa:9582',\n", - " 'K06731': 'hsa:684',\n", - " 'K12182': 'hsa:9146',\n", - " 'K12196': 'hsa:9525',\n", - " 'K15183': 'hsa:8178',\n", - " 'K02211': 'hsa:1025',\n", - " 'K15187': 'hsa:4300',\n", - " 'K15188': 'hsa:905',\n", - " 'K04498': 'hsa:2033',\n", - " 'K07936': 'hsa:5901',\n", - " 'K22544': 'hsa:25939',\n", - " 'K25655': 'hsa:256987',\n", - " 'K25661': 'hsa:10955',\n", - " 'K27688': 'hsa:29969'}" - ] - }, - "execution_count": 17, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "orthology_hsa_map" - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "id": "df1a4747-7624-443b-bbfd-2fe50909e440", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
KEGG_OrthologyHSA
0K25057hsa:11168
1K12183hsa:7251
2K12194hsa:29082
3K12195hsa:79643
4K12200hsa:10015
\n", - "
" - ], - "text/plain": [ - " KEGG_Orthology HSA\n", - "0 K25057 hsa:11168\n", - "1 K12183 hsa:7251\n", - "2 K12194 hsa:29082\n", - "3 K12195 hsa:79643\n", - "4 K12200 hsa:10015" - ] - }, - "execution_count": 18, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "orthology_hsa_df = pd.DataFrame(orthology_hsa_map.items(), columns=['KEGG_Orthology', 'HSA'])\n", - "orthology_hsa_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 19, - "id": "4b49d5da-b6b4-47e8-8f90-da27047df1bd", - "metadata": {}, - "outputs": [], - "source": [ - "orthology_hsa_df.to_csv(\"hiv_processed_data/orthology_hsa_mapping_ko03250.csv\", index=False)" - ] - }, - { - "cell_type": "markdown", - "id": "6dc8c04b-61ec-43c1-be82-4aa9758158ef", - "metadata": {}, - "source": [ - "### Map Orthology to HSA to Uniprot" - ] - }, - { - "cell_type": "markdown", - "id": "4e5cc804-82b1-4974-b069-f7cd76728ca4", - "metadata": {}, - "source": [ - "Loads the dataframe that was created above and saved as a CSV locally:" - ] - }, - { - "cell_type": "code", - "execution_count": 20, - "id": "9fd2a8c9-39e6-4f51-9f06-78c82487f8ed", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
KEGG_OrthologyHSA
0K25057hsa:11168
1K12183hsa:7251
2K12194hsa:29082
3K12195hsa:79643
4K12200hsa:10015
\n", - "
" - ], - "text/plain": [ - " KEGG_Orthology HSA\n", - "0 K25057 hsa:11168\n", - "1 K12183 hsa:7251\n", - "2 K12194 hsa:29082\n", - "3 K12195 hsa:79643\n", - "4 K12200 hsa:10015" - ] - }, - "execution_count": 20, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "orthology_hsa_df = pd.read_csv(\"hiv_processed_data/orthology_hsa_mapping_ko03250.csv\")\n", - "orthology_hsa_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 21, - "id": "69ba168b-5a83-4d70-9ac4-f3f555322e38", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "44\n", - "61\n", - "Following proteins don't have hsa ID: \n", - "{'K22951', 'K25664', 'K24801', 'K19258', 'K24266', 'K22202', 'K19287', 'K25665', 'K25666', 'K25667', 'K22891', 'K22599', 'K24803', 'K22892', 'K25306', 'K24802', 'K22890'}\n" - ] - } - ], - "source": [ - "list1 = orthology_hsa_df['KEGG_Orthology'].tolist()\n", - "print(len(set(list1)))\n", - "print(len(set(orthology_ids)))\n", - "subtracted = (set(orthology_ids).difference(list1))\n", - "print(\"Following proteins don't have hsa ID: \")\n", - "print(subtracted)" - ] - }, - { - "cell_type": "markdown", - "id": "b7a36ded-501e-4556-9c64-077213b3882d", - "metadata": {}, - "source": [ - "Load HSA to Uniprot database link list:" - ] - }, - { - "cell_type": "code", - "execution_count": 22, - "id": "e4c8ce40-3a56-4fc0-9c49-a17b0c04352b", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
HSAUniprotlink_category
0hsa:1up:P04217equivalent
1hsa:1up:V9HWD8equivalent
2hsa:10up:A4Z6T7equivalent
3hsa:10up:P11245equivalent
4hsa:100up:A0A0S2Z381equivalent
\n", - "
" - ], - "text/plain": [ - " HSA Uniprot link_category\n", - "0 hsa:1 up:P04217 equivalent\n", - "1 hsa:1 up:V9HWD8 equivalent\n", - "2 hsa:10 up:A4Z6T7 equivalent\n", - "3 hsa:10 up:P11245 equivalent\n", - "4 hsa:100 up:A0A0S2Z381 equivalent" - ] - }, - "execution_count": 22, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "hsa_uniprot_df = pd.read_csv(\"hiv_raw_data/hsa_uniprot.list\", sep='\\t', header=None)\n", - "hsa_uniprot_df.columns = ['HSA','Uniprot','link_category']\n", - "hsa_uniprot_df.head()" - ] - }, - { - "cell_type": "markdown", - "id": "b3cd21a9-aeb0-4143-b132-1b14f298dde2", - "metadata": {}, - "source": [ - "Dataframe merge on HSA ID to link Orthology -> HSA -> Uniprot" - ] - }, - { - "cell_type": "code", - "execution_count": 23, - "id": "2646631a-a8c9-4d75-98fb-ccef25c07f52", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
KEGG_OrthologyHSAUniprotlink_category
0K25057hsa:11168up:O75475equivalent
1K12183hsa:7251up:Q99816equivalent
2K12194hsa:29082up:Q9BY43equivalent
3K12195hsa:79643up:Q96FZ7equivalent
4K12200hsa:10015up:Q8WUM4equivalent
5K04180hsa:1234up:P51681equivalent
6K04180hsa:1234up:Q38L21equivalent
7K04189hsa:7852up:P61073equivalent
8K06454hsa:920up:A0A4Y5UGE4equivalent
9K06454hsa:920up:B4DT49equivalent
10K06454hsa:920up:P01730equivalent
11K12172hsa:5903up:P49792equivalent
12K14296hsa:9972up:P49790equivalent
13K15436hsa:23534up:B3KMX1equivalent
14K15436hsa:23534up:Q9Y5L0equivalent
15K14398hsa:79869up:Q8N684equivalent
16K10648hsa:85363up:Q9C035equivalent
17K18739hsa:636up:Q96G01equivalent
18K25663hsa:9638up:Q99689equivalent
19K10429hsa:55201up:Q66K74equivalent
20K14754hsa:4600up:P20592equivalent
21K03767hsa:5478up:P62937equivalent
22K03767hsa:5478up:V9HWF5equivalent
23K11648hsa:6598up:Q12824equivalent
24K09578hsa:5300up:Q13526equivalent
25K06062hsa:8850up:Q92831equivalent
26K14290hsa:7514up:B3KWD0equivalent
27K14290hsa:7514up:O14980equivalent
28K01349hsa:5045up:P09958equivalent
29K15185hsa:27125up:Q9UHB7equivalent
30K15179hsa:7469up:A0A0C4DFX9equivalent
31K15179hsa:7469up:Q9H3P2equivalent
32K15180hsa:25920up:Q8WX92equivalent
33K15181hsa:51497up:H0UI80equivalent
34K15181hsa:51497up:Q8IXH7equivalent
35K15182hsa:7936up:A0A1U9X830equivalent
36K15182hsa:7936up:P18615equivalent
37K15171hsa:6827up:P63272equivalent
38K15172hsa:6829up:O00267equivalent
39K18750hsa:9582up:Q9UH17equivalent
40K06731hsa:684up:A0A024R7H5equivalent
41K06731hsa:684up:Q10589equivalent
42K12182hsa:9146up:A0A0S2Z4R4equivalent
43K12182hsa:9146up:O14964equivalent
44K12196hsa:9525up:O75351equivalent
45K15183hsa:8178up:P55199equivalent
46K02211hsa:1025up:P50750equivalent
47K15187hsa:4300up:A0A0S2Z448equivalent
48K15187hsa:4300up:P42568equivalent
49K15188hsa:905up:B4DH21equivalent
50K15188hsa:905up:O60583equivalent
51K04498hsa:2033up:Q09472equivalent
52K04498hsa:2033up:Q7Z6C1equivalent
53K07936hsa:5901up:P62826equivalent
54K22544hsa:25939up:Q59H15equivalent
55K22544hsa:25939up:Q9Y3Z3equivalent
56K25655hsa:256987up:Q86VE9equivalent
57K25661hsa:10955up:Q13530equivalent
58K27688hsa:29969up:Q9P1T7equivalent
\n", - "
" - ], - "text/plain": [ - " KEGG_Orthology HSA Uniprot link_category\n", - "0 K25057 hsa:11168 up:O75475 equivalent\n", - "1 K12183 hsa:7251 up:Q99816 equivalent\n", - "2 K12194 hsa:29082 up:Q9BY43 equivalent\n", - "3 K12195 hsa:79643 up:Q96FZ7 equivalent\n", - "4 K12200 hsa:10015 up:Q8WUM4 equivalent\n", - "5 K04180 hsa:1234 up:P51681 equivalent\n", - "6 K04180 hsa:1234 up:Q38L21 equivalent\n", - "7 K04189 hsa:7852 up:P61073 equivalent\n", - "8 K06454 hsa:920 up:A0A4Y5UGE4 equivalent\n", - "9 K06454 hsa:920 up:B4DT49 equivalent\n", - "10 K06454 hsa:920 up:P01730 equivalent\n", - "11 K12172 hsa:5903 up:P49792 equivalent\n", - "12 K14296 hsa:9972 up:P49790 equivalent\n", - "13 K15436 hsa:23534 up:B3KMX1 equivalent\n", - "14 K15436 hsa:23534 up:Q9Y5L0 equivalent\n", - "15 K14398 hsa:79869 up:Q8N684 equivalent\n", - "16 K10648 hsa:85363 up:Q9C035 equivalent\n", - "17 K18739 hsa:636 up:Q96G01 equivalent\n", - "18 K25663 hsa:9638 up:Q99689 equivalent\n", - "19 K10429 hsa:55201 up:Q66K74 equivalent\n", - "20 K14754 hsa:4600 up:P20592 equivalent\n", - "21 K03767 hsa:5478 up:P62937 equivalent\n", - "22 K03767 hsa:5478 up:V9HWF5 equivalent\n", - "23 K11648 hsa:6598 up:Q12824 equivalent\n", - "24 K09578 hsa:5300 up:Q13526 equivalent\n", - "25 K06062 hsa:8850 up:Q92831 equivalent\n", - "26 K14290 hsa:7514 up:B3KWD0 equivalent\n", - "27 K14290 hsa:7514 up:O14980 equivalent\n", - "28 K01349 hsa:5045 up:P09958 equivalent\n", - "29 K15185 hsa:27125 up:Q9UHB7 equivalent\n", - "30 K15179 hsa:7469 up:A0A0C4DFX9 equivalent\n", - "31 K15179 hsa:7469 up:Q9H3P2 equivalent\n", - "32 K15180 hsa:25920 up:Q8WX92 equivalent\n", - "33 K15181 hsa:51497 up:H0UI80 equivalent\n", - "34 K15181 hsa:51497 up:Q8IXH7 equivalent\n", - "35 K15182 hsa:7936 up:A0A1U9X830 equivalent\n", - "36 K15182 hsa:7936 up:P18615 equivalent\n", - "37 K15171 hsa:6827 up:P63272 equivalent\n", - "38 K15172 hsa:6829 up:O00267 equivalent\n", - "39 K18750 hsa:9582 up:Q9UH17 equivalent\n", - "40 K06731 hsa:684 up:A0A024R7H5 equivalent\n", - "41 K06731 hsa:684 up:Q10589 equivalent\n", - "42 K12182 hsa:9146 up:A0A0S2Z4R4 equivalent\n", - "43 K12182 hsa:9146 up:O14964 equivalent\n", - "44 K12196 hsa:9525 up:O75351 equivalent\n", - "45 K15183 hsa:8178 up:P55199 equivalent\n", - "46 K02211 hsa:1025 up:P50750 equivalent\n", - "47 K15187 hsa:4300 up:A0A0S2Z448 equivalent\n", - "48 K15187 hsa:4300 up:P42568 equivalent\n", - "49 K15188 hsa:905 up:B4DH21 equivalent\n", - "50 K15188 hsa:905 up:O60583 equivalent\n", - "51 K04498 hsa:2033 up:Q09472 equivalent\n", - "52 K04498 hsa:2033 up:Q7Z6C1 equivalent\n", - "53 K07936 hsa:5901 up:P62826 equivalent\n", - "54 K22544 hsa:25939 up:Q59H15 equivalent\n", - "55 K22544 hsa:25939 up:Q9Y3Z3 equivalent\n", - "56 K25655 hsa:256987 up:Q86VE9 equivalent\n", - "57 K25661 hsa:10955 up:Q13530 equivalent\n", - "58 K27688 hsa:29969 up:Q9P1T7 equivalent" - ] - }, - "execution_count": 23, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "orthology_uniprot_df = orthology_hsa_df.merge(hsa_uniprot_df, on = 'HSA', how = 'left')\n", - "orthology_uniprot_df.head(200)" - ] - }, - { - "cell_type": "markdown", - "id": "627fec61-6470-4440-8087-5925ed687028", - "metadata": {}, - "source": [ - "The following cell saves the mapping:" - ] - }, - { - "cell_type": "code", - "execution_count": 24, - "id": "017b1bd6-2b15-4237-a152-59d40dca8547", - "metadata": {}, - "outputs": [], - "source": [ - "orthology_uniprot_df.to_csv(\"hiv_processed_data/kegg-orthology_hsa_uniprot_mapping_ko03250.csv\", index=False)" - ] - }, - { - "cell_type": "markdown", - "id": "2d2c4e99-9ae2-4207-9a33-e32a25ab961d", - "metadata": {}, - "source": [ - "### Selecting only Uniprot IDs that are also SwissProt IDs i.e. have been manually reviewed" - ] - }, - { - "cell_type": "code", - "execution_count": 26, - "id": "64fcb4df-b3e9-4a9d-82f5-f9194ba342b6", - "metadata": {}, - "outputs": [], - "source": [ - "def filter_dataframe(df):\n", - " base_url = \"https://www.genome.jp/entry/sp:\"\n", - " # list to keep track of rows to keep\n", - " rows_to_keep = []\n", - " df = df.dropna()\n", - " for index, row in df.iterrows():\n", - " uniprot_id = row['Uniprot'][3:]\n", - " url = f\"{base_url}{uniprot_id}\"\n", - " response = requests.get(url)\n", - " # print(response.text)\n", - " if \"No such data was found.\" not in response.text:\n", - " rows_to_keep.append(index)\n", - " # print(\"SwissProt exists for: \", uniprot_id)\n", - " else:\n", - " print(\"SwissProt DOES NOT exist for: \", uniprot_id)\n", - " # filter the DataFrame to keep only the desired rows\n", - " filtered_df = df.loc[rows_to_keep].reset_index(drop=True)\n", - " return filtered_df" - ] - }, - { - "cell_type": "markdown", - "id": "1c665100-0781-47df-b4eb-ffba739a37d9", - "metadata": {}, - "source": [ - "The following cells to filter the dataframe and save the Orthology -> HSA -> Swissprot mapping dataframe locally as a CSV:" - ] - }, - { - "cell_type": "code", - "execution_count": 27, - "id": "e505cfef-f76f-4e80-80b0-e29e4dbb5a43", - "metadata": {}, - "outputs": [], - "source": [ - "orthology_uniprot_df_copy = orthology_uniprot_df.copy()" - ] - }, - { - "cell_type": "code", - "execution_count": 28, - "id": "83e9b9ee-b702-4959-8882-6c8c81b23ea5", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "SwissProt DOES NOT exist for: Q38L21\n", - "SwissProt DOES NOT exist for: A0A4Y5UGE4\n", - "SwissProt DOES NOT exist for: B4DT49\n", - "SwissProt DOES NOT exist for: B3KMX1\n", - "SwissProt DOES NOT exist for: V9HWF5\n", - "SwissProt DOES NOT exist for: B3KWD0\n", - "SwissProt DOES NOT exist for: A0A0C4DFX9\n", - "SwissProt DOES NOT exist for: H0UI80\n", - "SwissProt DOES NOT exist for: A0A1U9X830\n", - "SwissProt DOES NOT exist for: A0A024R7H5\n", - "SwissProt DOES NOT exist for: A0A0S2Z4R4\n", - "SwissProt DOES NOT exist for: A0A0S2Z448\n", - "SwissProt DOES NOT exist for: B4DH21\n", - "SwissProt DOES NOT exist for: Q7Z6C1\n", - "SwissProt DOES NOT exist for: Q59H15\n" - ] - } - ], - "source": [ - "orthology_swissprot_df = filter_dataframe(orthology_uniprot_df_copy)" - ] - }, - { - "cell_type": "code", - "execution_count": 29, - "id": "0a345501-0738-4b57-8bf2-2a5e578b1dcb", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
KEGG_OrthologyHSAUniprotlink_category
0K25057hsa:11168up:O75475equivalent
1K12183hsa:7251up:Q99816equivalent
2K12194hsa:29082up:Q9BY43equivalent
3K12195hsa:79643up:Q96FZ7equivalent
4K12200hsa:10015up:Q8WUM4equivalent
\n", - "
" - ], - "text/plain": [ - " KEGG_Orthology HSA Uniprot link_category\n", - "0 K25057 hsa:11168 up:O75475 equivalent\n", - "1 K12183 hsa:7251 up:Q99816 equivalent\n", - "2 K12194 hsa:29082 up:Q9BY43 equivalent\n", - "3 K12195 hsa:79643 up:Q96FZ7 equivalent\n", - "4 K12200 hsa:10015 up:Q8WUM4 equivalent" - ] - }, - "execution_count": 29, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "orthology_swissprot_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 30, - "id": "942c94b7-991a-4254-a164-8ff90650c304", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "44" - ] - }, - "execution_count": 30, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "len(orthology_swissprot_df)" - ] - }, - { - "cell_type": "code", - "execution_count": 31, - "id": "464fb88f-69f3-49d7-83ca-578a0d9c0286", - "metadata": {}, - "outputs": [], - "source": [ - "orthology_swissprot_df.to_csv(\"hiv_processed_data/kegg-orthology_hsa_swissprot_mapping_ko03250.csv\", index=False)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "acd0617b-2482-41c1-b166-2fc85c423442", - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "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.7" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/hiv-benchmarking/7_hiv05_comparison_ratios.ipynb b/hiv-benchmarking/7_hiv05_comparison_ratios.ipynb deleted file mode 100644 index 016c466..0000000 --- a/hiv-benchmarking/7_hiv05_comparison_ratios.ipynb +++ /dev/null @@ -1,1293 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "id": "dc428697-79c3-44d6-9746-670501be5dc6", - "metadata": {}, - "source": [ - "## Comparison Ratios for hiv05: \n", - "\n", - "## SPRAS Ensemble vs. Publication & SPRAS Ensemble vs. KEGG Pathway" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "id": "6696be50-a3ae-470d-984b-97c17156f9a7", - "metadata": {}, - "outputs": [], - "source": [ - "import pandas as pd" - ] - }, - { - "cell_type": "markdown", - "id": "10bc361e-44b2-4595-a0d2-4f0f864da38d", - "metadata": {}, - "source": [ - "### Load 5_min_75%_confidence.sif & make list of all publication nodes" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "id": "98a3579b-28ce-43d5-b379-49b926b636fc", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
012
0RB15B_HUMANppRBM15_HUMAN
1BRAP_HUMANppCENPF_HUMAN
2AMPD2_HUMANppPOTE1_HUMAN
3K0556_HUMANppTBCD4_HUMAN
4MADD_HUMANppWNK1_HUMAN
\n", - "
" - ], - "text/plain": [ - " 0 1 2\n", - "0 RB15B_HUMAN pp RBM15_HUMAN\n", - "1 BRAP_HUMAN pp CENPF_HUMAN\n", - "2 AMPD2_HUMAN pp POTE1_HUMAN\n", - "3 K0556_HUMAN pp TBCD4_HUMAN\n", - "4 MADD_HUMAN pp WNK1_HUMAN" - ] - }, - "execution_count": 3, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "publication_network_df = pd.read_csv(\"hiv_raw_data/5_min_75_confidence.sif\", sep='\\t', header=None)\n", - "publication_network_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "id": "5f5b8237-b00b-48d7-a4ca-c6bf087b6508", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "250" - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "len(publication_network_df)" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "id": "a80c8448-b60a-4138-9268-2c46d17a4bdd", - "metadata": {}, - "outputs": [], - "source": [ - "pub_protein_set_1 = list(set(publication_network_df[0].tolist()))\n", - "pub_protein_set_2 = list(set(publication_network_df[2].tolist()))" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "id": "e4f1a9b8-47f4-4999-a342-0d33cc9409e5", - "metadata": {}, - "outputs": [], - "source": [ - "all_pub_proteins = list(set(pub_protein_set_1 + pub_protein_set_2))" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "id": "60cbc7cd-3354-4966-a505-dfd4daa14b08", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "348" - ] - }, - "execution_count": 7, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "len(all_pub_proteins)" - ] - }, - { - "cell_type": "markdown", - "id": "a2cb4997-3a74-4aba-8b6b-c1f88da6829f", - "metadata": {}, - "source": [ - "### Load all nodes in KEGG pathway and make list of all kegg protein nodes" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "id": "68973f85-575d-4e48-a1c8-25d76f993e12", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
KEGG_OrthologyHSAUniprotlink_category
0K04688hsa:6199up:Q9UBS0equivalent
1K07203hsa:2475up:P42345equivalent
2K04456hsa:208up:P31751equivalent
3K00922hsa:5293up:O00329equivalent
4K02649hsa:8503up:Q92569equivalent
\n", - "
" - ], - "text/plain": [ - " KEGG_Orthology HSA Uniprot link_category\n", - "0 K04688 hsa:6199 up:Q9UBS0 equivalent\n", - "1 K07203 hsa:2475 up:P42345 equivalent\n", - "2 K04456 hsa:208 up:P31751 equivalent\n", - "3 K00922 hsa:5293 up:O00329 equivalent\n", - "4 K02649 hsa:8503 up:Q92569 equivalent" - ] - }, - "execution_count": 9, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "kegg_pathway_proteins_path = \"hiv_processed_data/kegg-orthology_hsa_swissprot_mapping_ko05170.csv\"\n", - "kegg_pathway_proteins_df = pd.read_csv(kegg_pathway_proteins_path, sep=',')\n", - "kegg_pathway_proteins_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "id": "59c1176e-e234-4031-9333-673ccddbe599", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "155" - ] - }, - "execution_count": 10, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "len(kegg_pathway_proteins_df)" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "id": "5ef60bcd-3100-481c-92ba-2cf46f0bc679", - "metadata": {}, - "outputs": [], - "source": [ - "all_kegg_proteins = list(set(kegg_pathway_proteins_df['Uniprot'].tolist()))\n", - "all_kegg_proteins = [item.replace('up:', '') for item in all_kegg_proteins]" - ] - }, - { - "cell_type": "markdown", - "id": "374b987f-f4e6-4ae4-a5a4-b7e72052fa5c", - "metadata": {}, - "source": [ - "### Load hiv05 ensemble-pathway & make list of all ensemble pathway nodes" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "id": "42aab601-a8bf-4c8b-abe7-b20e73f12b7c", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Node1Node2FrequencyDirection
01433B_HUMANL7RRS6_HUMAN0.16U
11433B_HUMANWEE1_HUMAN0.16U
21433E_HUMANHDAC4_HUMAN0.16U
31433E_HUMANKIF1C_HUMAN0.16U
41433E_HUMANL7RRS6_HUMAN0.16U
\n", - "
" - ], - "text/plain": [ - " Node1 Node2 Frequency Direction\n", - "0 1433B_HUMAN L7RRS6_HUMAN 0.16 U\n", - "1 1433B_HUMAN WEE1_HUMAN 0.16 U\n", - "2 1433E_HUMAN HDAC4_HUMAN 0.16 U\n", - "3 1433E_HUMAN KIF1C_HUMAN 0.16 U\n", - "4 1433E_HUMAN L7RRS6_HUMAN 0.16 U" - ] - }, - "execution_count": 12, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "ensemble_pathway_path = \"spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/ensemble-pathway.txt\"\n", - "ensemble_pathway_df = pd.read_csv(ensemble_pathway_path, sep='\\t')\n", - "ensemble_pathway_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "id": "7cddde3a-9806-45c9-873f-3ec1f36e77d2", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "1420" - ] - }, - "execution_count": 13, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "len(ensemble_pathway_df)" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "id": "8763c0c7-b99b-4cfb-bccf-3ecca8fe595d", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "{0.01,\n", - " 0.02,\n", - " 0.03,\n", - " 0.04,\n", - " 0.06,\n", - " 0.08,\n", - " 0.09,\n", - " 0.11,\n", - " 0.12,\n", - " 0.13,\n", - " 0.15,\n", - " 0.16,\n", - " 0.17,\n", - " 0.18,\n", - " 0.2,\n", - " 0.24,\n", - " 0.3,\n", - " 0.32,\n", - " 0.39}" - ] - }, - "execution_count": 14, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "set(ensemble_pathway_df['Frequency'])" - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "id": "bb0f6f22-255d-4cdb-98fd-7facf3c02da7", - "metadata": {}, - "outputs": [], - "source": [ - "ensemble_protein_set_1 = list(set(ensemble_pathway_df['Node1'].tolist()))\n", - "ensemble_protein_set_2 = list(set(ensemble_pathway_df['Node2'].tolist()))" - ] - }, - { - "cell_type": "code", - "execution_count": 16, - "id": "5863294b-05ed-48c3-8ba0-bc2311a4a873", - "metadata": {}, - "outputs": [], - "source": [ - "all_ensemble_proteins = list(set(ensemble_protein_set_1 + ensemble_protein_set_2))" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "id": "947c8eaf-090d-46e8-902b-a9c5b6e047ea", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "1237" - ] - }, - "execution_count": 17, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "len(all_ensemble_proteins)" - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "id": "bdfd7e5a-2f61-49b0-b703-911c5e292d57", - "metadata": {}, - "outputs": [], - "source": [ - "both_pub_ensemble = list(set(all_pub_proteins) & set(all_ensemble_proteins))" - ] - }, - { - "cell_type": "code", - "execution_count": 19, - "id": "48f4f43c-e5f8-4850-89e1-29f101cc1cf5", - "metadata": {}, - "outputs": [], - "source": [ - "both_kegg_ensemble = list(set(all_kegg_proteins) & set(all_ensemble_proteins))" - ] - }, - { - "cell_type": "markdown", - "id": "b28444f9-fdc4-4766-8938-4223dbffdca8", - "metadata": {}, - "source": [ - "### Medium confidence (frequencies >= 0.16) on ensemble pathways dataframe & create list of medconf nodes" - ] - }, - { - "cell_type": "code", - "execution_count": 20, - "id": "a365ecdf-254b-41e5-b462-7f45f48458da", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Node1Node2FrequencyDirection
01433B_HUMANL7RRS6_HUMAN0.16U
11433B_HUMANWEE1_HUMAN0.16U
21433E_HUMANHDAC4_HUMAN0.16U
31433E_HUMANKIF1C_HUMAN0.16U
41433E_HUMANL7RRS6_HUMAN0.16U
\n", - "
" - ], - "text/plain": [ - " Node1 Node2 Frequency Direction\n", - "0 1433B_HUMAN L7RRS6_HUMAN 0.16 U\n", - "1 1433B_HUMAN WEE1_HUMAN 0.16 U\n", - "2 1433E_HUMAN HDAC4_HUMAN 0.16 U\n", - "3 1433E_HUMAN KIF1C_HUMAN 0.16 U\n", - "4 1433E_HUMAN L7RRS6_HUMAN 0.16 U" - ] - }, - "execution_count": 20, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "medconf_ensemble_pathway_df = ensemble_pathway_df[ensemble_pathway_df['Frequency'] >= 0.16]\n", - "medconf_ensemble_pathway_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 21, - "id": "fcee0da6-58d9-4ebe-acaa-a57889c50f73", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "{0.16, 0.17, 0.18, 0.2, 0.24, 0.3, 0.32, 0.39}" - ] - }, - "execution_count": 21, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "set(medconf_ensemble_pathway_df['Frequency'])" - ] - }, - { - "cell_type": "code", - "execution_count": 22, - "id": "80a928ee-0524-4bda-99b0-8c3b28c95ceb", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "513" - ] - }, - "execution_count": 22, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "medconf_ensemble_protein_set_1 = list(set(medconf_ensemble_pathway_df['Node1'].tolist()))\n", - "medconf_ensemble_protein_set_2 = list(set(medconf_ensemble_pathway_df['Node2'].tolist()))\n", - "medconf_all_ensemble_proteins = list(set(medconf_ensemble_protein_set_1 + medconf_ensemble_protein_set_2))\n", - "len(medconf_all_ensemble_proteins)" - ] - }, - { - "cell_type": "code", - "execution_count": 23, - "id": "6249e5f6-edd0-4d9a-9d15-f93052b7064a", - "metadata": {}, - "outputs": [], - "source": [ - "medconf_both_pub_ensemble = list(set(all_pub_proteins) & set(medconf_all_ensemble_proteins))" - ] - }, - { - "cell_type": "markdown", - "id": "5c09bf3b-45e0-4bc9-a9c1-012cd1fa5b2d", - "metadata": {}, - "source": [ - "### Low confidence (frequencies >= 0.08) on ensemble pathways dataframe & create list of lowconf nodes" - ] - }, - { - "cell_type": "code", - "execution_count": 24, - "id": "0408882d-976e-4881-a7d6-55e9fcbea8aa", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Node1Node2FrequencyDirection
01433B_HUMANL7RRS6_HUMAN0.16U
11433B_HUMANWEE1_HUMAN0.16U
21433E_HUMANHDAC4_HUMAN0.16U
31433E_HUMANKIF1C_HUMAN0.16U
41433E_HUMANL7RRS6_HUMAN0.16U
\n", - "
" - ], - "text/plain": [ - " Node1 Node2 Frequency Direction\n", - "0 1433B_HUMAN L7RRS6_HUMAN 0.16 U\n", - "1 1433B_HUMAN WEE1_HUMAN 0.16 U\n", - "2 1433E_HUMAN HDAC4_HUMAN 0.16 U\n", - "3 1433E_HUMAN KIF1C_HUMAN 0.16 U\n", - "4 1433E_HUMAN L7RRS6_HUMAN 0.16 U" - ] - }, - "execution_count": 24, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "lowconf_ensemble_pathway_df = ensemble_pathway_df[ensemble_pathway_df['Frequency'] >= 0.08]\n", - "lowconf_ensemble_pathway_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 25, - "id": "9e121a28-8997-42d5-a326-8d91ce53fa89", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "{0.08,\n", - " 0.09,\n", - " 0.11,\n", - " 0.12,\n", - " 0.13,\n", - " 0.15,\n", - " 0.16,\n", - " 0.17,\n", - " 0.18,\n", - " 0.2,\n", - " 0.24,\n", - " 0.3,\n", - " 0.32,\n", - " 0.39}" - ] - }, - "execution_count": 25, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "set(lowconf_ensemble_pathway_df['Frequency'])" - ] - }, - { - "cell_type": "code", - "execution_count": 26, - "id": "5a49e95d-4855-4755-b075-d4aef4564179", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "1198" - ] - }, - "execution_count": 26, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "lowconf_ensemble_protein_set_1 = list(set(lowconf_ensemble_pathway_df['Node1'].tolist()))\n", - "lowconf_ensemble_protein_set_2 = list(set(lowconf_ensemble_pathway_df['Node2'].tolist()))\n", - "lowconf_all_ensemble_proteins = list(set(lowconf_ensemble_protein_set_1 + lowconf_ensemble_protein_set_2))\n", - "len(lowconf_all_ensemble_proteins)" - ] - }, - { - "cell_type": "code", - "execution_count": 27, - "id": "395c17e5-49c9-45bb-94b6-0d03ea37d163", - "metadata": {}, - "outputs": [], - "source": [ - "lowconf_both_pub_ensemble = list(set(all_pub_proteins) & set(lowconf_all_ensemble_proteins))" - ] - }, - { - "cell_type": "markdown", - "id": "254185d0-8dbb-4484-b5d0-3d0ca015c8c8", - "metadata": {}, - "source": [ - "### High confidence (frequencies >= 0.24) on ensemble pathways dataframe & create list of highconf nodes" - ] - }, - { - "cell_type": "code", - "execution_count": 28, - "id": "75a68f8b-9020-4b96-a1f6-8d24cb587fb8", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Node1Node2FrequencyDirection
126BOREA_HUMANINCE_HUMAN0.24U
131BRPF1_HUMANKAT6A_HUMAN0.24U
133BUD13_HUMANRBMX2_HUMAN0.32U
963LMO7_HUMANUBAC2_HUMAN0.30U
1068PRR12_HUMANPUM1_HUMAN0.39U
\n", - "
" - ], - "text/plain": [ - " Node1 Node2 Frequency Direction\n", - "126 BOREA_HUMAN INCE_HUMAN 0.24 U\n", - "131 BRPF1_HUMAN KAT6A_HUMAN 0.24 U\n", - "133 BUD13_HUMAN RBMX2_HUMAN 0.32 U\n", - "963 LMO7_HUMAN UBAC2_HUMAN 0.30 U\n", - "1068 PRR12_HUMAN PUM1_HUMAN 0.39 U" - ] - }, - "execution_count": 28, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "highconf_ensemble_pathway_df = ensemble_pathway_df[ensemble_pathway_df['Frequency'] >= 0.24]\n", - "highconf_ensemble_pathway_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 29, - "id": "85313ca2-d5b4-4305-902d-8c11b8042a46", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "{0.24, 0.3, 0.32, 0.39}" - ] - }, - "execution_count": 29, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "set(highconf_ensemble_pathway_df['Frequency'])" - ] - }, - { - "cell_type": "code", - "execution_count": 30, - "id": "f6be6d73-2d40-4657-8a83-d07b2f7b8af0", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "10" - ] - }, - "execution_count": 30, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "highconf_ensemble_protein_set_1 = list(set(highconf_ensemble_pathway_df['Node1'].tolist()))\n", - "highconf_ensemble_protein_set_2 = list(set(highconf_ensemble_pathway_df['Node2'].tolist()))\n", - "highconf_all_ensemble_proteins = list(set(highconf_ensemble_protein_set_1 + highconf_ensemble_protein_set_2))\n", - "len(highconf_all_ensemble_proteins)" - ] - }, - { - "cell_type": "code", - "execution_count": 31, - "id": "4a2a64f1-42dd-4e91-9788-bc7fff692347", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "10" - ] - }, - "execution_count": 31, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "highconf_both_pub_ensemble = list(set(all_pub_proteins) & set(highconf_all_ensemble_proteins))\n", - "len(highconf_both_pub_ensemble)" - ] - }, - { - "cell_type": "markdown", - "id": "4dbb959a-7c3b-4a42-bcf0-acf752cfe801", - "metadata": {}, - "source": [ - "### Intersecting publication nodes and ensemble pathway nodes - Ratios" - ] - }, - { - "cell_type": "markdown", - "id": "3fa4e883-8e7d-4cae-9b1d-f5ece0de4194", - "metadata": {}, - "source": [ - "##### TOTAL ratio of nodes in publication pathway that are also in ensemble pathway:" - ] - }, - { - "cell_type": "code", - "execution_count": 32, - "id": "5ae2b5da-45ed-4f15-850f-c363e4aab26a", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "0.2465642683912692" - ] - }, - "execution_count": 32, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "publication_nodes_in_ensemble_ratio = len(both_pub_ensemble)/len(all_ensemble_proteins)\n", - "publication_nodes_in_ensemble_ratio" - ] - }, - { - "cell_type": "markdown", - "id": "363b387b-1f5a-4eeb-9808-67653083cd6e", - "metadata": {}, - "source": [ - "##### TOTAL ratio of nodes in ensemble pathway that are also in publication pathway" - ] - }, - { - "cell_type": "code", - "execution_count": 33, - "id": "5fc29a55-3d47-4a2e-8d8e-66fcb00c5b4d", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "0.8764367816091954" - ] - }, - "execution_count": 33, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "ensemble_nodes_in_publication_ratio = len(both_pub_ensemble)/len(all_pub_proteins)\n", - "ensemble_nodes_in_publication_ratio" - ] - }, - { - "cell_type": "markdown", - "id": "8eb4e036-e935-42e1-afb0-607ca37612d5", - "metadata": {}, - "source": [ - "##### MEDIUM CONFIDENCE -> ratio of nodes in publication pathway that are also in ensemble pathway:" - ] - }, - { - "cell_type": "code", - "execution_count": 34, - "id": "209ff75b-477b-4bc9-8463-bbac9c51ab8d", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "0.2631578947368421" - ] - }, - "execution_count": 34, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "medconf_publication_nodes_in_ensemble_ratio = len(medconf_both_pub_ensemble)/len(medconf_all_ensemble_proteins)\n", - "medconf_publication_nodes_in_ensemble_ratio" - ] - }, - { - "cell_type": "markdown", - "id": "9bef467d-0d4d-47d0-8540-33ea37848284", - "metadata": {}, - "source": [ - "##### MEDIUM CONFIDENCE -> ratio of nodes in ensemble pathway that are also in publication pathway" - ] - }, - { - "cell_type": "code", - "execution_count": 35, - "id": "927aee7e-ba27-4cff-8ba5-a9a005fceb17", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "0.3879310344827586" - ] - }, - "execution_count": 35, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "medconf_ensemble_nodes_in_publication_ratio = len(medconf_both_pub_ensemble)/len(all_pub_proteins)\n", - "medconf_ensemble_nodes_in_publication_ratio" - ] - }, - { - "cell_type": "markdown", - "id": "8bb9115a-9d90-4ea0-a9a1-d642f8968399", - "metadata": {}, - "source": [ - "##### LOW CONFIDENCE -> ratio of nodes in publication pathway that are also in ensemble pathway:" - ] - }, - { - "cell_type": "code", - "execution_count": 36, - "id": "aed16632-49c4-4cd5-8baf-88cdcde3d67b", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "0.24958263772954925" - ] - }, - "execution_count": 36, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "lowconf_publication_nodes_in_ensemble_ratio = len(lowconf_both_pub_ensemble)/len(lowconf_all_ensemble_proteins)\n", - "lowconf_publication_nodes_in_ensemble_ratio" - ] - }, - { - "cell_type": "markdown", - "id": "cd492e17-19f6-4a03-b450-54f4883f67c5", - "metadata": {}, - "source": [ - "##### LOW CONFIDENCE -> ratio of nodes in ensemble pathway that are also in publication pathway" - ] - }, - { - "cell_type": "code", - "execution_count": 37, - "id": "25640676-b84d-4116-b2ab-54a5fcab3a92", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "0.8591954022988506" - ] - }, - "execution_count": 37, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "lowconf_ensemble_nodes_in_publication_ratio = len(lowconf_both_pub_ensemble)/len(all_pub_proteins)\n", - "lowconf_ensemble_nodes_in_publication_ratio" - ] - }, - { - "cell_type": "markdown", - "id": "cadfabdc-d946-4726-b42e-2ece1f6605cd", - "metadata": {}, - "source": [ - "##### HIGH CONFIDENCE -> ratio of nodes in publication pathway that are also in ensemble pathway:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "edf64267-80d1-4b3a-aac4-dba2ee47c053", - "metadata": {}, - "outputs": [], - "source": [ - "highconf_publication_nodes_in_ensemble_ratio = len(highconf_both_pub_ensemble)/len(highconf_all_ensemble_proteins)\n", - "highconf_publication_nodes_in_ensemble_ratio" - ] - }, - { - "cell_type": "markdown", - "id": "6c0884fd-e026-4602-a72a-b2c9058174b8", - "metadata": {}, - "source": [ - "##### HIGH CONFIDENCE -> ratio of nodes in ensemble pathway that are also in publication pathway" - ] - }, - { - "cell_type": "code", - "execution_count": 38, - "id": "05edc4dd-0a27-48cf-a46d-4b441fbd412b", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "0.028735632183908046" - ] - }, - "execution_count": 38, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "highconf_ensemble_nodes_in_publication_ratio = len(highconf_both_pub_ensemble)/len(all_pub_proteins)\n", - "highconf_ensemble_nodes_in_publication_ratio" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "0ac48804", - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "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.7" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/hiv-benchmarking/8_ensemble_node_maxfreq.ipynb b/hiv-benchmarking/8_ensemble_node_maxfreq.ipynb deleted file mode 100644 index a89255f..0000000 --- a/hiv-benchmarking/8_ensemble_node_maxfreq.ipynb +++ /dev/null @@ -1,692 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "id": "d66515df-7369-46a0-8f09-b31bff4c44d0", - "metadata": {}, - "source": [ - "### Load ensemble pathway and Assign highest frequency associated with each node to the respective node " - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "id": "af93ac20-1b5c-4747-b82a-8d299936afa6", - "metadata": {}, - "outputs": [], - "source": [ - "import pandas as pd" - ] - }, - { - "cell_type": "markdown", - "id": "516212f2-9cd5-4afb-a8a9-9fb8db085dab", - "metadata": {}, - "source": [ - "replace the ensemble pathway path for 05 or 060 and uncomment to_csv code cell to save" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "id": "5c900269-77ad-4a42-b4c9-582544a05306", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Node1Node2FrequencyDirection
01433B_HUMANFRYL_HUMAN0.04U
11433B_HUMANL7RRS6_HUMAN0.04U
21433B_HUMANPI3R4_HUMAN0.04U
31433B_HUMANWEE1_HUMAN0.04U
41433E_HUMANHDAC4_HUMAN0.04U
\n", - "
" - ], - "text/plain": [ - " Node1 Node2 Frequency Direction\n", - "0 1433B_HUMAN FRYL_HUMAN 0.04 U\n", - "1 1433B_HUMAN L7RRS6_HUMAN 0.04 U\n", - "2 1433B_HUMAN PI3R4_HUMAN 0.04 U\n", - "3 1433B_HUMAN WEE1_HUMAN 0.04 U\n", - "4 1433E_HUMAN HDAC4_HUMAN 0.04 U" - ] - }, - "execution_count": 2, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "ensemble_pathway_path = \"spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/ensemble-pathway.txt\"\n", - "ensemble_pathway_df = pd.read_csv(ensemble_pathway_path, sep='\\t')\n", - "ensemble_pathway_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "id": "cb0f5fc0-9a39-4cbc-af9b-cbcc9777d878", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "0.33" - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "ensemble_pathway_df['Frequency'].max()" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "id": "6d430e86-96a6-4a76-8069-4db1a17969e1", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Node1Frequency
01433B_HUMAN0.04
11433B_HUMAN0.04
21433B_HUMAN0.04
31433B_HUMAN0.04
41433E_HUMAN0.04
\n", - "
" - ], - "text/plain": [ - " Node1 Frequency\n", - "0 1433B_HUMAN 0.04\n", - "1 1433B_HUMAN 0.04\n", - "2 1433B_HUMAN 0.04\n", - "3 1433B_HUMAN 0.04\n", - "4 1433E_HUMAN 0.04" - ] - }, - "execution_count": 5, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "node1_freq = ensemble_pathway_df.drop(columns = ['Node2', 'Direction'])\n", - "node1_freq.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "id": "bff28f1d-7f67-4d7d-9517-0e49592ef2be", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Node2Frequency
0FRYL_HUMAN0.04
1L7RRS6_HUMAN0.04
2PI3R4_HUMAN0.04
3WEE1_HUMAN0.04
4HDAC4_HUMAN0.04
\n", - "
" - ], - "text/plain": [ - " Node2 Frequency\n", - "0 FRYL_HUMAN 0.04\n", - "1 L7RRS6_HUMAN 0.04\n", - "2 PI3R4_HUMAN 0.04\n", - "3 WEE1_HUMAN 0.04\n", - "4 HDAC4_HUMAN 0.04" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "node2_freq = ensemble_pathway_df.drop(columns = ['Node1', 'Direction'])\n", - "node2_freq.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "id": "759dc8b7-320d-4ac3-aed7-598dc0f58b74", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Node1Freq1
01433B_HUMAN0.04
11433E_HUMAN0.04
21433G_HUMAN0.04
31433T_HUMAN0.04
42A5A_HUMAN0.08
\n", - "
" - ], - "text/plain": [ - " Node1 Freq1\n", - "0 1433B_HUMAN 0.04\n", - "1 1433E_HUMAN 0.04\n", - "2 1433G_HUMAN 0.04\n", - "3 1433T_HUMAN 0.04\n", - "4 2A5A_HUMAN 0.08" - ] - }, - "execution_count": 7, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "max_node1_freq = node1_freq.groupby(['Node1']).max().reset_index()\n", - "max_node1_freq.rename(columns = {'Frequency': 'Freq1'}, inplace = True)\n", - "max_node1_freq.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "id": "425c4afc-231d-4cba-9a4e-40b97850b3dc", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Node2Freq2
02A5D_HUMAN0.04
12AAB_HUMAN0.04
23BP5L_HUMAN0.04
34EBP1_HUMAN0.04
44ET_HUMAN0.04
\n", - "
" - ], - "text/plain": [ - " Node2 Freq2\n", - "0 2A5D_HUMAN 0.04\n", - "1 2AAB_HUMAN 0.04\n", - "2 3BP5L_HUMAN 0.04\n", - "3 4EBP1_HUMAN 0.04\n", - "4 4ET_HUMAN 0.04" - ] - }, - "execution_count": 8, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "max_node2_freq = node2_freq.groupby(['Node2']).max().reset_index()\n", - "max_node2_freq.rename(columns = {'Frequency': 'Freq2'}, inplace = True)\n", - "max_node2_freq.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "id": "bedc8e24-8aaa-451e-bf46-c33e8a7f5b84", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Node1Freq1Node2Freq2
01433B_HUMAN0.04NaNNaN
11433E_HUMAN0.04NaNNaN
21433G_HUMAN0.04NaNNaN
31433T_HUMAN0.04NaNNaN
42A5A_HUMAN0.08NaNNaN
\n", - "
" - ], - "text/plain": [ - " Node1 Freq1 Node2 Freq2\n", - "0 1433B_HUMAN 0.04 NaN NaN\n", - "1 1433E_HUMAN 0.04 NaN NaN\n", - "2 1433G_HUMAN 0.04 NaN NaN\n", - "3 1433T_HUMAN 0.04 NaN NaN\n", - "4 2A5A_HUMAN 0.08 NaN NaN" - ] - }, - "execution_count": 9, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "node_df_merged = max_node1_freq.merge(max_node2_freq, left_on='Node1', right_on='Node2', how='outer')\n", - "node_df_merged.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "id": "67b42aa4-6e77-485f-b04b-46a4dfda5c9b", - "metadata": {}, - "outputs": [], - "source": [ - "def select_max_freq_and_node(row):\n", - " max_freq = 0\n", - " node = \"\"\n", - " if pd.isna(row['Node2']) and pd.isna(row['Freq2']):\n", - " max_freq = row['Freq1']\n", - " node = row['Node1']\n", - " elif pd.isna(row['Node1']) and pd.isna(row['Freq1']):\n", - " max_freq = row['Freq2']\n", - " node = row['Node2']\n", - " else:\n", - " max_freq = max(row['Freq1'], row['Freq2'])\n", - " node = row['Node1']\n", - " return node, max_freq" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "id": "f24474f9-8872-469a-b650-695b08862665", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Nodemax_freq
01433B_HUMAN0.04
11433E_HUMAN0.04
21433G_HUMAN0.04
31433T_HUMAN0.04
42A5A_HUMAN0.08
\n", - "
" - ], - "text/plain": [ - " Node max_freq\n", - "0 1433B_HUMAN 0.04\n", - "1 1433E_HUMAN 0.04\n", - "2 1433G_HUMAN 0.04\n", - "3 1433T_HUMAN 0.04\n", - "4 2A5A_HUMAN 0.08" - ] - }, - "execution_count": 11, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "node_df_merged[['Node', 'max_freq']] = node_df_merged.apply(select_max_freq_and_node, axis=1, result_type='expand')\n", - "node_df_merged.drop(columns = ['Node1', 'Node2', 'Freq1', 'Freq2'], inplace = True)\n", - "node_df_merged.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "id": "7f07c7f7-b9b7-4f9c-bd92-5fe727649e78", - "metadata": {}, - "outputs": [], - "source": [ - "# node_df_merged.to_csv(\"hiv_processed_data/hiv05-max-node-freq-ensemble.csv\", index=False)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "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.7" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/hiv-benchmarking/9_build_prc_kegg_hiv05.ipynb b/hiv-benchmarking/9_build_prc_kegg_hiv05.ipynb deleted file mode 100644 index 751f321..0000000 --- a/hiv-benchmarking/9_build_prc_kegg_hiv05.ipynb +++ /dev/null @@ -1,732 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "id": "6e6af090-24ff-437d-a6d2-20d42a3882e8", - "metadata": {}, - "source": [ - "## Build Precision Recall Curve: \n", - "## Comparing SPRAS hiv05 ensemble pathway max node frequency & KEGG Pathways" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "id": "a7e76a51-95bf-4570-8e2b-1e9f57f7c525", - "metadata": {}, - "outputs": [], - "source": [ - "import pandas as pd\n", - "import numpy as np\n", - "from sklearn.metrics import precision_recall_curve, average_precision_score\n", - "import matplotlib.pyplot as plt" - ] - }, - { - "cell_type": "markdown", - "id": "510b59a0-646c-43dc-8984-b793244ab333", - "metadata": {}, - "source": [ - "### Load the ensemble-max frequency CSV" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "id": "46555220-bda6-4f10-96f2-2895a71a6cc0", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Nodemax_freq
01433B_HUMAN0.16
11433E_HUMAN0.16
21433G_HUMAN0.16
31433S_HUMAN0.12
41433T_HUMAN0.16
\n", - "
" - ], - "text/plain": [ - " Node max_freq\n", - "0 1433B_HUMAN 0.16\n", - "1 1433E_HUMAN 0.16\n", - "2 1433G_HUMAN 0.16\n", - "3 1433S_HUMAN 0.12\n", - "4 1433T_HUMAN 0.16" - ] - }, - "execution_count": 2, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "ensemble05_df = pd.read_csv(\"hiv_processed_data/hiv05-max-node-freq-ensemble.csv\")\n", - "ensemble05_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "id": "929801ba-f5c8-4953-83f8-0a626bd02005", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "1237" - ] - }, - "execution_count": 3, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "len(ensemble05_df)" - ] - }, - { - "cell_type": "markdown", - "id": "5d024e81-16a3-498d-990a-1dcc928aa32f", - "metadata": {}, - "source": [ - "### Building PRC with KEGG -> SwissProt mapping" - ] - }, - { - "cell_type": "markdown", - "id": "f51e33d9-32bd-407a-9a59-363b44c5e995", - "metadata": {}, - "source": [ - "Build vector of 0s and 1s that are labels that indicate whether the SPRAS ensemble pathway is in the KEGG pathway or not" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "id": "ddb7b79d-f20a-4709-aa70-fcb115d28934", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
KEGG_OrthologyHSAUniprotlink_category
0K25057hsa:11168up:O75475equivalent
1K12183hsa:7251up:Q99816equivalent
2K12194hsa:29082up:Q9BY43equivalent
3K12195hsa:79643up:Q96FZ7equivalent
4K12200hsa:10015up:Q8WUM4equivalent
\n", - "
" - ], - "text/plain": [ - " KEGG_Orthology HSA Uniprot link_category\n", - "0 K25057 hsa:11168 up:O75475 equivalent\n", - "1 K12183 hsa:7251 up:Q99816 equivalent\n", - "2 K12194 hsa:29082 up:Q9BY43 equivalent\n", - "3 K12195 hsa:79643 up:Q96FZ7 equivalent\n", - "4 K12200 hsa:10015 up:Q8WUM4 equivalent" - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "kegg_swissprot_proteins_path = \"hiv_processed_data/kegg-orthology_hsa_swissprot_mapping_ko03250.csv\"\n", - "kegg_swissprot_proteins_df = pd.read_csv(kegg_swissprot_proteins_path, sep=',')\n", - "kegg_swissprot_proteins_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "id": "4ea95b14-f38f-4874-b3f9-c4e34ccbf2fa", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "44" - ] - }, - "execution_count": 5, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "kegg_swissprot_proteins_df['Uniprot'] = kegg_swissprot_proteins_df['Uniprot'].str.replace('up:', '')\n", - "kegg_swissprot_proteins_df['Uniprot'] = kegg_swissprot_proteins_df['Uniprot'] + '_HUMAN'\n", - "kegg_swissprot = kegg_swissprot_proteins_df.copy().drop(columns = ['KEGG_Orthology', 'HSA', 'link_category'])\n", - "kegg_swissprot_list = kegg_swissprot['Uniprot'].tolist()\n", - "len(kegg_swissprot_list)" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "id": "f1806054-84fa-49c3-94bc-99e7362193ec", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "[]" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "list(set(kegg_swissprot_list) & set(ensemble05_df['Node']))" - ] - }, - { - "cell_type": "markdown", - "id": "24e980fd-3aca-4205-9212-2e80d068427c", - "metadata": {}, - "source": [ - "The empty list shows that there is no overlap of proteins with the KEGG -> SwissProt mapping (1-to-1)" - ] - }, - { - "cell_type": "markdown", - "id": "2bf6fd29-5bcd-44fd-acc9-b097c0c5be25", - "metadata": {}, - "source": [ - "### Build PRC with KEGG -> Uniprot mapping (1-to-many mapping for same proteins)" - ] - }, - { - "cell_type": "markdown", - "id": "1d0e4a91-ec8e-4a03-bb5a-93bb68036d35", - "metadata": {}, - "source": [ - "There are the same proteins in the previous mapping dataframe, but accounts for ALL Uniprot names of the KEGG proteins." - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "id": "0bad5c9c-5469-47a1-a726-5ab08b2f3f3a", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
KEGG_OrthologyHSAUniprotlink_category
0K25057hsa:11168up:O75475equivalent
1K12183hsa:7251up:Q99816equivalent
2K12194hsa:29082up:Q9BY43equivalent
3K12195hsa:79643up:Q96FZ7equivalent
4K12200hsa:10015up:Q8WUM4equivalent
\n", - "
" - ], - "text/plain": [ - " KEGG_Orthology HSA Uniprot link_category\n", - "0 K25057 hsa:11168 up:O75475 equivalent\n", - "1 K12183 hsa:7251 up:Q99816 equivalent\n", - "2 K12194 hsa:29082 up:Q9BY43 equivalent\n", - "3 K12195 hsa:79643 up:Q96FZ7 equivalent\n", - "4 K12200 hsa:10015 up:Q8WUM4 equivalent" - ] - }, - "execution_count": 7, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "kegg_uniprot_proteins_path = \"hiv_processed_data/kegg-orthology_hsa_uniprot_mapping_ko03250.csv\"\n", - "kegg_uniprot_proteins_df = pd.read_csv(kegg_uniprot_proteins_path, sep=',')\n", - "kegg_uniprot_proteins_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "id": "e7503f65-52b5-4229-b65e-701ddd694576", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "59" - ] - }, - "execution_count": 8, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "kegg_uniprot_proteins_df['Uniprot'] = kegg_uniprot_proteins_df['Uniprot'].str.replace('up:', '')\n", - "kegg_uniprot_proteins_df['Uniprot'] = kegg_uniprot_proteins_df['Uniprot'] + '_HUMAN'\n", - "kegg_uniprot = kegg_uniprot_proteins_df.copy().drop(columns = ['KEGG_Orthology', 'HSA', 'link_category'])\n", - "kegg_uniprot_list = kegg_uniprot['Uniprot'].tolist()\n", - "len(kegg_uniprot_list)" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "id": "1eea3591-c342-44eb-a021-044f597fe02c", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "[]" - ] - }, - "execution_count": 9, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "both_kegg_ensemble = list(set(kegg_uniprot_list) & set(ensemble05_df['Node']))\n", - "both_kegg_ensemble" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "id": "5109a9ea-aa89-4a25-afea-526105063690", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Nodemax_freqy_kegg
01433B_HUMAN0.160
11433E_HUMAN0.160
21433G_HUMAN0.160
31433S_HUMAN0.120
41433T_HUMAN0.160
\n", - "
" - ], - "text/plain": [ - " Node max_freq y_kegg\n", - "0 1433B_HUMAN 0.16 0\n", - "1 1433E_HUMAN 0.16 0\n", - "2 1433G_HUMAN 0.16 0\n", - "3 1433S_HUMAN 0.12 0\n", - "4 1433T_HUMAN 0.16 0" - ] - }, - "execution_count": 10, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "prc_df = ensemble05_df.copy()\n", - "prc_df['y_kegg'] = 0\n", - "prc_df.loc[prc_df['Node'].isin(both_kegg_ensemble), 'y_kegg'] = 1\n", - "prc_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "id": "76252a37-0fb2-43ac-83c8-cecaa09e9a88", - "metadata": {}, - "outputs": [], - "source": [ - "# extract needed columns from df\n", - "y_true = prc_df['y_kegg'].to_numpy()\n", - "y_scores = prc_df['max_freq'].to_numpy()" - ] - }, - { - "cell_type": "markdown", - "id": "dd080a67-8652-4fdf-8169-1c2730ccf15c", - "metadata": {}, - "source": [ - "##### Actual Precision Recall Curve:" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "id": "5bd56cd3-1ec4-4b56-a19e-daf2a74e2f8e", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "-0.0\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\sumed\\anaconda3\\Lib\\site-packages\\sklearn\\metrics\\_ranking.py:891: UserWarning: No positive class found in y_true, recall is set to one for all thresholds.\n", - " warnings.warn(\n", - "C:\\Users\\sumed\\anaconda3\\Lib\\site-packages\\sklearn\\metrics\\_ranking.py:891: UserWarning: No positive class found in y_true, recall is set to one for all thresholds.\n", - " warnings.warn(\n" - ] - } - ], - "source": [ - "precision, recall, thresholds = precision_recall_curve(y_true, y_scores)\n", - "# Use AUC function to calculate the area under the curve of precision recall curve\n", - "auc_precision_recall = average_precision_score(y_true, y_scores)\n", - "print(auc_precision_recall)" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "id": "4c1ae823-da87-405c-9215-fcd2dec70aaf", - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "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", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "plt.figure(figsize=(6, 4))\n", - "plt.plot(recall, precision, label=f'Precision-Recall Curve (AUC = {auc_precision_recall:.5f})')\n", - "plt.xlabel('Recall', fontsize=15)\n", - "plt.ylabel('Precision', fontsize=15)\n", - "plt.title('Precision-Recall Curve: HIV-1 Life Cycle', fontsize=16)\n", - "plt.legend(loc='best', fontsize=13)\n", - "plt.grid(True)\n", - "plt.show()" - ] - }, - { - "cell_type": "markdown", - "id": "63f5ec21-1f42-4f11-a259-f5ad29ed446f", - "metadata": {}, - "source": [ - "##### Dummy Precision Recall Curve" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "id": "e9f38428-3728-45a6-aeb6-aff233de8a45", - "metadata": {}, - "outputs": [], - "source": [ - "# create new column called y scores dummy - make it np array of val 0.5 repeated for length of y scores \n", - "y_scores_dummy = np.full(len(prc_df), 0.5)" - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "id": "66fe80b3-8bfe-4b26-bbf0-e35009f18eb1", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "-0.0\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\sumed\\anaconda3\\Lib\\site-packages\\sklearn\\metrics\\_ranking.py:891: UserWarning: No positive class found in y_true, recall is set to one for all thresholds.\n", - " warnings.warn(\n", - "C:\\Users\\sumed\\anaconda3\\Lib\\site-packages\\sklearn\\metrics\\_ranking.py:891: UserWarning: No positive class found in y_true, recall is set to one for all thresholds.\n", - " warnings.warn(\n" - ] - } - ], - "source": [ - "precision, recall, thresholds = precision_recall_curve(y_true, y_scores_dummy)\n", - "# Use AUC function to calculate the area under the curve of precision recall curve\n", - "auc_precision_recall = average_precision_score(y_true, y_scores_dummy) \n", - "print(auc_precision_recall)" - ] - }, - { - "cell_type": "code", - "execution_count": 16, - "id": "2e2ce847-98ae-46d6-97ed-000d2a4e2d5f", - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "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", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "plt.figure(figsize=(6, 4))\n", - "plt.plot(recall, precision, label=f'Precision-Recall Curve (AUC = {auc_precision_recall:.5f})')\n", - "plt.xlabel('Recall', fontsize=15)\n", - "plt.ylabel('Precision', fontsize=15)\n", - "plt.title('Precision-Recall Curve: Dummy Classifier \\n compared to KEGG Pathway #2', fontsize=14)\n", - "plt.legend(loc='best', fontsize=13)\n", - "plt.grid(True)\n", - "plt.show()" - ] - }, - { - "cell_type": "markdown", - "id": "cbf4e637-a0eb-43b6-9f2e-4fc67341cdac", - "metadata": {}, - "source": [ - "- took two most relevant pathways hoping for overlap \n", - "- hard to see if we're getting reasonable pathways\n", - "- same challenges in original study\n", - "- due to lack of gold standard\n", - "- kegg is not going to be useful to find gold standard" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "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.7" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/hiv-benchmarking/README.md b/hiv-benchmarking/README.md deleted file mode 100644 index 7293284..0000000 --- a/hiv-benchmarking/README.md +++ /dev/null @@ -1,89 +0,0 @@ -## HIV benchmarking - -This folder contains raw data, processed data, and SPRAS results pertaining to the dataset taken from the following research article: **[HIV-1 virological synapse formation enhances infection spread by dysregulating Aurora Kinase B](https://doi.org/10.1371/journal.ppat.1011492)** - Bruce JW, Park E, Magnano C, Horswill M, Richards A, Potts G, et al. (2023) - -The study examines human immune cells responding to viral infection as well as the changes that take place inside the already infected cells, which is the focus here. -The data is from protein abundance and phosphorylation experiments, which will be the input to pathway reconstruction. - -**Overarching goal:** Recreate published biological case study on HIV data using SPRAS. This will help in identifying nodes i.e. proteins that are relevant to the disease. - -#### requirements.txt: -- Pins the versions of the important packages for data analysis but assumes the Jupyter notebook environment packages are already available. - -#### 1. compare_prizes_network.ipynb - -This notebook performs data analysis that compares the corrected prize files (5 min and 60 min) from the research article to the original prize files: -- Some proteins in the original prize files have the syntax `majorIdentifier-N ` where N denotes isoforms. -- Data analysis involves checking how many proteins in the original prize files are repeats of the same majorIdentifier -- Additionally, it involves checking if the network file used (`phosphosite-irefindex13.0-uniprot.txt`) contains secondary identifiers with the -N syntax. -- If it does not, we will want to strip that syntax from the prize file as part of preprocessing. - - -#### 2. generate_protein_mapping_input.ipynb -This notebook creates the list of proteins to upload to UniProt as a .txt file. -- The proteins from the the `prize05.csv` and `prize060.csv` files are combined together and this is saved as a csv. The file is saved as `prize_list_proteins.txt`. - - -#### 3. preprocess_prize_file.ipynb - -This notebook preprocesses the original prize files into a SPRAS compatible format. The following preprocessing steps are done: -- Node Identifier Simplification: - - Original Format: Columns - UniprotID (i.e. protein IDs) and prize. Some proteins had the syntax majorIdentifier-N (N denotes isoforms). - - Modification: Remove the -N suffix to retain only the majorIdentifier. - - Prize Selection: Retain the maximum prize number associated with each major protein identifier. -- Protein Mapping: - - Network file used: `hiv_raw_data/phosphosite-irefindex13.0-uniprot.txt` - - Issue: Node file and network file use different protein codes. - - Solution: Map and replace protein identifiers in the node file to match the network file using UniProt database. The mapping file used was `hiv_raw_data/idmapping_2024_06_26.tsv`, which was downloaded from UniProt. To get the most recent UniProt mapping, run `generate_protein_mapping_input.ipynb`, upload that to Uniprot, and then use the resulting `idmapping`. -- Column Header Update: - - Original Headers: UniProtID and prize - - New Headers: NODEID and prize -- These modified files are saved as `hiv_processed_data/modified_prize_xx.csv` - - -#### 4. filter_empty_pathways.ipynb -- Removes any empty pathways that were created from the SPRAS output in place -- Recommended: make a copy of the directory and then execute code on duplicate directory - - -#### 5. plot_num_nodes_summary_table.ipynb -- using the `XXX-pathway-summary.txt` file, this notebook produces histograms for the number of nodes present in all the pathways combined - - i.e. Number of Nodes vs. Count, where count represents the number of total pathways that have a particular number of nodes in their pathway - - -#### 6. build_kegg-orthology_to_swissprot_map.ipynb -This notebook creates an output of KEGG Orthology mapped to Uniprot and KEGG Orthology mapped to Swissprot, both saved as CSVs. This is done through: -- Using the `biopython` KGMLParser module, the downloaded KGML pathway is parsed to produce a dataframe of proteins (KEGG Orthology IDs) -- Using API calls to the [genome.jp](https://www.genome.jp/) database, the KEGG orthology IDs are mapped to the KEGG Human protein IDs i.e. the HSA IDs -- Using the `hsa_uniprot.list` file from [LinkDB](https://www.genome.jp/linkdb/) (this was done by downloading the link information between HSA and Uniprot), the HSA IDs are mapped to all the UniProt IDs corresponding to the HSA IDs. Note that this produced a 1-to-many mapping for some proteins -- To remove the 1-to-many mapping and produce a 1-to-1 mapping instead, API calls to [genome.jp](https://www.genome.jp/) are done again to filter out UniProt IDs that *don't* have SwissProt IDs i.e. protein IDs that haven't been 'manually reviewed'. -- All these mappings are saved locally as csvs. - - -#### 7. hiv05_comparison_ratios -This notebook contains code to create comparison ratios for SPRAS ensemble pathways vs. the original publication pathway *and* SPRAS ensemble pathways vs. the KEGG pathway -- This is done by intersecting the nodes found in both pathways, and then comparing the number of nodes found in both to the number of nodes found in the individual original pathways - - -#### 8. ensemble_node_maxfreq.ipynb -This notebook contains code that loads the ensemble pathway and assigns the highest frequency associated with each node to the respective node. -- The original SPRAS output ensemble pathway file assigns frequencies to edges. -- The result produced by this notebook assigns the maximum edge frequency associated with each node to the node, creating a max node frequency list that is saved as a CSV. - - -#### 9. build_prc_kegg_hiv05.ipynb -This notebook produces a precision recall curve using `scikit-learn`. This is done through the following steps: -- Building the PRC uses the max node frequency produced from the ensemble pathway, and the KEGG to Swissprot/Uniprot mapping. -- A vector of 0s and 1s is built that indicates whether the particular protein in the ensemble pathway is found in the KEGG pathway or not. This vector is called `y_kegg` and is attached to the ensemble pathway dataframe. - - The `max_freq` column in the dataframe is considered as the probabilities/scores and the `y_kegg` column in the dataframe is considered as the true label -- Then, a precision recall curve is built. - - -#### 10. build_prc_gene-ontology_hiv05_hiv060 -This notebook also produces several precision recall curves using `scikit-learn`. These are done from selecting 3 biological processes from the publication's list of observed biological processes and then taking the Uniprot list of all Gene Ontology proteins (for the human taxonomy) for that particular biological process. -- A vector of 0s and 1s is built that indicates whether the particular protein in the ensemble pathway is found in the Gene Ontology list or not. This vector is called `y_go` and is attached to the ensemble pathway dataframe. - - The `max_freq` column in the dataframe is considered as the probabilities/scores and the `y_go` column in the dataframe is considered as the true label -- Then, a precision recall curve is built. - - - diff --git a/hiv-benchmarking/hiv_processed_data/hiv05-max-node-freq-ensemble.csv b/hiv-benchmarking/hiv_processed_data/hiv05-max-node-freq-ensemble.csv deleted file mode 100644 index 809d9cd..0000000 --- a/hiv-benchmarking/hiv_processed_data/hiv05-max-node-freq-ensemble.csv +++ /dev/null @@ -1,1238 +0,0 @@ -Node,max_freq -1433B_HUMAN,0.16 -1433E_HUMAN,0.16 -1433G_HUMAN,0.16 -1433S_HUMAN,0.12 -1433T_HUMAN,0.16 -2A5A_HUMAN,0.16 -2A5E_HUMAN,0.16 -2AAB_HUMAN,0.16 -41_HUMAN,0.08 -4EBP1_HUMAN,0.16 -4EBP2_HUMAN,0.16 -4EBP3_HUMAN,0.16 -A0A5E8_HUMAN,0.08 -A2AP_HUMAN,0.13 -A2MG_HUMAN,0.12 -A2RUM7_HUMAN,0.16 -A4D0W0_HUMAN,0.12 -A4D1G0_HUMAN,0.12 -A4D2P0_HUMAN,0.12 -A4D2P1_HUMAN,0.12 -A4QPA9_HUMAN,0.16 -A4_HUMAN,0.12 -A8K379_HUMAN,0.12 -A8K3Y2_HUMAN,0.16 -A8K401_HUMAN,0.12 -A8KAH9_HUMAN,0.12 -AAAT_HUMAN,0.12 -AAK1_HUMAN,0.16 -AAKB1_HUMAN,0.16 -AAPK1_HUMAN,0.16 -ABCF2_HUMAN,0.08 -ABHGA_HUMAN,0.08 -ABL1_HUMAN,0.16 -ABLM1_HUMAN,0.12 -ACBP_HUMAN,0.12 -ACD_HUMAN,0.08 -ACINU_HUMAN,0.18 -ACK1_HUMAN,0.08 -ACOC_HUMAN,0.08 -ACTB_HUMAN,0.16 -ACTY_HUMAN,0.15 -ADA15_HUMAN,0.12 -ADRM1_HUMAN,0.16 -AF9_HUMAN,0.16 -AFF4_HUMAN,0.16 -AKA10_HUMAN,0.16 -AKAP1_HUMAN,0.16 -AKT1_HUMAN,0.16 -AKT2_HUMAN,0.12 -AKTIP_HUMAN,0.08 -ALBU_HUMAN,0.12 -ALG3_HUMAN,0.08 -ALKB5_HUMAN,0.12 -AMPD2_HUMAN,0.12 -AN32A_HUMAN,0.16 -ANDR_HUMAN,0.12 -ANLN_HUMAN,0.12 -ANT3_HUMAN,0.12 -APC1_HUMAN,0.16 -APC_HUMAN,0.12 -APOB_HUMAN,0.12 -APTX_HUMAN,0.16 -ARBK2_HUMAN,0.12 -ARC1A_HUMAN,0.08 -ARF6_HUMAN,0.08 -ARFG1_HUMAN,0.08 -ARGL1_HUMAN,0.12 -ARHG1_HUMAN,0.12 -ARHG6_HUMAN,0.12 -ARHG7_HUMAN,0.16 -ARI3A_HUMAN,0.12 -ARI4B_HUMAN,0.12 -ARP19_HUMAN,0.12 -ARRB1_HUMAN,0.08 -ARRB2_HUMAN,0.12 -ATAD5_HUMAN,0.12 -ATAT_HUMAN,0.12 -ATF2_HUMAN,0.16 -ATF7_HUMAN,0.12 -ATG2A_HUMAN,0.12 -ATG9A_HUMAN,0.12 -ATIF1_HUMAN,0.12 -ATM_HUMAN,0.16 -ATN1_HUMAN,0.16 -ATP4A_HUMAN,0.12 -ATP9B_HUMAN,0.08 -ATRX_HUMAN,0.16 -ATR_HUMAN,0.16 -ATX1_HUMAN,0.12 -ATX2L_HUMAN,0.12 -AURKB_HUMAN,0.16 -AXIN1_HUMAN,0.16 -B0LPE5_HUMAN,0.16 -B0LPF3_HUMAN,0.08 -B2CL2_HUMAN,0.16 -B2R4R0_HUMAN,0.16 -B2R5T5_HUMAN,0.16 -B2R812_HUMAN,0.08 -B2RBV7_HUMAN,0.16 -B2RNT7_HUMAN,0.12 -B3KUN1_HUMAN,0.16 -B4DJ51_HUMAN,0.08 -B4DL80_HUMAN,0.16 -B4DPT1_HUMAN,0.16 -B4DQB3_HUMAN,0.16 -B4DY08_HUMAN,0.12 -B4E1U9_HUMAN,0.04 -B7Z2P9_HUMAN,0.08 -B7Z3D6_HUMAN,0.16 -B7ZKJ8_HUMAN,0.12 -BAD_HUMAN,0.16 -BAG4_HUMAN,0.12 -BARD1_HUMAN,0.12 -BAZ1B_HUMAN,0.16 -BCKD_HUMAN,0.12 -BCL2_HUMAN,0.08 -BICD1_HUMAN,0.16 -BIRC2_HUMAN,0.04 -BIRC5_HUMAN,0.12 -BLM_HUMAN,0.16 -BMI1_HUMAN,0.16 -BMP2K_HUMAN,0.12 -BNI3L_HUMAN,0.12 -BNIP3_HUMAN,0.08 -BOREA_HUMAN,0.24 -BPL1_HUMAN,0.12 -BRAP_HUMAN,0.16 -BRCA1_HUMAN,0.16 -BRCA2_HUMAN,0.16 -BRD1_HUMAN,0.08 -BRPF1_HUMAN,0.24 -BTF3_HUMAN,0.16 -BUD13_HUMAN,0.32 -C2CD5_HUMAN,0.12 -C2TA_HUMAN,0.12 -CA174_HUMAN,0.12 -CAF1A_HUMAN,0.16 -CAF1B_HUMAN,0.16 -CAMP1_HUMAN,0.12 -CAND1_HUMAN,0.04 -CASP3_HUMAN,0.16 -CASP9_HUMAN,0.04 -CATG_HUMAN,0.12 -CATIN_HUMAN,0.15 -CBL_HUMAN,0.16 -CBX1_HUMAN,0.16 -CBX5_HUMAN,0.16 -CBX8_HUMAN,0.16 -CC85B_HUMAN,0.04 -CCAR2_HUMAN,0.16 -CCD92_HUMAN,0.12 -CCDC6_HUMAN,0.16 -CCDC9_HUMAN,0.12 -CCNB1_HUMAN,0.16 -CCND1_HUMAN,0.04 -CCND3_HUMAN,0.12 -CCNE1_HUMAN,0.08 -CCNF_HUMAN,0.12 -CCNT1_HUMAN,0.16 -CD2A2_HUMAN,0.16 -CD2AP_HUMAN,0.16 -CD3E_HUMAN,0.16 -CD3Z_HUMAN,0.16 -CD7_HUMAN,0.16 -CDA7L_HUMAN,0.12 -CDC20_HUMAN,0.16 -CDC37_HUMAN,0.12 -CDC42_HUMAN,0.12 -CDC73_HUMAN,0.16 -CDC7_HUMAN,0.16 -CDK1_HUMAN,0.16 -CDK2_HUMAN,0.16 -CDK4_HUMAN,0.12 -CDK5_HUMAN,0.12 -CDK9_HUMAN,0.16 -CDN1A_HUMAN,0.12 -CDS2_HUMAN,0.12 -CE022_HUMAN,0.15 -CENPA_HUMAN,0.16 -CENPF_HUMAN,0.12 -CFTR_HUMAN,0.12 -CHD4_HUMAN,0.16 -CHERP_HUMAN,0.12 -CHIP_HUMAN,0.16 -CIAO1_HUMAN,0.12 -CIC_HUMAN,0.08 -CIR1_HUMAN,0.16 -CIRBP_HUMAN,0.12 -CK5P3_HUMAN,0.12 -CLH1_HUMAN,0.12 -CLN8_HUMAN,0.04 -CLPX_HUMAN,0.08 -CLUS_HUMAN,0.12 -CNBP_HUMAN,0.12 -CND2_HUMAN,0.08 -CND3_HUMAN,0.04 -CNOT2_HUMAN,0.2 -CNOT3_HUMAN,0.2 -CNOT4_HUMAN,0.16 -CO039_HUMAN,0.08 -CO3_HUMAN,0.12 -CO7_HUMAN,0.12 -COASY_HUMAN,0.16 -COF1_HUMAN,0.16 -COMD1_HUMAN,0.16 -CPPED_HUMAN,0.08 -CREB1_HUMAN,0.12 -CREB3_HUMAN,0.08 -CRKL_HUMAN,0.16 -CSK21_HUMAN,0.16 -CSKI1_HUMAN,0.12 -CSN5_HUMAN,0.12 -CSN6_HUMAN,0.12 -CTCF_HUMAN,0.16 -CTNB1_HUMAN,0.16 -CTRO_HUMAN,0.16 -CUL1_HUMAN,0.16 -CUL2_HUMAN,0.16 -CUL3_HUMAN,0.16 -CUL4A_HUMAN,0.12 -CUTC_HUMAN,0.18 -CWC15_HUMAN,0.12 -CYTSA_HUMAN,0.12 -D0PNI1_HUMAN,0.16 -D0VY79_HUMAN,0.16 -D3DU92_HUMAN,0.12 -D4PHA4_HUMAN,0.08 -DAPK1_HUMAN,0.12 -DAXX_HUMAN,0.16 -DC1L1_HUMAN,0.12 -DCA10_HUMAN,0.12 -DCAKD_HUMAN,0.04 -DCP1A_HUMAN,0.16 -DCP1B_HUMAN,0.16 -DCP2_HUMAN,0.16 -DDA1_HUMAN,0.16 -DDB1_HUMAN,0.16 -DDB2_HUMAN,0.12 -DDRGK_HUMAN,0.12 -DDX21_HUMAN,0.16 -DDX23_HUMAN,0.12 -DDX58_HUMAN,0.12 -DDX5_HUMAN,0.16 -DEFI6_HUMAN,0.12 -DENR_HUMAN,0.12 -DGCR8_HUMAN,0.12 -DLGP4_HUMAN,0.12 -DMAP1_HUMAN,0.08 -DNJB2_HUMAN,0.12 -DNMT1_HUMAN,0.16 -DOK2_HUMAN,0.16 -DPOA2_HUMAN,0.08 -DREB_HUMAN,0.08 -DYL1_HUMAN,0.12 -DYR1A_HUMAN,0.16 -E2F1_HUMAN,0.16 -E2F3_HUMAN,0.16 -E2F4_HUMAN,0.12 -E9KL35_HUMAN,0.12 -E9KL44_HUMAN,0.08 -ECT2_HUMAN,0.16 -EDC4_HUMAN,0.16 -EDF1_HUMAN,0.16 -EF2_HUMAN,0.12 -EGFR_HUMAN,0.16 -EI24_HUMAN,0.12 -EIF3A_HUMAN,0.16 -EIF3B_HUMAN,0.04 -EIF3F_HUMAN,0.12 -ELF1_HUMAN,0.16 -ELP1_HUMAN,0.12 -EMD_HUMAN,0.16 -EMSY_HUMAN,0.17 -EP300_HUMAN,0.16 -EP400_HUMAN,0.08 -ERBB2_HUMAN,0.16 -ERIC1_HUMAN,0.12 -ESYT2_HUMAN,0.08 -EVL_HUMAN,0.12 -EXOC4_HUMAN,0.12 -EXOC7_HUMAN,0.08 -EZRI_HUMAN,0.12 -F110C_HUMAN,0.12 -F6KD01_HUMAN,0.12 -FADD_HUMAN,0.16 -FAF1_HUMAN,0.16 -FBX41_HUMAN,0.12 -FBX42_HUMAN,0.12 -FBXW7_HUMAN,0.12 -FEN1_HUMAN,0.04 -FGD6_HUMAN,0.12 -FIZ1_HUMAN,0.08 -FKBP4_HUMAN,0.16 -FLII_HUMAN,0.08 -FNBP4_HUMAN,0.16 -FOS_HUMAN,0.16 -G3XAN8_HUMAN,0.08 -G4XH65_HUMAN,0.16 -GATA4_HUMAN,0.09 -GBRAP_HUMAN,0.12 -GBRL1_HUMAN,0.16 -GDIR1_HUMAN,0.16 -GIPC1_HUMAN,0.12 -GIT1_HUMAN,0.12 -GLYR1_HUMAN,0.12 -GNL1_HUMAN,0.12 -GOGA2_HUMAN,0.12 -GOLP3_HUMAN,0.18 -GON4L_HUMAN,0.12 -GORS2_HUMAN,0.12 -GPTC8_HUMAN,0.12 -GRAP2_HUMAN,0.16 -GRB2_HUMAN,0.04 -GSK3B_HUMAN,0.16 -H12_HUMAN,0.16 -H13_HUMAN,0.16 -H2AX_HUMAN,0.16 -H31T_HUMAN,0.12 -H31_HUMAN,0.16 -HCFC1_HUMAN,0.08 -HDAC1_HUMAN,0.16 -HDAC2_HUMAN,0.16 -HDAC4_HUMAN,0.16 -HD_HUMAN,0.12 -HEBP2_HUMAN,0.12 -HGS_HUMAN,0.12 -HIRA_HUMAN,0.16 -HMGA1_HUMAN,0.16 -HMGN3_HUMAN,0.12 -HNRH3_HUMAN,0.12 -HNRL2_HUMAN,0.12 -HNRPD_HUMAN,0.12 -HNRPF_HUMAN,0.16 -HNRPK_HUMAN,0.16 -HOIL1_HUMAN,0.08 -HOMEZ_HUMAN,0.12 -HS90A_HUMAN,0.16 -HTF4_HUMAN,0.12 -HXB4_HUMAN,0.12 -I17RA_HUMAN,0.16 -I2BP2_HUMAN,0.18 -IBP2_HUMAN,0.12 -IF16_HUMAN,0.16 -IF4A1_HUMAN,0.12 -IF4E_HUMAN,0.16 -IF4G1_HUMAN,0.16 -IFNB_HUMAN,0.12 -IGBP1_HUMAN,0.16 -IKBA_HUMAN,0.12 -IKKA_HUMAN,0.16 -IKKB_HUMAN,0.16 -IN80E_HUMAN,0.11 -INT1_HUMAN,0.12 -INT3_HUMAN,0.12 -IRAK1_HUMAN,0.04 -IRF1_HUMAN,0.12 -IRF3_HUMAN,0.12 -IRF7_HUMAN,0.12 -IRF8_HUMAN,0.12 -ITCH_HUMAN,0.08 -IWS1_HUMAN,0.12 -J3KN59_HUMAN,0.16 -J3KNL6_HUMAN,0.12 -JAK2_HUMAN,0.12 -JKIP1_HUMAN,0.12 -JUN_HUMAN,0.16 -K1C10_HUMAN,0.12 -K1C16_HUMAN,0.12 -K7PPA8_HUMAN,0.16 -KAPCA_HUMAN,0.16 -KAT2A_HUMAN,0.12 -KAT2B_HUMAN,0.16 -KAT6A_HUMAN,0.24 -KAT8_HUMAN,0.12 -KBTB7_HUMAN,0.16 -KC1A_HUMAN,0.16 -KC1E_HUMAN,0.12 -KCRM_HUMAN,0.12 -KDM1A_HUMAN,0.16 -KDM2B_HUMAN,0.12 -KDM3B_HUMAN,0.08 -KEAP1_HUMAN,0.16 -KHDR1_HUMAN,0.16 -KI13B_HUMAN,0.12 -KIF14_HUMAN,0.12 -KIF2A_HUMAN,0.12 -KIF4A_HUMAN,0.16 -KLC4_HUMAN,0.12 -KNOP1_HUMAN,0.12 -KPBB_HUMAN,0.12 -KPCA_HUMAN,0.16 -KS6B1_HUMAN,0.16 -KSYK_HUMAN,0.12 -KTNA1_HUMAN,0.18 -KTNB1_HUMAN,0.18 -L7RRS6_HUMAN,0.16 -L7RT18_HUMAN,0.16 -LAT_HUMAN,0.16 -LCAP_HUMAN,0.12 -LCK_HUMAN,0.16 -LCP2_HUMAN,0.16 -LDB1_HUMAN,0.12 -LMO7_HUMAN,0.3 -LRP1_HUMAN,0.16 -LRRC1_HUMAN,0.12 -LSM12_HUMAN,0.12 -LSM2_HUMAN,0.12 -LSM7_HUMAN,0.12 -LUZP1_HUMAN,0.12 -LYAR_HUMAN,0.08 -M3K14_HUMAN,0.12 -M3K1_HUMAN,0.16 -M3K2_HUMAN,0.16 -M3K7_HUMAN,0.16 -MAGD1_HUMAN,0.16 -MAP1S_HUMAN,0.12 -MAPK2_HUMAN,0.16 -MAST4_HUMAN,0.12 -MAX_HUMAN,0.12 -MCM2_HUMAN,0.16 -MD2L1_HUMAN,0.12 -MDM2_HUMAN,0.16 -MDN1_HUMAN,0.12 -MED19_HUMAN,0.04 -MED1_HUMAN,0.16 -MED4_HUMAN,0.08 -MGMT_HUMAN,0.04 -MK01_HUMAN,0.16 -MK08_HUMAN,0.16 -MK14_HUMAN,0.16 -MLH1_HUMAN,0.16 -MLP3A_HUMAN,0.12 -MMTA2_HUMAN,0.12 -MORC3_HUMAN,0.16 -MP2K4_HUMAN,0.16 -MS18A_HUMAN,0.12 -MTFR1_HUMAN,0.12 -MTG8R_HUMAN,0.16 -MTG8_HUMAN,0.16 -MTMR4_HUMAN,0.12 -MTOR_HUMAN,0.16 -MUS81_HUMAN,0.16 -MYC_HUMAN,0.16 -N0E4C7_HUMAN,0.16 -NAB1_HUMAN,0.16 -NCK1_HUMAN,0.16 -NCOA1_HUMAN,0.16 -NCOA7_HUMAN,0.12 -NCOR1_HUMAN,0.16 -NDUB8_HUMAN,0.12 -NEDD4_HUMAN,0.16 -NEK1_HUMAN,0.12 -NELFB_HUMAN,0.12 -NELL1_HUMAN,0.08 -NEMF_HUMAN,0.08 -NEMO_HUMAN,0.12 -NFAC2_HUMAN,0.08 -NFIC_HUMAN,0.12 -NFYA_HUMAN,0.08 -NHRF1_HUMAN,0.16 -NINL_HUMAN,0.08 -NKTR_HUMAN,0.12 -NNTM_HUMAN,0.04 -NOL8_HUMAN,0.16 -NOLC1_HUMAN,0.16 -NOP56_HUMAN,0.08 -NOTC1_HUMAN,0.12 -NPM_HUMAN,0.16 -NSD3_HUMAN,0.12 -NSE2_HUMAN,0.12 -NSRP1_HUMAN,0.08 -NSUN5_HUMAN,0.04 -NU107_HUMAN,0.16 -NU153_HUMAN,0.16 -NU188_HUMAN,0.12 -NUCL_HUMAN,0.16 -NUMA1_HUMAN,0.16 -NUMBL_HUMAN,0.16 -NUP93_HUMAN,0.12 -NUP98_HUMAN,0.16 -OXSR1_HUMAN,0.12 -P53_HUMAN,0.16 -P63_HUMAN,0.12 -P85A_HUMAN,0.16 -PABP1_HUMAN,0.12 -PAK1_HUMAN,0.16 -PALM_HUMAN,0.08 -PAPOA_HUMAN,0.12 -PARP1_HUMAN,0.12 -PARP6_HUMAN,0.12 -PATL1_HUMAN,0.16 -PAXI1_HUMAN,0.12 -PCBP2_HUMAN,0.12 -PCF11_HUMAN,0.12 -PCNA_HUMAN,0.16 -PCNP_HUMAN,0.12 -PCY1A_HUMAN,0.12 -PDC6I_HUMAN,0.12 -PDS5A_HUMAN,0.16 -PEX19_HUMAN,0.16 -PGM2_HUMAN,0.12 -PHAX_HUMAN,0.12 -PIAS1_HUMAN,0.16 -PIN1_HUMAN,0.12 -PININ_HUMAN,0.16 -PLCG1_HUMAN,0.16 -PLCL2_HUMAN,0.12 -PLEC_HUMAN,0.16 -PLIN3_HUMAN,0.12 -PLK1_HUMAN,0.16 -PLMN_HUMAN,0.13 -PLXB1_HUMAN,0.12 -PMYT1_HUMAN,0.16 -POSTN_HUMAN,0.04 -POTE1_HUMAN,0.08 -PP16B_HUMAN,0.12 -PP1A_HUMAN,0.12 -PP4C_HUMAN,0.16 -PP6R3_HUMAN,0.12 -PPIP1_HUMAN,0.16 -PPM1G_HUMAN,0.12 -PRC2A_HUMAN,0.08 -PRC2B_HUMAN,0.12 -PRIO_HUMAN,0.12 -PRKN2_HUMAN,0.16 -PRPF3_HUMAN,0.16 -PRR12_HUMAN,0.39 -PRS7_HUMAN,0.04 -PRSR1_HUMAN,0.12 -PSA2_HUMAN,0.12 -PSA7_HUMAN,0.12 -PSD11_HUMAN,0.12 -PSMD2_HUMAN,0.16 -PSMD4_HUMAN,0.16 -PTTG1_HUMAN,0.16 -PUM1_HUMAN,0.39 -PZP_HUMAN,0.12 -Q53T99_HUMAN,0.08 -Q56A76_HUMAN,0.16 -Q658J6_HUMAN,0.16 -Q6FIE9_HUMAN,0.04 -Q7Z372_HUMAN,0.08 -Q9H836_HUMAN,0.08 -Q9HBD4_HUMAN,0.08 -RAB4A_HUMAN,0.12 -RAD21_HUMAN,0.12 -RAD51_HUMAN,0.16 -RAE1L_HUMAN,0.12 -RAF1_HUMAN,0.16 -RASF5_HUMAN,0.11 -RB12B_HUMAN,0.12 -RB15B_HUMAN,0.12 -RBBP5_HUMAN,0.16 -RBM15_HUMAN,0.12 -RBM39_HUMAN,0.12 -RBM5_HUMAN,0.2 -RBM6_HUMAN,0.12 -RBMX_HUMAN,0.16 -RBP2_HUMAN,0.16 -RBP56_HUMAN,0.12 -RBX1_HUMAN,0.16 -RB_HUMAN,0.16 -RCOR1_HUMAN,0.12 -RED_HUMAN,0.12 -RENT1_HUMAN,0.16 -RENT2_HUMAN,0.08 -REPS1_HUMAN,0.12 -RFTN1_HUMAN,0.12 -RHG01_HUMAN,0.16 -RHOA_HUMAN,0.16 -RIC8A_HUMAN,0.12 -RING2_HUMAN,0.16 -RIPK1_HUMAN,0.16 -RL28_HUMAN,0.12 -RL35_HUMAN,0.12 -RLA1_HUMAN,0.08 -RN114_HUMAN,0.12 -RN168_HUMAN,0.16 -RN169_HUMAN,0.16 -RNF10_HUMAN,0.12 -RNF25_HUMAN,0.16 -RNF31_HUMAN,0.08 -ROCK1_HUMAN,0.16 -RPGF4_HUMAN,0.04 -RPTOR_HUMAN,0.16 -RRAGA_HUMAN,0.16 -RRP15_HUMAN,0.12 -RSF1_HUMAN,0.16 -RSRC2_HUMAN,0.12 -RUVB1_HUMAN,0.04 -RUVB2_HUMAN,0.04 -SAFB1_HUMAN,0.16 -SASH3_HUMAN,0.12 -SC22B_HUMAN,0.12 -SCAFB_HUMAN,0.12 -SCMC1_HUMAN,0.12 -SCML2_HUMAN,0.12 -SEC62_HUMAN,0.08 -SENP1_HUMAN,0.16 -SENP2_HUMAN,0.16 -SENP3_HUMAN,0.16 -SEPT2_HUMAN,0.12 -SETD2_HUMAN,0.12 -SF3B5_HUMAN,0.12 -SFPQ_HUMAN,0.16 -SFR19_HUMAN,0.12 -SGK1_HUMAN,0.08 -SGT1_HUMAN,0.12 -SIX6_HUMAN,0.12 -SKA1_HUMAN,0.04 -SKI_HUMAN,0.04 -SMAD1_HUMAN,0.12 -SMAD2_HUMAN,0.12 -SMAD3_HUMAN,0.16 -SMAD4_HUMAN,0.16 -SMAD7_HUMAN,0.12 -SMC1A_HUMAN,0.16 -SMC2_HUMAN,0.08 -SMC3_HUMAN,0.16 -SMG1_HUMAN,0.12 -SMRC2_HUMAN,0.12 -SMRCD_HUMAN,0.16 -SND1_HUMAN,0.16 -SNUT1_HUMAN,0.16 -SOX1_HUMAN,0.12 -SP16H_HUMAN,0.16 -SPAST_HUMAN,0.12 -SPT4H_HUMAN,0.16 -SR140_HUMAN,0.2 -SRC_HUMAN,0.16 -SRP14_HUMAN,0.08 -SRPK2_HUMAN,0.12 -SRSF4_HUMAN,0.16 -STK11_HUMAN,0.12 -SUGP1_HUMAN,0.12 -SUMO1_HUMAN,0.16 -SUMO2_HUMAN,0.16 -SYTC_HUMAN,0.12 -T2AG_HUMAN,0.16 -T2EA_HUMAN,0.16 -T2FA_HUMAN,0.16 -TAF6_HUMAN,0.16 -TB182_HUMAN,0.12 -TBB4A_HUMAN,0.12 -TBK1_HUMAN,0.12 -TBP_HUMAN,0.16 -TCF25_HUMAN,0.12 -TDIF2_HUMAN,0.16 -TERF1_HUMAN,0.12 -TETN_HUMAN,0.12 -TF3C1_HUMAN,0.16 -TFR1_HUMAN,0.16 -TGFR1_HUMAN,0.12 -THOC2_HUMAN,0.16 -TICRR_HUMAN,0.12 -TIM50_HUMAN,0.12 -TMCO6_HUMAN,0.12 -TNFA_HUMAN,0.08 -TNR8_HUMAN,0.08 -TRAF2_HUMAN,0.16 -TRAF6_HUMAN,0.16 -TRI32_HUMAN,0.16 -UB2L3_HUMAN,0.16 -UBA1_HUMAN,0.12 -UBQL1_HUMAN,0.12 -UBQL4_HUMAN,0.12 -VPS72_HUMAN,0.09 -WASP_HUMAN,0.16 -WBP11_HUMAN,0.15 -WNK1_HUMAN,0.16 -WRN_HUMAN,0.04 -XRCC5_HUMAN,0.16 -XRCC6_HUMAN,0.16 -ZAP70_HUMAN,0.16 -ZBT16_HUMAN,0.12 -ZN330_HUMAN,0.12 -ZN397_HUMAN,0.04 -ZN446_HUMAN,0.04 -4ET_HUMAN,0.16 -AB1IP_HUMAN,0.12 -ABI1_HUMAN,0.16 -ABL2_HUMAN,0.16 -ABR_HUMAN,0.12 -ACACA_HUMAN,0.16 -ACAP1_HUMAN,0.16 -ADDB_HUMAN,0.12 -AGAP2_HUMAN,0.12 -AJUBA_HUMAN,0.12 -AN32B_HUMAN,0.16 -API5_HUMAN,0.18 -APOA1_HUMAN,0.12 -ARI4A_HUMAN,0.16 -ARMC7_HUMAN,0.12 -ARP10_HUMAN,0.15 -ASAP3_HUMAN,0.08 -ASHWN_HUMAN,0.16 -ATX10_HUMAN,0.16 -BAG6_HUMAN,0.16 -BCLF1_HUMAN,0.16 -BD1L1_HUMAN,0.16 -BPTF_HUMAN,0.16 -C10_HUMAN,0.08 -C1TM_HUMAN,0.12 -C2C2L_HUMAN,0.08 -CAP1_HUMAN,0.12 -CBX3_HUMAN,0.16 -CC020_HUMAN,0.12 -CCD86_HUMAN,0.12 -CCNK_HUMAN,0.12 -CD5_HUMAN,0.16 -CDK17_HUMAN,0.16 -CDN1B_HUMAN,0.12 -CE164_HUMAN,0.12 -CE170_HUMAN,0.12 -CE350_HUMAN,0.12 -CEP95_HUMAN,0.12 -CH60_HUMAN,0.16 -CHSP1_HUMAN,0.16 -CLAP1_HUMAN,0.16 -CLAP2_HUMAN,0.16 -CLK3_HUMAN,0.16 -CO9_HUMAN,0.12 -COMD6_HUMAN,0.16 -CPZIP_HUMAN,0.12 -CRIP2_HUMAN,0.12 -CRTC1_HUMAN,0.12 -CT2NL_HUMAN,0.12 -CUX1_HUMAN,0.16 -DAP1_HUMAN,0.12 -DBF4A_HUMAN,0.16 -DBNL_HUMAN,0.16 -DDX3X_HUMAN,0.16 -DDX52_HUMAN,0.12 -DDX55_HUMAN,0.12 -DEN1B_HUMAN,0.08 -DHX30_HUMAN,0.16 -DMXL2_HUMAN,0.08 -DNLI1_HUMAN,0.16 -DOCK7_HUMAN,0.16 -DOK1_HUMAN,0.16 -DOT1L_HUMAN,0.16 -DSN1_HUMAN,0.16 -DTBP1_HUMAN,0.12 -DUS3_HUMAN,0.16 -E41L2_HUMAN,0.12 -EDC3_HUMAN,0.16 -EEPD1_HUMAN,0.12 -EF2K_HUMAN,0.16 -EGLN1_HUMAN,0.16 -EHBP1_HUMAN,0.12 -ELL2_HUMAN,0.16 -ELP4_HUMAN,0.12 -EPN1_HUMAN,0.16 -EPN4_HUMAN,0.12 -ETS1_HUMAN,0.16 -F5H0R1_HUMAN,0.16 -FA53C_HUMAN,0.12 -FACD2_HUMAN,0.16 -FANCJ_HUMAN,0.16 -FBLN1_HUMAN,0.12 -FEM1A_HUMAN,0.12 -FETUA_HUMAN,0.12 -FOXK2_HUMAN,0.16 -FUBP3_HUMAN,0.12 -FYV1_HUMAN,0.16 -GAB3_HUMAN,0.12 -GAPD1_HUMAN,0.12 -GBF1_HUMAN,0.16 -GBRG2_HUMAN,0.12 -GELS_HUMAN,0.16 -GEPH_HUMAN,0.12 -GLE1_HUMAN,0.12 -GLPC_HUMAN,0.08 -GRDN_HUMAN,0.16 -GTF2I_HUMAN,0.16 -GUAA_HUMAN,0.12 -GYS1_HUMAN,0.12 -H14_HUMAN,0.16 -H15_HUMAN,0.16 -H2B1M_HUMAN,0.12 -H33_HUMAN,0.16 -HAUS8_HUMAN,0.12 -HECD1_HUMAN,0.12 -HERC1_HUMAN,0.12 -HJURP_HUMAN,0.16 -HMHA1_HUMAN,0.12 -HNRL1_HUMAN,0.12 -HS105_HUMAN,0.12 -ICAM2_HUMAN,0.12 -IF4B_HUMAN,0.16 -IF4H_HUMAN,0.12 -IFG15_HUMAN,0.12 -IKZF1_HUMAN,0.12 -IKZF2_HUMAN,0.12 -IMA1_HUMAN,0.16 -INAR1_HUMAN,0.12 -INCE_HUMAN,0.24 -INF2_HUMAN,0.12 -IPYR_HUMAN,0.12 -IQCB1_HUMAN,0.08 -IQGA1_HUMAN,0.08 -IRF2_HUMAN,0.12 -IRX1_HUMAN,0.12 -ITFG2_HUMAN,0.08 -ITIH1_HUMAN,0.12 -ITIH2_HUMAN,0.12 -J3KPH8_HUMAN,0.16 -JARD2_HUMAN,0.09 -JHD2C_HUMAN,0.12 -JIP4_HUMAN,0.08 -JUNB_HUMAN,0.16 -K1C9_HUMAN,0.12 -K2C1_HUMAN,0.12 -KAPCB_HUMAN,0.12 -KAT5_HUMAN,0.08 -KCTD9_HUMAN,0.12 -KDIS_HUMAN,0.12 -KDM2A_HUMAN,0.12 -KDM6B_HUMAN,0.12 -KI67_HUMAN,0.12 -KIF1B_HUMAN,0.16 -KIF1C_HUMAN,0.16 -KIF22_HUMAN,0.12 -KIFC1_HUMAN,0.12 -KKCC2_HUMAN,0.12 -KLDC4_HUMAN,0.12 -KLF13_HUMAN,0.16 -KMT2C_HUMAN,0.16 -L2GL1_HUMAN,0.08 -LAGE3_HUMAN,0.12 -LAP2A_HUMAN,0.12 -LAR1B_HUMAN,0.12 -LAR4B_HUMAN,0.12 -LARP1_HUMAN,0.16 -LASP1_HUMAN,0.16 -LBR_HUMAN,0.16 -LC7L2_HUMAN,0.16 -LEO1_HUMAN,0.16 -LEUK_HUMAN,0.12 -LIMA1_HUMAN,0.12 -LIMD1_HUMAN,0.12 -LIPB1_HUMAN,0.16 -LMBL3_HUMAN,0.12 -LMNB2_HUMAN,0.12 -LPIN1_HUMAN,0.12 -LRCH3_HUMAN,0.12 -LRRF1_HUMAN,0.08 -LS14A_HUMAN,0.12 -LZTS1_HUMAN,0.12 -MA7D1_HUMAN,0.12 -MABP1_HUMAN,0.12 -MADD_HUMAN,0.12 -MARCS_HUMAN,0.16 -MARE2_HUMAN,0.12 -MARK2_HUMAN,0.12 -MAST2_HUMAN,0.12 -MAST3_HUMAN,0.12 -MB12A_HUMAN,0.16 -MBP_HUMAN,0.08 -MCES_HUMAN,0.12 -MCM3_HUMAN,0.12 -MCM4_HUMAN,0.16 -MCP_HUMAN,0.12 -MDC1_HUMAN,0.16 -MEF2A_HUMAN,0.16 -MEF2D_HUMAN,0.16 -MFF_HUMAN,0.12 -MGAP_HUMAN,0.12 -MIA2_HUMAN,0.12 -MINT_HUMAN,0.16 -MKRN2_HUMAN,0.08 -MNX1_HUMAN,0.12 -MOV10_HUMAN,0.16 -MPP8_HUMAN,0.12 -MPZL1_HUMAN,0.16 -MRP_HUMAN,0.16 -MSL1_HUMAN,0.12 -MY18A_HUMAN,0.18 -MYO5A_HUMAN,0.12 -MYPT1_HUMAN,0.16 -NASP_HUMAN,0.12 -NBEL2_HUMAN,0.12 -NCBP1_HUMAN,0.16 -NCK5L_HUMAN,0.12 -NCOA2_HUMAN,0.16 -NCOA3_HUMAN,0.16 -NCOA5_HUMAN,0.12 -NDE1_HUMAN,0.16 -NDEL1_HUMAN,0.12 -NDUA5_HUMAN,0.08 -NELFE_HUMAN,0.15 -NEXN_HUMAN,0.08 -NF1_HUMAN,0.12 -NFAC1_HUMAN,0.16 -NFAC3_HUMAN,0.16 -NFKB1_HUMAN,0.12 -NGAP_HUMAN,0.16 -NIPBL_HUMAN,0.16 -NOC2L_HUMAN,0.16 -NOSIP_HUMAN,0.12 -NRL_HUMAN,0.08 -NSD2_HUMAN,0.16 -NU133_HUMAN,0.16 -NUCKS_HUMAN,0.12 -NUMB_HUMAN,0.16 -OCAD2_HUMAN,0.12 -OSB11_HUMAN,0.12 -OSBL3_HUMAN,0.16 -P121A_HUMAN,0.12 -P5CR2_HUMAN,0.16 -PACN3_HUMAN,0.12 -PACS1_HUMAN,0.12 -PAK4_HUMAN,0.12 -PAN3_HUMAN,0.12 -PAPOG_HUMAN,0.08 -PARG_HUMAN,0.12 -PARN_HUMAN,0.16 -PB1_HUMAN,0.16 -PCBP1_HUMAN,0.16 -PCLO_HUMAN,0.12 -PCM1_HUMAN,0.12 -PDCD6_HUMAN,0.12 -PDE3B_HUMAN,0.16 -PDE4A_HUMAN,0.12 -PDLI7_HUMAN,0.12 -PEA15_HUMAN,0.16 -PEDF_HUMAN,0.12 -PER1_HUMAN,0.12 -PEX3_HUMAN,0.16 -PHAG1_HUMAN,0.16 -PHB2_HUMAN,0.16 -PHF20_HUMAN,0.16 -PHF2_HUMAN,0.12 -PHF3_HUMAN,0.12 -PHF6_HUMAN,0.12 -PHF8_HUMAN,0.12 -PHIP_HUMAN,0.16 -PI4KB_HUMAN,0.16 -PKHA1_HUMAN,0.12 -PML_HUMAN,0.16 -PMS2_HUMAN,0.16 -PNISR_HUMAN,0.16 -PNKD_HUMAN,0.12 -PP14B_HUMAN,0.12 -PR38B_HUMAN,0.16 -PRC2C_HUMAN,0.12 -PRCC_HUMAN,0.12 -PRDX6_HUMAN,0.12 -PRKDC_HUMAN,0.16 -PRP16_HUMAN,0.12 -PRPS1_HUMAN,0.12 -PSA5_HUMAN,0.12 -PSF2_HUMAN,0.16 -PSIP1_HUMAN,0.16 -PSN1_HUMAN,0.12 -PTBP1_HUMAN,0.16 -PTBP3_HUMAN,0.12 -PTN18_HUMAN,0.16 -PTN1_HUMAN,0.16 -PTN7_HUMAN,0.16 -PTSS1_HUMAN,0.08 -PTTG_HUMAN,0.16 -PUM2_HUMAN,0.08 -PXK_HUMAN,0.12 -PYR1_HUMAN,0.16 -R3HD1_HUMAN,0.12 -RAB1A_HUMAN,0.12 -RAI1_HUMAN,0.12 -RALY_HUMAN,0.12 -RARA_HUMAN,0.16 -RASH_HUMAN,0.16 -RASL3_HUMAN,0.12 -RBCC1_HUMAN,0.08 -RBGP1_HUMAN,0.16 -RBL1_HUMAN,0.12 -RBM14_HUMAN,0.12 -RBM22_HUMAN,0.12 -RBM26_HUMAN,0.12 -RBMX2_HUMAN,0.32 -RCN3_HUMAN,0.12 -RECQ4_HUMAN,0.12 -REEP4_HUMAN,0.12 -RELL1_HUMAN,0.12 -RERE_HUMAN,0.16 -RFC1_HUMAN,0.16 -RFIP1_HUMAN,0.12 -RFX5_HUMAN,0.12 -RHG04_HUMAN,0.12 -RHG15_HUMAN,0.12 -RHG35_HUMAN,0.16 -RHPN2_HUMAN,0.12 -RIF1_HUMAN,0.16 -RIPK3_HUMAN,0.12 -RL11_HUMAN,0.04 -RL1D1_HUMAN,0.12 -RL34_HUMAN,0.12 -RLA2_HUMAN,0.08 -RM38_HUMAN,0.12 -RNC_HUMAN,0.12 -ROA0_HUMAN,0.16 -ROA2_HUMAN,0.16 -ROAA_HUMAN,0.12 -RPA43_HUMAN,0.12 -RPAB2_HUMAN,0.04 -RPB9_HUMAN,0.04 -RPGF1_HUMAN,0.16 -RPGP2_HUMAN,0.12 -RPRD2_HUMAN,0.12 -RRAGC_HUMAN,0.16 -RRAGD_HUMAN,0.16 -RRAS2_HUMAN,0.16 -RRP12_HUMAN,0.12 -RRP1B_HUMAN,0.12 -RRP1_HUMAN,0.12 -RS10_HUMAN,0.16 -RS3_HUMAN,0.16 -RS6_HUMAN,0.16 -RSRC1_HUMAN,0.12 -RTN4_HUMAN,0.16 -RUFY1_HUMAN,0.12 -RUNX1_HUMAN,0.16 -RWDD4_HUMAN,0.12 -RYBP_HUMAN,0.16 -S26A2_HUMAN,0.04 -S39A7_HUMAN,0.12 -S39AA_HUMAN,0.04 -SAFB2_HUMAN,0.16 -SC61B_HUMAN,0.12 -SCPDL_HUMAN,0.12 -SELK_HUMAN,0.04 -SEM4D_HUMAN,0.12 -SENP7_HUMAN,0.12 -SEPT6_HUMAN,0.12 -SEPT9_HUMAN,0.12 -SF3B1_HUMAN,0.16 -SF3B2_HUMAN,0.16 -SFR1_HUMAN,0.12 -SFSWA_HUMAN,0.12 -SH3L3_HUMAN,0.12 -SHAN2_HUMAN,0.12 -SHB_HUMAN,0.16 -SHKB1_HUMAN,0.16 -SI1L1_HUMAN,0.12 -SIN3A_HUMAN,0.16 -SIN3B_HUMAN,0.16 -SIR1_HUMAN,0.16 -SKA3_HUMAN,0.04 -SKP1_HUMAN,0.12 -SLTM_HUMAN,0.08 -SLX4_HUMAN,0.16 -SMBP2_HUMAN,0.12 -SMC4_HUMAN,0.08 -SMCA5_HUMAN,0.16 -SMCO4_HUMAN,0.12 -SMG5_HUMAN,0.16 -SMRC1_HUMAN,0.16 -SMUF2_HUMAN,0.12 -SNRK_HUMAN,0.12 -SNW1_HUMAN,0.12 -SNX17_HUMAN,0.12 -SOX4_HUMAN,0.12 -SP130_HUMAN,0.12 -SP1_HUMAN,0.16 -SPAG7_HUMAN,0.08 -SPD2A_HUMAN,0.12 -SPD2B_HUMAN,0.16 -SPIR1_HUMAN,0.12 -SPT5H_HUMAN,0.16 -SPTB2_HUMAN,0.12 -SQSTM_HUMAN,0.16 -SRA1_HUMAN,0.16 -SRGP3_HUMAN,0.12 -SRRM2_HUMAN,0.16 -SRS10_HUMAN,0.16 -SRS11_HUMAN,0.12 -SRSF2_HUMAN,0.16 -SRSF6_HUMAN,0.12 -SRSF8_HUMAN,0.12 -SRSF9_HUMAN,0.12 -STAT3_HUMAN,0.12 -STK3_HUMAN,0.01 -STML2_HUMAN,0.12 -STMN1_HUMAN,0.16 -STX4_HUMAN,0.12 -SYMPK_HUMAN,0.12 -SZRD1_HUMAN,0.08 -T184C_HUMAN,0.08 -T22D4_HUMAN,0.16 -T2EB_HUMAN,0.16 -TACC1_HUMAN,0.12 -TAF9B_HUMAN,0.16 -TAGL2_HUMAN,0.12 -TAL1_HUMAN,0.12 -TANC1_HUMAN,0.12 -TB10A_HUMAN,0.12 -TBA1B_HUMAN,0.12 -TBB2B_HUMAN,0.12 -TBC13_HUMAN,0.08 -TBC15_HUMAN,0.12 -TBCD4_HUMAN,0.16 -TBCE_HUMAN,0.12 -TBD2B_HUMAN,0.16 -TCOF_HUMAN,0.16 -TCPB_HUMAN,0.16 -TCPD_HUMAN,0.16 -TCPZ_HUMAN,0.16 -TDT_HUMAN,0.12 -TEBP_HUMAN,0.16 -TERA_HUMAN,0.16 -TESK2_HUMAN,0.12 -TEX2_HUMAN,0.12 -TF2B_HUMAN,0.16 -TF3B_HUMAN,0.12 -TF3C2_HUMAN,0.16 -TFDP2_HUMAN,0.16 -TFPT_HUMAN,0.11 -TGFA1_HUMAN,0.16 -TGFB2_HUMAN,0.12 -THOC5_HUMAN,0.16 -TIA1_HUMAN,0.12 -TIF1B_HUMAN,0.16 -TIM13_HUMAN,0.08 -TISD_HUMAN,0.12 -TLE1_HUMAN,0.12 -TLK2_HUMAN,0.12 -TM160_HUMAN,0.12 -TM230_HUMAN,0.12 -TMED2_HUMAN,0.12 -TMF1_HUMAN,0.12 -TMM11_HUMAN,0.08 -TMX1_HUMAN,0.12 -TNKS1_HUMAN,0.12 -TNKS2_HUMAN,0.12 -TNR1A_HUMAN,0.16 -TOM1_HUMAN,0.12 -TOP1_HUMAN,0.16 -TOPB1_HUMAN,0.12 -TOPK_HUMAN,0.16 -TP53B_HUMAN,0.16 -TPC2A_HUMAN,0.12 -TPC2L_HUMAN,0.04 -TPD54_HUMAN,0.12 -TPIS_HUMAN,0.12 -TPR_HUMAN,0.16 -TPX2_HUMAN,0.12 -TR150_HUMAN,0.16 -TRA2A_HUMAN,0.16 -TRA2B_HUMAN,0.16 -TREF1_HUMAN,0.12 -TREX1_HUMAN,0.08 -TRFE_HUMAN,0.16 -TRFL_HUMAN,0.08 -TRIPC_HUMAN,0.16 -TRRAP_HUMAN,0.16 -TS101_HUMAN,0.12 -TSP1_HUMAN,0.16 -TTC4_HUMAN,0.12 -TYB10_HUMAN,0.12 -U2AF2_HUMAN,0.12 -UB2D2_HUMAN,0.16 -UB2J1_HUMAN,0.16 -UBAC2_HUMAN,0.3 -UBAP2_HUMAN,0.08 -UBC9_HUMAN,0.16 -UBC_HUMAN,0.12 -UBD_HUMAN,0.12 -UBE2N_HUMAN,0.16 -UBE2O_HUMAN,0.12 -UBE2T_HUMAN,0.12 -UBE3A_HUMAN,0.16 -UBF1_HUMAN,0.16 -UBN1_HUMAN,0.16 -UBN2_HUMAN,0.12 -UBP1_HUMAN,0.16 -UBP24_HUMAN,0.12 -UBP31_HUMAN,0.12 -UBP36_HUMAN,0.12 -UBP7_HUMAN,0.16 -UBR4_HUMAN,0.16 -UBR5_HUMAN,0.16 -UBXN7_HUMAN,0.16 -UCK2_HUMAN,0.08 -UCKL1_HUMAN,0.04 -UFL1_HUMAN,0.12 -UHRF2_HUMAN,0.12 -UIF_HUMAN,0.12 -ULK1_HUMAN,0.16 -UNKL_HUMAN,0.12 -UNK_HUMAN,0.12 -VIME_HUMAN,0.16 -VINEX_HUMAN,0.16 -VIR_HUMAN,0.12 -VMA21_HUMAN,0.12 -VP13B_HUMAN,0.12 -VPP2_HUMAN,0.12 -VRK3_HUMAN,0.12 -VTDB_HUMAN,0.12 -VTNC_HUMAN,0.16 -WAC_HUMAN,0.12 -WAPL_HUMAN,0.12 -WBP2_HUMAN,0.16 -WBP4_HUMAN,0.16 -WDHD1_HUMAN,0.12 -WDR5_HUMAN,0.16 -WDR75_HUMAN,0.12 -WEE1_HUMAN,0.16 -WIPF1_HUMAN,0.16 -WIPF2_HUMAN,0.16 -XIAP_HUMAN,0.16 -XRCC1_HUMAN,0.16 -YLPM1_HUMAN,0.12 -YTDC1_HUMAN,0.16 -Z280C_HUMAN,0.12 -Z512B_HUMAN,0.08 -ZBED4_HUMAN,0.12 -ZBT40_HUMAN,0.12 -ZC11A_HUMAN,0.16 -ZC3H1_HUMAN,0.09 -ZC3H4_HUMAN,0.16 -ZC3HD_HUMAN,0.12 -ZC3HE_HUMAN,0.08 -ZCCHV_HUMAN,0.12 -ZCHC8_HUMAN,0.12 -ZEP1_HUMAN,0.12 -ZKSC8_HUMAN,0.12 -ZN106_HUMAN,0.16 -ZN217_HUMAN,0.16 -ZN318_HUMAN,0.12 -ZN335_HUMAN,0.17 -ZN408_HUMAN,0.12 -ZN592_HUMAN,0.12 -ZN598_HUMAN,0.08 -ZN609_HUMAN,0.12 -ZN644_HUMAN,0.12 -ZNF24_HUMAN,0.04 -ZRAB2_HUMAN,0.08 -ZZZ3_HUMAN,0.12 diff --git a/hiv-benchmarking/hiv_processed_data/hiv060-max-node-freq-ensemble.csv b/hiv-benchmarking/hiv_processed_data/hiv060-max-node-freq-ensemble.csv deleted file mode 100644 index fae8649..0000000 --- a/hiv-benchmarking/hiv_processed_data/hiv060-max-node-freq-ensemble.csv +++ /dev/null @@ -1,1030 +0,0 @@ -Node,max_freq -1433B_HUMAN,0.04 -1433E_HUMAN,0.04 -1433G_HUMAN,0.04 -1433T_HUMAN,0.04 -2A5A_HUMAN,0.08 -2A5D_HUMAN,0.12 -2A5E_HUMAN,0.04 -2AAB_HUMAN,0.04 -4EBP1_HUMAN,0.04 -4ET_HUMAN,0.09 -5NTC_HUMAN,0.12 -A2ABF8_HUMAN,0.04 -A2RUM7_HUMAN,0.04 -A4QPA9_HUMAN,0.04 -A8K3Y2_HUMAN,0.04 -AAPK1_HUMAN,0.04 -AASD1_HUMAN,0.02 -AB1IP_HUMAN,0.06 -ABL1_HUMAN,0.04 -ACAP1_HUMAN,0.06 -ACTB_HUMAN,0.04 -ACTS_HUMAN,0.04 -ADNP_HUMAN,0.04 -ADRM1_HUMAN,0.04 -AFF4_HUMAN,0.12 -AGFG1_HUMAN,0.04 -AKA10_HUMAN,0.06 -AKA11_HUMAN,0.06 -AKAP1_HUMAN,0.04 -AKP13_HUMAN,0.06 -AKP8L_HUMAN,0.08 -AKT1_HUMAN,0.04 -AKT2_HUMAN,0.04 -AMFR_HUMAN,0.04 -AMPD2_HUMAN,0.06 -AMRA1_HUMAN,0.04 -ANKH1_HUMAN,0.04 -ANKZ1_HUMAN,0.04 -APC1_HUMAN,0.04 -APC_HUMAN,0.04 -APOB_HUMAN,0.02 -ARC1A_HUMAN,0.02 -ARF4_HUMAN,0.04 -ARHG7_HUMAN,0.04 -ARHGC_HUMAN,0.04 -ARI2_HUMAN,0.04 -ARI3A_HUMAN,0.06 -ARI4B_HUMAN,0.06 -ARID2_HUMAN,0.06 -ARNT_HUMAN,0.04 -ARP10_HUMAN,0.04 -ASF1A_HUMAN,0.04 -ASPP2_HUMAN,0.04 -ASXL2_HUMAN,0.04 -AT7L3_HUMAN,0.06 -ATAD2_HUMAN,0.04 -ATAD5_HUMAN,0.03 -ATF2_HUMAN,0.04 -ATM_HUMAN,0.04 -ATN1_HUMAN,0.04 -ATPG_HUMAN,0.04 -ATX2L_HUMAN,0.06 -AUP1_HUMAN,0.04 -AURKB_HUMAN,0.04 -AXIN1_HUMAN,0.04 -B0LPE5_HUMAN,0.04 -B0QZ35_HUMAN,0.04 -B1AHB0_HUMAN,0.04 -B2R4R0_HUMAN,0.04 -B2R5T5_HUMAN,0.04 -B2RBV7_HUMAN,0.04 -B3KTM8_HUMAN,0.04 -B3KUN1_HUMAN,0.04 -B4DL80_HUMAN,0.04 -B4DP61_HUMAN,0.04 -B4DQB3_HUMAN,0.04 -B4DWW4_HUMAN,0.04 -B4E1U9_HUMAN,0.04 -B7Z240_HUMAN,0.04 -B7Z3D6_HUMAN,0.04 -BAD_HUMAN,0.04 -BANP_HUMAN,0.09 -BAP1_HUMAN,0.04 -BAZ1A_HUMAN,0.04 -BAZ1B_HUMAN,0.04 -BAZ2A_HUMAN,0.04 -BCL2_HUMAN,0.04 -BCL6_HUMAN,0.04 -BCL9_HUMAN,0.04 -BCLF1_HUMAN,0.06 -BCR_HUMAN,0.04 -BECN1_HUMAN,0.04 -BICD1_HUMAN,0.04 -BIG2_HUMAN,0.04 -BIRC5_HUMAN,0.04 -BLK_HUMAN,0.04 -BLM_HUMAN,0.04 -BMI1_HUMAN,0.04 -BMP2K_HUMAN,0.02 -BNI3L_HUMAN,0.04 -BNIP3_HUMAN,0.04 -BOREA_HUMAN,0.08 -BPL1_HUMAN,0.03 -BRAP_HUMAN,0.06 -BRCA1_HUMAN,0.04 -BRPF1_HUMAN,0.2 -BTF3_HUMAN,0.06 -C1QBP_HUMAN,0.04 -C8AP2_HUMAN,0.04 -CADH1_HUMAN,0.04 -CAF1A_HUMAN,0.06 -CAF1B_HUMAN,0.06 -CALX_HUMAN,0.04 -CBL_HUMAN,0.04 -CBP_HUMAN,0.04 -CBX4_HUMAN,0.04 -CBX5_HUMAN,0.04 -CBX8_HUMAN,0.04 -CCAR2_HUMAN,0.04 -CCNB1_HUMAN,0.04 -CCND3_HUMAN,0.04 -CCNE1_HUMAN,0.04 -CCNT1_HUMAN,0.04 -CD2A2_HUMAN,0.04 -CD2AP_HUMAN,0.04 -CD2B2_HUMAN,0.04 -CD3E_HUMAN,0.04 -CD3Z_HUMAN,0.04 -CD5_HUMAN,0.04 -CD82_HUMAN,0.03 -CDAN1_HUMAN,0.04 -CDC20_HUMAN,0.04 -CDC42_HUMAN,0.04 -CDC5L_HUMAN,0.04 -CDC6_HUMAN,0.04 -CDC73_HUMAN,0.04 -CDC7_HUMAN,0.04 -CDK12_HUMAN,0.03 -CDK1_HUMAN,0.04 -CDK2_HUMAN,0.04 -CDK4_HUMAN,0.04 -CDK9_HUMAN,0.04 -CDN1A_HUMAN,0.04 -CDT1_HUMAN,0.04 -CE022_HUMAN,0.08 -CE170_HUMAN,0.01 -CENPA_HUMAN,0.04 -CENPE_HUMAN,0.06 -CENPF_HUMAN,0.18 -CEP55_HUMAN,0.05 -CEP72_HUMAN,0.2 -CFTR_HUMAN,0.04 -CHAP1_HUMAN,0.12 -CHD1L_HUMAN,0.03 -CHD3_HUMAN,0.04 -CHD4_HUMAN,0.04 -CHERP_HUMAN,0.04 -CHIP_HUMAN,0.04 -CHK1_HUMAN,0.04 -CIR1_HUMAN,0.04 -CIRBP_HUMAN,0.01 -CLAP1_HUMAN,0.13 -CLCA_HUMAN,0.03 -CLK4_HUMAN,0.2 -CLSPN_HUMAN,0.04 -CND1_HUMAN,0.1 -CND2_HUMAN,0.12 -CND3_HUMAN,0.12 -CNOT2_HUMAN,0.08 -CO3_HUMAN,0.04 -COIL_HUMAN,0.04 -COMD1_HUMAN,0.04 -COR1A_HUMAN,0.04 -COX5A_HUMAN,0.03 -CPIN1_HUMAN,0.18 -CPSF5_HUMAN,0.04 -CPSF7_HUMAN,0.03 -CSK21_HUMAN,0.04 -CSN1_HUMAN,0.04 -CSN3_HUMAN,0.04 -CSN5_HUMAN,0.04 -CTBP1_HUMAN,0.04 -CTCF_HUMAN,0.04 -CTNB1_HUMAN,0.04 -CTRO_HUMAN,0.04 -CUL1_HUMAN,0.04 -CUL2_HUMAN,0.04 -CUL3_HUMAN,0.04 -CUL4A_HUMAN,0.04 -CYBP_HUMAN,0.04 -D0PNI1_HUMAN,0.04 -DAXX_HUMAN,0.04 -DBNL_HUMAN,0.05 -DC1L1_HUMAN,0.06 -DCAF5_HUMAN,0.04 -DCP1A_HUMAN,0.08 -DCP1B_HUMAN,0.09 -DCP2_HUMAN,0.08 -DDA1_HUMAN,0.04 -DDRGK_HUMAN,0.07 -DDX21_HUMAN,0.04 -DDX23_HUMAN,0.03 -DDX3X_HUMAN,0.05 -DDX42_HUMAN,0.02 -DEFI6_HUMAN,0.09 -DHX15_HUMAN,0.04 -DIDO1_HUMAN,0.03 -DLG5_HUMAN,0.03 -DMAP1_HUMAN,0.04 -DNJB6_HUMAN,0.06 -DNJC8_HUMAN,0.03 -DNM3B_HUMAN,0.04 -DNMBP_HUMAN,0.06 -DNMT1_HUMAN,0.04 -DOCK2_HUMAN,0.15 -DOK2_HUMAN,0.04 -DP13A_HUMAN,0.04 -DPOE1_HUMAN,0.04 -DTX3L_HUMAN,0.04 -DX39B_HUMAN,0.04 -DYR1A_HUMAN,0.04 -DYRK2_HUMAN,0.04 -E2F1_HUMAN,0.04 -E2F2_HUMAN,0.06 -E2F3_HUMAN,0.04 -E9KL35_HUMAN,0.04 -EDC4_HUMAN,0.12 -EDF1_HUMAN,0.04 -EF1B_HUMAN,0.04 -EGFR_HUMAN,0.04 -EHMT1_HUMAN,0.03 -EIF3A_HUMAN,0.04 -EIF3F_HUMAN,0.04 -ELF1_HUMAN,0.06 -ELOA1_HUMAN,0.04 -ELOB_HUMAN,0.04 -EM55_HUMAN,0.03 -EMD_HUMAN,0.04 -EP300_HUMAN,0.04 -EP400_HUMAN,0.05 -EPN4_HUMAN,0.06 -ERBB2_HUMAN,0.04 -ESYT1_HUMAN,0.26 -EXOC1_HUMAN,0.05 -EXOC4_HUMAN,0.05 -EXOC7_HUMAN,0.04 -EXOS5_HUMAN,0.04 -FA53C_HUMAN,0.01 -FADD_HUMAN,0.04 -FBXW7_HUMAN,0.04 -FEN1_HUMAN,0.04 -FINC_HUMAN,0.04 -FKBP4_HUMAN,0.04 -FLII_HUMAN,0.05 -FNBP4_HUMAN,0.12 -FOSL1_HUMAN,0.04 -FOXK1_HUMAN,0.12 -FRYL_HUMAN,0.06 -FXL19_HUMAN,0.03 -FXR1_HUMAN,0.04 -FYN_HUMAN,0.04 -G45IP_HUMAN,0.04 -G4XH65_HUMAN,0.04 -GA45G_HUMAN,0.04 -GBRL2_HUMAN,0.04 -GDIR1_HUMAN,0.04 -GDIR2_HUMAN,0.11 -GGA3_HUMAN,0.04 -GPTC8_HUMAN,0.06 -GRAP2_HUMAN,0.12 -GSE1_HUMAN,0.04 -GSK3B_HUMAN,0.04 -H12_HUMAN,0.04 -H13_HUMAN,0.04 -H1X_HUMAN,0.03 -H2AX_HUMAN,0.04 -H31_HUMAN,0.04 -H32_HUMAN,0.04 -HAUS6_HUMAN,0.09 -HCFC1_HUMAN,0.04 -HCK_HUMAN,0.04 -HDAC1_HUMAN,0.04 -HDAC4_HUMAN,0.04 -HERC2_HUMAN,0.05 -HGS_HUMAN,0.04 -HIF1A_HUMAN,0.04 -HIRA_HUMAN,0.04 -HIRP3_HUMAN,0.04 -HMGA1_HUMAN,0.04 -HMGB3_HUMAN,0.06 -HMGN1_HUMAN,0.04 -HNRH3_HUMAN,0.04 -HNRPF_HUMAN,0.04 -HNRPK_HUMAN,0.04 -HP1B3_HUMAN,0.04 -HS90A_HUMAN,0.04 -HSF1_HUMAN,0.04 -HSP74_HUMAN,0.04 -I2BP2_HUMAN,0.04 -I2BPL_HUMAN,0.04 -IBP2_HUMAN,0.14 -ICLN_HUMAN,0.04 -ICMT_HUMAN,0.09 -IF16_HUMAN,0.04 -IF2B1_HUMAN,0.07 -IF4B_HUMAN,0.04 -IF4E_HUMAN,0.04 -IF4H_HUMAN,0.01 -IGBP1_HUMAN,0.04 -IKBA_HUMAN,0.04 -IKKA_HUMAN,0.04 -IKKB_HUMAN,0.04 -IKZF1_HUMAN,0.04 -IMA1_HUMAN,0.04 -IMB1_HUMAN,0.04 -INSI1_HUMAN,0.04 -INT12_HUMAN,0.04 -IPP2_HUMAN,0.04 -IRAK1_HUMAN,0.04 -IWS1_HUMAN,0.18 -K7PPA8_HUMAN,0.04 -KAP3_HUMAN,0.06 -KAPCA_HUMAN,0.04 -KAT6A_HUMAN,0.2 -KC1A_HUMAN,0.04 -KC1D_HUMAN,0.04 -KCC4_HUMAN,0.12 -KDM1A_HUMAN,0.04 -KEAP1_HUMAN,0.04 -KHDR1_HUMAN,0.04 -KIF22_HUMAN,0.04 -KIF2A_HUMAN,0.03 -KLC2_HUMAN,0.04 -KLF10_HUMAN,0.04 -KMT2A_HUMAN,0.04 -KMT2B_HUMAN,0.04 -KPCA_HUMAN,0.04 -KPCD1_HUMAN,0.04 -KPCD_HUMAN,0.04 -KPCL_HUMAN,0.06 -KS6B1_HUMAN,0.04 -KSYK_HUMAN,0.04 -KTN1_HUMAN,0.04 -KTNA1_HUMAN,0.21 -L7RRS6_HUMAN,0.04 -L7RT18_HUMAN,0.04 -LAGE3_HUMAN,0.03 -LAP2A_HUMAN,0.04 -LAP2B_HUMAN,0.08 -LARP1_HUMAN,0.06 -LAT_HUMAN,0.04 -LBR_HUMAN,0.12 -LCK_HUMAN,0.04 -LCP2_HUMAN,0.12 -LDB1_HUMAN,0.02 -LGUL_HUMAN,0.04 -LIPA3_HUMAN,0.1 -LMNA_HUMAN,0.04 -LMNB1_HUMAN,0.05 -LMO7_HUMAN,0.15 -LRP1_HUMAN,0.04 -LSM3_HUMAN,0.03 -LYRIC_HUMAN,0.01 -M3K1_HUMAN,0.04 -M3K2_HUMAN,0.04 -M3K5_HUMAN,0.04 -M3K7_HUMAN,0.04 -MADD_HUMAN,0.12 -MAML1_HUMAN,0.04 -MAPK2_HUMAN,0.04 -MARH7_HUMAN,0.04 -MB12A_HUMAN,0.05 -MBP_HUMAN,0.02 -MCM10_HUMAN,0.04 -MCM2_HUMAN,0.04 -MCM4_HUMAN,0.04 -MCMBP_HUMAN,0.03 -MDM2_HUMAN,0.04 -MED13_HUMAN,0.04 -MED17_HUMAN,0.04 -MEF2A_HUMAN,0.04 -MEF2D_HUMAN,0.04 -MERL_HUMAN,0.04 -MFAP1_HUMAN,0.04 -MK01_HUMAN,0.04 -MK08_HUMAN,0.04 -MK14_HUMAN,0.04 -MLH1_HUMAN,0.04 -MORC3_HUMAN,0.04 -MP2K4_HUMAN,0.04 -MPLKI_HUMAN,0.15 -MPRIP_HUMAN,0.08 -MSH6_HUMAN,0.04 -MTG16_HUMAN,0.02 -MTG8R_HUMAN,0.04 -MTG8_HUMAN,0.04 -MTMR2_HUMAN,0.06 -MTOR_HUMAN,0.04 -MYB_HUMAN,0.04 -NAB1_HUMAN,0.04 -NCOA1_HUMAN,0.04 -NCOR1_HUMAN,0.04 -NEDD4_HUMAN,0.04 -NF2IP_HUMAN,0.12 -NFX1_HUMAN,0.08 -NFYA_HUMAN,0.04 -NHRF1_HUMAN,0.04 -NIPBL_HUMAN,0.15 -NOL8_HUMAN,0.12 -NONO_HUMAN,0.04 -NOTC1_HUMAN,0.04 -NPAT_HUMAN,0.06 -NPM_HUMAN,0.04 -NS1BP_HUMAN,0.01 -NSF1C_HUMAN,0.04 -NTF2_HUMAN,0.04 -NU107_HUMAN,0.11 -NU153_HUMAN,0.08 -NUCKS_HUMAN,0.12 -NUMA1_HUMAN,0.04 -NUMBL_HUMAN,0.06 -NUP88_HUMAN,0.04 -ORC1_HUMAN,0.06 -OSB11_HUMAN,0.06 -P53_HUMAN,0.04 -P66A_HUMAN,0.06 -PACS1_HUMAN,0.04 -PAK1_HUMAN,0.04 -PARP6_HUMAN,0.03 -PATL1_HUMAN,0.24 -PCBP2_HUMAN,0.04 -PCM1_HUMAN,0.2 -PCNA_HUMAN,0.04 -PDS5A_HUMAN,0.07 -PDS5B_HUMAN,0.12 -PEX10_HUMAN,0.04 -PEX19_HUMAN,0.04 -PHF8_HUMAN,0.15 -PHP14_HUMAN,0.03 -PI3R4_HUMAN,0.04 -PININ_HUMAN,0.08 -PKHO1_HUMAN,0.04 -PKN1_HUMAN,0.04 -PLEC_HUMAN,0.04 -PLK1_HUMAN,0.04 -PMYT1_HUMAN,0.04 -PP4C_HUMAN,0.04 -PP4R2_HUMAN,0.06 -PPAC_HUMAN,0.06 -PPIP1_HUMAN,0.04 -PR40A_HUMAN,0.04 -PRC2A_HUMAN,0.06 -PRC2B_HUMAN,0.04 -PRCC_HUMAN,0.03 -PRKDC_HUMAN,0.04 -PRKN2_HUMAN,0.04 -PRP19_HUMAN,0.04 -PRPF3_HUMAN,0.04 -PRR12_HUMAN,0.33 -PRS6B_HUMAN,0.04 -PRS8_HUMAN,0.04 -PRSR2_HUMAN,0.04 -PSA2_HUMAN,0.04 -PSD11_HUMAN,0.04 -PSD12_HUMAN,0.04 -PSD13_HUMAN,0.04 -PSMD4_HUMAN,0.04 -PTTG1_HUMAN,0.04 -Q56A76_HUMAN,0.04 -Q6FIE9_HUMAN,0.04 -R51A1_HUMAN,0.04 -RAB5A_HUMAN,0.04 -RAB8A_HUMAN,0.03 -RAD21_HUMAN,0.04 -RAGP1_HUMAN,0.04 -RALY_HUMAN,0.12 -RANG_HUMAN,0.04 -RAN_HUMAN,0.04 -RASL3_HUMAN,0.01 -RB15B_HUMAN,0.18 -RBM23_HUMAN,0.03 -RBM27_HUMAN,0.15 -RBM39_HUMAN,0.03 -RBM5_HUMAN,0.2 -RBMX_HUMAN,0.04 -RBP2_HUMAN,0.04 -RBX1_HUMAN,0.04 -RB_HUMAN,0.04 -RD23B_HUMAN,0.04 -REN3B_HUMAN,0.06 -RENT1_HUMAN,0.04 -RHOA_HUMAN,0.04 -RIC8A_HUMAN,0.04 -RIPK1_HUMAN,0.04 -RN168_HUMAN,0.04 -RN169_HUMAN,0.04 -RNF10_HUMAN,0.03 -RNF25_HUMAN,0.04 -RNF31_HUMAN,0.04 -RNF8_HUMAN,0.05 -ROCK1_HUMAN,0.04 -RPTOR_HUMAN,0.04 -RRAGA_HUMAN,0.04 -RRP1B_HUMAN,0.06 -RSF1_HUMAN,0.04 -SAFB1_HUMAN,0.04 -SASH3_HUMAN,0.18 -SATB1_HUMAN,0.04 -SC61B_HUMAN,0.02 -SCAFB_HUMAN,0.04 -SCAM2_HUMAN,0.04 -SENP1_HUMAN,0.04 -SENP2_HUMAN,0.08 -SENP3_HUMAN,0.04 -SEPT3_HUMAN,0.03 -SERF2_HUMAN,0.18 -SET1A_HUMAN,0.15 -SF3A1_HUMAN,0.04 -SFPQ_HUMAN,0.04 -SGK1_HUMAN,0.04 -SGK3_HUMAN,0.05 -SH2B3_HUMAN,0.01 -SH3K1_HUMAN,0.06 -SIAH1_HUMAN,0.04 -SIT1_HUMAN,0.01 -SLAF6_HUMAN,0.01 -SLK_HUMAN,0.06 -SMAD3_HUMAN,0.04 -SMAD4_HUMAN,0.04 -SMC1A_HUMAN,0.04 -SMCE1_HUMAN,0.04 -SMRC2_HUMAN,0.02 -SMRCD_HUMAN,0.04 -SNP23_HUMAN,0.06 -SNUT1_HUMAN,0.04 -SNX2_HUMAN,0.06 -SP16H_HUMAN,0.04 -SQSTM_HUMAN,0.04 -SR140_HUMAN,0.2 -SRC_HUMAN,0.04 -SRS10_HUMAN,0.05 -SRSF6_HUMAN,0.06 -SRSF9_HUMAN,0.01 -SSRP1_HUMAN,0.04 -STK39_HUMAN,0.08 -SUGP1_HUMAN,0.04 -SUMO1_HUMAN,0.04 -SUMO2_HUMAN,0.04 -T2EA_HUMAN,0.04 -T2FA_HUMAN,0.04 -TAF1_HUMAN,0.04 -TAGL2_HUMAN,0.03 -TANK_HUMAN,0.04 -TB182_HUMAN,0.04 -TBCD5_HUMAN,0.21 -TBK1_HUMAN,0.04 -TBP_HUMAN,0.04 -TCOF_HUMAN,0.06 -TDIF1_HUMAN,0.21 -TDIF2_HUMAN,0.06 -TERF1_HUMAN,0.04 -TETN_HUMAN,0.03 -TF3C1_HUMAN,0.04 -TFR1_HUMAN,0.12 -TGFA1_HUMAN,0.04 -THOC5_HUMAN,0.04 -TNFA_HUMAN,0.04 -TNIK_HUMAN,0.04 -TOM1_HUMAN,0.04 -TOPK_HUMAN,0.04 -TRA2A_HUMAN,0.04 -TRA2B_HUMAN,0.04 -TRAF2_HUMAN,0.04 -TRAF6_HUMAN,0.04 -TTC4_HUMAN,0.06 -TXLNG_HUMAN,0.12 -UBE2N_HUMAN,0.04 -UBP11_HUMAN,0.04 -UBP45_HUMAN,0.03 -VPS72_HUMAN,0.12 -VRK1_HUMAN,0.04 -WASP_HUMAN,0.04 -WBP11_HUMAN,0.08 -WNK1_HUMAN,0.04 -WRN_HUMAN,0.04 -ZAP70_HUMAN,0.05 -3BP5L_HUMAN,0.04 -ABI1_HUMAN,0.04 -ABL2_HUMAN,0.04 -ACINU_HUMAN,0.04 -ADDA_HUMAN,0.04 -AGAP2_HUMAN,0.04 -AKTS1_HUMAN,0.04 -AN32B_HUMAN,0.04 -ANR17_HUMAN,0.04 -ARFP1_HUMAN,0.04 -ARI4A_HUMAN,0.04 -ASHWN_HUMAN,0.04 -ATX10_HUMAN,0.04 -BAF_HUMAN,0.04 -BAG6_HUMAN,0.04 -BAP18_HUMAN,0.04 -BCOR_HUMAN,0.04 -BD1L1_HUMAN,0.04 -BPTF_HUMAN,0.04 -BRD9_HUMAN,0.04 -CASP2_HUMAN,0.04 -CBX3_HUMAN,0.04 -CCNY_HUMAN,0.04 -CD2_HUMAN,0.04 -CD3G_HUMAN,0.04 -CDC26_HUMAN,0.04 -CDK16_HUMAN,0.04 -CDK17_HUMAN,0.04 -CHD1_HUMAN,0.06 -CHSP1_HUMAN,0.04 -CI040_HUMAN,0.04 -CLAP2_HUMAN,0.04 -CLIP1_HUMAN,0.04 -CLK3_HUMAN,0.04 -CNOT3_HUMAN,0.08 -COF1_HUMAN,0.04 -COMD6_HUMAN,0.04 -CRKL_HUMAN,0.04 -CTDP1_HUMAN,0.04 -CTR9_HUMAN,0.04 -CXCR4_HUMAN,0.04 -CYLD_HUMAN,0.04 -DBF4A_HUMAN,0.04 -DDB1_HUMAN,0.04 -DDX20_HUMAN,0.04 -DDX52_HUMAN,0.03 -DHX30_HUMAN,0.04 -DLGP5_HUMAN,0.04 -DNLI1_HUMAN,0.04 -DNLI3_HUMAN,0.04 -DOCK7_HUMAN,0.04 -DOK1_HUMAN,0.04 -DSN1_HUMAN,0.04 -DUS3_HUMAN,0.05 -DVL2_HUMAN,0.04 -EDC3_HUMAN,0.09 -EF1G_HUMAN,0.04 -EF2K_HUMAN,0.04 -EIF3C_HUMAN,0.04 -EIF3M_HUMAN,0.04 -ELAV1_HUMAN,0.04 -ELL2_HUMAN,0.12 -ELL_HUMAN,0.06 -ELMO1_HUMAN,0.04 -ENY2_HUMAN,0.18 -EPN1_HUMAN,0.04 -ERF_HUMAN,0.04 -ESYT2_HUMAN,0.26 -ETS1_HUMAN,0.04 -EVL_HUMAN,0.06 -EXOSX_HUMAN,0.04 -F263_HUMAN,0.04 -FBLN1_HUMAN,0.12 -FIP1_HUMAN,0.04 -FKBP8_HUMAN,0.04 -FLNA_HUMAN,0.04 -FOXK2_HUMAN,0.04 -FXR2_HUMAN,0.04 -FYV1_HUMAN,0.04 -G3BP1_HUMAN,0.04 -G3BP2_HUMAN,0.06 -GANP_HUMAN,0.04 -GAPD1_HUMAN,0.12 -GBF1_HUMAN,0.04 -GELS_HUMAN,0.04 -GIT1_HUMAN,0.04 -GLPC_HUMAN,0.03 -GRB2_HUMAN,0.04 -GRDN_HUMAN,0.04 -GRP2_HUMAN,0.04 -GTF2I_HUMAN,0.04 -GTSE1_HUMAN,0.04 -H10_HUMAN,0.04 -H14_HUMAN,0.04 -H15_HUMAN,0.04 -H33_HUMAN,0.04 -HAKAI_HUMAN,0.04 -HCLS1_HUMAN,0.04 -HDAC2_HUMAN,0.04 -HINT1_HUMAN,0.04 -HJURP_HUMAN,0.04 -HMGN2_HUMAN,0.04 -HNRPL_HUMAN,0.04 -HNRPU_HUMAN,0.04 -HOME3_HUMAN,0.06 -HS90B_HUMAN,0.04 -HUWE1_HUMAN,0.04 -IF4G1_HUMAN,0.04 -IKZF2_HUMAN,0.04 -INCE_HUMAN,0.08 -IRF3_HUMAN,0.04 -ITPR1_HUMAN,0.04 -J3KN59_HUMAN,0.04 -J3KNL2_HUMAN,0.04 -JARD2_HUMAN,0.03 -JMY_HUMAN,0.04 -JUN_HUMAN,0.04 -KAT5_HUMAN,0.04 -KCTD5_HUMAN,0.04 -KIF1C_HUMAN,0.04 -KPCT_HUMAN,0.04 -KSR1_HUMAN,0.06 -KTNB1_HUMAN,0.21 -LAR4B_HUMAN,0.04 -LASP1_HUMAN,0.04 -LAX1_HUMAN,0.06 -LA_HUMAN,0.04 -LC7L2_HUMAN,0.04 -LCOR_HUMAN,0.04 -LEO1_HUMAN,0.04 -LIPB1_HUMAN,0.1 -LRRF1_HUMAN,0.05 -LRRF2_HUMAN,0.01 -M3K4_HUMAN,0.04 -MAP4_HUMAN,0.04 -MARCS_HUMAN,0.04 -MBB1A_HUMAN,0.04 -MCFD2_HUMAN,0.03 -MCM3_HUMAN,0.04 -MCM6_HUMAN,0.04 -MCM7_HUMAN,0.04 -MCRS1_HUMAN,0.04 -MDC1_HUMAN,0.04 -MDM4_HUMAN,0.04 -MED1_HUMAN,0.04 -MEN1_HUMAN,0.04 -MILK1_HUMAN,0.04 -MINT_HUMAN,0.04 -MK06_HUMAN,0.04 -MLF2_HUMAN,0.03 -MOV10_HUMAN,0.04 -MPIP1_HUMAN,0.04 -MPIP2_HUMAN,0.04 -MPP8_HUMAN,0.03 -MRP1_HUMAN,0.04 -MTA2_HUMAN,0.04 -MTBP_HUMAN,0.04 -MTMR5_HUMAN,0.06 -MYCB2_HUMAN,0.04 -MYC_HUMAN,0.04 -MYPT1_HUMAN,0.08 -N0E4C7_HUMAN,0.04 -NCBP1_HUMAN,0.04 -NCK1_HUMAN,0.04 -NCK2_HUMAN,0.04 -NCOA2_HUMAN,0.04 -NCOA3_HUMAN,0.04 -NDE1_HUMAN,0.18 -NDRG1_HUMAN,0.04 -NDRG2_HUMAN,0.04 -NEK1_HUMAN,0.12 -NEMO_HUMAN,0.04 -NFAC1_HUMAN,0.06 -NFAC2_HUMAN,0.12 -NFAC3_HUMAN,0.04 -NFKB1_HUMAN,0.04 -NIPS2_HUMAN,0.04 -NOC2L_HUMAN,0.04 -NOLC1_HUMAN,0.04 -NOSIP_HUMAN,0.02 -NOTC2_HUMAN,0.03 -NP1L1_HUMAN,0.04 -NSD2_HUMAN,0.04 -NU133_HUMAN,0.12 -NUCL_HUMAN,0.04 -NUDC_HUMAN,0.04 -NUP98_HUMAN,0.04 -NUSAP_HUMAN,0.04 -OGT1_HUMAN,0.04 -ORC3_HUMAN,0.06 -OSBL3_HUMAN,0.04 -OSBP1_HUMAN,0.04 -P121A_HUMAN,0.05 -P66B_HUMAN,0.04 -PA2G4_HUMAN,0.04 -PAK2_HUMAN,0.04 -PAK4_HUMAN,0.06 -PALLD_HUMAN,0.04 -PARD3_HUMAN,0.04 -PB1_HUMAN,0.06 -PCNT_HUMAN,0.06 -PDCD4_HUMAN,0.06 -PEA15_HUMAN,0.04 -PEX3_HUMAN,0.04 -PGRC1_HUMAN,0.04 -PHAG1_HUMAN,0.06 -PHAX_HUMAN,0.03 -PHB2_HUMAN,0.04 -PHF20_HUMAN,0.24 -PHIP_HUMAN,0.04 -PI4KB_HUMAN,0.04 -PIN4_HUMAN,0.03 -PLCG1_HUMAN,0.04 -PML_HUMAN,0.04 -PMS2_HUMAN,0.04 -PNISR_HUMAN,0.08 -PO210_HUMAN,0.04 -PPIF_HUMAN,0.04 -PR38B_HUMAN,0.04 -PRC1_HUMAN,0.04 -PRP31_HUMAN,0.04 -PRP6_HUMAN,0.04 -PRPK_HUMAN,0.04 -PSA5_HUMAN,0.04 -PSA7_HUMAN,0.04 -PSIP1_HUMAN,0.04 -PSN1_HUMAN,0.04 -PTBP1_HUMAN,0.04 -PTMS_HUMAN,0.03 -PTN18_HUMAN,0.04 -PTN1_HUMAN,0.04 -PTN2_HUMAN,0.04 -PTN6_HUMAN,0.04 -PTN7_HUMAN,0.04 -PTTG_HUMAN,0.04 -PUM1_HUMAN,0.33 -PYR1_HUMAN,0.04 -RABE1_HUMAN,0.04 -RAC2_HUMAN,0.15 -RAD18_HUMAN,0.04 -RAD51_HUMAN,0.04 -RARA_HUMAN,0.04 -RASF1_HUMAN,0.04 -RASH_HUMAN,0.04 -RBL1_HUMAN,0.04 -RBM15_HUMAN,0.18 -RBM42_HUMAN,0.12 -RCOR3_HUMAN,0.04 -RD23A_HUMAN,0.04 -RECQ5_HUMAN,0.02 -RERE_HUMAN,0.04 -RFC1_HUMAN,0.04 -RGS3_HUMAN,0.04 -RHG09_HUMAN,0.04 -RHG35_HUMAN,0.04 -RICTR_HUMAN,0.04 -RIF1_HUMAN,0.04 -RING1_HUMAN,0.04 -RL37_HUMAN,0.03 -RLA1_HUMAN,0.04 -RMI1_HUMAN,0.04 -RMP_HUMAN,0.04 -RNPS1_HUMAN,0.04 -ROA1_HUMAN,0.04 -ROA2_HUMAN,0.04 -RPB1_HUMAN,0.04 -RPGF1_HUMAN,0.04 -RPR1A_HUMAN,0.03 -RRAGC_HUMAN,0.06 -RRAGD_HUMAN,0.12 -RRN3_HUMAN,0.04 -RS10_HUMAN,0.04 -RS6_HUMAN,0.04 -RTN4_HUMAN,0.04 -RUNX1_HUMAN,0.04 -RWDD4_HUMAN,0.06 -S12A2_HUMAN,0.08 -S4A4_HUMAN,0.08 -SAFB2_HUMAN,0.04 -SC22B_HUMAN,0.18 -SCAM3_HUMAN,0.12 -SCAP_HUMAN,0.04 -SCC4_HUMAN,0.15 -SCPDL_HUMAN,0.08 -SDF2L_HUMAN,0.06 -SETD2_HUMAN,0.18 -SF3A3_HUMAN,0.04 -SF3B1_HUMAN,0.04 -SF3B2_HUMAN,0.04 -SH3L1_HUMAN,0.04 -SHKB1_HUMAN,0.06 -SIN3A_HUMAN,0.04 -SIN3B_HUMAN,0.04 -SIR1_HUMAN,0.04 -SL9A1_HUMAN,0.04 -SLAI2_HUMAN,0.04 -SMBT1_HUMAN,0.06 -SMC3_HUMAN,0.04 -SMC4_HUMAN,0.04 -SMCA5_HUMAN,0.04 -SMCO4_HUMAN,0.02 -SMD1_HUMAN,0.04 -SMG5_HUMAN,0.04 -SMRC1_HUMAN,0.04 -SND1_HUMAN,0.04 -SNR27_HUMAN,0.04 -SNW1_HUMAN,0.04 -SODC_HUMAN,0.04 -SON_HUMAN,0.04 -SP130_HUMAN,0.06 -SP1_HUMAN,0.04 -SP2_HUMAN,0.09 -SPAG5_HUMAN,0.13 -SPD2B_HUMAN,0.04 -SPT6H_HUMAN,0.06 -SRF_HUMAN,0.04 -SRGP3_HUMAN,0.02 -SRRM2_HUMAN,0.04 -SRRT_HUMAN,0.04 -SRSF2_HUMAN,0.04 -SSBP3_HUMAN,0.04 -SSRG_HUMAN,0.06 -STA5B_HUMAN,0.04 -STAG2_HUMAN,0.04 -STALP_HUMAN,0.06 -STAT1_HUMAN,0.04 -STAU1_HUMAN,0.04 -STMN1_HUMAN,0.12 -STXB5_HUMAN,0.06 -SUN2_HUMAN,0.04 -SYMPK_HUMAN,0.04 -SZRD1_HUMAN,0.12 -T22D4_HUMAN,0.04 -T2EB_HUMAN,0.04 -TAB3_HUMAN,0.04 -TACC3_HUMAN,0.03 -TADA3_HUMAN,0.04 -TADBP_HUMAN,0.04 -TAOK3_HUMAN,0.04 -TBC15_HUMAN,0.06 -TBCD1_HUMAN,0.04 -TBCD4_HUMAN,0.05 -TCPB_HUMAN,0.04 -TDT_HUMAN,0.21 -TERA_HUMAN,0.04 -TF2B_HUMAN,0.04 -TF3C2_HUMAN,0.04 -TFDP2_HUMAN,0.04 -THIC_HUMAN,0.06 -TIF1B_HUMAN,0.04 -TMM11_HUMAN,0.04 -TNKS1_HUMAN,0.04 -TNPO1_HUMAN,0.04 -TNR1A_HUMAN,0.04 -TNR6_HUMAN,0.04 -TOE1_HUMAN,0.03 -TOIP1_HUMAN,0.04 -TOP2A_HUMAN,0.04 -TOP2B_HUMAN,0.04 -TP53B_HUMAN,0.04 -TPR_HUMAN,0.04 -TR150_HUMAN,0.04 -TRAM1_HUMAN,0.04 -TREF1_HUMAN,0.13 -TRFE_HUMAN,0.14 -TRIO_HUMAN,0.05 -TRIPB_HUMAN,0.04 -TRIPC_HUMAN,0.04 -TRMB_HUMAN,0.04 -TS101_HUMAN,0.04 -TSC2_HUMAN,0.04 -TSP1_HUMAN,0.04 -TTF2_HUMAN,0.04 -TYK2_HUMAN,0.04 -U2AF2_HUMAN,0.04 -UB2D2_HUMAN,0.04 -UB2E1_HUMAN,0.04 -UB2G2_HUMAN,0.04 -UB2J1_HUMAN,0.04 -UB2L3_HUMAN,0.04 -UBAC2_HUMAN,0.15 -UBC9_HUMAN,0.04 -UBE2O_HUMAN,0.03 -UBF1_HUMAN,0.04 -UBL5_HUMAN,0.2 -UBN1_HUMAN,0.04 -UBP15_HUMAN,0.04 -UBP1_HUMAN,0.04 -UBP22_HUMAN,0.04 -UBP24_HUMAN,0.12 -UBP2L_HUMAN,0.06 -UBP7_HUMAN,0.04 -UBQL1_HUMAN,0.04 -UBR4_HUMAN,0.04 -UBR5_HUMAN,0.04 -UFL1_HUMAN,0.07 -UHRF1_HUMAN,0.04 -ULK1_HUMAN,0.04 -USF1_HUMAN,0.04 -UT14A_HUMAN,0.04 -UVRAG_HUMAN,0.04 -VCIP1_HUMAN,0.04 -VHL_HUMAN,0.04 -VIME_HUMAN,0.04 -VINEX_HUMAN,0.04 -VP13D_HUMAN,0.12 -VP26B_HUMAN,0.21 -VTDB_HUMAN,0.18 -VTNC_HUMAN,0.04 -WAPL_HUMAN,0.12 -WBP2_HUMAN,0.04 -WBP4_HUMAN,0.04 -WDR37_HUMAN,0.04 -WDR44_HUMAN,0.06 -WDR5_HUMAN,0.04 -WDR62_HUMAN,0.12 -WEE1_HUMAN,0.06 -WIPF1_HUMAN,0.04 -WIPF2_HUMAN,0.12 -WNK2_HUMAN,0.01 -WRIP1_HUMAN,0.06 -WWP2_HUMAN,0.03 -XPC_HUMAN,0.04 -XRCC6_HUMAN,0.04 -YBOX3_HUMAN,0.09 -YLPM1_HUMAN,0.03 -YTDC1_HUMAN,0.04 -ZBT21_HUMAN,0.04 -ZC11A_HUMAN,0.12 -ZC3H1_HUMAN,0.12 -ZC3H4_HUMAN,0.04 -ZC3HD_HUMAN,0.06 -ZC3HE_HUMAN,0.03 -ZC3HF_HUMAN,0.03 -ZCCHV_HUMAN,0.03 -ZEB1_HUMAN,0.04 -ZEP2_HUMAN,0.01 -ZN217_HUMAN,0.04 -ZN451_HUMAN,0.04 -ZN622_HUMAN,0.04 -ZNHI1_HUMAN,0.04 -ZNRF2_HUMAN,0.04 -ZYX_HUMAN,0.04 diff --git a/hiv-benchmarking/hiv_processed_data/kegg-orthology_hsa_swissprot_mapping_ko03250.csv b/hiv-benchmarking/hiv_processed_data/kegg-orthology_hsa_swissprot_mapping_ko03250.csv deleted file mode 100644 index f6f293f..0000000 --- a/hiv-benchmarking/hiv_processed_data/kegg-orthology_hsa_swissprot_mapping_ko03250.csv +++ /dev/null @@ -1,42 +0,0 @@ -KEGG_Orthology,HSA,Uniprot,link_category -K25057,hsa:11168,up:O75475,equivalent -K12183,hsa:7251,up:Q99816,equivalent -K12194,hsa:29082,up:Q9BY43,equivalent -K12195,hsa:79643,up:Q96FZ7,equivalent -K12200,hsa:10015,up:Q8WUM4,equivalent -K04180,hsa:1234,up:P51681,equivalent -K04189,hsa:7852,up:P61073,equivalent -K06454,hsa:920,up:P01730,equivalent -K12172,hsa:5903,up:P49792,equivalent -K14296,hsa:9972,up:P49790,equivalent -K15436,hsa:23534,up:Q9Y5L0,equivalent -K14398,hsa:79869,up:Q8N684,equivalent -K10648,hsa:85363,up:Q9C035,equivalent -K18739,hsa:636,up:Q96G01,equivalent -K25663,hsa:9638,up:Q99689,equivalent -K10429,hsa:55201,up:Q66K74,equivalent -K14754,hsa:4600,up:P20592,equivalent -K11648,hsa:6598,up:Q12824,equivalent -K09578,hsa:5300,up:Q13526,equivalent -K06062,hsa:8850,up:Q92831,equivalent -K14290,hsa:7514,up:O14980,equivalent -K01349,hsa:5045,up:P09958,equivalent -K15185,hsa:27125,up:Q9UHB7,equivalent -K15179,hsa:7469,up:Q9H3P2,equivalent -K15180,hsa:25920,up:Q8WX92,equivalent -K15181,hsa:51497,up:Q8IXH7,equivalent -K15182,hsa:7936,up:P18615,equivalent -K18750,hsa:9582,up:Q9UH17,equivalent -K06731,hsa:684,up:Q10589,equivalent -K12182,hsa:9146,up:O14964,equivalent -K12196,hsa:9525,up:O75351,equivalent -K15183,hsa:8178,up:P55199,equivalent -K02211,hsa:1025,up:P50750,equivalent -K15187,hsa:4300,up:P42568,equivalent -K15188,hsa:905,up:O60583,equivalent -K04498,hsa:2033,up:Q09472,equivalent -K07936,hsa:5901,up:P62826,equivalent -K22544,hsa:25939,up:Q9Y3Z3,equivalent -K25655,hsa:256987,up:Q86VE9,equivalent -K25661,hsa:10955,up:Q13530,equivalent -K27688,hsa:29969,up:Q9P1T7,equivalent diff --git a/hiv-benchmarking/hiv_processed_data/kegg-orthology_hsa_swissprot_mapping_ko05170.csv b/hiv-benchmarking/hiv_processed_data/kegg-orthology_hsa_swissprot_mapping_ko05170.csv deleted file mode 100644 index 239fccb..0000000 --- a/hiv-benchmarking/hiv_processed_data/kegg-orthology_hsa_swissprot_mapping_ko05170.csv +++ /dev/null @@ -1,156 +0,0 @@ -KEGG_Orthology,HSA,Uniprot,link_category -K04688,hsa:6199,up:Q9UBS0,equivalent -K07203,hsa:2475,up:P42345,equivalent -K04456,hsa:208,up:P31751,equivalent -K00922,hsa:5293,up:O00329,equivalent -K02649,hsa:8503,up:Q92569,equivalent -K02580,hsa:4790,up:P19838,equivalent -K04735,hsa:5970,up:Q04206,equivalent -K02833,hsa:3265,up:P01112,equivalent -K07827,hsa:3845,up:P01116,equivalent -K07828,hsa:4893,up:P01111,equivalent -K04366,hsa:5894,up:P04049,equivalent -K04368,hsa:5604,up:Q02750,equivalent -K04369,hsa:5605,up:P36507,equivalent -K04371,hsa:5595,up:P27361,equivalent -K02373,hsa:8772,up:Q13158,equivalent -K04398,hsa:841,up:Q14790,equivalent -K04390,hsa:355,up:P25445,equivalent -K06751,hsa:3135,up:P17693,equivalent -K03171,hsa:8717,up:Q15628,equivalent -K04467,hsa:1147,up:O15111,equivalent -K07209,hsa:3551,up:O14920,equivalent -K07210,hsa:8517,up:Q9Y6K9,equivalent -K02159,hsa:581,up:Q07812,equivalent -K14021,hsa:578,up:Q16611,equivalent -K08738,hsa:54205,up:P99999,equivalent -K02187,hsa:836,up:P42574,equivalent -K03158,hsa:7132,up:P19438,equivalent -K04536,hsa:2782,up:P62873,equivalent -K04537,hsa:2783,up:P62879,equivalent -K07825,hsa:2784,up:P16520,equivalent -K04538,hsa:59345,up:Q9HAV0,equivalent -K04539,hsa:10681,up:O14775,equivalent -K07826,hsa:54331,up:P59768,equivalent -K04540,hsa:2785,up:P63215,equivalent -K04541,hsa:2786,up:P50150,equivalent -K04542,hsa:2787,up:P63218,equivalent -K04543,hsa:2788,up:O60262,equivalent -K04544,hsa:94235,up:Q9UK08,equivalent -K04545,hsa:2790,up:P50151,equivalent -K04546,hsa:2791,up:P61952,equivalent -K04347,hsa:55970,up:Q9UBI6,equivalent -K04547,hsa:51764,up:Q9P2W3,equivalent -K04548,hsa:2792,up:P63211,equivalent -K04549,hsa:2793,up:O14610,equivalent -K04399,hsa:842,up:P55211,equivalent -K04726,hsa:637,up:P55957,equivalent -K04446,hsa:4772,up:O95644,equivalent -K17332,hsa:4773,up:Q13469,equivalent -K17333,hsa:4775,up:Q12968,equivalent -K17334,hsa:4776,up:Q14934,equivalent -K04348,hsa:5533,up:P48454,equivalent -K06268,hsa:5535,up:Q96LZ3,equivalent -K02183,hsa:91860,up:Q96GE6,equivalent -K04634,hsa:2776,up:P50148,equivalent -K04635,hsa:2767,up:P29992,equivalent -K05653,hsa:6890,up:Q03518,equivalent -K05654,hsa:6891,up:Q03519,equivalent -K08058,hsa:6892,up:O15533,equivalent -K04630,hsa:2773,up:P08754,equivalent -K04534,hsa:2775,up:P09471,equivalent -K03156,hsa:7124,up:P01375,equivalent -K04189,hsa:7852,up:P61073,equivalent -K05725,hsa:5747,up:Q05397,equivalent -K04438,hsa:1399,up:P46109,equivalent -K05760,hsa:5829,up:P49023,equivalent -K02677,hsa:5578,up:P17252,equivalent -K19662,hsa:5579,up:P05771,equivalent -K19663,hsa:5582,up:P05129,equivalent -K05871,hsa:2185,up:Q14289,equivalent -K02861,hsa:8737,up:Q13546,equivalent -K09849,hsa:7188,up:O00463,equivalent -K03173,hsa:7186,up:Q12933,equivalent -K08056,hsa:2923,up:P30101,equivalent -K08057,hsa:811,up:P27797,equivalent -K08055,hsa:567,up:P61769,equivalent -K04958,hsa:3708,up:Q14643,equivalent -K04959,hsa:3709,up:Q14571,equivalent -K04960,hsa:3710,up:Q14573,equivalent -K05415,hsa:3456,up:P01574,equivalent -K05414,hsa:3452,up:P01568,equivalent -K05410,hsa:29110,up:Q9UHD2,equivalent -K05411,hsa:3661,up:Q14653,equivalent -K17834,hsa:115004,up:Q8N884,equivalent -K12654,hsa:340061,up:Q86WV6,equivalent -K06454,hsa:920,up:P01730,equivalent -K04180,hsa:1234,up:P51681,equivalent -K04729,hsa:4615,up:Q99836,equivalent -K04427,hsa:6885,up:O43318,equivalent -K04441,hsa:6300,up:P53778,equivalent -K04730,hsa:3654,up:P51617,equivalent -K04440,hsa:5602,up:P53779,equivalent -K03175,hsa:7189,up:Q9Y4K3,equivalent -K04403,hsa:10454,up:Q15750,equivalent -K04404,hsa:23118,up:Q9NYJ8,equivalent -K04734,hsa:4792,up:P25963,equivalent -K10159,hsa:7097,up:O60603,equivalent -K10160,hsa:7099,up:O00206,equivalent -K04733,hsa:51135,up:Q9NWZ3,equivalent -K04379,hsa:2353,up:P01100,equivalent -K04448,hsa:3725,up:P05412,equivalent -K04389,hsa:356,up:P48023,equivalent -K02087,hsa:983,up:P06493,equivalent -K04728,hsa:472,up:Q13315,equivalent -K06640,hsa:545,up:Q13535,equivalent -K02216,hsa:1111,up:O14757,equivalent -K05867,hsa:995,up:P30307,equivalent -K05868,hsa:891,up:P14635,equivalent -K21770,hsa:9133,up:O95067,equivalent -K21771,hsa:85417,up:Q8WWL7,equivalent -K02158,hsa:572,up:Q92934,equivalent -K01116,hsa:5335,up:P19174,equivalent -K05859,hsa:5336,up:P16885,equivalent -K05765,hsa:1073,up:Q9Y281,equivalent -K05743,hsa:3984,up:P53667,equivalent -K05744,hsa:3985,up:P53671,equivalent -K04409,hsa:5058,up:Q13153,equivalent -K04410,hsa:5062,up:Q13177,equivalent -K05733,hsa:5063,up:O75914,equivalent -K05734,hsa:10298,up:O96013,equivalent -K05736,hsa:57144,up:Q9P286,equivalent -K05735,hsa:56924,up:Q9NQU5,equivalent -K04392,hsa:5879,up:P63000,equivalent -K07860,hsa:5880,up:P15153,equivalent -K07861,hsa:5881,up:P60763,equivalent -K18750,hsa:9582,up:Q9UH17,equivalent -K22544,hsa:25939,up:Q9Y3Z3,equivalent -K10648,hsa:85363,up:Q9C035,equivalent -K06731,hsa:684,up:Q10589,equivalent -K04432,hsa:5606,up:P46734,equivalent -K04433,hsa:5608,up:P52564,equivalent -K04431,hsa:5609,up:O14733,equivalent -K06451,hsa:916,up:P07766,equivalent -K06452,hsa:917,up:P09693,equivalent -K06450,hsa:915,up:P04234,equivalent -K06453,hsa:919,up:P20963,equivalent -K02161,hsa:596,up:P10415,equivalent -K04570,hsa:598,up:Q07817,equivalent -K06632,hsa:7465,up:P30291,equivalent -K10609,hsa:8451,up:Q13619,equivalent -K10610,hsa:1642,up:Q16531,equivalent -K11789,hsa:9730,up:Q9Y4B6,equivalent -K03873,hsa:6923,up:Q15370,equivalent -K10612,hsa:8065,up:Q93034,equivalent -K03872,hsa:6921,up:Q15369,equivalent -K10611,hsa:9616,up:Q9UBF6,equivalent -K12392,hsa:162,up:Q10567,equivalent -K12391,hsa:8906,up:O75843,equivalent -K12393,hsa:8907,up:Q9BXS5,equivalent -K12394,hsa:8905,up:P56377,equivalent -K12395,hsa:130340,up:Q96PC3,equivalent -K05141,hsa:7133,up:P20333,equivalent -K03362,hsa:8945,up:Q9Y297,equivalent -K03094,hsa:6500,up:P63208,equivalent -K03347,hsa:8454,up:Q13616,equivalent -K03868,hsa:9978,up:P62877,equivalent diff --git a/hiv-benchmarking/hiv_processed_data/kegg-orthology_hsa_uniprot_mapping_ko03250.csv b/hiv-benchmarking/hiv_processed_data/kegg-orthology_hsa_uniprot_mapping_ko03250.csv deleted file mode 100644 index 7454652..0000000 --- a/hiv-benchmarking/hiv_processed_data/kegg-orthology_hsa_uniprot_mapping_ko03250.csv +++ /dev/null @@ -1,59 +0,0 @@ -KEGG_Orthology,HSA,Uniprot,link_category -K25057,hsa:11168,up:O75475,equivalent -K12183,hsa:7251,up:Q99816,equivalent -K12194,hsa:29082,up:Q9BY43,equivalent -K12195,hsa:79643,up:Q96FZ7,equivalent -K12200,hsa:10015,up:Q8WUM4,equivalent -K04180,hsa:1234,up:P51681,equivalent -K04180,hsa:1234,up:Q38L21,equivalent -K04189,hsa:7852,up:P61073,equivalent -K06454,hsa:920,up:A0A4Y5UGE4,equivalent -K06454,hsa:920,up:B4DT49,equivalent -K06454,hsa:920,up:P01730,equivalent -K12172,hsa:5903,up:P49792,equivalent -K14296,hsa:9972,up:P49790,equivalent -K15436,hsa:23534,up:B3KMX1,equivalent -K15436,hsa:23534,up:Q9Y5L0,equivalent -K14398,hsa:79869,up:Q8N684,equivalent -K10648,hsa:85363,up:Q9C035,equivalent -K18739,hsa:636,up:Q96G01,equivalent -K25663,hsa:9638,up:Q99689,equivalent -K10429,hsa:55201,up:Q66K74,equivalent -K14754,hsa:4600,up:P20592,equivalent -K03767,hsal:JMJ58_06545,, -K11648,hsa:6598,up:Q12824,equivalent -K09578,hsa:5300,up:Q13526,equivalent -K06062,hsa:8850,up:Q92831,equivalent -K14290,hsa:7514,up:B3KWD0,equivalent -K14290,hsa:7514,up:O14980,equivalent -K01349,hsa:5045,up:P09958,equivalent -K15185,hsa:27125,up:Q9UHB7,equivalent -K15179,hsa:7469,up:A0A0C4DFX9,equivalent -K15179,hsa:7469,up:Q9H3P2,equivalent -K15180,hsa:25920,up:Q8WX92,equivalent -K15181,hsa:51497,up:H0UI80,equivalent -K15181,hsa:51497,up:Q8IXH7,equivalent -K15182,hsa:7936,up:A0A1U9X830,equivalent -K15182,hsa:7936,up:P18615,equivalent -K15171,hsal:JMJ58_11085,, -K15172,hsal:JMJ58_15635,, -K18750,hsa:9582,up:Q9UH17,equivalent -K06731,hsa:684,up:A0A024R7H5,equivalent -K06731,hsa:684,up:Q10589,equivalent -K12182,hsa:9146,up:A0A0S2Z4R4,equivalent -K12182,hsa:9146,up:O14964,equivalent -K12196,hsa:9525,up:O75351,equivalent -K15183,hsa:8178,up:P55199,equivalent -K02211,hsa:1025,up:P50750,equivalent -K15187,hsa:4300,up:A0A0S2Z448,equivalent -K15187,hsa:4300,up:P42568,equivalent -K15188,hsa:905,up:B4DH21,equivalent -K15188,hsa:905,up:O60583,equivalent -K04498,hsa:2033,up:Q09472,equivalent -K04498,hsa:2033,up:Q7Z6C1,equivalent -K07936,hsa:5901,up:P62826,equivalent -K22544,hsa:25939,up:Q59H15,equivalent -K22544,hsa:25939,up:Q9Y3Z3,equivalent -K25655,hsa:256987,up:Q86VE9,equivalent -K25661,hsa:10955,up:Q13530,equivalent -K27688,hsa:29969,up:Q9P1T7,equivalent diff --git a/hiv-benchmarking/hiv_processed_data/kegg-orthology_hsa_uniprot_mapping_ko05170.csv b/hiv-benchmarking/hiv_processed_data/kegg-orthology_hsa_uniprot_mapping_ko05170.csv deleted file mode 100644 index 1a8c747..0000000 --- a/hiv-benchmarking/hiv_processed_data/kegg-orthology_hsa_uniprot_mapping_ko05170.csv +++ /dev/null @@ -1,228 +0,0 @@ -KEGG_Orthology,HSA,Uniprot,link_category -K04688,hsa:6199,up:Q9UBS0,equivalent -K07203,hsa:2475,up:P42345,equivalent -K04456,hsa:208,up:P31751,equivalent -K00922,hsa:5293,up:A0A2K8FKV1,equivalent -K00922,hsa:5293,up:O00329,equivalent -K02649,hsa:8503,up:Q8N381,equivalent -K02649,hsa:8503,up:Q92569,equivalent -K02580,hsa:4790,up:P19838,equivalent -K04735,hsa:5970,up:Q04206,equivalent -K02833,hsa:3265,up:P01112,equivalent -K02833,hsa:3265,up:X5D945,equivalent -K07827,hsa:3845,up:I1SRC5,equivalent -K07827,hsa:3845,up:L7RSL8,equivalent -K07827,hsa:3845,up:P01116,equivalent -K07828,hsa:4893,up:P01111,equivalent -K07828,hsa:4893,up:Q5U091,equivalent -K04366,hsa:5894,up:L7RRS6,equivalent -K04366,hsa:5894,up:P04049,equivalent -K04368,hsa:5604,up:A4QPA9,equivalent -K04368,hsa:5604,up:Q02750,equivalent -K04369,hsa:5605,up:P36507,equivalent -K04371,hsa:5595,up:L7RXH5,equivalent -K04371,hsa:5595,up:P27361,equivalent -K02373,hsa:8772,up:Q13158,equivalent -K04398,hsa:841,up:Q14790,equivalent -K04390,hsa:355,up:P25445,equivalent -K06751,hsa:3135,up:P17693,equivalent -K06751,hsa:3135,up:Q6DU14,equivalent -K03171,hsa:8717,up:Q15628,equivalent -K04467,hsa:1147,up:O15111,equivalent -K07209,hsa:3551,up:O14920,equivalent -K07210,hsa:8517,up:Q9Y6K9,equivalent -K02159,hsa:581,up:Q07812,equivalent -K14021,hsa:578,up:A0A0S2Z391,equivalent -K14021,hsa:578,up:Q16611,equivalent -K08738,hsa:54205,up:G4XXL9,equivalent -K08738,hsa:54205,up:P99999,equivalent -K02187,hsa:836,up:P42574,equivalent -K03158,hsa:7132,up:P19438,equivalent -K04536,hsa:2782,up:A0A140VJJ8,equivalent -K04536,hsa:2782,up:P62873,equivalent -K04537,hsa:2783,up:P62879,equivalent -K04537,hsa:2783,up:Q6FHM2,equivalent -K07825,hsa:2784,up:F1T0G5,equivalent -K07825,hsa:2784,up:P16520,equivalent -K04538,hsa:59345,up:Q9HAV0,equivalent -K04539,hsa:10681,up:O14775,equivalent -K07826,hsa:54331,up:P59768,equivalent -K04540,hsa:2785,up:P63215,equivalent -K04541,hsa:2786,up:B1APZ0,equivalent -K04541,hsa:2786,up:P50150,equivalent -K04542,hsa:2787,up:P63218,equivalent -K04543,hsa:2788,up:O60262,equivalent -K04544,hsa:94235,up:Q9UK08,equivalent -K04545,hsa:2790,up:P50151,equivalent -K04546,hsa:2791,up:P61952,equivalent -K04546,hsa:2791,up:Q53Y01,equivalent -K04347,hsa:55970,up:Q9UBI6,equivalent -K04547,hsa:51764,up:Q9P2W3,equivalent -K04548,hsa:2792,up:P63211,equivalent -K04549,hsa:2793,up:O14610,equivalent -K04399,hsa:842,up:P55211,equivalent -K04726,hsa:637,up:A8ASI8,equivalent -K04726,hsa:637,up:B3KT21,equivalent -K04726,hsa:637,up:P55957,equivalent -K04446,hsa:4772,up:O95644,equivalent -K17332,hsa:4773,up:Q13469,equivalent -K17333,hsa:4775,up:B5B2S1,equivalent -K17333,hsa:4775,up:Q12968,equivalent -K17334,hsa:4776,up:Q14934,equivalent -K04348,hsa:5533,up:P48454,equivalent -K06268,hsa:5535,up:Q96LZ3,equivalent -K02183,hsa:91860,up:Q96GE6,equivalent -K04634,hsa:2776,up:A0A024R240,equivalent -K04634,hsa:2776,up:P50148,equivalent -K04635,hsa:2767,up:P29992,equivalent -K05653,hsa:6890,up:A0A0S2Z5A6,equivalent -K05653,hsa:6890,up:Q03518,equivalent -K05653,hsa:6890,up:X5CKB3,equivalent -K05654,hsa:6891,up:Q03519,equivalent -K05654,hsa:6891,up:Q5JNW1,equivalent -K08058,hsa:6892,up:A0A024RCT1,equivalent -K08058,hsa:6892,up:O15533,equivalent -K04630,hsa:2773,up:P08754,equivalent -K04534,hsa:2775,up:B3KP89,equivalent -K04534,hsa:2775,up:P09471,equivalent -K04534,hsa:2775,up:Q8N6I9,equivalent -K03156,hsa:7124,up:P01375,equivalent -K03156,hsa:7124,up:Q5STB3,equivalent -K04189,hsa:7852,up:P61073,equivalent -K05725,hsa:5747,up:Q05397,equivalent -K05725,hsa:5747,up:Q59GM6,equivalent -K05725,hsa:5747,up:Q658W2,equivalent -K04438,hsa:1399,up:P46109,equivalent -K05760,hsa:5829,up:A0A140VJQ8,equivalent -K05760,hsa:5829,up:P49023,equivalent -K02677,hsa:5578,up:L7RSM7,equivalent -K02677,hsa:5578,up:P17252,equivalent -K02677,hsa:5578,up:Q7Z727,equivalent -K19662,hsa:5579,up:P05771,equivalent -K19663,hsa:5582,up:P05129,equivalent -K05871,hsa:2185,up:Q14289,equivalent -K02861,hsa:8737,up:Q13546,equivalent -K09849,hsa:7188,up:O00463,equivalent -K03173,hsa:7186,up:Q12933,equivalent -K08056,hsa:2923,up:P30101,equivalent -K08056,hsa:2923,up:V9HVY3,equivalent -K08057,hsa:811,up:P27797,equivalent -K08057,hsa:811,up:V9HW88,equivalent -K08055,hsa:567,up:P61769,equivalent -K04958,hsa:3708,up:Q14643,equivalent -K04959,hsa:3709,up:Q14571,equivalent -K04960,hsa:3710,up:A6H8K3,equivalent -K04960,hsa:3710,up:Q14573,equivalent -K04960,hsa:3710,up:Q59ES2,equivalent -K05415,hsa:3456,up:A0A7R8GV38,equivalent -K05415,hsa:3456,up:P01574,equivalent -K05414,hsa:3452,up:A0A7R8GUQ6,equivalent -K05414,hsa:3452,up:P01568,equivalent -K05410,hsa:29110,up:Q9UHD2,equivalent -K05411,hsa:3661,up:Q14653,equivalent -K17834,hsa:115004,up:Q8N884,equivalent -K12654,hsa:340061,up:Q86WV6,equivalent -K06454,hsa:920,up:A0A4Y5UGE4,equivalent -K06454,hsa:920,up:B4DT49,equivalent -K06454,hsa:920,up:P01730,equivalent -K04180,hsa:1234,up:P51681,equivalent -K04180,hsa:1234,up:Q38L21,equivalent -K04729,hsa:4615,up:Q99836,equivalent -K04427,hsa:6885,up:O43318,equivalent -K04441,hsa:6300,up:P53778,equivalent -K04730,hsa:3654,up:P51617,equivalent -K04440,hsa:5602,up:A0A286YF97,equivalent -K04440,hsa:5602,up:P53779,equivalent -K03175,hsa:7189,up:Q9Y4K3,equivalent -K04403,hsa:10454,up:A8K6K3,equivalent -K04403,hsa:10454,up:Q15750,equivalent -K04404,hsa:23118,up:Q9NYJ8,equivalent -K04734,hsa:4792,up:P25963,equivalent -K10159,hsa:7097,up:A0A0S2Z4S4,equivalent -K10159,hsa:7097,up:B3KWR9,equivalent -K10159,hsa:7097,up:O60603,equivalent -K10160,hsa:7099,up:O00206,equivalent -K04733,hsa:51135,up:B4E359,equivalent -K04733,hsa:51135,up:Q69FE3,equivalent -K04733,hsa:51135,up:Q9NWZ3,equivalent -K04379,hsa:2353,up:P01100,equivalent -K04379,hsa:2353,up:Q6FG41,equivalent -K04448,hsa:3725,up:P05412,equivalent -K04389,hsa:356,up:P48023,equivalent -K04389,hsa:356,up:Q53ZZ1,equivalent -K02087,hsa:983,up:P06493,equivalent -K04728,hsa:472,up:Q13315,equivalent -K06640,hsa:545,up:Q13535,equivalent -K02216,hsa:1111,up:B4DT73,equivalent -K02216,hsa:1111,up:O14757,equivalent -K05867,hsa:995,up:P30307,equivalent -K05868,hsa:891,up:P14635,equivalent -K21770,hsa:9133,up:O95067,equivalent -K21771,hsa:85417,up:Q8WWL7,equivalent -K02158,hsa:572,up:Q92934,equivalent -K01116,hsa:5335,up:P19174,equivalent -K01116,hsa:5335,up:Q4LE43,equivalent -K05859,hsa:5336,up:P16885,equivalent -K05765,hsa:1073,up:Q549N0,equivalent -K05765,hsa:1073,up:Q9Y281,equivalent -K05743,hsa:3984,up:P53667,equivalent -K05744,hsa:3985,up:P53671,equivalent -K04409,hsa:5058,up:Q13153,equivalent -K04410,hsa:5062,up:A8K5M4,equivalent -K04410,hsa:5062,up:Q13177,equivalent -K05733,hsa:5063,up:O75914,equivalent -K05734,hsa:10298,up:O96013,equivalent -K05736,hsa:57144,up:B0AZM9,equivalent -K05736,hsa:57144,up:Q9P286,equivalent -K05735,hsa:56924,up:Q9NQU5,equivalent -K04392,hsa:5879,up:A4D2P1,equivalent -K04392,hsa:5879,up:P63000,equivalent -K07860,hsa:5880,up:P15153,equivalent -K07860,hsa:5880,up:V9H0H7,equivalent -K07861,hsa:5881,up:P60763,equivalent -K18750,hsa:9582,up:Q9UH17,equivalent -K22544,hsa:25939,up:Q59H15,equivalent -K22544,hsa:25939,up:Q9Y3Z3,equivalent -K10648,hsa:85363,up:Q9C035,equivalent -K06731,hsa:684,up:A0A024R7H5,equivalent -K06731,hsa:684,up:Q10589,equivalent -K04432,hsa:5606,up:P46734,equivalent -K04432,hsa:5606,up:Q6FI23,equivalent -K04433,hsa:5608,up:A8K3Y2,equivalent -K04433,hsa:5608,up:P52564,equivalent -K04431,hsa:5609,up:O14733,equivalent -K06451,hsa:916,up:P07766,equivalent -K06452,hsa:917,up:B0YIY5,equivalent -K06452,hsa:917,up:P09693,equivalent -K06450,hsa:915,up:B0YIY4,equivalent -K06450,hsa:915,up:P04234,equivalent -K06453,hsa:919,up:P20963,equivalent -K02161,hsa:596,up:P10415,equivalent -K04570,hsa:598,up:A0A0S2Z3C5,equivalent -K04570,hsa:598,up:Q07817,equivalent -K06632,hsa:7465,up:P30291,equivalent -K06632,hsa:7465,up:Q86V29,equivalent -K10609,hsa:8451,up:Q13619,equivalent -K10610,hsa:1642,up:Q16531,equivalent -K11789,hsa:9730,up:Q9Y4B6,equivalent -K03873,hsa:6923,up:Q15370,equivalent -K10612,hsa:8065,up:Q93034,equivalent -K03872,hsa:6921,up:Q15369,equivalent -K10611,hsa:9616,up:Q9UBF6,equivalent -K12392,hsa:162,up:Q10567,equivalent -K12391,hsa:8906,up:O75843,equivalent -K12393,hsa:8907,up:B3KNH5,equivalent -K12393,hsa:8907,up:Q9BXS5,equivalent -K12394,hsa:8905,up:P56377,equivalent -K12394,hsa:8905,up:Q549M9,equivalent -K12395,hsa:130340,up:Q96PC3,equivalent -K05141,hsa:7133,up:P20333,equivalent -K03362,hsa:8945,up:A0A0S2Z4P6,equivalent -K03362,hsa:8945,up:B2R8L3,equivalent -K03362,hsa:8945,up:Q68DS0,equivalent -K03362,hsa:8945,up:Q9Y297,equivalent -K03094,hsa:6500,up:P63208,equivalent -K03347,hsa:8454,up:A0A090N7U0,equivalent -K03347,hsa:8454,up:B3KTW0,equivalent -K03347,hsa:8454,up:Q13616,equivalent -K03868,hsa:9978,up:P62877,equivalent diff --git a/hiv-benchmarking/hiv_processed_data/modified_prize_05.txt b/hiv-benchmarking/hiv_processed_data/modified_prize_05.txt deleted file mode 100644 index bd3be43..0000000 --- a/hiv-benchmarking/hiv_processed_data/modified_prize_05.txt +++ /dev/null @@ -1,1124 +0,0 @@ -NODEID prize -B0YIW2_HUMAN 5.029365599650682 -HTF4_HUMAN 4.582688156260696 -FETUA_HUMAN 4.027455886706566 -HBA_HUMAN 3.955817065609741 -KCRM_HUMAN 3.885427876677981 -B7ZKJ8_HUMAN 3.885427876677981 -H4_HUMAN 3.885427876677981 -FBLN1_HUMAN 3.885427876677981 -H3BLZ8_HUMAN 3.737659276683696 -MMTA2_HUMAN 3.645611351503717 -CL16A_HUMAN 3.645611351503717 -ALBU_HUMAN 3.495543593199523 -UBAC2_HUMAN 3.4400540448812222 -H37_HUMAN 3.4400540448812222 -PHF3_HUMAN 3.324208299637505 -DDX52_HUMAN 3.324208299637505 -TBA1B_HUMAN 3.324208299637505 -HNRPK_HUMAN 3.3188421301096285 -Q5T5H1_HUMAN 3.3188421301096285 -ZC11A_HUMAN 3.3188421301096285 -EPB41_HUMAN 3.3010716433184752 -LARP1_HUMAN 3.3010716433184752 -GLYR1_HUMAN 3.291925211826148 -ZC3HD_HUMAN 3.291925211826148 -TRFE_HUMAN 3.2382104940279395 -A0A0A0MTS7_HUMAN 3.238051370574229 -RL34_HUMAN 3.199587163788601 -HOMEZ_HUMAN 3.1604645579223023 -A2MG_HUMAN 3.1604645579223023 -ITIH2_HUMAN 3.144305136412102 -PLMN_HUMAN 3.1395052780156214 -PCLO_HUMAN 3.1395052780156214 -TRFL_HUMAN 3.1395052780156214 -NU153_HUMAN 3.1383736075715567 -HNRH3_HUMAN 3.1358609655646563 -H12_HUMAN 3.096027032739838 -A0A087WVP1_HUMAN 3.0343829212843927 -NDUA5_HUMAN 3.029621522802649 -PZP_HUMAN 3.029621522802649 -TRI32_HUMAN 3.029008185470572 -ITIH1_HUMAN 3.029008185470572 -TETN_HUMAN 3.029008185470572 -POSTN_HUMAN 3.029008185470572 -PTBP1_HUMAN 2.962566624533064 -PEDF_HUMAN 2.962566624533064 -A0A0G2JQJ7_HUMAN 2.962566624533064 -CO7_HUMAN 2.962566624533064 -CO3_HUMAN 2.962566624533064 -A2AP_HUMAN 2.962566624533064 -ANT3_HUMAN 2.9454736787752185 -THBG_HUMAN 2.938925530905134 -SRS10_HUMAN 2.829700827078314 -LCAP_HUMAN 2.829700827078314 -SRSF2_HUMAN 2.829700827078314 -LUZP1_HUMAN 2.829700827078314 -SP16H_HUMAN 2.829700827078314 -AGAP2_HUMAN 2.829700827078314 -A0A087X0X3_HUMAN 2.795249183187452 -C9JV77_HUMAN 2.7916197949376103 -H15_HUMAN 2.747877665335442 -A8MXP9_HUMAN 2.7306756910406835 -WBP11_HUMAN 2.7306756910406835 -RASL3_HUMAN 2.7306756910406835 -E9PCW1_HUMAN 2.7306756910406835 -APOA1_HUMAN 2.720750771925425 -A9Z1X7_HUMAN 2.7206557198521564 -MPZL1_HUMAN 2.7206557198521564 -PTN1_HUMAN 2.7206557198521564 -EIF3A_HUMAN 2.7053973652732437 -CO9_HUMAN 2.642270222720444 -DNLI1_HUMAN 2.62905096626394 -A0A087WX41_HUMAN 2.62527679827281 -RSRC2_HUMAN 2.62527679827281 -MAGD1_HUMAN 2.6037488593668185 -K4DI81_HUMAN 2.58545961733328 -TSP4_HUMAN 2.5781570496516366 -MCTP2_HUMAN 2.5739996934436533 -SRRM2_HUMAN 2.5599794882543963 -PHAX_HUMAN 2.55229335257594 -CCD86_HUMAN 2.5433868130220105 -T2AG_HUMAN 2.5153505347187397 -RBM14_HUMAN 2.51233260431366 -SNIP1_HUMAN 2.51233260431366 -RS10_HUMAN 2.4894305938870938 -PRC2C_HUMAN 2.4894305938870938 -JUPI1_HUMAN 2.48882925856076 -A0A075B738_HUMAN 2.481386971939166 -LYAR_HUMAN 2.481386971939166 -ABI1_HUMAN 2.481386971939166 -KPBB_HUMAN 2.481386971939166 -A0A0G2JPR0_HUMAN 2.460765792624727 -M0QYC1_HUMAN 2.432755782368094 -PHF2_HUMAN 2.415789642322741 -PRC2A_HUMAN 2.4140889675670696 -NEK4_HUMAN 2.4140889675670696 -TF2B_HUMAN 2.4140889675670696 -HJURP_HUMAN 2.4140889675670696 -STMN1_HUMAN 2.4140889675670696 -GELS_HUMAN 2.4104977645875323 -RAI1_HUMAN 2.407172399141249 -TTC4_HUMAN 2.380388595749011 -FA53C_HUMAN 2.349945242744137 -H0Y5F5_HUMAN 2.3235758982106964 -TBB4A_HUMAN 2.323008637528439 -HMHA1_HUMAN 2.320724815309965 -LEUK_HUMAN 2.3002413241447117 -RRP12_HUMAN 2.296341778114889 -VTDB_HUMAN 2.287877464838444 -LMO7_HUMAN 2.283650895240041 -RNF25_HUMAN 2.283650895240041 -C10_HUMAN 2.281967707725145 -SKI2_HUMAN 2.281967707725145 -ATP4A_HUMAN 2.281967707725145 -TCF25_HUMAN 2.281967707725145 -TM160_HUMAN 2.2816943670374368 -ACINU_HUMAN 2.2724349590916813 -C9JYS8_HUMAN 2.2724349590916813 -TSP1_HUMAN 2.265610263847204 -PCM1_HUMAN 2.2486198914855287 -CLAP1_HUMAN 2.24046014360604 -A0A0C4DGB9_HUMAN 2.236380744008414 -TRA2B_HUMAN 2.2320502169087955 -HEBP2_HUMAN 2.2211603377352622 -GLE1_HUMAN 2.2142665101729357 -CUL4A_HUMAN 2.2123687456514425 -RB15B_HUMAN 2.208371655746705 -PHF8_HUMAN 2.20252042150617 -KI67_HUMAN 2.198038970223691 -H0Y449_HUMAN 2.195984606980593 -FEM1A_HUMAN 2.1906023175925395 -MY18A_HUMAN 2.175819836002309 -GBB3_HUMAN 2.175819836002309 -RBP56_HUMAN 2.153112950890257 -TBC13_HUMAN 2.1478379363448883 -SF3B1_HUMAN 2.1439001320846174 -AKT2_HUMAN 2.1439001320846174 -SLTM_HUMAN 2.1439001320846174 -RBM22_HUMAN 2.1439001320846174 -ATF7_HUMAN 2.1439001320846174 -ARC1A_HUMAN 2.1439001320846174 -NDUB8_HUMAN 2.114945948576723 -SENP1_HUMAN 2.114945948576723 -CD2AP_HUMAN 2.112392025090484 -CDK9_HUMAN 2.105059488765234 -S39AA_HUMAN 2.101534906059656 -NFAC1_HUMAN 2.101534906059656 -RB_HUMAN 2.100687896308613 -B7WPE2_HUMAN 2.100687896308613 -LS14A_HUMAN 2.100687896308613 -ATF2_HUMAN 2.100160602610354 -H14_HUMAN 2.096770743840173 -KAPCB_HUMAN 2.093004073260828 -NELFE_HUMAN 2.093004073260828 -NUCL_HUMAN 2.093004073260828 -ARFG2_HUMAN 2.093004073260828 -RL1D1_HUMAN 2.093004073260828 -IF16_HUMAN 2.093004073260828 -ZMYD8_HUMAN 2.093004073260828 -BD1L1_HUMAN 2.093004073260828 -SMG5_HUMAN 2.093004073260828 -GBRG2_HUMAN 2.093004073260828 -UBP1_HUMAN 2.093004073260828 -SPIR1_HUMAN 2.093004073260828 -CRTC1_HUMAN 2.093004073260828 -DBNL_HUMAN 2.093004073260828 -CTRO_HUMAN 2.093004073260828 -DDX5_HUMAN 2.093004073260828 -NCBP1_HUMAN 2.093004073260828 -ELL2_HUMAN 2.093004073260828 -TLE5_HUMAN 2.093004073260828 -ROA2_HUMAN 2.093004073260828 -CAP1_HUMAN 2.093004073260828 -NPM_HUMAN 2.093004073260828 -MCES_HUMAN 2.093004073260828 -E9PGC8_HUMAN 2.093004073260828 -RSRC1_HUMAN 2.093004073260828 -MARE2_HUMAN 2.093004073260828 -H2B1M_HUMAN 2.093004073260828 -TB182_HUMAN 2.093004073260828 -TR150_HUMAN 2.093004073260828 -J3QR29_HUMAN 2.093004073260828 -THOC5_HUMAN 2.093004073260828 -A0A096LP69_HUMAN 2.093004073260828 -NOLC1_HUMAN 2.093004073260828 -CCNT1_HUMAN 2.093004073260828 -A0A087X188_HUMAN 2.093004073260828 -A0A075B6G3_HUMAN 2.093004073260828 -RBMX_HUMAN 2.093004073260828 -IF4B_HUMAN 2.093004073260828 -ROA0_HUMAN 2.093004073260828 -T2FA_HUMAN 2.093004073260828 -WNK1_HUMAN 2.093004073260828 -MTCL2_HUMAN 2.093004073260828 -SRSF4_HUMAN 2.093004073260828 -TRIPC_HUMAN 2.093004073260828 -SNX17_HUMAN 2.093004073260828 -PCF11_HUMAN 2.093004073260828 -DC1L1_HUMAN 2.093004073260828 -VPS72_HUMAN 2.093004073260828 -MKRN2_HUMAN 2.093004073260828 -NKAP1_HUMAN 2.093004073260828 -L2GL1_HUMAN 2.093004073260828 -RS6_HUMAN 2.093004073260828 -SFSWA_HUMAN 2.093004073260828 -ULK1_HUMAN 2.093004073260828 -E9PN89_HUMAN 2.093004073260828 -SYMPK_HUMAN 2.093004073260828 -RS27A_HUMAN 2.093004073260828 -PRCC_HUMAN 2.093004073260828 -EDC3_HUMAN 2.093004073260828 -RRAGC_HUMAN 2.093004073260828 -TCOF_HUMAN 2.093004073260828 -F8W7T1_HUMAN 2.093004073260828 -PPM1H_HUMAN 2.093004073260828 -KI18B_HUMAN 2.093004073260828 -CE350_HUMAN 2.091231409713808 -KNL1_HUMAN 2.091231409713808 -CSKI2_HUMAN 2.091231409713808 -UBP24_HUMAN 2.091231409713808 -SIN3B_HUMAN 2.091231409713808 -AAAT_HUMAN 2.091231409713808 -PB1_HUMAN 2.091231409713808 -ARGL1_HUMAN 2.091231409713808 -CCD92_HUMAN 2.091231409713808 -E7EQT4_HUMAN 2.091231409713808 -BUD13_HUMAN 2.091231409713808 -FNBP4_HUMAN 2.091231409713808 -SUMO2_HUMAN 2.091231409713808 -ROAA_HUMAN 2.091231409713808 -MAST3_HUMAN 2.091231409713808 -UFL1_HUMAN 2.091231409713808 -GNL1_HUMAN 2.0892707200089293 -Q9HBD4_HUMAN 2.0892707200089293 -SF3B5_HUMAN 2.0844344915355792 -SEM4D_HUMAN 2.0844344915355792 -AN32B_HUMAN 2.081399852781724 -SCAF4_HUMAN 2.080073763404992 -SMRC2_HUMAN 2.0770885338720166 -NUMA1_HUMAN 2.0741363450505035 -UBE2T_HUMAN 2.0741363450505035 -E7EVA0_HUMAN 2.0741363450505035 -H9KVB4_HUMAN 2.0741363450505035 -E9PG73_HUMAN 2.0741363450505035 -OBI1_HUMAN 2.0741363450505035 -NCOA5_HUMAN 2.0741363450505035 -CUX1_HUMAN 2.0741363450505035 -MTOR_HUMAN 2.0741363450505035 -TPX2_HUMAN 2.0741363450505035 -ADDB_HUMAN 2.0741363450505035 -YTDC1_HUMAN 2.0741363450505035 -ARP19_HUMAN 2.0741363450505035 -LZTS1_HUMAN 2.0741363450505035 -SMRCD_HUMAN 2.0741363450505035 -SNW1_HUMAN 2.0741363450505035 -S39A7_HUMAN 2.0741363450505035 -PHB2_HUMAN 2.0741363450505035 -WBP4_HUMAN 2.0741363450505035 -SPD2B_HUMAN 2.0741363450505035 -AB1IP_HUMAN 2.0741363450505035 -DNJB2_HUMAN 2.0741363450505035 -TF3C1_HUMAN 2.0741363450505035 -PNM8A_HUMAN 2.0741363450505035 -COF1_HUMAN 2.0741363450505035 -IWS1_HUMAN 2.0741363450505035 -RHG01_HUMAN 2.0741363450505035 -PLEC_HUMAN 2.0741363450505035 -RN168_HUMAN 2.0741363450505035 -DDX21_HUMAN 2.0741363450505035 -NSD2_HUMAN 2.0741363450505035 -F5H7W8_HUMAN 2.0741363450505035 -PHF20_HUMAN 2.0741363450505035 -PR38B_HUMAN 2.0741363450505035 -MNX1_HUMAN 2.0741363450505035 -ELF1_HUMAN 2.0741363450505035 -ZC3C1_HUMAN 2.0741363450505035 -CTCF_HUMAN 2.0741363450505035 -E7ESS2_HUMAN 2.0741363450505035 -EPN4_HUMAN 2.0741363450505035 -RAB1A_HUMAN 2.0741363450505035 -TP53B_HUMAN 2.0741363450505035 -RBP2_HUMAN 2.0713486005782946 -RBM5_HUMAN 2.0713486005782946 -KMT2C_HUMAN 2.0713486005782946 -A0A087WUE4_HUMAN 2.0713486005782946 -T22D4_HUMAN 2.0713486005782946 -C9JCC6_HUMAN 2.070445474815505 -K2C1_HUMAN 2.070445474815505 -GRAP2_HUMAN 2.0694380337606075 -CBX5_HUMAN 2.0694380337606075 -ARI4A_HUMAN 2.0694380337606075 -CIR1_HUMAN 2.066314476087648 -TEX2_HUMAN 2.066247893108421 -TNR8_HUMAN 2.06313711752553 -BC11B_HUMAN 2.063074993592968 -G5E9I4_HUMAN 2.057475184452913 -AMPD2_HUMAN 2.057475184452913 -JIP4_HUMAN 2.057475184452913 -BAG4_HUMAN 2.057475184452913 -NAB1_HUMAN 2.057475184452913 -SCAFB_HUMAN 2.057475184452913 -2A5E_HUMAN 2.053529256826423 -CYTSA_HUMAN 2.053529256826423 -LIMA1_HUMAN 2.053529256826423 -DCP2_HUMAN 2.0479931944263523 -MCM4_HUMAN 2.0479931944263523 -BCLF1_HUMAN 2.047635344122845 -F110C_HUMAN 2.047635344122845 -CCAR2_HUMAN 2.047635344122845 -AAK1_HUMAN 2.047635344122845 -A0A0C4DGT3_HUMAN 2.047635344122845 -ARP10_HUMAN 2.047635344122845 -RHPN2_HUMAN 2.047635344122845 -TPIS_HUMAN 2.0443402002488544 -NU107_HUMAN 2.0437288702099448 -ARHG7_HUMAN 2.036554522091055 -NEK1_HUMAN 2.036554522091055 -SAC2_HUMAN 2.036554522091055 -HECD1_HUMAN 2.036554522091055 -A0A075B7F8_HUMAN 2.0258840676012166 -FKBP4_HUMAN 2.0258840676012166 -NUCKS_HUMAN 2.0238476248551227 -NOPC1_HUMAN 2.023668755442608 -TPD54_HUMAN 2.023668755442608 -LEMD2_HUMAN 2.019570825094521 -NFAC2_HUMAN 2.019474619149151 -ATIF1_HUMAN 2.0162849025813614 -CIAO1_HUMAN 2.0162849025813614 -TBP_HUMAN 2.0162849025813614 -CC020_HUMAN 2.0162849025813614 -LAR1B_HUMAN 2.0162849025813614 -MDN1_HUMAN 2.0162849025813614 -ABL2_HUMAN 2.010141366952319 -BTF3_HUMAN 2.0096256649264213 -J3QS41_HUMAN 2.0060888000963253 -SUGP1_HUMAN 2.00501153904742 -TSH1_HUMAN 2.00501153904742 -H0YLM1_HUMAN 2.004925899348196 -GOLP3_HUMAN 2.004925899348196 -TANC1_HUMAN 2.003893158665265 -DNMT1_HUMAN 2.001547002460393 -S26A2_HUMAN 2.001547002460393 -MSL1_HUMAN 2.001547002460393 -DDX23_HUMAN 2.001547002460393 -KLC4_HUMAN 2.001547002460393 -TOPK_HUMAN 2.001547002460393 -RFIP1_HUMAN 2.001547002460393 -4ET_HUMAN 2.001547002460393 -TAGL2_HUMAN 2.0000647481974987 -CAF1A_HUMAN 2.0000647481974987 -SMBP2_HUMAN 2.0000647481974987 -B7ZL14_HUMAN 1.999364734545024 -GON4L_HUMAN 1.999364734545024 -DDX3X_HUMAN 1.999364734545024 -MYC_HUMAN 1.995364993831002 -RPGF1_HUMAN 1.995364993831002 -CD7_HUMAN 1.9952164715454883 -APOB_HUMAN 1.9952164715454883 -CBPN_HUMAN 1.992890123029605 -GAPD1_HUMAN 1.9917206849966784 -RIF1_HUMAN 1.9917206849966784 -DEFI6_HUMAN 1.9917206849966784 -CHERP_HUMAN 1.9917206849966784 -PARN_HUMAN 1.9917206849966784 -NIPBL_HUMAN 1.9917206849966784 -S25A3_HUMAN 1.991375722886299 -KTNA1_HUMAN 1.991375722886299 -HMGN3_HUMAN 1.991375722886299 -RUFY1_HUMAN 1.9856617408191743 -DUS3_HUMAN 1.978294679290043 -PDS5A_HUMAN 1.9775401751552404 -HXB4_HUMAN 1.9750550166567504 -ICE1_HUMAN 1.9750550166567504 -SC61B_HUMAN 1.969143829670624 -CENPF_HUMAN 1.969143829670624 -H0YL70_HUMAN 1.968302933471068 -SC22B_HUMAN 1.960187609399384 -ZN644_HUMAN 1.9556137936327185 -OCAD2_HUMAN 1.9486769534370176 -NEXN_HUMAN 1.9481548894726344 -CE022_HUMAN 1.9480945422071272 -LASP1_HUMAN 1.9480945422071272 -ZC3H4_HUMAN 1.9470950307992143 -PCBP1_HUMAN 1.944984803261588 -UBP31_HUMAN 1.9445373394280647 -SETD2_HUMAN 1.9434305219033925 -FBX41_HUMAN 1.9434305219033925 -ZRAB2_HUMAN 1.9434305219033925 -CLAP2_HUMAN 1.9434305219033925 -RBCC1_HUMAN 1.9434305219033925 -RNF10_HUMAN 1.9418115434283745 -ATG9A_HUMAN 1.9415669480747133 -HNRL2_HUMAN 1.9415669480747133 -TCPB_HUMAN 1.9368901870733024 -ARHG6_HUMAN 1.9368901870733024 -UBR5_HUMAN 1.9368901870733024 -RFC1_HUMAN 1.9368901870733024 -F5H0R1_HUMAN 1.9368901870733024 -IRX1_HUMAN 1.9368901870733024 -PRP16_HUMAN 1.9368901870733024 -PRKDC_HUMAN 1.9340489974114472 -RHG25_HUMAN 1.9340489974114472 -TICRR_HUMAN 1.9340489974114472 -A0A1B0GV45_HUMAN 1.9340489974114472 -JARD2_HUMAN 1.9340489974114472 -EEPD1_HUMAN 1.9340489974114472 -PININ_HUMAN 1.9340489974114472 -2A5A_HUMAN 1.9323419277671952 -PI4KB_HUMAN 1.9323419277671952 -OSB11_HUMAN 1.9323419277671952 -IMA1_HUMAN 1.9323419277671952 -DOT1L_HUMAN 1.9301631333073044 -V5IRT4_HUMAN 1.928795297583716 -TYB4_HUMAN 1.9283777316613235 -DEN4B_HUMAN 1.9271301716229812 -A0A0U1RRM6_HUMAN 1.9271301716229812 -RRP1_HUMAN 1.9271301716229812 -LSM12_HUMAN 1.9254733389302685 -NEMF_HUMAN 1.9254733389302685 -ATRX_HUMAN 1.9217182069478531 -NCBP3_HUMAN 1.9217182069478531 -J3KMZ8_HUMAN 1.918483687108067 -CCNK_HUMAN 1.9177379301127877 -FYB1_HUMAN 1.9177379301127877 -SENP3_HUMAN 1.9177379301127877 -A0A0C4DFX9_HUMAN 1.9177379301127877 -LAR4B_HUMAN 1.9177379301127877 -ATAD5_HUMAN 1.9177379301127877 -KNOP1_HUMAN 1.9177379301127877 -TF3B_HUMAN 1.9177379301127877 -PYR1_HUMAN 1.9177379301127877 -NU188_HUMAN 1.9177379301127877 -PNISR_HUMAN 1.9134882382668332 -PACS1_HUMAN 1.9134882382668332 -A0A0A0MRV0_HUMAN 1.912601619901632 -ZN318_HUMAN 1.912601619901632 -PHIP_HUMAN 1.912601619901632 -DYR1A_HUMAN 1.9125880555053756 -C9J2V2_HUMAN 1.9125880555053756 -CAF1B_HUMAN 1.9125880555053756 -MTSS2_HUMAN 1.9125880555053756 -G5E9M7_HUMAN 1.9125880555053756 -DCP1B_HUMAN 1.9125880555053756 -DSN1_HUMAN 1.90964677968256 -EF2K_HUMAN 1.90964677968256 -VINEX_HUMAN 1.90964677968256 -SR140_HUMAN 1.9092246320613344 -PEA15_HUMAN 1.906810259700644 -ZC3H1_HUMAN 1.906810259700644 -SKA3_HUMAN 1.906810259700644 -MRP_HUMAN 1.9064228740215896 -KAT6A_HUMAN 1.9056028560293767 -SAMTR_HUMAN 1.8994200131133023 -TF3C2_HUMAN 1.896650097868306 -SNUT1_HUMAN 1.896650097868306 -D6RIF6_HUMAN 1.8928651212222507 -CLK3_HUMAN 1.8925827513787212 -KTNB1_HUMAN 1.8925827513787212 -RPGP2_HUMAN 1.883349235592444 -NU133_HUMAN 1.8818650852676615 -I3L0U5_HUMAN 1.8818650852676615 -A0A140T9T7_HUMAN 1.87554278578986 -MIA2_HUMAN 1.8721924141342208 -BICD1_HUMAN 1.8721924141342208 -G3V4K3_HUMAN 1.872162332032529 -RRAGD_HUMAN 1.872162332032529 -MFR1L_HUMAN 1.871047222852938 -ZC3HE_HUMAN 1.869044120260192 -DCAF1_HUMAN 1.869044120260192 -CNOT3_HUMAN 1.868022236667097 -API5_HUMAN 1.856455021578958 -WIPF1_HUMAN 1.8554918125016648 -GTF2I_HUMAN 1.8554918125016648 -CAMP1_HUMAN 1.8554918125016648 -DTBP1_HUMAN 1.8554918125016648 -SEC62_HUMAN 1.8554918125016648 -CATG_HUMAN 1.8553794198461877 -HNRPF_HUMAN 1.8446537391239848 -AAKB1_HUMAN 1.8446537391239848 -DCAKD_HUMAN 1.8446537391239848 -TREX1_HUMAN 1.8446537391239848 -NASP_HUMAN 1.843796582675232 -IKZF2_HUMAN 1.84325778310388 -NKTR_HUMAN 1.8429899049403595 -H0Y4E8_HUMAN 1.842425461713462 -F8W0Q9_HUMAN 1.842425461713462 -DCP1A_HUMAN 1.840430126933067 -TMM11_HUMAN 1.8399900893860357 -K1C16_HUMAN 1.839943247227828 -A0A087X1R1_HUMAN 1.8380453078961316 -NCOA2_HUMAN 1.8359056314622089 -ZN335_HUMAN 1.8359056314622089 -V9GYM8_HUMAN 1.8359056314622089 -TNIP1_HUMAN 1.8359056314622089 -TOM1_HUMAN 1.8359056314622089 -NUP98_HUMAN 1.8290791644626692 -DGCR8_HUMAN 1.827307091291376 -RNF31_HUMAN 1.825511192580273 -ATX2L_HUMAN 1.8190036768064892 -K7ELC2_HUMAN 1.8159384695411844 -ERIC1_HUMAN 1.8159384695411844 -CDA7L_HUMAN 1.8159384695411844 -HERC1_HUMAN 1.815501713477811 -SPD2A_HUMAN 1.815501713477811 -VP13B_HUMAN 1.815501713477811 -SCD_HUMAN 1.815034017163588 -TB22B_HUMAN 1.813795383823543 -TRA2A_HUMAN 1.8134821764910776 -ICAM2_HUMAN 1.812812980225904 -PCNP_HUMAN 1.812812980225904 -PDLI7_HUMAN 1.812812980225904 -H2AX_HUMAN 1.8124777079272067 -J3KPC5_HUMAN 1.8115344911869389 -XRCC6_HUMAN 1.8115344911869389 -ESYT2_HUMAN 1.8087656672268064 -NCOA3_HUMAN 1.806211545700895 -AKAP1_HUMAN 1.8053604267554 -DLGP4_HUMAN 1.8046647169767465 -MED1_HUMAN 1.8027453719934063 -CCNF_HUMAN 1.8027453719934063 -PRAG1_HUMAN 1.8027453719934063 -T184B_HUMAN 1.8027453719934063 -ANLN_HUMAN 1.8014868709712133 -JKIP1_HUMAN 1.8014868709712133 -B2CL2_HUMAN 1.8007998786172206 -VPP2_HUMAN 1.7994284332160366 -EP400_HUMAN 1.7992020816383725 -MABP1_HUMAN 1.7992020816383725 -DDA1_HUMAN 1.7992020816383725 -YJU2B_HUMAN 1.796675590645714 -LRRC1_HUMAN 1.795911398762831 -MB12A_HUMAN 1.7940052918727143 -NF1_HUMAN 1.7933085596410143 -TFPT_HUMAN 1.7933085596410143 -EF2_HUMAN 1.7933085596410143 -RERE_HUMAN 1.7933085596410143 -PUM1_HUMAN 1.7927955325322298 -SRS11_HUMAN 1.7927955325322298 -TLS1_HUMAN 1.7922326814840743 -RHG35_HUMAN 1.792165796529125 -ERBIN_HUMAN 1.7919187298648105 -UB2J1_HUMAN 1.7907974703379206 -I3L2J0_HUMAN 1.7907974703379206 -RL28_HUMAN 1.7867712786372327 -TIF1B_HUMAN 1.7867712786372327 -PTN18_HUMAN 1.7867712786372327 -C9JQE8_HUMAN 1.785668449430576 -CNOT2_HUMAN 1.784613430637171 -JUPI2_HUMAN 1.7785735346084048 -CND2_HUMAN 1.778246202637384 -ZDHC8_HUMAN 1.778246202637384 -A0A140TA76_HUMAN 1.778246202637384 -PREY_HUMAN 1.7775522661491632 -GGYF1_HUMAN 1.775787714332404 -RIC8A_HUMAN 1.774172424035765 -SASH3_HUMAN 1.773513627853916 -YLPM1_HUMAN 1.7720618765978158 -CBX8_HUMAN 1.7720618765978158 -PLAK2_HUMAN 1.7693290668469035 -CE170_HUMAN 1.7688201117820157 -CLPX_HUMAN 1.768201267123909 -CWC15_HUMAN 1.768201267123909 -AUTS2_HUMAN 1.7668267820920909 -A6NMQ1_HUMAN 1.7668267820920909 -BICRL_HUMAN 1.7668267820920909 -LAP2A_HUMAN 1.7668267820920909 -TBCD4_HUMAN 1.7668267820920909 -VTNC_HUMAN 1.7660954889737666 -TCPZ_HUMAN 1.7639058211203502 -SENP2_HUMAN 1.7619178688595742 -RBM15_HUMAN 1.7619178688595742 -RELL1_HUMAN 1.7604442112214442 -PRPS1_HUMAN 1.7604442112214442 -TASOR_HUMAN 1.7595362564644987 -SFPQ_HUMAN 1.7594791229630506 -ZN320_HUMAN 1.7594791229630506 -ZN592_HUMAN 1.7594791229630506 -EDC4_HUMAN 1.7594791229630506 -NCOA7_HUMAN 1.7594791229630506 -WAC_HUMAN 1.758477834900746 -PLCG1_HUMAN 1.7536469168550288 -ACACA_HUMAN 1.751804598112101 -F5GX28_HUMAN 1.7493077191635205 -SMG1_HUMAN 1.7493077191635205 -RS4X_HUMAN 1.744776394542244 -SHKB1_HUMAN 1.744776394542244 -UBP36_HUMAN 1.744776394542244 -MYPT1_HUMAN 1.743972249080854 -A0A1B0GVL4_HUMAN 1.7421036403940269 -NDE1_HUMAN 1.7347057683454448 -CBX3_HUMAN 1.7319626633555625 -LBR_HUMAN 1.7319626633555625 -PEX19_HUMAN 1.7313850342383876 -ASAP3_HUMAN 1.7299577009918496 -NCK1_HUMAN 1.7299577009918496 -TM209_HUMAN 1.7299577009918496 -BPTF_HUMAN 1.7299577009918496 -A6NIW2_HUMAN 1.7299577009918496 -GIT1_HUMAN 1.7293642143059356 -RENT1_HUMAN 1.7277438934967115 -FGD6_HUMAN 1.7265598328201814 -PALM_HUMAN 1.7258711686866466 -KLDC4_HUMAN 1.720045341334363 -ARFG1_HUMAN 1.720045341334363 -INCE_HUMAN 1.7192877172491672 -A0A0C4DGZ1_HUMAN 1.7192877172491672 -IF4G1_HUMAN 1.7184322502679668 -IF4H_HUMAN 1.717590657754205 -BRCA2_HUMAN 1.7141251254542167 -SH3L3_HUMAN 1.7092399321618308 -G3XAN8_HUMAN 1.7092399321618308 -MA7D1_HUMAN 1.7092399321618308 -TRIR_HUMAN 1.7092399321618308 -IQCB1_HUMAN 1.7092399321618308 -CIA2B_HUMAN 1.7092399321618308 -SRSF9_HUMAN 1.7080785314356497 -RALY_HUMAN 1.7080785314356497 -UCKL1_HUMAN 1.7080785314356497 -R4GMX8_HUMAN 1.7080785314356497 -MGAP_HUMAN 1.7080785314356497 -NSD3_HUMAN 1.7029043597981288 -GEPH_HUMAN 1.7000852357484857 -RPRD2_HUMAN 1.7000852357484857 -TDT_HUMAN 1.6966551417840128 -APC1_HUMAN 1.694898972781371 -DENR_HUMAN 1.694898972781371 -SI1L1_HUMAN 1.6919854649545665 -TCPD_HUMAN 1.690617938729064 -RB12B_HUMAN 1.6901698599848254 -KIF1C_HUMAN 1.6901698599848254 -ZN217_HUMAN 1.688737299297794 -ECT2_HUMAN 1.688737299297794 -PUM2_HUMAN 1.68758461340343 -PAN3_HUMAN 1.6869718435986891 -GLPC_HUMAN 1.6862254152495693 -PLCL2_HUMAN 1.6831225762746234 -CRKL_HUMAN 1.6818237841265384 -CIRBP_HUMAN 1.681141112634762 -WEE1_HUMAN 1.6804466318356368 -PTBP3_HUMAN 1.6800357982877163 -T2EB_HUMAN 1.679223063064028 -PARG_HUMAN 1.679223063064028 -TBC15_HUMAN 1.6772080389536972 -ARMC7_HUMAN 1.6772080389536972 -NFIC_HUMAN 1.6772080389536972 -PAPOA_HUMAN 1.6772080389536972 -AKA10_HUMAN 1.6772080389536972 -VMA21_HUMAN 1.6772080389536972 -A0A087WZV0_HUMAN 1.6771463933324673 -A0A1B0GTW1_HUMAN 1.6771463933324673 -X6R7X0_HUMAN 1.6771463933324673 -UNK_HUMAN 1.6771463933324673 -SENP7_HUMAN 1.6771463933324673 -OXSR1_HUMAN 1.6753615114019746 -PXK_HUMAN 1.6710146392964635 -KHDR1_HUMAN 1.6710146392964635 -RM38_HUMAN 1.6708431432717945 -ATG2A_HUMAN 1.670572014013327 -SF3B2_HUMAN 1.6698092197126786 -RHG04_HUMAN 1.668670898676557 -MBP_HUMAN 1.6643778204226511 -IN80E_HUMAN 1.6643778204226511 -PCY1A_HUMAN 1.6642517673671366 -WDHD1_HUMAN 1.663274744014383 -BPL1_HUMAN 1.663274744014383 -ARI4B_HUMAN 1.663274744014383 -SFR1_HUMAN 1.663274744014383 -TISD_HUMAN 1.663274744014383 -PHF6_HUMAN 1.663274744014383 -RCN3_HUMAN 1.6619734426235824 -LRRF1_HUMAN 1.6599301052774371 -PML_HUMAN 1.6564200532197424 -SRSF6_HUMAN 1.6556264804570962 -PP14B_HUMAN 1.6556264804570962 -PVRIG_HUMAN 1.6556264804570962 -TAF9B_HUMAN 1.6529959642169378 -KDM3B_HUMAN 1.6527500850207928 -ZN609_HUMAN 1.651172937797034 -RECQ4_HUMAN 1.6502214136897413 -PDE4A_HUMAN 1.6502214136897413 -H13_HUMAN 1.6487484134643091 -B4DY08_HUMAN 1.6487484134643091 -J3KNL6_HUMAN 1.6487484134643091 -MPP8_HUMAN 1.644622719177054 -B9EGE7_HUMAN 1.644622719177054 -ESS2_HUMAN 1.644622719177054 -NBEL2_HUMAN 1.64269992345517 -M3K2_HUMAN 1.6367104797579248 -SAFB2_HUMAN 1.6358338110561552 -PTN7_HUMAN 1.6349593665241 -ABR_HUMAN 1.6342311178769535 -A0A0B4J2E5_HUMAN 1.6330199652404895 -P121A_HUMAN 1.6324656025906694 -PHAG1_HUMAN 1.6323040840368914 -UNKL_HUMAN 1.630771279510544 -RBL1_HUMAN 1.630588813414638 -BCKD_HUMAN 1.630588813414638 -J3QQJ0_HUMAN 1.6283890950706992 -PSIP1_HUMAN 1.625271323331981 -PRR12_HUMAN 1.625181279988604 -ZZZ3_HUMAN 1.625181279988604 -RN169_HUMAN 1.625181279988604 -NCK5L_HUMAN 1.625181279988604 -FOXK2_HUMAN 1.625008982169042 -TYB10_HUMAN 1.623366530478342 -NOSIP_HUMAN 1.6231317053084626 -LC7L2_HUMAN 1.6231317053084626 -RLIG1_HUMAN 1.622993700947564 -SPT4H_HUMAN 1.6203457919362023 -NSE2_HUMAN 1.618118054418137 -DHX30_HUMAN 1.6168480219685335 -EGLN1_HUMAN 1.614854310072849 -PTSS1_HUMAN 1.6139697076023756 -CA131_HUMAN 1.6139697076023756 -IKZF1_HUMAN 1.6139697076023756 -FACD2_HUMAN 1.611266629431071 -BT2A1_HUMAN 1.610393863373781 -PDE3B_HUMAN 1.6098048778662402 -4EBP3_HUMAN 1.608898667913959 -ZN598_HUMAN 1.6066377596960149 -VIME_HUMAN 1.6047294192141035 -A0A5E8_HUMAN 1.603907509952331 -NOL8_HUMAN 1.603907509952331 -TEBP_HUMAN 1.603907509952331 -MARCS_HUMAN 1.6016262103462997 -EMSY_HUMAN 1.601107803033725 -TMED2_HUMAN 1.601064624453597 -UBN1_HUMAN 1.601064624453597 -INAR1_HUMAN 1.6004867491643342 -TLK2_HUMAN 1.6004867491643342 -BOREA_HUMAN 1.5987537264652687 -MBLC1_HUMAN 1.596365603301689 -C2CD5_HUMAN 1.594359049740105 -LMBD2_HUMAN 1.593257221651549 -MTMR4_HUMAN 1.5867062539232395 -RFTN1_HUMAN 1.5867062539232395 -A8K727_HUMAN 1.5867062539232395 -CEP95_HUMAN 1.5863495754611554 -B5MCU0_HUMAN 1.5863495754611554 -KIF1B_HUMAN 1.5863495754611554 -RASF5_HUMAN 1.5860233224503275 -AFF4_HUMAN 1.5860233224503275 -THOC2_HUMAN 1.5846150343713394 -TFDP2_HUMAN 1.5846150343713394 -J3KN59_HUMAN 1.5838005455677533 -TIA1_HUMAN 1.5838005455677533 -FBX42_HUMAN 1.5836658366009186 -A0A0J9YWL0_HUMAN 1.5774447536145375 -LEO1_HUMAN 1.576851257996113 -GIPC1_HUMAN 1.5764803833226075 -I2BP2_HUMAN 1.5758455443241708 -RWDD4_HUMAN 1.5752653922867537 -MAST4_HUMAN 1.574150295475778 -MAP1S_HUMAN 1.5697896741692865 -BRAP_HUMAN 1.562145663762073 -BRPF1_HUMAN 1.5613449534678685 -MORC3_HUMAN 1.5597182751399368 -KLF13_HUMAN 1.5593568988240107 -UBR4_HUMAN 1.5593568988240107 -MOV10_HUMAN 1.5587155374692414 -NUMB_HUMAN 1.5583262707564272 -ALKB5_HUMAN 1.5576469662179655 -HNRL1_HUMAN 1.5576469662179655 -SRGP3_HUMAN 1.55630259723018 -I1E4Y6_HUMAN 1.55630259723018 -ARI3A_HUMAN 1.553229166435797 -ACTB_HUMAN 1.553229166435797 -RCOR1_HUMAN 1.553229166435797 -LRCH3_HUMAN 1.553229166435797 -NUMBL_HUMAN 1.553229166435797 -SCML2_HUMAN 1.553229166435797 -H7C494_HUMAN 1.553229166435797 -J3KPH8_HUMAN 1.553229166435797 -SIX6_HUMAN 1.553229166435797 -E7ERS3_HUMAN 1.551636854535616 -HD_HUMAN 1.551636854535616 -PMYT1_HUMAN 1.551636854535616 -RBM39_HUMAN 1.551511002861387 -SPAST_HUMAN 1.551511002861387 -CUTC_HUMAN 1.549335131113205 -SHAN2_HUMAN 1.5484813148031706 -RUNX1_HUMAN 1.5467490697478377 -CATIN_HUMAN 1.544011596513742 -SMCO4_HUMAN 1.5425987598831323 -KIF14_HUMAN 1.5421741826769957 -HMGA1_HUMAN 1.5414008330832916 -RS3_HUMAN 1.5409742972892138 -SGT1_HUMAN 1.5374294639604158 -EPN1_HUMAN 1.5348290417612744 -H7C2Q8_HUMAN 1.53334867204404 -Z280C_HUMAN 1.5317923423127593 -ATG2B_HUMAN 1.5312360416149495 -TRRAP_HUMAN 1.530978566649734 -RRP15_HUMAN 1.530978566649734 -IBP2_HUMAN 1.530585166912765 -RL35_HUMAN 1.530585166912765 -SP130_HUMAN 1.5299457846891635 -KIF2A_HUMAN 1.529193301956704 -COASY_HUMAN 1.5278819476884955 -GRDN_HUMAN 1.525478926350487 -FUBP3_HUMAN 1.525285823427137 -LIPB1_HUMAN 1.52366361999421 -ATAT_HUMAN 1.5233702471669923 -DOK2_HUMAN 1.5228442562900155 -D3DQV9_HUMAN 1.521921608227538 -CDS2_HUMAN 1.521837471774267 -ZEP1_HUMAN 1.521837471774267 -TGFA1_HUMAN 1.518843374947793 -REEP4_HUMAN 1.5153527618285414 -ARHG1_HUMAN 1.5151231030186672 -A0A0J9YYD9_HUMAN 1.5151231030186672 -SRSF8_HUMAN 1.5126987508397562 -GPTC8_HUMAN 1.5095282736803597 -TPR_HUMAN 1.5067032141687422 -E2F3_HUMAN 1.5067032141687422 -PMS2_HUMAN 1.500450124285322 -KBTB7_HUMAN 1.5001236856081273 -DOCK7_HUMAN 1.4991713079622904 -INF2_HUMAN 1.4991713079622904 -KDM6B_HUMAN 1.4991713079622904 -CISD3_HUMAN 1.4989888127394944 -MS18A_HUMAN 1.4986862331154844 -TREF1_HUMAN 1.4986862331154844 -ADRM1_HUMAN 1.498638296123168 -X6RLX0_HUMAN 1.498638296123168 -H3BQL3_HUMAN 1.498638296123168 -ABCF2_HUMAN 1.4981130172751085 -KIF4A_HUMAN 1.4962166717747136 -PEX3_HUMAN 1.4938112941438502 -HNRPD_HUMAN 1.4937444379141005 -RHG15_HUMAN 1.492781918994018 -ZKSC8_HUMAN 1.4917764239854727 -TBD2B_HUMAN 1.4917764239854727 -KIFC1_HUMAN 1.4917764239854727 -PER1_HUMAN 1.4872646212864058 -TMF1_HUMAN 1.4844341997257475 -A0A0G2JNZ2_HUMAN 1.4831620582394172 -PLIN3_HUMAN 1.481077721531142 -SPTB2_HUMAN 1.4805861772647626 -ITFG2_HUMAN 1.480219922066905 -A0A0U1RRH7_HUMAN 1.478743639043696 -INT3_HUMAN 1.47704849491289 -A0A024R4E5_HUMAN 1.4744322137737111 -E9PJ55_HUMAN 1.4741661518581666 -PAK4_HUMAN 1.473348891568368 -LMBL3_HUMAN 1.4664663535517233 -RRP1B_HUMAN 1.4659087622757931 -IPYR_HUMAN 1.4651206340344114 -PRC2B_HUMAN 1.462102021086222 -ABL1_HUMAN 1.4600214671135892 -ATP9B_HUMAN 1.4595842003311976 -KIF22_HUMAN 1.4594594113221078 -CB068_HUMAN 1.4576375808977051 -SMRC1_HUMAN 1.4576375808977051 -PCX3_HUMAN 1.4576375808977051 -GUAA_HUMAN 1.4574508741014025 -J3KPF0_HUMAN 1.4570838456002488 -ALG3_HUMAN 1.4569641682536676 -CD3Z_HUMAN 1.456273589935328 -MADD_HUMAN 1.455795107080136 -NUP93_HUMAN 1.4506568843932597 -UBN2_HUMAN 1.4452368742932693 -GAB3_HUMAN 1.4424549898390118 -MUS81_HUMAN 1.4371602289363188 -MGMT_HUMAN 1.4364871925598512 -WIPF2_HUMAN 1.4364871925598512 -ASHWN_HUMAN 1.4364871925598512 -I17RA_HUMAN 1.436131077602721 -ZN573_HUMAN 1.4357694665997545 -C9J7T7_HUMAN 1.4332804246591722 -ETS1_HUMAN 1.432391983160914 -PSA5_HUMAN 1.432391983160914 -IFG15_HUMAN 1.4315219662451866 -TACC1_HUMAN 1.4274553490164978 -CD3E_HUMAN 1.4270205175131458 -UBF1_HUMAN 1.4265158906429751 -RFX7_HUMAN 1.4245729184327107 -RBMX2_HUMAN 1.4221072948726277 -ZN330_HUMAN 1.4203653481358378 -NFAC3_HUMAN 1.4200481489287875 -DEN1B_HUMAN 1.4200481489287875 -A0A0C4DFM7_HUMAN 1.4177864760910868 -KDIS_HUMAN 1.4170719101299214 -MTG8R_HUMAN 1.4170719101299214 -KI13B_HUMAN 1.4170719101299214 -SZRD1_HUMAN 1.4167301823964789 -BAZ1B_HUMAN 1.4141155725530086 -PSF2_HUMAN 1.4141155725530086 -A0A0A0MRR7_HUMAN 1.4141148092544975 -CHSP1_HUMAN 1.4140634399725864 -NGAP_HUMAN 1.4140634399725864 -LPIN1_HUMAN 1.4139384363862515 -CD5_HUMAN 1.4134962460604463 -RYBP_HUMAN 1.4130726650170624 -H7BZJ3_HUMAN 1.4079714054211705 -SEPT9_HUMAN 1.4077462420892584 -SND1_HUMAN 1.4077462420892584 -TOP1_HUMAN 1.407165160730767 -UBA1_HUMAN 1.4055026873551124 -ZN106_HUMAN 1.4042785122991548 -UBXN7_HUMAN 1.4027498920199597 -PAPOG_HUMAN 1.4012255401070153 -CHD4_HUMAN 1.398338110192834 -JUNB_HUMAN 1.398338110192834 -PSN1_HUMAN 1.3955225663490065 -M0QXA7_HUMAN 1.3954546462122803 -CHIP_HUMAN 1.3951713002688575 -G5EA09_HUMAN 1.3945555670580556 -ACTY_HUMAN 1.3929551436380998 -SNRK_HUMAN 1.386059858172826 -A0A0A0MTC5_HUMAN 1.3857922789405932 -BAG6_HUMAN 1.381734440271269 -F5H8D7_HUMAN 1.381311096353027 -ZN397_HUMAN 1.3790844369432236 -CCDC9_HUMAN 1.3790844369432236 -PRSR1_HUMAN 1.3790708641788665 -FMNL1_HUMAN 1.378708531371344 -ACAP1_HUMAN 1.378708531371344 -MINT_HUMAN 1.3740579455411437 -MEF2A_HUMAN 1.372105870811973 -PATL1_HUMAN 1.372105870811973 -KDM2A_HUMAN 1.372105870811973 -PKHA1_HUMAN 1.370439810950771 -B4E0Y9_HUMAN 1.3650013905568206 -LDB1_HUMAN 1.3638978446465069 -PPM1G_HUMAN 1.3638978446465069 -B1AM27_HUMAN 1.3638978446465069 -PTTG_HUMAN 1.362621012484477 -RSF1_HUMAN 1.3597869554337356 -MEF2D_HUMAN 1.355687628501374 -E9PNT2_HUMAN 1.3510999693925152 -FAF1_HUMAN 1.3507891200859448 -ZBED4_HUMAN 1.3462298959658738 -RBGP1_HUMAN 1.3459376771082716 -UBAP2_HUMAN 1.3459376771082716 -ABLM1_HUMAN 1.3459376771082716 -E41L2_HUMAN 1.3459376771082716 -EHBP1_HUMAN 1.3445089856069514 -ZCCHV_HUMAN 1.3445089856069514 -BMP2K_HUMAN 1.3421465341377865 -TESK2_HUMAN 1.342136945246755 -E7EPT4_HUMAN 1.3399916693835972 -MFF_HUMAN 1.3393202241362625 -ELP4_HUMAN 1.3390674987148612 -TPC2A_HUMAN 1.336601117149929 -WBP2_HUMAN 1.336601117149929 -A0A0A0MT60_HUMAN 1.3303932882739926 -R3HD1_HUMAN 1.325699598575591 -VRK3_HUMAN 1.325699598575591 -CNOT4_HUMAN 1.3225681523274029 -A0A087WWF6_HUMAN 1.321912323523786 -CO039_HUMAN 1.321912323523786 -FADD_HUMAN 1.3219024088198772 -PSD11_HUMAN 1.3182975778427108 -KKCC2_HUMAN 1.3180526639899417 -SHB_HUMAN 1.3153136536263887 -TIM50_HUMAN 1.3124760170954974 -ZBT40_HUMAN 1.3119173775121502 -HS105_HUMAN 1.311829224711046 -RPA43_HUMAN 1.3114040854518267 -DDX55_HUMAN 1.3099985711203703 -FANCJ_HUMAN 1.3054621506029551 -PRDX6_HUMAN 1.3036944847038232 -C2C2L_HUMAN 1.3025993654945351 -K1C9_HUMAN 1.3012384398573682 -TB10A_HUMAN 1.291913505353536 -TDIF2_HUMAN 1.289184704701846 -SAFB1_HUMAN 1.289184704701846 -OSBL3_HUMAN 1.2849550851075413 -EXOC4_HUMAN 1.2834606945086136 -E7EQS8_HUMAN 1.277233313737906 -CSKI1_HUMAN 1.2766428307525943 -A0A0A0MQU4_HUMAN 1.2747712441742238 -MAST2_HUMAN 1.2747712441742238 -E7EVB6_HUMAN 1.2747712441742238 -MDC1_HUMAN 1.2736999749815556 -DPOA2_HUMAN 1.273410703338121 -RN114_HUMAN 1.2718500041542673 -INT1_HUMAN 1.2692161465227425 -P5CR2_HUMAN 1.2692161465227425 -PRPF3_HUMAN 1.26312637564306 -STML2_HUMAN 1.2606316627801153 -CDK17_HUMAN 1.2606316627801153 -F5H527_HUMAN 1.2600223449685397 -PNKD_HUMAN 1.259550361396689 -M0R226_HUMAN 1.25874242722772 -TBCE_HUMAN 1.25874242722772 -ZCHC8_HUMAN 1.254357705738553 -UCK2_HUMAN 1.254357705738553 -CPZIP_HUMAN 1.254357705738553 -EDF1_HUMAN 1.254357705738553 -BRD1_HUMAN 1.2528130397867507 -SIN3A_HUMAN 1.2522578417768275 -CA174_HUMAN 1.2515272999610367 -SOX4_HUMAN 1.2478890430709089 -RBBP5_HUMAN 1.2475593922253896 -FIZ1_HUMAN 1.2470766183852005 -WAPL_HUMAN 1.2437444782694829 -RBM26_HUMAN 1.2426795081873598 -TM230_HUMAN 1.2418536980236523 -AN32A_HUMAN 1.2396318901092034 -KDM2B_HUMAN 1.2395522882104963 -MTFR1_HUMAN 1.2392179222024022 -SMCA5_HUMAN 1.2390939190066692 -J3KTL2_HUMAN 1.2314350027874297 -AFG1L_HUMAN 1.2214395107571645 -X6RAL5_HUMAN 1.2214395107571645 -STX4_HUMAN 1.21982850700671 -TMCO6_HUMAN 1.2170234258276496 -A0A0A0MT22_HUMAN 1.213667888116882 -TAGAP_HUMAN 1.211178504714197 -ATN1_HUMAN 1.211178504714197 -RBM6_HUMAN 1.210366578067677 -CT2NL_HUMAN 1.210366578067677 -ZAP70_HUMAN 1.2090669777370142 -S4R347_HUMAN 1.2086702565688232 -KCTD9_HUMAN 1.2074600584781503 -CCDC6_HUMAN 1.2008769173364633 -A0A0D9SF60_HUMAN 1.2008769173364633 -TBB2B_HUMAN 1.1988524735897537 -GABPA_HUMAN 1.196508717755136 -RLA2_HUMAN 1.1958261054040045 -PSMD2_HUMAN 1.1954554880085198 -Q9NPA5_HUMAN 1.1935372180611366 -LIMD1_HUMAN 1.190607333317505 -SCPDL_HUMAN 1.188872309904105 -GYS1_HUMAN 1.188872309904105 -RED_HUMAN 1.1878250534090182 -TCAB1_HUMAN 1.1865290485394648 -ACBP_HUMAN 1.1839392587237012 -SPAG7_HUMAN 1.1834390080524702 -MK14_HUMAN 1.1834390080524702 -PCBP2_HUMAN 1.179739158975082 -B0QYS7_HUMAN 1.1790711506753633 -LCK_HUMAN 1.1790711506753633 -H33_HUMAN 1.1783755536979346 -EMC5_HUMAN 1.173901663292787 -RFX5_HUMAN 1.171520785487593 -SMC4_HUMAN 1.171520785487593 -NSUN5_HUMAN 1.170050718503766 -PIAS1_HUMAN 1.1681182680530655 -K1C10_HUMAN 1.1652764267874487 -LAGE3_HUMAN 1.1652764267874487 -DMXL2_HUMAN 1.1647377477877603 -ARBK2_HUMAN 1.1626041254547057 -F8W9L8_HUMAN 1.1626041254547057 -FZR1_HUMAN 1.1603735977113108 -TMX1_HUMAN 1.1593642064456229 -RRAS2_HUMAN 1.156427252329124 -C9JA08_HUMAN 1.156208778971734 -ARM10_HUMAN 1.156208778971734 -PP6R3_HUMAN 1.156208778971734 -NSRP1_HUMAN 1.1534793335105478 -CNBP_HUMAN 1.1525590608925138 -CRIP2_HUMAN 1.152390933348122 -P53_HUMAN 1.151807870311012 -NOC2L_HUMAN 1.1442551046759946 -J3KNR0_HUMAN 1.143363662798499 -RAVR2_HUMAN 1.143048359008893 -ATX10_HUMAN 1.1412670168811665 -DOK1_HUMAN 1.1355799997588671 -A0A0A0MQS2_HUMAN 1.1299340550653791 -COMD6_HUMAN 1.128900486251755 -LMNB2_HUMAN 1.1275374703528738 -EI24_HUMAN 1.1243593918876376 -A0A087WTW0_HUMAN 1.1180470836417982 -PGM2_HUMAN 1.1178546649914076 -Q5HY81_HUMAN 1.1121118109072743 -LAT_HUMAN 1.1115393335893018 -MCM3_HUMAN 1.111027922417744 -PACN3_HUMAN 1.1105882253298058 -D4PHA4_HUMAN 1.1098582831892392 -HAUS8_HUMAN 1.1054250730101307 -GBF1_HUMAN 1.1054250730101307 -AKT1_HUMAN 1.104840709561845 -DDRGK_HUMAN 1.1002324397496726 -SFR19_HUMAN 1.0967187621892156 -C1TM_HUMAN 1.0940639419500142 -SELK_HUMAN 1.0940639419500142 -E9PFI5_HUMAN 1.0926831622151392 -PSMD4_HUMAN 1.0910671549306885 -SEPT6_HUMAN 1.0880741151441735 -NOP56_HUMAN 1.087160586916168 -RBX1_HUMAN 1.086769181236134 -CPPED_HUMAN 1.0860017014311272 -PRP4K_HUMAN 1.0829321344921683 -A0A087WUT6_HUMAN 1.080793816542294 -SYTC_HUMAN 1.0770238031876582 -SCMC1_HUMAN 1.0730463251789988 -ITPI2_HUMAN 1.0719684141051082 -DMAP1_HUMAN 1.071577068546023 -DCA10_HUMAN 1.0694030417898757 -WDR75_HUMAN 1.0677297524298175 -CH60_HUMAN 1.0657634082295693 -EVL_HUMAN 1.0644695104547544 -AJUBA_HUMAN 1.063666825180044 -KATIP_HUMAN 1.0627849111635628 -M3K20_HUMAN 1.0519697889423665 -G1UD79_HUMAN 1.04739233499352 -RAF1_HUMAN 1.045668159710195 -F241B_HUMAN 1.0441422484606755 -VIR_HUMAN 1.042396269280326 -PP16B_HUMAN 1.0390585238828396 -J3QTA6_HUMAN 1.0386996097261536 -UBE2O_HUMAN 1.028488954102181 -MYO5A_HUMAN 1.0254285457955026 -E7EV07_HUMAN 1.022182932984924 -4EBP2_HUMAN 1.0196538521636485 -NCOR1_HUMAN 1.0185667849408584 -DAP1_HUMAN 1.016504798868468 -REPS1_HUMAN 1.0162008775157336 -SOX1_HUMAN 1.0153622127624502 -FYV1_HUMAN 1.0142648815187705 -A0A1B0GTN9_HUMAN 1.0109627568592905 -SRA1_HUMAN 1.0096828639556032 -UIF_HUMAN 1.0096828639556032 -JHD2C_HUMAN 1.0094992600098456 -APTX_HUMAN 1.0084603804047647 -J3KQL8_HUMAN 1.0077614527324577 -AXIN1_HUMAN 1.005808582397118 -RTN4_HUMAN 1.0051920614387837 -J3KR72_HUMAN 1.0037550381491789 -PARP6_HUMAN 1.003196032647505 -T184C_HUMAN 1.0022879202716266 diff --git a/hiv-benchmarking/hiv_processed_data/modified_prize_060.txt b/hiv-benchmarking/hiv_processed_data/modified_prize_060.txt deleted file mode 100644 index 9994714..0000000 --- a/hiv-benchmarking/hiv_processed_data/modified_prize_060.txt +++ /dev/null @@ -1,1781 +0,0 @@ -NODEID prize -A9Z1X7_HUMAN 6.343096753401681 -HTF4_HUMAN 6.341176225843264 -EIF3A_HUMAN 6.278851012013488 -B0YIW2_HUMAN 5.581820586044439 -HBA_HUMAN 5.581820586044439 -H3BLZ8_HUMAN 5.477823239269641 -TRFE_HUMAN 5.334125824240235 -DDX52_HUMAN 5.174845117869905 -ACINU_HUMAN 5.158390930270963 -TMCO6_HUMAN 5.0865083998731 -FBLN1_HUMAN 5.0865083998731 -TAGL2_HUMAN 4.898987333103724 -TLS1_HUMAN 4.898987333103724 -4ET_HUMAN 4.898987333103724 -FETUA_HUMAN 4.898987333103724 -EDF1_HUMAN 4.753524914278521 -TOM20_HUMAN 4.753524914278521 -NUCKS_HUMAN 4.753524914278521 -PHF3_HUMAN 4.753524914278521 -TR150_HUMAN 4.732635903457529 -PTN1_HUMAN 4.649058136710953 -NEK4_HUMAN 4.649058136710953 -LARP1_HUMAN 4.649058136710953 -SMRC1_HUMAN 4.649058136710953 -SRRM2_HUMAN 4.649058136710953 -Q5T5H1_HUMAN 4.649058136710953 -CCD86_HUMAN 4.649058136710953 -PAK4_HUMAN 4.649058136710953 -CD166_HUMAN 4.630059193615658 -CPSF7_HUMAN 4.603945627430853 -ATX2L_HUMAN 4.57995222468541 -HNRPK_HUMAN 4.57995222468541 -RL34_HUMAN 4.568697931367667 -2A5D_HUMAN 4.553439376520597 -A0A075B738_HUMAN 4.553439376520597 -RRP12_HUMAN 4.525949613864842 -AGFG1_HUMAN 4.497219015813258 -TFR1_HUMAN 4.497219015813258 -UBAC2_HUMAN 4.441375748603867 -SNX2_HUMAN 4.434437246356287 -RNF25_HUMAN 4.401484592892618 -ACAP1_HUMAN 4.401484592892618 -AGAP2_HUMAN 4.401410413245209 -DCP2_HUMAN 4.401410413245209 -SRSF5_HUMAN 4.401410413245209 -PRC2A_HUMAN 4.401410413245209 -NPM_HUMAN 4.388776771651659 -A0A087X0X3_HUMAN 4.388776771651659 -HTSF1_HUMAN 4.388776771651659 -STMN1_HUMAN 4.388776771651659 -G0XQ39_HUMAN 4.388776771651659 -MYC_HUMAN 4.371909274401753 -RAI1_HUMAN 4.371909274401753 -RTN4_HUMAN 4.352386472972332 -PHF2_HUMAN 4.338487243836551 -MINT_HUMAN 4.333357363918116 -TF2B_HUMAN 4.302349340291357 -GLYR1_HUMAN 4.302349340291357 -CHD1_HUMAN 4.302349340291357 -DTD1_HUMAN 4.302349340291357 -F8VX04_HUMAN 4.296308796231895 -KPBB_HUMAN 4.256576053583031 -PTN6_HUMAN 4.256576053583031 -RBM5_HUMAN 4.256576053583031 -LYAR_HUMAN 4.250159505368727 -LCAP_HUMAN 4.247227922154882 -ALBU_HUMAN 4.232255423400988 -H4_HUMAN 4.232255423400988 -TBA1B_HUMAN 4.2136464273032646 -Q9HBD4_HUMAN 4.211317356325475 -WBP11_HUMAN 4.208091431562528 -KI18B_HUMAN 4.186742180098104 -F8W0Q9_HUMAN 4.1783681130751615 -PCM1_HUMAN 4.1783681130751615 -SPTB2_HUMAN 4.1783681130751615 -OSBL3_HUMAN 4.17829685567155 -SASH3_HUMAN 4.17829685567155 -SMBP2_HUMAN 4.17829685567155 -SCAM2_HUMAN 4.17829685567155 -SR140_HUMAN 4.153933358800745 -SC22B_HUMAN 4.152515054060739 -PLAK2_HUMAN 4.152515054060739 -OSB11_HUMAN 4.152515054060739 -VTNC_HUMAN 4.120723433343331 -B7ZL14_HUMAN 4.112024019738183 -NU153_HUMAN 4.111796391926523 -DNLI1_HUMAN 4.091509234016306 -RBM3_HUMAN 4.07578779438785 -LBR_HUMAN 4.07099390650613 -DDRGK_HUMAN 4.07099390650613 -HJURP_HUMAN 4.068226501317466 -ASHWN_HUMAN 4.068226501317466 -E7ESS2_HUMAN 4.068226501317466 -PZP_HUMAN 4.068150407428992 -SP16H_HUMAN 4.066397214904211 -PHAX_HUMAN 4.064125401548571 -GCFC2_HUMAN 4.051435663285689 -CD3E_HUMAN 4.051435663285689 -PHF8_HUMAN 4.051435663285689 -KTNA1_HUMAN 4.051435663285689 -KI67_HUMAN 4.032997482233417 -CPZIP_HUMAN 4.028916213096974 -EPB41_HUMAN 4.016588518455186 -MORC2_HUMAN 4.0106948331092696 -PML_HUMAN 3.9920272692459497 -LCP2_HUMAN 3.991856590152224 -A8MXP9_HUMAN 3.9890007464151327 -P53_HUMAN 3.986936425830184 -A0A0A0MTS7_HUMAN 3.9844445443194014 -H37_HUMAN 3.960658462798587 -ZMYD8_HUMAN 3.960056522033299 -M0QYC1_HUMAN 3.959480419609159 -NOSIP_HUMAN 3.9542424847257545 -WAC_HUMAN 3.911579870736385 -NDUA5_HUMAN 3.9085984456603344 -TBCD5_HUMAN 3.895239304317212 -GELS_HUMAN 3.870442771270344 -ITIH2_HUMAN 3.870442771270344 -AB1IP_HUMAN 3.84470125099561 -SF3B1_HUMAN 3.8418096567452302 -SRSF9_HUMAN 3.8418096567452302 -PRC2C_HUMAN 3.83967142642704 -MCTP2_HUMAN 3.83967142642704 -MA7D1_HUMAN 3.833836160262521 -CDK1_HUMAN 3.833836160262521 -LUZP1_HUMAN 3.833836160262521 -GPTC8_HUMAN 3.833836160262521 -EI24_HUMAN 3.8328762818784976 -KLDC4_HUMAN 3.8039477122984495 -UFL1_HUMAN 3.8039477122984495 -SRSF2_HUMAN 3.7961469536001258 -RBMX_HUMAN 3.7886902447132815 -ESS2_HUMAN 3.772763518572416 -NU133_HUMAN 3.772763518572416 -LAP2A_HUMAN 3.772763518572416 -KCC4_HUMAN 3.7641746801720632 -RRP1B_HUMAN 3.753050839667112 -VENTX_HUMAN 3.753050839667112 -EPN4_HUMAN 3.7506192770943407 -TCOF_HUMAN 3.736683906762259 -GRAP2_HUMAN 3.7299875110275424 -HXB4_HUMAN 3.729511116100064 -LGUL_HUMAN 3.726570937832407 -CBX3_HUMAN 3.7202457191566873 -ZC3H1_HUMAN 3.7103758360372376 -FBX42_HUMAN 3.7103758360372376 -E9PCW1_HUMAN 3.703850278778916 -LEUK_HUMAN 3.703850278778916 -PHAG1_HUMAN 3.689478221371008 -PPM1H_HUMAN 3.689478221371008 -CHSP1_HUMAN 3.689478221371008 -SRS10_HUMAN 3.689478221371008 -RLIG1_HUMAN 3.6876040053311 -SENP3_HUMAN 3.670024161869914 -A0A0G2JNZ2_HUMAN 3.662081284722043 -AR6P4_HUMAN 3.661493292298249 -KHDR1_HUMAN 3.661493292298249 -LAP2B_HUMAN 3.647766935759595 -B7ZKJ8_HUMAN 3.6385360638094326 -A2AP_HUMAN 3.6385360638094326 -CO3_HUMAN 3.636573293729437 -TRFL_HUMAN 3.636573293729437 -DC1L1_HUMAN 3.632446898597512 -YLPM1_HUMAN 3.632446898597512 -ROA2_HUMAN 3.632446898597512 -FIP1_HUMAN 3.631000353453803 -RB_HUMAN 3.626187913390664 -LS14A_HUMAN 3.6258385285883463 -H13_HUMAN 3.623421166516008 -NFAC1_HUMAN 3.623421166516008 -TRAD1_HUMAN 3.6070470127990206 -LASP1_HUMAN 3.606393885395028 -CL16A_HUMAN 3.6056913015762313 -F241B_HUMAN 3.6008409341145917 -MAP4_HUMAN 3.6008409341145917 -STAU1_HUMAN 3.60042961740718 -M0QXA7_HUMAN 3.5908748668239943 -LIME1_HUMAN 3.588092477415545 -TM160_HUMAN 3.575353156831956 -IF4B_HUMAN 3.575353156831956 -PRCC_HUMAN 3.575353156831956 -MORC3_HUMAN 3.575353156831956 -E7EQT4_HUMAN 3.575353156831956 -AKAP1_HUMAN 3.575353156831956 -RANG_HUMAN 3.5748349831619954 -DDX3X_HUMAN 3.564645989850563 -WIPI2_HUMAN 3.5637338388107627 -CPIN1_HUMAN 3.5637338388107627 -MCM4_HUMAN 3.5586613811896384 -G3BP2_HUMAN 3.548553190934899 -MEPCE_HUMAN 3.5455679145723744 -HDAC2_HUMAN 3.5455679145723744 -CLAP1_HUMAN 3.5455679145723744 -LMNB2_HUMAN 3.538647675223596 -E7EQZ4_HUMAN 3.517204355209181 -CO9_HUMAN 3.517204355209181 -CDK9_HUMAN 3.516057833486569 -2A5A_HUMAN 3.516057833486569 -ZC11A_HUMAN 3.507357219494613 -PLEC_HUMAN 3.494788599301796 -EDC4_HUMAN 3.494788599301796 -NFX1_HUMAN 3.4735819185057712 -CUL4A_HUMAN 3.459130272877953 -B7WPE2_HUMAN 3.459130272877953 -C9JV77_HUMAN 3.4436972171003912 -ZBT11_HUMAN 3.4320497781881105 -HMGA1_HUMAN 3.4320497781881105 -SEPT9_HUMAN 3.4261670156433603 -RS6_HUMAN 3.4261670156433603 -ITPR1_HUMAN 3.4261670156433603 -EVL_HUMAN 3.425341959321777 -VIME_HUMAN 3.4201576861668763 -MCM3_HUMAN 3.420089571135709 -A0A0C4DGT3_HUMAN 3.420089571135709 -ZC3HD_HUMAN 3.420089571135709 -POSTN_HUMAN 3.4134039075494336 -THBG_HUMAN 3.4134039075494336 -CDA7L_HUMAN 3.413395827264136 -DLGP4_HUMAN 3.3960732772028077 -GRSF1_HUMAN 3.3816661060042734 -JUPI1_HUMAN 3.377420089178764 -NCOA5_HUMAN 3.372330414233952 -RBL1_HUMAN 3.3693968233714715 -CSRP1_HUMAN 3.368626896839261 -APOA1_HUMAN 3.364265154316689 -VTDB_HUMAN 3.363583182966833 -AFG1L_HUMAN 3.363583182966833 -OGT1_HUMAN 3.363583182966833 -ARF5_HUMAN 3.363583182966833 -CDC20_HUMAN 3.3612437200008958 -ARFG2_HUMAN 3.3573059164791 -HDAC1_HUMAN 3.353284197844687 -MYPT1_HUMAN 3.349119808276538 -SDF2L_HUMAN 3.33063379713005 -NP1L1_HUMAN 3.33063379713005 -PTMS_HUMAN 3.33063379713005 -P2RY8_HUMAN 3.3287314734817786 -PEDF_HUMAN 3.3244291839285243 -CSN1_HUMAN 3.323302577866717 -F8WA39_HUMAN 3.314748749215954 -EF1B_HUMAN 3.311261386839016 -ZN317_HUMAN 3.308222512365894 -PRP6_HUMAN 3.308222512365894 -THIC_HUMAN 3.302267119982475 -TRAM1_HUMAN 3.291257467249629 -SLAI2_HUMAN 3.288347923069404 -MARF1_HUMAN 3.288347923069404 -PUM1_HUMAN 3.288347923069404 -ANLN_HUMAN 3.288347923069404 -ZCCHV_HUMAN 3.272291398277376 -SETD2_HUMAN 3.2722368623821807 -DNMT1_HUMAN 3.2722368623821807 -RB15B_HUMAN 3.2722368623821807 -STXB5_HUMAN 3.271880947435516 -CLPX_HUMAN 3.257136127624752 -CBX8_HUMAN 3.246190181745752 -CP131_HUMAN 3.2414042120621387 -STT3B_HUMAN 3.210363373294723 -RFX7_HUMAN 3.205193553876452 -GYS1_HUMAN 3.200731064878577 -BAZ1B_HUMAN 3.1998724251452733 -RBP2_HUMAN 3.1989946829845137 -NU107_HUMAN 3.196758764445284 -TIM13_HUMAN 3.196152667824138 -EIF3M_HUMAN 3.196152667824138 -EDRF1_HUMAN 3.184729660549928 -RBM14_HUMAN 3.183154820255894 -LIPA3_HUMAN 3.183154820255894 -BCLF1_HUMAN 3.182325579091621 -E9PFI5_HUMAN 3.1756661941859967 -RAC2_HUMAN 3.1756661941859967 -DPOA2_HUMAN 3.1751442119066238 -RS21_HUMAN 3.1746642551842688 -TRA2B_HUMAN 3.174225934200866 -DGKZ_HUMAN 3.172875137451181 -LCK_HUMAN 3.172875137451181 -UTP18_HUMAN 3.172875137451181 -R3HD1_HUMAN 3.1721484673372498 -KAT6A_HUMAN 3.171504173729173 -J3KTL2_HUMAN 3.171504173729173 -IF4G1_HUMAN 3.171504173729173 -B4DY08_HUMAN 3.169092054389516 -DOCK7_HUMAN 3.1624955108401056 -FA53C_HUMAN 3.1596782970322166 -INCE_HUMAN 3.147133146874228 -ACTB_HUMAN 3.1461775953543336 -A2MG_HUMAN 3.1461775953543336 -E9PGC8_HUMAN 3.139770692315804 -TAOK3_HUMAN 3.128908505191591 -CD3G_HUMAN 3.128908505191591 -RPRD2_HUMAN 3.1163766142179288 -LRRF1_HUMAN 3.102032133600808 -UBE2O_HUMAN 3.10197222951546 -RNPS1_HUMAN 3.10197222951546 -LAR4B_HUMAN 3.0952598293741524 -RICTR_HUMAN 3.0931531761760143 -G3BP1_HUMAN 3.0931531761760143 -EIF3F_HUMAN 3.0923378805912427 -RIC8A_HUMAN 3.0923378805912427 -IF4H_HUMAN 3.0893776814980867 -LMNB1_HUMAN 3.084961563275193 -CAF1A_HUMAN 3.0832250567178034 -KNL1_HUMAN 3.0832250567178034 -UBP2L_HUMAN 3.0832250567178034 -RBM15_HUMAN 3.079092843273389 -DEFI6_HUMAN 3.076175194305481 -NUFP2_HUMAN 3.074828125470865 -NFAC3_HUMAN 3.052224257371509 -UB2J1_HUMAN 3.0379043550731826 -M3K7_HUMAN 3.0379043550731826 -GUAA_HUMAN 3.0379043550731826 -C9JQE8_HUMAN 3.0379043550731826 -REN3B_HUMAN 3.034239119311437 -GNL1_HUMAN 3.0228260202225354 -BMS1_HUMAN 3.0228260202225354 -F8W8D3_HUMAN 2.983214064047325 -RS27_HUMAN 2.9776224782214022 -NELFE_HUMAN 2.973008187319219 -H1X_HUMAN 2.9702237590072382 -TB22B_HUMAN 2.9643627794173883 -NUMA1_HUMAN 2.9597387852660417 -U2AF2_HUMAN 2.956328120758974 -RASL3_HUMAN 2.9536709659580604 -PDCD4_HUMAN 2.949670994594595 -HAKAI_HUMAN 2.9486957246323016 -GABPA_HUMAN 2.9465232017182568 -DKC1_HUMAN 2.945843775750084 -CSPP1_HUMAN 2.945225853807718 -MS18A_HUMAN 2.944427988955578 -TMM11_HUMAN 2.943849448129372 -PLMN_HUMAN 2.9394753087147225 -A0A5E8_HUMAN 2.933988728065752 -I1E4Y6_HUMAN 2.931855559472644 -SCAFB_HUMAN 2.9220695108673373 -J3KPD3_HUMAN 2.91593368553183 -DOK2_HUMAN 2.8984675262792234 -M3K2_HUMAN 2.8984675262792234 -RIF1_HUMAN 2.897579834240564 -WWP2_HUMAN 2.890106774640424 -E7ERS3_HUMAN 2.8890984183579715 -HACL2_HUMAN 2.866956886649357 -ESYT2_HUMAN 2.86507366537191 -RUNX1_HUMAN 2.856550719233104 -TRA2A_HUMAN 2.850096276296079 -SF3B2_HUMAN 2.848132942575468 -DJC17_HUMAN 2.846320230664697 -DOCK2_HUMAN 2.844747069977484 -A6NMQ1_HUMAN 2.8423630443254466 -TETN_HUMAN 2.8337809317710136 -DNMBP_HUMAN 2.828428703259372 -FYV1_HUMAN 2.8273019635280763 -HPRT_HUMAN 2.8253881941849808 -YBOX3_HUMAN 2.8225364630128387 -SRSF6_HUMAN 2.8168366046908817 -RL23A_HUMAN 2.816597515019857 -ROAA_HUMAN 2.815128862027249 -DNJB6_HUMAN 2.813719121184025 -S12A2_HUMAN 2.8125517993486877 -PSD11_HUMAN 2.811200866390171 -TB10A_HUMAN 2.811200866390171 -TXD17_HUMAN 2.810462680348271 -SEPT3_HUMAN 2.810462680348271 -F5H8D7_HUMAN 2.8097966330524167 -HS90B_HUMAN 2.806994787322086 -DCP1B_HUMAN 2.806994787322086 -ITIH1_HUMAN 2.800965276594737 -TBC15_HUMAN 2.798815504047829 -BBX_HUMAN 2.798815504047829 -SOX4_HUMAN 2.7981630786118195 -EI2BD_HUMAN 2.79168174161911 -RL37_HUMAN 2.7834920424511878 -A0A0U1RRH7_HUMAN 2.776597240080683 -TSP1_HUMAN 2.776597240080683 -CC020_HUMAN 2.776597240080683 -NIPBL_HUMAN 2.770612115493293 -AMRA1_HUMAN 2.764017995653386 -CND2_HUMAN 2.764017995653386 -WDR59_HUMAN 2.764017995653386 -ZN638_HUMAN 2.7618986760443587 -KDM3B_HUMAN 2.756032352923451 -V9GYM8_HUMAN 2.7554518502099064 -SCAM3_HUMAN 2.7554518502099064 -B4DNK4_HUMAN 2.7513650187869705 -SIPA1_HUMAN 2.749854139717848 -RL36_HUMAN 2.7481923873666387 -E9PRY8_HUMAN 2.7481923873666387 -CYBP_HUMAN 2.7445815636606303 -TOM1_HUMAN 2.7349005881513886 -GTSE1_HUMAN 2.734508923866527 -EP400_HUMAN 2.722718898351411 -HNRPU_HUMAN 2.7225202323227413 -CATC_HUMAN 2.7205715939563104 -IKZF1_HUMAN 2.705766898088222 -TADBP_HUMAN 2.705766898088222 -I2BP2_HUMAN 2.704273981724401 -PLCG1_HUMAN 2.685806242746805 -EIF3C_HUMAN 2.683883458110288 -LSM3_HUMAN 2.683425139797944 -CLCA_HUMAN 2.683425139797944 -NEP1_HUMAN 2.683425139797944 -X6RAL5_HUMAN 2.683425139797944 -MOV10_HUMAN 2.6833436357789227 -F8VP89_HUMAN 2.6833436357789227 -BPL1_HUMAN 2.6755600065638925 -SDE2_HUMAN 2.6755600065638925 -RHGBA_HUMAN 2.6755600065638925 -DUS3_HUMAN 2.66235003372713 -TTC4_HUMAN 2.659548924352871 -MARH7_HUMAN 2.6526279256872063 -WRIP1_HUMAN 2.6526279256872063 -J3KNR0_HUMAN 2.6526279256872063 -TIM50_HUMAN 2.645423080459946 -RBM22_HUMAN 2.645276291202411 -HERC1_HUMAN 2.6414861603166297 -Q5SRN5_HUMAN 2.6414861603166297 -A0A0B4J1V8_HUMAN 2.6414861603166297 -UBP39_HUMAN 2.6414861603166297 -A0A0G2JNG9_HUMAN 2.640748903625856 -A0A0C4DG17_HUMAN 2.6364501950266392 -SLTM_HUMAN 2.635535469557561 -ARNT_HUMAN 2.633593043150965 -ANR17_HUMAN 2.633593043150965 -CCNY_HUMAN 2.6300235507006127 -GRDN_HUMAN 2.6300235507006127 -ARC1A_HUMAN 2.628136008038071 -ABCF1_HUMAN 2.626725559629121 -RL14_HUMAN 2.623959476423252 -PTBP1_HUMAN 2.6194002133637784 -KC1D_HUMAN 2.618603072279847 -LC7L2_HUMAN 2.617137973772385 -WIPF2_HUMAN 2.6132693051799283 -RETR2_HUMAN 2.6132693051799283 -SH3K1_HUMAN 2.6132693051799283 -E2F2_HUMAN 2.6132693051799283 -EF2K_HUMAN 2.6132693051799283 -AFF4_HUMAN 2.6132693051799283 -PININ_HUMAN 2.6121402058732497 -PDS5B_HUMAN 2.61177179246528 -RL17_HUMAN 2.605381124212529 -VDAC3_HUMAN 2.6036317228636645 -ZNRF2_HUMAN 2.6001654139076047 -MGAP_HUMAN 2.6001654139076047 -TPM3_HUMAN 2.599956080556064 -IF2B1_HUMAN 2.599956080556064 -HNRH3_HUMAN 2.59538314269076 -CPSF5_HUMAN 2.59538314269076 -MTG16_HUMAN 2.5912818476609134 -A0A0A0MR07_HUMAN 2.591148053290532 -DDX21_HUMAN 2.581918378610299 -SMCA5_HUMAN 2.57824121171036 -BUD13_HUMAN 2.575225488876934 -IRX1_HUMAN 2.570807213558587 -KIF11_HUMAN 2.5665004567840213 -RGS3_HUMAN 2.5664130602433195 -PRC2B_HUMAN 2.5647758193564623 -ELF1_HUMAN 2.5647758193564623 -SRSF3_HUMAN 2.5544669526939963 -NUCL_HUMAN 2.5544669526939963 -PCY1A_HUMAN 2.5544669526939963 -UBP32_HUMAN 2.5544669526939963 -H14_HUMAN 2.5544669526939963 -DBNL_HUMAN 2.5544669526939963 -IPP2_HUMAN 2.551348449904725 -S19A1_HUMAN 2.549420952717478 -MARCS_HUMAN 2.5460514662873712 -PTTG_HUMAN 2.5439828704279166 -NFAC2_HUMAN 2.541120987972749 -PHIP_HUMAN 2.536658746091552 -J3QR29_HUMAN 2.536658746091552 -STK10_HUMAN 2.5364389616953584 -EKI1_HUMAN 2.5346696973625598 -IWS1_HUMAN 2.5346696973625598 -RGS14_HUMAN 2.5296297240129686 -PATL1_HUMAN 2.5294212306813564 -ENPL_HUMAN 2.527418763370007 -BAF_HUMAN 2.522093879674677 -RBM42_HUMAN 2.515469763793852 -TSR3_HUMAN 2.501798274705546 -A0A0A0MT22_HUMAN 2.496618461875327 -SRP14_HUMAN 2.481770230111571 -DVL2_HUMAN 2.4767706785392063 -TBCA_HUMAN 2.4765180169028795 -GTPB4_HUMAN 2.4764410084091497 -FAH2A_HUMAN 2.4759465075681835 -RAB8A_HUMAN 2.472191946223454 -MPLKI_HUMAN 2.468815989645967 -SET1A_HUMAN 2.468815989645967 -EFC4B_HUMAN 2.468815989645967 -LRIF1_HUMAN 2.468815989645967 -DOP2_HUMAN 2.468815989645967 -DTL_HUMAN 2.468815989645967 -C9JYS8_HUMAN 2.468815989645967 -MTCL1_HUMAN 2.468815989645967 -RNF8_HUMAN 2.468815989645967 -EXOC4_HUMAN 2.468815989645967 -TF3C1_HUMAN 2.468551760338201 -HMGN2_HUMAN 2.468551760338201 -X6RAB3_HUMAN 2.4674617147829934 -RN168_HUMAN 2.4674617147829934 -NUP98_HUMAN 2.4674617147829934 -SNW1_HUMAN 2.4674617147829934 -BD1L1_HUMAN 2.4674617147829934 -ITPR2_HUMAN 2.4674617147829934 -UBF1_HUMAN 2.4674617147829934 -A0A0A0MT60_HUMAN 2.4674617147829934 -SPIR1_HUMAN 2.4674617147829934 -M0R2Z9_HUMAN 2.4674617147829934 -GDIR2_HUMAN 2.4674617147829934 -NDE1_HUMAN 2.4674617147829934 -SCAF4_HUMAN 2.467210480455078 -A0A0A0MRJ7_HUMAN 2.467210480455078 -CE022_HUMAN 2.4660140462198124 -EF2_HUMAN 2.460629325043291 -NIPS2_HUMAN 2.460024012381305 -IF5A1_HUMAN 2.4584120005528907 -WNK2_HUMAN 2.458141005847922 -MK14_HUMAN 2.453479812351802 -K7ER00_HUMAN 2.451678077731941 -MMTA2_HUMAN 2.449133822612877 -GPT2L_HUMAN 2.446991942218826 -RS29_HUMAN 2.444530733963844 -PA2G4_HUMAN 2.4443541391971437 -PR38B_HUMAN 2.442378832766316 -KTNB1_HUMAN 2.4284676107671443 -S12A4_HUMAN 2.4225847452847526 -MPIP1_HUMAN 2.4225847452847526 -SCMC1_HUMAN 2.4225847452847526 -CDT1_HUMAN 2.422477977503964 -ICAM2_HUMAN 2.421118892619319 -KCRM_HUMAN 2.421118892619319 -SGO1_HUMAN 2.4181972190477 -H0Y449_HUMAN 2.4171764320816247 -DOC10_HUMAN 2.4134080656976864 -UBR5_HUMAN 2.411329919464377 -MTCL2_HUMAN 2.411329919464377 -H0Y4E8_HUMAN 2.4106411743220497 -MITOK_HUMAN 2.409789650464054 -MED1_HUMAN 2.404168701619811 -E7EVA0_HUMAN 2.403213018226533 -SFT2B_HUMAN 2.403213018226533 -MOT2_HUMAN 2.401186584834538 -PCX3_HUMAN 2.4003811710852485 -PDE4A_HUMAN 2.4003811710852485 -H15_HUMAN 2.4003811710852485 -AASD1_HUMAN 2.399368338742995 -RSRC2_HUMAN 2.399353894136525 -MYB_HUMAN 2.3940349516397097 -MTOR_HUMAN 2.3940349516397097 -FEM1A_HUMAN 2.391555891833587 -I3L2J0_HUMAN 2.387851225630014 -CHD1L_HUMAN 2.387851225630014 -ZBT21_HUMAN 2.3841756517597137 -SYMPK_HUMAN 2.3836445561407307 -MK01_HUMAN 2.379460658438463 -RNF10_HUMAN 2.379460658438463 -A0A0A0MRV0_HUMAN 2.379460658438463 -HIRP3_HUMAN 2.379460658438463 -ZRAB2_HUMAN 2.379460658438463 -KPB2_HUMAN 2.379460658438463 -X6R7X0_HUMAN 2.379460658438463 -LIMA1_HUMAN 2.379460658438463 -TPX2_HUMAN 2.379460658438463 -PCF11_HUMAN 2.379460658438463 -ICE1_HUMAN 2.379460658438463 -M0R088_HUMAN 2.379460658438463 -GDIR1_HUMAN 2.374939246474548 -TOE1_HUMAN 2.3733874213209147 -A0A075B746_HUMAN 2.3733874213209147 -CD82_HUMAN 2.37162272333702 -DHB8_HUMAN 2.37162272333702 -MB12A_HUMAN 2.371143496958736 -PPR3D_HUMAN 2.362081783466086 -GBF1_HUMAN 2.3607129875173016 -CHAP1_HUMAN 2.3607129875173016 -PRDX6_HUMAN 2.3601818305414803 -ENY2_HUMAN 2.3601818305414803 -AT5EL_HUMAN 2.3490738871320884 -MILK1_HUMAN 2.3481915494629093 -WEE1_HUMAN 2.3481915494629093 -ZN526_HUMAN 2.3481915494629093 -A0A1B0GTW1_HUMAN 2.3481487994663968 -NOLC1_HUMAN 2.345750344550942 -NSUN5_HUMAN 2.3454254207826253 -RHG35_HUMAN 2.3453800692503988 -CCNT1_HUMAN 2.3453800692503988 -ZN320_HUMAN 2.3453800692503988 -PPRC1_HUMAN 2.3453800692503988 -A0A0J9YYD9_HUMAN 2.3453800692503988 -DPOE1_HUMAN 2.3433908886146164 -E9PDJ2_HUMAN 2.341567079008073 -KLC2_HUMAN 2.339877471765953 -MTMR5_HUMAN 2.338193060122805 -IGLL1_HUMAN 2.337050124765354 -1433B_HUMAN 2.335716808128624 -ABTB3_HUMAN 2.3346504091989 -RSF1_HUMAN 2.3346504091989 -DNJC8_HUMAN 2.3346504091989 -TBCD4_HUMAN 2.3346504091989 -MBB1A_HUMAN 2.3346504091989 -TOIP1_HUMAN 2.3346504091989 -ARHG6_HUMAN 2.3346504091989 -PB1_HUMAN 2.3346504091989 -CHM4A_HUMAN 2.3346504091989 -CIR1_HUMAN 2.3346504091989 -P121A_HUMAN 2.3346504091989 -TMX1_HUMAN 2.3346504091989 -AMOL1_HUMAN 2.3346504091989 -SYNC_HUMAN 2.3346504091989 -PMS2_HUMAN 2.3346504091989 -ETS1_HUMAN 2.3346504091989 -DIP2B_HUMAN 2.3346504091989 -TCPB_HUMAN 2.3346504091989 -WDHD1_HUMAN 2.3346504091989 -SFR1_HUMAN 2.3346504091989 -GRP2_HUMAN 2.3346504091989 -AHDC1_HUMAN 2.330746483796545 -A0A087WZG4_HUMAN 2.326913529775188 -WAPL_HUMAN 2.326125572781434 -CE128_HUMAN 2.3239206503505017 -D6RAF8_HUMAN 2.323894146175129 -ULK1_HUMAN 2.3233691974776733 -KLF2_HUMAN 2.320967995683317 -SERF2_HUMAN 2.3191552675638136 -KMT2B_HUMAN 2.3191552675638136 -TNPO1_HUMAN 2.3191552675638136 -B5MCU0_HUMAN 2.3191552675638136 -MEF2A_HUMAN 2.3191552675638136 -NEK1_HUMAN 2.3191552675638136 -PPM1G_HUMAN 2.3191552675638136 -PPIP1_HUMAN 2.318573793224209 -TBB4A_HUMAN 2.314982216298125 -CD5_HUMAN 2.314561515384489 -PI4KB_HUMAN 2.314322638231197 -TBC13_HUMAN 2.314099472964523 -VP13B_HUMAN 2.313383283281896 -MARE2_HUMAN 2.3120067881397053 -DIDO1_HUMAN 2.310518141178195 -SNIP1_HUMAN 2.3074064909657377 -RL35A_HUMAN 2.3040839094701653 -ZAP70_HUMAN 2.303453581412009 -TM237_HUMAN 2.299075970419505 -SI1L1_HUMAN 2.299075970419505 -UBP1_HUMAN 2.299075970419505 -AP4B1_HUMAN 2.299075970419505 -F263_HUMAN 2.299075970419505 -RL1D1_HUMAN 2.299075970419505 -YJU2B_HUMAN 2.299075970419505 -RS27A_HUMAN 2.299075970419505 -RBM27_HUMAN 2.299075970419505 -CTRO_HUMAN 2.299075970419505 -ELL_HUMAN 2.299075970419505 -CYTSA_HUMAN 2.299075970419505 -BCOR_HUMAN 2.299075970419505 -T2FA_HUMAN 2.299075970419505 -RS25_HUMAN 2.299075970419505 -5NTC_HUMAN 2.299075970419505 -THOC5_HUMAN 2.299075970419505 -SUGP1_HUMAN 2.299075970419505 -CAF1B_HUMAN 2.299075970419505 -KSR1_HUMAN 2.299075970419505 -HSF1_HUMAN 2.299075970419505 -FRYL_HUMAN 2.299075970419505 -APC_HUMAN 2.299075970419505 -A0A0A0MQU4_HUMAN 2.299075970419505 -F5H527_HUMAN 2.2976035638794907 -RBM33_HUMAN 2.296377216576487 -FYB1_HUMAN 2.296377216576487 -UCK2_HUMAN 2.296377216576487 -A0A140T9T7_HUMAN 2.296377216576487 -A0A1B0GW41_HUMAN 2.296377216576487 -SNP23_HUMAN 2.296377216576487 -EDC3_HUMAN 2.2924345925914555 -BCORL_HUMAN 2.2924345925914555 -H0Y5F5_HUMAN 2.291924178154625 -A0A0G2JPR0_HUMAN 2.2918670259954865 -IBP2_HUMAN 2.2918670259954865 -BTF3_HUMAN 2.290532015929821 -MLH1_HUMAN 2.2892202950754537 -TB182_HUMAN 2.287912009318913 -CCNK_HUMAN 2.2870496331806054 -SNR40_HUMAN 2.2864803544997585 -TRIPC_HUMAN 2.285729237090503 -X6RLX0_HUMAN 2.285729237090503 -A0A087WXK8_HUMAN 2.285729237090503 -ELOA1_HUMAN 2.2830773959782498 -PRP31_HUMAN 2.282818221107397 -IF16_HUMAN 2.2806692853163013 -TMOD2_HUMAN 2.2801174402900424 -SIN3B_HUMAN 2.2789446091132675 -H12_HUMAN 2.2788533740202284 -ATAT_HUMAN 2.2779184769070056 -IQGA2_HUMAN 2.2779184769070056 -ABI1_HUMAN 2.2779184769070056 -B8ZZS0_HUMAN 2.2771236985359664 -YTDC1_HUMAN 2.2771236985359664 -TPR_HUMAN 2.2771236985359664 -FUND2_HUMAN 2.2761753687407147 -LKHA4_HUMAN 2.275461046622304 -ATP5I_HUMAN 2.274746360801074 -TF3C2_HUMAN 2.273207627865623 -PTSS2_HUMAN 2.271997726104445 -A0A024R4E5_HUMAN 2.266642712619027 -SAFB1_HUMAN 2.266642712619027 -ABL1_HUMAN 2.266642712619027 -PYR1_HUMAN 2.266642712619027 -RNF31_HUMAN 2.264482743643009 -EI2BA_HUMAN 2.262694492819737 -LRC57_HUMAN 2.258939498430969 -BMP2K_HUMAN 2.256800668588044 -AKT2_HUMAN 2.256356422189658 -H2AX_HUMAN 2.256103854743705 -TPD54_HUMAN 2.256103854743705 -MAST3_HUMAN 2.253712080399724 -DCAF1_HUMAN 2.253712080399724 -MED17_HUMAN 2.248885606200305 -NCBP3_HUMAN 2.2481223008904165 -CEP72_HUMAN 2.2468356012020068 -TFDP2_HUMAN 2.2468356012020068 -RHG25_HUMAN 2.246602127121684 -TOP2B_HUMAN 2.245894113900068 -ADRM1_HUMAN 2.244147525059497 -SGT1_HUMAN 2.244147525059497 -NTH_HUMAN 2.244147525059497 -SFPQ_HUMAN 2.244147525059497 -INT12_HUMAN 2.2437355734484297 -A0A0J9YWL0_HUMAN 2.2420910926726214 -SH3L1_HUMAN 2.2383274205822623 -ARF4_HUMAN 2.2363689638413686 -TSP4_HUMAN 2.2337704031300354 -LAGE3_HUMAN 2.2337704031300354 -PREY_HUMAN 2.2337704031300354 -APOB_HUMAN 2.2337704031300354 -CBPN_HUMAN 2.2337704031300354 -WDR24_HUMAN 2.2337704031300354 -FINC_HUMAN 2.2337704031300354 -IFT56_HUMAN 2.2337704031300354 -MK06_HUMAN 2.233505938411529 -PRPF3_HUMAN 2.233505938411529 -DYR1A_HUMAN 2.232795901289166 -DDX23_HUMAN 2.232268449696564 -HECD1_HUMAN 2.231850616890981 -SUMO2_HUMAN 2.231850616890981 -C102A_HUMAN 2.231850616890981 -PNM8A_HUMAN 2.229659160358248 -HOME3_HUMAN 2.2291724357357787 -I2BPL_HUMAN 2.2255590449321456 -UBN1_HUMAN 2.22487005233893 -CE170_HUMAN 2.22487005233893 -RS10_HUMAN 2.2243089739892663 -NOB1_HUMAN 2.2243089739892663 -UFD1_HUMAN 2.220951883678657 -XKR8_HUMAN 2.220457390306835 -Q9NPA5_HUMAN 2.220457390306835 -ZN609_HUMAN 2.215141560511576 -FHI2A_HUMAN 2.2131654802235623 -TANK_HUMAN 2.2131654802235623 -A0A087WTF0_HUMAN 2.2131654802235623 -KAPCB_HUMAN 2.2131654802235623 -A0A087X1Z1_HUMAN 2.2131654802235623 -CBX4_HUMAN 2.2131654802235623 -A0A1B0GV70_HUMAN 2.21253930016725 -ERIC1_HUMAN 2.21253930016725 -SSRG_HUMAN 2.21239672061904 -RECQ5_HUMAN 2.209560664353656 -TXLNG_HUMAN 2.2075830259238174 -B9EGE7_HUMAN 2.2075830259238174 -CIRBP_HUMAN 2.2075830259238174 -CCAR2_HUMAN 2.2075830259238174 -RL22_HUMAN 2.2074101015457988 -FBXL3_HUMAN 2.206588464449987 -SNUT1_HUMAN 2.206588464449987 -ATF7_HUMAN 2.2064876313546926 -NAB1_HUMAN 2.205796891825875 -SPAG5_HUMAN 2.205796891825875 -NF1_HUMAN 2.205796891825875 -KLF10_HUMAN 2.2022506666900687 -MTSS2_HUMAN 2.201298938577048 -RECQ4_HUMAN 2.20117238998352 -VPS72_HUMAN 2.2002029014346296 -ARHG7_HUMAN 2.2002029014346296 -PNISR_HUMAN 2.2002029014346296 -JKIP1_HUMAN 2.2002029014346296 -TB10C_HUMAN 2.199634220644328 -ZDHC5_HUMAN 2.1996119453418634 -PGRC2_HUMAN 2.1996119453418634 -CEP68_HUMAN 2.1996119453418634 -MYCB2_HUMAN 2.1996119453418634 -PUM2_HUMAN 2.197191540811112 -SF3A1_HUMAN 2.197191540811112 -ELL2_HUMAN 2.197191540811112 -AAPK1_HUMAN 2.196487406850244 -COX5A_HUMAN 2.195696145813124 -ADA10_HUMAN 2.1944671655094194 -RELL1_HUMAN 2.1944671655094194 -MFS12_HUMAN 2.1944671655094194 -AMPD2_HUMAN 2.1944671655094194 -ORC1_HUMAN 2.191953539292697 -J3QS41_HUMAN 2.188874046142944 -EEPD1_HUMAN 2.186498260136675 -ARFP1_HUMAN 2.184545879684002 -J3KQ96_HUMAN 2.184545879684002 -ABCE1_HUMAN 2.182981006177341 -HP1B3_HUMAN 2.181043306859131 -RBP56_HUMAN 2.181043306859131 -TESP1_HUMAN 2.1803063070089026 -NCOA3_HUMAN 2.1803063070089026 -CDK12_HUMAN 2.1803063070089026 -SPT6H_HUMAN 2.1779965957899776 -CRKL_HUMAN 2.1779965957899776 -BRAP_HUMAN 2.1779965957899776 -DLGP5_HUMAN 2.177661100418393 -H0YEM9_HUMAN 2.177387813228976 -CCD92_HUMAN 2.176967017332668 -ZN622_HUMAN 2.175139594436965 -ERBIN_HUMAN 2.175139594436965 -TPIS_HUMAN 2.174599667619271 -F5H2A4_HUMAN 2.1716865645979717 -CHK1_HUMAN 2.16964076975173 -AK17A_HUMAN 2.169570523462526 -HMGN4_HUMAN 2.169570523462526 -EHMT1_HUMAN 2.169570523462526 -BC11B_HUMAN 2.168372120180288 -TICRR_HUMAN 2.163937425840788 -MCRS1_HUMAN 2.163937425840788 -H7BZJ3_HUMAN 2.1631522638114964 -HNRPF_HUMAN 2.1623535941748315 -PHRF1_HUMAN 2.1575526324802183 -STX10_HUMAN 2.157472214061376 -NCBP1_HUMAN 2.1535841944572303 -L2GL1_HUMAN 2.151184367357258 -A0A087X188_HUMAN 2.151184367357258 -HINT1_HUMAN 2.150937476023596 -CNOT3_HUMAN 2.1502680638116165 -A0A1C7CYX9_HUMAN 2.147634536571454 -GTF2I_HUMAN 2.1443531124255264 -ABL2_HUMAN 2.1443531124255264 -CRTC1_HUMAN 2.1443531124255264 -F133B_HUMAN 2.1414909307538643 -J3KMZ8_HUMAN 2.139357795416215 -TDIF2_HUMAN 2.1388767056303064 -E7ETA6_HUMAN 2.1357959156410358 -KPCT_HUMAN 2.135517483801741 -PTSS1_HUMAN 2.133917148684859 -ZN598_HUMAN 2.132637726566628 -J3KNL2_HUMAN 2.132637726566628 -J3KPC5_HUMAN 2.13148193844429 -NCOR1_HUMAN 2.1314274567968576 -RACK1_HUMAN 2.1256488598308514 -TANC1_HUMAN 2.1228849043594265 -T22D4_HUMAN 2.116941484750721 -NFRKB_HUMAN 2.1153446040349304 -MBP_HUMAN 2.1153446040349304 -BLK_HUMAN 2.1153446040349304 -PDS5A_HUMAN 2.1153446040349304 -AKT1_HUMAN 2.115205836871803 -AT2B1_HUMAN 2.115175057066785 -PRPK_HUMAN 2.115101885595147 -REPS1_HUMAN 2.114307490386863 -IMA1_HUMAN 2.1141175455399237 -T131L_HUMAN 2.112862719013932 -RBBP6_HUMAN 2.1120166167617134 -VATB2_HUMAN 2.1120166167617134 -WNK1_HUMAN 2.1120166167617134 -S53A1_HUMAN 2.1120166167617134 -T2EB_HUMAN 2.1120166167617134 -F5H1Z8_HUMAN 2.1120166167617134 -SENP7_HUMAN 2.1093699848810448 -SAC2_HUMAN 2.109369906086197 -NUP88_HUMAN 2.109369906086197 -RPB1_HUMAN 2.109369906086197 -SMAD5_HUMAN 2.109369906086197 -RBM39_HUMAN 2.109369906086197 -PWP2B_HUMAN 2.109369906086197 -HUWE1_HUMAN 2.1091063059644304 -TBC23_HUMAN 2.108856472906373 -DNJB2_HUMAN 2.108856332351709 -CLK4_HUMAN 2.108856332351709 -CLAP2_HUMAN 2.108856332351709 -TEX2_HUMAN 2.108856332351709 -PHF20_HUMAN 2.108856332351709 -NSD2_HUMAN 2.108856332351709 -PCBP2_HUMAN 2.103506410942708 -PEA15_HUMAN 2.102947334439146 -F5H7W8_HUMAN 2.102947334439146 -DTX3L_HUMAN 2.102179609376134 -IN80E_HUMAN 2.102179609376134 -C9JCP7_HUMAN 2.100768945012073 -PKHO1_HUMAN 2.100598551485609 -MSL1_HUMAN 2.100598551485609 -HNRL2_HUMAN 2.100598551485609 -CAMP1_HUMAN 2.100598551485609 -CNR2_HUMAN 2.100598551485609 -PEX3_HUMAN 2.099961865993031 -G45IP_HUMAN 2.096915132267372 -PTN18_HUMAN 2.09680082725643 -NKAP1_HUMAN 2.0965620919406924 -RFIP1_HUMAN 2.094074693022752 -VHL_HUMAN 2.094074693022752 -EXOC7_HUMAN 2.094074693022752 -E9PES4_HUMAN 2.091970519290764 -ZN335_HUMAN 2.091970519290764 -T184B_HUMAN 2.091970519290764 -LIPB1_HUMAN 2.091196213338113 -ASXL2_HUMAN 2.090872163480254 -CWC22_HUMAN 2.0906774593530906 -DCP1A_HUMAN 2.090513105009064 -ZDH20_HUMAN 2.090513105009064 -RSRC1_HUMAN 2.090513105009064 -RASF1_HUMAN 2.087748673289812 -SI1L3_HUMAN 2.087748673289812 -TM230_HUMAN 2.0871938065321616 -WDR37_HUMAN 2.082037822230754 -HNRL1_HUMAN 2.082037822230754 -P66A_HUMAN 2.082037822230754 -R4GN35_HUMAN 2.0792630811480173 -TPGS1_HUMAN 2.076126736623318 -ARHG3_HUMAN 2.076126736623318 -S4R347_HUMAN 2.074498970192415 -ZGRF1_HUMAN 2.070140731192561 -FOXK1_HUMAN 2.068923751831252 -A0A0C4DGZ1_HUMAN 2.067761260554672 -RPGF1_HUMAN 2.067761260554672 -F169A_HUMAN 2.067761260554672 -RB12B_HUMAN 2.0672868878993915 -SSRP1_HUMAN 2.0649751490014143 -COIL_HUMAN 2.062365477313864 -M21D2_HUMAN 2.059796597379046 -SEC62_HUMAN 2.059677311353709 -TNIK_HUMAN 2.059677311353709 -PAPOA_HUMAN 2.059677311353709 -SEPT6_HUMAN 2.059677311353709 -S4A4_HUMAN 2.059677311353709 -ARID2_HUMAN 2.059677311353709 -NDRG2_HUMAN 2.058857732574496 -H7C0J3_HUMAN 2.0569217983037253 -HNRPL_HUMAN 2.0566283279346407 -KPCL_HUMAN 2.056181680721583 -NBEL2_HUMAN 2.053553258172669 -LSM8_HUMAN 2.051685214946433 -NKTR_HUMAN 2.0511705158995266 -JUPI2_HUMAN 2.050309220240459 -SP130_HUMAN 2.050287698658272 -RBM23_HUMAN 2.0444070823056384 -CRCC2_HUMAN 2.0442375783148776 -SND1_HUMAN 2.0442375783148776 -SPICE_HUMAN 2.0441078857689914 -2A5E_HUMAN 2.044027819799674 -ASPM_HUMAN 2.044027819799674 -TAPT1_HUMAN 2.044027819799674 -SNX17_HUMAN 2.041963362578797 -BCL6_HUMAN 2.041963362578797 -Z280C_HUMAN 2.041963362578797 -MSH6_HUMAN 2.041963362578797 -KCAB2_HUMAN 2.041963362578797 -UBP36_HUMAN 2.041963362578797 -BCL9_HUMAN 2.041963362578797 -ARI4A_HUMAN 2.0400661110774783 -AP3B1_HUMAN 2.0397413778619256 -CENPE_HUMAN 2.0397413778619256 -LEMD2_HUMAN 2.037296056958541 -OBI1_HUMAN 2.037296056958541 -STX4_HUMAN 2.036181414263432 -SFR19_HUMAN 2.0284998413815085 -NONO_HUMAN 2.028482100348224 -MABP1_HUMAN 2.028482100348224 -E9PNI7_HUMAN 2.0282540999774312 -WAC2A_HUMAN 2.0282540999774312 -CHERP_HUMAN 2.023409087697932 -NF2IP_HUMAN 2.023195317711924 -CO039_HUMAN 2.023195317711924 -F117B_HUMAN 2.0229474827644864 -A0A0G2JLV7_HUMAN 2.02260615304194 -ZN185_HUMAN 2.0211647221102447 -DSN1_HUMAN 2.0210634500435134 -RABP1_HUMAN 2.0187473893625043 -AT133_HUMAN 2.018453559736117 -HAUS6_HUMAN 2.018453559736117 -REXO4_HUMAN 2.0178844958883446 -SPAS2_HUMAN 2.0166004499098658 -CTDP1_HUMAN 2.0160495196100743 -AAK1_HUMAN 2.015226233917232 -TSC2_HUMAN 2.014830844492049 -EF1G_HUMAN 2.0147818804919995 -CEP55_HUMAN 2.013154470011907 -PTN7_HUMAN 2.0111310600104124 -ARP10_HUMAN 2.010095037282364 -TDT_HUMAN 2.009624306881172 -B4GN3_HUMAN 2.008786491289889 -A0A0C4DFX9_HUMAN 2.007387438926113 -G3V1A6_HUMAN 2.0058521910104714 -BRD1_HUMAN 2.0058521910104714 -UBP15_HUMAN 2.0058521910104714 -SLK_HUMAN 2.0058521910104714 -ERF_HUMAN 2.0058521910104714 -KANL3_HUMAN 2.0058521910104714 -PEX5R_HUMAN 2.0058521910104714 -PEX10_HUMAN 2.0058521910104714 -RWDD4_HUMAN 2.0058521910104714 -A0A0G2JNW7_HUMAN 2.0058521910104714 -ZC3HE_HUMAN 2.0058521910104714 -VCIP1_HUMAN 2.0058521910104714 -RNZ2_HUMAN 2.004833183336829 -CHD8_HUMAN 2.002481472673527 -KI20B_HUMAN 2.0006825998478672 -F5H0R1_HUMAN 2.0004896940206867 -NPAT_HUMAN 2.0004896940206867 -HSP7E_HUMAN 1.997789069484284 -TNIP1_HUMAN 1.997789069484284 -A0A0B4J2E5_HUMAN 1.997789069484284 -SKA3_HUMAN 1.997789069484284 -DSRAD_HUMAN 1.997789069484284 -D6RIF6_HUMAN 1.997109268894779 -A0A087X1R1_HUMAN 1.9968773503723312 -TOPK_HUMAN 1.9956983409132485 -COR1A_HUMAN 1.9955203209803056 -PPID_HUMAN 1.9955203209803056 -SMG5_HUMAN 1.9955203209803056 -CASP2_HUMAN 1.9955203209803056 -ELMO1_HUMAN 1.994718445912385 -BAD_HUMAN 1.994040262097582 -TOP2A_HUMAN 1.9936771130586195 -G8JLB6_HUMAN 1.993508012281276 -CXCR4_HUMAN 1.992584546504784 -PLXC1_HUMAN 1.992584546504784 -BCR_HUMAN 1.9870681450856689 -NUMBL_HUMAN 1.9859979698209045 -MY18A_HUMAN 1.9849695021527585 -PRR12_HUMAN 1.98257008260918 -GOGA3_HUMAN 1.981215747310045 -TRIPB_HUMAN 1.9808076255153677 -PITH1_HUMAN 1.9807055879415203 -RBM6_HUMAN 1.9781680226108629 -RS20_HUMAN 1.975725801332516 -A0A1B0GW05_HUMAN 1.975004137378945 -PP6R2_HUMAN 1.973134765183257 -C9JA08_HUMAN 1.972153319692893 -KIF2A_HUMAN 1.972153319692893 -PCNT_HUMAN 1.9721316639544584 -ACTS_HUMAN 1.9714906543123707 -MIME_HUMAN 1.9697757333691357 -ASCC2_HUMAN 1.9693105653433045 -A0A0A6YY96_HUMAN 1.9662278530665929 -CLSPN_HUMAN 1.9662278530665929 -ATAD2_HUMAN 1.9662278530665929 -H7C0H2_HUMAN 1.9662278530665929 -IKZF2_HUMAN 1.9662278530665929 -KIF1C_HUMAN 1.9641871757374836 -TVBL3_HUMAN 1.9641178791349176 -GEPH_HUMAN 1.9621558029521944 -AKNA_HUMAN 1.9616776683260024 -ZN318_HUMAN 1.9608770508360704 -G1UD79_HUMAN 1.9581319598186329 -F8W7T1_HUMAN 1.95633627879736 -THUM1_HUMAN 1.95633627879736 -SRS11_HUMAN 1.9555751931622785 -RFC1_HUMAN 1.9555751931622785 -LDB1_HUMAN 1.9555751931622785 -ARHGC_HUMAN 1.9538724812508128 -RU17_HUMAN 1.9528536388425437 -TLK2_HUMAN 1.9527326113537569 -SIGIR_HUMAN 1.9517998970839892 -ZN101_HUMAN 1.948214785106097 -MFAP1_HUMAN 1.94740366318958 -ADDA_HUMAN 1.946549874492993 -CENPF_HUMAN 1.94643754978836 -H9KVB4_HUMAN 1.9463790874981768 -SH2B3_HUMAN 1.944150924480076 -BICD1_HUMAN 1.941848263441864 -ICLN_HUMAN 1.9405740725846248 -UBR4_HUMAN 1.939447864804523 -DNM3B_HUMAN 1.9376698511597183 -KLF12_HUMAN 1.9371487533688525 -G3V4K3_HUMAN 1.9371487533688525 -TTC28_HUMAN 1.936729419509988 -NOP56_HUMAN 1.9353415006208456 -INP4A_HUMAN 1.9340349347519037 -TASOR_HUMAN 1.9340349347519037 -PAPOG_HUMAN 1.9340349347519037 -VINEX_HUMAN 1.9338244808981944 -E7EMB3_HUMAN 1.9330467768070907 -J3KNL6_HUMAN 1.92839569236804 -KI21B_HUMAN 1.926124145585248 -SP110_HUMAN 1.9225780734463032 -SMRC2_HUMAN 1.9225780734463032 -FXR1_HUMAN 1.9204679840543852 -CB068_HUMAN 1.9204679840543852 -A0A1B0GTU4_HUMAN 1.919684444706024 -GBB3_HUMAN 1.9196092474372508 -TRIO_HUMAN 1.9186528868578685 -NDRG1_HUMAN 1.9152769658281896 -ZN217_HUMAN 1.91488933856793 -AKA11_HUMAN 1.9125636542054327 -PARP2_HUMAN 1.9118817340409031 -CDC42_HUMAN 1.9113026823085444 -FGD6_HUMAN 1.9111872438405773 -PPAC_HUMAN 1.9100407337324945 -NU205_HUMAN 1.909901338212433 -CDC6_HUMAN 1.9048638363103287 -CLIP1_HUMAN 1.903661099141827 -RBCC1_HUMAN 1.903661099141827 -F110C_HUMAN 1.903661099141827 -ZN521_HUMAN 1.8999631738643223 -TMM33_HUMAN 1.8996958537048327 -PRS6B_HUMAN 1.8990250440390657 -KNOP1_HUMAN 1.8990250440390657 -CDK17_HUMAN 1.8990250440390657 -KIFC1_HUMAN 1.897771045597418 -DHX15_HUMAN 1.897771045597418 -CTR9_HUMAN 1.897771045597418 -ZN446_HUMAN 1.896735227825509 -GMIP_HUMAN 1.8964189171841284 -BNI3L_HUMAN 1.8962186714258185 -LYRIC_HUMAN 1.895390973557809 -ANKZ1_HUMAN 1.8949877859882 -PLCL1_HUMAN 1.894588621417845 -A0A0D9SFK2_HUMAN 1.8935697937757383 -ARI4B_HUMAN 1.8934040029807349 -KI21A_HUMAN 1.891438262068578 -ADDG_HUMAN 1.8914079828034591 -SIT1_HUMAN 1.8914079828034591 -LTV1_HUMAN 1.889866976842714 -ANKH1_HUMAN 1.888409870070193 -GAPD1_HUMAN 1.88739907491874 -COF1_HUMAN 1.8873502053234208 -JARD2_HUMAN 1.886847231548412 -MDM2_HUMAN 1.886486028061935 -ZBED4_HUMAN 1.886486028061935 -RERE_HUMAN 1.886486028061935 -MNX1_HUMAN 1.886486028061935 -A6NIW2_HUMAN 1.8848540669960945 -CDK16_HUMAN 1.8845415229048916 -J3KR72_HUMAN 1.8837655430786784 -SGO2_HUMAN 1.883084418831844 -RELCH_HUMAN 1.883011167829557 -ROA1_HUMAN 1.882737851832501 -C10_HUMAN 1.8823692198544568 -CBX5_HUMAN 1.8813181462003392 -PHB2_HUMAN 1.8796474890052843 -MEF2D_HUMAN 1.8796474890052843 -ZC3H4_HUMAN 1.8796474890052843 -E9PN30_HUMAN 1.8792562407805729 -VP26B_HUMAN 1.879211068366587 -AT7L3_HUMAN 1.8775431368457045 -MDN1_HUMAN 1.8775431368457045 -NOTC1_HUMAN 1.877237685342001 -SON_HUMAN 1.8740956882765516 -E2F3_HUMAN 1.8724724280059328 -LEO1_HUMAN 1.8719854017854187 -ANR12_HUMAN 1.871935817637404 -MYO5A_HUMAN 1.8709234416488485 -KCTD5_HUMAN 1.870013307967644 -ARBK2_HUMAN 1.8689248039109316 -RAB1A_HUMAN 1.8689248039109316 -PP4R2_HUMAN 1.86842884179613 -NOPC1_HUMAN 1.867117489810988 -PAXB1_HUMAN 1.8668029063280265 -RMXL1_HUMAN 1.865818698576412 -ZBT40_HUMAN 1.865818698576412 -ATG4D_HUMAN 1.8633569757161088 -DYH2_HUMAN 1.8625403111619427 -RN169_HUMAN 1.862253079737 -EPN1_HUMAN 1.8615460085836235 -FZR1_HUMAN 1.8596148242247816 -DGKD_HUMAN 1.858230261246268 -ZFAN3_HUMAN 1.85513932165014 -HERC2_HUMAN 1.85513932165014 -DCAF5_HUMAN 1.854290273132139 -FMNL1_HUMAN 1.854290273132139 -STIM2_HUMAN 1.8541642771844984 -SSRA_HUMAN 1.8534512145544328 -SCPDL_HUMAN 1.8534512145544328 -MOT1_HUMAN 1.8530703410341136 -CND3_HUMAN 1.851538111190216 -CENPT_HUMAN 1.851359296600657 -CND1_HUMAN 1.851359296600657 -CDV3_HUMAN 1.8511751263200067 -MACOI_HUMAN 1.8491590241913136 -DLG5_HUMAN 1.8481353173656336 -KRI1_HUMAN 1.8476017559347997 -UGDH_HUMAN 1.84736855847024 -E7EV07_HUMAN 1.8466997921960728 -TBCC_HUMAN 1.8466997921960728 -NCOA2_HUMAN 1.8464464252492203 -D3DQV9_HUMAN 1.8449020656854571 -4EBP1_HUMAN 1.8445738079358835 -ZEB1_HUMAN 1.8427420942076065 -RRP1_HUMAN 1.8419443916959364 -SC61B_HUMAN 1.8415406809273345 -RETR1_HUMAN 1.8415406809273345 -FKBP8_HUMAN 1.8411761745188369 -ANKL2_HUMAN 1.8401359943190263 -TLE4_HUMAN 1.8395148709869915 -S35E1_HUMAN 1.837999046187424 -DCXR_HUMAN 1.8360303172367105 -SMG8_HUMAN 1.8359132145762929 -E9PCH4_HUMAN 1.8359132145762929 -G5E9I4_HUMAN 1.8355724400101323 -FNBP4_HUMAN 1.8355724400101323 -IF2A_HUMAN 1.8326064928994803 -GIT1_HUMAN 1.8301890029537908 -SENP2_HUMAN 1.829784268238912 -TNR8_HUMAN 1.8286316113602068 -CTCF_HUMAN 1.827642972984798 -AKP13_HUMAN 1.825769060324459 -PHAR4_HUMAN 1.825741215713324 -ABLM1_HUMAN 1.825741215713324 -TIF1B_HUMAN 1.825741215713324 -A0A0G2JH68_HUMAN 1.825741215713324 -PO210_HUMAN 1.82523410611262 -BAG4_HUMAN 1.824490505107412 -PSN1_HUMAN 1.8203538251836016 -I3L1I5_HUMAN 1.8203538251836016 -H7C494_HUMAN 1.8194002646928604 -B3KS98_HUMAN 1.8193798470359168 -SPTN1_HUMAN 1.8193798470359168 -ADT2_HUMAN 1.8177637869374716 -NUDC_HUMAN 1.8134298343206936 -SP2_HUMAN 1.8124070597379405 -CERS2_HUMAN 1.8124070597379405 -XRCC6_HUMAN 1.8124070597379405 -OTUD3_HUMAN 1.8124070597379405 -PALLD_HUMAN 1.812254492088731 -CP054_HUMAN 1.8121415199445068 -CFDP1_HUMAN 1.8112602031282 -PSA5_HUMAN 1.8112602031282 -PRP4K_HUMAN 1.8112602031282 -BAG6_HUMAN 1.8112602031282 -AUP1_HUMAN 1.8112602031282 -PBIR1_HUMAN 1.811231943907668 -SMC4_HUMAN 1.8081024380740605 -MPP8_HUMAN 1.8081024380740605 -NOL8_HUMAN 1.8081024380740605 -KDM6B_HUMAN 1.8081024380740605 -UBP11_HUMAN 1.8081024380740605 -ATF2_HUMAN 1.8080195867474464 -ALKB5_HUMAN 1.8053678009232488 -MEN1_HUMAN 1.805216852556065 -HMHA1_HUMAN 1.805216852556065 -ZC3HF_HUMAN 1.805216852556065 -PGRC1_HUMAN 1.805216852556065 -MDM4_HUMAN 1.7985871531656756 -GGA3_HUMAN 1.7974934522612709 -YPEL5_HUMAN 1.797090104104933 -MLF2_HUMAN 1.7969334119600464 -BRCA1_HUMAN 1.7960018676860092 -PRIC3_HUMAN 1.794848497001336 -PIN4_HUMAN 1.7947551844009606 -RS26_HUMAN 1.793030440105996 -SRF_HUMAN 1.7901716198421307 -SMCO4_HUMAN 1.7901716198421307 -A0A1B0GV45_HUMAN 1.7879598744498 -MCM10_HUMAN 1.7869525947906078 -PR40A_HUMAN 1.7861044389578091 -BC11A_HUMAN 1.7857631083921943 -LUC7L_HUMAN 1.785661812450673 -NTF2_HUMAN 1.7843984558489752 -FXL19_HUMAN 1.783699214384715 -MTPN_HUMAN 1.782049370064308 -PRSR2_HUMAN 1.7814971839266904 -TAB3_HUMAN 1.7806331781935534 -UBP24_HUMAN 1.7781611433059177 -RAD18_HUMAN 1.777343829188853 -Q5HY81_HUMAN 1.776177688244024 -RC3H1_HUMAN 1.7754920331387507 -DEN4B_HUMAN 1.775156522545704 -AN32B_HUMAN 1.7750894518227849 -RALY_HUMAN 1.7746251470057748 -APC1_HUMAN 1.77357180291106 -ETV3_HUMAN 1.77357180291106 -ITSN2_HUMAN 1.77357180291106 -CLK3_HUMAN 1.7735655299578044 -PRR36_HUMAN 1.7735655299578044 -CHD9_HUMAN 1.7725757176226735 -CPEB4_HUMAN 1.7693755454994993 -A0A087WUE4_HUMAN 1.7686992617212869 -AT7L2_HUMAN 1.7686992617212869 -STAT1_HUMAN 1.7661891764741555 -PNKD_HUMAN 1.7626061260283152 -H0YL70_HUMAN 1.7603041093412912 -VP13D_HUMAN 1.7578191224899795 -NFKB1_HUMAN 1.7565353791338274 -TTF2_HUMAN 1.7565353791338274 -IF140_HUMAN 1.7536429532132964 -ORC3_HUMAN 1.752458052128842 -MCMBP_HUMAN 1.752458052128842 -OXR1_HUMAN 1.752361310862412 -DNJC9_HUMAN 1.752361310862412 -EXOC1_HUMAN 1.752361310862412 -TYK2_HUMAN 1.752361310862412 -LRCH3_HUMAN 1.752361310862412 -EIF1A_HUMAN 1.752361310862412 -F193B_HUMAN 1.752361310862412 -RGS12_HUMAN 1.752361310862412 -UB2E1_HUMAN 1.752361310862412 -Q9Y2S0_HUMAN 1.7520714343059671 -A0A1B0GTN9_HUMAN 1.7485474069880655 -TM131_HUMAN 1.7479549372255476 -VRK1_HUMAN 1.7479549372255476 -LAR1B_HUMAN 1.7410790476493874 -B7Z1P2_HUMAN 1.7409374588274027 -NAF1_HUMAN 1.7390644518380052 -DDX42_HUMAN 1.73893433388079 -RLA1_HUMAN 1.7374648056529645 -GSE1_HUMAN 1.7372332598669846 -NEMO_HUMAN 1.7343429036885485 -ACPM_HUMAN 1.7337720933027978 -CHCH2_HUMAN 1.7306496172539747 -SLAF6_HUMAN 1.730185751395917 -NFYA_HUMAN 1.7280478829048984 -FAS_HUMAN 1.7278430117838308 -SELPL_HUMAN 1.7268702024680425 -J3QTA6_HUMAN 1.7262615564494324 -THMS1_HUMAN 1.725959434588072 -PKN1_HUMAN 1.723931270247094 -E2F7_HUMAN 1.722969084212011 -TMCC1_HUMAN 1.7203089953793032 -KAP3_HUMAN 1.7197271245341366 -SURF2_HUMAN 1.7195083814592058 -TBCD1_HUMAN 1.7184496543497303 -TREF1_HUMAN 1.7177641409659703 -TLE5_HUMAN 1.717000035510205 -A0A0C4DFM7_HUMAN 1.7163696134264412 -MDC1_HUMAN 1.7160906547478465 -A2ABF8_HUMAN 1.7136028937708117 -PRSR1_HUMAN 1.7126554558223508 -FLNA_HUMAN 1.7126554558223508 -UT14A_HUMAN 1.7126228640753052 -B8ZZ87_HUMAN 1.7119214051269198 -ASF1A_HUMAN 1.7115031429363323 -TULP4_HUMAN 1.709223807269717 -UNG_HUMAN 1.7083049596547497 -LRBA_HUMAN 1.70719506688214 -R51A1_HUMAN 1.70719506688214 -WDR44_HUMAN 1.7062365506005044 -ATP9B_HUMAN 1.7058908923864156 -NCK5L_HUMAN 1.7058908923864156 -M3K5_HUMAN 1.7058908923864156 -CHIP_HUMAN 1.7054933052489143 -PARP6_HUMAN 1.7032342924386423 -RCN3_HUMAN 1.7032342924386423 -SMBT1_HUMAN 1.7026341709398347 -E9PN89_HUMAN 1.7026341709398347 -CAP1_HUMAN 1.7026341709398347 -RHG44_HUMAN 1.7026341709398347 -CDC5L_HUMAN 1.700304226801232 -TPPC8_HUMAN 1.700239610810821 -H7BYN4_HUMAN 1.6935460890002627 -TNR6_HUMAN 1.692660352832085 -ARP19_HUMAN 1.6917169612995973 -CD3Z_HUMAN 1.6892956971870206 -SMRCD_HUMAN 1.6886879618941708 -OSBL7_HUMAN 1.6854656243647503 -ZN696_HUMAN 1.6854171698814588 -PI4KA_HUMAN 1.684845087000013 -ZN454_HUMAN 1.6823074490926753 -DNLI3_HUMAN 1.6810685247034622 -ZRAB3_HUMAN 1.6790591086717306 -ZNHI1_HUMAN 1.6790591086717306 -APOE_HUMAN 1.6790591086717306 -SCD_HUMAN 1.6790591086717306 -LMO7_HUMAN 1.6777145859486238 -RT16_HUMAN 1.676657494563034 -TALD3_HUMAN 1.6765393640830388 -SNP29_HUMAN 1.6761443608369515 -HMGB3_HUMAN 1.6758157304570875 -SZRD1_HUMAN 1.674918267147864 -WBP4_HUMAN 1.674231063625865 -USF1_HUMAN 1.6740105011808255 -BAZ1A_HUMAN 1.6735950383878917 -SMC3_HUMAN 1.671327567434748 -PPIF_HUMAN 1.6708877591120552 -KLC1_HUMAN 1.670385039822689 -MPRIP_HUMAN 1.670224654391797 -STA5B_HUMAN 1.670224654391797 -HIPK1_HUMAN 1.670224654391797 -PTN2_HUMAN 1.670224654391797 -RBM4_HUMAN 1.6676700963650766 -RRAGC_HUMAN 1.6668307661689885 -GLE1_HUMAN 1.6665869443271135 -MPIP2_HUMAN 1.6653688059093044 -PKHM2_HUMAN 1.6653688059093044 -STK39_HUMAN 1.6653688059093044 -ATPG_HUMAN 1.6653674923236563 -DAD1_HUMAN 1.665362739494293 -A0A0U1RRB6_HUMAN 1.665362739494293 -CHD3_HUMAN 1.664721899083161 -STALP_HUMAN 1.6646627083993766 -F8W130_HUMAN 1.6641132069663522 -DP13A_HUMAN 1.6611098397053683 -RL26L_HUMAN 1.6606062062403686 -TCAB1_HUMAN 1.6601323187112542 -FA76B_HUMAN 1.6600823743491555 -SFSWA_HUMAN 1.6599785359993766 -HCLS1_HUMAN 1.6594720977321182 -CNOT2_HUMAN 1.6593129808626967 -E7EUN2_HUMAN 1.659119992072103 -INT3_HUMAN 1.659080138879962 -PMYT1_HUMAN 1.658608189992973 -E9PG73_HUMAN 1.6584978585788994 -NASP_HUMAN 1.6584978585788994 -SAFB2_HUMAN 1.6581081893684837 -ASPP2_HUMAN 1.6579730692224444 -ERCC5_HUMAN 1.6579389034381258 -RING1_HUMAN 1.6571965139808915 -CRTC3_HUMAN 1.656830661044035 -BICRL_HUMAN 1.6539951285262302 -OSBP1_HUMAN 1.6520042020879702 -VAPA_HUMAN 1.6513029492179827 -MOC2B_HUMAN 1.6500844003700044 -BPTF_HUMAN 1.6492789495885976 -UVRAG_HUMAN 1.6492789495885976 -NCK2_HUMAN 1.648647264234571 -SNX22_HUMAN 1.647983903924502 -SF3A3_HUMAN 1.647983903924502 -ESF1_HUMAN 1.647983903924502 -CDC26_HUMAN 1.6471410347508786 -ZKSC8_HUMAN 1.6471410347508786 -BRD9_HUMAN 1.6471410347508786 -UBP45_HUMAN 1.6471410347508786 -UBP42_HUMAN 1.6457504281862554 -AKTS1_HUMAN 1.6457504281862554 -TP53B_HUMAN 1.6457504281862554 -A0A087WTJ2_HUMAN 1.6457504281862554 -J3KNN5_HUMAN 1.6443003144245338 -F8WAL6_HUMAN 1.6443003144245338 -H32_HUMAN 1.6442353395771292 -ZN614_HUMAN 1.6440101797346889 -NOTC2_HUMAN 1.6440101797346889 -C1TM_HUMAN 1.6427386613060824 -CCD97_HUMAN 1.6378556503503088 -AFF2_HUMAN 1.6363175266233958 -SCFD1_HUMAN 1.6363175266233958 -CA131_HUMAN 1.6363175266233958 -ESYT1_HUMAN 1.635374493425764 -FLII_HUMAN 1.6341613785810227 -RRN3_HUMAN 1.6316583988139468 -B4DT28_HUMAN 1.6315086186821506 -VRK3_HUMAN 1.6296733595210375 -MAST4_HUMAN 1.6296733595210375 -MCM9_HUMAN 1.6293233190319771 -ZN813_HUMAN 1.6293233190319771 -B3KTM8_HUMAN 1.6292777130936889 -SMCR8_HUMAN 1.6269145783689969 -M3K4_HUMAN 1.626895972338818 -MERL_HUMAN 1.6265714269249545 -DLG2_HUMAN 1.6263911649091207 -LPIN1_HUMAN 1.626130295135159 -ADNP_HUMAN 1.624808828870062 -HMGN1_HUMAN 1.6242492965600803 -RHG19_HUMAN 1.620997837512863 -LMBL3_HUMAN 1.6195933949371673 -ZFP3_HUMAN 1.6189018733681717 -KDIS_HUMAN 1.6189018733681717 -PACN3_HUMAN 1.6159988983932818 -ZN644_HUMAN 1.6133054617811813 -CYLD_HUMAN 1.612106355371317 -KPCD_HUMAN 1.6109940866703802 -FXR2_HUMAN 1.609781829954048 -ZZZ3_HUMAN 1.609408094700522 -A8K727_HUMAN 1.609408094700522 -CFA97_HUMAN 1.609408094700522 -MSD4_HUMAN 1.6086830081843049 -CORO7_HUMAN 1.6040234376510798 -TUT7_HUMAN 1.603875551962769 -CE152_HUMAN 1.6035349761331743 -PPAL_HUMAN 1.603321048635197 -E7ERR0_HUMAN 1.603321048635197 -LRRF2_HUMAN 1.6007679399387202 -CCND3_HUMAN 1.598223062354585 -KI13B_HUMAN 1.598223062354585 -ANCHR_HUMAN 1.597206996709804 -SYTC_HUMAN 1.5965909100744242 -RAD54_HUMAN 1.593848238666057 -UBP31_HUMAN 1.593848238666057 -NDUF2_HUMAN 1.5933840305592093 -BLM_HUMAN 1.586746263324474 -BIG2_HUMAN 1.5865397631548432 -EMD_HUMAN 1.5862693413866356 -PSD12_HUMAN 1.5862693413866356 -CK096_HUMAN 1.584833632571175 -H7C0P6_HUMAN 1.584007209422455 -SSBP3_HUMAN 1.583113191603536 -MRTFB_HUMAN 1.5819601534414822 -MRP1_HUMAN 1.5815710539796546 -PACS1_HUMAN 1.5815710539796546 -A0A0U1RRM6_HUMAN 1.5812143192503216 -KDM2A_HUMAN 1.5794421458666126 -TM238_HUMAN 1.5794302325169345 -MFF_HUMAN 1.5784028296532209 -AKP8L_HUMAN 1.5781175997143473 -RRAGD_HUMAN 1.5764779505286213 -RHG09_HUMAN 1.5748943789559953 -RAB5A_HUMAN 1.5741488951097151 -A0A075B6G3_HUMAN 1.5738583906146597 -M0QZI3_HUMAN 1.573236768623413 -GDE_HUMAN 1.569845333811154 -EXOSX_HUMAN 1.5654252779075115 -ZN451_HUMAN 1.564564406742409 -PTBP3_HUMAN 1.564564406742409 -SHAN2_HUMAN 1.563473464203731 -KTN1_HUMAN 1.5624422525425712 -UBP22_HUMAN 1.5614287238940694 -X6R3V9_HUMAN 1.561059474299261 -A0A087WUT6_HUMAN 1.5577475982668991 -MAML1_HUMAN 1.5569767269569084 -ZFN2B_HUMAN 1.5552026005705637 -DAXX_HUMAN 1.5552026005705637 -RREB1_HUMAN 1.5519883247095958 -MTG8R_HUMAN 1.5519558789851258 -NS1BP_HUMAN 1.551667930031181 -C9IZ08_HUMAN 1.5511424357157702 -HBG2_HUMAN 1.5511424357157702 -DAP1_HUMAN 1.5511424357157702 -CD2B2_HUMAN 1.5508017118733144 -MED13_HUMAN 1.5486616485183236 -MIDN_HUMAN 1.5486616485183236 -SPD2B_HUMAN 1.5460366657486526 -NEO1_HUMAN 1.5460076236345228 -ITFG2_HUMAN 1.5441133773478537 -P66B_HUMAN 1.542970011245797 -BAZ2A_HUMAN 1.542479895347134 -DHX30_HUMAN 1.5391164541772189 -PRC1_HUMAN 1.5349196671674303 -FND3A_HUMAN 1.5322453979214572 -MAGD1_HUMAN 1.5316077109711947 -LAT_HUMAN 1.53103603029474 -PAK2_HUMAN 1.530530945302803 -A0A087WZY3_HUMAN 1.5292878805357475 -A0A087WV86_HUMAN 1.526398369254283 -PRP16_HUMAN 1.518580786239318 -TFAP4_HUMAN 1.5166205053708042 -WDR62_HUMAN 1.5159558609772277 -RMI1_HUMAN 1.5146332476217013 -K1C9_HUMAN 1.5133087732824906 -PKRI1_HUMAN 1.5133087732824906 -FBX28_HUMAN 1.5090585248038344 -RRP15_HUMAN 1.5057204321829378 -GLI4_HUMAN 1.5051452418007956 -PURB_HUMAN 1.5051452418007956 -WDR33_HUMAN 1.5036151479308777 -MADD_HUMAN 1.5036151479308777 -SERB1_HUMAN 1.5004065333374912 -ESCO1_HUMAN 1.4984736574738056 -DX39B_HUMAN 1.4984736574738056 -J3KNZ9_HUMAN 1.4962686667011431 -KIF22_HUMAN 1.492495687642211 -JIP4_HUMAN 1.4917591670315171 -SUN2_HUMAN 1.4910184665446684 -MRT4_HUMAN 1.490566356290414 -ITPR3_HUMAN 1.4874803925384024 -G5E9M7_HUMAN 1.485453553400625 -TFP11_HUMAN 1.4845903185473337 -ATX10_HUMAN 1.4830861750988265 -PAR12_HUMAN 1.482250391253681 -ARI3A_HUMAN 1.4802545717879971 -NUSAP_HUMAN 1.4799452133175632 -E9PIM0_HUMAN 1.479298314879221 -ZEP2_HUMAN 1.4791063446641404 -NIBA2_HUMAN 1.47863444393886 -FCF1_HUMAN 1.4772699135355205 -PERM_HUMAN 1.4753451526771215 -PDCD7_HUMAN 1.4747859000771348 -AKA10_HUMAN 1.4713939308389674 -ARP21_HUMAN 1.4705552858568849 -E9PNT2_HUMAN 1.4685877289738674 -UBP14_HUMAN 1.4685877289738674 -M3K20_HUMAN 1.468322699381004 -EM55_HUMAN 1.4643853322860894 -H2A2B_HUMAN 1.463073450993377 -H10_HUMAN 1.46162488602898 -SBP2L_HUMAN 1.459522672553388 -A6PW57_HUMAN 1.4593914397177197 -RPR1A_HUMAN 1.4570079787476788 -DC1I2_HUMAN 1.4561773765895465 -MTMR2_HUMAN 1.4557777149519568 -ARI5B_HUMAN 1.4540825670777604 -I3L0U5_HUMAN 1.4522765572785907 -SL9A1_HUMAN 1.452060561179732 -DYRK2_HUMAN 1.4483397637574744 -CO7_HUMAN 1.447981758087282 -BCL9L_HUMAN 1.4466764150796212 -DTBP1_HUMAN 1.445395737579544 -H33_HUMAN 1.4448977505570288 -DUT_HUMAN 1.4409851777563056 -CI040_HUMAN 1.440933892151441 -H7C2Q8_HUMAN 1.4391985010946566 -BRPF1_HUMAN 1.4385316455772108 -FOXK2_HUMAN 1.435686602749772 -SPNDC_HUMAN 1.431505752902634 -MTBP_HUMAN 1.4297511736283954 -WDFY1_HUMAN 1.4260845252781738 -J3KN59_HUMAN 1.4260845252781738 -ANT3_HUMAN 1.4260845252781738 -A0A024R214_HUMAN 1.419668731166044 -LMBD2_HUMAN 1.417546886728212 -TACC3_HUMAN 1.4075026391766297 -M18BP_HUMAN 1.4030029785508336 -MEX3D_HUMAN 1.3995639333086007 -PLK1_HUMAN 1.3987182982633413 -B4DTS2_HUMAN 1.396884699572115 -B0QXZ6_HUMAN 1.3951262396816184 -ELAV1_HUMAN 1.394052548400427 -RM38_HUMAN 1.3932332382438075 -UN13D_HUMAN 1.392582018177835 -NOP58_HUMAN 1.392235250742334 -STAG2_HUMAN 1.391034451100885 -HELQ_HUMAN 1.3868053259935338 -GANP_HUMAN 1.383021618733968 -ARI2_HUMAN 1.3827887121728022 -PLPL8_HUMAN 1.3827887121728022 -ICMT_HUMAN 1.3797541403764413 -BANP_HUMAN 1.3792142393579827 -E9PC69_HUMAN 1.3738731176774814 -SEM4D_HUMAN 1.373052448049788 -TMED3_HUMAN 1.373052448049788 -ATIF1_HUMAN 1.373052448049788 -JMY_HUMAN 1.3729406425650623 -GMDS_HUMAN 1.3723040340242356 -RL29_HUMAN 1.369442498918776 -NEIL3_HUMAN 1.3687215498106968 -ZYX_HUMAN 1.3678001355168583 -U3KQ54_HUMAN 1.3670046475134838 -SODC_HUMAN 1.36453645056204 -COG1_HUMAN 1.3638146224972307 -DAPK3_HUMAN 1.363017464370094 -B0QYS7_HUMAN 1.3591922797356877 -RAD21_HUMAN 1.3588165413056754 -CP250_HUMAN 1.356943830485934 -DDX20_HUMAN 1.3560062749673367 -XPC_HUMAN 1.3560062749673367 -PCNP_HUMAN 1.3560062749673367 -FKBP4_HUMAN 1.3544069214372674 -UBL5_HUMAN 1.3542207072484604 -SENP1_HUMAN 1.3542207072484604 -TI17A_HUMAN 1.3542207072484604 -BYST_HUMAN 1.353599237453952 -HASP_HUMAN 1.3535930799199831 -TDIF1_HUMAN 1.353183075711104 -TBP_HUMAN 1.353183075711104 -RS30_HUMAN 1.353183075711104 -K1C10_HUMAN 1.353183075711104 -SATB1_HUMAN 1.351303688064983 -LA_HUMAN 1.3506311030982134 -PSIP1_HUMAN 1.3461461134384227 -PLPL3_HUMAN 1.3454491641186934 -SCC4_HUMAN 1.344998445465336 -GLSK_HUMAN 1.344998445465336 -CHSTB_HUMAN 1.344998445465336 -BOREA_HUMAN 1.3429467152620067 -PI51A_HUMAN 1.3403532330874004 -ECHB_HUMAN 1.3295945326940692 -B5MDQ6_HUMAN 1.32041181506991 -PP1R7_HUMAN 1.316905460319621 -SHKB1_HUMAN 1.3138920520517516 -C8AP2_HUMAN 1.3138553798059365 -DMAP1_HUMAN 1.311679270968939 -RIOK2_HUMAN 1.311402438471763 -KC1A_HUMAN 1.3106679012476816 -PUS7_HUMAN 1.3082322523829244 -DDA1_HUMAN 1.306724169347866 -WDR75_HUMAN 1.3063491562376397 -RPC5_HUMAN 1.305301920685258 -SV2A_HUMAN 1.3022847363865186 -BAP18_HUMAN 1.3002350105944236 -SLF2_HUMAN 1.293118467176399 -DOK1_HUMAN 1.2900094764731345 -LAX1_HUMAN 1.283318740178902 -SAS10_HUMAN 1.2785564923681236 -A0A0A0MTR7_HUMAN 1.2725009323440952 -ATX1L_HUMAN 1.2706591844841155 -X5D2R7_HUMAN 1.2692461950729057 -D6REX3_HUMAN 1.268615360830644 -A0A1C7CYX1_HUMAN 1.265693749859266 -GIT2_HUMAN 1.2639556171574793 -ATN1_HUMAN 1.2582784414396777 -C2AIL_HUMAN 1.254656788773007 -NRBF2_HUMAN 1.2546258190074373 -B4E0Y9_HUMAN 1.2537515976875266 -NRM_HUMAN 1.2487713092174104 -RETR3_HUMAN 1.2487713092174104 -NDUA2_HUMAN 1.2487713092174104 -QCR6_HUMAN 1.2487713092174104 -SRGP3_HUMAN 1.2487713092174104 -BRD3_HUMAN 1.248401418397103 -TBC9B_HUMAN 1.2480552702487933 -SNR27_HUMAN 1.2477710365474972 -NOC2L_HUMAN 1.2457608213067717 -MCM7_HUMAN 1.2447422085125182 -KAT5_HUMAN 1.24304845977486 -J3QQJ0_HUMAN 1.2396932488946055 -SVIL_HUMAN 1.236838284888995 -SCNM1_HUMAN 1.2361786294953083 -MTA2_HUMAN 1.2361786294953083 -SGK3_HUMAN 1.2333561447804091 -ARHG8_HUMAN 1.225140873231768 -GON4L_HUMAN 1.2152987791831276 -DDX55_HUMAN 1.2111266788778736 -LIMD1_HUMAN 1.2109504951110637 -G3XAH0_HUMAN 1.2108885437236678 -NDUC1_HUMAN 1.2097781751415768 -ERAL1_HUMAN 1.2059595457245773 -ZN493_HUMAN 1.2023439697638574 -ZC3C1_HUMAN 1.2014851607627997 -CEP43_HUMAN 1.1976463369632704 -RCOR3_HUMAN 1.1953538477513326 -HDGF_HUMAN 1.1945326026194714 -DNS2A_HUMAN 1.1938949900799103 -COMD6_HUMAN 1.1896832592757838 -SELK_HUMAN 1.1896832592757838 -K2C1_HUMAN 1.1896832592757838 -ARMC7_HUMAN 1.1886614493510457 -GLPC_HUMAN 1.1880136792145806 -DAPLE_HUMAN 1.1876388263379467 -KCD15_HUMAN 1.1845998644456244 -RBM25_HUMAN 1.1841314076024123 -CSKI2_HUMAN 1.1840293890285647 -MR1L2_HUMAN 1.182122536225889 -ZN711_HUMAN 1.182122536225889 -PKHG2_HUMAN 1.1810648173550151 -FLNB_HUMAN 1.1805960753218467 -TSTD2_HUMAN 1.1805579318956934 -HOMEZ_HUMAN 1.177793827873462 -CHD2_HUMAN 1.176455518274309 -TB10B_HUMAN 1.1723160562396675 -CHMP7_HUMAN 1.1686473753412865 -PAN3_HUMAN 1.164020197090878 -CALX_HUMAN 1.1566280992775522 -TERF1_HUMAN 1.1556992090228102 -EXOS5_HUMAN 1.155343172185778 -PYM1_HUMAN 1.1552301761343235 -TRM13_HUMAN 1.1543390042722876 -RD23A_HUMAN 1.1540058558732107 -PARD3_HUMAN 1.1526090696062488 -K2C5_HUMAN 1.1505966596611903 -PI3R4_HUMAN 1.1479911707216974 -WBP2_HUMAN 1.1434355826778384 -TBA4A_HUMAN 1.1434184215259944 -TADA3_HUMAN 1.1430278072133924 -ZCH10_HUMAN 1.1426653714980075 -K4DI81_HUMAN 1.1408581221090033 -CC90B_HUMAN 1.138251826399812 -A0A0D9SF58_HUMAN 1.1374137915645597 -TRMB_HUMAN 1.1287236934044158 -A0A024R0Y4_HUMAN 1.1237732877265372 -PHF6_HUMAN 1.1217186217864514 -ZN384_HUMAN 1.120121554444549 -TXNL1_HUMAN 1.117211254321597 -PR38A_HUMAN 1.1149979039289826 -SACS_HUMAN 1.112390752037016 -K1C16_HUMAN 1.111224601631182 -K7EM46_HUMAN 1.1082349592990537 -MCFD2_HUMAN 1.09866842396838 -CDAN1_HUMAN 1.0977158783726109 -SYPL1_HUMAN 1.090574678522846 -ZNF22_HUMAN 1.087773389601758 -SF3B5_HUMAN 1.0744270981393589 -PHP14_HUMAN 1.0744270981393589 -SCAP_HUMAN 1.0744270981393589 -K22E_HUMAN 1.0697104891688962 -IPRI_HUMAN 1.0690633923691255 -SRRT_HUMAN 1.0683710059022202 -A6NHB5_HUMAN 1.063404420910747 -LCOR_HUMAN 1.0621280866256055 -KMT5A_HUMAN 1.0590922024073208 -RMP_HUMAN 1.050435894519489 -F6VDE0_HUMAN 1.0495878951195952 -CHD4_HUMAN 1.0429281891321034 -NCK1_HUMAN 1.041571328726673 -A0A140T9E9_HUMAN 1.0365936993727805 -RN5A_HUMAN 1.0342089009492177 -NFIX_HUMAN 1.0293924163164294 -WIPF1_HUMAN 1.025233860148135 -ATAD5_HUMAN 1.020156913567794 -HDGR2_HUMAN 1.017989757193611 -CENPK_HUMAN 1.0158356816677774 -C2CD5_HUMAN 1.0153806241700578 -TYB4_HUMAN 1.0131189259244653 -NEMF_HUMAN 1.0085293397608732 -TGFA1_HUMAN 1.0071196237056412 -3BP5L_HUMAN 1.0013990784807705 diff --git a/hiv-benchmarking/hiv_processed_data/orthology_hsa_mapping_ko03250.csv b/hiv-benchmarking/hiv_processed_data/orthology_hsa_mapping_ko03250.csv deleted file mode 100644 index f4d6a40..0000000 --- a/hiv-benchmarking/hiv_processed_data/orthology_hsa_mapping_ko03250.csv +++ /dev/null @@ -1,45 +0,0 @@ -KEGG_Orthology,HSA -K25057,hsa:11168 -K12183,hsa:7251 -K12194,hsa:29082 -K12195,hsa:79643 -K12200,hsa:10015 -K04180,hsa:1234 -K04189,hsa:7852 -K06454,hsa:920 -K12172,hsa:5903 -K14296,hsa:9972 -K15436,hsa:23534 -K14398,hsa:79869 -K10648,hsa:85363 -K18739,hsa:636 -K25663,hsa:9638 -K10429,hsa:55201 -K14754,hsa:4600 -K03767,hsal:JMJ58_06545 -K11648,hsa:6598 -K09578,hsa:5300 -K06062,hsa:8850 -K14290,hsa:7514 -K01349,hsa:5045 -K15185,hsa:27125 -K15179,hsa:7469 -K15180,hsa:25920 -K15181,hsa:51497 -K15182,hsa:7936 -K15171,hsal:JMJ58_11085 -K15172,hsal:JMJ58_15635 -K18750,hsa:9582 -K06731,hsa:684 -K12182,hsa:9146 -K12196,hsa:9525 -K15183,hsa:8178 -K02211,hsa:1025 -K15187,hsa:4300 -K15188,hsa:905 -K04498,hsa:2033 -K07936,hsa:5901 -K22544,hsa:25939 -K25655,hsa:256987 -K25661,hsa:10955 -K27688,hsa:29969 diff --git a/hiv-benchmarking/hiv_processed_data/orthology_hsa_mapping_ko05170.csv b/hiv-benchmarking/hiv_processed_data/orthology_hsa_mapping_ko05170.csv deleted file mode 100644 index 331cf61..0000000 --- a/hiv-benchmarking/hiv_processed_data/orthology_hsa_mapping_ko05170.csv +++ /dev/null @@ -1,156 +0,0 @@ -KEGG_Orthology,HSA -K04688,hsa:6199 -K07203,hsa:2475 -K04456,hsa:208 -K00922,hsa:5293 -K02649,hsa:8503 -K02580,hsa:4790 -K04735,hsa:5970 -K02833,hsa:3265 -K07827,hsa:3845 -K07828,hsa:4893 -K04366,hsa:5894 -K04368,hsa:5604 -K04369,hsa:5605 -K04371,hsa:5595 -K02373,hsa:8772 -K04398,hsa:841 -K04390,hsa:355 -K06751,hsa:3135 -K03171,hsa:8717 -K04467,hsa:1147 -K07209,hsa:3551 -K07210,hsa:8517 -K02159,hsa:581 -K14021,hsa:578 -K08738,hsa:54205 -K02187,hsa:836 -K03158,hsa:7132 -K04536,hsa:2782 -K04537,hsa:2783 -K07825,hsa:2784 -K04538,hsa:59345 -K04539,hsa:10681 -K07826,hsa:54331 -K04540,hsa:2785 -K04541,hsa:2786 -K04542,hsa:2787 -K04543,hsa:2788 -K04544,hsa:94235 -K04545,hsa:2790 -K04546,hsa:2791 -K04347,hsa:55970 -K04547,hsa:51764 -K04548,hsa:2792 -K04549,hsa:2793 -K04399,hsa:842 -K04726,hsa:637 -K04446,hsa:4772 -K17332,hsa:4773 -K17333,hsa:4775 -K17334,hsa:4776 -K04348,hsa:5533 -K06268,hsa:5535 -K02183,hsa:91860 -K04634,hsa:2776 -K04635,hsa:2767 -K05653,hsa:6890 -K05654,hsa:6891 -K08058,hsa:6892 -K04630,hsa:2773 -K04534,hsa:2775 -K03156,hsa:7124 -K04189,hsa:7852 -K05725,hsa:5747 -K04438,hsa:1399 -K05760,hsa:5829 -K02677,hsa:5578 -K19662,hsa:5579 -K19663,hsa:5582 -K05871,hsa:2185 -K02861,hsa:8737 -K09849,hsa:7188 -K03173,hsa:7186 -K08056,hsa:2923 -K08057,hsa:811 -K08055,hsa:567 -K04958,hsa:3708 -K04959,hsa:3709 -K04960,hsa:3710 -K05415,hsa:3456 -K05414,hsa:3452 -K05410,hsa:29110 -K05411,hsa:3661 -K17834,hsa:115004 -K12654,hsa:340061 -K06454,hsa:920 -K04180,hsa:1234 -K04729,hsa:4615 -K04427,hsa:6885 -K04441,hsa:6300 -K04730,hsa:3654 -K04440,hsa:5602 -K03175,hsa:7189 -K04403,hsa:10454 -K04404,hsa:23118 -K04734,hsa:4792 -K10159,hsa:7097 -K10160,hsa:7099 -K04733,hsa:51135 -K04379,hsa:2353 -K04448,hsa:3725 -K04389,hsa:356 -K02087,hsa:983 -K04728,hsa:472 -K06640,hsa:545 -K02216,hsa:1111 -K05867,hsa:995 -K05868,hsa:891 -K21770,hsa:9133 -K21771,hsa:85417 -K02158,hsa:572 -K01116,hsa:5335 -K05859,hsa:5336 -K05765,hsa:1073 -K05743,hsa:3984 -K05744,hsa:3985 -K04409,hsa:5058 -K04410,hsa:5062 -K05733,hsa:5063 -K05734,hsa:10298 -K05736,hsa:57144 -K05735,hsa:56924 -K04392,hsa:5879 -K07860,hsa:5880 -K07861,hsa:5881 -K18750,hsa:9582 -K22544,hsa:25939 -K10648,hsa:85363 -K06731,hsa:684 -K04432,hsa:5606 -K04433,hsa:5608 -K04431,hsa:5609 -K06451,hsa:916 -K06452,hsa:917 -K06450,hsa:915 -K06453,hsa:919 -K02161,hsa:596 -K04570,hsa:598 -K06632,hsa:7465 -K10609,hsa:8451 -K10610,hsa:1642 -K11789,hsa:9730 -K03873,hsa:6923 -K10612,hsa:8065 -K03872,hsa:6921 -K10611,hsa:9616 -K12392,hsa:162 -K12391,hsa:8906 -K12393,hsa:8907 -K12394,hsa:8905 -K12395,hsa:130340 -K05141,hsa:7133 -K03362,hsa:8945 -K03094,hsa:6500 -K03347,hsa:8454 -K03868,hsa:9978 diff --git a/hiv-benchmarking/hiv_processed_data/prize_list_proteins.txt b/hiv-benchmarking/hiv_processed_data/prize_list_proteins.txt deleted file mode 100644 index 3ffadfa..0000000 --- a/hiv-benchmarking/hiv_processed_data/prize_list_proteins.txt +++ /dev/null @@ -1,2085 +0,0 @@ -Q96K83 -P07305 -O95793 -Q5QP82 -Q9Y4I1 -Q9BTE6 -Q92621 -Q96G23 -A0A0C4DGB9 -G3V4K3 -Q9BPX3 -P22694 -Q13242 -Q12888 -P16150 -Q9ULT8 -Q96PN7 -P50747 -Q5JSZ5 -Q9BZI7 -Q14242 -Q9Y2I7 -J3QS41 -O15173 -Q9UKL0 -O95613 -D3DQV9 -P00519 -O95169 -A8K727 -Q8N5U6 -Q96QE3 -P53985 -P51784 -Q9H9J4 -O95644 -P09960 -Q9H4L5 -P22626 -Q9Y2W1 -O00472 -Q8N9N5 -Q9BWW4 -Q9H8Y5 -O75909 -Q9H992 -O95685 -Q9H7P9 -O43561 -Q96SK2 -P20700 -Q14966 -P51816 -Q9C0D5 -Q8IX15 -Q9H211 -Q9Y6D0 -Q92504 -Q13057 -Q9Y3R5 -Q99590 -P46531 -O95297 -E7EQS8 -Q9BTD8 -Q5VTL8 -O75554 -P28066 -Q8NHG8 -P30041 -Q9UBC3 -O14646 -Q9NY27 -U3KQ54 -Q8ND82 -P18065 -Q9ULF5 -Q92538 -Q9H4L7 -O60869 -Q9UII2 -Q96D05 -Q5SRE5 -Q96A19 -P05164 -Q8NFA0 -Q9NU19 -Q96HQ2 -P47914 -Q16204 -Q68CP9 -Q13200 -O95400 -Q8N9N7 -Q86XL3 -Q9H0B6 -H9KVB4 -Q96PC5 -P31146 -Q8TF68 -Q9Y5L4 -Q9NPD8 -Q99459 -Q96F63 -Q9H7F0 -Q16666 -Q5TC82 -P18031 -Q6PKG0 -Q7Z417 -Q00403 -Q9BTA9 -O60683 -P51957 -P62633 -Q8IXM6 -P06396 -Q86YV5 -Q16563 -Q8IUC4 -Q14671 -Q9UJF2 -Q92545 -K7ELC2 -Q7Z7G8 -Q9NTJ3 -Q8IWB9 -Q9Y6K9 -B7WPE2 -Q86WR7 -Q15111 -Q07666 -Q86WJ1 -Q8N3X1 -J3QR29 -P51587 -P14866 -O43396 -P28908 -Q5T8P6 -O15231 -O94888 -Q14865 -Q14161 -P16989 -Q9C0C2 -P02686 -O76031 -O00139 -Q7L2H7 -A0A0G2JLV7 -A0A0G2JQJ7 -P23396 -O15534 -Q8WWY3 -A0A0G2JNG9 -P04114 -Q14676 -P61956 -A0A0C4DFX9 -Q6P1L5 -O15047 -P50991 -Q9C0B0 -P29590 -Q2KHR2 -P61006 -Q15773 -Q9NVM6 -Q9H2G2 -Q969S3 -O75064 -Q14684 -O94915 -Q9Y6Y0 -Q9NPA5 -P35612 -Q9ULJ3 -Q9BQ61 -Q14738 -Q9Y6I3 -Q9P2B4 -D6REX3 -Q9NXV2 -O00303 -P13598 -Q9Y2Y9 -J3QTA6 -Q8WWI1 -Q13469 -P63244 -Q13614 -Q6P3S1 -P52566 -Q8N9F8 -P06493 -Q8IWE5 -A0A0A0MTC5 -P08311 -A0A0A0MRR7 -P10643 -Q96QR8 -P05114 -Q8TF50 -A0A087X1R1 -B4DNK4 -G1UD79 -Q9UG63 -Q12834 -Q9BZE4 -Q96RT1 -Q6KC79 -O95747 -Q9NUY8 -Q9UQQ2 -Q96MF7 -A0A0A6YY96 -Q96DV4 -Q9NPI6 -J3KN59 -B7ZL14 -O94762 -P38432 -E7EVA0 -Q86U70 -Q96EB1 -Q96PQ6 -Q9NQR1 -A6PW57 -Q9UPT9 -Q9H6L5 -Q00536 -Q96GE4 -X6RLX0 -C9JV77 -P27540 -Q15651 -O75132 -O95104 -Q684P5 -O95376 -Q5JSH3 -Q15181 -Q6NW29 -Q9NQS7 -Q8N1F7 -O60547 -A0A1B0GW41 -Q6ZV73 -O60216 -Q96S53 -Q86YP4 -Q7KYR7 -P52594 -Q7Z422 -Q9UQ35 -Q9Y6B7 -Q9UNX3 -Q15172 -Q9P2N5 -P29350 -P45973 -Q08945 -Q05519 -Q9NVC6 -Q9UHD8 -J3KTL2 -Q9P2K3 -Q03252 -J3KNL2 -Q6PJI9 -Q08378 -Q5BKY9 -Q96SI1 -Q9NS91 -P17096 -Q99856 -P29762 -P11171 -E9PCW1 -Q9NQZ2 -Q7Z6E9 -P42166 -Q96P11 -Q9UPT8 -P01008 -B0QXZ6 -Q9Y5V3 -Q9Y4E5 -Q8IZT6 -Q9NZN5 -Q9H299 -Q9Y324 -P50402 -Q53HC0 -O60271 -Q04759 -P51858 -Q96JM7 -P51397 -Q9H1E3 -Q13574 -P63220 -G0XQ39 -Q9NXG2 -Q9H6K5 -D6RAF8 -Q6IQ49 -Q1MSJ5 -Q9NP80 -Q9UQE7 -Q9Y2H2 -O00418 -Q8NCF5 -Q9Y478 -Q04721 -P62877 -Q96MU7 -Q2NKX9 -Q9NVU0 -Q01433 -P42575 -O00232 -Q8N201 -Q96IF1 -J3KNN5 -O75937 -A0A0A0MRV0 -P40692 -Q15459 -Q9NQ29 -Q9H6F5 -O95071 -Q9Y4P8 -Q9P219 -O43257 -A0A0A0MTS7 -Q92859 -P21333 -E7EQZ4 -Q9H496 -Q9H4L4 -Q641Q2 -Q9H9B1 -P62701 -Q5T5H1 -O95248 -Q76L83 -A0A1B0GTN9 -C9IZ08 -Q92769 -Q86WB0 -P26358 -Q14141 -A0A024R4E5 -Q92556 -Q9Y5B6 -Q15652 -A0A0G2JPR0 -P51452 -E7EPT4 -P35268 -Q9BRD0 -P19823 -Q9BVJ6 -Q6WCQ1 -P78332 -R4GMX8 -Q86VZ1 -Q92685 -O00479 -Q9ULR3 -Q53EZ4 -P20742 -Q7Z7L8 -H7C494 -Q9BSW2 -Q5T7W7 -P13645 -Q9Y3Q3 -Q9H0G5 -Q8NBZ0 -P46783 -Q92888 -Q6UUV9 -Q15056 -Q9Y3P9 -Q9NZI8 -Q15629 -Q8N183 -P61978 -O14561 -Q9ULU4 -Q9NZ32 -O75037 -Q86XZ4 -Q9Y3U8 -Q08752 -Q9Y519 -Q8WX93 -Q9P1Y6 -Q96BR1 -Q9NW64 -Q01518 -H7C0J3 -Q9Y3S2 -A0A0A0MQU4 -Q13625 -Q9BQF6 -Q99567 -Q86YA3 -O00512 -O75494 -Q13243 -K4DI81 -Q05655 -P17844 -Q92688 -P33316 -A4D2B0 -Q15287 -Q14318 -Q9NRQ5 -P14317 -Q8WV93 -Q96S55 -Q6ZU80 -Q9NWS9 -Q13158 -P04637 -Q53GL0 -H0YEM9 -A0A0A0MRJ7 -Q02790 -O75925 -O43566 -P55209 -P12270 -O60264 -Q9H910 -P08238 -Q8WWQ0 -Q9H814 -Q5W0B1 -Q96S44 -O75475 -P55265 -P28290 -O75396 -Q8IYW5 -Q96R06 -O94804 -A0A087WUT6 -P20339 -Q9BRL6 -Q92994 -P51003 -Q13435 -C9J2V2 -P42224 -P24666 -P30414 -Q9Y2F5 -A0A0D9SF60 -Q14207 -Q99081 -Q9P275 -Q5FWF5 -Q7Z5R6 -Q9NWB6 -M0QYC1 -P35269 -O43143 -Q9NUP7 -O43677 -Q8N8D1 -Q9Y3T9 -Q8NEZ4 -E7ETA6 -Q9H165 -Q93073 -P01733 -Q9H4E7 -O43295 -P16520 -P29084 -Q9BWH2 -A2RRD8 -Q6P0Q8 -Q9UI08 -Q9P2B7 -Q9ULW0 -A0A024R214 -Q9UHB6 -E9PDJ2 -Q16537 -P05204 -P56182 -O43516 -Q9UPN4 -O60524 -Q9BZX2 -P11117 -J3KNL6 -Q9Y462 -Q9NYF3 -Q9NXR1 -Q9P270 -Q9Y5K6 -Q9BXW9 -P51114 -Q13523 -Q96G03 -P62753 -Q2M2I8 -H7C0H2 -Q99622 -Q9Y5J1 -Q9Y6X4 -Q9BXI6 -Q12789 -F8W130 -Q3V6T2 -A0A0D9SF58 -H7C0P6 -Q8WY36 -Q92698 -Q96T51 -Q9BW61 -Q8IUW5 -Q04727 -Q8WXE0 -P63272 -Q96F86 -Q16566 -Q05823 -E9PGC8 -P08697 -O14757 -P21281 -Q8IZC7 -P10075 -Q8TF76 -P13807 -Q86XN8 -P00747 -Q9H7N4 -P78549 -P42766 -Q5VYS8 -O95684 -Q16875 -Q9Y294 -Q9ULL5 -Q8TEM1 -Q12873 -O60303 -A0A0U1RRM6 -Q8NHM5 -Q9NR30 -P30281 -Q5T200 -P26639 -A0A0A0MT22 -E7EV07 -P52565 -P17480 -O75962 -Q16539 -P06400 -O95562 -Q04637 -Q8N5G2 -Q7Z6Z7 -Q6JBY9 -Q9P260 -P02787 -P49815 -Q9UJZ1 -Q8NF99 -Q96PE3 -O75400 -F8W7T1 -Q9NZM3 -P33527 -Q92610 -M0QZI3 -P15822 -Q9BWG6 -B5MCU0 -P16949 -Q14155 -Q9BTE3 -Q96CB8 -O60343 -Q53F19 -Q5TEC6 -Q9Y6X9 -M0R2Z9 -P26641 -Q08170 -P20226 -J3KNR0 -Q96K21 -P17152 -Q99704 -Q15363 -P20774 -O94986 -P51692 -P19634 -Q13627 -Q92833 -Q5QJE6 -P55081 -P51116 -Q9Y383 -Q9UKM9 -C9JA08 -Q13263 -J3KQ96 -Q9UKL3 -O14523 -Q9Y3X0 -Q00537 -Q9H6D3 -B8ZZS0 -Q9Y2H0 -P60891 -E7EVB6 -Q8TCJ2 -O75347 -O75531 -A0A0B4J2E5 -Q7Z5J4 -Q8WUM0 -O43583 -Q9P2R6 -Q7L9B9 -P51451 -O60238 -Q8IWI9 -Q99755 -P35611 -P04004 -Q9NPQ8 -A0AVF1 -P69905 -P33991 -Q9Y4B6 -Q96DF8 -P0C1Z6 -P28749 -Q8IWY9 -Q15185 -Q9BTC0 -O00264 -P69892 -Q15942 -Q92854 -P11388 -Q96GN5 -O94876 -Q9Y5Z4 -Q8N573 -P40855 -Q9UBD5 -A0A096LP69 -Q5H9R7 -P49756 -P13994 -V5IRT4 -Q92934 -Q07866 -Q92804 -Q8WUH2 -Q9HAW4 -Q96EY5 -Q29RF7 -O75781 -Q9Y608 -P39687 -P23246 -P50548 -Q04760 -Q99879 -Q8IX90 -Q02224 -Q9BVV6 -P11831 -P16401 -O75182 -Q92979 -Q9NZJ0 -Q9Y2X7 -O95721 -Q15149 -G5EA09 -Q15027 -Q9UKS6 -G3XAH0 -H7BZ55 -O95429 -Q8N1K5 -P49768 -O43639 -O75369 -Q9NYP9 -P16104 -Q8IY63 -Q8TF74 -Q9UHJ3 -P53367 -Q9Y520 -P30305 -Q9UP95 -P20963 -B8ZZ87 -J3KPD3 -O14874 -P49585 -Q9NPF2 -Q9BVG9 -Q96D71 -Q8N9N8 -O15169 -Q9NWQ8 -E9PIM0 -Q96BH1 -Q16760 -Q9NZN8 -A0A140T9T7 -Q14209 -H7BYN4 -P62070 -Q9NQX3 -P36955 -Q6ZR52 -Q14693 -Q9Y6G9 -Q14498 -Q6UN15 -Q9H6A9 -Q96EV8 -Q15291 -P18583 -P53801 -O76071 -Q92609 -Q8IZP0 -Q8NC51 -G5E9M7 -Q5T6F2 -O15117 -Q9NR12 -P04264 -P62750 -O95758 -F5H0R1 -Q12986 -Q9H9A7 -P07766 -Q6NUT3 -Q7L2E3 -P42345 -Q5SRN5 -Q13619 -P35527 -O15294 -Q7Z3C6 -K7EM46 -Q8WVC0 -P52948 -Q8TF01 -P10412 -Q6L9W6 -O15355 -O43439 -V9GYM8 -P18615 -Q9P209 -Q9H582 -Q96F46 -Q1ED39 -Q12968 -O75420 -Q86U06 -Q99640 -Q96GK7 -Q14643 -Q9NYL2 -P49321 -P50851 -Q9NVG8 -Q9BXB4 -A0A087WVP1 -O60563 -P78527 -Q92506 -Q9Y248 -F8W9L8 -O95239 -Q7KZF4 -Q01167 -Q96K37 -Q9NTI5 -P0DI81 -Q96T37 -A0A1C7CYX1 -Q14692 -P13639 -Q96PY6 -P35908 -P31323 -Q9BVC5 -D6RIF6 -Q9HBU6 -A1L0T0 -Q6R327 -P29374 -O60516 -O43166 -Q00613 -P0C7P0 -O14681 -O15127 -Q9H8U3 -P43307 -Q9UER7 -Q8N684 -Q4LE39 -Q3B726 -P0C7T5 -P24534 -Q9H501 -Q8NI27 -Q06546 -A6NIW2 -P17181 -Q6WKZ4 -Q9Y388 -Q8N883 -P07996 -Q9UIF9 -Q8TDM6 -P17275 -Q9NV70 -Q8NAV1 -Q96B01 -Q8TEW0 -O43586 -Q96HR8 -Q8IVT5 -O43663 -Q99623 -O60749 -P06732 -E9PES4 -Q71DI3 -Q6P4F7 -Q86UU0 -Q5HY81 -O43399 -Q8TEA8 -Q9NRY4 -Q14103 -Q8NDI1 -P04049 -Q53EL6 -P19827 -O95453 -P27816 -Q9BU76 -Q8NCD3 -Q3ZAQ7 -Q9GZP4 -Q86XP3 -Q86TL0 -P57737 -Q9Y237 -Q16512 -Q96PV7 -P57740 -O94782 -P38159 -E7ERR0 -E9PNI7 -Q8IXQ3 -P50443 -Q9BUA3 -P47974 -Q96G01 -Q96S15 -Q6P0N0 -Q8ND61 -X6RAL5 -Q13573 -O43395 -Q8WWW0 -Q8NBM4 -Q659C4 -P05452 -Q3L8U1 -Q15464 -Q15366 -M0R088 -H0Y4E8 -O75122 -Q9UNL2 -A0A087X0X3 -Q86W92 -Q9Y314 -A0A087X1Z1 -Q9NR81 -P17706 -P02748 -Q4KMP7 -P02768 -Q9NSY1 -P18621 -C9J7T7 -Q96FJ0 -Q53GS9 -Q6P2E9 -Q12874 -A0A0U1RRH7 -Q9BXS6 -Q8TAT5 -Q96BY7 -Q13283 -C9JCP7 -P16455 -O94906 -Q9NTM9 -Q9BUQ8 -Q8NBX0 -Q12846 -Q9HD15 -P15153 -Q6P4R8 -Q14807 -F8WA39 -Q9NRX4 -Q8TDY4 -Q9UPU5 -P60709 -Q8IWZ3 -O60307 -P52657 -Q9UKD2 -O00308 -Q8NC44 -B1AM27 -Q9UI10 -P60174 -Q8WXG6 -P01106 -Q13185 -Q86XK3 -Q9UPU7 -Q7Z4H7 -P55036 -Q15758 -D4PHA4 -A0A0C4DGZ1 -P41002 -P06239 -P04053 -Q13049 -P31629 -Q15717 -O95475 -P50219 -P33993 -Q96NY9 -P31942 -P60953 -B0QYS7 -O75717 -P24723 -C9JYS8 -P53350 -Q08AE8 -Q14232 -P35443 -P31751 -Q9UPX8 -P62699 -Q9Y4F3 -Q7Z7A4 -E9PCH4 -Q8WV99 -Q15058 -A0A0C4DFM7 -Q01826 -Q8WVC6 -O60318 -P39880 -Q9NX00 -P49761 -Q9UMN6 -P43487 -Q7Z4W1 -O75368 -E9PFI5 -Q09161 -M0QXA7 -Q92597 -Q969T9 -P82094 -Q99613 -P08651 -P13051 -Q7Z4V5 -Q9Y2D5 -F8WAL6 -H0Y449 -Q96Q89 -O00255 -Q92766 -P42167 -P27815 -C9JCC6 -Q9H410 -Q9NZR1 -A0A1C7CYX9 -O75410 -Q99986 -Q9UEE9 -B0YIW2 -Q8N490 -Q9Y679 -Q3KQU3 -P98171 -A0A1B0GW05 -P02751 -Q9NRL2 -P21291 -A0A0G2JNW7 -B4E0Y9 -Q99490 -Q96Q15 -Q9BVA0 -P20962 -Q92667 -Q9UQR0 -B2RBV5 -Q8WW12 -Q5SW79 -Q86YV0 -Q99717 -Q13813 -Q99683 -Q00013 -P07919 -Q15052 -Q96EV2 -Q8NCN4 -O95425 -Q96N67 -Q6ZRI6 -P54725 -Q5T5Y3 -P05387 -O00767 -Q9UBH6 -Q9Y266 -Q8N163 -Q9H6H4 -F8VP89 -Q9Y6R0 -A6QL63 -O60664 -Q9NQT4 -P68363 -Q7L273 -P50914 -Q9UM11 -Q9NSU2 -Q15751 -Q5VV67 -Q5W0Z9 -Q9NQW6 -P22059 -Q14573 -P30405 -P40337 -O75391 -A0A0C4DG17 -P61221 -Q9ULH7 -Q9Y3D0 -Q86W56 -Q5H9F3 -Q9Y2S0 -Q06945 -O00203 -P16403 -Q9P246 -H0YLM1 -P62820 -P41162 -P26599 -Q96RY7 -Q6ZSZ6 -Q15051 -Q13303 -Q92615 -Q8IYB1 -A0A1B0GTW1 -O60293 -P20020 -Q9HC52 -Q99741 -P16402 -Q9Y3B9 -Q86YE8 -Q9GZR2 -P41236 -Q96B97 -P10809 -P78347 -P30291 -Q8NI08 -Q14CW9 -P01024 -P54105 -A0A087WV86 -Q14011 -Q96EZ8 -Q9UEW8 -B7ZKJ8 -Q9UJU6 -O15054 -Q9BSK4 -O95777 -Q8NDD1 -Q9BV73 -Q9NUA8 -Q15527 -I3L1I5 -Q15365 -Q9NPA8 -P49792 -P61970 -Q9NSC5 -Q8IX21 -P62273 -Q9Y4E8 -Q01130 -P23511 -Q9BYW2 -P35236 -Q9Y5B9 -O94925 -Q17R89 -Q6XZF7 -P62310 -Q15036 -H0Y5F5 -Q9BWT3 -Q96AV8 -Q86YS7 -Q12872 -Q92576 -O60486 -Q96JH7 -A0A087WTF0 -Q7Z460 -Q02078 -Q8WXD9 -O43900 -O60336 -O43148 -P15169 -O14578 -Q3MHD2 -P12956 -Q6W2J9 -J3QQJ0 -Q8N103 -P61803 -O96028 -Q9Y487 -Q8TDJ6 -Q13131 -P54578 -F6VDE0 -Q9NYV4 -Q8IZ21 -P25686 -O14974 -Q9NYF8 -P08779 -P49207 -P04921 -Q9C0C7 -P51965 -Q5T2D3 -Q8N3U4 -P38398 -P49916 -Q15398 -Q9HBD4 -P84101 -P25445 -Q8NE71 -Q76FK4 -P54274 -O75323 -Q6ZN06 -Q92844 -P28715 -Q9NYZ3 -Q53HL2 -Q32MZ4 -P31946 -Q86UE8 -Q6DN12 -A0A0A0MQS2 -P22314 -Q9UGP4 -Q9H9P5 -P54132 -Q8WWM7 -Q9UBP6 -Q5THJ4 -Q9Y3P8 -Q13506 -O75175 -O96013 -O14641 -P49454 -Q9UN86 -O00716 -O94776 -Q9UKA4 -Q16186 -A0A1B0GVL4 -O43293 -Q15003 -Q15390 -Q15906 -Q9BQ70 -Q8TB72 -Q8WXX5 -Q14151 -Q9NST1 -O14545 -E9PG73 -X6R3V9 -P56385 -Q9UKE5 -P52701 -Q92973 -Q96T58 -Q13576 -Q96ER9 -O00257 -Q13045 -Q3T8J9 -Q5SSJ5 -Q9H2P0 -Q5T5C0 -Q9UEY8 -P42684 -P55011 -Q9UNY4 -P49006 -Q14181 -Q13148 -Q5T3J3 -P25205 -Q8IYH5 -Q92794 -Q70EL2 -Q14814 -P02765 -P09564 -Q8WXI9 -Q6IA17 -Q13428 -Q16659 -Q9C0K0 -Q13740 -Q8N6H7 -F8W0Q9 -Q9NS23 -Q9HCE1 -Q12979 -O14828 -Q92598 -Q6ZU65 -Q9BY43 -P43403 -Q14188 -Q8NCY6 -O60499 -P62861 -A0A140TA76 -A0A075B746 -O95801 -G5E9I4 -Q14980 -A0A1B0GV45 -Q8N3F8 -Q8TEK3 -Q5VTU8 -O00570 -Q92608 -Q9UH99 -Q93100 -Q92630 -O75791 -Q86TB9 -O95628 -Q01082 -Q6NUK1 -P27701 -O60701 -Q96DI7 -Q92620 -Q9NZJ4 -Q15063 -F5H2A4 -Q9P2Y5 -Q9UBL0 -Q92843 -B5MDQ6 -P62979 -P37802 -P17483 -Q14241 -Q15021 -Q9Y2U5 -Q7Z5L9 -Q14677 -P38935 -Q9H7X3 -Q96JN0 -Q13541 -Q13098 -Q8N6T3 -Q9BWD1 -P52943 -Q96FS4 -P40227 -O95466 -Q7Z2W4 -B4DT28 -Q9Y4A5 -Q6NXT6 -Q66K74 -Q7L8J4 -Q14978 -Q5TGY3 -P41440 -Q9UKT7 -Q7L590 -Q8ND04 -H7C2Q8 -O75179 -O43572 -Q8TDB6 -P84243 -Q8IWX8 -P42677 -Q7LDG7 -Q9H2K8 -P46019 -Q9Y4X4 -Q5UIP0 -Q9BW71 -Q9UBF8 -Q96B36 -Q9UK61 -Q9GZT6 -Q14157 -R4GN35 -Q9BRP8 -O95714 -Q5JTV8 -P85037 -Q8WUQ7 -P49773 -O60504 -Q15388 -Q3ZCQ8 -O60333 -A6NHB5 -P16333 -Q9BVS4 -O43318 -Q15648 -P05455 -A0A087WTW0 -P14625 -Q7Z628 -Q53GS7 -Q9UPR3 -Q96QD9 -P42858 -Q99595 -P37275 -P09693 -Q13111 -Q9HCN8 -Q9HB90 -Q96BT3 -Q5VUA4 -P52732 -P20648 -P52756 -Q9Y2R4 -O75190 -Q9BX63 -P32519 -F5H8D7 -P52292 -O43491 -Q96RR4 -Q9ULX3 -O00231 -Q9NQT8 -Q96TA1 -Q9BTT6 -P05198 -Q9NPF5 -Q07960 -Q14839 -Q8NDT2 -P18077 -Q8IWA0 -P07108 -Q99549 -Q9Y2V2 -Q96DY7 -Q70J99 -Q9H6L4 -Q8TEV9 -Q9P2N6 -Q96C90 -H3BQL3 -Q15813 -P35573 -Q765P7 -Q9UHB7 -Q14847 -A0A1B0GTU4 -Q9NVF7 -P02774 -M0R226 -Q86Z02 -Q00987 -P49711 -O43776 -Q6PJT7 -P46100 -Q9UBB9 -Q9NYA4 -O15151 -Q9Y4B5 -O60496 -Q9UHV7 -Q8IWB7 -Q9Y277 -Q9Y385 -Q96N16 -A0FGR8 -Q8ND56 -Q9Y250 -Q9HB21 -Q8NFC6 -Q8IZD4 -Q9GZY8 -Q96PK6 -Q8IU60 -H7BZJ3 -Q66PJ3 -P61073 -Q9P013 -P00441 -Q68DK7 -Q96E39 -P05141 -A0A087WUE4 -P17026 -O00571 -Q56VL3 -Q9HCG8 -Q9H3N1 -Q8TAE8 -O94874 -Q8WYQ5 -Q86V59 -Q8TBB5 -F8W8D3 -P49757 -Q9P265 -E7ERS3 -J3KR72 -Q01196 -Q9H2Y7 -Q9BZF2 -Q9Y2X3 -O60292 -Q13547 -P06753 -Q9Y508 -Q96KB5 -Q9BWJ5 -Q8TDG4 -Q96L94 -Q9NUQ3 -P19838 -Q9HB58 -Q9BVI0 -P54278 -P48634 -E7ESS2 -Q9HCJ3 -P15336 -O75152 -Q6UB35 -P49750 -Q15334 -E9PN30 -Q7KZ85 -O00161 -I3L2J0 -Q00325 -Q86U86 -Q7LBC6 -O14647 -Q9UIQ6 -O15347 -Q9Y6D5 -Q15059 -P11274 -Q8N0Z3 -Q8WVK2 -Q53QZ3 -P04350 -P52597 -Q15032 -P05543 -E7EQT4 -Q92797 -P02786 -P30622 -A0A0A0MTR7 -B3KTM8 -Q9UJK0 -P25054 -Q9H8V3 -X6R7X0 -P02647 -Q6FI81 -B9EGE7 -Q15233 -Q9H307 -Q9UNE7 -P31483 -P46109 -Q7Z2Z1 -I1E4Y6 -Q5VT06 -Q7Z4S6 -Q9UHI6 -P48651 -O95696 -O95674 -F5H7W8 -Q70CQ4 -Q9C0C9 -P46379 -P21359 -P19174 -Q12849 -Q75N03 -Q9P0L0 -Q9H4A6 -Q99570 -P27708 -P49796 -A0A087WZG4 -Q9UIG0 -X5D2R7 -Q562F6 -Q8IWV1 -Q9NVA4 -Q6P6C2 -Q15814 -A0A087WTJ2 -Q68DH5 -Q9Y6X3 -Q6PL18 -Q13151 -Q9BRF8 -Q15555 -P29597 -P42025 -P06127 -P42331 -Q92619 -O15042 -Q9BRA2 -A0A075B6G3 -Q12802 -Q5W0V3 -O60832 -Q969R8 -Q9NRA8 -Q92585 -Q9UN36 -O15021 -P20674 -A0A087WZY3 -Q99729 -Q9BRR9 -O43809 -Q9C0J8 -A0A0G2JH68 -Q9BWF3 -P62328 -Q9UBP0 -P62854 -Q96T49 -Q9NRJ4 -Q7Z4G1 -O60669 -O75995 -P53634 -O94761 -Q8IXM2 -Q9BZ95 -Q9ULH0 -Q9BXP5 -P46013 -Q86UE4 -A8MXP9 -Q96I23 -Q8N9T8 -P27824 -Q6NUJ5 -H0YL70 -Q8WWW8 -Q15435 -Q9H000 -Q8WVM8 -Q9BW19 -J3KNZ9 -Q13422 -A0A140T9E9 -X6RAB3 -Q8N5I9 -Q6PCT2 -Q96GA3 -Q5T4S7 -E9PJ55 -O76021 -A2RU30 -Q8WU90 -Q86TI0 -Q9Y6V0 -Q8WUX9 -Q96ST2 -Q86VR2 -Q9H0E3 -O00115 -Q9HAZ1 -A1X283 -Q9UPP1 -O75081 -Q69YN4 -P18507 -Q9Y2W2 -O75616 -C9JI98 -Q9HC62 -Q6UWD8 -P02649 -Q9HCH0 -Q96I24 -Q7Z5K2 -Q7Z589 -Q86X95 -Q5HYJ3 -P41182 -Q5T6C5 -Q9NQC7 -Q13905 -Q6PD62 -Q9Y3D3 -P22415 -P10242 -Q9BUJ2 -J3KQL8 -B4DTS2 -P55199 -Q96A57 -O94763 -Q6DKI7 -Q02086 -H3BLZ8 -P60866 -Q8IYB4 -Q01780 -O75533 -A0A0J9YYD9 -Q01664 -Q99952 -Q96D15 -Q96P16 -Q8TF61 -P48382 -Q6NZY4 -Q9H4Z2 -Q86X53 -P48729 -Q86XN7 -P84085 -Q68E01 -Q14571 -A9Z1X7 -Q5TCZ1 -P35240 -Q13370 -Q13094 -Q9HB71 -A0A075B7F8 -P68366 -Q13542 -P00492 -Q9NRH2 -P36915 -Q13247 -Q92747 -Q9BQG0 -Q17RY0 -P36542 -Q7L0J3 -Q15700 -Q8WVZ9 -Q8N2F6 -P30304 -Q9Y6H1 -Q86Y91 -C9JQE8 -Q7L4I2 -Q8IUE6 -P68133 -Q5VT52 -Q96BY6 -Q9BSJ8 -Q14149 -Q13177 -Q14699 -Q69YQ0 -A6NMQ1 -O95231 -Q07864 -Q9NX58 -Q8ND76 -Q92890 -Q96L91 -Q13415 -Q27J81 -A0A024R0Y4 -O95218 -Q96II8 -Q15477 -O75528 -A0A075B738 -Q6ZNJ1 -P49327 -A0A087X188 -A0A0G2JNZ2 -O96007 -J3KMZ8 -Q96GM8 -Q00839 -P78414 -O43861 -E9PC69 -Q9UPR0 -Q9NXL9 -Q92733 -P49915 -Q15154 -A0A087WX41 -P35626 -Q8IWZ8 -Q13409 -Q2NL67 -Q99442 -Q06587 -O95625 -Q66K14 -Q14669 -P09496 -Q15776 -Q9Y3Q8 -Q2TAZ0 -Q9NYV6 -P29966 -Q9BZZ5 -Q9Y5W3 -Q13118 -J3KPH8 -Q9H875 -F8VX04 -Q8N5C8 -A0A5E8 -Q6UUV7 -Q1RMZ1 -A0A0J9YWL0 -Q14CB8 -Q92522 -Q8N4V1 -Q96NJ6 -Q14152 -Q9BT25 -P35251 -Q02040 -Q9UK76 -O75170 -Q12770 -Q9P107 -Q9BS16 -A0A1B0GV70 -A0A0U1RRB6 -Q9UKG1 -O75145 -Q9HBM6 -P34972 -Q92922 -P18858 -Q8IXT5 -Q9H400 -Q9NZ52 -Q8WTW3 -Q9BUR4 -Q96C36 -Q7Z591 -Q9Y2H6 -P08621 -Q9H8M2 -P18085 -Q13838 -Q9H1A4 -Q1W6H9 -O94964 -F5GX28 -E7EUN2 -Q504T8 -P61927 -Q15424 -Q9Y2K7 -Q5SQI0 -O60725 -P98179 -Q14687 -Q8TAQ2 -J3KPC5 -Q9P0U3 -Q8NHQ9 -Q9Y2L5 -K7ER00 -Q6AI39 -Q14C86 -Q9Y3S1 -O14672 -Q13595 -Q9Y2Z0 -Q13123 -Q9P225 -Q9Y5B0 -P50750 -Q9NQL2 -Q86V48 -P78371 -P26368 -Q7Z569 -O76064 -Q9NQC3 -O60784 -P19338 -O15014 -P17544 -P11387 -O43290 -Q9UQ80 -Q9UPT5 -P84103 -Q6ZTW0 -Q5FWF4 -Q9H019 -Q8TBK6 -Q86UK7 -Q8IYL3 -B7Z1P2 -Q02880 -B3KS98 -Q5JTH9 -P56589 -E9PNT2 -P62851 -Q14739 -P24928 -Q96EP0 -Q8TAP9 -P13647 -O43896 -Q9UH03 -P23588 -E7EMB3 -A0A087WXK8 -Q8WXX7 -Q96JK2 -P60468 -O75592 -Q86UP2 -Q9H0J9 -Q13112 -Q92900 -Q13085 -Q9HCD5 -Q96Q45 -Q15025 -Q9Y6R4 -O14639 -Q9BQ52 -Q96AY4 -Q9NPG3 -Q14657 -Q01831 -Q9Y6R1 -G8JLB6 -A0A087WZV0 -Q9ULC8 -Q2KHT3 -Q8NG31 -Q8IWB1 -Q8NC56 -Q13895 -P57088 -P46779 -Q96T23 -P63313 -Q96DU3 -Q96SL8 -P16383 -Q8N488 -I3L0U5 -Q1KMD3 -P37108 -Q96ST3 -B4DY08 -Q96JM3 -Q8IWS0 -Q8WUA4 -O75362 -Q8TDY2 -Q9NZ63 -Q9Y2I8 -F5H527 -Q9BVA1 -O75385 -Q9H147 -Q6UB98 -Q13769 -P62995 -Q9UKJ3 -P23528 -Q9UNN5 -Q92993 -A0A087WWF6 -O94913 -Q9UKY7 -Q96F24 -P15814 -Q15121 -Q8NHZ8 -Q9H1B7 -P63241 -Q15643 -P06748 -Q96HA1 -Q4G0F5 -G3V1A6 -Q6P3S6 -O43379 -O43719 -Q9BZL1 -P09651 -E9PRY8 -Q96A65 -A0A0D9SFK2 -Q96PZ0 -Q9NU22 -P55201 -Q9C0B5 -Q14938 -A2ABF8 -Q8IV63 -J3KPF0 -Q08117 -Q5FBB7 -Q9NWH9 -Q92614 -O43678 -Q58A45 -P42356 -Q8TBC3 -E9PN89 -Q6ZUT1 -P14921 -Q9GZT9 -P56211 -P49902 -Q8TC07 -P02788 -P48730 -Q8TAD8 -Q9UKS7 -Q9UBB4 -O75151 -O75376 -F5H1Z8 -A0A0B4J1V8 -Q9NWZ5 -Q8N9B5 -A0A0C4DGT3 -P31749 -Q3B7T1 -Q49AR2 -G3XAN8 -P55084 -Q8NI22 -A0A0A0MR07 -O14924 -Q15596 -Q0VDF9 -Q8IV04 -O14908 -Q76N32 -A0A0A0MT60 -Q0ZGT2 -O00567 -P01023 -Q7L2J0 -P54259 -P43686 -Q16718 -Q9Y6Q9 -Q9H1I8 -O75449 -P58546 -Q49A26 -Q7Z2E3 -Q9Y6A5 -Q96DC7 -Q9NWQ4 -A2VDJ0 -P05386 -P62805 -Q96IZ7 -Q9HCK8 -S4R347 -P49790 -Q8N999 -P28482 -P08670 -Q9UGN5 -Q9ULX6 -Q12830 -P20290 -Q96E09 -P23142 -Q9UKV3 -Q9NSK0 -Q96HY6 -Q6VY07 -Q9H4A3 diff --git a/hiv-benchmarking/hiv_raw_data/5_min_75_confidence.sif b/hiv-benchmarking/hiv_raw_data/5_min_75_confidence.sif deleted file mode 100644 index b576686..0000000 --- a/hiv-benchmarking/hiv_raw_data/5_min_75_confidence.sif +++ /dev/null @@ -1,250 +0,0 @@ -RB15B_HUMAN pp RBM15_HUMAN -BRAP_HUMAN pp CENPF_HUMAN -AMPD2_HUMAN pp POTE1_HUMAN -K0556_HUMAN pp TBCD4_HUMAN -MADD_HUMAN pp WNK1_HUMAN -AKT1_HUMAN pp WNK1_HUMAN -AKT1_HUMAN pp TBCD4_HUMAN -AKT1_HUMAN pp WEE1_HUMAN -AKT1_HUMAN pp PHF20_HUMAN -AKT1_HUMAN pp CHSP1_HUMAN -AKT1_HUMAN pp PTN1_HUMAN -AKT1_HUMAN pp HJURP_HUMAN -AKT1_HUMAN pp PEA15_HUMAN -AKT1_HUMAN pp FYV1_HUMAN -AKT1_HUMAN pp MTOR_HUMAN -AKT1_HUMAN pp GRDN_HUMAN -4ET_HUMAN pp IF4E2_HUMAN -DUS3_HUMAN pp ZAP70_HUMAN -LARP1_HUMAN pp MTOR_HUMAN -SUGP1_HUMAN pp ZC11A_HUMAN -PARP6_HUMAN pp PLIN3_HUMAN -AKA10_HUMAN pp DCTN4_HUMAN -A2AP_HUMAN pp PLMN_HUMAN -MEF2A_HUMAN pp MEF2D_HUMAN -TB182_HUMAN pp TNKS2_HUMAN -IWS1_HUMAN pp SETD2_HUMAN -CPPED_HUMAN pp POTE1_HUMAN -A4D0W0_HUMAN pp SMBP2_HUMAN -A4D0W0_HUMAN pp GTF2I_HUMAN -WBP11_HUMAN pp WBP4_HUMAN -POSTN_HUMAN pp TPC2L_HUMAN -GAB3_HUMAN pp GRAP2_HUMAN -NU107_HUMAN pp NU133_HUMAN -LZTR1_HUMAN pp RAI1_HUMAN -LZTR1_HUMAN pp ZZZ3_HUMAN -LZTR1_HUMAN pp PAPOG_HUMAN -KIF14_HUMAN pp PPIP1_HUMAN -BRCA2_HUMAN pp FACD2_HUMAN -ATAD5_HUMAN pp UBP1_HUMAN -PGM2_HUMAN pp POTE1_HUMAN -SPD2B_HUMAN pp TNFL6_HUMAN -GIT1_HUMAN pp PCLO_HUMAN -DOT1L_HUMAN pp ENL_HUMAN -ABR_HUMAN pp ERBIN_HUMAN -CBX5_HUMAN pp NIPBL_HUMAN -CBX5_HUMAN pp LBR_HUMAN -CCDC6_HUMAN pp GAPD1_HUMAN -CCDC6_HUMAN pp CREB1_HUMAN -NSD3_HUMAN pp SPAG8_HUMAN -NSD3_HUMAN pp SEPT6_HUMAN -MINT_HUMAN pp SRA1_HUMAN -K1C20_HUMAN pp ZC3HE_HUMAN -CE170_HUMAN pp TNKS2_HUMAN -41_HUMAN pp C2C2L_HUMAN -41_HUMAN pp GLPC_HUMAN -LPIN1_HUMAN pp NFAC4_HUMAN -S23IP_HUMAN pp TBC13_HUMAN -CREB1_HUMAN pp IRX1_HUMAN -CREB1_HUMAN pp R3HD1_HUMAN -CREB1_HUMAN pp NKAP1_HUMAN -CREB1_HUMAN pp CRTC1_HUMAN -DUS23_HUMAN pp MTFR1_HUMAN -DUS23_HUMAN pp KBTB7_HUMAN -HNRPK_HUMAN pp RBMX_HUMAN -GEPH_HUMAN pp MTOR_HUMAN -ERBIN_HUMAN pp LRRC1_HUMAN -KLF13_HUMAN pp PRP4B_HUMAN -4EBP2_HUMAN pp MTOR_HUMAN -ANLN_HUMAN pp RRAGB_HUMAN -RRAGB_HUMAN pp RRAGC_HUMAN -CD2AP_HUMAN pp MB12A_HUMAN -DAP1_HUMAN pp MTOR_HUMAN -BUD13_HUMAN pp RBMX2_HUMAN -EDF1_HUMAN pp NRL_HUMAN -H32_HUMAN pp PHF2_HUMAN -H32_HUMAN pp KMT2C_HUMAN -DYM_HUMAN pp GUAA_HUMAN -DYM_HUMAN pp TB22B_HUMAN -SC22B_HUMAN pp STX4_HUMAN -4EBP3_HUMAN pp IF4E2_HUMAN -H14_HUMAN pp KAPCA_HUMAN -CCD92_HUMAN pp PKHA5_HUMAN -APOB_HUMAN pp CTCF_HUMAN -BICRL_HUMAN pp DTBP1_HUMAN -DTBP1_HUMAN pp SFR1_HUMAN -RBM5_HUMAN pp SR140_HUMAN -BMP2K_HUMAN pp MBP_HUMAN -DDX23_HUMAN pp WBP4_HUMAN -CCAR2_HUMAN pp CIAO1_HUMAN -CCAR2_HUMAN pp ZN335_HUMAN -GLYR1_HUMAN pp NSD3_HUMAN -GPTC8_HUMAN pp NUMBL_HUMAN -PDS5A_HUMAN pp WAPL_HUMAN -CBPN_HUMAN pp CO3_HUMAN -CRKL_HUMAN pp WAC_HUMAN -CRKL_HUMAN pp MSL1_HUMAN -CRKL_HUMAN pp PKHA1_HUMAN -ELL2_HUMAN pp ICE1_HUMAN -DCP1A_HUMAN pp TIA1_HUMAN -BNI3L_HUMAN pp TMM11_HUMAN -BNI3L_HUMAN pp SMCO4_HUMAN -E2F3_HUMAN pp RYBP_HUMAN -TCAB1_HUMAN pp WAPL_HUMAN -CIAO1_HUMAN pp KTNA1_HUMAN -SPD2A_HUMAN pp TNFL6_HUMAN -BPL1_HUMAN pp DDX52_HUMAN -TDIF2_HUMAN pp TDT_HUMAN -GOLP3_HUMAN pp MY18A_HUMAN -LMBL3_HUMAN pp LZTR1_HUMAN -RN219_HUMAN pp TTC4_HUMAN -FLII_HUMAN pp LRRF1_HUMAN -CUX1_HUMAN pp KAPCA_HUMAN -KAPCA_HUMAN pp LASP1_HUMAN -KAPCA_HUMAN pp PTN7_HUMAN -KAPCA_HUMAN pp NFAC1_HUMAN -KAPCA_HUMAN pp STMN1_HUMAN -KAPCA_HUMAN pp MYOM2_HUMAN -KAPCA_HUMAN pp PDE3B_HUMAN -KAPCA_HUMAN pp NDE1_HUMAN -KAPCA_HUMAN pp PDE4A_HUMAN -KAPCA_HUMAN pp PTBP1_HUMAN -A0A5E8_HUMAN pp POTE1_HUMAN -HOIL1_HUMAN pp MKRN2_HUMAN -HOIL1_HUMAN pp RNF31_HUMAN -CBX3_HUMAN pp KAPCA_HUMAN -AAK1_HUMAN pp NUMB_HUMAN -AAK1_HUMAN pp AT132_HUMAN -AT132_HUMAN pp ICAM2_HUMAN -AT132_HUMAN pp BNI3L_HUMAN -AT132_HUMAN pp SC61B_HUMAN -APTX_HUMAN pp CE350_HUMAN -APTX_HUMAN pp MABP1_HUMAN -PININ_HUMAN pp PNISR_HUMAN -PININ_HUMAN pp SRSF4_HUMAN -IN80E_HUMAN pp TFPT_HUMAN -SRGP3_HUMAN pp TNFL6_HUMAN -ACBP_HUMAN pp DUS23_HUMAN -TCOF_HUMAN pp TTC4_HUMAN -LMO7_HUMAN pp UBAC2_HUMAN -ZKSC8_HUMAN pp ZN165_HUMAN -DBNL_HUMAN pp ZAP70_HUMAN -CCDC9_HUMAN pp POTE1_HUMAN -ALBU_HUMAN pp JARD2_HUMAN -ALBU_HUMAN pp SPAST_HUMAN -ALBU_HUMAN pp SFR19_HUMAN -SRS11_HUMAN pp ZN592_HUMAN -AURKB_HUMAN pp H33_HUMAN -AURKB_HUMAN pp DSN1_HUMAN -AURKB_HUMAN pp CCD86_HUMAN -AURKB_HUMAN pp SKA1_HUMAN -AURKB_HUMAN pp INCE_HUMAN -AURKB_HUMAN pp KI67_HUMAN -AURKB_HUMAN pp NELFE_HUMAN -AURKB_HUMAN pp DDX52_HUMAN -AURKB_HUMAN pp TACC1_HUMAN -AURKB_HUMAN pp H32_HUMAN -AURKB_HUMAN pp LMO7_HUMAN -AURKB_HUMAN pp KNL1_HUMAN -PRR12_HUMAN pp PUM1_HUMAN -CHERP_HUMAN pp WBP4_HUMAN -APOA1_HUMAN pp K1C16_HUMAN -APOA1_HUMAN pp MA7D1_HUMAN -DREB_HUMAN pp ZC3H4_HUMAN -DREB_HUMAN pp ZN598_HUMAN -FACD2_HUMAN pp UBP1_HUMAN -RCOR1_HUMAN pp ZN217_HUMAN -NU153_HUMAN pp SENP2_HUMAN -NU153_HUMAN pp TPR_HUMAN -ARHG6_HUMAN pp GIT1_HUMAN -ATF7_HUMAN pp TP4A1_HUMAN -CATIN_HUMAN pp NELFE_HUMAN -CO7_HUMAN pp PLMN_HUMAN -JHD2C_HUMAN pp MYOM2_HUMAN -IRF4_HUMAN pp TLK2_HUMAN -IRF4_HUMAN pp NFAC2_HUMAN -PKHA5_HUMAN pp SOGA1_HUMAN -PALM_HUMAN pp POTE1_HUMAN -POTE1_HUMAN pp TYB10_HUMAN -POTE1_HUMAN pp RECQ4_HUMAN -CE022_HUMAN pp WBP11_HUMAN -REPS1_HUMAN pp TPC2A_HUMAN -RHG04_HUMAN pp TNFL6_HUMAN -KBTB7_HUMAN pp TM160_HUMAN -ARI4B_HUMAN pp SP130_HUMAN -AGAP2_HUMAN pp AKT1_HUMAN -SKA1_HUMAN pp SKA3_HUMAN -PP14B_HUMAN pp ROCK2_HUMAN -CC130_HUMAN pp ZN165_HUMAN -CLN8_HUMAN pp RRP15_HUMAN -CLN8_HUMAN pp SELK_HUMAN -NUP98_HUMAN pp TPR_HUMAN -SRSF4_HUMAN pp SRSF6_HUMAN -BPTF_HUMAN pp H32_HUMAN -ARP10_HUMAN pp DCTN4_HUMAN -GRAP1_HUMAN pp HERC1_HUMAN -MS18A_HUMAN pp MS18B_HUMAN -AES_HUMAN pp SIX6_HUMAN -RBMX_HUMAN pp TRA2B_HUMAN -ABCD2_HUMAN pp PEX19_HUMAN -ABCD2_HUMAN pp ATP9B_HUMAN -PPIP1_HUMAN pp PTN18_HUMAN -PPIP1_HUMAN pp TNFL6_HUMAN -PPIP1_HUMAN pp RL34_HUMAN -LCAP_HUMAN pp TNKS2_HUMAN -UNK_HUMAN pp ZRAB2_HUMAN -CUL4A_HUMAN pp RBBP5_HUMAN -PDLI7_HUMAN pp ZN165_HUMAN -IBP2_HUMAN pp TRFE_HUMAN -ITPI2_HUMAN pp LC7L2_HUMAN -EGLN1_HUMAN pp LIMD1_HUMAN -FKBP4_HUMAN pp IRF4_HUMAN -AUTS2_HUMAN pp PCGF5_HUMAN -FIZ1_HUMAN pp NRL_HUMAN -MAGD1_HUMAN pp NUMBL_HUMAN -MS18B_HUMAN pp PEX19_HUMAN -ATRX_HUMAN pp NEK1_HUMAN -LC7L2_HUMAN pp NASP_HUMAN -BTF3_HUMAN pp RWDD4_HUMAN -PEX19_HUMAN pp PEX3_HUMAN -SFR15_HUMAN pp WBP4_HUMAN -IF4E2_HUMAN pp K1C20_HUMAN -CUTC_HUMAN pp SPG21_HUMAN -RL28_HUMAN pp TM230_HUMAN -NDUB8_HUMAN pp ZAP70_HUMAN -CIR1_HUMAN pp SRSF2_HUMAN -EP400_HUMAN pp TBCD4_HUMAN -GNL1_HUMAN pp TP4A1_HUMAN -PLMN_HUMAN pp YTDC1_HUMAN -MTOR_HUMAN pp RRAGD_HUMAN -MTOR_HUMAN pp ULK1_HUMAN -MTOR_HUMAN pp UBR4_HUMAN -MTOR_HUMAN pp PATL1_HUMAN -CIA2B_HUMAN pp CIAO1_HUMAN -PRPS1_HUMAN pp SPG21_HUMAN -ARBK2_HUMAN pp GIT1_HUMAN -CNOT2_HUMAN pp CNOT3_HUMAN -IF4H_HUMAN pp PSF2_HUMAN -KDM3B_HUMAN pp SPAG8_HUMAN -BOREA_HUMAN pp INCE_HUMAN -J3KN59_HUMAN pp RHG01_HUMAN -ACAP1_HUMAN pp AKT1_HUMAN -IKZF2_HUMAN pp SIN3B_HUMAN -NELL1_HUMAN pp TDIF2_HUMAN -NELL1_HUMAN pp SLTM_HUMAN -NELL1_HUMAN pp NEXN_HUMAN -BRPF1_HUMAN pp KAT6A_HUMAN -ACINU_HUMAN pp API5_HUMAN -CATG_HUMAN pp ERBIN_HUMAN -CAF1B_HUMAN pp CBX5_HUMAN -ARHG7_HUMAN pp GIT1_HUMAN diff --git a/hiv-benchmarking/hiv_raw_data/README.md b/hiv-benchmarking/hiv_raw_data/README.md deleted file mode 100644 index cb31f9b..0000000 --- a/hiv-benchmarking/hiv_raw_data/README.md +++ /dev/null @@ -1,52 +0,0 @@ -### Raw Data Sources: - - -#### 1. 5_min_75_confidence.sif -- Source: https://github.com/gitter-lab/hiv1-aurkb/blob/main/Results/networks/hiv-networks.cys -- Downloaded the 75% confidence-filtered network at 5 min as a .sif file after opening the file in Cytoscape and removed the '%' char from the filename to prevent any issues with reading file - - -#### 2. correctedprize_05.csv and correctedprize_060.csv -- These files were provided privately by Anthony Gitter. They are similar to the publicly available files `prize_05.csv` and `prize_060.csv` described below, and the notebook `1_compare_prizes_network.ipynb` is used to explore how the differences are only related to isoform annotations in the UniProt IDs. These files were from the private repository that was cleaned up and became https://github.com/gitter-lab/hiv1-aurkb. - - -#### 3. david5Min.txt and david60Min.txt -- Source: https://github.com/gitter-lab/hiv1-aurkb/tree/main/Results/enrichment - - -#### 4. hiv05-networks.cys -- Source: https://github.com/gitter-lab/hiv1-aurkb/blob/main/Results/networks/hiv-networks.cys - - -#### 5. hsa_uniprot.list -- Downloaded from https://www.genome.jp/linkdb/ -- Enter the following in the text boxes under the database link diagram: - - Click database names to download link information between two databases from *hsa* to *uniprot* in *text* format - - -#### idmapping_2024_06_26.tsv & idmapping_active_false_2024_06_26.tsv -- Downloaded from https://www.uniprot.org/ by uploading `prize_list_proteins.txt` (result from `generate_protein_mapping_input.ipynb` notebook) and doing the following mapping: - - Source database: UniProtKB AC/ID - - Target database: UniProtKB -- Downloaded the resulting job queue result -- `idmapping_active_false_2024_06_26.tsv` were the obsolete entries found that were seperately downloadeed - these proteins are also part of the `idmapping_2024_06_26.tsv` mapping - - -#### phosphosite-irefindex13.0-uniprot.txt -- Source: https://github.com/Reed-CompBio/spras/blob/master/input/phosphosite-irefindex13.0-uniprot.txt - - -#### prize_05.csv and prize_060.csv -- `prize_05.csv` source: https://github.com/gitter-lab/hiv1-aurkb/blob/main/Results/base_analysis/prize_05.csv -- `prize_060.csv` source: https://github.com/gitter-lab/hiv1-aurkb/blob/main/Results/base_analysis/prize_060.csv - - -#### uniprotkb_go_0000398_AND_taxonomy_id_96_2024_07_25.tsv, uniprotkb_go_0045944_AND_taxonomy_id_96_2024_07_29.tsv, uniprotkb_go_0051301_AND_taxonomy_id_96_2024_07_29.tsv, & uniprotkb_go_0098609_AND_taxonomy_id_96_2024_07_29.tsv -- Source: Downloaded from https://www.uniprot.org/ -- Process: - - Select Advanced in the main text field - - Select Gene Ontology in the first blue drop down menu and then select Taxonomy in the second - - Enter a selected Gene Ontology IDs and then selecting the human taxonomy. - - Download the tsv with the following columns: Entry, Reviewed, Entry Name, Protein names, Gene Names, Gene Ontology (biological process) -- Selected the following GO IDs: 0000398, 0045944, 0051301, 0098609 - - These were present in `david5Min.txt` and `david6Min.txt` diff --git a/hiv-benchmarking/hiv_raw_data/correctedprize_05.csv b/hiv-benchmarking/hiv_raw_data/correctedprize_05.csv deleted file mode 100644 index d371053..0000000 --- a/hiv-benchmarking/hiv_raw_data/correctedprize_05.csv +++ /dev/null @@ -1,1124 +0,0 @@ -Uniprot Prize -B0YIW2 5.029365599650666 -Q99081 4.5826881562606925 -P02765 4.027455886706562 -P69905 3.955817065609722 -P06732 3.885427876677984 -B7ZKJ8 3.885427876677984 -P23142 3.885427876677984 -P62805 3.885427876677984 -H3BLZ8 3.737659276683501 -Q9BU76 3.6456113515037107 -Q2KHT3 3.6456113515037107 -P02768 3.4955435931994874 -Q5TEC6 3.440054044881215 -Q8NBM4 3.440054044881215 -Q92576 3.3242082996374593 -P68363 3.3242082996374593 -Q9Y2R4 3.3242082996374593 -P61978 3.3188421301096342 -O75152 3.3188421301096342 -Q5T5H1 3.3188421301096342 -Q6PKG0 3.3010716433184535 -P11171 3.3010716433184535 -Q5T200 3.2919252118261264 -Q49A26 3.2919252118261264 -P02787 3.2382104940279017 -A0A0A0MTS7 3.238051370574189 -P49207 3.199587163788548 -P01023 3.160464557922258 -Q8IX15 3.160464557922258 -P19823 3.1443051364121013 -Q9Y6V0 3.1395052780155788 -P00747 3.1395052780155788 -P02788 3.1395052780155788 -P49790 3.138373607571537 -P31942 3.135860965564642 -P16403 3.096027032739792 -A0A087WVP1 3.0343829212843856 -P20742 3.0296215228026253 -Q16718 3.0296215228026253 -Q15063 3.0290081854705657 -P05452 3.0290081854705657 -Q13049 3.0290081854705657 -P19827 3.0290081854705657 -P26599 2.9625666245330287 -P08697 2.9625666245330287 -P01024 2.9625666245330287 -P36955 2.9625666245330287 -P10643 2.9625666245330287 -A0A0G2JQJ7 2.9625666245330287 -P01008 2.9454736787752185 -P05543 2.9389255309051 -Q86V48 2.829700827078317 -Q01130 2.829700827078317 -Q9UIQ6 2.829700827078317 -Q9Y5B9 2.829700827078317 -Q99490 2.829700827078317 -O75494 2.829700827078317 -A0A087X0X3 2.79524918318746 -C9JV77 2.791619794937591 -P16401 2.7478776653354346 -E9PCW1 2.7306756910406835 -A8MXP9 2.7306756910406835 -Q9Y2W2 2.7306756910406835 -Q86YV0 2.7306756910406835 -P02647 2.7207507719254114 -O95297 2.720655719852141 -A9Z1X7 2.720655719852141 -P18031 2.720655719852141 -Q14152 2.705397365273239 -P02748 2.642270222720446 -P18858 2.629050966263938 -A0A087WX41 2.625276798272792 -Q7L4I2 2.625276798272792 -Q9Y5V3 2.6037488593668163 -K4DI81 2.585459617333267 -P35443 2.578157049651625 -Q6DN12 2.5739996934436453 -Q9UQ35 2.5599794882543976 -Q9H814 2.5522933525759464 -Q9H6F5 2.5433868130219923 -P52657 2.5153505347187464 -Q8TAD8 2.5123326043136536 -Q96PK6 2.5123326043136536 -P46783 2.4894305938870764 -Q9Y520 2.4894305938870764 -Q9UK76 2.488829258560746 -Q8IZP0 2.481386971939164 -Q9NX58 2.481386971939164 -Q93100 2.481386971939164 -A0A075B738 2.481386971939164 -A0A0G2JPR0 2.4607657926247244 -M0QYC1 2.4327557823680848 -O75151 2.4157896423227374 -P48634 2.4140889675670607 -P16949 2.4140889675670607 -Q8NCD3 2.4140889675670607 -P51957 2.4140889675670607 -Q00403 2.4140889675670607 -P06396 2.4104977645875265 -Q7Z5J4 2.4071723991412477 -O95801 2.380388595749004 -Q9NYF3 2.3499452427441296 -H0Y5F5 2.3235758982106947 -P04350 2.323008637528429 -Q92619 2.3207248153099584 -P16150 2.3002413241447095 -Q5JTH9 2.2963417781148845 -P02774 2.2878774648384383 -Q8WWI1 2.2836508952400365 -Q96BH1 2.2836508952400365 -Q99622 2.281967707725143 -Q15477 2.281967707725143 -P20648 2.281967707725143 -Q9BQ70 2.281967707725143 -Q9NX00 2.28169436703743 -C9JYS8 2.272434959091674 -Q9UKV3 2.272434959091674 -P07996 2.2656102638471958 -Q15154 2.2486198914855393 -Q7Z460 2.2404601436060334 -A0A0C4DGB9 2.2363807440084105 -P62995 2.2320502169087835 -Q9Y5Z4 2.2211603377352613 -Q53GS7 2.214266510172929 -Q13619 2.2123687456514367 -Q8NDT2 2.208371655746704 -Q9UPP1 2.202520421506168 -P46013 2.1980389702236853 -H0Y449 2.19598460698059 -Q9BSK4 2.190602317592546 -P16520 2.1758198360023036 -Q92614 2.1758198360023036 -Q92804 2.1531129508902564 -Q9NVG8 2.1478379363448914 -Q9NW64 2.143900132084614 -Q9NWH9 2.143900132084614 -P31751 2.143900132084614 -Q92747 2.143900132084614 -O75533 2.143900132084614 -P17544 2.143900132084614 -O95169 2.1149459485767177 -Q9P0U3 2.1149459485767177 -Q9Y5K6 2.1123920250904797 -P50750 2.1050594887652343 -Q9ULF5 2.1015349060596558 -O95644 2.1015349060596558 -B7WPE2 2.1006878963086155 -Q8ND56 2.1006878963086155 -P06400 2.1006878963086155 -P15336 2.1001606026103454 -P10412 2.0967707438401675 -P17844 2.0930040732608233 -Q09161 2.0930040732608233 -O94782 2.0930040732608233 -Q9H000 2.0930040732608233 -P18507 2.0930040732608233 -Q01518 2.0930040732608233 -Q16666 2.0930040732608233 -Q15555 2.0930040732608233 -Q9Y2W1 2.0930040732608233 -O14578 2.0930040732608233 -Q9ULR3 2.0930040732608233 -Q14978 2.0930040732608233 -Q9UJU6 2.0930040732608233 -P18615 2.0930040732608233 -Q8NFC6 2.0930040732608233 -P06748 2.0930040732608233 -Q6ZUT1 2.0930040732608233 -E9PN89 2.0930040732608233 -Q96F86 2.0930040732608233 -O94913 2.0930040732608233 -Q6UUV9 2.0930040732608233 -Q13428 2.0930040732608233 -P19338 2.0930040732608233 -P62979 2.0930040732608233 -O75385 2.0930040732608233 -Q9HB90 2.0930040732608233 -Q9C0C2 2.0930040732608233 -Q92733 2.0930040732608233 -Q08117 2.0930040732608233 -Q08AE8 2.0930040732608233 -Q9ULU4 2.0930040732608233 -Q9UPR3 2.0930040732608233 -Q15334 2.0930040732608233 -E9PGC8 2.0930040732608233 -P62753 2.0930040732608233 -P22694 2.0930040732608233 -O60563 2.0930040732608233 -A0A075B6G3 2.0930040732608233 -Q86Y91 2.0930040732608233 -F8W7T1 2.0930040732608233 -Q92797 2.0930040732608233 -P38159 2.0930040732608233 -P23588 2.0930040732608233 -O94964 2.0930040732608233 -Q08170 2.0930040732608233 -Q14669 2.0930040732608233 -Q9Y6G9 2.0930040732608233 -Q12872 2.0930040732608233 -Q8N6H7 2.0930040732608233 -Q99879 2.0930040732608233 -O00472 2.0930040732608233 -P22626 2.0930040732608233 -O43148 2.0930040732608233 -Q13769 2.0930040732608233 -O76021 2.0930040732608233 -A0A087X188 2.0930040732608233 -J3QR29 2.0930040732608233 -Q15036 2.0930040732608233 -Q9H4A3 2.0930040732608233 -P35269 2.0930040732608233 -Q13151 2.0930040732608233 -A0A096LP69 2.0930040732608233 -Q15906 2.0930040732608233 -Q96IZ7 2.0930040732608233 -Q9UPU5 2.091231409713808 -Q53HC0 2.091231409713808 -Q8N3X1 2.091231409713808 -Q9BRD0 2.091231409713808 -P61956 2.091231409713808 -Q99729 2.091231409713808 -O60307 2.091231409713808 -E7EQT4 2.091231409713808 -Q9NWB6 2.091231409713808 -Q86U86 2.091231409713808 -Q8WXE0 2.091231409713808 -Q8NG31 2.091231409713808 -O75182 2.091231409713808 -Q15758 2.091231409713808 -Q5VT06 2.091231409713808 -O94874 2.091231409713808 -Q9HBD4 2.08927072000894 -P36915 2.08927072000894 -Q92854 2.0844344915355797 -Q9BWJ5 2.0844344915355797 -Q92688 2.081399852781726 -O95104 2.0800737634049917 -Q8TAQ2 2.077088533872014 -O75554 2.074136345050502 -Q9NR30 2.074136345050502 -Q12888 2.074136345050502 -E7ESS2 2.074136345050502 -Q9Y250 2.074136345050502 -Q92504 2.074136345050502 -Q86WB0 2.074136345050502 -A1X283 2.074136345050502 -Q7Z5R6 2.074136345050502 -Q13573 2.074136345050502 -Q5VTL8 2.074136345050502 -Q99623 2.074136345050502 -Q14677 2.074136345050502 -Q86V59 2.074136345050502 -F5H7W8 2.074136345050502 -E7EVA0 2.074136345050502 -Q9BVI0 2.074136345050502 -O96028 2.074136345050502 -P23528 2.074136345050502 -P50219 2.074136345050502 -Q9HCD5 2.074136345050502 -Q12789 2.074136345050502 -Q15149 2.074136345050502 -Q5W0B1 2.074136345050502 -P32519 2.074136345050502 -Q8IYW5 2.074136345050502 -P49711 2.074136345050502 -Q07960 2.074136345050502 -P25686 2.074136345050502 -Q96ST2 2.074136345050502 -P39880 2.074136345050502 -H9KVB4 2.074136345050502 -Q14980 2.074136345050502 -Q9ULW0 2.074136345050502 -P62820 2.074136345050502 -P35612 2.074136345050502 -Q96MU7 2.074136345050502 -P56211 2.074136345050502 -P42345 2.074136345050502 -E9PG73 2.074136345050502 -Q9H4L7 2.074136345050502 -Q9NPD8 2.074136345050502 -P49792 2.071348600578291 -P52756 2.071348600578291 -Q8NEZ4 2.071348600578291 -A0A087WUE4 2.071348600578291 -Q9Y3Q8 2.071348600578291 -C9JCC6 2.070445474815502 -P04264 2.070445474815502 -P45973 2.0694380337606084 -P29374 2.0694380337606084 -O75791 2.0694380337606084 -Q86X95 2.0663144760876446 -Q8IWB9 2.0662478931084225 -P28908 2.0631371175255264 -Q9C0K0 2.0630749935929655 -Q01433 2.057475184452911 -O95429 2.057475184452911 -O60271 2.057475184452911 -Q13506 2.057475184452911 -G5E9I4 2.057475184452911 -Q99590 2.057475184452911 -Q9UHB6 2.0535292568264225 -Q69YQ0 2.0535292568264225 -Q16537 2.0535292568264225 -P33991 2.047993194426352 -Q8IU60 2.047993194426352 -Q9NYF8 2.0476353441228383 -Q8N163 2.0476353441228383 -Q1W6H9 2.0476353441228383 -Q8IUC4 2.0476353441228383 -Q2M2I8 2.0476353441228383 -Q9NZ32 2.0476353441228383 -A0A0C4DGT3 2.0476353441228383 -P60174 2.044340200248854 -P57740 2.0437288702099377 -Q9Y2H2 2.0365545220910564 -Q9ULT8 2.0365545220910564 -Q14155 2.0365545220910564 -Q96PY6 2.0365545220910564 -A0A075B7F8 2.0258840676012237 -Q02790 2.0258840676012237 -Q9H1E3 2.0238476248551205 -Q8N5I9 2.0236687554426056 -O43399 2.0236687554426056 -Q8NC56 2.019570825094522 -Q13469 2.0194746191491477 -Q9NU22 2.016284902581357 -Q8ND61 2.016284902581357 -Q659C4 2.016284902581357 -P20226 2.016284902581357 -O76071 2.016284902581357 -Q9UII2 2.016284902581357 -P42684 2.010141366952317 -P20290 2.00962566492642 -J3QS41 2.006088800096324 -Q8IWZ8 2.0050115390474184 -Q6ZSZ6 2.0050115390474184 -Q9H4A6 2.0049258993481955 -H0YLM1 2.0049258993481955 -Q9C0D5 2.003893158665263 -Q6WKZ4 2.0015470024603927 -P50443 2.0015470024603927 -Q68DK7 2.0015470024603927 -Q96KB5 2.0015470024603927 -Q9NRA8 2.0015470024603927 -Q9BUQ8 2.0015470024603927 -P26358 2.0015470024603927 -Q9NSK0 2.0015470024603927 -P38935 2.0000647481974956 -Q13111 2.0000647481974956 -P37802 2.0000647481974956 -O00571 1.9993647345450238 -B7ZL14 1.9993647345450238 -Q3T8J9 1.9993647345450238 -P01106 1.995364993831002 -Q13905 1.995364993831002 -P09564 1.9952164715454883 -P04114 1.9952164715454883 -P15169 1.992890123029605 -O95453 1.9917206849966782 -Q5UIP0 1.9917206849966782 -Q8IWX8 1.9917206849966782 -Q6KC79 1.9917206849966782 -Q9H4E7 1.9917206849966782 -Q14C86 1.9917206849966782 -O75449 1.991375722886299 -Q00325 1.991375722886299 -Q15651 1.991375722886299 -Q96T51 1.9856617408191701 -P51452 1.9782946792900473 -Q29RF7 1.9775401751552404 -Q9Y2F5 1.9750550166567589 -P17483 1.9750550166567589 -P60468 1.9691438296706283 -P49454 1.9691438296706283 -H0YL70 1.9683029334710678 -O75396 1.9601876093993842 -Q9H582 1.9556137936327183 -Q56VL3 1.9486769534370292 -Q0ZGT2 1.9481548894726342 -Q49AR2 1.9480945422071312 -Q14847 1.9480945422071312 -Q9UPT8 1.9470950307992143 -Q15365 1.944984803261584 -Q70CQ4 1.9445373394280647 -O75122 1.9434305219033923 -Q9BYW2 1.9434305219033923 -Q8TDY2 1.9434305219033923 -O95218 1.9434305219033923 -Q8TF61 1.9434305219033923 -Q8N5U6 1.9418115434283743 -Q7Z3C6 1.9415669480747135 -Q1KMD3 1.9415669480747135 -P78371 1.9368901870733062 -P78414 1.9368901870733062 -F5H0R1 1.9368901870733062 -Q15052 1.9368901870733062 -P35251 1.9368901870733062 -O95071 1.9368901870733062 -Q92620 1.9368901870733062 -Q9H307 1.9340489974114472 -P78527 1.9340489974114472 -A0A1B0GV45 1.9340489974114472 -P42331 1.9340489974114472 -Q92833 1.9340489974114472 -Q7Z2Z1 1.9340489974114472 -Q7L9B9 1.9340489974114472 -Q9UBF8 1.9323419277671952 -Q15172 1.9323419277671952 -P52292 1.9323419277671952 -Q9BXB4 1.9323419277671952 -Q8TEK3 1.9301631333073082 -V5IRT4 1.9287952975837162 -P62328 1.9283777316613235 -P56182 1.9271301716229814 -A0A0U1RRM6 1.9271301716229814 -O75064 1.9271301716229814 -O60524 1.9254733389302683 -Q3MHD2 1.9254733389302683 -Q53F19 1.9217182069478536 -P46100 1.9217182069478536 -J3KMZ8 1.918483687108067 -Q92994 1.9177379301127873 -A0A0C4DFX9 1.9177379301127873 -Q9H4L4 1.9177379301127873 -O75909 1.9177379301127873 -Q96QE3 1.9177379301127873 -P27708 1.9177379301127873 -O15117 1.9177379301127873 -Q1ED39 1.9177379301127873 -Q92615 1.9177379301127873 -Q5SRE5 1.9177379301127873 -Q8TF01 1.9134882382668335 -Q6VY07 1.9134882382668335 -Q8WWQ0 1.9126016199016322 -Q5VUA4 1.9126016199016322 -A0A0A0MRV0 1.9126016199016322 -Q765P7 1.9125880555053754 -C9J2V2 1.9125880555053754 -Q13112 1.9125880555053754 -Q13627 1.9125880555053754 -G5E9M7 1.9125880555053754 -Q8IZD4 1.9125880555053754 -O60504 1.9096467796825596 -Q9H410 1.9096467796825596 -O00418 1.9096467796825596 -O15042 1.9092246320613344 -Q15121 1.9068102597006469 -O60293 1.9068102597006469 -Q8IX90 1.9068102597006469 -P49006 1.9064228740215896 -Q92794 1.9056028560293767 -Q1RMZ1 1.8994200131133057 -Q8WUA4 1.8966500978683094 -O43290 1.8966500978683094 -D6RIF6 1.8928651212222507 -Q9BVA0 1.8925827513787215 -P49761 1.8925827513787215 -Q684P5 1.8833492355924442 -I3L0U5 1.8818650852676617 -Q8WUM0 1.8818650852676617 -A0A140T9T7 1.8755427857898597 -Q96PC5 1.8721924141342208 -Q96G01 1.8721924141342208 -G3V4K3 1.872162332032532 -Q9NQL2 1.872162332032532 -Q9H019 1.871047222852938 -Q6PJT7 1.8690441202601953 -Q9Y4B6 1.8690441202601953 -O75175 1.8680222366671007 -Q9BZZ5 1.856455021578961 -P78347 1.8554918125016646 -Q96EV8 1.8554918125016646 -O43516 1.8554918125016646 -Q99442 1.8554918125016646 -Q5T5Y3 1.8554918125016646 -P08311 1.8553794198461875 -P52597 1.8446537391239852 -Q8WVC6 1.8446537391239852 -Q9NSU2 1.8446537391239852 -Q9Y478 1.8446537391239852 -P49321 1.8437965826752347 -Q9UKS7 1.8432577831038797 -P30414 1.8429899049403593 -F8W0Q9 1.842425461713465 -H0Y4E8 1.842425461713465 -Q9NPI6 1.840430126933067 -P17152 1.8399900893860353 -P08779 1.8399432472278279 -A0A087X1R1 1.8380453078961343 -Q9H4Z2 1.8359056314622115 -Q15025 1.8359056314622115 -V9GYM8 1.8359056314622115 -Q15596 1.8359056314622115 -O60784 1.8359056314622115 -P52948 1.8290791644626694 -Q8WYQ5 1.827307091291376 -Q96EP0 1.825511192580264 -Q8WWM7 1.8190036768064894 -Q86X53 1.815938469541187 -K7ELC2 1.815938469541187 -Q96GN5 1.815938469541187 -Q7Z7G8 1.8155017134778082 -Q5TCZ1 1.8155017134778082 -Q15751 1.8155017134778082 -O00767 1.8150340171635877 -Q9NU19 1.813795383823543 -Q13595 1.8134821764910776 -P13598 1.8128129802259068 -Q8WW12 1.8128129802259068 -Q9NR12 1.8128129802259068 -P16104 1.8124777079272067 -J3KPC5 1.8115344911869387 -P12956 1.8115344911869387 -A0FGR8 1.8087656672268064 -Q9Y6Q9 1.8062115457008978 -Q92667 1.8053604267554024 -Q9Y2H0 1.8046647169767462 -Q9Y519 1.8027453719934066 -Q15648 1.8027453719934066 -P41002 1.8027453719934066 -Q86YV5 1.8027453719934066 -Q9NQW6 1.8014868709712135 -Q96N16 1.8014868709712135 -Q92843 1.80079987861724 -Q9Y487 1.7994284332160255 -Q96L91 1.7992020816383723 -Q9BW61 1.7992020816383723 -O60336 1.7992020816383723 -P13994 1.796675590645714 -Q9BTT6 1.7959113987628283 -Q96EY5 1.7940052918727143 -P13639 1.7933085596410143 -Q9P2R6 1.7933085596410143 -P21359 1.7933085596410143 -P0C1Z6 1.7933085596410143 -Q05519 1.7927955325322298 -Q14671 1.7927955325322298 -Q9NZ63 1.792232681484061 -Q9NRY4 1.792165796529125 -Q96RT1 1.7919187298648076 -I3L2J0 1.790797470337918 -Q9Y385 1.790797470337918 -Q99952 1.7867712786372354 -P46779 1.7867712786372354 -Q13263 1.7867712786372354 -C9JQE8 1.7856684494305761 -Q9NZN8 1.784613430637171 -Q9H910 1.7785735346084073 -Q9ULC8 1.778246202637384 -Q15003 1.778246202637384 -A0A140TA76 1.778246202637384 -Q96I23 1.7775522661491632 -O75420 1.7757877143324068 -Q9NPQ8 1.7741724240357675 -O75995 1.7735136278539134 -P49750 1.7720618765978158 -Q9HC52 1.7720618765978158 -Q9Y2D5 1.7693290668469035 -Q5SW79 1.7688201117820106 -Q9P013 1.7682012671239038 -O76031 1.7682012671239038 -A6NMQ1 1.7668267820920907 -Q6AI39 1.7668267820920907 -P42166 1.7668267820920907 -O60343 1.7668267820920907 -Q8WXX7 1.7668267820920907 -P04004 1.766095488973741 -P40227 1.7639058211203502 -Q96T37 1.7619178688595742 -Q9HC62 1.7619178688595742 -P60891 1.7604442112214442 -Q8IUW5 1.7604442112214442 -Q9UK61 1.7595362564644863 -Q6P2E9 1.7594791229630506 -Q8NI08 1.7594791229630506 -Q92610 1.7594791229630506 -P23246 1.7594791229630506 -A2RRD8 1.7594791229630506 -Q9BTA9 1.758477834900746 -P19174 1.7536469168550288 -Q13085 1.751804598112101 -F5GX28 1.7493077191635205 -Q96Q15 1.7493077191635205 -P62701 1.7447763945422439 -Q9P275 1.7447763945422439 -Q8TBC3 1.7447763945422439 -O14974 1.743972249080854 -A0A1B0GVL4 1.742103640394029 -Q9NXR1 1.7347057683454494 -Q13185 1.7319626633555625 -Q14739 1.7319626633555625 -P40855 1.73138503423839 -A6NIW2 1.7299577009918496 -P16333 1.7299577009918496 -Q8TDY4 1.7299577009918496 -Q96SK2 1.7299577009918496 -Q12830 1.7299577009918496 -Q9Y2X7 1.7293642143059378 -Q92900 1.7277438934967138 -Q6ZV73 1.7265598328201814 -O75781 1.7258711686866488 -Q8N6T3 1.720045341334363 -Q8TBB5 1.720045341334363 -Q9NQS7 1.7192877172491672 -A0A0C4DGZ1 1.7192877172491672 -Q04637 1.7184322502679668 -Q15056 1.7175906577542075 -P51587 1.7141251254542167 -G3XAN8 1.7092399321618308 -Q15051 1.7092399321618308 -Q9Y3D0 1.7092399321618308 -Q9H299 1.7092399321618308 -Q3KQU3 1.7092399321618308 -Q9BQ61 1.7092399321618308 -Q13242 1.708078531435652 -Q8IWI9 1.708078531435652 -Q9UKM9 1.708078531435652 -Q9NWZ5 1.708078531435652 -R4GMX8 1.708078531435652 -Q9BZ95 1.7029043597981222 -Q9NQX3 1.7000852357484855 -Q5VT52 1.7000852357484855 -P04053 1.6966551417840128 -Q9H1A4 1.694898972781371 -O43583 1.694898972781371 -O43166 1.6919854649545685 -P50991 1.690617938729064 -O43896 1.6901698599848274 -Q8IXT5 1.6901698599848274 -Q9H8V3 1.6887372992977963 -O75362 1.6887372992977963 -Q8TB72 1.6875846134034342 -Q58A45 1.6869718435986873 -P04921 1.6862254152495715 -Q9UPR0 1.6831225762746254 -P46109 1.6818237841265362 -Q14011 1.681141112634762 -P30291 1.6804466318356368 -O95758 1.6800357982877165 -P29084 1.679223063064028 -Q86W56 1.679223063064028 -Q8TC07 1.6772080389536994 -Q3ZAQ7 1.6772080389536994 -Q9H6L4 1.6772080389536994 -O43572 1.6772080389536994 -P08651 1.6772080389536994 -P51003 1.6772080389536994 -A0A087WZV0 1.6771463933324673 -X6R7X0 1.6771463933324673 -A0A1B0GTW1 1.6771463933324673 -Q9C0B0 1.6771463933324673 -Q9BQF6 1.6771463933324673 -O95747 1.6753615114019746 -Q7Z7A4 1.6710146392964595 -Q07666 1.6710146392964595 -Q96DV4 1.6708431432717923 -Q2TAZ0 1.6705720140133289 -Q13435 1.6698092197126806 -P98171 1.668670898676557 -Q8NBZ0 1.6643778204226511 -P02686 1.6643778204226511 -P49585 1.6642517673671389 -Q8IWS0 1.663274744014383 -Q86XK3 1.663274744014383 -Q4LE39 1.663274744014383 -P47974 1.663274744014383 -P50747 1.663274744014383 -O75717 1.663274744014383 -Q96D15 1.6619734426235804 -Q32MZ4 1.6599301052774391 -P29590 1.6564200532197444 -Q96C90 1.6556264804570962 -Q6DKI7 1.6556264804570962 -Q13247 1.6556264804570962 -Q9HBM6 1.6529959642169378 -Q7LBC6 1.6527500850207928 -O15014 1.651172937797034 -O94761 1.6502214136897413 -P27815 1.6502214136897413 -P16402 1.648748413464311 -J3KNL6 1.648748413464311 -B4DY08 1.648748413464311 -Q96DF8 1.6446227191770557 -B9EGE7 1.6446227191770557 -Q99549 1.6446227191770557 -Q6ZNJ1 1.64269992345517 -Q9Y2U5 1.6367104797579248 -Q14151 1.6358338110561552 -P35236 1.6349593665241 -Q12979 1.6342311178769553 -A0A0B4J2E5 1.6330199652404895 -Q96HA1 1.6324656025906694 -Q9NWQ8 1.6323040840368876 -Q9H9P5 1.630771279510544 -O14874 1.63058881341464 -P28749 1.63058881341464 -J3QQJ0 1.6283890950707012 -O75475 1.6252713233319813 -Q8NCN4 1.6251812799886058 -Q9ULL5 1.6251812799886058 -Q8IYH5 1.6251812799886058 -Q9HCH0 1.6251812799886058 -Q01167 1.6250089821690419 -P63313 1.6233665304783438 -Q9Y383 1.6231317053084644 -Q9Y314 1.6231317053084644 -Q8N999 1.622993700947562 -P63272 1.6203457919362008 -Q96MF7 1.618118054418137 -Q7L2E3 1.6168480219685337 -Q9GZT9 1.6148543100728276 -Q8NDD1 1.6139697076023776 -Q13422 1.6139697076023776 -P48651 1.6139697076023776 -Q9BXW9 1.6112666294310674 -Q7KYR7 1.6103938633737793 -Q13370 1.6098048778662417 -O60516 1.6088986679139607 -Q86UK7 1.6066377596960149 -P08670 1.6047294192141037 -Q15185 1.6039075099523328 -Q76FK4 1.6039075099523328 -A0A5E8 1.6039075099523328 -P29966 1.6016262103462995 -Q7Z589 1.6011078030337265 -Q15363 1.6010646244535887 -Q9NPG3 1.6010646244535887 -P17181 1.6004867491643342 -Q86UE8 1.6004867491643342 -Q53HL2 1.5987537264652705 -A4D2B0 1.596365603301689 -Q86YS7 1.5943590497400983 -Q68DH5 1.593257221651549 -Q9NYA4 1.5867062539232415 -A8K727 1.5867062539232415 -Q14699 1.5867062539232415 -Q96GE4 1.5863495754611554 -B5MCU0 1.5863495754611554 -O60333 1.5863495754611554 -Q8WWW0 1.5860233224503295 -Q9UHB7 1.5860233224503295 -Q14188 1.5846150343713412 -Q8NI27 1.5846150343713412 -P31483 1.5838005455677517 -J3KN59 1.5838005455677517 -Q6P3S6 1.5836658366009204 -A0A0J9YWL0 1.5774447536145375 -Q8WVC0 1.576851257996113 -O14908 1.5764803833226009 -Q7Z5L9 1.5758455443241544 -Q6NW29 1.5752653922867537 -O15021 1.574150295475778 -Q66K74 1.5697896741692845 -Q7Z569 1.5621456637620745 -P55201 1.56134495346787 -Q14149 1.5597182751399448 -Q5T4S7 1.5593568988240107 -Q9Y2Y9 1.5593568988240107 -Q9HCE1 1.5587155374692414 -P49757 1.5583262707564272 -Q9BUJ2 1.5576469662179702 -Q6P6C2 1.5576469662179702 -I1E4Y6 1.5563025972301816 -O43295 1.5563025972301816 -P60709 1.5532291664357984 -H7C494 1.5532291664357984 -Q9UKL0 1.5532291664357984 -Q9UQR0 1.5532291664357984 -Q99856 1.5532291664357984 -Q9Y6R0 1.5532291664357984 -O95475 1.5532291664357984 -J3KPH8 1.5532291664357984 -Q96II8 1.5532291664357984 -Q99640 1.551636854535616 -E7ERS3 1.551636854535616 -P42858 1.551636854535616 -Q9UBP0 1.551511002861387 -Q14498 1.551511002861387 -Q9NTM9 1.549335131113205 -Q9UPX8 1.548481314803169 -Q01196 1.5467490697478377 -Q8WUQ7 1.5440115965137435 -Q9NRQ5 1.5425987598831323 -Q15058 1.5421741826769928 -P17096 1.5414008330832916 -P23396 1.540974297289215 -Q9Y2Z0 1.5374294639604158 -Q9Y6I3 1.5348290417612744 -H7C2Q8 1.53334867204404 -Q8ND82 1.5317923423127608 -Q96BY7 1.531236041614951 -Q9Y3B9 1.5309785666497355 -Q9Y4A5 1.5309785666497355 -P18065 1.530585166912765 -P42766 1.530585166912765 -Q9H0E3 1.5299457846891635 -O00139 1.5291933019566997 -Q13057 1.5278819476884984 -Q3V6T2 1.5254789263504844 -Q96I24 1.525285823427137 -Q86W92 1.5236636199942113 -Q5SQI0 1.5233702471669925 -O60496 1.5228442562900213 -D3DQV9 1.5219216082275395 -O95674 1.5218374717742686 -P15822 1.5218374717742686 -Q8WUH2 1.5188433749477945 -Q9H6H4 1.5153527618285414 -Q92888 1.5151231030186687 -A0A0J9YYD9 1.5151231030186687 -Q9BRL6 1.5126987508397534 -Q9UKJ3 1.5095282736803597 -O00716 1.506703214168738 -P12270 1.506703214168738 -P54278 1.5004501242853205 -Q8WVZ9 1.5001236856081273 -O15054 1.4991713079622904 -Q96N67 1.4991713079622904 -Q27J81 1.4991713079622904 -P0C7P0 1.4989888127394957 -Q96PN7 1.4986862331154844 -Q9NYP9 1.4986862331154844 -H3BQL3 1.4986382961231692 -X6RLX0 1.4986382961231692 -Q16186 1.4986382961231692 -Q9UG63 1.4981130172751098 -O95239 1.4962166717747136 -P56589 1.4938112941438515 -Q14103 1.4937444379141032 -Q53QZ3 1.4927819189940181 -Q15776 1.4917764239854727 -Q9BW19 1.4917764239854727 -Q9UPU7 1.4917764239854727 -O15534 1.487264621286407 -P82094 1.4844341997257489 -A0A0G2JNZ2 1.4831620582394198 -O60664 1.481077721531142 -Q01082 1.4805861772647626 -Q969R8 1.4802199220669037 -A0A0U1RRH7 1.4787436390436959 -Q68E01 1.47704849491289 -A0A024R4E5 1.4744322137737034 -E9PJ55 1.4741661518581652 -O96013 1.4733488915683695 -Q96JM7 1.4664663535517246 -Q14684 1.4659087622757931 -Q15181 1.4651206340344076 -Q5JSZ5 1.4621020210862232 -P00519 1.4600214671135892 -O43861 1.4595842003311976 -Q14807 1.4594594113221078 -Q9H6A9 1.4576375808977051 -Q92922 1.4576375808977051 -Q2NKX9 1.4576375808977051 -P49915 1.4574508741014023 -J3KPF0 1.4570838456002475 -Q92685 1.4569641682536811 -P20963 1.4562735899353614 -Q8WXG6 1.4557951070801385 -Q8N1F7 1.4506568843932597 -Q6ZU65 1.4452368742932706 -Q8WWW8 1.442454989839013 -Q96NY9 1.4371602289363223 -P16455 1.43648719255985 -Q8TF74 1.43648719255985 -Q9BVC5 1.43648719255985 -Q96F46 1.436131077602721 -Q86YE8 1.4357694665997545 -C9J7T7 1.4332804246591733 -P14921 1.432391983160914 -P28066 1.432391983160914 -Q9H496 1.4315219662451901 -O75410 1.4274553490164978 -P07766 1.427020517513147 -P17480 1.4265158906429753 -Q2KHR2 1.4245729184327016 -Q9Y388 1.4221072948726288 -Q9Y3S2 1.4203653481358378 -Q12968 1.4200481489287842 -Q6P3S1 1.4200481489287842 -A0A0C4DFM7 1.417786476091088 -Q9NQT8 1.4170719101299225 -O43439 1.4170719101299225 -Q9ULH0 1.4170719101299225 -Q7Z422 1.4167301823964789 -Q9Y248 1.4141155725530052 -Q9UIG0 1.4141155725530052 -A0A0A0MRR7 1.414114809254499 -Q9Y2V2 1.4140634399725864 -Q9UJF2 1.4140634399725864 -Q14693 1.4139384363862562 -P06127 1.4134962460604465 -Q8N488 1.4130726650170602 -H7BZJ3 1.4079714054211705 -Q7KZF4 1.4077462420892584 -Q9UHD8 1.4077462420892584 -P11387 1.407165160730768 -P22314 1.4055026873551135 -Q9H2Y7 1.404278512299156 -O94888 1.4027498920199606 -Q9BWT3 1.4012255401070186 -P17275 1.398338110192834 -Q14839 1.398338110192834 -P49768 1.395522566349015 -M0QXA7 1.3954546462122825 -Q9UNE7 1.3951713002688575 -G5EA09 1.3945555670580567 -P42025 1.3929551436380987 -Q9NRH2 1.386059858172826 -A0A0A0MTC5 1.3857922789405945 -P46379 1.381734440271269 -F5H8D7 1.381311096353027 -Q8NF99 1.3790844369432247 -Q9Y3X0 1.3790844369432247 -Q86XN7 1.3790708641788674 -O95466 1.378708531371345 -Q15027 1.378708531371345 -Q96T58 1.3740579455411406 -Q02078 1.372105870811973 -Q9Y2K7 1.372105870811973 -Q86TB9 1.372105870811973 -Q9HB21 1.370439810950772 -B4E0Y9 1.3650013905568215 -B1AM27 1.3638978446465078 -Q86U70 1.3638978446465078 -O15355 1.3638978446465078 -P53801 1.3626210124844773 -Q96T23 1.3597869554337407 -Q14814 1.3556876285013741 -E9PNT2 1.3510999693925114 -Q9UNN5 1.3507891200859456 -O75132 1.3462298959658738 -O43491 1.3459376771082727 -Q9Y3P9 1.3459376771082727 -Q5T6F2 1.3459376771082727 -O14639 1.3459376771082727 -Q7Z2W4 1.3445089856069514 -Q8NDI1 1.3445089856069514 -Q9NSY1 1.3421465341377863 -Q96S53 1.342136945246756 -E7EPT4 1.3399916693835952 -Q9GZY8 1.3393202241362634 -Q96EB1 1.339067498714862 -Q969T9 1.336601117149929 -P0DI81 1.336601117149929 -A0A0A0MT60 1.3303932882739926 -Q8IV63 1.325699598575591 -Q15032 1.325699598575591 -O95628 1.3225681523274035 -A0A087WWF6 1.3219123235237868 -Q6ZRI6 1.3219123235237868 -Q13158 1.3219024088198772 -O00231 1.3182975778427108 -Q96RR4 1.3180526639899415 -Q15464 1.3153136536263852 -Q3ZCQ8 1.3124760170954974 -Q9NUA8 1.311917377512151 -Q92598 1.3118292247110566 -Q3B726 1.3114040854518276 -Q8NHQ9 1.3099985711203712 -Q9BX63 1.305462150602956 -P30041 1.3036944847038239 -O14523 1.3025993654945334 -P35527 1.3012384398573682 -Q9BXI6 1.2919135053535369 -Q5QJE6 1.289184704701847 -Q15424 1.289184704701847 -Q9H4L5 1.2849550851075429 -Q96A65 1.2834606945086144 -E7EQS8 1.2772333137379068 -Q8WXD9 1.2766428307525954 -A0A0A0MQU4 1.2747712441742245 -Q6P0Q8 1.2747712441742245 -E7EVB6 1.2747712441742245 -Q14676 1.2736999749815565 -Q14181 1.273410703338122 -Q9Y508 1.271850004154278 -Q96C36 1.2692161465227383 -Q8N201 1.2692161465227383 -O43395 1.2631263756430609 -Q9UJZ1 1.260631662780117 -Q00537 1.260631662780117 -F5H527 1.2600223449685404 -Q8N490 1.2595503613966865 -M0R226 1.25874242722772 -Q15813 1.25874242722772 -Q9BZX2 1.254357705738553 -O60869 1.254357705738553 -Q6NZY4 1.254357705738553 -Q6JBY9 1.254357705738553 -O95696 1.2528130397867507 -Q96ST3 1.252257841776829 -Q8IYL3 1.2515272999610383 -Q06945 1.2478890430709098 -Q15291 1.2475593922253903 -Q96SL8 1.2470766183851945 -Q7Z5K2 1.2437444782695026 -Q5T8P6 1.2426795081873674 -Q96A57 1.2418536980236472 -P39687 1.2396318901092043 -Q8NHM5 1.239552288210497 -Q15390 1.2392179222024038 -O60264 1.2390939190066683 -J3KTL2 1.2314350027874281 -Q8WV93 1.2214395107571536 -X6RAL5 1.2214395107571536 -Q12846 1.2198285070067105 -Q96DC7 1.2170234258276502 -A0A0A0MT22 1.213667888116882 -Q8N103 1.211178504714192 -P54259 1.211178504714192 -Q9P2B4 1.2103665780676773 -P78332 1.2103665780676773 -P43403 1.2090669777370158 -S4R347 1.208670256568819 -Q7L273 1.2074600584781505 -Q16204 1.200876917336464 -A0A0D9SF60 1.200876917336464 -Q9BVA1 1.1988524735897546 -Q06546 1.1965087177551355 -P05387 1.1958261054040098 -Q13200 1.19545548800851 -Q9NPA5 1.1935372180611366 -Q9UGP4 1.1906073333175042 -P13807 1.1888723099041016 -Q8NBX0 1.1888723099041016 -Q13123 1.1878250534090191 -Q9BUR4 1.1865290485394642 -P07108 1.1839392587237014 -O75391 1.1834390080524675 -Q16539 1.1834390080524675 -Q15366 1.179739158975082 -P06239 1.1790711506753633 -B0QYS7 1.1790711506753633 -P84243 1.178375553697934 -Q8N4V1 1.1739016632927877 -Q9NTJ3 1.1715207854876015 -P48382 1.1715207854876015 -Q96P11 1.1700507185037665 -O75925 1.1681182680530653 -Q14657 1.1652764267874487 -P13645 1.1652764267874487 -Q8TDJ6 1.1647377477877612 -F8W9L8 1.1626041254547055 -P35626 1.1626041254547055 -Q9UM11 1.1603735977113114 -Q9H3N1 1.1593642064456313 -P62070 1.1564272523291241 -Q8N2F6 1.1562087789717361 -Q5H9R7 1.1562087789717361 -C9JA08 1.1562087789717361 -Q9H0G5 1.1534793335105484 -P62633 1.1525590608925131 -P52943 1.1523909333481244 -P04637 1.1518078703110126 -Q9Y3T9 1.1442551046759952 -J3KNR0 1.1433636627985004 -Q9HCJ3 1.143048359008894 -Q9UBB4 1.141267016881167 -Q99704 1.1355799997588678 -A0A0A0MQS2 1.1299340550653802 -Q7Z4G1 1.1289004862517558 -Q03252 1.127537470352873 -O14681 1.1243593918876393 -A0A087WTW0 1.1180470836417982 -Q96G03 1.1178546649913876 -Q5HY81 1.1121118109072745 -O43561 1.1115393335893025 -P25205 1.111027922417743 -Q9UKS6 1.1105882253298103 -D4PHA4 1.1098582831892387 -Q9BT25 1.1054250730101414 -Q92538 1.1054250730101414 -P31749 1.1048407095618467 -Q96HY6 1.1002324397496703 -Q9H7N4 1.096718762189216 -Q9Y6D0 1.094063941950012 -Q6UB35 1.094063941950012 -E9PFI5 1.0926831622151365 -P55036 1.091067154930688 -Q14141 1.0880741151441748 -O00567 1.087160586916167 -P62877 1.0867691812361329 -Q9BRF8 1.0860017014311372 -Q13523 1.082932134492169 -A0A087WUT6 1.0807938165422941 -P26639 1.0770238031876567 -Q6NUK1 1.073046325179002 -P28290 1.0719684141051047 -Q9NPF5 1.0715770685460235 -Q5QP82 1.069403041789876 -Q8IWA0 1.067729752429818 -P10809 1.0657634082295697 -Q9UI08 1.0644695104547548 -Q96IF1 1.0636668251800396 -O60303 1.0627849111635628 -Q9NYL2 1.0519697889423674 -G1UD79 1.0473923349935208 -P04049 1.0456681597101958 -Q96D05 1.044142248460674 -Q69YN4 1.0423962692803266 -Q96T49 1.03905852388284 -J3QTA6 1.0386996097261545 -Q9C0C9 1.0284889541021818 -Q9Y4I1 1.025428545795504 -E7EV07 1.0221829329849237 -Q13542 1.0196538521636462 -O75376 1.01856678494086 -P51397 1.0165047988684672 -Q96D71 1.016200877515734 -O00570 1.015362212762448 -Q9Y2I7 1.0142648815187707 -A0A1B0GTN9 1.0109627568592914 -Q9HD15 1.0096828639556041 -Q96QD9 1.0096828639556041 -Q15652 1.009499260009846 -Q7Z2E3 1.0084603804047656 -J3KQL8 1.007761452732459 -O15169 1.0058085823971197 -Q9NQC3 1.005192061438783 -J3KR72 1.00375503814917 -Q2NL67 1.003196032647505 -Q9NVA4 1.002287920271628 diff --git a/hiv-benchmarking/hiv_raw_data/correctedprize_060.csv b/hiv-benchmarking/hiv_raw_data/correctedprize_060.csv deleted file mode 100644 index e0f9268..0000000 --- a/hiv-benchmarking/hiv_raw_data/correctedprize_060.csv +++ /dev/null @@ -1,1781 +0,0 @@ -Uniprot Prize -A9Z1X7 6.343096753401697 -Q99081 6.341176225843277 -Q14152 6.27885101201349 -P69905 5.581820586044436 -B0YIW2 5.581820586044436 -H3BLZ8 5.477823239269644 -P02787 5.334125824240241 -Q9Y2R4 5.174845117869908 -Q9UKV3 5.158390930270961 -Q96DC7 5.086508399873105 -P23142 5.086508399873105 -P02765 4.898987333103724 -P37802 4.898987333103724 -Q9NZ63 4.898987333103724 -Q9NRA8 4.898987333103724 -Q92576 4.753524914278531 -O60869 4.753524914278531 -Q15388 4.753524914278531 -Q9H1E3 4.753524914278531 -Q9Y2W1 4.732635903457538 -Q92922 4.649058136710955 -P51957 4.649058136710955 -Q9H6F5 4.649058136710955 -O96013 4.649058136710955 -Q5T5H1 4.649058136710955 -P18031 4.649058136710955 -Q9UQ35 4.649058136710955 -Q6PKG0 4.649058136710955 -Q13740 4.630059193615651 -Q8N684 4.603945627430846 -Q8WWM7 4.579952224685415 -P61978 4.579952224685415 -P49207 4.568697931367675 -Q14738 4.5534393765206 -A0A075B738 4.5534393765206 -Q5JTH9 4.525949613864843 -P02786 4.497219015813256 -P52594 4.497219015813256 -Q8NBM4 4.441375748603866 -O60749 4.434437246356288 -Q15027 4.4014845928926185 -Q96BH1 4.4014845928926185 -Q13243 4.401410413245214 -Q99490 4.401410413245214 -Q8IU60 4.401410413245214 -P48634 4.401410413245214 -G0XQ39 4.388776771651651 -O43719 4.388776771651651 -P06748 4.388776771651651 -P16949 4.388776771651651 -A0A087X0X3 4.388776771651651 -P01106 4.371909274401765 -Q7Z5J4 4.371909274401765 -Q9NQC3 4.352386472972312 -O75151 4.338487243836552 -Q96T58 4.333357363918107 -Q8TEA8 4.30234934029137 -O14646 4.30234934029137 -Q00403 4.30234934029137 -Q49A26 4.30234934029137 -F8VX04 4.296308796231895 -P52756 4.256576053583022 -Q93100 4.256576053583022 -P29350 4.256576053583022 -Q9NX58 4.250159505368735 -Q9UIQ6 4.247227922154881 -P62805 4.232255423400956 -P02768 4.232255423400956 -P68363 4.213646427303251 -Q9HBD4 4.21131735632547 -Q9Y2W2 4.208091431562529 -Q86Y91 4.186742180098105 -F8W0Q9 4.178368113075158 -Q15154 4.178368113075158 -Q01082 4.178368113075158 -O75995 4.178296855671552 -P38935 4.178296855671552 -Q9H4L5 4.178296855671552 -O15127 4.178296855671552 -O15042 4.153933358800746 -O75396 4.152515054060739 -Q9BXB4 4.152515054060739 -Q9Y2D5 4.152515054060739 -P04004 4.120723433343331 -B7ZL14 4.1120240197381825 -P49790 4.111796391926524 -P18858 4.09150923401631 -P98179 4.075787794387851 -Q14739 4.070993906506133 -Q96HY6 4.070993906506133 -E7ESS2 4.068226501317462 -Q8NCD3 4.068226501317462 -Q9BVC5 4.068226501317462 -P20742 4.068150407429005 -Q9Y5B9 4.066397214904209 -Q9H814 4.064125401548631 -P07766 4.0514356632856945 -Q9UPP1 4.0514356632856945 -P16383 4.0514356632856945 -O75449 4.0514356632856945 -P46013 4.0329974822334185 -Q6JBY9 4.028916213096974 -P11171 4.016588518455184 -Q9Y6X9 4.0106948331092775 -P29590 3.9920272692455234 -Q13094 3.9918565901520284 -A8MXP9 3.989000746414705 -P04637 3.986936425829817 -A0A0A0MTS7 3.9844445443191963 -Q5TEC6 3.9606584627983965 -Q9ULU4 3.960056522032911 -M0QYC1 3.959480419609139 -Q9Y314 3.954242484725559 -Q9BTA9 3.9115798707362006 -Q16718 3.9085984456601586 -Q92609 3.8952393043169113 -P06396 3.8704427712701053 -P19823 3.8704427712701053 -Q7Z5R6 3.8447012509953975 -O75533 3.8418096567450464 -Q13242 3.8418096567450464 -Q9Y520 3.8396714264268956 -Q6DN12 3.8396714264268956 -P06493 3.833836160262491 -Q9UKJ3 3.833836160262491 -Q86V48 3.833836160262491 -Q3KQU3 3.833836160262491 -O14681 3.8328762818785185 -Q8TBB5 3.8039477122984193 -O94874 3.8039477122984193 -Q01130 3.7961469535998678 -P38159 3.7886902447131066 -Q8WUM0 3.77276351857238 -P42166 3.77276351857238 -Q96DF8 3.77276351857238 -Q16566 3.7641746801719926 -O95231 3.753050839667004 -Q14684 3.753050839667004 -Q14677 3.7506192770941524 -Q13428 3.736683906762221 -O75791 3.7299875110273533 -P17483 3.7295111160999688 -Q04760 3.7265709378323812 -Q13185 3.720245719156555 -O60293 3.7103758360370795 -Q6P3S6 3.7103758360370795 -E9PCW1 3.703850278778894 -P16150 3.703850278778894 -Q9NWQ8 3.689478221370832 -Q9Y2V2 3.689478221370832 -O75494 3.689478221370832 -Q9ULR3 3.689478221370832 -Q8N999 3.687604005331092 -Q9H4L4 3.6700241618698533 -A0A0G2JNZ2 3.6620812847218955 -Q66PJ3 3.661493292298151 -Q07666 3.661493292298151 -P42167 3.6477669357595794 -B7ZKJ8 3.638536063809395 -P08697 3.638536063809395 -P01024 3.636573293729426 -P02788 3.636573293729426 -P49750 3.6324468985973306 -Q9Y6G9 3.6324468985973306 -P22626 3.6324468985973306 -Q6UN15 3.631000353453727 -P06400 3.6261879133906394 -Q8ND56 3.6258385285883046 -O95644 3.6234211665158367 -P16402 3.6234211665158367 -O14545 3.6070470127990064 -Q14847 3.60639388539497 -Q2KHT3 3.605691301576105 -Q96D05 3.600840934114586 -P27816 3.600840934114586 -O95793 3.6004296174070483 -M0QXA7 3.590874866823889 -Q9H400 3.588092477415535 -Q92667 3.575353156831935 -Q14149 3.575353156831935 -Q9NX00 3.575353156831935 -E7EQT4 3.575353156831935 -Q92733 3.575353156831935 -P23588 3.575353156831935 -P43487 3.57483498316194 -O00571 3.5646459898505523 -Q9Y4P8 3.563733838810669 -Q6FI81 3.563733838810669 -P33991 3.558661381189503 -Q9UN86 3.54855319093477 -Q92769 3.5455679145723518 -Q7L2J0 3.5455679145723518 -Q7Z460 3.5455679145723518 -Q03252 3.5386476752234683 -P02748 3.517204355209177 -E7EQZ4 3.517204355209177 -Q15172 3.516057833486526 -P50750 3.516057833486526 -O75152 3.5073572194945224 -Q15149 3.4947885993017445 -Q6P2E9 3.4947885993017445 -Q12986 3.473581918505678 -B7WPE2 3.4591302728778484 -Q13619 3.4591302728778484 -C9JV77 3.4436972171003175 -O95625 3.4320497781880843 -P17096 3.4320497781880843 -Q9UHD8 3.426167015643338 -Q14643 3.426167015643338 -P62753 3.426167015643338 -Q9UI08 3.4253419593217194 -P08670 3.420157686166843 -P25205 3.420089571135662 -A0A0C4DGT3 3.420089571135662 -Q5T200 3.420089571135662 -P05543 3.4134039075493403 -Q15063 3.4134039075493403 -Q96GN5 3.413395827264063 -Q9Y2H0 3.3960732772027424 -Q12849 3.3816661060042184 -Q9UK76 3.3774200891786763 -Q9HCD5 3.3723304142338915 -P28749 3.3693968233714098 -P21291 3.3686268968392183 -P02647 3.364265154316673 -Q8WV93 3.3635831829667744 -O15294 3.3635831829667744 -P84085 3.3635831829667744 -P02774 3.3635831829667744 -Q12834 3.361243720000825 -Q8N6H7 3.3573059164790053 -Q13547 3.3532841978446974 -O14974 3.3491198082764875 -Q9HCN8 3.330633797129997 -P55209 3.330633797129997 -P20962 3.330633797129997 -Q86VZ1 3.3287314734817297 -P36955 3.324429183928491 -Q13098 3.323302577866693 -F8WA39 3.314748749215946 -P24534 3.31126138683895 -O94906 3.3082225123658904 -Q96PQ6 3.3082225123658904 -Q9BWD1 3.3022671199824436 -Q15629 3.2912574672496326 -Q9Y4F3 3.288347923069329 -Q14671 3.288347923069329 -Q9NQW6 3.288347923069329 -Q9P270 3.288347923069329 -Q7Z2W4 3.272291398277367 -P26358 3.2722368623821514 -Q8NDT2 3.2722368623821514 -Q9BYW2 3.2722368623821514 -Q5T5C0 3.2718809474354256 -O76031 3.257136127624741 -Q9HC52 3.246190181745755 -Q9UPN4 3.2414042120620783 -Q8TCJ2 3.210363373294698 -Q2KHR2 3.205193553876435 -P13807 3.2007310648785072 -Q9UIG0 3.1998724251452253 -P49792 3.1989946829844342 -P57740 3.196758764445242 -Q7L2H7 3.1961526678240886 -Q9Y5L4 3.1961526678240886 -Q3B7T1 3.1847296605498934 -Q96PK6 3.183154820255834 -O75145 3.183154820255834 -Q9NYF8 3.1823255790915965 -E9PFI5 3.1756661941859563 -P15153 3.1756661941859563 -Q14181 3.175144211906576 -P63220 3.174664255184253 -P62995 3.174225934200828 -Q13574 3.1728751374511255 -P06239 3.1728751374511255 -Q9Y5J1 3.1728751374511255 -Q15032 3.1721484673371654 -J3KTL2 3.1715041737291343 -Q92794 3.1715041737291343 -Q04637 3.1715041737291343 -B4DY08 3.1690920543894996 -Q96N67 3.1624955108400425 -Q9NYF3 3.15967829703216 -Q9NQS7 3.1471331468741877 -P60709 3.1461775953542954 -P01023 3.1461775953542954 -E9PGC8 3.1397706923157624 -Q9H2K8 3.1289085051915912 -P09693 3.1289085051915912 -Q5VT52 3.116376614217901 -Q32MZ4 3.102032133600785 -Q9C0C9 3.1019722295154164 -Q15287 3.1019722295154164 -Q92615 3.095259829374129 -Q13283 3.0931531761759805 -Q6R327 3.0931531761759805 -Q9NPQ8 3.092337880591247 -O00303 3.092337880591247 -Q15056 3.0893776814980676 -P20700 3.084961563275176 -Q8NG31 3.083225056717786 -Q13111 3.083225056717786 -Q14157 3.083225056717786 -Q96T37 3.079092843273387 -Q9H4E7 3.076175194305448 -Q7Z417 3.074828125470814 -Q12968 3.0522242573714626 -C9JQE8 3.0379043550731732 -Q9Y385 3.0379043550731732 -P49915 3.0379043550731732 -O43318 3.0379043550731732 -Q9BZI7 3.0342391193114016 -Q14692 3.02282602022253 -P36915 3.02282602022253 -F8W8D3 2.9832140640473046 -P42677 2.977622478221382 -P18615 2.973008187319182 -Q92522 2.9702237590072222 -Q9NU19 2.9643627794173604 -Q14980 2.9597387852660297 -P26368 2.956328120758978 -Q86YV0 2.953670965958088 -Q53EL6 2.949670994594568 -Q75N03 2.948695724632309 -Q06546 2.946523201718249 -O60832 2.94584377575008 -Q1MSJ5 2.9452258538077105 -Q9NYP9 2.94442798895557 -P17152 2.943849448129353 -P00747 2.9394753087147185 -A0A5E8 2.9339887280657373 -I1E4Y6 2.931855559472614 -Q99590 2.9220695108673267 -J3KPD3 2.915933685531801 -O60496 2.8984675262791995 -Q9Y2U5 2.8984675262791995 -Q5UIP0 2.8975798342405636 -O00308 2.890106774640417 -E7ERS3 2.8890984183579578 -A1L0T0 2.866956886649348 -A0FGR8 2.865073665371901 -Q01196 2.8565507192330917 -Q13595 2.8500962762960698 -Q13435 2.848132942575471 -Q9NVM6 2.846320230664685 -Q92608 2.844747069977456 -A6NMQ1 2.8423630443254257 -P05452 2.8337809317709897 -Q6XZF7 2.8284287032593665 -Q9Y2I7 2.8273019635280763 -P00492 2.8253881941849692 -P16989 2.8225364630128356 -Q13247 2.8168366046908906 -P62750 2.8165975150198514 -Q99729 2.815128862027224 -O75190 2.8137191211840196 -P55011 2.812551799348679 -Q9BXI6 2.811200866390171 -O00231 2.811200866390171 -Q9UH03 2.8104626803482566 -Q9BRA2 2.8104626803482566 -F5H8D7 2.8097966330524224 -P08238 2.8069947873220675 -Q8IZD4 2.8069947873220675 -P19827 2.800965276594735 -Q8TC07 2.7988155040478158 -Q8WY36 2.7988155040478158 -Q06945 2.7981630786118004 -Q9UI10 2.791681741619092 -P61927 2.783492042451182 -A0A0U1RRH7 2.776597240080683 -P07996 2.776597240080683 -Q8ND61 2.776597240080683 -Q6KC79 2.770612115493291 -Q6PJI9 2.764017995653381 -Q15003 2.764017995653381 -Q9C0C7 2.764017995653381 -Q14966 2.7618986760443587 -Q7LBC6 2.756032352923431 -V9GYM8 2.7554518502099064 -O14828 2.7554518502099064 -B4DNK4 2.7513650187870247 -Q96FS4 2.7498541397178258 -E9PRY8 2.748192387366624 -Q9Y3U8 2.748192387366624 -Q9HB71 2.7445815636606206 -O60784 2.73490058815137 -Q9NYZ3 2.734508923866525 -Q96L91 2.7227188983513972 -Q00839 2.7225202323227324 -P53634 2.720571593956306 -Q13148 2.7057668980882266 -Q13422 2.7057668980882266 -Q7Z5L9 2.7042739817244033 -P19174 2.68580624274679 -Q99613 2.683883458110277 -X6RAL5 2.683425139797931 -P62310 2.683425139797931 -P09496 2.683425139797931 -Q92979 2.683425139797931 -F8VP89 2.683343635778918 -Q9HCE1 2.683343635778918 -Q6P4F7 2.6755600065638943 -Q6IQ49 2.6755600065638943 -P50747 2.6755600065638943 -P51452 2.6623500337271317 -O95801 2.659548924352855 -J3KNR0 2.6526279256871965 -Q9H992 2.6526279256871965 -Q96S55 2.6526279256871965 -Q3ZCQ8 2.645423080459946 -Q9NW64 2.6452762912024017 -Q53GS9 2.6414861603166297 -A0A0B4J1V8 2.6414861603166297 -Q5SRN5 2.6414861603166297 -Q15751 2.6414861603166297 -A0A0G2JNG9 2.6407489036258385 -A0A0C4DG17 2.636450195026626 -Q9NWH9 2.6355354695575746 -O75179 2.6335930431509538 -P27540 2.6335930431509538 -Q3V6T2 2.6300235507006127 -Q8ND76 2.6300235507006127 -Q92747 2.6281360080380636 -Q8NE71 2.6267255596291195 -P50914 2.6239594764232432 -P26599 2.619400213363766 -P48730 2.6186030722798415 -Q9Y383 2.617137973772376 -Q9UHB7 2.6132693051799123 -O00418 2.6132693051799123 -Q8NC44 2.6132693051799123 -Q8TF74 2.6132693051799123 -Q14209 2.6132693051799123 -Q96B97 2.6132693051799123 -Q9H307 2.6121402058732763 -Q9NTI5 2.6117717924652677 -P18621 2.6053811242125313 -Q9Y277 2.6036317228636645 -Q8NHG8 2.6001654139075976 -Q8IWI9 2.6001654139075976 -Q9NZI8 2.5999560805560513 -P06753 2.5999560805560513 -P31942 2.595383142690731 -O43809 2.595383142690731 -O75081 2.5912818476608996 -A0A0A0MR07 2.59114805329053 -Q9NR30 2.5819183786102844 -O60264 2.578241211710358 -Q9BRD0 2.575225488876934 -P78414 2.570807213558573 -P52732 2.56650045678402 -P49796 2.566413060243313 -Q5JSZ5 2.5647758193564574 -P32519 2.5647758193564574 -P19338 2.5544669526939883 -P84103 2.5544669526939883 -Q9UJU6 2.5544669526939883 -Q8NFA0 2.5544669526939883 -P10412 2.5544669526939883 -P49585 2.5544669526939883 -P41236 2.5513484499047223 -P41440 2.5494209527174805 -P29966 2.5460514662873575 -P53801 2.5439828704279135 -Q13469 2.5411209879727386 -Q8WWQ0 2.5366587460915504 -J3QR29 2.5366587460915504 -O94804 2.536438961695345 -Q96ST2 2.5346696973625504 -Q9HBU6 2.5346696973625504 -O43566 2.5296297240129304 -Q86TB9 2.5294212306813417 -P14625 2.5274187633699996 -O75531 2.522093879674654 -Q9BTD8 2.515469763793849 -Q9UJK0 2.5017982747055387 -A0A0A0MT22 2.496618461875316 -P37108 2.481770230111558 -O14641 2.4767706785392023 -O75347 2.476518016902869 -Q9BZE4 2.476441008409147 -Q96GK7 2.4759465075681835 -P61006 2.4721919462234396 -O15047 2.4688159896459623 -Q9Y4B5 2.4688159896459623 -O76064 2.4688159896459623 -Q5T3J3 2.4688159896459623 -C9JYS8 2.4688159896459623 -Q8TAP9 2.4688159896459623 -Q9NZJ0 2.4688159896459623 -Q96A65 2.4688159896459623 -Q9BSW2 2.4688159896459623 -Q9Y3R5 2.4688159896459623 -P05204 2.468551760338197 -Q12789 2.468551760338197 -Q13573 2.46746171478299 -A0A0A0MT60 2.46746171478299 -P52948 2.46746171478299 -X6RAB3 2.46746171478299 -M0R2Z9 2.46746171478299 -Q8NFC6 2.46746171478299 -P17480 2.46746171478299 -P52566 2.46746171478299 -Q08AE8 2.46746171478299 -Q14571 2.46746171478299 -Q9NXR1 2.46746171478299 -Q8IYW5 2.46746171478299 -A0A0A0MRJ7 2.4672104804550665 -O95104 2.4672104804550665 -Q49AR2 2.466014046219824 -P13639 2.4606293250432882 -O75323 2.4600240123813126 -P63241 2.458412000552882 -Q9Y3S1 2.458141005847916 -Q16539 2.4534798123517945 -K7ER00 2.451678077731939 -Q9BU76 2.449133822612871 -Q9NWQ4 2.4469919422188253 -P62273 2.4445307339638553 -Q9UQ80 2.4443541391971313 -Q5VTL8 2.4423788327662797 -Q9BVA0 2.4284676107671372 -P30304 2.4225847452847447 -Q6NUK1 2.4225847452847447 -Q9UP95 2.4225847452847447 -Q9H211 2.422477977503958 -P06732 2.42111889261933 -P13598 2.42111889261933 -Q5FBB7 2.4181972190476917 -H0Y449 2.4171764320816167 -Q96BY6 2.413408065697673 -O95071 2.4113299194643703 -O94964 2.4113299194643703 -H0Y4E8 2.410641174322052 -Q96ER9 2.4097896504640444 -Q15648 2.4041687016198043 -O95562 2.403213018226528 -E7EVA0 2.403213018226528 -O60669 2.4011865848345346 -P16401 2.400381171085242 -P27815 2.400381171085242 -Q9H6A9 2.400381171085242 -Q9BTE6 2.399368338742987 -Q7L4I2 2.399353894136513 -P42345 2.3940349516397066 -P10242 2.3940349516397066 -Q9BSK4 2.3915558918335815 -Q86WJ1 2.387851225630009 -I3L2J0 2.387851225630009 -Q9ULJ3 2.384175651759781 -Q92797 2.3836445561407174 -Q9Y2F5 2.379460658438461 -Q9UHB6 2.379460658438461 -A0A0A0MRV0 2.379460658438461 -P28482 2.379460658438461 -O95218 2.379460658438461 -X6R7X0 2.379460658438461 -P46019 2.379460658438461 -O94913 2.379460658438461 -Q9BW71 2.379460658438461 -Q8N5U6 2.379460658438461 -Q9ULW0 2.379460658438461 -M0R088 2.379460658438461 -P52565 2.374939246474543 -Q96GM8 2.3733874213209085 -A0A075B746 2.3733874213209085 -Q92506 2.3716227233370137 -P27701 2.3716227233370137 -Q96EY5 2.371143496958733 -O95685 2.3620817834660675 -Q96JM3 2.3607129875172985 -Q92538 2.3607129875172985 -Q9NPA8 2.3601818305414874 -P30041 2.3601818305414874 -Q5VTU8 2.349073887131984 -P30291 2.3481915494629044 -Q8TF50 2.3481915494629044 -Q8N3F8 2.3481915494629044 -A0A1B0GTW1 2.348148799466387 -Q14978 2.3457503445509533 -Q96P11 2.345425420782599 -O60563 2.3453800692503908 -A2RRD8 2.3453800692503908 -Q9NRY4 2.3453800692503908 -Q5VV67 2.3453800692503908 -A0A0J9YYD9 2.3453800692503908 -Q07864 2.3433908886146106 -E9PDJ2 2.341567079008069 -Q9H0B6 2.3398774717659556 -O95248 2.3381930601227916 -P15814 2.3370501247653466 -P31946 2.335716808128612 -O60343 2.3346504091988916 -Q9BY43 2.3346504091988916 -P54278 2.3346504091988916 -Q9P265 2.3346504091988916 -Q96T23 2.3346504091988916 -Q8IY63 2.3346504091988916 -Q7LDG7 2.3346504091988916 -Q86X95 2.3346504091988916 -Q9H3N1 2.3346504091988916 -O75717 2.3346504091988916 -A6QL63 2.3346504091988916 -P14921 2.3346504091988916 -Q86XK3 2.3346504091988916 -Q15052 2.3346504091988916 -Q9BQG0 2.3346504091988916 -Q5JTV8 2.3346504091988916 -O75937 2.3346504091988916 -O43776 2.3346504091988916 -P78371 2.3346504091988916 -Q86U86 2.3346504091988916 -Q96HA1 2.3346504091988916 -Q5TGY3 2.3307464837965366 -A0A087WZG4 2.3269135297751853 -Q7Z5K2 2.326125572781427 -Q6ZU80 2.3239206503504994 -D6RAF8 2.323894146175125 -O75385 2.3233691974776725 -Q9Y5W3 2.3209679956833145 -Q9UMN6 2.3191552675637985 -O15355 2.3191552675637985 -Q02078 2.3191552675637985 -B5MCU0 2.3191552675637985 -P84101 2.3191552675637985 -Q92973 2.3191552675637985 -Q96PY6 2.3191552675637985 -O43586 2.3185737932242345 -P04350 2.314982216298122 -P06127 2.314561515384482 -Q9UBF8 2.31432263823119 -Q9NVG8 2.3140994729645166 -Q7Z7G8 2.3133832832818944 -Q15555 2.312006788139701 -Q9BTC0 2.310518141178187 -Q8TAD8 2.307406490965736 -P18077 2.3040839094701653 -P43403 2.303453581412007 -A0A0A0MQU4 2.299075970419503 -Q13112 2.299075970419503 -P49902 2.299075970419503 -P62851 2.299075970419503 -Q13769 2.299075970419503 -Q6W2J9 2.299075970419503 -O94915 2.299075970419503 -Q8IVT5 2.299075970419503 -P62979 2.299075970419503 -Q96Q45 2.299075970419503 -O43166 2.299075970419503 -O76021 2.299075970419503 -Q9Y6B7 2.299075970419503 -P55199 2.299075970419503 -Q69YQ0 2.299075970419503 -Q8IWZ8 2.299075970419503 -P25054 2.299075970419503 -P35269 2.299075970419503 -O14578 2.299075970419503 -Q9P2N5 2.299075970419503 -Q16875 2.299075970419503 -P13994 2.299075970419503 -O94782 2.299075970419503 -Q00613 2.299075970419503 -F5H527 2.297603563879488 -A0A1B0GW41 2.2963772165764844 -O15117 2.2963772165764844 -A0A140T9T7 2.2963772165764844 -Q96EV2 2.2963772165764844 -Q9BZX2 2.2963772165764844 -O00161 2.2963772165764844 -Q96F86 2.292434592591453 -Q5H9F3 2.292434592591453 -H0Y5F5 2.2919241781546216 -P18065 2.2918670259954967 -A0A0G2JPR0 2.2918670259954967 -P20290 2.290532015929818 -P40692 2.289220295075456 -Q9C0C2 2.2879120093189114 -O75909 2.287049633180599 -Q96DI7 2.286480354499751 -A0A087WXK8 2.2857292370904956 -X6RLX0 2.2857292370904956 -Q14669 2.2857292370904956 -Q14241 2.283077395978252 -Q8WWY3 2.2828182211073784 -Q16666 2.2806692853162915 -Q9NZR1 2.280117440290037 -O75182 2.278944609113264 -P16403 2.278853374020225 -Q5SQI0 2.2779184769070033 -Q13576 2.2779184769070033 -Q8IZP0 2.2779184769070033 -P12270 2.2771236985359633 -Q96MU7 2.2771236985359633 -B8ZZS0 2.2771236985359633 -Q9BWH2 2.2761753687407116 -P09960 2.2754610466223055 -P56385 2.274746360801069 -Q8WUA4 2.273207627865621 -Q9BVG9 2.271997726104446 -Q15424 2.2666427126190243 -P00519 2.2666427126190243 -P27708 2.2666427126190243 -A0A024R4E5 2.2666427126190243 -Q96EP0 2.2644827436430015 -Q14232 2.2626944928197035 -Q8N9N7 2.258939498430974 -Q9NSY1 2.2568006685880397 -P31751 2.256356422189651 -P16104 2.256103854743699 -O43399 2.256103854743699 -Q9Y4B6 2.253712080399718 -O60307 2.253712080399718 -Q9NVC6 2.2488856062003046 -Q53F19 2.248122300890407 -Q9P209 2.2468356012020037 -Q14188 2.2468356012020037 -P42331 2.246602127121681 -Q02880 2.2458941139000594 -Q16186 2.2441475250594958 -P78549 2.2441475250594958 -P23246 2.2441475250594958 -Q9Y2Z0 2.2441475250594958 -Q96CB8 2.24373557344842 -A0A0J9YWL0 2.2420910926726227 -O75368 2.2383274205822485 -P18085 2.2363689638413664 -Q96S15 2.233770403130035 -P35443 2.233770403130035 -A0AVF1 2.233770403130035 -Q96I23 2.233770403130035 -Q14657 2.233770403130035 -P15169 2.233770403130035 -P02751 2.233770403130035 -P04114 2.233770403130035 -Q16659 2.2335059384115277 -O43395 2.2335059384115277 -Q13627 2.2327959012891605 -Q9BUQ8 2.2322684496965617 -Q9ULT8 2.2318506168909744 -P61956 2.2318506168909744 -Q96A19 2.2318506168909744 -Q86V59 2.2296591603582447 -Q9NSC5 2.2291724357357747 -Q9H1B7 2.225559044932159 -Q9NPG3 2.2248700523389298 -Q5SW79 2.2248700523389298 -P46783 2.2243089739892596 -Q9ULX3 2.2243089739892596 -Q92890 2.220951883678653 -Q9H6D3 2.22045739030683 -Q9NPA5 2.22045739030683 -O15014 2.21514156051157 -Q92844 2.213165480223556 -A0A087WTF0 2.213165480223556 -Q5W0V3 2.213165480223556 -O00257 2.213165480223556 -P22694 2.213165480223556 -A0A087X1Z1 2.213165480223556 -Q86X53 2.2125393001672466 -A0A1B0GV70 2.2125393001672466 -Q9UNL2 2.2123967206190396 -O94762 2.2095606643536594 -Q14011 2.207583025923814 -B9EGE7 2.207583025923814 -Q9NUQ3 2.207583025923814 -Q8N163 2.207583025923814 -P35268 2.2074101015458067 -O43290 2.2065884644499807 -Q9UKT7 2.2065884644499807 -P17544 2.2064876313546855 -Q13506 2.205796891825871 -P21359 2.205796891825871 -Q96R06 2.205796891825871 -Q13118 2.2022506666900625 -Q765P7 2.201298938577045 -O94761 2.201172389983515 -Q14155 2.200202901434627 -Q96N16 2.200202901434627 -Q8TF01 2.200202901434627 -Q15906 2.200202901434627 -Q8IV04 2.1996342206443202 -O75592 2.199611945341856 -Q76N32 2.199611945341856 -Q9C0B5 2.199611945341856 -O15173 2.199611945341856 -O00472 2.197191540811107 -Q8TB72 2.197191540811107 -Q15459 2.197191540811107 -Q13131 2.196487406850238 -P20674 2.195696145813123 -Q01433 2.1944671655094172 -Q8IUW5 2.1944671655094172 -O14672 2.1944671655094172 -Q6NUT3 2.1944671655094172 -Q13415 2.1919535392926943 -J3QS41 2.1888740461429372 -Q7L9B9 2.186498260136673 -P53367 2.1845458796839976 -J3KQ96 2.1845458796839976 -P61221 2.1829810061773336 -Q92804 2.1810433068591295 -Q5SSJ5 2.1810433068591295 -Q9NYV4 2.180306307008897 -A2RU30 2.180306307008897 -Q9Y6Q9 2.180306307008897 -Q7KZ85 2.1779965957899723 -P46109 2.1779965957899723 -Q7Z569 2.1779965957899723 -Q15398 2.177661100418392 -H0YEM9 2.177387813228972 -Q53HC0 2.1769670173326636 -Q96RT1 2.1751395944369634 -Q969S3 2.1751395944369634 -P60174 2.1745996676192627 -F5H2A4 2.171686564597966 -O14757 2.169640769751727 -Q9H9B1 2.1695705234625238 -O00479 2.1695705234625238 -Q02040 2.1695705234625238 -Q9C0K0 2.1683721201802864 -Q96EZ8 2.163937425840785 -Q7Z2Z1 2.163937425840785 -H7BZJ3 2.1631522638114933 -P52597 2.16235359417483 -Q9P1Y6 2.157552632480217 -O60499 2.157472214061373 -Q09161 2.1535841944572254 -A0A087X188 2.1511843673572555 -Q15334 2.1511843673572555 -P49773 2.1509374760235906 -O75175 2.150268063811613 -A0A1C7CYX9 2.147634536571458 -Q6UUV9 2.144353112425524 -P78347 2.144353112425524 -P42684 2.144353112425524 -Q5BKY9 2.141490930753863 -J3KMZ8 2.1393577954162155 -Q5QJE6 2.1388767056303037 -E7ETA6 2.135795915641035 -Q04759 2.135517483801738 -P48651 2.1339171486848536 -Q86UK7 2.1326377265666236 -J3KNL2 2.1326377265666236 -J3KPC5 2.131481938444286 -O75376 2.131427456796861 -P63244 2.1256488598308394 -Q9C0D5 2.1228849043594202 -Q9Y3Q8 2.1169414847507166 -P02686 2.1153446040349273 -Q29RF7 2.1153446040349273 -P51451 2.1153446040349273 -Q6P4R8 2.1153446040349273 -P31749 2.1152058368718016 -P20020 2.115175057066784 -Q96S44 2.115101885595142 -Q96D71 2.114307490386848 -P52292 2.1141175455399206 -A2VDJ0 2.1128627190139273 -P29084 2.112016616761711 -P21281 2.112016616761711 -Q9UBH6 2.112016616761711 -Q9H4A3 2.112016616761711 -Q7Z6E9 2.112016616761711 -F5H1Z8 2.112016616761711 -Q9BQF6 2.1093699848810408 -Q99567 2.109369906086194 -P24928 2.109369906086194 -Q6NUJ5 2.109369906086194 -Q9Y2H2 2.109369906086194 -Q99717 2.109369906086194 -Q14498 2.109369906086194 -Q7Z6Z7 2.109106305964427 -Q9NUY8 2.1088564729063712 -P25686 2.1088563323517064 -Q9BVI0 2.1088563323517064 -O96028 2.1088563323517064 -Q8IWB9 2.1088563323517064 -O75122 2.1088563323517064 -Q9HAZ1 2.1088563323517064 -Q15366 2.1035064109427073 -F5H7W8 2.1029473344391434 -Q15121 2.1029473344391434 -Q8NBZ0 2.1021796093761314 -Q8TDB6 2.1021796093761314 -C9JCP7 2.100768945012069 -Q53GL0 2.1005985514856045 -Q1KMD3 2.1005985514856045 -P34972 2.1005985514856045 -Q5T5Y3 2.1005985514856045 -Q68DK7 2.1005985514856045 -P56589 2.0999618659930266 -Q8TAE8 2.0969151322673776 -Q99952 2.096800827256426 -Q6ZUT1 2.0965620919406875 -P40337 2.0940746930227507 -Q9UPT5 2.0940746930227507 -Q6WKZ4 2.0940746930227507 -Q9H4Z2 2.0919705192907587 -E9PES4 2.0919705192907587 -Q9Y519 2.0919705192907587 -Q86W92 2.091196213338115 -Q76L83 2.0908721634802507 -Q9HCG8 2.0906774593530892 -Q5W0Z9 2.0905131050090593 -Q9NPI6 2.0905131050090593 -Q96IZ7 2.0905131050090593 -O60292 2.0877486732898083 -Q9NS23 2.0877486732898083 -Q96A57 2.0871938065321576 -Q9BUJ2 2.0820378222307596 -Q86YP4 2.0820378222307596 -Q9Y2I8 2.0820378222307596 -R4GN35 2.079263081148012 -Q9NR81 2.0761267366233156 -Q6ZTW0 2.0761267366233156 -S4R347 2.074498970192412 -Q86YA3 2.070140731192559 -P85037 2.06892375183125 -Q9Y6X4 2.0677612605546694 -Q13905 2.0677612605546694 -A0A0C4DGZ1 2.0677612605546694 -Q8IXT5 2.0672868878993853 -Q08945 2.064975149001411 -P38432 2.0623654773138607 -Q8IYB1 2.059796597379046 -Q68CP9 2.059677311353709 -Q9UKE5 2.059677311353709 -Q14141 2.059677311353709 -Q9Y6R1 2.059677311353709 -Q99442 2.059677311353709 -P51003 2.059677311353709 -Q9UN36 2.0588577325744915 -H7C0J3 2.0569217983037205 -P14866 2.0566283279346362 -P24723 2.056181680721582 -Q6ZNJ1 2.053553258172667 -O95777 2.0516852149464277 -P30414 2.051170515899524 -Q9H910 2.050309220240455 -Q9H0E3 2.0502876986582708 -Q86U06 2.044407082305635 -Q7KZF4 2.044237578314874 -H7BZ55 2.044237578314874 -Q8N0Z3 2.0441078857689794 -Q8IZT6 2.0440278197996733 -Q16537 2.0440278197996733 -Q6NXT6 2.0440278197996733 -Q9P275 2.0419633625787936 -Q15036 2.0419633625787936 -O00512 2.0419633625787936 -P41182 2.0419633625787936 -P52701 2.0419633625787936 -Q13303 2.0419633625787936 -Q8ND82 2.0419633625787936 -P29374 2.0400661110774747 -Q02224 2.0397413778619202 -O00203 2.0397413778619202 -Q5W0B1 2.0372960569585388 -Q8NC56 2.0372960569585388 -Q12846 2.03618141426343 -Q9H7N4 2.0284998413815045 -Q15233 2.0284821003482234 -O60336 2.0284821003482234 -Q641Q2 2.0282540999774303 -E9PNI7 2.0282540999774303 -Q8IWX8 2.0234090876979245 -Q6ZRI6 2.0231953177119206 -Q8NCF5 2.0231953177119206 -Q6P1L5 2.0229474827644847 -A0A0G2JLV7 2.022606153041937 -O15231 2.021164722110241 -Q9H410 2.0210634500435005 -P29762 2.018747389362501 -Q9H7F0 2.018453559736115 -Q7Z4H7 2.018453559736115 -Q9GZR2 2.017884495888352 -Q86XZ4 2.0166004499098737 -Q9Y5B0 2.01604951961007 -Q2M2I8 2.015226233917227 -P49815 2.0148308444920477 -P26641 2.0147818804919972 -Q53EZ4 2.013154470011905 -P35236 2.01113106001041 -Q9NZ32 2.0100950372823636 -P04053 2.009624306881169 -Q6L9W6 2.008786491289885 -A0A0C4DFX9 2.007387438926108 -Q6PJT7 2.005852191010468 -Q96JH7 2.005852191010468 -O60683 2.005852191010468 -G3V1A6 2.005852191010468 -Q8IYB4 2.005852191010468 -O95696 2.005852191010468 -Q9P2N6 2.005852191010468 -Q9H2G2 2.005852191010468 -A0A0G2JNW7 2.005852191010468 -Q6NW29 2.005852191010468 -Q9Y4E8 2.005852191010468 -P50548 2.005852191010468 -Q9BQ52 2.004833183336828 -Q9HCK8 2.0024814726735265 -Q96Q89 2.000682599847863 -Q14207 2.000489694020692 -F5H0R1 2.000489694020692 -A0A0B4J2E5 1.9977890694842837 -Q15025 1.9977890694842837 -Q0VDF9 1.9977890694842837 -P55265 1.9977890694842837 -Q8IX90 1.9977890694842837 -D6RIF6 1.9971092688947787 -A0A087X1R1 1.9968773503723398 -Q96KB5 1.995698340913257 -P31146 1.9955203209803056 -Q08752 1.9955203209803056 -P42575 1.9955203209803056 -Q9UPR3 1.9955203209803056 -Q92556 1.994718445912385 -Q92934 1.9940402620975821 -P11388 1.9936771130586195 -G8JLB6 1.9935080122812758 -O60486 1.9925845465047842 -P61073 1.9925845465047842 -P11274 1.9870681450856689 -Q9Y6R0 1.9859979698209003 -Q92614 1.9849695021527582 -Q9ULL5 1.9825700826091797 -Q08378 1.981215747310041 -Q15643 1.9808076255153757 -Q9GZP4 1.9807055879415203 -P78332 1.9781680226108629 -P60866 1.97572580133252 -A0A1B0GW05 1.975004137378945 -O75170 1.973134765183257 -O00139 1.972153319692893 -C9JA08 1.972153319692893 -O95613 1.9721316639544582 -P68133 1.9714906543123707 -P20774 1.9697757333691355 -Q9H1I8 1.9693105653433045 -A0A0A6YY96 1.9662278530665886 -Q9UKS7 1.9662278530665886 -Q9HAW4 1.9662278530665886 -Q6PL18 1.9662278530665886 -H7C0H2 1.9662278530665886 -O43896 1.9641871757374711 -P01733 1.9641178791349216 -Q9NQX3 1.9621558029521944 -Q7Z591 1.9616776683260024 -Q5VUA4 1.9608770508360662 -G1UD79 1.9581319598186289 -F8W7T1 1.9563362787973602 -Q9NXG2 1.9563362787973602 -Q86U70 1.9555751931622822 -P35251 1.9555751931622822 -Q05519 1.9555751931622822 -Q9NZN5 1.9538724812508088 -P08621 1.9528536388425435 -Q86UE8 1.9527326113537526 -Q6IA17 1.9517998970839894 -Q8IZC7 1.9482147851061047 -P55081 1.9474036631895797 -P35611 1.946549874492993 -P49454 1.9464375497883561 -H9KVB4 1.9463790874981766 -Q9UQQ2 1.944150924480072 -Q96G01 1.941848263441864 -P54105 1.9405740725846214 -Q5T4S7 1.939447864804523 -Q9UBC3 1.9376698511597183 -G3V4K3 1.9371487533688523 -Q9Y4X4 1.9371487533688523 -Q96AY4 1.936729419509988 -O00567 1.935341500620842 -Q9BWT3 1.9340349347519035 -Q9UK61 1.9340349347519035 -Q96PE3 1.9340349347519035 -O60504 1.9338244808981946 -E7EMB3 1.9330467768070907 -J3KNL6 1.928395692368029 -O75037 1.9261241455852476 -Q9HB58 1.9225780734463032 -Q8TAQ2 1.9225780734463032 -P51114 1.920467984054382 -Q2NKX9 1.920467984054382 -A0A1B0GTU4 1.9196844447060242 -P16520 1.9196092474372402 -O75962 1.918652886857865 -Q92597 1.915276965828197 -O75362 1.91488933856793 -Q9UKA4 1.9125636542054327 -Q9UGN5 1.9118817340409031 -P60953 1.9113026823085444 -Q6ZV73 1.9111872438405775 -P24666 1.9100407337324943 -Q92621 1.909901338212433 -Q99741 1.9048638363103287 -Q1W6H9 1.903661099141827 -Q8TDY2 1.903661099141827 -P30622 1.903661099141827 -Q96K83 1.8999631738643223 -P57088 1.8996958537048327 -P43686 1.8990250440390657 -Q1ED39 1.8990250440390657 -Q00537 1.8990250440390657 -Q6PD62 1.8977710455974213 -Q9BW19 1.8977710455974213 -O43143 1.8977710455974213 -Q9NWS9 1.896735227825509 -Q9P107 1.8964189171841281 -O60238 1.8962186714258218 -Q86UE4 1.895390973557809 -Q9H8Y5 1.8949877859881998 -Q15111 1.8945886214178447 -A0A0D9SFK2 1.8935697937757388 -Q4LE39 1.8934040029807349 -Q7Z4S6 1.8914382620685781 -Q9Y3P8 1.8914079828034591 -Q9UEY8 1.8914079828034591 -Q96GA3 1.889866976842714 -Q8IWZ3 1.888409870070193 -Q14C86 1.8873990749187397 -P23528 1.8873502053234212 -Q92833 1.8868472315484086 -Q00987 1.8864860280619318 -O75132 1.8864860280619318 -P50219 1.8864860280619318 -Q9P2R6 1.8864860280619318 -A6NIW2 1.8848540669960945 -Q00536 1.8845415229048914 -J3KR72 1.8837655430786786 -Q562F6 1.8830844188318439 -Q9P260 1.883011167829557 -P09651 1.882737851832501 -Q99622 1.8823692198544602 -P45973 1.8813181462003392 -Q14814 1.8796474890052843 -Q9UPT8 1.8796474890052843 -Q99623 1.8796474890052843 -E9PN30 1.8792562407805726 -Q4G0F5 1.8792110683665804 -Q9NU22 1.8775431368457043 -Q14CW9 1.8775431368457043 -P46531 1.877237685342001 -P18583 1.8740956882765483 -O00716 1.8724724280059326 -Q8WVC0 1.8719854017854187 -Q6UB98 1.8719358176374072 -Q9Y4I1 1.8709234416488483 -Q9NXV2 1.8700133079676442 -P62820 1.8689248039109283 -P35626 1.8689248039109283 -Q9NY27 1.86842884179613 -Q8N5I9 1.8671174898109877 -Q9Y5B6 1.8668029063280167 -Q96E39 1.8658186985764118 -Q9NUA8 1.8658186985764118 -Q86TL0 1.8633569757161088 -Q9P225 1.8625403111619396 -Q8NCN4 1.8622530797369965 -Q9Y6I3 1.8615460085836233 -Q9UM11 1.8596148242247752 -Q16760 1.8582302612462651 -Q9H8U3 1.8551393216501397 -O95714 1.8551393216501397 -O95466 1.854290273132139 -Q96JK2 1.854290273132139 -Q9P246 1.8541642771844984 -P43307 1.8534512145544326 -Q8NBX0 1.8534512145544326 -P53985 1.8530703410341138 -Q9BPX3 1.851538111190216 -Q96BT3 1.8513592966006567 -Q15021 1.8513592966006567 -Q9UKY7 1.8511751263200005 -Q8N5G2 1.8491590241913107 -Q8TDM6 1.8481353173656336 -Q8N9T8 1.8476017559347993 -O60701 1.8473685584702397 -Q15814 1.8466997921960877 -E7EV07 1.8466997921960877 -Q15596 1.8464464252492172 -D3DQV9 1.8449020656854573 -Q13541 1.8445738079358835 -P37275 1.8427420942076063 -P56182 1.8419443916959333 -P60468 1.8415406809273316 -Q9H6L5 1.8415406809273316 -Q14318 1.8411761745188369 -Q86XL3 1.8401359943190203 -Q04727 1.8395148709869946 -Q96K37 1.8379990461874238 -Q7Z4W1 1.8360303172367103 -E9PCH4 1.8359132145762926 -Q8ND04 1.8359132145762926 -Q8N3X1 1.8355724400101325 -G5E9I4 1.8355724400101325 -P05198 1.8326064928994803 -Q9Y2X7 1.8301890029537877 -Q9HC62 1.8297842682389116 -P28908 1.82863161136021 -P49711 1.827642972984798 -Q12802 1.825769060324459 -O14639 1.8257412157133237 -A0A0G2JH68 1.8257412157133237 -Q13263 1.8257412157133237 -Q8IZ21 1.8257412157133237 -Q8TEM1 1.8252341061126138 -O95429 1.8244905051074116 -P49768 1.8203538251836016 -I3L1I5 1.8203538251836016 -H7C494 1.8194002646928604 -B3KS98 1.8193798470359166 -Q13813 1.8193798470359166 -P05141 1.817763786937477 -Q9Y266 1.8134298343206936 -Q02086 1.8124070597379403 -P12956 1.8124070597379403 -Q96G23 1.8124070597379403 -Q5T2D3 1.8124070597379403 -Q8WX93 1.8122544920887367 -Q6UWD8 1.8121415199445068 -P28066 1.811260203128197 -P46379 1.811260203128197 -Q9UEE9 1.811260203128197 -Q9Y679 1.811260203128197 -Q13523 1.811260203128197 -Q96E09 1.811231943907665 -Q99549 1.8081024380740605 -P51784 1.8081024380740605 -Q76FK4 1.8081024380740605 -O15054 1.8081024380740605 -Q9NTJ3 1.8081024380740605 -P15336 1.8080195867474547 -Q6P6C2 1.8053678009232543 -Q8WU90 1.8052168525560621 -O00264 1.8052168525560621 -O00255 1.8052168525560621 -Q92619 1.8052168525560621 -O15151 1.7985871531656756 -Q9NZ52 1.7974934522612709 -P62699 1.7970901041049385 -Q15773 1.7969334119600464 -P38398 1.7960018676860092 -O43900 1.794848497001336 -Q9Y237 1.7947551844009606 -P62854 1.793030440105996 -P11831 1.7901716198421334 -Q9NRQ5 1.7901716198421334 -A0A1B0GV45 1.7879598744498 -Q7L590 1.7869525947906078 -O75400 1.7861044389578091 -Q9H165 1.7857631083921943 -Q9NQ29 1.7856618124506727 -P61970 1.78439845584897 -Q6PCT2 1.783699214384715 -P58546 1.7820493700643107 -Q86WR7 1.7814971839266904 -Q8N5C8 1.7806331781935534 -Q9UPU5 1.7781611433059177 -Q9NS91 1.777343829188853 -Q5HY81 1.7761776882440212 -Q5TC82 1.7754920331387507 -O75064 1.7751565225457016 -Q92688 1.7750894518227796 -Q9UKM9 1.7746251470057748 -P41162 1.77357180291106 -Q9NZM3 1.77357180291106 -Q9H1A4 1.77357180291106 -P49761 1.7735655299578017 -Q9H6K5 1.7735655299578017 -Q3L8U1 1.7725757176226709 -Q17RY0 1.7693755454994993 -Q5T6C5 1.7686992617212867 -A0A087WUE4 1.7686992617212867 -P42224 1.7661891764741557 -Q8N490 1.762606126028318 -H0YL70 1.7603041093412912 -Q5THJ4 1.7578191224899795 -P19838 1.756535379133825 -Q9UNY4 1.756535379133825 -Q96RY7 1.7536429532132964 -Q9BTE3 1.752458052128842 -Q9UBD5 1.752458052128842 -P29597 1.752361310862412 -Q8N573 1.752361310862412 -Q8N9N8 1.752361310862412 -P51965 1.752361310862412 -O14924 1.752361310862412 -Q8WXX5 1.752361310862412 -Q96II8 1.752361310862412 -Q96PV7 1.752361310862412 -Q9NV70 1.752361310862412 -Q9Y2S0 1.7520714343059673 -A0A1B0GTN9 1.7485474069880655 -Q99986 1.7479549372255476 -Q92545 1.7479549372255476 -Q659C4 1.7410790476493874 -B7Z1P2 1.7409374588274027 -Q96HR8 1.7390644518380052 -Q86XP3 1.73893433388079 -P05386 1.7374648056529645 -Q14687 1.7372332598669846 -Q9Y6K9 1.7343429036885483 -O14561 1.7337720933027978 -Q9Y6H1 1.7306496172539747 -Q96DU3 1.7301857513959145 -P23511 1.7280478829048984 -P49327 1.7278430117838284 -Q14242 1.7268702024680425 -J3QTA6 1.7262615564494324 -Q8N1K5 1.725959434588072 -Q16512 1.7239312702470915 -Q96AV8 1.7229690842120107 -O94876 1.720308995379301 -P31323 1.7197271245341434 -Q15527 1.7195083814592058 -Q86TI0 1.7184496543497305 -Q96PN7 1.7177641409659705 -Q08117 1.7170000355102029 -A0A0C4DFM7 1.7163696134264412 -Q14676 1.7160906547478465 -A2ABF8 1.7136028937708092 -Q86XN7 1.712655455822353 -P21333 1.712655455822353 -Q9BVJ6 1.7126228640753052 -B8ZZ87 1.7119214051269198 -Q9Y294 1.71150314293633 -Q9NRJ4 1.709223807269717 -P13051 1.7083049596547497 -Q96B01 1.70719506688214 -P50851 1.70719506688214 -Q5JSH3 1.7062365506005044 -Q9HCH0 1.7058908923864156 -O43861 1.7058908923864156 -Q99683 1.7058908923864156 -Q9UNE7 1.705493305248912 -Q2NL67 1.7032342924386423 -Q96D15 1.7032342924386423 -Q01518 1.7026341709398347 -Q17R89 1.7026341709398347 -Q9UHJ3 1.7026341709398347 -E9PN89 1.7026341709398347 -Q99459 1.700304226801232 -Q9Y2L5 1.7002396108108189 -H7BYN4 1.6935460890002605 -P25445 1.692660352832085 -P56211 1.6917169612995973 -P20963 1.6892956971870206 -Q9H4L7 1.6886879618941686 -Q9BZF2 1.6854656243647481 -Q9H7X3 1.6854171698814588 -P42356 1.684845087000013 -Q8N9F8 1.6823074490926753 -P49916 1.6810685247034602 -P02649 1.6790591086717326 -Q5FWF4 1.6790591086717326 -O00767 1.6790591086717326 -O43257 1.6790591086717326 -Q8WWI1 1.6777145859486278 -Q9Y3D3 1.6766574945630361 -Q9BVV6 1.6765393640830388 -O95721 1.6761443608369495 -O15347 1.6758157304570853 -Q7Z422 1.674918267147862 -O75554 1.674231063625865 -P22415 1.6740105011808257 -Q9NRL2 1.6735950383878917 -Q9UQE7 1.671327567434748 -P30405 1.6708877591120532 -Q07866 1.670385039822689 -Q6WCQ1 1.6702246543917967 -P17706 1.6702246543917967 -Q86Z02 1.6702246543917967 -P51692 1.6702246543917967 -Q9BWF3 1.6676700963650786 -Q9HB90 1.6668307661689863 -Q53GS7 1.6665869443271135 -Q9UEW8 1.6653688059093044 -P30305 1.6653688059093044 -Q8IWE5 1.6653688059093044 -P36542 1.6653674923236563 -P61803 1.665362739494289 -A0A0U1RRB6 1.665362739494289 -Q12873 1.664721899083163 -Q96FJ0 1.6646627083993766 -F8W130 1.6641132069663522 -Q9UKG1 1.6611098397053683 -Q9UNX3 1.6606062062403724 -Q9BUR4 1.6601323187112522 -Q5HYJ3 1.6600823743491557 -Q12872 1.6599785359993766 -P14317 1.6594720977321202 -Q9NZN8 1.6593129808626967 -E7EUN2 1.659119992072111 -Q68E01 1.6590801388799619 -Q99640 1.658608189992973 -P49321 1.6584978585789014 -E9PG73 1.6584978585789014 -Q14151 1.6581081893684835 -Q13625 1.6579730692224426 -P28715 1.6579389034381258 -Q06587 1.6571965139808917 -Q6UUV7 1.656830661044033 -Q6AI39 1.6539951285262282 -P22059 1.6520042020879702 -Q9P0L0 1.6513029492179827 -O96007 1.6500844003700044 -Q12830 1.6492789495885976 -Q9P2Y5 1.6492789495885976 -O43639 1.648647264234569 -Q9H501 1.6479839039245 -Q12874 1.6479839039245 -Q96L94 1.6479839039245 -Q9H8M2 1.6471410347508766 -Q70EL2 1.6471410347508766 -Q15776 1.6471410347508766 -Q8NHZ8 1.6471410347508766 -Q96B36 1.6457504281862458 -Q9H9J4 1.6457504281862458 -A0A087WTJ2 1.6457504281862458 -Q12888 1.6457504281862458 -F8WAL6 1.6443003144245338 -J3KNN5 1.6443003144245338 -Q71DI3 1.644235339577131 -Q8N883 1.6440101797346887 -Q04721 1.6440101797346887 -Q6UB35 1.6427386613060824 -Q96F63 1.6378556503503088 -Q8NDD1 1.6363175266233958 -P51816 1.6363175266233958 -Q8WVM8 1.6363175266233958 -Q9BSJ8 1.635374493425764 -Q13045 1.6341613785810265 -Q9NYV6 1.631658398813945 -B4DT28 1.6315086186821506 -Q8IV63 1.6296733595210358 -O15021 1.6296733595210358 -Q6ZN06 1.6293233190319754 -Q9NXL9 1.6293233190319754 -B3KTM8 1.6292777130936889 -Q8TEV9 1.626914578368995 -Q9Y6R4 1.6268959723388214 -P35240 1.6265714269249525 -Q15700 1.6263911649091225 -Q14693 1.626130295135159 -Q9H2P0 1.6248088288700602 -P05114 1.6242492965600805 -Q14CB8 1.620997837512863 -Q96JM7 1.6195933949371673 -Q9ULH0 1.6189018733681717 -Q96NJ6 1.6189018733681717 -Q9UKS6 1.6159988983932891 -Q9H582 1.6133054617811793 -Q9NQC7 1.612106355371317 -Q05655 1.6109940866703838 -P51116 1.6097818299540463 -A8K727 1.609408094700515 -Q8IYH5 1.609408094700515 -Q9P2B7 1.609408094700515 -Q8NCY6 1.6086830081843049 -P57737 1.604023437651078 -Q5VYS8 1.603875551962769 -O94986 1.6035349761331743 -P11117 1.603321048635197 -E7ERR0 1.603321048635197 -Q9Y608 1.6007679399387185 -P30281 1.598223062354585 -Q9NQT8 1.598223062354585 -Q96K21 1.5972069967098041 -P26639 1.5965909100744275 -Q92698 1.593848238666057 -Q70CQ4 1.593848238666057 -Q8N183 1.5933840305592093 -P54132 1.586746263324474 -Q9Y6D5 1.5865397631548415 -P50402 1.5862693413866356 -O00232 1.5862693413866356 -Q7Z7L8 1.584833632571175 -H7C0P6 1.5840072094224535 -Q9BWW4 1.5831131916035361 -Q9ULH7 1.5819601534414822 -Q6VY07 1.5815710539796546 -P33527 1.5815710539796546 -A0A0U1RRM6 1.5812143192503232 -Q9Y2K7 1.5794421458666241 -C9JI98 1.5794302325169378 -Q9GZY8 1.5784028296532207 -Q9ULX6 1.5781175997143457 -Q9NQL2 1.5764779505286213 -Q9BRR9 1.5748943789559953 -P20339 1.5741488951097136 -A0A075B6G3 1.5738583906146597 -M0QZI3 1.573236768623413 -P35573 1.5698453338111555 -Q01780 1.5654252779075117 -O95758 1.5645644067424074 -Q9Y4E5 1.5645644067424074 -Q9UPX8 1.563473464203731 -Q86UP2 1.5624422525425712 -Q9UPT9 1.561428723894071 -X6R3V9 1.561059474299261 -A0A087WUT6 1.5577475982668993 -Q92585 1.55697672695691 -Q8WV99 1.555202600570562 -Q9UER7 1.555202600570562 -Q92766 1.5519883247095914 -O43439 1.5519558789851242 -Q9Y6Y0 1.551667930031181 -C9IZ08 1.5511424357157686 -P51397 1.5511424357157686 -P69892 1.5511424357157686 -O95400 1.550801711873313 -Q9UHV7 1.5486616485183236 -Q504T8 1.5486616485183236 -A1X283 1.5460366657486526 -Q92859 1.5460076236345228 -Q969R8 1.5441133773478535 -Q8WXI9 1.542970011245797 -Q9UIF9 1.5424798953471341 -Q7L2E3 1.5391164541772295 -O43663 1.534919667167429 -Q9Y2H6 1.532245397921454 -Q9Y5V3 1.5316077109711947 -O43561 1.5310360302947401 -Q13177 1.5305309453028033 -A0A087WZY3 1.5292878805357475 -A0A087WV86 1.5263983692542713 -Q92620 1.518580786239318 -Q01664 1.5166205053708028 -O43379 1.5159558609772275 -Q9H9A7 1.5146332476217013 -Q9H875 1.5133087732824735 -P35527 1.5133087732824735 -Q9NVF7 1.50905852480384 -Q9Y3B9 1.5057204321829378 -P10075 1.505145241800797 -Q96QR8 1.505145241800797 -Q9C0J8 1.5036151479308761 -Q8WXG6 1.5036151479308761 -Q8NC51 1.5004065333374912 -Q13838 1.4984736574738 -Q5FWF5 1.4984736574738 -J3KNZ9 1.4962686667011433 -Q14807 1.4924956876422097 -O60271 1.4917591670315173 -Q9UH99 1.4910184665446684 -Q9UKD2 1.490566356290414 -Q14573 1.4874803925384024 -G5E9M7 1.4854535534006237 -Q9UBB9 1.4845903185473324 -Q9UBB4 1.4830861750988265 -Q9H0J9 1.4822503912536797 -Q99856 1.4802545717879971 -Q9BXS6 1.4799452133175632 -E9PIM0 1.4792983148792223 -P31629 1.4791063446641404 -Q96TA1 1.4786344439388601 -Q9Y324 1.4772699135355214 -P05164 1.4753451526771215 -Q8N8D1 1.4747859000771335 -O43572 1.471393930838966 -Q9UBL0 1.4705552858568849 -E9PNT2 1.468587728973866 -P54578 1.468587728973866 -Q9NYL2 1.468322699381004 -Q00013 1.4643853322860882 -Q8IUE6 1.4630734509933783 -P07305 1.46162488602898 -Q93073 1.4595226725533867 -A6PW57 1.4593914397177183 -Q96P16 1.4570079787476788 -Q13409 1.4561773765895503 -Q13614 1.4557777149519568 -Q14865 1.4540825670777604 -I3L0U5 1.4522765572785894 -P19634 1.4520605611797321 -Q92630 1.4483397637574744 -P10643 1.4479817580872831 -Q86UU0 1.4466764150796212 -Q96EV8 1.445395737579544 -P84243 1.4448977505570302 -P33316 1.4409851777563032 -Q8IXQ3 1.440933892151441 -H7C2Q8 1.4391985010946577 -P55201 1.4385316455772097 -Q01167 1.4356866027497721 -Q9BUA3 1.431505752902633 -Q96DY7 1.4297511736283943 -Q8IWB7 1.4260845252781738 -J3KN59 1.4260845252781738 -P01008 1.4260845252781738 -A0A024R214 1.4196687311660428 -Q68DH5 1.4175468867282108 -Q9Y6A5 1.4075026391766297 -Q6P0N0 1.4030029785508324 -Q86XN8 1.3995639333085963 -P53350 1.3987182982633402 -B4DTS2 1.396884699572115 -B0QXZ6 1.395126239681627 -Q15717 1.394052548400428 -Q96DV4 1.3932332382438068 -Q70J99 1.392582018177834 -Q9Y2X3 1.3922352507423352 -Q8N3U4 1.391034451100885 -Q8TDG4 1.386805325993533 -O60318 1.383021618733967 -Q9NP80 1.3827887121728022 -O95376 1.3827887121728022 -O60725 1.3797541403764424 -Q8N9N5 1.3792142393579827 -E9PC69 1.3738731176774823 -Q92854 1.3730524480497879 -Q9UII2 1.3730524480497879 -Q9Y3Q3 1.3730524480497879 -Q8N9B5 1.3729406425650612 -O60547 1.3723040340242347 -P47914 1.3694424989187748 -Q8TAT5 1.368721549810696 -Q15942 1.3678001355168574 -U3KQ54 1.3670046475134838 -P00441 1.36453645056204 -Q8WTW3 1.3638146224972307 -O43293 1.3630174643700923 -B0QYS7 1.3591922797356866 -O60216 1.3588165413056743 -Q9BV73 1.356943830485934 -Q01831 1.3560062749673367 -Q8WW12 1.3560062749673367 -Q9UHI6 1.3560062749673367 -Q02790 1.3544069214372696 -Q9BZL1 1.3542207072484613 -Q9P0U3 1.3542207072484613 -Q99595 1.3542207072484613 -Q13895 1.3535992374539558 -Q8TF76 1.3535930799199978 -P13645 1.3531830757111039 -Q9H147 1.3531830757111039 -P20226 1.3531830757111039 -P62861 1.3531830757111039 -Q01826 1.3513036880649816 -P05455 1.3506311030982134 -O75475 1.3461461134384218 -Q9NST1 1.3454491641186923 -O94925 1.3449984454653359 -Q9NPF2 1.3449984454653359 -Q9Y6X3 1.3449984454653359 -Q53HL2 1.3429467152620067 -Q99755 1.3403532330874004 -P55084 1.3295945326940684 -B5MDQ6 1.3204118150699082 -Q15435 1.316905460319604 -Q8TBC3 1.3138920520517507 -Q9UKL3 1.3138553798059365 -Q9NPF5 1.3116792709689393 -Q9BVS4 1.311402438471763 -P48729 1.3106679012476807 -Q96PZ0 1.3082322523829235 -Q9BW61 1.306724169347866 -Q8IWA0 1.3063491562376395 -Q9NVU0 1.3053019206852572 -Q7L0J3 1.3022847363865178 -Q8IXM2 1.3002350105944236 -Q8IX21 1.2931184671763987 -Q99704 1.2900094764731345 -Q8IWV1 1.2833187401789012 -Q9NQZ2 1.2785564923681227 -A0A0A0MTR7 1.2725009323440952 -P0C7T5 1.270659184484118 -X5D2R7 1.2692461950729061 -D6REX3 1.2686153608306407 -A0A1C7CYX1 1.265693749859266 -Q14161 1.2639556171574784 -P54259 1.2582784414396775 -Q96HQ2 1.2546567887730067 -Q96F24 1.2546258190074373 -B4E0Y9 1.2537515976875258 -Q8IXM6 1.2487713092174104 -O43678 1.2487713092174104 -O43295 1.2487713092174104 -P07919 1.2487713092174104 -Q86VR2 1.2487713092174104 -Q15059 1.2484014183971022 -Q66K14 1.248055270248798 -Q8WVK2 1.2477710365474972 -Q9Y3T9 1.2457608213067715 -P33993 1.2447422085125184 -Q92993 1.2430484597748601 -J3QQJ0 1.2396932488946057 -O95425 1.2368382848889943 -Q9BWG6 1.236178629495318 -O94776 1.236178629495318 -Q96BR1 1.2333561447804084 -Q7Z628 1.2251408732317681 -Q3T8J9 1.2152987791831276 -Q8NHQ9 1.2111266788778736 -Q9UGP4 1.210950495111063 -G3XAH0 1.2108885437236678 -O43677 1.2097781751415768 -O75616 1.2059595457245773 -Q6ZR52 1.202343969763856 -Q86WB0 1.2014851607627983 -O95684 1.1976463369632704 -Q9P2K3 1.1953538477513326 -P51858 1.1945326026194694 -O00115 1.1938949900799214 -P04264 1.1896832592757838 -Q7Z4G1 1.1896832592757838 -Q9Y6D0 1.1896832592757838 -Q9H6L4 1.1886614493510446 -P04921 1.18801367921458 -Q9P219 1.1876388263379467 -Q96SI1 1.1845998644456244 -P49756 1.1841314076024143 -Q8WXE0 1.1840293890285638 -B2RBV5 1.182122536225885 -Q9Y462 1.182122536225885 -Q9H7P9 1.1810648173550204 -O75369 1.1805960753218474 -Q5T7W7 1.1805579318956925 -Q8IX15 1.177793827873462 -O14647 1.1764555182743084 -Q4KMP7 1.172316056239667 -Q8WUX9 1.1686473753412865 -Q58A45 1.1640201970908772 -P27824 1.1566280992775522 -P54274 1.1556992090228098 -Q9NQT4 1.1553431721857772 -Q9BRP8 1.1552301761343238 -Q9NUP7 1.154339004272287 -P54725 1.1540058558732094 -Q8TEW0 1.152609069606247 -P13647 1.1505966596611912 -Q99570 1.1479911707216974 -Q969T9 1.1434355826778377 -P68366 1.1434184215259944 -O75528 1.1430278072133924 -Q8TBK6 1.142665371498007 -K4DI81 1.1408581221090028 -Q9GZT6 1.1382518263998131 -A0A0D9SF58 1.1374137915645608 -Q9UBP6 1.1287236934044147 -A0A024R0Y4 1.1237732877265383 -Q8IWS0 1.121718621786451 -Q8TF68 1.1201215544445486 -O43396 1.1172112543215964 -Q8NAV1 1.1149979039289826 -Q9NZJ4 1.1123907520370215 -P08779 1.1112246016311813 -K7EM46 1.108234959299053 -Q8NI22 1.0986684239683793 -Q8IWY9 1.0977158783726109 -Q16563 1.090574678522838 -P17026 1.0877733896017645 -Q9NRX4 1.0744270981393589 -Q12770 1.0744270981393589 -Q9BWJ5 1.0744270981393589 -P35908 1.069710489168884 -Q8IWB1 1.0690633923691226 -Q9BXP5 1.0683710059022196 -A6NHB5 1.063404420910746 -Q96JN0 1.0621280866256049 -Q9NQR1 1.05909220240732 -O94763 1.0504358945194885 -F6VDE0 1.0495878951195956 -Q14839 1.0429281891321034 -P16333 1.041571328726673 -A0A140T9E9 1.0365936993727796 -Q05823 1.034208900949218 -Q14938 1.0293924163164283 -O43516 1.025233860148135 -Q96QE3 1.0201569135677928 -Q7Z4V5 1.017989757193611 -Q9BS16 1.0158356816677638 -Q86YS7 1.0153806241700578 -P62328 1.0131189259244653 -O60524 1.0085293397608728 -Q8WUH2 1.0071196237056421 -Q7L8J4 1.0013990784807707 diff --git a/hiv-benchmarking/hiv_raw_data/david5Min.txt b/hiv-benchmarking/hiv_raw_data/david5Min.txt deleted file mode 100644 index c37189b..0000000 --- a/hiv-benchmarking/hiv_raw_data/david5Min.txt +++ /dev/null @@ -1,402 +0,0 @@ -Category Term Count % PValue Genes List Total Pop Hits Pop Total Fold Enrichment Bonferroni Benjamini FDR -GOTERM_BP_DIRECT GO:0016032~viral process 79 5.370496261046907 1.4573548201858324E-20 ABI1_HUMAN, P53_HUMAN, RBM15_HUMAN, TOP1_HUMAN, CCR3_HUMAN, SF3B2_HUMAN, CH60_HUMAN, NUP93_HUMAN, NUP98_HUMAN, NU153_HUMAN, FBLN1_HUMAN, PLCG1_HUMAN, MPIP3_HUMAN, MCE1_HUMAN, CREB3_HUMAN, BRD4_HUMAN, P73_HUMAN, LCK_HUMAN, 1433E_HUMAN, NU155_HUMAN, STAT3_HUMAN, CAMLG_HUMAN, TF2B_HUMAN, RBX1_HUMAN, HOIL1_HUMAN, NU107_HUMAN, CCNT1_HUMAN, GBF1_HUMAN, CCD86_HUMAN, UBR4_HUMAN, DC1L1_HUMAN, CUL5_HUMAN, SP1_HUMAN, RBP2_HUMAN, CRTC1_HUMAN, SP100_HUMAN, UCKL1_HUMAN, RB_HUMAN, WAPL_HUMAN, CREB1_HUMAN, SNW1_HUMAN, SUV91_HUMAN, NPM_HUMAN, NFX1_HUMAN, P121A_HUMAN, VIME_HUMAN, MINT_HUMAN, TBP_HUMAN, DDB1_HUMAN, KLC1_HUMAN, CUL4A_HUMAN, HNRPK_HUMAN, CBX5_HUMAN, BICD1_HUMAN, RAB6A_HUMAN, ATF7_HUMAN, MAGI3_HUMAN, SRCAP_HUMAN, TAF4_HUMAN, RB15B_HUMAN, HTAI2_HUMAN, UBN1_HUMAN, SEPT6_HUMAN, MORC3_HUMAN, NUPL2_HUMAN, TPR_HUMAN, H2AX_HUMAN, IF4G1_HUMAN, SND1_HUMAN, RBL1_HUMAN, PACS1_HUMAN, B0LPF3_HUMAN, T2AG_HUMAN, RAE1L_HUMAN, NU133_HUMAN, RCOR1_HUMAN, NU188_HUMAN, CD3Z_HUMAN, IF4H_HUMAN 1396 299 16792 3.178139164933733 6.096115212837337E-17 6.096115212837337E-17 2.721333797213684E-17 -GOTERM_BP_DIRECT GO:0000398~mRNA splicing, via spliceosome 62 4.214819850441876 1.5194299405934822E-17 SRSF2_HUMAN, SNUT1_HUMAN, RBM15_HUMAN, RPB9_HUMAN, ZCHC8_HUMAN, SF3B2_HUMAN, CWC15_HUMAN, DDX5_HUMAN, SNRPA_HUMAN, SF3B5_HUMAN, E9PAU2_HUMAN, SF3B1_HUMAN, PININ_HUMAN, PTBP1_HUMAN, GPKOW_HUMAN, HNRL1_HUMAN, BUD13_HUMAN, RBM5_HUMAN, SRSF4_HUMAN, DDX23_HUMAN, NCBP1_HUMAN, LSM3_HUMAN, CATIN_HUMAN, PRP4B_HUMAN, DHX16_HUMAN, TRA2A_HUMAN, T2FA_HUMAN, SUGP1_HUMAN, SRSF9_HUMAN, RBMX2_HUMAN, TRA2B_HUMAN, AQR_HUMAN, PAPOA_HUMAN, UBP49_HUMAN, ROA2_HUMAN, D3DU92_HUMAN, SNW1_HUMAN, HNRH3_HUMAN, MINT_HUMAN, SRS11_HUMAN, SRRM2_HUMAN, HNRPK_HUMAN, PRP16_HUMAN, B4DY08_HUMAN, RALY_HUMAN, PCF11_HUMAN, SRSF6_HUMAN, HNRPF_HUMAN, SRS10_HUMAN, A4D0W0_HUMAN, PCBP1_HUMAN, RSRC1_HUMAN, RPB11_HUMAN, PRPF3_HUMAN, CWC27_HUMAN, RBMX_HUMAN, RBM22_HUMAN, ROA0_HUMAN, LSM7_HUMAN, HNRPD_HUMAN, SNURF_HUMAN, PCBP2_HUMAN 1396 222 16792 3.3593536229639382 6.355775441502536E-14 3.177887720751268E-14 2.8372473144928222E-14 -GOTERM_BP_DIRECT GO:0051301~cell division 78 5.3025152957172 1.1808837502377257E-15 NUMA1_HUMAN, NIPA_HUMAN, SKA1_HUMAN, BOREA_HUMAN, PDS5B_HUMAN, CDA7L_HUMAN, CND2_HUMAN, CDK2_HUMAN, TPX2_HUMAN, CENPF_HUMAN, WEE1_HUMAN, TIM_HUMAN, MPIP3_HUMAN, CCNG1_HUMAN, MS18A_HUMAN, SEPT1_HUMAN, TNKS1_HUMAN, SGO2_HUMAN, CYTSA_HUMAN, ZN830_HUMAN, MARE3_HUMAN, HAUS8_HUMAN, CCNT1_HUMAN, KTNB1_HUMAN, CCNK_HUMAN, SMC4_HUMAN, PTTG1_HUMAN, MS18B_HUMAN, NSE2_HUMAN, DC1L1_HUMAN, MARE2_HUMAN, CDC7_HUMAN, CDCA5_HUMAN, DSN1_HUMAN, DNLI1_HUMAN, F1D8N4_HUMAN, NEK2_HUMAN, RB_HUMAN, WAPL_HUMAN, CDC42_HUMAN, PP1A_HUMAN, KIF2A_HUMAN, HAUS6_HUMAN, KIF14_HUMAN, RS3_HUMAN, SKA3_HUMAN, CDK1_HUMAN, ARP19_HUMAN, PAR6G_HUMAN, TBA1B_HUMAN, SPAG5_HUMAN, CLAP2_HUMAN, LMLN_HUMAN, KTNA1_HUMAN, PDS5A_HUMAN, TPR_HUMAN, ARF6_HUMAN, SEPT9_HUMAN, J3QKN8_HUMAN, CCNF_HUMAN, STAG2_HUMAN, CLAP1_HUMAN, CENPJ_HUMAN, APC1_HUMAN, CD2AP_HUMAN, BABA1_HUMAN, ZWINT_HUMAN, NEK1_HUMAN, KC1A_HUMAN, B2RNT7_HUMAN, KIFC1_HUMAN, CCNA1_HUMAN, HAUS5_HUMAN, CABL1_HUMAN, TS101_HUMAN, REEP4_HUMAN, NDE1_HUMAN, TACC1_HUMAN 1396 350 16792 2.6806713057715923 5.108469203207733E-12 1.7028600751700651E-12 2.275957200481571E-12 -GOTERM_BP_DIRECT GO:0007067~mitotic nuclear division 60 4.078857919782461 7.728361672097929E-14 SGT1_HUMAN, NUMA1_HUMAN, SRSF2_HUMAN, NIPA_HUMAN, SKA1_HUMAN, CDK2_HUMAN, TPX2_HUMAN, CENPF_HUMAN, WEE1_HUMAN, TIM_HUMAN, MPIP3_HUMAN, KIF22_HUMAN, CCNG1_HUMAN, TOPK_HUMAN, MS18A_HUMAN, PB1_HUMAN, TNKS1_HUMAN, ZN830_HUMAN, MARE3_HUMAN, PMYT1_HUMAN, HAUS8_HUMAN, CCNK_HUMAN, PTTG1_HUMAN, MS18B_HUMAN, DC1L1_HUMAN, NSE2_HUMAN, ABL1_HUMAN, MARE2_HUMAN, INCE_HUMAN, CDCA5_HUMAN, F1D8N4_HUMAN, NEK2_HUMAN, AURKB_HUMAN, HAUS6_HUMAN, RS3_HUMAN, NOLC1_HUMAN, DCTN3_HUMAN, SKA3_HUMAN, CDK1_HUMAN, ARP19_HUMAN, LMLN_HUMAN, KTNA1_HUMAN, CTRO_HUMAN, TPR_HUMAN, J3QKN8_HUMAN, CCNF_HUMAN, CEP55_HUMAN, STAG2_HUMAN, ANLN_HUMAN, MYPT1_HUMAN, APC1_HUMAN, RS6_HUMAN, CD2AP_HUMAN, BABA1_HUMAN, NEK1_HUMAN, KC1A_HUMAN, B2RNT7_HUMAN, CCNA1_HUMAN, HAUS5_HUMAN, REEP4_HUMAN 1396 248 16792 2.91015805527313 3.232267786756893E-10 8.080669466892232E-11 1.4428458428028534E-10 -GOTERM_BP_DIRECT GO:0045944~positive regulation of transcription from RNA polymerase II promoter 149 10.129163834126444 3.0403256610235343E-13 B0LPE5_HUMAN, NIPBL_HUMAN, ARI4A_HUMAN, P53_HUMAN, CSKP_HUMAN, SSBP2_HUMAN, NELFE_HUMAN, A2AP_HUMAN, RAI1_HUMAN, SPI1_HUMAN, IRF4_HUMAN, CSN5_HUMAN, PRKDC_HUMAN, KS6A3_HUMAN, XRCC6_HUMAN, LEO1_HUMAN, BRD4_HUMAN, CREB3_HUMAN, SIX6_HUMAN, HMGN3_HUMAN, P73_HUMAN, ETS1_HUMAN, FOXK2_HUMAN, FUBP3_HUMAN, SOX4_HUMAN, NCOA2_HUMAN, WWTR1_HUMAN, FHL5_HUMAN, NCOA3_HUMAN, PER1_HUMAN, NUCKS_HUMAN, VDR_HUMAN, TNR5_HUMAN, RUNX1_HUMAN, CRTC1_HUMAN, LPIN1_HUMAN, SIN3A_HUMAN, PBX1_HUMAN, SNW1_HUMAN, SOX1_HUMAN, MEF2D_HUMAN, HMGA1_HUMAN, RBTN1_HUMAN, IL17_HUMAN, HTF4_HUMAN, NFAC3_HUMAN, GATA3_HUMAN, SENP1_HUMAN, MED1_HUMAN, NFKB1_HUMAN, HNRPK_HUMAN, MTG8R_HUMAN, TIF1B_HUMAN, SPT4H_HUMAN, LDB1_HUMAN, NFAC4_HUMAN, KPCD2_HUMAN, DDX3X_HUMAN, JUNB_HUMAN, FADD_HUMAN, MEF2A_HUMAN, PCGF5_HUMAN, MITF_HUMAN, MYPT1_HUMAN, RBL1_HUMAN, EGLN1_HUMAN, ARI4B_HUMAN, SENP2_HUMAN, NFAC1_HUMAN, TAF9B_HUMAN, RBMX_HUMAN, SSBP3_HUMAN, HXB4_HUMAN, TAL1_HUMAN, DOT1L_HUMAN, TP53B_HUMAN, KLF13_HUMAN, STING_HUMAN, CTBP2_HUMAN, HCFC1_HUMAN, WWOX_HUMAN, TFDP2_HUMAN, DDX5_HUMAN, CK5P3_HUMAN, STK16_HUMAN, AKT1_HUMAN, TNKS1_HUMAN, IKZF2_HUMAN, STAT3_HUMAN, CTCF_HUMAN, MK14_HUMAN, SMAD1_HUMAN, RNF10_HUMAN, AUTS2_HUMAN, CCNT1_HUMAN, KDM6B_HUMAN, SUMO2_HUMAN, RBM14_HUMAN, CCNK_HUMAN, AGAP2_HUMAN, SPAG8_HUMAN, SP1_HUMAN, F1D8N4_HUMAN, NRL_HUMAN, HS105_HUMAN, Q9HBD4_HUMAN, CDK9_HUMAN, CREB1_HUMAN, RB_HUMAN, TNIP1_HUMAN, WBP2_HUMAN, BARX1_HUMAN, A4_HUMAN, NCOA7_HUMAN, CHD8_HUMAN, RERE_HUMAN, IL2_HUMAN, ATF2_HUMAN, P63_HUMAN, ELF1_HUMAN, CNBP_HUMAN, ARI3A_HUMAN, NCK1_HUMAN, EGFR_HUMAN, KLF4_HUMAN, TR150_HUMAN, GABP1_HUMAN, PML_HUMAN, MEIS1_HUMAN, TAF4_HUMAN, RAF1_HUMAN, NFAC2_HUMAN, MYC_HUMAN, SMRC1_HUMAN, STAT6_HUMAN, ATRX_HUMAN, PHIP_HUMAN, PCBP1_HUMAN, F1D8N7_HUMAN, CXCR3_HUMAN, NFIC_HUMAN, SAFB1_HUMAN, F1D8P8_HUMAN, IF16_HUMAN, T2AG_HUMAN, NUCL_HUMAN, GLIS2_HUMAN, IKZF1_HUMAN, PSIP1_HUMAN, D3DPA4_HUMAN, TGFB1_HUMAN 1396 981 16792 1.8269819989543445 1.2715444253075248E-9 2.5430890726596544E-10 5.676237258001038E-10 -GOTERM_BP_DIRECT GO:0000122~negative regulation of transcription from RNA polymerase II promoter 119 8.089734874235214 3.6578714247620473E-13 NIPBL_HUMAN, P53_HUMAN, CBX6_HUMAN, NOC2L_HUMAN, SPI1_HUMAN, TIM_HUMAN, H14_HUMAN, JARD2_HUMAN, P73_HUMAN, SDS3_HUMAN, DNMT1_HUMAN, NCOA2_HUMAN, WWTR1_HUMAN, PER1_HUMAN, SUV92_HUMAN, TNFL6_HUMAN, VDR_HUMAN, ZGPAT_HUMAN, ROA2_HUMAN, SIN3A_HUMAN, BCL6_HUMAN, SNW1_HUMAN, PF21A_HUMAN, AURKB_HUMAN, SUV91_HUMAN, BRMS1_HUMAN, MINT_HUMAN, RBTN1_HUMAN, CHD4_HUMAN, AJUBA_HUMAN, GATA3_HUMAN, MED1_HUMAN, NFKB1_HUMAN, TIF1B_HUMAN, SPT4H_HUMAN, CUX1_HUMAN, VPS72_HUMAN, J3KPH8_HUMAN, JUNB_HUMAN, VINEX_HUMAN, TPR_HUMAN, VLDLR_HUMAN, MEF2A_HUMAN, MITF_HUMAN, RBL1_HUMAN, HEXI2_HUMAN, HOMEZ_HUMAN, NCOR1_HUMAN, SMRC2_HUMAN, RCOR1_HUMAN, TAF9B_HUMAN, HXB4_HUMAN, TAL1_HUMAN, UBP3_HUMAN, H6UYS5_HUMAN, SIN3B_HUMAN, CTBP2_HUMAN, ZEP1_HUMAN, RHG35_HUMAN, PSN1_HUMAN, HCFC1_HUMAN, SEM4D_HUMAN, DDX5_HUMAN, Q549H9_HUMAN, SFPQ_HUMAN, H12_HUMAN, DMAP1_HUMAN, RNF12_HUMAN, STAT3_HUMAN, CTCF_HUMAN, CBX8_HUMAN, CNOT2_HUMAN, HDAC8_HUMAN, ZNF8_HUMAN, RFC1_HUMAN, NSD2_HUMAN, SP100_HUMAN, Q9HBD4_HUMAN, RB_HUMAN, SUFU_HUMAN, TCF25_HUMAN, NFX1_HUMAN, TCAL1_HUMAN, AES_HUMAN, PIAS1_HUMAN, CHD8_HUMAN, RERE_HUMAN, ATF2_HUMAN, P63_HUMAN, UB2D1_HUMAN, BPTF_HUMAN, KLF4_HUMAN, ZN217_HUMAN, ATF7_HUMAN, A2I2P0_HUMAN, A8K401_HUMAN, NFAC2_HUMAN, KDM2B_HUMAN, RYBP_HUMAN, MYC_HUMAN, CIC_HUMAN, ATN1_HUMAN, STAT6_HUMAN, HXC8_HUMAN, F1D8N7_HUMAN, H13_HUMAN, Z280C_HUMAN, RFX5_HUMAN, NFIC_HUMAN, F1D8P8_HUMAN, BCOR_HUMAN, H15_HUMAN, IF16_HUMAN, SP130_HUMAN, BTG2_HUMAN, F1D8S3_HUMAN, GLIS2_HUMAN, H32_HUMAN, IKZF1_HUMAN, TGFB1_HUMAN 1396 720 16792 1.9880690862782553 1.5302187295063163E-9 2.550364364140023E-10 6.830980225913663E-10 -GOTERM_BP_DIRECT GO:0006406~mRNA export from nucleus 34 2.311352821210061 1.8672505344994646E-12 P121A_HUMAN, SRSF2_HUMAN, SMG5_HUMAN, SMG1_HUMAN, ZC11A_HUMAN, SRS11_HUMAN, RENT2_HUMAN, NUP93_HUMAN, NUP98_HUMAN, NU153_HUMAN, PRP16_HUMAN, GLE1_HUMAN, SRSF6_HUMAN, BUD13_HUMAN, SRSF4_HUMAN, NU155_HUMAN, NCBP1_HUMAN, UIF_HUMAN, SRS10_HUMAN, NUPL2_HUMAN, TPR_HUMAN, THOC5_HUMAN, NU107_HUMAN, SRSF9_HUMAN, THOC2_HUMAN, RBMX2_HUMAN, RAE1L_HUMAN, RBP2_HUMAN, ROA2_HUMAN, NU133_HUMAN, NU188_HUMAN, RENT1_HUMAN, D3DU92_HUMAN, ALKB5_HUMAN 1396 100 16792 4.089742120343839 7.810849411704623E-9 1.1158356461038466E-9 3.4867997378285054E-9 -GOTERM_BP_DIRECT GO:0016569~covalent chromatin modification 35 2.379333786539769 1.622450717902661E-11 LMBL3_HUMAN, CHD8_HUMAN, RSF1_HUMAN, CBX6_HUMAN, TIF1B_HUMAN, BPTF_HUMAN, JARD2_HUMAN, BRD4_HUMAN, PB1_HUMAN, HMGN3_HUMAN, SMRD2_HUMAN, CHD2_HUMAN, CTCF_HUMAN, SMRC1_HUMAN, VPS72_HUMAN, UBN1_HUMAN, CBX3_HUMAN, HIRA_HUMAN, ATRX_HUMAN, ARID2_HUMAN, DNMT1_HUMAN, TLK2_HUMAN, SMCA1_HUMAN, RBL1_HUMAN, BABA1_HUMAN, BAG6_HUMAN, BRD9_HUMAN, F1D8N4_HUMAN, NCOR1_HUMAN, SMRC2_HUMAN, IKZF1_HUMAN, SMCA5_HUMAN, EMSY_HUMAN, Q9HBD4_HUMAN, RB_HUMAN 1396 113 16792 3.7256890737125032 6.786693984572878E-8 8.48336778602743E-9 3.0296110065108905E-8 -GOTERM_BP_DIRECT GO:0006351~transcription, DNA-templated 240 16.315431679129844 1.4574957498471203E-10 SCML2_HUMAN, P53_HUMAN, RPB9_HUMAN, ZN644_HUMAN, KMT2C_HUMAN, TIM_HUMAN, PININ_HUMAN, JARD2_HUMAN, HNRL1_HUMAN, XRCC6_HUMAN, CREB3_HUMAN, KHDR1_HUMAN, CBX3_HUMAN, ZBTB9_HUMAN, NCOA3_HUMAN, PER1_HUMAN, TCAL4_HUMAN, MNX1_HUMAN, ZGPAT_HUMAN, VDR_HUMAN, ZBT40_HUMAN, PHF2_HUMAN, ARGL1_HUMAN, PF21A_HUMAN, TASOR_HUMAN, MEF2D_HUMAN, CHD4_HUMAN, KDM2A_HUMAN, TRFL_HUMAN, Q2L6J2_HUMAN, SPT4H_HUMAN, COMD1_HUMAN, GON4L_HUMAN, RB15B_HUMAN, LZTS1_HUMAN, VPS72_HUMAN, KDM3B_HUMAN, ZN408_HUMAN, MEF2A_HUMAN, PCGF5_HUMAN, NSD3_HUMAN, ZN212_HUMAN, IN80B_HUMAN, SMBP2_HUMAN, SMCA1_HUMAN, ELP1_HUMAN, JHD2C_HUMAN, HEXI2_HUMAN, SSBP3_HUMAN, HXB4_HUMAN, TAL1_HUMAN, SP30L_HUMAN, BCLF1_HUMAN, CTBP2_HUMAN, ZKSC8_HUMAN, LIMD1_HUMAN, TFDP2_HUMAN, TDIF1_HUMAN, ZN239_HUMAN, IKZF2_HUMAN, MK14_HUMAN, CNO6L_HUMAN, CBX8_HUMAN, RNF10_HUMAN, ARID2_HUMAN, LRRF1_HUMAN, AAPK2_HUMAN, BRPF1_HUMAN, PPR1B_HUMAN, CCAR2_HUMAN, ZNF8_HUMAN, EDF1_HUMAN, RFC1_HUMAN, BRD9_HUMAN, F1D8N4_HUMAN, ZN397_HUMAN, SP100_HUMAN, D3DU92_HUMAN, RB_HUMAN, MGAP_HUMAN, BAZ1B_HUMAN, TCF25_HUMAN, AES_HUMAN, PHF20_HUMAN, ILF3_HUMAN, P63_HUMAN, CNBP_HUMAN, RS3_HUMAN, BPTF_HUMAN, RBBP5_HUMAN, ZN217_HUMAN, ATF7_HUMAN, PML_HUMAN, RYBP_HUMAN, KDM2B_HUMAN, SMRC1_HUMAN, ATN1_HUMAN, STAT6_HUMAN, ATRX_HUMAN, CXXC1_HUMAN, F1D8N7_HUMAN, HXC8_HUMAN, PHB2_HUMAN, TREF1_HUMAN, SAFB1_HUMAN, E5KNY5_HUMAN, BCOR_HUMAN, TDIF2_HUMAN, SP130_HUMAN, B4DXD3_HUMAN, RBM39_HUMAN, PSIP1_HUMAN, FIZ1_HUMAN, IWS1_HUMAN, LMBL3_HUMAN, CDA7L_HUMAN, SFR1_HUMAN, Z512B_HUMAN, T22D4_HUMAN, CBX6_HUMAN, NOC2L_HUMAN, BRD4_HUMAN, PHF6_HUMAN, P73_HUMAN, PB1_HUMAN, TF3C1_HUMAN, E2F3_HUMAN, FUBP3_HUMAN, SDS3_HUMAN, NCOA2_HUMAN, DNMT1_HUMAN, ZN335_HUMAN, SUV92_HUMAN, I2BP2_HUMAN, TNFL6_HUMAN, ZN165_HUMAN, CIR1_HUMAN, YLPM1_HUMAN, CRTC1_HUMAN, LPIN1_HUMAN, SIN3A_HUMAN, WAC_HUMAN, BCL6_HUMAN, HDA11_HUMAN, BRMS1_HUMAN, SUV91_HUMAN, MINT_HUMAN, TPC2A_HUMAN, AJUBA_HUMAN, MTG8R_HUMAN, MPP8_HUMAN, LDB1_HUMAN, RALY_HUMAN, D4PHA4_HUMAN, CUX1_HUMAN, DDX3X_HUMAN, SLTM_HUMAN, ZN606_HUMAN, TFPT_HUMAN, PHF8_HUMAN, COMD6_HUMAN, AN32A_HUMAN, J3KPH8_HUMAN, CSK21_HUMAN, ZZZ3_HUMAN, HM20B_HUMAN, RBL1_HUMAN, ARI4B_HUMAN, SET1A_HUMAN, COMDA_HUMAN, HOMEZ_HUMAN, SMRC2_HUMAN, RCOR1_HUMAN, EMSY_HUMAN, FUBP2_HUMAN, SIN3B_HUMAN, CAF1B_HUMAN, BAZ2A_HUMAN, PHF3_HUMAN, TP53B_HUMAN, SRA1_HUMAN, RHG35_HUMAN, ELOA2_HUMAN, ZN592_HUMAN, SFPQ_HUMAN, RBCC1_HUMAN, TRRAP_HUMAN, ZF64A_HUMAN, CNOT3_HUMAN, DMAP1_HUMAN, RNF12_HUMAN, CHD2_HUMAN, STAT3_HUMAN, SMAD1_HUMAN, CNOT2_HUMAN, MOV10_HUMAN, ZN446_HUMAN, CCNT1_HUMAN, HDAC8_HUMAN, RRAGC_HUMAN, RBM14_HUMAN, SFSWA_HUMAN, ZN318_HUMAN, KAT6A_HUMAN, NSD2_HUMAN, NCOA5_HUMAN, Q9HBD4_HUMAN, ZN490_HUMAN, TCAL1_HUMAN, NCOA7_HUMAN, PIAS1_HUMAN, SAFB2_HUMAN, CHD8_HUMAN, RERE_HUMAN, ZNF24_HUMAN, MED20_HUMAN, STAT2_HUMAN, A2I2P0_HUMAN, GABP1_HUMAN, AF9_HUMAN, SRCAP_HUMAN, NAB1_HUMAN, SMRD2_HUMAN, FOXK1_HUMAN, CIC_HUMAN, HIRA_HUMAN, TF3C2_HUMAN, Z280C_HUMAN, NFIC_HUMAN, RFX5_HUMAN, IN80E_HUMAN, RPB11_HUMAN, F1D8P8_HUMAN, FLII_HUMAN, SND1_HUMAN, IF16_HUMAN, CNOT8_HUMAN, BTG2_HUMAN, F1D8S3_HUMAN, IKZF1_HUMAN, HNRPD_HUMAN 1396 1955 16792 1.4766633201181307 6.096700712054925E-7 6.774113736618403E-8 2.721595948607103E-7 -GOTERM_BP_DIRECT GO:0016925~protein sumoylation 34 2.311352821210061 2.1699910693930542E-10 P121A_HUMAN, TP53B_HUMAN, PIAS1_HUMAN, P53_HUMAN, BOREA_HUMAN, SENP1_HUMAN, RN168_HUMAN, TOP1_HUMAN, NUP93_HUMAN, HNRPK_HUMAN, NUP98_HUMAN, TIF1B_HUMAN, NU153_HUMAN, B4DY08_HUMAN, PML_HUMAN, MDC1_HUMAN, NU155_HUMAN, CBX8_HUMAN, J3KPH8_HUMAN, NUPL2_HUMAN, TPR_HUMAN, NU107_HUMAN, SUMO2_HUMAN, MITF_HUMAN, STAG2_HUMAN, NSE2_HUMAN, INCE_HUMAN, RAE1L_HUMAN, SENP2_HUMAN, RBP2_HUMAN, NU133_HUMAN, NU188_HUMAN, SP100_HUMAN, AURKB_HUMAN 1396 117 16792 3.4955060857639655 9.077067621987567E-7 9.077071327912023E-8 4.0520464761328867E-7 -GOTERM_BP_DIRECT GO:0098609~cell-cell adhesion 56 3.8069340584636304 3.891465755271829E-10 LARP1_HUMAN, DOCK9_HUMAN, ABI1_HUMAN, Q6FIB4_HUMAN, EPN4_HUMAN, SPTB2_HUMAN, HCFC1_HUMAN, GAPD1_HUMAN, ESYT2_HUMAN, PAK4_HUMAN, KPYM_HUMAN, TAGL2_HUMAN, PLEC_HUMAN, 1433E_HUMAN, TXND9_HUMAN, UBAP2_HUMAN, DREB_HUMAN, NHRF2_HUMAN, LRRF1_HUMAN, RHG01_HUMAN, DBNL_HUMAN, TB10A_HUMAN, EVPL_HUMAN, NOP56_HUMAN, RTN4_HUMAN, RAB1A_HUMAN, PTN1_HUMAN, EF2_HUMAN, RL1D1_HUMAN, 1433S_HUMAN, LAP2A_HUMAN, ARGL1_HUMAN, GIPC1_HUMAN, PRDX6_HUMAN, TB182_HUMAN, HNRPK_HUMAN, MARK2_HUMAN, LASP1_HUMAN, PLIN3_HUMAN, NUMB_HUMAN, DDX3X_HUMAN, RL34_HUMAN, PCBP1_HUMAN, SEPT9_HUMAN, IF4G1_HUMAN, ZCCHV_HUMAN, ANLN_HUMAN, ADDA_HUMAN, SND1_HUMAN, CRKL_HUMAN, ATX2L_HUMAN, B4DHN5_HUMAN, LIMA1_HUMAN, IF5_HUMAN, IF4H_HUMAN, LIPB1_HUMAN 1396 271 16792 2.485625773163176 1.6277989193236309E-6 1.479818294569668E-7 7.266574897357714E-7 -GOTERM_BP_DIRECT GO:0006468~protein phosphorylation 79 5.370496261046907 5.571254131011997E-10 ULK1_HUMAN, ZAP70_HUMAN, KS6B1_HUMAN, B0LPE5_HUMAN, PASK_HUMAN, CSKP_HUMAN, PXK_HUMAN, CLK3_HUMAN, MINK1_HUMAN, HIPK3_HUMAN, KPCA_HUMAN, KS6A3_HUMAN, AKT1_HUMAN, TOPK_HUMAN, KPCZ_HUMAN, KPBB_HUMAN, LCK_HUMAN, PMYT1_HUMAN, PRP4B_HUMAN, TYK2_HUMAN, KAPCA_HUMAN, D2JYI1_HUMAN, TGFB2_HUMAN, CCNT1_HUMAN, CATG_HUMAN, TLK2_HUMAN, AAPK2_HUMAN, CCNK_HUMAN, WNK1_HUMAN, KAPCB_HUMAN, CCL11_HUMAN, STK11_HUMAN, AAK1_HUMAN, AAKB1_HUMAN, MTOR_HUMAN, NEK2_HUMAN, CDK9_HUMAN, BMP2K_HUMAN, CREB1_HUMAN, BMX_HUMAN, A4_HUMAN, MAPK2_HUMAN, TESK2_HUMAN, AURKB_HUMAN, MAST2_HUMAN, BCKD_HUMAN, PK3CA_HUMAN, ILF3_HUMAN, DYR1A_HUMAN, ARBK2_HUMAN, MARK2_HUMAN, OXSR1_HUMAN, KPCD2_HUMAN, RAF1_HUMAN, CDK17_HUMAN, CTRO_HUMAN, STK39_HUMAN, ROCK2_HUMAN, MORC3_HUMAN, LIMK2_HUMAN, KPCI_HUMAN, SNRK_HUMAN, RSRC1_HUMAN, A0ZT99_HUMAN, CSK21_HUMAN, KAP1_HUMAN, ROCK1_HUMAN, KKCC2_HUMAN, OPSD_HUMAN, ELP1_HUMAN, NEK1_HUMAN, KC1E_HUMAN, PAN3_HUMAN, RK_HUMAN, KC1A_HUMAN, M3K2_HUMAN, SRPK2_HUMAN, D3DPA4_HUMAN, TGFB1_HUMAN, KAPCG_HUMAN 1396 456 16792 2.083911426129794 2.3304530712975335E-6 1.942046300440481E-7 1.040326147450088E-6 -GOTERM_BP_DIRECT GO:0045893~positive regulation of transcription, DNA-templated 86 5.846363018354861 5.838920637277289E-10 TP53B_HUMAN, P53_HUMAN, RBP56_HUMAN, SFR1_HUMAN, BRE1A_HUMAN, CDK2_HUMAN, PSN1_HUMAN, RAI1_HUMAN, IRF4_HUMAN, SPI1_HUMAN, ROAA_HUMAN, XRCC6_HUMAN, CREB3_HUMAN, P73_HUMAN, DVL3_HUMAN, INAR1_HUMAN, STAT3_HUMAN, CTCF_HUMAN, MARE3_HUMAN, E2F3_HUMAN, ETS1_HUMAN, FUBP3_HUMAN, RNF10_HUMAN, BRCA2_HUMAN, SOX4_HUMAN, NCOA3_HUMAN, KAT6A_HUMAN, BRPF1_HUMAN, SP1_HUMAN, EDF1_HUMAN, RFC1_HUMAN, SMRCD_HUMAN, RUNX1_HUMAN, SP100_HUMAN, WAC_HUMAN, SMCA5_HUMAN, Q9HBD4_HUMAN, RB_HUMAN, CREB1_HUMAN, NPM_HUMAN, HMGA1_HUMAN, TBP_HUMAN, PIAS1_HUMAN, CHD8_HUMAN, ILF3_HUMAN, RSF1_HUMAN, P63_HUMAN, CNBP_HUMAN, NFAC3_HUMAN, ELF1_HUMAN, GATA3_HUMAN, MED1_HUMAN, NFKB1_HUMAN, TIF1B_HUMAN, BPTF_HUMAN, KLF4_HUMAN, TR150_HUMAN, D4PHA4_HUMAN, A8K401_HUMAN, TAF4_HUMAN, DLX5_HUMAN, NFAC2_HUMAN, MYC_HUMAN, PHF8_HUMAN, FOXK1_HUMAN, SMRC1_HUMAN, MED4_HUMAN, RFXAP_HUMAN, PHIP_HUMAN, CXXC1_HUMAN, AXIN1_HUMAN, TREF1_HUMAN, MITF_HUMAN, KKCC2_HUMAN, SMCA1_HUMAN, B4DXD3_HUMAN, NFAC1_HUMAN, SMRC2_HUMAN, M3K2_HUMAN, F1D8S3_HUMAN, GLIS2_HUMAN, MAGD1_HUMAN, TAL1_HUMAN, D3DPA4_HUMAN, TGFB1_HUMAN, HNRPD_HUMAN 1396 515 16792 2.0086683172448327 2.4424174457360337E-6 1.8787847688717108E-7 1.0903076774759768E-6 -GOTERM_BP_DIRECT GO:0048025~negative regulation of mRNA splicing, via spliceosome 14 0.9517335146159076 9.189307685737419E-10 SRS10_HUMAN, ACINU_HUMAN, DYR1A_HUMAN, SRSF9_HUMAN, SFSWA_HUMAN, HNRPK_HUMAN, TRA2B_HUMAN, RBM42_HUMAN, ROA2_HUMAN, PTBP1_HUMAN, SRSF6_HUMAN, RBMX_HUMAN, D3DU92_HUMAN, SRSF4_HUMAN 1396 21 16792 8.019102196752627 3.843880235443464E-6 2.7456336393338887E-7 1.7159290544022099E-6 -GOTERM_BP_DIRECT GO:0006366~transcription from RNA polymerase II promoter 85 5.778382053025153 1.0987280006207463E-9 ARI4A_HUMAN, P53_HUMAN, KLF13_HUMAN, RPB9_HUMAN, ZEP1_HUMAN, SSBP2_HUMAN, NELFE_HUMAN, HCFC1_HUMAN, ELOA2_HUMAN, STK16_HUMAN, IRF4_HUMAN, SPI1_HUMAN, ENL_HUMAN, CSN5_HUMAN, BTF3_HUMAN, MCE1_HUMAN, SIX6_HUMAN, CREB3_HUMAN, MCES_HUMAN, P73_HUMAN, NCBP1_HUMAN, CTCF_HUMAN, ETS1_HUMAN, FOXK2_HUMAN, TF2B_HUMAN, SMAD1_HUMAN, FUBP3_HUMAN, SOX4_HUMAN, CCNT1_HUMAN, T2FA_HUMAN, SP16H_HUMAN, CCNK_HUMAN, PTTG1_HUMAN, NUCKS_HUMAN, RUNX1_HUMAN, F1D8N4_HUMAN, TMF1_HUMAN, DDX21_HUMAN, NRL_HUMAN, CDK9_HUMAN, PBX1_HUMAN, CREB1_HUMAN, BARX1_HUMAN, SOX1_HUMAN, NFX1_HUMAN, MEF2D_HUMAN, HMGA1_HUMAN, TBP_HUMAN, HTF4_HUMAN, ATF2_HUMAN, P63_HUMAN, NFAC3_HUMAN, ELF1_HUMAN, GATA3_HUMAN, ARI3A_HUMAN, GTF2I_HUMAN, MED20_HUMAN, HNRPK_HUMAN, NFKB1_HUMAN, MAX_HUMAN, KLF4_HUMAN, SPT4H_HUMAN, LDB1_HUMAN, SFR19_HUMAN, NFAC4_HUMAN, MEIS1_HUMAN, TAF4_HUMAN, DLX5_HUMAN, NFAC2_HUMAN, MYC_HUMAN, MED4_HUMAN, JUNB_HUMAN, MEF2A_HUMAN, NFIC_HUMAN, MITF_HUMAN, AFF4_HUMAN, T2EB_HUMAN, RPB11_HUMAN, T2AG_HUMAN, NCOR1_HUMAN, NFAC1_HUMAN, TAF9B_HUMAN, GLIS2_HUMAN, RBMX_HUMAN, SSBP3_HUMAN 1396 513 16792 1.9930517155671734 4.595968654430571E-6 3.0639856740677374E-7 2.0516661813907433E-6 -GOTERM_BP_DIRECT GO:0045892~negative regulation of transcription, DNA-templated 81 5.506458191706322 7.389117844202801E-9 BCLF1_HUMAN, NIPBL_HUMAN, ARI4A_HUMAN, P53_HUMAN, B4DDV3_HUMAN, CTBP2_HUMAN, T22D4_HUMAN, RBM15_HUMAN, RHG35_HUMAN, LIMD1_HUMAN, TFDP2_HUMAN, CENPF_HUMAN, SPI1_HUMAN, SFPQ_HUMAN, TIM_HUMAN, JARD2_HUMAN, XRCC6_HUMAN, KHDR1_HUMAN, DMAP1_HUMAN, RNF12_HUMAN, CTCF_HUMAN, CBX3_HUMAN, SDS3_HUMAN, LRRF1_HUMAN, TBPL2_HUMAN, PER1_HUMAN, KAT6A_HUMAN, SUV92_HUMAN, CCAR2_HUMAN, PDCD4_HUMAN, VDR_HUMAN, ZGPAT_HUMAN, RUNX1_HUMAN, CIR1_HUMAN, SP100_HUMAN, SIN3A_HUMAN, BCL6_HUMAN, Q9HBD4_HUMAN, RB_HUMAN, SNW1_HUMAN, BRMS1_HUMAN, SUV91_HUMAN, HMGA1_HUMAN, AES_HUMAN, MINT_HUMAN, CHD8_HUMAN, ILF3_HUMAN, RSF1_HUMAN, P63_HUMAN, ZNF24_HUMAN, GATA3_HUMAN, CBX5_HUMAN, TIF1B_HUMAN, MTG8R_HUMAN, MPP8_HUMAN, KLF4_HUMAN, LDB1_HUMAN, DAP1_HUMAN, ZN217_HUMAN, A2I2P0_HUMAN, PML_HUMAN, GON4L_HUMAN, A8K401_HUMAN, NAB1_HUMAN, RB15B_HUMAN, FOXK1_HUMAN, PHB2_HUMAN, Z280C_HUMAN, F1D8P8_HUMAN, BCOR_HUMAN, IF16_HUMAN, B4DXD3_HUMAN, HEXI2_HUMAN, SMRC2_HUMAN, RCOR1_HUMAN, F1D8S3_HUMAN, GLIS2_HUMAN, MAGD1_HUMAN, IKZF1_HUMAN, TS101_HUMAN, PPM1F_HUMAN, TGFB1_HUMAN 1396 499 16792 1.9525469276662206 3.0908202509172256E-5 1.9317906452265277E-6 1.3797775677559798E-5 -GOTERM_BP_DIRECT GO:0006260~DNA replication 37 2.515295717199184 1.095184685646697E-8 CAF1B_HUMAN, CDK2_HUMAN, NASP_HUMAN, TOP1_HUMAN, NUP98_HUMAN, FANCJ_HUMAN, RECQ4_HUMAN, MCM3_HUMAN, MCM4_HUMAN, TIM_HUMAN, CDK1_HUMAN, MPIP3_HUMAN, RFC4_HUMAN, ATR_HUMAN, DPOA2_HUMAN, E5KSY5_HUMAN, BACD1_HUMAN, GRDN_HUMAN, IN80E_HUMAN, NFIC_HUMAN, TOPB1_HUMAN, RBM14_HUMAN, SP16H_HUMAN, TICRR_HUMAN, TREX1_HUMAN, NOL8_HUMAN, SMBP2_HUMAN, PSF2_HUMAN, CDC7_HUMAN, RFC1_HUMAN, DNLI1_HUMAN, BARD1_HUMAN, RENT1_HUMAN, SLX4_HUMAN, SIN3A_HUMAN, DTD1_HUMAN, CAF1A_HUMAN 1396 155 16792 2.8713559478694886 4.581052638985561E-5 2.694794941082712E-6 2.045049547483302E-5 -GOTERM_BP_DIRECT GO:0006281~DNA repair 48 3.2630863358259687 1.1897838403648814E-8 NPM_HUMAN, CAF1B_HUMAN, DOT1L_HUMAN, MGMT_HUMAN, SMG1_HUMAN, DDB1_HUMAN, UBR5_HUMAN, PDS5B_HUMAN, CDK2_HUMAN, RS3_HUMAN, TIF1B_HUMAN, RECQ4_HUMAN, CDK1_HUMAN, TRRAP_HUMAN, INT3_HUMAN, KIF22_HUMAN, DMAP1_HUMAN, ATR_HUMAN, TFPT_HUMAN, PDS5A_HUMAN, CHIP_HUMAN, UBE2T_HUMAN, ATRX_HUMAN, IN80E_HUMAN, APTX_HUMAN, TOPB1_HUMAN, RBM14_HUMAN, TICRR_HUMAN, SP16H_HUMAN, TREX1_HUMAN, IN80B_HUMAN, SMBP2_HUMAN, BD1L1_HUMAN, PTTG1_HUMAN, MUS81_HUMAN, FACD2_HUMAN, DNLI1_HUMAN, KC1E_HUMAN, MTOR_HUMAN, BTG2_HUMAN, TRIPC_HUMAN, RENT1_HUMAN, SLX4_HUMAN, EMSY_HUMAN, EEPD1_HUMAN, CDK9_HUMAN, UBP3_HUMAN, CAF1A_HUMAN 1396 235 16792 2.4569164177284644 4.976741980544652E-5 2.7649216356451234E-6 2.221695488691111E-5 -GOTERM_BP_DIRECT GO:0006974~cellular response to DNA damage stimulus 44 2.991162474507138 1.7947202337890532E-8 B0LPE5_HUMAN, BAZ1B_HUMAN, SUV91_HUMAN, TP53B_HUMAN, NIPBL_HUMAN, P53_HUMAN, UBR5_HUMAN, ATF2_HUMAN, P63_HUMAN, RN168_HUMAN, CUL4A_HUMAN, RS3_HUMAN, PSN1_HUMAN, APC_HUMAN, RBBP5_HUMAN, ATAD5_HUMAN, TIM_HUMAN, INT3_HUMAN, AKT1_HUMAN, BRD4_HUMAN, NFAC2_HUMAN, P73_HUMAN, ATR_HUMAN, MYC_HUMAN, CHD2_HUMAN, GNL1_HUMAN, UBE2T_HUMAN, H2AX_HUMAN, UBA1_HUMAN, APTX_HUMAN, TOPB1_HUMAN, TLK2_HUMAN, CCNK_HUMAN, BD1L1_HUMAN, ABL1_HUMAN, CCAR2_HUMAN, STK11_HUMAN, RN169_HUMAN, ZBT40_HUMAN, BARD1_HUMAN, BTG2_HUMAN, TRIPC_HUMAN, WAC_HUMAN, BCL6_HUMAN, MAPK2_HUMAN 1396 208 16792 2.5445228124311217 7.507033035658583E-5 3.951210524211213E-6 3.351299217024817E-5 -GOTERM_BP_DIRECT GO:0008380~RNA splicing 38 2.583276682528892 2.221291418967124E-8 HNRH3_HUMAN, IWS1_HUMAN, SRSF2_HUMAN, SRS11_HUMAN, SF3B2_HUMAN, SFR19_HUMAN, ZRAB2_HUMAN, B4DY08_HUMAN, SFPQ_HUMAN, TR150_HUMAN, PR38B_HUMAN, PTBP1_HUMAN, RB15B_HUMAN, SRSF4_HUMAN, RBM5_HUMAN, DDX23_HUMAN, NCBP1_HUMAN, PRP4B_HUMAN, DHX16_HUMAN, THOC5_HUMAN, ACINU_HUMAN, RSRC1_HUMAN, RRAGC_HUMAN, WBP11_HUMAN, PTBP3_HUMAN, THOC2_HUMAN, PRPF3_HUMAN, CCAR2_HUMAN, SCAFB_HUMAN, RBM39_HUMAN, CIR1_HUMAN, SRSF8_HUMAN, NSRP1_HUMAN, SRPK2_HUMAN, VIR_HUMAN, FUBP2_HUMAN, D3DU92_HUMAN, SNURF_HUMAN 1396 166 16792 2.7535471398487936 9.29123044092206E-5 4.645820259385758E-6 4.1478397283523094E-5 -GOTERM_BP_DIRECT GO:0006368~transcription elongation from RNA polymerase II promoter 25 1.699524133242692 7.719984394070779E-8 TF2B_HUMAN, ELL2_HUMAN, SETD2_HUMAN, CCNT1_HUMAN, ELP3_HUMAN, TBP_HUMAN, T2EB_HUMAN, T2FA_HUMAN, RPB9_HUMAN, RPB11_HUMAN, CCNK_HUMAN, NELFE_HUMAN, SP16H_HUMAN, ELOF1_HUMAN, ELOA2_HUMAN, ELP1_HUMAN, T2AG_HUMAN, SPT4H_HUMAN, TAF9B_HUMAN, ADRM1_HUMAN, TAF4_HUMAN, LEO1_HUMAN, CDK9_HUMAN, ELP4_HUMAN, NCBP1_HUMAN 1396 86 16792 3.496701539281668 3.228748244591406E-4 1.537735604140167E-5 1.4415597237027455E-4 -GOTERM_BP_DIRECT GO:0006338~chromatin remodeling 25 1.699524133242692 7.719984394070779E-8 BAZ2A_HUMAN, RERE_HUMAN, RSF1_HUMAN, P63_HUMAN, GATA3_HUMAN, TOP1_HUMAN, TTF1_HUMAN, BPTF_HUMAN, SPT4H_HUMAN, BRD4_HUMAN, DMAP1_HUMAN, PB1_HUMAN, SMRD2_HUMAN, MYC_HUMAN, SMRC1_HUMAN, CBX3_HUMAN, ATRX_HUMAN, IN80B_HUMAN, SUV92_HUMAN, SMCA1_HUMAN, SMRCD_HUMAN, SMRC2_HUMAN, SMCA5_HUMAN, Q9HBD4_HUMAN, RB_HUMAN 1396 86 16792 3.496701539281668 3.228748244591406E-4 1.537735604140167E-5 1.4415597237027455E-4 -GOTERM_BP_DIRECT GO:0000086~G2/M transition of mitotic cell cycle 32 2.175390890550646 2.110755046193164E-7 HAUS6_HUMAN, TBB4A_HUMAN, CDK2_HUMAN, AJUBA_HUMAN, TPX2_HUMAN, CE192_HUMAN, DCTN3_HUMAN, SKP1_HUMAN, WEE1_HUMAN, PCM1_HUMAN, CDK1_HUMAN, ARP19_HUMAN, MPIP3_HUMAN, KHDR1_HUMAN, CTRO_HUMAN, 1433E_HUMAN, KAP3_HUMAN, NINL_HUMAN, PMYT1_HUMAN, HAUS8_HUMAN, B4DJ51_HUMAN, KAPCA_HUMAN, 1433G_HUMAN, CLAP1_HUMAN, MYPT1_HUMAN, CENPJ_HUMAN, CP135_HUMAN, KC1E_HUMAN, NEK2_HUMAN, HAUS5_HUMAN, ACTZ_HUMAN, NDE1_HUMAN 1396 137 16792 2.809612448497271 8.825392619951078E-4 4.013232781530096E-5 3.9414274766169655E-4 -GOTERM_BP_DIRECT GO:0018105~peptidyl-serine phosphorylation 30 2.0394289598912305 2.942166437996175E-7 ULK1_HUMAN, B0LPE5_HUMAN, MAST2_HUMAN, VRK3_HUMAN, SMG1_HUMAN, DYR1A_HUMAN, CDK2_HUMAN, HIPK3_HUMAN, CDK1_HUMAN, KPCA_HUMAN, KPCD2_HUMAN, PRKDC_HUMAN, AKT1_HUMAN, KPCZ_HUMAN, TNKS1_HUMAN, STK39_HUMAN, ATR_HUMAN, MK14_HUMAN, MORC3_HUMAN, KPCI_HUMAN, KAPCA_HUMAN, D2JYI1_HUMAN, MAST4_HUMAN, TLK2_HUMAN, CDC7_HUMAN, KC1E_HUMAN, MTOR_HUMAN, KC1A_HUMAN, AKT2_HUMAN, MAPK2_HUMAN, MAST3_HUMAN 1396 125 16792 2.886876790830945 0.0012299513911702142 5.35076293797232E-5 5.493923674992907E-4 -GOTERM_BP_DIRECT GO:1900034~regulation of cellular response to heat 22 1.495581237253569 4.6712317614339945E-7 P121A_HUMAN, NUPL2_HUMAN, TPR_HUMAN, NU107_HUMAN, NUP93_HUMAN, NUP98_HUMAN, CCAR2_HUMAN, NU153_HUMAN, RAE1L_HUMAN, RBP2_HUMAN, MTOR_HUMAN, NU133_HUMAN, TEBP_HUMAN, NU188_HUMAN, LST8_HUMAN, HS105_HUMAN, NU155_HUMAN, 1433E_HUMAN, ATR_HUMAN, FKBP4_HUMAN, BAG4_HUMAN, MAPK2_HUMAN 1396 75 16792 3.5284049665711557 0.0019520689324725726 8.141238175585208E-5 8.722603595856526E-4 -GOTERM_BP_DIRECT GO:0006397~mRNA processing 37 2.515295717199184 5.174384700117305E-7 IWS1_HUMAN, ABEC1_HUMAN, SRSF2_HUMAN, SRS11_HUMAN, CELF2_HUMAN, SF3B2_HUMAN, SFR19_HUMAN, ZRAB2_HUMAN, SFPQ_HUMAN, TR150_HUMAN, PR38B_HUMAN, PTBP1_HUMAN, RB15B_HUMAN, KHDR1_HUMAN, SRSF4_HUMAN, CPSF6_HUMAN, LSM3_HUMAN, CNO6L_HUMAN, KAPCA_HUMAN, ACINU_HUMAN, PTBP3_HUMAN, SRSF9_HUMAN, PRPF3_HUMAN, ZC3HE_HUMAN, CCAR2_HUMAN, SCAFB_HUMAN, ROA2_HUMAN, RBM39_HUMAN, CIR1_HUMAN, PAN3_HUMAN, SRSF8_HUMAN, NSRP1_HUMAN, VIR_HUMAN, FUBP2_HUMAN, ROA0_HUMAN, RBM26_HUMAN, ALKB5_HUMAN 1396 179 16792 2.4863696755294455 0.002162104956371036 8.657407944112627E-5 9.662138130916986E-4 -GOTERM_BP_DIRECT GO:0007062~sister chromatid cohesion 26 1.7675050985723997 7.766022792568741E-7 KIF2A_HUMAN, BOREA_HUMAN, SKA1_HUMAN, PDS5B_HUMAN, NUP98_HUMAN, CENPF_HUMAN, KIF22_HUMAN, CLAP2_HUMAN, SGO2_HUMAN, PDS5A_HUMAN, J3QKN8_HUMAN, NU107_HUMAN, PHB2_HUMAN, HDAC8_HUMAN, STAG2_HUMAN, NDEL1_HUMAN, CLAP1_HUMAN, ZWINT_HUMAN, DSN1_HUMAN, CDCA5_HUMAN, INCE_HUMAN, RBP2_HUMAN, NU133_HUMAN, WAPL_HUMAN, AURKB_HUMAN, NDE1_HUMAN 1396 103 16792 3.036359084207305 0.003243257835492619 1.2493560241910728E-4 0.0014501475530837027 -GOTERM_BP_DIRECT GO:0006357~regulation of transcription from RNA polymerase II promoter 68 4.622705642420122 9.260987359846101E-7 ARI4A_HUMAN, TFDP2_HUMAN, CIAO1_HUMAN, ZBED4_HUMAN, DDX5_HUMAN, WDR75_HUMAN, CHD2_HUMAN, ELP4_HUMAN, STAT3_HUMAN, MK14_HUMAN, FOXK2_HUMAN, CNOT2_HUMAN, ZN446_HUMAN, ELP3_HUMAN, LRRF1_HUMAN, TCAL4_HUMAN, MED23_HUMAN, MNX1_HUMAN, NUCKS_HUMAN, CIR1_HUMAN, LPIN1_HUMAN, SMCA5_HUMAN, Q9HBD4_HUMAN, RB_HUMAN, SNW1_HUMAN, CREB1_HUMAN, BARX1_HUMAN, CHD4_HUMAN, SAFB2_HUMAN, HTF4_HUMAN, ATF2_HUMAN, NFAC3_HUMAN, GTF2I_HUMAN, MED20_HUMAN, HNRPK_HUMAN, NFKB1_HUMAN, STAT2_HUMAN, FANCJ_HUMAN, TTF1_HUMAN, SPT4H_HUMAN, GABP1_HUMAN, SRCAP_HUMAN, CUX1_HUMAN, TAF4_HUMAN, SMRD2_HUMAN, HTAI2_HUMAN, SLTM_HUMAN, FOXK1_HUMAN, SMRC1_HUMAN, MED4_HUMAN, UBN1_HUMAN, JUNB_HUMAN, STAT6_HUMAN, HIRA_HUMAN, MITF_HUMAN, TREF1_HUMAN, RFX5_HUMAN, SAFB1_HUMAN, ZN212_HUMAN, SMBP2_HUMAN, CTDS1_HUMAN, RBL1_HUMAN, ELP1_HUMAN, ARI4B_HUMAN, ECM1_HUMAN, SMRC2_HUMAN, MAGD1_HUMAN, TAL1_HUMAN 1396 441 16792 1.854758331221696 0.0038663790411082033 1.4346647831575687E-4 0.0017292996398854399 -GOTERM_BP_DIRECT GO:0007077~mitotic nuclear envelope disassembly 16 1.087695445275323 1.3099698825361568E-6 P121A_HUMAN, NUPL2_HUMAN, TPR_HUMAN, NU107_HUMAN, NUP93_HUMAN, NUP98_HUMAN, NU153_HUMAN, RAE1L_HUMAN, CDK1_HUMAN, RBP2_HUMAN, KPCA_HUMAN, NU133_HUMAN, LPIN1_HUMAN, NU188_HUMAN, NU155_HUMAN, LMNA_HUMAN 1396 44 16792 4.374055743683251 0.005464621942425141 1.956811236596412E-4 0.0024460920567737077 -GOTERM_BP_DIRECT GO:0007059~chromosome segregation 20 1.3596193065941535 1.68817026915145E-6 J3QKN8_HUMAN, SKA1_HUMAN, NDEL1_HUMAN, RS3_HUMAN, TLK2_HUMAN, HJURP_HUMAN, TOP1_HUMAN, MS18B_HUMAN, CENPF_HUMAN, SKA3_HUMAN, CIAO1_HUMAN, INCE_HUMAN, DSN1_HUMAN, F1D8N4_HUMAN, SPAG5_HUMAN, DDX3X_HUMAN, NEK2_HUMAN, MS18A_HUMAN, CTCF_HUMAN, NDE1_HUMAN 1396 68 16792 3.537839204449688 0.007036747528643139 2.4347456892381825E-4 0.003152290858243756 -GOTERM_BP_DIRECT GO:0010467~gene expression 16 1.087695445275323 4.533485170388564E-6 PCBP1_HUMAN, T2FA_HUMAN, RPB9_HUMAN, RPB11_HUMAN, HNRPK_HUMAN, B4DY08_HUMAN, ROA2_HUMAN, PTBP1_HUMAN, RBMX_HUMAN, LAT_HUMAN, ROA0_HUMAN, NCBP1_HUMAN, HNRPD_HUMAN, PCBP2_HUMAN, GOLP3_HUMAN, HNRPF_HUMAN 1396 48 16792 4.009551098376313 0.01878493341658405 6.319206357796592E-4 0.008465084840669768 -GOTERM_BP_DIRECT GO:0042752~regulation of circadian rhythm 16 1.087695445275323 6.0351197687850375E-6 ROCK2_HUMAN, PP1A_HUMAN, AAPK2_HUMAN, PER1_HUMAN, CCAR2_HUMAN, SFPQ_HUMAN, TIM_HUMAN, A2I2P0_HUMAN, B4DXD3_HUMAN, KC1E_HUMAN, PML_HUMAN, PRKDC_HUMAN, F1D8S3_HUMAN, MAGD1_HUMAN, CREB1_HUMAN, HNRPD_HUMAN 1396 49 16792 3.927723524940062 0.024928992246769255 8.140227671483702E-4 0.011268840872180608 -GOTERM_BP_DIRECT GO:0043044~ATP-dependent chromatin remodeling 11 0.7477906186267845 6.335226917664382E-6 SMRCD_HUMAN, B4DY08_HUMAN, CHD4_HUMAN, CHD8_HUMAN, SMRC2_HUMAN, ACTB_HUMAN, SMCA5_HUMAN, Q9HBD4_HUMAN, SMRD2_HUMAN, SMCA1_HUMAN, SMRC1_HUMAN 1396 23 16792 5.7528341846268845 0.026152285460724567 8.277927572326593E-4 0.011829172815058797 -GOTERM_BP_DIRECT GO:0018107~peptidyl-threonine phosphorylation 14 0.9517335146159076 6.380887430994994E-6 B0LPE5_HUMAN, KAPCA_HUMAN, D2JYI1_HUMAN, DYR1A_HUMAN, PYR1_HUMAN, WNK1_HUMAN, MARK2_HUMAN, OXSR1_HUMAN, HIPK3_HUMAN, CDK1_HUMAN, MTOR_HUMAN, AKT1_HUMAN, D3DPA4_HUMAN, STK39_HUMAN, TNKS1_HUMAN 1396 38 16792 4.431609108731715 0.02633827177627779 8.085013889380654E-4 0.01191442558594602 -GOTERM_BP_DIRECT GO:0006977~DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest 18 1.2236573759347382 7.787741051470013E-6 CNO6L_HUMAN, NPM_HUMAN, CNOT2_HUMAN, SOX4_HUMAN, P53_HUMAN, TB182_HUMAN, CDK2_HUMAN, ARI3A_HUMAN, CENPJ_HUMAN, TFDP2_HUMAN, CNOT4_HUMAN, CDK1_HUMAN, CNOT8_HUMAN, PML_HUMAN, MPIP3_HUMAN, BTG2_HUMAN, CNOT3_HUMAN, 1433S_HUMAN 1396 62 16792 3.4921896663277567 0.032051356807488385 9.57666076225161E-4 0.014541129078515791 -GOTERM_BP_DIRECT GO:0007049~cell cycle 39 2.6512576478586 8.477892370861206E-6 PP1A_HUMAN, SUV91_HUMAN, CAF1B_HUMAN, RIF1_HUMAN, P53_HUMAN, STEA3_HUMAN, P63_HUMAN, PCNP_HUMAN, NASP_HUMAN, HCFC1_HUMAN, HJURP_HUMAN, NOLC1_HUMAN, PAK4_HUMAN, RBCC1_HUMAN, PAR6G_HUMAN, KS6A3_HUMAN, SEPT1_HUMAN, ATR_HUMAN, ERBIN_HUMAN, CYTSA_HUMAN, E2F3_HUMAN, RBGP1_HUMAN, ARF6_HUMAN, SEPT9_HUMAN, CCNT1_HUMAN, UHRF2_HUMAN, TLK2_HUMAN, SUV92_HUMAN, RBL1_HUMAN, HM20B_HUMAN, SPAG8_HUMAN, CCAR2_HUMAN, CCDB1_HUMAN, TP4A1_HUMAN, IKZF1_HUMAN, CABL1_HUMAN, TACC1_HUMAN, AURKB_HUMAN, CAF1A_HUMAN 1396 217 16792 2.161831698202897 0.0348417236159736 0.0010127203983379962 0.01582967058889606 -GOTERM_BP_DIRECT GO:1901796~regulation of signal transduction by p53 class mediator 27 1.8354860639021073 8.723990251497237E-6 B0LPE5_HUMAN, PHF20_HUMAN, TBP_HUMAN, CHD4_HUMAN, P53_HUMAN, CDK2_HUMAN, P63_HUMAN, FANCJ_HUMAN, TPX2_HUMAN, NOC2L_HUMAN, PML_HUMAN, RFC4_HUMAN, AKT1_HUMAN, TAF4_HUMAN, P73_HUMAN, ATR_HUMAN, MK14_HUMAN, TOPB1_HUMAN, CSK21_HUMAN, SP16H_HUMAN, AAPK2_HUMAN, KAT6A_HUMAN, BRPF1_HUMAN, STK11_HUMAN, AAKB1_HUMAN, BARD1_HUMAN, TAF9B_HUMAN, AURKB_HUMAN 1396 124 16792 2.6191422497458174 0.03583478133758744 0.0010131700186208903 0.01628914187058461 -GOTERM_BP_DIRECT GO:0016477~cell migration 33 2.2433718558803535 1.2080115868987771E-5 KS6B1_HUMAN, NANO1_HUMAN, MY18A_HUMAN, ZRAN1_HUMAN, ACK1_HUMAN, RHG35_HUMAN, LIMD1_HUMAN, APC_HUMAN, ABL2_HUMAN, PPIP1_HUMAN, PLXB1_HUMAN, PAK4_HUMAN, CDK1_HUMAN, PLCG1_HUMAN, KPCZ_HUMAN, NFAC2_HUMAN, UBP24_HUMAN, GOLP3_HUMAN, TYK2_HUMAN, KPCI_HUMAN, TSP1_HUMAN, TGFB2_HUMAN, BACD1_HUMAN, GRDN_HUMAN, NDEL1_HUMAN, VAV2_HUMAN, ASAP3_HUMAN, ABL1_HUMAN, FUT8_HUMAN, RAB1A_HUMAN, TGBR3_HUMAN, TGFB1_HUMAN, NDE1_HUMAN 1396 172 16792 2.307823015925901 0.04927595295252063 0.001364782158038591 0.022554918115336164 -GOTERM_BP_DIRECT GO:0006355~regulation of transcription, DNA-templated 171 11.624745071380014 1.3888326160878958E-5 SCML2_HUMAN, FIZ1_HUMAN, MAZ_HUMAN, LMBL3_HUMAN, P53_HUMAN, CDA7L_HUMAN, Z512B_HUMAN, SSBP2_HUMAN, NELFE_HUMAN, ZN644_HUMAN, KMT2C_HUMAN, LZTR1_HUMAN, PININ_HUMAN, ENL_HUMAN, HNRL1_HUMAN, PHF6_HUMAN, PB1_HUMAN, FOXK2_HUMAN, TF2B_HUMAN, TF3B_HUMAN, SOX4_HUMAN, NCOA2_HUMAN, ZN335_HUMAN, ZBTB9_HUMAN, WWTR1_HUMAN, NCOA3_HUMAN, MED23_HUMAN, I2BP2_HUMAN, ZN165_HUMAN, VDR_HUMAN, ZBT40_HUMAN, YLPM1_HUMAN, TMF1_HUMAN, SIN3A_HUMAN, LAP2A_HUMAN, ARGL1_HUMAN, HDA11_HUMAN, PF21A_HUMAN, SOX1_HUMAN, TASOR_HUMAN, HMGA1_HUMAN, CHD4_HUMAN, TPC2A_HUMAN, KDM2A_HUMAN, RSF1_HUMAN, AJUBA_HUMAN, MAX_HUMAN, TTF1_HUMAN, SPT4H_HUMAN, LDB1_HUMAN, ZRAB2_HUMAN, RALY_HUMAN, D4PHA4_HUMAN, PKCB1_HUMAN, RB15B_HUMAN, LZTS1_HUMAN, TFPT_HUMAN, ZN606_HUMAN, KDM3B_HUMAN, SRS10_HUMAN, J3KPH8_HUMAN, AN32A_HUMAN, ZN408_HUMAN, MEF2A_HUMAN, MITF_HUMAN, T2EB_HUMAN, CSK21_HUMAN, NSD3_HUMAN, ZN212_HUMAN, IN80B_HUMAN, ZZZ3_HUMAN, HM20B_HUMAN, ELP1_HUMAN, ARI4B_HUMAN, JHD2C_HUMAN, SET1A_HUMAN, COMDA_HUMAN, EMSY_HUMAN, FUBP2_HUMAN, SP30L_HUMAN, SIN3B_HUMAN, BAZ2A_HUMAN, CAF1B_HUMAN, TAF1D_HUMAN, SRA1_HUMAN, BRE1A_HUMAN, ZKSC8_HUMAN, LIMD1_HUMAN, HCFC1_HUMAN, ELOA2_HUMAN, ZN592_HUMAN, HIPK3_HUMAN, TRRAP_HUMAN, CHSP1_HUMAN, RBCC1_HUMAN, TDIF1_HUMAN, BTF3_HUMAN, ZF64A_HUMAN, CNOT3_HUMAN, RNF12_HUMAN, ZN239_HUMAN, CHD2_HUMAN, STAT3_HUMAN, CNO6L_HUMAN, RCAN1_HUMAN, CNOT2_HUMAN, MOV10_HUMAN, ARID2_HUMAN, NU107_HUMAN, LRRF1_HUMAN, AAPK2_HUMAN, CCNK_HUMAN, PTTG1_HUMAN, ZN318_HUMAN, SFSWA_HUMAN, KAT6A_HUMAN, SP1_HUMAN, CCAR2_HUMAN, ABL1_HUMAN, ZNF8_HUMAN, EDF1_HUMAN, BRD9_HUMAN, F1D8N4_HUMAN, ZN397_HUMAN, NCOA5_HUMAN, Q9HBD4_HUMAN, CREB1_HUMAN, ZN490_HUMAN, MGAP_HUMAN, SUFU_HUMAN, ELL2_HUMAN, BAZ1B_HUMAN, SETD2_HUMAN, PHF20_HUMAN, ATF2_HUMAN, CNBP_HUMAN, RS3_HUMAN, IRX1_HUMAN, BPTF_HUMAN, RBBP5_HUMAN, ZN217_HUMAN, ATF7_HUMAN, PML_HUMAN, AF9_HUMAN, A8K401_HUMAN, NAB1_HUMAN, MEIS1_HUMAN, NFAC2_HUMAN, MYC_HUMAN, TGFA1_HUMAN, ATRX_HUMAN, CXXC1_HUMAN, F1D8N7_HUMAN, TISD_HUMAN, AFF4_HUMAN, IN80E_HUMAN, E5KNY5_HUMAN, FLII_HUMAN, F1D8P8_HUMAN, SND1_HUMAN, TDIF2_HUMAN, T2AG_HUMAN, H0UIA5_HUMAN, SP130_HUMAN, B4DXD3_HUMAN, RBM39_HUMAN, CNOT8_HUMAN, NU133_HUMAN, MAGD1_HUMAN, IGSF1_HUMAN, PSIP1_HUMAN, HNRPD_HUMAN 1396 1504 16792 1.3676194903371335 0.0564399514673114 0.0015276548864537887 0.025930633256099345 -GOTERM_BP_DIRECT GO:0006405~RNA export from nucleus 16 1.087695445275323 2.833359437198887E-5 P121A_HUMAN, TPR_HUMAN, THOC5_HUMAN, SRSF2_HUMAN, ZC11A_HUMAN, SRS11_HUMAN, SRSF9_HUMAN, THOC2_HUMAN, NUP98_HUMAN, PRP16_HUMAN, SRSF6_HUMAN, NU188_HUMAN, D3DU92_HUMAN, SRSF4_HUMAN, NU155_HUMAN, NCBP1_HUMAN 1396 55 16792 3.499244594946601 0.11176693010538907 0.0030343895807666277 0.052894370686928927 -GOTERM_BP_DIRECT GO:0050852~T cell receptor signaling pathway 29 1.9714479945615229 3.021779819609133E-5 ZAP70_HUMAN, PSMD2_HUMAN, PK3CA_HUMAN, PSD11_HUMAN, SHB_HUMAN, DEN1B_HUMAN, UB2D1_HUMAN, GATA3_HUMAN, PSN1_HUMAN, NFKB1_HUMAN, NCK1_HUMAN, STML2_HUMAN, SKP1_HUMAN, LCP2_HUMAN, RNF31_HUMAN, PLCG1_HUMAN, KPCD2_HUMAN, LCK_HUMAN, UB2D2_HUMAN, HOIL1_HUMAN, CD3E_HUMAN, GRAP2_HUMAN, STK11_HUMAN, PSMD4_HUMAN, WASP_HUMAN, LAT_HUMAN, CD3Z_HUMAN, PSA5_HUMAN, PHAG1_HUMAN 1396 148 16792 2.35696584836986 0.11874033688028718 0.0031550862133213897 0.056410944118245876 -GOTERM_BP_DIRECT GO:0006409~tRNA export from nucleus 12 0.8157715839564922 3.1356804169987195E-5 P121A_HUMAN, NUPL2_HUMAN, RAE1L_HUMAN, TPR_HUMAN, NU107_HUMAN, RBP2_HUMAN, NU133_HUMAN, NU188_HUMAN, NU155_HUMAN, NUP93_HUMAN, NUP98_HUMAN, NU153_HUMAN 1396 32 16792 4.510744985673353 0.12292920723041179 0.0031940969680478437 0.05853666485478026 -GOTERM_BP_DIRECT GO:0007050~cell cycle arrest 28 1.9034670292318152 3.3326377161865825E-5 P53_HUMAN, PPM1G_HUMAN, SNUT1_HUMAN, CUL4A_HUMAN, APC_HUMAN, RRAGD_HUMAN, PML_HUMAN, LST8_HUMAN, A0A5E8_HUMAN, KHDR1_HUMAN, LTOR5_HUMAN, P73_HUMAN, MYC_HUMAN, RRAGB_HUMAN, RRAGA_HUMAN, TSP1_HUMAN, TGFB2_HUMAN, RRAGC_HUMAN, AAPK2_HUMAN, CUL5_HUMAN, ABL1_HUMAN, STK11_HUMAN, AAKB1_HUMAN, MTOR_HUMAN, BARD1_HUMAN, TS101_HUMAN, RB_HUMAN, TGFB1_HUMAN 1396 141 16792 2.3886687394582298 0.13012569835436605 0.0033137013098812895 0.06221236738709335 -GOTERM_BP_DIRECT GO:0000381~regulation of alternative mRNA splicing, via spliceosome 13 0.8837525492861998 3.625678065438693E-5 SRSF2_HUMAN, DYR1A_HUMAN, TRA2B_HUMAN, DDX5_HUMAN, TR150_HUMAN, RBM7_HUMAN, PTBP1_HUMAN, SRSF6_HUMAN, NSRP1_HUMAN, RBMX_HUMAN, RB15B_HUMAN, D3DU92_HUMAN, RBM5_HUMAN 1396 38 16792 4.115065600965164 0.14072379220190445 0.003520876960921737 0.06768097667061435 -GOTERM_BP_DIRECT GO:0010827~regulation of glucose transport 12 0.8157715839564922 4.352294355324123E-5 P121A_HUMAN, NUPL2_HUMAN, RAE1L_HUMAN, TPR_HUMAN, NU107_HUMAN, RBP2_HUMAN, NU133_HUMAN, NU188_HUMAN, NU155_HUMAN, NUP93_HUMAN, NUP98_HUMAN, NU153_HUMAN 1396 33 16792 4.37405574368325 0.16644903660478916 0.004129188515244242 0.08123959606876063 -GOTERM_BP_DIRECT GO:0042795~snRNA transcription from RNA polymerase II promoter 18 1.2236573759347382 4.3850734149448816E-5 TF2B_HUMAN, ELL2_HUMAN, RPRD2_HUMAN, CCNT1_HUMAN, TBP_HUMAN, T2EB_HUMAN, T2FA_HUMAN, RPB9_HUMAN, RPB11_HUMAN, ICE1_HUMAN, CCNK_HUMAN, SP1_HUMAN, T2AG_HUMAN, INT3_HUMAN, PHAX_HUMAN, CDK9_HUMAN, NCBP1_HUMAN, INT1_HUMAN 1396 70 16792 3.093082275890299 0.16759122505939406 0.004067962062841657 0.08185121044559374 -GOTERM_BP_DIRECT GO:0007265~Ras protein signal transduction 18 1.2236573759347382 4.3850734149448816E-5 BRAP_HUMAN, DOK2_HUMAN, P53_HUMAN, DNMT1_HUMAN, GRAP2_HUMAN, NF1_HUMAN, CDK2_HUMAN, CRKL_HUMAN, TIF1B_HUMAN, B0LPF3_HUMAN, Q53GM7_HUMAN, B4DHN5_HUMAN, LAT_HUMAN, RRAS2_HUMAN, DOK1_HUMAN, RB_HUMAN, MAPK2_HUMAN, MK14_HUMAN 1396 70 16792 3.093082275890299 0.16759122505939406 0.004067962062841657 0.08185121044559374 -GOTERM_BP_DIRECT GO:0030307~positive regulation of cell growth 20 1.3596193065941535 4.6159106006759024E-5 B0LPE5_HUMAN, TGFB2_HUMAN, IF4G1_HUMAN, H33_HUMAN, IL2_HUMAN, TRI32_HUMAN, CSK21_HUMAN, NOL8_HUMAN, EXOS4_HUMAN, H15_HUMAN, EGFR_HUMAN, B4DHN5_HUMAN, AKAP6_HUMAN, TAF9B_HUMAN, AKT1_HUMAN, KS6A3_HUMAN, DDX3X_HUMAN, 1433S_HUMAN, KDM2B_HUMAN, NCBP1_HUMAN, CDC42_HUMAN 1396 84 16792 2.863965070268795 0.17559057448163795 0.004188767685836425 0.08615823005574397 -GOTERM_BP_DIRECT GO:0075733~intracellular transport of virus 15 1.0197144799456153 4.811344210535136E-5 CD209_HUMAN, P121A_HUMAN, NUPL2_HUMAN, TPR_HUMAN, NU107_HUMAN, IMA1_HUMAN, NUP93_HUMAN, NUP98_HUMAN, NU153_HUMAN, RAE1L_HUMAN, RBP2_HUMAN, NU133_HUMAN, NU188_HUMAN, TS101_HUMAN, NU155_HUMAN 1396 51 16792 3.537839204449688 0.1823029537624795 0.0042730438214600985 0.08980454328009202 -GOTERM_BP_DIRECT GO:0031929~TOR signaling 8 0.5438477226376615 5.47490851725163E-5 KS6B1_HUMAN, LARP1_HUMAN, 4EBP2_HUMAN, C4P096_HUMAN, GRDN_HUMAN, MTOR_HUMAN, GATA3_HUMAN, RS6_HUMAN, DISC1_HUMAN 1396 14 16792 6.873516168645108 0.204688719129538 0.004759920764613623 0.10218409073301515 -GOTERM_BP_DIRECT GO:0016575~histone deacetylation 14 0.9517335146159076 6.397504099022724E-5 BRMS1_HUMAN, BAZ2A_HUMAN, SIN3B_HUMAN, SDS3_HUMAN, ARI4A_HUMAN, CHD4_HUMAN, RBM14_HUMAN, HM20B_HUMAN, ARI4B_HUMAN, A8K401_HUMAN, SIN3A_HUMAN, HDA11_HUMAN, SP30L_HUMAN, PF21A_HUMAN 1396 46 16792 3.6608944811261996 0.2347985579903913 0.005446667050505227 0.1193937490362007 -GOTERM_BP_DIRECT GO:0000289~nuclear-transcribed mRNA poly(A) tail shortening 11 0.7477906186267845 6.982363219096296E-5 CNO6L_HUMAN, IF4B_HUMAN, CNOT2_HUMAN, MLH1_HUMAN, IF4G1_HUMAN, CNOT8_HUMAN, PARN_HUMAN, PAN3_HUMAN, TB182_HUMAN, CNOT3_HUMAN, CNOT4_HUMAN 1396 29 16792 4.562592629186839 0.25329303307871476 0.005824619758227234 0.13030197908916463 -GOTERM_BP_DIRECT GO:0046777~protein autophosphorylation 31 2.107409925220938 7.841599387090879E-5 ULK1_HUMAN, B0LPE5_HUMAN, PASK_HUMAN, SMG1_HUMAN, DYR1A_HUMAN, PYR1_HUMAN, MARK2_HUMAN, CLK3_HUMAN, TIF1B_HUMAN, EGFR_HUMAN, MINK1_HUMAN, STK16_HUMAN, EF2K_HUMAN, AT132_HUMAN, KPCD2_HUMAN, AKT1_HUMAN, STK39_HUMAN, ATR_HUMAN, RIPK3_HUMAN, KAPCA_HUMAN, A0ZT99_HUMAN, WNK1_HUMAN, KKCC2_HUMAN, ABL1_HUMAN, STK11_HUMAN, AAK1_HUMAN, MTOR_HUMAN, RK_HUMAN, NEK2_HUMAN, BMX_HUMAN, MAPK2_HUMAN, AURKB_HUMAN 1396 172 16792 2.1679549543546344 0.27965640376470025 0.006411260850380018 0.1463255810568942 -GOTERM_BP_DIRECT GO:0035556~intracellular signal transduction 57 3.8749150237933376 9.239833998123759E-5 ZAP70_HUMAN, B0LPE5_HUMAN, ABR_HUMAN, PSN1_HUMAN, HMHA1_HUMAN, PLXB1_HUMAN, MINK1_HUMAN, LCP2_HUMAN, PLCG1_HUMAN, CHSP1_HUMAN, KPCA_HUMAN, KS6A3_HUMAN, AKT1_HUMAN, FYV1_HUMAN, KPCZ_HUMAN, 1433E_HUMAN, DVL3_HUMAN, KAP3_HUMAN, RPGF3_HUMAN, MK14_HUMAN, TYK2_HUMAN, ECT2_HUMAN, MAST4_HUMAN, AAPK2_HUMAN, TLK2_HUMAN, WNK1_HUMAN, PPR1B_HUMAN, RASF5_HUMAN, ARHG7_HUMAN, LAT_HUMAN, BMX_HUMAN, MAST3_HUMAN, MAST2_HUMAN, CIKS_HUMAN, PLCL2_HUMAN, MARK2_HUMAN, OXSR1_HUMAN, MAGI3_HUMAN, KPCD2_HUMAN, DDX3X_HUMAN, RAF1_HUMAN, CTRO_HUMAN, STK39_HUMAN, CD209_HUMAN, AN32A_HUMAN, KPCI_HUMAN, SNRK_HUMAN, RASL2_HUMAN, A0ZT99_HUMAN, STMN1_HUMAN, CRKL_HUMAN, B4DHN5_HUMAN, NFAC1_HUMAN, AKAP6_HUMAN, SRPK2_HUMAN, AKT2_HUMAN, TGBR3_HUMAN, PHAG1_HUMAN 1396 403 16792 1.701323170775061 0.3205829400987913 0.007405522090018213 0.17239557957828833 -GOTERM_BP_DIRECT GO:0030449~regulation of complement activation 11 0.7477906186267845 9.698157410025454E-5 PROP_HUMAN, CO5_HUMAN, PHB2_HUMAN, DAF_HUMAN, CO3_HUMAN, CO9_HUMAN, CD59_HUMAN, CFAB_HUMAN, CO7_HUMAN, VTNC_HUMAN, MCP_HUMAN 1396 30 16792 4.410506208213945 0.3334856419807902 0.007625374359868764 0.18093958951542755 -GOTERM_BP_DIRECT GO:0031047~gene silencing by RNA 23 1.563562202583277 1.019650254167445E-4 CNO6L_HUMAN, P121A_HUMAN, CNOT2_HUMAN, NUPL2_HUMAN, TPR_HUMAN, NU107_HUMAN, H33_HUMAN, RPB9_HUMAN, RPB11_HUMAN, SND1_HUMAN, NUP93_HUMAN, NUP98_HUMAN, NU153_HUMAN, RAE1L_HUMAN, DGCR8_HUMAN, RBP2_HUMAN, NU133_HUMAN, NU188_HUMAN, CNOT3_HUMAN, H32_HUMAN, NU155_HUMAN, RNC_HUMAN, NCBP1_HUMAN 1396 111 16792 2.4924236557474377 0.3472371905952297 0.007867801243550687 0.1902288941456165 -GOTERM_BP_DIRECT GO:0030036~actin cytoskeleton organization 25 1.699524133242692 1.6137055125031512E-4 FGD6_HUMAN, COF1_HUMAN, 41_HUMAN, NF1_HUMAN, CAP1_HUMAN, ABR_HUMAN, ROCK1_HUMAN, FLII_HUMAN, ADDA_HUMAN, ARC1A_HUMAN, ABL2_HUMAN, CIP4_HUMAN, SPIR1_HUMAN, ABL1_HUMAN, TYB10_HUMAN, B4DHN5_HUMAN, RND3_HUMAN, CYH2_HUMAN, ADDB_HUMAN, PDLI7_HUMAN, BCL6_HUMAN, CYTSA_HUMAN, CDC42_HUMAN, INF2_HUMAN, TESK2_HUMAN 1396 130 16792 2.313202556755565 0.4908779388329382 0.012198936537405669 0.3008996093137317 -GOTERM_BP_DIRECT GO:0016584~nucleosome positioning 6 0.4078857919782461 1.7771993268790202E-4 H14_HUMAN, H13_HUMAN, H12_HUMAN, RSF1_HUMAN, SMCA5_HUMAN, CTCF_HUMAN 1396 8 16792 9.021489971346705 0.5245381088390324 0.013188483671455753 0.3313376305006388 -GOTERM_BP_DIRECT GO:1900364~negative regulation of mRNA polyadenylation 6 0.4078857919782461 1.7771993268790202E-4 CCNT1_HUMAN, A8K6K1_HUMAN, BRE1A_HUMAN, NELFE_HUMAN, CDK9_HUMAN, ZC3HE_HUMAN 1396 8 16792 9.021489971346705 0.5245381088390324 0.013188483671455753 0.3313376305006388 -GOTERM_BP_DIRECT GO:0097190~apoptotic signaling pathway 17 1.1556764106050306 1.8820232736445808E-4 FADD_HUMAN, LY96_HUMAN, CD3E_HUMAN, SENP1_HUMAN, TNR25_HUMAN, TR19L_HUMAN, TNFL6_HUMAN, TNR5_HUMAN, DAP1_HUMAN, LEUK_HUMAN, PDCD6_HUMAN, CD5_HUMAN, TNR8_HUMAN, KPCA_HUMAN, TNF6B_HUMAN, TFPT_HUMAN, RIPK3_HUMAN 1396 71 16792 2.880100084749183 0.5449392833897593 0.013717751467848815 0.3508483194798573 -GOTERM_BP_DIRECT GO:0000226~microtubule cytoskeleton organization 17 1.1556764106050306 1.8820232736445808E-4 C4P096_HUMAN, TBCE_HUMAN, DOCK7_HUMAN, CLAP1_HUMAN, VAMP4_HUMAN, MARK2_HUMAN, DISC1_HUMAN, WEE1_HUMAN, CDK1_HUMAN, TBA1B_HUMAN, CLAP2_HUMAN, KPCZ_HUMAN, MAP1S_HUMAN, GBRAP_HUMAN, CYTSA_HUMAN, MA7D1_HUMAN, TACC1_HUMAN, NINL_HUMAN 1396 71 16792 2.880100084749183 0.5449392833897593 0.013717751467848815 0.3508483194798573 -GOTERM_BP_DIRECT GO:0032435~negative regulation of proteasomal ubiquitin-dependent protein catabolic process 9 0.6118286879673691 2.465068774469039E-4 B4DHN5_HUMAN, BAG6_HUMAN, TOPK_HUMAN, WAC_HUMAN, TLK2_HUMAN, SENP1_HUMAN, CCAR2_HUMAN, SMRC1_HUMAN, GIPC1_HUMAN 1396 22 16792 4.9208127116436575 0.6434445034112163 0.017623298329078718 0.45930355709685733 -GOTERM_BP_DIRECT GO:0006915~apoptotic process 72 4.894629503738953 3.11241308258718E-4 KS6B1_HUMAN, BCLF1_HUMAN, SRA1_HUMAN, RMD3_HUMAN, P53_HUMAN, STING_HUMAN, STEA3_HUMAN, SHB_HUMAN, TNR25_HUMAN, TPX2_HUMAN, NOC2L_HUMAN, HIPK3_HUMAN, PAK4_HUMAN, HD_HUMAN, KS6A3_HUMAN, BIK_HUMAN, P73_HUMAN, LEG1_HUMAN, MAP1S_HUMAN, RBM5_HUMAN, Q96FS5_HUMAN, AKTIP_HUMAN, RRAGA_HUMAN, J3KN59_HUMAN, MK14_HUMAN, SDS3_HUMAN, FAF1_HUMAN, D2JYI1_HUMAN, RRAGC_HUMAN, K1C20_HUMAN, ITCH_HUMAN, TNFL6_HUMAN, RTN4_HUMAN, PDCD4_HUMAN, RASF5_HUMAN, F1D8N4_HUMAN, TRAIP_HUMAN, TIA1_HUMAN, RB_HUMAN, ARHG6_HUMAN, BRMS1_HUMAN, CD2_HUMAN, MEF2D_HUMAN, IL17_HUMAN, P63_HUMAN, RS3_HUMAN, NFKB1_HUMAN, KIF1B_HUMAN, DAP1_HUMAN, BAD_HUMAN, CDK1_HUMAN, A6NHG8_HUMAN, MAGI3_HUMAN, PML_HUMAN, RAF1_HUMAN, RYBP_HUMAN, HTAI2_HUMAN, TRAF5_HUMAN, SLTM_HUMAN, TFPT_HUMAN, EI24_HUMAN, FADD_HUMAN, CXCR3_HUMAN, AXIN1_HUMAN, PTH2_HUMAN, MEF2A_HUMAN, CSK21_HUMAN, H0UIA5_HUMAN, PEA15_HUMAN, API5_HUMAN, AKT2_HUMAN, RHOB_HUMAN, H6UYS5_HUMAN 1396 567 16792 1.5274480374766908 0.7280467331529907 0.021828157144320848 0.5795884594877454 -GOTERM_BP_DIRECT GO:0006396~RNA processing 20 1.3596193065941535 3.4588851785784865E-4 HNRH3_HUMAN, ZC3H1_HUMAN, ABEC1_HUMAN, DHX30_HUMAN, WBP11_HUMAN, CHERP_HUMAN, SUGP1_HUMAN, SR140_HUMAN, SFSWA_HUMAN, CELF2_HUMAN, RBM6_HUMAN, HNRPK_HUMAN, BICD1_HUMAN, RBM39_HUMAN, HNRL1_HUMAN, MCE1_HUMAN, RBM5_HUMAN, LSM7_HUMAN, HNRPD_HUMAN, HNRPF_HUMAN 1396 97 16792 2.4801347000265856 0.7647489301011832 0.023829842317226735 0.6439109015373146 -GOTERM_BP_DIRECT GO:0048511~rhythmic process 14 0.9517335146159076 3.7269893759255506E-4 CBX3_HUMAN, ROCK2_HUMAN, SUV91_HUMAN, CSK21_HUMAN, AAPK2_HUMAN, SUV92_HUMAN, SP1_HUMAN, CCAR2_HUMAN, DDX5_HUMAN, SFPQ_HUMAN, B4DXD3_HUMAN, PRKDC_HUMAN, CRTC1_HUMAN, SIN3A_HUMAN 1396 54 16792 3.1185397431815773 0.7897147311331867 0.02523818993137894 0.6936573335017515 -GOTERM_BP_DIRECT GO:0043928~exonucleolytic nuclear-transcribed mRNA catabolic process involved in deadenylation-dependent decay 10 0.6798096532970768 3.9828581129322147E-4 DCP2_HUMAN, CNOT8_HUMAN, DCP1A_HUMAN, EXOS4_HUMAN, EDC4_HUMAN, LSM7_HUMAN, DCP1B_HUMAN, EDC3_HUMAN, PATL1_HUMAN, LSM3_HUMAN 1396 29 16792 4.147811481078945 0.8110667337176263 0.026518830074403588 0.7411115044397287 -GOTERM_BP_DIRECT GO:0006461~protein complex assembly 22 1.495581237253569 5.30431152065243E-4 CAF1B_HUMAN, HMGA1_HUMAN, NHRF2_HUMAN, WIPF1_HUMAN, P53_HUMAN, CD3E_HUMAN, MITF_HUMAN, TRAF2_HUMAN, APC_HUMAN, Q6FHY4_HUMAN, MAX_HUMAN, ELP1_HUMAN, CD2AP_HUMAN, TNR5_HUMAN, MDN1_HUMAN, CDK1_HUMAN, PML_HUMAN, WASP_HUMAN, L2GL1_HUMAN, ADDB_HUMAN, SSBP3_HUMAN, CAF1A_HUMAN 1396 116 16792 2.2812963145934195 0.8913237691132481 0.03461499520038214 0.9858507004470218 -GOTERM_BP_DIRECT GO:0031124~mRNA 3'-end processing 13 0.8837525492861998 6.39345323272208E-4 THOC5_HUMAN, SRSF2_HUMAN, ZC11A_HUMAN, SRS11_HUMAN, SRSF9_HUMAN, THOC2_HUMAN, PRP16_HUMAN, PAPOA_HUMAN, PCF11_HUMAN, SRSF6_HUMAN, D3DU92_HUMAN, SRSF4_HUMAN, NCBP1_HUMAN 1396 50 16792 3.1274498567335245 0.9311094853270505 0.040938977430286516 1.187135251595961 -GOTERM_BP_DIRECT GO:0010332~response to gamma radiation 10 0.6798096532970768 6.889429883868518E-4 FACD2_HUMAN, ABEC1_HUMAN, BRCA2_HUMAN, PML_HUMAN, P53_HUMAN, PRKDC_HUMAN, P63_HUMAN, GATA3_HUMAN, P73_HUMAN, MYC_HUMAN 1396 31 16792 3.8802107403641743 0.9440245283960798 0.043382267244853834 1.2786684290536754 -GOTERM_BP_DIRECT GO:0032508~DNA duplex unwinding 12 0.8157715839564922 7.3719824102264E-4 ATRX_HUMAN, CHD4_HUMAN, CHD8_HUMAN, XRCC6_HUMAN, DDX3X_HUMAN, POTE1_HUMAN, PSF2_HUMAN, SMBP2_HUMAN, CHD2_HUMAN, FANCJ_HUMAN, MCM3_HUMAN, RECQ4_HUMAN 1396 44 16792 3.2805418077624386 0.9542625320935699 0.04566447056798906 1.3676471408963775 -GOTERM_BP_DIRECT GO:0006367~transcription initiation from RNA polymerase II promoter 26 1.7675050985723997 7.394987471236784E-4 MAZ_HUMAN, TBP_HUMAN, RPB9_HUMAN, MED1_HUMAN, GTF2I_HUMAN, MED20_HUMAN, TIF1B_HUMAN, TR150_HUMAN, TAF4_HUMAN, E2F3_HUMAN, TF2B_HUMAN, MED4_HUMAN, F1D8N7_HUMAN, T2EB_HUMAN, T2FA_HUMAN, WWTR1_HUMAN, RPB11_HUMAN, F1D8P8_HUMAN, MED23_HUMAN, T2AG_HUMAN, VDR_HUMAN, B4DXD3_HUMAN, F1D8N4_HUMAN, TAF9B_HUMAN, F1D8S3_HUMAN, CDK9_HUMAN, SNW1_HUMAN 1396 152 16792 2.057532800482582 0.954700875696945 0.04513573858724873 1.3718871885771367 -GOTERM_BP_DIRECT GO:0043488~regulation of mRNA stability 20 1.3596193065941535 7.550993112059347E-4 B0LPE5_HUMAN, PUM2_HUMAN, AN32A_HUMAN, PSMD2_HUMAN, IF4G1_HUMAN, TISD_HUMAN, PSD11_HUMAN, PUM1_HUMAN, EXOS4_HUMAN, ZC3HE_HUMAN, DCP2_HUMAN, CHSP1_HUMAN, PSMD4_HUMAN, KPCA_HUMAN, PARN_HUMAN, AKT1_HUMAN, DCP1A_HUMAN, FUBP2_HUMAN, PSA5_HUMAN, HNRPD_HUMAN, MAPK2_HUMAN 1396 103 16792 2.3356608340056195 0.9575646501142647 0.04540418451467931 1.4006359345024033 -GOTERM_BP_DIRECT GO:0043087~regulation of GTPase activity 15 1.0197144799456153 7.567110942436659E-4 FGD6_HUMAN, RASL2_HUMAN, SI1L1_HUMAN, NGAP_HUMAN, NF1_HUMAN, AJUBA_HUMAN, PLXB2_HUMAN, GAPD1_HUMAN, VAV2_HUMAN, RASL3_HUMAN, PLXB1_HUMAN, MTOR_HUMAN, LST8_HUMAN, TBC15_HUMAN, BCL6_HUMAN 1396 65 16792 2.775843068106678 0.9578500056702743 0.044854510204322184 1.4036056789408224 -GOTERM_BP_DIRECT GO:0006606~protein import into nucleus 14 0.9517335146159076 7.771316615398162E-4 P121A_HUMAN, TPR_HUMAN, COF1_HUMAN, NU107_HUMAN, TMCO6_HUMAN, PTTG_HUMAN, IMA1_HUMAN, NUP93_HUMAN, NU153_HUMAN, RAE1L_HUMAN, NU133_HUMAN, NU188_HUMAN, NU155_HUMAN, STAT3_HUMAN 1396 58 16792 2.9034680367552617 0.961303476776891 0.04539460395080097 1.441223677422765 -GOTERM_BP_DIRECT GO:0032212~positive regulation of telomere maintenance via telomerase 10 0.6798096532970768 8.886501402119392E-4 ACD_HUMAN, TCPZ_HUMAN, TCPD_HUMAN, TNKS2_HUMAN, TCPB_HUMAN, POTE1_HUMAN, NEK2_HUMAN, TNKS1_HUMAN, ATR_HUMAN, AURKB_HUMAN 1396 32 16792 3.7589541547277943 0.9757387820154655 0.05103042184378381 1.6464192749566564 -GOTERM_BP_DIRECT GO:0007165~signal transduction 127 8.633582596872875 9.539070849817572E-4 KS6B1_HUMAN, ULK1_HUMAN, B0LPE5_HUMAN, TNF15_HUMAN, FEZ2_HUMAN, SHB_HUMAN, ABR_HUMAN, TNR25_HUMAN, RHG44_HUMAN, HMHA1_HUMAN, PPIP1_HUMAN, PLXB1_HUMAN, PLCG1_HUMAN, KS6A3_HUMAN, CD72_HUMAN, KHDR1_HUMAN, KPCZ_HUMAN, MPZL1_HUMAN, RIPK3_HUMAN, LCAP_HUMAN, NGAP_HUMAN, MARE2_HUMAN, TNFL6_HUMAN, VDR_HUMAN, ARHG7_HUMAN, RUNX1_HUMAN, MTOR_HUMAN, TRAIP_HUMAN, 1433S_HUMAN, BMX_HUMAN, LRRC1_HUMAN, CSKI1_HUMAN, DOK2_HUMAN, ARBK2_HUMAN, GATA3_HUMAN, GTF2I_HUMAN, HNRPK_HUMAN, NFKB1_HUMAN, CIP4_HUMAN, SH3G2_HUMAN, TRAF5_HUMAN, SNX17_HUMAN, GNL1_HUMAN, FADD_HUMAN, VLDLR_HUMAN, AXIN1_HUMAN, CSK21_HUMAN, MYPT1_HUMAN, EM55_HUMAN, ROCK1_HUMAN, RHPN2_HUMAN, ELP1_HUMAN, RPGF1_HUMAN, RK_HUMAN, TEBP_HUMAN, RHG04_HUMAN, AKT2_HUMAN, PDE4A_HUMAN, PHAG1_HUMAN, TRAF2_HUMAN, SRGP3_HUMAN, NF1_HUMAN, ZEP1_HUMAN, LIMD1_HUMAN, GAPD1_HUMAN, PAK4_HUMAN, IBP2_HUMAN, Q549H9_HUMAN, SRGP2_HUMAN, TEX2_HUMAN, AKT1_HUMAN, MAGI2_HUMAN, LEG1_HUMAN, 2A5E_HUMAN, STAT3_HUMAN, RPGF3_HUMAN, MK14_HUMAN, CAMLG_HUMAN, RCAN1_HUMAN, SMAD1_HUMAN, AKA10_HUMAN, 2A5A_HUMAN, RHG01_HUMAN, AAPK2_HUMAN, PPR1B_HUMAN, KAPCB_HUMAN, CCL11_HUMAN, GNA13_HUMAN, AB1IP_HUMAN, TNR8_HUMAN, F1D8N4_HUMAN, AAKB1_HUMAN, LSP1_HUMAN, LAT_HUMAN, NCOA5_HUMAN, CREB1_HUMAN, SUFU_HUMAN, NPM_HUMAN, RHG05_HUMAN, CO3_HUMAN, CAP1_HUMAN, ABL2_HUMAN, RASL3_HUMAN, EGFR_HUMAN, PDE3B_HUMAN, LEUK_HUMAN, ZN217_HUMAN, A6NHG8_HUMAN, MAGI3_HUMAN, MRC2_HUMAN, A8K401_HUMAN, RAF1_HUMAN, DOK1_HUMAN, ERBIN_HUMAN, PI4KB_HUMAN, IRPL1_HUMAN, STAT6_HUMAN, TGFA1_HUMAN, RASL2_HUMAN, STMN1_HUMAN, F1D8P8_HUMAN, RHG15_HUMAN, VAV2_HUMAN, CD2AP_HUMAN, KI13B_HUMAN, ECM1_HUMAN, KC1E_HUMAN, KC1A_HUMAN, IGSF1_HUMAN 1396 1161 16792 1.31579583848525 0.9815390517696629 0.053936702198245645 1.766305392309564 -GOTERM_BP_DIRECT GO:0010628~positive regulation of gene expression 38 2.583276682528892 0.0010090304144939697 VIME_HUMAN, P53_HUMAN, GELS_HUMAN, DTBP1_HUMAN, MED1_HUMAN, RS3_HUMAN, HCFC1_HUMAN, KLF4_HUMAN, CDK1_HUMAN, FBLN1_HUMAN, A8K401_HUMAN, DDX3X_HUMAN, MYC_HUMAN, RNC_HUMAN, UBAP2_HUMAN, STAT3_HUMAN, CTCF_HUMAN, MK14_HUMAN, SMAD1_HUMAN, ROCK2_HUMAN, FUBP3_HUMAN, TGFB2_HUMAN, CD3E_HUMAN, DNMT1_HUMAN, MITF_HUMAN, F1D8P8_HUMAN, NCOA3_HUMAN, VDR_HUMAN, LDLR_HUMAN, MTOR_HUMAN, AAKB1_HUMAN, TMED2_HUMAN, SRPK2_HUMAN, APOB_HUMAN, PPM1F_HUMAN, HNRPD_HUMAN, TGFB1_HUMAN, CDC42_HUMAN, MCP_HUMAN 1396 262 16792 1.7446138366980906 0.9853439945933239 0.056206621118872424 1.8674668722569954 -GOTERM_BP_DIRECT GO:0006605~protein targeting 11 0.7477906186267845 0.0010300287610331988 KI13B_HUMAN, PML_HUMAN, PAN3_HUMAN, AKAP6_HUMAN, ZDHC3_HUMAN, KTNB1_HUMAN, 1433G_HUMAN, 1433E_HUMAN, GBRAP_HUMAN, ERBIN_HUMAN, GIPC1_HUMAN 1396 39 16792 3.392697083241496 0.9865776067478333 0.056590153234511664 1.9059767726547272 -GOTERM_BP_DIRECT GO:0006897~endocytosis 24 1.6315431679129844 0.0010862068828934083 RUFY1_HUMAN, CD209_HUMAN, TOM1_HUMAN, WIPF1_HUMAN, ATP9B_HUMAN, EHD2_HUMAN, EPN4_HUMAN, ACK1_HUMAN, GAPD1_HUMAN, CIP4_HUMAN, ESYT2_HUMAN, PPIP1_HUMAN, PACN3_HUMAN, WIPF2_HUMAN, AAK1_HUMAN, RAB1A_HUMAN, KC1E_HUMAN, MRC2_HUMAN, LDLR_HUMAN, CYH2_HUMAN, EPN1_HUMAN, DNM1L_HUMAN, CDC42_HUMAN, A4_HUMAN 1396 139 16792 2.07688977757622 0.9893912147733167 0.05881381880383241 2.0089342852172343 -GOTERM_BP_DIRECT GO:0043066~negative regulation of apoptotic process 58 3.9428959891230457 0.0011614160816944517 KS6B1_HUMAN, B0LPE5_HUMAN, MGMT_HUMAN, P53_HUMAN, PSN1_HUMAN, CH60_HUMAN, SEM4D_HUMAN, HIPK3_HUMAN, PRKDC_HUMAN, KS6A3_HUMAN, AKT1_HUMAN, TNF6B_HUMAN, KPCZ_HUMAN, ZN830_HUMAN, STAT3_HUMAN, J3KN59_HUMAN, COF1_HUMAN, PALB2_HUMAN, AAPK2_HUMAN, CD59_HUMAN, ITCH_HUMAN, PDCD4_HUMAN, TMF1_HUMAN, SIN3A_HUMAN, NPM_HUMAN, MY18A_HUMAN, PIAS1_HUMAN, DDB1_HUMAN, KIF14_HUMAN, IL2_HUMAN, ALBU_HUMAN, P63_HUMAN, MED1_HUMAN, TRFL_HUMAN, HNRPK_HUMAN, NFKB1_HUMAN, EGFR_HUMAN, CDK1_HUMAN, EF2K_HUMAN, DDX3X_HUMAN, RAF1_HUMAN, LTOR5_HUMAN, HTAI2_HUMAN, MYC_HUMAN, BAG4_HUMAN, GOLP3_HUMAN, B2CL2_HUMAN, PHIP_HUMAN, KPCI_HUMAN, TSP1_HUMAN, PHB2_HUMAN, BNI3L_HUMAN, RS6_HUMAN, API5_HUMAN, BAG6_HUMAN, BARD1_HUMAN, TGFA_HUMAN, TAF9B_HUMAN, H6UYS5_HUMAN 1396 455 16792 1.5333228376208319 0.9922574706382465 0.061958304673056186 2.146609901736085 -GOTERM_BP_DIRECT GO:0051225~spindle assembly 9 0.6118286879673691 0.0011763905381499636 HAUS8_HUMAN, HAUS6_HUMAN, NCOR1_HUMAN, CHD4_HUMAN, NEK2_HUMAN, HAUS5_HUMAN, RS3_HUMAN, TNKS1_HUMAN, CE192_HUMAN 1396 27 16792 4.009551098376313 0.9927281046194467 0.061943083608799854 2.173999812295313 -GOTERM_BP_DIRECT GO:0051292~nuclear pore complex assembly 6 0.4078857919782461 0.0011853706394354463 RTN4_HUMAN, TPR_HUMAN, NU107_HUMAN, NUP93_HUMAN, NUP98_HUMAN, NU153_HUMAN 1396 11 16792 6.561083615524877 0.992996508602943 0.061626297871867575 2.190421914223406 -GOTERM_BP_DIRECT GO:0016236~macroautophagy 16 1.087695445275323 0.001294256150005803 EI24_HUMAN, ULK1_HUMAN, RRAGC_HUMAN, MLP3C_HUMAN, AAPK2_HUMAN, UBQL1_HUMAN, RRAGD_HUMAN, RBCC1_HUMAN, MTOR_HUMAN, AAKB1_HUMAN, GBRL1_HUMAN, LST8_HUMAN, LTOR5_HUMAN, GBRAP_HUMAN, RRAGB_HUMAN, RRAGA_HUMAN 1396 76 16792 2.5323480621324084 0.9955612388904593 0.06627603956737615 2.3893356556293766 -GOTERM_BP_DIRECT GO:0042110~T cell activation 12 0.8157715839564922 0.0013294764674045918 ZAP70_HUMAN, CD7_HUMAN, IRF4_HUMAN, KI13B_HUMAN, CD2_HUMAN, WASP_HUMAN, CD3E_HUMAN, LAT_HUMAN, OST48_HUMAN, CH60_HUMAN, INAR1_HUMAN, NCK1_HUMAN 1396 47 16792 3.0711455221605806 0.9961700368039376 0.06719700354246383 2.453594685774585 -GOTERM_BP_DIRECT GO:0051988~regulation of attachment of spindle microtubules to kinetochore 5 0.3399048266485384 0.0013525510399591593 ECT2_HUMAN, SPAG5_HUMAN, NEK2_HUMAN, APC_HUMAN, CDC42_HUMAN 1396 7 16792 8.591895210806387 0.9965228790190704 0.06750891405108395 2.495672245830971 -GOTERM_BP_DIRECT GO:0045859~regulation of protein kinase activity 10 0.6798096532970768 0.0014286594781321579 ECT2_HUMAN, FAF1_HUMAN, ELP3_HUMAN, AAKB1_HUMAN, MTOR_HUMAN, KKCC2_HUMAN, KDIS_HUMAN, ELP4_HUMAN, CDC42_HUMAN, ELP1_HUMAN 1396 34 16792 3.537839204449688 0.9974720726993723 0.07033517904757625 2.6343377930926115 -GOTERM_BP_DIRECT GO:0045931~positive regulation of mitotic cell cycle 9 0.6118286879673691 0.0015284070442625726 DUS3_HUMAN, KS6B1_HUMAN, CDK1_HUMAN, BRCA2_HUMAN, KPCA_HUMAN, SHB_HUMAN, TAL1_HUMAN, ABL1_HUMAN, A4_HUMAN 1396 28 16792 3.866352844862874 0.998335478281465 0.0741906557418851 2.8157899954823318 -GOTERM_BP_DIRECT GO:0006376~mRNA splice site selection 7 0.4758667573079538 0.0018055342770600924 SRS10_HUMAN, YTDC1_HUMAN, SRSF6_HUMAN, RBMX_HUMAN, SRSF9_HUMAN, CELF2_HUMAN, LC7L2_HUMAN 1396 17 16792 4.952974886229564 0.9994787997811957 0.08606202868733359 3.3182377403940255 -GOTERM_BP_DIRECT GO:0006337~nucleosome disassembly 7 0.4758667573079538 0.0018055342770600924 HMGA1_HUMAN, ARID2_HUMAN, SMRC2_HUMAN, Q9HBD4_HUMAN, SMRD2_HUMAN, SP16H_HUMAN, SMRC1_HUMAN 1396 17 16792 4.952974886229564 0.9994787997811957 0.08606202868733359 3.3182377403940255 -GOTERM_BP_DIRECT GO:0035518~histone H2A monoubiquitination 6 0.4078857919782461 0.0018936539450492519 DDB1_HUMAN, RN168_HUMAN, RYBP_HUMAN, KDM2B_HUMAN, BCOR_HUMAN, SKP1_HUMAN 1396 12 16792 6.01432664756447 0.9996397325539077 0.08906013955689329 3.477487950708502 -GOTERM_BP_DIRECT GO:0002576~platelet degranulation 19 1.291638341264446 0.0019460557211126743 FETUA_HUMAN, B4DJ51_HUMAN, TSP1_HUMAN, A2MG_HUMAN, TMX3_HUMAN, TGFB2_HUMAN, A1AG2_HUMAN, APOA1_HUMAN, ALBU_HUMAN, TRFE_HUMAN, A2AP_HUMAN, ECM1_HUMAN, TETN_HUMAN, PLMN_HUMAN, WDR1_HUMAN, PCDH7_HUMAN, TGFB1_HUMAN, A4_HUMAN, B7ZKJ8_HUMAN 1396 103 16792 2.218877792305338 0.9997107682132503 0.09039738984713075 3.57207089948971 -GOTERM_BP_DIRECT GO:0051973~positive regulation of telomerase activity 9 0.6118286879673691 0.001958929418673813 KLF4_HUMAN, ACD_HUMAN, TCPD_HUMAN, TCPB_HUMAN, POTE1_HUMAN, NEK2_HUMAN, TNKS1_HUMAN, MYC_HUMAN, AURKB_HUMAN 1396 29 16792 3.7330303329710506 0.9997259604685639 0.08997080707347815 3.5952939432100317 -GOTERM_BP_DIRECT GO:0050434~positive regulation of viral transcription 9 0.6118286879673691 0.001958929418673813 SPT4H_HUMAN, TF2B_HUMAN, CCNT1_HUMAN, RSF1_HUMAN, T2FA_HUMAN, RPB11_HUMAN, RPB9_HUMAN, NELFE_HUMAN, CDK9_HUMAN 1396 29 16792 3.7330303329710506 0.9997259604685639 0.08997080707347815 3.5952939432100317 -GOTERM_BP_DIRECT GO:0006369~termination of RNA polymerase II transcription 14 0.9517335146159076 0.002030335010139937 MAZ_HUMAN, THOC5_HUMAN, SRSF2_HUMAN, ZC11A_HUMAN, SRS11_HUMAN, SRSF9_HUMAN, THOC2_HUMAN, PRP16_HUMAN, PAPOA_HUMAN, PCF11_HUMAN, SRSF6_HUMAN, D3DU92_HUMAN, SRSF4_HUMAN, NCBP1_HUMAN 1396 64 16792 2.631267908309456 0.9997968416314643 0.0920883761779916 3.724007416452235 -GOTERM_BP_DIRECT GO:0000972~transcription-dependent tethering of RNA polymerase II gene DNA at nuclear periphery 4 0.27192386131883073 0.002146526436749716 LDB1_HUMAN, RAE1L_HUMAN, NU133_HUMAN, NU155_HUMAN 1396 4 16792 12.02865329512894 0.9998751716097825 0.09606260630907759 3.93310283171997 -GOTERM_BP_DIRECT GO:0071922~regulation of cohesin loading 4 0.27192386131883073 0.002146526436749716 CDCA5_HUMAN, HDAC8_HUMAN, RB_HUMAN, WAPL_HUMAN 1396 4 16792 12.02865329512894 0.9998751716097825 0.09606260630907759 3.93310283171997 -GOTERM_BP_DIRECT GO:0001649~osteoblast differentiation 19 1.291638341264446 0.0021747585443400593 B0LPE5_HUMAN, JUNB_HUMAN, HIRA_HUMAN, MEF2D_HUMAN, H33_HUMAN, NF1_HUMAN, WWTR1_HUMAN, SND1_HUMAN, WWOX_HUMAN, MYOC_HUMAN, B4DY08_HUMAN, MRC2_HUMAN, RL1D1_HUMAN, DDX21_HUMAN, A8K401_HUMAN, AKT1_HUMAN, DLX5_HUMAN, RBMX_HUMAN, RRAS2_HUMAN, UFL1_HUMAN 1396 104 16792 2.197542428917787 0.9998891043913324 0.09623690321994449 3.983843739117776 -GOTERM_BP_DIRECT GO:0007169~transmembrane receptor protein tyrosine kinase signaling pathway 18 1.2236573759347382 0.002216133509914785 ZAP70_HUMAN, TYK2_HUMAN, DOK2_HUMAN, ABI1_HUMAN, CD3E_HUMAN, ACK1_HUMAN, ABL2_HUMAN, EGFR_HUMAN, CD7_HUMAN, Q53GM7_HUMAN, LCP2_HUMAN, RPGF1_HUMAN, ROR1_HUMAN, LCK_HUMAN, DOK1_HUMAN, MPZL1_HUMAN, BMX_HUMAN, PHAG1_HUMAN 1396 96 16792 2.2553724928366763 0.999906763711249 0.09695430824816109 4.058160174021685 -GOTERM_BP_DIRECT GO:0007266~Rho protein signal transduction 12 0.8157715839564922 0.0022655180727241472 ROCK2_HUMAN, GNA13_HUMAN, Q53GM7_HUMAN, CTNL1_HUMAN, COF1_HUMAN, RHG05_HUMAN, RHG01_HUMAN, RHG04_HUMAN, ARHG1_HUMAN, ROCK1_HUMAN, BCL6_HUMAN, RHOB_HUMAN 1396 50 16792 2.8868767908309456 0.9999242000643035 0.09798493346474357 4.146791931376659 -GOTERM_BP_DIRECT GO:0043966~histone H3 acetylation 11 0.7477906186267845 0.0022909157018509633 SP130_HUMAN, BRD1_HUMAN, SPI1_HUMAN, IRF4_HUMAN, BRCA2_HUMAN, ELP3_HUMAN, TAF9B_HUMAN, PER1_HUMAN, KAT6A_HUMAN, BRPF1_HUMAN, ELP4_HUMAN 1396 43 16792 3.077097354567868 0.9999318564455254 0.0980174909031799 4.192343535496745 -GOTERM_BP_DIRECT GO:0071901~negative regulation of protein serine/threonine kinase activity 7 0.4758667573079538 0.00251971081450615 CK5P3_HUMAN, DTBP1_HUMAN, 1433G_HUMAN, 1433S_HUMAN, WNK1_HUMAN, ABL1_HUMAN, PPR1B_HUMAN 1396 18 16792 4.677809614772366 0.9999738915488864 0.10619588000235336 4.601773592676062 -GOTERM_BP_DIRECT GO:0072321~chaperone-mediated protein transport 5 0.3399048266485384 0.0025273821472587697 TOR1A_HUMAN, G3XAN8_HUMAN, TIM8A_HUMAN, TIM13_HUMAN, TIM8B_HUMAN, PEX19_HUMAN 1396 8 16792 7.5179083094555885 0.9999747181008503 0.10544196054428168 4.615472748281723 -GOTERM_BP_DIRECT GO:0002903~negative regulation of B cell apoptotic process 5 0.3399048266485384 0.0025273821472587697 S39AA_HUMAN, IL2_HUMAN, BCL6_HUMAN, AURKB_HUMAN, NOC2L_HUMAN 1396 8 16792 7.5179083094555885 0.9999747181008503 0.10544196054428168 4.615472748281723 -GOTERM_BP_DIRECT GO:0030866~cortical actin cytoskeleton organization 8 0.5438477226376615 0.0026354056958563547 ROCK2_HUMAN, ARF6_HUMAN, E41L2_HUMAN, EHD2_HUMAN, L2GL1_HUMAN, 41_HUMAN, FMNL1_HUMAN, ROCK1_HUMAN 1396 24 16792 4.009551098376313 0.9999839283518867 0.10861949964448259 4.808179240081212 -GOTERM_BP_DIRECT GO:0007030~Golgi organization 15 1.0197144799456153 0.0028049625333229408 MY18A_HUMAN, CLAP1_HUMAN, GBF1_HUMAN, UBX2A_HUMAN, DYM_HUMAN, RAB1A_HUMAN, ARHG7_HUMAN, HD_HUMAN, KC1A_HUMAN, TMED2_HUMAN, CLAP2_HUMAN, S23IP_HUMAN, CTRO_HUMAN, CDC42_HUMAN, GOLP3_HUMAN 1396 74 16792 2.4382405327964065 0.9999921078711864 0.1140815337806933 5.109913908731234 -GOTERM_BP_DIRECT GO:0030334~regulation of cell migration 15 1.0197144799456153 0.0028049625333229408 B0LPE5_HUMAN, KIF14_HUMAN, AJUBA_HUMAN, PLXB2_HUMAN, NCK1_HUMAN, PLXB1_HUMAN, MINK1_HUMAN, RTN4_HUMAN, LDB1_HUMAN, GNA13_HUMAN, NEXN_HUMAN, AKT1_HUMAN, AKT2_HUMAN, RHOB_HUMAN, TGFB1_HUMAN, LMNA_HUMAN 1396 74 16792 2.4382405327964065 0.9999921078711864 0.1140815337806933 5.109913908731234 -GOTERM_BP_DIRECT GO:0006957~complement activation, alternative pathway 6 0.4078857919782461 0.002868071114902362 PROP_HUMAN, CO5_HUMAN, CO3_HUMAN, CO9_HUMAN, CFAB_HUMAN, CO7_HUMAN 1396 13 16792 5.551686136213356 0.9999939435017262 0.11537875887253535 5.221987376868686 -GOTERM_BP_DIRECT GO:0042981~regulation of apoptotic process 31 2.107409925220938 0.0030008418660275975 SRA1_HUMAN, P53_HUMAN, STEA3_HUMAN, TRAF2_HUMAN, P63_HUMAN, RS3_HUMAN, TNR25_HUMAN, TR19L_HUMAN, A6NHG8_HUMAN, BIK_HUMAN, A8K401_HUMAN, RAF1_HUMAN, LEG1_HUMAN, P73_HUMAN, Q96FS5_HUMAN, RBM5_HUMAN, TRAF5_HUMAN, ETS1_HUMAN, AN32A_HUMAN, B2CL2_HUMAN, FADD_HUMAN, CD3E_HUMAN, MITF_HUMAN, BNI3L_HUMAN, RTN4_HUMAN, PEA15_HUMAN, RASF5_HUMAN, RL1D1_HUMAN, MAGD1_HUMAN, BCL6_HUMAN, TGFB1_HUMAN, MADD_HUMAN 1396 213 16792 1.7506490711220521 0.9999965301297455 0.11925203409459584 5.4573638130685165 -GOTERM_BP_DIRECT GO:0032147~activation of protein kinase activity 11 0.7477906186267845 0.003274867429450005 STK11_HUMAN, ECT2_HUMAN, PK3CA_HUMAN, TGFB2_HUMAN, D2JYI1_HUMAN, AXIN1_HUMAN, KIF14_HUMAN, WNK1_HUMAN, MARK2_HUMAN, TPX2_HUMAN, RIPK3_HUMAN 1396 45 16792 2.94033747214263 0.9999989011543943 0.1282150511552771 5.94140916695406 -GOTERM_BP_DIRECT GO:0000375~RNA splicing, via transesterification reactions 8 0.5438477226376615 0.003401422872700487 TRA2B_HUMAN, SRS10_HUMAN, SCAFB_HUMAN, SF3B1_HUMAN, FUBP2_HUMAN, SRSF4_HUMAN, DDX23_HUMAN, PRPF3_HUMAN 1396 25 16792 3.8491690544412607 0.999999353960293 0.13160875214176893 6.164167109967266 -GOTERM_BP_DIRECT GO:0043536~positive regulation of blood vessel endothelial cell migration 7 0.4758667573079538 0.003426686392894569 B0LPE5_HUMAN, TSP1_HUMAN, PLCG1_HUMAN, KPCA_HUMAN, KPCD2_HUMAN, AKT1_HUMAN, TGFB1_HUMAN, MK14_HUMAN 1396 19 16792 4.431609108731715 0.9999994189588162 0.13131009688549677 6.208575144042861 -GOTERM_BP_DIRECT GO:0001894~tissue homeostasis 7 0.4758667573079538 0.003426686392894569 STK11_HUMAN, NANO1_HUMAN, ACACA_HUMAN, BARD1_HUMAN, TRI32_HUMAN, RB_HUMAN, CUBN_HUMAN 1396 19 16792 4.431609108731715 0.9999994189588162 0.13131009688549677 6.208575144042861 -GOTERM_BP_DIRECT GO:0043065~positive regulation of apoptotic process 40 2.719238613188307 0.003452387902058298 B0LPE5_HUMAN, BCLF1_HUMAN, P53_HUMAN, NF1_HUMAN, ABR_HUMAN, PSN1_HUMAN, APC_HUMAN, CH60_HUMAN, PRAF3_HUMAN, BAD_HUMAN, PNMA1_HUMAN, PRKDC_HUMAN, AKT1_HUMAN, DDX3X_HUMAN, P73_HUMAN, RBM5_HUMAN, ECT2_HUMAN, FADD_HUMAN, SDS3_HUMAN, FAF1_HUMAN, ACINU_HUMAN, SOX4_HUMAN, VAV2_HUMAN, BNI3L_HUMAN, RS6_HUMAN, ABL1_HUMAN, CCAR2_HUMAN, TNFL6_HUMAN, ARHG7_HUMAN, TNR8_HUMAN, BARD1_HUMAN, ARHG9_HUMAN, RHG04_HUMAN, BCL6_HUMAN, DNM1L_HUMAN, D3DU92_HUMAN, ARHG6_HUMAN, CREB1_HUMAN, TGFB1_HUMAN, RHOB_HUMAN, H6UYS5_HUMAN 1396 300 16792 1.6038204393505255 0.999999478379054 0.13103267409903718 6.253732660530364 -GOTERM_BP_DIRECT GO:0007010~cytoskeleton organization 25 1.699524133242692 0.0036123474114293985 FGD6_HUMAN, PHIP_HUMAN, MAST2_HUMAN, KPCI_HUMAN, COF1_HUMAN, TBB4A_HUMAN, FMNL1_HUMAN, ZRAN1_HUMAN, MAST4_HUMAN, AJUBA_HUMAN, LIMD1_HUMAN, SPTB2_HUMAN, CCDC6_HUMAN, CD2AP_HUMAN, PALM_HUMAN, CCL11_HUMAN, PAK4_HUMAN, CAMP1_HUMAN, PCLO_HUMAN, ACTB_HUMAN, RHG04_HUMAN, K1C16_HUMAN, ABLM1_HUMAN, TBB2B_HUMAN, MAST3_HUMAN 1396 161 16792 1.86780330669704 0.9999997334775141 0.13545838613330352 6.534319064850269 -GOTERM_BP_DIRECT GO:0045727~positive regulation of translation 12 0.8157715839564922 0.0036754831099328447 KS6B1_HUMAN, LARP1_HUMAN, NPM_HUMAN, PASK_HUMAN, TSP1_HUMAN, SOX4_HUMAN, EF2_HUMAN, MTOR_HUMAN, CIRBP_HUMAN, DDX3X_HUMAN, HNRPD_HUMAN, LAR4B_HUMAN 1396 53 16792 2.7234686705952313 0.999999795535141 0.13644181185701565 6.644847032897916 -GOTERM_BP_DIRECT GO:0048208~COPII vesicle coating 13 0.8837525492861998 0.003927111864345369 TPC2A_HUMAN, CD59_HUMAN, SC23A_HUMAN, TPPC3_HUMAN, RAB1A_HUMAN, SC22B_HUMAN, J3KNL6_HUMAN, TGFA_HUMAN, CO7A1_HUMAN, TMED2_HUMAN, S23IP_HUMAN, TPC2L_HUMAN, PP6R3_HUMAN 1396 61 16792 2.5634834891258396 0.9999999289192422 0.14382272077423108 7.084130955344703 -GOTERM_BP_DIRECT GO:0031110~regulation of microtubule polymerization or depolymerization 5 0.3399048266485384 0.004251326402446843 SKA3_HUMAN, J3QKN8_HUMAN, SKA1_HUMAN, CLAP2_HUMAN, STMN1_HUMAN 1396 9 16792 6.682585163960523 0.9999999817884008 0.1534223386974236 7.647248558426057 -GOTERM_BP_DIRECT GO:0070198~protein localization to chromosome, telomeric region 5 0.3399048266485384 0.004251326402446843 ACD_HUMAN, ATRX_HUMAN, TNKS2_HUMAN, TNKS1_HUMAN, ATR_HUMAN 1396 9 16792 6.682585163960523 0.9999999817884008 0.1534223386974236 7.647248558426057 -GOTERM_BP_DIRECT GO:0042754~negative regulation of circadian rhythm 5 0.3399048266485384 0.004251326402446843 SUV91_HUMAN, SFPQ_HUMAN, A2I2P0_HUMAN, SIN3A_HUMAN, SUV92_HUMAN 1396 9 16792 6.682585163960523 0.9999999817884008 0.1534223386974236 7.647248558426057 -GOTERM_BP_DIRECT GO:0006259~DNA metabolic process 8 0.5438477226376615 0.004325903145886871 MUS81_HUMAN, DNLI1_HUMAN, MY18A_HUMAN, KI67_HUMAN, TOPB1_HUMAN, IMA1_HUMAN, TREX1_HUMAN, TDT_HUMAN 1396 26 16792 3.7011240908089045 0.9999999866867394 0.15457184337001595 7.776320734735753 -GOTERM_BP_DIRECT GO:0031100~organ regeneration 11 0.7477906186267845 0.004568200628388244 KPYM_HUMAN, CDK1_HUMAN, D2JYI1_HUMAN, PYR1_HUMAN, LPIN1_HUMAN, KI67_HUMAN, APOA1_HUMAN, MED1_HUMAN, PRPS1_HUMAN, TGBR3_HUMAN, RENT2_HUMAN 1396 47 16792 2.8152167286471985 0.9999999951899723 0.16114011348308288 8.19449472156759 -GOTERM_BP_DIRECT GO:0019083~viral transcription 19 1.291638341264446 0.004947050243492471 P121A_HUMAN, NUPL2_HUMAN, TPR_HUMAN, NU107_HUMAN, RL28_HUMAN, RS3_HUMAN, NUP93_HUMAN, NUP98_HUMAN, RS6_HUMAN, NU153_HUMAN, RAE1L_HUMAN, RLA2_HUMAN, RBP2_HUMAN, RL35_HUMAN, NU133_HUMAN, NU188_HUMAN, RS10_HUMAN, NU155_HUMAN, RL34_HUMAN 1396 112 16792 2.0405751125665166 0.999999999021369 0.17187377927616665 8.844745142773025 -GOTERM_BP_DIRECT GO:0003289~atrial septum primum morphogenesis 4 0.27192386131883073 0.00503407892545267 NSD2_HUMAN, TGFB2_HUMAN, SOX4_HUMAN, D3DPA4_HUMAN 1396 5 16792 9.622922636103151 0.9999999993212263 0.17319531708585167 8.993502626660332 -GOTERM_BP_DIRECT GO:0036124~histone H3-K9 trimethylation 4 0.27192386131883073 0.00503407892545267 ARI4B_HUMAN, SUV91_HUMAN, ARI4A_HUMAN, SUV92_HUMAN 1396 5 16792 9.622922636103151 0.9999999993212263 0.17319531708585167 8.993502626660332 -GOTERM_BP_DIRECT GO:0006303~double-strand break repair via nonhomologous end joining 13 0.8837525492861998 0.0051594853089809555 BABA1_HUMAN, RIF1_HUMAN, MLH1_HUMAN, NSD2_HUMAN, TP53B_HUMAN, H2AX_HUMAN, MDC1_HUMAN, BARD1_HUMAN, KDM2A_HUMAN, PRKDC_HUMAN, XRCC6_HUMAN, RN168_HUMAN, NSE2_HUMAN 1396 63 16792 2.4821030608996226 0.9999999995993751 0.17567992962972145 9.207454807689764 -GOTERM_BP_DIRECT GO:0007596~blood coagulation 27 1.8354860639021073 0.005240811020227554 AKAP1_HUMAN, DOCK9_HUMAN, DTBP1_HUMAN, GATA3_HUMAN, BL1S6_HUMAN, CBX5_HUMAN, PLMN_HUMAN, ANT3_HUMAN, KAP3_HUMAN, AKA10_HUMAN, KAPCA_HUMAN, H33_HUMAN, EHD2_HUMAN, KAP1_HUMAN, CD59_HUMAN, CBPB2_HUMAN, HM20B_HUMAN, KAPCB_HUMAN, JHD2C_HUMAN, FCERG_HUMAN, WASP_HUMAN, RCOR1_HUMAN, H32_HUMAN, CDC42_HUMAN, IFNA8_HUMAN, PF21A_HUMAN, KAPCG_HUMAN 1396 184 16792 1.7650741248287032 0.9999999997154065 0.1767644535357289 9.34594767946033 -GOTERM_BP_DIRECT GO:0001953~negative regulation of cell-matrix adhesion 6 0.4078857919782461 0.00581648879359316 POSTN_HUMAN, TSP1_HUMAN, CSKP_HUMAN, NF1_HUMAN, BCL6_HUMAN, MYOC_HUMAN 1396 15 16792 4.811461318051576 0.9999999999747301 0.19268990556917465 10.320591212272923 -GOTERM_BP_DIRECT GO:1900182~positive regulation of protein localization to nucleus 7 0.4758667573079538 0.005936270740363744 STK11_HUMAN, B0LPE5_HUMAN, CK5P3_HUMAN, CDK1_HUMAN, TGFB2_HUMAN, GLIS2_HUMAN, AKT1_HUMAN, CD2AP_HUMAN 1396 21 16792 4.009551098376313 0.9999999999847343 0.19472290163043893 10.522136084151724 -GOTERM_BP_DIRECT GO:0050769~positive regulation of neurogenesis 7 0.4758667573079538 0.005936270740363744 NUMBL_HUMAN, NUMB_HUMAN, MINT_HUMAN, TRI32_HUMAN, ZN335_HUMAN, PEDF_HUMAN, SNW1_HUMAN 1396 21 16792 4.009551098376313 0.9999999999847343 0.19472290163043893 10.522136084151724 -GOTERM_BP_DIRECT GO:0045292~mRNA cis splicing, via spliceosome 5 0.3399048266485384 0.006622918189368304 WBP4_HUMAN, WBP11_HUMAN, SNUT1_HUMAN, RBM22_HUMAN, NCBP1_HUMAN 1396 10 16792 6.01432664756447 0.9999999999991519 0.21307244054769747 11.66924045048303 -GOTERM_BP_DIRECT GO:0051146~striated muscle cell differentiation 5 0.3399048266485384 0.006622918189368304 B0LPE5_HUMAN, AKT1_HUMAN, JIP4_HUMAN, RB_HUMAN, J3KN59_HUMAN, MK14_HUMAN 1396 10 16792 6.01432664756447 0.9999999999991519 0.21307244054769747 11.66924045048303 -GOTERM_BP_DIRECT GO:0000290~deadenylation-dependent decapping of nuclear-transcribed mRNA 5 0.3399048266485384 0.006622918189368304 DCP2_HUMAN, PAN3_HUMAN, DCP1A_HUMAN, DCP1B_HUMAN, PATL1_HUMAN 1396 10 16792 6.01432664756447 0.9999999999991519 0.21307244054769747 11.66924045048303 -GOTERM_BP_DIRECT GO:2000637~positive regulation of gene silencing by miRNA 5 0.3399048266485384 0.006622918189368304 PUM2_HUMAN, PUM1_HUMAN, AJUBA_HUMAN, LIMD1_HUMAN, STAT3_HUMAN 1396 10 16792 6.01432664756447 0.9999999999991519 0.21307244054769747 11.66924045048303 -GOTERM_BP_DIRECT GO:0034063~stress granule assembly 5 0.3399048266485384 0.006622918189368304 BICD1_HUMAN, PUM2_HUMAN, CIRBP_HUMAN, DDX3X_HUMAN, ATX2L_HUMAN 1396 10 16792 6.01432664756447 0.9999999999991519 0.21307244054769747 11.66924045048303 -GOTERM_BP_DIRECT GO:0051726~regulation of cell cycle 20 1.3596193065941535 0.006689076773631919 PMYT1_HUMAN, JUNB_HUMAN, DOT1L_HUMAN, CCNF_HUMAN, UHRF2_HUMAN, PUM1_HUMAN, MED1_HUMAN, RBL1_HUMAN, CENPF_HUMAN, WEE1_HUMAN, CCDB1_HUMAN, CSN5_HUMAN, MPIP3_HUMAN, CCNG1_HUMAN, A0A5E8_HUMAN, CABL1_HUMAN, RB_HUMAN, CDK17_HUMAN, STAT3_HUMAN, MADD_HUMAN 1396 124 16792 1.9401053701820872 0.9999999999993582 0.21333454874861146 11.779025948834843 -GOTERM_BP_DIRECT GO:0006378~mRNA polyadenylation 8 0.5438477226376615 0.0067281743967898865 F5H0R1_HUMAN, PAPOA_HUMAN, PCF11_HUMAN, LEO1_HUMAN, PAPOG_HUMAN, CPSF6_HUMAN, A4_HUMAN, SYMPK_HUMAN 1396 28 16792 3.436758084322554 0.9999999999994555 0.21283237409391864 11.843844968727979 -GOTERM_BP_DIRECT GO:0006890~retrograde vesicle-mediated transport, Golgi to ER 15 1.0197144799456153 0.007273994247160304 KIF2A_HUMAN, KIF1C_HUMAN, ATP9B_HUMAN, KLC1_HUMAN, ARFG1_HUMAN, GBF1_HUMAN, KIF4A_HUMAN, RAB6A_HUMAN, RAB1A_HUMAN, KIF3B_HUMAN, SC22B_HUMAN, HD_HUMAN, KIF22_HUMAN, TMED2_HUMAN, GOLP3_HUMAN 1396 82 16792 2.2003634076455376 0.9999999999999454 0.22634136681456252 12.744052871432654 -GOTERM_BP_DIRECT GO:0051056~regulation of small GTPase mediated signal transduction 21 1.4276002719238612 0.007359312163975261 ECT2_HUMAN, A2MG_HUMAN, RHG05_HUMAN, RHG01_HUMAN, SI1L1_HUMAN, SRGP3_HUMAN, RHG35_HUMAN, ABR_HUMAN, RHG44_HUMAN, RPGP2_HUMAN, RHG15_HUMAN, VAV2_HUMAN, CIP4_HUMAN, HMHA1_HUMAN, ARHG7_HUMAN, SRGP2_HUMAN, ARHG9_HUMAN, RHG04_HUMAN, ARHG6_HUMAN, RHOB_HUMAN, CDC42_HUMAN 1396 134 16792 1.8850874566993112 0.9999999999999619 0.227004435150173 12.883976998455493 -GOTERM_BP_DIRECT GO:0006302~double-strand break repair 13 0.8837525492861998 0.007564713986467607 BABA1_HUMAN, BAZ1B_HUMAN, CDCA5_HUMAN, DNLI1_HUMAN, BRCA2_HUMAN, H2AX_HUMAN, PRKDC_HUMAN, APTX_HUMAN, TYDP2_HUMAN, SMCA5_HUMAN, RN168_HUMAN, FANCJ_HUMAN, RECQ4_HUMAN 1396 66 16792 2.369280194495094 0.9999999999999839 0.23087993810178387 13.219972029020632 -GOTERM_BP_DIRECT GO:0034613~cellular protein localization 10 0.6798096532970768 0.007813200259964249 RRAGD_HUMAN, NIPBL_HUMAN, KC1E_HUMAN, P53_HUMAN, RRAGC_HUMAN, SIN3A_HUMAN, AJUBA_HUMAN, CDC42_HUMAN, RRAGA_HUMAN, RRAGB_HUMAN 1396 43 16792 2.797361231425335 0.9999999999999943 0.2358126706325806 13.624805025900033 -GOTERM_BP_DIRECT GO:0048538~thymus development 10 0.6798096532970768 0.007813200259964249 FADD_HUMAN, PRKDC_HUMAN, JARD2_HUMAN, RAF1_HUMAN, GATA3_HUMAN, PBX1_HUMAN, PSN1_HUMAN, CRKL_HUMAN, RIPK3_HUMAN, ABL1_HUMAN 1396 43 16792 2.797361231425335 0.9999999999999943 0.2358126706325806 13.624805025900033 -GOTERM_BP_DIRECT GO:0006325~chromatin organization 10 0.6798096532970768 0.007813200259964249 SOX1_HUMAN, SUV91_HUMAN, SMRCD_HUMAN, CHD4_HUMAN, HDAC8_HUMAN, NU133_HUMAN, SAFB1_HUMAN, HDA11_HUMAN, H15_HUMAN, NUCKS_HUMAN 1396 43 16792 2.797361231425335 0.9999999999999943 0.2358126706325806 13.624805025900033 -GOTERM_BP_DIRECT GO:0016310~phosphorylation 17 1.1556764106050306 0.008118188351076892 B0LPE5_HUMAN, KCRM_HUMAN, LIMK2_HUMAN, BCKD_HUMAN, PK3CA_HUMAN, ACK1_HUMAN, LIMD1_HUMAN, UCK2_HUMAN, TOP1_HUMAN, TRRAP_HUMAN, MTOR_HUMAN, AKT1_HUMAN, COASY_HUMAN, UCKL1_HUMAN, PRPS1_HUMAN, 5NTC_HUMAN, STAT3_HUMAN, DCAKD_HUMAN 1396 100 16792 2.0448710601719196 0.9999999999999984 0.24210555704515868 14.11924747092933 -GOTERM_BP_DIRECT GO:0048536~spleen development 9 0.6118286879673691 0.008215562500179225 FADD_HUMAN, PRKDC_HUMAN, JARD2_HUMAN, RBM15_HUMAN, HXB4_HUMAN, PBX1_HUMAN, RIPK3_HUMAN, ABL1_HUMAN, BARX1_HUMAN 1396 36 16792 3.007163323782235 0.999999999999999 0.2429208253335836 14.276544093678979 -GOTERM_BP_DIRECT GO:0000281~mitotic cytokinesis 8 0.5438477226376615 0.008245661435025302 CEP55_HUMAN, STMN1_HUMAN, ANLN_HUMAN, SPTB2_HUMAN, SPAST_HUMAN, APC_HUMAN, KIF4A_HUMAN, NUSAP_HUMAN 1396 29 16792 3.3182491848631557 0.9999999999999991 0.24200366702730247 14.325110230592387 -GOTERM_BP_DIRECT GO:0071407~cellular response to organic cyclic compound 12 0.8157715839564922 0.00854647283274022 B0LPE5_HUMAN, KS6B1_HUMAN, MGMT_HUMAN, AXIN1_HUMAN, STING_HUMAN, HCFC1_HUMAN, RAE1L_HUMAN, PAK4_HUMAN, TMF1_HUMAN, AKT1_HUMAN, LEG1_HUMAN, TGFB1_HUMAN, STAT3_HUMAN 1396 59 16792 2.4465057549414793 0.9999999999999998 0.24794718695696827 14.809055932752802 -GOTERM_BP_DIRECT GO:0050821~protein stabilization 21 1.4276002719238612 0.008651542566666472 MORC3_HUMAN, TCPZ_HUMAN, SOX4_HUMAN, PHB2_HUMAN, TCPB_HUMAN, APOA1_HUMAN, Q6FHY4_HUMAN, HCFC1_HUMAN, CH60_HUMAN, H15_HUMAN, BAG6_HUMAN, AAK1_HUMAN, TCPD_HUMAN, PML_HUMAN, TAF9B_HUMAN, A8K401_HUMAN, TELO2_HUMAN, CREB1_HUMAN, DVL3_HUMAN, PEX19_HUMAN, DSG1_HUMAN 1396 136 16792 1.857365582336086 0.9999999999999999 0.24888441867233024 14.977481712148188 -GOTERM_BP_DIRECT GO:0007182~common-partner SMAD protein phosphorylation 4 0.27192386131883073 0.009447600356761116 D2JYI1_HUMAN, PML_HUMAN, SPTB2_HUMAN, TGFB1_HUMAN 1396 6 16792 8.019102196752627 1.0 0.2667087576029137 16.24335401213195 -GOTERM_BP_DIRECT GO:0010763~positive regulation of fibroblast migration 5 0.3399048266485384 0.009730088217536818 B0LPE5_HUMAN, TSP1_HUMAN, ARHG7_HUMAN, AKT1_HUMAN, TGFB1_HUMAN, BAG4_HUMAN 1396 11 16792 5.467569679604065 1.0 0.2717102609981109 16.688255695345 -GOTERM_BP_DIRECT GO:0031065~positive regulation of histone deacetylation 5 0.3399048266485384 0.009730088217536818 NIPBL_HUMAN, PML_HUMAN, P53_HUMAN, BCL6_HUMAN, TGFB1_HUMAN 1396 11 16792 5.467569679604065 1.0 0.2717102609981109 16.688255695345 -GOTERM_BP_DIRECT GO:0000082~G1/S transition of mitotic cell cycle 17 1.1556764106050306 0.009791672165013709 PMYT1_HUMAN, KS6B1_HUMAN, PIAS1_HUMAN, CDK2_HUMAN, CUL4A_HUMAN, CUL5_HUMAN, RS6_HUMAN, MCM4_HUMAN, MCM3_HUMAN, CDC7_HUMAN, CDCA5_HUMAN, CDK1_HUMAN, CCNA1_HUMAN, D3DPA4_HUMAN, RB_HUMAN, PHF8_HUMAN, DPOA2_HUMAN 1396 102 16792 2.0047755491881567 1.0 0.2713913603977992 16.7849493637098 -GOTERM_BP_DIRECT GO:0045739~positive regulation of DNA repair 8 0.5438477226376615 0.010000586316857026 BABA1_HUMAN, CBX8_HUMAN, H2AX_HUMAN, MGMT_HUMAN, RS3_HUMAN, RN168_HUMAN, TIF1B_HUMAN, EGFR_HUMAN 1396 30 16792 3.2076408787010506 1.0 0.2745326253919935 17.11217717307142 -GOTERM_BP_DIRECT GO:0043161~proteasome-mediated ubiquitin-dependent protein catabolic process 28 1.9034670292318152 0.010018826373102191 PSMD2_HUMAN, DDB1_HUMAN, KIF14_HUMAN, PSD11_HUMAN, P53_HUMAN, UB2D1_HUMAN, CUL4A_HUMAN, PCNP_HUMAN, APC_HUMAN, SKP1_HUMAN, CDK1_HUMAN, PML_HUMAN, RNF12_HUMAN, CHIP_HUMAN, RBX1_HUMAN, HOIL1_HUMAN, FAF1_HUMAN, BACD1_HUMAN, AXIN1_HUMAN, UBX2A_HUMAN, APC1_HUMAN, CD2AP_HUMAN, PSMD4_HUMAN, KC1A_HUMAN, B2RNT7_HUMAN, KCD17_HUMAN, PSA5_HUMAN, PCBP2_HUMAN 1396 203 16792 1.659124592431578 1.0 0.27319108787589996 17.140689179281665 -GOTERM_BP_DIRECT GO:0032869~cellular response to insulin stimulus 14 0.9517335146159076 0.010420143303548771 B0LPE5_HUMAN, ABEC1_HUMAN, KPCI_HUMAN, 1433G_HUMAN, SP1_HUMAN, PDE3B_HUMAN, EF2K_HUMAN, PRKDC_HUMAN, LPIN1_HUMAN, AKT1_HUMAN, C2CD5_HUMAN, AKT2_HUMAN, MYO5A_HUMAN, MYC_HUMAN, TBCD4_HUMAN 1396 77 16792 2.1870278718416256 1.0 0.2806769272124138 17.765665249271034 -GOTERM_BP_DIRECT GO:1902041~regulation of extrinsic apoptotic signaling pathway via death domain receptors 6 0.4078857919782461 0.010424463354467313 FADD_HUMAN, STX4_HUMAN, TRAF2_HUMAN, SP100_HUMAN, TNFL6_HUMAN, MADD_HUMAN 1396 17 16792 4.2454070453396255 1.0 0.27900452685880095 17.77236858487382 -GOTERM_BP_DIRECT GO:0042127~regulation of cell proliferation 26 1.7675050985723997 0.010630925231543952 ABEC1_HUMAN, PIAS1_HUMAN, TPD54_HUMAN, PDS5B_HUMAN, ACK1_HUMAN, TNR25_HUMAN, ABL2_HUMAN, TR19L_HUMAN, TIM_HUMAN, TNF6B_HUMAN, CREB3_HUMAN, LCK_HUMAN, STAT6_HUMAN, TYK2_HUMAN, JUNB_HUMAN, D2JYI1_HUMAN, TFR1_HUMAN, GRDN_HUMAN, DNMT1_HUMAN, ABL1_HUMAN, H0UIA5_HUMAN, TNR5_HUMAN, BAG6_HUMAN, BCL6_HUMAN, TAL1_HUMAN, BMX_HUMAN 1396 185 16792 1.6905134360721754 1.0 0.28191304910352544 18.092129020656078 -GOTERM_BP_DIRECT GO:0008360~regulation of cell shape 21 1.4276002719238612 0.01178454623763633 FGD6_HUMAN, ML12B_HUMAN, PHIP_HUMAN, VRK3_HUMAN, WIPF1_HUMAN, SEM4A_HUMAN, FMNL1_HUMAN, RHG35_HUMAN, LIMD1_HUMAN, PLXB2_HUMAN, RHG15_HUMAN, SEM4D_HUMAN, PALM_HUMAN, PLXB1_HUMAN, CDC7_HUMAN, CCL11_HUMAN, GNA13_HUMAN, WIPF2_HUMAN, KC1E_HUMAN, KC1A_HUMAN, WDR1_HUMAN 1396 140 16792 1.8042979942693411 1.0 0.30553540586111816 19.8572649109094 -GOTERM_BP_DIRECT GO:0043967~histone H4 acetylation 8 0.5438477226376615 0.012012593769605366 IRF4_HUMAN, BRCA2_HUMAN, TRRAP_HUMAN, ELP3_HUMAN, DMAP1_HUMAN, PER1_HUMAN, EP400_HUMAN, ELP4_HUMAN 1396 31 16792 3.104168592291339 1.0 0.30857422221552777 20.201907572085375 -GOTERM_BP_DIRECT GO:1990090~cellular response to nerve growth factor stimulus 8 0.5438477226376615 0.012012593769605366 B0LPE5_HUMAN, RPGF1_HUMAN, KC1E_HUMAN, AKT1_HUMAN, MAGI2_HUMAN, CREB1_HUMAN, KDIS_HUMAN, A4_HUMAN, BPTF_HUMAN 1396 31 16792 3.104168592291339 1.0 0.30857422221552777 20.201907572085375 -GOTERM_BP_DIRECT GO:0071479~cellular response to ionizing radiation 8 0.5438477226376615 0.012012593769605366 ECT2_HUMAN, MGMT_HUMAN, P53_HUMAN, RHOB_HUMAN, TGFB1_HUMAN, IF16_HUMAN, MK14_HUMAN, B0LPF3_HUMAN 1396 31 16792 3.104168592291339 1.0 0.30857422221552777 20.201907572085375 -GOTERM_BP_DIRECT GO:0042771~intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator 8 0.5438477226376615 0.012012593769605366 BAG6_HUMAN, BRCA2_HUMAN, PML_HUMAN, P53_HUMAN, P63_HUMAN, P73_HUMAN, SNW1_HUMAN, IF16_HUMAN 1396 31 16792 3.104168592291339 1.0 0.30857422221552777 20.201907572085375 -GOTERM_BP_DIRECT GO:0030100~regulation of endocytosis 8 0.5438477226376615 0.012012593769605366 RUFY1_HUMAN, PTN1_HUMAN, RAB4A_HUMAN, ARFG1_HUMAN, SNX17_HUMAN, ABL2_HUMAN, ABL1_HUMAN, PACN3_HUMAN 1396 31 16792 3.104168592291339 1.0 0.30857422221552777 20.201907572085375 -GOTERM_BP_DIRECT GO:0030032~lamellipodium assembly 8 0.5438477226376615 0.012012593769605366 ARHG7_HUMAN, GRDN_HUMAN, AJUBA_HUMAN, ABLM1_HUMAN, ARHG6_HUMAN, VAV2_HUMAN, NCK1_HUMAN, GOLP3_HUMAN 1396 31 16792 3.104168592291339 1.0 0.30857422221552777 20.201907572085375 -GOTERM_BP_DIRECT GO:0045815~positive regulation of gene expression, epigenetic 12 0.8157715839564922 0.012363938288462342 BAZ1B_HUMAN, SF3B1_HUMAN, TBP_HUMAN, RPA43_HUMAN, TAF1D_HUMAN, H33_HUMAN, ACTB_HUMAN, DDX21_HUMAN, H32_HUMAN, SMCA5_HUMAN, WBP2_HUMAN, Q2L6J2_HUMAN 1396 62 16792 2.3281264442185043 1.0 0.3141571618903706 20.730141891181532 -GOTERM_BP_DIRECT GO:0032088~negative regulation of NF-kappaB transcription factor activity 13 0.8837525492861998 0.013432671133664429 BRMS1_HUMAN, HOIL1_HUMAN, ITCH_HUMAN, KLF4_HUMAN, DAP1_HUMAN, COMD1_HUMAN, CK5P3_HUMAN, A6NHG8_HUMAN, ERBIN_HUMAN, UFL1_HUMAN, LRRC1_HUMAN, CATIN_HUMAN, COMD6_HUMAN 1396 71 16792 2.2024294765729047 1.0 0.3343398174792792 22.316675054471546 -GOTERM_BP_DIRECT GO:2000249~regulation of actin cytoskeleton reorganization 6 0.4078857919782461 0.013464752792962678 Q6FIB4_HUMAN, TGFB1_HUMAN, ABL2_HUMAN, ABL1_HUMAN, RPGF3_HUMAN, CD2AP_HUMAN 1396 18 16792 4.009551098376313 1.0 0.3330502845667087 22.363832429444518 -GOTERM_BP_DIRECT GO:0050921~positive regulation of chemotaxis 5 0.3399048266485384 0.013648305353616587 TSP1_HUMAN, STX4_HUMAN, CXCR3_HUMAN, PPM1F_HUMAN, TGFB1_HUMAN 1396 12 16792 5.011938872970392 1.0 0.3348137645955812 22.63311892048868 -GOTERM_BP_DIRECT GO:0008154~actin polymerization or depolymerization 5 0.3399048266485384 0.013648305353616587 EVL_HUMAN, ABI1_HUMAN, WIPF1_HUMAN, WASP_HUMAN, CAP1_HUMAN 1396 12 16792 5.011938872970392 1.0 0.3348137645955812 22.63311892048868 -GOTERM_BP_DIRECT GO:0048024~regulation of mRNA splicing, via spliceosome 5 0.3399048266485384 0.013648305353616587 SRS10_HUMAN, YTDC1_HUMAN, TIA1_HUMAN, SRPK2_HUMAN, KHDR1_HUMAN 1396 12 16792 5.011938872970392 1.0 0.3348137645955812 22.63311892048868 -GOTERM_BP_DIRECT GO:0030212~hyaluronan metabolic process 5 0.3399048266485384 0.013648305353616587 B0LPE5_HUMAN, ITIH1_HUMAN, ITIH2_HUMAN, KI67_HUMAN, AKT1_HUMAN, B7ZKJ8_HUMAN 1396 12 16792 5.011938872970392 1.0 0.3348137645955812 22.63311892048868 -GOTERM_BP_DIRECT GO:0032956~regulation of actin cytoskeleton organization 10 0.6798096532970768 0.014013557032822511 ROCK2_HUMAN, TGFB2_HUMAN, GRDN_HUMAN, MTOR_HUMAN, LST8_HUMAN, CLAP2_HUMAN, SH3L3_HUMAN, RHG35_HUMAN, ROCK1_HUMAN, ABL1_HUMAN 1396 47 16792 2.5592879351338174 1.0 0.34013999020944996 23.16634516852476 -GOTERM_BP_DIRECT GO:0043547~positive regulation of GTPase activity 63 4.2828008157715844 0.014300159116973262 FGD6_HUMAN, DOCK9_HUMAN, Q6FIB4_HUMAN, SRGP3_HUMAN, NF1_HUMAN, RHG35_HUMAN, SPTB2_HUMAN, ABR_HUMAN, ARHG1_HUMAN, RHG44_HUMAN, GAPD1_HUMAN, HMHA1_HUMAN, PLXB1_HUMAN, SEM4D_HUMAN, SRGP2_HUMAN, L2GL1_HUMAN, SC61B_HUMAN, DVL3_HUMAN, RPGF3_HUMAN, J3KN59_HUMAN, ECT2_HUMAN, B4DJ51_HUMAN, ARFG1_HUMAN, NGAP_HUMAN, RHG01_HUMAN, NDEL1_HUMAN, GBF1_HUMAN, AGAP2_HUMAN, ASAP3_HUMAN, CCL11_HUMAN, TNR5_HUMAN, RIC8A_HUMAN, ARHG7_HUMAN, CYH2_HUMAN, ARHG9_HUMAN, LAT_HUMAN, DNM1L_HUMAN, ARHG6_HUMAN, A2MG_HUMAN, RHG05_HUMAN, IL2_HUMAN, DEN1B_HUMAN, ACAP1_HUMAN, NCK1_HUMAN, CIP4_HUMAN, RASL3_HUMAN, EGFR_HUMAN, GIT1_HUMAN, LTOR5_HUMAN, ADRB1_HUMAN, AXIN1_HUMAN, RPGF4_HUMAN, RASL2_HUMAN, HERC1_HUMAN, RPGP2_HUMAN, VAV2_HUMAN, RHG15_HUMAN, B0LPF3_HUMAN, RPGF1_HUMAN, SH3L3_HUMAN, RAE2_HUMAN, RHG04_HUMAN, MADD_HUMAN 1396 565 16792 1.3412480665365012 1.0 0.3438227898114601 23.582314450754215 -GOTERM_BP_DIRECT GO:0061024~membrane organization 8 0.5438477226376615 0.014300878018867764 KPCI_HUMAN, GRDN_HUMAN, LCAP_HUMAN, 1433G_HUMAN, 1433S_HUMAN, 1433E_HUMAN, TBCD4_HUMAN, MBP_HUMAN 1396 32 16792 3.007163323782235 1.0 0.341914035660146 23.583355167485244 -GOTERM_BP_DIRECT GO:0048167~regulation of synaptic plasticity 8 0.5438477226376615 0.014300878018867764 NFAC4_HUMAN, 4EBP2_HUMAN, SI1L1_HUMAN, 1433G_HUMAN, LZTS1_HUMAN, PSN1_HUMAN, NOLC1_HUMAN, GIPC1_HUMAN 1396 32 16792 3.007163323782235 1.0 0.341914035660146 23.583355167485244 -GOTERM_BP_DIRECT GO:0007569~cell aging 7 0.4758667573079538 0.014561077833662141 PDCD4_HUMAN, MORC3_HUMAN, NPM_HUMAN, CDK1_HUMAN, BRCA2_HUMAN, MTOR_HUMAN, P53_HUMAN 1396 25 16792 3.3680229226361034 1.0 0.34501980718410796 23.959153068424023 -GOTERM_BP_DIRECT GO:0006913~nucleocytoplasmic transport 7 0.4758667573079538 0.014561077833662141 AN32A_HUMAN, NPM_HUMAN, RSRC1_HUMAN, NSRP1_HUMAN, RB15B_HUMAN, NU155_HUMAN, NUP98_HUMAN 1396 25 16792 3.3680229226361034 1.0 0.34501980718410796 23.959153068424023 -GOTERM_BP_DIRECT GO:0000070~mitotic sister chromatid segregation 7 0.4758667573079538 0.014561077833662141 ZWINT_HUMAN, DSN1_HUMAN, SPAG5_HUMAN, NEK2_HUMAN, KIFC1_HUMAN, SMC4_HUMAN, NUSAP_HUMAN 1396 25 16792 3.3680229226361034 1.0 0.34501980718410796 23.959153068424023 -GOTERM_BP_DIRECT GO:0051014~actin filament severing 4 0.27192386131883073 0.015518887344602939 SRGP2_HUMAN, GELS_HUMAN, FMNL1_HUMAN, FLII_HUMAN 1396 7 16792 6.873516168645108 1.0 0.3611674587560656 25.327470820743248 -GOTERM_BP_DIRECT GO:0007018~microtubule-based movement 14 0.9517335146159076 0.01566929328431419 KIF2A_HUMAN, KIF1C_HUMAN, KIF14_HUMAN, KLC1_HUMAN, KIF4A_HUMAN, DC1L1_HUMAN, KIF1B_HUMAN, KI13B_HUMAN, KIF3B_HUMAN, ARP10_HUMAN, KIF22_HUMAN, KIFC1_HUMAN, SH3G2_HUMAN, DNAL4_HUMAN 1396 81 16792 2.079026495454385 1.0 0.3619969741173057 25.54021063182168 -GOTERM_BP_DIRECT GO:0071364~cellular response to epidermal growth factor stimulus 8 0.5438477226376615 0.01688398838956731 B0LPE5_HUMAN, PLCG1_HUMAN, TISD_HUMAN, PYR1_HUMAN, AKT1_HUMAN, MED1_HUMAN, MYC_HUMAN, BAG4_HUMAN, EGFR_HUMAN 1396 33 16792 2.9160371624555004 1.0 0.3820052321465265 27.237420049460482 -GOTERM_BP_DIRECT GO:0046827~positive regulation of protein export from nucleus 6 0.4078857919782461 0.01704977650744252 KAPCA_HUMAN, TPR_HUMAN, P53_HUMAN, 1433S_HUMAN, AN32B_HUMAN, RPGF3_HUMAN 1396 19 16792 3.7985220931986126 1.0 0.38293436993002417 27.466204336258105 -GOTERM_BP_DIRECT GO:0051276~chromosome organization 6 0.4078857919782461 0.01704977650744252 SFPQ_HUMAN, BOREA_HUMAN, SMC4_HUMAN, PTTG1_HUMAN, MYC_HUMAN, ZN830_HUMAN 1396 19 16792 3.7985220931986126 1.0 0.38293436993002417 27.466204336258105 -GOTERM_BP_DIRECT GO:0010975~regulation of neuron projection development 6 0.4078857919782461 0.01704977650744252 B0LPE5_HUMAN, GRDN_HUMAN, AKT1_HUMAN, NDEL1_HUMAN, NCS1_HUMAN, GATA3_HUMAN, IRPL1_HUMAN 1396 19 16792 3.7985220931986126 1.0 0.38293436993002417 27.466204336258105 -GOTERM_BP_DIRECT GO:0035019~somatic stem cell population maintenance 12 0.8157715839564922 0.01735613281692375 KLF4_HUMAN, LDB1_HUMAN, SPI1_HUMAN, SOX4_HUMAN, TISD_HUMAN, RAF1_HUMAN, RPB11_HUMAN, RPB9_HUMAN, CUL4A_HUMAN, PBX1_HUMAN, STAT3_HUMAN, VPS72_HUMAN 1396 65 16792 2.220674454485343 1.0 0.3863031219216949 27.887179583165576 -GOTERM_BP_DIRECT GO:0005978~glycogen biosynthetic process 7 0.4758667573079538 0.017631630239998503 B0LPE5_HUMAN, PGM2_HUMAN, GLYG_HUMAN, GYS1_HUMAN, TEBP_HUMAN, F1D8S3_HUMAN, AKT1_HUMAN, AKT2_HUMAN 1396 26 16792 3.2384835794577915 1.0 0.3890794731465893 28.263774792311136 -GOTERM_BP_DIRECT GO:0070301~cellular response to hydrogen peroxide 11 0.7477906186267845 0.017947943019280932 KLF4_HUMAN, ECT2_HUMAN, CBX8_HUMAN, STAT6_HUMAN, CDK1_HUMAN, KDM6B_HUMAN, PKHA1_HUMAN, RS3_HUMAN, RHOB_HUMAN, ABL1_HUMAN, ETS1_HUMAN 1396 57 16792 2.3213190569547075 1.0 0.3925035069671112 28.69386758494987 -GOTERM_BP_DIRECT GO:0000209~protein polyubiquitination 25 1.699524133242692 0.018142090372699825 CHIP_HUMAN, PSMD2_HUMAN, RBX1_HUMAN, HOIL1_HUMAN, LCAP_HUMAN, PSD11_HUMAN, UBR5_HUMAN, TRI32_HUMAN, BRE1A_HUMAN, RN19B_HUMAN, UB2D1_HUMAN, SKP1_HUMAN, RNF31_HUMAN, TNKS2_HUMAN, PSMD4_HUMAN, RN114_HUMAN, TRIPC_HUMAN, B2RNT7_HUMAN, PPIL2_HUMAN, RNF12_HUMAN, UNKL_HUMAN, TNKS1_HUMAN, PSA5_HUMAN, UB2D2_HUMAN, FBX2_HUMAN 1396 184 16792 1.6343278933599104 1.0 0.393806967365972 28.95664125177141 -GOTERM_BP_DIRECT GO:0033962~cytoplasmic mRNA processing body assembly 5 0.3399048266485384 0.01843952057105649 LIMD1_HUMAN, EDC3_HUMAN, PATL1_HUMAN, LSM3_HUMAN, LS14A_HUMAN 1396 13 16792 4.62640511351113 1.0 0.396817733256406 29.357428864250203 -GOTERM_BP_DIRECT GO:0060389~pathway-restricted SMAD protein phosphorylation 5 0.3399048266485384 0.01843952057105649 TGFB2_HUMAN, D2JYI1_HUMAN, D3DPA4_HUMAN, TGBR3_HUMAN, TGFB1_HUMAN 1396 13 16792 4.62640511351113 1.0 0.396817733256406 29.357428864250203 -GOTERM_BP_DIRECT GO:0000184~nuclear-transcribed mRNA catabolic process, nonsense-mediated decay 18 1.2236573759347382 0.019191874683463155 SMG5_HUMAN, SMG1_HUMAN, IF4G1_HUMAN, RL28_HUMAN, RS3_HUMAN, RENT2_HUMAN, DCP1B_HUMAN, RS6_HUMAN, DCP2_HUMAN, RLA2_HUMAN, PARN_HUMAN, RL35_HUMAN, DCP1A_HUMAN, RENT1_HUMAN, RS10_HUMAN, D3DU92_HUMAN, NCBP1_HUMAN, RL34_HUMAN 1396 119 16792 1.819460162288411 1.0 0.407241106950471 30.361696099209322 -GOTERM_BP_DIRECT GO:0090312~positive regulation of protein deacetylation 3 0.20394289598912305 0.01954646584072001 BRMS1_HUMAN, DYR1A_HUMAN, RIPK3_HUMAN 1396 3 16792 12.02865329512894 1.0 0.4109893648646087 30.830317034693277 -GOTERM_BP_DIRECT GO:0003274~endocardial cushion fusion 3 0.20394289598912305 0.01954646584072001 TGFB2_HUMAN, D2JYI1_HUMAN, D3DPA4_HUMAN 1396 3 16792 12.02865329512894 1.0 0.4109893648646087 30.830317034693277 -GOTERM_BP_DIRECT GO:0019046~release from viral latency 3 0.20394289598912305 0.01954646584072001 CREB3_HUMAN, HCFC1_HUMAN, NUCKS_HUMAN 1396 3 16792 12.02865329512894 1.0 0.4109893648646087 30.830317034693277 -GOTERM_BP_DIRECT GO:2001141~regulation of RNA biosynthetic process 3 0.20394289598912305 0.01954646584072001 MITF_HUMAN, MED1_HUMAN, NCOA3_HUMAN 1396 3 16792 12.02865329512894 1.0 0.4109893648646087 30.830317034693277 -GOTERM_BP_DIRECT GO:0017148~negative regulation of translation 11 0.7477906186267845 0.02012422973752811 CNOT2_HUMAN, NANO1_HUMAN, ILF3_HUMAN, BTG2_HUMAN, TIA1_HUMAN, IF4E2_HUMAN, CIRBP_HUMAN, DDX3X_HUMAN, CNOT3_HUMAN, 4ET_HUMAN, RS3_HUMAN 1396 58 16792 2.2812963145934195 1.0 0.4182094006547641 31.58749110628245 -GOTERM_BP_DIRECT GO:0008283~cell proliferation 43 2.9231815091774305 0.02028112263329948 B0LPE5_HUMAN, LARP1_HUMAN, SRA1_HUMAN, P53_HUMAN, UBR5_HUMAN, PDS5B_HUMAN, ARHG1_HUMAN, NASP_HUMAN, TPX2_HUMAN, CENPF_HUMAN, EGFR_HUMAN, CK5P3_HUMAN, PAK4_HUMAN, CDK1_HUMAN, CD5_HUMAN, SRGP2_HUMAN, MPIP3_HUMAN, PRKDC_HUMAN, AKT1_HUMAN, DLX5_HUMAN, K1C16_HUMAN, RAF1_HUMAN, KHDR1_HUMAN, MYC_HUMAN, RPGF3_HUMAN, STAT3_HUMAN, GOLP3_HUMAN, TGFB2_HUMAN, H33_HUMAN, TISD_HUMAN, UHRF2_HUMAN, KI67_HUMAN, PEDF_HUMAN, BPL1_HUMAN, CUL5_HUMAN, IF16_HUMAN, MARE2_HUMAN, TGFA_HUMAN, TEBP_HUMAN, TRAIP_HUMAN, CDK9_HUMAN, HXB4_HUMAN, TACC1_HUMAN, AURKB_HUMAN 1396 366 16792 1.413202436312963 1.0 0.4186811605772697 31.791744807585655 -GOTERM_BP_DIRECT GO:0051496~positive regulation of stress fiber assembly 9 0.6118286879673691 0.020615630115584378 EVL_HUMAN, VINEX_HUMAN, MTOR_HUMAN, APOA1_HUMAN, PPM1F_HUMAN, RPGF3_HUMAN, BAG4_HUMAN, MYOC_HUMAN, A2AP_HUMAN 1396 42 16792 2.5775685632419156 1.0 0.42191144529914804 32.22530362377199 -GOTERM_BP_DIRECT GO:0032008~positive regulation of TOR signaling 7 0.4758667573079538 0.021118315291590813 RRAGD_HUMAN, RRAGC_HUMAN, LST8_HUMAN, LTOR5_HUMAN, RRAGA_HUMAN, RRAGB_HUMAN, GOLP3_HUMAN 1396 27 16792 3.1185397431815773 1.0 0.4276617936558811 32.87193743780169 -GOTERM_BP_DIRECT GO:0043153~entrainment of circadian clock by photoperiod 6 0.4078857919782461 0.021214485569060318 PP1A_HUMAN, A2I2P0_HUMAN, PML_HUMAN, P53_HUMAN, CRTC1_HUMAN, PER1_HUMAN 1396 20 16792 3.608595988538682 1.0 0.4271388217816733 32.99497969888775 -GOTERM_BP_DIRECT GO:0030097~hemopoiesis 11 0.7477906186267845 0.02248703726925329 RUNX1_HUMAN, BRCA2_HUMAN, TGFB2_HUMAN, TISD_HUMAN, ADDB_HUMAN, ROGDI_HUMAN, LCK_HUMAN, CUL4A_HUMAN, TAL1_HUMAN, CRIP2_HUMAN, IF16_HUMAN 1396 59 16792 2.2426302753630227 1.0 0.44415481678952073 34.60314128519998 -GOTERM_BP_DIRECT GO:0016567~protein ubiquitination 42 2.8552005438477224 0.023172216781494726 B0LPE5_HUMAN, NIPA_HUMAN, TRI32_HUMAN, RN168_HUMAN, MED1_HUMAN, PCNP_HUMAN, LMO7_HUMAN, MED20_HUMAN, PJA2_HUMAN, TIF1B_HUMAN, MPP8_HUMAN, NOSIP_HUMAN, SKP1_HUMAN, A6NHG8_HUMAN, UB2L6_HUMAN, AKT1_HUMAN, FBX33_HUMAN, RNF12_HUMAN, AKTIP_HUMAN, TRAF5_HUMAN, MKRN2_HUMAN, UB2D2_HUMAN, RNF25_HUMAN, CHIP_HUMAN, RBX1_HUMAN, BRAP_HUMAN, BACD1_HUMAN, UBA1_HUMAN, CCNF_HUMAN, UHRF2_HUMAN, WWTR1_HUMAN, HERC1_HUMAN, ITCH_HUMAN, UB2J1_HUMAN, RN169_HUMAN, KBTB7_HUMAN, DCA10_HUMAN, BARD1_HUMAN, TRAIP_HUMAN, MSL2_HUMAN, FEM1A_HUMAN, CDC42_HUMAN, FBX2_HUMAN 1396 359 16792 1.4072519175359763 1.0 0.4520969317333938 35.45382362170023 -GOTERM_BP_DIRECT GO:0031497~chromatin assembly 4 0.27192386131883073 0.023313790463769683 CAF1B_HUMAN, P53_HUMAN, CAF1A_HUMAN, NOC2L_HUMAN 1396 8 16792 6.01432664756447 1.0 0.4521124262680102 35.628283453568244 -GOTERM_BP_DIRECT GO:0051983~regulation of chromosome segregation 4 0.27192386131883073 0.023313790463769683 PUM2_HUMAN, KI67_HUMAN, PUM1_HUMAN, AURKB_HUMAN 1396 8 16792 6.01432664756447 1.0 0.4521124262680102 35.628283453568244 -GOTERM_BP_DIRECT GO:0033173~calcineurin-NFAT signaling cascade 4 0.27192386131883073 0.023313790463769683 RCAN1_HUMAN, NFAC4_HUMAN, NFAC1_HUMAN, NFAC2_HUMAN 1396 8 16792 6.01432664756447 1.0 0.4521124262680102 35.628283453568244 -GOTERM_BP_DIRECT GO:0030155~regulation of cell adhesion 9 0.6118286879673691 0.023541899795927856 ROCK2_HUMAN, FAF1_HUMAN, PML_HUMAN, KIF14_HUMAN, ROCK1_HUMAN, MYPT1_HUMAN, LMO7_HUMAN, ABL2_HUMAN, ABL1_HUMAN 1396 43 16792 2.517625108282801 1.0 0.45335749304286965 35.908441781144184 -GOTERM_BP_DIRECT GO:1902043~positive regulation of extrinsic apoptotic signaling pathway via death domain receptors 5 0.3399048266485384 0.024151743332045172 PEA15_HUMAN, FADD_HUMAN, TSP1_HUMAN, FAF1_HUMAN, NF1_HUMAN, Q96FS5_HUMAN 1396 14 16792 4.295947605403193 1.0 0.4599343997119746 36.65178102669486 -GOTERM_BP_DIRECT GO:0047496~vesicle transport along microtubule 5 0.3399048266485384 0.024151743332045172 RAB1A_HUMAN, HD_HUMAN, NDEL1_HUMAN, KPCZ_HUMAN, NDE1_HUMAN 1396 14 16792 4.295947605403193 1.0 0.4599343997119746 36.65178102669486 -GOTERM_BP_DIRECT GO:0000380~alternative mRNA splicing, via spliceosome 5 0.3399048266485384 0.024151743332045172 SFPQ_HUMAN, PTBP1_HUMAN, RSRC1_HUMAN, SRSF6_HUMAN, SFSWA_HUMAN 1396 14 16792 4.295947605403193 1.0 0.4599343997119746 36.65178102669486 -GOTERM_BP_DIRECT GO:0043923~positive regulation by host of viral transcription 5 0.3399048266485384 0.024151743332045172 CCNT1_HUMAN, Q9HBD4_HUMAN, SNW1_HUMAN, SP1_HUMAN, NUCKS_HUMAN 1396 14 16792 4.295947605403193 1.0 0.4599343997119746 36.65178102669486 -GOTERM_BP_DIRECT GO:0007064~mitotic sister chromatid cohesion 5 0.3399048266485384 0.024151743332045172 CDCA5_HUMAN, NIPBL_HUMAN, PDS5B_HUMAN, WAPL_HUMAN, PDS5A_HUMAN 1396 14 16792 4.295947605403193 1.0 0.4599343997119746 36.65178102669486 -GOTERM_BP_DIRECT GO:0000060~protein import into nucleus, translocation 7 0.4758667573079538 0.025042899172052754 B0LPE5_HUMAN, PHB2_HUMAN, AKT1_HUMAN, SC61B_HUMAN, BCL6_HUMAN, RBM22_HUMAN, TGFB1_HUMAN, DPOA2_HUMAN 1396 28 16792 3.0071633237822355 1.0 0.4702023509020491 37.72335298416027 -GOTERM_BP_DIRECT GO:0090503~RNA phosphodiester bond hydrolysis, exonucleolytic 7 0.4758667573079538 0.025042899172052754 CNO6L_HUMAN, DCP2_HUMAN, CNOT2_HUMAN, CNOT8_HUMAN, PARN_HUMAN, PAN3_HUMAN, EXOS4_HUMAN 1396 28 16792 3.0071633237822355 1.0 0.4702023509020491 37.72335298416027 -GOTERM_BP_DIRECT GO:0070932~histone H3 deacetylation 6 0.4078857919782461 0.02598892770229998 J3KPH8_HUMAN, SMRCD_HUMAN, SFPQ_HUMAN, HDAC8_HUMAN, HDA11_HUMAN, PER1_HUMAN 1396 21 16792 3.436758084322554 1.0 0.48089576584341587 38.8421229237286 -GOTERM_BP_DIRECT GO:0042769~DNA damage response, detection of DNA damage 8 0.5438477226376615 0.02657433227566816 RFC1_HUMAN, RBX1_HUMAN, UBP1_HUMAN, SOX4_HUMAN, DDB1_HUMAN, RFC4_HUMAN, RS3_HUMAN, CUL4A_HUMAN 1396 36 16792 2.673034065584209 1.0 0.4865752015900928 39.524864234696246 -GOTERM_BP_DIRECT GO:0002223~stimulatory C-type lectin receptor signaling pathway 16 1.087695445275323 0.02670707669346388 CD209_HUMAN, PSMD2_HUMAN, KAPCA_HUMAN, CLC4C_HUMAN, PSD11_HUMAN, UB2D1_HUMAN, NFKB1_HUMAN, SKP1_HUMAN, KAPCB_HUMAN, FCERG_HUMAN, PSMD4_HUMAN, RAF1_HUMAN, ICAM2_HUMAN, PSA5_HUMAN, UB2D2_HUMAN, KAPCG_HUMAN 1396 105 16792 1.8329376449720287 1.0 0.48628462922902804 39.67867388483535 -GOTERM_BP_DIRECT GO:0034644~cellular response to UV 9 0.6118286879673691 0.026747720140546816 NFAC4_HUMAN, P53_HUMAN, TOPK_HUMAN, P63_HUMAN, P73_HUMAN, ATR_HUMAN, MYC_HUMAN, AURKB_HUMAN, NOC2L_HUMAN 1396 44 16792 2.4604063558218288 1.0 0.48480623333311734 39.72569296348482 -GOTERM_BP_DIRECT GO:0031295~T cell costimulation 13 0.8837525492861998 0.026789138473827877 B0LPE5_HUMAN, PK3CA_HUMAN, CD3E_HUMAN, GRAP2_HUMAN, B0LPF3_HUMAN, LEUK_HUMAN, CD5_HUMAN, MTOR_HUMAN, AKT1_HUMAN, LST8_HUMAN, LEG1_HUMAN, CD3Z_HUMAN, LCK_HUMAN, CDC42_HUMAN 1396 78 16792 2.0047755491881567 1.0 0.4833508737437292 39.773572795518895 -GOTERM_BP_DIRECT GO:0001933~negative regulation of protein phosphorylation 11 0.7477906186267845 0.027803969520122096 CK5P3_HUMAN, FBLN1_HUMAN, MTOR_HUMAN, PRKDC_HUMAN, IL2_HUMAN, WWTR1_HUMAN, STK39_HUMAN, CTDS1_HUMAN, TGFB1_HUMAN, CATIN_HUMAN, H6UYS5_HUMAN 1396 61 16792 2.1691014138757105 1.0 0.49429430324344914 40.93553870165706 -GOTERM_BP_DIRECT GO:0033138~positive regulation of peptidyl-serine phosphorylation 12 0.8157715839564922 0.028801502118182064 B0LPE5_HUMAN, PK3CA_HUMAN, IF4G1_HUMAN, AXIN1_HUMAN, DOCK7_HUMAN, KPCD2_HUMAN, AKT1_HUMAN, RAF1_HUMAN, TGFB1_HUMAN, CDC42_HUMAN, BAG4_HUMAN, RPGF3_HUMAN, H6UYS5_HUMAN 1396 70 16792 2.0620548505935328 1.0 0.504685033414299 42.05699652102448 -GOTERM_BP_DIRECT GO:0031647~regulation of protein stability 12 0.8157715839564922 0.028801502118182064 CHIP_HUMAN, SGT1_HUMAN, TPR_HUMAN, SOX4_HUMAN, HDAC8_HUMAN, APTX_HUMAN, KHDR1_HUMAN, UBP3_HUMAN, CDC42_HUMAN, CCAR2_HUMAN, TRFE_HUMAN, GIPC1_HUMAN 1396 70 16792 2.0620548505935328 1.0 0.504685033414299 42.05699652102448 -GOTERM_BP_DIRECT GO:0090630~activation of GTPase activity 13 0.8837525492861998 0.029287611724829417 ECT2_HUMAN, TBC15_HUMAN, IF5_HUMAN, DOCK7_HUMAN, TBD2B_HUMAN, SI1L1_HUMAN, NDEL1_HUMAN, TBC13_HUMAN, AKT2_HUMAN, TB22B_HUMAN, TB10A_HUMAN, TBCD4_HUMAN, RBGP1_HUMAN 1396 79 16792 1.9793986435022306 1.0 0.5086083299081797 42.59616434289038 -GOTERM_BP_DIRECT GO:0060412~ventricular septum morphogenesis 7 0.4758667573079538 0.02942478727712717 TGFB2_HUMAN, D2JYI1_HUMAN, SOX4_HUMAN, RBM15_HUMAN, D3DPA4_HUMAN, TGBR3_HUMAN, EGLN1_HUMAN 1396 29 16792 2.9034680367552617 1.0 0.5082749800845341 42.74745124904835 -GOTERM_BP_DIRECT GO:0008542~visual learning 9 0.6118286879673691 0.03024432591182135 RIC8A_HUMAN, IFT20_HUMAN, PIAS1_HUMAN, TANC1_HUMAN, MTOR_HUMAN, NF1_HUMAN, CREB1_HUMAN, A4_HUMAN, PPR1B_HUMAN 1396 45 16792 2.4057306590257883 1.0 0.5160573266615749 43.64346408308973 -GOTERM_BP_DIRECT GO:0032467~positive regulation of cytokinesis 8 0.5438477226376615 0.030503199582218588 ECT2_HUMAN, KIF3B_HUMAN, KIF14_HUMAN, SPAST_HUMAN, CTRO_HUMAN, CDC42_HUMAN, AURKB_HUMAN, GIPC1_HUMAN 1396 37 16792 2.6007899016495006 1.0 0.5171192048846742 43.92372478999126 -GOTERM_BP_DIRECT GO:0016525~negative regulation of angiogenesis 11 0.7477906186267845 0.030773206294477506 ROCK2_HUMAN, PDE3B_HUMAN, TSP1_HUMAN, CXCR3_HUMAN, SEM4A_HUMAN, PML_HUMAN, NF1_HUMAN, ROCK1_HUMAN, GTF2I_HUMAN, PEDF_HUMAN, TNFL6_HUMAN 1396 62 16792 2.1341159072002958 1.0 0.5182970480648627 44.214632609227735 -GOTERM_BP_DIRECT GO:0045104~intermediate filament cytoskeleton organization 5 0.3399048266485384 0.03081910861909312 TOR1A_HUMAN, KC1A_HUMAN, RAF1_HUMAN, K1C16_HUMAN, ERBIN_HUMAN 1396 15 16792 4.009551098376313 1.0 0.5168703909364472 44.26394594017914 -GOTERM_BP_DIRECT GO:0080182~histone H3-K4 trimethylation 5 0.3399048266485384 0.03081910861909312 H14_HUMAN, ARI4A_HUMAN, H13_HUMAN, H12_HUMAN, ZN335_HUMAN 1396 15 16792 4.009551098376313 1.0 0.5168703909364472 44.26394594017914 -GOTERM_BP_DIRECT GO:0048255~mRNA stabilization 5 0.3399048266485384 0.03081910861909312 ABEC1_HUMAN, TR150_HUMAN, MTOR_HUMAN, CIRBP_HUMAN, HNRPD_HUMAN 1396 15 16792 4.009551098376313 1.0 0.5168703909364472 44.26394594017914 -GOTERM_BP_DIRECT GO:0048146~positive regulation of fibroblast proliferation 10 0.6798096532970768 0.03258607585348035 NDUS4_HUMAN, FBLN1_HUMAN, PML_HUMAN, B4DDV3_HUMAN, PRKDC_HUMAN, WAPL_HUMAN, MYC_HUMAN, TGFB1_HUMAN, ABL1_HUMAN, EGFR_HUMAN 1396 54 16792 2.227528387986841 1.0 0.534956172984837 46.131160778840275 -GOTERM_BP_DIRECT GO:2000146~negative regulation of cell motility 4 0.27192386131883073 0.032845022494433045 SPIT2_HUMAN, FBLN1_HUMAN, WASP_HUMAN, GATA3_HUMAN 1396 9 16792 5.346068131168418 1.0 0.5358603023344081 46.399772629048044 -GOTERM_BP_DIRECT GO:0039694~viral RNA genome replication 4 0.27192386131883073 0.032845022494433045 ROCK2_HUMAN, PCBP1_HUMAN, CDC42_HUMAN, PCBP2_HUMAN 1396 9 16792 5.346068131168418 1.0 0.5358603023344081 46.399772629048044 -GOTERM_BP_DIRECT GO:0031053~primary miRNA processing 4 0.27192386131883073 0.032845022494433045 SMAD1_HUMAN, DGCR8_HUMAN, ROA2_HUMAN, RNC_HUMAN 1396 9 16792 5.346068131168418 1.0 0.5358603023344081 46.399772629048044 -GOTERM_BP_DIRECT GO:0050684~regulation of mRNA processing 4 0.27192386131883073 0.032845022494433045 IWS1_HUMAN, SAFB2_HUMAN, SAFB1_HUMAN, SLTM_HUMAN 1396 9 16792 5.346068131168418 1.0 0.5358603023344081 46.399772629048044 -GOTERM_BP_DIRECT GO:0042158~lipoprotein biosynthetic process 4 0.27192386131883073 0.032845022494433045 ABEC1_HUMAN, LCAT_HUMAN, APOA1_HUMAN, APOB_HUMAN 1396 9 16792 5.346068131168418 1.0 0.5358603023344081 46.399772629048044 -GOTERM_BP_DIRECT GO:0007184~SMAD protein import into nucleus 4 0.27192386131883073 0.032845022494433045 TGFB2_HUMAN, PML_HUMAN, SPTB2_HUMAN, TGFB1_HUMAN 1396 9 16792 5.346068131168418 1.0 0.5358603023344081 46.399772629048044 -GOTERM_BP_DIRECT GO:1900740~positive regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway 7 0.4758667573079538 0.03428083751674861 BAD_HUMAN, P53_HUMAN, 1433G_HUMAN, P63_HUMAN, 1433S_HUMAN, P73_HUMAN, 1433E_HUMAN 1396 30 16792 2.8066857688634195 1.0 0.5494719172940066 47.86632614211723 -GOTERM_BP_DIRECT GO:0046326~positive regulation of glucose import 7 0.4758667573079538 0.03428083751674861 B0LPE5_HUMAN, KPCI_HUMAN, ARP19_HUMAN, AKT1_HUMAN, KPCZ_HUMAN, AKT2_HUMAN, EAA2_HUMAN, MK14_HUMAN 1396 30 16792 2.8066857688634195 1.0 0.5494719172940066 47.86632614211723 -GOTERM_BP_DIRECT GO:0000077~DNA damage checkpoint 7 0.4758667573079538 0.03428083751674861 PEA15_HUMAN, DOT1L_HUMAN, TP53B_HUMAN, H2AX_HUMAN, Q96FS5_HUMAN, ATR_HUMAN, FANCJ_HUMAN, MK14_HUMAN 1396 30 16792 2.8066857688634195 1.0 0.5494719172940066 47.86632614211723 -GOTERM_BP_DIRECT GO:0097193~intrinsic apoptotic signaling pathway 7 0.4758667573079538 0.03428083751674861 BAD_HUMAN, P53_HUMAN, DDX3X_HUMAN, SNUT1_HUMAN, CUL4A_HUMAN, PPM1F_HUMAN, CUL5_HUMAN 1396 30 16792 2.8066857688634195 1.0 0.5494719172940066 47.86632614211723 -GOTERM_BP_DIRECT GO:0048010~vascular endothelial growth factor receptor signaling pathway 12 0.8157715839564922 0.03462719816421296 ROCK2_HUMAN, PK3CA_HUMAN, ABI1_HUMAN, KPCD2_HUMAN, ACTB_HUMAN, SHB_HUMAN, ROCK1_HUMAN, VAV2_HUMAN, NCK1_HUMAN, CDC42_HUMAN, MAPK2_HUMAN, MK14_HUMAN 1396 72 16792 2.0047755491881567 1.0 0.5511904098962696 48.21437218487379 -GOTERM_BP_DIRECT GO:0042157~lipoprotein metabolic process 8 0.5438477226376615 0.034804027343406145 KAPCA_HUMAN, LCAT_HUMAN, APOA1_HUMAN, ALBU_HUMAN, APOB_HUMAN, CUBN_HUMAN, KAPCB_HUMAN, KAPCG_HUMAN 1396 38 16792 2.5323480621324084 1.0 0.5511057872942169 48.391212722103624 -GOTERM_BP_DIRECT GO:0010748~negative regulation of plasma membrane long-chain fatty acid transport 3 0.20394289598912305 0.036946405244524354 B0LPE5_HUMAN, TSP1_HUMAN, AKT1_HUMAN, AKT2_HUMAN 1396 4 16792 9.021489971346705 1.0 0.5711444090534838 50.488819831857036 -GOTERM_BP_DIRECT GO:0010918~positive regulation of mitochondrial membrane potential 3 0.20394289598912305 0.036946405244524354 BAD_HUMAN, MYC_HUMAN, STML2_HUMAN 1396 4 16792 9.021489971346705 1.0 0.5711444090534838 50.488819831857036 -GOTERM_BP_DIRECT GO:0031087~deadenylation-independent decapping of nuclear-transcribed mRNA 3 0.20394289598912305 0.036946405244524354 DCP1A_HUMAN, DCP1B_HUMAN, EDC3_HUMAN 1396 4 16792 9.021489971346705 1.0 0.5711444090534838 50.488819831857036 -GOTERM_BP_DIRECT GO:2001168~positive regulation of histone H2B ubiquitination 3 0.20394289598912305 0.036946405244524354 A8K6K1_HUMAN, BRE1A_HUMAN, CDK9_HUMAN 1396 4 16792 9.021489971346705 1.0 0.5711444090534838 50.488819831857036 -GOTERM_BP_DIRECT GO:2000664~positive regulation of interleukin-5 secretion 3 0.20394289598912305 0.036946405244524354 I17RA_HUMAN, KPCZ_HUMAN, GATA3_HUMAN 1396 4 16792 9.021489971346705 1.0 0.5711444090534838 50.488819831857036 -GOTERM_BP_DIRECT GO:0090521~glomerular visceral epithelial cell migration 3 0.20394289598912305 0.036946405244524354 NU188_HUMAN, ANLN_HUMAN, NUP93_HUMAN 1396 4 16792 9.021489971346705 1.0 0.5711444090534838 50.488819831857036 -GOTERM_BP_DIRECT GO:0031398~positive regulation of protein ubiquitination 11 0.7477906186267845 0.03736825934341957 CK5P3_HUMAN, COMD1_HUMAN, CHIP_HUMAN, B4E1G1_HUMAN, RASF5_HUMAN, SENP2_HUMAN, AXIN1_HUMAN, PTTG_HUMAN, DNJB2_HUMAN, UB2D1_HUMAN, UBQL1_HUMAN 1396 64 16792 2.0674247851002865 1.0 0.5733998779371909 50.89223423943179 -GOTERM_BP_DIRECT GO:0032436~positive regulation of proteasomal ubiquitin-dependent protein catabolic process 11 0.7477906186267845 0.03736825934341957 NKD2_HUMAN, B0LPE5_HUMAN, CHIP_HUMAN, PIAS1_HUMAN, KC1E_HUMAN, RN114_HUMAN, KC1A_HUMAN, SUMO2_HUMAN, AKT1_HUMAN, DNJB2_HUMAN, RN19B_HUMAN, PSN1_HUMAN 1396 64 16792 2.0674247851002865 1.0 0.5733998779371909 50.89223423943179 -GOTERM_BP_DIRECT GO:0001731~formation of translation preinitiation complex 6 0.4078857919782461 0.03746101095449231 IF4B_HUMAN, IF5_HUMAN, EIF3A_HUMAN, TICRR_HUMAN, IF4H_HUMAN, DENR_HUMAN 1396 23 16792 3.137909555251028 1.0 0.5723801582432508 50.980513410611785 -GOTERM_BP_DIRECT GO:0071230~cellular response to amino acid stimulus 9 0.6118286879673691 0.03815052597816429 RRAGD_HUMAN, DNMT1_HUMAN, RRAGC_HUMAN, LTOR5_HUMAN, HNRPD_HUMAN, MMP2_HUMAN, RRAGA_HUMAN, RRAGB_HUMAN, EGFR_HUMAN 1396 47 16792 2.3033591416204353 1.0 0.5772126823345216 51.632087503421474 -GOTERM_BP_DIRECT GO:0008630~intrinsic apoptotic signaling pathway in response to DNA damage 9 0.6118286879673691 0.03815052597816429 B2CL2_HUMAN, BAD_HUMAN, NFAC4_HUMAN, MLH1_HUMAN, PML_HUMAN, PRKDC_HUMAN, 1433S_HUMAN, P73_HUMAN, ABL1_HUMAN 1396 47 16792 2.3033591416204353 1.0 0.5772126823345216 51.632087503421474 -GOTERM_BP_DIRECT GO:0060216~definitive hemopoiesis 5 0.3399048266485384 0.03846231675086933 TISD_HUMAN, MEIS1_HUMAN, HXB4_HUMAN, TAL1_HUMAN, TGBR3_HUMAN 1396 16 16792 3.7589541547277943 1.0 0.5783133531755617 51.92402269836715 -GOTERM_BP_DIRECT GO:0010608~posttranscriptional regulation of gene expression 5 0.3399048266485384 0.03846231675086933 PUM2_HUMAN, NANO1_HUMAN, TDRD7_HUMAN, PUM1_HUMAN, PER1_HUMAN 1396 16 16792 3.7589541547277943 1.0 0.5783133531755617 51.92402269836715 -GOTERM_BP_DIRECT GO:0006978~DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator 5 0.3399048266485384 0.03846231675086933 BRCA2_HUMAN, P53_HUMAN, SP100_HUMAN, P63_HUMAN, P73_HUMAN 1396 16 16792 3.7589541547277943 1.0 0.5783133531755617 51.92402269836715 -GOTERM_BP_DIRECT GO:0051642~centrosome localization 5 0.3399048266485384 0.03846231675086933 IFT20_HUMAN, RBP2_HUMAN, NDEL1_HUMAN, NIN_HUMAN, NDE1_HUMAN 1396 16 16792 3.7589541547277943 1.0 0.5783133531755617 51.92402269836715 -GOTERM_BP_DIRECT GO:0035162~embryonic hemopoiesis 5 0.3399048266485384 0.03846231675086933 D2JYI1_HUMAN, MED1_HUMAN, GATA3_HUMAN, TAL1_HUMAN, PBX1_HUMAN 1396 16 16792 3.7589541547277943 1.0 0.5783133531755617 51.92402269836715 -GOTERM_BP_DIRECT GO:0030890~positive regulation of B cell proliferation 8 0.5438477226376615 0.039488147062524084 TNR5_HUMAN, ATAD5_HUMAN, TFR1_HUMAN, S39AA_HUMAN, IL2_HUMAN, NFAC2_HUMAN, BCL6_HUMAN, SASH3_HUMAN 1396 39 16792 2.4674160605392697 1.0 0.586190369376874 52.87280061512221 -GOTERM_BP_DIRECT GO:0007173~epidermal growth factor receptor signaling pathway 10 0.6798096532970768 0.040076086545687 PK3CA_HUMAN, PLCG1_HUMAN, TGFA_HUMAN, TGFB1_HUMAN, PHAG1_HUMAN, ERBIN_HUMAN, ABL1_HUMAN, B0LPF3_HUMAN, CAMLG_HUMAN, EGFR_HUMAN 1396 56 16792 2.1479738027015967 1.0 0.5897930442446282 53.40856101103173 -GOTERM_BP_DIRECT GO:0007179~transforming growth factor beta receptor signaling pathway 14 0.9517335146159076 0.040352494114636234 SMAD1_HUMAN, TGFA1_HUMAN, D2JYI1_HUMAN, TGFB2_HUMAN, Q6FIB4_HUMAN, APOA1_HUMAN, MTMR4_HUMAN, FUT8_HUMAN, PML_HUMAN, KPCZ_HUMAN, D3DPA4_HUMAN, TGBR3_HUMAN, CREB1_HUMAN, TGFB1_HUMAN 1396 92 16792 1.8304472405630998 1.0 0.5904589594408385 53.65844076800621 -GOTERM_BP_DIRECT GO:0006919~activation of cysteine-type endopeptidase activity involved in apoptotic process 13 0.8837525492861998 0.04097027928392267 FADD_HUMAN, TNF15_HUMAN, TRAF2_HUMAN, SENP1_HUMAN, AN32B_HUMAN, CH60_HUMAN, TNFL6_HUMAN, DAP1_HUMAN, BAD_HUMAN, PDCD6_HUMAN, PML_HUMAN, LCK_HUMAN, H6UYS5_HUMAN 1396 83 16792 1.8840059377912797 1.0 0.5942433590411986 54.212357090749094 -GOTERM_BP_DIRECT GO:0006283~transcription-coupled nucleotide-excision repair 12 0.8157715839564922 0.04123664172736226 RFC1_HUMAN, RBX1_HUMAN, DNLI1_HUMAN, AQR_HUMAN, CSN5_HUMAN, DDB1_HUMAN, RFC4_HUMAN, RPB11_HUMAN, RPB9_HUMAN, CUL4A_HUMAN, ZN830_HUMAN, XRCC1_HUMAN 1396 74 16792 1.9505924262371255 1.0 0.5947839091998719 54.44924352058707 -GOTERM_BP_DIRECT GO:0001889~liver development 12 0.8157715839564922 0.04123664172736226 KPYM_HUMAN, ARF6_HUMAN, PK3CA_HUMAN, RBCC1_HUMAN, PHF2_HUMAN, PYR1_HUMAN, JARD2_HUMAN, NF1_HUMAN, MED1_HUMAN, TGBR3_HUMAN, RENT2_HUMAN, HNRPD_HUMAN 1396 74 16792 1.9505924262371255 1.0 0.5947839091998719 54.44924352058707 -GOTERM_BP_DIRECT GO:0010951~negative regulation of endopeptidase activity 17 1.1556764106050306 0.04252864929133157 B0LPE5_HUMAN, FETUA_HUMAN, SPIT2_HUMAN, CO5_HUMAN, A2MG_HUMAN, ITIH2_HUMAN, CO3_HUMAN, PEDF_HUMAN, PTTG1_HUMAN, A2AP_HUMAN, ITIH1_HUMAN, CO7A1_HUMAN, AKT1_HUMAN, ANT3_HUMAN, PZP_HUMAN, VTNC_HUMAN, A4_HUMAN, B7ZKJ8_HUMAN 1396 121 16792 1.6899760827867105 1.0 0.6044606933147354 55.58191023510035 -GOTERM_BP_DIRECT GO:0000910~cytokinesis 9 0.6118286879673691 0.0425780633805419 ROCK2_HUMAN, ECT2_HUMAN, SEPT6_HUMAN, INCE_HUMAN, BRCA2_HUMAN, PRC1_HUMAN, CTRO_HUMAN, RHOB_HUMAN, DCTN3_HUMAN 1396 48 16792 2.2553724928366763 1.0 0.6030293105624511 55.624696399132766 -GOTERM_BP_DIRECT GO:0048812~neuron projection morphogenesis 9 0.6118286879673691 0.0425780633805419 WEE1_HUMAN, SRGP2_HUMAN, DTBP1_HUMAN, ZN335_HUMAN, DBNL_HUMAN, MAP1S_HUMAN, MNX1_HUMAN, PLXB1_HUMAN, EGFR_HUMAN 1396 48 16792 2.2553724928366763 1.0 0.6030293105624511 55.624696399132766 -GOTERM_BP_DIRECT GO:0006888~ER to Golgi vesicle-mediated transport 21 1.4276002719238612 0.042909048891625126 TPC2A_HUMAN, ARFG1_HUMAN, SPTB2_HUMAN, GBF1_HUMAN, VAMP4_HUMAN, CD59_HUMAN, DCTN4_HUMAN, DCTN3_HUMAN, TPPC3_HUMAN, SC23A_HUMAN, RAB1A_HUMAN, MIA2_HUMAN, SC22B_HUMAN, TGFA_HUMAN, TMED2_HUMAN, CO7A1_HUMAN, DAF_HUMAN, S23IP_HUMAN, TPC2L_HUMAN, SPAST_HUMAN, DCTN6_HUMAN 1396 160 16792 1.5787607449856733 1.0 0.6040753731982593 55.91028264185161 -GOTERM_BP_DIRECT GO:0007420~brain development 24 1.6315431679129844 0.0434101795561086 BRCA2_HUMAN, D2JYI1_HUMAN, NIPBL_HUMAN, H33_HUMAN, CHD8_HUMAN, DSCL1_HUMAN, ZN335_HUMAN, NF1_HUMAN, STMN1_HUMAN, ABR_HUMAN, MED1_HUMAN, PLXB2_HUMAN, SMCA1_HUMAN, BPTF_HUMAN, NDUS4_HUMAN, CK5P3_HUMAN, BAG6_HUMAN, MTOR_HUMAN, PRKDC_HUMAN, XRCC6_HUMAN, ROGDI_HUMAN, STXB3_HUMAN, MAP1S_HUMAN, PHF8_HUMAN 1396 190 16792 1.519408837279445 1.0 0.6065827183469845 56.33936771119923 -GOTERM_BP_DIRECT GO:0051918~negative regulation of fibrinolysis 4 0.27192386131883073 0.04408306719639151 TSP1_HUMAN, PLMN_HUMAN, CBPB2_HUMAN, A2AP_HUMAN 1396 10 16792 4.811461318051576 1.0 0.6105178721382857 56.90930358281185 -GOTERM_BP_DIRECT GO:0071481~cellular response to X-ray 4 0.27192386131883073 0.04408306719639151 TP53B_HUMAN, NIPBL_HUMAN, XRCC6_HUMAN, NUCKS_HUMAN 1396 10 16792 4.811461318051576 1.0 0.6105178721382857 56.90930358281185 -GOTERM_BP_DIRECT GO:0060252~positive regulation of glial cell proliferation 4 0.27192386131883073 0.04408306719639151 KPCI_HUMAN, MTOR_HUMAN, MYC_HUMAN, UFL1_HUMAN 1396 10 16792 4.811461318051576 1.0 0.6105178721382857 56.90930358281185 -GOTERM_BP_DIRECT GO:0033160~positive regulation of protein import into nucleus, translocation 4 0.27192386131883073 0.04408306719639151 CDK1_HUMAN, STING_HUMAN, UBR5_HUMAN, MED1_HUMAN 1396 10 16792 4.811461318051576 1.0 0.6105178721382857 56.90930358281185 -GOTERM_BP_DIRECT GO:0031146~SCF-dependent proteasomal ubiquitin-dependent protein catabolic process 6 0.4078857919782461 0.04419212945769616 RBX1_HUMAN, KIF14_HUMAN, CCNF_HUMAN, WWTR1_HUMAN, FBX2_HUMAN, SKP1_HUMAN 1396 24 16792 3.007163323782235 1.0 0.6096144983814913 57.00101355907172 -GOTERM_BP_DIRECT GO:0030099~myeloid cell differentiation 6 0.4078857919782461 0.04419212945769616 RUNX1_HUMAN, SNRK_HUMAN, PML_HUMAN, BCL6_HUMAN, KAT6A_HUMAN, IF16_HUMAN 1396 24 16792 3.007163323782235 1.0 0.6096144983814913 57.00101355907172 -GOTERM_BP_DIRECT GO:0051149~positive regulation of muscle cell differentiation 6 0.4078857919782461 0.04419212945769616 MEF2A_HUMAN, JIP4_HUMAN, CDC42_HUMAN, ABL1_HUMAN, J3KN59_HUMAN, MK14_HUMAN 1396 24 16792 3.007163323782235 1.0 0.6096144983814913 57.00101355907172 -GOTERM_BP_DIRECT GO:0030511~positive regulation of transforming growth factor beta receptor signaling pathway 6 0.4078857919782461 0.04419212945769616 STK11_HUMAN, B4DHN5_HUMAN, TSP1_HUMAN, TGBR3_HUMAN, SNW1_HUMAN, GIPC1_HUMAN 1396 24 16792 3.007163323782235 1.0 0.6096144983814913 57.00101355907172 -GOTERM_BP_DIRECT GO:0032922~circadian regulation of gene expression 10 0.6798096532970768 0.04422511345660682 RAI1_HUMAN, PP1A_HUMAN, KC1E_HUMAN, A2I2P0_HUMAN, PML_HUMAN, NCOA2_HUMAN, F1D8S3_HUMAN, MAGD1_HUMAN, PER1_HUMAN, TOP1_HUMAN 1396 57 16792 2.110290051777007 1.0 0.6080725949168315 57.02871325543364 -GOTERM_BP_DIRECT GO:0032091~negative regulation of protein binding 10 0.6798096532970768 0.04422511345660682 PP1A_HUMAN, CHIP_HUMAN, NFAC4_HUMAN, AES_HUMAN, SENP2_HUMAN, KC1E_HUMAN, DTBP1_HUMAN, DNJB2_HUMAN, ROCK1_HUMAN, AURKB_HUMAN 1396 57 16792 2.110290051777007 1.0 0.6080725949168315 57.02871325543364 -GOTERM_BP_DIRECT GO:0007346~regulation of mitotic cell cycle 8 0.5438477226376615 0.0445652811089701 B4DHN5_HUMAN, A8K6K1_HUMAN, BRE1A_HUMAN, P73_HUMAN, GBF1_HUMAN, CDK9_HUMAN, RB_HUMAN, MYC_HUMAN 1396 40 16792 2.405730659025788 1.0 0.6091375515182234 57.31339981839019 -GOTERM_BP_DIRECT GO:0031333~negative regulation of protein complex assembly 5 0.3399048266485384 0.047089348567078866 ULK1_HUMAN, DDX3X_HUMAN, RAF1_HUMAN, KPCZ_HUMAN, CDC42_HUMAN 1396 17 16792 3.537839204449688 1.0 0.6280650125060399 59.37071240427372 -GOTERM_BP_DIRECT GO:0070935~3'-UTR-mediated mRNA stabilization 5 0.3399048266485384 0.047089348567078866 B4DY08_HUMAN, DAZ1_HUMAN, ROA0_HUMAN, MAPK2_HUMAN, MK14_HUMAN 1396 17 16792 3.537839204449688 1.0 0.6280650125060399 59.37071240427372 -GOTERM_BP_DIRECT GO:0070373~negative regulation of ERK1 and ERK2 cascade 10 0.6798096532970768 0.04865180638547632 KLF4_HUMAN, DUS3_HUMAN, RPGF1_HUMAN, FBLN1_HUMAN, PTN1_HUMAN, VRK3_HUMAN, A8K401_HUMAN, EIF3A_HUMAN, TNIP1_HUMAN, ABL1_HUMAN 1396 58 16792 2.0739057405394723 1.0 0.6385734135143303 60.5968271590213 -GOTERM_BP_DIRECT GO:0000045~autophagosome assembly 8 0.5438477226376615 0.05004347423144507 RAB1A_HUMAN, RBCC1_HUMAN, ATG9A_HUMAN, GBRL1_HUMAN, MLP3C_HUMAN, ATG2A_HUMAN, PSN1_HUMAN, UBQL1_HUMAN 1396 41 16792 2.3470543014885736 1.0 0.6474214820155876 61.659352493143075 -GOTERM_BP_DIRECT GO:0006306~DNA methylation 6 0.4078857919782461 0.05159989236451647 BAZ2A_HUMAN, ATRX_HUMAN, MGMT_HUMAN, DNMT1_HUMAN, DMAP1_HUMAN, CTCF_HUMAN 1396 25 16792 2.8868767908309456 1.0 0.6571908793571208 62.81552489595934 -GOTERM_BP_DIRECT GO:0046580~negative regulation of Ras protein signal transduction 6 0.4078857919782461 0.05159989236451647 RPGF1_HUMAN, TGFB2_HUMAN, RASL2_HUMAN, NF1_HUMAN, NGAP_HUMAN, RASL3_HUMAN 1396 25 16792 2.8868767908309456 1.0 0.6571908793571208 62.81552489595934 -GOTERM_BP_DIRECT GO:0001578~microtubule bundle formation 6 0.4078857919782461 0.05159989236451647 PRC1_HUMAN, NCK5L_HUMAN, A0A5E8_HUMAN, CLAP1_HUMAN, SPAST_HUMAN, MAP1S_HUMAN 1396 25 16792 2.8868767908309456 1.0 0.6571908793571208 62.81552489595934 -GOTERM_BP_DIRECT GO:0006928~movement of cell or subcellular component 13 0.8837525492861998 0.05163233924850478 SPIT2_HUMAN, ARF6_HUMAN, VIME_HUMAN, CXCR3_HUMAN, ABI1_HUMAN, PALM_HUMAN, GNA13_HUMAN, PAK4_HUMAN, LSP1_HUMAN, ACTB_HUMAN, KPTN_HUMAN, STAT3_HUMAN, MK14_HUMAN 1396 86 16792 1.8182848004264676 1.0 0.65565888494771 62.8392729637733 -GOTERM_BP_DIRECT GO:0006370~7-methylguanosine mRNA capping 7 0.4758667573079538 0.051821584156359214 NCBP3_HUMAN, T2FA_HUMAN, MCE1_HUMAN, RPB11_HUMAN, RPB9_HUMAN, MCES_HUMAN, NCBP1_HUMAN 1396 33 16792 2.551532517148563 1.0 0.6552775431033628 62.97749667763778 -GOTERM_BP_DIRECT GO:1903146~regulation of mitophagy 7 0.4758667573079538 0.051821584156359214 RL28_HUMAN, AT132_HUMAN, WBP11_HUMAN, WDR75_HUMAN, UBP36_HUMAN, DNM1L_HUMAN, BNI3L_HUMAN 1396 33 16792 2.551532517148563 1.0 0.6552775431033628 62.97749667763778 -GOTERM_BP_DIRECT GO:0045766~positive regulation of angiogenesis 16 1.087695445275323 0.05350517537287068 CO5_HUMAN, TSP1_HUMAN, D2JYI1_HUMAN, CXCR3_HUMAN, CO3_HUMAN, CCR3_HUMAN, CCL11_HUMAN, PDCD6_HUMAN, RUNX1_HUMAN, ECM1_HUMAN, PLCG1_HUMAN, KPCA_HUMAN, KPCD2_HUMAN, RHOB_HUMAN, RPGF3_HUMAN, ETS1_HUMAN 1396 115 16792 1.673551762800548 1.0 0.6655754454386125 64.18594619594734 -GOTERM_BP_DIRECT GO:0030705~cytoskeleton-dependent intracellular transport 5 0.3399048266485384 0.05669637592978103 KIF1C_HUMAN, KI13B_HUMAN, KIF14_HUMAN, TBA1B_HUMAN, KIF1B_HUMAN 1396 18 16792 3.3412925819802615 1.0 0.6856054158177547 66.37479962338611 -GOTERM_BP_DIRECT GO:0034199~activation of protein kinase A activity 5 0.3399048266485384 0.05669637592978103 KAPCA_HUMAN, KAP1_HUMAN, KAP3_HUMAN, KAPCB_HUMAN, KAPCG_HUMAN 1396 18 16792 3.3412925819802615 1.0 0.6856054158177547 66.37479962338611 -GOTERM_BP_DIRECT GO:0007020~microtubule nucleation 5 0.3399048266485384 0.05669637592978103 CLAP2_HUMAN, NDEL1_HUMAN, CLAP1_HUMAN, CENPJ_HUMAN, NDE1_HUMAN 1396 18 16792 3.3412925819802615 1.0 0.6856054158177547 66.37479962338611 -GOTERM_BP_DIRECT GO:0010971~positive regulation of G2/M transition of mitotic cell cycle 5 0.3399048266485384 0.05669637592978103 CDC7_HUMAN, SIN3A_HUMAN, BRD4_HUMAN, PBX1_HUMAN, A4_HUMAN 1396 18 16792 3.3412925819802615 1.0 0.6856054158177547 66.37479962338611 -GOTERM_BP_DIRECT GO:0008286~insulin receptor signaling pathway 12 0.8157715839564922 0.05696217454361784 B0LPE5_HUMAN, PHIP_HUMAN, SOGA1_HUMAN, 4EBP2_HUMAN, PTN1_HUMAN, ZN106_HUMAN, VA0D2_HUMAN, AKT1_HUMAN, KPCZ_HUMAN, AKT2_HUMAN, VPP2_HUMAN, SMRC1_HUMAN, B0LPF3_HUMAN 1396 78 16792 1.8505620454044522 1.0 0.6856376263817114 66.55128210239336 -GOTERM_BP_DIRECT GO:0045945~positive regulation of transcription from RNA polymerase III promoter 4 0.27192386131883073 0.05696543431155809 TF3B_HUMAN, CHD8_HUMAN, MTOR_HUMAN, ICE1_HUMAN 1396 11 16792 4.374055743683251 1.0 0.6839465330816353 66.55344104101373 -GOTERM_BP_DIRECT GO:0097202~activation of cysteine-type endopeptidase activity 4 0.27192386131883073 0.05696543431155809 BAD_HUMAN, FADD_HUMAN, TB10A_HUMAN, IF16_HUMAN 1396 11 16792 4.374055743683251 1.0 0.6839465330816353 66.55344104101373 -GOTERM_BP_DIRECT GO:0034244~negative regulation of transcription elongation from RNA polymerase II promoter 4 0.27192386131883073 0.05696543431155809 SPT4H_HUMAN, AXIN1_HUMAN, NELFE_HUMAN, RN168_HUMAN 1396 11 16792 4.374055743683251 1.0 0.6839465330816353 66.55344104101373 -GOTERM_BP_DIRECT GO:2000178~negative regulation of neural precursor cell proliferation 4 0.27192386131883073 0.05696543431155809 SPIT2_HUMAN, RPGF1_HUMAN, BTG2_HUMAN, KDM2B_HUMAN 1396 11 16792 4.374055743683251 1.0 0.6839465330816353 66.55344104101373 -GOTERM_BP_DIRECT GO:0042535~positive regulation of tumor necrosis factor biosynthetic process 4 0.27192386131883073 0.05696543431155809 LEUK_HUMAN, TSP1_HUMAN, TNR8_HUMAN, MAPK2_HUMAN 1396 11 16792 4.374055743683251 1.0 0.6839465330816353 66.55344104101373 -GOTERM_BP_DIRECT GO:2000773~negative regulation of cellular senescence 4 0.27192386131883073 0.05696543431155809 PRKDC_HUMAN, P63_HUMAN, BCL6_HUMAN, ABL1_HUMAN 1396 11 16792 4.374055743683251 1.0 0.6839465330816353 66.55344104101373 -GOTERM_BP_DIRECT GO:0031571~mitotic G1 DNA damage checkpoint 4 0.27192386131883073 0.05696543431155809 P53_HUMAN, P63_HUMAN, CDK2_HUMAN, P73_HUMAN 1396 11 16792 4.374055743683251 1.0 0.6839465330816353 66.55344104101373 -GOTERM_BP_DIRECT GO:0035195~gene silencing by miRNA 4 0.27192386131883073 0.05696543431155809 MOV10_HUMAN, CNOT8_HUMAN, AJUBA_HUMAN, LIMD1_HUMAN 1396 11 16792 4.374055743683251 1.0 0.6839465330816353 66.55344104101373 -GOTERM_BP_DIRECT GO:0010390~histone monoubiquitination 4 0.27192386131883073 0.05696543431155809 A8K6K1_HUMAN, BRE1A_HUMAN, LEO1_HUMAN, WAC_HUMAN 1396 11 16792 4.374055743683251 1.0 0.6839465330816353 66.55344104101373 -GOTERM_BP_DIRECT GO:0033169~histone H3-K9 demethylation 4 0.27192386131883073 0.05696543431155809 JHD2C_HUMAN, PHF2_HUMAN, PHF8_HUMAN, KDM3B_HUMAN 1396 11 16792 4.374055743683251 1.0 0.6839465330816353 66.55344104101373 -GOTERM_BP_DIRECT GO:0043486~histone exchange 4 0.27192386131883073 0.05696543431155809 AN32A_HUMAN, NASP_HUMAN, AN32B_HUMAN, VPS72_HUMAN 1396 11 16792 4.374055743683251 1.0 0.6839465330816353 66.55344104101373 -GOTERM_BP_DIRECT GO:0043154~negative regulation of cysteine-type endopeptidase activity involved in apoptotic process 11 0.7477906186267845 0.05796058936815569 KLF4_HUMAN, B0LPE5_HUMAN, TSP1_HUMAN, KS6A3_HUMAN, AKT1_HUMAN, DDX3X_HUMAN, RAF1_HUMAN, CSK21_HUMAN, LTOR5_HUMAN, 1433S_HUMAN, 1433E_HUMAN, H6UYS5_HUMAN 1396 69 16792 1.9176113948756282 1.0 0.6887314949856795 67.20640048194946 -GOTERM_BP_DIRECT GO:0033157~regulation of intracellular protein transport 3 0.20394289598912305 0.05822128945783667 PTN1_HUMAN, AT132_HUMAN, NDEL1_HUMAN 1396 5 16792 7.217191977077364 1.0 0.6887179794229348 67.37545080683661 -GOTERM_BP_DIRECT GO:0007100~mitotic centrosome separation 3 0.20394289598912305 0.05822128945783667 KIF3B_HUMAN, NDEL1_HUMAN, NDE1_HUMAN 1396 5 16792 7.217191977077364 1.0 0.6887179794229348 67.37545080683661 -GOTERM_BP_DIRECT GO:0033600~negative regulation of mammary gland epithelial cell proliferation 3 0.20394289598912305 0.05822128945783667 BRCA2_HUMAN, PHB2_HUMAN, GATA3_HUMAN 1396 5 16792 7.217191977077364 1.0 0.6887179794229348 67.37545080683661 -GOTERM_BP_DIRECT GO:0060761~negative regulation of response to cytokine stimulus 3 0.20394289598912305 0.05822128945783667 KLF4_HUMAN, AES_HUMAN, APOA1_HUMAN 1396 5 16792 7.217191977077364 1.0 0.6887179794229348 67.37545080683661 -GOTERM_BP_DIRECT GO:0035791~platelet-derived growth factor receptor-beta signaling pathway 3 0.20394289598912305 0.05822128945783667 PTN1_HUMAN, CLAP2_HUMAN, ABL1_HUMAN 1396 5 16792 7.217191977077364 1.0 0.6887179794229348 67.37545080683661 -GOTERM_BP_DIRECT GO:2000780~negative regulation of double-strand break repair 3 0.20394289598912305 0.05822128945783667 RN169_HUMAN, UBR5_HUMAN, TRIPC_HUMAN 1396 5 16792 7.217191977077364 1.0 0.6887179794229348 67.37545080683661 -GOTERM_BP_DIRECT GO:0010757~negative regulation of plasminogen activation 3 0.20394289598912305 0.05822128945783667 TSP1_HUMAN, CBPB2_HUMAN, A2AP_HUMAN 1396 5 16792 7.217191977077364 1.0 0.6887179794229348 67.37545080683661 -GOTERM_BP_DIRECT GO:0000727~double-strand break repair via break-induced replication 3 0.20394289598912305 0.05822128945783667 CDC7_HUMAN, MUS81_HUMAN, PSF2_HUMAN 1396 5 16792 7.217191977077364 1.0 0.6887179794229348 67.37545080683661 -GOTERM_BP_DIRECT GO:1904885~beta-catenin destruction complex assembly 3 0.20394289598912305 0.05822128945783667 AXIN1_HUMAN, KC1A_HUMAN, APC_HUMAN 1396 5 16792 7.217191977077364 1.0 0.6887179794229348 67.37545080683661 -GOTERM_BP_DIRECT GO:0071800~podosome assembly 3 0.20394289598912305 0.05822128945783667 SPD2B_HUMAN, SPD2A_HUMAN, DBNL_HUMAN 1396 5 16792 7.217191977077364 1.0 0.6887179794229348 67.37545080683661 -GOTERM_BP_DIRECT GO:0032204~regulation of telomere maintenance 3 0.20394289598912305 0.05822128945783667 SMG5_HUMAN, HDAC8_HUMAN, MYC_HUMAN 1396 5 16792 7.217191977077364 1.0 0.6887179794229348 67.37545080683661 -GOTERM_BP_DIRECT GO:1905007~positive regulation of epithelial to mesenchymal transition involved in endocardial cushion formation 3 0.20394289598912305 0.05822128945783667 TGFB2_HUMAN, D2JYI1_HUMAN, D3DPA4_HUMAN 1396 5 16792 7.217191977077364 1.0 0.6887179794229348 67.37545080683661 -GOTERM_BP_DIRECT GO:0044206~UMP salvage 3 0.20394289598912305 0.05822128945783667 UCKL1_HUMAN, UCK2_HUMAN, UPP1_HUMAN 1396 5 16792 7.217191977077364 1.0 0.6887179794229348 67.37545080683661 -GOTERM_BP_DIRECT GO:0060744~mammary gland branching involved in thelarche 3 0.20394289598912305 0.05822128945783667 PHB2_HUMAN, MED1_HUMAN, TGFB1_HUMAN 1396 5 16792 7.217191977077364 1.0 0.6887179794229348 67.37545080683661 -GOTERM_BP_DIRECT GO:0051294~establishment of spindle orientation 3 0.20394289598912305 0.05822128945783667 L2GL1_HUMAN, SPAG5_HUMAN, CLAP1_HUMAN 1396 5 16792 7.217191977077364 1.0 0.6887179794229348 67.37545080683661 -GOTERM_BP_DIRECT GO:0016573~histone acetylation 7 0.4758667573079538 0.05868771383018452 TRRAP_HUMAN, NCOA2_HUMAN, SRCAP_HUMAN, WDR75_HUMAN, ATF2_HUMAN, NCOA3_HUMAN, KAT6A_HUMAN 1396 34 16792 2.476487443114782 1.0 0.6900196452516904 67.67584659190291 -GOTERM_BP_DIRECT GO:0001932~regulation of protein phosphorylation 7 0.4758667573079538 0.05868771383018452 NDUS4_HUMAN, PHIP_HUMAN, GRDN_HUMAN, PML_HUMAN, APOA1_HUMAN, PLXB2_HUMAN, STAT2_HUMAN 1396 34 16792 2.476487443114782 1.0 0.6900196452516904 67.67584659190291 -GOTERM_BP_DIRECT GO:0008089~anterograde axonal transport 6 0.4078857919782461 0.05968757382196104 KIF3B_HUMAN, DTBP1_HUMAN, SPAST_HUMAN, BL1S6_HUMAN, KIF4A_HUMAN, KIF1B_HUMAN 1396 26 16792 2.775843068106678 1.0 0.6946617942517209 68.31099865842315 -GOTERM_BP_DIRECT GO:0008285~negative regulation of cell proliferation 43 2.9231815091774305 0.059929322019551576 NPM_HUMAN, HMGA1_HUMAN, ABI1_HUMAN, P53_HUMAN, KLF13_HUMAN, CTBP2_HUMAN, B4DDV3_HUMAN, PMP22_HUMAN, PDS5B_HUMAN, CHERP_HUMAN, GATA3_HUMAN, CUL4A_HUMAN, APC_HUMAN, FANCJ_HUMAN, KLF4_HUMAN, PML_HUMAN, PLMN_HUMAN, JARD2_HUMAN, A8K401_HUMAN, MAGI2_HUMAN, RAF1_HUMAN, P73_HUMAN, PB1_HUMAN, RBM5_HUMAN, STAT3_HUMAN, ETS1_HUMAN, SMAD1_HUMAN, TGFB2_HUMAN, SOX4_HUMAN, ARID2_HUMAN, DNJB2_HUMAN, F1D8P8_HUMAN, CUL5_HUMAN, STK11_HUMAN, VDR_HUMAN, RASF5_HUMAN, CNOT8_HUMAN, TNR8_HUMAN, BTG2_HUMAN, BCL6_HUMAN, TS101_HUMAN, RB_HUMAN, TGFB1_HUMAN, FBX2_HUMAN 1396 396 16792 1.306141645683193 1.0 0.6945065996852489 68.46278398390038 -GOTERM_BP_DIRECT GO:0001934~positive regulation of protein phosphorylation 17 1.1556764106050306 0.061330183371894484 ROCK2_HUMAN, B0LPE5_HUMAN, FIZ1_HUMAN, AXIN1_HUMAN, CO3_HUMAN, ABL1_HUMAN, SEM4D_HUMAN, EGFR_HUMAN, TNR5_HUMAN, LEUK_HUMAN, SENP2_HUMAN, RBCC1_HUMAN, MTOR_HUMAN, AKT1_HUMAN, AKT2_HUMAN, AKTIP_HUMAN, DVL3_HUMAN, TGFB1_HUMAN 1396 127 16792 1.610134693048756 1.0 0.7014734624223511 69.32887888398676 -GOTERM_BP_DIRECT GO:0007409~axonogenesis 14 0.9517335146159076 0.06174859018445332 NUMBL_HUMAN, SEM4A_HUMAN, DSCL1_HUMAN, DOCK7_HUMAN, STMN1_HUMAN, NOLC1_HUMAN, RAB3A_HUMAN, STK11_HUMAN, NUMB_HUMAN, L2GL1_HUMAN, SPAST_HUMAN, CREB1_HUMAN, PTPRZ_HUMAN, A4_HUMAN 1396 98 16792 1.7183790421612772 1.0 0.702362380527844 69.58316480176889 -GOTERM_BP_DIRECT GO:0010629~negative regulation of gene expression 18 1.2236573759347382 0.06182224911424082 B0LPE5_HUMAN, AES_HUMAN, TGFB2_HUMAN, PTH2_HUMAN, CD3E_HUMAN, PEDF_HUMAN, NFKB1_HUMAN, MAX_HUMAN, RBL1_HUMAN, KLF4_HUMAN, LDLR_HUMAN, TMF1_HUMAN, AKT1_HUMAN, A0A5E8_HUMAN, RB_HUMAN, CREB1_HUMAN, TGFB1_HUMAN, CDC42_HUMAN, MCP_HUMAN 1396 137 16792 1.580407002279715 1.0 0.7011701589500887 69.62772380447267 -GOTERM_BP_DIRECT GO:0043525~positive regulation of neuron apoptotic process 8 0.5438477226376615 0.06222654313113877 TGFB2_HUMAN, P53_HUMAN, SRPK2_HUMAN, NF1_HUMAN, ATF2_HUMAN, CDC42_HUMAN, ABL1_HUMAN, TNFL6_HUMAN 1396 43 16792 2.2378889851402675 1.0 0.7019701526160916 69.87119807062676 -GOTERM_BP_DIRECT GO:0009967~positive regulation of signal transduction 10 0.6798096532970768 0.0636468991632631 GRAP2_HUMAN, SHB_HUMAN, RHG01_HUMAN, RHG04_HUMAN, LAT_HUMAN, KHDR1_HUMAN, GATA3_HUMAN, PHAG1_HUMAN, LASP1_HUMAN, B0LPF3_HUMAN 1396 61 16792 1.971910376250646 1.0 0.7087476982670571 70.71200283123187 -GOTERM_BP_DIRECT GO:0006298~mismatch repair 7 0.4758667573079538 0.06607043293522324 SETD2_HUMAN, DNLI1_HUMAN, MLH1_HUMAN, TREX1_HUMAN, P73_HUMAN, PMS2_HUMAN, ABL1_HUMAN 1396 35 16792 2.4057306590257883 1.0 0.7209752120031894 72.09560769094338 -GOTERM_BP_DIRECT GO:0035264~multicellular organism growth 12 0.8157715839564922 0.06614006872543682 ATRX_HUMAN, TNKS2_HUMAN, H33_HUMAN, MTOR_HUMAN, TMED2_HUMAN, PALB2_HUMAN, WWTR1_HUMAN, PKHA1_HUMAN, SCMC2_HUMAN, ADDA_HUMAN, EAA2_HUMAN, CDC42_HUMAN 1396 80 16792 1.804297994269341 1.0 0.7197764967160409 72.1344335743306 -GOTERM_BP_DIRECT GO:0008156~negative regulation of DNA replication 5 0.3399048266485384 0.06726880244440842 WAPL_HUMAN, ATR_HUMAN, TGFB1_HUMAN, PDS5A_HUMAN, TTF1_HUMAN 1396 19 16792 3.165435077665511 1.0 0.7244327098710575 72.756679483809 -GOTERM_BP_DIRECT GO:0051298~centrosome duplication 5 0.3399048266485384 0.06726880244440842 ROCK2_HUMAN, BRCA2_HUMAN, CDK2_HUMAN, CE192_HUMAN, NDE1_HUMAN 1396 19 16792 3.165435077665511 1.0 0.7244327098710575 72.756679483809 -GOTERM_BP_DIRECT GO:0043011~myeloid dendritic cell differentiation 5 0.3399048266485384 0.06726880244440842 SPI1_HUMAN, IRF4_HUMAN, D2JYI1_HUMAN, PSN1_HUMAN, TGFB1_HUMAN 1396 19 16792 3.165435077665511 1.0 0.7244327098710575 72.756679483809 -GOTERM_BP_DIRECT GO:0007026~negative regulation of microtubule depolymerization 5 0.3399048266485384 0.06726880244440842 CLAP2_HUMAN, KTNB1_HUMAN, A0A5E8_HUMAN, CLAP1_HUMAN, APC_HUMAN 1396 19 16792 3.165435077665511 1.0 0.7244327098710575 72.756679483809 -GOTERM_BP_DIRECT GO:0006998~nuclear envelope organization 5 0.3399048266485384 0.06726880244440842 MAN1_HUMAN, TOR1A_HUMAN, NU155_HUMAN, NUP93_HUMAN, REEP4_HUMAN 1396 19 16792 3.165435077665511 1.0 0.7244327098710575 72.756679483809 -GOTERM_BP_DIRECT GO:0006334~nucleosome assembly 16 1.087695445275323 0.06816259060422368 AN32A_HUMAN, ATRX_HUMAN, NPM_HUMAN, H2B1M_HUMAN, H2AX_HUMAN, H13_HUMAN, H33_HUMAN, RSF1_HUMAN, NASP_HUMAN, KAT6A_HUMAN, AN32B_HUMAN, H15_HUMAN, H14_HUMAN, H12_HUMAN, H32_HUMAN, SMCA5_HUMAN 1396 119 16792 1.617297922034143 1.0 0.7277165785373111 73.24005119503023 -GOTERM_BP_DIRECT GO:0043085~positive regulation of catalytic activity 12 0.8157715839564922 0.07106784480138559 SPD2B_HUMAN, RFC1_HUMAN, NPM_HUMAN, ABEC1_HUMAN, STX4_HUMAN, MIA2_HUMAN, SPD2A_HUMAN, T2FA_HUMAN, DCP1A_HUMAN, SLX4_HUMAN, PSN1_HUMAN, DCP1B_HUMAN 1396 81 16792 1.7820227103894726 1.0 0.7414058655910147 74.75578691823102 -GOTERM_BP_DIRECT GO:0061014~positive regulation of mRNA catabolic process 4 0.27192386131883073 0.07140447729855379 CNOT8_HUMAN, ZCCHV_HUMAN, RENT1_HUMAN, FUBP2_HUMAN 1396 12 16792 4.009551098376313 1.0 0.7415905894555014 74.92606558826824 -GOTERM_BP_DIRECT GO:0001944~vasculature development 4 0.27192386131883073 0.07140447729855379 STK11_HUMAN, RIC8A_HUMAN, PK3CA_HUMAN, AN32B_HUMAN 1396 12 16792 4.009551098376313 1.0 0.7415905894555014 74.92606558826824 -GOTERM_BP_DIRECT GO:0061158~3'-UTR-mediated mRNA destabilization 4 0.27192386131883073 0.07140447729855379 TISD_HUMAN, RENT1_HUMAN, FUBP2_HUMAN, HNRPD_HUMAN 1396 12 16792 4.009551098376313 1.0 0.7415905894555014 74.92606558826824 -GOTERM_BP_DIRECT GO:0007015~actin filament organization 11 0.7477906186267845 0.07330769886109674 CCL11_HUMAN, EVL_HUMAN, VINEX_HUMAN, KPCI_HUMAN, WASP_HUMAN, KPTN_HUMAN, RND1_HUMAN, AKAP2_HUMAN, NCK1_HUMAN, TYB10_HUMAN, DREB_HUMAN 1396 72 16792 1.8377109200891437 1.0 0.749586132496844 75.86850754011482 -GOTERM_BP_DIRECT GO:0000723~telomere maintenance 7 0.4758667573079538 0.07396965306830355 ACD_HUMAN, SMG1_HUMAN, TEBP_HUMAN, SP100_HUMAN, XRCC6_HUMAN, POTE1_HUMAN, RENT1_HUMAN 1396 36 16792 2.338904807386183 1.0 0.7513193717373634 76.1883631721764 -GOTERM_BP_DIRECT GO:0010507~negative regulation of autophagy 7 0.4758667573079538 0.07396965306830355 B0LPE5_HUMAN, DAP1_HUMAN, IF4G1_HUMAN, MTOR_HUMAN, AKT1_HUMAN, HERC1_HUMAN, TLK2_HUMAN, RRAGA_HUMAN 1396 36 16792 2.338904807386183 1.0 0.7513193717373634 76.1883631721764 -GOTERM_BP_DIRECT GO:0006446~regulation of translational initiation 7 0.4758667573079538 0.07396965306830355 IF4B_HUMAN, IF4G1_HUMAN, GLE1_HUMAN, IF5_HUMAN, EIF3A_HUMAN, NCBP1_HUMAN, IF4H_HUMAN 1396 36 16792 2.338904807386183 1.0 0.7513193717373634 76.1883631721764 -GOTERM_BP_DIRECT GO:0042059~negative regulation of epidermal growth factor receptor signaling pathway 7 0.4758667573079538 0.07396965306830355 ARHG7_HUMAN, EPN1_HUMAN, TS101_HUMAN, SH3G2_HUMAN, CDC42_HUMAN, B0LPF3_HUMAN, EGFR_HUMAN 1396 36 16792 2.338904807386183 1.0 0.7513193717373634 76.1883631721764 -GOTERM_BP_DIRECT GO:0050714~positive regulation of protein secretion 7 0.4758667573079538 0.07396965306830355 MY18A_HUMAN, TGFB2_HUMAN, AT132_HUMAN, KCNN4_HUMAN, DNM1L_HUMAN, TGFB1_HUMAN, GOLP3_HUMAN 1396 36 16792 2.338904807386183 1.0 0.7513193717373634 76.1883631721764 -GOTERM_BP_DIRECT GO:0006352~DNA-templated transcription, initiation 7 0.4758667573079538 0.07396965306830355 TF2B_HUMAN, TBP_HUMAN, RSF1_HUMAN, TBPL2_HUMAN, TAF4_HUMAN, SMCA5_HUMAN, MYC_HUMAN 1396 36 16792 2.338904807386183 1.0 0.7513193717373634 76.1883631721764 -GOTERM_BP_DIRECT GO:0030838~positive regulation of actin filament polymerization 8 0.5438477226376615 0.07606667364451164 CCL11_HUMAN, EVL_HUMAN, ARF6_HUMAN, MTOR_HUMAN, LST8_HUMAN, NCK1_HUMAN, BAG4_HUMAN, B0LPF3_HUMAN 1396 45 16792 2.138427252467367 1.0 0.7598433158019446 77.17535878193607 -GOTERM_BP_DIRECT GO:0006511~ubiquitin-dependent protein catabolic process 22 1.495581237253569 0.07781697658212976 CHIP_HUMAN, UBP1_HUMAN, PSD11_HUMAN, UBR5_HUMAN, BRE1A_HUMAN, UBP36_HUMAN, UB2D1_HUMAN, CUL4A_HUMAN, RN168_HUMAN, ITCH_HUMAN, CUL5_HUMAN, SKP1_HUMAN, UBP31_HUMAN, BAG6_HUMAN, UBP49_HUMAN, PSMD4_HUMAN, A8K6K1_HUMAN, ADRM1_HUMAN, UBP24_HUMAN, RNF12_HUMAN, UBP3_HUMAN, UB2D2_HUMAN 1396 182 16792 1.4540130356749268 1.0 0.7664557346232637 77.96939205225819 -GOTERM_BP_DIRECT GO:2000145~regulation of cell motility 6 0.4078857919782461 0.07789036118548695 ROCK2_HUMAN, RAF1_HUMAN, ROCK1_HUMAN, ABL2_HUMAN, ABL1_HUMAN, EGFR_HUMAN 1396 28 16792 2.5775685632419156 1.0 0.7653337326507053 78.00210543549106 -GOTERM_BP_DIRECT GO:0019886~antigen processing and presentation of exogenous peptide antigen via MHC class II 13 0.8837525492861998 0.07825140989723531 KIF2A_HUMAN, KLC1_HUMAN, DCTN4_HUMAN, KIF4A_HUMAN, DCTN3_HUMAN, FCERG_HUMAN, SC23A_HUMAN, KIF3B_HUMAN, KIF22_HUMAN, SH3G2_HUMAN, ACTY_HUMAN, ACTZ_HUMAN, DCTN6_HUMAN 1396 92 16792 1.6997010090943068 1.0 0.7655219577465514 78.16238528066528 -GOTERM_BP_DIRECT GO:0032753~positive regulation of interleukin-4 production 5 0.3399048266485384 0.0787823816628916 HLAE_HUMAN, CD3E_HUMAN, KPCZ_HUMAN, GATA3_HUMAN, SASH3_HUMAN 1396 20 16792 3.007163323782235 1.0 0.766473741599153 78.39609212437753 -GOTERM_BP_DIRECT GO:1902895~positive regulation of pri-miRNA transcription from RNA polymerase II promoter 5 0.3399048266485384 0.0787823816628916 SMAD1_HUMAN, SPI1_HUMAN, Q9HBD4_HUMAN, TGFB1_HUMAN, STAT3_HUMAN 1396 20 16792 3.007163323782235 1.0 0.766473741599153 78.39609212437753 -GOTERM_BP_DIRECT GO:0006364~rRNA processing 25 1.699524133242692 0.08110538407251053 SUV91_HUMAN, DDX52_HUMAN, TEX10_HUMAN, RL28_HUMAN, RRP1B_HUMAN, RS3_HUMAN, NOLC1_HUMAN, MDN1_HUMAN, RL35_HUMAN, WDR75_HUMAN, SENP3_HUMAN, RS10_HUMAN, RRP1_HUMAN, RL34_HUMAN, RRP15_HUMAN, WBP11_HUMAN, NOL8_HUMAN, CCD86_HUMAN, EXOS4_HUMAN, NOP56_HUMAN, RS6_HUMAN, RRP7A_HUMAN, RLA2_HUMAN, KC1E_HUMAN, DDX21_HUMAN 1396 214 16792 1.4052165064402966 1.0 0.7752770247155634 79.39100907999398 -GOTERM_BP_DIRECT GO:0070534~protein K63-linked ubiquitination 7 0.4758667573079538 0.08238251503082518 UBE2T_HUMAN, CHIP_HUMAN, UB2E3_HUMAN, TRAF2_HUMAN, RN168_HUMAN, ITCH_HUMAN, UBE2O_HUMAN 1396 37 16792 2.2756911639433133 1.0 0.7793237986796752 79.9193541089495 -GOTERM_BP_DIRECT GO:0007162~negative regulation of cell adhesion 7 0.4758667573079538 0.08238251503082518 PDE3B_HUMAN, LEUK_HUMAN, FBLN1_HUMAN, RND1_HUMAN, PLXB2_HUMAN, SEM4D_HUMAN, PLXB1_HUMAN 1396 37 16792 2.2756911639433133 1.0 0.7793237986796752 79.9193541089495 -GOTERM_BP_DIRECT GO:1902017~regulation of cilium assembly 7 0.4758667573079538 0.08238251503082518 IFT20_HUMAN, TBC15_HUMAN, TBD2B_HUMAN, TBC13_HUMAN, TB22B_HUMAN, TB10A_HUMAN, RBGP1_HUMAN 1396 37 16792 2.2756911639433133 1.0 0.7793237986796752 79.9193541089495 -GOTERM_BP_DIRECT GO:0048813~dendrite morphogenesis 7 0.4758667573079538 0.08238251503082518 MINK1_HUMAN, ABI1_HUMAN, VLDLR_HUMAN, MEF2A_HUMAN, RERE_HUMAN, DTBP1_HUMAN, KDIS_HUMAN 1396 37 16792 2.2756911639433133 1.0 0.7793237986796752 79.9193541089495 -GOTERM_BP_DIRECT GO:1990000~amyloid fibril formation 3 0.20394289598912305 0.08260813400589394 GELS_HUMAN, RIPK3_HUMAN, A4_HUMAN 1396 6 16792 6.01432664756447 1.0 0.7788778984221776 80.01134923362063 -GOTERM_BP_DIRECT GO:0070200~establishment of protein localization to telomere 3 0.20394289598912305 0.08260813400589394 ACD_HUMAN, BRCA2_HUMAN, POTE1_HUMAN 1396 6 16792 6.01432664756447 1.0 0.7788778984221776 80.01134923362063 -GOTERM_BP_DIRECT GO:0051353~positive regulation of oxidoreductase activity 3 0.20394289598912305 0.08260813400589394 ABL2_HUMAN, RIPK3_HUMAN, ABL1_HUMAN 1396 6 16792 6.01432664756447 1.0 0.7788778984221776 80.01134923362063 -GOTERM_BP_DIRECT GO:0010216~maintenance of DNA methylation 3 0.20394289598912305 0.08260813400589394 DNMT1_HUMAN, UHRF2_HUMAN, CTCF_HUMAN 1396 6 16792 6.01432664756447 1.0 0.7788778984221776 80.01134923362063 -GOTERM_BP_DIRECT GO:0032680~regulation of tumor necrosis factor production 3 0.20394289598912305 0.08260813400589394 TBC23_HUMAN, TRFL_HUMAN, MAPK2_HUMAN 1396 6 16792 6.01432664756447 1.0 0.7788778984221776 80.01134923362063 -GOTERM_BP_DIRECT GO:0003179~heart valve morphogenesis 3 0.20394289598912305 0.08260813400589394 TGFB2_HUMAN, MTOR_HUMAN, TGFB1_HUMAN 1396 6 16792 6.01432664756447 1.0 0.7788778984221776 80.01134923362063 -GOTERM_BP_DIRECT GO:0031536~positive regulation of exit from mitosis 3 0.20394289598912305 0.08260813400589394 CDCA5_HUMAN, PHB2_HUMAN, TGFB1_HUMAN 1396 6 16792 6.01432664756447 1.0 0.7788778984221776 80.01134923362063 -GOTERM_BP_DIRECT GO:0006999~nuclear pore organization 3 0.20394289598912305 0.08260813400589394 TPR_HUMAN, NU133_HUMAN, NUP98_HUMAN 1396 6 16792 6.01432664756447 1.0 0.7788778984221776 80.01134923362063 -GOTERM_BP_DIRECT GO:0045591~positive regulation of regulatory T cell differentiation 3 0.20394289598912305 0.08260813400589394 IL2_HUMAN, TGFB1_HUMAN, MCP_HUMAN 1396 6 16792 6.01432664756447 1.0 0.7788778984221776 80.01134923362063 -GOTERM_BP_DIRECT GO:0010793~regulation of mRNA export from nucleus 3 0.20394289598912305 0.08260813400589394 SETD2_HUMAN, IWS1_HUMAN, TPR_HUMAN 1396 6 16792 6.01432664756447 1.0 0.7788778984221776 80.01134923362063 -GOTERM_BP_DIRECT GO:0010606~positive regulation of cytoplasmic mRNA processing body assembly 3 0.20394289598912305 0.08260813400589394 CNO6L_HUMAN, CNOT2_HUMAN, PAN3_HUMAN 1396 6 16792 6.01432664756447 1.0 0.7788778984221776 80.01134923362063 -GOTERM_BP_DIRECT GO:0098532~histone H3-K27 trimethylation 3 0.20394289598912305 0.08260813400589394 H14_HUMAN, H13_HUMAN, H12_HUMAN 1396 6 16792 6.01432664756447 1.0 0.7788778984221776 80.01134923362063 -GOTERM_BP_DIRECT GO:2000667~positive regulation of interleukin-13 secretion 3 0.20394289598912305 0.08260813400589394 I17RA_HUMAN, KPCZ_HUMAN, GATA3_HUMAN 1396 6 16792 6.01432664756447 1.0 0.7788778984221776 80.01134923362063 -GOTERM_BP_DIRECT GO:0048194~Golgi vesicle budding 3 0.20394289598912305 0.08260813400589394 KPCI_HUMAN, MY18A_HUMAN, GOLP3_HUMAN 1396 6 16792 6.01432664756447 1.0 0.7788778984221776 80.01134923362063 -GOTERM_BP_DIRECT GO:0006266~DNA ligation 3 0.20394289598912305 0.08260813400589394 MGMT_HUMAN, XRCC6_HUMAN, APTX_HUMAN 1396 6 16792 6.01432664756447 1.0 0.7788778984221776 80.01134923362063 -GOTERM_BP_DIRECT GO:1902857~positive regulation of nonmotile primary cilium assembly 3 0.20394289598912305 0.08260813400589394 CP135_HUMAN, SEPT9_HUMAN, CENPJ_HUMAN 1396 6 16792 6.01432664756447 1.0 0.7788778984221776 80.01134923362063 -GOTERM_BP_DIRECT GO:1901621~negative regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning 3 0.20394289598912305 0.08260813400589394 SUFU_HUMAN, KAPCA_HUMAN, KAPCB_HUMAN 1396 6 16792 6.01432664756447 1.0 0.7788778984221776 80.01134923362063 -GOTERM_BP_DIRECT GO:2000323~negative regulation of glucocorticoid receptor signaling pathway 3 0.20394289598912305 0.08260813400589394 A2I2P0_HUMAN, A8K401_HUMAN, PER1_HUMAN 1396 6 16792 6.01432664756447 1.0 0.7788778984221776 80.01134923362063 -GOTERM_BP_DIRECT GO:0045046~protein import into peroxisome membrane 3 0.20394289598912305 0.08260813400589394 PEX3_HUMAN, PEX19_HUMAN, PEX26_HUMAN 1396 6 16792 6.01432664756447 1.0 0.7788778984221776 80.01134923362063 -GOTERM_BP_DIRECT GO:0000186~activation of MAPKK activity 8 0.5438477226376615 0.08360954480979799 RPGF1_HUMAN, PLCG1_HUMAN, M3K2_HUMAN, RAF1_HUMAN, PSN1_HUMAN, KDIS_HUMAN, CRKL_HUMAN, EGFR_HUMAN 1396 46 16792 2.0919397035006853 1.0 0.7816789007203162 80.41487703522205 -GOTERM_BP_DIRECT GO:0010595~positive regulation of endothelial cell migration 8 0.5438477226376615 0.08360954480979799 ROCK2_HUMAN, PDCD6_HUMAN, TSP1_HUMAN, KPCA_HUMAN, KPCD2_HUMAN, GATA3_HUMAN, RHOB_HUMAN, ETS1_HUMAN 1396 46 16792 2.0919397035006853 1.0 0.7816789007203162 80.41487703522205 -GOTERM_BP_DIRECT GO:0030335~positive regulation of cell migration 22 1.495581237253569 0.08500578762741089 TSP1_HUMAN, ELP3_HUMAN, SEM4A_HUMAN, F110C_HUMAN, TRI32_HUMAN, APC_HUMAN, ELP1_HUMAN, EGFR_HUMAN, MYOC_HUMAN, SEM4D_HUMAN, CCL11_HUMAN, NUMB_HUMAN, B4DHN5_HUMAN, TP4A1_HUMAN, STX4_HUMAN, KPCA_HUMAN, CREB3_HUMAN, AKT2_HUMAN, RRAS2_HUMAN, JIP4_HUMAN, D3DPA4_HUMAN, TGFB1_HUMAN 1396 184 16792 1.4382085461567211 1.0 0.786034293223144 80.96465355212379 -GOTERM_BP_DIRECT GO:0051092~positive regulation of NF-kappaB transcription factor activity 17 1.1556764106050306 0.0851235782583784 NPM_HUMAN, DDRGK_HUMAN, KPCI_HUMAN, HOIL1_HUMAN, LRRF1_HUMAN, TRI32_HUMAN, TRAF2_HUMAN, TRFL_HUMAN, NFKB1_HUMAN, TNR5_HUMAN, RNF31_HUMAN, KPCD2_HUMAN, KPCZ_HUMAN, TRAF5_HUMAN, TGFB1_HUMAN, RIPK3_HUMAN, RNF25_HUMAN 1396 133 16792 1.5374970377232478 1.0 0.7851452792174747 81.01035981737166 -GOTERM_BP_DIRECT GO:0034453~microtubule anchoring 4 0.27192386131883073 0.08729396431800843 PCM1_HUMAN, CLAP2_HUMAN, CLAP1_HUMAN, CE350_HUMAN 1396 13 16792 3.7011240908089045 1.0 0.7924432668112822 81.83417213910027 -GOTERM_BP_DIRECT GO:0001817~regulation of cytokine production 4 0.27192386131883073 0.08729396431800843 A6NHG8_HUMAN, Q6FIB4_HUMAN, ELF1_HUMAN, TRFL_HUMAN 1396 13 16792 3.7011240908089045 1.0 0.7924432668112822 81.83417213910027 -GOTERM_BP_DIRECT GO:0010821~regulation of mitochondrion organization 4 0.27192386131883073 0.08729396431800843 AT132_HUMAN, MFF_HUMAN, DNM1L_HUMAN, GOLP3_HUMAN 1396 13 16792 3.7011240908089045 1.0 0.7924432668112822 81.83417213910027 -GOTERM_BP_DIRECT GO:2000273~positive regulation of receptor activity 4 0.27192386131883073 0.08729396431800843 BAZ1B_HUMAN, SRA1_HUMAN, NCOA2_HUMAN, MED1_HUMAN 1396 13 16792 3.7011240908089045 1.0 0.7924432668112822 81.83417213910027 -GOTERM_BP_DIRECT GO:0051492~regulation of stress fiber assembly 4 0.27192386131883073 0.08729396431800843 ROCK2_HUMAN, ROCK1_HUMAN, ASAP3_HUMAN, MYOC_HUMAN 1396 13 16792 3.7011240908089045 1.0 0.7924432668112822 81.83417213910027 -GOTERM_BP_DIRECT GO:0007163~establishment or maintenance of cell polarity 6 0.4078857919782461 0.08798735574801678 SPIT2_HUMAN, LEUK_HUMAN, CLAP2_HUMAN, CAP1_HUMAN, CLAP1_HUMAN, CDC42_HUMAN 1396 29 16792 2.4886868886473668 1.0 0.7938055224381889 82.09015227788596 -GOTERM_BP_DIRECT GO:0006921~cellular component disassembly involved in execution phase of apoptosis 5 0.3399048266485384 0.0912043708324468 ACINU_HUMAN, ROCK1_HUMAN, DNM1L_HUMAN, APC_HUMAN, BMX_HUMAN 1396 21 16792 2.863965070268795 1.0 0.8046225472112312 83.23376338537037 -GOTERM_BP_DIRECT GO:0005980~glycogen catabolic process 5 0.3399048266485384 0.0912043708324468 PGM2_HUMAN, B4DJ51_HUMAN, GLYG_HUMAN, LYAG_HUMAN, KPBB_HUMAN 1396 21 16792 2.863965070268795 1.0 0.8046225472112312 83.23376338537037 -GOTERM_BP_DIRECT GO:0035307~positive regulation of protein dephosphorylation 5 0.3399048266485384 0.0912043708324468 B4DJ51_HUMAN, PP16B_HUMAN, 2A5A_HUMAN, TGFB1_HUMAN, SYMPK_HUMAN 1396 21 16792 2.863965070268795 1.0 0.8046225472112312 83.23376338537037 -GOTERM_BP_DIRECT GO:0038128~ERBB2 signaling pathway 7 0.4758667573079538 0.09130348147203499 B0LPE5_HUMAN, CHIP_HUMAN, PK3CA_HUMAN, AKT1_HUMAN, CUL5_HUMAN, ERBIN_HUMAN, B0LPF3_HUMAN, EGFR_HUMAN 1396 38 16792 2.2158045543658575 1.0 0.8036858239596243 83.26787385359181 -GOTERM_BP_DIRECT GO:2001237~negative regulation of extrinsic apoptotic signaling pathway 7 0.4758667573079538 0.09130348147203499 KS6B1_HUMAN, PHIP_HUMAN, TSP1_HUMAN, RBCC1_HUMAN, HD_HUMAN, D3DPA4_HUMAN, LMNA_HUMAN 1396 38 16792 2.2158045543658575 1.0 0.8036858239596243 83.26787385359181 -GOTERM_BP_DIRECT GO:0016055~Wnt signaling pathway 22 1.495581237253569 0.09658693131190671 NKD2_HUMAN, RBX1_HUMAN, AES_HUMAN, AXIN1_HUMAN, DDB1_HUMAN, ZRAN1_HUMAN, CSK21_HUMAN, AAPK2_HUMAN, APC_HUMAN, MARK2_HUMAN, WWOX_HUMAN, CCAR2_HUMAN, SKP1_HUMAN, LDB1_HUMAN, TNKS2_HUMAN, SENP2_HUMAN, KC1E_HUMAN, KC1A_HUMAN, DDX3X_HUMAN, LEO1_HUMAN, TNKS1_HUMAN, DVL3_HUMAN 1396 187 16792 1.4151356817798753 1.0 0.8209699917689554 84.99411616616008 -GOTERM_BP_DIRECT GO:0042493~response to drug 33 2.2433718558803535 0.09803412983553403 KS6B1_HUMAN, ABEC1_HUMAN, MGMT_HUMAN, APOA1_HUMAN, GATA3_HUMAN, TOP1_HUMAN, CH60_HUMAN, CENPF_HUMAN, BAD_HUMAN, IBP2_HUMAN, CDK1_HUMAN, NFAC2_HUMAN, LCK_HUMAN, LEG1_HUMAN, P73_HUMAN, DVL3_HUMAN, ATR_HUMAN, MYC_HUMAN, STAT3_HUMAN, JUNB_HUMAN, TSP1_HUMAN, TGFB2_HUMAN, D2JYI1_HUMAN, EAA2_HUMAN, CBPB2_HUMAN, ABL1_HUMAN, XRCC1_HUMAN, TGFA_HUMAN, CREB1_HUMAN, CDK9_HUMAN, PMS2_HUMAN, TGFB1_HUMAN, H6UYS5_HUMAN 1396 304 16792 1.3057419695370232 1.0 0.8245334318116071 85.43668765332775 -GOTERM_BP_DIRECT GO:0060325~face morphogenesis 6 0.4078857919782461 0.09872865939450554 NIPBL_HUMAN, TGFB2_HUMAN, PKHA1_HUMAN, DLX5_HUMAN, TGFB1_HUMAN, MMP2_HUMAN 1396 30 16792 2.405730659025788 1.0 0.8255746154663125 85.64466921374108 -GOTERM_BP_DIRECT GO:2000379~positive regulation of reactive oxygen species metabolic process 6 0.4078857919782461 0.09872865939450554 TSP1_HUMAN, D2JYI1_HUMAN, P53_HUMAN, RIPK3_HUMAN, MK14_HUMAN, B0LPF3_HUMAN 1396 30 16792 2.405730659025788 1.0 0.8255746154663125 85.64466921374108 -GOTERM_BP_DIRECT GO:0007052~mitotic spindle organization 6 0.4078857919782461 0.09872865939450554 KIF2A_HUMAN, KIF3B_HUMAN, CLAP2_HUMAN, STMN1_HUMAN, CLAP1_HUMAN, TNKS1_HUMAN 1396 30 16792 2.405730659025788 1.0 0.8255746154663125 85.64466921374108 -GOTERM_BP_DIRECT GO:0048013~ephrin receptor signaling pathway 12 0.8157715839564922 0.09915221946255198 ROCK2_HUMAN, B4DHN5_HUMAN, ARHG7_HUMAN, ACTB_HUMAN, GIT1_HUMAN, SI1L1_HUMAN, ROCK1_HUMAN, ARC1A_HUMAN, VAV2_HUMAN, MMP2_HUMAN, NCK1_HUMAN, CDC42_HUMAN 1396 86 16792 1.678416738855201 1.0 0.8257280701574133 85.77012381343157 diff --git a/hiv-benchmarking/hiv_raw_data/david60Min.txt b/hiv-benchmarking/hiv_raw_data/david60Min.txt deleted file mode 100644 index 4d83e53..0000000 --- a/hiv-benchmarking/hiv_raw_data/david60Min.txt +++ /dev/null @@ -1,435 +0,0 @@ -Category Term Count % PValue Genes List Total Pop Hits Pop Total Fold Enrichment Bonferroni Benjamini FDR -GOTERM_BP_DIRECT GO:0051301~cell division 97 5.794504181600956 6.116996739778914E-23 KIF11_HUMAN, NUMA1_HUMAN, NIPA_HUMAN, SKA1_HUMAN, BOREA_HUMAN, PDS5B_HUMAN, CDA7L_HUMAN, CND2_HUMAN, CDK2_HUMAN, CDC20_HUMAN, CND3_HUMAN, TPX2_HUMAN, CENPF_HUMAN, WEE1_HUMAN, SNUT2_HUMAN, UB2R1_HUMAN, CTDP1_HUMAN, MS18A_HUMAN, RECQ5_HUMAN, SGO2_HUMAN, CYTSA_HUMAN, BUB1B_HUMAN, TXN4A_HUMAN, MPIP2_HUMAN, CCNT1_HUMAN, CDC6_HUMAN, KTNB1_HUMAN, MAP4_HUMAN, MD2L1_HUMAN, SMC3_HUMAN, CCNK_HUMAN, SMC4_HUMAN, PTTG1_HUMAN, SPICE_HUMAN, MS18B_HUMAN, CDC26_HUMAN, DC1L1_HUMAN, TACC3_HUMAN, MARE2_HUMAN, CDC73_HUMAN, DSN1_HUMAN, DNLI1_HUMAN, F1D8N4_HUMAN, J3KNL2_HUMAN, M18BP_HUMAN, NEK2_HUMAN, MPIP1_HUMAN, RB_HUMAN, WAPL_HUMAN, VRK1_HUMAN, CDC42_HUMAN, KIF2A_HUMAN, NUDC_HUMAN, CENPE_HUMAN, HAUS6_HUMAN, CND1_HUMAN, MPLKI_HUMAN, ANCHR_HUMAN, SKA3_HUMAN, SCC4_HUMAN, CDK1_HUMAN, ARP19_HUMAN, PAR6G_HUMAN, CDK6_HUMAN, TBA1B_HUMAN, TTC28_HUMAN, SPAG5_HUMAN, CLAP2_HUMAN, CLCA_HUMAN, RGS14_HUMAN, KMT5A_HUMAN, KTNA1_HUMAN, PDS5A_HUMAN, MCMBP_HUMAN, NEDD1_HUMAN, TPR_HUMAN, KI20B_HUMAN, SEPT9_HUMAN, CCND3_HUMAN, SGO1_HUMAN, STAG2_HUMAN, CLAP1_HUMAN, DNLI3_HUMAN, MARK4_HUMAN, APC1_HUMAN, RAD21_HUMAN, NEK1_HUMAN, KC1A_HUMAN, B2RNT7_HUMAN, KIFC1_HUMAN, ANKL2_HUMAN, SEPT3_HUMAN, PR40A_HUMAN, CENPT_HUMAN, RNF8_HUMAN, NDE1_HUMAN, CCNY_HUMAN 1574 350 16792 2.956660010891269 2.6835264697410095E-19 2.6835264697410095E-19 1.148069976020073E-19 -GOTERM_BP_DIRECT GO:0000398~mRNA splicing, via spliceosome 74 4.4205495818399045 9.265890449136738E-23 SRSF2_HUMAN, NONO_HUMAN, SNUT1_HUMAN, RBM15_HUMAN, SF3B2_HUMAN, DNJC8_HUMAN, SNUT2_HUMAN, REN3B_HUMAN, PININ_HUMAN, HNRPU_HUMAN, E9PAU2_HUMAN, SF3B1_HUMAN, SF3B5_HUMAN, PTBP1_HUMAN, RU17_HUMAN, UBL5_HUMAN, GPKOW_HUMAN, HNRL1_HUMAN, BUD13_HUMAN, RBM5_HUMAN, DDX23_HUMAN, CPSF5_HUMAN, NCBP1_HUMAN, LSM3_HUMAN, PRP4B_HUMAN, TXN4A_HUMAN, SF3A3_HUMAN, TRA2A_HUMAN, T2FA_HUMAN, SUGP1_HUMAN, SRSF9_HUMAN, GEMI7_HUMAN, CPSF7_HUMAN, TRA2B_HUMAN, PAPOA_HUMAN, ROA2_HUMAN, SNW1_HUMAN, SRSF5_HUMAN, HNRH3_HUMAN, MINT_HUMAN, TFP11_HUMAN, SNR27_HUMAN, SRS11_HUMAN, SRRM2_HUMAN, HNRPK_HUMAN, PRP16_HUMAN, B4DY08_HUMAN, HNRPL_HUMAN, PCF11_HUMAN, RALY_HUMAN, SRSF6_HUMAN, CWC22_HUMAN, HTSF1_HUMAN, PRP31_HUMAN, HNRPF_HUMAN, FIP1_HUMAN, PRP6_HUMAN, SRS10_HUMAN, A4D0W0_HUMAN, DX39B_HUMAN, CASC3_HUMAN, RSRC1_HUMAN, CD2B2_HUMAN, RPB11_HUMAN, SRRT_HUMAN, PRPF3_HUMAN, U2AF2_HUMAN, SF3A1_HUMAN, RBMX_HUMAN, RPB1_HUMAN, RBM22_HUMAN, RNPS1_HUMAN, PR40A_HUMAN, PCBP2_HUMAN 1574 222 16792 3.556120288013554 4.064946140036287E-19 2.0324730700181436E-19 1.7390708346412364E-19 -GOTERM_BP_DIRECT GO:0007067~mitotic nuclear division 75 4.480286738351254 2.904006439952366E-20 KIF11_HUMAN, SGT1_HUMAN, NUMA1_HUMAN, CLIP1_HUMAN, SRSF2_HUMAN, NIPA_HUMAN, SKA1_HUMAN, ASPM_HUMAN, CDK2_HUMAN, PLK1_HUMAN, CDC20_HUMAN, TPX2_HUMAN, CENPF_HUMAN, NUP88_HUMAN, WEE1_HUMAN, KIF22_HUMAN, TADA3_HUMAN, TOPK_HUMAN, MS18A_HUMAN, PB1_HUMAN, RECQ5_HUMAN, BUB1B_HUMAN, PMYT1_HUMAN, TXN4A_HUMAN, GEM_HUMAN, MPIP2_HUMAN, CDC6_HUMAN, CCNK_HUMAN, SMC3_HUMAN, PTTG1_HUMAN, CDC26_HUMAN, MS18B_HUMAN, DC1L1_HUMAN, ABL1_HUMAN, MARE2_HUMAN, INCE_HUMAN, F1D8N4_HUMAN, M18BP_HUMAN, NEK2_HUMAN, MPIP1_HUMAN, VRK1_HUMAN, AURKB_HUMAN, NUDC_HUMAN, HAUS6_HUMAN, MPLKI_HUMAN, NOLC1_HUMAN, SKA3_HUMAN, CDK1_HUMAN, ARP19_HUMAN, TTC28_HUMAN, CLCA_HUMAN, KMT5A_HUMAN, RGS14_HUMAN, KTNA1_HUMAN, CTRO_HUMAN, MCMBP_HUMAN, NEDD1_HUMAN, TPR_HUMAN, KI20B_HUMAN, SGO1_HUMAN, STAG2_HUMAN, CEP55_HUMAN, ANLN_HUMAN, MYPT1_HUMAN, MARK4_HUMAN, APC1_HUMAN, RS6_HUMAN, RAD21_HUMAN, NEK1_HUMAN, VCIP1_HUMAN, KC1A_HUMAN, B2RNT7_HUMAN, ANKL2_HUMAN, CENPT_HUMAN, RNF8_HUMAN 1574 248 16792 3.2263188096897157 1.273987625207103E-16 4.246625417357009E-17 5.450391336972906E-17 -GOTERM_BP_DIRECT GO:0006397~mRNA processing 61 3.643966547192354 2.0573173067748765E-19 ABEC1_HUMAN, IWS1_HUMAN, SRSF2_HUMAN, NONO_HUMAN, PR38A_HUMAN, TADBP_HUMAN, AKP8L_HUMAN, SF3B2_HUMAN, RBY1A_HUMAN, SNUT2_HUMAN, WDR33_HUMAN, SFPQ_HUMAN, PTBP1_HUMAN, RU17_HUMAN, RBM25_HUMAN, KHDR1_HUMAN, CPSF5_HUMAN, LSM3_HUMAN, PHRF1_HUMAN, SF3A3_HUMAN, RBM27_HUMAN, KAPCA_HUMAN, ACINU_HUMAN, SPT6H_HUMAN, SRSF9_HUMAN, CCAR2_HUMAN, SCAFB_HUMAN, ROA2_HUMAN, CIR1_HUMAN, SRSF5_HUMAN, DSRAD_HUMAN, ALKB5_HUMAN, SON_HUMAN, CDK12_HUMAN, TFP11_HUMAN, SRS11_HUMAN, RBBP6_HUMAN, CPEB1_HUMAN, SFR19_HUMAN, ZRAB2_HUMAN, HNRPL_HUMAN, PR38B_HUMAN, TR150_HUMAN, AFF2_HUMAN, RB15B_HUMAN, RBM4_HUMAN, PP4R2_HUMAN, SCNM1_HUMAN, CASC3_HUMAN, PTBP3_HUMAN, RN5A_HUMAN, RBM23_HUMAN, PRPF3_HUMAN, ZC3HE_HUMAN, U2AF2_HUMAN, AK17A_HUMAN, SF3A1_HUMAN, AR6P4_HUMAN, RBM39_HUMAN, PAN3_HUMAN, TTF2_HUMAN 1574 179 16792 3.6355866631646947 9.025451024821384E-16 2.256362756205346E-16 3.861280840146535E-16 -GOTERM_BP_DIRECT GO:0016032~viral process 79 4.7192353643966545 1.6485902898635943E-17 ANR17_HUMAN, CENPU_HUMAN, ABI1_HUMAN, RBM15_HUMAN, TNPO1_HUMAN, SF3B2_HUMAN, SATB1_HUMAN, NUP98_HUMAN, FKBP8_HUMAN, NU153_HUMAN, NUP88_HUMAN, FBLN1_HUMAN, PLCG1_HUMAN, CREB3_HUMAN, BRD4_HUMAN, LCK_HUMAN, SNAPN_HUMAN, TF2B_HUMAN, HOIL1_HUMAN, ABCE1_HUMAN, NU107_HUMAN, CCNT1_HUMAN, SPT6H_HUMAN, GBF1_HUMAN, CCD86_HUMAN, UBR4_HUMAN, DC1L1_HUMAN, SP1_HUMAN, TRAM1_HUMAN, RHOA_HUMAN, G45IP_HUMAN, RBP2_HUMAN, CRTC1_HUMAN, MDM2_HUMAN, RB_HUMAN, WAPL_HUMAN, SNW1_HUMAN, CREB1_HUMAN, NU205_HUMAN, TSC2_HUMAN, ZYX_HUMAN, NPM_HUMAN, NFX1_HUMAN, P121A_HUMAN, MINT_HUMAN, KLC1_HUMAN, ERCC3_HUMAN, CUL4A_HUMAN, RACK1_HUMAN, HNRPK_HUMAN, CBX5_HUMAN, BICD1_HUMAN, ATF7_HUMAN, RB15B_HUMAN, M3K5_HUMAN, UBN1_HUMAN, SEPT6_HUMAN, MORC3_HUMAN, TPR_HUMAN, IF4G1_HUMAN, UNG_HUMAN, DC1I2_HUMAN, KCTD5_HUMAN, HCK_HUMAN, SND1_HUMAN, RBL1_HUMAN, PACS1_HUMAN, MCAF1_HUMAN, CRTC3_HUMAN, RAE1L_HUMAN, A7UKX8_HUMAN, NU133_HUMAN, 1433B_HUMAN, CD3Z_HUMAN, IF4H_HUMAN, PO210_HUMAN, DAXX_HUMAN, RANG_HUMAN, MSH6_HUMAN, SP110_HUMAN 1574 299 16792 2.8187307968535524 7.232365601631588E-14 1.4464731203263176E-14 3.0941605743262656E-14 -GOTERM_BP_DIRECT GO:0008380~RNA splicing 54 3.225806451612903 3.825350210438453E-16 IWS1_HUMAN, SRSF2_HUMAN, NONO_HUMAN, PR38A_HUMAN, TADBP_HUMAN, AKP8L_HUMAN, SF3B2_HUMAN, RBY1A_HUMAN, SNUT2_HUMAN, SFPQ_HUMAN, PTBP1_HUMAN, RU17_HUMAN, RBM25_HUMAN, RBM5_HUMAN, DDX23_HUMAN, NCBP1_HUMAN, PRP4B_HUMAN, SF3A3_HUMAN, THOC5_HUMAN, ACINU_HUMAN, SPT6H_HUMAN, RRAGC_HUMAN, CCAR2_HUMAN, SCAFB_HUMAN, CIR1_HUMAN, NS1BP_HUMAN, SON_HUMAN, HNRH3_HUMAN, CDK12_HUMAN, TFP11_HUMAN, ZN638_HUMAN, SRS11_HUMAN, SFR19_HUMAN, B4DY08_HUMAN, ZRAB2_HUMAN, PR38B_HUMAN, TR150_HUMAN, AFF2_HUMAN, RB15B_HUMAN, RBM4_HUMAN, PP4R2_HUMAN, SCNM1_HUMAN, PRP6_HUMAN, DX39B_HUMAN, RSRC1_HUMAN, WBP11_HUMAN, PTBP3_HUMAN, PRPF3_HUMAN, AK17A_HUMAN, AR6P4_HUMAN, RBM39_HUMAN, SRPK2_HUMAN, RNPS1_HUMAN, TTF2_HUMAN 1574 166 16792 3.470430642519251 1.4611645227091685E-12 2.4358293160275934E-13 6.217248937900877E-13 -GOTERM_BP_DIRECT GO:0098609~cell-cell adhesion 69 4.121863799283155 2.1140655020177955E-14 LARP1_HUMAN, NIBL1_HUMAN, ABI1_HUMAN, MILK1_HUMAN, EPN4_HUMAN, SPTB2_HUMAN, GAPD1_HUMAN, ESYT2_HUMAN, LAP2B_HUMAN, PAK4_HUMAN, TAGL2_HUMAN, PLEC_HUMAN, MPRIP_HUMAN, DREB_HUMAN, KLC2_HUMAN, KTN1_HUMAN, ABCF3_HUMAN, SNX2_HUMAN, STAT1_HUMAN, LRRF1_HUMAN, DBNL_HUMAN, KC1D_HUMAN, EVPL_HUMAN, TB10A_HUMAN, RL14_HUMAN, RTN4_HUMAN, RAB1A_HUMAN, PTN1_HUMAN, RL1D1_HUMAN, 1433S_HUMAN, LAP2A_HUMAN, PAIRB_HUMAN, SPTN1_HUMAN, NUDC_HUMAN, PRDX6_HUMAN, TB182_HUMAN, SLK_HUMAN, RACK1_HUMAN, HNRPK_HUMAN, MARK2_HUMAN, GOGA3_HUMAN, LASP1_HUMAN, PLIN3_HUMAN, ZC3HF_HUMAN, DDX6_HUMAN, DDX3X_HUMAN, RL34_HUMAN, FAS_HUMAN, ARFP1_HUMAN, SEPT9_HUMAN, IF4G1_HUMAN, PI4KA_HUMAN, H1X_HUMAN, ZCCHV_HUMAN, ANLN_HUMAN, ADDA_HUMAN, SND1_HUMAN, ATX2L_HUMAN, CRKL_HUMAN, B4DHN5_HUMAN, LIMA1_HUMAN, 1433B_HUMAN, EMD_HUMAN, NDRG1_HUMAN, VAPA_HUMAN, LIPB1_HUMAN, IF4H_HUMAN, FLNB_HUMAN, RANG_HUMAN, B0YJ88_HUMAN 1574 271 16792 2.7162985225786183 9.254041977158067E-11 1.3220091688026514E-11 3.959055305813308E-11 -GOTERM_BP_DIRECT GO:0007062~sister chromatid cohesion 37 2.2102747909199523 9.221252200474458E-13 KIF2A_HUMAN, NUDC_HUMAN, CENPU_HUMAN, CENPE_HUMAN, CLIP1_HUMAN, BOREA_HUMAN, SKA1_HUMAN, PDS5B_HUMAN, PLK1_HUMAN, CDC20_HUMAN, NUP98_HUMAN, CENPF_HUMAN, KIF22_HUMAN, CLAP2_HUMAN, SGO2_HUMAN, BUB1B_HUMAN, PDS5A_HUMAN, MCMBP_HUMAN, NU107_HUMAN, PHB2_HUMAN, SGO1_HUMAN, STAG2_HUMAN, CLAP1_HUMAN, MD2L1_HUMAN, SMC3_HUMAN, RAD21_HUMAN, RS27_HUMAN, DSN1_HUMAN, INCE_HUMAN, RBP2_HUMAN, NU133_HUMAN, CENPK_HUMAN, WAPL_HUMAN, ESCO1_HUMAN, CENPT_HUMAN, NDE1_HUMAN, AURKB_HUMAN 1574 103 16792 3.8323238055291693 4.0454775085407846E-9 5.056847163231737E-10 1.7307377753184028E-9 -GOTERM_BP_DIRECT GO:0006406~mRNA export from nucleus 35 2.0908004778972518 9.599985968471758E-12 P121A_HUMAN, SRSF2_HUMAN, SMG5_HUMAN, ZC11A_HUMAN, SMG1_HUMAN, AGFG1_HUMAN, SRS11_HUMAN, ENY2_HUMAN, NUP98_HUMAN, NU153_HUMAN, NUP88_HUMAN, PRP16_HUMAN, REN3B_HUMAN, GLE1_HUMAN, SRSF6_HUMAN, BUD13_HUMAN, NCBP1_HUMAN, FIP1_HUMAN, SRS10_HUMAN, DX39B_HUMAN, TPR_HUMAN, THOC5_HUMAN, NU107_HUMAN, CASC3_HUMAN, SRSF9_HUMAN, U2AF2_HUMAN, RAE1L_HUMAN, ROA2_HUMAN, RBP2_HUMAN, NU133_HUMAN, SRSF5_HUMAN, RNPS1_HUMAN, PO210_HUMAN, NU205_HUMAN, ALKB5_HUMAN 1574 100 16792 3.7339263024142313 4.2115144149867945E-8 4.6794605967903635E-9 1.8017753955490434E-8 -GOTERM_BP_DIRECT GO:0006281~DNA repair 58 3.464755077658303 1.1996169583119046E-11 CAF1B_HUMAN, BLM_HUMAN, SLF2_HUMAN, NONO_HUMAN, CLSPN_HUMAN, PDS5B_HUMAN, CDK2_HUMAN, ASF1A_HUMAN, JMY_HUMAN, FOXM1_HUMAN, INT3_HUMAN, KIF22_HUMAN, PARP2_HUMAN, DMAP1_HUMAN, RECQ5_HUMAN, ERCC5_HUMAN, RAD54_HUMAN, EME1_HUMAN, RBM14_HUMAN, SP16H_HUMAN, SMC3_HUMAN, KC1D_HUMAN, UCHL5_HUMAN, PTTG1_HUMAN, ATM_HUMAN, DNLI1_HUMAN, MTOR_HUMAN, CDK9_HUMAN, UBP45_HUMAN, NPM_HUMAN, SMG1_HUMAN, UBR5_HUMAN, ERCC3_HUMAN, R51A1_HUMAN, CHD1L_HUMAN, RECQ4_HUMAN, TAOK3_HUMAN, CDK1_HUMAN, NFRKB_HUMAN, SSRP1_HUMAN, MEN1_HUMAN, DPOE1_HUMAN, PDS5A_HUMAN, UNG_HUMAN, IN80E_HUMAN, TOPB1_HUMAN, DNLI3_HUMAN, TICRR_HUMAN, SMBP2_HUMAN, BD1L1_HUMAN, UVRAG_HUMAN, RAD18_HUMAN, TRIPC_HUMAN, XPC_HUMAN, MSH6_HUMAN, CHK1_HUMAN, CAF1A_HUMAN, MCRS1_HUMAN 1574 235 16792 2.6330422558057798 5.2627248336989396E-8 5.262724922516782E-9 2.251506758810251E-8 -GOTERM_BP_DIRECT GO:0016569~covalent chromatin modification 37 2.2102747909199523 2.0533758810074327E-11 BRD3_HUMAN, LMBL3_HUMAN, CHD8_HUMAN, RSF1_HUMAN, BAP18_HUMAN, ASF1A_HUMAN, BPTF_HUMAN, SAS10_HUMAN, JARD2_HUMAN, BRD4_HUMAN, PB1_HUMAN, SMBT1_HUMAN, CHD2_HUMAN, CTCF_HUMAN, SMRC1_HUMAN, VPS72_HUMAN, UBN1_HUMAN, CBX3_HUMAN, ARID2_HUMAN, DNMT1_HUMAN, BCORL_HUMAN, BANP_HUMAN, CBX4_HUMAN, TLK2_HUMAN, RBL1_HUMAN, CHD1_HUMAN, DAPK3_HUMAN, BAG6_HUMAN, BRD9_HUMAN, F1D8N4_HUMAN, SMRC2_HUMAN, IKZF1_HUMAN, SMCA5_HUMAN, Q9HBD4_HUMAN, CHD9_HUMAN, RB_HUMAN, DAXX_HUMAN 1574 113 16792 3.4931801059248184 9.008176282687685E-8 8.189251499146621E-9 3.853890540028715E-8 -GOTERM_BP_DIRECT GO:0006260~DNA replication 44 2.6284348864994027 4.050049966261179E-11 NP1L1_HUMAN, CAF1B_HUMAN, BLM_HUMAN, CLSPN_HUMAN, CDK2_HUMAN, NASP_HUMAN, MCM10_HUMAN, RBBP6_HUMAN, NUP98_HUMAN, RECQ4_HUMAN, MCM3_HUMAN, MCM4_HUMAN, CDK1_HUMAN, SSRP1_HUMAN, WRIP1_HUMAN, NFIX_HUMAN, DPOE1_HUMAN, RECQ5_HUMAN, PTMS_HUMAN, DPOA2_HUMAN, GRDN_HUMAN, CDC6_HUMAN, IN80E_HUMAN, TOPB1_HUMAN, RBM14_HUMAN, ORC3_HUMAN, DNLI3_HUMAN, SP16H_HUMAN, TICRR_HUMAN, NOL8_HUMAN, SMBP2_HUMAN, DUT_HUMAN, ORC1_HUMAN, DTL_HUMAN, ATM_HUMAN, RFC1_HUMAN, DNLI1_HUMAN, GANP_HUMAN, MPIP1_HUMAN, CDT1_HUMAN, RMI1_HUMAN, DTD1_HUMAN, CHK1_HUMAN, CAF1A_HUMAN 1574 155 16792 3.0284379226954132 1.7767564197690433E-7 1.4806304737824405E-8 7.601343998686616E-8 -GOTERM_BP_DIRECT GO:0016925~protein sumoylation 37 2.2102747909199523 6.301310861932699E-11 P121A_HUMAN, BLM_HUMAN, ZN451_HUMAN, TOP2A_HUMAN, BOREA_HUMAN, SENP1_HUMAN, RN168_HUMAN, HNRPK_HUMAN, NUP98_HUMAN, BC11A_HUMAN, NU153_HUMAN, NUP88_HUMAN, RING1_HUMAN, B4DY08_HUMAN, PML_HUMAN, CBX8_HUMAN, TPR_HUMAN, TOP2B_HUMAN, NU107_HUMAN, SUMO2_HUMAN, MITF_HUMAN, NF2IP_HUMAN, CBX4_HUMAN, STAG2_HUMAN, SMC3_HUMAN, HERC2_HUMAN, RAD21_HUMAN, RAE1L_HUMAN, INCE_HUMAN, SENP2_HUMAN, A7UKX8_HUMAN, RBP2_HUMAN, NU133_HUMAN, MDM2_HUMAN, XPC_HUMAN, PO210_HUMAN, NU205_HUMAN, AURKB_HUMAN 1574 117 16792 3.3737551450384995 2.7643865196935735E-7 2.126451437156618E-8 1.1826637447143185E-7 -GOTERM_BP_DIRECT GO:0006468~protein phosphorylation 88 5.256869772998805 7.878763871130044E-11 ULK1_HUMAN, ZAP70_HUMAN, KS6B1_HUMAN, PASK_HUMAN, AKP13_HUMAN, PLK1_HUMAN, PRPK_HUMAN, CLK3_HUMAN, KPCA_HUMAN, E2AK2_HUMAN, AKT1_HUMAN, TOPK_HUMAN, HASP_HUMAN, KPBB_HUMAN, LCK_HUMAN, BUB1B_HUMAN, PMYT1_HUMAN, PRP4B_HUMAN, TYK2_HUMAN, KAPCA_HUMAN, KPCL_HUMAN, MPIP2_HUMAN, TGFB2_HUMAN, DYRK2_HUMAN, CCNT1_HUMAN, TLK2_HUMAN, CCNK_HUMAN, KC1D_HUMAN, WNK1_HUMAN, ATM_HUMAN, KAPCB_HUMAN, SMAD9_HUMAN, WNK2_HUMAN, STK10_HUMAN, AAK1_HUMAN, MTOR_HUMAN, NEK2_HUMAN, SGK3_HUMAN, CDK9_HUMAN, BMP2K_HUMAN, CREB1_HUMAN, PKN1_HUMAN, VRK1_HUMAN, MAPK2_HUMAN, PP2BB_HUMAN, AURKB_HUMAN, CDK16_HUMAN, HIPK1_HUMAN, DYR1A_HUMAN, ARBK2_HUMAN, ERCC3_HUMAN, PK3C3_HUMAN, MARK2_HUMAN, L7RRS6_HUMAN, TAOK3_HUMAN, GSK3A_HUMAN, CDK6_HUMAN, CDK17_HUMAN, CTRO_HUMAN, STK39_HUMAN, M3K5_HUMAN, MORC3_HUMAN, TRIO_HUMAN, KCC4_HUMAN, HSF1_HUMAN, KPCD_HUMAN, MAML1_HUMAN, RSRC1_HUMAN, RN5A_HUMAN, CSK21_HUMAN, ROCK1_HUMAN, HCK_HUMAN, MARK4_HUMAN, TF2H2_HUMAN, AAKB2_HUMAN, DAPK3_HUMAN, NEK1_HUMAN, KPB2_HUMAN, PAN3_HUMAN, KC1A_HUMAN, M3K2_HUMAN, NEK11_HUMAN, SRPK2_HUMAN, PI3R4_HUMAN, BCR_HUMAN, TGFB1_HUMAN, ADA10_HUMAN, KAPCG_HUMAN 1574 456 16792 2.0588064825341625 3.456413304459005E-7 2.4688670441364025E-8 1.4787276958472262E-7 -GOTERM_BP_DIRECT GO:0000122~negative regulation of transcription from RNA polymerase II promoter 118 7.048984468339308 1.643436313012025E-9 NIPBL_HUMAN, I2BPL_HUMAN, PLK1_HUMAN, SATB1_HUMAN, E2F7_HUMAN, NOC2L_HUMAN, H14_HUMAN, JARD2_HUMAN, DDX20_HUMAN, DNMT1_HUMAN, NCOA2_HUMAN, ZEB1_HUMAN, PURB_HUMAN, TNFL6_HUMAN, ZGPAT_HUMAN, ROA2_HUMAN, A2ABF8_HUMAN, MDM2_HUMAN, BCL6_HUMAN, ETV3_HUMAN, SNW1_HUMAN, YBOX3_HUMAN, AURKB_HUMAN, RMP_HUMAN, MINT_HUMAN, MED1_HUMAN, NFKB1_HUMAN, BC11A_HUMAN, F1D8N3_HUMAN, SMAD7_HUMAN, NOTC1_HUMAN, HCLS1_HUMAN, MEN1_HUMAN, NFIX_HUMAN, PAX5_HUMAN, VPS72_HUMAN, VINEX_HUMAN, WWP2_HUMAN, TPR_HUMAN, HSF1_HUMAN, MEF2A_HUMAN, MITF_HUMAN, CBX4_HUMAN, GCFC2_HUMAN, GATA6_HUMAN, RBL1_HUMAN, MCAF1_HUMAN, RCOR3_HUMAN, A7UKX8_HUMAN, HDAC2_HUMAN, HOMEZ_HUMAN, SMRC2_HUMAN, PAF1_HUMAN, HXB4_HUMAN, MDM4_HUMAN, SIN3B_HUMAN, ATX1L_HUMAN, B2RDW1_HUMAN, RHG35_HUMAN, PSN1_HUMAN, P66A_HUMAN, MYB_HUMAN, SEM4D_HUMAN, FOXM1_HUMAN, SFPQ_HUMAN, H12_HUMAN, IRF8_HUMAN, DMAP1_HUMAN, ERF_HUMAN, CTCF_HUMAN, CBX8_HUMAN, EHMT1_HUMAN, CNOT2_HUMAN, STAT1_HUMAN, LYRIC_HUMAN, RFC1_HUMAN, CDC73_HUMAN, NSD2_HUMAN, P66B_HUMAN, Q9HBD4_HUMAN, RB_HUMAN, DNM3B_HUMAN, Q7LCB3_HUMAN, SUFU_HUMAN, NFX1_HUMAN, COT2_HUMAN, TCAL1_HUMAN, AES_HUMAN, CHD8_HUMAN, RERE_HUMAN, P63_HUMAN, UB2D1_HUMAN, BPTF_HUMAN, KLF4_HUMAN, ZN217_HUMAN, ATF7_HUMAN, A8K401_HUMAN, KMT5A_HUMAN, NFAC2_HUMAN, ARI5B_HUMAN, KLF12_HUMAN, CIC_HUMAN, ATN1_HUMAN, TLE4_HUMAN, H13_HUMAN, Z280C_HUMAN, CTR9_HUMAN, RREB1_HUMAN, KLF10_HUMAN, BCOR_HUMAN, PTN2_HUMAN, H15_HUMAN, IF16_HUMAN, COT1_HUMAN, SP130_HUMAN, H32_HUMAN, IKZF1_HUMAN, E2F8_HUMAN, MEPCE_HUMAN, TGFB1_HUMAN 1574 720 16792 1.7484258082733308 7.20972895829064E-6 4.806502144072411E-7 3.084487210092135E-6 -GOTERM_BP_DIRECT GO:0000086~G2/M transition of mitotic cell cycle 38 2.2700119474313025 2.078360728301651E-9 HAUS6_HUMAN, TBB4A_HUMAN, B2RDW1_HUMAN, RAB8A_HUMAN, CDK2_HUMAN, PLK1_HUMAN, TPX2_HUMAN, FOXM1_HUMAN, WEE1_HUMAN, PCM1_HUMAN, CDK1_HUMAN, ARP19_HUMAN, PCNT_HUMAN, KHDR1_HUMAN, CEP72_HUMAN, CTRO_HUMAN, KAP3_HUMAN, NEDD1_HUMAN, NINL_HUMAN, CP250_HUMAN, PMYT1_HUMAN, KAPCA_HUMAN, MPIP2_HUMAN, DC1I2_HUMAN, 1433G_HUMAN, CLAP1_HUMAN, MYPT1_HUMAN, KC1D_HUMAN, MARK4_HUMAN, FR1OP_HUMAN, NEK2_HUMAN, MPIP1_HUMAN, CP131_HUMAN, OPTN_HUMAN, CHK1_HUMAN, CE152_HUMAN, CCNY_HUMAN, NDE1_HUMAN 1574 137 16792 2.959107392945585 9.117726858964836E-6 5.698603642301237E-7 3.9007761243325945E-6 -GOTERM_BP_DIRECT GO:0006351~transcription, DNA-templated 259 15.471923536439666 2.082289134377142E-9 UBP22_HUMAN, CENPU_HUMAN, NONO_HUMAN, ADNP_HUMAN, ZN644_HUMAN, SP2_HUMAN, MTG16_HUMAN, RING1_HUMAN, PININ_HUMAN, JARD2_HUMAN, TADA3_HUMAN, HNRL1_HUMAN, CREB3_HUMAN, KHDR1_HUMAN, SMBT1_HUMAN, CBX3_HUMAN, BAZ1A_HUMAN, ZEB1_HUMAN, NCOA3_HUMAN, TCAL4_HUMAN, ZBT21_HUMAN, SMAD9_HUMAN, ZGPAT_HUMAN, FRYL_HUMAN, ZBT40_HUMAN, PHF2_HUMAN, MYCB2_HUMAN, EDRF1_HUMAN, C8AP2_HUMAN, YBOX3_HUMAN, TASOR_HUMAN, RMP_HUMAN, MEF2D_HUMAN, ZN638_HUMAN, HIPK1_HUMAN, KDM2A_HUMAN, TRFL_HUMAN, F1D8N3_HUMAN, COMD1_HUMAN, SMAD7_HUMAN, GON4L_HUMAN, MEN1_HUMAN, NFIX_HUMAN, RB15B_HUMAN, ZN454_HUMAN, PAX5_HUMAN, MAFIP_HUMAN, KDM3B_HUMAN, VPS72_HUMAN, MEF2A_HUMAN, NSD3_HUMAN, SMBP2_HUMAN, MCAF1_HUMAN, CRTC3_HUMAN, CHD1_HUMAN, CHD3_HUMAN, HDAC2_HUMAN, LCOR_HUMAN, SSBP3_HUMAN, HXB4_HUMAN, DAXX_HUMAN, BCLF1_HUMAN, BRD3_HUMAN, ATX1L_HUMAN, ZKSC8_HUMAN, LIMD1_HUMAN, AKP8L_HUMAN, TE2IP_HUMAN, TFDP2_HUMAN, IRF8_HUMAN, TDIF1_HUMAN, E2AK2_HUMAN, IKZF2_HUMAN, MK14_HUMAN, CBX8_HUMAN, RNF10_HUMAN, ARID2_HUMAN, LRRF1_HUMAN, BCL9L_HUMAN, BRPF1_HUMAN, CCAR2_HUMAN, EDF1_HUMAN, RFC1_HUMAN, BRD9_HUMAN, F1D8N4_HUMAN, A8K3Y2_HUMAN, RGS12_HUMAN, RB_HUMAN, MGAP_HUMAN, Q7LCB3_HUMAN, CHCH2_HUMAN, BAZ1B_HUMAN, AES_HUMAN, PHF20_HUMAN, KANK1_HUMAN, P63_HUMAN, BPTF_HUMAN, B3KTM8_HUMAN, ZN217_HUMAN, ZN384_HUMAN, ATF7_HUMAN, PML_HUMAN, ZN862_HUMAN, ARI5B_HUMAN, SMRC1_HUMAN, TLE4_HUMAN, ATN1_HUMAN, PHB2_HUMAN, TREF1_HUMAN, CTR9_HUMAN, SAFB1_HUMAN, NPAT_HUMAN, BCOR_HUMAN, KLF10_HUMAN, TDIF2_HUMAN, COT1_HUMAN, SP130_HUMAN, DAPK3_HUMAN, LRIF1_HUMAN, RBM39_HUMAN, PSIP1_HUMAN, E2F8_HUMAN, IWS1_HUMAN, LMBL3_HUMAN, ESF1_HUMAN, CDA7L_HUMAN, SFR1_HUMAN, Z512B_HUMAN, T22D4_HUMAN, SATB1_HUMAN, E2F7_HUMAN, ASF1A_HUMAN, NOC2L_HUMAN, HDGR2_HUMAN, BRD4_HUMAN, PHF6_HUMAN, PB1_HUMAN, M3K7_HUMAN, TF3C1_HUMAN, E2F3_HUMAN, NCOA2_HUMAN, DNMT1_HUMAN, SPT6H_HUMAN, ZN335_HUMAN, PURB_HUMAN, TNFL6_HUMAN, I2BP2_HUMAN, ZN165_HUMAN, TAL2_HUMAN, CIR1_HUMAN, YLPM1_HUMAN, CRTC1_HUMAN, LPIN1_HUMAN, WAC_HUMAN, BCL6_HUMAN, CHD9_HUMAN, ETV3_HUMAN, PKN1_HUMAN, MINT_HUMAN, ZN451_HUMAN, ASXL2_HUMAN, MTG8R_HUMAN, BC11A_HUMAN, MPP8_HUMAN, NEMO_HUMAN, LDB1_HUMAN, ZN711_HUMAN, ARNT_HUMAN, RALY_HUMAN, DDX3X_HUMAN, HTSF1_HUMAN, SLTM_HUMAN, PHF8_HUMAN, HES4_HUMAN, COMD6_HUMAN, HSF1_HUMAN, HINT1_HUMAN, CSK21_HUMAN, BANP_HUMAN, CBX4_HUMAN, ATAD2_HUMAN, GCFC2_HUMAN, TF2H2_HUMAN, ZZZ3_HUMAN, PCGF1_HUMAN, ZN317_HUMAN, RBL1_HUMAN, ZBT11_HUMAN, ARI4B_HUMAN, SET1A_HUMAN, RCOR3_HUMAN, ZN521_HUMAN, COE1_HUMAN, DIDO1_HUMAN, HOMEZ_HUMAN, SMRC2_HUMAN, ELOA1_HUMAN, KMT2B_HUMAN, SP110_HUMAN, MCRS1_HUMAN, SIN3B_HUMAN, CAF1B_HUMAN, BAZ2A_HUMAN, PHF3_HUMAN, RHG35_HUMAN, P66A_HUMAN, HMGB3_HUMAN, FOXM1_HUMAN, SFPQ_HUMAN, RBCC1_HUMAN, ZF64A_HUMAN, CNOT3_HUMAN, ERF_HUMAN, DMAP1_HUMAN, ZN101_HUMAN, CHD2_HUMAN, AGO1_HUMAN, CNOT2_HUMAN, MOV10_HUMAN, ZN446_HUMAN, STAT1_HUMAN, CCNT1_HUMAN, RRAGC_HUMAN, BCORL_HUMAN, PPRC1_HUMAN, RBM14_HUMAN, UCHL5_HUMAN, SFSWA_HUMAN, ZN318_HUMAN, KAT6A_HUMAN, MBB1A_HUMAN, NSD2_HUMAN, P66B_HUMAN, NCOA5_HUMAN, Q9HBD4_HUMAN, TCAL1_HUMAN, COT2_HUMAN, SAFB2_HUMAN, CHD8_HUMAN, RERE_HUMAN, STAT2_HUMAN, NAB1_HUMAN, PA2G4_HUMAN, KMT5A_HUMAN, TXLNG_HUMAN, KLF12_HUMAN, KLF2_HUMAN, FOXK1_HUMAN, CIC_HUMAN, TF3C2_HUMAN, AT7L3_HUMAN, Z280C_HUMAN, IN80E_HUMAN, RPB11_HUMAN, FLII_HUMAN, SND1_HUMAN, IF16_HUMAN, ASCC2_HUMAN, IKZF1_HUMAN, RNPS1_HUMAN 1574 1955 16792 1.413353178407433 9.134960650136748E-6 5.373529364804952E-7 3.908149170950281E-6 -GOTERM_BP_DIRECT GO:0006974~cellular response to DNA damage stimulus 49 2.927120669056153 2.9524630513583535E-9 BLM_HUMAN, SLF2_HUMAN, NIPBL_HUMAN, RN168_HUMAN, PSN1_HUMAN, MCM10_HUMAN, INT3_HUMAN, AKT1_HUMAN, BRD4_HUMAN, CHD2_HUMAN, DYRK2_HUMAN, CCNK_HUMAN, TLK2_HUMAN, DTL_HUMAN, ATM_HUMAN, ABL1_HUMAN, CCAR2_HUMAN, ZBT40_HUMAN, WAC_HUMAN, BCL6_HUMAN, MAPK2_HUMAN, BCL2_HUMAN, BAZ1B_HUMAN, TOP2A_HUMAN, UBR5_HUMAN, P63_HUMAN, CUL4A_HUMAN, APC_HUMAN, CHD1L_HUMAN, RBBP6_HUMAN, NEMO_HUMAN, TAOK3_HUMAN, ATAD5_HUMAN, MEN1_HUMAN, NFAC2_HUMAN, GNL1_HUMAN, TOPB1_HUMAN, HERC2_HUMAN, BD1L1_HUMAN, RASF1_HUMAN, TANK_HUMAN, RN169_HUMAN, RAD18_HUMAN, CCD13_HUMAN, DTX3L_HUMAN, TRIPC_HUMAN, PITH1_HUMAN, RNF8_HUMAN, CHK1_HUMAN 1574 208 16792 2.5132196266249633 1.295237154474993E-5 7.195805982185277E-7 5.5413371002899225E-6 -GOTERM_BP_DIRECT GO:0048025~negative regulation of mRNA splicing, via spliceosome 14 0.8363201911589008 4.045031249265217E-9 TRA2B_HUMAN, SRS10_HUMAN, RBM42_HUMAN, PTBP1_HUMAN, ROA2_HUMAN, ACINU_HUMAN, DYR1A_HUMAN, SRSF6_HUMAN, RBMX_HUMAN, SRSF9_HUMAN, SFSWA_HUMAN, RNPS1_HUMAN, HNRPK_HUMAN, U2AF2_HUMAN 1574 21 16792 7.112240576027107 1.7745394453982932E-5 9.33975979888757E-7 7.591926076688793E-6 -GOTERM_BP_DIRECT GO:1901796~regulation of signal transduction by p53 class mediator 35 2.0908004778972518 6.0737551287036065E-9 BLM_HUMAN, PHF20_HUMAN, B2RDW1_HUMAN, HIPK1_HUMAN, P63_HUMAN, CDK2_HUMAN, PRPK_HUMAN, TPX2_HUMAN, JMY_HUMAN, NOC2L_HUMAN, SSRP1_HUMAN, PML_HUMAN, AKT1_HUMAN, KMT5A_HUMAN, ASPP2_HUMAN, MK14_HUMAN, EHMT1_HUMAN, DYRK2_HUMAN, BANP_HUMAN, TOPB1_HUMAN, CSK21_HUMAN, SP16H_HUMAN, KAT6A_HUMAN, ATM_HUMAN, BRPF1_HUMAN, AAKB2_HUMAN, CHD3_HUMAN, A7UKX8_HUMAN, HDAC2_HUMAN, A2ABF8_HUMAN, MDM2_HUMAN, TAF12_HUMAN, RMI1_HUMAN, CHK1_HUMAN, AURKB_HUMAN, MDM4_HUMAN 1574 124 16792 3.011230889043735 2.66452090019742E-5 1.3322773121382525E-6 1.139954108886343E-5 -GOTERM_BP_DIRECT GO:0007077~mitotic nuclear envelope disassembly 19 1.1350059737156513 2.6832656751887036E-8 P121A_HUMAN, TPR_HUMAN, NU107_HUMAN, PLK1_HUMAN, BAF_HUMAN, NUP98_HUMAN, NU153_HUMAN, NUP88_HUMAN, RAE1L_HUMAN, CDK1_HUMAN, RBP2_HUMAN, KPCA_HUMAN, NU133_HUMAN, LPIN1_HUMAN, EMD_HUMAN, VRK1_HUMAN, PO210_HUMAN, LMNA_HUMAN, NU205_HUMAN 1574 44 16792 4.606792191290285 1.1770793867627027E-4 5.60545413696989E-6 5.0360923131709256E-5 -GOTERM_BP_DIRECT GO:0007049~cell cycle 48 2.867383512544803 3.582646269733392E-8 CAF1B_HUMAN, RIF1_HUMAN, UBP22_HUMAN, CYLD_HUMAN, PARD3_HUMAN, P63_HUMAN, PCNP_HUMAN, CSN1_HUMAN, NASP_HUMAN, HJURP_HUMAN, RACK1_HUMAN, NOLC1_HUMAN, CDC20_HUMAN, ANCHR_HUMAN, FOXM1_HUMAN, PAK4_HUMAN, SNUT2_HUMAN, RBCC1_HUMAN, PAR6G_HUMAN, ERF_HUMAN, TXLNG_HUMAN, ASPP2_HUMAN, ERBIN_HUMAN, CYTSA_HUMAN, E2F3_HUMAN, RINT1_HUMAN, KPCD_HUMAN, SEPT9_HUMAN, CCNT1_HUMAN, DP13A_HUMAN, CCND3_HUMAN, BANP_HUMAN, DNLI3_HUMAN, TLK2_HUMAN, RBL1_HUMAN, SPAG8_HUMAN, CCAR2_HUMAN, CDC73_HUMAN, STK10_HUMAN, TP4A1_HUMAN, E2F2_HUMAN, J3KNL2_HUMAN, IKZF1_HUMAN, C8AP2_HUMAN, SEPT3_HUMAN, PR40A_HUMAN, CAF1A_HUMAN, AURKB_HUMAN 1574 217 16792 2.359821757944478 1.5715834394980366E-4 7.144096963340729E-6 6.724095960031207E-5 -GOTERM_BP_DIRECT GO:0007059~chromosome segregation 23 1.3739545997610514 1.1937738154224966E-7 KIF11_HUMAN, CENPE_HUMAN, SKA1_HUMAN, TOP2A_HUMAN, SGO1_HUMAN, TLK2_HUMAN, HJURP_HUMAN, MS18B_HUMAN, UVRAG_HUMAN, CENPF_HUMAN, SKA3_HUMAN, INCE_HUMAN, DSN1_HUMAN, F1D8N4_HUMAN, SPAG5_HUMAN, DDX3X_HUMAN, MS18A_HUMAN, NEK2_HUMAN, RGS14_HUMAN, PP1R7_HUMAN, CTCF_HUMAN, CENPT_HUMAN, NDE1_HUMAN 1574 68 16792 3.608416174601988 5.235714926414836E-4 2.2769680073642107E-5 2.2405348250043033E-4 -GOTERM_BP_DIRECT GO:0006396~RNA processing 28 1.6726403823178015 1.5533443345705293E-7 HNRH3_HUMAN, ZC3H1_HUMAN, ABEC1_HUMAN, TFP11_HUMAN, DHX30_HUMAN, CHERP_HUMAN, DKC1_HUMAN, SR140_HUMAN, HNRPK_HUMAN, RBM6_HUMAN, RBM3_HUMAN, BICD1_HUMAN, HNRPU_HUMAN, HNRPL_HUMAN, HNRL1_HUMAN, DDX20_HUMAN, RBM4_HUMAN, RBM5_HUMAN, GRSF1_HUMAN, HNRPF_HUMAN, WBP11_HUMAN, LA_HUMAN, SUGP1_HUMAN, SFSWA_HUMAN, SF3A1_HUMAN, RBM39_HUMAN, EXOSX_HUMAN, DSRAD_HUMAN 1574 97 16792 3.0795268473519433 6.812200765450305E-4 2.8393439080787175E-5 2.9153939545834007E-4 -GOTERM_BP_DIRECT GO:0006368~transcription elongation from RNA polymerase II promoter 26 1.5531660692951015 1.774333898607127E-7 SETD2_HUMAN, ELL2_HUMAN, ERCC3_HUMAN, NELFE_HUMAN, ENY2_HUMAN, SSRP1_HUMAN, ADRM1_HUMAN, CTDP1_HUMAN, LEO1_HUMAN, NCBP1_HUMAN, ELL_HUMAN, TF2B_HUMAN, CCNT1_HUMAN, T2EB_HUMAN, T2FA_HUMAN, RPB11_HUMAN, CCNK_HUMAN, SP16H_HUMAN, TF2H2_HUMAN, ELOF1_HUMAN, CDC73_HUMAN, RPB1_HUMAN, ELOA1_HUMAN, PAF1_HUMAN, CDK9_HUMAN, TAF12_HUMAN 1574 86 16792 3.2253184007564784 7.78097475453543E-4 3.1135529295900355E-5 3.3301575136368555E-4 -GOTERM_BP_DIRECT GO:0045944~positive regulation of transcription from RNA polymerase II promoter 141 8.422939068100359 2.0618876153691844E-7 NIPBL_HUMAN, AKNA_HUMAN, I2BPL_HUMAN, ARI4A_HUMAN, NELFE_HUMAN, E2F7_HUMAN, A2AP_HUMAN, RAI1_HUMAN, IRF4_HUMAN, MED13_HUMAN, LEO1_HUMAN, CREB3_HUMAN, BRD4_HUMAN, ETS1_HUMAN, FOXK2_HUMAN, SOX4_HUMAN, NCOA2_HUMAN, CR3L2_HUMAN, NCOA3_HUMAN, ZEB1_HUMAN, NUCKS_HUMAN, STA5B_HUMAN, BCL9_HUMAN, RUNX1_HUMAN, TLR9_HUMAN, CRTC1_HUMAN, LPIN1_HUMAN, SNW1_HUMAN, SL9A1_HUMAN, MEF2D_HUMAN, HMGA1_HUMAN, TOP2A_HUMAN, HTF4_HUMAN, NFAC3_HUMAN, MED1_HUMAN, ASXL2_HUMAN, SENP1_HUMAN, HNRPK_HUMAN, NFKB1_HUMAN, BC11A_HUMAN, MTG8R_HUMAN, NEMO_HUMAN, LDB1_HUMAN, SMAD7_HUMAN, NFAC4_HUMAN, ARNT_HUMAN, NOTC1_HUMAN, HCLS1_HUMAN, MEN1_HUMAN, DDX3X_HUMAN, NFIX_HUMAN, MED17_HUMAN, PAX5_HUMAN, WWP2_HUMAN, HSF1_HUMAN, MAML1_HUMAN, MEF2A_HUMAN, RN5A_HUMAN, MITF_HUMAN, ATAD2_HUMAN, CD81_HUMAN, MYPT1_HUMAN, GATA6_HUMAN, RBL1_HUMAN, CRTC3_HUMAN, ARI4B_HUMAN, RAD21_HUMAN, SENP2_HUMAN, HDAC2_HUMAN, COE1_HUMAN, NFAC1_HUMAN, RBMX_HUMAN, NCK2_HUMAN, SSBP3_HUMAN, PAF1_HUMAN, HXB4_HUMAN, B2RDW1_HUMAN, AKP8L_HUMAN, MYB_HUMAN, TLR4_HUMAN, WWOX_HUMAN, TFDP2_HUMAN, FOXM1_HUMAN, AKT1_HUMAN, IKZF2_HUMAN, AGO1_HUMAN, CTCF_HUMAN, MK14_HUMAN, RNF10_HUMAN, STAT1_HUMAN, CCNT1_HUMAN, KDM6B_HUMAN, SUMO2_HUMAN, BCL9L_HUMAN, PPRC1_HUMAN, NF2IP_HUMAN, RBM14_HUMAN, CCNK_HUMAN, OGT1_HUMAN, AGAP2_HUMAN, SPAG8_HUMAN, SP1_HUMAN, CDC73_HUMAN, F1D8N4_HUMAN, Q9HBD4_HUMAN, CDK9_HUMAN, CREB1_HUMAN, RB_HUMAN, TNIP1_HUMAN, WBP2_HUMAN, CHCH2_HUMAN, PP2BB_HUMAN, CHD8_HUMAN, RERE_HUMAN, ERCC3_HUMAN, P63_HUMAN, ELF1_HUMAN, ARI3A_HUMAN, USF1_HUMAN, L7RRS6_HUMAN, EGFR_HUMAN, KLF4_HUMAN, ARF4_HUMAN, TR150_HUMAN, PML_HUMAN, NFAC2_HUMAN, KLF12_HUMAN, KLF2_HUMAN, SMRC1_HUMAN, PRP6_HUMAN, PHIP_HUMAN, CTR9_HUMAN, SAFB1_HUMAN, SRF_HUMAN, IF16_HUMAN, COT1_HUMAN, TFAP4_HUMAN, IKZF1_HUMAN, PSIP1_HUMAN, E2F8_HUMAN, TGFB1_HUMAN 1574 981 16792 1.5333729682260278 9.041412077952504E-4 3.4789786744204854E-5 3.869851545101888E-4 -GOTERM_BP_DIRECT GO:0031124~mRNA 3'-end processing 19 1.1350059737156513 2.721634788316959E-7 DX39B_HUMAN, SRSF2_HUMAN, THOC5_HUMAN, ZC11A_HUMAN, CASC3_HUMAN, SRS11_HUMAN, SRSF9_HUMAN, CPSF7_HUMAN, U2AF2_HUMAN, PRP16_HUMAN, REN3B_HUMAN, PAPOA_HUMAN, PCF11_HUMAN, SRSF6_HUMAN, SRSF5_HUMAN, RNPS1_HUMAN, CPSF5_HUMAN, NCBP1_HUMAN, FIP1_HUMAN 1574 50 16792 4.05397712833545 0.0011932688321379947 4.4220553511387095E-5 5.108094321748524E-4 -GOTERM_BP_DIRECT GO:0045892~negative regulation of transcription, DNA-templated 83 4.958183990442055 3.0005277181209843E-7 BCLF1_HUMAN, NIPBL_HUMAN, NONO_HUMAN, ARI4A_HUMAN, T22D4_HUMAN, RBM15_HUMAN, RHG35_HUMAN, LIMD1_HUMAN, P66A_HUMAN, MYB_HUMAN, TFDP2_HUMAN, CENPF_HUMAN, FOXM1_HUMAN, MTG16_HUMAN, RING1_HUMAN, SFPQ_HUMAN, JARD2_HUMAN, KHDR1_HUMAN, DMAP1_HUMAN, SMBT1_HUMAN, CTCF_HUMAN, DNJB6_HUMAN, CBX3_HUMAN, EHMT1_HUMAN, LRRF1_HUMAN, ZEB1_HUMAN, KAT6A_HUMAN, ZBT21_HUMAN, CCAR2_HUMAN, PDCD4_HUMAN, ZGPAT_HUMAN, RUNX1_HUMAN, MBB1A_HUMAN, CIR1_HUMAN, BCL6_HUMAN, Q9HBD4_HUMAN, MDM2_HUMAN, RB_HUMAN, SNW1_HUMAN, COT2_HUMAN, HMGA1_HUMAN, AES_HUMAN, MINT_HUMAN, CHD8_HUMAN, RSF1_HUMAN, P63_HUMAN, CBX5_HUMAN, MTG8R_HUMAN, MPP8_HUMAN, KLF4_HUMAN, LDB1_HUMAN, DAP1_HUMAN, ZN217_HUMAN, PML_HUMAN, GON4L_HUMAN, NOTC1_HUMAN, A8K401_HUMAN, NAB1_HUMAN, MEN1_HUMAN, KMT5A_HUMAN, PA2G4_HUMAN, RB15B_HUMAN, ARI5B_HUMAN, FOXK1_HUMAN, WWP2_HUMAN, PHB2_HUMAN, Z280C_HUMAN, CBX4_HUMAN, GCFC2_HUMAN, GATA6_HUMAN, KLF10_HUMAN, BCOR_HUMAN, MCAF1_HUMAN, IF16_HUMAN, TFAP4_HUMAN, A7UKX8_HUMAN, HDAC2_HUMAN, SMRC2_HUMAN, 1433B_HUMAN, MAGD1_HUMAN, IKZF1_HUMAN, PPM1F_HUMAN, TGFB1_HUMAN, DAXX_HUMAN 1574 499 16792 1.7744968972252 0.0013154657230289857 4.701074166024721E-5 5.631532514094317E-4 -GOTERM_BP_DIRECT GO:0045893~positive regulation of transcription, DNA-templated 83 4.958183990442055 1.126835728705226E-6 UBP22_HUMAN, BLM_HUMAN, RBP56_HUMAN, DVL2_HUMAN, SFR1_HUMAN, CDK2_HUMAN, PSN1_HUMAN, MYB_HUMAN, FOXM1_HUMAN, RAI1_HUMAN, IRF4_HUMAN, RRN3_HUMAN, ROAA_HUMAN, TADA3_HUMAN, MED13_HUMAN, CREB3_HUMAN, CHP3_HUMAN, DVL3_HUMAN, CTCF_HUMAN, E2F3_HUMAN, ETS1_HUMAN, RNF10_HUMAN, STAT1_HUMAN, SOX4_HUMAN, CR3L2_HUMAN, NCOA3_HUMAN, KAT6A_HUMAN, BRPF1_HUMAN, SP1_HUMAN, EDF1_HUMAN, RFC1_HUMAN, RUNX1_HUMAN, WAC_HUMAN, SMCA5_HUMAN, DVL1_HUMAN, Q9HBD4_HUMAN, RB_HUMAN, CREB1_HUMAN, Q7LCB3_HUMAN, PP2BB_HUMAN, NPM_HUMAN, COT2_HUMAN, HMGA1_HUMAN, CHD8_HUMAN, RSF1_HUMAN, P63_HUMAN, NFAC3_HUMAN, ELF1_HUMAN, MED1_HUMAN, ENY2_HUMAN, NFKB1_HUMAN, BPTF_HUMAN, F1D8N3_HUMAN, KLF4_HUMAN, ZN711_HUMAN, TR150_HUMAN, ARNT_HUMAN, NOTC1_HUMAN, A8K401_HUMAN, NFAC2_HUMAN, MED17_HUMAN, PHF8_HUMAN, KLF2_HUMAN, FOXK1_HUMAN, SMRC1_HUMAN, PHIP_HUMAN, AT7L3_HUMAN, NFYA_HUMAN, KCC4_HUMAN, TREF1_HUMAN, MITF_HUMAN, BANP_HUMAN, NPAT_HUMAN, ATAD2_HUMAN, GATA6_HUMAN, RREB1_HUMAN, MCAF1_HUMAN, TFAP4_HUMAN, HDAC2_HUMAN, NFAC1_HUMAN, SMRC2_HUMAN, M3K2_HUMAN, MAGD1_HUMAN, TGFB1_HUMAN 1574 515 16792 1.7193668965347086 0.004931232480820169 1.7044861429926783E-4 0.0021148831231165843 -GOTERM_BP_DIRECT GO:0035556~intracellular signal transduction 68 4.062126642771804 2.3993951942535796E-6 ZAP70_HUMAN, AKP13_HUMAN, DNMBP_HUMAN, DVL2_HUMAN, LAX1_HUMAN, PSN1_HUMAN, FKBP8_HUMAN, PLXB1_HUMAN, LCP2_HUMAN, CHSP1_HUMAN, PLCG1_HUMAN, KPCA_HUMAN, AKT1_HUMAN, FYV1_HUMAN, HASP_HUMAN, SH2B3_HUMAN, DVL3_HUMAN, KAP3_HUMAN, MK14_HUMAN, TYK2_HUMAN, KPCT_HUMAN, KPCL_HUMAN, RGS6_HUMAN, SIPA1_HUMAN, TLK2_HUMAN, WNK1_HUMAN, WNK2_HUMAN, DLG5_HUMAN, M3K4_HUMAN, ARHG7_HUMAN, PTN6_HUMAN, DGKD_HUMAN, LAT_HUMAN, DVL1_HUMAN, CTGF_HUMAN, SGK3_HUMAN, GMIP_HUMAN, MAST3_HUMAN, AKA11_HUMAN, MARK2_HUMAN, BLK_HUMAN, L7RRS6_HUMAN, BIG2_HUMAN, KSR1_HUMAN, HCLS1_HUMAN, DDX3X_HUMAN, RGS14_HUMAN, DGKZ_HUMAN, CTRO_HUMAN, STK39_HUMAN, CD209_HUMAN, KCC4_HUMAN, KPCD_HUMAN, STMN1_HUMAN, ARHGC_HUMAN, CRKL_HUMAN, RASF1_HUMAN, DAPK3_HUMAN, B4DHN5_HUMAN, 3BP5L_HUMAN, NFAC1_HUMAN, NEK11_HUMAN, SRPK2_HUMAN, ARHG3_HUMAN, BCR_HUMAN, AKT2_HUMAN, PHAG1_HUMAN, TULP4_HUMAN 1574 403 16792 1.8001204435602107 0.010470953203034927 3.5081042981432997E-4 0.00450321453514535 -GOTERM_BP_DIRECT GO:0007030~Golgi organization 22 1.3142174432497014 2.588644177229003E-6 GORS1_HUMAN, MY18A_HUMAN, COG1_HUMAN, LMAN1_HUMAN, CLAP1_HUMAN, GBF1_HUMAN, KC1D_HUMAN, PKHM2_HUMAN, GOGA5_HUMAN, DYM_HUMAN, COG4_HUMAN, NPL4_HUMAN, RAB1A_HUMAN, ARHG7_HUMAN, KC1A_HUMAN, CLAP2_HUMAN, S23IP_HUMAN, TRIPB_HUMAN, COG7_HUMAN, CTRO_HUMAN, OPTN_HUMAN, CDC42_HUMAN 1574 74 16792 3.171674851471548 0.011292156241351048 3.662682849493448E-4 0.00485839119512832 -GOTERM_BP_DIRECT GO:0018105~peptidyl-serine phosphorylation 30 1.7921146953405016 3.4179978602868015E-6 ULK1_HUMAN, RICTR_HUMAN, BCL2_HUMAN, SMG1_HUMAN, VRK3_HUMAN, CLSPN_HUMAN, DYR1A_HUMAN, CDK2_HUMAN, PLK1_HUMAN, CDK1_HUMAN, KPCA_HUMAN, AKT1_HUMAN, STK39_HUMAN, MK14_HUMAN, MORC3_HUMAN, KPCT_HUMAN, KPCD_HUMAN, KCC4_HUMAN, KAPCA_HUMAN, KPCL_HUMAN, TLK2_HUMAN, KC1D_HUMAN, ATM_HUMAN, MTOR_HUMAN, KC1A_HUMAN, SGK3_HUMAN, AKT2_HUMAN, PKN1_HUMAN, MAPK2_HUMAN, MAST3_HUMAN 1574 125 16792 2.5604066073697584 0.014882920305082425 4.684771752592187E-4 0.006414882547678413 -GOTERM_BP_DIRECT GO:0006369~termination of RNA polymerase II transcription 20 1.1947431302270013 3.689261318567697E-6 DX39B_HUMAN, SRSF2_HUMAN, THOC5_HUMAN, ZC11A_HUMAN, CASC3_HUMAN, SRS11_HUMAN, SRSF9_HUMAN, CPSF7_HUMAN, U2AF2_HUMAN, PRP16_HUMAN, REN3B_HUMAN, PAPOA_HUMAN, PCF11_HUMAN, SRSF6_HUMAN, SRSF5_HUMAN, RNPS1_HUMAN, CPSF5_HUMAN, TTF2_HUMAN, NCBP1_HUMAN, FIP1_HUMAN 1574 64 16792 3.3338627700127064 0.016054548820324532 4.90328817985497E-4 0.006923971862804468 -GOTERM_BP_DIRECT GO:0007265~Ras protein signal transduction 21 1.2544802867383513 3.975577950354439E-6 NET1_HUMAN, G3BP2_HUMAN, BRAP_HUMAN, G3BP1_HUMAN, DOK2_HUMAN, DNMT1_HUMAN, GRAP2_HUMAN, NF1_HUMAN, CDK2_HUMAN, RASN_HUMAN, RREB1_HUMAN, CRKL_HUMAN, RASF1_HUMAN, KSR1_HUMAN, B4DHN5_HUMAN, GRP2_HUMAN, LAT_HUMAN, DOK1_HUMAN, RB_HUMAN, MAPK2_HUMAN, MK14_HUMAN 1574 70 16792 3.2005082592121985 0.017289683092975072 5.128359587002196E-4 0.007461309316580955 -GOTERM_BP_DIRECT GO:0000381~regulation of alternative mRNA splicing, via spliceosome 15 0.8960573476702508 4.2108436779707E-6 SRSF2_HUMAN, DYR1A_HUMAN, RBY1A_HUMAN, TRA2B_HUMAN, SF3A1_HUMAN, HNRPL_HUMAN, TR150_HUMAN, PTBP1_HUMAN, RBM25_HUMAN, SRSF6_HUMAN, RBMX_HUMAN, RB15B_HUMAN, RBM4_HUMAN, RBM5_HUMAN, RNPS1_HUMAN 1574 38 16792 4.211195077910787 0.018303429882088107 5.276610267506143E-4 0.00790283623870458 -GOTERM_BP_DIRECT GO:0006405~RNA export from nucleus 18 1.0752688172043012 6.496759055558293E-6 P121A_HUMAN, DX39B_HUMAN, TPR_HUMAN, SRSF2_HUMAN, THOC5_HUMAN, ZC11A_HUMAN, CASC3_HUMAN, SRS11_HUMAN, SRSF9_HUMAN, NUP98_HUMAN, U2AF2_HUMAN, PRP16_HUMAN, REN3B_HUMAN, SRSF6_HUMAN, SRSF5_HUMAN, RNPS1_HUMAN, NCBP1_HUMAN, RANG_HUMAN 1574 55 16792 3.491463555504216 0.028099041790859536 7.913915332919963E-4 0.012192753790785105 -GOTERM_BP_DIRECT GO:0006364~rRNA processing 42 2.5089605734767026 7.185000794705925E-6 EXOS5_HUMAN, DDX52_HUMAN, UTP18_HUMAN, RRP1B_HUMAN, B2RDW1_HUMAN, DKC1_HUMAN, NAF1_HUMAN, NOLC1_HUMAN, BMS1_HUMAN, MDN1_HUMAN, SAS10_HUMAN, RLA1_HUMAN, PA2G4_HUMAN, WDR75_HUMAN, SENP3_HUMAN, RS10_HUMAN, PIN4_HUMAN, RL34_HUMAN, UT14A_HUMAN, RRP15_HUMAN, RL35A_HUMAN, WBP11_HUMAN, LTV1_HUMAN, RN5A_HUMAN, RS21_HUMAN, KC1D_HUMAN, NOL8_HUMAN, RL37_HUMAN, CCD86_HUMAN, RL22_HUMAN, NOB1_HUMAN, RS6_HUMAN, RL17_HUMAN, RL14_HUMAN, RS27_HUMAN, G3V1J5_HUMAN, NEP1_HUMAN, DDX21_HUMAN, EXOSX_HUMAN, RS29_HUMAN, RL36_HUMAN, RS30_HUMAN 1574 214 16792 2.0937904499519053 0.03102911281214904 8.515483544283553E-4 0.013484324918822121 -GOTERM_BP_DIRECT GO:0016477~cell migration 36 2.1505376344086025 8.453899739602647E-6 KS6B1_HUMAN, NANO1_HUMAN, MY18A_HUMAN, SH3K1_HUMAN, ACK1_HUMAN, RHG35_HUMAN, LIMD1_HUMAN, APC_HUMAN, ABL2_HUMAN, PPIP1_HUMAN, PLXB1_HUMAN, ARF4_HUMAN, PAK4_HUMAN, CDK1_HUMAN, PLCG1_HUMAN, PI51A_HUMAN, PALLD_HUMAN, NFAC2_HUMAN, UBP24_HUMAN, DGKZ_HUMAN, TYK2_HUMAN, TSP1_HUMAN, TGFB2_HUMAN, GRDN_HUMAN, ELMO1_HUMAN, ABL1_HUMAN, RHOA_HUMAN, BTG1_HUMAN, RAB1A_HUMAN, NCK2_HUMAN, CTGF_HUMAN, LURA1_HUMAN, SL9A1_HUMAN, TGFB1_HUMAN, PR40A_HUMAN, NDE1_HUMAN 1574 172 16792 2.232912738985254 0.036408100645670904 9.755084852081097E-4 0.015865530027669994 -GOTERM_BP_DIRECT GO:0006977~DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest 19 1.1350059737156513 9.356133554978188E-6 NPM_HUMAN, CASP2_HUMAN, CNOT2_HUMAN, SOX4_HUMAN, B2RDW1_HUMAN, TB182_HUMAN, CDK2_HUMAN, ARI3A_HUMAN, ATM_HUMAN, E2F7_HUMAN, TFDP2_HUMAN, A7UKX8_HUMAN, CDK1_HUMAN, PML_HUMAN, CNOT3_HUMAN, 1433S_HUMAN, MDM2_HUMAN, GTSE1_HUMAN, MDM4_HUMAN, CRADD_HUMAN 1574 62 16792 3.2693363938189117 0.04021458919655474 0.0010518963666892311 0.017558621773838823 -GOTERM_BP_DIRECT GO:0006338~chromatin remodeling 23 1.3739545997610514 9.705093828448474E-6 CBX3_HUMAN, BAZ2A_HUMAN, BAZ1A_HUMAN, SPT6H_HUMAN, RERE_HUMAN, RSF1_HUMAN, P63_HUMAN, SATB1_HUMAN, MYB_HUMAN, CHD1L_HUMAN, BPTF_HUMAN, B3KTM8_HUMAN, CHD1_HUMAN, HDAC2_HUMAN, SMRC2_HUMAN, BRD4_HUMAN, SMCA5_HUMAN, DMAP1_HUMAN, Q9HBD4_HUMAN, PB1_HUMAN, RB_HUMAN, DAXX_HUMAN, SMRC1_HUMAN 1574 86 16792 2.8531662775922695 0.041682803724944706 0.001063845045949141 0.018213457783144982 -GOTERM_BP_DIRECT GO:0032968~positive regulation of transcription elongation from RNA polymerase II promoter 9 0.5376344086021506 1.0440992221889612E-5 CDC73_HUMAN, SPT6H_HUMAN, CTR9_HUMAN, T2FA_HUMAN, LEO1_HUMAN, BRD4_HUMAN, PAF1_HUMAN, SP16H_HUMAN, ELL_HUMAN 1574 14 16792 6.858231984026139 0.04477166420054712 0.0011165681734022215 0.01959438323307916 -GOTERM_BP_DIRECT GO:0000184~nuclear-transcribed mRNA catabolic process, nonsense-mediated decay 28 1.6726403823178015 1.1387298508885492E-5 SMG5_HUMAN, SMG1_HUMAN, B2RDW1_HUMAN, SMG8_HUMAN, DCP2_HUMAN, REN3B_HUMAN, RLA1_HUMAN, RS10_HUMAN, NCBP1_HUMAN, RL34_HUMAN, IF4G1_HUMAN, CASC3_HUMAN, RL35A_HUMAN, RS21_HUMAN, RL37_HUMAN, RL22_HUMAN, DCP1B_HUMAN, RS6_HUMAN, RL14_HUMAN, RL17_HUMAN, RS27_HUMAN, PYM1_HUMAN, DCP1A_HUMAN, EXOSX_HUMAN, RS29_HUMAN, RL36_HUMAN, RNPS1_HUMAN, RS30_HUMAN 1574 119 16792 2.5102025562448613 0.04872906578870262 0.0011887301140577344 0.021370116020036356 -GOTERM_BP_DIRECT GO:0006366~transcription from RNA polymerase II promoter 79 4.7192353643966545 1.1743133062890717E-5 AKNA_HUMAN, ARI4A_HUMAN, TADBP_HUMAN, DVL2_HUMAN, ZEP2_HUMAN, NELFE_HUMAN, MYB_HUMAN, FOXM1_HUMAN, IRF4_HUMAN, BTF3_HUMAN, CTDP1_HUMAN, CREB3_HUMAN, NCBP1_HUMAN, CTCF_HUMAN, PIR_HUMAN, ETS1_HUMAN, ELL_HUMAN, FOXK2_HUMAN, TF2B_HUMAN, PHRF1_HUMAN, SOX4_HUMAN, CCNT1_HUMAN, CR3L2_HUMAN, T2FA_HUMAN, SP16H_HUMAN, CCNK_HUMAN, PTTG1_HUMAN, NUCKS_HUMAN, STA5B_HUMAN, RUNX1_HUMAN, F1D8N4_HUMAN, DDX21_HUMAN, TRIPB_HUMAN, DVL1_HUMAN, CDK9_HUMAN, CREB1_HUMAN, TAF12_HUMAN, IRF9_HUMAN, NFX1_HUMAN, MEF2D_HUMAN, HMGA1_HUMAN, HTF4_HUMAN, ERCC3_HUMAN, P63_HUMAN, NFAC3_HUMAN, ELF1_HUMAN, ARI3A_HUMAN, GTF2I_HUMAN, HNRPK_HUMAN, NFKB1_HUMAN, USF1_HUMAN, KLF4_HUMAN, LDB1_HUMAN, SFR19_HUMAN, NFAC4_HUMAN, SSRP1_HUMAN, NFRKB_HUMAN, NFAC2_HUMAN, NFIX_HUMAN, PAX5_HUMAN, WWP2_HUMAN, NFYA_HUMAN, MEF2A_HUMAN, MITF_HUMAN, AFF4_HUMAN, T2EB_HUMAN, RPB11_HUMAN, TF2H2_HUMAN, GATA6_HUMAN, RREB1_HUMAN, SRF_HUMAN, RAD21_HUMAN, TFAP4_HUMAN, COE1_HUMAN, NFAC1_HUMAN, RBMX_HUMAN, RPB1_HUMAN, ELOA1_HUMAN, SSBP3_HUMAN 1574 513 16792 1.6428859810121097 0.05021290234526954 0.001197362292192805 0.022037827714438407 -GOTERM_BP_DIRECT GO:0016584~nucleosome positioning 7 0.4181600955794504 1.5877603039020324E-5 H14_HUMAN, H13_HUMAN, H12_HUMAN, RSF1_HUMAN, SMCA5_HUMAN, PAF1_HUMAN, CTCF_HUMAN 1574 8 16792 9.334815756035578 0.06728500604258691 0.001581829348762609 0.029795713490299303 -GOTERM_BP_DIRECT GO:0010467~gene expression 16 0.955794504181601 1.9464066871269493E-5 T2FA_HUMAN, RPB11_HUMAN, HNRPK_HUMAN, B4DY08_HUMAN, HNRPU_HUMAN, HNRPL_HUMAN, TNR6_HUMAN, ROA2_HUMAN, PTBP1_HUMAN, IF2B1_HUMAN, RBMX_HUMAN, RPB1_HUMAN, LAT_HUMAN, NCBP1_HUMAN, PCBP2_HUMAN, HNRPF_HUMAN 1574 48 16792 3.556120288013554 0.08184558310511314 0.0018957495122413626 0.036524863394726825 -GOTERM_BP_DIRECT GO:0006413~translational initiation 30 1.7921146953405016 2.2511528078476098E-5 IF4B_HUMAN, LARP1_HUMAN, B2RDW1_HUMAN, EI2BA_HUMAN, RLA1_HUMAN, EI2BD_HUMAN, ABCF1_HUMAN, EIF1A_HUMAN, RS10_HUMAN, RL34_HUMAN, EIF3F_HUMAN, ABCE1_HUMAN, EIF3C_HUMAN, IF4G1_HUMAN, RL35A_HUMAN, RS21_HUMAN, EIF3A_HUMAN, RL37_HUMAN, RL22_HUMAN, RS6_HUMAN, RL14_HUMAN, RL17_HUMAN, RS27_HUMAN, EIF3M_HUMAN, EI2BG_HUMAN, RS29_HUMAN, RL36_HUMAN, IF2A_HUMAN, IF4H_HUMAN, RS30_HUMAN 1574 137 16792 2.3361374154833565 0.09403914954829773 0.002144635786072935 0.04224236554746241 -GOTERM_BP_DIRECT GO:0019083~viral transcription 26 1.5531660692951015 3.184422612182006E-5 P121A_HUMAN, TPR_HUMAN, NU107_HUMAN, B2RDW1_HUMAN, RL35A_HUMAN, RS21_HUMAN, RL37_HUMAN, RL22_HUMAN, NUP98_HUMAN, RS6_HUMAN, NUP88_HUMAN, RL17_HUMAN, NU153_HUMAN, RL14_HUMAN, RAE1L_HUMAN, RS27_HUMAN, RLA1_HUMAN, RBP2_HUMAN, NU133_HUMAN, RS29_HUMAN, RL36_HUMAN, RS10_HUMAN, PO210_HUMAN, NU205_HUMAN, RL34_HUMAN, RS30_HUMAN 1574 112 16792 2.4765837720094392 0.13038339152270095 0.002967987734104116 0.05975000511938555 -GOTERM_BP_DIRECT GO:0007051~spindle organization 9 0.5376344086021506 3.768661528245856E-5 CHD3_HUMAN, KIF11_HUMAN, SPAG5_HUMAN, ASPM_HUMAN, RGS14_HUMAN, CEP72_HUMAN, RANG_HUMAN, UVRAG_HUMAN, AURKB_HUMAN 1574 16 16792 6.000952986022871 0.15238969661416746 0.0034385391520560527 0.07070853537757271 -GOTERM_BP_DIRECT GO:0007050~cell cycle arrest 30 1.7921146953405016 3.9554439980806015E-5 PPM1G_HUMAN, SNUT1_HUMAN, CUL4A_HUMAN, APC_HUMAN, JMY_HUMAN, RRAGD_HUMAN, CDK6_HUMAN, PRIO_HUMAN, PML_HUMAN, PA2G4_HUMAN, A0A5E8_HUMAN, KHDR1_HUMAN, RRAGB_HUMAN, RRAGA_HUMAN, NOTC2_HUMAN, MTBP_HUMAN, KI20B_HUMAN, TSP1_HUMAN, TGFB2_HUMAN, RRAGC_HUMAN, ATM_HUMAN, AAKB2_HUMAN, ABL1_HUMAN, CGRF1_HUMAN, RASF1_HUMAN, A8K3Y2_HUMAN, MTOR_HUMAN, RB_HUMAN, TGFB1_HUMAN, TSC2_HUMAN 1574 141 16792 2.2698640136256727 0.15930702762916837 0.0035351398953982205 0.07421176167913268 -GOTERM_BP_DIRECT GO:1900034~regulation of cellular response to heat 20 1.1947431302270013 4.463078425851388E-5 DNJB6_HUMAN, P121A_HUMAN, TPR_HUMAN, HSF1_HUMAN, NU107_HUMAN, ATM_HUMAN, NUP98_HUMAN, CCAR2_HUMAN, NU153_HUMAN, NUP88_HUMAN, RAE1L_HUMAN, AKTS1_HUMAN, RBP2_HUMAN, MTOR_HUMAN, NU133_HUMAN, PO210_HUMAN, FKBP4_HUMAN, BAG4_HUMAN, MAPK2_HUMAN, NU205_HUMAN 1574 75 16792 2.8448962304108427 0.17782303394057586 0.003908334898998667 0.08373218705020058 -GOTERM_BP_DIRECT GO:0042795~snRNA transcription from RNA polymerase II promoter 19 1.1350059737156513 5.6833584720692285E-5 TF2B_HUMAN, ELL2_HUMAN, RPRD2_HUMAN, CCNT1_HUMAN, INT12_HUMAN, T2EB_HUMAN, T2FA_HUMAN, RPB11_HUMAN, SRRT_HUMAN, ICE1_HUMAN, CCNK_HUMAN, SP1_HUMAN, RPR1A_HUMAN, INT3_HUMAN, RPB1_HUMAN, PHAX_HUMAN, CDK9_HUMAN, NCBP1_HUMAN, ELL_HUMAN 1574 70 16792 2.8956979488110366 0.22068193829272786 0.004877010176291829 0.1066144052455198 -GOTERM_BP_DIRECT GO:0070373~negative regulation of ERK1 and ERK2 cascade 17 1.015531660692951 5.796116246970553E-5 VRK3_HUMAN, TB10C_HUMAN, EIF3A_HUMAN, NDRG2_HUMAN, NAF1_HUMAN, TLR4_HUMAN, PTN2_HUMAN, ABL1_HUMAN, DUS3_HUMAN, WNK2_HUMAN, KLF4_HUMAN, FBLN1_HUMAN, RPGF1_HUMAN, PTN1_HUMAN, A8K401_HUMAN, RGS14_HUMAN, TNIP1_HUMAN 1574 58 16792 3.1269333567015734 0.22452767921739525 0.004878120616743087 0.10872854490148187 -GOTERM_BP_DIRECT GO:0048208~COPII vesicle coating 17 1.015531660692951 1.1224377047728209E-4 GORS1_HUMAN, LMAN1_HUMAN, CD59_HUMAN, KC1D_HUMAN, SCFD1_HUMAN, TPPC3_HUMAN, RAB1A_HUMAN, MCFD2_HUMAN, SC22B_HUMAN, J3KNL6_HUMAN, CO7A1_HUMAN, CATC_HUMAN, S23IP_HUMAN, TPC2L_HUMAN, GOSR2_HUMAN, SNAA_HUMAN, TPPC9_HUMAN 1574 61 16792 2.9731497489949383 0.3888672388086438 0.009248309592252646 0.21045504136409932 -GOTERM_BP_DIRECT GO:0007064~mitotic sister chromatid cohesion 8 0.4778972520908005 1.1855104325198863E-4 RAD21_HUMAN, SCC4_HUMAN, NIPBL_HUMAN, PDS5B_HUMAN, HASP_HUMAN, SMC3_HUMAN, WAPL_HUMAN, PDS5A_HUMAN 1574 14 16792 6.0962062080232355 0.405547376521078 0.00958550881240583 0.22226861186785962 -GOTERM_BP_DIRECT GO:0046777~protein autophosphorylation 33 1.971326164874552 1.2462367361543728E-4 ULK1_HUMAN, CDK12_HUMAN, PASK_HUMAN, SMG1_HUMAN, DYR1A_HUMAN, PYR1_HUMAN, SLK_HUMAN, MARK2_HUMAN, CLK3_HUMAN, EGFR_HUMAN, TAOK3_HUMAN, EF2K_HUMAN, AKT1_HUMAN, E2AK2_HUMAN, STK39_HUMAN, KAPCA_HUMAN, KCC4_HUMAN, HCK_HUMAN, CLK4_HUMAN, WNK1_HUMAN, ATM_HUMAN, ABL1_HUMAN, WNK2_HUMAN, STK10_HUMAN, DAPK3_HUMAN, AAK1_HUMAN, MTOR_HUMAN, NEK2_HUMAN, BCR_HUMAN, IF2A_HUMAN, VRK1_HUMAN, MAPK2_HUMAN, AURKB_HUMAN 1574 172 16792 2.04683667740315 0.421176756162142 0.009891807868087854 0.23364144425418454 -GOTERM_BP_DIRECT GO:0030036~actin cytoskeleton organization 27 1.6129032258064515 1.5716974106347694E-4 FGD6_HUMAN, COR1A_HUMAN, NF1_HUMAN, CAP1_HUMAN, ABL2_HUMAN, SPIR1_HUMAN, MERL_HUMAN, PALLD_HUMAN, DOCK2_HUMAN, CYTSA_HUMAN, DNJB6_HUMAN, 41_HUMAN, FLII_HUMAN, ROCK1_HUMAN, ADDA_HUMAN, ELMO1_HUMAN, ARC1A_HUMAN, ABL1_HUMAN, RHOA_HUMAN, B4DHN5_HUMAN, RAC2_HUMAN, FGD1_HUMAN, BCR_HUMAN, BCL6_HUMAN, FLNB_HUMAN, CDC42_HUMAN, PHAR4_HUMAN 1574 130 16792 2.2157364871469065 0.4982021071688211 0.012238031600683374 0.29457286321706855 -GOTERM_BP_DIRECT GO:0000082~G1/S transition of mitotic cell cycle 23 1.3739545997610514 1.5846590501867474E-4 PMYT1_HUMAN, KS6B1_HUMAN, CDC6_HUMAN, ORC3_HUMAN, CDK2_HUMAN, CUL4A_HUMAN, ORC1_HUMAN, 4EBP1_HUMAN, MARK4_HUMAN, MCM10_HUMAN, RS6_HUMAN, MCM4_HUMAN, MCM3_HUMAN, CDK1_HUMAN, CDK6_HUMAN, UB2R1_HUMAN, MPIP1_HUMAN, DPOE1_HUMAN, RB_HUMAN, CDT1_HUMAN, PHF8_HUMAN, DPOA2_HUMAN, RANG_HUMAN 1574 102 16792 2.405610783067992 0.5010478168071582 0.01212319561932873 0.2969987588370415 -GOTERM_BP_DIRECT GO:0075733~intracellular transport of virus 15 0.8960573476702508 1.7596432690251214E-4 CD209_HUMAN, P121A_HUMAN, TPR_HUMAN, NU107_HUMAN, B2RDW1_HUMAN, IMA1_HUMAN, NUP98_HUMAN, NU153_HUMAN, NUP88_HUMAN, RAE1L_HUMAN, RBP2_HUMAN, NU133_HUMAN, VP37B_HUMAN, PO210_HUMAN, NU205_HUMAN 1574 51 16792 3.1377531953060767 0.5379228582734661 0.013222552502361706 0.3297432711441006 -GOTERM_BP_DIRECT GO:0016236~macroautophagy 19 1.1350059737156513 1.7846220648003592E-4 EI24_HUMAN, ULK1_HUMAN, BAKOR_HUMAN, AMRA1_HUMAN, B2RDW1_HUMAN, RRAGC_HUMAN, TOM20_HUMAN, WIPI2_HUMAN, PK3C3_HUMAN, AAKB2_HUMAN, UBQL1_HUMAN, RRAGD_HUMAN, RBCC1_HUMAN, MTOR_HUMAN, GBRL1_HUMAN, PI3R4_HUMAN, OPTN_HUMAN, RRAGB_HUMAN, RRAGA_HUMAN 1574 76 16792 2.6670902160101653 0.5429596361172611 0.01318323768989671 0.33441668209954756 -GOTERM_BP_DIRECT GO:0051726~regulation of cell cycle 26 1.5531660692951015 1.8274062517123837E-4 PMYT1_HUMAN, CDK16_HUMAN, CDK12_HUMAN, TADBP_HUMAN, PUM1_HUMAN, MED1_HUMAN, PLK1_HUMAN, RACK1_HUMAN, DTL_HUMAN, ATM_HUMAN, RBL1_HUMAN, CENPF_HUMAN, WEE1_HUMAN, FOXM1_HUMAN, E2F2_HUMAN, A0A5E8_HUMAN, BCR_HUMAN, TXLNG_HUMAN, MPIP1_HUMAN, RB_HUMAN, CDK17_HUMAN, SRSF5_HUMAN, PHAR4_HUMAN, SON_HUMAN, TSC2_HUMAN, MADD_HUMAN 1574 124 16792 2.2369143747182028 0.5514595363460536 0.013273723080006627 0.3424209129886946 -GOTERM_BP_DIRECT GO:0051292~nuclear pore complex assembly 7 0.4181600955794504 2.042770836752648E-4 RTN4_HUMAN, TPR_HUMAN, NU107_HUMAN, TMM33_HUMAN, NUP98_HUMAN, NU205_HUMAN, NU153_HUMAN 1574 11 16792 6.788956913480421 0.5919049277044633 0.01458529562519828 0.3827029100552326 -GOTERM_BP_DIRECT GO:0010390~histone monoubiquitination 7 0.4181600955794504 2.042770836752648E-4 UB2E1_HUMAN, CDC73_HUMAN, CTR9_HUMAN, DTX3L_HUMAN, LEO1_HUMAN, WAC_HUMAN, PAF1_HUMAN 1574 11 16792 6.788956913480421 0.5919049277044633 0.01458529562519828 0.3827029100552326 -GOTERM_BP_DIRECT GO:0080182~histone H3-K4 trimethylation 8 0.4778972520908005 2.0431804971205838E-4 ARI4A_HUMAN, H14_HUMAN, H13_HUMAN, H12_HUMAN, ZN335_HUMAN, CTR9_HUMAN, KMT2B_HUMAN, OGT1_HUMAN 1574 15 16792 5.689792460821685 0.5919782781299638 0.014354602878863032 0.38277951862993875 -GOTERM_BP_DIRECT GO:0051056~regulation of small GTPase mediated signal transduction 27 1.6129032258064515 2.6109607930685004E-4 SI1L3_HUMAN, A2MG_HUMAN, AKP13_HUMAN, PKHG2_HUMAN, SRGP3_HUMAN, RHG35_HUMAN, RHG44_HUMAN, RHG09_HUMAN, GDIR2_HUMAN, TRIO_HUMAN, SI1L1_HUMAN, ARHGC_HUMAN, SIPA1_HUMAN, RHGBA_HUMAN, RHG19_HUMAN, RHOA_HUMAN, GDIR1_HUMAN, ARHG7_HUMAN, RAC2_HUMAN, FGD1_HUMAN, ARHG3_HUMAN, BCR_HUMAN, ARHG6_HUMAN, GMIP_HUMAN, RHOB_HUMAN, CDC42_HUMAN, TSC2_HUMAN 1574 134 16792 2.1495950994708792 0.6819599813783753 0.01801945135460603 0.48890373306638146 -GOTERM_BP_DIRECT GO:0045727~positive regulation of translation 15 0.8960573476702508 2.738401203188264E-4 LARP1_HUMAN, KS6B1_HUMAN, NPM_HUMAN, DX39B_HUMAN, PASK_HUMAN, TSP1_HUMAN, SOX4_HUMAN, CIRBP_HUMAN, LAR4B_HUMAN, RBM3_HUMAN, REN3B_HUMAN, ABCF1_HUMAN, MTOR_HUMAN, PYM1_HUMAN, DDX3X_HUMAN 1574 53 16792 3.01934741435113 0.6992575790532036 0.018598331374288235 0.5127089972477128 -GOTERM_BP_DIRECT GO:0006306~DNA methylation 10 0.5973715651135006 2.764609952909706E-4 BAZ2A_HUMAN, EHMT1_HUMAN, A2ABF8_HUMAN, DNMT1_HUMAN, P66B_HUMAN, DMAP1_HUMAN, DNM3B_HUMAN, P66A_HUMAN, MCAF1_HUMAN, CTCF_HUMAN 1574 25 16792 4.267344345616264 0.7026965866701735 0.018488521300686567 0.517603998958649 -GOTERM_BP_DIRECT GO:0033523~histone H2B ubiquitination 6 0.35842293906810035 3.151355430066585E-4 UB2E1_HUMAN, CDC73_HUMAN, CTR9_HUMAN, LEO1_HUMAN, PAF1_HUMAN, RNF8_HUMAN 1574 8 16792 8.001270648030497 0.7491041861618714 0.020732333065906827 0.5898098542576946 -GOTERM_BP_DIRECT GO:0006355~regulation of transcription, DNA-templated 180 10.75268817204301 3.4337038723051535E-4 CENPU_HUMAN, LMBL3_HUMAN, NONO_HUMAN, CDA7L_HUMAN, ESF1_HUMAN, Z512B_HUMAN, ADNP_HUMAN, NELFE_HUMAN, ZN644_HUMAN, SATB1_HUMAN, LZTR1_HUMAN, PININ_HUMAN, HNRL1_HUMAN, PHF6_HUMAN, PB1_HUMAN, SMBT1_HUMAN, PIR_HUMAN, NOTC2_HUMAN, FOXK2_HUMAN, TF2B_HUMAN, KPCT_HUMAN, SOX4_HUMAN, BAZ1A_HUMAN, NCOA2_HUMAN, SPT6H_HUMAN, REXO4_HUMAN, ZN335_HUMAN, NCOA3_HUMAN, ZBT21_HUMAN, I2BP2_HUMAN, ZN165_HUMAN, FRYL_HUMAN, ZBT40_HUMAN, YLPM1_HUMAN, E2F2_HUMAN, MYCB2_HUMAN, LAP2A_HUMAN, EDRF1_HUMAN, CHD9_HUMAN, C8AP2_HUMAN, YBOX3_HUMAN, TASOR_HUMAN, TFP11_HUMAN, HMGA1_HUMAN, ZN638_HUMAN, HIPK1_HUMAN, KDM2A_HUMAN, RSF1_HUMAN, ASXL2_HUMAN, F1D8N3_HUMAN, LDB1_HUMAN, ZRAB2_HUMAN, SMAD7_HUMAN, ANM8_HUMAN, ZN711_HUMAN, RALY_HUMAN, NOTC1_HUMAN, PKCB1_HUMAN, HCLS1_HUMAN, HP1B3_HUMAN, RB15B_HUMAN, ZN454_HUMAN, PAX5_HUMAN, MAFIP_HUMAN, HES4_HUMAN, KDM3B_HUMAN, SRS10_HUMAN, NFYA_HUMAN, HINT1_HUMAN, MEF2A_HUMAN, MITF_HUMAN, T2EB_HUMAN, CSK21_HUMAN, NSD3_HUMAN, ATAD2_HUMAN, GCFC2_HUMAN, TF2H2_HUMAN, PCGF1_HUMAN, ZZZ3_HUMAN, ZN317_HUMAN, ZBT11_HUMAN, ARI4B_HUMAN, SET1A_HUMAN, CHD3_HUMAN, ZN521_HUMAN, COE1_HUMAN, LCOR_HUMAN, RPB1_HUMAN, ELOA1_HUMAN, LRRF2_HUMAN, DAXX_HUMAN, TULP4_HUMAN, SP110_HUMAN, MCRS1_HUMAN, SIN3B_HUMAN, BAZ2A_HUMAN, CAF1B_HUMAN, TADBP_HUMAN, ZKSC8_HUMAN, ZEP2_HUMAN, LIMD1_HUMAN, MYB_HUMAN, HMGB3_HUMAN, TE2IP_HUMAN, LAP2B_HUMAN, CHSP1_HUMAN, RBCC1_HUMAN, TDIF1_HUMAN, BTF3_HUMAN, ZF64A_HUMAN, CNOT3_HUMAN, ZN101_HUMAN, CHD2_HUMAN, CNOT2_HUMAN, MOV10_HUMAN, ARID2_HUMAN, NU107_HUMAN, LRRF1_HUMAN, BCORL_HUMAN, VENTX_HUMAN, CCNK_HUMAN, UCHL5_HUMAN, ZN318_HUMAN, PTTG1_HUMAN, SFSWA_HUMAN, KAT6A_HUMAN, SP1_HUMAN, ABL1_HUMAN, CCAR2_HUMAN, MLF2_HUMAN, EDF1_HUMAN, MBB1A_HUMAN, BRD9_HUMAN, F1D8N4_HUMAN, A8K3Y2_HUMAN, NCOA5_HUMAN, Q9HBD4_HUMAN, CREB1_HUMAN, MGAP_HUMAN, Q7LCB3_HUMAN, IRF9_HUMAN, SUFU_HUMAN, ELL2_HUMAN, BAZ1B_HUMAN, SETD2_HUMAN, PHF20_HUMAN, KANK1_HUMAN, NRBF2_HUMAN, IRX1_HUMAN, BPTF_HUMAN, B3KTM8_HUMAN, ZN217_HUMAN, ZN384_HUMAN, ATF7_HUMAN, SSRP1_HUMAN, NFRKB_HUMAN, PML_HUMAN, NAB1_HUMAN, ZN862_HUMAN, A8K401_HUMAN, NFAC2_HUMAN, TXLNG_HUMAN, TGFA1_HUMAN, AFF4_HUMAN, IN80E_HUMAN, CTR9_HUMAN, SRRT_HUMAN, FLII_HUMAN, SND1_HUMAN, RREB1_HUMAN, TDIF2_HUMAN, SP130_HUMAN, BTG1_HUMAN, DAPK3_HUMAN, LRIF1_HUMAN, ASCC2_HUMAN, AK17A_HUMAN, RBM39_HUMAN, NU133_HUMAN, MAGD1_HUMAN, PSIP1_HUMAN, TTF2_HUMAN 1574 1504 16792 1.2767985076644408 0.7783430957001287 0.022235987290060932 0.6424933182434089 -GOTERM_BP_DIRECT GO:0043066~negative regulation of apoptotic process 66 3.942652329749104 3.765022903267527E-4 KS6B1_HUMAN, ENPL_HUMAN, NIBL1_HUMAN, B2RDW1_HUMAN, TEX11_HUMAN, PLK1_HUMAN, PSN1_HUMAN, FKBP8_HUMAN, SEM4D_HUMAN, E2AK2_HUMAN, AKT1_HUMAN, ERCC5_HUMAN, NOTC2_HUMAN, J3KN59_HUMAN, CPIN1_HUMAN, PERM_HUMAN, LYRIC_HUMAN, PALB2_HUMAN, MD2L1_HUMAN, CD59_HUMAN, STA5B_HUMAN, PDCD4_HUMAN, GDIR1_HUMAN, MDM2_HUMAN, SL9A1_HUMAN, DSRAD_HUMAN, SON_HUMAN, YBOX3_HUMAN, BCL2_HUMAN, CHSTB_HUMAN, NPM_HUMAN, MY18A_HUMAN, CD40L_HUMAN, ALBU_HUMAN, P63_HUMAN, MED1_HUMAN, TRFL_HUMAN, HNRPK_HUMAN, BLK_HUMAN, NFKB1_HUMAN, L7RRS6_HUMAN, EGFR_HUMAN, ARF4_HUMAN, CDK1_HUMAN, EF2K_HUMAN, TNR6_HUMAN, PRIO_HUMAN, DDX3X_HUMAN, PA2G4_HUMAN, BAG4_HUMAN, DAD1_HUMAN, PHIP_HUMAN, PSMG2_HUMAN, TSP1_HUMAN, PHB2_HUMAN, UNG_HUMAN, CBX4_HUMAN, HCK_HUMAN, GATA6_HUMAN, RS6_HUMAN, BNI3L_HUMAN, BAG6_HUMAN, A7UKX8_HUMAN, HDAC2_HUMAN, ANKL2_HUMAN, LGUL_HUMAN, MDM4_HUMAN 1574 455 16792 1.5474984989597442 0.8083388985283235 0.02400177213277732 0.7042805093581128 -GOTERM_BP_DIRECT GO:0006409~tRNA export from nucleus 11 0.6571087216248507 4.7495915409396416E-4 P121A_HUMAN, RAE1L_HUMAN, TPR_HUMAN, NU107_HUMAN, RBP2_HUMAN, NU133_HUMAN, NUP98_HUMAN, PO210_HUMAN, NU205_HUMAN, NUP88_HUMAN, NU153_HUMAN 1574 32 16792 3.667249047013977 0.8755860279005804 0.029753328183623973 0.8876766508421841 -GOTERM_BP_DIRECT GO:0006890~retrograde vesicle-mediated transport, Golgi to ER 19 1.1350059737156513 4.852380646090838E-4 KIF1C_HUMAN, KIF2A_HUMAN, KIF11_HUMAN, TMED3_HUMAN, CENPE_HUMAN, ATP9B_HUMAN, KLC1_HUMAN, GBF1_HUMAN, SCFD1_HUMAN, COG4_HUMAN, UVRAG_HUMAN, ARF4_HUMAN, RAB1A_HUMAN, SC22B_HUMAN, KIF22_HUMAN, COG7_HUMAN, RINT1_HUMAN, KLC2_HUMAN, SNAA_HUMAN 1574 82 16792 2.471937273375275 0.8810742617829771 0.02995997289097252 0.9068047359451548 -GOTERM_BP_DIRECT GO:0006376~mRNA splice site selection 8 0.4778972520908005 5.219269402007942E-4 SRS10_HUMAN, YTDC1_HUMAN, SRSF6_HUMAN, RBMX_HUMAN, SRSF9_HUMAN, SRSF5_HUMAN, LUC7L_HUMAN, LC7L2_HUMAN 1574 17 16792 5.020405112489723 0.8987630247736655 0.03174289519154505 0.9750507843516054 -GOTERM_BP_DIRECT GO:1901216~positive regulation of neuron death 8 0.4778972520908005 5.219269402007942E-4 BAD_HUMAN, APOE_HUMAN, MTOR_HUMAN, IF2A_HUMAN, ASPP2_HUMAN, M3K5_HUMAN, DAXX_HUMAN, ABL1_HUMAN 1574 17 16792 5.020405112489723 0.8987630247736655 0.03174289519154505 0.9750507843516054 -GOTERM_BP_DIRECT GO:0018107~peptidyl-threonine phosphorylation 12 0.7168458781362007 5.226603815175678E-4 BCL2_HUMAN, KAPCA_HUMAN, CDK1_HUMAN, KPCD_HUMAN, MTOR_HUMAN, DYR1A_HUMAN, PYR1_HUMAN, AKT1_HUMAN, STK39_HUMAN, WNK1_HUMAN, MARK2_HUMAN, CHK1_HUMAN 1574 38 16792 3.36895606232863 0.899088411762511 0.03135230846697523 0.9764146261865059 -GOTERM_BP_DIRECT GO:0010506~regulation of autophagy 14 0.8363201911589008 5.302212959559507E-4 ULK1_HUMAN, MTCL1_HUMAN, WDR24_HUMAN, RRAGC_HUMAN, NRBF2_HUMAN, ATM_HUMAN, ABL2_HUMAN, ABL1_HUMAN, IF16_HUMAN, DAPK3_HUMAN, SOGA1_HUMAN, RRAGD_HUMAN, ITPR1_HUMAN, Q59H91_HUMAN, RRAGB_HUMAN 1574 50 16792 2.987141041931385 0.9023824232592923 0.03136999461957146 0.9904731894912477 -GOTERM_BP_DIRECT GO:0008360~regulation of cell shape 27 1.6129032258064515 5.306218835112155E-4 FGD6_HUMAN, WIPF1_HUMAN, SH3K1_HUMAN, VRK3_HUMAN, COR1A_HUMAN, FMNL1_HUMAN, RHG35_HUMAN, LIMD1_HUMAN, PLXB2_HUMAN, PLXB1_HUMAN, SEM4D_HUMAN, WIPF2_HUMAN, PKHO1_HUMAN, ML12B_HUMAN, PHIP_HUMAN, MOES_HUMAN, CFDP1_HUMAN, HCK_HUMAN, KC1D_HUMAN, DAPK3_HUMAN, GDIR1_HUMAN, KC1A_HUMAN, FGD1_HUMAN, PR40A_HUMAN, VRK1_HUMAN, B0YJ88_HUMAN, FINC_HUMAN 1574 140 16792 2.057469595207842 0.9025539144335817 0.030975730930156486 0.9912179786313868 -GOTERM_BP_DIRECT GO:0010827~regulation of glucose transport 11 0.6571087216248507 6.248220792539124E-4 P121A_HUMAN, RAE1L_HUMAN, TPR_HUMAN, NU107_HUMAN, RBP2_HUMAN, NU133_HUMAN, NUP98_HUMAN, PO210_HUMAN, NU205_HUMAN, NUP88_HUMAN, NU153_HUMAN 1574 33 16792 3.5561202880135534 0.9355555177883377 0.035899126118151825 1.1662117241271641 -GOTERM_BP_DIRECT GO:0033962~cytoplasmic mRNA processing body assembly 7 0.4181600955794504 6.433021907545788E-4 DDX6_HUMAN, LIMD1_HUMAN, RC3H1_HUMAN, EDC3_HUMAN, PATL1_HUMAN, LSM3_HUMAN, LS14A_HUMAN 1574 13 16792 5.744502003714202 0.9405770553333372 0.036464282996989894 1.2005074686196715 -GOTERM_BP_DIRECT GO:0030307~positive regulation of cell growth 19 1.1350059737156513 6.586912229553641E-4 BCL2_HUMAN, IF4G1_HUMAN, TGFB2_HUMAN, H33_HUMAN, CSK21_HUMAN, NOL8_HUMAN, H15_HUMAN, EGFR_HUMAN, HDGR2_HUMAN, B4DHN5_HUMAN, FR1OP_HUMAN, MTPN_HUMAN, AKT1_HUMAN, DDX3X_HUMAN, 1433S_HUMAN, SL9A1_HUMAN, NCBP1_HUMAN, CDC42_HUMAN, ADA10_HUMAN 1574 84 16792 2.413081624009197 0.944458818042082 0.03684474116704228 1.229058131191474 -GOTERM_BP_DIRECT GO:0006378~mRNA polyadenylation 10 0.5973715651135006 7.219583974778298E-4 CDC73_HUMAN, F5H0R1_HUMAN, PAPOA_HUMAN, PCF11_HUMAN, LEO1_HUMAN, PAPOG_HUMAN, PAF1_HUMAN, GRSF1_HUMAN, CPSF5_HUMAN, SYMPK_HUMAN 1574 28 16792 3.810128880014522 0.9579281052767372 0.03980625457402154 1.3463531726581768 -GOTERM_BP_DIRECT GO:2000145~regulation of cell motility 10 0.5973715651135006 7.219583974778298E-4 RHOA_HUMAN, DAPK3_HUMAN, CDK6_HUMAN, ROCK1_HUMAN, CD81_HUMAN, PKN1_HUMAN, ABL2_HUMAN, L7RRS6_HUMAN, ABL1_HUMAN, EGFR_HUMAN 1574 28 16792 3.810128880014522 0.9579281052767372 0.03980625457402154 1.3463531726581768 -GOTERM_BP_DIRECT GO:0045931~positive regulation of mitotic cell cycle 10 0.5973715651135006 7.219583974778298E-4 DUS3_HUMAN, KS6B1_HUMAN, STA5B_HUMAN, UBP22_HUMAN, CDK1_HUMAN, A7UKX8_HUMAN, MPIP2_HUMAN, KPCA_HUMAN, MDM2_HUMAN, 4EBP1_HUMAN, ABL1_HUMAN 1574 28 16792 3.810128880014522 0.9579281052767372 0.03980625457402154 1.3463531726581768 -GOTERM_BP_DIRECT GO:0097190~apoptotic signaling pathway 17 1.015531660692951 7.230383702735824E-4 CASP2_HUMAN, LY96_HUMAN, CD3E_HUMAN, SENP1_HUMAN, TLR4_HUMAN, TR19L_HUMAN, TNFL6_HUMAN, DAP1_HUMAN, DAPK3_HUMAN, LEUK_HUMAN, TNR6_HUMAN, CD5_HUMAN, TNR8_HUMAN, KPCA_HUMAN, DIDO1_HUMAN, M3K5_HUMAN, C8AP2_HUMAN 1574 71 16792 2.5543962632210038 0.9581271071963395 0.03937007040952889 1.3483542577488072 -GOTERM_BP_DIRECT GO:0006606~protein import into nucleus 15 0.8960573476702508 7.409076163052973E-4 P121A_HUMAN, TPR_HUMAN, NU107_HUMAN, NTF2_HUMAN, PTTG_HUMAN, TMCO6_HUMAN, IMA1_HUMAN, NUP88_HUMAN, NU153_HUMAN, RAE1L_HUMAN, GANP_HUMAN, NU133_HUMAN, DSRAD_HUMAN, RANG_HUMAN, TSC2_HUMAN 1574 58 16792 2.7590588441484467 0.9612864811900874 0.03982966715156344 1.3814586640732873 -GOTERM_BP_DIRECT GO:0043044~ATP-dependent chromatin remodeling 9 0.5376344086021506 7.899083375609926E-4 B4DY08_HUMAN, HDAC2_HUMAN, CHD8_HUMAN, SMRC2_HUMAN, ACTB_HUMAN, P66B_HUMAN, SMCA5_HUMAN, Q9HBD4_HUMAN, SMRC1_HUMAN 1574 23 16792 4.1745759902767805 0.9687800274685939 0.041895793049186114 1.4721830120843493 -GOTERM_BP_DIRECT GO:0043087~regulation of GTPase activity 16 0.955794504181601 8.065215088044675E-4 RICTR_HUMAN, FGD6_HUMAN, TB10B_HUMAN, SI1L1_HUMAN, NF1_HUMAN, IQGA2_HUMAN, PLXB2_HUMAN, GAPD1_HUMAN, RASL3_HUMAN, PLXB1_HUMAN, MTMR5_HUMAN, MTOR_HUMAN, TBC15_HUMAN, FGD1_HUMAN, BCL6_HUMAN, B0YJ88_HUMAN 1574 65 16792 2.626058058840778 0.9709761521692906 0.042247907255892225 1.5029241933424808 -GOTERM_BP_DIRECT GO:0050434~positive regulation of viral transcription 10 0.5973715651135006 9.607016222984012E-4 TF2B_HUMAN, CCNT1_HUMAN, NOTC1_HUMAN, RSF1_HUMAN, CTDP1_HUMAN, T2FA_HUMAN, RPB11_HUMAN, RPB1_HUMAN, NELFE_HUMAN, CDK9_HUMAN 1574 29 16792 3.6787451255312624 0.9852516460664924 0.04953381755509567 1.7877877923300645 -GOTERM_BP_DIRECT GO:0046627~negative regulation of insulin receptor signaling pathway 10 0.5973715651135006 9.607016222984012E-4 FETUA_HUMAN, KS6B1_HUMAN, KPCT_HUMAN, KPCD_HUMAN, PTN1_HUMAN, GSK3A_HUMAN, KANK1_HUMAN, NCOA5_HUMAN, PTN2_HUMAN, TSC2_HUMAN 1574 29 16792 3.6787451255312624 0.9852516460664924 0.04953381755509567 1.7877877923300645 -GOTERM_BP_DIRECT GO:0043928~exonucleolytic nuclear-transcribed mRNA catabolic process involved in deadenylation-dependent decay 10 0.5973715651135006 9.607016222984012E-4 DCP2_HUMAN, EXOS5_HUMAN, G3V1J5_HUMAN, DDX6_HUMAN, DCP1A_HUMAN, EDC4_HUMAN, DCP1B_HUMAN, EDC3_HUMAN, PATL1_HUMAN, LSM3_HUMAN 1574 29 16792 3.6787451255312624 0.9852516460664924 0.04953381755509567 1.7877877923300645 -GOTERM_BP_DIRECT GO:0010793~regulation of mRNA export from nucleus 5 0.2986857825567503 9.856253688436253E-4 SETD2_HUMAN, IWS1_HUMAN, TPR_HUMAN, SPT6H_HUMAN, AKP8L_HUMAN 1574 6 16792 8.890300720033883 0.9867806126204908 0.05019715042866357 1.8337636778826938 -GOTERM_BP_DIRECT GO:0043923~positive regulation by host of viral transcription 7 0.4181600955794504 0.0010368655514058959 CHD1_HUMAN, TFAP4_HUMAN, CCNT1_HUMAN, Q9HBD4_HUMAN, SNW1_HUMAN, SP1_HUMAN, NUCKS_HUMAN 1574 14 16792 5.3341804320203305 0.9894442972035326 0.05213408226042204 1.928220492219257 -GOTERM_BP_DIRECT GO:0031929~TOR signaling 7 0.4181600955794504 0.0010368655514058959 RICTR_HUMAN, KS6B1_HUMAN, LARP1_HUMAN, GRDN_HUMAN, MTOR_HUMAN, 4EBP1_HUMAN, RS6_HUMAN 1574 14 16792 5.3341804320203305 0.9894442972035326 0.05213408226042204 1.928220492219257 -GOTERM_BP_DIRECT GO:0043065~positive regulation of apoptotic process 46 2.7479091995221028 0.0010508589461798148 BCLF1_HUMAN, AKP13_HUMAN, B2RDW1_HUMAN, TOP2A_HUMAN, PKHG2_HUMAN, ERCC3_HUMAN, NF1_HUMAN, APC_HUMAN, RACK1_HUMAN, PSN1_HUMAN, JMY_HUMAN, PRAF3_HUMAN, BAD_HUMAN, TNR6_HUMAN, NOTC1_HUMAN, AKT1_HUMAN, DDX20_HUMAN, DDX3X_HUMAN, RBM5_HUMAN, M3K5_HUMAN, CASP2_HUMAN, TRIO_HUMAN, ACINU_HUMAN, SOX4_HUMAN, ARHGC_HUMAN, ATM_HUMAN, BNI3L_HUMAN, RS6_HUMAN, ABL1_HUMAN, CCAR2_HUMAN, TNFL6_HUMAN, DAPK3_HUMAN, TFAP4_HUMAN, ARHG7_HUMAN, TNR8_HUMAN, A8K3Y2_HUMAN, ZN622_HUMAN, FGD1_HUMAN, ARHG3_HUMAN, BCL6_HUMAN, ARHG6_HUMAN, CREB1_HUMAN, RNPS1_HUMAN, SL9A1_HUMAN, RHOB_HUMAN, TGFB1_HUMAN 1574 300 16792 1.6358153324862348 0.9900734489465786 0.0522212703177144 1.9540011351640074 -GOTERM_BP_DIRECT GO:0007018~microtubule-based movement 18 1.0752688172043012 0.0011750409090766408 DLRB1_HUMAN, KIF2A_HUMAN, KIF11_HUMAN, KIF1C_HUMAN, CENPE_HUMAN, KI20B_HUMAN, KI21A_HUMAN, KLC1_HUMAN, KI21B_HUMAN, DC1I2_HUMAN, DC1L1_HUMAN, KI13B_HUMAN, ARP10_HUMAN, KIF22_HUMAN, CLCA_HUMAN, KIFC1_HUMAN, KTN1_HUMAN, KLC2_HUMAN 1574 81 16792 2.370746858675702 0.9942464340692446 0.057563385479634466 2.182506052747213 -GOTERM_BP_DIRECT GO:0016572~histone phosphorylation 6 0.35842293906810035 0.0012076567178817515 BAZ1B_HUMAN, CDK1_HUMAN, KPCD_HUMAN, NEK11_HUMAN, CDK2_HUMAN, ATM_HUMAN 1574 10 16792 6.401016518424397 0.9950143509123653 0.058462229664847154 2.2424381425238393 -GOTERM_BP_DIRECT GO:0051146~striated muscle cell differentiation 6 0.35842293906810035 0.0012076567178817515 MTPN_HUMAN, AKT1_HUMAN, JIP4_HUMAN, RB_HUMAN, J3KN59_HUMAN, MK14_HUMAN 1574 10 16792 6.401016518424397 0.9950143509123653 0.058462229664847154 2.2424381425238393 -GOTERM_BP_DIRECT GO:0030449~regulation of complement activation 10 0.5973715651135006 0.0012596340498975155 PROP_HUMAN, CO5_HUMAN, PHB2_HUMAN, DAF_HUMAN, CO3_HUMAN, CO9_HUMAN, CD59_HUMAN, CO7_HUMAN, VTNC_HUMAN, MCP_HUMAN 1574 30 16792 3.5561202880135534 0.996032019009983 0.060238528523423596 2.337875514528831 -GOTERM_BP_DIRECT GO:0007052~mitotic spindle organization 10 0.5973715651135006 0.0012596340498975155 KIF11_HUMAN, SUN2_HUMAN, KIF2A_HUMAN, WDR62_HUMAN, CLAP2_HUMAN, MAP4_HUMAN, PCNT_HUMAN, STMN1_HUMAN, CLAP1_HUMAN, SMC3_HUMAN 1574 30 16792 3.5561202880135534 0.996032019009983 0.060238528523423596 2.337875514528831 -GOTERM_BP_DIRECT GO:0043488~regulation of mRNA stability 21 1.2544802867383513 0.0012669262682238683 PUM2_HUMAN, EXOS5_HUMAN, KPCD_HUMAN, IF4G1_HUMAN, B2RDW1_HUMAN, PSD11_HUMAN, PUM1_HUMAN, RN5A_HUMAN, TNPO1_HUMAN, ZC3HE_HUMAN, DCP2_HUMAN, CHSP1_HUMAN, KPCA_HUMAN, G3V1J5_HUMAN, AKT1_HUMAN, 1433B_HUMAN, DCP1A_HUMAN, PRS6B_HUMAN, PAIRB_HUMAN, RC3H1_HUMAN, MAPK2_HUMAN 1574 103 16792 2.1751027004354744 0.9961571050640988 0.05992420132069343 2.351257950257002 -GOTERM_BP_DIRECT GO:0009411~response to UV 12 0.7168458781362007 0.0013114377902122532 UBP1_HUMAN, RAD18_HUMAN, PML_HUMAN, CIRBP_HUMAN, MEN1_HUMAN, ERCC3_HUMAN, TF2H2_HUMAN, DTL_HUMAN, USF1_HUMAN, ERCC5_HUMAN, CCAR2_HUMAN, MSH6_HUMAN 1574 42 16792 3.0481031040116173 0.9968395897062743 0.061304678147909186 2.4329063776037274 -GOTERM_BP_DIRECT GO:0000375~RNA splicing, via transesterification reactions 9 0.5376344086021506 0.0014705239730993154 PRP6_HUMAN, TRA2B_HUMAN, TXN4A_HUMAN, SRS10_HUMAN, SF3A3_HUMAN, SCAFB_HUMAN, SF3B1_HUMAN, DDX23_HUMAN, PRPF3_HUMAN 1574 25 16792 3.8406099110546377 0.9984288330241696 0.06776767940730966 2.7241935465897593 -GOTERM_BP_DIRECT GO:0007094~mitotic spindle assembly checkpoint 8 0.4778972520908005 0.001618334932691417 PSMG2_HUMAN, TPR_HUMAN, MD2L1_HUMAN, PLK1_HUMAN, APC_HUMAN, ATM_HUMAN, BUB1B_HUMAN, CENPF_HUMAN 1574 20 16792 4.267344345616264 0.9991793274321525 0.0735563021557124 2.994097746667923 -GOTERM_BP_DIRECT GO:0032869~cellular response to insulin stimulus 17 1.015531660692951 0.0018073573226246905 ABEC1_HUMAN, STAT1_HUMAN, RAB8A_HUMAN, 1433G_HUMAN, USF1_HUMAN, SP1_HUMAN, CPEB1_HUMAN, EF2K_HUMAN, GSK3A_HUMAN, LPIN1_HUMAN, AKT1_HUMAN, C2CD5_HUMAN, AKT2_HUMAN, MYO5A_HUMAN, SRSF5_HUMAN, SL9A1_HUMAN, TBCD4_HUMAN 1574 77 16792 2.3553523985544316 0.99964238385804 0.08096040054247977 3.338221442352962 -GOTERM_BP_DIRECT GO:0019827~stem cell population maintenance 13 0.7765830346475507 0.0018300394335801333 KLF4_HUMAN, CDC73_HUMAN, RIF1_HUMAN, SET1A_HUMAN, NIPBL_HUMAN, DDX6_HUMAN, CTR9_HUMAN, 4ET_HUMAN, LEO1_HUMAN, SMC3_HUMAN, PAF1_HUMAN, MED17_HUMAN, NOTC2_HUMAN 1574 50 16792 2.7737738246505717 0.9996763144695872 0.08110803147480738 3.3794374883378886 -GOTERM_BP_DIRECT GO:0015031~protein transport 56 3.345280764635603 0.001842382690608249 GORS1_HUMAN, ENPL_HUMAN, TMED3_HUMAN, NASP_HUMAN, PSN1_HUMAN, CORO7_HUMAN, DOP2_HUMAN, COG4_HUMAN, CENPF_HUMAN, TIM50_HUMAN, BTF3_HUMAN, GLE1_HUMAN, SNP29_HUMAN, JKIP1_HUMAN, SNX20_HUMAN, KTN1_HUMAN, TOM1_HUMAN, RFIP1_HUMAN, COG1_HUMAN, GBF1_HUMAN, AGAP2_HUMAN, TRAM1_HUMAN, SC22B_HUMAN, MB12A_HUMAN, DGKD_HUMAN, EXOC7_HUMAN, CAPS1_HUMAN, LMAN1_HUMAN, ACAP1_HUMAN, CD3G_HUMAN, ENY2_HUMAN, SCFD1_HUMAN, SPIR1_HUMAN, ARF4_HUMAN, BIG2_HUMAN, COMD1_HUMAN, EXOC1_HUMAN, SCAM3_HUMAN, SNX22_HUMAN, VP37B_HUMAN, PHAX_HUMAN, CHMP7_HUMAN, RINT1_HUMAN, SNP23_HUMAN, EXOC4_HUMAN, RAB4A_HUMAN, 4ET_HUMAN, SCAM2_HUMAN, TIM13_HUMAN, STXB5_HUMAN, SENP2_HUMAN, LYST_HUMAN, MCFD2_HUMAN, J3KNL6_HUMAN, ATG4D_HUMAN, PO210_HUMAN 1574 395 16792 1.5124764769272836 0.9996934064352198 0.08081760390701587 3.401859637486737 -GOTERM_BP_DIRECT GO:0071897~DNA biosynthetic process 9 0.5376344086021506 0.0019516845965550467 DNLI1_HUMAN, MBB1A_HUMAN, A8K401_HUMAN, KITH_HUMAN, DNLI3_HUMAN, CTGF_HUMAN, TDT_HUMAN, DPOA2_HUMAN, CENPF_HUMAN 1574 26 16792 3.6928941452448436 0.9998103644362626 0.08456389090361993 3.6001972274179117 -GOTERM_BP_DIRECT GO:0000245~spliceosomal complex assembly 9 0.5376344086021506 0.0019516845965550467 PRP6_HUMAN, TXN4A_HUMAN, DX39B_HUMAN, SNUT2_HUMAN, SCAFB_HUMAN, SF3B1_HUMAN, SRPK2_HUMAN, GCFC2_HUMAN, RBM5_HUMAN 1574 26 16792 3.6928941452448436 0.9998103644362626 0.08456389090361993 3.6001972274179117 -GOTERM_BP_DIRECT GO:0006259~DNA metabolic process 9 0.5376344086021506 0.0019516845965550467 DNLI1_HUMAN, MY18A_HUMAN, DNS2A_HUMAN, KI67_HUMAN, KITH_HUMAN, TOPB1_HUMAN, IMA1_HUMAN, RECQ5_HUMAN, TDT_HUMAN 1574 26 16792 3.6928941452448436 0.9998103644362626 0.08456389090361993 3.6001972274179117 -GOTERM_BP_DIRECT GO:0008285~negative regulation of cell proliferation 56 3.345280764635603 0.001959992290707214 ABI1_HUMAN, PDS5B_HUMAN, CHERP_HUMAN, E2F7_HUMAN, MERL_HUMAN, MTG16_HUMAN, PLMN_HUMAN, JARD2_HUMAN, E2AK2_HUMAN, MAGI2_HUMAN, DDX20_HUMAN, CHP3_HUMAN, PB1_HUMAN, RBM5_HUMAN, NOTC2_HUMAN, ETS1_HUMAN, ARID2_HUMAN, TGFB2_HUMAN, SOX4_HUMAN, AMRA1_HUMAN, CDC6_HUMAN, ZEB1_HUMAN, CGRF1_HUMAN, DLG5_HUMAN, CDC73_HUMAN, WNK2_HUMAN, TNR8_HUMAN, PTN6_HUMAN, BCL6_HUMAN, RB_HUMAN, ETV3_HUMAN, TSC2_HUMAN, NPM_HUMAN, HMGA1_HUMAN, CUL4A_HUMAN, APC_HUMAN, L7RRS6_HUMAN, KLF4_HUMAN, PML_HUMAN, CDK6_HUMAN, NOTC1_HUMAN, A8K401_HUMAN, MEN1_HUMAN, MTBP_HUMAN, HSF1_HUMAN, TOB1_HUMAN, DNJB2_HUMAN, KLF10_HUMAN, SRF_HUMAN, PTN2_HUMAN, BTG1_HUMAN, TFAP4_HUMAN, NCK2_HUMAN, NDRG1_HUMAN, TGFB1_HUMAN, MDM4_HUMAN 1574 396 16792 1.508657091884538 0.9998171644950508 0.08407953981075655 3.615256468047723 -GOTERM_BP_DIRECT GO:0032508~DNA duplex unwinding 12 0.7168458781362007 0.001974355340925797 CHD1_HUMAN, CHD3_HUMAN, BLM_HUMAN, G3BP1_HUMAN, CHD8_HUMAN, DDX3X_HUMAN, POTE1_HUMAN, RECQ5_HUMAN, SMBP2_HUMAN, CHD2_HUMAN, MCM3_HUMAN, RECQ4_HUMAN 1574 44 16792 2.9095529629201806 0.9998283509526524 0.08385107841625083 3.6412869140050597 -GOTERM_BP_DIRECT GO:0006270~DNA replication initiation 10 0.5973715651135006 0.0020809071244235105 UB2R1_HUMAN, CDC6_HUMAN, TOPB1_HUMAN, ORC3_HUMAN, DPOE1_HUMAN, ORC1_HUMAN, MCM10_HUMAN, DPOA2_HUMAN, MCM3_HUMAN, MCM4_HUMAN 1574 32 16792 3.3338627700127064 0.9998925463525351 0.08733328596202905 3.8341851444422814 -GOTERM_BP_DIRECT GO:0071260~cellular response to mechanical stimulus 16 0.955794504181601 0.0020871741591304213 CASP2_HUMAN, NFKB1_HUMAN, TLR4_HUMAN, EGFR_HUMAN, BAD_HUMAN, GDIR1_HUMAN, TNR8_HUMAN, TNR6_HUMAN, MTPN_HUMAN, M3K2_HUMAN, AKT1_HUMAN, C8AP2_HUMAN, SL9A1_HUMAN, TGFB1_HUMAN, CHK1_HUMAN, CRADD_HUMAN 1574 71 16792 2.404137659502121 0.9998954663875678 0.08675628371913202 3.845519409469722 -GOTERM_BP_DIRECT GO:0075522~IRES-dependent viral translational initiation 5 0.2986857825567503 0.0021289934200312815 EIF3F_HUMAN, PTBP1_HUMAN, LA_HUMAN, EIF3A_HUMAN, PCBP2_HUMAN 1574 7 16792 7.620257760029044 0.9999130215833177 0.08758942790508062 3.9211193929634125 -GOTERM_BP_DIRECT GO:0017148~negative regulation of translation 14 0.8363201911589008 0.0023291508713007497 NANO1_HUMAN, CNOT2_HUMAN, FXR1_HUMAN, TOB1_HUMAN, CIRBP_HUMAN, 4ET_HUMAN, RACK1_HUMAN, DAPK3_HUMAN, IF2B1_HUMAN, E2AK2_HUMAN, DDX3X_HUMAN, CNOT3_HUMAN, RBM4_HUMAN, FXR2_HUMAN 1574 58 16792 2.575121587871884 0.9999639247309857 0.09454658216494138 4.282181281034026 -GOTERM_BP_DIRECT GO:0006275~regulation of DNA replication 7 0.4181600955794504 0.002346683384770941 ANR17_HUMAN, GRDN_HUMAN, A2ABF8_HUMAN, SMC3_HUMAN, ESCO1_HUMAN, RBBP6_HUMAN, NUCKS_HUMAN 1574 16 16792 4.667407878017789 0.9999666014601316 0.09435307247301106 4.313746731995661 -GOTERM_BP_DIRECT GO:0032880~regulation of protein localization 13 0.7765830346475507 0.0026119623475919914 BCL2_HUMAN, DNJB6_HUMAN, STX10_HUMAN, DNJB2_HUMAN, RACK1_HUMAN, PKHM2_HUMAN, TBCD1_HUMAN, GDIR1_HUMAN, AAK1_HUMAN, PRIO_HUMAN, RL1D1_HUMAN, AKT1_HUMAN, UFL1_HUMAN 1574 52 16792 2.667090216010165 0.9999895996359458 0.10351439702411014 4.79015268226235 -GOTERM_BP_DIRECT GO:0051092~positive regulation of NF-kappaB transcription factor activity 24 1.4336917562724014 0.0028543833100105782 NPM_HUMAN, KPCT_HUMAN, DDRGK_HUMAN, HOIL1_HUMAN, KPCL_HUMAN, LRRF1_HUMAN, B2RDW1_HUMAN, CD40L_HUMAN, LYRIC_HUMAN, TRFL_HUMAN, NFKB1_HUMAN, TAB3_HUMAN, TLR4_HUMAN, TE2IP_HUMAN, NEMO_HUMAN, RNF31_HUMAN, UBE2N_HUMAN, MTPN_HUMAN, TLR9_HUMAN, E2AK2_HUMAN, M3K7_HUMAN, TGFB1_HUMAN, RNF25_HUMAN, TPPC9_HUMAN 1574 133 16792 1.925117749902074 0.9999964197760812 0.11157290669239561 5.223544246416523 -GOTERM_BP_DIRECT GO:0000186~activation of MAPKK activity 12 0.7168458781362007 0.0028868102116108383 M3K4_HUMAN, RPGF1_HUMAN, PLCG1_HUMAN, M3K2_HUMAN, E2AK2_HUMAN, PSN1_HUMAN, M3K5_HUMAN, M3K7_HUMAN, KDIS_HUMAN, CRKL_HUMAN, L7RRS6_HUMAN, EGFR_HUMAN 1574 46 16792 2.7830506601845206 0.9999968957908194 0.11177517655482871 5.281374084270462 -GOTERM_BP_DIRECT GO:0090316~positive regulation of intracellular protein transport 8 0.4778972520908005 0.0030135992159409718 KI20B_HUMAN, TPR_HUMAN, PCM1_HUMAN, PCNT_HUMAN, ICE1_HUMAN, CP131_HUMAN, RBM22_HUMAN, CDC42_HUMAN 1574 22 16792 3.8794039505602407 0.9999982230653027 0.11538109307141864 5.507167921510458 -GOTERM_BP_DIRECT GO:0032435~negative regulation of proteasomal ubiquitin-dependent protein catabolic process 8 0.4778972520908005 0.0030135992159409718 B4DHN5_HUMAN, BAG6_HUMAN, TOPK_HUMAN, WAC_HUMAN, TLK2_HUMAN, SENP1_HUMAN, CCAR2_HUMAN, SMRC1_HUMAN 1574 22 16792 3.8794039505602407 0.9999982230653027 0.11538109307141864 5.507167921510458 -GOTERM_BP_DIRECT GO:0030334~regulation of cell migration 16 0.955794504181601 0.003190323580550421 PLXC1_HUMAN, NET1_HUMAN, SLK_HUMAN, DOC10_HUMAN, CXCR4_HUMAN, PLXB2_HUMAN, PLXB1_HUMAN, RTN4_HUMAN, RHOA_HUMAN, LDB1_HUMAN, AKT1_HUMAN, AKT2_HUMAN, SGK3_HUMAN, RHOB_HUMAN, TGFB1_HUMAN, LMNA_HUMAN 1574 74 16792 2.306672619252035 0.999999183568604 0.12068182013925444 5.821039779175163 -GOTERM_BP_DIRECT GO:0048024~regulation of mRNA splicing, via spliceosome 6 0.35842293906810035 0.0032349817935498557 SRS10_HUMAN, YTDC1_HUMAN, SRPK2_HUMAN, KHDR1_HUMAN, CWC22_HUMAN, SON_HUMAN 1574 12 16792 5.3341804320203305 0.999999329250416 0.12122473975687309 5.900198769513121 -GOTERM_BP_DIRECT GO:0000244~spliceosomal tri-snRNP complex assembly 6 0.35842293906810035 0.0032349817935498557 PRP6_HUMAN, SRS10_HUMAN, CD2B2_HUMAN, DDX20_HUMAN, PRPF3_HUMAN, PRP31_HUMAN 1574 12 16792 5.3341804320203305 0.999999329250416 0.12122473975687309 5.900198769513121 -GOTERM_BP_DIRECT GO:0006357~regulation of transcription from RNA polymerase II promoter 60 3.584229390681003 0.0032637501763606303 BRD3_HUMAN, ARI4A_HUMAN, SP2_HUMAN, TFDP2_HUMAN, JMY_HUMAN, ZBED4_HUMAN, TADA3_HUMAN, WDR75_HUMAN, CHD2_HUMAN, MK14_HUMAN, FOXK2_HUMAN, CNOT2_HUMAN, ZN446_HUMAN, LRRF1_HUMAN, ZEB1_HUMAN, TCAL4_HUMAN, NUCKS_HUMAN, STA5B_HUMAN, TAL2_HUMAN, CIR1_HUMAN, LPIN1_HUMAN, SMCA5_HUMAN, Q9HBD4_HUMAN, RB_HUMAN, SNW1_HUMAN, CREB1_HUMAN, ETV3_HUMAN, PKN1_HUMAN, RMP_HUMAN, COT2_HUMAN, SAFB2_HUMAN, HTF4_HUMAN, NFAC3_HUMAN, GTF2I_HUMAN, HNRPK_HUMAN, ENY2_HUMAN, NFKB1_HUMAN, USF1_HUMAN, STAT2_HUMAN, KLF12_HUMAN, HTSF1_HUMAN, SLTM_HUMAN, MED17_HUMAN, FOXK1_HUMAN, SMRC1_HUMAN, UBN1_HUMAN, MITF_HUMAN, TREF1_HUMAN, SAFB1_HUMAN, SMBP2_HUMAN, RBL1_HUMAN, HMGN1_HUMAN, ARI4B_HUMAN, CHD1_HUMAN, CHD3_HUMAN, RAD21_HUMAN, SMRC2_HUMAN, MAGD1_HUMAN, ELOA1_HUMAN, LGUL_HUMAN 1574 441 16792 1.4514776685769608 0.9999994090227371 0.12120409410721544 5.951158851931826 -GOTERM_BP_DIRECT GO:0000060~protein import into nucleus, translocation 9 0.5376344086021506 0.0032793331076872425 NTF2_HUMAN, PHB2_HUMAN, AKT1_HUMAN, SC61B_HUMAN, BCL6_HUMAN, TNPO1_HUMAN, RBM22_HUMAN, TGFB1_HUMAN, DPOA2_HUMAN 1574 28 16792 3.4291159920130694 0.9999994481971424 0.12072834931829812 5.978751421230443 -GOTERM_BP_DIRECT GO:0001932~regulation of protein phosphorylation 10 0.5973715651135006 0.003280437439320635 BAKOR_HUMAN, PHIP_HUMAN, GRDN_HUMAN, PML_HUMAN, APOA1_HUMAN, TADA3_HUMAN, DAPLE_HUMAN, PLXB2_HUMAN, STAT2_HUMAN, FINC_HUMAN 1574 34 16792 3.137753195306076 0.9999994508727524 0.11976450745003753 5.980706561401594 -GOTERM_BP_DIRECT GO:0051571~positive regulation of histone H3-K4 methylation 7 0.4181600955794504 0.0033420050818791726 DNMT1_HUMAN, CTR9_HUMAN, NELFE_HUMAN, SNW1_HUMAN, DNM3B_HUMAN, OGT1_HUMAN, MYB_HUMAN 1574 17 16792 4.392854473428507 0.9999995812242288 0.12087127679263987 6.089646799320114 -GOTERM_BP_DIRECT GO:1900364~negative regulation of mRNA polyadenylation 5 0.2986857825567503 0.003942851297078999 CCNT1_HUMAN, CTR9_HUMAN, NELFE_HUMAN, CDK9_HUMAN, ZC3HE_HUMAN 1574 8 16792 6.667725540025413 0.999999970280988 0.139901629370494 7.146552643156268 -GOTERM_BP_DIRECT GO:0051439~regulation of ubiquitin-protein ligase activity involved in mitotic cell cycle 8 0.4778972520908005 0.0039864639752715935 UB2E1_HUMAN, CDK1_HUMAN, UB2D1_HUMAN, CDK2_HUMAN, PLK1_HUMAN, CDC26_HUMAN, CDC20_HUMAN, APC1_HUMAN 1574 23 16792 3.7107342135793604 0.9999999754749122 0.14020840643725863 7.222828608170529 -GOTERM_BP_DIRECT GO:0071549~cellular response to dexamethasone stimulus 9 0.5376344086021506 0.004162621292556037 CBX3_HUMAN, KS6B1_HUMAN, TFAP4_HUMAN, HNRPU_HUMAN, PEDF_HUMAN, 4EBP1_HUMAN, DNM3B_HUMAN, TGFB1_HUMAN, EGFR_HUMAN 1574 29 16792 3.310870612978136 0.9999999887120844 0.1447883234985854 7.530313952221368 -GOTERM_BP_DIRECT GO:2000249~regulation of actin cytoskeleton reorganization 7 0.4181600955794504 0.004620328431242991 GDIR2_HUMAN, PHP14_HUMAN, DAPK3_HUMAN, GDIR1_HUMAN, TGFB1_HUMAN, ABL2_HUMAN, ABL1_HUMAN 1574 18 16792 4.14880700268248 0.9999999984978241 0.15816602832350368 8.324745165270953 -GOTERM_BP_DIRECT GO:0016055~Wnt signaling pathway 30 1.7921146953405016 0.00469912882730544 AES_HUMAN, B2RDW1_HUMAN, CYLD_HUMAN, DVL2_HUMAN, NDRG2_HUMAN, APC_HUMAN, MARK2_HUMAN, WWOX_HUMAN, ARL6_HUMAN, LDB1_HUMAN, GSK3A_HUMAN, DDX3X_HUMAN, LEO1_HUMAN, DVL3_HUMAN, TLE4_HUMAN, AMOL1_HUMAN, CTR9_HUMAN, CSK21_HUMAN, KC1D_HUMAN, MARK4_HUMAN, CCAR2_HUMAN, CDC73_HUMAN, TNKS2_HUMAN, SENP2_HUMAN, KC1A_HUMAN, DAPLE_HUMAN, DVL1_HUMAN, PAF1_HUMAN, LRRF2_HUMAN, CCNY_HUMAN 1574 187 16792 1.7115017428942236 0.9999999989385893 0.15940412163347029 8.460863442499011 -GOTERM_BP_DIRECT GO:0045197~establishment or maintenance of epithelial cell apical/basal polarity 6 0.35842293906810035 0.004854781545438792 ARF4_HUMAN, DLG5_HUMAN, MTCL1_HUMAN, DLG2_HUMAN, MARK2_HUMAN, ERBIN_HUMAN 1574 13 16792 4.923858860326459 0.9999999994655554 0.16298638431167 8.729172881742498 -GOTERM_BP_DIRECT GO:0006446~regulation of translational initiation 10 0.5973715651135006 0.004965906280110918 IF4B_HUMAN, EIF3F_HUMAN, EIF3C_HUMAN, IF4G1_HUMAN, GLE1_HUMAN, EIF3M_HUMAN, EIF3A_HUMAN, NCBP1_HUMAN, IF4H_HUMAN, EI2BA_HUMAN 1574 36 16792 2.963433573344628 0.9999999996725556 0.16514181893246815 8.92027063214098 -GOTERM_BP_DIRECT GO:0030099~myeloid cell differentiation 8 0.4778972520908005 0.005179774627208753 RUNX1_HUMAN, PML_HUMAN, IRF8_HUMAN, BCL6_HUMAN, TPO_HUMAN, KAT6A_HUMAN, IF16_HUMAN, PIR_HUMAN 1574 24 16792 3.556120288013554 0.9999999998724773 0.17034362039983975 9.286987843188754 -GOTERM_BP_DIRECT GO:0006461~protein complex assembly 21 1.2544802867383513 0.005365129495209668 CAF1B_HUMAN, HMGA1_HUMAN, WIPF1_HUMAN, CD3E_HUMAN, MITF_HUMAN, PARD3_HUMAN, APC_HUMAN, CD3G_HUMAN, DLG5_HUMAN, TFAP4_HUMAN, MDN1_HUMAN, A7UKX8_HUMAN, CDK1_HUMAN, TNR6_HUMAN, PML_HUMAN, WASP_HUMAN, L2GL1_HUMAN, SSBP3_HUMAN, APBA1_HUMAN, MDM2_HUMAN, MDM4_HUMAN, CAF1A_HUMAN 1574 116 16792 1.9313411909039127 0.9999999999436923 0.1745870351336204 9.60368221716571 -GOTERM_BP_DIRECT GO:0070301~cellular response to hydrogen peroxide 13 0.7765830346475507 0.005789576780518736 CBX8_HUMAN, HSF1_HUMAN, KPCD_HUMAN, KDM6B_HUMAN, ABL1_HUMAN, KLF4_HUMAN, A7UKX8_HUMAN, CDK1_HUMAN, HDAC2_HUMAN, MDM2_HUMAN, M3K5_HUMAN, RHOB_HUMAN, KLF2_HUMAN, ETS1_HUMAN 1574 57 16792 2.4331349339040105 0.9999999999913433 0.18569872166584267 10.324947820502805 -GOTERM_BP_DIRECT GO:1902017~regulation of cilium assembly 10 0.5973715651135006 0.006027456798514148 IF140_HUMAN, TB10B_HUMAN, CYLD_HUMAN, TB10C_HUMAN, TBC15_HUMAN, TBC13_HUMAN, TBCD5_HUMAN, TB22B_HUMAN, TB10A_HUMAN, TBCD1_HUMAN 1574 37 16792 2.8833407740650436 0.99999999999697 0.19118067664332195 10.726792733694301 -GOTERM_BP_DIRECT GO:0007162~negative regulation of cell adhesion 10 0.5973715651135006 0.006027456798514148 GDIR2_HUMAN, LEUK_HUMAN, GDIR1_HUMAN, HAKAI_HUMAN, FBLN1_HUMAN, SIPA1_HUMAN, PLXB2_HUMAN, SEM4D_HUMAN, PLXB1_HUMAN, ADA10_HUMAN 1574 37 16792 2.8833407740650436 0.99999999999697 0.19118067664332195 10.726792733694301 -GOTERM_BP_DIRECT GO:0051276~chromosome organization 7 0.4181600955794504 0.006224965356798426 GEM_HUMAN, SFPQ_HUMAN, BOREA_HUMAN, SMC4_HUMAN, PTTG1_HUMAN, RAD54_HUMAN, CENPT_HUMAN 1574 19 16792 3.9304487393834013 0.9999999999987329 0.19540391771868204 11.059143181766773 -GOTERM_BP_DIRECT GO:0045638~negative regulation of myeloid cell differentiation 7 0.4181600955794504 0.006224965356798426 CDC73_HUMAN, CDK6_HUMAN, CTR9_HUMAN, RBM15_HUMAN, LEO1_HUMAN, PAF1_HUMAN, HMGB3_HUMAN 1574 19 16792 3.9304487393834013 0.9999999999987329 0.19540391771868204 11.059143181766773 -GOTERM_BP_DIRECT GO:0006892~post-Golgi vesicle-mediated transport 7 0.4181600955794504 0.006224965356798426 SNP23_HUMAN, SCAM3_HUMAN, STX4_HUMAN, SCAM2_HUMAN, GBF1_HUMAN, SCFD1_HUMAN, MYO5A_HUMAN 1574 19 16792 3.9304487393834013 0.9999999999987329 0.19540391771868204 11.059143181766773 -GOTERM_BP_DIRECT GO:0046827~positive regulation of protein export from nucleus 7 0.4181600955794504 0.006224965356798426 KAPCA_HUMAN, TPR_HUMAN, A7UKX8_HUMAN, 1433S_HUMAN, EMD_HUMAN, MDM2_HUMAN, AN32B_HUMAN, GTSE1_HUMAN 1574 19 16792 3.9304487393834013 0.9999999999987329 0.19540391771868204 11.059143181766773 -GOTERM_BP_DIRECT GO:0043536~positive regulation of blood vessel endothelial cell migration 7 0.4181600955794504 0.006224965356798426 TSP1_HUMAN, AMOL1_HUMAN, PLCG1_HUMAN, KPCA_HUMAN, AKT1_HUMAN, TGFB1_HUMAN, MK14_HUMAN 1574 19 16792 3.9304487393834013 0.9999999999987329 0.19540391771868204 11.059143181766773 -GOTERM_BP_DIRECT GO:0010501~RNA secondary structure unwinding 11 0.6571087216248507 0.006488734065520407 DDX52_HUMAN, DX39B_HUMAN, DDX42_HUMAN, DDX21_HUMAN, DDX6_HUMAN, DDX3X_HUMAN, DDX20_HUMAN, DDX23_HUMAN, AGO1_HUMAN, DDX28_HUMAN, DDX55_HUMAN 1574 44 16792 2.6670902160101653 0.9999999999996045 0.201382119305476 11.501164103599193 -GOTERM_BP_DIRECT GO:0007184~SMAD protein import into nucleus 5 0.2986857825567503 0.006573723327550498 TGFB2_HUMAN, PML_HUMAN, TOB1_HUMAN, SPTB2_HUMAN, TGFB1_HUMAN 1574 9 16792 5.926867146689256 0.9999999999997283 0.2023201085209856 11.643144668577532 -GOTERM_BP_DIRECT GO:0050684~regulation of mRNA processing 5 0.2986857825567503 0.006573723327550498 IWS1_HUMAN, SAFB2_HUMAN, SPT6H_HUMAN, SAFB1_HUMAN, SLTM_HUMAN 1574 9 16792 5.926867146689256 0.9999999999997283 0.2023201085209856 11.643144668577532 -GOTERM_BP_DIRECT GO:0016570~histone modification 5 0.2986857825567503 0.006573723327550498 CDC73_HUMAN, CTR9_HUMAN, PAF1_HUMAN, BPL1_HUMAN, AURKB_HUMAN 1574 9 16792 5.926867146689256 0.9999999999997283 0.2023201085209856 11.643144668577532 -GOTERM_BP_DIRECT GO:0034198~cellular response to amino acid starvation 8 0.4778972520908005 0.006622260992947117 DAP1_HUMAN, WDR24_HUMAN, RRAGC_HUMAN, E2AK2_HUMAN, IF2A_HUMAN, WDR59_HUMAN, RRAGA_HUMAN, RRAGB_HUMAN 1574 25 16792 3.4138754764930117 0.9999999999997807 0.20224776439778336 11.724133493133781 -GOTERM_BP_DIRECT GO:0000070~mitotic sister chromatid segregation 8 0.4778972520908005 0.006622260992947117 DSN1_HUMAN, SPAG5_HUMAN, NEK2_HUMAN, KIFC1_HUMAN, MD2L1_HUMAN, PLK1_HUMAN, SMC4_HUMAN, NUSAP_HUMAN 1574 25 16792 3.4138754764930117 0.9999999999997807 0.20224776439778336 11.724133493133781 -GOTERM_BP_DIRECT GO:0001578~microtubule bundle formation 8 0.4778972520908005 0.006622260992947117 MTCL1_HUMAN, CLIP1_HUMAN, PRC1_HUMAN, NCK5L_HUMAN, A0A5E8_HUMAN, CLAP1_HUMAN, PLK1_HUMAN, MARK4_HUMAN 1574 25 16792 3.4138754764930117 0.9999999999997807 0.20224776439778336 11.724133493133781 -GOTERM_BP_DIRECT GO:0008283~cell proliferation 50 2.986857825567503 0.006667492633985729 LARP1_HUMAN, PDS5B_HUMAN, DKC1_HUMAN, PLK1_HUMAN, NASP_HUMAN, MCM10_HUMAN, TPX2_HUMAN, CENPF_HUMAN, MTG16_HUMAN, PAK4_HUMAN, CD5_HUMAN, AKT1_HUMAN, RRN3_HUMAN, KHDR1_HUMAN, BUB1B_HUMAN, TPOR_HUMAN, TGFB2_HUMAN, DP13A_HUMAN, KI67_HUMAN, SIPA1_HUMAN, BPL1_HUMAN, PEDF_HUMAN, ZEB1_HUMAN, TACC3_HUMAN, PURB_HUMAN, MARE2_HUMAN, RS27_HUMAN, PTN6_HUMAN, MPIP1_HUMAN, CDK9_HUMAN, AURKB_HUMAN, BCL2_HUMAN, NUDC_HUMAN, UBR5_HUMAN, L7RRS6_HUMAN, B3KTM8_HUMAN, EGFR_HUMAN, CDK1_HUMAN, PA2G4_HUMAN, K1C16_HUMAN, DLGP5_HUMAN, H33_HUMAN, SRRT_HUMAN, TPO_HUMAN, CD81_HUMAN, KLF10_HUMAN, IF16_HUMAN, E2F8_HUMAN, HXB4_HUMAN, MDM4_HUMAN 1574 366 16792 1.4574263475465385 0.9999999999998205 0.20208697883954674 11.799542695216836 -GOTERM_BP_DIRECT GO:0031047~gene silencing by RNA 20 1.1947431302270013 0.007080127043210724 P121A_HUMAN, CNOT2_HUMAN, TPR_HUMAN, NU107_HUMAN, H33_HUMAN, RPB11_HUMAN, SND1_HUMAN, NUP98_HUMAN, NU153_HUMAN, NUP88_HUMAN, RAE1L_HUMAN, RBP2_HUMAN, NU133_HUMAN, CNOT3_HUMAN, H32_HUMAN, RPB1_HUMAN, PO210_HUMAN, AGO1_HUMAN, NCBP1_HUMAN, NU205_HUMAN 1574 111 16792 1.922227182710029 0.999999999999971 0.21175516190289956 12.484667536845917 -GOTERM_BP_DIRECT GO:0051294~establishment of spindle orientation 4 0.23894862604540024 0.0070979107531244385 L2GL1_HUMAN, SPAG5_HUMAN, MAP4_HUMAN, CLAP1_HUMAN 1574 5 16792 8.534688691232528 0.9999999999999731 0.21080288672203307 12.514081484538163 -GOTERM_BP_DIRECT GO:0006888~ER to Golgi vesicle-mediated transport 26 1.5531660692951015 0.007506871548813647 GORS1_HUMAN, TMED3_HUMAN, SPTB2_HUMAN, LMAN1_HUMAN, COG4_HUMAN, ARF4_HUMAN, CO7A1_HUMAN, CATC_HUMAN, GOSR2_HUMAN, DC1I2_HUMAN, CR3L2_HUMAN, COG1_HUMAN, GBF1_HUMAN, CD59_HUMAN, TPPC8_HUMAN, TPPC3_HUMAN, RAB1A_HUMAN, SC22B_HUMAN, MCFD2_HUMAN, DAF_HUMAN, S23IP_HUMAN, COG7_HUMAN, TPC2L_HUMAN, VAPA_HUMAN, SPTN1_HUMAN, SNAA_HUMAN 1574 160 16792 1.7336086404066073 0.9999999999999956 0.22006754267526152 13.187918806606447 -GOTERM_BP_DIRECT GO:0006367~transcription initiation from RNA polymerase II promoter 25 1.4934289127837514 0.007637643739464855 ERCC3_HUMAN, MED1_HUMAN, GTF2I_HUMAN, NRBF2_HUMAN, F1D8N3_HUMAN, TR150_HUMAN, NOTC1_HUMAN, MED13_HUMAN, MED17_HUMAN, E2F3_HUMAN, NOTC2_HUMAN, TF2B_HUMAN, MAML1_HUMAN, T2EB_HUMAN, RPB11_HUMAN, T2FA_HUMAN, TF2H2_HUMAN, COT1_HUMAN, F1D8N4_HUMAN, E2F2_HUMAN, RPB1_HUMAN, CTGF_HUMAN, CDK9_HUMAN, SNW1_HUMAN, TAF12_HUMAN, Q7LCB3_HUMAN 1574 152 16792 1.7546646157961614 0.9999999999999976 0.22198316231442183 13.402350936687357 -GOTERM_BP_DIRECT GO:0070911~global genome nucleotide-excision repair 9 0.5376344086021506 0.007928507449692083 B2RDW1_HUMAN, UBE2N_HUMAN, SUMO2_HUMAN, ERCC3_HUMAN, CUL4A_HUMAN, TF2H2_HUMAN, XPC_HUMAN, CHD1L_HUMAN, UBP45_HUMAN 1574 32 16792 3.0004764930114356 0.9999999999999993 0.22792527286580166 13.877494608133055 -GOTERM_BP_DIRECT GO:0061024~membrane organization 9 0.5376344086021506 0.007928507449692083 GRDN_HUMAN, RAB8A_HUMAN, LCAP_HUMAN, 1433B_HUMAN, 1433G_HUMAN, 1433S_HUMAN, TBCD4_HUMAN, MBP_HUMAN, TBCD1_HUMAN 1574 32 16792 3.0004764930114356 0.9999999999999993 0.22792527286580166 13.877494608133055 -GOTERM_BP_DIRECT GO:0007010~cytoskeleton organization 26 1.5531660692951015 0.008118941233335371 FGD6_HUMAN, SI1L3_HUMAN, SH3K1_HUMAN, TBB4A_HUMAN, FMNL1_HUMAN, SPTB2_HUMAN, LIMD1_HUMAN, BLK_HUMAN, PAK4_HUMAN, CAMP1_HUMAN, ACTB_HUMAN, PALLD_HUMAN, K1C16_HUMAN, SPN90_HUMAN, ABLM1_HUMAN, K2C5_HUMAN, SVIL_HUMAN, PHIP_HUMAN, MOES_HUMAN, SIPA1_HUMAN, ADDG_HUMAN, APOE_HUMAN, FGD1_HUMAN, PR40A_HUMAN, SPTN1_HUMAN, MAST3_HUMAN 1574 161 16792 1.7228408848761314 0.9999999999999997 0.23123081180376548 14.187241755896752 -GOTERM_BP_DIRECT GO:0043547~positive regulation of GTPase activity 71 4.241338112305854 0.009224097669232538 FGD6_HUMAN, AKP13_HUMAN, DNMBP_HUMAN, PKHG2_HUMAN, DVL2_HUMAN, SRGP3_HUMAN, NF1_HUMAN, RHG35_HUMAN, SPTB2_HUMAN, DOC10_HUMAN, RHG44_HUMAN, GAPD1_HUMAN, PSD3_HUMAN, EI2BA_HUMAN, PLXB1_HUMAN, SEM4D_HUMAN, GIT2_HUMAN, EI2BD_HUMAN, L2GL1_HUMAN, SC61B_HUMAN, RHG09_HUMAN, GRP2_HUMAN, DVL3_HUMAN, DOCK2_HUMAN, J3KN59_HUMAN, RGS3_HUMAN, RGS6_HUMAN, SIPA1_HUMAN, GBF1_HUMAN, AGAP2_HUMAN, ELMO1_HUMAN, RHG19_HUMAN, MTMR5_HUMAN, GDIR1_HUMAN, RIC8A_HUMAN, ARHG7_HUMAN, EI2BG_HUMAN, LAT_HUMAN, RGS12_HUMAN, ARHG6_HUMAN, GMIP_HUMAN, ITSN2_HUMAN, SPTN1_HUMAN, TSC2_HUMAN, SI1L3_HUMAN, A2MG_HUMAN, AGFG1_HUMAN, ACAP1_HUMAN, RACK1_HUMAN, RASL3_HUMAN, EGFR_HUMAN, ARF4_HUMAN, BIG2_HUMAN, GIT1_HUMAN, RGS14_HUMAN, GDIR2_HUMAN, TRIO_HUMAN, RGF1C_HUMAN, HERC1_HUMAN, ARHGC_HUMAN, STXB5_HUMAN, HERC2_HUMAN, RHGBA_HUMAN, RPGF1_HUMAN, G3V1J5_HUMAN, FGD1_HUMAN, NCK2_HUMAN, ARHG3_HUMAN, BCR_HUMAN, RANG_HUMAN, MADD_HUMAN 1574 565 16792 1.3406258784900653 1.0 0.2567656130145719 15.964099304750246 -GOTERM_BP_DIRECT GO:0008631~intrinsic apoptotic signaling pathway in response to oxidative stress 6 0.35842293906810035 0.009667820370351073 BCL2_HUMAN, KPCD_HUMAN, PML_HUMAN, ZN622_HUMAN, M3K5_HUMAN, PRAF3_HUMAN 1574 15 16792 4.267344345616264 1.0 0.26569727312011393 16.667664064725475 -GOTERM_BP_DIRECT GO:0007076~mitotic chromosome condensation 6 0.35842293906810035 0.009667820370351073 CND1_HUMAN, CND2_HUMAN, SMC4_HUMAN, AKP8L_HUMAN, NUSAP_HUMAN, CND3_HUMAN 1574 15 16792 4.267344345616264 1.0 0.26569727312011393 16.667664064725475 -GOTERM_BP_DIRECT GO:0001666~response to hypoxia 27 1.6129032258064515 0.009929792302984288 ENPL_HUMAN, ERCC3_HUMAN, NF1_HUMAN, LIMD1_HUMAN, ITPR2_HUMAN, SCFD1_HUMAN, USF1_HUMAN, MMP2_HUMAN, L7RRS6_HUMAN, MTG16_HUMAN, BAD_HUMAN, SCAP_HUMAN, TY3H_HUMAN, ARNT_HUMAN, PML_HUMAN, ITPR1_HUMAN, Q59H91_HUMAN, ETS1_HUMAN, TSP1_HUMAN, TGFB2_HUMAN, CXCR4_HUMAN, ATM_HUMAN, SRF_HUMAN, POSTN_HUMAN, CREB1_HUMAN, DNM3B_HUMAN, TGFB1_HUMAN, ALKB5_HUMAN 1574 172 16792 1.674684554238941 1.0 0.2701834149146384 17.080423674206557 -GOTERM_BP_DIRECT GO:0006897~endocytosis 23 1.3739545997610514 0.010057208163585967 CD209_HUMAN, TOM1_HUMAN, SNX2_HUMAN, SH3K1_HUMAN, WIPF1_HUMAN, ATP9B_HUMAN, EHD2_HUMAN, MILK1_HUMAN, EPN4_HUMAN, ACK1_HUMAN, KC1D_HUMAN, GAPD1_HUMAN, ESYT2_HUMAN, PPIP1_HUMAN, PACN3_HUMAN, WIPF2_HUMAN, AAK1_HUMAN, RAB1A_HUMAN, EPN1_HUMAN, DGKD_HUMAN, CDC42_HUMAN, ITSN2_HUMAN, TSC2_HUMAN 1574 139 16792 1.765268344409606 1.0 0.2714836945936794 17.280478120263844 -GOTERM_BP_DIRECT GO:0034501~protein localization to kinetochore 5 0.2986857825567503 0.010151101067278583 MTBP_HUMAN, CDK1_HUMAN, CHAP1_HUMAN, BUB1B_HUMAN, AURKB_HUMAN 1574 10 16792 5.3341804320203305 1.0 0.2719969232649738 17.42760596825901 -GOTERM_BP_DIRECT GO:0045292~mRNA cis splicing, via spliceosome 5 0.2986857825567503 0.010151101067278583 WBP4_HUMAN, WBP11_HUMAN, SNUT1_HUMAN, RBM22_HUMAN, NCBP1_HUMAN 1574 10 16792 5.3341804320203305 1.0 0.2719969232649738 17.42760596825901 -GOTERM_BP_DIRECT GO:0000290~deadenylation-dependent decapping of nuclear-transcribed mRNA 5 0.2986857825567503 0.010151101067278583 DCP2_HUMAN, PAN3_HUMAN, DCP1A_HUMAN, DCP1B_HUMAN, PATL1_HUMAN 1574 10 16792 5.3341804320203305 1.0 0.2719969232649738 17.42760596825901 -GOTERM_BP_DIRECT GO:0003334~keratinocyte development 5 0.2986857825567503 0.010151101067278583 K22E_HUMAN, PALLD_HUMAN, 1433S_HUMAN, FLNB_HUMAN, CDC42_HUMAN 1574 10 16792 5.3341804320203305 1.0 0.2719969232649738 17.42760596825901 -GOTERM_BP_DIRECT GO:0051918~negative regulation of fibrinolysis 5 0.2986857825567503 0.010151101067278583 TSP1_HUMAN, PLMN_HUMAN, CBPB2_HUMAN, USF1_HUMAN, A2AP_HUMAN 1574 10 16792 5.3341804320203305 1.0 0.2719969232649738 17.42760596825901 -GOTERM_BP_DIRECT GO:0007084~mitotic nuclear envelope reassembly 5 0.2986857825567503 0.010151101067278583 BAF_HUMAN, EMD_HUMAN, ANKL2_HUMAN, VRK1_HUMAN, LMNA_HUMAN 1574 10 16792 5.3341804320203305 1.0 0.2719969232649738 17.42760596825901 -GOTERM_BP_DIRECT GO:0034063~stress granule assembly 5 0.2986857825567503 0.010151101067278583 BICD1_HUMAN, PUM2_HUMAN, CIRBP_HUMAN, DDX3X_HUMAN, ATX2L_HUMAN 1574 10 16792 5.3341804320203305 1.0 0.2719969232649738 17.42760596825901 -GOTERM_BP_DIRECT GO:0030168~platelet activation 20 1.1947431302270013 0.010313378079601157 KPCT_HUMAN, KPCD_HUMAN, KPCL_HUMAN, CD40L_HUMAN, ITPR2_HUMAN, SRF_HUMAN, L7RRS6_HUMAN, RHOA_HUMAN, LCP2_HUMAN, KPCA_HUMAN, RAC2_HUMAN, PTN6_HUMAN, AKT1_HUMAN, DGKD_HUMAN, ITPR1_HUMAN, Q59H91_HUMAN, LAT_HUMAN, DGKZ_HUMAN, LCK_HUMAN, ITPR3_HUMAN, RHOB_HUMAN 1574 115 16792 1.8553671067896802 1.0 0.2740540497759997 17.681306078809012 -GOTERM_BP_DIRECT GO:0032956~regulation of actin cytoskeleton organization 11 0.6571087216248507 0.010477542042477094 RICTR_HUMAN, RHOA_HUMAN, KPCD_HUMAN, TGFB2_HUMAN, COR1A_HUMAN, GRDN_HUMAN, MTOR_HUMAN, CLAP2_HUMAN, RHG35_HUMAN, ROCK1_HUMAN, ABL1_HUMAN 1574 47 16792 2.49685041498824 1.0 0.2761196600707324 17.937205216601626 -GOTERM_BP_DIRECT GO:0006921~cellular component disassembly involved in execution phase of apoptosis 7 0.4181600955794504 0.010585655612626583 KPCT_HUMAN, KPCD_HUMAN, ACINU_HUMAN, CLSPN_HUMAN, ROCK1_HUMAN, APC_HUMAN, SATB1_HUMAN 1574 21 16792 3.5561202880135534 1.0 0.27690451022849116 18.105321375890504 -GOTERM_BP_DIRECT GO:0050769~positive regulation of neurogenesis 7 0.4181600955794504 0.010585655612626583 NUMBL_HUMAN, MINT_HUMAN, ZN335_HUMAN, RGS14_HUMAN, SRRT_HUMAN, PEDF_HUMAN, SNW1_HUMAN 1574 21 16792 3.5561202880135534 1.0 0.27690451022849116 18.105321375890504 -GOTERM_BP_DIRECT GO:0050852~T cell receptor signaling pathway 24 1.4336917562724014 0.010699576537778435 ZAP70_HUMAN, KPCT_HUMAN, HOIL1_HUMAN, B2RDW1_HUMAN, PSD11_HUMAN, CD3E_HUMAN, GRAP2_HUMAN, UB2D1_HUMAN, PSN1_HUMAN, CD3G_HUMAN, NFKB1_HUMAN, LIME1_HUMAN, NEMO_HUMAN, LCP2_HUMAN, RNF31_HUMAN, PLCG1_HUMAN, WASP_HUMAN, UBE2N_HUMAN, PRS6B_HUMAN, LAT_HUMAN, LCK_HUMAN, CD3Z_HUMAN, M3K7_HUMAN, PHAG1_HUMAN 1574 148 16792 1.7300044644390262 1.0 0.27780623701857543 18.282115122464404 -GOTERM_BP_DIRECT GO:0006886~intracellular protein transport 34 2.031063321385902 0.012879683031415748 NPM_HUMAN, VP26B_HUMAN, TB10B_HUMAN, TI17A_HUMAN, KLC1_HUMAN, TNPO1_HUMAN, TBCD5_HUMAN, AP3B1_HUMAN, CLCA_HUMAN, SC61B_HUMAN, TB22B_HUMAN, SNX17_HUMAN, TBCD4_HUMAN, SNX27_HUMAN, SNAPN_HUMAN, TOM1_HUMAN, STX10_HUMAN, TGFA1_HUMAN, ARFP1_HUMAN, SNX2_HUMAN, GGA3_HUMAN, TB10C_HUMAN, TBC13_HUMAN, HERC2_HUMAN, TB10A_HUMAN, TBCD1_HUMAN, STX4_HUMAN, TBC15_HUMAN, S23IP_HUMAN, COG7_HUMAN, APBA1_HUMAN, AP4B1_HUMAN, RHOB_HUMAN, SNAA_HUMAN 1574 236 16792 1.536967243124502 1.0 0.322619339683649 21.59659683177113 -GOTERM_BP_DIRECT GO:1901990~regulation of mitotic cell cycle phase transition 4 0.23894862604540024 0.013210196137304387 ATAD5_HUMAN, NEK11_HUMAN, ERCC3_HUMAN, XPC_HUMAN 1574 6 16792 7.112240576027108 1.0 0.3275759645001418 22.087835142789693 -GOTERM_BP_DIRECT GO:0031442~positive regulation of mRNA 3'-end processing 4 0.23894862604540024 0.013210196137304387 CDC73_HUMAN, LEO1_HUMAN, PAF1_HUMAN, NCBP1_HUMAN 1574 6 16792 7.112240576027108 1.0 0.3275759645001418 22.087835142789693 -GOTERM_BP_DIRECT GO:0001711~endodermal cell fate commitment 4 0.23894862604540024 0.013210196137304387 CDC73_HUMAN, CTR9_HUMAN, LEO1_HUMAN, PAF1_HUMAN 1574 6 16792 7.112240576027108 1.0 0.3275759645001418 22.087835142789693 -GOTERM_BP_DIRECT GO:0006614~SRP-dependent cotranslational protein targeting to membrane 17 1.015531660692951 0.01345569364211531 SRP14_HUMAN, RL35A_HUMAN, SSRG_HUMAN, B2RDW1_HUMAN, RS21_HUMAN, RL37_HUMAN, RL22_HUMAN, RS6_HUMAN, RL14_HUMAN, RL17_HUMAN, RS27_HUMAN, RLA1_HUMAN, RS29_HUMAN, RL36_HUMAN, RS10_HUMAN, RL34_HUMAN, RS30_HUMAN 1574 94 16792 1.9293844115818217 1.0 0.3307248045119946 22.45082808475972 -GOTERM_BP_DIRECT GO:0016049~cell growth 12 0.7168458781362007 0.013594715616164257 BCL2_HUMAN, PAK4_HUMAN, TGFB2_HUMAN, MTOR_HUMAN, RRAGC_HUMAN, MTPN_HUMAN, DGKD_HUMAN, ACTS_HUMAN, SL9A1_HUMAN, TGFB1_HUMAN, ERBIN_HUMAN, NOTC2_HUMAN 1574 56 16792 2.286077328008713 1.0 0.33169742728062823 22.655675506961927 -GOTERM_BP_DIRECT GO:0000226~microtubule cytoskeleton organization 14 0.8363201911589008 0.013769833606887468 DOCK7_HUMAN, CLAP1_HUMAN, MARK4_HUMAN, MARK2_HUMAN, TACC3_HUMAN, WEE1_HUMAN, CDK1_HUMAN, TBA1B_HUMAN, CLAP2_HUMAN, PCNT_HUMAN, CYTSA_HUMAN, SON_HUMAN, MA7D1_HUMAN, NINL_HUMAN 1574 71 16792 2.103620452064356 1.0 0.33337003232441675 22.912981019850797 -GOTERM_BP_DIRECT GO:0051496~positive regulation of stress fiber assembly 10 0.5973715651135006 0.014150500788503387 RHOA_HUMAN, EVL_HUMAN, VINEX_HUMAN, MTOR_HUMAN, APOA1_HUMAN, CTGF_HUMAN, PPM1F_HUMAN, BAG4_HUMAN, MERL_HUMAN, A2AP_HUMAN 1574 42 16792 2.540085920009681 1.0 0.33903255330205906 23.46951272176926 -GOTERM_BP_DIRECT GO:0032436~positive regulation of proteasomal ubiquitin-dependent protein catabolic process 13 0.7765830346475507 0.014658424860014525 SUMO2_HUMAN, DNJB2_HUMAN, PLK1_HUMAN, KC1D_HUMAN, RACK1_HUMAN, PSN1_HUMAN, ARI2_HUMAN, MTG16_HUMAN, SMAD7_HUMAN, A7UKX8_HUMAN, KC1A_HUMAN, AKT1_HUMAN, DVL1_HUMAN, MDM2_HUMAN 1574 64 16792 2.167010800508259 1.0 0.34701462466484045 24.206170948591854 -GOTERM_BP_DIRECT GO:0032786~positive regulation of DNA-templated transcription, elongation 5 0.2986857825567503 0.014783840868909668 DX39B_HUMAN, THOC5_HUMAN, SP16H_HUMAN, HMGN1_HUMAN, ELL_HUMAN 1574 11 16792 4.849254938200301 1.0 0.34757868006871984 24.387029520182512 -GOTERM_BP_DIRECT GO:0031065~positive regulation of histone deacetylation 5 0.2986857825567503 0.014783840868909668 NIPBL_HUMAN, PML_HUMAN, BCL6_HUMAN, AKP8L_HUMAN, TGFB1_HUMAN 1574 11 16792 4.849254938200301 1.0 0.34757868006871984 24.387029520182512 -GOTERM_BP_DIRECT GO:0045060~negative thymic T cell selection 5 0.2986857825567503 0.014783840868909668 ZAP70_HUMAN, LEUK_HUMAN, TNR6_HUMAN, CD3E_HUMAN, DOCK2_HUMAN 1574 11 16792 4.849254938200301 1.0 0.34757868006871984 24.387029520182512 -GOTERM_BP_DIRECT GO:0010763~positive regulation of fibroblast migration 5 0.2986857825567503 0.014783840868909668 TSP1_HUMAN, ARHG7_HUMAN, AKT1_HUMAN, TGFB1_HUMAN, BAG4_HUMAN 1574 11 16792 4.849254938200301 1.0 0.34757868006871984 24.387029520182512 -GOTERM_BP_DIRECT GO:0043486~histone exchange 5 0.2986857825567503 0.014783840868909668 NASP_HUMAN, AN32B_HUMAN, RNF8_HUMAN, ZNHI1_HUMAN, VPS72_HUMAN 1574 11 16792 4.849254938200301 1.0 0.34757868006871984 24.387029520182512 -GOTERM_BP_DIRECT GO:0042535~positive regulation of tumor necrosis factor biosynthetic process 5 0.2986857825567503 0.014783840868909668 LEUK_HUMAN, TSP1_HUMAN, TNR8_HUMAN, TLR4_HUMAN, MAPK2_HUMAN 1574 11 16792 4.849254938200301 1.0 0.34757868006871984 24.387029520182512 -GOTERM_BP_DIRECT GO:0043484~regulation of RNA splicing 8 0.4778972520908005 0.015462464587126903 CDK12_HUMAN, AK17A_HUMAN, RU17_HUMAN, AFF2_HUMAN, CLK4_HUMAN, CLK3_HUMAN, SON_HUMAN, HNRPF_HUMAN 1574 29 16792 2.94299610042501 1.0 0.35848351323263816 25.358586637189074 -GOTERM_BP_DIRECT GO:0000289~nuclear-transcribed mRNA poly(A) tail shortening 8 0.4778972520908005 0.015462464587126903 TOE1_HUMAN, IF4B_HUMAN, CNOT2_HUMAN, MLH1_HUMAN, IF4G1_HUMAN, PAN3_HUMAN, TB182_HUMAN, CNOT3_HUMAN 1574 29 16792 2.94299610042501 1.0 0.35848351323263816 25.358586637189074 -GOTERM_BP_DIRECT GO:0000281~mitotic cytokinesis 8 0.4778972520908005 0.015462464587126903 CEP55_HUMAN, STMN1_HUMAN, ANLN_HUMAN, SPTB2_HUMAN, PLK1_HUMAN, APC_HUMAN, NUSAP_HUMAN, SON_HUMAN 1574 29 16792 2.94299610042501 1.0 0.35848351323263816 25.358586637189074 -GOTERM_BP_DIRECT GO:0042149~cellular response to glucose starvation 8 0.4778972520908005 0.015462464587126903 BAKOR_HUMAN, BCL2_HUMAN, MBB1A_HUMAN, PI3R4_HUMAN, CPEB4_HUMAN, PK3C3_HUMAN, IF16_HUMAN, UPP1_HUMAN 1574 29 16792 2.94299610042501 1.0 0.35848351323263816 25.358586637189074 -GOTERM_BP_DIRECT GO:0042981~regulation of apoptotic process 31 1.8518518518518516 0.015584643493690823 SLK_HUMAN, P63_HUMAN, L7RRS6_HUMAN, TR19L_HUMAN, SDF2L_HUMAN, TNR6_HUMAN, RBM25_HUMAN, A8K401_HUMAN, E2AK2_HUMAN, ASPP2_HUMAN, RBM5_HUMAN, ETS1_HUMAN, CASP2_HUMAN, STAT1_HUMAN, CD3E_HUMAN, MITF_HUMAN, ATM_HUMAN, BNI3L_HUMAN, DLG5_HUMAN, PEA15_HUMAN, RTN4_HUMAN, DAPK3_HUMAN, RL1D1_HUMAN, MAGD1_HUMAN, BCL6_HUMAN, SGK3_HUMAN, PAIRB_HUMAN, NDRG1_HUMAN, TGFB1_HUMAN, CRADD_HUMAN, MADD_HUMAN 1574 213 16792 1.5526722384284528 1.0 0.35889945466066564 25.53224478788969 -GOTERM_BP_DIRECT GO:0001649~osteoblast differentiation 18 1.0752688172043012 0.01625761568325448 MEF2D_HUMAN, H33_HUMAN, NF1_HUMAN, SND1_HUMAN, WWOX_HUMAN, ASF1A_HUMAN, B4DY08_HUMAN, MBB1A_HUMAN, HNRPU_HUMAN, RL1D1_HUMAN, DDX21_HUMAN, A8K401_HUMAN, AKT1_HUMAN, RBMX_HUMAN, UFL1_HUMAN, DSRAD_HUMAN, FAS_HUMAN, SEM7A_HUMAN 1574 104 16792 1.8464470726224218 1.0 0.3693161347887137 26.481933961738967 -GOTERM_BP_DIRECT GO:0010507~negative regulation of autophagy 9 0.5376344086021506 0.016331619050416503 BCL2_HUMAN, DAP1_HUMAN, IF4G1_HUMAN, MTOR_HUMAN, AKT1_HUMAN, HERC1_HUMAN, TLK2_HUMAN, TAB3_HUMAN, RRAGA_HUMAN 1574 36 16792 2.6670902160101653 1.0 0.3687899971910473 26.585663884517675 -GOTERM_BP_DIRECT GO:0006325~chromatin organization 10 0.5973715651135006 0.016450202464041965 CHD3_HUMAN, EHMT1_HUMAN, NU133_HUMAN, CDAN1_HUMAN, SAFB1_HUMAN, ATAD2_HUMAN, SATB1_HUMAN, H15_HUMAN, HMGN1_HUMAN, NUCKS_HUMAN 1574 43 16792 2.4810141544280606 1.0 0.36906470485403553 26.751592446783757 -GOTERM_BP_DIRECT GO:0034080~CENP-A containing nucleosome assembly 10 0.5973715651135006 0.016450202464041965 NPM_HUMAN, CENPU_HUMAN, M18BP_HUMAN, RSF1_HUMAN, MS18A_HUMAN, SMCA5_HUMAN, HJURP_HUMAN, CENPK_HUMAN, MS18B_HUMAN, CENPT_HUMAN 1574 43 16792 2.4810141544280606 1.0 0.36906470485403553 26.751592446783757 -GOTERM_BP_DIRECT GO:0001731~formation of translation preinitiation complex 7 0.4181600955794504 0.01675648715595439 IF4B_HUMAN, EIF3F_HUMAN, EIF3C_HUMAN, EIF3M_HUMAN, EIF3A_HUMAN, TICRR_HUMAN, IF4H_HUMAN 1574 23 16792 3.2468924368819403 1.0 0.37264885320889274 27.1785219180101 -GOTERM_BP_DIRECT GO:0000083~regulation of transcription involved in G1/S transition of mitotic cell cycle 7 0.4181600955794504 0.01675648715595439 CDK1_HUMAN, CDC6_HUMAN, BRD4_HUMAN, NPAT_HUMAN, ORC1_HUMAN, RB_HUMAN, CDT1_HUMAN 1574 23 16792 3.2468924368819403 1.0 0.37264885320889274 27.1785219180101 -GOTERM_BP_DIRECT GO:0031333~negative regulation of protein complex assembly 6 0.35842293906810035 0.017017945253026044 ULK1_HUMAN, TFP11_HUMAN, DDX3X_HUMAN, 4EBP1_HUMAN, CDC42_HUMAN, L7RRS6_HUMAN 1574 17 16792 3.765303834367292 1.0 0.37538935589779987 27.541102816861983 -GOTERM_BP_DIRECT GO:0051893~regulation of focal adhesion assembly 6 0.35842293906810035 0.017017945253026044 DAPK3_HUMAN, LDB1_HUMAN, SLK_HUMAN, CLAP1_HUMAN, ROCK1_HUMAN, SL9A1_HUMAN 1574 17 16792 3.765303834367292 1.0 0.37538935589779987 27.541102816861983 -GOTERM_BP_DIRECT GO:0050860~negative regulation of T cell receptor signaling pathway 6 0.35842293906810035 0.017017945253026044 DUS3_HUMAN, PHP14_HUMAN, PRIO_HUMAN, PTN6_HUMAN, ELF1_HUMAN, PTN2_HUMAN 1574 17 16792 3.765303834367292 1.0 0.37538935589779987 27.541102816861983 -GOTERM_BP_DIRECT GO:0006337~nucleosome disassembly 6 0.35842293906810035 0.017017945253026044 HMGA1_HUMAN, ARID2_HUMAN, SMRC2_HUMAN, Q9HBD4_HUMAN, SP16H_HUMAN, SMRC1_HUMAN 1574 17 16792 3.765303834367292 1.0 0.37538935589779987 27.541102816861983 -GOTERM_BP_DIRECT GO:0070935~3'-UTR-mediated mRNA stabilization 6 0.35842293906810035 0.017017945253026044 B4DY08_HUMAN, DAZ1_HUMAN, TADBP_HUMAN, MAPK2_HUMAN, MK14_HUMAN, YBOX3_HUMAN 1574 17 16792 3.765303834367292 1.0 0.37538935589779987 27.541102816861983 -GOTERM_BP_DIRECT GO:0035023~regulation of Rho protein signal transduction 15 0.8960573476702508 0.017612338319664106 GDIR2_HUMAN, FGD6_HUMAN, TRIO_HUMAN, AKP13_HUMAN, DNMBP_HUMAN, PKHG2_HUMAN, ARHGC_HUMAN, L7RRS6_HUMAN, GDIR1_HUMAN, ARHG7_HUMAN, FGD1_HUMAN, ARHG3_HUMAN, BCR_HUMAN, ARHG6_HUMAN, ITSN2_HUMAN 1574 81 16792 1.975622382229752 1.0 0.3838010002567396 28.35903725348795 -GOTERM_BP_DIRECT GO:0034504~protein localization to nucleus 8 0.4778972520908005 0.018580268108477606 DNJB6_HUMAN, A7UKX8_HUMAN, TOIP1_HUMAN, FYV1_HUMAN, BANP_HUMAN, DVL1_HUMAN, PAF1_HUMAN, MDM2_HUMAN, LMNA_HUMAN 1574 30 16792 2.8448962304108427 1.0 0.3982368657993658 29.672310754753404 -GOTERM_BP_DIRECT GO:0010803~regulation of tumor necrosis factor-mediated signaling pathway 8 0.4778972520908005 0.018580268108477606 NEMO_HUMAN, HOIL1_HUMAN, RNF31_HUMAN, B2RDW1_HUMAN, HIPK1_HUMAN, CYLD_HUMAN, RACK1_HUMAN, MADD_HUMAN 1574 30 16792 2.8448962304108427 1.0 0.3982368657993658 29.672310754753404 -GOTERM_BP_DIRECT GO:0045786~negative regulation of cell cycle 9 0.5376344086021506 0.01917414656816474 PDCD4_HUMAN, CDK6_HUMAN, MEN1_HUMAN, CREB3_HUMAN, SIPA1_HUMAN, ASPP2_HUMAN, RHOB_HUMAN, TGFB1_HUMAN, ETS1_HUMAN 1574 37 16792 2.595006696658539 1.0 0.40611330204634155 30.466759851191195 -GOTERM_BP_DIRECT GO:0006511~ubiquitin-dependent protein catabolic process 27 1.6129032258064515 0.019643427458161507 UBP22_HUMAN, UBP32_HUMAN, PSD11_HUMAN, CYLD_HUMAN, UBR5_HUMAN, UBP36_HUMAN, UBP42_HUMAN, UB2D1_HUMAN, CUL4A_HUMAN, RN168_HUMAN, UBP14_HUMAN, NPL4_HUMAN, UBE2N_HUMAN, ADRM1_HUMAN, UBP11_HUMAN, UBP24_HUMAN, UBP1_HUMAN, UBP15_HUMAN, UCHL5_HUMAN, DTL_HUMAN, ARI2_HUMAN, UB2E1_HUMAN, BAG6_HUMAN, UFD1_HUMAN, RANG_HUMAN, RNF8_HUMAN, UBP45_HUMAN 1574 182 16792 1.5826689193906476 1.0 0.4118017429088102 31.088513715082332 -GOTERM_BP_DIRECT GO:0010628~positive regulation of gene expression 36 2.1505376344086025 0.020416784958357925 GELS_HUMAN, DTBP1_HUMAN, MED1_HUMAN, ACTS_HUMAN, TLR4_HUMAN, KLF4_HUMAN, CDK1_HUMAN, HNRPU_HUMAN, FBLN1_HUMAN, CDK6_HUMAN, TADA3_HUMAN, A8K401_HUMAN, DDX3X_HUMAN, CHP3_HUMAN, CTCF_HUMAN, MK14_HUMAN, MOES_HUMAN, UBP2L_HUMAN, TGFB2_HUMAN, CD3E_HUMAN, DNMT1_HUMAN, MITF_HUMAN, NCOA3_HUMAN, A7UKX8_HUMAN, MTOR_HUMAN, TLR9_HUMAN, SRPK2_HUMAN, MDM2_HUMAN, APOB_HUMAN, CTGF_HUMAN, PPM1F_HUMAN, DNM3B_HUMAN, TGFB1_HUMAN, CDC42_HUMAN, MCP_HUMAN, B0YJ88_HUMAN, FINC_HUMAN 1574 262 16792 1.4658816454407013 1.0 0.4221593371226974 32.10167134973527 -GOTERM_BP_DIRECT GO:0051310~metaphase plate congression 5 0.2986857825567503 0.020558270407294816 GEM_HUMAN, CENPE_HUMAN, KIF22_HUMAN, SPICE_HUMAN, CENPF_HUMAN 1574 12 16792 4.4451503600169415 1.0 0.4224559162628174 32.28549544863226 -GOTERM_BP_DIRECT GO:0030212~hyaluronan metabolic process 5 0.2986857825567503 0.020558270407294816 ITIH1_HUMAN, ITIH2_HUMAN, KI67_HUMAN, AKT1_HUMAN, B7ZKJ8_HUMAN 1574 12 16792 4.4451503600169415 1.0 0.4224559162628174 32.28549544863226 -GOTERM_BP_DIRECT GO:0008154~actin polymerization or depolymerization 5 0.2986857825567503 0.020558270407294816 EVL_HUMAN, ABI1_HUMAN, WIPF1_HUMAN, WASP_HUMAN, CAP1_HUMAN 1574 12 16792 4.4451503600169415 1.0 0.4224559162628174 32.28549544863226 -GOTERM_BP_DIRECT GO:0051149~positive regulation of muscle cell differentiation 7 0.4181600955794504 0.020615391332719682 MEF2A_HUMAN, JIP4_HUMAN, RBM4_HUMAN, CDC42_HUMAN, ABL1_HUMAN, J3KN59_HUMAN, MK14_HUMAN 1574 24 16792 3.1116052520118593 1.0 0.4214413369386336 32.35957586961272 -GOTERM_BP_DIRECT GO:0034976~response to endoplasmic reticulum stress 14 0.8363201911589008 0.021209488005436657 DDRGK_HUMAN, ENPL_HUMAN, TSP1_HUMAN, TADBP_HUMAN, CR3L2_HUMAN, TMM33_HUMAN, TMX1_HUMAN, NRBF2_HUMAN, UBQL1_HUMAN, ABL1_HUMAN, CREB3_HUMAN, IF2A_HUMAN, M3K5_HUMAN, UFL1_HUMAN 1574 75 16792 1.9914273612875901 1.0 0.42867848845687007 33.125527603402546 -GOTERM_BP_DIRECT GO:0006310~DNA recombination 15 0.8960573476702508 0.02146546499268308 BLM_HUMAN, NONO_HUMAN, IN80E_HUMAN, RBM14_HUMAN, DNLI3_HUMAN, UCHL5_HUMAN, SMBP2_HUMAN, HMGB3_HUMAN, RECQ4_HUMAN, RAD21_HUMAN, DNLI1_HUMAN, NFRKB_HUMAN, RECQ5_HUMAN, RAD54_HUMAN, MCRS1_HUMAN 1574 83 16792 1.9280170236218062 1.0 0.4306616541548912 33.45301372122436 -GOTERM_BP_DIRECT GO:0051988~regulation of attachment of spindle microtubules to kinetochore 4 0.23894862604540024 0.02152109817496095 SPAG5_HUMAN, NEK2_HUMAN, APC_HUMAN, CDC42_HUMAN 1574 7 16792 6.0962062080232355 1.0 0.4296095618142727 33.523987331800285 -GOTERM_BP_DIRECT GO:0032466~negative regulation of cytokinesis 4 0.23894862604540024 0.02152109817496095 ANCHR_HUMAN, E2F8_HUMAN, E2F7_HUMAN, AURKB_HUMAN 1574 7 16792 6.0962062080232355 1.0 0.4296095618142727 33.523987331800285 -GOTERM_BP_DIRECT GO:0030854~positive regulation of granulocyte differentiation 4 0.23894862604540024 0.02152109817496095 RUNX1_HUMAN, HCLS1_HUMAN, CHP3_HUMAN, OGT1_HUMAN 1574 7 16792 6.0962062080232355 1.0 0.4296095618142727 33.523987331800285 -GOTERM_BP_DIRECT GO:0007165~signal transduction 130 7.765830346475508 0.02163647228177106 KS6B1_HUMAN, ULK1_HUMAN, TB10B_HUMAN, SIT1_HUMAN, IQGA2_HUMAN, RHG44_HUMAN, PPIP1_HUMAN, PLXB1_HUMAN, PLCG1_HUMAN, PI51A_HUMAN, CD72_HUMAN, GRP2_HUMAN, KHDR1_HUMAN, GBG10_HUMAN, ASPP2_HUMAN, SH2B3_HUMAN, GEM_HUMAN, KPCL_HUMAN, LCAP_HUMAN, SMC3_HUMAN, RHG19_HUMAN, MARE2_HUMAN, TNFL6_HUMAN, INP4A_HUMAN, DLG5_HUMAN, ARHG7_HUMAN, RUNX1_HUMAN, MTOR_HUMAN, DGKD_HUMAN, 1433S_HUMAN, C8AP2_HUMAN, PKN1_HUMAN, DOK2_HUMAN, ARBK2_HUMAN, UNC5A_HUMAN, GTF2I_HUMAN, ITPR2_HUMAN, HNRPK_HUMAN, NFKB1_HUMAN, BC11A_HUMAN, F1D8N3_HUMAN, GBB4_HUMAN, ITPR1_HUMAN, SNX17_HUMAN, GNL1_HUMAN, KPCD_HUMAN, PI4KA_HUMAN, HINT1_HUMAN, CCND3_HUMAN, CSK21_HUMAN, MYPT1_HUMAN, EM55_HUMAN, ROCK1_HUMAN, RPGF1_HUMAN, NCK2_HUMAN, BCR_HUMAN, AKT2_HUMAN, PDE4A_HUMAN, PHAG1_HUMAN, SP110_HUMAN, SRGP3_HUMAN, NF1_HUMAN, LIMD1_HUMAN, ZEP2_HUMAN, CD166_HUMAN, GAPD1_HUMAN, PAK4_HUMAN, IBP2_HUMAN, AKT1_HUMAN, MAGI2_HUMAN, RHG09_HUMAN, Q59H91_HUMAN, SPN90_HUMAN, 2A5E_HUMAN, GULP1_HUMAN, MK14_HUMAN, AKA10_HUMAN, DP13A_HUMAN, 2A5A_HUMAN, SIPA1_HUMAN, KC1D_HUMAN, ATM_HUMAN, OGT1_HUMAN, KAPCB_HUMAN, AB1IP_HUMAN, TNR8_HUMAN, F1D8N4_HUMAN, A8K3Y2_HUMAN, RAC2_HUMAN, LAT_HUMAN, NCOA5_HUMAN, RGS12_HUMAN, CREB1_HUMAN, OPTN_HUMAN, Q7LCB3_HUMAN, PP2BB_HUMAN, ZYX_HUMAN, SUFU_HUMAN, NPM_HUMAN, COT2_HUMAN, CO3_HUMAN, SIGIR_HUMAN, CAP1_HUMAN, NDRG2_HUMAN, ABL2_HUMAN, L7RRS6_HUMAN, RASL3_HUMAN, EGFR_HUMAN, LEUK_HUMAN, ZN217_HUMAN, TNR6_HUMAN, A8K401_HUMAN, DOK1_HUMAN, SNX27_HUMAN, ERBIN_HUMAN, PI4KB_HUMAN, TGFA1_HUMAN, 2A5D_HUMAN, KCC4_HUMAN, STMN1_HUMAN, RHGBA_HUMAN, AAKB2_HUMAN, COT1_HUMAN, AK17A_HUMAN, KI13B_HUMAN, TANK_HUMAN, KC1A_HUMAN, FGD1_HUMAN, VAPA_HUMAN, FLNB_HUMAN, RANG_HUMAN, CRADD_HUMAN 1574 1161 16792 1.1945623706505477 1.0 0.4294623585268358 33.67094663066703 -GOTERM_BP_DIRECT GO:0007004~telomere maintenance via telomerase 6 0.35842293906810035 0.021786259415894755 RFC1_HUMAN, TB182_HUMAN, DKC1_HUMAN, POTE1_HUMAN, ATM_HUMAN, TE2IP_HUMAN 1574 18 16792 3.556120288013554 1.0 0.4298288561237148 33.86128114710984 -GOTERM_BP_DIRECT GO:1990090~cellular response to nerve growth factor stimulus 8 0.4778972520908005 0.022113419158583485 RPGF1_HUMAN, MILK1_HUMAN, AKT1_HUMAN, MAGI2_HUMAN, KC1D_HUMAN, CREB1_HUMAN, KDIS_HUMAN, BPTF_HUMAN 1574 31 16792 2.7531253842685577 1.0 0.432805858949618 34.27520653178679 -GOTERM_BP_DIRECT GO:0008625~extrinsic apoptotic signaling pathway via death domain receptors 9 0.5376344086021506 0.022352472919870244 BCL2_HUMAN, BAD_HUMAN, TNR6_HUMAN, DDX3X_HUMAN, NF1_HUMAN, C8AP2_HUMAN, DAXX_HUMAN, CRADD_HUMAN, TNFL6_HUMAN 1574 38 16792 2.526717046746472 1.0 0.43445133510854383 34.576107427509314 -GOTERM_BP_DIRECT GO:2001141~regulation of RNA biosynthetic process 3 0.17921146953405018 0.02466897674271487 MITF_HUMAN, MED1_HUMAN, NCOA3_HUMAN 1574 3 16792 10.668360864040661 1.0 0.4653653517074233 37.42515570637862 -GOTERM_BP_DIRECT GO:0070423~nucleotide-binding oligomerization domain containing signaling pathway 7 0.4181600955794504 0.02503427459829291 NEMO_HUMAN, B2RDW1_HUMAN, A8K3Y2_HUMAN, CYLD_HUMAN, UBE2N_HUMAN, TAB3_HUMAN, M3K7_HUMAN 1574 25 16792 2.987141041931385 1.0 0.468446479369083 37.86356573925974 -GOTERM_BP_DIRECT GO:0006913~nucleocytoplasmic transport 7 0.4181600955794504 0.02503427459829291 NPM_HUMAN, MBB1A_HUMAN, RSRC1_HUMAN, RGS14_HUMAN, RB15B_HUMAN, NUP98_HUMAN, NU205_HUMAN 1574 25 16792 2.987141041931385 1.0 0.468446479369083 37.86356573925974 -GOTERM_BP_DIRECT GO:2001235~positive regulation of apoptotic signaling pathway 7 0.4181600955794504 0.02503427459829291 CASP2_HUMAN, NFAC4_HUMAN, KPCD_HUMAN, CATC_HUMAN, MAGD1_HUMAN, P63_HUMAN, CRADD_HUMAN 1574 25 16792 2.987141041931385 1.0 0.468446479369083 37.86356573925974 -GOTERM_BP_DIRECT GO:0002181~cytoplasmic translation 7 0.4181600955794504 0.02503427459829291 IF4B_HUMAN, RLA1_HUMAN, RL35A_HUMAN, RL36_HUMAN, RL22_HUMAN, IF4H_HUMAN, TRM7_HUMAN 1574 25 16792 2.987141041931385 1.0 0.468446479369083 37.86356573925974 -GOTERM_BP_DIRECT GO:0035690~cellular response to drug 13 0.7765830346475507 0.0255821043426028 TFR1_HUMAN, PYR1_HUMAN, MYPT1_HUMAN, EGFR_HUMAN, TY3H_HUMAN, PRIO_HUMAN, A2ABF8_HUMAN, PDE4A_HUMAN, RBM22_HUMAN, RECQ5_HUMAN, PPM1F_HUMAN, RANG_HUMAN, PP2BB_HUMAN 1574 69 16792 2.009981032355487 1.0 0.47392512764086514 38.515593495034416 -GOTERM_BP_DIRECT GO:0006605~protein targeting 9 0.5376344086021506 0.02588455723712457 KI13B_HUMAN, PML_HUMAN, HOME3_HUMAN, PAN3_HUMAN, TOM20_HUMAN, 1433B_HUMAN, KTNB1_HUMAN, 1433G_HUMAN, ERBIN_HUMAN 1574 39 16792 2.461929430163229 1.0 0.47604758247540446 38.87279263012052 -GOTERM_BP_DIRECT GO:0032212~positive regulation of telomere maintenance via telomerase 8 0.4778972520908005 0.02608519443657741 M3K4_HUMAN, KPCT_HUMAN, TNKS2_HUMAN, DKC1_HUMAN, POTE1_HUMAN, NEK2_HUMAN, ATM_HUMAN, AURKB_HUMAN 1574 32 16792 2.6670902160101653 1.0 0.476800253487788 39.10866179867946 -GOTERM_BP_DIRECT GO:0031663~lipopolysaccharide-mediated signaling pathway 8 0.4778972520908005 0.02608519443657741 Q6AZ88_HUMAN, LY96_HUMAN, CD6_HUMAN, LYRIC_HUMAN, AKT1_HUMAN, HCK_HUMAN, TGFB1_HUMAN, TLR4_HUMAN, MK14_HUMAN 1574 32 16792 2.6670902160101653 1.0 0.476800253487788 39.10866179867946 -GOTERM_BP_DIRECT GO:0007093~mitotic cell cycle checkpoint 8 0.4778972520908005 0.02608519443657741 INT3_HUMAN, PRCC_HUMAN, MD2L1_HUMAN, RB_HUMAN, TGFB1_HUMAN, CHK1_HUMAN, BUB1B_HUMAN, RS6_HUMAN 1574 32 16792 2.6670902160101653 1.0 0.476800253487788 39.10866179867946 -GOTERM_BP_DIRECT GO:0009615~response to virus 18 1.0752688172043012 0.026933578132903792 RMP_HUMAN, HMGA1_HUMAN, T2FA_HUMAN, ZCCHV_HUMAN, STMN1_HUMAN, BAF_HUMAN, CXCR4_HUMAN, NEMO_HUMAN, CDK6_HUMAN, CC130_HUMAN, DDX21_HUMAN, E2AK2_HUMAN, HNRL1_HUMAN, DDX3X_HUMAN, APOB_HUMAN, NS1BP_HUMAN, DSRAD_HUMAN, XPR1_HUMAN 1574 110 16792 1.745731777752108 1.0 0.48594919566157924 40.09653060479007 -GOTERM_BP_DIRECT GO:0008156~negative regulation of DNA replication 6 0.35842293906810035 0.027343864438025445 CDAN1_HUMAN, CDC6_HUMAN, WAPL_HUMAN, TGFB1_HUMAN, PDS5A_HUMAN, MERL_HUMAN 1574 19 16792 3.36895606232863 1.0 0.48930283618267345 40.56881168554669 -GOTERM_BP_DIRECT GO:0001934~positive regulation of protein phosphorylation 20 1.1947431302270013 0.027411842971689852 BAKOR_HUMAN, CCND3_HUMAN, DVL2_HUMAN, CO3_HUMAN, TPO_HUMAN, KC1D_HUMAN, RACK1_HUMAN, ABL1_HUMAN, SEM4D_HUMAN, EGFR_HUMAN, LEUK_HUMAN, SENP2_HUMAN, RBCC1_HUMAN, MTOR_HUMAN, AKT1_HUMAN, DVL1_HUMAN, AKT2_HUMAN, DVL3_HUMAN, DAXX_HUMAN, TGFB1_HUMAN 1574 127 16792 1.6800568289827813 1.0 0.4882765898120277 40.646720634745925 -GOTERM_BP_DIRECT GO:0006957~complement activation, alternative pathway 5 0.2986857825567503 0.02753759878988385 PROP_HUMAN, CO5_HUMAN, CO3_HUMAN, CO9_HUMAN, CO7_HUMAN 1574 13 16792 4.103215716938715 1.0 0.4879893443768657 40.7905922515724 -GOTERM_BP_DIRECT GO:0042787~protein ubiquitination involved in ubiquitin-dependent protein catabolic process 23 1.3739545997610514 0.028123004602715038 WWP2_HUMAN, B2RDW1_HUMAN, UBR5_HUMAN, MD2L1_HUMAN, UB2D1_HUMAN, CUL4A_HUMAN, PLK1_HUMAN, PTTG1_HUMAN, HERC2_HUMAN, CDC26_HUMAN, UBR4_HUMAN, RBBP6_HUMAN, CDC20_HUMAN, APC1_HUMAN, ARI2_HUMAN, UB2E1_HUMAN, CDK1_HUMAN, A7UKX8_HUMAN, HECD1_HUMAN, HUWE1_HUMAN, TRIPC_HUMAN, MDM2_HUMAN, BUB1B_HUMAN, AURKB_HUMAN 1574 153 16792 1.6037405220453282 1.0 0.4934482460453845 41.45599403691226 -GOTERM_BP_DIRECT GO:0008630~intrinsic apoptotic signaling pathway in response to DNA damage 10 0.5973715651135006 0.028414553701236668 BCL2_HUMAN, CASP2_HUMAN, BAD_HUMAN, NFAC4_HUMAN, MLH1_HUMAN, PML_HUMAN, 1433S_HUMAN, ATM_HUMAN, ABL1_HUMAN, MSH6_HUMAN 1574 47 16792 2.2698640136256727 1.0 0.4951869866281384 41.784736561332636 -GOTERM_BP_DIRECT GO:0071230~cellular response to amino acid stimulus 10 0.5973715651135006 0.028414553701236668 CPEB1_HUMAN, RRAGD_HUMAN, DNMT1_HUMAN, RRAGC_HUMAN, CPEB4_HUMAN, ZEB1_HUMAN, MMP2_HUMAN, RRAGA_HUMAN, RRAGB_HUMAN, EGFR_HUMAN 1574 47 16792 2.2698640136256727 1.0 0.4951869866281384 41.784736561332636 -GOTERM_BP_DIRECT GO:0042110~T cell activation 10 0.5973715651135006 0.028414553701236668 ZAP70_HUMAN, IRF4_HUMAN, KI13B_HUMAN, CD2_HUMAN, WASP_HUMAN, CD3E_HUMAN, NCK2_HUMAN, LAT_HUMAN, CD3G_HUMAN, PP2BB_HUMAN 1574 47 16792 2.2698640136256727 1.0 0.4951869866281384 41.784736561332636 -GOTERM_BP_DIRECT GO:0045070~positive regulation of viral genome replication 7 0.4181600955794504 0.030041657077357075 LARP1_HUMAN, TOP2A_HUMAN, SRPK2_HUMAN, NOTC1_HUMAN, DDX3X_HUMAN, STAU1_HUMAN, DSRAD_HUMAN 1574 26 16792 2.872251001857101 1.0 0.5129675163610287 43.587554898060624 -GOTERM_BP_DIRECT GO:0006997~nucleus organization 7 0.4181600955794504 0.030041657077357075 NUMA1_HUMAN, H33_HUMAN, CEP55_HUMAN, CHM4A_HUMAN, B3KNK9_HUMAN, CHMP7_HUMAN, CHK1_HUMAN 1574 26 16792 2.872251001857101 1.0 0.5129675163610287 43.587554898060624 -GOTERM_BP_DIRECT GO:0051297~centrosome organization 8 0.4778972520908005 0.030516782729534616 CHD3_HUMAN, PCM1_HUMAN, HAUS6_HUMAN, MOT1_HUMAN, MYPT1_HUMAN, PLK1_HUMAN, J3KN59_HUMAN, UVRAG_HUMAN 1574 33 16792 2.5862693003734933 1.0 0.5166777709502519 44.10393737497596 -GOTERM_BP_DIRECT GO:0002755~MyD88-dependent toll-like receptor signaling pathway 8 0.4778972520908005 0.030516782729534616 LY96_HUMAN, B2RDW1_HUMAN, TLR9_HUMAN, TNIP1_HUMAN, TAB3_HUMAN, NAF1_HUMAN, M3K7_HUMAN, TLR4_HUMAN 1574 33 16792 2.5862693003734933 1.0 0.5166777709502519 44.10393737497596 -GOTERM_BP_DIRECT GO:0050727~regulation of inflammatory response 12 0.7168458781362007 0.030913027460205796 RICTR_HUMAN, FETUA_HUMAN, ZYX_HUMAN, TBC23_HUMAN, BRD4_HUMAN, BCL6_HUMAN, HCK_HUMAN, STK39_HUMAN, TNIP1_HUMAN, NAF1_HUMAN, IL1R1_HUMAN, SEM7A_HUMAN 1574 63 16792 2.0320687360077447 1.0 0.5194114207523348 44.53116397214211 -GOTERM_BP_DIRECT GO:0031145~anaphase-promoting complex-dependent catabolic process 14 0.8363201911589008 0.03130187726943567 UB2E1_HUMAN, CDK1_HUMAN, B2RDW1_HUMAN, PSD11_HUMAN, PRS6B_HUMAN, MD2L1_HUMAN, UB2D1_HUMAN, PLK1_HUMAN, PTTG1_HUMAN, CDC26_HUMAN, CDC20_HUMAN, APC1_HUMAN, BUB1B_HUMAN, AURKB_HUMAN 1574 79 16792 1.8905955961591043 1.0 0.5220180917329731 44.947410687233194 -GOTERM_BP_DIRECT GO:0031497~chromatin assembly 4 0.23894862604540024 0.032068046302193065 CAF1B_HUMAN, CDAN1_HUMAN, CAF1A_HUMAN, NOC2L_HUMAN 1574 8 16792 5.3341804320203305 1.0 0.5288442349684332 45.75892291727466 -GOTERM_BP_DIRECT GO:0016926~protein desumoylation 4 0.23894862604540024 0.032068046302193065 SENP2_HUMAN, SENP3_HUMAN, SENP1_HUMAN, FA76B_HUMAN 1574 8 16792 5.3341804320203305 1.0 0.5288442349684332 45.75892291727466 -GOTERM_BP_DIRECT GO:0006903~vesicle targeting 4 0.23894862604540024 0.032068046302193065 SNP23_HUMAN, CLAP2_HUMAN, CLAP1_HUMAN, SNP29_HUMAN 1574 8 16792 5.3341804320203305 1.0 0.5288442349684332 45.75892291727466 -GOTERM_BP_DIRECT GO:0051983~regulation of chromosome segregation 4 0.23894862604540024 0.032068046302193065 PUM2_HUMAN, KI67_HUMAN, PUM1_HUMAN, AURKB_HUMAN 1574 8 16792 5.3341804320203305 1.0 0.5288442349684332 45.75892291727466 -GOTERM_BP_DIRECT GO:0016574~histone ubiquitination 4 0.23894862604540024 0.032068046302193065 CBX8_HUMAN, UBP22_HUMAN, UBE2N_HUMAN, HUWE1_HUMAN 1574 8 16792 5.3341804320203305 1.0 0.5288442349684332 45.75892291727466 -GOTERM_BP_DIRECT GO:0033689~negative regulation of osteoblast proliferation 4 0.23894862604540024 0.032068046302193065 BCL2_HUMAN, E2AK2_HUMAN, NELL1_HUMAN, PLXB1_HUMAN 1574 8 16792 5.3341804320203305 1.0 0.5288442349684332 45.75892291727466 -GOTERM_BP_DIRECT GO:0046626~regulation of insulin receptor signaling pathway 4 0.23894862604540024 0.032068046302193065 PTN1_HUMAN, OGT1_HUMAN, TSC2_HUMAN, NUCKS_HUMAN 1574 8 16792 5.3341804320203305 1.0 0.5288442349684332 45.75892291727466 -GOTERM_BP_DIRECT GO:0038180~nerve growth factor signaling pathway 4 0.23894862604540024 0.032068046302193065 RPGF1_HUMAN, COR1A_HUMAN, MAGI2_HUMAN, KDIS_HUMAN 1574 8 16792 5.3341804320203305 1.0 0.5288442349684332 45.75892291727466 -GOTERM_BP_DIRECT GO:1900246~positive regulation of RIG-I signaling pathway 4 0.23894862604540024 0.032068046302193065 PUM2_HUMAN, ANR17_HUMAN, PUM1_HUMAN, ZCCHV_HUMAN 1574 8 16792 5.3341804320203305 1.0 0.5288442349684332 45.75892291727466 -GOTERM_BP_DIRECT GO:0033173~calcineurin-NFAT signaling cascade 4 0.23894862604540024 0.032068046302193065 NFAC4_HUMAN, NFAC1_HUMAN, NFAC2_HUMAN, PP2BB_HUMAN 1574 8 16792 5.3341804320203305 1.0 0.5288442349684332 45.75892291727466 -GOTERM_BP_DIRECT GO:0006975~DNA damage induced protein phosphorylation 4 0.23894862604540024 0.032068046302193065 A8K3Y2_HUMAN, ATM_HUMAN, CHK1_HUMAN, ABL1_HUMAN 1574 8 16792 5.3341804320203305 1.0 0.5288442349684332 45.75892291727466 -GOTERM_BP_DIRECT GO:0030308~negative regulation of cell growth 19 1.1350059737156513 0.032794451215364825 EI24_HUMAN, BCL2_HUMAN, CDD_HUMAN, TGFB2_HUMAN, DNJB2_HUMAN, SIPA1_HUMAN, RACK1_HUMAN, CCAR2_HUMAN, F1D8N3_HUMAN, RTN4_HUMAN, BTG1_HUMAN, PML_HUMAN, A8K401_HUMAN, DDX3X_HUMAN, A0A5E8_HUMAN, BCL6_HUMAN, Q9HBD4_HUMAN, Q7LCB3_HUMAN, TGFB1_HUMAN, FOXK1_HUMAN 1574 121 16792 1.6751971604691946 1.0 0.5350707892475423 46.51784859955425 -GOTERM_BP_DIRECT GO:0007169~transmembrane receptor protein tyrosine kinase signaling pathway 16 0.955794504181601 0.03316808341652082 ZAP70_HUMAN, TYK2_HUMAN, DOK2_HUMAN, ABI1_HUMAN, CD3E_HUMAN, ACK1_HUMAN, HCK_HUMAN, BLK_HUMAN, ABL2_HUMAN, EGFR_HUMAN, LCP2_HUMAN, RPGF1_HUMAN, ROR1_HUMAN, LCK_HUMAN, DOK1_HUMAN, PHAG1_HUMAN 1574 96 16792 1.778060144006777 1.0 0.537315317134079 46.904282005169605 -GOTERM_BP_DIRECT GO:0071456~cellular response to hypoxia 16 0.955794504181601 0.03316808341652082 BCL2_HUMAN, TPOR_HUMAN, 4EBP1_HUMAN, GATA6_HUMAN, BNI3L_HUMAN, UBQL1_HUMAN, CPEB1_HUMAN, BAD_HUMAN, A7UKX8_HUMAN, MTOR_HUMAN, AKT1_HUMAN, HP1B3_HUMAN, MDM2_HUMAN, NDRG1_HUMAN, SL9A1_HUMAN, LMNA_HUMAN, MDM4_HUMAN 1574 96 16792 1.778060144006777 1.0 0.537315317134079 46.904282005169605 -GOTERM_BP_DIRECT GO:0071157~negative regulation of cell cycle arrest 6 0.35842293906810035 0.03372540740396275 RASF1_HUMAN, TFAP4_HUMAN, A7UKX8_HUMAN, CCNK_HUMAN, MDM2_HUMAN, CDK9_HUMAN, MDM4_HUMAN 1574 20 16792 3.2005082592121985 1.0 0.5415127710387001 47.47579182372703 -GOTERM_BP_DIRECT GO:0031572~G2 DNA damage checkpoint 6 0.35842293906810035 0.03372540740396275 CLSPN_HUMAN, NEK11_HUMAN, PLK1_HUMAN, DTL_HUMAN, CHK1_HUMAN, MAPK2_HUMAN 1574 20 16792 3.2005082592121985 1.0 0.5415127710387001 47.47579182372703 -GOTERM_BP_DIRECT GO:0000045~autophagosome assembly 9 0.5376344086021506 0.03407565071292985 BAKOR_HUMAN, RAB1A_HUMAN, RBCC1_HUMAN, GBRL1_HUMAN, ATG4D_HUMAN, WIPI2_HUMAN, PSN1_HUMAN, UBQL1_HUMAN, TPPC8_HUMAN 1574 41 16792 2.341835311618681 1.0 0.5434245208624585 47.83196479002558 -GOTERM_BP_DIRECT GO:0000278~mitotic cell cycle 9 0.5376344086021506 0.03407565071292985 PAK4_HUMAN, CENPE_HUMAN, MPIP2_HUMAN, MEN1_HUMAN, MYB_HUMAN, CENPT_HUMAN, TFDP2_HUMAN, CENPF_HUMAN, CP250_HUMAN 1574 41 16792 2.341835311618681 1.0 0.5434245208624585 47.83196479002558 -GOTERM_BP_DIRECT GO:0035264~multicellular organism growth 14 0.8363201911589008 0.034291245563983025 TNKS2_HUMAN, TAL2_HUMAN, H33_HUMAN, MTOR_HUMAN, PALB2_HUMAN, APBA1_HUMAN, ADDA_HUMAN, ARI5B_HUMAN, FKBP8_HUMAN, SP2_HUMAN, KLF2_HUMAN, RBBP6_HUMAN, RMI1_HUMAN, CDC42_HUMAN 1574 80 16792 1.8669631512071156 1.0 0.5438815438391477 48.05007143042241 -GOTERM_BP_DIRECT GO:0002223~stimulatory C-type lectin receptor signaling pathway 17 1.015531660692951 0.03498857832848151 CD209_HUMAN, KPCD_HUMAN, KAPCA_HUMAN, B2RDW1_HUMAN, PSD11_HUMAN, UB2D1_HUMAN, RASN_HUMAN, NFKB1_HUMAN, TAB3_HUMAN, L7RRS6_HUMAN, KAPCB_HUMAN, NEMO_HUMAN, UBE2N_HUMAN, PRS6B_HUMAN, ICAM2_HUMAN, M3K7_HUMAN, KAPCG_HUMAN 1574 105 16792 1.7272584256065833 1.0 0.5493957588552494 48.74963173785286 -GOTERM_BP_DIRECT GO:0007507~heart development 26 1.5531660692951015 0.035377241686323446 IF140_HUMAN, AKP13_HUMAN, PYR1_HUMAN, DVL2_HUMAN, NF1_HUMAN, L7RRS6_HUMAN, TFDP2_HUMAN, NFAC4_HUMAN, TY3H_HUMAN, RBCC1_HUMAN, GYS1_HUMAN, MSPD3_HUMAN, NOTC1_HUMAN, TGFB2_HUMAN, SOX4_HUMAN, MEF2A_HUMAN, BCOR_HUMAN, ATM_HUMAN, SRF_HUMAN, CRKL_HUMAN, SPD2B_HUMAN, SENP2_HUMAN, DVL1_HUMAN, TGFB1_HUMAN, TSC2_HUMAN, PP2BB_HUMAN 1574 183 16792 1.5157234014484 1.0 0.5516091921883022 49.13565633574367 -GOTERM_BP_DIRECT GO:0032008~positive regulation of TOR signaling 7 0.4181600955794504 0.03566183897643255 RICTR_HUMAN, RRAGD_HUMAN, WDR24_HUMAN, RRAGC_HUMAN, WDR59_HUMAN, RRAGA_HUMAN, RRAGB_HUMAN 1574 27 16792 2.765871335121653 1.0 0.5527229378413336 49.41657386449152 -GOTERM_BP_DIRECT GO:0043029~T cell homeostasis 7 0.4181600955794504 0.03566183897643255 BCL2_HUMAN, STA5B_HUMAN, COR1A_HUMAN, SIT1_HUMAN, RC3H1_HUMAN, TGFB1_HUMAN, PP2BB_HUMAN 1574 27 16792 2.765871335121653 1.0 0.5527229378413336 49.41657386449152 -GOTERM_BP_DIRECT GO:0030970~retrograde protein transport, ER to cytosol 5 0.2986857825567503 0.03576229991188774 NPL4_HUMAN, ENPL_HUMAN, UFD1_HUMAN, SC61B_HUMAN, AUP1_HUMAN 1574 14 16792 3.810128880014522 1.0 0.5519411322017646 49.51538464133974 -GOTERM_BP_DIRECT GO:0000380~alternative mRNA splicing, via spliceosome 5 0.2986857825567503 0.03576229991188774 SFPQ_HUMAN, PTBP1_HUMAN, RSRC1_HUMAN, SRSF6_HUMAN, SFSWA_HUMAN 1574 14 16792 3.810128880014522 1.0 0.5519411322017646 49.51538464133974 -GOTERM_BP_DIRECT GO:0071044~histone mRNA catabolic process 5 0.2986857825567503 0.03576229991188774 DCP2_HUMAN, F5H0R1_HUMAN, TUT7_HUMAN, EXOSX_HUMAN, ATM_HUMAN 1574 14 16792 3.810128880014522 1.0 0.5519411322017646 49.51538464133974 -GOTERM_BP_DIRECT GO:2001241~positive regulation of extrinsic apoptotic signaling pathway in absence of ligand 5 0.2986857825567503 0.03576229991188774 DAPK3_HUMAN, TGFB2_HUMAN, TNR6_HUMAN, NF1_HUMAN, WWOX_HUMAN 1574 14 16792 3.810128880014522 1.0 0.5519411322017646 49.51538464133974 -GOTERM_BP_DIRECT GO:0003407~neural retina development 5 0.2986857825567503 0.03576229991188774 CASP2_HUMAN, TGFB2_HUMAN, Q9HBD4_HUMAN, AT2B1_HUMAN, PSN1_HUMAN 1574 14 16792 3.810128880014522 1.0 0.5519411322017646 49.51538464133974 -GOTERM_BP_DIRECT GO:0042752~regulation of circadian rhythm 10 0.5973715651135006 0.03624985009898042 FBXL3_HUMAN, SFPQ_HUMAN, NONO_HUMAN, PML_HUMAN, TOP2A_HUMAN, MAGD1_HUMAN, KC1D_HUMAN, CREB1_HUMAN, KLF10_HUMAN, CCAR2_HUMAN 1574 49 16792 2.177216502865441 1.0 0.5551020551482924 49.99233654676127 -GOTERM_BP_DIRECT GO:0010976~positive regulation of neuron projection development 15 0.8960573476702508 0.036817712025936686 KTNB1_HUMAN, RHG35_HUMAN, PEDF_HUMAN, MARK2_HUMAN, PLXB2_HUMAN, ABL2_HUMAN, KDIS_HUMAN, BC11A_HUMAN, MTG8R_HUMAN, RPGF1_HUMAN, RRN3_HUMAN, MAGI2_HUMAN, DVL1_HUMAN, SPN90_HUMAN, RANG_HUMAN 1574 89 16792 1.7980383478720217 1.0 0.559015261010265 50.54247634332354 -GOTERM_BP_DIRECT GO:0032091~negative regulation of protein binding 11 0.6571087216248507 0.03743495154913554 NFAC4_HUMAN, AES_HUMAN, TFP11_HUMAN, KPCD_HUMAN, SENP2_HUMAN, DTBP1_HUMAN, DNJB2_HUMAN, ADNP_HUMAN, DVL1_HUMAN, ROCK1_HUMAN, AURKB_HUMAN 1574 57 16792 2.0588064825341625 1.0 0.5633458371608948 51.13395210687393 -GOTERM_BP_DIRECT GO:0043085~positive regulation of catalytic activity 14 0.8363201911589008 0.037479860184392186 RICTR_HUMAN, BCL2_HUMAN, NPM_HUMAN, ABEC1_HUMAN, T2FA_HUMAN, PSN1_HUMAN, OGT1_HUMAN, DCP1B_HUMAN, RFC1_HUMAN, SPD2B_HUMAN, STX4_HUMAN, 1433B_HUMAN, DCP1A_HUMAN, PHAR4_HUMAN 1574 81 16792 1.8439142234144352 1.0 0.5620016895664733 51.17672386400608 -GOTERM_BP_DIRECT GO:0097191~extrinsic apoptotic signaling pathway 9 0.5376344086021506 0.038763921283160266 BAD_HUMAN, TGFB2_HUMAN, TNR6_HUMAN, PML_HUMAN, HIPK1_HUMAN, PARP2_HUMAN, TGFB1_HUMAN, WWOX_HUMAN, TNFL6_HUMAN 1574 42 16792 2.2860773280087128 1.0 0.5726711733333131 52.38479764476891 -GOTERM_BP_DIRECT GO:0035307~positive regulation of protein dephosphorylation 6 0.35842293906810035 0.040956579838278315 KPCD_HUMAN, 2A5A_HUMAN, ANKL2_HUMAN, TGFB1_HUMAN, PP1R7_HUMAN, SYMPK_HUMAN 1574 21 16792 3.0481031040116173 1.0 0.5913617843013327 54.38253545384888 -GOTERM_BP_DIRECT GO:0090503~RNA phosphodiester bond hydrolysis, exonucleolytic 7 0.4181600955794504 0.04191463609592461 DCP2_HUMAN, TOE1_HUMAN, EXOS5_HUMAN, CNOT2_HUMAN, G3V1J5_HUMAN, PAN3_HUMAN, EXOSX_HUMAN 1574 28 16792 2.6670902160101653 1.0 0.5982260272523957 55.23027804727596 -GOTERM_BP_DIRECT GO:0031338~regulation of vesicle fusion 9 0.5376344086021506 0.043864199870141465 TB10B_HUMAN, TB10C_HUMAN, TBC15_HUMAN, TBC13_HUMAN, TBCD5_HUMAN, TB22B_HUMAN, TB10A_HUMAN, TBCD4_HUMAN, TBCD1_HUMAN 1574 43 16792 2.232912738985254 1.0 0.6135023669108028 56.909526163594705 -GOTERM_BP_DIRECT GO:0043525~positive regulation of neuron apoptotic process 9 0.5376344086021506 0.043864199870141465 CASP2_HUMAN, TGFB2_HUMAN, UB2R1_HUMAN, SRPK2_HUMAN, NF1_HUMAN, ATM_HUMAN, CDC42_HUMAN, ABL1_HUMAN, TNFL6_HUMAN 1574 43 16792 2.232912738985254 1.0 0.6135023669108028 56.909526163594705 -GOTERM_BP_DIRECT GO:0048096~chromatin-mediated maintenance of transcription 4 0.23894862604540024 0.04481520779072288 BAZ1B_HUMAN, KMT2B_HUMAN, ELOF1_HUMAN, CHK1_HUMAN 1574 9 16792 4.741493717351405 1.0 0.6197962063581046 57.706864464816896 -GOTERM_BP_DIRECT GO:0003014~renal system process 4 0.23894862604540024 0.04481520779072288 BCL2_HUMAN, TNR6_HUMAN, PKN1_HUMAN, PKRI1_HUMAN 1574 9 16792 4.741493717351405 1.0 0.6197962063581046 57.706864464816896 -GOTERM_BP_DIRECT GO:0031110~regulation of microtubule polymerization or depolymerization 4 0.23894862604540024 0.04481520779072288 SKA3_HUMAN, SKA1_HUMAN, CLAP2_HUMAN, STMN1_HUMAN 1574 9 16792 4.741493717351405 1.0 0.6197962063581046 57.706864464816896 -GOTERM_BP_DIRECT GO:0035562~negative regulation of chromatin binding 4 0.23894862604540024 0.04481520779072288 NFAC4_HUMAN, SENP2_HUMAN, MEPCE_HUMAN, WAPL_HUMAN 1574 9 16792 4.741493717351405 1.0 0.6197962063581046 57.706864464816896 -GOTERM_BP_DIRECT GO:0030071~regulation of mitotic metaphase/anaphase transition 4 0.23894862604540024 0.04481520779072288 CENPE_HUMAN, CDC6_HUMAN, PLK1_HUMAN, CDC26_HUMAN 1574 9 16792 4.741493717351405 1.0 0.6197962063581046 57.706864464816896 -GOTERM_BP_DIRECT GO:0042158~lipoprotein biosynthetic process 4 0.23894862604540024 0.04481520779072288 ABEC1_HUMAN, APOE_HUMAN, APOA1_HUMAN, APOB_HUMAN 1574 9 16792 4.741493717351405 1.0 0.6197962063581046 57.706864464816896 -GOTERM_BP_DIRECT GO:0045190~isotype switching 5 0.2986857825567503 0.04525120156507322 MLH1_HUMAN, CD40L_HUMAN, RN168_HUMAN, MSH6_HUMAN, RNF8_HUMAN 1574 15 16792 3.5561202880135534 1.0 0.6216759251877488 58.067719398298145 -GOTERM_BP_DIRECT GO:0048026~positive regulation of mRNA splicing, via spliceosome 5 0.2986857825567503 0.04525120156507322 TRA2B_HUMAN, TR150_HUMAN, RU17_HUMAN, RBMX_HUMAN, SNW1_HUMAN 1574 15 16792 3.5561202880135534 1.0 0.6216759251877488 58.067719398298145 -GOTERM_BP_DIRECT GO:0001953~negative regulation of cell-matrix adhesion 5 0.2986857825567503 0.04525120156507322 POSTN_HUMAN, TSP1_HUMAN, NF1_HUMAN, BCL6_HUMAN, MERL_HUMAN 1574 15 16792 3.5561202880135534 1.0 0.6216759251877488 58.067719398298145 -GOTERM_BP_DIRECT GO:0048821~erythrocyte development 5 0.2986857825567503 0.04525120156507322 ARI4A_HUMAN, BCL6_HUMAN, MED1_HUMAN, SRF_HUMAN, RS6_HUMAN 1574 15 16792 3.5561202880135534 1.0 0.6216759251877488 58.067719398298145 -GOTERM_BP_DIRECT GO:0032469~endoplasmic reticulum calcium ion homeostasis 5 0.2986857825567503 0.04525120156507322 BCL2_HUMAN, PML_HUMAN, ITPR1_HUMAN, Q59H91_HUMAN, PSN1_HUMAN, SELK_HUMAN 1574 15 16792 3.5561202880135534 1.0 0.6216759251877488 58.067719398298145 -GOTERM_BP_DIRECT GO:0031175~neuron projection development 16 0.955794504181601 0.04538935337238715 SNAPN_HUMAN, ULK1_HUMAN, CDK16_HUMAN, DTBP1_HUMAN, MILK1_HUMAN, MAP4_HUMAN, DOCK7_HUMAN, UNC5A_HUMAN, STMN1_HUMAN, HERC1_HUMAN, SRF_HUMAN, ATX10_HUMAN, FRYL_HUMAN, CAMP1_HUMAN, RB_HUMAN, VAPA_HUMAN 1574 100 16792 1.7069377382465059 1.0 0.6210680274647306 58.18145274787804 -GOTERM_BP_DIRECT GO:0010748~negative regulation of plasma membrane long-chain fatty acid transport 3 0.17921146953405018 0.046285791621953475 TSP1_HUMAN, AKT1_HUMAN, AKT2_HUMAN 1574 4 16792 8.001270648030497 1.0 0.6266851752136186 58.91237940880665 -GOTERM_BP_DIRECT GO:0014042~positive regulation of neuron maturation 3 0.17921146953405018 0.046285791621953475 BCL2_HUMAN, MTOR_HUMAN, OPA1_HUMAN 1574 4 16792 8.001270648030497 1.0 0.6266851752136186 58.91237940880665 -GOTERM_BP_DIRECT GO:0042159~lipoprotein catabolic process 3 0.17921146953405018 0.046285791621953475 APOE_HUMAN, APOB_HUMAN, ATM_HUMAN 1574 4 16792 8.001270648030497 1.0 0.6266851752136186 58.91237940880665 -GOTERM_BP_DIRECT GO:0007079~mitotic chromosome movement towards spindle pole 3 0.17921146953405018 0.046285791621953475 CENPE_HUMAN, KTNB1_HUMAN, DLGP5_HUMAN 1574 4 16792 8.001270648030497 1.0 0.6266851752136186 58.91237940880665 -GOTERM_BP_DIRECT GO:0034088~maintenance of mitotic sister chromatid cohesion 3 0.17921146953405018 0.046285791621953475 SCC4_HUMAN, NIPBL_HUMAN, RB_HUMAN 1574 4 16792 8.001270648030497 1.0 0.6266851752136186 58.91237940880665 -GOTERM_BP_DIRECT GO:0045132~meiotic chromosome segregation 3 0.17921146953405018 0.046285791621953475 SGO1_HUMAN, SMC4_HUMAN, WAPL_HUMAN 1574 4 16792 8.001270648030497 1.0 0.6266851752136186 58.91237940880665 -GOTERM_BP_DIRECT GO:0031936~negative regulation of chromatin silencing 3 0.17921146953405018 0.046285791621953475 HMGA1_HUMAN, ATAD2_HUMAN, ASF1A_HUMAN 1574 4 16792 8.001270648030497 1.0 0.6266851752136186 58.91237940880665 -GOTERM_BP_DIRECT GO:0000972~transcription-dependent tethering of RNA polymerase II gene DNA at nuclear periphery 3 0.17921146953405018 0.046285791621953475 LDB1_HUMAN, RAE1L_HUMAN, NU133_HUMAN 1574 4 16792 8.001270648030497 1.0 0.6266851752136186 58.91237940880665 -GOTERM_BP_DIRECT GO:0071459~protein localization to chromosome, centromeric region 3 0.17921146953405018 0.046285791621953475 HASP_HUMAN, RB_HUMAN, CTCF_HUMAN 1574 4 16792 8.001270648030497 1.0 0.6266851752136186 58.91237940880665 -GOTERM_BP_DIRECT GO:0030242~pexophagy 3 0.17921146953405018 0.046285791621953475 RBCC1_HUMAN, PI3R4_HUMAN, TPPC8_HUMAN 1574 4 16792 8.001270648030497 1.0 0.6266851752136186 58.91237940880665 -GOTERM_BP_DIRECT GO:0007089~traversing start control point of mitotic cell cycle 3 0.17921146953405018 0.046285791621953475 MTBP_HUMAN, A7UKX8_HUMAN, CDC6_HUMAN, MDM2_HUMAN 1574 4 16792 8.001270648030497 1.0 0.6266851752136186 58.91237940880665 -GOTERM_BP_DIRECT GO:0046602~regulation of mitotic centrosome separation 3 0.17921146953405018 0.046285791621953475 KIF11_HUMAN, NEK2_HUMAN, CHK1_HUMAN 1574 4 16792 8.001270648030497 1.0 0.6266851752136186 58.91237940880665 -GOTERM_BP_DIRECT GO:0051716~cellular response to stimulus 3 0.17921146953405018 0.046285791621953475 EI2BD_HUMAN, EI2BG_HUMAN, EI2BA_HUMAN 1574 4 16792 8.001270648030497 1.0 0.6266851752136186 58.91237940880665 -GOTERM_BP_DIRECT GO:0031087~deadenylation-independent decapping of nuclear-transcribed mRNA 3 0.17921146953405018 0.046285791621953475 DCP1A_HUMAN, DCP1B_HUMAN, EDC3_HUMAN 1574 4 16792 8.001270648030497 1.0 0.6266851752136186 58.91237940880665 -GOTERM_BP_DIRECT GO:0042059~negative regulation of epidermal growth factor receptor signaling pathway 8 0.4778972520908005 0.04674630046012589 ARHG7_HUMAN, SH3K1_HUMAN, B2RDW1_HUMAN, EPN1_HUMAN, CLCA_HUMAN, PTN2_HUMAN, CDC42_HUMAN, EGFR_HUMAN 1574 36 16792 2.3707468586757026 1.0 0.6286758115613829 59.283144466796735 -GOTERM_BP_DIRECT GO:0048536~spleen development 8 0.4778972520908005 0.04674630046012589 BCL2_HUMAN, TNR6_HUMAN, JARD2_HUMAN, RBM15_HUMAN, HXB4_HUMAN, RC3H1_HUMAN, PKN1_HUMAN, ABL1_HUMAN 1574 36 16792 2.3707468586757026 1.0 0.6286758115613829 59.283144466796735 -GOTERM_BP_DIRECT GO:0090307~mitotic spindle assembly 8 0.4778972520908005 0.04674630046012589 RHOA_HUMAN, KIF11_HUMAN, KIF2A_HUMAN, NEK2_HUMAN, KIFC1_HUMAN, CLAP1_HUMAN, SPICE_HUMAN, TPX2_HUMAN 1574 36 16792 2.3707468586757026 1.0 0.6286758115613829 59.283144466796735 -GOTERM_BP_DIRECT GO:0007179~transforming growth factor beta receptor signaling pathway 15 0.8960573476702508 0.04690888445725678 ZYX_HUMAN, TGFA1_HUMAN, TGFB2_HUMAN, B2RDW1_HUMAN, UBP15_HUMAN, PARD3_HUMAN, APOA1_HUMAN, KLF10_HUMAN, SMAD9_HUMAN, RHOA_HUMAN, SMAD7_HUMAN, PML_HUMAN, CREB1_HUMAN, M3K7_HUMAN, TGFB1_HUMAN 1574 92 16792 1.7394066626153253 1.0 0.6282530235922654 59.413285932355805 -GOTERM_BP_DIRECT GO:0007163~establishment or maintenance of cell polarity 7 0.4181600955794504 0.04881520257620038 LEUK_HUMAN, CLAP2_HUMAN, PARD3_HUMAN, CAP1_HUMAN, CLAP1_HUMAN, CD3G_HUMAN, CDC42_HUMAN 1574 29 16792 2.575121587871884 1.0 0.6415484531334967 60.91012595233436 -GOTERM_BP_DIRECT GO:0006294~nucleotide-excision repair, preincision complex assembly 7 0.4181600955794504 0.04881520257620038 B2RDW1_HUMAN, ERCC3_HUMAN, CUL4A_HUMAN, TF2H2_HUMAN, XPC_HUMAN, CHD1L_HUMAN, ERCC5_HUMAN 1574 29 16792 2.575121587871884 1.0 0.6415484531334967 60.91012595233436 -GOTERM_BP_DIRECT GO:0051973~positive regulation of telomerase activity 7 0.4181600955794504 0.04881520257620038 KLF4_HUMAN, M3K4_HUMAN, KPCT_HUMAN, DKC1_HUMAN, POTE1_HUMAN, NEK2_HUMAN, AURKB_HUMAN 1574 29 16792 2.575121587871884 1.0 0.6415484531334967 60.91012595233436 -GOTERM_BP_DIRECT GO:2001243~negative regulation of intrinsic apoptotic signaling pathway 6 0.35842293906810035 0.0490540513296771 BCL2_HUMAN, RMP_HUMAN, VDAC2_HUMAN, DDX3X_HUMAN, NS1BP_HUMAN, NOC2L_HUMAN 1574 22 16792 2.9095529629201806 1.0 0.6416747743362834 61.09394219029129 -GOTERM_BP_DIRECT GO:0000717~nucleotide-excision repair, DNA duplex unwinding 6 0.35842293906810035 0.0490540513296771 B2RDW1_HUMAN, ERCC3_HUMAN, CUL4A_HUMAN, TF2H2_HUMAN, XPC_HUMAN, CHD1L_HUMAN 1574 22 16792 2.9095529629201806 1.0 0.6416747743362834 61.09394219029129 -GOTERM_BP_DIRECT GO:1900087~positive regulation of G1/S transition of mitotic cell cycle 6 0.35842293906810035 0.0490540513296771 ANR17_HUMAN, IF4G1_HUMAN, DDX3X_HUMAN, CUL4A_HUMAN, MEPCE_HUMAN, B0YJ88_HUMAN 1574 22 16792 2.9095529629201806 1.0 0.6416747743362834 61.09394219029129 -GOTERM_BP_DIRECT GO:0050821~protein stabilization 20 1.1947431302270013 0.05025808858051509 MORC3_HUMAN, KPCD_HUMAN, SOX4_HUMAN, PHB2_HUMAN, APOA1_HUMAN, H15_HUMAN, RASF1_HUMAN, SMAD7_HUMAN, BAG6_HUMAN, AAK1_HUMAN, PML_HUMAN, A8K401_HUMAN, DVL1_HUMAN, COG7_HUMAN, CHP3_HUMAN, CREB1_HUMAN, DVL3_HUMAN, GTSE1_HUMAN, PEX19_HUMAN, MDM4_HUMAN 1574 136 16792 1.568876597653038 1.0 0.6491143071314309 62.008167527407196 -GOTERM_BP_DIRECT GO:0006417~regulation of translation 10 0.5973715651135006 0.05058059143514137 ACOC_HUMAN, EI2BD_HUMAN, CASC3_HUMAN, MTPN_HUMAN, DDX6_HUMAN, AKT1_HUMAN, PA2G4_HUMAN, AKT2_HUMAN, RBM3_HUMAN, LS14A_HUMAN 1574 52 16792 2.0516078584693576 1.0 0.6498293313172936 62.24956828811704 -GOTERM_BP_DIRECT GO:0042102~positive regulation of T cell proliferation 11 0.6571087216248507 0.05080356848954101 KPCT_HUMAN, LEUK_HUMAN, Q6AZ88_HUMAN, TFR1_HUMAN, COR1A_HUMAN, CD6_HUMAN, CD3E_HUMAN, CD40L_HUMAN, NCK2_HUMAN, CD59_HUMAN, SASH3_HUMAN, MCP_HUMAN 1574 60 16792 1.9558661584074544 1.0 0.6497989721794494 62.415621843918515 -GOTERM_BP_DIRECT GO:0007249~I-kappaB kinase/NF-kappaB signaling 11 0.6571087216248507 0.05080356848954101 NEMO_HUMAN, TANK_HUMAN, HOIL1_HUMAN, RNF31_HUMAN, LY96_HUMAN, B2RDW1_HUMAN, ROCK1_HUMAN, NFKB1_HUMAN, TAB3_HUMAN, M3K7_HUMAN, TLR4_HUMAN 1574 60 16792 1.9558661584074544 1.0 0.6497989721794494 62.415621843918515 -GOTERM_BP_DIRECT GO:0007420~brain development 26 1.5531660692951015 0.05171932210466884 NIPBL_HUMAN, CHD8_HUMAN, F263_HUMAN, NF1_HUMAN, MED1_HUMAN, PLXB2_HUMAN, BPTF_HUMAN, ARL6_HUMAN, ARF4_HUMAN, SAS10_HUMAN, TNR6_HUMAN, MACOI_HUMAN, AFF2_HUMAN, MEN1_HUMAN, PHF8_HUMAN, CASP2_HUMAN, H33_HUMAN, ZN335_HUMAN, STMN1_HUMAN, PA1B3_HUMAN, ATM_HUMAN, BAG6_HUMAN, MTOR_HUMAN, BCR_HUMAN, AT2B1_HUMAN, SNAA_HUMAN 1574 190 16792 1.459880960342406 1.0 0.6548555825997258 63.090369998538165 -GOTERM_BP_DIRECT GO:0006334~nucleosome assembly 18 1.0752688172043012 0.05172993713053188 NP1L1_HUMAN, NPM_HUMAN, H10_HUMAN, H13_HUMAN, H33_HUMAN, RSF1_HUMAN, H1X_HUMAN, NASP_HUMAN, KAT6A_HUMAN, AN32B_HUMAN, H15_HUMAN, ASF1A_HUMAN, H12_HUMAN, H14_HUMAN, HP1B3_HUMAN, H32_HUMAN, SMCA5_HUMAN, DAXX_HUMAN 1574 119 16792 1.6137016433002678 1.0 0.6532600306468905 63.09812373020349 -GOTERM_BP_DIRECT GO:0032467~positive regulation of cytokinesis 8 0.4778972520908005 0.05317980303468506 RHOA_HUMAN, SVIL_HUMAN, KI20B_HUMAN, MPIP2_HUMAN, CDC6_HUMAN, CTRO_HUMAN, CDC42_HUMAN, AURKB_HUMAN 1574 37 16792 2.306672619252035 1.0 0.6620176401539701 64.14280885221369 -GOTERM_BP_DIRECT GO:0001843~neural tube closure 13 0.7765830346475507 0.05383993189903156 SETD2_HUMAN, SUFU_HUMAN, KAPCA_HUMAN, KI20B_HUMAN, TGFB2_HUMAN, DVL2_HUMAN, C1TM_HUMAN, RHG35_HUMAN, PLXB2_HUMAN, TGFB1_HUMAN, PHAR4_HUMAN, KAPCB_HUMAN, TSC2_HUMAN 1574 77 16792 1.801151834188683 1.0 0.6650110521935254 64.6091241355762 -GOTERM_BP_DIRECT GO:0042147~retrograde transport, endosome to Golgi 12 0.7168458781362007 0.05506917620124233 STX10_HUMAN, SNX2_HUMAN, TB10B_HUMAN, VP26B_HUMAN, TB10C_HUMAN, FYV1_HUMAN, JIP4_HUMAN, GBF1_HUMAN, TBCD5_HUMAN, TB10A_HUMAN, GOSR2_HUMAN, UBE2O_HUMAN 1574 69 16792 1.8553671067896804 1.0 0.6718644915568215 65.46220403036953 -GOTERM_BP_DIRECT GO:0071363~cellular response to growth factor stimulus 9 0.5376344086021506 0.05534088928362108 KLF4_HUMAN, KS6B1_HUMAN, STA5B_HUMAN, RMP_HUMAN, TSP1_HUMAN, A7UKX8_HUMAN, TY3H_HUMAN, EMD_HUMAN, MDM2_HUMAN, RACK1_HUMAN 1574 45 16792 2.133672172808132 1.0 0.6720802376476043 65.6481240505882 -GOTERM_BP_DIRECT GO:0000712~resolution of meiotic recombination intermediates 5 0.2986857825567503 0.05600306544647443 TOP2B_HUMAN, MLH1_HUMAN, TOP2A_HUMAN, TEX11_HUMAN, EME1_HUMAN 1574 16 16792 3.3338627700127064 1.0 0.6749261691995188 66.09725870449687 -GOTERM_BP_DIRECT GO:0010613~positive regulation of cardiac muscle hypertrophy 5 0.2986857825567503 0.05600306544647443 KPCA_HUMAN, MEF2A_HUMAN, MTPN_HUMAN, CDK9_HUMAN, SL9A1_HUMAN 1574 16 16792 3.3338627700127064 1.0 0.6749261691995188 66.09725870449687 -GOTERM_BP_DIRECT GO:0042307~positive regulation of protein import into nucleus 5 0.2986857825567503 0.05600306544647443 TPR_HUMAN, KPCD_HUMAN, NTF2_HUMAN, TGFB1_HUMAN, MK14_HUMAN 1574 16 16792 3.3338627700127064 1.0 0.6749261691995188 66.09725870449687 -GOTERM_BP_DIRECT GO:0010608~posttranscriptional regulation of gene expression 5 0.2986857825567503 0.05600306544647443 PUM2_HUMAN, BAKOR_HUMAN, NANO1_HUMAN, PUM1_HUMAN, RC3H1_HUMAN 1574 16 16792 3.3338627700127064 1.0 0.6749261691995188 66.09725870449687 -GOTERM_BP_DIRECT GO:1904355~positive regulation of telomere capping 5 0.2986857825567503 0.05600306544647443 M3K4_HUMAN, KPCT_HUMAN, TNKS2_HUMAN, NEK2_HUMAN, AURKB_HUMAN 1574 16 16792 3.3338627700127064 1.0 0.6749261691995188 66.09725870449687 -GOTERM_BP_DIRECT GO:1900740~positive regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway 7 0.4181600955794504 0.056373936192903436 BCL2_HUMAN, BAD_HUMAN, 1433B_HUMAN, 1433G_HUMAN, P63_HUMAN, 1433S_HUMAN, ASPP2_HUMAN 1574 30 16792 2.4892842016094874 1.0 0.6757882946306453 66.34637477749207 -GOTERM_BP_DIRECT GO:0031295~T cell costimulation 13 0.7765830346475507 0.058446177214829434 RICTR_HUMAN, LEUK_HUMAN, CD5_HUMAN, MTOR_HUMAN, PTN6_HUMAN, CD3E_HUMAN, CD40L_HUMAN, GRAP2_HUMAN, AKT1_HUMAN, LCK_HUMAN, CD3Z_HUMAN, CD3G_HUMAN, CDC42_HUMAN 1574 78 16792 1.7780601440067767 1.0 0.6877290256859809 67.7067243824043 -GOTERM_BP_DIRECT GO:2000637~positive regulation of gene silencing by miRNA 4 0.23894862604540024 0.05967125352786726 PUM2_HUMAN, FXR1_HUMAN, PUM1_HUMAN, LIMD1_HUMAN 1574 10 16792 4.267344345616264 1.0 0.6938960996535575 68.48628066668593 -GOTERM_BP_DIRECT GO:0006268~DNA unwinding involved in DNA replication 4 0.23894862604540024 0.05967125352786726 TOP2B_HUMAN, HMGA1_HUMAN, TOP2A_HUMAN, MCM4_HUMAN 1574 10 16792 4.267344345616264 1.0 0.6938960996535575 68.48628066668593 -GOTERM_BP_DIRECT GO:0001771~immunological synapse formation 4 0.23894862604540024 0.05967125352786726 Q6AZ88_HUMAN, COR1A_HUMAN, CD6_HUMAN, NCK2_HUMAN, DOCK2_HUMAN 1574 10 16792 4.267344345616264 1.0 0.6938960996535575 68.48628066668593 -GOTERM_BP_DIRECT GO:0090084~negative regulation of inclusion body assembly 4 0.23894862604540024 0.05967125352786726 DNJB6_HUMAN, SACS_HUMAN, HSF1_HUMAN, DNJB2_HUMAN 1574 10 16792 4.267344345616264 1.0 0.6938960996535575 68.48628066668593 -GOTERM_BP_DIRECT GO:0006613~cotranslational protein targeting to membrane 4 0.23894862604540024 0.05967125352786726 SRP14_HUMAN, SEC62_HUMAN, SSRA_HUMAN, TRAM1_HUMAN 1574 10 16792 4.267344345616264 1.0 0.6938960996535575 68.48628066668593 -GOTERM_BP_DIRECT GO:0045792~negative regulation of cell size 4 0.23894862604540024 0.05967125352786726 AKTS1_HUMAN, MTOR_HUMAN, AKT1_HUMAN, B0YJ88_HUMAN 1574 10 16792 4.267344345616264 1.0 0.6938960996535575 68.48628066668593 -GOTERM_BP_DIRECT GO:0007257~activation of JUN kinase activity 8 0.4778972520908005 0.060140813060197175 PTN1_HUMAN, M3K2_HUMAN, CD40L_HUMAN, DBNL_HUMAN, JIP4_HUMAN, M3K5_HUMAN, PKN1_HUMAN, DAXX_HUMAN 1574 38 16792 2.2459707082190867 1.0 0.6952397247679117 68.78032655782124 -GOTERM_BP_DIRECT GO:0000902~cell morphogenesis 11 0.6571087216248507 0.06128965072269496 TBCC_HUMAN, FRYL_HUMAN, TGFB2_HUMAN, KC1A_HUMAN, CAP1_HUMAN, BCL6_HUMAN, MED1_HUMAN, ADDA_HUMAN, SCFD1_HUMAN, KLF2_HUMAN, MK14_HUMAN 1574 62 16792 1.8927737016846333 1.0 0.7007251366662419 69.48883440211111 -GOTERM_BP_DIRECT GO:0016575~histone deacetylation 9 0.5376344086021506 0.06173269612535822 ARI4B_HUMAN, CHD3_HUMAN, SIN3B_HUMAN, BAZ2A_HUMAN, HDAC2_HUMAN, ARI4A_HUMAN, A8K401_HUMAN, RBM14_HUMAN, B3KTM8_HUMAN 1574 46 16792 2.0872879951383903 1.0 0.7018432363606888 69.75797887949344 -GOTERM_BP_DIRECT GO:0048511~rhythmic process 10 0.5973715651135006 0.061952680237147645 FBXL3_HUMAN, CBX3_HUMAN, NFYA_HUMAN, SFPQ_HUMAN, CRTC1_HUMAN, TOP2A_HUMAN, CSK21_HUMAN, RACK1_HUMAN, SP1_HUMAN, CCAR2_HUMAN 1574 54 16792 1.975622382229752 1.0 0.701609954684166 69.89077985655192 -GOTERM_BP_DIRECT GO:0090630~activation of GTPase activity 13 0.7765830346475507 0.06330784287745045 PI51A_HUMAN, TB10B_HUMAN, TB10C_HUMAN, TBC15_HUMAN, DOCK7_HUMAN, SI1L1_HUMAN, TBC13_HUMAN, AKT2_HUMAN, TBCD5_HUMAN, TB22B_HUMAN, TB10A_HUMAN, TBCD4_HUMAN, TBCD1_HUMAN 1574 79 16792 1.755553053576311 1.0 0.7081115798711136 70.69677324025862 -GOTERM_BP_DIRECT GO:0071479~cellular response to ionizing radiation 7 0.4181600955794504 0.06459646028306607 BLM_HUMAN, TANK_HUMAN, R51A1_HUMAN, RHOB_HUMAN, TGFB1_HUMAN, IF16_HUMAN, MK14_HUMAN 1574 31 16792 2.4089847112349876 1.0 0.7140478363519704 71.44420755868282 -GOTERM_BP_DIRECT GO:0030100~regulation of endocytosis 7 0.4181600955794504 0.06459646028306607 PTN1_HUMAN, RAB4A_HUMAN, SNX17_HUMAN, ABL2_HUMAN, ABL1_HUMAN, TSC2_HUMAN, PACN3_HUMAN 1574 31 16792 2.4089847112349876 1.0 0.7140478363519704 71.44420755868282 -GOTERM_BP_DIRECT GO:0042771~intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator 7 0.4181600955794504 0.06459646028306607 BAG6_HUMAN, DYRK2_HUMAN, PML_HUMAN, HIPK1_HUMAN, P63_HUMAN, SNW1_HUMAN, IF16_HUMAN 1574 31 16792 2.4089847112349876 1.0 0.7140478363519704 71.44420755868282 -GOTERM_BP_DIRECT GO:0043507~positive regulation of JUN kinase activity 7 0.4181600955794504 0.06459646028306607 M3K4_HUMAN, TAOK3_HUMAN, TLR9_HUMAN, DVL2_HUMAN, M3K5_HUMAN, DVL3_HUMAN, M3K7_HUMAN 1574 31 16792 2.4089847112349876 1.0 0.7140478363519704 71.44420755868282 -GOTERM_BP_DIRECT GO:0051436~negative regulation of ubiquitin-protein ligase activity involved in mitotic cell cycle 12 0.7168458781362007 0.06532488319649846 UB2E1_HUMAN, CDK1_HUMAN, B2RDW1_HUMAN, PSD11_HUMAN, PRS6B_HUMAN, UB2D1_HUMAN, MD2L1_HUMAN, CDK2_HUMAN, CDC26_HUMAN, CDC20_HUMAN, APC1_HUMAN, BUB1B_HUMAN 1574 71 16792 1.8031032446265907 1.0 0.7166709570691059 71.85869080322742 -GOTERM_BP_DIRECT GO:0000079~regulation of cyclin-dependent protein serine/threonine kinase activity 8 0.4778972520908005 0.06763436902155064 PMYT1_HUMAN, BLM_HUMAN, CCNT1_HUMAN, CDC6_HUMAN, 1433S_HUMAN, CCNK_HUMAN, MPIP1_HUMAN, CCNY_HUMAN 1574 39 16792 2.1883817157006487 1.0 0.7279558256273755 73.13548958416514 -GOTERM_BP_DIRECT GO:0030890~positive regulation of B cell proliferation 8 0.4778972520908005 0.06763436902155064 BCL2_HUMAN, ATAD5_HUMAN, TFR1_HUMAN, NFAC2_HUMAN, BCL6_HUMAN, CD81_HUMAN, SASH3_HUMAN, TLR4_HUMAN 1574 39 16792 2.1883817157006487 1.0 0.7279558256273755 73.13548958416514 -GOTERM_BP_DIRECT GO:0007088~regulation of mitotic nuclear division 6 0.35842293906810035 0.0678703878836671 PMYT1_HUMAN, DAPK3_HUMAN, KI20B_HUMAN, KI67_HUMAN, NEK2_HUMAN, CDC42_HUMAN 1574 24 16792 2.6670902160101653 1.0 0.7277363503038157 73.26283786006037 -GOTERM_BP_DIRECT GO:2000114~regulation of establishment of cell polarity 5 0.2986857825567503 0.06799848704721838 RICTR_HUMAN, KI20B_HUMAN, KANK1_HUMAN, ROCK1_HUMAN, RACK1_HUMAN 1574 17 16792 3.137753195306076 1.0 0.7269366292759976 73.33171660878692 -GOTERM_BP_DIRECT GO:0030150~protein import into mitochondrial matrix 5 0.2986857825567503 0.06799848704721838 TIM50_HUMAN, TIM16_HUMAN, TI17A_HUMAN, TIM23_HUMAN, TOM20_HUMAN 1574 17 16792 3.137753195306076 1.0 0.7269366292759976 73.33171660878692 -GOTERM_BP_DIRECT GO:0048568~embryonic organ development 5 0.2986857825567503 0.06799848704721838 EPN1_HUMAN, PALB2_HUMAN, ERCC3_HUMAN, DPOE1_HUMAN, RBBP6_HUMAN 1574 17 16792 3.137753195306076 1.0 0.7269366292759976 73.33171660878692 -GOTERM_BP_DIRECT GO:0016571~histone methylation 5 0.2986857825567503 0.06799848704721838 EHMT1_HUMAN, ANM8_HUMAN, A2ABF8_HUMAN, NSD3_HUMAN, SATB1_HUMAN 1574 17 16792 3.137753195306076 1.0 0.7269366292759976 73.33171660878692 -GOTERM_BP_DIRECT GO:0001824~blastocyst development 5 0.2986857825567503 0.06799848704721838 NEK2_HUMAN, PRS6B_HUMAN, NASP_HUMAN, J3KN59_HUMAN, DAD1_HUMAN 1574 17 16792 3.137753195306076 1.0 0.7269366292759976 73.33171660878692 -GOTERM_BP_DIRECT GO:0051028~mRNA transport 9 0.5376344086021506 0.06856718687878874 NCBP3_HUMAN, IWS1_HUMAN, G3BP2_HUMAN, SENP2_HUMAN, GANP_HUMAN, NTF2_HUMAN, IF2B1_HUMAN, SPT6H_HUMAN, NCBP1_HUMAN 1574 47 16792 2.042877612263105 1.0 0.728508403987839 73.63548245863612 -GOTERM_BP_DIRECT GO:0001701~in utero embryonic development 25 1.4934289127837514 0.07014947058274736 CO5_HUMAN, CHD8_HUMAN, ZN335_HUMAN, CUL4A_HUMAN, ADDA_HUMAN, GATA6_HUMAN, SRF_HUMAN, KDIS_HUMAN, RBBP6_HUMAN, DUS3_HUMAN, RIC8A_HUMAN, PLCG1_HUMAN, TAPT1_HUMAN, BTF3_HUMAN, NOTC1_HUMAN, EPN1_HUMAN, RRN3_HUMAN, APBA1_HUMAN, S39A1_HUMAN, APOB_HUMAN, KLF2_HUMAN, DSRAD_HUMAN, ELL_HUMAN, ADA10_HUMAN, YBOX3_HUMAN 1574 187 16792 1.4262514524118532 1.0 0.7353824948706836 74.46350293613926 -GOTERM_BP_DIRECT GO:0007015~actin filament organization 12 0.7168458781362007 0.07088751828888362 BCL2_HUMAN, EVL_HUMAN, VINEX_HUMAN, COR1A_HUMAN, RAC2_HUMAN, WASP_HUMAN, KPTN_HUMAN, NCK2_HUMAN, AKAP2_HUMAN, TPM3_HUMAN, TMOD2_HUMAN, DREB_HUMAN 1574 72 16792 1.778060144006777 1.0 0.7377370382931991 74.84125166483328 -GOTERM_BP_DIRECT GO:0051534~negative regulation of NFAT protein import into nucleus 3 0.17921146953405018 0.07241104553713429 DYRK2_HUMAN, MTOR_HUMAN, TB10C_HUMAN 1574 5 16792 6.401016518424397 1.0 0.7440126476882889 75.60435991341473 -GOTERM_BP_DIRECT GO:0010757~negative regulation of plasminogen activation 3 0.17921146953405018 0.07241104553713429 TSP1_HUMAN, CBPB2_HUMAN, A2AP_HUMAN 1574 5 16792 6.401016518424397 1.0 0.7440126476882889 75.60435991341473 -GOTERM_BP_DIRECT GO:0071801~regulation of podosome assembly 3 0.17921146953405018 0.07241104553713429 GELS_HUMAN, HCK_HUMAN, BLK_HUMAN 1574 5 16792 6.401016518424397 1.0 0.7440126476882889 75.60435991341473 -GOTERM_BP_DIRECT GO:0051169~nuclear transport 3 0.17921146953405018 0.07241104553713429 HMGA1_HUMAN, BAF_HUMAN, PSIP1_HUMAN 1574 5 16792 6.401016518424397 1.0 0.7440126476882889 75.60435991341473 -GOTERM_BP_DIRECT GO:2000002~negative regulation of DNA damage checkpoint 3 0.17921146953405018 0.07241104553713429 DX39B_HUMAN, THOC5_HUMAN, BRD4_HUMAN 1574 5 16792 6.401016518424397 1.0 0.7440126476882889 75.60435991341473 -GOTERM_BP_DIRECT GO:0060744~mammary gland branching involved in thelarche 3 0.17921146953405018 0.07241104553713429 PHB2_HUMAN, MED1_HUMAN, TGFB1_HUMAN 1574 5 16792 6.401016518424397 1.0 0.7440126476882889 75.60435991341473 -GOTERM_BP_DIRECT GO:1904385~cellular response to angiotensin 3 0.17921146953405018 0.07241104553713429 KPCD_HUMAN, HSF1_HUMAN, CDC6_HUMAN 1574 5 16792 6.401016518424397 1.0 0.7440126476882889 75.60435991341473 -GOTERM_BP_DIRECT GO:0002634~regulation of germinal center formation 3 0.17921146953405018 0.07241104553713429 BCL6_HUMAN, RC3H1_HUMAN, PKN1_HUMAN 1574 5 16792 6.401016518424397 1.0 0.7440126476882889 75.60435991341473 -GOTERM_BP_DIRECT GO:0003289~atrial septum primum morphogenesis 3 0.17921146953405018 0.07241104553713429 NSD2_HUMAN, TGFB2_HUMAN, SOX4_HUMAN 1574 5 16792 6.401016518424397 1.0 0.7440126476882889 75.60435991341473 -GOTERM_BP_DIRECT GO:0016202~regulation of striated muscle tissue development 3 0.17921146953405018 0.07241104553713429 MTPN_HUMAN, TGFB1_HUMAN, CENPF_HUMAN 1574 5 16792 6.401016518424397 1.0 0.7440126476882889 75.60435991341473 -GOTERM_BP_DIRECT GO:0043550~regulation of lipid kinase activity 3 0.17921146953405018 0.07241104553713429 RB_HUMAN, NRBF2_HUMAN, RBL1_HUMAN 1574 5 16792 6.401016518424397 1.0 0.7440126476882889 75.60435991341473 -GOTERM_BP_DIRECT GO:0060718~chorionic trophoblast cell differentiation 3 0.17921146953405018 0.07241104553713429 M3K4_HUMAN, E2F8_HUMAN, E2F7_HUMAN 1574 5 16792 6.401016518424397 1.0 0.7440126476882889 75.60435991341473 -GOTERM_BP_DIRECT GO:0030174~regulation of DNA-dependent DNA replication initiation 3 0.17921146953405018 0.07241104553713429 WRIP1_HUMAN, TICRR_HUMAN, CDT1_HUMAN 1574 5 16792 6.401016518424397 1.0 0.7440126476882889 75.60435991341473 -GOTERM_BP_DIRECT GO:0035791~platelet-derived growth factor receptor-beta signaling pathway 3 0.17921146953405018 0.07241104553713429 PTN1_HUMAN, CLAP2_HUMAN, ABL1_HUMAN 1574 5 16792 6.401016518424397 1.0 0.7440126476882889 75.60435991341473 -GOTERM_BP_DIRECT GO:2000780~negative regulation of double-strand break repair 3 0.17921146953405018 0.07241104553713429 RN169_HUMAN, UBR5_HUMAN, TRIPC_HUMAN 1574 5 16792 6.401016518424397 1.0 0.7440126476882889 75.60435991341473 -GOTERM_BP_DIRECT GO:0060761~negative regulation of response to cytokine stimulus 3 0.17921146953405018 0.07241104553713429 KLF4_HUMAN, AES_HUMAN, APOA1_HUMAN 1574 5 16792 6.401016518424397 1.0 0.7440126476882889 75.60435991341473 -GOTERM_BP_DIRECT GO:0000187~activation of MAPK activity 16 0.955794504181601 0.0738202597027598 CO5_HUMAN, TSP1_HUMAN, B2RDW1_HUMAN, CD81_HUMAN, CXCR4_HUMAN, TAB3_HUMAN, TLR4_HUMAN, NEMO_HUMAN, PEA15_HUMAN, CDK1_HUMAN, A8K3Y2_HUMAN, M3K2_HUMAN, M3K7_HUMAN, MAPK2_HUMAN, MADD_HUMAN, MK14_HUMAN 1574 107 16792 1.595268914249071 1.0 0.7495429573891068 76.29065714624548 -GOTERM_BP_DIRECT GO:0007173~epidermal growth factor receptor signaling pathway 10 0.5973715651135006 0.07483190236980486 ARF4_HUMAN, PLCG1_HUMAN, DGKD_HUMAN, NCK2_HUMAN, RASN_HUMAN, TGFB1_HUMAN, PHAG1_HUMAN, ERBIN_HUMAN, ABL1_HUMAN, EGFR_HUMAN 1574 56 16792 1.905064440007261 1.0 0.7530188116126505 76.77201976332508 -GOTERM_BP_DIRECT GO:1901215~negative regulation of neuron death 8 0.4778972520908005 0.07566256612535373 NEMO_HUMAN, HSF1_HUMAN, APOE_HUMAN, AKT1_HUMAN, CHM4A_HUMAN, D3DQW7_HUMAN, PEDF_HUMAN, CREB1_HUMAN 1574 40 16792 2.133672172808132 1.0 0.7555683205855109 77.16033594185569 -GOTERM_BP_DIRECT GO:0045071~negative regulation of viral genome replication 8 0.4778972520908005 0.07566256612535373 E2AK2_HUMAN, RN5A_HUMAN, SRPK2_HUMAN, ZCCHV_HUMAN, TRFL_HUMAN, TNIP1_HUMAN, IF16_HUMAN, DSRAD_HUMAN 1574 40 16792 2.133672172808132 1.0 0.7555683205855109 77.16033594185569 -GOTERM_BP_DIRECT GO:0030218~erythrocyte differentiation 8 0.4778972520908005 0.07566256612535373 ACINU_HUMAN, DNS2A_HUMAN, HCLS1_HUMAN, IKZF1_HUMAN, ATIF1_HUMAN, ADDA_HUMAN, PTN2_HUMAN, DSRAD_HUMAN 1574 40 16792 2.133672172808132 1.0 0.7555683205855109 77.16033594185569 -GOTERM_BP_DIRECT GO:0038083~peptidyl-tyrosine autophosphorylation 8 0.4778972520908005 0.07566256612535373 ZAP70_HUMAN, TYK2_HUMAN, ACK1_HUMAN, LCK_HUMAN, HCK_HUMAN, BLK_HUMAN, ABL2_HUMAN, ABL1_HUMAN 1574 40 16792 2.133672172808132 1.0 0.7555683205855109 77.16033594185569 -GOTERM_BP_DIRECT GO:0007346~regulation of mitotic cell cycle 8 0.4778972520908005 0.07566256612535373 DAPK3_HUMAN, B4DHN5_HUMAN, CYLD_HUMAN, TTC28_HUMAN, PLK1_HUMAN, GBF1_HUMAN, CDK9_HUMAN, RB_HUMAN 1574 40 16792 2.133672172808132 1.0 0.7555683205855109 77.16033594185569 -GOTERM_BP_DIRECT GO:2000773~negative regulation of cellular senescence 4 0.23894862604540024 0.07650403327390554 CDK6_HUMAN, P63_HUMAN, BCL6_HUMAN, ABL1_HUMAN 1574 11 16792 3.8794039505602407 1.0 0.7581250527690335 77.54743102202036 -GOTERM_BP_DIRECT GO:0045945~positive regulation of transcription from RNA polymerase III promoter 4 0.23894862604540024 0.07650403327390554 CHD8_HUMAN, MTOR_HUMAN, ICE1_HUMAN, ELL_HUMAN 1574 11 16792 3.8794039505602407 1.0 0.7581250527690335 77.54743102202036 -GOTERM_BP_DIRECT GO:0045176~apical protein localization 4 0.23894862604540024 0.07650403327390554 ARF4_HUMAN, DLG5_HUMAN, SNAA_HUMAN, B0YJ88_HUMAN 1574 11 16792 3.8794039505602407 1.0 0.7581250527690335 77.54743102202036 -GOTERM_BP_DIRECT GO:0051168~nuclear export 4 0.23894862604540024 0.07650403327390554 AKP13_HUMAN, NEMF_HUMAN, PHAX_HUMAN, NCBP1_HUMAN 1574 11 16792 3.8794039505602407 1.0 0.7581250527690335 77.54743102202036 -GOTERM_BP_DIRECT GO:0034244~negative regulation of transcription elongation from RNA polymerase II promoter 4 0.23894862604540024 0.07650403327390554 NELFE_HUMAN, RN168_HUMAN, RECQ5_HUMAN, RNF8_HUMAN 1574 11 16792 3.8794039505602407 1.0 0.7581250527690335 77.54743102202036 -GOTERM_BP_DIRECT GO:0033120~positive regulation of RNA splicing 4 0.23894862604540024 0.07650403327390554 RPB1_HUMAN, RBM22_HUMAN, SRSF5_HUMAN, U2AF2_HUMAN 1574 11 16792 3.8794039505602407 1.0 0.7581250527690335 77.54743102202036 -GOTERM_BP_DIRECT GO:0061099~negative regulation of protein tyrosine kinase activity 4 0.23894862604540024 0.07650403327390554 FR1OP_HUMAN, 3BP5L_HUMAN, RACK1_HUMAN, PTN2_HUMAN 1574 11 16792 3.8794039505602407 1.0 0.7581250527690335 77.54743102202036 -GOTERM_BP_DIRECT GO:0006469~negative regulation of protein kinase activity 15 0.8960573476702508 0.07756605637836493 1433G_HUMAN, NF1_HUMAN, MERL_HUMAN, TAOK3_HUMAN, FR1OP_HUMAN, AKTS1_HUMAN, AKT1_HUMAN, 1433S_HUMAN, DVL1_HUMAN, CHP3_HUMAN, RB_HUMAN, PPM1F_HUMAN, PKN1_HUMAN, PKRI1_HUMAN, TSC2_HUMAN 1574 99 16792 1.6164183127334335 1.0 0.761652419906711 78.02712450580422 -GOTERM_BP_DIRECT GO:0097352~autophagosome maturation 6 0.35842293906810035 0.07857941620415845 SNAPN_HUMAN, WIPI2_HUMAN, SNP29_HUMAN, MCLN1_HUMAN, UBQL1_HUMAN, UVRAG_HUMAN 1574 25 16792 2.5604066073697584 1.0 0.7648864698005696 78.47577902693881 -GOTERM_BP_DIRECT GO:0007569~cell aging 6 0.35842293906810035 0.07857941620415845 BCL2_HUMAN, PDCD4_HUMAN, MORC3_HUMAN, NPM_HUMAN, CDK1_HUMAN, MTOR_HUMAN 1574 25 16792 2.5604066073697584 1.0 0.7648864698005696 78.47577902693881 -GOTERM_BP_DIRECT GO:0007159~leukocyte cell-cell adhesion 6 0.35842293906810035 0.07857941620415845 CD209_HUMAN, MOES_HUMAN, CD40L_HUMAN, FCL_HUMAN, ROCK1_HUMAN, TNIP1_HUMAN 1574 25 16792 2.5604066073697584 1.0 0.7648864698005696 78.47577902693881 -GOTERM_BP_DIRECT GO:0035019~somatic stem cell population maintenance 11 0.6571087216248507 0.07947782993417123 KLF4_HUMAN, LDB1_HUMAN, BCL9_HUMAN, SOX4_HUMAN, BCL9L_HUMAN, RPB11_HUMAN, RPB1_HUMAN, CUL4A_HUMAN, KLF10_HUMAN, L7RRS6_HUMAN, VPS72_HUMAN 1574 65 16792 1.805414915453035 1.0 0.7675452534723142 78.86627646617332 -GOTERM_BP_DIRECT GO:0018108~peptidyl-tyrosine phosphorylation 21 1.2544802867383513 0.07951470189939987 ZAP70_HUMAN, BAZ1B_HUMAN, KPCD_HUMAN, ABI1_HUMAN, DYRK2_HUMAN, DYR1A_HUMAN, HCK_HUMAN, CLK4_HUMAN, ABL2_HUMAN, CLK3_HUMAN, ABL1_HUMAN, EGFR_HUMAN, WEE1_HUMAN, STA5B_HUMAN, NEK1_HUMAN, FR1OP_HUMAN, A8K3Y2_HUMAN, PTN6_HUMAN, ROR1_HUMAN, E2AK2_HUMAN, BCR_HUMAN 1574 153 16792 1.464284824476169 1.0 0.7663489183378976 78.88215877450075 -GOTERM_BP_DIRECT GO:0071539~protein localization to centrosome 5 0.2986857825567503 0.08120198065644382 PCM1_HUMAN, SPAG5_HUMAN, KC1D_HUMAN, CP131_HUMAN, NEDD1_HUMAN 1574 18 16792 2.963433573344628 1.0 0.7724080925621646 79.5969710060737 -GOTERM_BP_DIRECT GO:0071901~negative regulation of protein serine/threonine kinase activity 5 0.2986857825567503 0.08120198065644382 DTBP1_HUMAN, 1433G_HUMAN, 1433S_HUMAN, WNK1_HUMAN, ABL1_HUMAN 1574 18 16792 2.963433573344628 1.0 0.7724080925621646 79.5969710060737 -GOTERM_BP_DIRECT GO:0007020~microtubule nucleation 5 0.2986857825567503 0.08120198065644382 CLAP2_HUMAN, CLAP1_HUMAN, KC1D_HUMAN, SLAI2_HUMAN, NDE1_HUMAN 1574 18 16792 2.963433573344628 1.0 0.7724080925621646 79.5969710060737 -GOTERM_BP_DIRECT GO:0061512~protein localization to cilium 5 0.2986857825567503 0.08120198065644382 ARF4_HUMAN, ARL6_HUMAN, IF140_HUMAN, KC1D_HUMAN, TULP4_HUMAN 1574 18 16792 2.963433573344628 1.0 0.7724080925621646 79.5969710060737 -GOTERM_BP_DIRECT GO:0000724~double-strand break repair via homologous recombination 12 0.7168458781362007 0.08289581062312634 BLM_HUMAN, SFPQ_HUMAN, UBE2N_HUMAN, SFR1_HUMAN, PALB2_HUMAN, R51A1_HUMAN, DNLI3_HUMAN, RECQ5_HUMAN, ATM_HUMAN, RAD54_HUMAN, NUCKS_HUMAN, B3KTM8_HUMAN 1574 74 16792 1.7300044644390262 1.0 0.7783044914434334 80.29147788778613 -GOTERM_BP_DIRECT GO:0006283~transcription-coupled nucleotide-excision repair 12 0.7168458781362007 0.08289581062312634 RFC1_HUMAN, DNLI1_HUMAN, B2RDW1_HUMAN, RPB11_HUMAN, ERCC3_HUMAN, RPB1_HUMAN, CSN1_HUMAN, DNLI3_HUMAN, CUL4A_HUMAN, TF2H2_HUMAN, ERCC5_HUMAN, HMGN1_HUMAN 1574 74 16792 1.7300044644390262 1.0 0.7783044914434334 80.29147788778613 -GOTERM_BP_DIRECT GO:0071364~cellular response to epidermal growth factor stimulus 7 0.4181600955794504 0.0830318738646608 STA5B_HUMAN, PLCG1_HUMAN, PYR1_HUMAN, AKT1_HUMAN, MED1_HUMAN, BAG4_HUMAN, EGFR_HUMAN 1574 33 16792 2.2629856378268065 1.0 0.777553542140029 80.34628462721764 -GOTERM_BP_DIRECT GO:0006370~7-methylguanosine mRNA capping 7 0.4181600955794504 0.0830318738646608 NCBP3_HUMAN, T2FA_HUMAN, RPB11_HUMAN, ERCC3_HUMAN, RPB1_HUMAN, TF2H2_HUMAN, NCBP1_HUMAN 1574 33 16792 2.2629856378268065 1.0 0.777553542140029 80.34628462721764 -GOTERM_BP_DIRECT GO:0030521~androgen receptor signaling pathway 8 0.4778972520908005 0.0842245781231652 TR150_HUMAN, MED13_HUMAN, MED1_HUMAN, NCOA3_HUMAN, RB_HUMAN, MED17_HUMAN, FKBP4_HUMAN, DAXX_HUMAN 1574 41 16792 2.0816313881054946 1.0 0.7812074341622355 80.82057268018687 -GOTERM_BP_DIRECT GO:0002244~hematopoietic progenitor cell differentiation 11 0.6571087216248507 0.08620679406487872 KCAB2_HUMAN, SI1L3_HUMAN, ARHG7_HUMAN, TOP2A_HUMAN, PTN6_HUMAN, ANLN_HUMAN, PRC2C_HUMAN, SSBP3_HUMAN, PSN1_HUMAN, TGFB1_HUMAN, DSRAD_HUMAN 1574 66 16792 1.7780601440067767 1.0 0.7879536661943165 81.58493093246597 -GOTERM_BP_DIRECT GO:0006302~double-strand break repair 11 0.6571087216248507 0.08620679406487872 RAD21_HUMAN, BAZ1B_HUMAN, DNLI1_HUMAN, MARF1_HUMAN, DTX3L_HUMAN, SMCA5_HUMAN, DNLI3_HUMAN, RN168_HUMAN, RNF8_HUMAN, RECQ4_HUMAN, EME1_HUMAN 1574 66 16792 1.7780601440067767 1.0 0.7879536661943165 81.58493093246597 -GOTERM_BP_DIRECT GO:0010629~negative regulation of gene expression 19 1.1350059737156513 0.08908147765568407 WWP2_HUMAN, AES_HUMAN, TGFB2_HUMAN, TADBP_HUMAN, CD3E_HUMAN, ADNP_HUMAN, PEDF_HUMAN, RACK1_HUMAN, NFKB1_HUMAN, RBL1_HUMAN, KLF4_HUMAN, AKT1_HUMAN, A0A5E8_HUMAN, CTGF_HUMAN, RB_HUMAN, CREB1_HUMAN, TGFB1_HUMAN, CDC42_HUMAN, MCP_HUMAN 1574 137 16792 1.4795536964727924 1.0 0.7978786673399 82.64236071555202 -GOTERM_BP_DIRECT GO:0006612~protein targeting to membrane 6 0.35842293906810035 0.09013602552029862 ARL6_HUMAN, B4DHN5_HUMAN, ICMT_HUMAN, MILK1_HUMAN, PARD3_HUMAN, ATG4D_HUMAN 1574 26 16792 2.4619294301632295 1.0 0.8005992707792028 83.01565102516277 -GOTERM_BP_DIRECT GO:0045930~negative regulation of mitotic cell cycle 6 0.35842293906810035 0.09013602552029862 PML_HUMAN, MD2L1_HUMAN, DGKZ_HUMAN, TGFB1_HUMAN, ABL1_HUMAN, EGFR_HUMAN 1574 26 16792 2.4619294301632295 1.0 0.8005992707792028 83.01565102516277 -GOTERM_BP_DIRECT GO:0060707~trophoblast giant cell differentiation 4 0.23894862604540024 0.09515262089281627 SENP2_HUMAN, COT2_HUMAN, E2F8_HUMAN, E2F7_HUMAN 1574 12 16792 3.556120288013554 1.0 0.8173530834445143 84.68972084858487 -GOTERM_BP_DIRECT GO:0045086~positive regulation of interleukin-2 biosynthetic process 4 0.23894862604540024 0.09515262089281627 STA5B_HUMAN, KPCT_HUMAN, IRF4_HUMAN, CD3E_HUMAN 1574 12 16792 3.556120288013554 1.0 0.8173530834445143 84.68972084858487 -GOTERM_BP_DIRECT GO:0046889~positive regulation of lipid biosynthetic process 4 0.23894862604540024 0.09515262089281627 APOE_HUMAN, MTOR_HUMAN, AKT1_HUMAN, CREB1_HUMAN 1574 12 16792 3.556120288013554 1.0 0.8173530834445143 84.68972084858487 -GOTERM_BP_DIRECT GO:0021670~lateral ventricle development 4 0.23894862604540024 0.09515262089281627 NUMBL_HUMAN, CDK6_HUMAN, UCHL5_HUMAN, PAX5_HUMAN 1574 12 16792 3.556120288013554 1.0 0.8173530834445143 84.68972084858487 -GOTERM_BP_DIRECT GO:0097320~membrane tubulation 4 0.23894862604540024 0.09515262089281627 EHD2_HUMAN, MILK1_HUMAN, CHM4A_HUMAN, PACN3_HUMAN 1574 12 16792 3.556120288013554 1.0 0.8173530834445143 84.68972084858487 -GOTERM_BP_DIRECT GO:0031629~synaptic vesicle fusion to presynaptic active zone membrane 4 0.23894862604540024 0.09515262089281627 SNAPN_HUMAN, SNP23_HUMAN, STX4_HUMAN, SNP29_HUMAN 1574 12 16792 3.556120288013554 1.0 0.8173530834445143 84.68972084858487 -GOTERM_BP_DIRECT GO:0043097~pyrimidine nucleoside salvage 4 0.23894862604540024 0.09515262089281627 CDD_HUMAN, KITH_HUMAN, UCK2_HUMAN, UPP1_HUMAN 1574 12 16792 3.556120288013554 1.0 0.8173530834445143 84.68972084858487 -GOTERM_BP_DIRECT GO:0050921~positive regulation of chemotaxis 4 0.23894862604540024 0.09515262089281627 TSP1_HUMAN, STX4_HUMAN, PPM1F_HUMAN, TGFB1_HUMAN 1574 12 16792 3.556120288013554 1.0 0.8173530834445143 84.68972084858487 -GOTERM_BP_DIRECT GO:0010458~exit from mitosis 4 0.23894862604540024 0.09515262089281627 CLAP2_HUMAN, CTDP1_HUMAN, CLAP1_HUMAN, CHMP7_HUMAN 1574 12 16792 3.556120288013554 1.0 0.8173530834445143 84.68972084858487 -GOTERM_BP_DIRECT GO:0035518~histone H2A monoubiquitination 4 0.23894862604540024 0.09515262089281627 RING1_HUMAN, RN168_HUMAN, BCOR_HUMAN, PCGF1_HUMAN 1574 12 16792 3.556120288013554 1.0 0.8173530834445143 84.68972084858487 -GOTERM_BP_DIRECT GO:0060218~hematopoietic stem cell differentiation 4 0.23894862604540024 0.09515262089281627 CDK6_HUMAN, HXB4_HUMAN, SRF_HUMAN, CHD2_HUMAN 1574 12 16792 3.556120288013554 1.0 0.8173530834445143 84.68972084858487 -GOTERM_BP_DIRECT GO:0045862~positive regulation of proteolysis 5 0.2986857825567503 0.09556414498156582 BAD_HUMAN, HDAC2_HUMAN, PLK1_HUMAN, OGT1_HUMAN, TB10A_HUMAN 1574 19 16792 2.807463385273858 1.0 0.8175613221967302 84.81988136808225 -GOTERM_BP_DIRECT GO:0043393~regulation of protein binding 5 0.2986857825567503 0.09556414498156582 SNAPN_HUMAN, ANM8_HUMAN, KAPCA_HUMAN, PLK1_HUMAN, PSN1_HUMAN 1574 19 16792 2.807463385273858 1.0 0.8175613221967302 84.81988136808225 -GOTERM_BP_DIRECT GO:0007026~negative regulation of microtubule depolymerization 5 0.2986857825567503 0.09556414498156582 CLAP2_HUMAN, KTNB1_HUMAN, A0A5E8_HUMAN, CLAP1_HUMAN, APC_HUMAN 1574 19 16792 2.807463385273858 1.0 0.8175613221967302 84.81988136808225 -GOTERM_BP_DIRECT GO:0051437~positive regulation of ubiquitin-protein ligase activity involved in regulation of mitotic cell cycle transition 12 0.7168458781362007 0.09608982605724181 UB2E1_HUMAN, CDK1_HUMAN, B2RDW1_HUMAN, PSD11_HUMAN, PRS6B_HUMAN, UB2D1_HUMAN, MD2L1_HUMAN, PLK1_HUMAN, CDC26_HUMAN, CDC20_HUMAN, APC1_HUMAN, BUB1B_HUMAN 1574 76 16792 1.684478031164315 1.0 0.8181562480328008 84.98462504421434 -GOTERM_BP_DIRECT GO:0042127~regulation of cell proliferation 24 1.4336917562724014 0.09813475514638753 CHSTB_HUMAN, TYK2_HUMAN, ABEC1_HUMAN, TFR1_HUMAN, GRDN_HUMAN, DNMT1_HUMAN, TPD54_HUMAN, CFDP1_HUMAN, PDS5B_HUMAN, ACK1_HUMAN, BLK_HUMAN, ABL2_HUMAN, ABL1_HUMAN, TR19L_HUMAN, FOXM1_HUMAN, BAG6_HUMAN, TNR6_HUMAN, HP1B3_HUMAN, CREB3_HUMAN, BCL6_HUMAN, SGK3_HUMAN, LCK_HUMAN, NDRG1_HUMAN, CHK1_HUMAN 1574 185 16792 1.384003571551221 1.0 0.823801738890789 85.60952875590358 -GOTERM_BP_DIRECT GO:0010951~negative regulation of endopeptidase activity 17 1.015531660692951 0.09994360305663175 FETUA_HUMAN, CO5_HUMAN, A2MG_HUMAN, ITIH2_HUMAN, CO3_HUMAN, PEDF_HUMAN, PTTG1_HUMAN, UBP14_HUMAN, UCHL5_HUMAN, A2AP_HUMAN, ITIH1_HUMAN, CO7A1_HUMAN, AKT1_HUMAN, ANT3_HUMAN, PZP_HUMAN, VTNC_HUMAN, B7ZKJ8_HUMAN 1574 121 16792 1.498860617261911 1.0 0.828493859793326 86.14169180058545 diff --git a/hiv-benchmarking/hiv_raw_data/hiv05-networks.cys b/hiv-benchmarking/hiv_raw_data/hiv05-networks.cys deleted file mode 100644 index 5bb01d9..0000000 Binary files a/hiv-benchmarking/hiv_raw_data/hiv05-networks.cys and /dev/null differ diff --git a/hiv-benchmarking/hiv_raw_data/hsa_uniprot.list b/hiv-benchmarking/hiv_raw_data/hsa_uniprot.list deleted file mode 100644 index cc0b0ea..0000000 --- a/hiv-benchmarking/hiv_raw_data/hsa_uniprot.list +++ /dev/null @@ -1,24246 +0,0 @@ -hsa:1 up:P04217 equivalent -hsa:1 up:V9HWD8 equivalent -hsa:10 up:A4Z6T7 equivalent -hsa:10 up:P11245 equivalent -hsa:100 up:A0A0S2Z381 equivalent -hsa:100 up:P00813 equivalent -hsa:1000 up:P19022 equivalent -hsa:10000 up:Q9Y243 equivalent -hsa:100008586 up:O76087 equivalent -hsa:100008586 up:P0CL80 equivalent -hsa:100008586 up:P0CL81 equivalent -hsa:100008586 up:P0CL82 equivalent -hsa:10001 up:O75586 equivalent -hsa:10002 up:Q9Y5X4 equivalent -hsa:10003 up:Q9Y3Q0 equivalent -hsa:100037417 up:A0A0F7RPW6 equivalent -hsa:100037417 up:A6NHG4 equivalent -hsa:10004 up:Q9UQQ1 equivalent -hsa:100049587 up:Q08ET2 equivalent -hsa:10005 up:O14734 equivalent -hsa:10006 up:Q8IZP0 equivalent -hsa:10007 up:P46926 equivalent -hsa:10008 up:Q6IAE6 equivalent -hsa:10008 up:Q9Y6H6 equivalent -hsa:10009 up:Q86T24 equivalent -hsa:1001 up:P22223 equivalent -hsa:10010 up:B2R7S3 equivalent -hsa:10010 up:Q6NW12 equivalent -hsa:10010 up:Q92844 equivalent -hsa:100101267 up:B4DDR5 equivalent -hsa:100101267 up:B4DET5 equivalent -hsa:100101467 up:Q86W11 equivalent -hsa:100101629 up:Q9UEU5 equivalent -hsa:10011 up:Q9HD15 equivalent -hsa:100113407 up:Q5T4T1 equivalent -hsa:100125288 up:P0C6A0 equivalent -hsa:100127206 up:P59773 equivalent -hsa:100127983 up:P0DMB2 equivalent -hsa:100128071 up:H3BQW9 equivalent -hsa:100128327 up:Q5T215 equivalent -hsa:100128553 up:Q8IX94 equivalent -hsa:100128569 up:A6NCJ1 equivalent -hsa:100128731 up:P0C6T2 equivalent -hsa:100128927 up:B2RXF5 equivalent -hsa:100129128 up:Q5JSQ8 equivalent -hsa:100129216 up:A0A096LNP1 equivalent -hsa:100129239 up:A0A1B0GTR3 equivalent -hsa:100129239 up:P0DPH9 equivalent -hsa:100129271 up:Q5T750 equivalent -hsa:100129278 up:B5MCY1 equivalent -hsa:100129361 up:P0DMW3 equivalent -hsa:100129407 up:A0A1B0GUQ0 equivalent -hsa:100129407 up:A0A1B0GV22 equivalent -hsa:100129480 up:H3BPM6 equivalent -hsa:100129520 up:A0A0J9YWL9 equivalent -hsa:100129543 up:Q6ZMV8 equivalent -hsa:100129583 up:Q6ZV65 equivalent -hsa:100129654 up:Q7RTU0 equivalent -hsa:100129669 up:S4R3E6 equivalent -hsa:100129792 up:Q4G0S7 equivalent -hsa:100129842 up:O75373 equivalent -hsa:100129969 up:A6NFA0 equivalent -hsa:10013 up:Q9UBN7 equivalent -hsa:100130086 up:A0A140VK21 equivalent -hsa:100130086 up:Q9UBD0 equivalent -hsa:100130274 up:P0CW27 equivalent -hsa:100130301 up:P0DMQ9 equivalent -hsa:100130302 up:A0A7I2YQ69 equivalent -hsa:100130311 up:Q6ZR85 equivalent -hsa:100130348 up:E9PQX1 equivalent -hsa:100130361 up:A8MYA2 equivalent -hsa:100130519 up:A6NGB7 equivalent -hsa:100130520 up:A0A0K2S4Q6 equivalent -hsa:100130613 up:B1ATL7 equivalent -hsa:100130705 up:A0A1B0GUX0 equivalent -hsa:100130733 up:Q7Z2Q7 equivalent -hsa:100130742 up:Q6ZNQ3 equivalent -hsa:100130827 up:P0C264 equivalent -hsa:100130890 up:H0UI37 equivalent -hsa:100130933 up:P0DI80 equivalent -hsa:100130958 up:A8MT33 equivalent -hsa:100131017 up:A6NFI3 equivalent -hsa:100131137 up:Q075Z2 equivalent -hsa:100131187 up:Q8NFU3 equivalent -hsa:100131211 up:A6NFY4 equivalent -hsa:100131244 up:C9JTQ0 equivalent -hsa:100131303 up:A0A0U1RQF7 equivalent -hsa:100131378 up:Q3C1V1 equivalent -hsa:100131390 up:P0CG40 equivalent -hsa:100131439 up:Q6UXZ3 equivalent -hsa:100131608 up:E9PI22 equivalent -hsa:100131608 up:P0DMB1 equivalent -hsa:100131755 up:Q5H9R4 equivalent -hsa:100131801 up:P0DJ07 equivalent -hsa:100131827 up:Q9BY31 equivalent -hsa:100131897 up:A6NMK8 equivalent -hsa:100131902 up:Q3LHN0 equivalent -hsa:100131980 up:A8MUZ8 equivalent -hsa:100132074 up:A0A1X9RU27 equivalent -hsa:100132146 up:A0A1B0GVK7 equivalent -hsa:100132247 up:A8MRT5 equivalent -hsa:100132247 up:B4E0Y1 equivalent -hsa:100132285 up:K7R1S5 equivalent -hsa:100132285 up:P43631 equivalent -hsa:100132304 up:A0A1B0GUQ0 equivalent -hsa:100132304 up:A0A1B0GV22 equivalent -hsa:100132386 up:Q9BYQ8 equivalent -hsa:100132396 up:P0CI00 equivalent -hsa:100132399 up:A1L429 equivalent -hsa:100132406 up:Q6P3W6 equivalent -hsa:100132463 up:A6NM45 equivalent -hsa:100132476 up:Q9BYR0 equivalent -hsa:100132916 up:A6NKW6 equivalent -hsa:100132963 up:A6NGZ8 equivalent -hsa:100132994 up:A8MYA2 equivalent -hsa:100133053 up:A0A1B0GTR3 equivalent -hsa:100133053 up:P0DPH9 equivalent -hsa:100133093 up:B3EWG3 equivalent -hsa:100133093 up:B3EWG5 equivalent -hsa:100133093 up:B3EWG6 equivalent -hsa:100133251 up:E9PI22 equivalent -hsa:100133251 up:P0DMB1 equivalent -hsa:100133267 up:P0DP73 equivalent -hsa:100133267 up:P0DP74 equivalent -hsa:100133941 up:P25063 equivalent -hsa:100134444 up:B7U540 equivalent -hsa:100134934 up:Q86WV5 equivalent -hsa:100134938 up:B0FP48 equivalent -hsa:100134938 up:E5RIL1 equivalent -hsa:100137047 up:P0C870 equivalent -hsa:100137049 up:P0C869 equivalent -hsa:10014 up:Q9UQL6 equivalent -hsa:100141515 up:Q6UX52 equivalent -hsa:100142659 up:P0CG41 equivalent -hsa:100142659 up:Q8IX94 equivalent -hsa:100144748 up:B2CW77 equivalent -hsa:10015 up:Q8WUM4 equivalent -hsa:10016 up:O75340 equivalent -hsa:10016 up:Q53FC3 equivalent -hsa:100169851 up:B3GLJ2 equivalent -hsa:10017 up:Q9HD36 equivalent -hsa:100170229 up:B3KS81 equivalent -hsa:100170229 up:Q4G0Z0 equivalent -hsa:100170765 up:A6NGS2 equivalent -hsa:100170841 up:A6NHQ4 equivalent -hsa:10018 up:O43521 equivalent -hsa:100188893 up:Q96B49 equivalent -hsa:10019 up:Q59H48 equivalent -hsa:10019 up:Q9UQQ2 equivalent -hsa:100190949 up:A6NGY3 equivalent -hsa:100191040 up:B7Z1M9 equivalent -hsa:1002 up:P55283 equivalent -hsa:10020 up:Q9Y223 equivalent -hsa:10021 up:Q9Y3Q4 equivalent -hsa:10022 up:Q9Y5Q6 equivalent -hsa:10023 up:Q92837 equivalent -hsa:10024 up:Q12815 equivalent -hsa:10025 up:Q9Y2X0 equivalent -hsa:10026 up:Q92643 equivalent -hsa:100271715 up:A8MVX0 equivalent -hsa:100271846 up:B6SEH9 equivalent -hsa:100271846 up:M9QSX5 equivalent -hsa:100271849 up:Q02080 equivalent -hsa:100271927 up:F5GXT2 equivalent -hsa:100272147 up:P56277 equivalent -hsa:100287144 up:C9JJH3 equivalent -hsa:100287171 up:A8K0Z3 equivalent -hsa:100287178 up:C9JVI0 equivalent -hsa:100287205 up:C9JPN9 equivalent -hsa:100287226 up:A6NN14 equivalent -hsa:100287238 up:C9JLJ4 equivalent -hsa:100287284 up:A6NHS7 equivalent -hsa:100287327 up:D6RBQ6 equivalent -hsa:100287364 up:D6R9N7 equivalent -hsa:100287399 up:H3BUK9 equivalent -hsa:100287399 up:Q495V5 equivalent -hsa:100287404 up:D6RCP7 equivalent -hsa:100287441 up:D6RJB6 equivalent -hsa:100287478 up:D6R901 equivalent -hsa:100287482 up:H3BMG3 equivalent -hsa:100287513 up:D6RA61 equivalent -hsa:100287718 up:B4E2M5 equivalent -hsa:100287898 up:A8MYJ7 equivalent -hsa:100287932 up:O14925 equivalent -hsa:100288142 up:P0DPF2 equivalent -hsa:100288287 up:Q3LI68 equivalent -hsa:100288323 up:Q3LHN1 equivalent -hsa:100288332 up:E9PKD4 equivalent -hsa:100288413 up:Q9H9K5 equivalent -hsa:100288687 up:C3U3A0 equivalent -hsa:100288687 up:Q9UBX2 equivalent -hsa:100288695 up:P0CW19 equivalent -hsa:100288695 up:P0CW20 equivalent -hsa:100288797 up:Q8WW34 equivalent -hsa:100288801 up:A6NGY1 equivalent -hsa:100288814 up:H7C241 equivalent -hsa:100288966 up:Q86YR6 equivalent -hsa:100289087 up:P0CV98 equivalent -hsa:100289087 up:P0CW01 equivalent -hsa:100289087 up:Q01534 equivalent -hsa:100289187 up:P0DP42 equivalent -hsa:100289462 up:O15263 equivalent -hsa:100289635 up:Q86T29 equivalent -hsa:100289678 up:Q6ZMS7 equivalent -hsa:100293516 up:E7ETH6 equivalent -hsa:100293534 up:P0C0L5 equivalent -hsa:1003 up:P33151 equivalent -hsa:1003 up:Q59EA3 equivalent -hsa:100302652 up:Q9Y575 equivalent -hsa:100302736 up:A0A0A6YYA0 equivalent -hsa:100302736 up:Q86XR7 equivalent -hsa:100302736 up:Q9Y3B3 equivalent -hsa:100303755 up:L0R6F6 equivalent -hsa:100303755 up:Q6UWS5 equivalent -hsa:100310812 up:A6NHP3 equivalent -hsa:100310846 up:A6NGH8 equivalent -hsa:100316904 up:Q8TEE9 equivalent -hsa:100329135 up:A6NMA1 equivalent -hsa:10036 up:Q13111 equivalent -hsa:10038 up:Q9UGN5 equivalent -hsa:100381270 up:P86452 equivalent -hsa:10039 up:Q9Y6F1 equivalent -hsa:1004 up:P55285 equivalent -hsa:10040 up:O75674 equivalent -hsa:10042 up:Q7Z641 equivalent -hsa:10042 up:Q9UGU5 equivalent -hsa:100423062 up:B9A064 equivalent -hsa:10043 up:B3KUF5 equivalent -hsa:10043 up:O60784 equivalent -hsa:100431172 up:D3W0D1 equivalent -hsa:10044 up:Q8N5H7 equivalent -hsa:10045 up:A8K2M8 equivalent -hsa:10045 up:Q9BRG2 equivalent -hsa:10046 up:Q13495 equivalent -hsa:10047 up:A0A384MDQ4 equivalent -hsa:10047 up:O60676 equivalent -hsa:10048 up:Q96S59 equivalent -hsa:10049 up:O75190 equivalent -hsa:100499483 up:B4DZK1 equivalent -hsa:100499483 up:Q9P1Z9 equivalent -hsa:1005 up:Q9ULB5 equivalent -hsa:10050 up:Q9Y2C5 equivalent -hsa:100500938 up:H3BU77 equivalent -hsa:100505385 up:B3KU38 equivalent -hsa:100505478 up:A0A1B0GUV7 equivalent -hsa:100505573 up:P0DMQ5 equivalent -hsa:100505591 up:A6NJW4 equivalent -hsa:100505724 up:A8MTY7 equivalent -hsa:100505741 up:Q5VX52 equivalent -hsa:100505753 up:A8MUX0 equivalent -hsa:100505876 up:A8MTT3 equivalent -hsa:100505993 up:A6NLX4 equivalent -hsa:100506013 up:P0DMC3 equivalent -hsa:100506013 up:X5D2P3 equivalent -hsa:100506049 up:A6NJI9 equivalent -hsa:100506084 up:A8K0M5 equivalent -hsa:100506084 up:Q8IVW1 equivalent -hsa:100506127 up:Q3ZCU0 equivalent -hsa:100506144 up:Q8NCS4 equivalent -hsa:100506164 up:A0A140VK21 equivalent -hsa:100506164 up:Q9UBD0 equivalent -hsa:100506243 up:C9JBD0 equivalent -hsa:100506564 up:P0DJG4 equivalent -hsa:100506581 up:Q9H693 equivalent -hsa:100506658 up:A8K3T2 equivalent -hsa:100506658 up:Q16625 equivalent -hsa:100506736 up:Q6IEE8 equivalent -hsa:100506742 up:Q6UXS9 equivalent -hsa:100507003 up:I3L273 equivalent -hsa:100507027 up:P0DMT0 equivalent -hsa:100507050 up:P0DKB5 equivalent -hsa:100507055 up:A6NCL2 equivalent -hsa:100507096 up:P0DJR0 equivalent -hsa:100507170 up:Q5JQC4 equivalent -hsa:100507203 up:H3BR10 equivalent -hsa:100507290 up:P0CJ78 equivalent -hsa:100507341 up:P0DKX4 equivalent -hsa:100507421 up:H3BS89 equivalent -hsa:100507436 up:Q29983 equivalent -hsa:100507588 up:H3BV60 equivalent -hsa:100507607 up:F8W1W9 reverse -hsa:100507608 up:A8MVA2 equivalent -hsa:100507650 up:A8MTL3 equivalent -hsa:100507679 up:E2RYF6 equivalent -hsa:10051 up:Q58F29 equivalent -hsa:10051 up:Q9NTJ3 equivalent -hsa:10052 up:A0A654IDC0 equivalent -hsa:10052 up:P36383 equivalent -hsa:100526664 up:O60449 equivalent -hsa:100526693 up:A0A0A6YYG9 equivalent -hsa:100526694 up:Q8IYR6 equivalent -hsa:100526737 up:Q96PK6 equivalent -hsa:100526739 up:Q8N2Z9 equivalent -hsa:100526740 up:B4DJ38 equivalent -hsa:100526740 up:G3V325 equivalent -hsa:100526760 up:B4DNW0 equivalent -hsa:100526761 up:Q9NX45 equivalent -hsa:100526767 up:Q9Y3E7 equivalent -hsa:100526772 up:A8MSY1 equivalent -hsa:100526773 up:O95925 equivalent -hsa:100526783 up:A0A0A6YYH1 equivalent -hsa:100526794 up:Q96P26 equivalent -hsa:100526832 up:Q8NBE8 equivalent -hsa:100526835 up:Q59H18 equivalent -hsa:100526842 up:A0A0A6YYL6 equivalent -hsa:100527943 up:A0A0A6YYL0 equivalent -hsa:100527949 up:A0A087WTJ2 equivalent -hsa:100527963 up:Q6P1K2 equivalent -hsa:100527978 up:S4R434 equivalent -hsa:100528017 up:A0A096LPE2 equivalent -hsa:100528021 up:A0A0A6YYL1 equivalent -hsa:100528030 up:Q8N4A0 equivalent -hsa:100528032 up:P26718 equivalent -hsa:100528062 up:Q96D09 equivalent -hsa:100529144 up:A0A0A6YYL4 equivalent -hsa:100529215 up:Q13360 equivalent -hsa:100529239 up:A0A1W2PQS6 equivalent -hsa:100529240 up:A0A0X1KG74 equivalent -hsa:100529240 up:Q8N8H1 equivalent -hsa:100529241 up:S4R3N1 equivalent -hsa:100529251 up:E9PSG2 equivalent -hsa:100529261 up:P49356 equivalent -hsa:10053 up:Q9Y6Q5 equivalent -hsa:100532726 up:E9PQ53 equivalent -hsa:100532731 up:P35226 equivalent -hsa:100532731 up:R4GMX3 equivalent -hsa:100532736 up:P41271 equivalent -hsa:100533105 up:Q96BR1 equivalent -hsa:100533106 up:Q96EF9 equivalent -hsa:100533177 up:A8MX34 equivalent -hsa:100533181 up:A0A087WZ82 equivalent -hsa:100533183 up:Q6ZTI6 equivalent -hsa:100533467 up:Q59FZ7 equivalent -hsa:100533467 up:R4GMW8 equivalent -hsa:100533496 up:A0A0A6YYB9 equivalent -hsa:100533496 up:Q96ET8 equivalent -hsa:100533952 up:A0A0A6YYG8 equivalent -hsa:100533997 up:P43359 equivalent -hsa:100534012 up:Q9BWG6 equivalent -hsa:100534592 up:S4R325 equivalent -hsa:100534599 up:Q9ULR0 equivalent -hsa:10054 up:Q9UBT2 equivalent -hsa:10055 up:Q9UBE0 equivalent -hsa:10056 up:Q9NSD9 equivalent -hsa:10057 up:O15440 equivalent -hsa:10058 up:Q9NP58 equivalent -hsa:10059 up:B4DYR6 equivalent -hsa:10059 up:O00429 equivalent -hsa:1006 up:P55286 equivalent -hsa:10060 up:O60706 equivalent -hsa:10061 up:A0A090N7X1 equivalent -hsa:10061 up:Q9UG63 equivalent -hsa:10062 up:B4DXU5 equivalent -hsa:10062 up:F1D8N1 equivalent -hsa:10062 up:Q13133 equivalent -hsa:10063 up:Q14061 equivalent -hsa:100631383 up:Q6ZV65 equivalent -hsa:100652748 up:Q5SRD1 equivalent -hsa:100652824 up:H7C5G6 equivalent -hsa:100653049 up:A0A140TA62 equivalent -hsa:100653049 up:O76011 equivalent -hsa:100653515 up:Q96MC4 equivalent -hsa:10066 up:A0A140VK92 equivalent -hsa:10066 up:O15127 equivalent -hsa:10067 up:O14828 equivalent -hsa:10068 up:O95998 equivalent -hsa:10069 up:P57060 equivalent -hsa:1007 up:Q9ULB4 equivalent -hsa:10071 up:Q9UKN1 equivalent -hsa:10072 up:Q9NY33 equivalent -hsa:10073 up:O95149 equivalent -hsa:10075 up:Q7Z6Z7 equivalent -hsa:10076 up:Q92729 equivalent -hsa:10077 up:Q96QS1 equivalent -hsa:10078 up:Q9Y5U2 equivalent -hsa:10079 up:B4DR18 equivalent -hsa:10079 up:O75110 equivalent -hsa:10079 up:Q2NLD0 equivalent -hsa:1008 up:Q9Y6N8 equivalent -hsa:1008 up:X5D8X5 equivalent -hsa:10081 up:Q6IEG3 equivalent -hsa:10081 up:Q8N8D1 equivalent -hsa:10082 up:Q9Y625 equivalent -hsa:100820829 up:P0CAP1 equivalent -hsa:10083 up:A0A0S2Z4U9 equivalent -hsa:10083 up:Q9Y6N9 equivalent -hsa:10084 up:A0A0S2Z4V5 equivalent -hsa:10084 up:O60828 equivalent -hsa:10085 up:O43854 equivalent -hsa:10086 up:C9JL84 equivalent -hsa:100861412 up:O95073 equivalent -hsa:100861540 up:P24462 equivalent -hsa:100862671 up:A0A087WTH1 equivalent -hsa:10087 up:Q9Y5P4 equivalent -hsa:100885848 up:E9PB15 equivalent -hsa:100885850 up:Q9BTE6 equivalent -hsa:10089 up:Q9Y2U2 equivalent -hsa:1009 up:P55287 equivalent -hsa:10090 up:Q9Y2C2 equivalent -hsa:100913187 up:A0A0K0MJ49 equivalent -hsa:100913187 up:P31941 equivalent -hsa:10092 up:O15511 equivalent -hsa:10093 up:P59998 equivalent -hsa:10094 up:O15145 equivalent -hsa:10095 up:A4D275 equivalent -hsa:10095 up:O15143 equivalent -hsa:10096 up:P61158 equivalent -hsa:10097 up:P61160 equivalent -hsa:10098 up:P62079 equivalent -hsa:10099 up:O60637 equivalent -hsa:100996331 up:A0A0A6YYL3 equivalent -hsa:100996648 up:Q5H9J9 equivalent -hsa:100996693 up:A0A087WV53 equivalent -hsa:100996709 up:Q8IVW1 equivalent -hsa:100996758 up:P0DQD5 equivalent -hsa:100996758 up:P50391 equivalent -hsa:100996928 up:A0A0A6YYJ8 equivalent -hsa:100996928 up:Q96HJ9 equivalent -hsa:100996939 up:Q96I23 equivalent -hsa:101 up:P78325 equivalent -hsa:101 up:Q14C66 equivalent -hsa:1010 up:P55289 equivalent -hsa:10100 up:B2RD31 equivalent -hsa:10100 up:O60636 equivalent -hsa:10101 up:B7Z6P0 equivalent -hsa:10101 up:Q9Y5Y2 equivalent -hsa:10102 up:E5KS95 equivalent -hsa:10102 up:P43897 equivalent -hsa:10103 up:O60635 equivalent -hsa:10105 up:P30405 equivalent -hsa:101059915 up:A0A1B0GWI6 equivalent -hsa:101059918 up:I6L899 equivalent -hsa:101059938 up:E9PJI5 equivalent -hsa:101059938 up:P0DM63 equivalent -hsa:101059953 up:E9PJI5 equivalent -hsa:101059953 up:P0DM63 equivalent -hsa:10106 up:O14595 equivalent -hsa:101060200 up:A8MT65 equivalent -hsa:101060211 up:P0DMU7 equivalent -hsa:101060211 up:P0DMU8 equivalent -hsa:101060211 up:P0DMV0 equivalent -hsa:101060233 up:P04001 equivalent -hsa:101060233 up:P0DN77 equivalent -hsa:101060233 up:P0DN78 equivalent -hsa:101060301 up:B7ZW38 equivalent -hsa:101060301 up:P0DMR1 equivalent -hsa:101060321 up:Q6DHY5 equivalent -hsa:101060321 up:Q6IPX1 equivalent -hsa:101060351 up:A0A087X1G2 equivalent -hsa:101060376 up:B9A6J9 equivalent -hsa:101060389 up:A0A087WVF3 equivalent -hsa:10107 up:Q9UDY6 equivalent -hsa:10109 up:O15144 equivalent -hsa:10109 up:Q53R19 equivalent -hsa:10110 up:Q9HBY8 equivalent -hsa:10111 up:A5D6Y3 equivalent -hsa:10111 up:Q92878 equivalent -hsa:10112 up:O95235 equivalent -hsa:10113 up:Q9HCU5 equivalent -hsa:10114 up:Q9H422 equivalent -hsa:10116 up:Q9UK73 equivalent -hsa:10117 up:Q9NRM1 equivalent -hsa:101180976 up:A0A7R8C3A5 equivalent -hsa:101180976 up:K9M1U5 equivalent -hsa:1012 up:P55290 equivalent -hsa:10120 up:P42025 equivalent -hsa:10121 up:A0A384NQ21 equivalent -hsa:10121 up:P61163 equivalent -hsa:10123 up:P56559 equivalent -hsa:10124 up:P40617 equivalent -hsa:10125 up:B2RA89 equivalent -hsa:10125 up:O95267 equivalent -hsa:10126 up:O96015 equivalent -hsa:10127 up:O14978 equivalent -hsa:10128 up:E5KNY5 equivalent -hsa:10128 up:P42704 equivalent -hsa:10129 up:Q5TBA9 equivalent -hsa:1013 up:P55291 equivalent -hsa:10130 up:A0A384NPU5 equivalent -hsa:10130 up:Q15084 equivalent -hsa:10131 up:A0A140VJY2 equivalent -hsa:10131 up:Q12931 equivalent -hsa:10133 up:Q96CV9 equivalent -hsa:10134 up:P51572 equivalent -hsa:10135 up:P43490 equivalent -hsa:10136 up:P09093 equivalent -hsa:10137 up:Q9NTZ6 equivalent -hsa:10138 up:Q8IY57 equivalent -hsa:10139 up:A0A384P5U7 equivalent -hsa:10139 up:B7ZKY8 equivalent -hsa:10139 up:Q13795 equivalent -hsa:1014 up:O75309 equivalent -hsa:10140 up:P50616 equivalent -hsa:10142 up:Q5GIA7 equivalent -hsa:10142 up:Q6PJH3 equivalent -hsa:10142 up:Q99996 equivalent -hsa:10143 up:J3KNC9 equivalent -hsa:10143 up:O75596 equivalent -hsa:10144 up:O94988 equivalent -hsa:10146 up:Q13283 equivalent -hsa:10146 up:Q5U0Q1 equivalent -hsa:10146 up:Q6ZP53 equivalent -hsa:10147 up:Q8IX01 equivalent -hsa:10148 up:Q14213 equivalent -hsa:10149 up:Q8IZP9 equivalent -hsa:1015 up:Q12864 equivalent -hsa:10150 up:Q5VZF2 equivalent -hsa:10152 up:A0A7D9NKC8 equivalent -hsa:10152 up:Q9NYB9 equivalent -hsa:10153 up:Q03701 equivalent -hsa:10154 up:O60486 equivalent -hsa:10155 up:Q13263 equivalent -hsa:10156 up:O43374 equivalent -hsa:10157 up:A4D0W4 equivalent -hsa:10157 up:Q9UDR5 equivalent -hsa:10158 up:Q13113 equivalent -hsa:10159 up:O75787 equivalent -hsa:1016 up:Q13634 equivalent -hsa:10160 up:A0A2X0TVY0 equivalent -hsa:10160 up:Q9Y4F1 equivalent -hsa:10161 up:B3KVQ5 equivalent -hsa:10161 up:P43657 equivalent -hsa:10162 up:Q6P1A2 equivalent -hsa:10163 up:Q9Y6W5 equivalent -hsa:10164 up:Q8NCG5 equivalent -hsa:10165 up:Q9UJS0 equivalent -hsa:10166 up:Q9Y619 equivalent -hsa:10168 up:O14709 equivalent -hsa:10169 up:P84101 equivalent -hsa:1017 up:P24941 equivalent -hsa:10170 up:Q9BPW9 equivalent -hsa:10171 up:Q9Y2P8 equivalent -hsa:10172 up:Q9Y2P7 equivalent -hsa:10174 up:O60504 equivalent -hsa:10175 up:B2R4P1 equivalent -hsa:10175 up:O95406 equivalent -hsa:10178 up:Q9UKZ4 equivalent -hsa:10179 up:Q9Y580 equivalent -hsa:1018 up:Q00526 equivalent -hsa:10180 up:A8K6Q4 equivalent -hsa:10180 up:P78332 equivalent -hsa:10181 up:P52756 equivalent -hsa:10184 up:Q6ZUX7 equivalent -hsa:10186 up:Q9Y693 equivalent -hsa:10188 up:B3KXJ4 equivalent -hsa:10188 up:Q07912 equivalent -hsa:10189 up:E9PB61 equivalent -hsa:10189 up:Q86V81 equivalent -hsa:1019 up:P11802 equivalent -hsa:10190 up:O14530 equivalent -hsa:101927581 up:A6NF36 equivalent -hsa:101928147 up:B9A014 equivalent -hsa:101928527 up:A0A0B4J2F0 equivalent -hsa:101928601 up:A8MW99 equivalent -hsa:101928603 up:H3BNL8 equivalent -hsa:101928917 up:A0A1B0GWH4 equivalent -hsa:101929726 up:A0A1B0GTQ4 equivalent -hsa:101929926 up:A0A1B0GUA7 equivalent -hsa:101929983 up:A3QJZ7 equivalent -hsa:10193 up:Q9H4P4 equivalent -hsa:10194 up:Q6ZSZ6 equivalent -hsa:10195 up:Q92685 equivalent -hsa:10196 up:O60678 equivalent -hsa:10197 up:P61289 equivalent -hsa:10197 up:V9HWJ8 equivalent -hsa:10198 up:Q99550 equivalent -hsa:10199 up:O00566 equivalent -hsa:102 up:O14672 equivalent -hsa:1020 up:A0A090N7W4 equivalent -hsa:1020 up:Q00535 equivalent -hsa:10200 up:Q99547 equivalent -hsa:10201 up:O75414 equivalent -hsa:10202 up:Q13268 equivalent -hsa:10203 up:Q16602 equivalent -hsa:10204 up:P61970 equivalent -hsa:10205 up:O60487 equivalent -hsa:10206 up:L7MTJ6 equivalent -hsa:10206 up:O60858 equivalent -hsa:10208 up:A8K1B1 equivalent -hsa:10208 up:Q5W0Q7 equivalent -hsa:10209 up:P41567 equivalent -hsa:10209 up:Q6IAV3 equivalent -hsa:1021 up:Q00534 equivalent -hsa:10210 up:Q9NS56 equivalent -hsa:10211 up:O75955 equivalent -hsa:10211 up:Q5ST80 equivalent -hsa:10212 up:O00148 equivalent -hsa:10213 up:A0A140VKF2 equivalent -hsa:10213 up:O00487 equivalent -hsa:10214 up:Q99909 equivalent -hsa:10215 up:Q13516 equivalent -hsa:102157402 up:Q9Y3D8 equivalent -hsa:10216 up:Q92954 equivalent -hsa:10217 up:O15194 equivalent -hsa:10218 up:O43827 equivalent -hsa:10219 up:Q96E93 equivalent -hsa:1022 up:A0A0S2Z3F9 equivalent -hsa:1022 up:P50613 equivalent -hsa:10220 up:O95390 equivalent -hsa:10221 up:Q96RU8 equivalent -hsa:10223 up:Q99795 equivalent -hsa:10224 up:Q9Y2A4 equivalent -hsa:10225 up:P40200 equivalent -hsa:10226 up:O60664 equivalent -hsa:10227 up:Q14728 equivalent -hsa:10228 up:O43752 equivalent -hsa:102288414 up:E9PRG8 equivalent -hsa:10229 up:Q99807 equivalent -hsa:10231 up:B2R612 equivalent -hsa:10231 up:Q14206 equivalent -hsa:10232 up:Q13421 equivalent -hsa:10233 up:A8K8K2 equivalent -hsa:10233 up:Q53EV4 equivalent -hsa:10234 up:Q8N6Y2 equivalent -hsa:10235 up:Q7LDG7 equivalent -hsa:10236 up:O43390 equivalent -hsa:10237 up:P78383 equivalent -hsa:10238 up:P61962 equivalent -hsa:10239 up:P59780 equivalent -hsa:1024 up:P49336 equivalent -hsa:10240 up:Q92665 equivalent -hsa:10241 up:Q13137 equivalent -hsa:10242 up:B5BNW5 equivalent -hsa:10242 up:Q9Y691 equivalent -hsa:10243 up:Q9NQX3 equivalent -hsa:10244 up:A0A024R8A0 equivalent -hsa:10244 up:Q7Z6M1 equivalent -hsa:10245 up:O60830 equivalent -hsa:10246 up:O00624 equivalent -hsa:10247 up:P52758 equivalent -hsa:10248 up:O75817 equivalent -hsa:10249 up:A0A384P5E3 equivalent -hsa:10249 up:Q6IB77 equivalent -hsa:1025 up:P50750 equivalent -hsa:10250 up:A0A0S2Z4W1 equivalent -hsa:10250 up:Q8IYB3 equivalent -hsa:10251 up:O43610 equivalent -hsa:10251 up:Q6ZUP3 equivalent -hsa:10252 up:O43609 equivalent -hsa:10253 up:O43597 equivalent -hsa:10254 up:O75886 equivalent -hsa:10256 up:B4DL25 equivalent -hsa:10256 up:Q969H4 equivalent -hsa:10257 up:A8K2Q2 equivalent -hsa:10257 up:O15439 equivalent -hsa:1026 up:P38936 equivalent -hsa:10260 up:Q7Z401 equivalent -hsa:10261 up:O95976 equivalent -hsa:10262 up:B3KUJ0 equivalent -hsa:10262 up:Q15427 equivalent -hsa:10263 up:O75956 equivalent -hsa:10263 up:Q6IAV4 equivalent -hsa:10265 up:P78411 equivalent -hsa:10266 up:O60895 equivalent -hsa:10267 up:O60894 equivalent -hsa:10268 up:A4D2L1 equivalent -hsa:10268 up:O60896 equivalent -hsa:10269 up:O75844 equivalent -hsa:1027 up:P46527 equivalent -hsa:1027 up:Q6I9V6 equivalent -hsa:10270 up:O43823 equivalent -hsa:10272 up:O95633 equivalent -hsa:102723553 up:P58511 equivalent -hsa:102723631 up:P0DMU8 equivalent -hsa:102723631 up:P0DMU9 equivalent -hsa:102723680 up:P0DMV1 equivalent -hsa:102723680 up:P0DMV2 equivalent -hsa:102723680 up:Q5DJT8 equivalent -hsa:102723737 up:P0DMV1 equivalent -hsa:102723737 up:P0DMV2 equivalent -hsa:102723737 up:Q5DJT8 equivalent -hsa:102723859 up:A0A087X179 equivalent -hsa:102724101 up:Q9ULZ0 equivalent -hsa:102724127 up:Q9ULZ0 equivalent -hsa:102724334 up:P57053 equivalent -hsa:102724428 up:A0A0B4J2F2 equivalent -hsa:102724428 up:P57059 equivalent -hsa:102724473 up:A6NGK3 equivalent -hsa:102724485 up:A0A8V8TMC4 equivalent -hsa:102724560 up:P35520 equivalent -hsa:102724594 up:Q01081 equivalent -hsa:102724631 up:A0JP26 equivalent -hsa:102724652 up:P02489 equivalent -hsa:102724862 up:A0A087WXS9 equivalent -hsa:102725035 up:O75022 equivalent -hsa:10273 up:Q9UNE7 equivalent -hsa:10274 up:Q4LE48 equivalent -hsa:10274 up:Q8WVM7 equivalent -hsa:10276 up:Q5SQI5 equivalent -hsa:10276 up:Q7Z628 equivalent -hsa:10277 up:O95155 equivalent -hsa:10278 up:O43281 equivalent -hsa:10279 up:Q9NQE7 equivalent -hsa:1028 up:P49918 equivalent -hsa:10280 up:Q99720 equivalent -hsa:102800317 up:B3KRV2 equivalent -hsa:102800317 up:P49674 equivalent -hsa:102800317 up:Q5U045 equivalent -hsa:10282 up:O15155 equivalent -hsa:10282 up:Q53XK0 equivalent -hsa:10283 up:Q6UX04 equivalent -hsa:10284 up:O00422 equivalent -hsa:10285 up:O75940 equivalent -hsa:10286 up:B2R7W3 equivalent -hsa:10286 up:O75934 equivalent -hsa:10287 up:P49795 equivalent -hsa:10288 up:Q8N423 equivalent -hsa:10289 up:O60739 equivalent -hsa:10289 up:Q6FG85 equivalent -hsa:1029 up:K7PML8 equivalent -hsa:1029 up:P42771 equivalent -hsa:10290 up:Q15772 equivalent -hsa:10291 up:Q15459 equivalent -hsa:10293 up:Q9BWF2 equivalent -hsa:10294 up:O60884 equivalent -hsa:10295 up:O14874 equivalent -hsa:10296 up:B3KRN7 equivalent -hsa:10296 up:Q7L5Y9 equivalent -hsa:10297 up:O95996 equivalent -hsa:10298 up:O96013 equivalent -hsa:10299 up:O60337 equivalent -hsa:103 up:P55265 equivalent -hsa:1030 up:K7PPU3 equivalent -hsa:1030 up:P42772 equivalent -hsa:10300 up:Q9BVA0 equivalent -hsa:10302 up:O75971 equivalent -hsa:10307 up:O95704 equivalent -hsa:10307 up:Q59EH2 equivalent -hsa:10307 up:Q96DX9 equivalent -hsa:10308 up:Q14586 equivalent -hsa:10309 up:P22674 equivalent -hsa:1031 up:P42773 equivalent -hsa:1031 up:Q6ICV4 equivalent -hsa:10311 up:O14972 equivalent -hsa:10312 up:Q13488 equivalent -hsa:10313 up:O95197 equivalent -hsa:10314 up:O43813 equivalent -hsa:10314 up:Q53TN2 equivalent -hsa:10316 up:Q9HB89 equivalent -hsa:10317 up:Q9Y2C3 equivalent -hsa:10318 up:A8K4N4 equivalent -hsa:10318 up:Q15025 equivalent -hsa:10319 up:Q8N2D6 equivalent -hsa:10319 up:Q9Y6N6 equivalent -hsa:1032 up:P55273 equivalent -hsa:10320 up:Q13422 equivalent -hsa:10320 up:R9R4D9 equivalent -hsa:10321 up:P54108 equivalent -hsa:10322 up:Q6GMV2 equivalent -hsa:10324 up:O60662 equivalent -hsa:10325 up:Q5VZM2 equivalent -hsa:10326 up:Q5TFQ8 equivalent -hsa:10327 up:P14550 equivalent -hsa:10327 up:V9HWI0 equivalent -hsa:10328 up:O43402 equivalent -hsa:10328 up:Q53Y03 equivalent -hsa:10329 up:Q9Y2B1 equivalent -hsa:1033 up:Q16667 equivalent -hsa:10330 up:Q9Y2B0 equivalent -hsa:10331 up:Q9Y2A9 equivalent -hsa:10332 up:Q9H2X3 equivalent -hsa:10333 up:B2R933 equivalent -hsa:10333 up:Q9Y2C9 equivalent -hsa:10335 up:Q9Y6F6 equivalent -hsa:10336 up:B3KQ06 equivalent -hsa:10336 up:B3KWT8 equivalent -hsa:10336 up:B4DTN5 equivalent -hsa:10336 up:Q3KNV8 equivalent -hsa:10342 up:Q92734 equivalent -hsa:10343 up:Q9NTG1 equivalent -hsa:10344 up:Q9Y258 equivalent -hsa:10345 up:Q13061 equivalent -hsa:10346 up:B4DQS5 equivalent -hsa:10346 up:Q8IYM9 equivalent -hsa:10347 up:B3KUJ3 equivalent -hsa:10347 up:Q8IZY2 equivalent -hsa:10349 up:Q8WWZ4 equivalent -hsa:10350 up:Q8IUA7 equivalent -hsa:10351 up:O94911 equivalent -hsa:10352 up:Q9UGM6 equivalent -hsa:1036 up:Q16878 equivalent -hsa:10360 up:O75607 equivalent -hsa:10361 up:Q86SE8 equivalent -hsa:10362 up:Q9P0W2 equivalent -hsa:10363 up:Q9NP66 equivalent -hsa:10365 up:Q9Y5W3 equivalent -hsa:10367 up:Q9BPX6 equivalent -hsa:10368 up:O60359 equivalent -hsa:10369 up:Q9Y698 equivalent -hsa:10370 up:D9ZGF1 equivalent -hsa:10370 up:Q99967 equivalent -hsa:10371 up:Q14563 equivalent -hsa:10376 up:P68363 equivalent -hsa:10379 up:Q00978 equivalent -hsa:10380 up:O95861 equivalent -hsa:10380 up:V9HWF9 equivalent -hsa:10381 up:Q13509 equivalent -hsa:10381 up:Q53G92 equivalent -hsa:10382 up:P04350 equivalent -hsa:10383 up:P68371 equivalent -hsa:10384 up:O00478 equivalent -hsa:10385 up:Q8WVV5 equivalent -hsa:10388 up:Q9BX26 equivalent -hsa:10389 up:Q9UQR0 equivalent -hsa:1039 up:Q01850 equivalent -hsa:10390 up:Q9Y6K0 equivalent -hsa:10391 up:Q9UQ03 equivalent -hsa:103910 up:O14950 equivalent -hsa:10392 up:A0A024RA73 equivalent -hsa:10392 up:Q9Y239 equivalent -hsa:10393 up:Q9UM13 equivalent -hsa:10394 up:Q9Y2Y8 equivalent -hsa:10395 up:Q96QB1 equivalent -hsa:10396 up:Q9Y2Q0 equivalent -hsa:10397 up:Q92597 equivalent -hsa:10398 up:A0A384NY64 equivalent -hsa:10398 up:P24844 equivalent -hsa:10399 up:E9KL35 equivalent -hsa:10399 up:P63244 equivalent -hsa:104 up:P78563 equivalent -hsa:1040 up:Q92903 equivalent -hsa:10400 up:Q9UBM1 equivalent -hsa:10401 up:B3KNI3 equivalent -hsa:10401 up:Q9Y6X2 equivalent -hsa:10402 up:Q9Y274 equivalent -hsa:10403 up:A8K031 equivalent -hsa:10403 up:O14777 equivalent -hsa:10404 up:Q9Y646 equivalent -hsa:10406 up:A0A384MTN6 equivalent -hsa:10406 up:Q14508 equivalent -hsa:10407 up:Q08648 equivalent -hsa:10409 up:P80723 equivalent -hsa:1041 up:Q15517 equivalent -hsa:10410 up:Q01628 equivalent -hsa:10411 up:O95398 equivalent -hsa:10411 up:Q99777 equivalent -hsa:10412 up:O95478 equivalent -hsa:10412 up:Q5J7U2 equivalent -hsa:10413 up:P46937 equivalent -hsa:10413 up:Q86T74 equivalent -hsa:10417 up:Q9BUD6 equivalent -hsa:10418 up:Q9HCB6 equivalent -hsa:10419 up:O14744 equivalent -hsa:10420 up:Q96S53 equivalent -hsa:10421 up:A0A024QZC1 equivalent -hsa:10421 up:O95400 equivalent -hsa:10422 up:A0A140VK64 equivalent -hsa:10422 up:Q9BSL1 equivalent -hsa:10423 up:A8K3L7 equivalent -hsa:10423 up:O14735 equivalent -hsa:10424 up:O15173 equivalent -hsa:10425 up:O95376 equivalent -hsa:10425 up:Q53ET9 equivalent -hsa:10425 up:Q6IBL8 equivalent -hsa:10426 up:Q96CW5 equivalent -hsa:10427 up:O95487 equivalent -hsa:10428 up:Q9UEE9 equivalent -hsa:1043 up:P31358 equivalent -hsa:1043 up:V9HWN9 equivalent -hsa:10430 up:Q9BVK8 equivalent -hsa:10432 up:A0A0S2Z4Z0 equivalent -hsa:10432 up:Q96PK6 equivalent -hsa:10434 up:O75608 equivalent -hsa:10434 up:Q6IAQ1 equivalent -hsa:10435 up:O14613 equivalent -hsa:10436 up:Q92979 equivalent -hsa:10437 up:P13284 equivalent -hsa:10438 up:Q13901 equivalent -hsa:10439 up:Q99784 equivalent -hsa:1044 up:P47902 equivalent -hsa:10440 up:Q99595 equivalent -hsa:10443 up:Q92802 equivalent -hsa:10444 up:Q7Z7L7 equivalent -hsa:10445 up:Q96EZ8 equivalent -hsa:10446 up:O75325 equivalent -hsa:10447 up:Q92520 equivalent -hsa:10449 up:B3KNP8 equivalent -hsa:10449 up:P42765 equivalent -hsa:1045 up:Q99626 equivalent -hsa:10450 up:Q9UNP9 equivalent -hsa:10451 up:Q9UKW4 equivalent -hsa:10452 up:O96008 equivalent -hsa:10454 up:A8K6K3 equivalent -hsa:10454 up:Q15750 equivalent -hsa:10455 up:O75521 equivalent -hsa:10456 up:A0A0S2Z591 equivalent -hsa:10456 up:O00165 equivalent -hsa:10457 up:Q14956 equivalent -hsa:10458 up:Q9UQB8 equivalent -hsa:10459 up:Q9UI95 equivalent -hsa:1046 up:O14627 equivalent -hsa:10460 up:Q9Y6A5 equivalent -hsa:10461 up:Q12866 equivalent -hsa:10462 up:Q8IUN9 equivalent -hsa:10463 up:A0A0S2Z514 equivalent -hsa:10463 up:Q6PML9 equivalent -hsa:10464 up:Q8WXW3 equivalent -hsa:10465 up:O43447 equivalent -hsa:10465 up:Q6FH36 equivalent -hsa:10466 up:Q9UP83 equivalent -hsa:10467 up:O43257 equivalent -hsa:10468 up:P19883 equivalent -hsa:10469 up:O43615 equivalent -hsa:1047 up:A0A140VKG2 equivalent -hsa:1047 up:O14967 equivalent -hsa:10471 up:O15212 equivalent -hsa:10471 up:Q5STK2 equivalent -hsa:10472 up:Q99592 equivalent -hsa:10473 up:O00479 equivalent -hsa:10474 up:A8K899 equivalent -hsa:10474 up:O75528 equivalent -hsa:10475 up:O00635 equivalent -hsa:10476 up:A0PJH2 equivalent -hsa:10476 up:O75947 equivalent -hsa:10477 up:Q969T4 equivalent -hsa:10478 up:O43808 equivalent -hsa:10479 up:Q92581 equivalent -hsa:1048 up:A0A024R0K5 equivalent -hsa:1048 up:P06731 equivalent -hsa:1048 up:Q53G30 equivalent -hsa:10480 up:Q7L2H7 equivalent -hsa:10481 up:Q4KR72 equivalent -hsa:10481 up:Q92826 equivalent -hsa:10482 up:Q9UBU9 equivalent -hsa:10483 up:Q15437 equivalent -hsa:10484 up:Q15436 equivalent -hsa:10486 up:P40123 equivalent -hsa:10486 up:Q5JPJ8 equivalent -hsa:10487 up:D3DPU2 equivalent -hsa:10487 up:Q01518 equivalent -hsa:10488 up:O43889 equivalent -hsa:10489 up:Q15345 equivalent -hsa:10490 up:Q9UEU0 equivalent -hsa:104909134 up:B4DMR5 equivalent -hsa:104909134 up:P34998 equivalent -hsa:10491 up:O75718 equivalent -hsa:10492 up:O60506 equivalent -hsa:10493 up:Q99536 equivalent -hsa:10494 up:A0A024R4B2 equivalent -hsa:10494 up:O00506 equivalent -hsa:10495 up:Q16206 equivalent -hsa:10497 up:O14795 equivalent -hsa:10497 up:Q4LE73 equivalent -hsa:10498 up:Q86X55 equivalent -hsa:10499 up:Q15596 equivalent -hsa:105 up:Q9NS39 equivalent -hsa:1050 up:P49715 equivalent -hsa:10500 up:Q9H3T2 equivalent -hsa:10501 up:Q9H3T3 equivalent -hsa:10505 up:O95754 equivalent -hsa:10507 up:Q92854 equivalent -hsa:10509 up:Q9NPR2 equivalent -hsa:1051 up:P17676 equivalent -hsa:10512 up:Q99985 equivalent -hsa:10513 up:Q92624 equivalent -hsa:10514 up:Q9BQG0 equivalent -hsa:10516 up:A0A024R6G3 equivalent -hsa:10516 up:Q9UBX5 equivalent -hsa:10517 up:Q5XX13 equivalent -hsa:10518 up:O75838 equivalent -hsa:10519 up:A0A140VK09 equivalent -hsa:10519 up:Q99828 equivalent -hsa:1052 up:P49716 equivalent -hsa:10520 up:Q13398 equivalent -hsa:10521 up:Q92841 equivalent -hsa:10522 up:O75398 equivalent -hsa:10523 up:Q8IWX8 equivalent -hsa:10524 up:Q92993 equivalent -hsa:10525 up:A0A384P5T6 equivalent -hsa:10525 up:B3KXH0 equivalent -hsa:10525 up:B7Z602 equivalent -hsa:10525 up:B7Z766 equivalent -hsa:10525 up:Q6IN67 equivalent -hsa:10525 up:Q9Y4L1 equivalent -hsa:10526 up:O15397 equivalent -hsa:10527 up:B3KNG9 equivalent -hsa:10527 up:O95373 equivalent -hsa:10528 up:O00567 equivalent -hsa:10529 up:O76041 equivalent -hsa:10529 up:Q59FZ8 equivalent -hsa:1053 up:Q15744 equivalent -hsa:10531 up:Q5JRX3 equivalent -hsa:10533 up:B3KQM6 equivalent -hsa:10533 up:O95352 equivalent -hsa:10534 up:O60232 equivalent -hsa:10535 up:O75792 equivalent -hsa:10536 up:Q8IVL6 equivalent -hsa:10537 up:A0A1U9X8S6 equivalent -hsa:10537 up:O15205 equivalent -hsa:105372280 up:A0A1W2PRI1 equivalent -hsa:105373251 up:A0A1B0GTK5 equivalent -hsa:105373251 up:A0A1B0GUG4 reverse -hsa:105373251 up:P0DP71 equivalent -hsa:105373297 up:P60507 equivalent -hsa:105375355 up:Q9BT76 equivalent -hsa:10538 up:Q16520 equivalent -hsa:10539 up:A0A140VJK1 equivalent -hsa:10539 up:O76003 equivalent -hsa:1054 up:P53567 equivalent -hsa:10540 up:A0A384MDU9 equivalent -hsa:10540 up:Q13561 equivalent -hsa:10541 up:Q92688 equivalent -hsa:10542 up:A0A8Z5A536 equivalent -hsa:10542 up:O43504 equivalent -hsa:10544 up:Q9UNN8 equivalent -hsa:10548 up:O15321 equivalent -hsa:10549 up:Q13162 equivalent -hsa:10549 up:V9HW63 equivalent -hsa:10550 up:O75915 equivalent -hsa:10551 up:O95994 equivalent -hsa:10551 up:Q4JM46 equivalent -hsa:10552 up:Q92747 equivalent -hsa:10552 up:V9HVZ6 equivalent -hsa:10553 up:Q9BUP3 equivalent -hsa:10554 up:A0A024RCV5 equivalent -hsa:10554 up:Q99943 equivalent -hsa:10555 up:O15120 equivalent -hsa:10556 up:P78346 equivalent -hsa:10557 up:P78345 equivalent -hsa:10558 up:O15269 equivalent -hsa:10558 up:Q6NUL7 equivalent -hsa:10559 up:P78382 equivalent -hsa:1056 up:B4DSX9 equivalent -hsa:1056 up:O75612 equivalent -hsa:1056 up:Q86SR3 equivalent -hsa:10560 up:A0A024R928 equivalent -hsa:10560 up:O60779 equivalent -hsa:10561 up:Q8TCB0 equivalent -hsa:10562 up:Q6UX06 equivalent -hsa:10563 up:O43927 equivalent -hsa:10563 up:Q53X90 equivalent -hsa:10564 up:Q59FR3 equivalent -hsa:10564 up:Q86TH5 equivalent -hsa:10564 up:Q9Y6D5 equivalent -hsa:10565 up:Q9Y6D6 equivalent -hsa:10566 up:O75969 equivalent -hsa:10566 up:V9HWD4 equivalent -hsa:10567 up:Q9UI14 equivalent -hsa:10568 up:O95436 equivalent -hsa:10569 up:O95391 equivalent -hsa:10570 up:O14531 equivalent -hsa:10572 up:O15304 equivalent -hsa:10573 up:Q13084 equivalent -hsa:10574 up:Q99832 equivalent -hsa:10575 up:P50991 equivalent -hsa:10576 up:P78371 equivalent -hsa:10576 up:V9HW96 equivalent -hsa:10577 up:A0A024R6C0 equivalent -hsa:10577 up:P61916 equivalent -hsa:10578 up:P22749 equivalent -hsa:10579 up:O95359 equivalent -hsa:1058 up:P49450 equivalent -hsa:10580 up:Q9BX66 equivalent -hsa:10581 up:Q01629 equivalent -hsa:10584 up:Q9Y6Z7 equivalent -hsa:10585 up:Q9Y6A1 equivalent -hsa:10586 up:Q9Y586 equivalent -hsa:10587 up:Q9NNW7 equivalent -hsa:10588 up:P49914 equivalent -hsa:10589 up:Q14919 equivalent -hsa:1059 up:P07199 equivalent -hsa:10590 up:O76038 equivalent -hsa:10591 up:O43598 equivalent -hsa:10592 up:B3KMB1 equivalent -hsa:10592 up:O95347 equivalent -hsa:10592 up:Q05BV1 equivalent -hsa:10592 up:Q6IPS5 equivalent -hsa:10594 up:Q6P2Q9 equivalent -hsa:10595 up:A5YM46 equivalent -hsa:10595 up:A5YM65 equivalent -hsa:10595 up:Q76MJ5 equivalent -hsa:10598 up:O95433 equivalent -hsa:10599 up:Q05CV5 equivalent -hsa:10599 up:Q9Y6L6 equivalent -hsa:1060 up:Q03188 equivalent -hsa:10600 up:Q9Y5T5 equivalent -hsa:10602 up:Q9UKI2 equivalent -hsa:10605 up:Q9H074 equivalent -hsa:10606 up:P22234 equivalent -hsa:10607 up:Q12788 equivalent -hsa:10608 up:Q14582 equivalent -hsa:10609 up:Q92791 equivalent -hsa:10610 up:Q9UJ37 equivalent -hsa:10611 up:Q96HC4 equivalent -hsa:10612 up:O75382 equivalent -hsa:10613 up:O75477 equivalent -hsa:10614 up:O94992 equivalent -hsa:10615 up:Q96R06 equivalent -hsa:10616 up:Q9BYM8 equivalent -hsa:10617 up:A0A140VK54 equivalent -hsa:10617 up:O95630 equivalent -hsa:10618 up:O43493 equivalent -hsa:1062 up:Q02224 equivalent -hsa:10620 up:Q8IVW6 equivalent -hsa:10621 up:Q9H1D9 equivalent -hsa:10622 up:O15318 equivalent -hsa:10623 up:Q9BUI4 equivalent -hsa:10625 up:Q9Y6Y0 equivalent -hsa:10626 up:O95361 equivalent -hsa:10627 up:P19105 equivalent -hsa:10628 up:Q9H3M7 equivalent -hsa:10629 up:A8K0D4 equivalent -hsa:10629 up:Q9Y6J9 equivalent -hsa:1063 up:P49454 equivalent -hsa:10630 up:Q86YL7 equivalent -hsa:10631 up:Q15063 equivalent -hsa:10632 up:O75964 equivalent -hsa:10633 up:Q92737 equivalent -hsa:10634 up:A0A5E8 equivalent -hsa:10634 up:Q99501 equivalent -hsa:10635 up:Q96B01 equivalent -hsa:10636 up:O43566 equivalent -hsa:10637 up:O75610 equivalent -hsa:10640 up:O00471 equivalent -hsa:10641 up:Q8WTW4 equivalent -hsa:10642 up:Q9NZI8 equivalent -hsa:10643 up:O00425 equivalent -hsa:10644 up:Q9Y6M1 equivalent -hsa:10645 up:Q96RR4 equivalent -hsa:10647 up:O95969 equivalent -hsa:10648 up:O95968 equivalent -hsa:10650 up:Q96N28 equivalent -hsa:10651 up:O75431 equivalent -hsa:10652 up:A4D2J0 equivalent -hsa:10652 up:O15498 equivalent -hsa:10653 up:O43291 equivalent -hsa:10654 up:Q15126 equivalent -hsa:10654 up:Q6FGV9 equivalent -hsa:10655 up:Q05C20 equivalent -hsa:10655 up:Q9Y5R5 equivalent -hsa:10656 up:O75525 equivalent -hsa:10657 up:Q07666 equivalent -hsa:10658 up:Q92879 equivalent -hsa:10659 up:O95319 equivalent -hsa:1066 up:P23141 equivalent -hsa:10660 up:P52954 equivalent -hsa:10661 up:Q13351 equivalent -hsa:10663 up:A0N0N3 equivalent -hsa:10663 up:O00574 equivalent -hsa:10664 up:P49711 equivalent -hsa:10665 up:A0A1U9X7D1 reverse -hsa:10665 up:Q13647 equivalent -hsa:10665 up:Q5SRN2 equivalent -hsa:10666 up:Q15762 equivalent -hsa:10667 up:O95363 equivalent -hsa:10668 up:Q99675 equivalent -hsa:10669 up:Q99674 equivalent -hsa:10670 up:Q7L523 equivalent -hsa:106707243 up:Q6ZW62 equivalent -hsa:10671 up:O00399 equivalent -hsa:10672 up:Q14344 equivalent -hsa:10673 up:A0A0U5J7Q1 equivalent -hsa:10673 up:Q9Y275 equivalent -hsa:10675 up:O95196 equivalent -hsa:10677 up:O75366 equivalent -hsa:10678 up:Q9NY97 equivalent -hsa:1068 up:A0A140VJG3 equivalent -hsa:1068 up:Q12798 equivalent -hsa:10681 up:O14775 equivalent -hsa:10682 up:A0A024QYX0 equivalent -hsa:10682 up:Q15125 equivalent -hsa:106821730 up:Q9NQU5 equivalent -hsa:10683 up:Q9NYJ7 equivalent -hsa:10686 up:Q9Y5I7 equivalent -hsa:106865373 up:A0A3B3ITX9 equivalent -hsa:10687 up:Q5U5Z3 equivalent -hsa:10687 up:Q9UL42 equivalent -hsa:1069 up:P41208 equivalent -hsa:10690 up:Q9Y231 equivalent -hsa:10691 up:B2RCN8 equivalent -hsa:10691 up:Q9Y692 equivalent -hsa:10692 up:O14718 equivalent -hsa:10693 up:Q92526 equivalent -hsa:10694 up:P50990 equivalent -hsa:10695 up:Q9BT09 equivalent -hsa:10699 up:B4E2W9 equivalent -hsa:10699 up:Q9Y5Q5 equivalent -hsa:107 up:C9J1J0 reverse -hsa:107 up:Q08828 equivalent -hsa:1070 up:O15182 equivalent -hsa:107080638 up:Q9P0N9 equivalent -hsa:1071 up:A0A0S2Z3F6 equivalent -hsa:1071 up:P11597 equivalent -hsa:10712 up:P81408 equivalent -hsa:10713 up:Q53GS9 equivalent -hsa:10714 up:Q15054 equivalent -hsa:10715 up:P27544 equivalent -hsa:10716 up:Q16650 equivalent -hsa:10717 up:Q9Y6B7 equivalent -hsa:10718 up:B9EGV5 equivalent -hsa:10718 up:P56975 equivalent -hsa:107181291 up:W6CW81 equivalent -hsa:1072 up:P23528 equivalent -hsa:1072 up:V9HWI5 equivalent -hsa:10720 up:O75310 equivalent -hsa:10721 up:O75417 equivalent -hsa:10721 up:Q59EE4 equivalent -hsa:10723 up:Q9Y666 equivalent -hsa:10724 up:O60502 equivalent -hsa:10725 up:O94916 equivalent -hsa:10726 up:Q9Y266 equivalent -hsa:10728 up:Q15185 equivalent -hsa:107282092 up:B4DHK7 equivalent -hsa:1073 up:Q549N0 equivalent -hsa:1073 up:Q9Y281 equivalent -hsa:10730 up:Q96TA2 equivalent -hsa:10732 up:Q86TP4 equivalent -hsa:10732 up:Q9UL49 equivalent -hsa:10733 up:O00444 equivalent -hsa:10734 up:Q9UJ98 equivalent -hsa:10735 up:Q6MZM3 equivalent -hsa:10735 up:Q8N3U4 equivalent -hsa:10736 up:Q8TBA2 equivalent -hsa:10736 up:Q9NPC8 equivalent -hsa:10738 up:O75679 equivalent -hsa:10739 up:O75678 equivalent -hsa:10741 up:O75884 equivalent -hsa:10742 up:B3KPD7 equivalent -hsa:10742 up:Q9Y5P3 equivalent -hsa:10743 up:Q7Z5J4 equivalent -hsa:10744 up:Q9NZH5 equivalent -hsa:10745 up:Q9UMS5 equivalent -hsa:10746 up:Q9Y2U5 equivalent -hsa:10747 up:O00187 equivalent -hsa:10749 up:O43896 equivalent -hsa:1075 up:P53634 equivalent -hsa:10750 up:Q13588 equivalent -hsa:10752 up:O00533 equivalent -hsa:10753 up:O14815 equivalent -hsa:10753 up:Q6PIV8 equivalent -hsa:10755 up:O14908 equivalent -hsa:10758 up:O43734 equivalent -hsa:10761 up:Q9HBJ0 equivalent -hsa:10762 up:Q9UKX7 equivalent -hsa:10763 up:P48681 equivalent -hsa:10763 up:Q9H6U9 equivalent -hsa:10765 up:Q9UGL1 equivalent -hsa:10766 up:Q14106 equivalent -hsa:10767 up:D9YZV0 equivalent -hsa:10767 up:Q9Y450 equivalent -hsa:10768 up:A0A024R0A8 equivalent -hsa:10768 up:O43865 equivalent -hsa:10769 up:Q9NYY3 equivalent -hsa:10771 up:Q15326 equivalent -hsa:10771 up:Q5BJG6 equivalent -hsa:10771 up:Q5UGI2 equivalent -hsa:10772 up:A0A0S2Z504 equivalent -hsa:10772 up:O75494 equivalent -hsa:10773 up:Q15916 equivalent -hsa:10775 up:O95707 equivalent -hsa:10776 up:P56211 equivalent -hsa:10777 up:Q9UBL0 equivalent -hsa:10780 up:Q14588 equivalent -hsa:10781 up:Q14584 equivalent -hsa:10782 up:Q96GC6 equivalent -hsa:10783 up:Q9HC98 equivalent -hsa:10785 up:P57081 equivalent -hsa:10786 up:O00476 equivalent -hsa:10787 up:Q9Y2A7 equivalent -hsa:10788 up:B7Z7U6 equivalent -hsa:10788 up:Q13576 equivalent -hsa:10788 up:Q59HA3 equivalent -hsa:10791 up:O95183 equivalent -hsa:10791 up:Q6FG93 equivalent -hsa:10793 up:Q14593 equivalent -hsa:10794 up:Q14592 equivalent -hsa:10795 up:Q14587 equivalent -hsa:10795 up:Q2TB61 equivalent -hsa:10797 up:P13995 equivalent -hsa:10798 up:A0A126GVE5 equivalent -hsa:10798 up:Q13606 equivalent -hsa:107984640 up:A0A0U1RRK4 equivalent -hsa:107985149 up:Q6ZNW8 equivalent -hsa:107987425 up:A0A0G2JNB3 equivalent -hsa:107987462 up:O75022 equivalent -hsa:107987478 up:Q38LG2 equivalent -hsa:107987479 up:Q38LG2 equivalent -hsa:10799 up:O75818 equivalent -hsa:108 up:Q08462 equivalent -hsa:108 up:Q71UM8 equivalent -hsa:1080 up:P13569 equivalent -hsa:10800 up:Q38Q88 equivalent -hsa:10800 up:Q38Q91 equivalent -hsa:10800 up:Q9Y271 equivalent -hsa:10801 up:Q9UHD8 equivalent -hsa:10802 up:B4E205 equivalent -hsa:10802 up:O95486 equivalent -hsa:10803 up:P51686 equivalent -hsa:10804 up:A0A024RDS4 equivalent -hsa:10804 up:O95452 equivalent -hsa:10806 up:Q86SQ7 equivalent -hsa:10807 up:Q96C92 equivalent -hsa:10808 up:Q92598 equivalent -hsa:10809 up:Q9Y365 equivalent -hsa:1081 up:P01215 equivalent -hsa:1081 up:Q6I9S8 equivalent -hsa:10810 up:Q5T8P4 equivalent -hsa:10810 up:Q9UPY6 equivalent -hsa:10811 up:Q86UR1 equivalent -hsa:10813 up:Q9BVJ6 equivalent -hsa:10814 up:Q6PUV4 equivalent -hsa:10815 up:O14810 equivalent -hsa:10816 up:P49223 equivalent -hsa:10817 up:A0A140VJJ7 equivalent -hsa:10817 up:O43559 equivalent -hsa:10818 up:L7RTG7 equivalent -hsa:10818 up:Q8WU20 equivalent -hsa:1082 up:A0A0F7RQP8 equivalent -hsa:1082 up:P0DN86 equivalent -hsa:10825 up:Q9UQ49 equivalent -hsa:10826 up:Q96IV6 equivalent -hsa:10827 up:A0A140VKG4 equivalent -hsa:10827 up:B3KTE4 equivalent -hsa:10827 up:Q9NRY5 equivalent -hsa:10838 up:A6NFS0 equivalent -hsa:1084 up:P40198 equivalent -hsa:10840 up:O75891 equivalent -hsa:10840 up:Q53H87 equivalent -hsa:10841 up:O95954 equivalent -hsa:10842 up:A0A090N8N7 equivalent -hsa:10842 up:O96001 equivalent -hsa:10844 up:Q53EQ3 equivalent -hsa:10844 up:Q9BSJ2 equivalent -hsa:10845 up:O76031 equivalent -hsa:10846 up:A0A1B1UZR0 reverse -hsa:10846 up:Q9Y233 equivalent -hsa:10847 up:Q6ZRS2 equivalent -hsa:10848 up:Q8WUF5 equivalent -hsa:10849 up:O15446 equivalent -hsa:10850 up:Q5VZ77 equivalent -hsa:10850 up:Q9Y4X3 equivalent -hsa:10855 up:Q9Y251 equivalent -hsa:10856 up:Q9Y230 equivalent -hsa:10857 up:O00264 equivalent -hsa:10857 up:Q6IB11 equivalent -hsa:10858 up:Q9Y6A2 equivalent -hsa:10859 up:A0A0B4J1W1 equivalent -hsa:10859 up:Q8NHL6 equivalent -hsa:10861 up:Q9H2B4 equivalent -hsa:10863 up:Q9UKQ2 equivalent -hsa:10864 up:Q9Y694 equivalent -hsa:10865 up:Q03989 equivalent -hsa:10867 up:O75954 equivalent -hsa:10868 up:Q9Y2K6 equivalent -hsa:10869 up:O94966 equivalent -hsa:1087 up:Q14002 equivalent -hsa:10870 up:Q9UBK5 equivalent -hsa:10871 up:Q08708 equivalent -hsa:10873 up:Q16798 equivalent -hsa:10873 up:Q6TCH8 equivalent -hsa:10874 up:A0A250SH36 equivalent -hsa:10874 up:P48645 equivalent -hsa:10875 up:A4D1B8 equivalent -hsa:10875 up:Q14314 equivalent -hsa:10876 up:Q14507 equivalent -hsa:10876 up:W0UTC5 equivalent -hsa:10877 up:Q92496 equivalent -hsa:10878 up:Q02985 equivalent -hsa:10879 up:P02814 equivalent -hsa:10879 up:Q504X8 equivalent -hsa:1088 up:B4DLI3 equivalent -hsa:1088 up:P31997 equivalent -hsa:1088 up:Q0Z7S6 equivalent -hsa:10880 up:A0A140VKC6 equivalent -hsa:10880 up:Q9Y614 equivalent -hsa:10881 up:A0A140VK03 equivalent -hsa:10881 up:Q9Y615 equivalent -hsa:10882 up:O75973 equivalent -hsa:10884 up:Q9NP92 equivalent -hsa:10885 up:Q5TDG3 equivalent -hsa:10885 up:Q9UNX4 equivalent -hsa:10886 up:A0PJM9 equivalent -hsa:10886 up:Q9Y5X5 equivalent -hsa:10887 up:Q8TCW9 equivalent -hsa:10888 up:Q9NYM4 equivalent -hsa:1089 up:O75871 equivalent -hsa:10890 up:P61026 equivalent -hsa:10891 up:Q9UBK2 equivalent -hsa:10892 up:A8K5S1 equivalent -hsa:10892 up:Q9UDY8 equivalent -hsa:10893 up:Q86VV6 equivalent -hsa:10893 up:Q9Y5R2 equivalent -hsa:10894 up:B2R672 equivalent -hsa:10894 up:Q9Y5Y7 equivalent -hsa:10897 up:A8K509 equivalent -hsa:10897 up:O95070 equivalent -hsa:10898 up:O95639 equivalent -hsa:10899 up:O76095 equivalent -hsa:109 up:O60266 equivalent -hsa:10900 up:Q59EK9 equivalent -hsa:10901 up:Q9BTZ2 equivalent -hsa:10902 up:Q9H0E9 equivalent -hsa:10903 up:A4FU01 equivalent -hsa:10904 up:P62952 equivalent -hsa:10905 up:O60476 equivalent -hsa:10906 up:O14545 equivalent -hsa:10907 up:P83876 equivalent -hsa:10908 up:Q8IY17 equivalent -hsa:10910 up:A8K7W3 equivalent -hsa:10910 up:Q9Y2Z0 equivalent -hsa:10911 up:O95399 equivalent -hsa:10912 up:O95257 equivalent -hsa:10913 up:Q9UNE0 equivalent -hsa:10914 up:P51003 equivalent -hsa:10915 up:O14776 equivalent -hsa:10916 up:Q9UNF1 equivalent -hsa:10917 up:Q6UXE8 equivalent -hsa:10919 up:A0A024RCN9 equivalent -hsa:10919 up:Q96KQ7 equivalent -hsa:10920 up:Q99627 equivalent -hsa:10921 up:D3DU92 equivalent -hsa:10921 up:Q15287 equivalent -hsa:10922 up:A0A090N8Z7 equivalent -hsa:10922 up:Q14296 equivalent -hsa:10923 up:P53999 equivalent -hsa:10923 up:Q6IBA2 equivalent -hsa:10924 up:Q92484 equivalent -hsa:10926 up:Q9UBU7 equivalent -hsa:10927 up:Q9Y657 equivalent -hsa:10928 up:Q15311 equivalent -hsa:10929 up:Q9BRL6 equivalent -hsa:10930 up:Q9Y235 equivalent -hsa:10933 up:Q9UBU8 equivalent -hsa:10935 up:A0A384MTR2 equivalent -hsa:10935 up:P30048 equivalent -hsa:10936 up:O95800 equivalent -hsa:10938 up:B2R5U3 equivalent -hsa:10938 up:Q9H4M9 equivalent -hsa:10939 up:Q8TA92 equivalent -hsa:10939 up:Q9Y4W6 equivalent -hsa:10940 up:Q99575 equivalent -hsa:10941 up:P0DTE4 equivalent -hsa:10942 up:Q9Y6M0 equivalent -hsa:10943 up:Q8N5Y2 equivalent -hsa:10944 up:O00193 equivalent -hsa:10945 up:P24390 equivalent -hsa:10946 up:Q12874 equivalent -hsa:10947 up:A0A384NYL6 equivalent -hsa:10947 up:P53677 equivalent -hsa:10948 up:Q14849 equivalent -hsa:10949 up:Q13151 equivalent -hsa:10950 up:Q14201 equivalent -hsa:10950 up:Q6IAU3 equivalent -hsa:109504726 up:Q03924 equivalent -hsa:10951 up:P83916 equivalent -hsa:10951 up:Q6IBN6 equivalent -hsa:10952 up:P60468 equivalent -hsa:10953 up:Q15785 equivalent -hsa:10954 up:Q14554 equivalent -hsa:10955 up:Q13530 equivalent -hsa:10956 up:Q13438 equivalent -hsa:10957 up:Q12796 equivalent -hsa:10959 up:Q15363 equivalent -hsa:10959 up:Q6FHT8 equivalent -hsa:10960 up:A0A384NPY7 equivalent -hsa:10960 up:Q12907 equivalent -hsa:10961 up:P30040 equivalent -hsa:10961 up:V9HW71 equivalent -hsa:10962 up:Q13015 equivalent -hsa:10962 up:Q6FGF7 equivalent -hsa:10963 up:P31948 equivalent -hsa:10963 up:V9HW72 equivalent -hsa:10964 up:Q53G44 equivalent -hsa:10965 up:P49753 equivalent -hsa:10966 up:Q12829 equivalent -hsa:10969 up:Q6IB29 equivalent -hsa:10969 up:Q99848 equivalent -hsa:10970 up:Q07065 equivalent -hsa:109703458 up:L0R6P0 equivalent -hsa:109703458 up:P86397 equivalent -hsa:10971 up:P27348 equivalent -hsa:10972 up:A0A024R6I3 equivalent -hsa:10972 up:P49755 equivalent -hsa:10973 up:B4DR60 equivalent -hsa:10973 up:Q8N3C0 equivalent -hsa:10974 up:Q15847 equivalent -hsa:10974 up:Q5TBU5 equivalent -hsa:10975 up:O14957 equivalent -hsa:10978 up:Q92989 equivalent -hsa:10979 up:Q96AC1 equivalent -hsa:10980 up:Q7L5N1 equivalent -hsa:10981 up:Q13637 equivalent -hsa:10982 up:Q15555 equivalent -hsa:10983 up:Q14094 equivalent -hsa:10985 up:Q92616 equivalent -hsa:10987 up:A0A024R7W9 equivalent -hsa:10987 up:Q92905 equivalent -hsa:10988 up:A0A140VJE3 equivalent -hsa:10988 up:P50579 equivalent -hsa:10989 up:Q16891 equivalent -hsa:10990 up:O75023 equivalent -hsa:10991 up:Q99624 equivalent -hsa:10992 up:Q13435 equivalent -hsa:10993 up:P20132 equivalent -hsa:10993 up:Q8WW81 equivalent -hsa:10994 up:A1L0T0 equivalent -hsa:10998 up:Q9Y2P5 equivalent -hsa:10999 up:Q6P1M0 equivalent -hsa:11000 up:Q5K4L6 equivalent -hsa:11000 up:X6R3N0 equivalent -hsa:11001 up:O14975 equivalent -hsa:11004 up:A0A140VKF1 equivalent -hsa:11004 up:Q99661 equivalent -hsa:11005 up:Q9NQ38 equivalent -hsa:11006 up:A0A8Q3SHR1 equivalent -hsa:11006 up:Q8NHJ6 equivalent -hsa:11007 up:Q15834 equivalent -hsa:11009 up:Q13007 equivalent -hsa:1101 up:O15335 equivalent -hsa:11010 up:P48060 equivalent -hsa:11011 up:Q86UE8 equivalent -hsa:110117498 up:A0A087WWA1 equivalent -hsa:110117499 up:B4DXM8 equivalent -hsa:110117499 up:F6TDL0 equivalent -hsa:110117499 up:Q68CY7 equivalent -hsa:110117499 up:Q7Z3W2 equivalent -hsa:11012 up:Q9UBX7 equivalent -hsa:11013 up:P0CG34 equivalent -hsa:11013 up:P0CG35 equivalent -hsa:11013 up:P0DX04 equivalent -hsa:11014 up:P33947 equivalent -hsa:11015 up:O43731 equivalent -hsa:11016 up:P17544 equivalent -hsa:11017 up:A8K513 equivalent -hsa:11017 up:Q8WVK2 equivalent -hsa:11018 up:Q13445 equivalent -hsa:11019 up:O43766 equivalent -hsa:1102 up:O95199 equivalent -hsa:11020 up:Q9BW83 equivalent -hsa:11021 up:Q15286 equivalent -hsa:11022 up:Q9Y2W6 equivalent -hsa:11023 up:Q5SQQ9 equivalent -hsa:11024 up:O75019 equivalent -hsa:11026 up:Q8N6C8 equivalent -hsa:11027 up:Q8N149 equivalent -hsa:1103 up:P28329 equivalent -hsa:11030 up:Q93062 equivalent -hsa:11031 up:Q13636 equivalent -hsa:11033 up:O75689 equivalent -hsa:11034 up:P60981 equivalent -hsa:11034 up:V9HWA6 equivalent -hsa:11035 up:Q9Y572 equivalent -hsa:11036 up:A0A140VKA3 equivalent -hsa:11036 up:Q9UNN4 equivalent -hsa:11037 up:Q9Y6Q2 equivalent -hsa:1104 up:P18754 equivalent -hsa:1104 up:Q5T081 equivalent -hsa:11040 up:Q9P1W9 equivalent -hsa:11041 up:O43505 equivalent -hsa:11043 up:Q9UJV3 equivalent -hsa:11044 up:A0A9H4DBI9 equivalent -hsa:11044 up:B7ZLL4 equivalent -hsa:11044 up:Q5XG87 equivalent -hsa:11045 up:O00322 equivalent -hsa:11046 up:Q76EJ3 equivalent -hsa:11047 up:Q16186 equivalent -hsa:1105 up:B3KT33 equivalent -hsa:1105 up:O14646 equivalent -hsa:11051 up:O43809 equivalent -hsa:11052 up:Q16630 equivalent -hsa:11054 up:Q9NZT2 equivalent -hsa:11055 up:Q9BS86 equivalent -hsa:11056 up:B3KM65 equivalent -hsa:11056 up:Q9Y2R4 equivalent -hsa:11057 up:A0A024RC89 equivalent -hsa:11057 up:P08910 equivalent -hsa:11059 up:Q9H0M0 equivalent -hsa:110599564 up:P0DPD7 equivalent -hsa:110599583 up:P0DPD6 equivalent -hsa:110599583 up:P0DPD8 equivalent -hsa:1106 up:O14647 equivalent -hsa:11060 up:O00308 equivalent -hsa:11061 up:O75829 equivalent -hsa:11062 up:A4D0R5 equivalent -hsa:11062 up:O95620 equivalent -hsa:11063 up:O94993 equivalent -hsa:11064 up:Q7Z7A1 equivalent -hsa:11065 up:O00762 equivalent -hsa:11065 up:Q5TZN3 equivalent -hsa:11066 up:Q16560 equivalent -hsa:11067 up:Q9NTK1 equivalent -hsa:11068 up:O14569 equivalent -hsa:11069 up:Q8WZA2 equivalent -hsa:1107 up:B3KWV4 equivalent -hsa:1107 up:Q12873 equivalent -hsa:1107 up:Q2TAZ1 equivalent -hsa:11070 up:A0A024R2Y2 equivalent -hsa:11070 up:Q12893 equivalent -hsa:11072 up:O95147 equivalent -hsa:11072 up:Q6FI36 equivalent -hsa:11073 up:A0AV47 equivalent -hsa:11073 up:A7E2X7 equivalent -hsa:11073 up:Q05BV8 equivalent -hsa:11073 up:Q92547 equivalent -hsa:11074 up:Q2L6J1 equivalent -hsa:11074 up:Q9BZY9 equivalent -hsa:11075 up:Q93045 equivalent -hsa:11076 up:O94811 equivalent -hsa:11076 up:Q4L233 equivalent -hsa:11077 up:O75031 equivalent -hsa:11077 up:Q6IAT7 equivalent -hsa:11078 up:Q9H2D6 equivalent -hsa:11079 up:O15258 equivalent -hsa:11079 up:Q5T094 equivalent -hsa:1108 up:F5GWX5 reverse -hsa:1108 up:Q14839 equivalent -hsa:11080 up:Q9UDY4 equivalent -hsa:11081 up:O60938 equivalent -hsa:11082 up:Q9NQ30 equivalent -hsa:11083 up:Q9BTC0 equivalent -hsa:11085 up:Q8TBZ7 equivalent -hsa:11085 up:Q9UKF2 equivalent -hsa:11086 up:A0A140VJD8 equivalent -hsa:11086 up:Q9UKF5 equivalent -hsa:1109 up:P17516 equivalent -hsa:11091 up:P61964 equivalent -hsa:11092 up:Q96E40 equivalent -hsa:11093 up:Q76LX8 equivalent -hsa:11094 up:Q9UGQ2 equivalent -hsa:11095 up:Q5FWF1 equivalent -hsa:11095 up:Q9UP79 equivalent -hsa:11096 up:Q9UNA0 equivalent -hsa:11097 up:O15504 equivalent -hsa:11098 up:O95084 equivalent -hsa:11099 up:Q16825 equivalent -hsa:111 up:A0A384P5Q5 equivalent -hsa:111 up:B7Z2C7 equivalent -hsa:111 up:O95622 equivalent -hsa:11100 up:Q9BUJ2 equivalent -hsa:11101 up:B3KWA3 equivalent -hsa:11101 up:O95260 equivalent -hsa:11102 up:O95059 equivalent -hsa:11103 up:Q13601 equivalent -hsa:11104 up:A8K7S5 equivalent -hsa:11104 up:O75449 equivalent -hsa:11105 up:Q9NQW5 equivalent -hsa:11107 up:Q9NQX1 equivalent -hsa:11108 up:B3KPI0 equivalent -hsa:11108 up:Q9UKN5 equivalent -hsa:1111 up:B4DT73 equivalent -hsa:1111 up:O14757 equivalent -hsa:11112 up:A0A024RA75 equivalent -hsa:11112 up:P31937 equivalent -hsa:11113 up:O14578 equivalent -hsa:11116 up:O95684 equivalent -hsa:11117 up:Q9Y6C2 equivalent -hsa:11118 up:P78410 equivalent -hsa:111188157 up:P0DP58 equivalent -hsa:11119 up:O00481 equivalent -hsa:1112 up:O00409 equivalent -hsa:11120 up:Q7KYR7 equivalent -hsa:11122 up:O14522 equivalent -hsa:11123 up:Q9UKA8 equivalent -hsa:11124 up:Q9UNN5 equivalent -hsa:11126 up:O95971 equivalent -hsa:11126 up:Q6FH89 equivalent -hsa:11127 up:Q05CT3 equivalent -hsa:11127 up:Q9Y496 equivalent -hsa:11128 up:O14802 equivalent -hsa:11129 up:Q8N2M8 equivalent -hsa:1113 up:P10645 equivalent -hsa:1113 up:Q86T07 equivalent -hsa:11130 up:O95229 equivalent -hsa:11131 up:Q9UMQ6 equivalent -hsa:11132 up:Q9HC96 equivalent -hsa:11133 up:A0A384NLB4 equivalent -hsa:11133 up:Q9Y664 equivalent -hsa:11135 up:Q00587 equivalent -hsa:11136 up:P82251 equivalent -hsa:11137 up:Q13610 equivalent -hsa:11138 up:O95759 equivalent -hsa:1114 up:P05060 equivalent -hsa:11140 up:Q16543 equivalent -hsa:11141 up:Q9NZN1 equivalent -hsa:11141 up:X5DNQ7 equivalent -hsa:11142 up:Q549H9 equivalent -hsa:11142 up:Q9Y2B9 equivalent -hsa:11143 up:O95251 equivalent -hsa:11144 up:Q14565 equivalent -hsa:11145 up:P53816 equivalent -hsa:11146 up:Q92990 equivalent -hsa:11148 up:Q9UM44 equivalent -hsa:11149 up:Q8NE79 equivalent -hsa:11151 up:P31146 equivalent -hsa:11152 up:Q9Y484 equivalent -hsa:11153 up:Q9BVA6 equivalent -hsa:11154 up:Q9Y587 equivalent -hsa:11155 up:O75112 equivalent -hsa:11156 up:O75365 equivalent -hsa:11157 up:P62312 equivalent -hsa:11158 up:A0A0S2SW46 equivalent -hsa:11158 up:Q9UNT1 equivalent -hsa:11159 up:Q9UBK7 equivalent -hsa:1116 up:P36222 equivalent -hsa:11160 up:A0A384ME54 equivalent -hsa:11160 up:O94905 equivalent -hsa:11161 up:Q6FII3 equivalent -hsa:11161 up:Q86TW5 equivalent -hsa:11161 up:Q9UKR5 equivalent -hsa:11162 up:P53370 equivalent -hsa:11163 up:Q9NZJ9 equivalent -hsa:11164 up:Q9UKK9 equivalent -hsa:11165 up:O95989 equivalent -hsa:11166 up:Q9Y651 equivalent -hsa:11167 up:Q12841 equivalent -hsa:11168 up:O75475 equivalent -hsa:11169 up:O75717 equivalent -hsa:1117 up:Q15782 equivalent -hsa:11170 up:O95990 equivalent -hsa:11170 up:Q6IAM1 equivalent -hsa:11171 up:Q9Y3F4 equivalent -hsa:11172 up:Q9Y581 equivalent -hsa:11173 up:Q9UFZ4 equivalent -hsa:11173 up:Q9UKP4 equivalent -hsa:11174 up:Q5IR90 equivalent -hsa:11174 up:Q9UKP5 equivalent -hsa:11176 up:Q9UIF9 equivalent -hsa:11177 up:Q9NRL2 equivalent -hsa:11178 up:Q9Y250 equivalent -hsa:11179 up:Q9NRM2 equivalent -hsa:1118 up:Q13231 equivalent -hsa:11180 up:A0A087X295 equivalent -hsa:11180 up:B3KRR8 equivalent -hsa:11180 up:Q9H9M3 equivalent -hsa:11180 up:Q9NNW5 equivalent -hsa:11181 up:O43280 equivalent -hsa:11182 up:Q9UGQ3 equivalent -hsa:11183 up:B3KWC4 equivalent -hsa:11183 up:Q9Y4K4 equivalent -hsa:11184 up:Q92918 equivalent -hsa:11185 up:O95050 equivalent -hsa:11186 up:Q9NS23 equivalent -hsa:11187 up:Q9Y446 equivalent -hsa:11188 up:Q9Y2I1 equivalent -hsa:11189 up:Q59G45 reverse -hsa:11189 up:Q5SZQ8 equivalent -hsa:1119 up:P35790 equivalent -hsa:11190 up:Q9BV73 equivalent -hsa:11193 up:O75554 equivalent -hsa:11194 up:Q9NUT2 equivalent -hsa:11196 up:Q9Y6Y8 equivalent -hsa:11197 up:Q9Y5W5 equivalent -hsa:11198 up:Q9Y5B9 equivalent -hsa:11199 up:Q9UJ72 equivalent -hsa:112 up:O43306 equivalent -hsa:1120 up:Q9Y259 equivalent -hsa:11200 up:O96017 equivalent -hsa:11201 up:Q9UNA4 equivalent -hsa:11202 up:O60259 equivalent -hsa:1121 up:A8K545 equivalent -hsa:1121 up:P24386 equivalent -hsa:11211 up:Q6NSL8 equivalent -hsa:11211 up:Q9ULW2 equivalent -hsa:11212 up:O94903 equivalent -hsa:11213 up:Q9Y616 equivalent -hsa:11214 up:Q12802 equivalent -hsa:11215 up:Q9UKA4 equivalent -hsa:11216 up:A0A0S2Z4Z7 equivalent -hsa:11216 up:O43572 equivalent -hsa:11218 up:Q9H4N4 equivalent -hsa:11218 up:Q9UHI6 equivalent -hsa:11219 up:Q9BQ50 equivalent -hsa:1122 up:P26374 equivalent -hsa:11221 up:Q9Y6W6 equivalent -hsa:11222 up:P09001 equivalent -hsa:11224 up:P42766 equivalent -hsa:11226 up:Q8NCL4 equivalent -hsa:11227 up:Q7Z7M9 equivalent -hsa:11228 up:A8K8G8 equivalent -hsa:11228 up:Q8NHQ8 equivalent -hsa:1123 up:P15882 equivalent -hsa:11230 up:O60831 equivalent -hsa:11231 up:A0A0S2Z5M1 equivalent -hsa:11231 up:Q9UGP8 equivalent -hsa:11232 up:E5KS15 equivalent -hsa:11232 up:Q9UHN1 equivalent -hsa:11234 up:Q9UPZ3 equivalent -hsa:11235 up:Q9BUL8 equivalent -hsa:11236 up:Q8WU17 equivalent -hsa:11237 up:Q9Y225 equivalent -hsa:11238 up:Q9Y2D0 equivalent -hsa:112398 up:Q96KS0 equivalent -hsa:112399 up:Q9H6Z9 equivalent -hsa:1124 up:A0A2X0TVW3 equivalent -hsa:1124 up:P52757 equivalent -hsa:11240 up:Q9Y2J8 equivalent -hsa:11243 up:Q6P1K2 equivalent -hsa:11244 up:Q9UKY1 equivalent -hsa:11245 up:Q14439 equivalent -hsa:112464 up:Q969G5 equivalent -hsa:11247 up:O95158 equivalent -hsa:112476 up:Q7Z6L0 equivalent -hsa:112479 up:A8K979 equivalent -hsa:11248 up:O95157 equivalent -hsa:112483 up:Q96F10 equivalent -hsa:112487 up:Q96FN9 equivalent -hsa:11249 up:O95156 equivalent -hsa:112495 up:Q969F1 equivalent -hsa:11250 up:B5B0C1 equivalent -hsa:11250 up:Q9Y5Y3 equivalent -hsa:11251 up:Q9Y5Y4 equivalent -hsa:11252 up:Q9UNF0 equivalent -hsa:11253 up:Q9UKM7 equivalent -hsa:11254 up:B2R8J1 equivalent -hsa:11254 up:Q9UN76 equivalent -hsa:11255 up:Q9Y5N1 equivalent -hsa:112574 up:Q96RF0 equivalent -hsa:11258 up:O75935 equivalent -hsa:11259 up:Q4L180 equivalent -hsa:11260 up:O43592 equivalent -hsa:112609 up:Q96G30 equivalent -hsa:11261 up:Q99653 equivalent -hsa:112611 up:B2R7R2 equivalent -hsa:112611 up:Q9UIY3 equivalent -hsa:112616 up:Q96FZ5 equivalent -hsa:11262 up:B4DVW8 equivalent -hsa:11262 up:Q13342 equivalent -hsa:11262 up:Q8IWJ1 equivalent -hsa:11264 up:Q9Y6I8 equivalent -hsa:11266 up:Q9UNI6 equivalent -hsa:11267 up:Q96H20 equivalent -hsa:11269 up:A0A0U4B4U6 equivalent -hsa:11269 up:Q9UMR2 equivalent -hsa:11270 up:A0A1U9X845 equivalent -hsa:11270 up:B3KQU6 equivalent -hsa:11270 up:Q8IXM6 equivalent -hsa:112703 up:Q6IPT2 equivalent -hsa:112714 up:Q6PEY2 equivalent -hsa:11272 up:Q16378 equivalent -hsa:112724 up:B3KVA3 equivalent -hsa:112724 up:Q8NBN7 equivalent -hsa:11273 up:Q8WWM7 equivalent -hsa:11274 up:Q9UMW8 equivalent -hsa:112744 up:Q96PD4 equivalent -hsa:11275 up:O95198 equivalent -hsa:112752 up:Q96FT9 equivalent -hsa:112755 up:P61266 equivalent -hsa:11276 up:Q9UMZ2 equivalent -hsa:11277 up:Q9NSU2 equivalent -hsa:112770 up:Q8WWB7 equivalent -hsa:11278 up:Q8WWI3 equivalent -hsa:11278 up:Q9Y4X4 equivalent -hsa:11279 up:O95600 equivalent -hsa:1128 up:P11229 equivalent -hsa:1128 up:Q53XZ3 equivalent -hsa:11280 up:Q9UI33 equivalent -hsa:112802 up:Q3SY84 equivalent -hsa:11281 up:P78424 equivalent -hsa:112817 up:Q86XE5 equivalent -hsa:11282 up:Q9UQ53 equivalent -hsa:11283 up:P98187 equivalent -hsa:11284 up:Q96T60 equivalent -hsa:112840 up:Q96FK6 equivalent -hsa:112849 up:Q96EM0 equivalent -hsa:11285 up:Q9UBV7 equivalent -hsa:112858 up:Q96S44 equivalent -hsa:112869 up:Q96ES7 equivalent -hsa:112885 up:A0A0S2Z6R3 equivalent -hsa:112885 up:Q96EK2 equivalent -hsa:1129 up:A4D1Q0 equivalent -hsa:1129 up:P08172 equivalent -hsa:1129 up:Q6SL56 equivalent -hsa:1129 up:Q86SJ1 equivalent -hsa:112936 up:Q4G0F5 equivalent -hsa:112937 up:Q8NCI6 equivalent -hsa:112939 up:Q96RE7 equivalent -hsa:112942 up:Q96G28 equivalent -hsa:112950 up:Q96G25 equivalent -hsa:112970 up:Q96EK9 equivalent -hsa:113 up:P51828 equivalent -hsa:113 up:Q86YI0 equivalent -hsa:1130 up:Q99698 equivalent -hsa:113000 up:Q9UJJ7 equivalent -hsa:113026 up:Q8N3E9 equivalent -hsa:11309 up:O94956 equivalent -hsa:113091 up:Q96A98 equivalent -hsa:1131 up:P20309 equivalent -hsa:11311 up:Q9NRW7 equivalent -hsa:113115 up:Q6P444 equivalent -hsa:11313 up:A0A140VJC9 equivalent -hsa:11313 up:O95372 equivalent -hsa:113130 up:Q96FF9 equivalent -hsa:11314 up:Q9UGN4 equivalent -hsa:113146 up:Q8IVF2 equivalent -hsa:11315 up:Q99497 equivalent -hsa:11315 up:V9HWC2 equivalent -hsa:11316 up:O14579 equivalent -hsa:11317 up:Q9UBG7 equivalent -hsa:113174 up:G1UCX3 equivalent -hsa:113174 up:Q96ER3 equivalent -hsa:113177 up:Q1ZYL8 equivalent -hsa:113178 up:Q969E2 equivalent -hsa:113179 up:Q96EY9 equivalent -hsa:11318 up:O15218 equivalent -hsa:113189 up:Q8NCH0 equivalent -hsa:11319 up:O95905 equivalent -hsa:1132 up:P08173 equivalent -hsa:11320 up:Q9UM21 equivalent -hsa:113201 up:Q6P4E1 equivalent -hsa:11321 up:Q53RZ9 equivalent -hsa:11321 up:Q9HCN4 equivalent -hsa:11322 up:Q7Z403 equivalent -hsa:113220 up:Q96FN5 equivalent -hsa:113230 up:Q96FF7 equivalent -hsa:113235 up:Q96NT5 equivalent -hsa:113246 up:Q99622 equivalent -hsa:11325 up:Q86XP3 equivalent -hsa:113251 up:Q71RC2 equivalent -hsa:11326 up:Q9Y279 equivalent -hsa:113263 up:Q86VQ1 equivalent -hsa:113277 up:Q96A25 equivalent -hsa:113278 up:Q9NQ40 equivalent -hsa:11328 up:A7YQ73 equivalent -hsa:11328 up:O95302 equivalent -hsa:11329 up:Q15208 equivalent -hsa:1133 up:P08912 equivalent -hsa:11330 up:Q99895 equivalent -hsa:11331 up:Q99623 equivalent -hsa:11332 up:O00154 equivalent -hsa:11333 up:Q13442 equivalent -hsa:11334 up:O75896 equivalent -hsa:11335 up:A4D177 equivalent -hsa:11335 up:Q13185 equivalent -hsa:11336 up:O60645 equivalent -hsa:11336 up:Q69YP2 equivalent -hsa:11337 up:O95166 equivalent -hsa:11337 up:Q6IAW1 equivalent -hsa:11338 up:P26368 equivalent -hsa:11339 up:O43482 equivalent -hsa:1134 up:P02708 equivalent -hsa:1134 up:Q53SH4 equivalent -hsa:11340 up:Q96B26 equivalent -hsa:113402 up:Q8WV19 equivalent -hsa:11341 up:O75711 equivalent -hsa:11341 up:Q6FGG5 equivalent -hsa:113419 up:Q6UWH6 equivalent -hsa:11342 up:O43567 equivalent -hsa:11343 up:Q99685 equivalent -hsa:11344 up:Q6IBS0 equivalent -hsa:113444 up:L0R6D7 equivalent -hsa:113444 up:Q96EX1 equivalent -hsa:11345 up:P60520 equivalent -hsa:113451 up:Q96A70 equivalent -hsa:113452 up:Q969K7 equivalent -hsa:113457 up:P0DPH8 equivalent -hsa:113457 up:Q1ZYQ1 equivalent -hsa:11346 up:Q8N3V7 equivalent -hsa:1135 up:Q15822 equivalent -hsa:113510 up:Q8TDG4 equivalent -hsa:113540 up:Q8IZ96 equivalent -hsa:1136 up:P32297 equivalent -hsa:113612 up:Q7Z449 equivalent -hsa:113622 up:Q8NDY3 equivalent -hsa:113655 up:Q96ES6 equivalent -hsa:113675 up:Q96GA7 equivalent -hsa:1137 up:B4DK78 equivalent -hsa:1137 up:P43681 equivalent -hsa:1137 up:Q59FV0 equivalent -hsa:113730 up:Q96G42 equivalent -hsa:113746 up:Q96PU9 equivalent -hsa:113791 up:Q96FE7 equivalent -hsa:1138 up:P30532 equivalent -hsa:1138 up:Q6EWN4 equivalent -hsa:113802 up:Q5T8I9 equivalent -hsa:113828 up:Q8NEG4 equivalent -hsa:113829 up:Q96G79 equivalent -hsa:113835 up:Q9Y2Q1 equivalent -hsa:113878 up:Q86UW9 equivalent -hsa:1139 up:P36544 equivalent -hsa:114 up:A0A0K0K1K3 equivalent -hsa:114 up:P40145 equivalent -hsa:114 up:Q4F7X0 equivalent -hsa:1140 up:P11230 equivalent -hsa:114026 up:Q96PE6 equivalent -hsa:114034 up:Q96GM8 equivalent -hsa:114049 up:O43709 equivalent -hsa:114088 up:Q9C026 equivalent -hsa:1141 up:P17787 equivalent -hsa:1141 up:Q5SXY3 equivalent -hsa:114112 up:Q86VQ6 equivalent -hsa:114131 up:Q969E3 equivalent -hsa:114132 up:Q96RL6 equivalent -hsa:114134 up:Q96QE2 equivalent -hsa:1142 up:Q05901 equivalent -hsa:114294 up:P83111 equivalent -hsa:1143 up:P30926 equivalent -hsa:114327 up:B2CKC5 equivalent -hsa:114327 up:Q5JVL4 equivalent -hsa:114335 up:A6NKQ9 equivalent -hsa:114336 up:Q6NT52 equivalent -hsa:1144 up:Q07001 equivalent -hsa:114483834 up:A0A090N7Y2 equivalent -hsa:114483834 up:Q9UG63 equivalent -hsa:1145 up:Q04844 equivalent -hsa:114548 up:Q96P20 equivalent -hsa:114569 up:Q969L2 equivalent -hsa:114571 up:Q8IVM8 equivalent -hsa:1146 up:A0A6F7YAP6 equivalent -hsa:1146 up:P07510 equivalent -hsa:114609 up:P58753 equivalent -hsa:114625 up:A0A1C9HIH9 equivalent -hsa:114625 up:Q96PL5 equivalent -hsa:114659 up:Q96QE4 equivalent -hsa:1147 up:O15111 equivalent -hsa:114757 up:A0A1K0FUB6 equivalent -hsa:114757 up:Q8WWM9 equivalent -hsa:114769 up:Q5EG05 equivalent -hsa:114770 up:Q96PD5 equivalent -hsa:114771 up:Q96LB9 equivalent -hsa:114780 up:Q7Z442 equivalent -hsa:114781 up:Q96Q07 equivalent -hsa:114784 up:Q7Z408 equivalent -hsa:114785 up:Q6P0P0 equivalent -hsa:114785 up:Q96DN6 equivalent -hsa:114786 up:Q5GH76 equivalent -hsa:114787 up:Q7Z2K8 equivalent -hsa:114788 up:Q7Z407 equivalent -hsa:114789 up:Q6KCM7 equivalent -hsa:114790 up:Q8N1F8 equivalent -hsa:114791 up:Q96RT8 equivalent -hsa:114792 up:Q96NJ5 equivalent -hsa:114793 up:Q96PY5 equivalent -hsa:114794 up:Q5R3F8 equivalent -hsa:114795 up:Q14DG7 equivalent -hsa:114798 up:Q96PX8 equivalent -hsa:114799 up:Q5FWF5 equivalent -hsa:114800 up:Q96PX6 equivalent -hsa:114801 up:A8K2A1 equivalent -hsa:114801 up:Q86VY9 equivalent -hsa:114803 up:Q5VVJ2 equivalent -hsa:114804 up:Q96PX1 equivalent -hsa:114805 up:Q8IUC8 equivalent -hsa:114815 up:B3KWN9 equivalent -hsa:114815 up:Q8WY21 equivalent -hsa:114818 up:Q96CT2 equivalent -hsa:114821 up:A0A1U9X8W9 equivalent -hsa:114821 up:Q6R2W3 equivalent -hsa:114822 up:Q8TCX5 equivalent -hsa:114823 up:Q96PV6 equivalent -hsa:114824 up:Q96PV4 equivalent -hsa:114825 up:Q96N64 equivalent -hsa:114826 up:Q8IYR2 equivalent -hsa:114827 up:B1AJZ9 equivalent -hsa:114836 up:Q96DU3 equivalent -hsa:114876 up:B0YJ56 equivalent -hsa:114876 up:B3KU11 equivalent -hsa:114876 up:Q9BXW6 equivalent -hsa:114879 up:Q9H0X9 equivalent -hsa:114880 up:Q9BZF3 equivalent -hsa:114881 up:Q8WXP9 equivalent -hsa:114881 up:Q9BZF2 equivalent -hsa:114882 up:Q9BZF1 equivalent -hsa:114883 up:Q96SU4 equivalent -hsa:114884 up:Q9BXB5 equivalent -hsa:114884 up:Q9NX98 equivalent -hsa:114885 up:A0A140VJQ6 equivalent -hsa:114885 up:Q9BXB4 equivalent -hsa:114897 up:Q9BXJ1 equivalent -hsa:114898 up:A0A3B0INC0 equivalent -hsa:114898 up:A0A499FIM1 equivalent -hsa:114898 up:Q9BXJ5 equivalent -hsa:114899 up:Q9BXJ4 equivalent -hsa:1149 up:O60543 equivalent -hsa:1149 up:Q8N5P9 equivalent -hsa:114900 up:A0A3B0J0L9 equivalent -hsa:114900 up:Q9BXJ3 equivalent -hsa:114902 up:A0A024R3F8 equivalent -hsa:114902 up:Q9BXJ0 equivalent -hsa:114904 up:Q9BXI9 equivalent -hsa:114905 up:Q9BXJ2 equivalent -hsa:114907 up:Q969P5 equivalent -hsa:114908 up:Q8N131 equivalent -hsa:114926 up:Q96E16 equivalent -hsa:114928 up:B3KW05 equivalent -hsa:114928 up:Q96D09 equivalent -hsa:114932 up:A0A075DDR2 equivalent -hsa:114932 up:Q96HT8 equivalent -hsa:114960 up:Q96PP4 equivalent -hsa:114971 up:Q8WUK0 equivalent -hsa:114984 up:Q96CP2 equivalent -hsa:114987 up:Q8NA23 equivalent -hsa:114990 up:Q6EMK4 equivalent -hsa:114991 up:Q5T7W0 equivalent -hsa:115 up:O60503 equivalent -hsa:115004 up:Q8N884 equivalent -hsa:115019 up:Q7LBE3 equivalent -hsa:115024 up:Q969T7 equivalent -hsa:115098 up:Q96CT7 equivalent -hsa:115106 up:Q96CS2 equivalent -hsa:115111 up:Q8TE54 equivalent -hsa:115123 up:Q86UD3 equivalent -hsa:115196 up:B3KNM4 equivalent -hsa:115196 up:Q86TJ5 equivalent -hsa:1152 up:P12277 equivalent -hsa:1152 up:V9HWH2 equivalent -hsa:115201 up:Q8WYN0 equivalent -hsa:115207 up:A0A140VJM4 equivalent -hsa:115207 up:Q96CX2 equivalent -hsa:115209 up:Q96E52 equivalent -hsa:115265 up:Q96D03 equivalent -hsa:115273 up:Q8N4Z0 equivalent -hsa:115286 up:Q70HW3 equivalent -hsa:115290 up:Q96EF6 equivalent -hsa:115294 up:Q96MG8 equivalent -hsa:1153 up:Q14011 equivalent -hsa:1153 up:Q53XX5 equivalent -hsa:115330 up:A4D2Q3 equivalent -hsa:115330 up:B4DTD6 equivalent -hsa:115330 up:Q96CH1 equivalent -hsa:115350 up:Q96LA6 equivalent -hsa:115352 up:Q96P31 equivalent -hsa:115353 up:Q9Y546 equivalent -hsa:115361 up:Q96PP9 equivalent -hsa:115362 up:Q96PP8 equivalent -hsa:115399 up:Q8IYG6 equivalent -hsa:1154 up:Q9NSE2 equivalent -hsa:115416 up:Q96EH3 equivalent -hsa:115426 up:Q96PU4 equivalent -hsa:1155 up:Q99426 equivalent -hsa:115509 up:Q96CS4 equivalent -hsa:115548 up:Q0JRZ9 equivalent -hsa:115557 up:Q86VW2 equivalent -hsa:115560 up:Q96CX3 equivalent -hsa:115572 up:Q96A09 equivalent -hsa:115584 up:B7Z8N3 equivalent -hsa:115584 up:Q8WWX8 equivalent -hsa:115650 up:Q5H8V1 equivalent -hsa:115650 up:Q96RJ3 equivalent -hsa:115653 up:A0A8I5QEB2 equivalent -hsa:115677 up:Q8IVI9 equivalent -hsa:115701 up:Q86TB3 equivalent -hsa:115703 up:A1A5D2 equivalent -hsa:115703 up:O14559 equivalent -hsa:115704 up:A0A384MR55 equivalent -hsa:115704 up:Q96CN4 equivalent -hsa:115708 up:Q96FX7 equivalent -hsa:115727 up:Q8TDF6 equivalent -hsa:115749 up:Q8IXR9 equivalent -hsa:115752 up:Q8TF46 equivalent -hsa:115761 up:Q969Q4 equivalent -hsa:115795 up:Q96PS1 equivalent -hsa:1158 up:B2R892 equivalent -hsa:1158 up:P06732 equivalent -hsa:115811 up:Q96DY2 equivalent -hsa:115817 up:Q96LJ7 equivalent -hsa:115825 up:Q96P53 equivalent -hsa:115827 up:Q96E17 equivalent -hsa:115861 up:Q96CM4 equivalent -hsa:1159 up:P12532 equivalent -hsa:115908 up:Q96CG8 equivalent -hsa:115939 up:Q9UJK0 equivalent -hsa:115948 up:A5D8V7 equivalent -hsa:115948 up:B3KPH7 equivalent -hsa:115950 up:Q96CK0 equivalent -hsa:115992 up:Q96A37 equivalent -hsa:116 up:P18509 equivalent -hsa:1160 up:P17540 equivalent -hsa:116028 up:Q96E14 equivalent -hsa:116039 up:Q8N2R0 equivalent -hsa:116064 up:Q96CX6 equivalent -hsa:116068 up:A8K613 equivalent -hsa:116068 up:Q7Z3D4 equivalent -hsa:116071 up:Q8N1L9 equivalent -hsa:116085 up:Q96S37 equivalent -hsa:116092 up:Q9H147 equivalent -hsa:1161 up:Q13216 equivalent -hsa:116113 up:Q8IVH2 equivalent -hsa:116115 up:H9ZYJ3 equivalent -hsa:116115 up:Q8TF50 equivalent -hsa:116135 up:Q96PB8 equivalent -hsa:116138 up:Q9BQ90 equivalent -hsa:116143 up:A0A140VK67 equivalent -hsa:116143 up:Q96MX6 equivalent -hsa:116150 up:Q96E22 equivalent -hsa:116151 up:Q96KR6 equivalent -hsa:116154 up:Q96KR7 equivalent -hsa:116159 up:Q96J86 equivalent -hsa:116173 up:Q96DZ9 equivalent -hsa:116179 up:Q96PF1 equivalent -hsa:116211 up:Q96DZ7 equivalent -hsa:116224 up:B3KX07 equivalent -hsa:116224 up:Q96E09 equivalent -hsa:116225 up:Q96E35 equivalent -hsa:116228 up:B3KM21 equivalent -hsa:116228 up:Q5RI15 equivalent -hsa:116236 up:Q6UXT9 equivalent -hsa:116238 up:Q96CP7 equivalent -hsa:116254 up:Q9NU53 equivalent -hsa:116255 up:Q96PD6 equivalent -hsa:116285 up:B2RAP4 equivalent -hsa:116285 up:Q08AH1 equivalent -hsa:1163 up:P61024 equivalent -hsa:1163 up:Q5T178 equivalent -hsa:116328 up:Q49A92 equivalent -hsa:116337 up:Q96QZ0 equivalent -hsa:116362 up:Q96R05 equivalent -hsa:116369 up:Q96RN1 equivalent -hsa:116372 up:Q8N2G4 equivalent -hsa:116379 up:Q969J5 equivalent -hsa:1164 up:P33552 equivalent -hsa:116412 up:Q96EG3 equivalent -hsa:116441 up:Q96CE8 equivalent -hsa:116442 up:Q96DA2 equivalent -hsa:116443 up:Q8TCU5 equivalent -hsa:116444 up:O60391 equivalent -hsa:116444 up:Q5F0I5 equivalent -hsa:116447 up:E5KMK7 equivalent -hsa:116447 up:Q969P6 equivalent -hsa:116448 up:Q8TAK6 equivalent -hsa:116449 up:Q7Z7G1 equivalent -hsa:116461 up:B1ALV0 equivalent -hsa:116461 up:Q8WW01 equivalent -hsa:116496 up:Q9BZQ8 equivalent -hsa:116511 up:P35410 equivalent -hsa:116511 up:Q502V9 equivalent -hsa:116511 up:W8W3J1 equivalent -hsa:116512 up:Q8TDS7 equivalent -hsa:116519 up:A0A0B4RUS7 equivalent -hsa:116519 up:Q6Q788 equivalent -hsa:116534 up:Q86SM8 equivalent -hsa:116534 up:W4VSQ4 equivalent -hsa:116535 up:Q96AM1 equivalent -hsa:116540 up:Q96EL3 equivalent -hsa:116541 up:Q6P161 equivalent -hsa:116729 up:Q86WC6 equivalent -hsa:116832 up:Q96EH5 equivalent -hsa:116835 up:Q96MM6 equivalent -hsa:116840 up:Q8N137 equivalent -hsa:116841 up:Q5SQN1 equivalent -hsa:116842 up:Q969E1 equivalent -hsa:116843 up:Q6NT16 equivalent -hsa:116844 up:P02750 equivalent -hsa:116844 up:Q68CK4 equivalent -hsa:116931 up:B3KXY0 equivalent -hsa:116931 up:Q86YW9 equivalent -hsa:116966 up:Q8IZU2 equivalent -hsa:116969 up:Q96L15 equivalent -hsa:116983 up:Q8WTZ1 equivalent -hsa:116983 up:Q96P50 equivalent -hsa:116984 up:A7E2A5 equivalent -hsa:116984 up:Q8WZ64 equivalent -hsa:116985 up:Q96P48 equivalent -hsa:116986 up:F8VVT9 equivalent -hsa:116986 up:Q99490 equivalent -hsa:116987 up:B2RZG9 equivalent -hsa:116987 up:Q9UPQ3 equivalent -hsa:116988 up:Q86XV5 equivalent -hsa:116988 up:Q96P47 equivalent -hsa:117 up:A0A090N8F8 equivalent -hsa:117 up:P41586 equivalent -hsa:117143 up:Q96BN2 equivalent -hsa:117144 up:Q8NEC5 equivalent -hsa:117145 up:A8K0C9 equivalent -hsa:117145 up:Q5T1C6 equivalent -hsa:117154 up:A8K3I1 equivalent -hsa:117154 up:Q96NX9 equivalent -hsa:117155 up:Q96P56 equivalent -hsa:117156 up:Q2L6B3 equivalent -hsa:117156 up:Q96PL1 equivalent -hsa:117157 up:O14796 equivalent -hsa:117159 up:P81605 equivalent -hsa:117166 up:Q96NZ8 equivalent -hsa:117177 up:Q96QF0 equivalent -hsa:117178 up:Q9Y2D8 equivalent -hsa:117194 up:Q96LB1 equivalent -hsa:117195 up:Q96LB0 equivalent -hsa:117196 up:Q96LA9 equivalent -hsa:117245 up:Q8NE88 equivalent -hsa:117245 up:Q96KN8 equivalent -hsa:117246 up:Q8IY81 equivalent -hsa:117247 up:Q8TF71 equivalent -hsa:117248 up:Q8N3T1 equivalent -hsa:117283 up:A8K1M0 equivalent -hsa:117283 up:Q5TAQ4 equivalent -hsa:117283 up:Q96PC2 equivalent -hsa:117285 up:A0A384MTK2 equivalent -hsa:117285 up:Q96PH6 equivalent -hsa:117286 up:Q96Q77 equivalent -hsa:117289 up:Q8N103 equivalent -hsa:1173 up:Q96CW1 equivalent -hsa:1174 up:P61966 equivalent -hsa:1175 up:P53680 equivalent -hsa:117531 up:Q8TDI8 equivalent -hsa:117532 up:Q8TDI7 equivalent -hsa:117579 up:B2RU28 equivalent -hsa:117579 up:Q8WXF3 equivalent -hsa:117581 up:Q8WVJ9 equivalent -hsa:117583 up:Q8TEW8 equivalent -hsa:117584 up:Q8WZ73 equivalent -hsa:1176 up:Q92572 equivalent -hsa:117608 up:Q96LW1 equivalent -hsa:1178 up:Q05315 equivalent -hsa:117854 up:Q9C030 equivalent -hsa:1179 up:A8K7I4 equivalent -hsa:118 up:P35611 equivalent -hsa:1180 up:P35523 equivalent -hsa:1181 up:P51788 equivalent -hsa:118142757 up:P43080 equivalent -hsa:1182 up:P51790 equivalent -hsa:1183 up:P51793 equivalent -hsa:1184 up:P51795 equivalent -hsa:118424 up:Q8N2K1 equivalent -hsa:118426 up:Q969J3 equivalent -hsa:118427 up:B3KTG9 equivalent -hsa:118427 up:Q6IMJ0 equivalent -hsa:118427 up:Q96PB7 equivalent -hsa:118429 up:P58335 equivalent -hsa:118430 up:Q96DR8 equivalent -hsa:118442 up:Q8TAM0 equivalent -hsa:118442 up:Q9BZJ7 equivalent -hsa:118460 up:Q5RKV6 equivalent -hsa:118461 up:Q711Q0 equivalent -hsa:118471 up:Q96NZ9 equivalent -hsa:118472 up:Q8NB15 equivalent -hsa:118487 up:Q96BP2 equivalent -hsa:118490 up:Q4VC12 equivalent -hsa:1185 up:P51797 equivalent -hsa:1186 up:P51798 equivalent -hsa:118611 up:Q96M02 equivalent -hsa:118663 up:Q32M84 equivalent -hsa:118670 up:A6NFZ4 equivalent -hsa:118672 up:Q8IV42 equivalent -hsa:1187 up:P51800 equivalent -hsa:118738 up:Q96MN9 equivalent -hsa:118788 up:Q6ZUJ8 equivalent -hsa:118788 up:Q86YV3 equivalent -hsa:1188 up:A8K8H0 equivalent -hsa:1188 up:P51801 equivalent -hsa:118812 up:A6XB87 equivalent -hsa:118812 up:Q8NDC4 equivalent -hsa:118813 up:Q5T4F4 equivalent -hsa:118856 up:Q8N119 equivalent -hsa:118881 up:Q86VU5 equivalent -hsa:118924 up:Q70Z53 equivalent -hsa:118932 up:Q5VYY1 equivalent -hsa:118980 up:Q96NB2 equivalent -hsa:118987 up:Q8NEN9 equivalent -hsa:119 up:P35612 equivalent -hsa:119 up:Q05DK5 equivalent -hsa:119016 up:Q96P64 equivalent -hsa:119032 up:A0A0B4J1R7 equivalent -hsa:119032 up:Q96B45 equivalent -hsa:1191 up:P10909 equivalent -hsa:119180 up:A0A080YUZ9 equivalent -hsa:119180 up:Q7Z4W2 equivalent -hsa:1192 up:O00299 equivalent -hsa:1192 up:Q5SRT3 equivalent -hsa:1193 up:O15247 equivalent -hsa:119391 up:Q9H4Y5 equivalent -hsa:119392 up:Q86XK3 equivalent -hsa:119395 up:Q86XJ0 equivalent -hsa:119467 up:Q8NCR9 equivalent -hsa:1195 up:P49759 equivalent -hsa:119504 up:C5H3H2 equivalent -hsa:119504 up:Q96DE5 equivalent -hsa:119548 up:Q17RR3 equivalent -hsa:119559 up:Q6P4A7 equivalent -hsa:119587 up:Q8N436 equivalent -hsa:1196 up:A8K7I0 equivalent -hsa:1196 up:P49760 equivalent -hsa:119678 up:Q8NGJ4 equivalent -hsa:119679 up:Q8NH60 equivalent -hsa:119682 up:A0A126GVJ8 equivalent -hsa:119682 up:Q8NGJ5 equivalent -hsa:119687 up:Q8NH64 equivalent -hsa:119692 up:A0A126GWN3 equivalent -hsa:119692 up:Q8NGJ8 equivalent -hsa:119694 up:Q8NH61 equivalent -hsa:119695 up:Q8NGF1 equivalent -hsa:119710 up:Q86VG3 equivalent -hsa:119749 up:A6NHA9 equivalent -hsa:119764 up:A0A126GVL5 equivalent -hsa:119764 up:Q8NGF9 equivalent -hsa:119765 up:A0A126GVH6 equivalent -hsa:119765 up:Q8NGF8 equivalent -hsa:119772 up:Q8NGK5 equivalent -hsa:119774 up:A0A126GVK8 equivalent -hsa:119774 up:Q8NGK3 equivalent -hsa:1198 up:B3KRI8 equivalent -hsa:1198 up:P49761 equivalent -hsa:12 up:P01011 equivalent -hsa:120 up:Q53FL4 equivalent -hsa:120 up:Q5VU08 equivalent -hsa:120 up:Q9UEY8 equivalent -hsa:1200 up:O14773 equivalent -hsa:120065 up:A0A126GVJ7 equivalent -hsa:120065 up:Q8WZ92 equivalent -hsa:120066 up:A0A126GVE6 equivalent -hsa:120066 up:Q8WZ94 equivalent -hsa:120071 up:Q8N3Y3 equivalent -hsa:1201 up:Q13286 equivalent -hsa:120103 up:Q6YBV0 equivalent -hsa:120114 up:Q8TDW7 equivalent -hsa:120146 up:A6NGJ6 equivalent -hsa:120224 up:Q96B21 equivalent -hsa:120227 up:Q6VVX0 equivalent -hsa:120237 up:A6NMT0 equivalent -hsa:1203 up:O75503 equivalent -hsa:120356739 up:Q96E66 equivalent -hsa:120376 up:A8K830 equivalent -hsa:120379 up:Q8WWB5 equivalent -hsa:120400 up:Q8N323 equivalent -hsa:120406 up:Q96DL1 equivalent -hsa:120425 up:B3KUI3 equivalent -hsa:120425 up:Q86YT9 equivalent -hsa:120526 up:Q6P3W2 equivalent -hsa:120534 up:Q8N8R7 equivalent -hsa:120586 up:Q8N0Y5 equivalent -hsa:1207 up:P54105 equivalent -hsa:120775 up:Q8NGH3 equivalent -hsa:120776 up:A0A126GVN9 equivalent -hsa:120776 up:Q9H210 equivalent -hsa:120787 up:Q6IF63 equivalent -hsa:120793 up:A0A126GWQ5 equivalent -hsa:120793 up:A0A2C9F2M6 equivalent -hsa:120793 up:Q8NGH8 equivalent -hsa:120796 up:A0A126GVB5 equivalent -hsa:120796 up:Q8NGH5 equivalent -hsa:1208 up:P04118 equivalent -hsa:120863 up:Q8N2C3 equivalent -hsa:120892 up:Q17RV3 equivalent -hsa:120892 up:Q5S007 equivalent -hsa:1209 up:A0A0S2Z3H2 equivalent -hsa:1209 up:O96005 equivalent -hsa:120935 up:Q502W7 equivalent -hsa:120939 up:Q4KMG9 equivalent -hsa:121006 up:A6NE01 equivalent -hsa:121053 up:Q8N5I9 equivalent -hsa:1211 up:P09496 equivalent -hsa:121129 up:A0A126GVS5 equivalent -hsa:121129 up:Q8NGE2 equivalent -hsa:121130 up:Q8NGE3 equivalent -hsa:1212 up:P09497 equivalent -hsa:121214 up:Q8NEX9 equivalent -hsa:121227 up:Q6UXM1 equivalent -hsa:121256 up:Q14C87 equivalent -hsa:121260 up:Q8N697 equivalent -hsa:121268 up:Q8TAI7 equivalent -hsa:121273 up:Q6X4T0 equivalent -hsa:121274 up:Q96N77 equivalent -hsa:121275 up:Q8NGE0 equivalent -hsa:121278 up:Q8IWU9 equivalent -hsa:1213 up:Q00610 equivalent -hsa:121340 up:Q8TDD2 equivalent -hsa:121355 up:Q8WW33 equivalent -hsa:121364 up:A0A126GVR3 equivalent -hsa:121364 up:Q8NGE5 equivalent -hsa:121391 up:Q7RTS7 equivalent -hsa:121441 up:A8K1Z3 equivalent -hsa:121441 up:Q8NHV4 equivalent -hsa:121457 up:Q70UQ0 equivalent -hsa:1215 up:P23946 equivalent -hsa:1215 up:Q4FEB3 equivalent -hsa:121504 up:B2R4R0 equivalent -hsa:121504 up:P62805 equivalent -hsa:121506 up:Q96DN0 equivalent -hsa:121512 up:Q96M96 equivalent -hsa:121536 up:Q6ZN18 equivalent -hsa:121549 up:Q6XD76 equivalent -hsa:121551 up:A6QL63 equivalent -hsa:121551 up:B3KVD0 equivalent -hsa:121551 up:B3KXB0 equivalent -hsa:121599 up:Q8N5J4 equivalent -hsa:121601 up:B7Z9Z0 equivalent -hsa:121601 up:Q32M45 equivalent -hsa:121642 up:Q6NS38 equivalent -hsa:121643 up:A6H901 equivalent -hsa:121643 up:Q96NZ1 equivalent -hsa:121665 up:Q8TCT6 equivalent -hsa:121665 up:Q9UG23 equivalent -hsa:121793 up:Q8N6K0 equivalent -hsa:122011 up:Q8N752 equivalent -hsa:122042 up:Q8WXD0 equivalent -hsa:122046 up:Q8N6G2 equivalent -hsa:122060 up:Q7L0J2 equivalent -hsa:122060 up:Q8ND83 equivalent -hsa:122183 up:P86478 equivalent -hsa:122183 up:P86479 equivalent -hsa:122183 up:P86480 equivalent -hsa:122183 up:P86481 equivalent -hsa:122183 up:P86496 equivalent -hsa:122258 up:Q96KW9 equivalent -hsa:122402 up:Q86WA0 equivalent -hsa:122402 up:Q8NDG6 equivalent -hsa:122416 up:Q96BM1 equivalent -hsa:122481 up:Q96M32 equivalent -hsa:122509 up:Q96BM0 equivalent -hsa:122525 up:Q4W4Y0 equivalent -hsa:122553 up:Q86SZ2 equivalent -hsa:122616 up:Q96F83 equivalent -hsa:122618 up:B4DI07 equivalent -hsa:122618 up:B4DJQ6 equivalent -hsa:122618 up:Q96BZ4 equivalent -hsa:122622 up:Q8N142 equivalent -hsa:122651 up:Q5GAN5 equivalent -hsa:122651 up:Q8TAA1 equivalent -hsa:122664 up:P59282 equivalent -hsa:122665 up:Q8TDE3 equivalent -hsa:122704 up:Q86TS9 equivalent -hsa:122706 up:A5LHX3 equivalent -hsa:122706 up:B3KVC3 equivalent -hsa:122740 up:A0A126GVP2 equivalent -hsa:122740 up:Q8NGD5 equivalent -hsa:122742 up:Q8NH43 equivalent -hsa:122748 up:A0A126GVP4 equivalent -hsa:122748 up:Q8NGC7 equivalent -hsa:122769 up:Q6AWA7 equivalent -hsa:122769 up:Q96L50 equivalent -hsa:122773 up:Q8N7A1 equivalent -hsa:122786 up:Q96NE9 equivalent -hsa:122809 up:Q5H9R6 equivalent -hsa:122809 up:Q8WXH5 equivalent -hsa:122830 up:B3KS28 equivalent -hsa:122830 up:Q147X3 equivalent -hsa:122876 up:A0A0F7RPU1 equivalent -hsa:122876 up:Q86YW7 equivalent -hsa:122945 up:Q6NXP6 equivalent -hsa:122953 up:Q8WYK2 equivalent -hsa:122961 up:Q86U28 equivalent -hsa:122970 up:Q8N9L9 equivalent -hsa:123 up:Q6FHZ7 equivalent -hsa:123 up:Q99541 equivalent -hsa:1230 up:P32246 equivalent -hsa:1230 up:Q5U003 equivalent -hsa:123016 up:A0A0C4DGX9 equivalent -hsa:123016 up:Q86U25 equivalent -hsa:123016 up:Q8TAM2 equivalent -hsa:123036 up:Q8N9U0 equivalent -hsa:123041 up:Q8NFF2 equivalent -hsa:123096 up:Q8N8R3 equivalent -hsa:123099 up:Q6QHC5 equivalent -hsa:123103 up:A6NCF5 equivalent -hsa:123103 up:B2RUZ8 equivalent -hsa:123169 up:Q8WVC0 equivalent -hsa:1232 up:P51677 equivalent -hsa:1232 up:Q8TDP5 equivalent -hsa:123207 up:Q8WUR7 equivalent -hsa:123228 up:Q96LD8 equivalent -hsa:123263 up:Q96DP5 equivalent -hsa:123264 up:Q86UW2 equivalent -hsa:123283 up:A2RTX5 equivalent -hsa:1233 up:A0N0Q1 equivalent -hsa:1233 up:P51679 equivalent -hsa:123355 up:Q86X40 equivalent -hsa:1234 up:P51681 equivalent -hsa:1234 up:Q38L21 equivalent -hsa:1235 up:P51684 equivalent -hsa:123591 up:Q2M3C6 equivalent -hsa:1236 up:A0N0Q0 equivalent -hsa:1236 up:P32248 equivalent -hsa:123606 up:Q7RTP0 equivalent -hsa:123624 up:Q96MI9 equivalent -hsa:123688 up:A2RU49 equivalent -hsa:1237 up:P51685 equivalent -hsa:123720 up:Q8TF30 equivalent -hsa:123722 up:A1L4K1 equivalent -hsa:123745 up:Q3MJ16 equivalent -hsa:123775 up:Q6P387 equivalent -hsa:1238 up:O00590 equivalent -hsa:123803 up:Q96AB6 equivalent -hsa:123811 up:Q96NB1 equivalent -hsa:123872 up:A0A140VJN4 equivalent -hsa:123872 up:Q8NEP3 equivalent -hsa:123876 up:Q08AH3 equivalent -hsa:123879 up:Q8IWE4 equivalent -hsa:123904 up:Q496H8 equivalent -hsa:123920 up:Q96MX0 equivalent -hsa:123970 up:Q8WTQ4 equivalent -hsa:124 up:P07327 equivalent -hsa:1240 up:Q99788 equivalent -hsa:124044 up:Q8IUW3 equivalent -hsa:124045 up:Q96N06 equivalent -hsa:124056 up:A8K832 equivalent -hsa:124056 up:Q8NFA2 equivalent -hsa:124093 up:A2IDD5 equivalent -hsa:1241 up:Q15722 equivalent -hsa:124152 up:Q8N0W5 equivalent -hsa:124220 up:G8H6I3 equivalent -hsa:124220 up:Q96DA0 equivalent -hsa:124222 up:Q8N4S7 equivalent -hsa:124245 up:Q86VM9 equivalent -hsa:124274 up:A0A142CHG1 equivalent -hsa:124274 up:Q6DWJ6 equivalent -hsa:124359 up:Q8N8U2 equivalent -hsa:1244 up:Q92887 equivalent -hsa:124401 up:F6WF08 reverse -hsa:124401 up:Q6ZW76 equivalent -hsa:124402 up:Q8TB05 equivalent -hsa:124404 up:Q8IYM1 equivalent -hsa:124411 up:Q7Z2F6 equivalent -hsa:124446 up:A0A024R618 equivalent -hsa:124446 up:Q86XT9 equivalent -hsa:124454 up:Q5JPH6 equivalent -hsa:124460 up:Q7Z614 equivalent -hsa:124491 up:Q8WVE7 equivalent -hsa:124512 up:Q86XA0 equivalent -hsa:124535 up:Q4G112 equivalent -hsa:124538 up:A0A126GWK0 equivalent -hsa:124538 up:P58180 equivalent -hsa:124540 up:Q96DH6 equivalent -hsa:124565 up:Q9HBR0 equivalent -hsa:124583 up:Q8WVQ1 equivalent -hsa:124590 up:B4DL95 reverse -hsa:124590 up:Q495M9 equivalent -hsa:124599 up:A8K4G0 equivalent -hsa:124602 up:Q2TAC6 equivalent -hsa:124626 up:Q6X784 equivalent -hsa:124637 up:Q6P9G0 equivalent -hsa:124641 up:Q8WZ82 equivalent -hsa:124739 up:Q70EL4 equivalent -hsa:124751 up:Q6ZNG9 equivalent -hsa:124773 up:Q86WR6 equivalent -hsa:124783 up:Q96LK8 equivalent -hsa:124790 up:Q96MH2 equivalent -hsa:124801 up:Q3MHD2 equivalent -hsa:124808 up:Q96MW1 equivalent -hsa:124817 up:Q8N815 equivalent -hsa:124842 up:Q6IEE7 equivalent -hsa:124857 up:Q8TEU8 equivalent -hsa:124872 up:Q8NHY0 equivalent -hsa:124903767 up:Q8N6K4 equivalent -hsa:124912 up:A0A080YUZ7 equivalent -hsa:124912 up:Q8IXA5 equivalent -hsa:124923 up:A0A5H1ZRP1 equivalent -hsa:124925 up:Q53EL9 equivalent -hsa:124930 up:B3KS27 equivalent -hsa:124930 up:Q86YJ7 equivalent -hsa:124935 up:Q8N370 equivalent -hsa:124936 up:Q8WUJ1 equivalent -hsa:124944 up:Q8IXM2 equivalent -hsa:124961 up:Q96NJ6 equivalent -hsa:124975 up:Q6P531 equivalent -hsa:124975 up:Q6ZPD7 equivalent -hsa:124976 up:Q8IVW8 equivalent -hsa:124989 up:Q8IY85 equivalent -hsa:124995 up:Q7Z7H8 equivalent -hsa:124997 up:Q24JR4 equivalent -hsa:124997 up:Q562E7 equivalent -hsa:125 up:P00325 equivalent -hsa:125 up:V9HW50 equivalent -hsa:125058 up:Q8TBP0 equivalent -hsa:125061 up:Q63HM1 equivalent -hsa:125111 up:A0A654IC68 equivalent -hsa:125111 up:Q8N144 equivalent -hsa:125113 up:Q8N1A0 equivalent -hsa:125115 up:Q6A162 equivalent -hsa:125150 up:Q19AV6 equivalent -hsa:125170 up:Q96C03 equivalent -hsa:125206 up:A0PJK1 equivalent -hsa:125228 up:Q96ND0 equivalent -hsa:125336 up:B7Z7T7 equivalent -hsa:125336 up:F5GZB4 equivalent -hsa:125336 up:Q8IVV2 equivalent -hsa:125476 up:Q6PI98 equivalent -hsa:125488 up:Q8N584 equivalent -hsa:125704 up:Q0P6D2 equivalent -hsa:1258 up:Q14028 equivalent -hsa:125875 up:Q8NHS1 equivalent -hsa:125893 up:Q0VGE8 equivalent -hsa:1259 up:P29973 equivalent -hsa:125919 up:Q08ER8 equivalent -hsa:125931 up:Q6UY09 equivalent -hsa:125950 up:Q8IY67 equivalent -hsa:125958 up:A0A126GVR1 equivalent -hsa:125958 up:Q8NG98 equivalent -hsa:125962 up:A0A126GVS6 equivalent -hsa:125962 up:Q8NGA0 equivalent -hsa:125963 up:Q8NGA1 equivalent -hsa:125965 up:Q6YFQ2 equivalent -hsa:125972 up:A0A140VJF7 equivalent -hsa:125972 up:Q96L12 equivalent -hsa:125981 up:Q8TDN7 equivalent -hsa:125988 up:Q5XKP0 equivalent -hsa:125997 up:Q8NHZ7 equivalent -hsa:126 up:P00326 equivalent -hsa:1260 up:B3KXY3 equivalent -hsa:1260 up:Q16280 equivalent -hsa:126003 up:Q8IUR0 equivalent -hsa:126006 up:Q8IVA1 equivalent -hsa:126014 up:Q8IYS5 equivalent -hsa:126017 up:Q6ZN06 equivalent -hsa:126068 up:Q8N8Z8 equivalent -hsa:126069 up:Q8N8L2 equivalent -hsa:126070 up:Q8IYI8 equivalent -hsa:126074 up:Q6NVH7 equivalent -hsa:126075 up:P0C7I6 equivalent -hsa:1261 up:Q16281 equivalent -hsa:126119 up:Q8TAC2 equivalent -hsa:126123 up:Q6UXV1 equivalent -hsa:126129 up:B3KU49 equivalent -hsa:126129 up:Q8TCG5 equivalent -hsa:126133 up:Q8IZ83 equivalent -hsa:126147 up:Q8WTR8 equivalent -hsa:1262 up:Q8IV77 equivalent -hsa:126204 up:A0A0C4DGQ4 reverse -hsa:126204 up:Q86W25 equivalent -hsa:126205 up:Q86W28 equivalent -hsa:126206 up:P59047 equivalent -hsa:126208 up:Q6DD87 equivalent -hsa:126231 up:Q86YE8 equivalent -hsa:126248 up:Q6ZMY6 equivalent -hsa:126259 up:Q96BF3 equivalent -hsa:126272 up:Q96D98 equivalent -hsa:126282 up:Q8WVP5 equivalent -hsa:126295 up:A5HJR3 equivalent -hsa:126295 up:Q68EA5 equivalent -hsa:126298 up:Q8WZA9 equivalent -hsa:126299 up:I6L9C8 equivalent -hsa:126299 up:Q96B54 equivalent -hsa:1263 up:Q9H4B4 equivalent -hsa:126306 up:Q96MG2 equivalent -hsa:126308 up:Q96BX8 equivalent -hsa:126321 up:Q6NUT3 equivalent -hsa:126326 up:Q8TF64 equivalent -hsa:126328 up:Q86Y39 equivalent -hsa:126353 up:Q8IVT2 equivalent -hsa:126364 up:Q8N386 equivalent -hsa:126370 up:O60431 equivalent -hsa:126374 up:A6NIX2 equivalent -hsa:126375 up:Q3KQV3 equivalent -hsa:126382 up:Q86WQ0 equivalent -hsa:126393 up:O14558 equivalent -hsa:126393 up:V9HWB6 equivalent -hsa:1264 up:P51911 equivalent -hsa:1264 up:V9HWA5 equivalent -hsa:126402 up:Q8IYK2 equivalent -hsa:126410 up:Q6NT55 equivalent -hsa:126432 up:Q6ZS11 equivalent -hsa:126433 up:A0A384MR61 equivalent -hsa:126433 up:Q8NI29 equivalent -hsa:1265 up:Q99439 equivalent -hsa:126520 up:Q496M5 equivalent -hsa:126526 up:Q8N9M1 equivalent -hsa:126541 up:A0A126GVV2 equivalent -hsa:126541 up:Q8NGA5 equivalent -hsa:126549 up:A0A499FJM0 equivalent -hsa:126549 up:B4E124 equivalent -hsa:126549 up:Q8NAG6 equivalent -hsa:126567 up:Q8TF44 equivalent -hsa:1266 up:Q15417 equivalent -hsa:126626 up:Q8TAK5 equivalent -hsa:126637 up:Q5QJ38 equivalent -hsa:126638 up:Q6XPR3 equivalent -hsa:126668 up:Q5VZ19 equivalent -hsa:126669 up:Q5VZ18 equivalent -hsa:126695 up:Q8NAX2 equivalent -hsa:1267 up:P09543 equivalent -hsa:126731 up:Q6IQ19 equivalent -hsa:126755 up:Q5VT99 equivalent -hsa:126767 up:Q5VUY0 equivalent -hsa:126789 up:Q8N0Z8 equivalent -hsa:126792 up:Q96L58 equivalent -hsa:1268 up:P21554 equivalent -hsa:1268 up:S5TLS4 equivalent -hsa:126820 up:A0A140VJZ8 equivalent -hsa:126820 up:Q8IWG1 equivalent -hsa:126823 up:Q8NEP7 equivalent -hsa:126859 up:Q5T1B0 equivalent -hsa:126868 up:Q8N8X9 equivalent -hsa:1269 up:P34972 equivalent -hsa:126917 up:Q5TF58 equivalent -hsa:126961 up:Q71DI3 equivalent -hsa:126969 up:Q8N4M1 equivalent -hsa:127 up:P08319 equivalent -hsa:127 up:V9HVX7 equivalent -hsa:1270 up:P26441 equivalent -hsa:127002 up:Q5T6C5 equivalent -hsa:127003 up:Q5T5A4 equivalent -hsa:127018 up:Q5VWZ2 equivalent -hsa:127059 up:A3KFT3 equivalent -hsa:127062 up:A0A126GV67 equivalent -hsa:127062 up:Q8NG83 equivalent -hsa:127064 up:Q8NG77 equivalent -hsa:127066 up:Q8NHC7 equivalent -hsa:127068 up:Q8NGX1 equivalent -hsa:127069 up:A0A126GV79 equivalent -hsa:127069 up:Q8NGZ9 equivalent -hsa:127074 up:Q8NH00 equivalent -hsa:127077 up:Q8NH01 equivalent -hsa:1271 up:P26992 equivalent -hsa:127124 up:Q96LB4 equivalent -hsa:1272 up:Q12860 equivalent -hsa:127247 up:Q8WXJ9 equivalent -hsa:127253 up:Q6IPR3 equivalent -hsa:127254 up:Q5RHP9 equivalent -hsa:127255 up:A6PVS8 equivalent -hsa:127262 up:Q5T0D9 equivalent -hsa:127281 up:A0A0A0MT35 reverse -hsa:127281 up:A0A2P0CTB1 equivalent -hsa:127281 up:Q8TBF2 equivalent -hsa:127294 up:Q5VTT5 equivalent -hsa:127343 up:Q8NFW5 equivalent -hsa:127385 up:A0A126GV70 equivalent -hsa:127385 up:Q8NHC4 equivalent -hsa:127391 up:A0A140VKB8 equivalent -hsa:127391 up:Q7Z6W1 equivalent -hsa:127396 up:B3KSP5 equivalent -hsa:127396 up:Q5T5D7 equivalent -hsa:127428 up:Q96MN5 equivalent -hsa:127435 up:Q7Z5L7 equivalent -hsa:127495 up:Q96DD0 equivalent -hsa:127534 up:A0A654IBS8 equivalent -hsa:127534 up:Q9NTQ9 equivalent -hsa:127540 up:Q8WW32 equivalent -hsa:127544 up:Q6ZMZ0 equivalent -hsa:127550 up:U3KPV4 equivalent -hsa:127579 up:Q5T1A1 equivalent -hsa:127602 up:Q0VDD8 equivalent -hsa:127623 up:A0A126GVY5 equivalent -hsa:127623 up:Q5JQS5 equivalent -hsa:127665 up:Q5T619 equivalent -hsa:127670 up:Q5T9Z0 equivalent -hsa:127687 up:Q6ZSJ8 equivalent -hsa:1277 up:P02452 equivalent -hsa:127700 up:Q8WVF1 equivalent -hsa:127703 up:Q8TAB5 equivalent -hsa:127707 up:Q5VTJ3 equivalent -hsa:127731 up:Q5TIE3 equivalent -hsa:127733 up:Q96LJ8 equivalent -hsa:127795 up:Q8N0U7 equivalent -hsa:1278 up:A0A0S2Z3H5 equivalent -hsa:1278 up:P08123 equivalent -hsa:127829 up:Q96BM9 equivalent -hsa:127833 up:Q8N9I0 equivalent -hsa:127845 up:Q6ZVE7 equivalent -hsa:127933 up:Q8TAS1 equivalent -hsa:127943 up:Q6BAA4 equivalent -hsa:128 up:P11766 equivalent -hsa:128 up:Q6IRT1 equivalent -hsa:1280 up:P02458 equivalent -hsa:128061 up:Q8NDD1 equivalent -hsa:128077 up:B3KY58 equivalent -hsa:128077 up:Q8IVB5 equivalent -hsa:1281 up:P02461 equivalent -hsa:128153 up:Q96L03 equivalent -hsa:128178 up:Q8WWZ3 equivalent -hsa:1282 up:A5PKV2 reverse -hsa:1282 up:P02462 equivalent -hsa:128209 up:Q5JT82 equivalent -hsa:128218 up:Q96AQ2 equivalent -hsa:128229 up:Q96A04 equivalent -hsa:128239 up:Q86VI3 equivalent -hsa:128240 up:Q8NCW5 equivalent -hsa:128272 up:B4DN02 equivalent -hsa:128272 up:Q8IW93 equivalent -hsa:128308 up:Q7Z7F7 equivalent -hsa:128312 up:Q8N257 equivalent -hsa:128338 up:Q6UX65 equivalent -hsa:128344 up:Q8TCI5 equivalent -hsa:128346 up:Q8NEQ5 equivalent -hsa:128360 up:A0A126GV74 equivalent -hsa:128360 up:Q8NGX3 equivalent -hsa:128366 up:A0A126GV72 equivalent -hsa:128366 up:Q8NGX9 equivalent -hsa:128367 up:A0A126GWA4 equivalent -hsa:128367 up:Q8NGY0 equivalent -hsa:128368 up:A0A126GV63 equivalent -hsa:128368 up:Q8NGY1 equivalent -hsa:128371 up:Q8NGW6 equivalent -hsa:128372 up:Q8NGY5 equivalent -hsa:128387 up:Q17R31 equivalent -hsa:1284 up:P08572 equivalent -hsa:128408 up:A0A087WXG3 equivalent -hsa:128408 up:Q8NDY6 equivalent -hsa:128414 up:B3KWY5 equivalent -hsa:128414 up:Q8IVV8 equivalent -hsa:128434 up:Q96N03 equivalent -hsa:128486 up:Q8N6M3 equivalent -hsa:128488 up:Q8WWY7 equivalent -hsa:128497 up:Q9BR10 equivalent -hsa:1285 up:Q01955 equivalent -hsa:128506 up:Q9BR26 equivalent -hsa:128553 up:Q9NRE2 equivalent -hsa:1286 up:P53420 equivalent -hsa:128602 up:Q9H1P6 equivalent -hsa:128611 up:Q5JPB2 equivalent -hsa:128637 up:Q96BZ9 equivalent -hsa:128637 up:Q9Y2V8 equivalent -hsa:128646 up:Q9H106 equivalent -hsa:128653 up:B2R5K4 equivalent -hsa:128653 up:Q9NUB4 equivalent -hsa:128674 up:A8K1T0 equivalent -hsa:128674 up:Q8NFJ6 equivalent -hsa:1287 up:A7MBN3 equivalent -hsa:1287 up:P29400 equivalent -hsa:1287 up:Q49AM6 equivalent -hsa:128710 up:Q5VYV7 equivalent -hsa:1288 up:Q14031 equivalent -hsa:128817 up:Q9H114 equivalent -hsa:128821 up:A0A140VJH1 equivalent -hsa:128821 up:Q9H4G1 equivalent -hsa:128822 up:Q5W186 equivalent -hsa:128853 up:Q9H1R2 equivalent -hsa:128854680 up:Q6B8I1 equivalent -hsa:128859 up:Q8NFQ5 equivalent -hsa:128861 up:Q9BQP9 equivalent -hsa:128864 up:Q9BQM9 equivalent -hsa:128866 up:Q9H444 equivalent -hsa:128869 up:Q9H490 equivalent -hsa:128876 up:Q9BQN1 equivalent -hsa:1289 up:B2ZZ86 equivalent -hsa:1289 up:P20908 equivalent -hsa:1289 up:Q59EE7 equivalent -hsa:128954 up:Q2WGN9 equivalent -hsa:128977 up:Q6P5X5 equivalent -hsa:128989 up:A8K1E7 equivalent -hsa:128989 up:Q6ICL3 equivalent -hsa:1290 up:P05997 equivalent -hsa:129025 up:A0A0G2JN84 equivalent -hsa:129025 up:P59817 equivalent -hsa:129049 up:Q2NKQ1 equivalent -hsa:129080 up:Q96A84 equivalent -hsa:1291 up:A0A384P5H7 equivalent -hsa:1291 up:P12109 equivalent -hsa:129138 up:Q6NXT1 equivalent -hsa:1292 up:A0A384MDP3 equivalent -hsa:1292 up:P12110 equivalent -hsa:129285 up:Q6ZMI0 equivalent -hsa:129293 up:Q86V40 equivalent -hsa:1293 up:D9ZGF2 equivalent -hsa:1293 up:P12111 equivalent -hsa:1293 up:Q63HQ4 equivalent -hsa:1293 up:Q8N4Z1 equivalent -hsa:129303 up:Q86TG1 equivalent -hsa:1294 up:Q02388 equivalent -hsa:1294 up:Q59F16 equivalent -hsa:129401 up:Q8NFH5 equivalent -hsa:129446 up:A4UGR9 equivalent -hsa:129450 up:A2RUC4 equivalent -hsa:1295 up:P27658 equivalent -hsa:129521 up:A0A250SI41 equivalent -hsa:129521 up:Q5H8A3 equivalent -hsa:129530 up:Q8N1E2 equivalent -hsa:129531 up:Q8WV92 equivalent -hsa:129563 up:Q8IYB7 equivalent -hsa:1296 up:P25067 equivalent -hsa:129607 up:Q5EBM0 equivalent -hsa:129642 up:Q6ZWT7 equivalent -hsa:129684 up:Q8WYK1 equivalent -hsa:129685 up:Q7Z7C8 equivalent -hsa:1297 up:P20849 equivalent -hsa:129787 up:Q96B42 equivalent -hsa:1298 up:Q14055 equivalent -hsa:129804 up:Q53RD9 equivalent -hsa:129807 up:B3KR54 equivalent -hsa:129807 up:Q8WWR8 equivalent -hsa:129831 up:Q8IUH3 equivalent -hsa:129852 up:Q8N5S3 equivalent -hsa:129868 up:Q96BQ3 equivalent -hsa:129880 up:A0A0S2Z626 equivalent -hsa:129880 up:Q8N3I7 equivalent -hsa:129881 up:B4DX81 equivalent -hsa:129881 up:Q0VFZ6 equivalent -hsa:1299 up:Q14050 equivalent -hsa:13 up:P22760 equivalent -hsa:130 up:P28332 equivalent -hsa:130 up:Q8IUN7 equivalent -hsa:1300 up:A0A650AXN9 equivalent -hsa:1300 up:Q03692 equivalent -hsa:130013 up:Q8TDX5 equivalent -hsa:130026 up:Q8NDH6 equivalent -hsa:130074 up:A1KXE4 equivalent -hsa:130075 up:A0A126GVB1 equivalent -hsa:130075 up:Q8NGU2 equivalent -hsa:1301 up:P12107 equivalent -hsa:1301 up:Q59HB5 equivalent -hsa:130106 up:A0PJX0 equivalent -hsa:130120 up:Q6UW15 equivalent -hsa:130132 up:Q52LD8 equivalent -hsa:130162 up:Q8NHS4 equivalent -hsa:1302 up:A0A0C4DFS1 equivalent -hsa:1302 up:P13942 equivalent -hsa:130271 up:Q8IVE3 equivalent -hsa:1303 up:Q99715 equivalent -hsa:130340 up:Q96PC3 equivalent -hsa:130355 up:Q3KRA6 equivalent -hsa:130367 up:Q8IWX5 equivalent -hsa:130399 up:Q8NER5 equivalent -hsa:130497 up:Q8TAX0 equivalent -hsa:1305 up:Q5TAT6 equivalent -hsa:130502 up:Q5I0X7 equivalent -hsa:130507 up:Q6ZT12 equivalent -hsa:130535 up:A8K4A2 equivalent -hsa:130535 up:Q6PI47 equivalent -hsa:130540 up:Q96Q35 equivalent -hsa:130557 up:Q8N8E2 equivalent -hsa:130560 up:Q8NHX4 equivalent -hsa:130574 up:Q86Y78 equivalent -hsa:130576 up:Q8NI32 equivalent -hsa:130589 up:A0A384MDW6 equivalent -hsa:130589 up:Q96C23 equivalent -hsa:1306 up:B3KTP7 equivalent -hsa:1306 up:P39059 equivalent -hsa:130612 up:Q66K66 equivalent -hsa:130617 up:Q8WV99 equivalent -hsa:1307 up:Q07092 equivalent -hsa:130733 up:Q8NBL3 equivalent -hsa:130749 up:Q8IVL8 equivalent -hsa:130752 up:Q5I0G3 equivalent -hsa:1308 up:Q9UMD9 equivalent -hsa:130813 up:Q96LR7 equivalent -hsa:130814 up:Q8N755 equivalent -hsa:130827 up:Q6ZP80 equivalent -hsa:130888 up:Q8NEA4 equivalent -hsa:130916 up:Q7Z6M4 equivalent -hsa:130940 up:Q8NFR7 equivalent -hsa:130951 up:Q8TC57 equivalent -hsa:131 up:P40394 equivalent -hsa:1310 up:Q14993 equivalent -hsa:131034 up:Q4G168 equivalent -hsa:131034 up:Q96A23 equivalent -hsa:131076 up:Q4VC31 equivalent -hsa:131096 up:Q96L42 equivalent -hsa:1311 up:P49747 equivalent -hsa:131118 up:A0A0S2Z5X1 equivalent -hsa:131118 up:Q96DA6 equivalent -hsa:131149 up:A6NHN0 equivalent -hsa:131177 up:A0A0A8K9B4 equivalent -hsa:131177 up:Q96BQ1 equivalent -hsa:1312 up:A0A140VJG8 equivalent -hsa:1312 up:P21964 equivalent -hsa:131368 up:Q8TCW7 equivalent -hsa:131375 up:A0A080YUZ5 equivalent -hsa:131375 up:Q96KX0 equivalent -hsa:131377 up:A8K5H9 equivalent -hsa:131377 up:Q2TBA0 equivalent -hsa:1314 up:P53621 equivalent -hsa:131405 up:Q2Q1W2 equivalent -hsa:131408 up:Q6UXB0 equivalent -hsa:131450 up:Q8TD46 equivalent -hsa:131474 up:Q8N4Q1 equivalent -hsa:1315 up:P53618 equivalent -hsa:131540 up:Q8WVZ1 equivalent -hsa:131544 up:Q68DQ2 equivalent -hsa:131566 up:Q96PD2 equivalent -hsa:131578 up:B3KWI4 equivalent -hsa:131578 up:Q8TF66 equivalent -hsa:131583 up:Q8N2R8 equivalent -hsa:1316 up:Q99612 equivalent -hsa:131601 up:Q86W33 equivalent -hsa:131616 up:Q69YG0 equivalent -hsa:131669 up:Q96N76 equivalent -hsa:1317 up:O15431 equivalent -hsa:1318 up:O15432 equivalent -hsa:1318 up:Q53X94 equivalent -hsa:131831 up:Q7L0X2 equivalent -hsa:131870 up:Q96DE0 equivalent -hsa:131873 up:A6NMZ7 equivalent -hsa:131890 up:Q8WTQ7 equivalent -hsa:131920 up:Q6UWW9 equivalent -hsa:131965 up:Q8TCB7 equivalent -hsa:132 up:P55263 equivalent -hsa:132001 up:Q96BW9 equivalent -hsa:132014 up:Q8NFR9 equivalent -hsa:132112 up:P59025 equivalent -hsa:132141 up:Q8N6M8 equivalent -hsa:132158 up:Q8IVS8 equivalent -hsa:132160 up:Q96MI6 equivalent -hsa:132203 up:A6NMZ2 equivalent -hsa:132204 up:Q8TBG9 equivalent -hsa:132228 up:Q8N112 equivalent -hsa:132243 up:Q8IZA3 equivalent -hsa:132299 up:Q56VL3 equivalent -hsa:132320 up:Q96NL6 equivalent -hsa:132321 up:Q8N1A6 equivalent -hsa:1325 up:O00230 equivalent -hsa:1325 up:Q8IUV6 equivalent -hsa:1326 up:P41279 equivalent -hsa:132612 up:Q96M93 equivalent -hsa:132625 up:Q96MM3 equivalent -hsa:132660 up:Q6MZP7 equivalent -hsa:132660 up:Q7Z3G2 equivalent -hsa:132671 up:A0A140VKF4 equivalent -hsa:132671 up:Q8TC71 equivalent -hsa:1327 up:P13073 equivalent -hsa:1327 up:Q86WV2 equivalent -hsa:132720 up:Q8N8J7 equivalent -hsa:132724 up:Q86T26 equivalent -hsa:132789 up:Q8TDQ7 equivalent -hsa:132851 up:Q8NEY3 equivalent -hsa:132864 up:A0A5K1VW61 equivalent -hsa:132864 up:Q7Z5Q1 equivalent -hsa:132884 up:Q86UK5 equivalent -hsa:1329 up:A0A384NL93 equivalent -hsa:1329 up:P10606 equivalent -hsa:132946 up:Q6T311 equivalent -hsa:132949 up:B4E2K0 equivalent -hsa:132949 up:Q4L235 equivalent -hsa:132954 up:Q8N4E4 equivalent -hsa:132989 up:Q96KX1 equivalent -hsa:133 up:P35318 equivalent -hsa:133015 up:A8K679 equivalent -hsa:133015 up:Q8N7B6 equivalent -hsa:133022 up:Q8N609 equivalent -hsa:133060 up:Q7RTM1 equivalent -hsa:133121 up:Q6UWR7 equivalent -hsa:133308 up:B7Z488 equivalent -hsa:133308 up:Q86UD5 equivalent -hsa:133383 up:Q8NE22 equivalent -hsa:133396 up:B4DNJ2 equivalent -hsa:133396 up:Q8NI17 equivalent -hsa:133418 up:Q6PCB8 equivalent -hsa:133482 up:A0A140VJU7 equivalent -hsa:133482 up:Q86UG4 equivalent -hsa:133491 up:Q569G3 equivalent -hsa:133522 up:Q86YN6 equivalent -hsa:133558 up:B3KXY2 equivalent -hsa:133558 up:Q4G0Z6 equivalent -hsa:133558 up:Q7Z745 equivalent -hsa:133584 up:Q63HQ2 equivalent -hsa:133619 up:Q96M27 equivalent -hsa:133686 up:Q4G0N4 equivalent -hsa:133688 up:A8K444 equivalent -hsa:133688 up:B7Z3N0 equivalent -hsa:133688 up:Q6NUS8 equivalent -hsa:133690 up:Q8WWF8 equivalent -hsa:1337 up:H6SG15 equivalent -hsa:1337 up:P12074 equivalent -hsa:133746 up:Q8N9B5 equivalent -hsa:133874 up:C9J3I9 equivalent -hsa:1339 up:Q02221 equivalent -hsa:133923 up:Q6S9Z5 equivalent -hsa:133957 up:Q96BQ5 equivalent -hsa:134 up:P30542 equivalent -hsa:1340 up:P14854 equivalent -hsa:134083 up:Q8NGV0 equivalent -hsa:134111 up:A1L167 equivalent -hsa:134121 up:A4QMS7 equivalent -hsa:134145 up:Q6P4H8 equivalent -hsa:134147 up:Q96DG6 equivalent -hsa:134187 up:Q8N7G0 equivalent -hsa:134218 up:Q5F1R6 equivalent -hsa:134265 up:Q8TED9 equivalent -hsa:134266 up:Q8TAA5 equivalent -hsa:134285 up:Q8WVE6 equivalent -hsa:134288 up:Q8WUU8 equivalent -hsa:134353 up:P83369 equivalent -hsa:134359 up:Q8NA72 equivalent -hsa:134391 up:Q8TDV0 equivalent -hsa:134429 up:Q96DR4 equivalent -hsa:134430 up:Q8NI36 equivalent -hsa:134492 up:Q8WVJ2 equivalent -hsa:1345 up:A0A024R9B7 equivalent -hsa:1345 up:P09669 equivalent -hsa:134510 up:Q8WVY7 equivalent -hsa:134526 up:Q8WYK0 equivalent -hsa:134548 up:Q2M3V2 equivalent -hsa:134549 up:Q2M3G4 equivalent -hsa:134553 up:Q7Z6I8 equivalent -hsa:1346 up:P24310 equivalent -hsa:1346 up:Q6FGI7 equivalent -hsa:134637 up:Q7Z6V5 equivalent -hsa:1347 up:H0UI06 equivalent -hsa:1347 up:P14406 equivalent -hsa:134701 up:Q5TAB7 equivalent -hsa:134728 up:Q5VVH5 equivalent -hsa:134826889 up:A3QRJ0 equivalent -hsa:134826889 up:Q96PH1 equivalent -hsa:134829 up:Q5SYC1 equivalent -hsa:134860 up:Q96RI9 equivalent -hsa:134864 up:Q96RJ0 equivalent -hsa:1349 up:P24311 equivalent -hsa:134957 up:Q5T5C0 equivalent -hsa:135 up:A8K1F6 reverse -hsa:135 up:B3KVQ4 equivalent -hsa:135 up:P29274 equivalent -hsa:135 up:X5DNB4 equivalent -hsa:1350 up:P15954 equivalent -hsa:1351 up:P10176 equivalent -hsa:1351 up:Q53XN1 equivalent -hsa:135112 up:Q8N3C8 equivalent -hsa:135112 up:Q8NI08 equivalent -hsa:135114 up:Q9NQE9 equivalent -hsa:135138 up:Q96M98 equivalent -hsa:135152 up:Q9NPZ5 equivalent -hsa:135154 up:Q5VUM1 equivalent -hsa:1352 up:Q12887 equivalent -hsa:135228 up:Q6YHK3 equivalent -hsa:135250 up:Q8TD07 equivalent -hsa:135293 up:Q8IYS1 equivalent -hsa:135295 up:Q8WXF0 equivalent -hsa:1353 up:B4DEY8 equivalent -hsa:1353 up:Q9Y6N1 equivalent -hsa:135398 up:Q5SZD1 equivalent -hsa:135458 up:Q8NHY5 equivalent -hsa:1355 up:Q7KZN9 equivalent -hsa:1356 up:A5PL27 equivalent -hsa:1356 up:P00450 equivalent -hsa:135644 up:A0A1U9X8U1 equivalent -hsa:135644 up:Q6P9F5 equivalent -hsa:135656 up:E9PEI6 equivalent -hsa:135656 up:Q3MIW9 equivalent -hsa:1357 up:P15085 equivalent -hsa:1358 up:P48052 equivalent -hsa:135886 up:Q6UE05 equivalent -hsa:135892 up:Q86XT4 equivalent -hsa:1359 up:P15088 equivalent -hsa:135924 up:Q8NGT5 equivalent -hsa:135932 up:Q8IV31 equivalent -hsa:135935 up:O60393 equivalent -hsa:135941 up:A0A126GVB0 equivalent -hsa:135941 up:Q96R47 equivalent -hsa:135946 up:O95007 equivalent -hsa:135948 up:O95006 equivalent -hsa:136 up:P29275 equivalent -hsa:1360 up:P15086 equivalent -hsa:136051 up:Q8N393 equivalent -hsa:1361 up:Q96IY4 equivalent -hsa:1362 up:O75976 equivalent -hsa:136227 up:Q96A83 equivalent -hsa:136242 up:A4D1T9 equivalent -hsa:136259 up:Q8TD94 equivalent -hsa:136263 up:A4D1L0 equivalent -hsa:136263 up:Q8WWF3 equivalent -hsa:136288 up:Q86XB5 equivalent -hsa:136288 up:Q8NEG2 equivalent -hsa:1363 up:A0A384N679 equivalent -hsa:1363 up:P16870 equivalent -hsa:136306 up:Q8N434 equivalent -hsa:136319 up:P58546 equivalent -hsa:136319 up:Q69YG1 equivalent -hsa:136332 up:Q96M69 equivalent -hsa:136371 up:Q8WXI3 equivalent -hsa:1364 up:O14493 equivalent -hsa:1364 up:Q75L80 equivalent -hsa:1365 up:O15551 equivalent -hsa:1365 up:Q75L79 equivalent -hsa:136541 up:Q8IYP2 equivalent -hsa:1366 up:A0A384ME58 equivalent -hsa:1366 up:O95471 equivalent -hsa:136647 up:A4D1W6 equivalent -hsa:136647 up:Q8TAP9 equivalent -hsa:1368 up:P14384 equivalent -hsa:136853 up:Q8WTU2 equivalent -hsa:136895 up:Q8N865 equivalent -hsa:1369 up:P15169 equivalent -hsa:136991 up:Q8WWH4 equivalent -hsa:1370 up:P22792 equivalent -hsa:137075 up:Q96B33 equivalent -hsa:1371 up:P36551 equivalent -hsa:137209 up:Q7Z3I7 equivalent -hsa:1373 up:P31327 equivalent -hsa:1373 up:Q6PEK7 equivalent -hsa:137362 up:Q8NHS2 equivalent -hsa:137392 up:A1XBS5 equivalent -hsa:1374 up:B2RAQ8 equivalent -hsa:1374 up:P50416 equivalent -hsa:1374 up:Q8WZ48 equivalent -hsa:137492 up:Q8NEZ2 equivalent -hsa:1375 up:A5PLL0 equivalent -hsa:1375 up:Q53FV7 equivalent -hsa:1375 up:Q92523 equivalent -hsa:1376 up:A0A140VK13 equivalent -hsa:1376 up:P23786 equivalent -hsa:137682 up:Q330K2 equivalent -hsa:137695 up:Q96MH6 equivalent -hsa:137735 up:Q8N0Z2 equivalent -hsa:137797 up:F1T0L0 equivalent -hsa:137797 up:Q6UXB3 equivalent -hsa:1378 up:P17927 equivalent -hsa:137814 up:A6NCS4 equivalent -hsa:137835 up:Q6P5X7 equivalent -hsa:137868 up:Q96LD1 equivalent -hsa:137872 up:Q8IWW8 equivalent -hsa:137886 up:Q14CS0 equivalent -hsa:1379 up:Q2VPA4 equivalent -hsa:137902 up:A1KZ92 equivalent -hsa:137964 up:Q86UL3 equivalent -hsa:137970 up:Q6UXZ4 equivalent -hsa:137994 up:Q2VYF4 equivalent -hsa:1380 up:P20023 equivalent -hsa:138009 up:Q8NA75 equivalent -hsa:138046 up:Q86SE5 equivalent -hsa:138050 up:Q68CP4 equivalent -hsa:138050 up:Q8IVU6 equivalent -hsa:138065 up:Q96D59 equivalent -hsa:1381 up:F1T0F7 equivalent -hsa:1381 up:P29762 equivalent -hsa:138151 up:Q96BF6 equivalent -hsa:138162 up:Q5BN46 equivalent -hsa:138199 up:Q8N4J0 equivalent -hsa:1382 up:P29373 equivalent -hsa:138240 up:Q5W0N0 equivalent -hsa:138241 up:Q96MD7 equivalent -hsa:138255 up:Q5VTT2 equivalent -hsa:138307 up:Q6JVE9 equivalent -hsa:138307 up:Q8NBE9 equivalent -hsa:138311 up:Q5VUD6 equivalent -hsa:138428 up:Q86Y79 equivalent -hsa:138429 up:Q5T9C9 equivalent -hsa:138474 up:Q8IZX4 equivalent -hsa:1385 up:P16220 equivalent -hsa:1385 up:Q53X93 equivalent -hsa:1386 up:P15336 equivalent -hsa:138639 up:A2A3K4 equivalent -hsa:1387 up:Q92793 equivalent -hsa:138715 up:A6NKF2 equivalent -hsa:138716 up:Q8N5L8 equivalent -hsa:138724 up:Q5VYM1 equivalent -hsa:138799 up:Q8NGS8 equivalent -hsa:1388 up:Q6AZW6 equivalent -hsa:1388 up:Q99941 equivalent -hsa:138802 up:A0A126GVC7 equivalent -hsa:138802 up:Q8NGS7 equivalent -hsa:138803 up:A0A126GVY9 equivalent -hsa:138803 up:Q8NGS6 equivalent -hsa:138804 up:A0A126GVC9 equivalent -hsa:138804 up:Q8NGS5 equivalent -hsa:138805 up:Q8NGS4 equivalent -hsa:138881 up:A0A126GVC5 equivalent -hsa:138881 up:Q8NGR8 equivalent -hsa:138882 up:Q8NGR9 equivalent -hsa:138883 up:A0A126GW31 equivalent -hsa:138883 up:Q8NGS0 equivalent -hsa:1389 up:O60519 equivalent -hsa:1390 up:Q03060 equivalent -hsa:139065 up:Q8IW52 equivalent -hsa:139067 up:Q5MJ09 equivalent -hsa:139081 up:Q8TD91 equivalent -hsa:139105 up:B3KXX8 equivalent -hsa:139105 up:Q8NDZ0 equivalent -hsa:139135 up:Q8IV76 equivalent -hsa:139170 up:Q5VU92 equivalent -hsa:139189 up:Q5KSL6 equivalent -hsa:1392 up:A0A0S2Z478 equivalent -hsa:1392 up:P06850 equivalent -hsa:139212 up:Q9NQM4 equivalent -hsa:139221 up:Q5H9M0 equivalent -hsa:139231 up:B0QYU2 equivalent -hsa:139231 up:Q6PEV8 equivalent -hsa:139285 up:Q5JTC6 equivalent -hsa:1393 up:P24387 equivalent -hsa:139322 up:Q6UXV4 equivalent -hsa:139324 up:Q7Z353 equivalent -hsa:139341 up:Q8IVP5 equivalent -hsa:139378 up:Q8IZF6 equivalent -hsa:1394 up:P34998 equivalent -hsa:139411 up:Q96NR3 equivalent -hsa:139411 up:X5DNX9 equivalent -hsa:139422 up:Q96LZ2 equivalent -hsa:139425 up:A6NGE4 equivalent -hsa:1395 up:A0A090N7T4 equivalent -hsa:1395 up:Q13324 equivalent -hsa:139562 up:Q7L8S5 equivalent -hsa:139596 up:A8KAF9 equivalent -hsa:139596 up:Q96BW1 equivalent -hsa:139599 up:Q8TD90 equivalent -hsa:1396 up:P50238 equivalent -hsa:139604 up:A2A368 equivalent -hsa:139628 up:Q6PJQ5 equivalent -hsa:1397 up:P52943 equivalent -hsa:139716 up:Q8WWW8 equivalent -hsa:139728 up:Q6P2M8 equivalent -hsa:139735 up:A6NM28 equivalent -hsa:139741 up:Q8TDG2 equivalent -hsa:139760 up:Q8TDV5 equivalent -hsa:139793 up:Q5JUK9 equivalent -hsa:1398 up:A0A0S2Z3Q4 equivalent -hsa:1398 up:L7RT18 equivalent -hsa:1398 up:P46108 equivalent -hsa:139804 up:Q8N7X1 equivalent -hsa:139818 up:Q5JSL3 equivalent -hsa:139886 up:Q56A73 equivalent -hsa:1399 up:P46109 equivalent -hsa:14 up:Q13685 equivalent -hsa:140 up:P0DMS8 equivalent -hsa:1400 up:Q14194 equivalent -hsa:1400 up:Q96I11 equivalent -hsa:140032 up:Q8TD47 equivalent -hsa:1401 up:P02741 equivalent -hsa:140258 up:Q8IUC0 equivalent -hsa:140290 up:Q8TDR4 equivalent -hsa:1404 up:P10915 equivalent -hsa:140432 up:Q8IZP6 equivalent -hsa:140453 up:Q685J3 equivalent -hsa:140456 up:Q8WXH4 equivalent -hsa:140458 up:Q5HYF3 equivalent -hsa:140458 up:Q8WWX0 equivalent -hsa:140459 up:Q9NWX5 equivalent -hsa:140460 up:Q9H672 equivalent -hsa:140461 up:Q9H765 equivalent -hsa:140462 up:A0A024RBW7 equivalent -hsa:140462 up:Q96DX5 equivalent -hsa:140465 up:P14649 equivalent -hsa:140467 up:Q9NW07 equivalent -hsa:140469 up:B7ZM71 equivalent -hsa:140469 up:Q8WXR4 equivalent -hsa:140545 up:Q9H0A6 equivalent -hsa:140576 up:Q96FQ6 equivalent -hsa:140578 up:Q9H9P2 equivalent -hsa:140596 up:Q8WTQ1 equivalent -hsa:140597 up:Q9H3H9 equivalent -hsa:1406 up:O43186 equivalent -hsa:140606 up:Q8WWX9 equivalent -hsa:140609 up:B2R8K8 equivalent -hsa:140609 up:Q8TDX7 equivalent -hsa:140612 up:Q8NHY6 equivalent -hsa:140625 up:Q8TDY3 equivalent -hsa:140625 up:Q96LK1 equivalent -hsa:140628 up:Q9BWX5 equivalent -hsa:140679 up:Q9H598 equivalent -hsa:140680 up:B7ZML9 reverse -hsa:140680 up:F5GZA9 reverse -hsa:140680 up:Q9NUD7 equivalent -hsa:140683 up:Q96DR5 equivalent -hsa:140685 up:Q6ZMU8 equivalent -hsa:140685 up:Q86UZ6 equivalent -hsa:140686 up:Q8IUB2 equivalent -hsa:140687 up:F2Z6J8 equivalent -hsa:140687 up:Q6ZNI0 equivalent -hsa:140688 up:Q96MY1 equivalent -hsa:140689 up:Q9NTU7 equivalent -hsa:140690 up:Q8NI51 equivalent -hsa:140691 up:Q86WT6 equivalent -hsa:140699 up:Q6PF12 equivalent -hsa:140699 up:Q9H579 equivalent -hsa:1407 up:A2I2P0 equivalent -hsa:1407 up:Q16526 equivalent -hsa:140700 up:Q9BYL1 equivalent -hsa:140701 up:Q9H3Z7 equivalent -hsa:140706 up:Q9NUG4 equivalent -hsa:140707 up:Q8WY22 equivalent -hsa:140710 up:O94964 equivalent -hsa:140711 up:A0PJX2 equivalent -hsa:140730 up:Q9H426 equivalent -hsa:140731 up:Q9BZ19 equivalent -hsa:140732 up:A0A384MDU5 equivalent -hsa:140732 up:Q8TC36 equivalent -hsa:140733 up:A1Z1Q3 equivalent -hsa:140735 up:Q96FJ2 equivalent -hsa:140738 up:Q8WXS4 equivalent -hsa:140739 up:Q969M7 equivalent -hsa:140766 up:Q8WXS8 equivalent -hsa:140767 up:Q8IZ57 equivalent -hsa:140775 up:Q8TEV9 equivalent -hsa:1408 up:A0A0D2X7Z3 equivalent -hsa:1408 up:A2I2P1 equivalent -hsa:1408 up:Q49AN0 equivalent -hsa:140801 up:Q96L21 equivalent -hsa:140803 up:Q9BX84 equivalent -hsa:140807 up:Q14CN4 equivalent -hsa:140809 up:Q9BYN0 equivalent -hsa:140823 up:P60602 equivalent -hsa:140825 up:Q9BR09 equivalent -hsa:140831 up:Q96MP5 equivalent -hsa:140832 up:Q9H1F0 equivalent -hsa:140836 up:A0A140VK85 equivalent -hsa:140836 up:Q9H503 equivalent -hsa:140838 up:Q8TBE9 equivalent -hsa:140850 up:Q9H1M4 equivalent -hsa:140856 up:Q9UJQ7 equivalent -hsa:140862 up:B1AKI9 equivalent -hsa:140870 up:A0A0K0K1K0 equivalent -hsa:140870 up:Q9BQY6 equivalent -hsa:140873 up:Q96LM9 equivalent -hsa:140876 up:Q96MK2 equivalent -hsa:140880 up:A0A384P5Z6 equivalent -hsa:140880 up:Q9H112 equivalent -hsa:140881 up:A0A384MEC8 equivalent -hsa:140881 up:Q9H1M3 equivalent -hsa:140883 up:A0A0D9SEJ8 equivalent -hsa:140883 up:B3KUN2 equivalent -hsa:140883 up:Q86YH2 equivalent -hsa:140885 up:P78324 equivalent -hsa:140886 up:Q96DU9 equivalent -hsa:140890 up:Q8WXA9 equivalent -hsa:140893 up:Q8NC74 equivalent -hsa:140894 up:Q96M20 equivalent -hsa:1409 up:P02489 equivalent -hsa:140901 up:Q8TDR2 equivalent -hsa:140902 up:Q9H3Y0 equivalent -hsa:140947 up:Q8TF63 equivalent -hsa:141 up:P54922 equivalent -hsa:1410 up:P02511 equivalent -hsa:1410 up:V9HW27 equivalent -hsa:1411 up:P05813 equivalent -hsa:1412 up:P53672 equivalent -hsa:1413 up:A0A097PIJ6 equivalent -hsa:1413 up:P53673 equivalent -hsa:1414 up:P53674 equivalent -hsa:1415 up:P43320 equivalent -hsa:1415 up:R4UMM2 equivalent -hsa:1417 up:P26998 equivalent -hsa:1418 up:A0A0S2A4T3 equivalent -hsa:1418 up:P11844 equivalent -hsa:1419 up:P07316 equivalent -hsa:142 up:P09874 equivalent -hsa:1420 up:A0A0X8GLL6 equivalent -hsa:1420 up:P07315 equivalent -hsa:1421 up:A0A140CTX7 equivalent -hsa:1421 up:P07320 equivalent -hsa:142678 up:Q96AX9 equivalent -hsa:142679 up:Q8WTR2 equivalent -hsa:142680 up:Q8N130 equivalent -hsa:142683 up:Q8WWU7 equivalent -hsa:142684 up:Q8WXH6 equivalent -hsa:142685 up:A0A384NYV2 equivalent -hsa:142685 up:Q8WXK1 equivalent -hsa:142686 up:A6NK59 equivalent -hsa:142689 up:Q8WXK4 equivalent -hsa:1427 up:A0A140CTX8 equivalent -hsa:1427 up:P22914 equivalent -hsa:1428 up:Q14894 equivalent -hsa:142827 up:Q6P461 equivalent -hsa:142891 up:Q96LT4 equivalent -hsa:1429 up:Q08257 equivalent -hsa:142910 up:Q5W064 equivalent -hsa:142940 up:Q8WWH5 equivalent -hsa:143 up:Q9UKK3 equivalent -hsa:143098 up:Q5T2T1 equivalent -hsa:1431 up:O75390 equivalent -hsa:143162 up:B4E1N9 equivalent -hsa:143162 up:Q68DX3 equivalent -hsa:143187 up:Q96AJ9 equivalent -hsa:1432 up:L7RSM2 equivalent -hsa:1432 up:Q16539 equivalent -hsa:143241 up:Q8WWB3 equivalent -hsa:143244 up:Q6IS14 equivalent -hsa:143279 up:B3KV18 equivalent -hsa:143279 up:B4DIQ2 reverse -hsa:143279 up:Q5U5R9 equivalent -hsa:143282 up:Q8TAT2 equivalent -hsa:143379 up:Q8WW14 equivalent -hsa:143384 up:Q86Y37 equivalent -hsa:1434 up:A0A384NKW7 equivalent -hsa:1434 up:P55060 equivalent -hsa:143425 up:Q86SS6 equivalent -hsa:143458 up:Q86YD5 equivalent -hsa:143471 up:Q8TAA3 equivalent -hsa:143496 up:A0A126GW82 equivalent -hsa:143496 up:Q8NGK2 equivalent -hsa:1435 up:P09603 equivalent -hsa:143502 up:A0A126GWK8 equivalent -hsa:143502 up:Q8NH67 equivalent -hsa:143503 up:A0A126GVF8 equivalent -hsa:143503 up:Q8TCB6 equivalent -hsa:143570 up:Q6P2D8 equivalent -hsa:143570 up:Q8TEH2 equivalent -hsa:1436 up:P07333 equivalent -hsa:143630 up:Q8IYU4 equivalent -hsa:143662 up:Q8N387 equivalent -hsa:143678 up:C9JXX5 equivalent -hsa:143684 up:Q5HYJ3 equivalent -hsa:143686 up:P58005 equivalent -hsa:143689 up:A0A140VKG8 equivalent -hsa:143689 up:Q7Z3Z4 equivalent -hsa:1437 up:P04141 equivalent -hsa:1438 up:P15509 equivalent -hsa:143872 up:A6NI28 equivalent -hsa:143879 up:Q8NAB2 equivalent -hsa:143884 up:Q2TBE0 equivalent -hsa:143888 up:Q7Z4H8 equivalent -hsa:1439 up:P32927 equivalent -hsa:1439 up:Q6NSJ8 equivalent -hsa:143903 up:Q6UX15 equivalent -hsa:143941 up:A6NLP5 equivalent -hsa:1440 up:P09919 equivalent -hsa:1440 up:Q8N4W3 equivalent -hsa:144097 up:Q9BUA3 equivalent -hsa:1441 up:Q99062 equivalent -hsa:144100 up:Q6IQ23 equivalent -hsa:144108 up:Q68D10 equivalent -hsa:144110 up:Q8N2M4 equivalent -hsa:144124 up:A0A126GWR0 equivalent -hsa:144124 up:Q9H207 equivalent -hsa:144125 up:A0A126GVD0 equivalent -hsa:144125 up:Q9H205 equivalent -hsa:144132 up:B0I1S4 equivalent -hsa:144132 up:Q96M86 equivalent -hsa:144165 up:B3KVG3 equivalent -hsa:144165 up:Q96MT3 equivalent -hsa:144193 up:B3KVC5 equivalent -hsa:144193 up:Q96NU7 equivalent -hsa:144195 up:Q8TDB8 equivalent -hsa:1442 up:A8K6C2 equivalent -hsa:1442 up:P0DML2 equivalent -hsa:1442 up:P0DML3 equivalent -hsa:144233 up:Q7Z5W3 equivalent -hsa:144245 up:Q5I7T1 equivalent -hsa:1443 up:A0A0M6L0F6 equivalent -hsa:1443 up:P0DML3 equivalent -hsa:144321 up:Q4G1C9 equivalent -hsa:144347 up:Q6ZTI6 equivalent -hsa:144348 up:Q8N3J9 equivalent -hsa:144363 up:Q6IPR1 equivalent -hsa:1444 up:I6L999 equivalent -hsa:1444 up:Q14406 equivalent -hsa:144402 up:Q86YQ8 equivalent -hsa:144404 up:A0PK00 equivalent -hsa:144406 up:Q8TBY9 equivalent -hsa:144423 up:Q96MS3 equivalent -hsa:144448 up:P0C672 equivalent -hsa:144453 up:Q8N1M1 equivalent -hsa:144455 up:Q96AV8 equivalent -hsa:1445 up:A8K3B6 equivalent -hsa:1445 up:B2R6Q4 equivalent -hsa:1445 up:P41240 equivalent -hsa:144501 up:Q6KB66 equivalent -hsa:144535 up:Q96N23 equivalent -hsa:144568 up:A8K2U0 equivalent -hsa:144568 up:B3KVV6 equivalent -hsa:144577 up:Q96MD2 equivalent -hsa:1446 up:P47710 equivalent -hsa:144608 up:Q5U649 equivalent -hsa:144699 up:Q8N1E6 equivalent -hsa:1447 up:P05814 equivalent -hsa:1447 up:W5RWE1 equivalent -hsa:144715 up:J3KPN7 equivalent -hsa:144715 up:Q6WBX8 equivalent -hsa:144717 up:Q8N4B1 equivalent -hsa:1448 up:P07498 equivalent -hsa:144809 up:Q8N7L0 equivalent -hsa:144811 up:Q8IV20 equivalent -hsa:144983 up:Q32P51 equivalent -hsa:145173 up:Q6Y288 equivalent -hsa:1452 up:P48729 equivalent -hsa:145226 up:A0A0S2Z613 equivalent -hsa:145226 up:Q96NR8 equivalent -hsa:145258 up:P56915 equivalent -hsa:145264 up:Q8IW75 equivalent -hsa:145270 up:Q86XR5 equivalent -hsa:145282 up:A8K735 equivalent -hsa:145282 up:Q8TD10 equivalent -hsa:1453 up:P48730 equivalent -hsa:145376 up:Q96LQ0 equivalent -hsa:145389 up:Q8IZM9 equivalent -hsa:1454 up:P49674 equivalent -hsa:1454 up:Q5U045 equivalent -hsa:145407 up:B2RUU6 equivalent -hsa:145407 up:Q86TY3 equivalent -hsa:145447 up:Q7Z5M8 equivalent -hsa:145482 up:Q8N8N7 equivalent -hsa:145482 up:V9HW32 equivalent -hsa:145483 up:Q96MY7 equivalent -hsa:145497 up:Q0VAA2 equivalent -hsa:1455 up:P78368 equivalent -hsa:145501 up:Q6H9L7 equivalent -hsa:145508 up:Q6ZU80 equivalent -hsa:145508 up:Q86TS1 equivalent -hsa:145553 up:Q86V88 equivalent -hsa:145567 up:Q6PIF1 equivalent -hsa:145567 up:Q86TV6 equivalent -hsa:145581 up:Q96NI6 equivalent -hsa:1456 up:Q9Y6M4 equivalent -hsa:145645 up:Q8NHR7 equivalent -hsa:1457 up:P68400 equivalent -hsa:145741 up:Q8NCU7 equivalent -hsa:145748 up:Q5XG99 equivalent -hsa:145773 up:Q8TBF8 equivalent -hsa:145781 up:P0CAP1 equivalent -hsa:145788 up:H3BRN8 equivalent -hsa:145814 up:A6NFU8 equivalent -hsa:145853 up:A6NNL5 equivalent -hsa:145864 up:A8K7T8 equivalent -hsa:145864 up:Q96S86 equivalent -hsa:145873 up:Q0VG99 equivalent -hsa:1459 up:P19784 equivalent -hsa:145942 up:A0A024R9I9 equivalent -hsa:145942 up:Q8N6Q1 equivalent -hsa:145957 up:Q8WWG1 equivalent -hsa:146 up:B0ZBE0 equivalent -hsa:146 up:P25100 equivalent -hsa:1460 up:N0E4C7 equivalent -hsa:1460 up:P67870 equivalent -hsa:146050 up:Q05BJ4 equivalent -hsa:146050 up:Q8IWY8 equivalent -hsa:146050 up:Q96AG1 equivalent -hsa:146057 up:Q6IQ55 equivalent -hsa:146057 up:Q8IWY7 equivalent -hsa:146059 up:Q8IWY9 equivalent -hsa:146167 up:A6NNN8 equivalent -hsa:146177 up:A6NCI4 equivalent -hsa:146183 up:Q05BM7 equivalent -hsa:146183 up:Q7RTW8 equivalent -hsa:146198 up:Q8TF47 equivalent -hsa:1462 up:P13611 equivalent -hsa:1462 up:Q59FG9 equivalent -hsa:146206 up:Q6F5E8 equivalent -hsa:146212 up:Q17RG1 equivalent -hsa:146223 up:Q8IZR5 equivalent -hsa:146225 up:Q8TAZ6 equivalent -hsa:146227 up:Q3B7T3 equivalent -hsa:146279 up:Q96M29 equivalent -hsa:1463 up:O14594 equivalent -hsa:1463 up:Q4LE67 equivalent -hsa:146310 up:H3BNJ8 reverse -hsa:146310 up:Q2KHN1 equivalent -hsa:146325 up:P0CG20 equivalent -hsa:146330 up:Q8N461 equivalent -hsa:146378 up:Q96LL3 equivalent -hsa:146395 up:B3KY67 equivalent -hsa:146395 up:Q6UXU4 equivalent -hsa:1464 up:Q6UVK1 equivalent -hsa:146433 up:Q6ZMJ4 equivalent -hsa:146434 up:Q96LX8 equivalent -hsa:146439 up:A1A5D9 equivalent -hsa:146456 up:Q8WW62 equivalent -hsa:1465 up:A0A384P5K2 equivalent -hsa:1465 up:P21291 equivalent -hsa:146540 up:A8K8V0 equivalent -hsa:146542 up:A0A0S2Z633 equivalent -hsa:146542 up:P0C7X2 equivalent -hsa:146547 up:B4DNP1 equivalent -hsa:146547 up:Q5K4E3 equivalent -hsa:146556 up:Q6UX73 equivalent -hsa:146562 up:Q8IYS4 equivalent -hsa:1466 up:A0A024RBB5 equivalent -hsa:1466 up:Q16527 equivalent -hsa:146664 up:Q3V5L5 equivalent -hsa:146691 up:Q6ZVM7 equivalent -hsa:146705 up:Q96N21 equivalent -hsa:146712 up:Q67FW5 equivalent -hsa:146713 up:A6NFN3 equivalent -hsa:146722 up:Q8TDQ1 equivalent -hsa:146754 up:Q9P225 equivalent -hsa:146760 up:Q86UN2 equivalent -hsa:146779 up:Q8N7B9 equivalent -hsa:1468 up:A0A0S2Z382 equivalent -hsa:1468 up:Q9UBX3 equivalent -hsa:146802 up:Q86VL8 equivalent -hsa:146822 up:Q96T59 equivalent -hsa:146845 up:Q8N1V2 equivalent -hsa:146849 up:Q96M95 equivalent -hsa:146850 up:B3KRK9 equivalent -hsa:146850 up:Q5UE93 equivalent -hsa:146852 up:Q2M2E3 equivalent -hsa:146853 up:Q8WW18 equivalent -hsa:146857 up:Q68D06 equivalent -hsa:146861 up:Q8N808 equivalent -hsa:146862 up:Q8IWX7 equivalent -hsa:146894 up:Q6UXG3 equivalent -hsa:1469 up:P01037 equivalent -hsa:146909 up:Q6NWY8 equivalent -hsa:146909 up:Q86Y91 equivalent -hsa:146956 up:Q96AY2 equivalent -hsa:147 up:P35368 equivalent -hsa:1470 up:P09228 equivalent -hsa:147007 up:Q8N511 equivalent -hsa:147011 up:Q8NCQ7 equivalent -hsa:147015 up:Q6UX07 equivalent -hsa:147040 up:A0A158RFT7 equivalent -hsa:147040 up:Q693B1 equivalent -hsa:1471 up:A0A0K0K1J1 equivalent -hsa:1471 up:P01034 equivalent -hsa:147111 up:Q6P988 equivalent -hsa:147138 up:B3KXZ8 equivalent -hsa:147138 up:Q8IU68 equivalent -hsa:147179 up:Q8TF74 equivalent -hsa:147183 up:Q6ZPD6 equivalent -hsa:147183 up:Q7Z3Z0 equivalent -hsa:147199 up:Q8TD33 equivalent -hsa:1472 up:P01036 equivalent -hsa:1473 up:P28325 equivalent -hsa:147323 up:P59095 equivalent -hsa:147339 up:Q96B23 equivalent -hsa:147372 up:Q6UXH8 equivalent -hsa:147381 up:Q8IUK8 equivalent -hsa:1474 up:Q15828 equivalent -hsa:147407 up:I3L0B8 equivalent -hsa:147407 up:Q3SY17 equivalent -hsa:147409 up:Q86SJ6 equivalent -hsa:147463 up:Q8N6D5 equivalent -hsa:147495 up:Q8J025 equivalent -hsa:1475 up:P01040 equivalent -hsa:1476 up:P04080 equivalent -hsa:1476 up:Q76LA1 equivalent -hsa:147645 up:Q86VR7 equivalent -hsa:147646 up:I3L1E1 equivalent -hsa:147650 up:W5XKT8 equivalent -hsa:147657 up:B7Z8E1 equivalent -hsa:147657 up:Q8WV37 equivalent -hsa:147658 up:Q76KX8 equivalent -hsa:147660 up:Q3MI94 equivalent -hsa:147660 up:Q96N58 equivalent -hsa:147664 up:B6SEH8 equivalent -hsa:147664 up:M9QQA5 equivalent -hsa:147670 up:P0DL12 equivalent -hsa:147685 up:Q8NEA5 equivalent -hsa:147686 up:B7Z1P3 equivalent -hsa:147686 up:Q8TF45 equivalent -hsa:147687 up:Q8TAU3 equivalent -hsa:147694 up:Q8NEK5 equivalent -hsa:147699 up:Q8N819 equivalent -hsa:1477 up:Q05048 equivalent -hsa:147700 up:Q6P597 equivalent -hsa:147710 up:A1L1A6 equivalent -hsa:147719 up:A8K8E0 equivalent -hsa:147719 up:Q6UWN0 equivalent -hsa:147741 up:Q96MR9 equivalent -hsa:147744 up:Q8WZ59 equivalent -hsa:147746 up:A0A140VJL1 equivalent -hsa:147746 up:Q8NE63 equivalent -hsa:147798 up:A0A087WT65 equivalent -hsa:147798 up:Q7Z404 equivalent -hsa:1478 up:P33240 equivalent -hsa:147807 up:Q96C55 equivalent -hsa:147808 up:Q8NCA9 equivalent -hsa:147837 up:Q8TA94 equivalent -hsa:147841 up:Q8NBT2 equivalent -hsa:147872 up:Q8N6L0 equivalent -hsa:1479 up:Q12996 equivalent -hsa:147906 up:Q96B18 equivalent -hsa:147912 up:Q8N196 equivalent -hsa:147920 up:Q6UWQ7 equivalent -hsa:147923 up:Q8TAQ5 equivalent -hsa:147929 up:Q8N9K5 equivalent -hsa:147945 up:B2RCA1 equivalent -hsa:147945 up:Q96MN2 equivalent -hsa:147948 up:Q96NG8 equivalent -hsa:147949 up:Q96ND8 equivalent -hsa:147965 up:Q17RN3 equivalent -hsa:147968 up:Q6ZSI9 equivalent -hsa:147991 up:Q6ZPD9 equivalent -hsa:148 up:P35348 equivalent -hsa:148003 up:A8MUM7 equivalent -hsa:148014 up:Q8N6N2 equivalent -hsa:148022 up:Q8IUC6 equivalent -hsa:148066 up:Q8WWF5 equivalent -hsa:148103 up:Q96NL3 equivalent -hsa:148109 up:Q17R55 equivalent -hsa:148113 up:Q8IUL8 equivalent -hsa:148137 up:Q2NL68 equivalent -hsa:148156 up:Q96NG5 equivalent -hsa:148170 up:Q6NZY7 equivalent -hsa:148198 up:A6NK75 equivalent -hsa:1482 up:A0A0S2Z383 equivalent -hsa:1482 up:P52952 equivalent -hsa:148206 up:A0A087WU35 equivalent -hsa:148206 up:Q96N38 equivalent -hsa:148213 up:Q96N22 equivalent -hsa:148223 up:Q9UFG5 equivalent -hsa:148229 up:O60423 equivalent -hsa:148252 up:O95057 equivalent -hsa:148254 up:Q8NEP9 equivalent -hsa:148266 up:Q5MCW4 equivalent -hsa:148268 up:Q96NI8 equivalent -hsa:148281 up:I6L9C3 equivalent -hsa:148281 up:Q5T7P8 equivalent -hsa:148304 up:A0A0A8K8E6 equivalent -hsa:148304 up:Q96LT6 equivalent -hsa:148327 up:Q8TEY5 equivalent -hsa:148345 up:B7ZLG7 equivalent -hsa:148345 up:G8JLG8 equivalent -hsa:148362 up:Q5VW32 equivalent -hsa:148398 up:Q96NU1 equivalent -hsa:148418 up:Q5VXD3 equivalent -hsa:148423 up:Q8N6N3 equivalent -hsa:148479 up:A0A158RFV6 equivalent -hsa:148479 up:Q86YI8 equivalent -hsa:1485 up:P78358 equivalent -hsa:148523 up:Q8N365 equivalent -hsa:148534 up:Q96MV1 equivalent -hsa:148545 up:B7ZAX3 equivalent -hsa:148545 up:Q96M43 equivalent -hsa:148581 up:A0A140VJY9 equivalent -hsa:148581 up:Q5VVX9 equivalent -hsa:1486 up:Q01459 equivalent -hsa:1486 up:Q8TC97 equivalent -hsa:148641 up:Q8IY50 equivalent -hsa:1487 up:Q13363 equivalent -hsa:1487 up:X5D8Y5 equivalent -hsa:148738 up:Q6ZVN8 equivalent -hsa:148741 up:B4DFX6 equivalent -hsa:148741 up:Q8N283 equivalent -hsa:148753 up:Q96GL9 equivalent -hsa:148789 up:Q8NCR0 equivalent -hsa:1488 up:P56545 equivalent -hsa:148808 up:Q8N468 equivalent -hsa:148808 up:Q96KX6 equivalent -hsa:148811 up:Q6GTS8 equivalent -hsa:148823 up:Q5JQS6 equivalent -hsa:148867 up:Q8NEW0 equivalent -hsa:148870 up:Q2M243 equivalent -hsa:1489 up:Q16619 equivalent -hsa:148930 up:A6PVL3 equivalent -hsa:148932 up:Q70IA8 equivalent -hsa:148932 up:X6R3L3 equivalent -hsa:148979 up:Q8NBF1 equivalent -hsa:1490 up:P29279 equivalent -hsa:1490 up:Q5M8T4 equivalent -hsa:149013 up:Q5TAG4 equivalent -hsa:149018 up:Q5T871 equivalent -hsa:149041 up:Q5TC82 equivalent -hsa:149069 up:A2VCK2 equivalent -hsa:149076 up:Q5T0B9 equivalent -hsa:149095 up:B4DXB8 equivalent -hsa:149095 up:B4DXE3 equivalent -hsa:149095 up:Q5T197 equivalent -hsa:1491 up:P32929 equivalent -hsa:149111 up:Q8TBE1 equivalent -hsa:149175 up:Q5VSG8 equivalent -hsa:149233 up:Q5VWK5 equivalent -hsa:149281 up:Q5VVY1 equivalent -hsa:149297 up:F1T0K0 equivalent -hsa:149297 up:Q5VT40 equivalent -hsa:1493 up:P16410 equivalent -hsa:149345 up:Q96DD7 equivalent -hsa:149371 up:Q8IYI6 equivalent -hsa:149420 up:Q8N165 equivalent -hsa:149428 up:Q7Z465 equivalent -hsa:149461 up:Q8N6F1 equivalent -hsa:149465 up:A0A087WVY5 equivalent -hsa:149465 up:Q96MR6 equivalent -hsa:149466 up:Q8IVY1 equivalent -hsa:149473 up:Q8N4L8 equivalent -hsa:149478 up:C9JJ37 equivalent -hsa:149483 up:Q96LX7 equivalent -hsa:149499 up:A8K8H7 equivalent -hsa:149499 up:Q8N4P6 equivalent -hsa:1495 up:A0A384MDY0 equivalent -hsa:1495 up:P35221 equivalent -hsa:149563 up:Q8NEQ6 equivalent -hsa:1496 up:P26232 equivalent -hsa:149603 up:Q5TA31 equivalent -hsa:149628 up:Q6K0P9 equivalent -hsa:149643 up:Q537H7 equivalent -hsa:149647 up:B2RCB4 equivalent -hsa:149647 up:B3KQ44 equivalent -hsa:149647 up:B4DXH7 equivalent -hsa:149647 up:Q8IYT1 equivalent -hsa:149699 up:Q9H1H1 equivalent -hsa:1497 up:A0A0S2Z3K3 equivalent -hsa:1497 up:O60931 equivalent -hsa:149708 up:Q8TCV5 equivalent -hsa:149840 up:Q8IYI0 equivalent -hsa:1499 up:P35222 equivalent -hsa:149951 up:Q86VX2 equivalent -hsa:149954 up:P59827 equivalent -hsa:149986 up:Q9BX40 equivalent -hsa:149998 up:Q5D1Q2 equivalent -hsa:149998 up:Q6XZB0 equivalent -hsa:15 up:F1T0I5 equivalent -hsa:15 up:Q16613 equivalent -hsa:150 up:P08913 equivalent -hsa:1500 up:O60716 equivalent -hsa:150082 up:O95447 equivalent -hsa:150084 up:Q9NSI5 equivalent -hsa:150094 up:P57059 equivalent -hsa:1501 up:Q9UQB3 equivalent -hsa:150159 up:Q4ZJI4 equivalent -hsa:150160 up:Q96SF2 equivalent -hsa:150165 up:B7ZMN2 equivalent -hsa:150165 up:Q5GH77 equivalent -hsa:150209 up:Q96NN9 equivalent -hsa:150221 up:A6NJZ7 equivalent -hsa:150223 up:A8MPS7 equivalent -hsa:150248 up:Q8WYQ4 equivalent -hsa:150274 up:A0A384NYJ4 equivalent -hsa:150274 up:Q8IWL3 equivalent -hsa:150275 up:Q8IWD4 equivalent -hsa:150280 up:Q8N7B1 equivalent -hsa:150290 up:Q8NEJ0 equivalent -hsa:150297 up:Q6IC83 equivalent -hsa:1503 up:P17812 equivalent -hsa:150350 up:Q8IYW4 equivalent -hsa:150353 up:Q7Z6W7 equivalent -hsa:150356 up:Q6NUI6 equivalent -hsa:150365 up:Q4G0I1 equivalent -hsa:150365 up:Q5TIA1 equivalent -hsa:150368 up:Q6ICB4 equivalent -hsa:150372 up:Q8NET5 equivalent -hsa:150379 up:Q7Z6Z6 equivalent -hsa:150383 up:Q6NVV7 equivalent -hsa:1504 up:P17538 equivalent -hsa:150465 up:Q8NG68 equivalent -hsa:150468 up:Q8IYA6 equivalent -hsa:150472 up:Q8IUF1 equivalent -hsa:150483 up:A0A384MEB7 equivalent -hsa:150483 up:Q8WW24 equivalent -hsa:150572 up:Q5HYE8 equivalent -hsa:150572 up:Q8NB12 equivalent -hsa:150590 up:Q8WU43 equivalent -hsa:1506 up:P40313 equivalent -hsa:150677 up:Q8NHW6 equivalent -hsa:150678 up:Q8WXC6 equivalent -hsa:150681 up:Q8NGW1 equivalent -hsa:150684 up:Q8N668 equivalent -hsa:150696 up:Q8N271 equivalent -hsa:150709 up:Q70AK8 equivalent -hsa:150709 up:Q7Z5J8 equivalent -hsa:150726 up:Q8TF61 equivalent -hsa:150737 up:Q8N4P2 equivalent -hsa:150763 up:Q6NUI2 equivalent -hsa:150771 up:Q6GPH6 equivalent -hsa:150786 up:Q53S08 equivalent -hsa:1508 up:A0A024R374 equivalent -hsa:1508 up:P07858 equivalent -hsa:150864 up:Q6P1L5 equivalent -hsa:150864 up:Q7Z3M2 equivalent -hsa:1509 up:P07339 equivalent -hsa:1509 up:V9HWI3 equivalent -hsa:150921 up:Q7RTU1 equivalent -hsa:150946 up:Q75VX8 equivalent -hsa:150962 up:Q3MIT2 equivalent -hsa:151 up:P18089 equivalent -hsa:1510 up:P14091 equivalent -hsa:151011 up:Q59H84 equivalent -hsa:151011 up:Q9P0V9 equivalent -hsa:151050 up:A0AUZ9 equivalent -hsa:151056 up:B2RWP8 equivalent -hsa:151056 up:Q6P1J6 equivalent -hsa:1511 up:P08311 equivalent -hsa:151112 up:Q8NEG5 equivalent -hsa:151126 up:Q569K4 equivalent -hsa:151176 up:Q4G0M1 equivalent -hsa:151188 up:B3KMZ5 equivalent -hsa:151188 up:Q8N6S5 equivalent -hsa:151194 up:Q8WXB1 equivalent -hsa:151195 up:Q8N7R7 equivalent -hsa:1512 up:P09668 equivalent -hsa:151230 up:Q8NBE8 equivalent -hsa:151242 up:Q8WVI7 equivalent -hsa:151246 up:Q562F6 equivalent -hsa:151254 up:Q53TS8 equivalent -hsa:151258 up:Q08AI6 equivalent -hsa:151295 up:B7Z508 equivalent -hsa:151295 up:Q6PIS1 equivalent -hsa:1513 up:P43235 equivalent -hsa:151306 up:Q8TDU6 equivalent -hsa:151313 up:Q6P2I3 equivalent -hsa:151354 up:Q96KN4 equivalent -hsa:151393 up:Q96LZ7 equivalent -hsa:1514 up:P07711 equivalent -hsa:151449 up:Q75RY1 equivalent -hsa:151449 up:Q7Z4P5 equivalent -hsa:151473 up:Q7RTX9 equivalent -hsa:1515 up:B2R717 equivalent -hsa:1515 up:O60911 equivalent -hsa:151516 up:Q53RT3 equivalent -hsa:151525 up:Q8N9V3 equivalent -hsa:151531 up:A0A0S2Z634 equivalent -hsa:151531 up:O95045 equivalent -hsa:151556 up:Q7Z3F1 equivalent -hsa:151613 up:Q96N46 equivalent -hsa:151636 up:Q8TDB6 equivalent -hsa:151647 up:Q96LR4 equivalent -hsa:151648 up:Q5FBB7 equivalent -hsa:151649 up:A8MPX8 equivalent -hsa:151651 up:Q8N7U6 equivalent -hsa:151742 up:Q5SGD2 equivalent -hsa:151827 up:Q8IZ02 equivalent -hsa:151835 up:Q8IYJ1 equivalent -hsa:151871 up:Q7Z7J5 equivalent -hsa:151887 up:Q76M96 equivalent -hsa:151888 up:Q7Z6A9 equivalent -hsa:1519 up:P43234 equivalent -hsa:151903 up:Q8WUD4 equivalent -hsa:151963 up:Q8IYB1 equivalent -hsa:151987 up:Q9NY27 equivalent -hsa:152 up:P18825 equivalent -hsa:152 up:Q4W594 equivalent -hsa:1520 up:P25774 equivalent -hsa:152002 up:Q8NBI6 equivalent -hsa:152006 up:Q9H0F5 equivalent -hsa:152007 up:Q9H4G4 equivalent -hsa:152015 up:A0A140VKG6 equivalent -hsa:152015 up:Q9BZX4 equivalent -hsa:152065 up:Q8N5N4 equivalent -hsa:152098 up:Q504Y3 equivalent -hsa:1521 up:P56202 equivalent -hsa:152100 up:Q7Z7K0 equivalent -hsa:152110 up:Q6ZWH5 equivalent -hsa:152110 up:Q8N774 equivalent -hsa:152137 up:Q8IVM0 equivalent -hsa:152138 up:Q56P42 equivalent -hsa:152185 up:Q8N0Z3 equivalent -hsa:152189 up:Q8IZV2 equivalent -hsa:1522 up:Q9UBR2 equivalent -hsa:152206 up:Q8IYE1 equivalent -hsa:152206 up:Q96LI1 equivalent -hsa:152273 up:A0A2X0SFF2 equivalent -hsa:152273 up:Q6ZNL6 equivalent -hsa:1523 up:Q13948 equivalent -hsa:152330 up:Q8IWV2 equivalent -hsa:1524 up:P49238 equivalent -hsa:152404 up:Q5DX21 equivalent -hsa:152405 up:Q96M34 equivalent -hsa:152485 up:B3KSR1 equivalent -hsa:152485 up:Q17R98 equivalent -hsa:1525 up:P78310 equivalent -hsa:152503 up:Q5HYK7 equivalent -hsa:152518 up:B1Q2B0 equivalent -hsa:152518 up:Q6ZNB6 equivalent -hsa:152519 up:Q6NVV3 equivalent -hsa:152559 up:Q6TCH7 equivalent -hsa:152573 up:A0PJX4 equivalent -hsa:152579 up:Q8WU76 equivalent -hsa:152586 up:A6NG13 equivalent -hsa:152687 up:Q8IYB9 equivalent -hsa:1527 up:O15482 equivalent -hsa:152789 up:B3KWB6 equivalent -hsa:152789 up:Q96N16 equivalent -hsa:1528 up:A0A384ME44 equivalent -hsa:1528 up:P00167 equivalent -hsa:152815 up:Q8TBB0 equivalent -hsa:152816 up:Q17RF5 equivalent -hsa:152831 up:B4DYH5 equivalent -hsa:152831 up:Q86Z14 equivalent -hsa:152877 up:Q6NSI3 equivalent -hsa:152926 up:Q8N3J5 equivalent -hsa:152940 up:Q96LM5 equivalent -hsa:152992 up:Q8IYL2 equivalent -hsa:153 up:P08588 equivalent -hsa:153020 up:Q0VAM2 equivalent -hsa:153090 up:Q5VWQ8 equivalent -hsa:153129 up:Q8NBW4 equivalent -hsa:153201 up:Q495M3 equivalent -hsa:153218 up:A0A9E8LN18 equivalent -hsa:153218 up:Q1W4C9 equivalent -hsa:153222 up:Q8IUR6 equivalent -hsa:153241 up:B4DLH5 equivalent -hsa:153241 up:Q8N960 equivalent -hsa:153328 up:Q6ZT89 equivalent -hsa:153339 up:Q8TBQ9 equivalent -hsa:153364 up:B3KY36 equivalent -hsa:153364 up:Q68D91 equivalent -hsa:153396 up:B7Z6T3 equivalent -hsa:153396 up:Q8NDZ6 equivalent -hsa:1534 up:B3KTA1 equivalent -hsa:1534 up:P49447 equivalent -hsa:153443 up:Q8NEF9 equivalent -hsa:153478 up:Q96PX9 equivalent -hsa:1535 up:B4DT46 equivalent -hsa:1535 up:P13498 equivalent -hsa:153527 up:Q96NC0 equivalent -hsa:153562 up:Q8N4S9 equivalent -hsa:153572 up:Q9BZI1 equivalent -hsa:153579 up:Q6UXG8 equivalent -hsa:153579 up:Q8N324 equivalent -hsa:1536 up:A0A0S2Z3S6 equivalent -hsa:1536 up:P04839 equivalent -hsa:153642 up:Q6UWY0 equivalent -hsa:153643 up:Q96LP2 equivalent -hsa:153657 up:Q6PF05 equivalent -hsa:1537 up:P08574 equivalent -hsa:153733 up:Q8NEF3 equivalent -hsa:153745 up:A0A140VJJ4 equivalent -hsa:153745 up:Q8TC56 equivalent -hsa:153768 up:Q8N945 equivalent -hsa:153769 up:Q08AM8 equivalent -hsa:153769 up:Q8TEC5 equivalent -hsa:153770 up:A1L4L8 equivalent -hsa:1538 up:P35663 equivalent -hsa:1538 up:Q6PEK4 equivalent -hsa:153830 up:A8K9Y9 equivalent -hsa:153830 up:Q8NDT8 equivalent -hsa:153830 up:Q96MT1 equivalent -hsa:1539 up:Q14093 equivalent -hsa:1539 up:Q6PEJ5 equivalent -hsa:153918 up:Q5TFG8 equivalent -hsa:154 up:P07550 equivalent -hsa:154 up:X5DQM5 equivalent -hsa:1540 up:Q9NQC7 equivalent -hsa:154007 up:Q6IEG0 equivalent -hsa:154043 up:Q6P9H4 equivalent -hsa:154064 up:Q5VY80 equivalent -hsa:154075 up:Q8N6K7 equivalent -hsa:154091 up:Q8TD20 equivalent -hsa:154141 up:Q6ZNC8 equivalent -hsa:154150 up:A0A140VJK8 equivalent -hsa:154150 up:Q5TGJ6 equivalent -hsa:154197 up:Q8NA58 equivalent -hsa:154214 up:B3KVC8 equivalent -hsa:154214 up:Q8TC41 equivalent -hsa:154215 up:B3KNZ0 equivalent -hsa:154215 up:Q5VXU1 equivalent -hsa:154288 up:Q587J8 equivalent -hsa:1543 up:A0N0X8 equivalent -hsa:1543 up:P04798 equivalent -hsa:154313 up:Q8IYR0 equivalent -hsa:154313 up:Q8N771 equivalent -hsa:1544 up:P05177 equivalent -hsa:154467 up:Q9P0B6 equivalent -hsa:1545 up:Q16678 equivalent -hsa:1545 up:Q53TK1 equivalent -hsa:154661 up:Q96NL0 equivalent -hsa:154664 up:A0A0A0MT16 equivalent -hsa:154664 up:Q86UQ4 equivalent -hsa:154743 up:Q1RMZ1 equivalent -hsa:154790 up:P0C7M8 equivalent -hsa:154791 up:Q96HJ9 equivalent -hsa:154796 up:Q4VCS5 equivalent -hsa:1548 up:P11509 equivalent -hsa:154807 up:A8K0F7 equivalent -hsa:154807 up:Q8N0U8 equivalent -hsa:154810 up:Q8IY63 equivalent -hsa:154865 up:Q8NA54 equivalent -hsa:154881 up:Q96MP8 equivalent -hsa:1549 up:P20853 equivalent -hsa:155 up:A8KAG8 equivalent -hsa:155 up:P13945 equivalent -hsa:155006 up:A2RRL7 equivalent -hsa:155038 up:Q8ND71 equivalent -hsa:155051 up:A0A090N8I5 equivalent -hsa:155051 up:Q8WXF5 equivalent -hsa:155054 up:A0A090N7U3 equivalent -hsa:155054 up:Q6IV72 equivalent -hsa:155061 up:Q6NUN9 equivalent -hsa:155066 up:Q8NHE4 equivalent -hsa:1551 up:P24462 equivalent -hsa:155184 up:Q6PXP3 equivalent -hsa:155185 up:A4D202 equivalent -hsa:155185 up:Q400G9 equivalent -hsa:1553 up:Q16696 equivalent -hsa:155368 up:Q8N6F8 equivalent -hsa:155382 up:Q86XT2 equivalent -hsa:155435 up:Q96EV2 equivalent -hsa:155465 up:Q8TD06 equivalent -hsa:1555 up:P20813 equivalent -hsa:1557 up:P33261 equivalent -hsa:1558 up:P10632 equivalent -hsa:1559 up:P11712 equivalent -hsa:1559 up:S5RV20 equivalent -hsa:156 up:A0A0S2Z392 equivalent -hsa:156 up:P25098 equivalent -hsa:1562 up:P33260 equivalent -hsa:1562 up:Q7Z348 equivalent -hsa:1564 up:A0A087X1C5 equivalent -hsa:1565 up:C1ID52 equivalent -hsa:1565 up:P10635 equivalent -hsa:1565 up:Q5Y7H2 equivalent -hsa:157 up:P35626 equivalent -hsa:157 up:Q8N433 equivalent -hsa:1571 up:P05181 equivalent -hsa:1572 up:P24903 equivalent -hsa:157285 up:Q86YV5 equivalent -hsa:1573 up:P51589 equivalent -hsa:157310 up:Q96S96 equivalent -hsa:157313 up:B7Z5Q5 equivalent -hsa:157313 up:Q69YH5 equivalent -hsa:157378 up:Q6PI78 equivalent -hsa:157506 up:Q8IZV5 equivalent -hsa:157542 up:P0DTL6 equivalent -hsa:157567 up:B3KT99 equivalent -hsa:157567 up:Q86W74 equivalent -hsa:157570 up:Q56NI9 equivalent -hsa:157574 up:Q8IX29 equivalent -hsa:1576 up:P08684 equivalent -hsa:1576 up:Q6GRK0 equivalent -hsa:157638 up:Q96KN1 equivalent -hsa:157657 up:Q96NL8 equivalent -hsa:157680 up:Q7Z7G8 equivalent -hsa:157695 up:Q86YL5 equivalent -hsa:157697 up:Q86X53 equivalent -hsa:1577 up:P20815 equivalent -hsa:157724 up:Q8TCU3 equivalent -hsa:157753 up:Q96NL1 equivalent -hsa:157769 up:Q658Y4 equivalent -hsa:157773 up:Q96LL4 equivalent -hsa:157777 up:Q4G0Z9 equivalent -hsa:157807 up:Q8IUQ0 equivalent -hsa:157848 up:A6NJ46 equivalent -hsa:157855 up:A8MYU2 equivalent -hsa:157869 up:Q8IVN8 equivalent -hsa:1579 up:Q02928 equivalent -hsa:157922 up:A0A384NY94 equivalent -hsa:157922 up:Q5T5Y3 equivalent -hsa:158 up:P30566 equivalent -hsa:158 up:X5D8S6 equivalent -hsa:1580 up:P13584 equivalent -hsa:158038 up:Q7L985 equivalent -hsa:158046 up:Q5VZ03 equivalent -hsa:158056 up:Q6UXC1 equivalent -hsa:158062 up:A0A024R8I9 equivalent -hsa:158062 up:P62502 equivalent -hsa:158067 up:Q96MA6 equivalent -hsa:1581 up:P22680 equivalent -hsa:158131 up:Q15612 equivalent -hsa:158135 up:Q6ZUZ3 equivalent -hsa:158135 up:Q8NHH1 equivalent -hsa:158158 up:Q8IZ41 equivalent -hsa:1582 up:Q9UNU6 equivalent -hsa:158219 up:Q5VTQ0 equivalent -hsa:158234 up:Q6PF06 equivalent -hsa:158248 up:B4DH05 equivalent -hsa:158248 up:Q8NEE8 equivalent -hsa:158293 up:Q5T036 equivalent -hsa:158297 up:Q8IYX7 equivalent -hsa:1583 up:A0A0S2Z3R3 equivalent -hsa:1583 up:P05108 equivalent -hsa:158326 up:Q5H8C1 equivalent -hsa:158358 up:Q5HYC2 equivalent -hsa:158376 up:A0A1B0GVQ0 equivalent -hsa:158399 up:Q8TF39 equivalent -hsa:1584 up:P15538 equivalent -hsa:1584 up:Q8TDD0 equivalent -hsa:158401 up:Q6ZU10 equivalent -hsa:158405 up:Q8N8K9 equivalent -hsa:158427 up:Q5T7W7 equivalent -hsa:158431 up:Q6ZMW2 equivalent -hsa:158471 up:Q8WUY3 equivalent -hsa:1585 up:P19099 equivalent -hsa:158506 up:Q8N7E2 equivalent -hsa:158511 up:Q6PB30 equivalent -hsa:158521 up:Q8N0W7 equivalent -hsa:158584 up:B2C6G4 equivalent -hsa:158584 up:Q6GMR7 equivalent -hsa:158586 up:P98169 equivalent -hsa:1586 up:P05093 equivalent -hsa:1586 up:Q1HB44 equivalent -hsa:158724 up:Q5JRC9 equivalent -hsa:158747 up:Q8NHP6 equivalent -hsa:158763 up:Q6ZRI8 equivalent -hsa:158787 up:Q8N443 equivalent -hsa:158798 up:Q86UN6 equivalent -hsa:1588 up:P11511 equivalent -hsa:1588 up:Q8IYG4 equivalent -hsa:1588 up:Q8TCA4 equivalent -hsa:158800 up:Q8NHV9 equivalent -hsa:158809 up:Q8N7X4 equivalent -hsa:158830 up:A6NEN9 equivalent -hsa:158833 up:Q58HT5 equivalent -hsa:158835 up:Q6E213 equivalent -hsa:158866 up:B3KY34 equivalent -hsa:158866 up:Q96MV8 equivalent -hsa:158880 up:Q70EK9 equivalent -hsa:1589 up:P08686 equivalent -hsa:1589 up:Q08AG9 equivalent -hsa:158931 up:Q6IPX3 equivalent -hsa:158983 up:Q7Z2G1 equivalent -hsa:159 up:A0A024R5Q7 equivalent -hsa:159 up:P30520 equivalent -hsa:159013 up:Q8TB03 equivalent -hsa:159090 up:Q7Z309 equivalent -hsa:159091 up:Q6P4D5 equivalent -hsa:1591 up:Q07973 equivalent -hsa:159119 up:Q96LI6 equivalent -hsa:159163 up:Q15415 equivalent -hsa:159195 up:Q70EL1 equivalent -hsa:1592 up:O43174 equivalent -hsa:159296 up:Q8TAU0 equivalent -hsa:1593 up:Q02318 equivalent -hsa:159371 up:Q2M3R5 equivalent -hsa:1594 up:O15528 equivalent -hsa:1595 up:Q16850 equivalent -hsa:159686 up:Q5T655 equivalent -hsa:159963 up:Q1EHB4 equivalent -hsa:159989 up:Q05D60 equivalent -hsa:16 up:P49588 equivalent -hsa:160 up:O95782 equivalent -hsa:1600 up:O75553 equivalent -hsa:160065 up:Q8WXA2 equivalent -hsa:1601 up:B2RAW0 equivalent -hsa:1601 up:P98082 equivalent -hsa:160140 up:Q8NCR3 equivalent -hsa:1602 up:Q9UI36 equivalent -hsa:160287 up:Q6ZMR3 equivalent -hsa:160298 up:Q8N5U0 equivalent -hsa:1603 up:P61803 equivalent -hsa:1603 up:Q53G02 equivalent -hsa:160335 up:Q8N394 equivalent -hsa:160364 up:Q5QGZ9 equivalent -hsa:1604 up:P08174 equivalent -hsa:160418 up:A8K321 equivalent -hsa:160418 up:Q6ZXV5 equivalent -hsa:160419 up:Q8NA57 equivalent -hsa:160428 up:B4DTU7 equivalent -hsa:160428 up:Q3SY69 equivalent -hsa:160492 up:Q8N9Z9 equivalent -hsa:1605 up:Q14118 equivalent -hsa:160518 up:Q6ZUT9 equivalent -hsa:1606 up:P23743 equivalent -hsa:160622 up:Q7Z6J2 equivalent -hsa:1607 up:Q9Y6T7 equivalent -hsa:160728 up:Q8N695 equivalent -hsa:160760 up:Q8NI37 equivalent -hsa:160762 up:Q8NA47 equivalent -hsa:160777 up:Q8IWA6 equivalent -hsa:1608 up:P49619 equivalent -hsa:160851 up:Q86XP1 equivalent -hsa:160857 up:Q5T0U0 equivalent -hsa:160897 up:Q86V85 equivalent -hsa:1609 up:A0A140VKC1 equivalent -hsa:1609 up:P52824 equivalent -hsa:1609 up:Q59FF7 equivalent -hsa:161 up:O94973 equivalent -hsa:1610 up:A0A024RBI1 equivalent -hsa:1610 up:P14920 equivalent -hsa:161003 up:Q8TAV4 equivalent -hsa:1611 up:P51397 equivalent -hsa:161142 up:Q8N9W8 equivalent -hsa:161145 up:Q8NBD8 equivalent -hsa:161176 up:Q6ZMZ3 equivalent -hsa:161198 up:Q86T13 equivalent -hsa:1612 up:P53355 equivalent -hsa:161247 up:A5D6W6 equivalent -hsa:161253 up:Q8IYK8 equivalent -hsa:161291 up:Q3MIR4 equivalent -hsa:1613 up:B3KNJ3 equivalent -hsa:1613 up:O43293 equivalent -hsa:161357 up:Q7Z553 equivalent -hsa:161394 up:Q9P1V8 equivalent -hsa:161424 up:Q86U38 equivalent -hsa:161436 up:Q05BV3 equivalent -hsa:161497 up:Q7RTU9 equivalent -hsa:1615 up:A0A140VJW5 equivalent -hsa:1615 up:P14868 equivalent -hsa:161502 up:Q6P656 equivalent -hsa:161514 up:Q8IYX1 equivalent -hsa:161582 up:Q8WXU2 equivalent -hsa:1616 up:A0A024RCS3 equivalent -hsa:1616 up:Q53F85 equivalent -hsa:1616 up:Q9UER7 equivalent -hsa:1617 up:A0A140VJH5 equivalent -hsa:1617 up:Q9NQZ3 equivalent -hsa:161725 up:Q8TE49 equivalent -hsa:161742 up:Q7Z699 equivalent -hsa:161753 up:Q8IXM7 equivalent -hsa:161779 up:Q96DM1 equivalent -hsa:1618 up:A0A140VK77 equivalent -hsa:1618 up:Q92904 equivalent -hsa:161823 up:Q6DHV7 equivalent -hsa:161829 up:Q8NHP7 equivalent -hsa:161835 up:Q8NA03 equivalent -hsa:161882 up:Q8IX07 equivalent -hsa:161931 up:Q8NCV1 equivalent -hsa:162 up:Q10567 equivalent -hsa:1620 up:O60477 equivalent -hsa:162073 up:Q3MIP1 equivalent -hsa:162083 up:A0A5F9ZHF3 equivalent -hsa:162083 up:Q7Z2V1 equivalent -hsa:1621 up:P09172 equivalent -hsa:1622 up:P07108 equivalent -hsa:162239 up:Q6P2D0 equivalent -hsa:162282 up:Q8N957 equivalent -hsa:162333 up:A0A140VKA1 equivalent -hsa:162333 up:B3KVK0 equivalent -hsa:162333 up:Q8NA82 equivalent -hsa:162387 up:Q8IWD5 equivalent -hsa:162394 up:Q08AF3 equivalent -hsa:162417 up:Q8N159 equivalent -hsa:162427 up:Q86VR2 equivalent -hsa:162461 up:Q6UXU6 equivalent -hsa:162466 up:Q8TCT1 equivalent -hsa:162494 up:P58872 equivalent -hsa:162514 up:Q8NET8 equivalent -hsa:162515 up:Q8NCK7 equivalent -hsa:162517 up:Q8N4B4 equivalent -hsa:162540 up:Q8IUH8 equivalent -hsa:162605 up:Q7Z3Y7 equivalent -hsa:162655 up:Q8TB69 equivalent -hsa:162681 up:I7GY12 equivalent -hsa:162681 up:Q8IYD9 equivalent -hsa:1627 up:Q16643 equivalent -hsa:1628 up:Q10586 equivalent -hsa:1629 up:P11182 equivalent -hsa:162962 up:Q6ZNA1 equivalent -hsa:162963 up:Q8N9Z0 equivalent -hsa:162966 up:Q6ZNG1 equivalent -hsa:162967 up:A2RRD8 equivalent -hsa:162968 up:Q6ZNH5 equivalent -hsa:162972 up:Q7Z398 equivalent -hsa:162979 up:Q8WUU4 equivalent -hsa:162989 up:Q8WXF8 equivalent -hsa:162993 up:Q147U1 equivalent -hsa:162998 up:Q96RA2 equivalent -hsa:163 up:P63010 equivalent -hsa:1630 up:P43146 equivalent -hsa:1630 up:Q49AK4 equivalent -hsa:163033 up:Q8NAF0 equivalent -hsa:163049 up:Q3KP31 equivalent -hsa:163050 up:Q8TBZ8 equivalent -hsa:163051 up:Q8N972 equivalent -hsa:163059 up:Q8N7K0 equivalent -hsa:163071 up:Q8NC26 equivalent -hsa:163081 up:B2R956 equivalent -hsa:163081 up:B4E0D0 equivalent -hsa:163081 up:Q8N184 equivalent -hsa:163087 up:Q8NA42 equivalent -hsa:163126 up:Q8N6I1 equivalent -hsa:163131 up:Q9Y6R6 equivalent -hsa:163154 up:Q8IZ63 equivalent -hsa:163175 up:A5D6Y5 equivalent -hsa:163175 up:Q8N135 equivalent -hsa:163183 up:Q8N205 equivalent -hsa:1632 up:A0A384NKJ3 equivalent -hsa:1632 up:P42126 equivalent -hsa:163223 up:Q8N7Q3 equivalent -hsa:163227 up:Q8IYN0 equivalent -hsa:163255 up:Q8NDQ6 equivalent -hsa:163259 up:Q68D51 equivalent -hsa:1633 up:F5CTF3 equivalent -hsa:1633 up:P27707 equivalent -hsa:163351 up:Q6ZN66 equivalent -hsa:1634 up:P07585 equivalent -hsa:1634 up:Q6FH10 equivalent -hsa:163404 up:Q32ZL2 equivalent -hsa:163479 up:Q5VTL7 equivalent -hsa:163486 up:Q6P3S1 equivalent -hsa:1635 up:P32321 equivalent -hsa:163589 up:A0A024R910 equivalent -hsa:163589 up:Q8NAT2 equivalent -hsa:163590 up:Q8NFQ8 equivalent -hsa:1636 up:B4DKH4 equivalent -hsa:1636 up:P12821 equivalent -hsa:163688 up:Q8TD86 equivalent -hsa:163702 up:Q8IU57 equivalent -hsa:163732 up:Q96RK1 equivalent -hsa:163747 up:Q3ZCV2 equivalent -hsa:163778 up:Q96PI1 equivalent -hsa:163782 up:Q5T7N3 equivalent -hsa:163786 up:Q6UVJ0 equivalent -hsa:1638 up:P40126 equivalent -hsa:163859 up:Q6IQ49 equivalent -hsa:163882 up:Q6PJW8 equivalent -hsa:1639 up:Q14203 equivalent -hsa:1639 up:Q6MZZ3 equivalent -hsa:163933 up:Q6ZT52 equivalent -hsa:164 up:O43747 equivalent -hsa:164 up:Q8IY97 equivalent -hsa:164045 up:A2PYH4 equivalent -hsa:164091 up:Q86WK9 equivalent -hsa:1641 up:O43602 equivalent -hsa:164118 up:A2A3L6 equivalent -hsa:164127 up:Q8N715 equivalent -hsa:164153 up:Q8N7F7 equivalent -hsa:1642 up:Q16531 equivalent -hsa:164237 up:Q8IUB5 equivalent -hsa:164284 up:Q8NCL9 equivalent -hsa:1643 up:Q92466 equivalent -hsa:164312 up:Q8WUT4 equivalent -hsa:164395 up:Q3SXZ7 equivalent -hsa:1644 up:A0A0S2Z3N4 equivalent -hsa:1644 up:P20711 equivalent -hsa:1644 up:Q53Y41 equivalent -hsa:1645 up:Q04828 equivalent -hsa:164592 up:Q8IYX3 equivalent -hsa:1646 up:P52895 equivalent -hsa:164633 up:Q86V35 equivalent -hsa:164656 up:Q8IU80 equivalent -hsa:164668 up:Q6NTF7 equivalent -hsa:164684 up:Q6ICG8 equivalent -hsa:1647 up:P24522 equivalent -hsa:164781 up:A0A140VKH6 equivalent -hsa:164781 up:Q8N136 equivalent -hsa:164832 up:Q1L5Z9 equivalent -hsa:1649 up:P35638 equivalent -hsa:1649 up:Q53YD1 equivalent -hsa:165 up:Q8IUX7 equivalent -hsa:1650 up:P39656 equivalent -hsa:165055 up:Q96M89 equivalent -hsa:165082 up:Q8IZF5 equivalent -hsa:165100 up:Q53QW1 equivalent -hsa:165140 up:Q8TDS5 equivalent -hsa:165186 up:B4DLF7 reverse -hsa:165186 up:Q6ZUX3 equivalent -hsa:1652 up:P30046 equivalent -hsa:1652 up:Q53Y51 equivalent -hsa:165215 up:Q6P995 equivalent -hsa:165257 up:A0A3B0IND4 equivalent -hsa:165257 up:Q7Z5L3 equivalent -hsa:1653 up:A3RJH1 equivalent -hsa:1653 up:Q92499 equivalent -hsa:165324 up:P68543 equivalent -hsa:1654 up:O00571 equivalent -hsa:1655 up:P17844 equivalent -hsa:165530 up:Q8N1N0 equivalent -hsa:165545 up:Q8TE96 equivalent -hsa:1656 up:B2R858 equivalent -hsa:1656 up:P26196 equivalent -hsa:165631 up:Q460N3 equivalent -hsa:165679 up:Q6ZWB5 equivalent -hsa:165679 up:Q8NFR3 equivalent -hsa:1657 up:F1T0K4 equivalent -hsa:1657 up:Q9Y485 equivalent -hsa:165721 up:A0A140VJI2 equivalent -hsa:165721 up:Q8NHS0 equivalent -hsa:165829 up:Q8NFN8 equivalent -hsa:1659 up:Q05CV4 equivalent -hsa:1659 up:Q14562 equivalent -hsa:1659 up:Q86YB2 equivalent -hsa:165904 up:Q702N8 equivalent -hsa:165918 up:Q8IYW5 equivalent -hsa:166 up:Q08117 equivalent -hsa:166 up:Q8WY48 equivalent -hsa:1660 up:B3KU66 equivalent -hsa:1660 up:Q08211 equivalent -hsa:166012 up:Q8NET6 equivalent -hsa:1662 up:Q13206 equivalent -hsa:1663 up:Q96FC9 equivalent -hsa:166336 up:Q7Z3G6 equivalent -hsa:166348 up:Q3ZCT8 equivalent -hsa:166378 up:Q8NB90 equivalent -hsa:166379 up:Q6ZW61 equivalent -hsa:1665 up:O43143 equivalent -hsa:1666 up:Q16698 equivalent -hsa:166614 up:Q8N568 equivalent -hsa:166647 up:Q8IWK6 equivalent -hsa:166655 up:Q495X7 equivalent -hsa:1667 up:P59665 equivalent -hsa:166752 up:P0C091 equivalent -hsa:166785 up:Q8IVH4 equivalent -hsa:166793 up:Q6ZSB9 equivalent -hsa:1668 up:P59666 equivalent -hsa:1668 up:Q6EZE9 equivalent -hsa:166815 up:B3KNK0 equivalent -hsa:166815 up:Q4W5G0 equivalent -hsa:166815 up:V9HWD1 equivalent -hsa:166824 up:Q6ZTQ3 equivalent -hsa:166863 up:Q8TBY0 equivalent -hsa:1669 up:P12838 equivalent -hsa:166929 up:Q8NHU3 equivalent -hsa:166968 up:Q7Z3K6 equivalent -hsa:166979 up:Q86Y33 equivalent -hsa:167 up:A0A0K0K1I1 equivalent -hsa:167 up:P54107 equivalent -hsa:1670 up:Q01523 equivalent -hsa:1671 up:Q01524 equivalent -hsa:167127 up:Q3SY77 equivalent -hsa:167153 up:Q6PIY7 equivalent -hsa:1672 up:P60022 equivalent -hsa:167227 up:Q8IU60 equivalent -hsa:1673 up:O15263 equivalent -hsa:167359 up:Q8IY84 equivalent -hsa:1674 up:P17661 equivalent -hsa:1674 up:Q53SB5 equivalent -hsa:167410 up:Q8N485 equivalent -hsa:167465 up:Q8N895 equivalent -hsa:1675 up:P00746 equivalent -hsa:167555 up:Q6UXP7 equivalent -hsa:1676 up:O00273 equivalent -hsa:167681 up:Q8N3Z0 equivalent -hsa:167691 up:A0A384MDJ7 equivalent -hsa:167691 up:Q86VQ0 equivalent -hsa:1677 up:O76075 equivalent -hsa:1677 up:Q96P73 equivalent -hsa:1678 up:A0A2R8YDA8 reverse -hsa:1678 up:O60220 equivalent -hsa:167826 up:Q7RTU3 equivalent -hsa:167838 up:Q8N3L3 equivalent -hsa:168002 up:Q5SW24 equivalent -hsa:168090 up:Q5T5N4 equivalent -hsa:168374 up:Q03936 equivalent -hsa:168374 up:V9HVY7 equivalent -hsa:168391 up:Q7Z4T8 equivalent -hsa:168400 up:Q86TM3 equivalent -hsa:168417 up:Q8IYX0 equivalent -hsa:168433 up:Q8WVZ7 equivalent -hsa:168451 up:Q7Z6K1 equivalent -hsa:168455 up:Q8N9Z2 equivalent -hsa:168507 up:Q8TDX9 equivalent -hsa:168537 up:A0A090N8P8 equivalent -hsa:168537 up:Q8NHV1 equivalent -hsa:168544 up:Q7Z7K2 equivalent -hsa:168620 up:Q7RTS1 equivalent -hsa:168667 up:A0A090N7U6 equivalent -hsa:168667 up:Q8N8U9 equivalent -hsa:1687 up:O60443 equivalent -hsa:168850 up:Q2TB10 equivalent -hsa:168975 up:Q8NA66 equivalent -hsa:1690 up:O43405 equivalent -hsa:169026 up:Q8IWU4 equivalent -hsa:169044 up:Q8NFW1 equivalent -hsa:169166 up:Q8N9S9 equivalent -hsa:169200 up:Q6YI46 equivalent -hsa:169270 up:Q8TC21 equivalent -hsa:169355 up:Q6ZQW0 equivalent -hsa:169436 up:Q8NE28 equivalent -hsa:169522 up:Q8TDN2 equivalent -hsa:169611 up:Q68BL7 equivalent -hsa:169693 up:Q8N6L7 equivalent -hsa:169714 up:Q6ZRP7 equivalent -hsa:169792 up:A0A0S2Z689 equivalent -hsa:169792 up:Q8NEA6 equivalent -hsa:169834 up:P0CG24 equivalent -hsa:169841 up:Q14929 equivalent -hsa:169966 up:Q8NEK8 equivalent -hsa:169981 up:Q5JUX0 equivalent -hsa:170062 up:Q8NA70 equivalent -hsa:170067 up:P0C7V6 equivalent -hsa:170082 up:A8K5F6 equivalent -hsa:170082 up:Q8N8B7 equivalent -hsa:170261 up:Q6PEW1 equivalent -hsa:170302 up:Q96QS3 equivalent -hsa:170370 up:A6NMN3 equivalent -hsa:170371 up:Q5T292 equivalent -hsa:170384 up:Q495W5 equivalent -hsa:170392 up:Q8WWZ8 equivalent -hsa:170394 up:Q6NUJ5 equivalent -hsa:170463 up:Q9BWG4 equivalent -hsa:170482 up:Q8WTT0 equivalent -hsa:170487 up:Q5JWF8 equivalent -hsa:170506 up:Q9H2U1 equivalent -hsa:170572 up:Q8WXA8 equivalent -hsa:170575 up:A0A090N8Z4 equivalent -hsa:170575 up:Q8WWP7 equivalent -hsa:170589 up:A0A024R579 equivalent -hsa:170589 up:Q96T91 equivalent -hsa:170591 up:Q8WXG8 equivalent -hsa:170622 up:Q7Z4G1 equivalent -hsa:170626 up:Q8WTP9 equivalent -hsa:170627 up:Q3SY49 equivalent -hsa:170627 up:Q8WWM1 equivalent -hsa:170679 up:D2IYL0 equivalent -hsa:170679 up:Q9UIG5 equivalent -hsa:170680 up:A0A1U9X9A6 equivalent -hsa:170680 up:Q9UIG4 equivalent -hsa:170685 up:Q8NFP7 equivalent -hsa:170689 up:Q8TE58 equivalent -hsa:170690 up:Q2XQZ0 equivalent -hsa:170690 up:Q8TE57 equivalent -hsa:170691 up:Q8TE56 equivalent -hsa:170692 up:Q2VYF7 equivalent -hsa:170692 up:Q6ZN25 equivalent -hsa:170692 up:Q8TE60 equivalent -hsa:170712 up:Q8TF08 equivalent -hsa:170825 up:B2LYG3 equivalent -hsa:170825 up:Q9BZM3 equivalent -hsa:170850 up:Q8TAE7 equivalent -hsa:170954 up:A0A024RCJ8 equivalent -hsa:170954 up:Q6NYC8 equivalent -hsa:170958 up:Q8N782 equivalent -hsa:170959 up:Q8TF32 equivalent -hsa:170960 up:Q8TF20 equivalent -hsa:170961 up:Q8TF21 equivalent -hsa:171017 up:Q8TF68 equivalent -hsa:171019 up:A0A1X7SBR9 equivalent -hsa:171019 up:Q8TE59 equivalent -hsa:171023 up:Q8IXJ9 equivalent -hsa:171024 up:Q9UMS6 equivalent -hsa:171169 up:A0A140VJU1 equivalent -hsa:171169 up:Q8TDM5 equivalent -hsa:171177 up:Q96L33 equivalent -hsa:171389 up:P59044 equivalent -hsa:171392 up:Q8TD23 equivalent -hsa:171425 up:Q8N0X4 equivalent -hsa:171482 up:Q8IZU1 equivalent -hsa:171483 up:Q8IZU0 equivalent -hsa:171484 up:Q8IZT9 equivalent -hsa:171546 up:Q969W0 equivalent -hsa:171558 up:Q6ISU1 equivalent -hsa:171568 up:Q9Y535 equivalent -hsa:171586 up:Q8WU67 equivalent -hsa:1716 up:E5KSL5 equivalent -hsa:1716 up:Q16854 equivalent -hsa:1717 up:A0A024R5F7 equivalent -hsa:1717 up:Q9UBM7 equivalent -hsa:1718 up:Q15392 equivalent -hsa:1719 up:B0YJ76 equivalent -hsa:1719 up:P00374 equivalent -hsa:1723 up:Q02127 equivalent -hsa:1725 up:P49366 equivalent -hsa:1727 up:P00387 equivalent -hsa:1728 up:P15559 equivalent -hsa:1729 up:O60610 equivalent -hsa:1729 up:Q6URC4 equivalent -hsa:173 up:P43652 equivalent -hsa:1730 up:O60879 equivalent -hsa:1731 up:J3KNL2 equivalent -hsa:1731 up:Q8WYJ6 equivalent -hsa:1733 up:A8K415 equivalent -hsa:1733 up:P49895 equivalent -hsa:1734 up:Q92813 equivalent -hsa:1735 up:P55073 equivalent -hsa:1735 up:Q86TU3 equivalent -hsa:1736 up:O60832 equivalent -hsa:1737 up:P10515 equivalent -hsa:1737 up:Q86YI5 equivalent -hsa:1738 up:A0A024R713 equivalent -hsa:1738 up:P09622 equivalent -hsa:1739 up:Q12959 equivalent -hsa:174 up:P02771 equivalent -hsa:1740 up:Q15700 equivalent -hsa:1741 up:Q59FY1 equivalent -hsa:1741 up:Q92796 equivalent -hsa:1742 up:P78352 equivalent -hsa:1743 up:P36957 equivalent -hsa:1745 up:P56177 equivalent -hsa:1745 up:X5D2F9 equivalent -hsa:1746 up:Q07687 equivalent -hsa:1746 up:Q53QU7 equivalent -hsa:1746 up:X5D7D8 equivalent -hsa:1747 up:O60479 equivalent -hsa:1748 up:Q92988 equivalent -hsa:1749 up:P56178 equivalent -hsa:1749 up:Q53Y73 equivalent -hsa:175 up:P20933 equivalent -hsa:1750 up:P56179 equivalent -hsa:1755 up:Q9UGM3 equivalent -hsa:1756 up:P11532 equivalent -hsa:1757 up:A8K596 equivalent -hsa:1757 up:Q9UL12 equivalent -hsa:1758 up:Q13316 equivalent -hsa:1759 up:Q05193 equivalent -hsa:176 up:P16112 equivalent -hsa:1760 up:E5KR06 equivalent -hsa:1760 up:Q09013 equivalent -hsa:1761 up:Q9Y5R6 equivalent -hsa:1762 up:Q09019 equivalent -hsa:1762 up:Q8WUW6 equivalent -hsa:1763 up:P51530 equivalent -hsa:1767 up:Q8TE73 equivalent -hsa:1768 up:Q9C0G6 equivalent -hsa:1769 up:A0A075B6F3 equivalent -hsa:1769 up:Q8IU65 equivalent -hsa:1769 up:Q96JB1 equivalent -hsa:177 up:A0A1U9X785 equivalent -hsa:177 up:B4DNX3 equivalent -hsa:177 up:Q15109 equivalent -hsa:1770 up:Q9NYC9 equivalent -hsa:1773 up:P24855 equivalent -hsa:1774 up:P49184 equivalent -hsa:1775 up:Q92874 equivalent -hsa:1776 up:Q13609 equivalent -hsa:1777 up:O00115 equivalent -hsa:1778 up:Q14204 equivalent -hsa:178 up:A0A0S2A4E4 equivalent -hsa:178 up:P35573 equivalent -hsa:1780 up:A4D1I7 equivalent -hsa:1780 up:O14576 equivalent -hsa:1780 up:Q8N542 equivalent -hsa:1781 up:A0A140VKE9 equivalent -hsa:1781 up:Q13409 equivalent -hsa:1783 up:O43237 equivalent -hsa:1783 up:Q63HJ8 equivalent -hsa:1785 up:P50570 equivalent -hsa:1786 up:I6L9H2 equivalent -hsa:1786 up:P26358 equivalent -hsa:1787 up:O14717 equivalent -hsa:1787 up:Q6ICS7 equivalent -hsa:1788 up:Q9Y6K1 equivalent -hsa:1789 up:Q9UBC3 equivalent -hsa:1791 up:P04053 equivalent -hsa:1793 up:A0A2X0U2H5 equivalent -hsa:1793 up:B2RUU3 equivalent -hsa:1793 up:Q14185 equivalent -hsa:1794 up:Q5XG91 equivalent -hsa:1794 up:Q92608 equivalent -hsa:1795 up:Q8IZD9 equivalent -hsa:1796 up:B3KP83 equivalent -hsa:1796 up:Q99704 equivalent -hsa:1797 up:A0A024RCW8 equivalent -hsa:1797 up:O77932 equivalent -hsa:1798 up:Q9H3H5 equivalent -hsa:18 up:P80404 equivalent -hsa:18 up:X5D8S1 equivalent -hsa:1800 up:A0A140VJI3 equivalent -hsa:1800 up:P16444 equivalent -hsa:1801 up:Q9BZG8 equivalent -hsa:1802 up:Q9BQC3 equivalent -hsa:1803 up:P27487 equivalent -hsa:1804 up:A7E2E4 equivalent -hsa:1804 up:P42658 equivalent -hsa:1804 up:Q8IYG9 equivalent -hsa:1805 up:Q07507 equivalent -hsa:1806 up:Q12882 equivalent -hsa:1807 up:Q14117 equivalent -hsa:1808 up:Q16555 equivalent -hsa:1809 up:Q14195 equivalent -hsa:1809 up:Q8IXW6 equivalent -hsa:181 up:C6SUN5 equivalent -hsa:181 up:O00253 equivalent -hsa:1810 up:Q01658 equivalent -hsa:1810 up:Q658N3 equivalent -hsa:1811 up:P40879 equivalent -hsa:1812 up:P21728 equivalent -hsa:1813 up:P14416 equivalent -hsa:1814 up:A8K8E4 equivalent -hsa:1814 up:P35462 equivalent -hsa:1814 up:X5D2G4 equivalent -hsa:1815 up:P21917 equivalent -hsa:1816 up:P21918 equivalent -hsa:1819 up:P55039 equivalent -hsa:182 up:P78504 equivalent -hsa:182 up:Q99740 equivalent -hsa:1820 up:Q99856 equivalent -hsa:1821 up:Q13474 equivalent -hsa:1822 up:P54259 equivalent -hsa:1822 up:Q86V38 equivalent -hsa:1823 up:Q08554 equivalent -hsa:1824 up:Q02487 equivalent -hsa:1825 up:Q14574 equivalent -hsa:1826 up:O60469 equivalent -hsa:1827 up:P53805 equivalent -hsa:1828 up:Q02413 equivalent -hsa:1829 up:Q14126 equivalent -hsa:1830 up:P32926 equivalent -hsa:1831 up:Q99576 equivalent -hsa:1832 up:B4DKX6 equivalent -hsa:1832 up:P15924 equivalent -hsa:1833 up:Q99645 equivalent -hsa:1834 up:Q9NZW4 equivalent -hsa:1836 up:P50443 equivalent -hsa:1837 up:Q9Y4J8 equivalent -hsa:1838 up:O60941 equivalent -hsa:1839 up:Q99075 equivalent -hsa:1840 up:Q86Y01 equivalent -hsa:1841 up:P23919 equivalent -hsa:1841 up:Q6FGU2 equivalent -hsa:1842 up:O94769 equivalent -hsa:1843 up:B4DU40 equivalent -hsa:1843 up:P28562 equivalent -hsa:1844 up:Q05923 equivalent -hsa:1845 up:P51452 equivalent -hsa:1846 up:Q13115 equivalent -hsa:1847 up:Q16690 equivalent -hsa:1848 up:Q16828 equivalent -hsa:1849 up:Q16829 equivalent -hsa:185 up:P30556 equivalent -hsa:185 up:Q53YY0 equivalent -hsa:1850 up:Q13202 equivalent -hsa:1852 up:Q6P9C2 equivalent -hsa:1852 up:Q99956 equivalent -hsa:1854 up:P33316 equivalent -hsa:1855 up:O14640 equivalent -hsa:1856 up:O14641 equivalent -hsa:1857 up:Q92997 equivalent -hsa:1859 up:Q13627 equivalent -hsa:186 up:P50052 equivalent -hsa:1861 up:B3KPA1 equivalent -hsa:1861 up:O14656 equivalent -hsa:1869 up:Q01094 equivalent -hsa:1869 up:Q9BSD8 equivalent -hsa:187 up:B2RDH3 equivalent -hsa:187 up:B3KQN4 equivalent -hsa:187 up:P35414 equivalent -hsa:1870 up:Q14209 equivalent -hsa:1871 up:O00716 equivalent -hsa:1874 up:Q16254 equivalent -hsa:1875 up:Q15329 equivalent -hsa:1876 up:A0A0S2Z3K8 equivalent -hsa:1876 up:O75461 equivalent -hsa:1877 up:Q66K89 equivalent -hsa:1879 up:Q9UH73 equivalent -hsa:1880 up:P32249 equivalent -hsa:1889 up:P42892 equivalent -hsa:189 up:P21549 equivalent -hsa:1890 up:B2RBL3 equivalent -hsa:1890 up:E5KRG5 equivalent -hsa:1890 up:P19971 equivalent -hsa:1891 up:A0A384MR44 equivalent -hsa:1891 up:Q13011 equivalent -hsa:1892 up:P30084 equivalent -hsa:1893 up:A0A140VJI7 equivalent -hsa:1893 up:Q16610 equivalent -hsa:1894 up:Q9H8V3 equivalent -hsa:1896 up:Q92838 equivalent -hsa:19 up:B2RUU2 equivalent -hsa:19 up:B7XCW9 equivalent -hsa:19 up:O95477 equivalent -hsa:190 up:F1D8P4 equivalent -hsa:190 up:P51843 equivalent -hsa:1901 up:P21453 equivalent -hsa:1902 up:Q5VZX0 equivalent -hsa:1902 up:Q92633 equivalent -hsa:1903 up:Q99500 equivalent -hsa:1906 up:P05305 equivalent -hsa:1906 up:Q6FH53 equivalent -hsa:1907 up:P20800 equivalent -hsa:1908 up:P14138 equivalent -hsa:1909 up:P25101 equivalent -hsa:191 up:A0A384MTQ3 equivalent -hsa:191 up:P23526 equivalent -hsa:1910 up:P24530 equivalent -hsa:1911 up:P78364 equivalent -hsa:1911 up:Q6GMQ3 equivalent -hsa:1911 up:Q6N083 equivalent -hsa:1912 up:Q8IXK0 equivalent -hsa:1915 up:P68104 equivalent -hsa:1915 up:Q6IPS9 equivalent -hsa:1917 up:Q05639 equivalent -hsa:192111 up:Q96HS1 equivalent -hsa:192134 up:A8K9Q8 equivalent -hsa:192134 up:Q6ZMB0 equivalent -hsa:192286 up:Q9BW72 equivalent -hsa:192666 up:Q2M2I5 equivalent -hsa:192668 up:Q717R9 equivalent -hsa:192669 up:B4E1P5 equivalent -hsa:192669 up:Q9H9G7 equivalent -hsa:192670 up:Q9HCK5 equivalent -hsa:192683 up:A0A0A8K8F5 equivalent -hsa:192683 up:Q8TAC9 equivalent -hsa:1933 up:P24534 equivalent -hsa:1936 up:P29692 equivalent -hsa:1937 up:P26641 equivalent -hsa:1937 up:Q53YD7 equivalent -hsa:1938 up:P13639 equivalent -hsa:1939 up:P41214 equivalent -hsa:1942 up:P20827 equivalent -hsa:1943 up:O43921 equivalent -hsa:1944 up:P52797 equivalent -hsa:1945 up:P52798 equivalent -hsa:1946 up:P52803 equivalent -hsa:1947 up:P98172 equivalent -hsa:1948 up:P52799 equivalent -hsa:1949 up:Q15768 equivalent -hsa:1950 up:P01133 equivalent -hsa:1951 up:Q9NYQ7 equivalent -hsa:1952 up:Q9HCU4 equivalent -hsa:1953 up:O75095 equivalent -hsa:1954 up:Q7Z7M0 equivalent -hsa:1955 up:Q9H1U4 equivalent -hsa:1956 up:F2YGG7 equivalent -hsa:1956 up:P00533 equivalent -hsa:1956 up:Q504U8 equivalent -hsa:1958 up:P18146 equivalent -hsa:1958 up:Q546S1 equivalent -hsa:195814 up:B3KT84 equivalent -hsa:195814 up:Q8N3Y7 equivalent -hsa:195827 up:Q7RTV5 equivalent -hsa:195828 up:Q7RTV3 equivalent -hsa:1959 up:P11161 equivalent -hsa:195977 up:A0A2U7XUX1 equivalent -hsa:195977 up:A6NF34 equivalent -hsa:196 up:P35869 equivalent -hsa:1960 up:Q06889 equivalent -hsa:196051 up:Q5VZY2 equivalent -hsa:196074 up:A6NJ78 equivalent -hsa:1961 up:B7ZKU3 equivalent -hsa:1961 up:Q05215 equivalent -hsa:1962 up:Q08426 equivalent -hsa:196264 up:Q6UWV2 equivalent -hsa:196294 up:Q96LU5 equivalent -hsa:196335 up:Q8NH76 equivalent -hsa:196374 up:Q8N1N4 equivalent -hsa:196383 up:Q969X0 equivalent -hsa:196385 up:B0I1S1 equivalent -hsa:196385 up:Q8IVF4 equivalent -hsa:196394 up:Q8IY45 equivalent -hsa:1964 up:P47813 equivalent -hsa:196403 up:Q8N9I9 equivalent -hsa:196410 up:Q6UX53 equivalent -hsa:196441 up:O60293 equivalent -hsa:196446 up:Q96LU7 equivalent -hsa:196463 up:Q8NHP8 equivalent -hsa:196472 up:Q8NEG0 equivalent -hsa:196477 up:Q8TC90 equivalent -hsa:196483 up:K7ES84 reverse -hsa:196483 up:Q96G04 equivalent -hsa:1965 up:P05198 equivalent -hsa:1965 up:Q53XC0 equivalent -hsa:196500 up:Q8IYJ0 equivalent -hsa:196513 up:Q8IZD4 equivalent -hsa:196527 up:B3KX12 equivalent -hsa:196527 up:Q4KMQ2 equivalent -hsa:196528 up:Q68CP9 equivalent -hsa:196541 up:Q5VZV1 equivalent -hsa:1967 up:Q14232 equivalent -hsa:196740 up:Q8IW00 equivalent -hsa:196743 up:Q6QHF9 equivalent -hsa:196792 up:Q8N5W8 equivalent -hsa:1968 up:P41091 equivalent -hsa:196883 up:Q8NFM4 equivalent -hsa:1969 up:P29317 equivalent -hsa:196951 up:Q96M60 equivalent -hsa:196996 up:Q8IUY3 equivalent -hsa:197 up:P02765 equivalent -hsa:197021 up:Q6UWM7 equivalent -hsa:197131 up:Q8IWV7 equivalent -hsa:197135 up:C9JE40 equivalent -hsa:197257 up:Q86WU2 equivalent -hsa:197258 up:Q8N0W3 equivalent -hsa:197259 up:Q8NB16 equivalent -hsa:1973 up:P60842 equivalent -hsa:197320 up:Q96MU6 equivalent -hsa:197322 up:Q4G176 equivalent -hsa:197335 up:Q96KV7 equivalent -hsa:197342 up:A4GXA9 equivalent -hsa:197358 up:C3VPR7 equivalent -hsa:197358 up:Q7RTR2 equivalent -hsa:197358 up:Q8NF06 equivalent -hsa:197370 up:Q8WV22 equivalent -hsa:1974 up:Q14240 equivalent -hsa:197407 up:Q96MX3 equivalent -hsa:1975 up:P23588 equivalent -hsa:1977 up:P06730 equivalent -hsa:1978 up:Q13541 equivalent -hsa:1979 up:Q13542 equivalent -hsa:1981 up:Q04637 equivalent -hsa:1981 up:Q96I65 equivalent -hsa:1982 up:P78344 equivalent -hsa:1982 up:Q2TU89 equivalent -hsa:1983 up:P55010 equivalent -hsa:1984 up:P63241 equivalent -hsa:198437 up:Q8TD35 equivalent -hsa:199 up:P55008 equivalent -hsa:199 up:Q4V347 equivalent -hsa:1990 up:Q9UNI1 equivalent -hsa:1991 up:P08246 equivalent -hsa:1992 up:P30740 equivalent -hsa:1992 up:V9HWH1 equivalent -hsa:199221 up:Q8IYY4 equivalent -hsa:199223 up:Q8NDW8 equivalent -hsa:1993 up:Q12926 equivalent -hsa:1994 up:Q15717 equivalent -hsa:1995 up:Q14576 equivalent -hsa:1996 up:P26378 equivalent -hsa:199675 up:A0A384NYE9 equivalent -hsa:199675 up:Q8IX19 equivalent -hsa:199692 up:Q7L945 equivalent -hsa:199699 up:Q8N907 equivalent -hsa:1997 up:P32519 equivalent -hsa:1997 up:Q6MZZ4 equivalent -hsa:199704 up:Q6P3V2 equivalent -hsa:199713 up:Q8WX94 equivalent -hsa:199720 up:Q86UU5 equivalent -hsa:199731 up:Q8NFZ8 equivalent -hsa:199745 up:Q8NA92 equivalent -hsa:199746 up:Q8WU68 equivalent -hsa:199777 up:Q68DY1 equivalent -hsa:199786 up:Q86XR2 equivalent -hsa:1998 up:Q15723 equivalent -hsa:199800 up:C9JUS6 equivalent -hsa:199834 up:Q5TA78 equivalent -hsa:199857 up:Q96F25 equivalent -hsa:199870 up:Q8TAV0 equivalent -hsa:1999 up:P78545 equivalent -hsa:199920 up:Q5VWT5 equivalent -hsa:199953 up:Q5SNT2 equivalent -hsa:199964 up:Q8N0U2 equivalent -hsa:199974 up:Q86W10 equivalent -hsa:199990 up:Q6NZ36 equivalent -hsa:2 up:P01023 equivalent -hsa:20 up:Q9BZC7 equivalent -hsa:2000 up:Q99607 equivalent -hsa:200008 up:Q5VXM1 equivalent -hsa:200010 up:Q2M3M2 equivalent -hsa:200014 up:Q5T0F9 equivalent -hsa:200030 up:Q86T75 equivalent -hsa:200035 up:P0C025 equivalent -hsa:200081 up:P40222 equivalent -hsa:2001 up:A8K443 equivalent -hsa:2001 up:Q9UKW6 equivalent -hsa:200132 up:Q8N7M0 equivalent -hsa:200150 up:Q8N7P1 equivalent -hsa:200159 up:Q5SVJ3 equivalent -hsa:200162 up:Q6Q759 equivalent -hsa:200172 up:A0A140VJU6 equivalent -hsa:200172 up:Q499Z3 equivalent -hsa:200185 up:Q8N6L1 equivalent -hsa:200186 up:Q53ET0 equivalent -hsa:2002 up:P19419 equivalent -hsa:200205 up:Q5T440 equivalent -hsa:200232 up:Q5JX71 equivalent -hsa:200312 up:Q9Y6U7 equivalent -hsa:200315 up:A0A0K0MJ49 equivalent -hsa:200315 up:P31941 equivalent -hsa:200316 up:Q8IUX4 equivalent -hsa:200350 up:B3KVK3 equivalent -hsa:200350 up:Q9NU39 equivalent -hsa:200373 up:Q4G0U5 equivalent -hsa:2004 up:P41970 equivalent -hsa:200403 up:Q502W6 equivalent -hsa:200407 up:Q8IUH2 equivalent -hsa:200424 up:O43151 equivalent -hsa:2005 up:P28324 equivalent -hsa:2005 up:Q8IXL1 equivalent -hsa:200504 up:Q86XP6 equivalent -hsa:200523 up:A0A140VK60 equivalent -hsa:200523 up:Q96LM6 equivalent -hsa:200539 up:Q86SG2 equivalent -hsa:200558 up:Q8IW19 equivalent -hsa:200576 up:Q9Y2I7 equivalent -hsa:2006 up:P15502 equivalent -hsa:200634 up:Q53RY4 equivalent -hsa:200726 up:A0A1B0GTK4 equivalent -hsa:200728 up:Q86X19 equivalent -hsa:200734 up:B3KPL5 equivalent -hsa:200734 up:Q7Z698 equivalent -hsa:200765 up:Q96MW7 equivalent -hsa:200844 up:Q6ZVT6 equivalent -hsa:200845 up:Q8NC69 equivalent -hsa:200879 up:Q8WWY8 equivalent -hsa:200894 up:Q3SXY8 equivalent -hsa:200895 up:Q86XF0 equivalent -hsa:2009 up:O00423 equivalent -hsa:200909 up:Q70Z44 equivalent -hsa:200916 up:Q6P5R6 equivalent -hsa:200931 up:Q86UW1 equivalent -hsa:200933 up:P0C2W1 equivalent -hsa:200942 up:Q8IXV7 equivalent -hsa:200942 up:Q96DZ8 equivalent -hsa:200958 up:Q8N307 equivalent -hsa:200959 up:A8MPY1 equivalent -hsa:2010 up:P50402 equivalent -hsa:2011 up:Q7KZI7 equivalent -hsa:201134 up:Q8N8E3 equivalent -hsa:201140 up:A6NNS2 equivalent -hsa:201158 up:Q96ET8 equivalent -hsa:201161 up:Q7Z7K6 equivalent -hsa:201163 up:Q8NFG4 equivalent -hsa:201164 up:Q8N2A8 equivalent -hsa:201176 up:Q6ZUM4 equivalent -hsa:201191 up:Q8IZD0 equivalent -hsa:2012 up:P54849 equivalent -hsa:201229 up:A8MSI8 equivalent -hsa:201232 up:Q7RTY0 equivalent -hsa:201243 up:Q0P670 equivalent -hsa:201254 up:A8MT69 equivalent -hsa:201255 up:Q96CN5 equivalent -hsa:201266 up:Q8N1S5 equivalent -hsa:201292 up:Q6PJ69 equivalent -hsa:201294 up:Q70J99 equivalent -hsa:201299 up:Q8NG50 equivalent -hsa:2013 up:P54851 equivalent -hsa:2013 up:Q7Z4B3 equivalent -hsa:201305 up:Q6ZMD2 equivalent -hsa:2014 up:P54852 equivalent -hsa:201456 up:Q8NCQ5 equivalent -hsa:201475 up:Q6IQ22 equivalent -hsa:2015 up:Q14246 equivalent -hsa:201501 up:A1YPR0 equivalent -hsa:201501 up:B2RG49 equivalent -hsa:201514 up:Q8IVC4 equivalent -hsa:201516 up:Q8NAM6 equivalent -hsa:201562 up:Q6Y1H2 equivalent -hsa:201595 up:Q8TCJ2 equivalent -hsa:2016 up:Q04741 equivalent -hsa:201625 up:Q6ZR08 equivalent -hsa:201626 up:Q6L8Q7 equivalent -hsa:201627 up:Q8IWF6 equivalent -hsa:201633 up:Q495A1 equivalent -hsa:2017 up:Q14247 equivalent -hsa:2017 up:Q53HG7 equivalent -hsa:201725 up:Q504U0 equivalent -hsa:201780 up:Q96EP9 equivalent -hsa:201798 up:Q8IY51 equivalent -hsa:201799 up:Q6P9G4 equivalent -hsa:2018 up:Q04743 equivalent -hsa:201895 up:Q96QK8 equivalent -hsa:2019 up:Q05925 equivalent -hsa:201931 up:Q8IY95 equivalent -hsa:201965 up:Q6NW29 equivalent -hsa:201973 up:Q96LW4 equivalent -hsa:202 up:B3KPT0 equivalent -hsa:202 up:Q9Y4K1 equivalent -hsa:2020 up:P19622 equivalent -hsa:202018 up:Q6NXT6 equivalent -hsa:202051 up:Q86W54 equivalent -hsa:202052 up:Q9H819 equivalent -hsa:2021 up:E5KNL5 equivalent -hsa:2021 up:Q14249 equivalent -hsa:202151 up:Q86VV4 equivalent -hsa:2022 up:P17813 equivalent -hsa:2022 up:Q96CG0 equivalent -hsa:202243 up:Q86Z20 equivalent -hsa:2023 up:A0A024R4F1 equivalent -hsa:2023 up:P06733 equivalent -hsa:202309 up:Q8N292 equivalent -hsa:202333 up:Q8N3K9 equivalent -hsa:202374 up:Q8WU08 equivalent -hsa:202500 up:Q5JU00 equivalent -hsa:202559 up:Q5VWX1 equivalent -hsa:2026 up:P09104 equivalent -hsa:2026 up:Q6FHV6 equivalent -hsa:202658 up:A0A096LP39 equivalent -hsa:202658 up:A6ZJ12 equivalent -hsa:2027 up:P13929 equivalent -hsa:2028 up:Q07075 equivalent -hsa:202865 up:A0A090N8Y1 equivalent -hsa:202865 up:Q8WU49 equivalent -hsa:2029 up:O43768 equivalent -hsa:202915 up:Q6ZMB5 equivalent -hsa:203 up:P00568 equivalent -hsa:203 up:Q6FGX9 equivalent -hsa:2030 up:Q99808 equivalent -hsa:203054 up:Q3MIX3 equivalent -hsa:203062 up:Q96NA8 equivalent -hsa:203068 up:P07437 equivalent -hsa:203068 up:Q5SU16 equivalent -hsa:203069 up:Q9Y3T6 equivalent -hsa:203074 up:Q6UWB4 equivalent -hsa:203076 up:Q6P047 equivalent -hsa:203100 up:P83105 equivalent -hsa:203102 up:A0A140VJD9 equivalent -hsa:203102 up:Q8TC27 equivalent -hsa:203111 up:Q6P6B1 equivalent -hsa:203190 up:Q8N145 equivalent -hsa:203197 up:Q5VZI3 equivalent -hsa:203228 up:Q96LT7 equivalent -hsa:203238 up:Q6TFL3 equivalent -hsa:203245 up:Q69YI7 equivalent -hsa:203259 up:Q8IW50 equivalent -hsa:203260 up:Q8WV48 equivalent -hsa:203286 up:B3KXP1 equivalent -hsa:203286 up:Q68DC2 equivalent -hsa:2033 up:Q09472 equivalent -hsa:2033 up:Q7Z6C1 equivalent -hsa:203328 up:Q96L08 equivalent -hsa:2034 up:B3KW07 equivalent -hsa:2034 up:Q99814 equivalent -hsa:203413 up:Q5H943 equivalent -hsa:203427 up:Q8WUT9 equivalent -hsa:203430 up:Q8N8U3 equivalent -hsa:203447 up:Q7Z2Y5 equivalent -hsa:2035 up:P11171 equivalent -hsa:2035 up:Q1WWM3 equivalent -hsa:2035 up:Q59F12 equivalent -hsa:203522 up:Q5JSJ4 equivalent -hsa:203523 up:Q6P9G9 equivalent -hsa:203523 up:Q7Z3P1 equivalent -hsa:203547 up:Q3ZAQ7 equivalent -hsa:203562 up:A0A140VK58 equivalent -hsa:203562 up:Q5JXX7 equivalent -hsa:203569 up:Q7Z2X7 equivalent -hsa:2036 up:Q9H4G0 equivalent -hsa:203611 up:Q9Y6F7 equivalent -hsa:2037 up:I6L9B1 equivalent -hsa:2037 up:O43491 equivalent -hsa:2038 up:P16452 equivalent -hsa:203859 up:Q75V66 equivalent -hsa:2039 up:Q08495 equivalent -hsa:204 up:A0A140VK93 equivalent -hsa:204 up:P54819 equivalent -hsa:2040 up:P27105 equivalent -hsa:2041 up:P21709 equivalent -hsa:2042 up:A0A140VJJ0 equivalent -hsa:2042 up:P29320 equivalent -hsa:2042 up:Q6P4R6 equivalent -hsa:204219 up:Q8IU89 equivalent -hsa:2043 up:P54764 equivalent -hsa:2044 up:A0A384MU00 equivalent -hsa:2044 up:B7ZKJ3 equivalent -hsa:2044 up:P54756 equivalent -hsa:2044 up:Q59FT4 equivalent -hsa:204474 up:Q8N807 equivalent -hsa:2045 up:Q15375 equivalent -hsa:2046 up:P29322 equivalent -hsa:2047 up:P54762 equivalent -hsa:2048 up:P29323 equivalent -hsa:2048 up:Q4LE53 equivalent -hsa:2048 up:Q6NVW1 equivalent -hsa:204801 up:P59045 equivalent -hsa:204851 up:B4DZ33 equivalent -hsa:204851 up:Q86Z02 equivalent -hsa:2049 up:P54753 equivalent -hsa:204962 up:Q8NCS7 equivalent -hsa:205 up:P27144 equivalent -hsa:2050 up:P54760 equivalent -hsa:2050 up:Q541P7 equivalent -hsa:2050 up:Q96L35 equivalent -hsa:2051 up:F8WCM8 equivalent -hsa:2051 up:O15197 equivalent -hsa:205147 up:Q8N944 equivalent -hsa:2052 up:P07099 equivalent -hsa:2052 up:R4SBI6 equivalent -hsa:2053 up:P34913 equivalent -hsa:205327 up:Q8N8R5 equivalent -hsa:2054 up:P32856 equivalent -hsa:205428 up:B3KTD4 equivalent -hsa:205428 up:Q8NDZ4 equivalent -hsa:2055 up:Q9UBY8 equivalent -hsa:205564 up:Q96HI0 equivalent -hsa:2056 up:G9JKG7 equivalent -hsa:2056 up:P01588 equivalent -hsa:2057 up:P19235 equivalent -hsa:205717 up:Q68DE3 equivalent -hsa:2058 up:P07814 equivalent -hsa:205860 up:A0A804HJA0 equivalent -hsa:205860 up:Q8N7C3 equivalent -hsa:2059 up:B4E3T6 equivalent -hsa:2059 up:Q12929 equivalent -hsa:2060 up:P42566 equivalent -hsa:2063 up:F1D8R3 equivalent -hsa:2063 up:P10588 equivalent -hsa:206338 up:Q0P5U8 equivalent -hsa:206338 up:Q6Q4G3 equivalent -hsa:206358 up:Q7Z2H8 equivalent -hsa:2064 up:P04626 equivalent -hsa:2064 up:X5DNK3 equivalent -hsa:206412 up:Q5TEZ5 equivalent -hsa:2065 up:P21860 equivalent -hsa:2066 up:Q15303 equivalent -hsa:2067 up:P07992 equivalent -hsa:2068 up:P18074 equivalent -hsa:2069 up:O14944 equivalent -hsa:207 up:B0LPE5 equivalent -hsa:207 up:P31749 equivalent -hsa:2070 up:O95677 equivalent -hsa:2070 up:Q96CJ7 equivalent -hsa:207063 up:Q8N5I4 equivalent -hsa:2071 up:P19447 equivalent -hsa:2072 up:A0A1W1GSK9 equivalent -hsa:2072 up:Q92889 equivalent -hsa:2073 up:P28715 equivalent -hsa:2074 up:Q03468 equivalent -hsa:2074 up:Q59FF6 equivalent -hsa:2077 up:P50548 equivalent -hsa:2078 up:P11308 equivalent -hsa:2079 up:P84090 equivalent -hsa:208 up:P31751 equivalent -hsa:2081 up:O75460 equivalent -hsa:2086 up:Q14264 equivalent -hsa:2091 up:P22087 equivalent -hsa:2098 up:A0A140VJJ2 equivalent -hsa:2098 up:P10768 equivalent -hsa:2099 up:G4XH65 equivalent -hsa:2099 up:P03372 equivalent -hsa:21 up:Q4LE27 equivalent -hsa:21 up:Q99758 equivalent -hsa:210 up:A0A140VJL9 equivalent -hsa:210 up:P13716 equivalent -hsa:210 up:Q6ZMU0 equivalent -hsa:2100 up:Q7LCB3 equivalent -hsa:2100 up:Q92731 equivalent -hsa:2101 up:P11474 equivalent -hsa:2101 up:Q569H8 equivalent -hsa:2103 up:O95718 equivalent -hsa:2104 up:F1D8R5 equivalent -hsa:2104 up:P62508 equivalent -hsa:2107 up:P62495 equivalent -hsa:2108 up:A0A0S2Z3L0 equivalent -hsa:2108 up:P13804 equivalent -hsa:2109 up:P38117 equivalent -hsa:211 up:P13196 equivalent -hsa:211 up:Q5JAM2 equivalent -hsa:2110 up:B4DEQ0 equivalent -hsa:2110 up:Q16134 equivalent -hsa:2113 up:B4DW78 equivalent -hsa:2113 up:P14921 equivalent -hsa:2114 up:P15036 equivalent -hsa:2115 up:P50549 equivalent -hsa:2116 up:O00321 equivalent -hsa:2117 up:P41162 equivalent -hsa:2118 up:P43268 equivalent -hsa:2119 up:P41161 equivalent -hsa:212 up:P22557 equivalent -hsa:2120 up:A0A0S2Z3C9 equivalent -hsa:2120 up:P41212 equivalent -hsa:2121 up:P57679 equivalent -hsa:2122 up:Q03112 equivalent -hsa:2123 up:P22794 equivalent -hsa:2124 up:P34910 equivalent -hsa:2124 up:Q9BRW1 equivalent -hsa:2125 up:Q92817 equivalent -hsa:2128 up:P49640 equivalent -hsa:213 up:P02768 equivalent -hsa:2130 up:Q01844 equivalent -hsa:2131 up:Q16394 equivalent -hsa:2132 up:Q93063 equivalent -hsa:2134 up:Q92935 equivalent -hsa:2135 up:Q9UBQ6 equivalent -hsa:2137 up:A0A384NPY9 equivalent -hsa:2137 up:O43909 equivalent -hsa:2138 up:B3KXR1 equivalent -hsa:2138 up:Q99502 equivalent -hsa:2139 up:O00167 equivalent -hsa:214 up:Q13740 equivalent -hsa:2140 up:Q99504 equivalent -hsa:2145 up:Q92800 equivalent -hsa:2146 up:Q15910 equivalent -hsa:2147 up:P00734 equivalent -hsa:2149 up:P25116 equivalent -hsa:215 up:P33897 equivalent -hsa:2150 up:P55085 equivalent -hsa:2151 up:O00254 equivalent -hsa:2152 up:P13726 equivalent -hsa:2153 up:P12259 equivalent -hsa:2155 up:P08709 equivalent -hsa:2157 up:P00451 equivalent -hsa:2158 up:P00740 equivalent -hsa:2159 up:P00742 equivalent -hsa:2159 up:Q5JVE7 equivalent -hsa:216 up:P00352 equivalent -hsa:216 up:V9HW83 equivalent -hsa:2160 up:P03951 equivalent -hsa:2161 up:P00748 equivalent -hsa:2161 up:Q8IZZ5 equivalent -hsa:2162 up:P00488 equivalent -hsa:2165 up:P05160 equivalent -hsa:2166 up:O00519 equivalent -hsa:2166 up:Q9UG55 equivalent -hsa:2167 up:E7DVW4 equivalent -hsa:2167 up:P15090 equivalent -hsa:2168 up:P07148 equivalent -hsa:2168 up:Q05CP7 equivalent -hsa:2168 up:Q6FGL7 equivalent -hsa:2169 up:P12104 equivalent -hsa:217 up:A0A384NPN7 equivalent -hsa:217 up:P05091 equivalent -hsa:2170 up:A0A384MDY5 equivalent -hsa:2170 up:P05413 equivalent -hsa:2171 up:E7DVW5 equivalent -hsa:2171 up:Q01469 equivalent -hsa:2172 up:P51161 equivalent -hsa:2173 up:O15540 equivalent -hsa:2175 up:O15360 equivalent -hsa:2176 up:A0A024R9N2 equivalent -hsa:2176 up:Q00597 equivalent -hsa:2177 up:Q9BXW9 equivalent -hsa:2178 up:Q9HB96 equivalent -hsa:218 up:P30838 equivalent -hsa:218 up:Q6PKA6 equivalent -hsa:2180 up:A8K9T3 equivalent -hsa:2180 up:P33121 equivalent -hsa:2181 up:O95573 equivalent -hsa:2182 up:O60488 equivalent -hsa:2184 up:A0A384P5L6 equivalent -hsa:2184 up:P16930 equivalent -hsa:2185 up:Q14289 equivalent -hsa:2186 up:Q12830 equivalent -hsa:2187 up:Q8NB91 equivalent -hsa:2188 up:A3KME0 equivalent -hsa:2188 up:Q9NPI8 equivalent -hsa:2189 up:O15287 equivalent -hsa:2189 up:Q53XM5 equivalent -hsa:219 up:A0A384MTJ7 equivalent -hsa:219 up:P30837 equivalent -hsa:2191 up:Q12884 equivalent -hsa:2192 up:P23142 equivalent -hsa:2192 up:Q8NBH6 equivalent -hsa:219285 up:Q8IVG5 equivalent -hsa:219287 up:Q8N7J2 equivalent -hsa:219293 up:Q5T2N8 equivalent -hsa:2193 up:Q6IBR2 equivalent -hsa:2193 up:Q9Y285 equivalent -hsa:219333 up:O75317 equivalent -hsa:219348 up:Q5JTB6 equivalent -hsa:2194 up:P49327 equivalent -hsa:219402 up:Q9H2K0 equivalent -hsa:219409 up:Q9H4S2 equivalent -hsa:219417 up:Q8NH10 equivalent -hsa:219428 up:Q8NGL9 equivalent -hsa:219429 up:A0A126GVN6 equivalent -hsa:219429 up:Q6IEV9 equivalent -hsa:219431 up:A0A126GVG1 equivalent -hsa:219431 up:Q8NH73 equivalent -hsa:219432 up:A0A126GVN0 equivalent -hsa:219432 up:Q8NH72 equivalent -hsa:219436 up:Q8NGL3 equivalent -hsa:219437 up:A0A126GVL0 equivalent -hsa:219437 up:Q8NGL2 equivalent -hsa:219438 up:Q8NGL1 equivalent -hsa:219447 up:A0A126GVD4 equivalent -hsa:219447 up:Q8N127 equivalent -hsa:219453 up:Q8NH50 equivalent -hsa:219464 up:Q8NGG2 equivalent -hsa:219469 up:A0A126GVW6 equivalent -hsa:219469 up:Q8NGG4 equivalent -hsa:219473 up:Q8NH51 equivalent -hsa:219477 up:Q8NGP2 equivalent -hsa:219479 up:Q8NH85 equivalent -hsa:219482 up:Q8NGP4 equivalent -hsa:219484 up:A0A126GWD6 equivalent -hsa:219484 up:Q8NGP6 equivalent -hsa:219487 up:A0A126GVL9 equivalent -hsa:219487 up:Q96RB7 equivalent -hsa:219493 up:A0A126GVM6 equivalent -hsa:219493 up:Q8NGP9 equivalent -hsa:2195 up:Q14517 equivalent -hsa:219527 up:A0A494C0H1 equivalent -hsa:219527 up:Q6ZSA7 equivalent -hsa:219537 up:A8MU46 equivalent -hsa:219539 up:Q96NS1 equivalent -hsa:219541 up:A0JLT2 equivalent -hsa:219557 up:Q8TBZ9 equivalent -hsa:219578 up:A4D1E1 equivalent -hsa:2196 up:Q6PIA2 equivalent -hsa:2196 up:Q9NYQ8 equivalent -hsa:219621 up:Q8IVU9 equivalent -hsa:219623 up:Q6ZUK4 equivalent -hsa:219654 up:Q8N2G6 equivalent -hsa:219670 up:Q8TC29 equivalent -hsa:219681 up:Q5W041 equivalent -hsa:219699 up:Q8IZJ1 equivalent -hsa:2197 up:P62861 equivalent -hsa:219736 up:Q6ZVD7 equivalent -hsa:219738 up:Q96D05 equivalent -hsa:219743 up:Q2T9J0 equivalent -hsa:219749 up:P17030 equivalent -hsa:219770 up:Q96KN9 equivalent -hsa:219771 up:Q8ND76 equivalent -hsa:219790 up:Q8IZC4 equivalent -hsa:219793 up:Q96M53 equivalent -hsa:219844 up:Q96M11 equivalent -hsa:219854 up:A2RU14 equivalent -hsa:219855 up:Q8TED4 equivalent -hsa:219858 up:A0A126GWS7 equivalent -hsa:219858 up:Q8NGG6 equivalent -hsa:219865 up:A0A126GVX5 equivalent -hsa:219865 up:A0A126GW95 equivalent -hsa:219865 up:Q8NG78 equivalent -hsa:219869 up:A0A126GVX3 equivalent -hsa:219869 up:Q8NGN5 equivalent -hsa:219870 up:Q8NGN4 equivalent -hsa:219873 up:Q8NGN2 equivalent -hsa:219874 up:Q8NGN1 equivalent -hsa:219875 up:A0A126GVD9 equivalent -hsa:219875 up:Q8NGN0 equivalent -hsa:219899 up:Q5QJ74 equivalent -hsa:2199 up:P98095 equivalent -hsa:2199 up:Q86V58 equivalent -hsa:2199 up:Q9Y3V7 equivalent -hsa:219902 up:Q6ZRR5 equivalent -hsa:219927 up:Q7Z2W9 equivalent -hsa:219931 up:Q59G56 equivalent -hsa:219931 up:Q8NHX9 equivalent -hsa:219938 up:A0A140VKB6 equivalent -hsa:219938 up:Q7Z5L4 equivalent -hsa:219952 up:A0A126GVP6 equivalent -hsa:219952 up:Q8NGQ2 equivalent -hsa:219954 up:A0A126GVJ4 equivalent -hsa:219954 up:Q8NGQ6 equivalent -hsa:219956 up:Q8NGQ5 equivalent -hsa:219957 up:A0A126GW85 equivalent -hsa:219957 up:Q8NGE9 equivalent -hsa:219958 up:Q8NGQ3 equivalent -hsa:219959 up:Q8NH92 equivalent -hsa:219960 up:Q8NGQ4 equivalent -hsa:219965 up:A0A126GVL8 equivalent -hsa:219965 up:Q8NGF7 equivalent -hsa:219968 up:A6NL26 equivalent -hsa:219970 up:Q8WU03 equivalent -hsa:219972 up:Q2M385 equivalent -hsa:219981 up:A0A126GVD5 equivalent -hsa:219981 up:Q8NGI9 equivalent -hsa:219982 up:Q8NGJ0 equivalent -hsa:219983 up:Q8NGJ1 equivalent -hsa:219986 up:A0A126GVQ9 equivalent -hsa:219986 up:Q8NGI4 equivalent -hsa:219988 up:Q86TB9 equivalent -hsa:219990 up:A0A140VJR6 equivalent -hsa:219990 up:Q86WS3 equivalent -hsa:219995 up:Q8N5U1 equivalent -hsa:22 up:O75027 equivalent -hsa:220 up:P47895 equivalent -hsa:2200 up:P35555 equivalent -hsa:220001 up:Q96DN2 equivalent -hsa:220002 up:Q8NBI2 equivalent -hsa:220004 up:G3F4G3 equivalent -hsa:220004 up:Q7Z5V6 equivalent -hsa:220032 up:Q6W3E5 equivalent -hsa:220042 up:Q8IXT1 equivalent -hsa:220047 up:Q8IWF9 equivalent -hsa:220064 up:Q8WV07 equivalent -hsa:220074 up:Q8WZ04 equivalent -hsa:220081 up:Q5W0A0 equivalent -hsa:220082 up:A0A140VJV5 equivalent -hsa:220082 up:Q8NA61 equivalent -hsa:2201 up:P35556 equivalent -hsa:220107 up:Q6UYE1 equivalent -hsa:220108 up:Q86V42 equivalent -hsa:220134 up:Q96BD8 equivalent -hsa:220136 up:Q96M91 equivalent -hsa:220164 up:Q6PKX4 equivalent -hsa:2202 up:A0A0S2Z4F1 equivalent -hsa:2202 up:B2R6M6 equivalent -hsa:2202 up:Q12805 equivalent -hsa:220202 up:F1T0H4 equivalent -hsa:220202 up:Q8N100 equivalent -hsa:220213 up:Q5VV17 equivalent -hsa:220296 up:Q14CZ8 equivalent -hsa:2203 up:P09467 equivalent -hsa:220323 up:Q86UD1 equivalent -hsa:220359 up:Q6B0B8 equivalent -hsa:220382 up:A6NEQ2 equivalent -hsa:220388 up:Q8N998 equivalent -hsa:2204 up:P24071 equivalent -hsa:220416 up:Q05C16 equivalent -hsa:220441 up:Q8N8N0 equivalent -hsa:2205 up:P12319 equivalent -hsa:2206 up:Q01362 equivalent -hsa:2207 up:P30273 equivalent -hsa:2208 up:P06734 equivalent -hsa:220869 up:Q5RIA9 equivalent -hsa:2209 up:P12314 equivalent -hsa:220929 up:Q7Z4V0 equivalent -hsa:220963 up:Q7RTY1 equivalent -hsa:220965 up:A8K181 equivalent -hsa:220965 up:Q8NE31 equivalent -hsa:220972 up:Q5T0T0 equivalent -hsa:220988 up:A0A384NL63 equivalent -hsa:220988 up:P51991 equivalent -hsa:220992 up:Q8NCK3 equivalent -hsa:221 up:P43353 equivalent -hsa:221002 up:Q8N9B8 equivalent -hsa:221035 up:Q6NUK4 equivalent -hsa:221035 up:X5DR89 equivalent -hsa:221037 up:Q15652 equivalent -hsa:221044 up:A0A067XJX6 equivalent -hsa:221044 up:Q8WVF2 equivalent -hsa:221061 up:B3KMX9 equivalent -hsa:221061 up:Q5VUB5 equivalent -hsa:221061 up:Q9Y438 equivalent -hsa:221074 up:Q504Y0 equivalent -hsa:221078 up:Q8TEA1 equivalent -hsa:221079 up:B0YIW9 equivalent -hsa:221079 up:Q96KC2 equivalent -hsa:221091 up:Q8ND94 equivalent -hsa:221092 up:Q1KMD3 equivalent -hsa:221120 up:Q96Q83 equivalent -hsa:221143 up:B2RE94 equivalent -hsa:221143 up:Q8WVE0 equivalent -hsa:221150 up:Q8IX90 equivalent -hsa:221154 up:A0A0S2Z6V5 equivalent -hsa:221154 up:Q8IYU8 equivalent -hsa:221178 up:A0A024RDM6 equivalent -hsa:221178 up:Q96N96 equivalent -hsa:221184 up:Q96FN4 equivalent -hsa:221188 up:Q8IZF4 equivalent -hsa:221191 up:A0A140VKC3 equivalent -hsa:221191 up:Q6PEW0 equivalent -hsa:2212 up:P12318 equivalent -hsa:221223 up:Q6NT32 equivalent -hsa:221264 up:Q5TCS8 equivalent -hsa:221294 up:Q5TFE4 equivalent -hsa:221294 up:Q9H2R1 equivalent -hsa:2213 up:P31994 equivalent -hsa:221301 up:Q5JW98 equivalent -hsa:221302 up:A0A0S2Z644 equivalent -hsa:221302 up:Q96AP4 equivalent -hsa:221303 up:Q5T6X4 equivalent -hsa:221322 up:Q96NH3 equivalent -hsa:221336 up:Q5SZJ8 equivalent -hsa:221357 up:Q7RTV2 equivalent -hsa:221391 up:Q6U736 equivalent -hsa:221393 up:Q8IZF3 equivalent -hsa:221395 up:Q8IZF2 equivalent -hsa:2214 up:P08637 equivalent -hsa:221400 up:O60522 equivalent -hsa:221409 up:Q496A3 equivalent -hsa:221421 up:Q9H1X1 equivalent -hsa:221424 up:Q5JTD7 equivalent -hsa:221443 up:Q9Y530 equivalent -hsa:221458 up:Q6ZMV9 equivalent -hsa:221468 up:Q8N7C4 equivalent -hsa:221472 up:Q7Z6J4 equivalent -hsa:221476 up:Q6UXB8 equivalent -hsa:221477 up:Q6UWU4 equivalent -hsa:221481 up:Q5T9G4 equivalent -hsa:221491 up:A0A2U3TZT1 equivalent -hsa:221491 up:Q86T20 equivalent -hsa:221496 up:Q8NC56 equivalent -hsa:2215 up:A0A3B3ISU3 equivalent -hsa:2215 up:O75015 equivalent -hsa:221504 up:A0A1U9X8U5 equivalent -hsa:221504 up:Q96C00 equivalent -hsa:221527 up:Q9Y330 equivalent -hsa:221545 up:A0A1U9X7F4 equivalent -hsa:221545 up:Q5SQH8 equivalent -hsa:221613 up:Q96QV6 equivalent -hsa:221656 up:Q8NB78 equivalent -hsa:221662 up:A8KAI7 equivalent -hsa:221662 up:Q9BX46 equivalent -hsa:221687 up:Q8N6D2 equivalent -hsa:221692 up:B4DHU0 equivalent -hsa:221692 up:Q9C0D0 equivalent -hsa:2217 up:A0A024QZI2 equivalent -hsa:2217 up:P55899 equivalent -hsa:221710 up:P0DJ93 equivalent -hsa:221711 up:B4DFB8 equivalent -hsa:221711 up:Q5T4T6 equivalent -hsa:221749 up:Q5TGL8 equivalent -hsa:221785 up:Q6NSZ9 equivalent -hsa:221786 up:Q8TCP9 equivalent -hsa:2218 up:O75072 equivalent -hsa:221806 up:Q8N2E2 equivalent -hsa:221823 up:P21108 equivalent -hsa:221830 up:Q3B726 equivalent -hsa:221833 up:A8K350 equivalent -hsa:221833 up:Q8IXZ3 equivalent -hsa:221895 up:Q86VZ6 equivalent -hsa:2219 up:O00602 equivalent -hsa:221908 up:Q8TAP8 equivalent -hsa:221914 up:Q8N158 equivalent -hsa:221927 up:Q6PJG6 equivalent -hsa:221935 up:Q7Z5N4 equivalent -hsa:221937 up:P85037 equivalent -hsa:221938 up:Q8IY49 equivalent -hsa:221955 up:Q8NCG7 equivalent -hsa:221960 up:P86790 equivalent -hsa:221960 up:P86791 equivalent -hsa:221981 up:Q9UPZ6 equivalent -hsa:2220 up:Q15485 equivalent -hsa:222008 up:Q8TAG5 equivalent -hsa:222068 up:Q7Z7H5 equivalent -hsa:222166 up:Q8N3F0 equivalent -hsa:222171 up:A4D1A1 equivalent -hsa:222171 up:Q8IV56 equivalent -hsa:222183 up:A0A087WXA3 equivalent -hsa:222194 up:Q6PCB5 equivalent -hsa:2222 up:P37268 equivalent -hsa:2222 up:Q6IAX1 equivalent -hsa:222223 up:A8MWY0 equivalent -hsa:222229 up:A0A140VJD0 equivalent -hsa:222229 up:Q9UFC0 equivalent -hsa:222234 up:Q8N0U4 equivalent -hsa:222235 up:Q8N1P0 equivalent -hsa:222235 up:Q8NEE6 equivalent -hsa:222236 up:Q6IQ20 equivalent -hsa:222255 up:Q9ULK2 equivalent -hsa:222256 up:Q6ZTQ4 equivalent -hsa:222389 up:Q8N7W2 equivalent -hsa:2224 up:P14324 equivalent -hsa:222484 up:Q8N448 equivalent -hsa:222487 up:Q86Y34 equivalent -hsa:222537 up:Q8IZT8 equivalent -hsa:222545 up:Q5T6X5 equivalent -hsa:222546 up:Q8HWS3 equivalent -hsa:222553 up:Q5T1Q4 equivalent -hsa:222584 up:Q5T0W9 equivalent -hsa:222642 up:Q5TGU0 equivalent -hsa:222643 up:H8YHX0 equivalent -hsa:222643 up:Q8IV45 equivalent -hsa:222658 up:Q7Z5Y7 equivalent -hsa:222659 up:Q8NFP0 equivalent -hsa:222662 up:Q8TAF8 equivalent -hsa:222663 up:Q8IX30 equivalent -hsa:222696 up:Q3MJ62 equivalent -hsa:222698 up:Q5M9Q1 equivalent -hsa:222826 up:Q8IXS0 equivalent -hsa:222865 up:Q8N3G9 equivalent -hsa:222894 up:Q96RJ6 equivalent -hsa:222950 up:Q6ZVC0 equivalent -hsa:222962 up:Q7RTT9 equivalent -hsa:222967 up:B2RC85 equivalent -hsa:223 up:P49189 equivalent -hsa:2230 up:P10109 equivalent -hsa:223075 up:A0A087WUB1 equivalent -hsa:223075 up:Q6ZRS4 equivalent -hsa:223082 up:A0A090N8Y8 equivalent -hsa:223082 up:Q8NHG8 equivalent -hsa:223117 up:O95025 equivalent -hsa:2232 up:A0A0C4DFN8 equivalent -hsa:2232 up:P22570 equivalent -hsa:2235 up:P22830 equivalent -hsa:2235 up:Q7KZA3 equivalent -hsa:2237 up:P39748 equivalent -hsa:2237 up:Q6FHX6 equivalent -hsa:2239 up:O75487 equivalent -hsa:224 up:P51648 equivalent -hsa:2241 up:P16591 equivalent -hsa:2241 up:W0S0X4 equivalent -hsa:2242 up:P07332 equivalent -hsa:2243 up:P02671 equivalent -hsa:2244 up:P02675 equivalent -hsa:2244 up:V9HVY1 equivalent -hsa:2245 up:P98174 equivalent -hsa:2246 up:A0A7U3JVZ2 equivalent -hsa:2246 up:P05230 equivalent -hsa:2247 up:P09038 equivalent -hsa:2248 up:A0A7U3JVY0 equivalent -hsa:2248 up:P11487 equivalent -hsa:2249 up:A0A7U3JW12 equivalent -hsa:2249 up:P08620 equivalent -hsa:225 up:Q9UBJ2 equivalent -hsa:2250 up:A0A7U3L5M4 equivalent -hsa:2250 up:P12034 equivalent -hsa:2250 up:Q8NBG6 equivalent -hsa:2251 up:A0A7U3JW05 equivalent -hsa:2251 up:P10767 equivalent -hsa:2252 up:A0A7U3JVY2 equivalent -hsa:2252 up:P21781 equivalent -hsa:2253 up:A1A515 equivalent -hsa:2253 up:P55075 equivalent -hsa:2254 up:A0A7U3L6D0 equivalent -hsa:2254 up:P31371 equivalent -hsa:2255 up:A0A7U3JW18 equivalent -hsa:2255 up:O15520 equivalent -hsa:2256 up:A0A7U3JVZ5 equivalent -hsa:2256 up:Q92914 equivalent -hsa:225689 up:Q8TD08 equivalent -hsa:2257 up:A0A7U3JVY3 equivalent -hsa:2257 up:P61328 equivalent -hsa:2258 up:A8K1P5 equivalent -hsa:2258 up:Q92913 equivalent -hsa:2259 up:A0A7U3JVZ8 equivalent -hsa:2259 up:Q92915 equivalent -hsa:226 up:P04075 equivalent -hsa:226 up:V9HWN7 equivalent -hsa:2260 up:P11362 equivalent -hsa:2261 up:P22607 equivalent -hsa:2261 up:Q0IJ44 equivalent -hsa:2262 up:P78333 equivalent -hsa:2263 up:P21802 equivalent -hsa:2264 up:P22455 equivalent -hsa:2266 up:P02679 equivalent -hsa:2267 up:Q08830 equivalent -hsa:2268 up:P09769 equivalent -hsa:2268 up:P78453 equivalent -hsa:2271 up:A0A0S2Z4C3 equivalent -hsa:2271 up:P07954 equivalent -hsa:2272 up:P49789 equivalent -hsa:2273 up:Q13642 equivalent -hsa:2274 up:Q14192 equivalent -hsa:2274 up:Q2XQU9 equivalent -hsa:2274 up:Q6I9R8 equivalent -hsa:2275 up:Q13643 equivalent -hsa:2277 up:O43915 equivalent -hsa:22794 up:O15234 equivalent -hsa:22795 up:Q14112 equivalent -hsa:22796 up:B1ALW7 equivalent -hsa:22796 up:Q14746 equivalent -hsa:22797 up:O14948 equivalent -hsa:22798 up:A4D0S4 equivalent -hsa:22798 up:B4DTV7 equivalent -hsa:22798 up:B7ZMJ6 equivalent -hsa:2280 up:P62942 equivalent -hsa:2280 up:Q0VDC6 equivalent -hsa:22800 up:P62070 equivalent -hsa:22801 up:B3KTN6 equivalent -hsa:22801 up:Q9UKX5 equivalent -hsa:22802 up:Q14CN2 equivalent -hsa:22803 up:Q9H0D6 equivalent -hsa:22806 up:Q9UKT9 equivalent -hsa:22807 up:Q9UKS7 equivalent -hsa:22808 up:O14807 equivalent -hsa:22808 up:Q6FGP0 equivalent -hsa:22808 up:Q8WVM9 equivalent -hsa:22809 up:Q9Y2D1 equivalent -hsa:2281 up:P68106 equivalent -hsa:22818 up:P61923 equivalent -hsa:22820 up:Q9Y678 equivalent -hsa:22821 up:Q14644 equivalent -hsa:22822 up:Q8WV24 equivalent -hsa:22823 up:Q7Z534 equivalent -hsa:22823 up:Q9Y483 equivalent -hsa:22824 up:A0A140VKE7 equivalent -hsa:22824 up:O95757 equivalent -hsa:22826 up:O75937 equivalent -hsa:22827 up:Q9UHX1 equivalent -hsa:22828 up:B7Z3A4 equivalent -hsa:22828 up:Q9UPN6 equivalent -hsa:22829 up:Q8NFZ3 equivalent -hsa:22832 up:Q5TB80 equivalent -hsa:22834 up:A8K9F2 equivalent -hsa:22834 up:Q9Y2D9 equivalent -hsa:22835 up:D3Y2A0 equivalent -hsa:22835 up:Q9Y2G7 equivalent -hsa:22836 up:O94955 equivalent -hsa:22837 up:Q53SF7 equivalent -hsa:22838 up:Q7L0R7 equivalent -hsa:22839 up:Q9Y2H0 equivalent -hsa:22841 up:Q7L804 equivalent -hsa:22843 up:Q8WY54 equivalent -hsa:22844 up:Q5SYB0 equivalent -hsa:22845 up:A0A0S2Z597 equivalent -hsa:22845 up:Q9UPQ8 equivalent -hsa:22846 up:Q7L8A9 equivalent -hsa:22847 up:Q8TCN5 equivalent -hsa:22848 up:Q2M2I8 equivalent -hsa:22849 up:B3KXC1 equivalent -hsa:22849 up:Q8NE35 equivalent -hsa:22850 up:Q6IQ32 equivalent -hsa:22852 up:Q9UPS8 equivalent -hsa:22853 up:Q8IWU2 equivalent -hsa:22854 up:Q5IEC3 equivalent -hsa:22854 up:Q5IEC8 equivalent -hsa:22854 up:Q9Y2I2 equivalent -hsa:22856 up:Q86X52 equivalent -hsa:22858 up:Q9UPZ9 equivalent -hsa:22859 up:O94910 equivalent -hsa:2286 up:P26885 equivalent -hsa:2286 up:Q53XJ5 equivalent -hsa:22861 up:Q9C000 equivalent -hsa:22862 up:Q9Y2H6 equivalent -hsa:22863 up:Q6ZNE5 equivalent -hsa:22864 up:Q9Y2K5 equivalent -hsa:22865 up:O94933 equivalent -hsa:22866 up:Q8WXI2 equivalent -hsa:22868 up:Q9NYY8 equivalent -hsa:22869 up:Q6NUI8 equivalent -hsa:22869 up:Q9Y2H8 equivalent -hsa:2287 up:Q00688 equivalent -hsa:22870 up:Q9UPN7 equivalent -hsa:22871 up:Q8N2Q7 equivalent -hsa:22872 up:O94979 equivalent -hsa:22873 up:B3KSP1 equivalent -hsa:22873 up:Q86YF9 equivalent -hsa:22874 up:Q9Y2H5 equivalent -hsa:22875 up:Q9Y6X5 equivalent -hsa:22876 up:Q9Y2H2 equivalent -hsa:22877 up:Q9HAP2 equivalent -hsa:22878 up:Q9Y2L5 equivalent -hsa:22879 up:Q6ZR87 equivalent -hsa:22879 up:Q7L1V2 equivalent -hsa:2288 up:Q02790 equivalent -hsa:22880 up:Q9Y6X9 equivalent -hsa:22881 up:B7Z3D2 equivalent -hsa:22881 up:Q9Y2G4 equivalent -hsa:22882 up:Q9Y6X8 equivalent -hsa:22883 up:O94985 equivalent -hsa:22884 up:Q9Y2I8 equivalent -hsa:22885 up:O94929 equivalent -hsa:22887 up:Q9UPW0 equivalent -hsa:22888 up:O94941 equivalent -hsa:22889 up:Q7Z7F0 equivalent -hsa:2289 up:Q13451 equivalent -hsa:22890 up:Q9Y2K1 equivalent -hsa:22891 up:Q70YC5 equivalent -hsa:22893 up:Q8TBE0 equivalent -hsa:22894 up:Q9Y2L1 equivalent -hsa:22895 up:Q9Y2J0 equivalent -hsa:22897 up:Q9UPV0 equivalent -hsa:22898 up:A2RUS2 equivalent -hsa:22899 up:A0A0S2Z547 equivalent -hsa:22899 up:O94989 equivalent -hsa:229 up:P05062 equivalent -hsa:2290 up:P55316 equivalent -hsa:22900 up:Q9Y2G2 equivalent -hsa:22901 up:Q96EG1 equivalent -hsa:22902 up:B4DG59 equivalent -hsa:22902 up:B4DKC2 equivalent -hsa:22902 up:Q7L099 equivalent -hsa:22903 up:Q9Y2F9 equivalent -hsa:22904 up:Q9Y2G9 equivalent -hsa:22905 up:O95208 equivalent -hsa:22906 up:Q9UPV9 equivalent -hsa:22907 up:Q7L2E3 equivalent -hsa:22908 up:Q9NTJ5 equivalent -hsa:22909 up:Q9Y2M0 equivalent -hsa:22911 up:O94967 equivalent -hsa:22913 up:Q53GL6 equivalent -hsa:22913 up:Q9UKM9 equivalent -hsa:22914 up:P26718 equivalent -hsa:22915 up:Q13201 equivalent -hsa:22916 up:P52298 equivalent -hsa:22917 up:P60852 equivalent -hsa:22917 up:V9HWI9 equivalent -hsa:22918 up:Q9NPY3 equivalent -hsa:22919 up:Q15691 equivalent -hsa:22920 up:Q92845 equivalent -hsa:22921 up:Q9Y3D2 equivalent -hsa:22924 up:Q9UPY8 equivalent -hsa:22925 up:Q13018 equivalent -hsa:22926 up:A8K383 equivalent -hsa:22926 up:P18850 equivalent -hsa:22927 up:Q5JVS0 equivalent -hsa:22928 up:Q99611 equivalent -hsa:22929 up:P49903 equivalent -hsa:22930 up:B9A6J2 equivalent -hsa:22930 up:Q15042 equivalent -hsa:22931 up:Q9NP72 equivalent -hsa:22932 up:Q6PJE2 equivalent -hsa:22933 up:Q8IXJ6 equivalent -hsa:22934 up:P49247 equivalent -hsa:22936 up:O00472 equivalent -hsa:22936 up:Q59FW6 equivalent -hsa:22936 up:Q7Z656 equivalent -hsa:22937 up:Q12770 equivalent -hsa:22938 up:Q13573 equivalent -hsa:2294 up:Q12946 equivalent -hsa:22941 up:Q9UPX8 equivalent -hsa:22943 up:I1W660 equivalent -hsa:22943 up:O94907 equivalent -hsa:22944 up:O60870 equivalent -hsa:22948 up:P48643 equivalent -hsa:22948 up:V9HW37 equivalent -hsa:22949 up:Q14914 equivalent -hsa:2295 up:Q12947 equivalent -hsa:22950 up:Q9BWU0 equivalent -hsa:22953 up:Q32MC3 equivalent -hsa:22953 up:Q9UBL9 equivalent -hsa:22954 up:Q13049 equivalent -hsa:22955 up:Q96GD3 equivalent -hsa:2296 up:Q12948 equivalent -hsa:2296 up:W6CJ52 equivalent -hsa:2297 up:Q16676 equivalent -hsa:22974 up:Q643R0 equivalent -hsa:22974 up:Q9ULW0 equivalent -hsa:22976 up:Q6ZW49 equivalent -hsa:22977 up:A0A384MDN8 equivalent -hsa:22977 up:O95154 equivalent -hsa:22978 up:A0A384MED8 equivalent -hsa:22978 up:A8K6K2 equivalent -hsa:22978 up:P49902 equivalent -hsa:22979 up:B3KT90 equivalent -hsa:22979 up:Q9Y2G0 equivalent -hsa:2298 up:Q12950 equivalent -hsa:22980 up:Q9BQ70 equivalent -hsa:22981 up:Q9Y2I6 equivalent -hsa:22982 up:Q86XV3 equivalent -hsa:22982 up:Q9Y2E4 equivalent -hsa:22983 up:Q9Y2H9 equivalent -hsa:22984 up:Q14690 equivalent -hsa:22985 up:Q9UKV3 equivalent -hsa:22986 up:Q86XB2 equivalent -hsa:22986 up:Q9UPU3 equivalent -hsa:22987 up:B3KT41 equivalent -hsa:22987 up:Q496J9 equivalent -hsa:22989 up:Q9Y2K3 equivalent -hsa:2299 up:E0XEN6 equivalent -hsa:2299 up:Q12951 equivalent -hsa:22990 up:Q96RV3 equivalent -hsa:22992 up:I3VM53 equivalent -hsa:22992 up:Q9Y2K7 equivalent -hsa:22993 up:Q12766 equivalent -hsa:22993 up:Q562E5 equivalent -hsa:22994 up:Q9UPN4 equivalent -hsa:22995 up:O94986 equivalent -hsa:22995 up:Q3B7A2 equivalent -hsa:22996 up:Q5SRH9 equivalent -hsa:22997 up:Q8N7W7 equivalent -hsa:22997 up:Q9UPX0 equivalent -hsa:22998 up:Q9UPQ0 equivalent -hsa:22999 up:B7Z7W2 equivalent -hsa:22999 up:Q3ZCW0 equivalent -hsa:22999 up:Q86UR5 equivalent -hsa:23 up:A0A1U9X609 equivalent -hsa:23 up:Q8NE71 equivalent -hsa:230 up:A0A024QZ64 equivalent -hsa:230 up:P09972 equivalent -hsa:2300 up:Q12952 equivalent -hsa:2300 up:Q498Y4 equivalent -hsa:23001 up:Q8IZQ1 equivalent -hsa:23002 up:Q9Y4D1 equivalent -hsa:23005 up:O60336 equivalent -hsa:23007 up:Q4KWH8 equivalent -hsa:23008 up:Q6PID8 equivalent -hsa:2301 up:A0A0A1EII5 equivalent -hsa:2301 up:Q13461 equivalent -hsa:23011 up:Q9UL25 equivalent -hsa:23012 up:Q9Y2H1 equivalent -hsa:23013 up:Q96T58 equivalent -hsa:23014 up:O94952 equivalent -hsa:23014 up:Q4G104 equivalent -hsa:23014 up:Q8IUQ5 equivalent -hsa:23015 up:A7E2F4 equivalent -hsa:23016 up:B2RDZ9 equivalent -hsa:23016 up:Q15024 equivalent -hsa:23017 up:Q9BWQ8 equivalent -hsa:23019 up:A5YKK6 equivalent -hsa:2302 up:Q92949 equivalent -hsa:23020 up:O75643 equivalent -hsa:23022 up:Q8WX93 equivalent -hsa:23023 up:O94876 equivalent -hsa:23024 up:Q9UPQ7 equivalent -hsa:23025 up:Q9UPW8 equivalent -hsa:23026 up:Q9Y6X6 equivalent -hsa:23028 up:O60341 equivalent -hsa:23029 up:P42696 equivalent -hsa:2303 up:Q99958 equivalent -hsa:23030 up:A0A0C4DFL8 equivalent -hsa:23030 up:O94953 equivalent -hsa:23031 up:O60307 equivalent -hsa:23032 up:Q8TEY7 equivalent -hsa:23033 up:B2RWN9 equivalent -hsa:23033 up:Q5JWR5 equivalent -hsa:23034 up:Q9UPU9 equivalent -hsa:23035 up:Q6ZVD8 equivalent -hsa:23036 up:O60281 equivalent -hsa:23037 up:O15018 equivalent -hsa:23038 up:Q8N5D0 equivalent -hsa:23039 up:Q9UIA9 equivalent -hsa:2304 up:O00358 equivalent -hsa:23040 up:Q9UL68 equivalent -hsa:23041 up:Q7Z3U7 equivalent -hsa:23042 up:Q6P996 equivalent -hsa:23042 up:Q6XYB5 equivalent -hsa:23043 up:Q9UKE5 equivalent -hsa:23046 up:O75037 equivalent -hsa:23046 up:Q2UVF0 equivalent -hsa:23047 up:Q9NTI5 equivalent -hsa:23048 up:Q96RU3 equivalent -hsa:23049 up:Q96Q15 equivalent -hsa:2305 up:Q08050 equivalent -hsa:2305 up:Q53Y49 equivalent -hsa:23051 up:Q9H4I2 equivalent -hsa:23052 up:O94919 equivalent -hsa:23053 up:A7E2V4 equivalent -hsa:23054 up:Q14686 equivalent -hsa:23057 up:Q9BZQ4 equivalent -hsa:23059 up:Q96AJ1 equivalent -hsa:2306 up:O60548 equivalent -hsa:23060 up:O15014 equivalent -hsa:23061 up:B3KM54 equivalent -hsa:23061 up:Q66K14 equivalent -hsa:23061 up:Q9BW24 equivalent -hsa:23062 up:Q9UJY4 equivalent -hsa:23063 up:A8K273 equivalent -hsa:23063 up:B2RTX8 equivalent -hsa:23063 up:Q7Z5K2 equivalent -hsa:23064 up:Q7Z333 equivalent -hsa:23065 up:Q8N766 equivalent -hsa:23066 up:O75155 equivalent -hsa:2307 up:O43638 equivalent -hsa:23070 up:Q8N1G2 equivalent -hsa:23071 up:A0A384MEE7 equivalent -hsa:23071 up:Q9BS26 equivalent -hsa:23072 up:Q76N89 equivalent -hsa:23074 up:A0JNW5 equivalent -hsa:23075 up:B3KUB9 equivalent -hsa:23075 up:Q9UH65 equivalent -hsa:23076 up:Q14684 equivalent -hsa:23077 up:O75592 equivalent -hsa:23078 up:A3KMH1 equivalent -hsa:2308 up:Q12778 equivalent -hsa:23080 up:Q8NBF6 equivalent -hsa:23081 up:Q9H3R0 equivalent -hsa:23082 up:Q5VV67 equivalent -hsa:23085 up:Q8IUD2 equivalent -hsa:23086 up:Q149M6 equivalent -hsa:23086 up:Q8NEV8 equivalent -hsa:23087 up:Q9UPQ4 equivalent -hsa:23089 up:Q86TG7 equivalent -hsa:2309 up:O43524 equivalent -hsa:23090 up:B3KNG7 equivalent -hsa:23090 up:Q2M1K9 equivalent -hsa:23091 up:A0PJJ2 equivalent -hsa:23091 up:B3KQG8 equivalent -hsa:23091 up:Q5T200 equivalent -hsa:23092 up:Q9UNA1 equivalent -hsa:23093 up:Q6EMB2 equivalent -hsa:23094 up:B2RWP0 equivalent -hsa:23094 up:O60292 equivalent -hsa:23095 up:O60333 equivalent -hsa:23096 up:Q5JU85 equivalent -hsa:23097 up:Q9BWU1 equivalent -hsa:23098 up:Q05B42 equivalent -hsa:23098 up:Q0D2N8 equivalent -hsa:23098 up:Q6SZW1 equivalent -hsa:23099 up:O43298 equivalent -hsa:231 up:P15121 equivalent -hsa:23101 up:Q86YR7 equivalent -hsa:23102 up:B2RTQ2 equivalent -hsa:23102 up:Q9UPU7 equivalent -hsa:23105 up:Q6MZW2 equivalent -hsa:23107 up:Q92552 equivalent -hsa:23108 up:Q684P5 equivalent -hsa:23109 up:O94850 equivalent -hsa:23111 up:A0A024RDV9 equivalent -hsa:23111 up:Q8N0X7 equivalent -hsa:23112 up:Q9UPQ9 equivalent -hsa:23113 up:Q8IWT3 equivalent -hsa:23114 up:O94856 equivalent -hsa:23116 up:B4DHM7 equivalent -hsa:23116 up:G3XAE9 reverse -hsa:23116 up:Q6P183 equivalent -hsa:23116 up:Q9Y4F4 equivalent -hsa:23118 up:Q9NYJ8 equivalent -hsa:23119 up:Q96JB3 equivalent -hsa:2312 up:P20930 equivalent -hsa:23120 up:O94823 equivalent -hsa:23122 up:O75122 equivalent -hsa:23125 up:O94983 equivalent -hsa:23126 up:Q7Z3K3 equivalent -hsa:23127 up:Q8IYK4 equivalent -hsa:23129 up:Q9Y4D7 equivalent -hsa:2313 up:Q01543 equivalent -hsa:23130 up:Q2TAZ0 equivalent -hsa:23131 up:Q9UKJ3 equivalent -hsa:23132 up:Q9Y4B4 equivalent -hsa:23133 up:Q9UPP1 equivalent -hsa:23135 up:O15054 equivalent -hsa:23136 up:Q9Y2J2 equivalent -hsa:23137 up:Q8IY18 equivalent -hsa:23138 up:O15049 equivalent -hsa:23139 up:Q6P0Q8 equivalent -hsa:2314 up:Q13045 equivalent -hsa:23140 up:O43149 equivalent -hsa:23141 up:Q86XL3 equivalent -hsa:23142 up:Q92564 equivalent -hsa:23143 up:Q9Y2L9 equivalent -hsa:23144 up:Q8IXZ2 equivalent -hsa:23148 up:O15069 equivalent -hsa:23149 up:O14526 equivalent -hsa:2315 up:A0A384MR46 equivalent -hsa:2315 up:Q16655 equivalent -hsa:23150 up:B3KNA2 equivalent -hsa:23150 up:Q6PEW6 equivalent -hsa:23150 up:Q9Y2L6 equivalent -hsa:23151 up:Q6IC98 equivalent -hsa:23152 up:Q96RK0 equivalent -hsa:23154 up:Q9UBB6 equivalent -hsa:23155 up:Q96S66 equivalent -hsa:23157 up:Q14141 equivalent -hsa:23158 up:Q6ZT07 equivalent -hsa:2316 up:P21333 equivalent -hsa:2316 up:Q60FE5 equivalent -hsa:2316 up:Q6NXF2 equivalent -hsa:23160 up:Q15061 equivalent -hsa:23161 up:Q86XC4 equivalent -hsa:23161 up:Q9Y5W8 equivalent -hsa:23162 up:Q9UPT6 equivalent -hsa:23163 up:A8K6M0 equivalent -hsa:23163 up:Q9NZ52 equivalent -hsa:23164 up:Q6WCQ1 equivalent -hsa:23165 up:Q92621 equivalent -hsa:23166 up:Q9NY15 equivalent -hsa:23167 up:Q14156 equivalent -hsa:23168 up:Q92541 equivalent -hsa:23169 up:Q9NTN3 equivalent -hsa:2317 up:O75369 equivalent -hsa:23170 up:Q14166 equivalent -hsa:23171 up:Q8N335 equivalent -hsa:23172 up:Q15018 equivalent -hsa:23173 up:P53582 equivalent -hsa:23174 up:Q8WYQ9 equivalent -hsa:23175 up:Q14693 equivalent -hsa:23176 up:Q92599 equivalent -hsa:23177 up:Q76N32 equivalent -hsa:23178 up:Q96RG2 equivalent -hsa:23179 up:Q9NZL6 equivalent -hsa:2318 up:Q14315 equivalent -hsa:2318 up:Q59H94 equivalent -hsa:23180 up:Q14699 equivalent -hsa:23180 up:Q8N5I0 equivalent -hsa:23181 up:Q14689 equivalent -hsa:23184 up:Q14696 equivalent -hsa:23185 up:Q92615 equivalent -hsa:23186 up:Q9UKL0 equivalent -hsa:23187 up:Q6ZUD6 equivalent -hsa:23187 up:Q86UU1 equivalent -hsa:23187 up:Q8NC75 equivalent -hsa:23189 up:Q14678 equivalent -hsa:2319 up:Q14254 equivalent -hsa:2319 up:Q9BTI6 equivalent -hsa:23190 up:Q92575 equivalent -hsa:23191 up:Q7L576 equivalent -hsa:23192 up:B3KVU2 equivalent -hsa:23192 up:Q9Y4P1 equivalent -hsa:23193 up:Q14697 equivalent -hsa:23193 up:V9HWJ0 equivalent -hsa:23194 up:Q9UJT9 equivalent -hsa:23195 up:Q9NU22 equivalent -hsa:23196 up:Q9NZB2 equivalent -hsa:23197 up:Q96CS3 equivalent -hsa:23198 up:Q14997 equivalent -hsa:23199 up:Q14687 equivalent -hsa:23200 up:B4DKX1 equivalent -hsa:23200 up:B4E3T1 equivalent -hsa:23200 up:Q9Y2G3 equivalent -hsa:23201 up:Q92567 equivalent -hsa:23203 up:Q10713 equivalent -hsa:23204 up:Q15041 equivalent -hsa:23205 up:B3KNS7 equivalent -hsa:23205 up:Q96GR2 equivalent -hsa:23207 up:Q8IWE5 equivalent -hsa:23208 up:Q9BT88 equivalent -hsa:23209 up:Q15049 equivalent -hsa:2321 up:L7RSL3 equivalent -hsa:2321 up:P17948 equivalent -hsa:23210 up:Q6NYC1 equivalent -hsa:23211 up:Q9UPT8 equivalent -hsa:23212 up:Q15050 equivalent -hsa:23213 up:Q8IWU6 equivalent -hsa:23214 up:Q96QU8 equivalent -hsa:23215 up:Q9Y520 equivalent -hsa:23216 up:B9A6J6 equivalent -hsa:23216 up:Q6PJJ8 equivalent -hsa:23216 up:Q86TI0 equivalent -hsa:23216 up:Q8NC59 equivalent -hsa:23217 up:Q9UPR6 equivalent -hsa:23218 up:Q6ZNJ1 equivalent -hsa:23219 up:Q9NVF7 equivalent -hsa:2322 up:P36888 equivalent -hsa:23220 up:Q9Y2E6 equivalent -hsa:23221 up:Q9BYZ6 equivalent -hsa:23223 up:B3KMR5 equivalent -hsa:23223 up:Q5JTH9 equivalent -hsa:23224 up:Q8WXH0 equivalent -hsa:23225 up:Q8TEM1 equivalent -hsa:23228 up:Q9UPR0 equivalent -hsa:23229 up:O43307 equivalent -hsa:2323 up:B7ZLY4 equivalent -hsa:2323 up:P49771 equivalent -hsa:23230 up:Q96RL7 equivalent -hsa:23231 up:Q68CR1 equivalent -hsa:23232 up:O60347 equivalent -hsa:23233 up:Q9Y2D4 equivalent -hsa:23234 up:Q8WXX5 equivalent -hsa:23235 up:Q9H0K1 equivalent -hsa:23236 up:Q9NQ66 equivalent -hsa:23237 up:Q7LC44 equivalent -hsa:23239 up:O60346 equivalent -hsa:2324 up:P35916 equivalent -hsa:23240 up:A2VDJ0 equivalent -hsa:23241 up:Q86VP3 equivalent -hsa:23242 up:O75128 equivalent -hsa:23243 up:O15084 equivalent -hsa:23244 up:G1UI16 equivalent -hsa:23244 up:Q29RF7 equivalent -hsa:23245 up:O75129 equivalent -hsa:23246 up:Q14137 equivalent -hsa:23247 up:O60303 equivalent -hsa:23248 up:Q5VT52 equivalent -hsa:23250 up:P98196 equivalent -hsa:23250 up:Q659C3 equivalent -hsa:23250 up:Q6PJ25 equivalent -hsa:23251 up:Q9UPX6 equivalent -hsa:23252 up:Q5T2D3 equivalent -hsa:23253 up:Q6UB98 equivalent -hsa:23254 up:Q674X7 equivalent -hsa:23255 up:Q9Y4B5 equivalent -hsa:23256 up:Q8WVM8 equivalent -hsa:23258 up:Q6IQ26 equivalent -hsa:23259 up:O94830 equivalent -hsa:2326 up:B2RCG5 equivalent -hsa:2326 up:Q01740 equivalent -hsa:23261 up:Q9Y6Y1 equivalent -hsa:23262 up:O43314 equivalent -hsa:23263 up:O15068 equivalent -hsa:23264 up:Q9UGR2 equivalent -hsa:23265 up:Q63HP7 equivalent -hsa:23265 up:Q9UPT5 equivalent -hsa:23266 up:O95490 equivalent -hsa:23268 up:Q6XZF7 equivalent -hsa:23269 up:Q8IWI9 equivalent -hsa:2327 up:Q5JPC7 equivalent -hsa:2327 up:Q99518 equivalent -hsa:23270 up:Q9UJ04 equivalent -hsa:23271 up:B3KTI4 equivalent -hsa:23271 up:Q08AD1 equivalent -hsa:23272 up:Q9UK61 equivalent -hsa:23274 up:Q2KHT3 equivalent -hsa:23275 up:Q9Y2G5 equivalent -hsa:23276 up:O94889 equivalent -hsa:23277 up:O75153 equivalent -hsa:23279 up:Q12769 equivalent -hsa:2328 up:A0A024R8Z4 equivalent -hsa:2328 up:P31513 equivalent -hsa:2328 up:Q53FW5 equivalent -hsa:23281 up:Q5JR59 equivalent -hsa:23283 up:Q9H0L4 equivalent -hsa:23284 up:Q9HAR2 equivalent -hsa:23286 up:Q8IX03 equivalent -hsa:23287 up:Q9UPW5 equivalent -hsa:23288 up:Q6IPM2 equivalent -hsa:2329 up:P31512 equivalent -hsa:23291 up:Q9UKB1 equivalent -hsa:23293 up:Q86US8 equivalent -hsa:23294 up:Q05CP0 equivalent -hsa:23294 up:Q92625 equivalent -hsa:23295 up:O60291 equivalent -hsa:23299 up:Q8TD16 equivalent -hsa:23299 up:Q96FU2 equivalent -hsa:2330 up:P49326 equivalent -hsa:23300 up:O43313 equivalent -hsa:23301 up:Q8NDI1 equivalent -hsa:23302 up:Q658N2 equivalent -hsa:23303 up:Q9NQT8 equivalent -hsa:23304 up:B3KXG6 equivalent -hsa:23304 up:Q8IWV8 equivalent -hsa:23305 up:B2RB13 equivalent -hsa:23305 up:Q9UKU0 equivalent -hsa:23306 up:O14524 equivalent -hsa:23307 up:Q5T1M5 equivalent -hsa:23308 up:A0N0L8 equivalent -hsa:23308 up:O75144 equivalent -hsa:23309 up:O75182 equivalent -hsa:2331 up:A0A024R971 equivalent -hsa:2331 up:B3KS64 equivalent -hsa:2331 up:Q06828 equivalent -hsa:2331 up:Q12833 equivalent -hsa:23310 up:P42695 equivalent -hsa:23312 up:Q8TDJ6 equivalent -hsa:23313 up:Q6ICG6 equivalent -hsa:23314 up:B3KPQ9 equivalent -hsa:23314 up:Q9UPW6 equivalent -hsa:23315 up:Q9Y2E8 equivalent -hsa:23316 up:O14529 equivalent -hsa:23317 up:O75165 equivalent -hsa:23318 up:Q5TAX3 equivalent -hsa:2332 up:Q06787 equivalent -hsa:23321 up:Q9C040 equivalent -hsa:23322 up:Q68CZ1 equivalent -hsa:23324 up:Q9Y2E5 equivalent -hsa:23325 up:Q2M389 equivalent -hsa:23326 up:Q9UPT9 equivalent -hsa:23327 up:Q96PU5 equivalent -hsa:23328 up:O94885 equivalent -hsa:23329 up:Q9Y2I9 equivalent -hsa:23331 up:Q96AY4 equivalent -hsa:23332 up:Q7Z460 equivalent -hsa:23333 up:Q2PZI1 equivalent -hsa:23334 up:Q5T011 equivalent -hsa:23335 up:Q9Y4E6 equivalent -hsa:23336 up:O15061 equivalent -hsa:23338 up:Q9NQC1 equivalent -hsa:23339 up:Q96JC1 equivalent -hsa:2334 up:P51816 equivalent -hsa:23341 up:Q9Y2G8 equivalent -hsa:23344 up:Q9BSJ8 equivalent -hsa:23345 up:B4E3R1 reverse -hsa:23345 up:B7Z9Y6 reverse -hsa:23345 up:Q8NF91 equivalent -hsa:23347 up:A6NHR9 equivalent -hsa:23348 up:B3KXE2 equivalent -hsa:23348 up:Q9BZ29 equivalent -hsa:23349 up:Q9UPV7 equivalent -hsa:2335 up:P02751 equivalent -hsa:2335 up:Q6MZM7 equivalent -hsa:2335 up:Q9UQS6 equivalent -hsa:23350 up:O15042 equivalent -hsa:23351 up:A8K6L5 equivalent -hsa:23351 up:O15037 equivalent -hsa:23352 up:Q5T4S7 equivalent -hsa:23353 up:O94901 equivalent -hsa:23354 up:O94927 equivalent -hsa:23355 up:B3KPR6 equivalent -hsa:23355 up:Q8N3P4 equivalent -hsa:23357 up:Q9UNK9 equivalent -hsa:23358 up:Q9UPU5 equivalent -hsa:23359 up:O60320 equivalent -hsa:23360 up:Q8N3X1 equivalent -hsa:23361 up:Q9UEG4 equivalent -hsa:23362 up:B3KRC4 equivalent -hsa:23362 up:Q9NYI0 equivalent -hsa:23363 up:O75147 equivalent -hsa:23365 up:B4E2K6 equivalent -hsa:23365 up:Q9NZN5 equivalent -hsa:23366 up:Q8NCT3 equivalent -hsa:23367 up:Q6PKG0 equivalent -hsa:23368 up:Q96KQ4 equivalent -hsa:23369 up:Q8TB72 equivalent -hsa:23370 up:A0A087WZG4 equivalent -hsa:23370 up:Q6ZSZ5 equivalent -hsa:23371 up:Q63HR2 equivalent -hsa:23373 up:Q6UUV9 equivalent -hsa:23376 up:O94874 equivalent -hsa:23378 up:O43159 equivalent -hsa:23379 up:Q9Y2F5 equivalent -hsa:23380 up:B4DFE5 equivalent -hsa:23380 up:O75044 equivalent -hsa:23381 up:Q9UPR3 equivalent -hsa:23382 up:Q96HN2 equivalent -hsa:23383 up:Q9Y6X3 equivalent -hsa:23384 up:B2RMV2 equivalent -hsa:23384 up:Q69YQ0 equivalent -hsa:23385 up:Q92542 equivalent -hsa:23386 up:Q8IVD9 equivalent -hsa:23387 up:Q9Y2K2 equivalent -hsa:23389 up:Q71F56 equivalent -hsa:2339 up:P49354 equivalent -hsa:23390 up:Q8IUH5 equivalent -hsa:23394 up:Q9H2P0 equivalent -hsa:23395 up:Q15031 equivalent -hsa:23396 up:O60331 equivalent -hsa:23397 up:Q15003 equivalent -hsa:23398 up:A0A384MTS1 equivalent -hsa:23398 up:Q96BP3 equivalent -hsa:23399 up:O95476 equivalent -hsa:23400 up:Q8N4D4 reverse -hsa:23400 up:Q9NQ11 equivalent -hsa:23401 up:O75474 equivalent -hsa:23403 up:Q6PJ61 equivalent -hsa:23404 up:Q13868 equivalent -hsa:23405 up:Q9UPY3 equivalent -hsa:23406 up:A0A384MTY2 equivalent -hsa:23406 up:Q14019 equivalent -hsa:23408 up:Q9NXA8 equivalent -hsa:23409 up:Q9Y6E7 equivalent -hsa:23410 up:Q9NTG7 equivalent -hsa:23411 up:Q96EB6 equivalent -hsa:23412 up:Q9UBI1 equivalent -hsa:23413 up:P62166 equivalent -hsa:23414 up:Q8WW38 equivalent -hsa:23414 up:Q9NPQ0 equivalent -hsa:23415 up:Q9UQ05 equivalent -hsa:23416 up:Q9ULD8 equivalent -hsa:23417 up:O95822 equivalent -hsa:23418 up:A0A7D6VM04 equivalent -hsa:23418 up:P82279 equivalent -hsa:2342 up:A0A384MEJ5 equivalent -hsa:2342 up:P49356 equivalent -hsa:23420 up:Q15155 equivalent -hsa:23421 up:Q13352 equivalent -hsa:23423 up:A0A140VKD1 equivalent -hsa:23423 up:Q9Y3Q3 equivalent -hsa:23424 up:Q8NHU6 equivalent -hsa:23426 up:Q9Y3R0 equivalent -hsa:23428 up:Q53EM9 equivalent -hsa:23428 up:Q9UHI5 equivalent -hsa:23429 up:Q8N488 equivalent -hsa:23430 up:Q9BZJ3 equivalent -hsa:23431 up:B4DM48 equivalent -hsa:23431 up:Q9UPM8 equivalent -hsa:23432 up:Q8N6U8 equivalent -hsa:23433 up:P17081 equivalent -hsa:23433 up:V9HWD0 equivalent -hsa:23435 up:Q13148 equivalent -hsa:23435 up:Q9H256 equivalent -hsa:23436 up:P08861 equivalent -hsa:23438 up:P49590 equivalent -hsa:23439 up:Q9UN42 equivalent -hsa:23440 up:Q5XKR4 equivalent -hsa:23443 up:Q9Y2D2 equivalent -hsa:23446 up:Q8WWI5 equivalent -hsa:23450 up:A8K6V3 equivalent -hsa:23450 up:Q15393 equivalent -hsa:23451 up:B4DGZ4 equivalent -hsa:23451 up:O75533 equivalent -hsa:23452 up:Q9UKU9 equivalent -hsa:23456 up:Q9NRK6 equivalent -hsa:23457 up:Q9NP78 equivalent -hsa:2346 up:Q04609 equivalent -hsa:23460 up:Q8N139 equivalent -hsa:23461 up:Q8WWZ7 equivalent -hsa:23462 up:Q9Y5J3 equivalent -hsa:23463 up:O60725 equivalent -hsa:23464 up:A8K228 equivalent -hsa:23464 up:O75600 equivalent -hsa:23466 up:O95503 equivalent -hsa:23467 up:O95502 equivalent -hsa:23468 up:P45973 equivalent -hsa:23468 up:V9HWG0 equivalent -hsa:23469 up:Q92576 equivalent -hsa:23471 up:Q15629 equivalent -hsa:23471 up:Q6FHL3 equivalent -hsa:23473 up:Q7Z479 equivalent -hsa:23473 up:Q9Y6W3 equivalent -hsa:23474 up:A0A0S2Z5B3 equivalent -hsa:23474 up:O95571 equivalent -hsa:23475 up:B4DDH4 equivalent -hsa:23475 up:Q15274 equivalent -hsa:23475 up:V9HWJ5 equivalent -hsa:23476 up:O60885 equivalent -hsa:23478 up:P67812 equivalent -hsa:23479 up:B3KQ30 equivalent -hsa:23479 up:Q9H1K1 equivalent -hsa:2348 up:P15328 equivalent -hsa:23480 up:P60059 equivalent -hsa:23481 up:B2RDF2 equivalent -hsa:23481 up:O00541 equivalent -hsa:23483 up:O95455 equivalent -hsa:23484 up:O95214 equivalent -hsa:23484 up:Q6FHL7 equivalent -hsa:23491 up:Q6UWW8 equivalent -hsa:23492 up:O95931 equivalent -hsa:23493 up:Q9UBP5 equivalent -hsa:23495 up:O14836 equivalent -hsa:23495 up:Q4ACX1 equivalent -hsa:23498 up:P46952 equivalent -hsa:23499 up:Q6ZSD7 equivalent -hsa:23499 up:Q9UPN3 equivalent -hsa:2350 up:P14207 equivalent -hsa:23500 up:Q86T65 equivalent -hsa:23503 up:Q68DK2 equivalent -hsa:23504 up:O15034 equivalent -hsa:23505 up:Q92545 equivalent -hsa:23506 up:Q6AI39 equivalent -hsa:23507 up:A0A384N5V6 equivalent -hsa:23507 up:Q6P9F7 equivalent -hsa:23508 up:Q92623 equivalent -hsa:23509 up:Q9H488 equivalent -hsa:23510 up:Q14681 equivalent -hsa:23510 up:Q8IYY2 equivalent -hsa:23511 up:Q5SRE5 equivalent -hsa:23512 up:Q15022 equivalent -hsa:23513 up:A0A0G2JNZ2 equivalent -hsa:23513 up:Q14160 equivalent -hsa:23514 up:Q14159 equivalent -hsa:23515 up:Q14149 equivalent -hsa:23515 up:Q4VBZ9 equivalent -hsa:23516 up:Q15043 equivalent -hsa:23517 up:P42285 equivalent -hsa:23517 up:Q3MHC9 equivalent -hsa:23518 up:Q15032 equivalent -hsa:23519 up:O95626 equivalent -hsa:2352 up:P41439 equivalent -hsa:23521 up:A0A384ME37 equivalent -hsa:23521 up:P40429 equivalent -hsa:23522 up:B2RWN8 equivalent -hsa:23522 up:Q8WYB5 equivalent -hsa:23523 up:Q9Y6J0 equivalent -hsa:23524 up:A0A140VK53 equivalent -hsa:23524 up:Q9UQ35 equivalent -hsa:23526 up:Q92619 equivalent -hsa:23527 up:Q15057 equivalent -hsa:23528 up:Q9Y2X9 equivalent -hsa:23529 up:Q9UBD9 equivalent -hsa:2353 up:P01100 equivalent -hsa:2353 up:Q6FG41 equivalent -hsa:23530 up:Q13423 equivalent -hsa:23531 up:Q15546 equivalent -hsa:23532 up:P78395 equivalent -hsa:23533 up:L7RT34 equivalent -hsa:23533 up:Q8WYR1 equivalent -hsa:23534 up:B3KMX1 equivalent -hsa:23534 up:Q9Y5L0 equivalent -hsa:23536 up:Q9BUB4 equivalent -hsa:23538 up:Q9UKL2 equivalent -hsa:23539 up:O95907 equivalent -hsa:2354 up:P53539 equivalent -hsa:23541 up:O76054 equivalent -hsa:23542 up:Q13387 equivalent -hsa:23543 up:O43251 equivalent -hsa:23544 up:Q9BYH1 equivalent -hsa:23545 up:Q9Y487 equivalent -hsa:23546 up:A0A140VKF5 equivalent -hsa:23546 up:O95473 equivalent -hsa:23547 up:P59901 equivalent -hsa:23548 up:Q6PID6 equivalent -hsa:23549 up:Q9ULA0 equivalent -hsa:2355 up:P15408 equivalent -hsa:2355 up:Q9H5M2 equivalent -hsa:23550 up:Q8NDX1 equivalent -hsa:23551 up:Q96D21 equivalent -hsa:23552 up:Q8IZL9 equivalent -hsa:23553 up:Q2M3T9 equivalent -hsa:23554 up:O95859 equivalent -hsa:23555 up:O95858 equivalent -hsa:23556 up:O95427 equivalent -hsa:23557 up:O95295 equivalent -hsa:23558 up:Q969T9 equivalent -hsa:23559 up:A0A384P602 equivalent -hsa:23559 up:Q96G27 equivalent -hsa:2356 up:Q05932 equivalent -hsa:23560 up:D2CFK9 equivalent -hsa:23560 up:Q9BZE4 equivalent -hsa:23562 up:O95500 equivalent -hsa:23563 up:Q9GZS9 equivalent -hsa:23564 up:O95865 equivalent -hsa:23564 up:V9HW53 equivalent -hsa:23566 up:Q9UBY5 equivalent -hsa:23567 up:Q9UL40 equivalent -hsa:23568 up:Q9Y2Y0 equivalent -hsa:23569 up:Q9UM07 equivalent -hsa:2357 up:P21462 equivalent -hsa:23576 up:B2R644 equivalent -hsa:23576 up:O94760 equivalent -hsa:2358 up:P25090 equivalent -hsa:23580 up:B2R6D8 equivalent -hsa:23580 up:Q9H3Q1 equivalent -hsa:23581 up:B2CIS9 equivalent -hsa:23581 up:P31944 equivalent -hsa:23582 up:O95273 equivalent -hsa:23583 up:A0A024RAZ8 equivalent -hsa:23583 up:Q53HV7 equivalent -hsa:23584 up:Q96IQ7 equivalent -hsa:23585 up:O95807 equivalent -hsa:23585 up:Q7RU07 equivalent -hsa:23586 up:O95786 equivalent -hsa:23587 up:Q8TE02 equivalent -hsa:23588 up:Q9Y2U9 equivalent -hsa:23589 up:Q9Y2V2 equivalent -hsa:2359 up:P25089 equivalent -hsa:2359 up:Q6L5J4 equivalent -hsa:23590 up:Q5T2R2 equivalent -hsa:23592 up:Q9Y2U8 equivalent -hsa:23593 up:Q9Y5Z4 equivalent -hsa:23594 up:Q9Y5N6 equivalent -hsa:23595 up:Q9UBD5 equivalent -hsa:23596 up:Q9H1Y3 equivalent -hsa:23597 up:Q9Y305 equivalent -hsa:23598 up:Q9HBE1 equivalent -hsa:23600 up:Q9UHK6 equivalent -hsa:23601 up:A4D1U7 equivalent -hsa:23601 up:Q9NY25 equivalent -hsa:23603 up:Q9ULV4 equivalent -hsa:23604 up:Q9UIK4 equivalent -hsa:23607 up:Q9Y5K6 equivalent -hsa:23608 up:Q9UHC7 equivalent -hsa:23609 up:Q9H000 equivalent -hsa:23612 up:Q9Y5J5 equivalent -hsa:23613 up:A6H8Y8 equivalent -hsa:23613 up:Q9ULU4 equivalent -hsa:23616 up:A0A2X0SFX7 equivalent -hsa:23616 up:Q9Y3L3 equivalent -hsa:23617 up:A0ZT99 equivalent -hsa:23617 up:Q96PF2 equivalent -hsa:23619 up:Q9NZV7 equivalent -hsa:23620 up:O95665 equivalent -hsa:23621 up:P56817 equivalent -hsa:23623 up:Q9BVN2 equivalent -hsa:23624 up:Q9ULV8 equivalent -hsa:23625 up:Q8N5H3 equivalent -hsa:23626 up:Q9Y5K1 equivalent -hsa:23627 up:A7U7M2 equivalent -hsa:23627 up:Q9UKY0 equivalent -hsa:23630 up:Q9UJ90 equivalent -hsa:23632 up:A8K3J4 equivalent -hsa:23632 up:Q9ULX7 equivalent -hsa:23633 up:O60684 equivalent -hsa:23635 up:P81877 equivalent -hsa:23636 up:P37198 equivalent -hsa:23637 up:Q9Y3P9 equivalent -hsa:23639 up:Q86X45 equivalent -hsa:23640 up:Q9NZL4 equivalent -hsa:23641 up:O95751 equivalent -hsa:23643 up:Q9Y6Y9 equivalent -hsa:23644 up:Q6P2E9 equivalent -hsa:23645 up:O75807 equivalent -hsa:23646 up:Q8IV08 equivalent -hsa:23647 up:B4DXH2 equivalent -hsa:23647 up:P53365 equivalent -hsa:23648 up:Q9BWW4 equivalent -hsa:23649 up:Q14181 equivalent -hsa:23650 up:Q14134 equivalent -hsa:23654 up:O15031 equivalent -hsa:23657 up:Q9UPY5 equivalent -hsa:23658 up:A0A090N8Y5 equivalent -hsa:23658 up:Q9Y4Y9 equivalent -hsa:23659 up:Q8NCC3 equivalent -hsa:23660 up:Q8N718 equivalent -hsa:23660 up:Q9Y2L8 equivalent -hsa:23670 up:Q9UHN6 equivalent -hsa:23671 up:Q9UIK5 equivalent -hsa:23673 up:Q86Y82 equivalent -hsa:23676 up:Q9UHP9 equivalent -hsa:23677 up:Q9P0V3 equivalent -hsa:23678 up:Q5H9Q5 equivalent -hsa:23678 up:Q96BR1 equivalent -hsa:23682 up:P57729 equivalent -hsa:23683 up:O94806 equivalent -hsa:23704 up:Q8WWG9 equivalent -hsa:23705 up:Q9BY67 equivalent -hsa:23705 up:X5D8W0 equivalent -hsa:23708 up:Q8IYD1 equivalent -hsa:23710 up:Q9H0R8 equivalent -hsa:23729 up:A0A0B4J2A0 equivalent -hsa:23729 up:Q9UHJ6 equivalent -hsa:23731 up:Q9H330 equivalent -hsa:23732 up:Q9P0K9 equivalent -hsa:23741 up:Q9Y6B2 equivalent -hsa:23742 up:Q9NZP6 equivalent -hsa:23743 up:Q9H2M3 equivalent -hsa:23746 up:F1T0B6 equivalent -hsa:23746 up:Q9NZN9 equivalent -hsa:23753 up:Q9HCN8 equivalent -hsa:23759 up:A8K0I0 equivalent -hsa:23759 up:Q13356 equivalent -hsa:23760 up:P48739 equivalent -hsa:23761 up:Q9UG56 equivalent -hsa:23762 up:Q969R2 equivalent -hsa:23764 up:Q9ULX9 equivalent -hsa:23765 up:Q96F46 equivalent -hsa:23767 up:Q9NZU0 equivalent -hsa:23768 up:O43155 equivalent -hsa:23769 up:Q9NZU1 equivalent -hsa:23770 up:B2R8G6 equivalent -hsa:23770 up:Q14318 equivalent -hsa:23774 up:O95696 equivalent -hsa:23774 up:Q59G93 equivalent -hsa:23779 up:P85298 equivalent -hsa:23779 up:Q6PJW1 equivalent -hsa:23780 up:Q9BQE5 equivalent -hsa:23784 up:Q6S545 equivalent -hsa:23786 up:Q9BXK5 equivalent -hsa:23787 up:A8YXX5 equivalent -hsa:23787 up:Q9NZJ7 equivalent -hsa:23788 up:Q9Y6C9 equivalent -hsa:238 up:B6D4Y2 equivalent -hsa:238 up:Q9UM73 equivalent -hsa:239 up:P18054 equivalent -hsa:2395 up:A0A0S2Z3G4 equivalent -hsa:2395 up:Q16595 equivalent -hsa:24 up:P78363 equivalent -hsa:24 up:Q6AI28 equivalent -hsa:240 up:P09917 equivalent -hsa:241 up:P20292 equivalent -hsa:24137 up:O95239 equivalent -hsa:24137 up:Q59HG1 equivalent -hsa:24138 up:Q13325 equivalent -hsa:24139 up:O95834 equivalent -hsa:24140 up:A0A024QYX5 equivalent -hsa:24140 up:Q9UET6 equivalent -hsa:24141 up:Q9UJQ1 equivalent -hsa:24142 up:Q6IAP1 equivalent -hsa:24142 up:Q93015 equivalent -hsa:24144 up:Q9UBB9 equivalent -hsa:24145 up:Q96RD7 equivalent -hsa:24146 up:P56746 equivalent -hsa:24147 up:Q86VR8 equivalent -hsa:24148 up:O94906 equivalent -hsa:24149 up:Q5VUA4 equivalent -hsa:24150 up:Q9ULZ0 equivalent -hsa:242 up:O75342 equivalent -hsa:2444 up:P42685 equivalent -hsa:245711 up:A0A384MTT5 equivalent -hsa:245711 up:Q5MJ70 equivalent -hsa:245802 up:Q96DS6 equivalent -hsa:245806 up:Q8N8G2 equivalent -hsa:245812 up:Q8N129 equivalent -hsa:245908 up:A0A0K0K1I4 equivalent -hsa:245908 up:Q8NG35 equivalent -hsa:245909 up:Q8N104 equivalent -hsa:245910 up:Q8IZN7 equivalent -hsa:245911 up:Q8NET1 equivalent -hsa:245913 up:Q30KQ9 equivalent -hsa:245927 up:Q30KQ7 equivalent -hsa:245928 up:Q30KQ6 equivalent -hsa:245929 up:Q30KQ5 equivalent -hsa:245930 up:Q30KQ4 equivalent -hsa:245932 up:Q8N690 equivalent -hsa:245934 up:A0A384MDM0 equivalent -hsa:245934 up:Q5J5C9 equivalent -hsa:245936 up:Q8N688 equivalent -hsa:245937 up:Q8NES8 equivalent -hsa:245938 up:B2R4E8 equivalent -hsa:245938 up:Q8N687 equivalent -hsa:245939 up:Q7Z7B8 equivalent -hsa:245940 up:P0DP73 equivalent -hsa:245940 up:P0DP74 equivalent -hsa:245972 up:Q8N8Y2 equivalent -hsa:245973 up:Q8NEY4 equivalent -hsa:246 up:P16050 equivalent -hsa:246100 up:P78358 equivalent -hsa:246175 up:B4E0K8 equivalent -hsa:246175 up:Q96LI5 equivalent -hsa:246176 up:Q8NHY3 equivalent -hsa:246181 up:Q8NHP1 equivalent -hsa:246184 up:Q8NHZ8 equivalent -hsa:246213 up:Q8NDX2 equivalent -hsa:246243 up:E5KN15 equivalent -hsa:246243 up:O60930 equivalent -hsa:246269 up:Q8WV93 equivalent -hsa:246329 up:Q96MF2 equivalent -hsa:246330 up:Q8N2H9 equivalent -hsa:246721 up:Q9GZM3 equivalent -hsa:246744 up:Q8IWL8 equivalent -hsa:246777 up:Q6UW49 equivalent -hsa:246778 up:Q8NEV9 equivalent -hsa:247 up:O15296 equivalent -hsa:2475 up:P42345 equivalent -hsa:248 up:P09923 equivalent -hsa:2483 up:Q14331 equivalent -hsa:2487 up:D9ZGF6 equivalent -hsa:2487 up:Q92765 equivalent -hsa:2488 up:A0A0F7RQE8 equivalent -hsa:2488 up:P01225 equivalent -hsa:249 up:P05186 equivalent -hsa:2491 up:Q92674 equivalent -hsa:2492 up:P23945 equivalent -hsa:2494 up:O00482 equivalent -hsa:2495 up:P02794 equivalent -hsa:25 up:P00519 equivalent -hsa:25 up:Q59FK4 equivalent -hsa:250 up:B2R7C7 equivalent -hsa:250 up:P05187 equivalent -hsa:251 up:P10696 equivalent -hsa:2512 up:A0A384MDR3 equivalent -hsa:2512 up:P02792 equivalent -hsa:2515 up:Q99965 equivalent -hsa:2516 up:F1D8R8 equivalent -hsa:2516 up:Q13285 equivalent -hsa:2517 up:P04066 equivalent -hsa:2519 up:Q9BTY2 equivalent -hsa:2520 up:A0A0E3VY36 equivalent -hsa:2520 up:P01350 equivalent -hsa:2521 up:P35637 equivalent -hsa:2521 up:Q6IBQ5 equivalent -hsa:2523 up:P19526 equivalent -hsa:2523 up:Q6IZA2 equivalent -hsa:2524 up:A8K2L2 equivalent -hsa:2524 up:Q10981 equivalent -hsa:2525 up:A8K737 equivalent -hsa:2525 up:P21217 equivalent -hsa:2526 up:P22083 equivalent -hsa:2527 up:Q11128 equivalent -hsa:2528 up:P51993 equivalent -hsa:2528 up:Q6P7E6 equivalent -hsa:252839 up:Q9P0T7 equivalent -hsa:252884 up:Q96N95 equivalent -hsa:2529 up:Q11130 equivalent -hsa:252969 up:Q969S2 equivalent -hsa:252983 up:Q6ZWJ1 equivalent -hsa:252995 up:Q8NAU1 equivalent -hsa:2530 up:A8K8P8 equivalent -hsa:2530 up:Q546E0 equivalent -hsa:2530 up:Q9BYC5 equivalent -hsa:253012 up:A8MVW5 equivalent -hsa:253017 up:Q5HYJ1 equivalent -hsa:2531 up:Q06136 equivalent -hsa:253143 up:Q5THK1 equivalent -hsa:253152 up:Q8IUS5 equivalent -hsa:253175 up:Q9Y6F8 equivalent -hsa:253190 up:A0A140VK89 equivalent -hsa:253190 up:Q9H4I8 equivalent -hsa:2532 up:Q16570 equivalent -hsa:2532 up:Q5Y7A2 equivalent -hsa:253260 up:Q6R327 equivalent -hsa:2533 up:O15117 equivalent -hsa:253314 up:A6NMX2 equivalent -hsa:2534 up:P06241 equivalent -hsa:253430 up:Q8NFU5 equivalent -hsa:253461 up:Q8NAP3 equivalent -hsa:253461 up:Q9H6F0 equivalent -hsa:2535 up:Q14332 equivalent -hsa:2535 up:Q86UZ8 equivalent -hsa:253512 up:B3KSR0 equivalent -hsa:253512 up:B3KTE8 equivalent -hsa:253512 up:Q5SVS4 equivalent -hsa:253558 up:Q6UWP7 equivalent -hsa:253559 up:Q8N3J6 equivalent -hsa:253582 up:Q5VVB8 equivalent -hsa:253635 up:Q8N954 equivalent -hsa:253639 up:Q6ZNG0 equivalent -hsa:253650 up:Q8IVF6 equivalent -hsa:2537 up:A0A348GSI1 equivalent -hsa:2537 up:P09912 equivalent -hsa:253714 up:Q6ZRQ5 equivalent -hsa:253725 up:Q9Y4E1 equivalent -hsa:253738 up:Q9H4W6 equivalent -hsa:253769 up:A2RRH5 equivalent -hsa:253782 up:Q6ZMG9 equivalent -hsa:2538 up:P35575 equivalent -hsa:253827 up:Q8IXL7 equivalent -hsa:253832 up:Q5W0Z9 equivalent -hsa:2539 up:A0A384NL00 equivalent -hsa:2539 up:P11413 equivalent -hsa:253935 up:Q86XS5 equivalent -hsa:253943 up:Q658Z6 equivalent -hsa:253943 up:Q7Z739 equivalent -hsa:253959 up:Q6GYQ0 equivalent -hsa:253980 up:Q8WZ19 equivalent -hsa:253982 up:Q5U4P2 equivalent -hsa:254013 up:Q8IXQ9 equivalent -hsa:254042 up:Q6UB28 equivalent -hsa:254048 up:Q6ZU65 equivalent -hsa:254050 up:Q8N309 equivalent -hsa:254065 up:Q6RI45 equivalent -hsa:254102 up:Q8N3D4 equivalent -hsa:254122 up:Q86XE0 equivalent -hsa:254158 up:B7ZLS7 reverse -hsa:254158 up:Q96LI9 equivalent -hsa:254170 up:Q7Z6M2 equivalent -hsa:254173 up:Q6ZVT0 equivalent -hsa:254187 up:Q3SY00 equivalent -hsa:2542 up:A8K0S7 equivalent -hsa:2542 up:O43826 equivalent -hsa:254225 up:Q8NCN4 equivalent -hsa:254228 up:Q8N5C1 equivalent -hsa:254240 up:Q8NFQ6 equivalent -hsa:254251 up:Q8N3X6 equivalent -hsa:254263 up:Q6PI25 equivalent -hsa:254268 up:Q5T1N1 equivalent -hsa:254272 up:Q2M2D7 equivalent -hsa:254295 up:Q5SRE7 equivalent -hsa:2543 up:A0A158RFV5 equivalent -hsa:2543 up:P0DTW1 equivalent -hsa:254359 up:E9PLR9 reverse -hsa:254359 up:Q6UX98 equivalent -hsa:254394 up:Q9NXL9 equivalent -hsa:254427 up:Q86WR7 equivalent -hsa:254428 up:B2RMP2 equivalent -hsa:254428 up:Q8IVJ1 equivalent -hsa:254439 up:A6NJI1 equivalent -hsa:254528 up:Q8N635 equivalent -hsa:254531 up:Q643R3 equivalent -hsa:254552 up:Q8WV74 equivalent -hsa:2547 up:P12956 equivalent -hsa:254773 up:Q86SG7 equivalent -hsa:254778 up:Q8TAG6 equivalent -hsa:254783 up:A0A126GW13 equivalent -hsa:254783 up:A6NCV1 equivalent -hsa:254786 up:A0A126GW44 equivalent -hsa:254786 up:Q9NZP0 equivalent -hsa:2548 up:P10253 equivalent -hsa:254827 up:Q58DX5 equivalent -hsa:254863 up:Q8N2U0 equivalent -hsa:254879 up:Q8NHC8 equivalent -hsa:254887 up:A0A1W2PRJ8 reverse -hsa:254887 up:B3KXV3 equivalent -hsa:254887 up:Q8IYP9 equivalent -hsa:2549 up:Q13480 equivalent -hsa:2549 up:Q9HA84 equivalent -hsa:254910 up:Q5TCM9 equivalent -hsa:254950 up:Q3LI76 equivalent -hsa:254956 up:Q5VZ52 equivalent -hsa:254973 up:Q8NGR5 equivalent -hsa:2550 up:A0A1U9X7R0 equivalent -hsa:2550 up:Q59HG8 equivalent -hsa:2550 up:Q9UBS5 equivalent -hsa:255022 up:Q8IU99 equivalent -hsa:255027 up:Q2QL34 equivalent -hsa:255043 up:Q8N661 equivalent -hsa:255057 up:Q8N350 equivalent -hsa:255061 up:Q86UU9 equivalent -hsa:2551 up:A8IE48 equivalent -hsa:2551 up:Q06546 equivalent -hsa:255101 up:B4DZ05 equivalent -hsa:255101 up:Q6ZU64 equivalent -hsa:255104 up:Q5TGY1 equivalent -hsa:255119 up:Q6V702 equivalent -hsa:255189 up:A5PKZ7 equivalent -hsa:255189 up:Q68DD2 equivalent -hsa:255220 up:Q6A555 equivalent -hsa:255231 up:Q8IZK6 equivalent -hsa:255239 up:Q8NFD2 equivalent -hsa:255252 up:Q8N9N7 equivalent -hsa:255275 up:A6NDP7 equivalent -hsa:2553 up:Q06547 equivalent -hsa:255313 up:Q5JQC4 equivalent -hsa:255324 up:Q6UW88 equivalent -hsa:255349 up:A0A0C4DG04 equivalent -hsa:255349 up:Q6ICI0 equivalent -hsa:255374 up:A4D2B0 equivalent -hsa:255394 up:Q8N4U5 equivalent -hsa:2554 up:A8K177 equivalent -hsa:2554 up:P14867 equivalent -hsa:255403 up:Q3SXZ3 equivalent -hsa:255403 up:Q658L4 equivalent -hsa:255426 up:Q8N431 equivalent -hsa:255488 up:Q7Z419 equivalent -hsa:2555 up:P47869 equivalent -hsa:255520 up:Q8IZ81 equivalent -hsa:2556 up:P34903 equivalent -hsa:255626 up:Q96A08 equivalent -hsa:255631 up:Q17RW2 equivalent -hsa:2557 up:P48169 equivalent -hsa:2557 up:X5D7F5 equivalent -hsa:255725 up:Q96RD2 equivalent -hsa:255738 up:Q8NBP7 equivalent -hsa:255743 up:Q6UXI9 equivalent -hsa:255758 up:Q8WW35 equivalent -hsa:255762 up:Q8IXQ8 equivalent -hsa:255783 up:C9JVW0 equivalent -hsa:255798 up:Q147U7 equivalent -hsa:2558 up:P31644 equivalent -hsa:255809 up:A8MVS5 equivalent -hsa:255877 up:A8KA13 equivalent -hsa:255877 up:Q8N143 equivalent -hsa:2559 up:Q16445 equivalent -hsa:255919 up:B8YCP3 equivalent -hsa:255919 up:Q8N9A8 equivalent -hsa:255928 up:Q8NB59 equivalent -hsa:255967 up:Q58A45 equivalent -hsa:2560 up:P18505 equivalent -hsa:2560 up:X5DNL6 equivalent -hsa:256006 up:Q8N7Z5 equivalent -hsa:256051 up:Q6P9A3 equivalent -hsa:256076 up:A8TX70 equivalent -hsa:256076 up:H0Y393 equivalent -hsa:2561 up:P47870 equivalent -hsa:256126 up:Q6PIF2 equivalent -hsa:256130 up:Q5HYL7 equivalent -hsa:256144 up:A0A126GVR6 equivalent -hsa:256144 up:A0A126GW65 equivalent -hsa:256144 up:Q8NH37 equivalent -hsa:256148 up:A0A126GVU1 equivalent -hsa:256148 up:Q8NGB4 equivalent -hsa:256158 up:Q8NDA2 equivalent -hsa:2562 up:P28472 equivalent -hsa:256223 up:A8MXV6 equivalent -hsa:256227 up:Q6NZ63 equivalent -hsa:256281 up:O95848 equivalent -hsa:256297 up:Q7RTS3 equivalent -hsa:2563 up:A8K496 equivalent -hsa:2563 up:O14764 equivalent -hsa:256302 up:Q8N6N6 equivalent -hsa:256309 up:Q8TBZ0 equivalent -hsa:256329 up:Q8IXW0 equivalent -hsa:256356 up:Q6ZS86 equivalent -hsa:256364 up:Q32P44 equivalent -hsa:256380 up:B4E0X3 equivalent -hsa:256380 up:Q8N228 equivalent -hsa:256394 up:Q86U17 equivalent -hsa:2564 up:P78334 equivalent -hsa:256435 up:Q8NDV1 equivalent -hsa:256471 up:Q8NHS3 equivalent -hsa:256472 up:Q8N4L1 equivalent -hsa:2565 up:Q8N1C3 equivalent -hsa:256536 up:Q5VWI1 equivalent -hsa:256586 up:Q8IV50 equivalent -hsa:2566 up:P18507 equivalent -hsa:256643 up:A2AJT9 equivalent -hsa:256646 up:Q86Y26 equivalent -hsa:256691 up:Q7Z304 equivalent -hsa:2567 up:Q99928 equivalent -hsa:256710 up:Q6UWM5 equivalent -hsa:256714 up:Q96T17 equivalent -hsa:256764 up:Q3MJ13 equivalent -hsa:2568 up:B4DTP4 reverse -hsa:2568 up:E7EWG0 reverse -hsa:2568 up:O00591 equivalent -hsa:256815 up:Q8IYJ2 equivalent -hsa:256892 up:A6NLW9 equivalent -hsa:2569 up:P24046 equivalent -hsa:256933 up:Q8NG41 equivalent -hsa:256949 up:Q6NY19 equivalent -hsa:256957 up:A2RTY3 equivalent -hsa:256979 up:Q8TAQ9 equivalent -hsa:256987 up:Q86VE9 equivalent -hsa:257 up:O95076 equivalent -hsa:2570 up:P28476 equivalent -hsa:257019 up:A2A2Y4 equivalent -hsa:257044 up:Q5SY80 equivalent -hsa:257062 up:Q86XM0 equivalent -hsa:2571 up:A0A0S2Z3V5 equivalent -hsa:2571 up:Q8IVA8 equivalent -hsa:2571 up:Q99259 equivalent -hsa:257101 up:Q8IZ20 equivalent -hsa:257106 up:Q7Z6I6 equivalent -hsa:257144 up:Q8N6F7 equivalent -hsa:257160 up:Q8ND24 equivalent -hsa:257169 up:B2R9P8 equivalent -hsa:257169 up:Q8TAL5 equivalent -hsa:257177 up:Q5VTH2 equivalent -hsa:257194 up:Q7Z3B1 equivalent -hsa:2572 up:Q05329 equivalent -hsa:2572 up:Q5VZ30 equivalent -hsa:257202 up:P59796 equivalent -hsa:257218 up:B3KX98 equivalent -hsa:257218 up:Q149N8 equivalent -hsa:257236 up:Q2M329 equivalent -hsa:257240 up:Q8N239 equivalent -hsa:257313 up:Q765I0 equivalent -hsa:257364 up:Q8WV41 equivalent -hsa:257397 up:Q8N5C8 equivalent -hsa:2574 up:Q13066 equivalent -hsa:257407 up:A6NCS6 equivalent -hsa:257415 up:Q5BKY9 equivalent -hsa:25758 up:Q12914 equivalent -hsa:25758 up:Q6ZVL6 equivalent -hsa:25759 up:P98077 equivalent -hsa:2576 up:P0DSO3 equivalent -hsa:2576 up:Q13069 equivalent -hsa:257629 up:Q8N8V4 equivalent -hsa:25763 up:O75409 equivalent -hsa:25764 up:Q9NX55 equivalent -hsa:25766 up:Q6NWY9 equivalent -hsa:25769 up:Q9UI40 equivalent -hsa:2577 up:Q13069 equivalent -hsa:25770 up:O95567 equivalent -hsa:25771 up:Q8WUA7 equivalent -hsa:25776 up:Q9Y3M2 equivalent -hsa:25777 up:B4E2A6 equivalent -hsa:25777 up:Q9UH99 equivalent -hsa:25778 up:Q6XUX3 equivalent -hsa:2578 up:Q13070 equivalent -hsa:25780 up:Q8IV61 equivalent -hsa:25782 up:Q9H2M9 equivalent -hsa:25788 up:Q9Y620 equivalent -hsa:25789 up:Q9UK28 equivalent -hsa:2579 up:O76087 equivalent -hsa:2579 up:P0CL80 equivalent -hsa:2579 up:P0CL81 equivalent -hsa:2579 up:P0CL82 equivalent -hsa:25790 up:Q9UL16 equivalent -hsa:25791 up:Q8N5V2 equivalent -hsa:25792 up:Q9ULV3 equivalent -hsa:25793 up:Q9Y3I1 equivalent -hsa:25794 up:O14926 equivalent -hsa:25796 up:A0A0K0K1K7 equivalent -hsa:25796 up:O95336 equivalent -hsa:25797 up:Q16769 equivalent -hsa:25798 up:O95415 equivalent -hsa:25799 up:O75467 equivalent -hsa:258 up:Q546D7 equivalent -hsa:258 up:Q9NP70 equivalent -hsa:2580 up:O14976 equivalent -hsa:25800 up:Q13433 equivalent -hsa:25801 up:P28676 equivalent -hsa:258010 up:Q8NHG7 equivalent -hsa:25802 up:P29536 equivalent -hsa:25803 up:O95238 equivalent -hsa:25804 up:Q9Y4Z0 equivalent -hsa:25805 up:Q13145 equivalent -hsa:25806 up:F1T0K5 equivalent -hsa:25806 up:Q9UIW0 equivalent -hsa:25807 up:Q9Y3P4 equivalent -hsa:25809 up:O95922 equivalent -hsa:2581 up:A0A0A0MQV0 equivalent -hsa:2581 up:P54803 equivalent -hsa:25813 up:Q9Y512 equivalent -hsa:25814 up:Q9UBB4 equivalent -hsa:25816 up:B3KUI2 equivalent -hsa:25816 up:O95379 equivalent -hsa:25817 up:Q7Z5A7 equivalent -hsa:25818 up:Q9Y337 equivalent -hsa:25819 up:Q9UK39 equivalent -hsa:2582 up:A0A384NL38 equivalent -hsa:2582 up:Q14376 equivalent -hsa:25820 up:Q9Y4X5 equivalent -hsa:25821 up:Q9Y2Z2 equivalent -hsa:25822 up:O75953 equivalent -hsa:25823 up:Q9NRR2 equivalent -hsa:25824 up:P30044 equivalent -hsa:25825 up:Q9Y5Z0 equivalent -hsa:25827 up:Q9UKC9 equivalent -hsa:25828 up:Q99757 equivalent -hsa:25829 up:Q9Y519 equivalent -hsa:2583 up:B4DSP5 equivalent -hsa:2583 up:Q00973 equivalent -hsa:25830 up:Q9BR01 equivalent -hsa:25831 up:Q9ULT8 equivalent -hsa:25833 up:Q9UKI9 equivalent -hsa:25834 up:Q9UBM8 equivalent -hsa:25836 up:Q6KC79 equivalent -hsa:25837 up:Q9ULW5 equivalent -hsa:25839 up:J3KNI1 equivalent -hsa:25839 up:Q8N8L9 equivalent -hsa:25839 up:Q9H9E3 equivalent -hsa:2584 up:P51570 equivalent -hsa:2584 up:V9HWE7 equivalent -hsa:25840 up:Q9H8H3 equivalent -hsa:25841 up:Q8N961 equivalent -hsa:25842 up:Q9Y294 equivalent -hsa:25843 up:Q9Y3A3 equivalent -hsa:25844 up:Q9GZM5 equivalent -hsa:25847 up:A8K3Z6 equivalent -hsa:25847 up:Q9BS18 equivalent -hsa:25849 up:Q6UWI2 equivalent -hsa:2585 up:Q01415 equivalent -hsa:25850 up:B2RCE4 equivalent -hsa:25850 up:Q14585 equivalent -hsa:25851 up:Q7Z6L1 equivalent -hsa:25852 up:Q8IUR7 equivalent -hsa:25853 up:Q5T6F0 equivalent -hsa:25854 up:A5PLN7 equivalent -hsa:25855 up:Q9HCU9 equivalent -hsa:25858 up:Q9NTU4 equivalent -hsa:25861 up:B9EGE6 equivalent -hsa:25861 up:Q9P202 equivalent -hsa:25862 up:Q70CQ1 equivalent -hsa:25864 up:Q9BUJ0 equivalent -hsa:25865 up:Q9BZL6 equivalent -hsa:2587 up:P47211 equivalent -hsa:25870 up:Q8NBJ7 equivalent -hsa:25871 up:Q6NW34 equivalent -hsa:25873 up:Q9Y3U8 equivalent -hsa:25874 up:O95563 equivalent -hsa:25875 up:A0A384P5D7 equivalent -hsa:25875 up:Q6P1Q0 equivalent -hsa:25876 up:Q9Y4P9 equivalent -hsa:25878 up:Q9NR99 equivalent -hsa:25879 up:A0A087WT20 equivalent -hsa:25879 up:Q9NV06 equivalent -hsa:2588 up:P34059 equivalent -hsa:2588 up:Q96I49 equivalent -hsa:25880 up:Q96B77 equivalent -hsa:25884 up:Q6WN34 equivalent -hsa:25885 up:O95602 equivalent -hsa:25886 up:Q8NBT0 equivalent -hsa:25888 up:Q8WTR7 equivalent -hsa:2589 up:Q05BM8 equivalent -hsa:2589 up:Q10472 equivalent -hsa:25890 up:Q7Z7G0 equivalent -hsa:25891 up:Q6UXH9 equivalent -hsa:25893 up:Q8NG06 equivalent -hsa:25894 up:A0A024R6X4 equivalent -hsa:25894 up:Q58EX7 equivalent -hsa:25895 up:Q96AZ1 equivalent -hsa:25896 up:Q9NVH2 equivalent -hsa:25897 up:Q9NV58 equivalent -hsa:25898 up:Q96PM5 equivalent -hsa:259 up:P02760 equivalent -hsa:2590 up:A0A1L7NY50 equivalent -hsa:2590 up:Q10471 equivalent -hsa:25900 up:Q0D2I5 equivalent -hsa:25901 up:B4DUJ5 equivalent -hsa:25901 up:Q8IWP9 equivalent -hsa:25902 up:Q6UB35 equivalent -hsa:25903 up:Q68BL8 equivalent -hsa:25904 up:Q9H9A5 equivalent -hsa:25906 up:P60006 equivalent -hsa:25907 up:Q8WZ71 equivalent -hsa:25909 up:Q8WYP5 equivalent -hsa:2591 up:Q14435 equivalent -hsa:25911 up:Q9BVM2 equivalent -hsa:25912 up:Q9BWL3 equivalent -hsa:25913 up:Q9NUX5 equivalent -hsa:25914 up:Q86VV8 equivalent -hsa:25915 up:Q9BU61 equivalent -hsa:25915 up:Q9Y3Z0 equivalent -hsa:25917 up:Q9BV44 equivalent -hsa:259173 up:Q60I27 equivalent -hsa:259197 up:O14931 equivalent -hsa:2592 up:A0A0S2Z3Y7 equivalent -hsa:2592 up:B2RAT6 equivalent -hsa:2592 up:P07902 equivalent -hsa:25920 up:Q8WX92 equivalent -hsa:25921 up:Q9C0B5 equivalent -hsa:259215 up:A0A1L6Z9Z3 equivalent -hsa:259215 up:Q5SQ64 equivalent -hsa:259217 up:O43301 equivalent -hsa:25923 up:Q6DD88 equivalent -hsa:259230 up:Q86VZ5 equivalent -hsa:259232 up:Q8IZF0 equivalent -hsa:259236 up:Q8NEW7 equivalent -hsa:259239 up:Q8NEX6 equivalent -hsa:25924 up:Q8NFW9 equivalent -hsa:259240 up:Q8NEX5 equivalent -hsa:259249 up:Q96LB2 equivalent -hsa:259249 up:W8W3P5 equivalent -hsa:25925 up:Q96K83 equivalent -hsa:25926 up:Q9H8H0 equivalent -hsa:259266 up:B3KWI2 equivalent -hsa:259266 up:Q8IZT6 equivalent -hsa:25927 up:Q96F85 equivalent -hsa:25928 up:A4D125 equivalent -hsa:25928 up:Q6X4U4 equivalent -hsa:259282 up:Q8NFC6 equivalent -hsa:259285 up:P59534 equivalent -hsa:259286 up:P59535 equivalent -hsa:259287 up:P59536 equivalent -hsa:259289 up:P59537 equivalent -hsa:25929 up:B7ZLC9 reverse -hsa:25929 up:Q58EZ8 equivalent -hsa:25929 up:Q8TEQ6 equivalent -hsa:259290 up:P59538 equivalent -hsa:259291 up:A0A0J9YXD8 equivalent -hsa:259292 up:P59540 equivalent -hsa:259293 up:P59541 equivalent -hsa:259294 up:P59542 equivalent -hsa:259295 up:P59543 equivalent -hsa:259296 up:P59544 equivalent -hsa:2593 up:Q14353 equivalent -hsa:2593 up:V9HWB2 equivalent -hsa:25930 up:Q9H3S7 equivalent -hsa:259307 up:Q96RQ9 equivalent -hsa:259308 up:B4DY95 equivalent -hsa:259308 up:Q6ZU69 equivalent -hsa:25932 up:Q6FIC5 equivalent -hsa:25932 up:Q9Y696 equivalent -hsa:25934 up:Q9UFN0 equivalent -hsa:25936 up:Q53FM2 equivalent -hsa:25936 up:Q96IY1 equivalent -hsa:25937 up:Q9GZV5 equivalent -hsa:25938 up:F5H619 equivalent -hsa:25938 up:Q86XA9 equivalent -hsa:25939 up:Q59H15 equivalent -hsa:25939 up:Q9Y3Z3 equivalent -hsa:25940 up:I6L9E8 equivalent -hsa:25940 up:Q8NCA5 equivalent -hsa:25941 up:Q68CL5 equivalent -hsa:25942 up:Q96ST3 equivalent -hsa:25943 up:Q0IIP3 equivalent -hsa:25943 up:Q5TEA3 equivalent -hsa:25945 up:Q9NQS3 equivalent -hsa:25946 up:Q96PM9 equivalent -hsa:25948 up:A0A024RA38 equivalent -hsa:25948 up:Q8IY47 equivalent -hsa:25949 up:O95926 equivalent -hsa:2595 up:Q8TET4 equivalent -hsa:25950 up:Q9Y3V2 equivalent -hsa:25953 up:Q8N490 equivalent -hsa:25956 up:Q9NQW1 equivalent -hsa:25957 up:Q8TF01 equivalent -hsa:25959 up:Q63ZY3 equivalent -hsa:2596 up:P17677 equivalent -hsa:2596 up:Q5U058 equivalent -hsa:25960 up:Q6YN44 equivalent -hsa:25960 up:Q96PE1 equivalent -hsa:25961 up:Q86X67 equivalent -hsa:25962 up:Q69YN4 equivalent -hsa:25963 up:Q8NBN3 equivalent -hsa:25966 up:Q9Y426 equivalent -hsa:2597 up:P04406 equivalent -hsa:2597 up:V9HVZ4 equivalent -hsa:25970 up:B3KNV5 equivalent -hsa:25970 up:B4DLN5 equivalent -hsa:25970 up:Q9NRF2 equivalent -hsa:25972 up:A0A0S2Z612 equivalent -hsa:25972 up:Q53HI1 equivalent -hsa:25973 up:Q7L3T8 equivalent -hsa:25974 up:Q9Y4U1 equivalent -hsa:25975 up:Q8IUX8 equivalent -hsa:25976 up:Q7Z3E1 equivalent -hsa:25977 up:Q8NC96 equivalent -hsa:25978 up:B2RE76 equivalent -hsa:25978 up:Q9UQN3 equivalent -hsa:25979 up:Q6IAN0 equivalent -hsa:25980 up:Q9Y312 equivalent -hsa:25981 up:A0A140VJI6 equivalent -hsa:25981 up:Q9P2D7 equivalent -hsa:25983 up:Q8NEJ9 equivalent -hsa:25984 up:Q8TC04 equivalent -hsa:25984 up:Q9C075 equivalent -hsa:25987 up:Q8WUA8 equivalent -hsa:25988 up:Q9BQA5 equivalent -hsa:25989 up:B4DDG2 equivalent -hsa:25989 up:Q6PHR2 equivalent -hsa:25992 up:Q8TER0 equivalent -hsa:25994 up:Q9Y241 equivalent -hsa:25996 up:Q9Y3B8 equivalent -hsa:25998 up:Q9P2D0 equivalent -hsa:25999 up:Q96DZ5 equivalent -hsa:26 up:P19801 equivalent -hsa:26000 up:Q4KMP7 equivalent -hsa:26001 up:Q9H6Y7 equivalent -hsa:26002 up:Q6UVY6 equivalent -hsa:26003 up:Q9H8Y8 equivalent -hsa:26005 up:Q4AC94 equivalent -hsa:26007 up:A0A140VJH7 equivalent -hsa:26007 up:Q3LXA3 equivalent -hsa:26009 up:Q8IYH5 equivalent -hsa:26010 up:Q9NUQ6 equivalent -hsa:26011 up:Q6N022 equivalent -hsa:26012 up:Q6X4W1 equivalent -hsa:26013 up:Q9Y468 equivalent -hsa:26015 up:A8K2F9 equivalent -hsa:26015 up:Q9BWH6 equivalent -hsa:26017 up:Q9Y421 equivalent -hsa:26018 up:Q96JA1 equivalent -hsa:26019 up:Q9HAU5 equivalent -hsa:26020 up:Q7Z4F1 equivalent -hsa:26022 up:Q9Y2Y6 equivalent -hsa:26024 up:A4D273 equivalent -hsa:26024 up:O75127 equivalent -hsa:26025 up:O60330 equivalent -hsa:26027 up:Q8WXI4 equivalent -hsa:260293 up:Q8N118 equivalent -hsa:26030 up:A0A2X0SFH4 equivalent -hsa:26030 up:A1L390 equivalent -hsa:26031 up:Q9H4L5 equivalent -hsa:26032 up:O60279 equivalent -hsa:26033 up:Q4G0Y2 equivalent -hsa:26033 up:Q5VV63 equivalent -hsa:26034 up:Q8WWN9 equivalent -hsa:26035 up:O94923 equivalent -hsa:26036 up:Q96JY2 equivalent -hsa:26036 up:Q9Y4E5 equivalent -hsa:26037 up:O43166 equivalent -hsa:26038 up:Q8TDI0 equivalent -hsa:26039 up:O75177 equivalent -hsa:26040 up:Q9Y6X0 equivalent -hsa:260425 up:Q5TCQ9 equivalent -hsa:260429 up:Q8NF86 equivalent -hsa:26043 up:O94888 equivalent -hsa:260434 up:Q8WXC3 equivalent -hsa:260436 up:Q540F3 equivalent -hsa:260436 up:Q8NFU4 equivalent -hsa:26045 up:O43300 equivalent -hsa:26046 up:O94822 equivalent -hsa:26047 up:A0A090N7T7 equivalent -hsa:26047 up:B2RCH4 equivalent -hsa:26047 up:Q9UHC6 equivalent -hsa:26048 up:O60304 equivalent -hsa:26049 up:Q9Y6X4 equivalent -hsa:26050 up:O94991 equivalent -hsa:26051 up:Q96T49 equivalent -hsa:26052 up:Q9UQ16 equivalent -hsa:26053 up:Q8WXX7 equivalent -hsa:26054 up:B3KMM0 equivalent -hsa:26054 up:Q9GZR1 equivalent -hsa:26056 up:Q9BXF6 equivalent -hsa:26056 up:Q9UFM0 equivalent -hsa:26057 up:O75179 equivalent -hsa:26058 up:Q6Y7W6 equivalent -hsa:26059 up:O15083 equivalent -hsa:26060 up:Q9UKG1 equivalent -hsa:26061 up:Q9UJ83 equivalent -hsa:26063 up:Q9NUI1 equivalent -hsa:26064 up:Q9P0K7 equivalent -hsa:26065 up:Q8ND56 equivalent -hsa:26071 up:Q9BWD3 equivalent -hsa:26073 up:Q9Y2S7 equivalent -hsa:26074 up:Q8NHU2 equivalent -hsa:26084 up:A0A140VJU4 equivalent -hsa:26084 up:B3KXG0 equivalent -hsa:26084 up:Q96DR7 equivalent -hsa:26085 up:A0A1R3UCE9 equivalent -hsa:26085 up:Q5BQ99 reverse -hsa:26085 up:Q86VI7 reverse -hsa:26085 up:Q9UKR3 equivalent -hsa:26086 up:A0A0A0MSK4 equivalent -hsa:26086 up:Q86YR5 equivalent -hsa:26088 up:Q9UJY5 equivalent -hsa:26090 up:Q8N2K0 equivalent -hsa:26091 up:Q5GLZ8 equivalent -hsa:26092 up:Q5JTV8 equivalent -hsa:26093 up:B4DXW2 equivalent -hsa:26093 up:Q9Y3X0 equivalent -hsa:26094 up:B2RDD6 equivalent -hsa:26094 up:Q8WV16 equivalent -hsa:26095 up:Q4JDL3 equivalent -hsa:26095 up:Q9Y406 equivalent -hsa:26097 up:Q9Y3Y2 equivalent -hsa:26098 up:Q3B7T1 equivalent -hsa:26099 up:Q7Z422 equivalent -hsa:26100 up:Q9Y4P8 equivalent -hsa:26103 up:Q9P2V4 equivalent -hsa:26108 up:Q9Y3Y4 equivalent -hsa:26112 up:A6NI79 equivalent -hsa:26112 up:Q7L2X4 equivalent -hsa:26115 up:Q9HCD6 equivalent -hsa:26118 up:Q8NC76 equivalent -hsa:26118 up:Q9Y6I7 equivalent -hsa:26119 up:B3KR97 equivalent -hsa:26119 up:Q5SW96 equivalent -hsa:26121 up:Q8WWY3 equivalent -hsa:26122 up:Q52LR7 equivalent -hsa:26123 up:Q6NUS6 equivalent -hsa:26127 up:Q9NVK5 equivalent -hsa:26128 up:Q96EK5 equivalent -hsa:26130 up:Q14C86 equivalent -hsa:26133 up:Q8TEL6 equivalent -hsa:26135 up:Q8NC51 equivalent -hsa:26136 up:A4D0U5 equivalent -hsa:26136 up:Q9UGI8 equivalent -hsa:26137 up:Q9HC78 equivalent -hsa:26140 up:J3KQB2 equivalent -hsa:26140 up:Q9Y4R7 equivalent -hsa:26145 up:Q8IU81 equivalent -hsa:26146 up:Q8TDR0 equivalent -hsa:26147 up:Q5T6S3 equivalent -hsa:26149 up:A8K7Y5 equivalent -hsa:26149 up:Q5TYW1 equivalent -hsa:2615 up:Q14392 equivalent -hsa:26150 up:Q9H4K1 equivalent -hsa:26151 up:Q9BTE0 equivalent -hsa:26152 up:Q6ZUQ0 equivalent -hsa:26152 up:Q9Y3M9 equivalent -hsa:26153 up:Q9ULI4 equivalent -hsa:26154 up:B3KVV3 equivalent -hsa:26154 up:Q86UK0 equivalent -hsa:26155 up:Q9Y3T9 equivalent -hsa:26156 up:O76021 equivalent -hsa:26157 up:A0A090N8H4 equivalent -hsa:26157 up:Q9UG22 equivalent -hsa:26160 up:Q9UG01 equivalent -hsa:26164 up:Q9H4K7 equivalent -hsa:26165 up:Q8IWB4 equivalent -hsa:26166 up:Q8NE09 equivalent -hsa:26167 up:Q59FR6 equivalent -hsa:26167 up:Q9Y5E4 equivalent -hsa:26168 up:Q9H4L4 equivalent -hsa:2617 up:P41250 equivalent -hsa:261726 up:O75663 equivalent -hsa:261729 up:B3KS24 equivalent -hsa:261729 up:Q6YPB2 equivalent -hsa:261729 up:Q8NFT2 equivalent -hsa:26173 up:Q8N201 equivalent -hsa:261734 up:B3KW36 reverse -hsa:261734 up:O75161 equivalent -hsa:26175 up:Q8N6I4 equivalent -hsa:2618 up:P22102 equivalent -hsa:26188 up:A0A126GV94 equivalent -hsa:26188 up:Q15619 equivalent -hsa:26189 up:A0A126GVH4 equivalent -hsa:26189 up:Q9Y585 equivalent -hsa:2619 up:P54826 equivalent -hsa:26190 up:Q9UKT8 equivalent -hsa:26191 up:B4DZW8 equivalent -hsa:26191 up:Q9Y2R2 equivalent -hsa:262 up:A0A088AWN0 equivalent -hsa:262 up:B4DZ60 equivalent -hsa:262 up:P17707 equivalent -hsa:262 up:Q6N0B2 equivalent -hsa:2620 up:O43903 equivalent -hsa:26205 up:B4DQS0 equivalent -hsa:26205 up:Q9UKD1 equivalent -hsa:26206 up:A0A140VJV0 equivalent -hsa:26206 up:Q99932 equivalent -hsa:26207 up:Q9UKF7 equivalent -hsa:2621 up:Q14393 equivalent -hsa:26211 up:A0A126GV98 equivalent -hsa:26211 up:Q13607 equivalent -hsa:26212 up:P58173 equivalent -hsa:26219 up:A0A126GW06 equivalent -hsa:26219 up:Q8NGS1 equivalent -hsa:2622 up:A0A384MR00 equivalent -hsa:2622 up:O95995 equivalent -hsa:26224 up:Q9UKT7 equivalent -hsa:26225 up:Q9Y689 equivalent -hsa:26227 up:O43175 equivalent -hsa:26228 up:Q9ULZ2 equivalent -hsa:26229 up:O94766 equivalent -hsa:2623 up:P15976 equivalent -hsa:26230 up:B3KW11 equivalent -hsa:26230 up:Q8IVF5 equivalent -hsa:26232 up:Q9UK22 equivalent -hsa:26233 up:Q8N531 equivalent -hsa:26234 up:Q9UKA1 equivalent -hsa:26235 up:Q9UKA2 equivalent -hsa:26239 up:O14633 equivalent -hsa:2624 up:P23769 equivalent -hsa:26240 up:Q9Y247 equivalent -hsa:26245 up:A0A126GV73 equivalent -hsa:26245 up:Q96R27 equivalent -hsa:26246 up:A0A126GW34 equivalent -hsa:26246 up:Q8NH16 equivalent -hsa:26248 up:A0A0C4DFP3 equivalent -hsa:26248 up:Q8NGT1 equivalent -hsa:26249 up:Q9UH77 equivalent -hsa:2625 up:P23771 equivalent -hsa:26251 up:Q9UJ96 equivalent -hsa:26253 up:Q9ULY5 equivalent -hsa:26254 up:Q9UBM4 equivalent -hsa:26256 up:A0A024RC21 equivalent -hsa:26256 up:O75952 equivalent -hsa:26257 up:O15522 equivalent -hsa:26258 up:B3KY40 equivalent -hsa:26258 up:Q9UL45 equivalent -hsa:26259 up:Q8N3Y1 equivalent -hsa:2626 up:B3KUF4 equivalent -hsa:2626 up:P43694 equivalent -hsa:26260 up:Q8TCJ0 equivalent -hsa:26261 up:A4D2D3 equivalent -hsa:26261 up:O75426 equivalent -hsa:26262 up:Q96FV3 equivalent -hsa:26263 up:Q8NEZ5 equivalent -hsa:26266 up:Q59HF0 equivalent -hsa:26266 up:Q9UKG4 equivalent -hsa:26267 up:Q59F51 equivalent -hsa:26267 up:Q9UK96 equivalent -hsa:26268 up:Q9UK97 equivalent -hsa:26269 up:A0A0S2Z5D1 equivalent -hsa:26269 up:Q8IXA8 equivalent -hsa:26269 up:Q9NRD0 equivalent -hsa:2627 up:Q92908 equivalent -hsa:26270 up:Q9NRD1 equivalent -hsa:26271 up:Q9UKT4 equivalent -hsa:26272 up:B3KNA0 equivalent -hsa:26272 up:Q9UKT5 equivalent -hsa:26273 up:Q49AF1 equivalent -hsa:26273 up:Q9UK99 equivalent -hsa:26275 up:A0A140VJL0 equivalent -hsa:26275 up:Q6NVY1 equivalent -hsa:26276 up:A0A0S2Z577 equivalent -hsa:26276 up:Q9H267 equivalent -hsa:26277 up:Q9BSI4 equivalent -hsa:26278 up:Q9NZJ4 equivalent -hsa:26279 up:Q9UNK4 equivalent -hsa:2628 up:A0A140VK19 equivalent -hsa:2628 up:P50440 equivalent -hsa:26280 up:Q9NP60 equivalent -hsa:26281 up:A0A7U3L649 equivalent -hsa:26281 up:Q9NP95 equivalent -hsa:26284 up:O75616 equivalent -hsa:26285 up:P56750 equivalent -hsa:26286 up:Q9NP61 equivalent -hsa:26287 up:Q9GZV1 equivalent -hsa:26289 up:Q9Y6K8 equivalent -hsa:2629 up:A0A068F658 equivalent -hsa:2629 up:P04062 equivalent -hsa:26290 up:Q9NY28 equivalent -hsa:26291 up:A0A7U3L5M7 equivalent -hsa:26291 up:Q9NSA1 equivalent -hsa:26292 up:Q99417 equivalent -hsa:26297 up:A8K8C1 equivalent -hsa:26297 up:Q9UGK8 equivalent -hsa:26298 up:Q9NZC4 equivalent -hsa:26301 up:J7Q0Z1 equivalent -hsa:26301 up:Q8N5D6 equivalent -hsa:2631 up:O75323 equivalent -hsa:2632 up:Q04446 equivalent -hsa:2632 up:Q59ET0 equivalent -hsa:2633 up:P32455 equivalent -hsa:26330 up:A0A0K0K1K1 equivalent -hsa:26330 up:O14556 equivalent -hsa:26333 up:A0A126GVR5 equivalent -hsa:26333 up:O14581 equivalent -hsa:26338 up:Q8NGL0 equivalent -hsa:26339 up:A0A126GWC1 equivalent -hsa:26339 up:Q8NHB7 equivalent -hsa:2634 up:P32456 equivalent -hsa:2634 up:Q8TCE5 equivalent -hsa:26341 up:A0A126GW79 equivalent -hsa:26341 up:A6NKK0 equivalent -hsa:2635 up:Q9H0R5 equivalent -hsa:26353 up:Q9UJY1 equivalent -hsa:26354 up:Q9BVP2 equivalent -hsa:26355 up:Q96A26 equivalent -hsa:26355 up:Q9H2P1 equivalent -hsa:2636 up:Q14549 equivalent -hsa:2637 up:P52951 equivalent -hsa:2638 up:P02774 equivalent -hsa:2639 up:Q92947 equivalent -hsa:2641 up:P01275 equivalent -hsa:2642 up:P47871 equivalent -hsa:2643 up:P30793 equivalent -hsa:2644 up:P30047 equivalent -hsa:2645 up:P35557 equivalent -hsa:2645 up:Q53Y25 equivalent -hsa:2646 up:A0A0C4DFN2 equivalent -hsa:2646 up:Q14397 equivalent -hsa:26468 up:Q9UPM6 equivalent -hsa:26469 up:Q99952 equivalent -hsa:2647 up:P78537 equivalent -hsa:26470 up:Q6UXD5 equivalent -hsa:26471 up:O60356 equivalent -hsa:26472 up:Q96C90 equivalent -hsa:26476 up:A0A126GWQ9 equivalent -hsa:26476 up:P30954 equivalent -hsa:2648 up:Q92830 equivalent -hsa:2649 up:F1D8S0 equivalent -hsa:2649 up:Q15406 equivalent -hsa:26493 up:A0A126GW73 equivalent -hsa:26493 up:Q15620 equivalent -hsa:26494 up:A0A126GVX6 equivalent -hsa:26494 up:Q15617 equivalent -hsa:26496 up:A0A126GVZ2 equivalent -hsa:26496 up:P58181 equivalent -hsa:26499 up:Q9NYT0 equivalent -hsa:265 up:Q99217 equivalent -hsa:2650 up:Q02742 equivalent -hsa:2650 up:Q86T81 equivalent -hsa:26502 up:Q9UHQ1 equivalent -hsa:26503 up:Q9NRA2 equivalent -hsa:26504 up:Q6P4Q7 equivalent -hsa:26505 up:Q8NE01 equivalent -hsa:26507 up:Q9NRU3 equivalent -hsa:26508 up:Q9NQ87 equivalent -hsa:26509 up:Q9NZM1 equivalent -hsa:2651 up:Q8N0V5 equivalent -hsa:26511 up:Q9UKJ5 equivalent -hsa:26512 up:Q9UL03 equivalent -hsa:26515 up:B2R4A9 equivalent -hsa:26515 up:Q9Y5J6 equivalent -hsa:26517 up:Q9Y5L4 equivalent -hsa:26519 up:P62072 equivalent -hsa:2652 up:P04001 equivalent -hsa:2652 up:P0DN77 equivalent -hsa:2652 up:P0DN78 equivalent -hsa:26520 up:Q9Y5J7 equivalent -hsa:26521 up:G3XAN8 equivalent -hsa:26521 up:Q9Y5J9 equivalent -hsa:26523 up:B2RAD8 equivalent -hsa:26523 up:Q9UL18 equivalent -hsa:26524 up:Q9NRM7 equivalent -hsa:26525 up:Q9UBH0 equivalent -hsa:26526 up:Q9UKR8 equivalent -hsa:26528 up:A0A0S2Z569 equivalent -hsa:26528 up:Q96EP5 equivalent -hsa:26529 up:A0A126GV87 equivalent -hsa:26529 up:P58182 equivalent -hsa:2653 up:P23434 equivalent -hsa:26530 up:P0DN82 equivalent -hsa:26531 up:A0A024RCH9 equivalent -hsa:26531 up:Q9GZK7 equivalent -hsa:26532 up:A0A126GW93 equivalent -hsa:26532 up:O60404 equivalent -hsa:26533 up:A0A126GWE3 equivalent -hsa:26533 up:Q8NGC4 equivalent -hsa:26534 up:Q8NGC3 equivalent -hsa:26538 up:A0A126GWJ7 equivalent -hsa:26538 up:O60403 equivalent -hsa:26539 up:A0A126GVU5 equivalent -hsa:26539 up:Q9Y4A9 equivalent -hsa:26548 up:Q9UKP3 equivalent -hsa:2657 up:P27539 equivalent -hsa:26574 up:Q9NY61 equivalent -hsa:26575 up:Q9UGC6 equivalent -hsa:26576 up:Q9UPE1 equivalent -hsa:26577 up:Q9UKZ9 equivalent -hsa:26578 up:Q92882 equivalent -hsa:26579 up:A8K256 equivalent -hsa:26579 up:Q96EZ4 equivalent -hsa:2658 up:B2RC63 equivalent -hsa:2658 up:Q9UK05 equivalent -hsa:26580 up:A0A024R549 equivalent -hsa:26580 up:Q96G97 equivalent -hsa:26581 up:A0A384NPT7 equivalent -hsa:26581 up:Q96PT3 equivalent -hsa:26584 up:O43812 equivalent -hsa:26584 up:Q96PT3 equivalent -hsa:26585 up:A6XAA7 equivalent -hsa:26585 up:O60565 equivalent -hsa:26586 up:Q8WWK9 equivalent -hsa:26589 up:Q9H2W6 equivalent -hsa:26595 up:A0A126GVQ4 equivalent -hsa:26595 up:Q96RD0 equivalent -hsa:266 up:Q99218 equivalent -hsa:2660 up:O14793 equivalent -hsa:2660 up:Q53S46 equivalent -hsa:26608 up:A0A384MDS4 equivalent -hsa:26608 up:Q9Y4P3 equivalent -hsa:26609 up:Q9H320 equivalent -hsa:2661 up:O60383 equivalent -hsa:26610 up:Q96EB1 equivalent -hsa:2662 up:P55107 equivalent -hsa:2664 up:A0A0S2Z3X8 equivalent -hsa:2664 up:P31150 equivalent -hsa:26648 up:Q6IFN5 equivalent -hsa:2665 up:P50395 equivalent -hsa:2665 up:Q6IAT1 equivalent -hsa:26658 up:O60412 equivalent -hsa:26659 up:A0A126GW60 equivalent -hsa:26659 up:Q15622 equivalent -hsa:266629 up:Q6XCI7 equivalent -hsa:266629 up:Q9UDX4 equivalent -hsa:26664 up:A0A126GWU6 equivalent -hsa:26664 up:O76099 equivalent -hsa:266675 up:Q8NFU0 equivalent -hsa:266722 up:Q8IZP7 equivalent -hsa:266727 up:Q8NFP4 equivalent -hsa:266740 up:P43356 equivalent -hsa:266743 up:Q8IUM7 equivalent -hsa:266747 up:Q8IZJ4 equivalent -hsa:2668 up:A0A0S2Z3V2 equivalent -hsa:2668 up:P39905 equivalent -hsa:266812 up:Q96NT1 equivalent -hsa:26683 up:A0A126GV92 equivalent -hsa:26683 up:Q6IEY1 equivalent -hsa:26686 up:A0A126GVR8 equivalent -hsa:26687 up:P0C645 equivalent -hsa:26689 up:Q15615 equivalent -hsa:2669 up:P55040 equivalent -hsa:26692 up:A0A126GVA1 equivalent -hsa:26692 up:Q9Y3N9 equivalent -hsa:26693 up:Q8NHB1 equivalent -hsa:26696 up:A0A126GVY3 equivalent -hsa:26696 up:A0A126GWK9 equivalent -hsa:26696 up:O43869 equivalent -hsa:266977 up:Q5T601 equivalent -hsa:267 up:Q9UKV5 equivalent -hsa:2670 up:P14136 equivalent -hsa:267002 up:Q6P3X8 equivalent -hsa:267004 up:Q8N328 equivalent -hsa:267012 up:P59103 equivalent -hsa:267020 up:Q7Z4Y8 equivalent -hsa:26707 up:A0A126GWS4 equivalent -hsa:26707 up:O76002 equivalent -hsa:2671 up:P55789 equivalent -hsa:26716 up:A0A024RCM6 equivalent -hsa:26716 up:Q9GZK4 equivalent -hsa:2672 up:Q99684 equivalent -hsa:2673 up:Q06210 equivalent -hsa:26735 up:A0A126GVD1 equivalent -hsa:26735 up:Q8NH93 equivalent -hsa:26737 up:A0A0B4J1S0 equivalent -hsa:26737 up:Q8NH94 equivalent -hsa:2674 up:P56159 equivalent -hsa:26740 up:A0A126GW18 equivalent -hsa:26740 up:Q8NGS2 equivalent -hsa:26747 up:Q9UHK0 equivalent -hsa:26748 up:O76087 equivalent -hsa:26748 up:P0CL80 equivalent -hsa:26748 up:P0CL81 equivalent -hsa:26748 up:P0CL82 equivalent -hsa:26749 up:Q9UEU5 equivalent -hsa:2675 up:O00451 equivalent -hsa:26750 up:Q96S38 equivalent -hsa:26751 up:Q96HL8 equivalent -hsa:2676 up:O60609 equivalent -hsa:26762 up:B4DPB1 equivalent -hsa:26762 up:Q96D42 equivalent -hsa:2677 up:P38435 equivalent -hsa:2678 up:A0A140VJJ9 equivalent -hsa:2678 up:P19440 equivalent -hsa:268 up:P03971 equivalent -hsa:2683 up:P15291 equivalent -hsa:2686 up:A0PJJ9 equivalent -hsa:2686 up:Q9UJ14 equivalent -hsa:2687 up:P36269 equivalent -hsa:26872 up:Q9UHE8 equivalent -hsa:26873 up:O14841 equivalent -hsa:2688 up:B1A4G6 equivalent -hsa:2688 up:P01241 equivalent -hsa:2689 up:A0A0M6L0J9 equivalent -hsa:2689 up:P01242 equivalent -hsa:269 up:Q16671 equivalent -hsa:2690 up:P10912 equivalent -hsa:2691 up:P01286 equivalent -hsa:2692 up:A0A090N8Y6 equivalent -hsa:2692 up:Q02643 equivalent -hsa:2693 up:Q92847 equivalent -hsa:2694 up:P27352 equivalent -hsa:2695 up:P09681 equivalent -hsa:26952 up:Q99954 equivalent -hsa:26953 up:O60518 equivalent -hsa:26958 up:A0A140VK12 equivalent -hsa:26958 up:Q9UBF2 equivalent -hsa:26959 up:O60381 equivalent -hsa:2696 up:P48546 equivalent -hsa:26960 up:B3KXQ8 equivalent -hsa:26960 up:Q8NFP9 equivalent -hsa:2697 up:A0A654IBU3 equivalent -hsa:2697 up:P17302 equivalent -hsa:26973 up:Q9UHD1 equivalent -hsa:26974 up:Q96NJ3 equivalent -hsa:26984 up:Q96IW7 equivalent -hsa:26985 up:Q9Y2T2 equivalent -hsa:26986 up:P11940 equivalent -hsa:26993 up:Q9ULX6 equivalent -hsa:26994 up:Q9Y3C5 equivalent -hsa:26995 up:O95900 equivalent -hsa:26996 up:Q9UJ42 equivalent -hsa:26998 up:Q9UGM5 equivalent -hsa:26999 up:Q96F07 equivalent -hsa:27 up:P42684 equivalent -hsa:270 up:P23109 equivalent -hsa:2700 up:Q9Y6H8 equivalent -hsa:27000 up:Q99543 equivalent -hsa:27005 up:Q9UK80 equivalent -hsa:27006 up:A0A7U3JVZ9 equivalent -hsa:27006 up:Q9HCT0 equivalent -hsa:2701 up:P35212 equivalent -hsa:27010 up:A0A090N8Y0 equivalent -hsa:27010 up:Q9H3S4 equivalent -hsa:27012 up:Q6PIU1 equivalent -hsa:27013 up:Q9BV87 equivalent -hsa:27018 up:Q00994 equivalent -hsa:27019 up:A0A140VJI0 equivalent -hsa:27019 up:Q9UI46 equivalent -hsa:2702 up:P36382 equivalent -hsa:2702 up:X5D2H9 equivalent -hsa:27020 up:Q9Y639 equivalent -hsa:27022 up:Q9UJU5 equivalent -hsa:27023 up:Q99853 equivalent -hsa:2703 up:P48165 equivalent -hsa:2703 up:X5D7G1 equivalent -hsa:27030 up:Q9UHC1 equivalent -hsa:27031 up:Q7Z494 equivalent -hsa:27032 up:P98194 equivalent -hsa:27033 up:Q9Y2Y4 equivalent -hsa:27034 up:Q9UKU7 equivalent -hsa:27035 up:Q9Y5S8 equivalent -hsa:27036 up:Q9Y286 equivalent -hsa:27037 up:Q8IZ69 equivalent -hsa:27039 up:Q9NZM6 equivalent -hsa:27040 up:O43561 equivalent -hsa:27042 up:Q68CQ4 equivalent -hsa:27043 up:C9JFV4 equivalent -hsa:27043 up:Q8IZL8 equivalent -hsa:27044 up:A0A140VK49 equivalent -hsa:27044 up:Q7KZF4 equivalent -hsa:2705 up:A0A654ICJ7 equivalent -hsa:2705 up:P08034 equivalent -hsa:2706 up:H9U1J4 equivalent -hsa:2706 up:P29033 equivalent -hsa:27063 up:A0A384NYH5 equivalent -hsa:27063 up:Q15327 equivalent -hsa:27065 up:B2R5R8 equivalent -hsa:27065 up:P42857 equivalent -hsa:27067 up:Q9NUL3 equivalent -hsa:27068 up:Q9H2U2 equivalent -hsa:27069 up:Q9H3K2 equivalent -hsa:2707 up:A0A654ICK0 equivalent -hsa:2707 up:O75712 equivalent -hsa:27071 up:Q9UN19 equivalent -hsa:27072 up:P49754 equivalent -hsa:27074 up:Q9UQV4 equivalent -hsa:27075 up:O95857 equivalent -hsa:27075 up:Q6FGK0 equivalent -hsa:27076 up:B2RBR3 equivalent -hsa:27076 up:O95274 equivalent -hsa:27077 up:B4DEW0 equivalent -hsa:27077 up:Q9UPM9 equivalent -hsa:27079 up:Q8IZ73 equivalent -hsa:27085 up:Q96DY7 equivalent -hsa:27086 up:Q548T7 equivalent -hsa:27086 up:Q8TEA2 equivalent -hsa:27086 up:Q9H334 equivalent -hsa:27087 up:Q9P2W7 equivalent -hsa:27089 up:O14949 equivalent -hsa:2709 up:A0A654IE64 equivalent -hsa:2709 up:O95377 equivalent -hsa:27090 up:Q9H4F1 equivalent -hsa:27091 up:Q9UF02 equivalent -hsa:27092 up:Q9UBN1 equivalent -hsa:27094 up:Q9NPA1 equivalent -hsa:27095 up:O43617 equivalent -hsa:27097 up:O75529 equivalent -hsa:27098 up:B7Z5R4 equivalent -hsa:27098 up:F5GWQ8 equivalent -hsa:27098 up:Q15846 equivalent -hsa:271 up:Q01433 equivalent -hsa:2710 up:B4DH54 equivalent -hsa:2710 up:P32189 equivalent -hsa:27101 up:Q9HB71 equivalent -hsa:27102 up:Q9BQI3 equivalent -hsa:27106 up:Q8TBH0 equivalent -hsa:27107 up:O95625 equivalent -hsa:27107 up:Q59H97 equivalent -hsa:27109 up:Q99766 equivalent -hsa:27111 up:Q9H190 equivalent -hsa:27112 up:O75949 equivalent -hsa:27113 up:Q96PG8 equivalent -hsa:27113 up:Q9BXH1 equivalent -hsa:27115 up:Q9NP56 equivalent -hsa:2712 up:A0A140VKG0 equivalent -hsa:2712 up:Q14410 equivalent -hsa:27120 up:A0A140VK15 equivalent -hsa:27120 up:Q9UK85 equivalent -hsa:27121 up:Q9UBT3 equivalent -hsa:27122 up:Q9UBP4 equivalent -hsa:27123 up:Q9UBU2 equivalent -hsa:27124 up:B4DF95 equivalent -hsa:27124 up:Q15735 equivalent -hsa:27125 up:Q9UHB7 equivalent -hsa:27127 up:Q8NDV3 equivalent -hsa:27128 up:Q9UIA0 equivalent -hsa:27129 up:Q9UBY9 equivalent -hsa:27130 up:Q9Y283 equivalent -hsa:27131 up:Q9Y5X3 equivalent -hsa:27132 up:Q9UBL6 equivalent -hsa:27133 up:Q8NCM2 equivalent -hsa:27134 up:O95049 equivalent -hsa:27136 up:Q86VD1 equivalent -hsa:27141 up:Q9UHD4 equivalent -hsa:27143 up:Q9ULE6 equivalent -hsa:27145 up:Q7Z7B0 equivalent -hsa:27146 up:Q9ULE4 equivalent -hsa:27147 up:Q9ULE3 equivalent -hsa:27148 up:A0A140VJW1 equivalent -hsa:27148 up:Q9NRP7 equivalent -hsa:27151 up:A0A494C0S9 equivalent -hsa:27152 up:Q9ULD6 equivalent -hsa:27153 up:Q9ULD5 equivalent -hsa:27154 up:Q9ULD4 equivalent -hsa:27156 up:Q9UHP6 equivalent -hsa:27158 up:Q9UHB4 equivalent -hsa:27159 up:A8K3T7 equivalent -hsa:27159 up:Q9BZP6 equivalent -hsa:27161 up:Q9UKV8 equivalent -hsa:27163 up:Q02083 equivalent -hsa:27164 up:A0A384MEH2 equivalent -hsa:27164 up:A9JR48 equivalent -hsa:27164 up:Q9BXA9 equivalent -hsa:27165 up:Q9UI32 equivalent -hsa:27166 up:Q9Y255 equivalent -hsa:2717 up:P06280 equivalent -hsa:2717 up:Q53Y83 equivalent -hsa:27173 up:Q9NY26 equivalent -hsa:27175 up:Q9NRH3 equivalent -hsa:27177 up:Q9NZH7 equivalent -hsa:27178 up:Q9NZH6 equivalent -hsa:27179 up:Q9UHA7 equivalent -hsa:27180 up:Q9Y336 equivalent -hsa:27181 up:Q9NYZ4 equivalent -hsa:27183 up:Q9UN37 equivalent -hsa:27185 up:Q9NRI5 equivalent -hsa:27189 up:Q9P0M4 equivalent -hsa:2719 up:I6QTG3 equivalent -hsa:2719 up:P51654 equivalent -hsa:2719 up:Q53H15 equivalent -hsa:27190 up:Q9UHF5 equivalent -hsa:27197 up:Q96P67 equivalent -hsa:27198 up:A0A4Y1JWP1 equivalent -hsa:27198 up:Q9BXC0 equivalent -hsa:27199 up:B2R986 equivalent -hsa:27199 up:Q96P68 equivalent -hsa:272 up:Q01432 equivalent -hsa:2720 up:P16278 equivalent -hsa:27201 up:B2R7M4 equivalent -hsa:27201 up:Q96P69 equivalent -hsa:27202 up:Q9P296 equivalent -hsa:27229 up:Q9UGJ1 equivalent -hsa:27230 up:Q9Y6X1 equivalent -hsa:27231 up:Q9NPI5 equivalent -hsa:27232 up:Q14749 equivalent -hsa:27232 up:V9HW60 equivalent -hsa:27233 up:O75897 equivalent -hsa:27235 up:Q96H96 equivalent -hsa:27236 up:B4E273 equivalent -hsa:27236 up:P53367 equivalent -hsa:27236 up:Q8N8M9 equivalent -hsa:27237 up:B3KTS4 equivalent -hsa:27237 up:Q5VV41 equivalent -hsa:27238 up:Q92917 equivalent -hsa:27239 up:A0A0I9QPQ8 equivalent -hsa:27239 up:Q16538 equivalent -hsa:27240 up:Q9Y3P8 equivalent -hsa:27241 up:A0A090N8P4 equivalent -hsa:27241 up:Q3SYG4 equivalent -hsa:27242 up:O75509 equivalent -hsa:27243 up:O43633 equivalent -hsa:27244 up:Q9Y6P5 equivalent -hsa:27245 up:Q5TGY3 equivalent -hsa:27246 up:Q9Y4L5 equivalent -hsa:27247 up:Q9UMS0 equivalent -hsa:27248 up:Q96DZ1 equivalent -hsa:27248 up:V9HWD3 equivalent -hsa:27249 up:Q9H3L0 equivalent -hsa:27250 up:Q53EL6 equivalent -hsa:27252 up:Q9Y2M5 equivalent -hsa:27253 up:O14917 equivalent -hsa:27254 up:Q9Y534 equivalent -hsa:27255 up:B4DGV0 equivalent -hsa:27255 up:Q9UQ52 equivalent -hsa:27257 up:A0A0S2Z590 equivalent -hsa:27257 up:O15116 equivalent -hsa:27258 up:P62310 equivalent -hsa:27283 up:Q6NSC1 equivalent -hsa:27283 up:Q9UJW2 equivalent -hsa:27284 up:O43704 equivalent -hsa:27285 up:Q9UIF3 equivalent -hsa:27286 up:O60687 equivalent -hsa:27287 up:O95231 equivalent -hsa:27288 up:O75526 equivalent -hsa:27289 up:Q92730 equivalent -hsa:2729 up:P48506 equivalent -hsa:2729 up:Q14TF0 equivalent -hsa:27290 up:O60575 equivalent -hsa:27290 up:V9HWG8 equivalent -hsa:27291 up:Q4KMT0 equivalent -hsa:27291 up:Q7Z5L2 equivalent -hsa:27292 up:A0A0C4DGB1 reverse -hsa:27292 up:A8K9K8 equivalent -hsa:27292 up:Q9UNQ2 equivalent -hsa:27293 up:B4DW34 equivalent -hsa:27293 up:Q92485 equivalent -hsa:27294 up:Q9UQ10 equivalent -hsa:27295 up:Q53GG5 equivalent -hsa:27296 up:Q9Y2B4 equivalent -hsa:27297 up:O75575 equivalent -hsa:27299 up:B7Z6V5 equivalent -hsa:27299 up:O15204 equivalent -hsa:273 up:P49418 equivalent -hsa:2730 up:P48507 equivalent -hsa:27300 up:Q6NX49 equivalent -hsa:27301 up:E5KN95 equivalent -hsa:27301 up:Q9UBZ4 equivalent -hsa:27302 up:O95393 equivalent -hsa:27303 up:Q6XE24 equivalent -hsa:27304 up:O95396 equivalent -hsa:27306 up:A0A384P5J0 equivalent -hsa:27306 up:O60760 equivalent -hsa:27309 up:Q53EN0 equivalent -hsa:27309 up:Q9Y3S2 equivalent -hsa:2731 up:P23378 equivalent -hsa:27314 up:A8K5R1 equivalent -hsa:27314 up:Q15771 equivalent -hsa:27315 up:A0A024RCD5 equivalent -hsa:27315 up:Q9UHJ9 equivalent -hsa:27316 up:P38159 equivalent -hsa:27319 up:B4DF88 equivalent -hsa:27319 up:Q8NFJ8 equivalent -hsa:27324 up:O15405 equivalent -hsa:27327 up:Q8NDV7 equivalent -hsa:27328 up:Q9BZA7 equivalent -hsa:27329 up:Q9Y5C1 equivalent -hsa:2733 up:Q53GS7 equivalent -hsa:27330 up:Q9UK32 equivalent -hsa:27332 up:Q14966 equivalent -hsa:27333 up:O00461 equivalent -hsa:27334 up:O00398 equivalent -hsa:27335 up:Q9UBQ5 equivalent -hsa:27336 up:O43719 equivalent -hsa:27338 up:Q16763 equivalent -hsa:27339 up:Q9UMS4 equivalent -hsa:2734 up:Q92896 equivalent -hsa:27340 up:O75691 equivalent -hsa:27341 up:Q9Y3A4 equivalent -hsa:27342 up:A8K3R3 equivalent -hsa:27342 up:B3KMF1 equivalent -hsa:27342 up:Q9UJ41 equivalent -hsa:27343 up:Q9UGP5 equivalent -hsa:27344 up:Q9UHG2 equivalent -hsa:27345 up:Q86W47 equivalent -hsa:27346 up:Q5BJF2 equivalent -hsa:27347 up:Q9UEW8 equivalent -hsa:27348 up:O14657 equivalent -hsa:27349 up:Q8IVS2 equivalent -hsa:2735 up:P08151 equivalent -hsa:27350 up:Q9NRW3 equivalent -hsa:27351 up:Q6ICB0 equivalent -hsa:27352 up:B9A6J5 equivalent -hsa:27352 up:Q96HU1 equivalent -hsa:2736 up:P10070 equivalent -hsa:2736 up:Q1PSW9 equivalent -hsa:2736 up:Q59FV5 equivalent -hsa:2737 up:P10071 equivalent -hsa:2738 up:P10075 equivalent -hsa:2739 up:Q04760 equivalent -hsa:2739 up:X5DNM4 equivalent -hsa:274 up:O00499 equivalent -hsa:2740 up:A0A142FHB8 equivalent -hsa:2740 up:P43220 equivalent -hsa:2741 up:P23415 equivalent -hsa:2742 up:P23416 equivalent -hsa:27429 up:A0A384MDW9 equivalent -hsa:27429 up:O43464 equivalent -hsa:2743 up:P48167 equivalent -hsa:27430 up:A0A140VJP2 equivalent -hsa:27430 up:Q9NZL9 equivalent -hsa:27433 up:Q5JU69 equivalent -hsa:27434 up:Q9NP87 equivalent -hsa:27436 up:Q9HC35 equivalent -hsa:27439 up:Q9BXQ6 equivalent -hsa:2744 up:O94925 equivalent -hsa:27440 up:Q9BXW7 equivalent -hsa:27443 up:Q9BXF3 equivalent -hsa:27445 up:Q9Y6V0 equivalent -hsa:2745 up:P35754 equivalent -hsa:2746 up:E9KL48 equivalent -hsa:2746 up:P00367 equivalent -hsa:2747 up:A0A140VK14 equivalent -hsa:2747 up:P49448 equivalent -hsa:275 up:P48728 equivalent -hsa:2752 up:A8YXX4 equivalent -hsa:2752 up:P15104 equivalent -hsa:276 up:P0DTE7 equivalent -hsa:276 up:P0DTE8 equivalent -hsa:276 up:P0DUB6 equivalent -hsa:276 up:Q6NSB3 equivalent -hsa:2760 up:P17900 equivalent -hsa:2762 up:O60547 equivalent -hsa:2764 up:P60983 equivalent -hsa:2765 up:Q99445 equivalent -hsa:2766 up:P36959 equivalent -hsa:2767 up:P29992 equivalent -hsa:2768 up:Q03113 equivalent -hsa:2768 up:Q6ZQV4 equivalent -hsa:2769 up:P30679 equivalent -hsa:277 up:P0DTE7 equivalent -hsa:277 up:P0DTE8 equivalent -hsa:277 up:P0DUB6 equivalent -hsa:2770 up:P63096 equivalent -hsa:2771 up:B3KP24 equivalent -hsa:2771 up:P04899 equivalent -hsa:2773 up:P08754 equivalent -hsa:2774 up:A8K1Y9 equivalent -hsa:2774 up:P38405 equivalent -hsa:2775 up:B3KP89 equivalent -hsa:2775 up:P09471 equivalent -hsa:2775 up:Q8N6I9 equivalent -hsa:2776 up:A0A024R240 equivalent -hsa:2776 up:P50148 equivalent -hsa:2778 up:A0A0S2Z3H8 equivalent -hsa:2778 up:O95467 equivalent -hsa:2778 up:P63092 equivalent -hsa:2779 up:P11488 equivalent -hsa:278 up:P0DTE7 equivalent -hsa:278 up:P0DTE8 equivalent -hsa:278 up:P0DUB6 equivalent -hsa:2780 up:P19087 equivalent -hsa:2780 up:Q5T697 equivalent -hsa:2781 up:P19086 equivalent -hsa:2781 up:Q8IY73 equivalent -hsa:2782 up:A0A140VJJ8 equivalent -hsa:2782 up:P62873 equivalent -hsa:2783 up:P62879 equivalent -hsa:2783 up:Q6FHM2 equivalent -hsa:2784 up:F1T0G5 equivalent -hsa:2784 up:P16520 equivalent -hsa:2785 up:P63215 equivalent -hsa:2786 up:B1APZ0 equivalent -hsa:2786 up:P50150 equivalent -hsa:2787 up:P63218 equivalent -hsa:2788 up:O60262 equivalent -hsa:279 up:P04746 equivalent -hsa:279 up:Q53F26 equivalent -hsa:2790 up:P50151 equivalent -hsa:2791 up:P61952 equivalent -hsa:2791 up:Q53Y01 equivalent -hsa:2792 up:P63211 equivalent -hsa:2793 up:O14610 equivalent -hsa:2794 up:A0A024RCR2 equivalent -hsa:2794 up:B4DYK6 equivalent -hsa:2794 up:P36915 equivalent -hsa:2796 up:P01148 equivalent -hsa:2797 up:O43555 equivalent -hsa:2798 up:P30968 equivalent -hsa:2799 up:A0A024RBC5 equivalent -hsa:2799 up:P15586 equivalent -hsa:2799 up:Q7Z3X3 equivalent -hsa:28 up:A0A089QDC1 equivalent -hsa:28 up:P16442 equivalent -hsa:280 up:P19961 equivalent -hsa:2800 up:Q92805 equivalent -hsa:2801 up:Q08379 equivalent -hsa:2802 up:Q08378 equivalent -hsa:2803 up:Q13439 equivalent -hsa:2803 up:Q49A56 equivalent -hsa:2804 up:Q14789 equivalent -hsa:2805 up:A0A140VK69 equivalent -hsa:2805 up:P17174 equivalent -hsa:2806 up:P00505 equivalent -hsa:280636 up:Q8IZQ5 equivalent -hsa:280658 up:Q7RTT5 equivalent -hsa:280664 up:Q8IUB3 equivalent -hsa:2810 up:P31947 equivalent -hsa:2811 up:L7UYB8 equivalent -hsa:2811 up:P07359 equivalent -hsa:2812 up:P13224 equivalent -hsa:2813 up:B7Z1G2 equivalent -hsa:2813 up:P55259 equivalent -hsa:2814 up:P40197 equivalent -hsa:2815 up:P14770 equivalent -hsa:2817 up:A0A384NPH9 equivalent -hsa:2817 up:P35052 equivalent -hsa:2819 up:A0A024R138 equivalent -hsa:2819 up:P21695 equivalent -hsa:2820 up:P43304 equivalent -hsa:2821 up:P06744 equivalent -hsa:2822 up:P80108 equivalent -hsa:28227 up:Q9Y5P8 equivalent -hsa:2823 up:P51674 equivalent -hsa:28231 up:Q96BD0 equivalent -hsa:28232 up:Q9UIG8 equivalent -hsa:28234 up:B3KP78 equivalent -hsa:28234 up:Q9NPD5 equivalent -hsa:2824 up:Q13491 equivalent -hsa:2825 up:P46091 equivalent -hsa:2826 up:P46092 equivalent -hsa:282616 up:Q8IZJ0 equivalent -hsa:282617 up:A0A7R8C2Z6 equivalent -hsa:282617 up:Q8IZI9 equivalent -hsa:282618 up:A0A7R8C391 equivalent -hsa:282618 up:Q8IU54 equivalent -hsa:282679 up:Q8NBQ7 equivalent -hsa:2827 up:F1DAM5 equivalent -hsa:2827 up:P46089 equivalent -hsa:282763 up:Q05CQ2 equivalent -hsa:282763 up:Q9H339 equivalent -hsa:282770 up:A0A126GVM8 equivalent -hsa:282770 up:Q8NH19 equivalent -hsa:282775 up:A0A126GVP0 equivalent -hsa:282775 up:Q8NH18 equivalent -hsa:2828 up:P46093 equivalent -hsa:282808 up:P0C0E4 equivalent -hsa:282809 up:A0MNP0 equivalent -hsa:282809 up:Q8TC44 equivalent -hsa:282890 up:A0A1U9X8W3 equivalent -hsa:282890 up:Q5JNZ3 equivalent -hsa:2829 up:P46094 equivalent -hsa:2829 up:Q502V0 equivalent -hsa:2829 up:Q689E2 equivalent -hsa:282966 up:Q8N6V4 equivalent -hsa:282969 up:A2VDF0 equivalent -hsa:282973 up:Q5VZ66 equivalent -hsa:282974 up:A0A140VJW0 equivalent -hsa:282974 up:B7Z7J1 equivalent -hsa:282974 up:Q86UX6 equivalent -hsa:282991 up:F1T0F0 equivalent -hsa:282991 up:Q6QNY1 equivalent -hsa:282996 up:Q5T481 equivalent -hsa:283 up:P03950 equivalent -hsa:283 up:W0UV28 equivalent -hsa:2830 up:F1DAM6 equivalent -hsa:2830 up:P46095 equivalent -hsa:283078 up:Q8IYA7 equivalent -hsa:283092 up:Q8NGP0 equivalent -hsa:283093 up:Q96R67 equivalent -hsa:2831 up:H9NIL7 equivalent -hsa:2831 up:P48145 equivalent -hsa:283106 up:Q8NEV1 equivalent -hsa:283111 up:Q9H2C8 equivalent -hsa:283116 up:A6NDI0 equivalent -hsa:283129 up:Q3KP22 equivalent -hsa:283130 up:Q8N413 equivalent -hsa:283149 up:Q86UU0 equivalent -hsa:283150 up:Q6PIV2 equivalent -hsa:283152 up:Q494R4 equivalent -hsa:283159 up:A0A126GVG6 equivalent -hsa:283159 up:Q8WZ84 equivalent -hsa:28316 up:A8K2C5 equivalent -hsa:28316 up:Q8N9J3 equivalent -hsa:28316 up:Q9HBT6 equivalent -hsa:283160 up:A0A126GVG3 equivalent -hsa:283160 up:Q9GZM6 equivalent -hsa:283162 up:Q96RC9 equivalent -hsa:283189 up:Q8NGQ1 equivalent -hsa:2832 up:P48146 equivalent -hsa:283208 up:Q7Z4N8 equivalent -hsa:283209 up:Q6PCE3 equivalent -hsa:283212 up:Q6PF15 equivalent -hsa:283219 up:Q4G0X4 equivalent -hsa:283229 up:Q8N4Y2 equivalent -hsa:283232 up:Q96HE8 equivalent -hsa:283234 up:A6NC98 equivalent -hsa:283234 up:B2RTU8 equivalent -hsa:283237 up:Q8N5M4 equivalent -hsa:283238 up:Q8N4F4 equivalent -hsa:283248 up:Q8IZ40 equivalent -hsa:283254 up:Q96MB7 equivalent -hsa:283284 up:Q8N9C0 equivalent -hsa:283297 up:Q9H209 equivalent -hsa:283298 up:Q5HYE3 equivalent -hsa:283298 up:Q6UWY5 equivalent -hsa:2833 up:P49682 equivalent -hsa:283316 up:Q9NR16 equivalent -hsa:283337 up:Q8NDX6 equivalent -hsa:283349 up:Q86WH2 equivalent -hsa:283358 up:Q6L9W6 equivalent -hsa:283358 up:Q8N9V0 equivalent -hsa:283365 up:A0A126GW15 equivalent -hsa:283365 up:A6NF89 equivalent -hsa:283373 up:B3KWN0 equivalent -hsa:283373 up:Q8NB46 equivalent -hsa:283375 up:Q6ZMH5 equivalent -hsa:283377 up:Q8WW59 equivalent -hsa:283383 up:Q6QNK2 equivalent -hsa:283383 up:Q9NSM3 equivalent -hsa:283385 up:Q6PF18 equivalent -hsa:2834 up:A5JUU5 equivalent -hsa:2834 up:P49683 equivalent -hsa:283417 up:Q6NUT2 equivalent -hsa:283420 up:Q6UXN8 equivalent -hsa:283431 up:Q86XJ1 equivalent -hsa:283446 up:B4DNW6 equivalent -hsa:283450 up:F8VWT9 equivalent -hsa:283455 up:Q6VAB6 equivalent -hsa:283459 up:O43716 equivalent -hsa:283461 up:Q86WS4 equivalent -hsa:283463 up:Q7Z5P9 equivalent -hsa:283464 up:Q4G148 equivalent -hsa:283471 up:A0A140VJY1 equivalent -hsa:283471 up:Q86WS5 equivalent -hsa:283489 up:Q96JM3 equivalent -hsa:2835 up:A8K2F5 equivalent -hsa:2835 up:P47775 equivalent -hsa:283514 up:Q8IW03 equivalent -hsa:283518 up:Q8N5I3 equivalent -hsa:283537 up:Q7Z3Q1 equivalent -hsa:283554 up:B3KW22 equivalent -hsa:283554 up:Q6AWC7 equivalent -hsa:283554 up:Q8N3F9 equivalent -hsa:283571 up:G3V3G0 equivalent -hsa:283571 up:Q3B8N5 equivalent -hsa:283576 up:Q8N966 equivalent -hsa:283578 up:Q6PL24 equivalent -hsa:283600 up:Q6Q0C1 equivalent -hsa:283629 up:Q6SA08 equivalent -hsa:283635 up:Q8N128 equivalent -hsa:283638 up:Q9Y4F5 equivalent -hsa:283643 up:Q86SX3 equivalent -hsa:283652 up:Q71RS6 equivalent -hsa:283659 up:Q2VWP7 equivalent -hsa:283677 up:Q7Z4M0 equivalent -hsa:283685 up:Q8N9W4 equivalent -hsa:283694 up:A0A126GVN2 equivalent -hsa:283694 up:Q8N0Y3 equivalent -hsa:2837 up:Q9UKP6 equivalent -hsa:283726 up:Q658L1 equivalent -hsa:283742 up:Q52LJ0 equivalent -hsa:283748 up:Q86XP0 equivalent -hsa:283767 up:Q8N7Z2 equivalent -hsa:2838 up:B2R8H6 equivalent -hsa:2838 up:B6V9G9 equivalent -hsa:2838 up:P49685 equivalent -hsa:283807 up:Q6P050 equivalent -hsa:283820 up:Q5JPE7 equivalent -hsa:283847 up:Q8NA31 equivalent -hsa:283848 up:Q5XG92 equivalent -hsa:283849 up:Q86VI1 equivalent -hsa:283869 up:Q8N729 equivalent -hsa:283870 up:Q6PL45 equivalent -hsa:283871 up:A6NDG6 equivalent -hsa:283897 up:Q6UWD8 equivalent -hsa:283899 up:Q8NBZ0 equivalent -hsa:283927 up:P0C024 equivalent -hsa:283933 up:Q8N446 equivalent -hsa:283948 up:P0CG21 equivalent -hsa:283951 up:A0A0A8K8N9 equivalent -hsa:283951 up:Q4G0I0 equivalent -hsa:283953 up:B3SHH9 equivalent -hsa:283971 up:Q8NCF0 equivalent -hsa:283985 up:A0A087WYB9 equivalent -hsa:283985 up:Q8N9I5 equivalent -hsa:283987 up:Q8IV36 equivalent -hsa:283989 up:Q7Z6J9 equivalent -hsa:283991 up:Q8IYN6 equivalent -hsa:283999 up:A6NFC5 equivalent -hsa:284 up:Q15389 equivalent -hsa:2840 up:Q13304 equivalent -hsa:284001 up:Q2TAC2 equivalent -hsa:284004 up:Q8WVB3 equivalent -hsa:284013 up:Q7Z5L0 equivalent -hsa:284018 up:A0A8J8ZI57 equivalent -hsa:284018 up:Q2M2W7 equivalent -hsa:284021 up:Q7Z6M3 equivalent -hsa:284040 up:Q8N9R6 equivalent -hsa:284058 up:Q7Z3B3 equivalent -hsa:284067 up:B2RV13 equivalent -hsa:284069 up:A8MVW0 equivalent -hsa:284071 up:A2RUB1 equivalent -hsa:284076 up:Q8N841 equivalent -hsa:284086 up:Q86SG6 equivalent -hsa:284098 up:Q7Z7B1 equivalent -hsa:284099 up:Q8N4C9 equivalent -hsa:2841 up:H9NIM1 equivalent -hsa:2841 up:Q14330 equivalent -hsa:284106 up:P0C7P0 equivalent -hsa:284110 up:Q96QA5 equivalent -hsa:284111 up:Q68D44 equivalent -hsa:284111 up:Q86YT5 equivalent -hsa:284114 up:Q8N9M5 equivalent -hsa:284119 up:Q6NZI2 equivalent -hsa:284129 up:Q86WA9 equivalent -hsa:284131 up:Q8N8Q3 equivalent -hsa:284161 up:Q8N9F7 equivalent -hsa:284184 up:A1L188 equivalent -hsa:284194 up:Q3B8N2 equivalent -hsa:2842 up:Q15760 equivalent -hsa:2842 up:Q6IBH2 equivalent -hsa:284207 up:Q641Q3 equivalent -hsa:284217 up:P25391 equivalent -hsa:284252 up:Q719H9 equivalent -hsa:284254 up:Q8N1N2 equivalent -hsa:284257 up:Q8IYS8 equivalent -hsa:284266 up:Q6ZMC9 equivalent -hsa:284273 up:Q4G1C4 equivalent -hsa:284273 up:Q8N4Q0 equivalent -hsa:284274 up:Q3B7S5 equivalent -hsa:284293 up:A8MTL9 equivalent -hsa:284297 up:A1L4H1 equivalent -hsa:2843 up:Q59GP3 equivalent -hsa:2843 up:Q99678 equivalent -hsa:284306 up:Q8IVP9 equivalent -hsa:284307 up:B3KS08 equivalent -hsa:284307 up:Q3SY52 equivalent -hsa:284309 up:B2RN90 equivalent -hsa:284309 up:B4DSC6 equivalent -hsa:284309 up:Q68DI1 equivalent -hsa:284312 up:Q8NBB4 equivalent -hsa:284323 up:O75290 equivalent -hsa:284325 up:Q5BKX5 equivalent -hsa:284338 up:A6NJB7 equivalent -hsa:284339 up:Q8NBT3 equivalent -hsa:284340 up:Q6UXB2 equivalent -hsa:284346 up:Q86XF7 equivalent -hsa:284348 up:Q6UWN5 equivalent -hsa:284349 up:Q8N7M2 equivalent -hsa:284352 up:O75864 equivalent -hsa:284353 up:A0A7N4I390 equivalent -hsa:284355 up:D2CFI5 equivalent -hsa:284355 up:Q8N7U7 equivalent -hsa:284358 up:Q6ZN01 equivalent -hsa:284359 up:Q8IYV9 equivalent -hsa:284361 up:Q5UCC4 equivalent -hsa:284366 up:Q2XQG6 equivalent -hsa:284366 up:Q9UKQ9 equivalent -hsa:284369 up:Q8N7X8 equivalent -hsa:284370 up:Q8N8J6 equivalent -hsa:284371 up:Q6ZN19 equivalent -hsa:284382 up:Q8TC94 equivalent -hsa:284383 up:A0A126GVT8 equivalent -hsa:284383 up:Q8NG97 equivalent -hsa:284390 up:Q0D2J5 equivalent -hsa:284391 up:B4DSG8 equivalent -hsa:284391 up:Q08AG5 equivalent -hsa:2844 up:B4DSD1 equivalent -hsa:2844 up:H9NIL4 equivalent -hsa:2844 up:Q99679 equivalent -hsa:284402 up:Q4G0G5 equivalent -hsa:284403 up:O43379 equivalent -hsa:284406 up:D3Y299 equivalent -hsa:284406 up:Q8N141 equivalent -hsa:284415 up:Q6UX27 equivalent -hsa:284417 up:A6NC51 equivalent -hsa:284418 up:Q8N5Q1 equivalent -hsa:284422 up:O75264 equivalent -hsa:284427 up:Q8N5S1 equivalent -hsa:284428 up:A6NJ08 equivalent -hsa:284433 up:A0A126GWE9 equivalent -hsa:284433 up:Q8NGA6 equivalent -hsa:284434 up:Q149M9 equivalent -hsa:284439 up:Q86VD7 equivalent -hsa:284443 up:Q6ZR52 equivalent -hsa:284451 up:Q3SX64 equivalent -hsa:284459 up:P10072 equivalent -hsa:284467 up:Q7Z5A8 equivalent -hsa:284485 up:A6NNX1 equivalent -hsa:284486 up:Q8N1Q8 equivalent -hsa:284498 up:A2VCK6 equivalent -hsa:284498 up:Q5SNV9 equivalent -hsa:284498 up:Q8NDG0 equivalent -hsa:2845 up:B3KV13 equivalent -hsa:2845 up:Q3KNS9 equivalent -hsa:2845 up:Q99680 equivalent -hsa:284521 up:A0A126GW96 equivalent -hsa:284521 up:Q8N349 equivalent -hsa:284525 up:B3KXW8 equivalent -hsa:284525 up:Q5TAH2 equivalent -hsa:284532 up:Q8NHC5 equivalent -hsa:284541 up:Q5TCH4 equivalent -hsa:284546 up:Q5T7R7 equivalent -hsa:284565 up:B4DRP3 equivalent -hsa:284565 up:Q8N660 equivalent -hsa:2846 up:Q99677 equivalent -hsa:284611 up:Q5T8I3 equivalent -hsa:284612 up:Q5VXT5 equivalent -hsa:284613 up:Q6ZQS1 equivalent -hsa:284613 up:Q8N8Q1 equivalent -hsa:284615 up:Q69YU3 equivalent -hsa:284654 up:Q2MKA7 equivalent -hsa:284656 up:Q4G0R4 equivalent -hsa:284656 up:Q5JZY3 equivalent -hsa:284680 up:Q5T0L3 equivalent -hsa:284695 up:Q5BKZ1 equivalent -hsa:284697 up:A0A8V8SD95 equivalent -hsa:284697 up:B4DYL8 equivalent -hsa:284697 up:Q5XKL5 equivalent -hsa:2847 up:Q99705 equivalent -hsa:284716 up:Q8IXN7 equivalent -hsa:284723 up:Q6PIV7 equivalent -hsa:284739 up:A0A1B0GTL2 equivalent -hsa:284759 up:B3KTG0 equivalent -hsa:284759 up:Q5JXA9 equivalent -hsa:2848 up:O00155 equivalent -hsa:284805 up:Q8NBC4 equivalent -hsa:284827 up:Q3LI77 equivalent -hsa:2849 up:Q8NDV2 equivalent -hsa:284904 up:B2RMR2 equivalent -hsa:284904 up:B3KRP9 equivalent -hsa:284904 up:Q9UDX3 equivalent -hsa:284992 up:Q8NCX0 equivalent -hsa:284996 up:Q8NC42 equivalent -hsa:285 up:O15123 equivalent -hsa:2850 up:F1DAM3 equivalent -hsa:2850 up:Q9NS67 equivalent -hsa:285016 up:Q6UX46 equivalent -hsa:285025 up:Q6ZP82 equivalent -hsa:285051 up:Q8N801 equivalent -hsa:285093 up:Q14D33 equivalent -hsa:28511 up:Q9NYR9 equivalent -hsa:28512 up:Q9NYS0 equivalent -hsa:285126 up:Q8N7S2 equivalent -hsa:28513 up:Q9H159 equivalent -hsa:28514 up:A0A384P5C6 equivalent -hsa:28514 up:O00548 equivalent -hsa:285141 up:A1L162 equivalent -hsa:285148 up:A0A140VJL6 equivalent -hsa:285148 up:Q2TAA2 equivalent -hsa:285172 up:Q8IXS8 equivalent -hsa:285175 up:Q8N2C7 equivalent -hsa:285180 up:Q6ZNE9 equivalent -hsa:285190 up:Q7Z3J3 equivalent -hsa:285193 up:Q4G0W2 equivalent -hsa:285195 up:Q8IVB4 equivalent -hsa:2852 up:Q63ZY2 equivalent -hsa:2852 up:Q99527 equivalent -hsa:285203 up:Q5NDL2 equivalent -hsa:285220 up:Q9UF33 equivalent -hsa:285231 up:Q6X9E4 equivalent -hsa:285237 up:Q5JPI3 equivalent -hsa:285242 up:A5X5Y0 equivalent -hsa:285267 up:Q8N2I2 equivalent -hsa:285268 up:Q6ZSS3 equivalent -hsa:285282 up:Q5HYI8 equivalent -hsa:2853 up:O00270 equivalent -hsa:285311 up:Q8N813 equivalent -hsa:285313 up:Q6WRI0 equivalent -hsa:285315 up:Q6P1S2 equivalent -hsa:285331 up:A2RUB6 equivalent -hsa:285335 up:Q4G0N8 equivalent -hsa:285343 up:Q8N3R3 equivalent -hsa:285346 up:Q6ZMS4 equivalent -hsa:285349 up:Q6AZW8 equivalent -hsa:285362 up:Q8NBK3 equivalent -hsa:285367 up:Q6P087 equivalent -hsa:285368 up:Q5FWE3 equivalent -hsa:285381 up:Q96FX2 equivalent -hsa:285382 up:A6NLC5 equivalent -hsa:285386 up:Q6ZUI0 equivalent -hsa:2854 up:H9NIL6 equivalent -hsa:2854 up:O75388 equivalent -hsa:285429 up:Q3SXM0 equivalent -hsa:285440 up:Q6ZWL3 equivalent -hsa:285489 up:Q18PE1 equivalent -hsa:285498 up:Q495C1 equivalent -hsa:285513 up:Q6ZVF9 equivalent -hsa:285521 up:Q8N8Q8 equivalent -hsa:285525 up:Q8N8F6 equivalent -hsa:285527 up:B3KXG5 equivalent -hsa:285527 up:O94915 equivalent -hsa:285527 up:Q6ZR29 equivalent -hsa:285533 up:Q8N4F7 equivalent -hsa:285550 up:P0CF97 equivalent -hsa:285555 up:Q8N412 equivalent -hsa:285588 up:A8MZ26 equivalent -hsa:285590 up:A1X283 equivalent -hsa:285596 up:Q9UHL3 equivalent -hsa:285598 up:Q6PCE2 equivalent -hsa:285598 up:Q8N8L6 equivalent -hsa:2856 up:D8VER1 equivalent -hsa:2856 up:Q49SQ1 equivalent -hsa:285600 up:Q8IV33 equivalent -hsa:285601 up:Q8NGU9 equivalent -hsa:285605 up:Q8NBA8 equivalent -hsa:285613 up:Q8NC24 equivalent -hsa:285636 up:A6NDU8 equivalent -hsa:285641 up:Q495N2 equivalent -hsa:285643 up:B4DYE2 equivalent -hsa:285643 up:Q2VIQ3 equivalent -hsa:285659 up:Q96R30 equivalent -hsa:285671 up:Q86T96 equivalent -hsa:285672 up:Q8N9Q2 equivalent -hsa:285676 up:Q8N9F8 equivalent -hsa:2857 up:Q5VT14 equivalent -hsa:2857 up:Q9UPC5 equivalent -hsa:285704 up:J3KNF6 equivalent -hsa:285704 up:Q6NW40 equivalent -hsa:285753 up:Q8IYX8 equivalent -hsa:285755 up:Q8IXY8 equivalent -hsa:285761 up:Q8N8Z6 equivalent -hsa:285782 up:Q8TC20 equivalent -hsa:285800 up:Q8N4B5 equivalent -hsa:285848 up:B8XXQ3 equivalent -hsa:285848 up:Q8N8W4 equivalent -hsa:285852 up:Q6UXN2 equivalent -hsa:285855 up:Q6DKI1 equivalent -hsa:285877 up:Q8N7R1 equivalent -hsa:285888 up:Q3B7I2 equivalent -hsa:2859 up:A8K2J1 equivalent -hsa:2859 up:B2RA17 equivalent -hsa:2859 up:Q9HC97 equivalent -hsa:285955 up:Q8NFV5 equivalent -hsa:285966 up:A6NFQ2 equivalent -hsa:285971 up:Q96BV0 equivalent -hsa:285973 up:Q674R7 equivalent -hsa:285989 up:Q5FWF6 equivalent -hsa:286 up:P16157 equivalent -hsa:286006 up:Q8N8F7 equivalent -hsa:286046 up:Q5GH73 equivalent -hsa:286053 up:Q96MF7 equivalent -hsa:286075 up:Q96C28 equivalent -hsa:286077 up:Q6ZRV2 equivalent -hsa:286077 up:Q71RB4 equivalent -hsa:286097 up:Q86XE3 equivalent -hsa:2861 up:O15354 equivalent -hsa:286128 up:A0A0G2JH32 equivalent -hsa:286128 up:Q8N8Y5 equivalent -hsa:286133 up:Q6ZMJ2 equivalent -hsa:286144 up:Q629K1 equivalent -hsa:286148 up:Q7Z388 equivalent -hsa:286151 up:Q4G163 equivalent -hsa:286183 up:A0A6Q8PFP9 equivalent -hsa:286187 up:Q7Z4L9 equivalent -hsa:2862 up:O43193 equivalent -hsa:286204 up:Q5IJ48 equivalent -hsa:286205 up:Q8N9R8 equivalent -hsa:286207 up:Q5JU67 equivalent -hsa:286234 up:Q6ZUB1 equivalent -hsa:286256 up:A0A384MDV4 equivalent -hsa:286256 up:Q6JVE5 equivalent -hsa:286257 up:Q9BUH6 equivalent -hsa:286262 up:Q4KMQ1 equivalent -hsa:2863 up:O43194 equivalent -hsa:286319 up:Q2TAM9 equivalent -hsa:286336 up:Q5JUQ0 equivalent -hsa:286336 up:Q8N2W3 equivalent -hsa:286343 up:Q8IV03 equivalent -hsa:286362 up:Q8NGT0 equivalent -hsa:286365 up:Q8NGV5 equivalent -hsa:286380 up:Q6VB84 equivalent -hsa:2864 up:O14842 equivalent -hsa:286410 up:Q8NB49 equivalent -hsa:286430 up:P0DMW2 equivalent -hsa:286436 up:P0C1H6 equivalent -hsa:286436 up:W0TYI6 equivalent -hsa:286451 up:Q96EC8 equivalent -hsa:286464 up:Q6ZTR5 equivalent -hsa:286499 up:Q8N9E0 equivalent -hsa:2865 up:A0A0K0PUW7 equivalent -hsa:2865 up:O14843 equivalent -hsa:286514 up:Q96M61 equivalent -hsa:286527 up:P0CG34 equivalent -hsa:286527 up:P0CG35 equivalent -hsa:286527 up:P0DX04 equivalent -hsa:286530 up:Q86VZ1 equivalent -hsa:2866 up:A0A0K0PUY3 equivalent -hsa:2866 up:O15529 equivalent -hsa:286676 up:Q86SU0 equivalent -hsa:2867 up:C6KYL4 equivalent -hsa:2867 up:O15552 equivalent -hsa:286749 up:A0A0A6YYG5 equivalent -hsa:286749 up:Q9Y6Q2 equivalent -hsa:286753 up:Q8IXB3 equivalent -hsa:2868 up:P32298 equivalent -hsa:286826 up:Q5TKA1 equivalent -hsa:286827 up:Q8IWR1 equivalent -hsa:286887 up:P48668 equivalent -hsa:2869 up:P34947 equivalent -hsa:287 up:Q01484 equivalent -hsa:2870 up:P43250 equivalent -hsa:287015 up:Q8IWZ5 equivalent -hsa:2872 up:B3KS07 equivalent -hsa:2872 up:Q9HBH9 equivalent -hsa:2873 up:Q13098 equivalent -hsa:2874 up:Q13227 equivalent -hsa:2875 up:P24298 equivalent -hsa:2876 up:P07203 equivalent -hsa:2876 up:Q7L4Q3 equivalent -hsa:2877 up:P18283 equivalent -hsa:2878 up:P22352 equivalent -hsa:2879 up:P36969 equivalent -hsa:288 up:Q12955 equivalent -hsa:2880 up:O75715 equivalent -hsa:2880 up:V9HWN8 equivalent -hsa:2882 up:Q96SL4 equivalent -hsa:2885 up:B0LPF3 equivalent -hsa:2885 up:P62993 equivalent -hsa:2886 up:A0A0S2Z4F6 equivalent -hsa:2886 up:Q14451 equivalent -hsa:2887 up:Q13322 equivalent -hsa:2888 up:Q14449 equivalent -hsa:2889 up:Q13905 equivalent -hsa:2890 up:P42261 equivalent -hsa:2890 up:Q59GL5 equivalent -hsa:2891 up:P42262 equivalent -hsa:2892 up:P42263 equivalent -hsa:2892 up:Q17R51 equivalent -hsa:2893 up:P48058 equivalent -hsa:2893 up:Q1WWK6 equivalent -hsa:2894 up:A8KAN9 equivalent -hsa:2894 up:Q9ULK0 equivalent -hsa:2895 up:O43424 equivalent -hsa:28951 up:Q92519 equivalent -hsa:28952 up:O60826 equivalent -hsa:28954 up:O75628 equivalent -hsa:28955 up:O95424 equivalent -hsa:28956 up:Q9Y2Q5 equivalent -hsa:28957 up:A0A0S2Z563 equivalent -hsa:28957 up:Q9Y2Q9 equivalent -hsa:28958 up:Q9Y2R0 equivalent -hsa:28959 up:A0A090N7V7 equivalent -hsa:28959 up:Q3YBM2 equivalent -hsa:2896 up:P28799 equivalent -hsa:28960 up:A0A384MTI8 equivalent -hsa:28960 up:Q96C86 equivalent -hsa:28962 up:Q86WC4 equivalent -hsa:28964 up:Q9Y2X7 equivalent -hsa:28965 up:Q9Y2P4 equivalent -hsa:28966 up:Q9Y343 equivalent -hsa:28968 up:Q9GZN6 equivalent -hsa:28969 up:Q9Y6E2 equivalent -hsa:2897 up:P39086 equivalent -hsa:28970 up:Q9H0W9 equivalent -hsa:28971 up:Q9H7C9 equivalent -hsa:28972 up:Q9Y6A9 equivalent -hsa:28973 up:B0S7P4 equivalent -hsa:28973 up:Q9Y676 equivalent -hsa:28974 up:Q9UNZ5 equivalent -hsa:28976 up:Q9H845 equivalent -hsa:28977 up:Q9Y6G3 equivalent -hsa:28978 up:Q9Y6G1 equivalent -hsa:2898 up:A0A8D9PH75 equivalent -hsa:2898 up:A8K0H7 equivalent -hsa:2898 up:Q13002 equivalent -hsa:2898 up:Q8IY40 equivalent -hsa:28981 up:Q8WYA0 equivalent -hsa:28982 up:B2RB38 equivalent -hsa:28982 up:Q9Y5Y0 equivalent -hsa:28983 up:Q9UL52 equivalent -hsa:28984 up:Q9H4X1 equivalent -hsa:28985 up:Q9ULC4 equivalent -hsa:28986 up:Q9H213 equivalent -hsa:28987 up:Q9ULX3 equivalent -hsa:28988 up:Q9UJU6 equivalent -hsa:28989 up:Q9BV86 equivalent -hsa:2899 up:Q13003 equivalent -hsa:28990 up:Q2TB18 equivalent -hsa:28991 up:Q9GZQ3 equivalent -hsa:28992 up:Q9BQ69 equivalent -hsa:28996 up:Q9H2X6 equivalent -hsa:28998 up:Q9BYD1 equivalent -hsa:28999 up:Q9UIH9 equivalent -hsa:29 up:B7Z7Z1 equivalent -hsa:29 up:Q12979 equivalent -hsa:29 up:Q6ZT60 equivalent -hsa:290 up:P15144 equivalent -hsa:290 up:Q59E93 equivalent -hsa:2900 up:A0A8D9PH79 equivalent -hsa:2900 up:B2RAP6 equivalent -hsa:2900 up:Q16099 equivalent -hsa:2901 up:Q16478 equivalent -hsa:29015 up:B0AZP8 equivalent -hsa:29015 up:Q8NBI5 equivalent -hsa:2902 up:Q05586 equivalent -hsa:29028 up:Q6PL18 equivalent -hsa:2903 up:Q12879 equivalent -hsa:2903 up:Q547U9 equivalent -hsa:29035 up:Q14CZ0 equivalent -hsa:2904 up:A0A8D9PHB2 equivalent -hsa:2904 up:Q13224 equivalent -hsa:2905 up:A0A8D9PH81 equivalent -hsa:2905 up:O15398 equivalent -hsa:2905 up:Q14957 equivalent -hsa:29057 up:Q8NDB6 equivalent -hsa:29058 up:Q96A57 equivalent -hsa:2906 up:O15399 equivalent -hsa:2906 up:Q59G17 equivalent -hsa:29062 up:A4D1P6 equivalent -hsa:29063 up:Q9H5U6 equivalent -hsa:29066 up:Q8IWR0 equivalent -hsa:29068 up:H7BY22 equivalent -hsa:29068 up:Q8NCP5 equivalent -hsa:2907 up:Q7Z429 equivalent -hsa:29070 up:Q9H0I3 equivalent -hsa:29071 up:Q96EU7 equivalent -hsa:29072 up:Q9BYW2 equivalent -hsa:29074 up:Q9H0U6 equivalent -hsa:29078 up:Q9P032 equivalent -hsa:29079 up:Q9NPJ6 equivalent -hsa:2908 up:F1D8N4 equivalent -hsa:2908 up:P04150 equivalent -hsa:29080 up:Q9P031 equivalent -hsa:29081 up:Q9NRN9 equivalent -hsa:29082 up:Q9BY43 equivalent -hsa:29083 up:Q8N3Z3 equivalent -hsa:29083 up:Q9P025 equivalent -hsa:29085 up:Q9NRX4 equivalent -hsa:29085 up:V9HWC4 equivalent -hsa:29086 up:Q9NWV8 equivalent -hsa:29087 up:Q9P016 equivalent -hsa:29088 up:Q9P015 equivalent -hsa:29089 up:Q9NPD8 equivalent -hsa:2909 up:Q9NRY4 equivalent -hsa:29090 up:A8K1K8 equivalent -hsa:29090 up:Q9BVV7 equivalent -hsa:29091 up:Q8NFX7 equivalent -hsa:29093 up:Q9NWU5 equivalent -hsa:29094 up:Q3ZCW2 equivalent -hsa:29095 up:Q53FV1 equivalent -hsa:29097 up:Q9P003 equivalent -hsa:29098 up:Q9HD47 equivalent -hsa:29099 up:Q53FR9 equivalent -hsa:29099 up:Q9P000 equivalent -hsa:291 up:A0A0S2Z3H3 equivalent -hsa:291 up:P12235 equivalent -hsa:29100 up:Q9BTX3 equivalent -hsa:29101 up:Q9NP77 equivalent -hsa:29102 up:Q9NRR4 equivalent -hsa:29103 up:Q9Y5T4 equivalent -hsa:29104 up:Q9Y5N5 equivalent -hsa:29105 up:Q9Y6A4 equivalent -hsa:29106 up:Q8WXD2 equivalent -hsa:29107 up:Q9UKK6 equivalent -hsa:29108 up:Q9ULZ3 equivalent -hsa:29109 up:Q9Y613 equivalent -hsa:2911 up:Q13255 equivalent -hsa:2911 up:Q59HC2 equivalent -hsa:29110 up:Q9UHD2 equivalent -hsa:29113 up:M1T2K5 equivalent -hsa:29113 up:Q6UXA7 equivalent -hsa:29114 up:Q9UI15 equivalent -hsa:29115 up:Q9UHR5 equivalent -hsa:29116 up:Q8WY64 equivalent -hsa:29117 up:Q9NPI1 equivalent -hsa:29118 up:Q9UHL0 equivalent -hsa:29119 up:A8K141 equivalent -hsa:29119 up:Q8WW10 equivalent -hsa:29119 up:Q9UI47 equivalent -hsa:2912 up:Q14416 equivalent -hsa:29121 up:Q9UHP7 equivalent -hsa:29122 up:A0A140VJY3 equivalent -hsa:29122 up:Q9UI38 equivalent -hsa:29123 up:Q6UB99 equivalent -hsa:29124 up:Q9UHV8 equivalent -hsa:29125 up:Q9P2W6 equivalent -hsa:29126 up:Q9NZQ7 equivalent -hsa:29127 up:B2RE34 equivalent -hsa:29127 up:Q9H0H5 equivalent -hsa:29128 up:Q96T88 equivalent -hsa:2913 up:A4D1D0 equivalent -hsa:2913 up:Q14832 equivalent -hsa:2914 up:A1L4F9 equivalent -hsa:2914 up:Q14833 equivalent -hsa:2915 up:P41594 equivalent -hsa:2916 up:O15303 equivalent -hsa:2917 up:B2R693 equivalent -hsa:2917 up:Q14831 equivalent -hsa:2917 up:Q59G95 equivalent -hsa:2918 up:O00222 equivalent -hsa:2919 up:P09341 equivalent -hsa:292 up:P05141 equivalent -hsa:292 up:Q6NVC0 equivalent -hsa:2920 up:P19875 equivalent -hsa:2921 up:P19876 equivalent -hsa:2922 up:P07492 equivalent -hsa:2923 up:P30101 equivalent -hsa:2923 up:V9HVY3 equivalent -hsa:2925 up:P30550 equivalent -hsa:2925 up:X5D7H2 equivalent -hsa:2926 up:Q12849 equivalent -hsa:2928 up:O15499 equivalent -hsa:293 up:P12236 equivalent -hsa:293 up:Q6I9V5 equivalent -hsa:2931 up:P49840 equivalent -hsa:2932 up:P49841 equivalent -hsa:2932 up:Q6FI27 equivalent -hsa:2934 up:A0A384MEF1 equivalent -hsa:2934 up:P06396 equivalent -hsa:2935 up:B2RCT6 equivalent -hsa:2935 up:P15170 equivalent -hsa:2935 up:Q7KZX8 equivalent -hsa:2936 up:P00390 equivalent -hsa:2936 up:V9HW90 equivalent -hsa:2937 up:P48637 equivalent -hsa:2937 up:V9HWJ1 equivalent -hsa:2938 up:A0A140VJK4 equivalent -hsa:2938 up:P08263 equivalent -hsa:2939 up:A0A140VKE2 equivalent -hsa:2939 up:A8K987 equivalent -hsa:2939 up:P09210 equivalent -hsa:2940 up:Q16772 equivalent -hsa:2941 up:O15217 equivalent -hsa:2944 up:P09488 equivalent -hsa:2944 up:X5DR03 equivalent -hsa:2946 up:A0A384P5E9 equivalent -hsa:2946 up:P28161 equivalent -hsa:2946 up:Q0D2I8 equivalent -hsa:2947 up:P21266 equivalent -hsa:2947 up:Q6FGJ9 equivalent -hsa:2948 up:A0A140VKE3 equivalent -hsa:2948 up:Q03013 equivalent -hsa:2949 up:P46439 equivalent -hsa:2949 up:Q5T8R2 equivalent -hsa:2950 up:P09211 equivalent -hsa:2950 up:V9HWE9 equivalent -hsa:2952 up:P30711 equivalent -hsa:2953 up:P0CG29 equivalent -hsa:2954 up:A0A0C4DFM0 equivalent -hsa:2954 up:O43708 equivalent -hsa:2956 up:P52701 equivalent -hsa:2956 up:Q3SWU9 equivalent -hsa:2957 up:P52655 equivalent -hsa:2958 up:P52657 equivalent -hsa:2959 up:Q00403 equivalent -hsa:2960 up:P29083 equivalent -hsa:2961 up:P29084 equivalent -hsa:2962 up:P35269 equivalent -hsa:2963 up:P13984 equivalent -hsa:2965 up:A0A384MTQ8 equivalent -hsa:2965 up:P32780 equivalent -hsa:2966 up:Q13888 equivalent -hsa:2967 up:Q13889 equivalent -hsa:2968 up:A0A1U9X7S4 equivalent -hsa:2968 up:Q92759 equivalent -hsa:2969 up:A8K9W7 equivalent -hsa:2969 up:P78347 equivalent -hsa:2969 up:Q499G6 equivalent -hsa:2969 up:X5DR09 equivalent -hsa:2971 up:Q92664 equivalent -hsa:2972 up:Q92994 equivalent -hsa:2975 up:Q12789 equivalent -hsa:2976 up:Q8WUA4 equivalent -hsa:29760 up:Q8WV28 equivalent -hsa:29761 up:Q9UHP3 equivalent -hsa:29763 up:Q9UKS6 equivalent -hsa:29765 up:Q9NZQ9 equivalent -hsa:29766 up:Q9NYL9 equivalent -hsa:29767 up:Q9NZR1 equivalent -hsa:2977 up:P33402 equivalent -hsa:29775 up:Q9BWT7 equivalent -hsa:29777 up:Q9ULW3 equivalent -hsa:29780 up:Q9HBI1 equivalent -hsa:29781 up:Q6IBW4 equivalent -hsa:29785 up:Q96SQ9 equivalent -hsa:29789 up:Q9NTK5 equivalent -hsa:2979 up:Q7Z3V9 equivalent -hsa:2979 up:Q9UMX6 equivalent -hsa:29796 up:Q9UDW1 equivalent -hsa:29799 up:O60688 equivalent -hsa:2980 up:Q02747 equivalent -hsa:29800 up:Q8WTX9 equivalent -hsa:29801 up:Q9ULC8 equivalent -hsa:29802 up:Q9UKI3 equivalent -hsa:29803 up:A0A090N8H1 equivalent -hsa:29803 up:Q9BWE0 equivalent -hsa:2981 up:Q16661 equivalent -hsa:2982 up:Q02108 equivalent -hsa:2983 up:Q02153 equivalent -hsa:2984 up:P25092 equivalent -hsa:29841 up:Q9NZI5 equivalent -hsa:29842 up:Q9NZI6 equivalent -hsa:29843 up:Q6N001 equivalent -hsa:29843 up:Q9P0U3 equivalent -hsa:29844 up:P0C1Z6 equivalent -hsa:29850 up:Q9NZQ8 equivalent -hsa:29851 up:Q53QY6 equivalent -hsa:29851 up:Q9Y6W8 equivalent -hsa:29855 up:Q9NPG3 equivalent -hsa:2986 up:P51841 equivalent -hsa:2987 up:Q16774 equivalent -hsa:2987 up:Q6IBG8 equivalent -hsa:29880 up:Q9Y673 equivalent -hsa:29881 up:Q9UHC9 equivalent -hsa:29882 up:Q9UJX6 equivalent -hsa:29883 up:Q96IQ6 equivalent -hsa:29883 up:Q9UIV1 equivalent -hsa:29886 up:Q9Y5X2 equivalent -hsa:29887 up:B4DJM0 equivalent -hsa:29887 up:Q9Y5X0 equivalent -hsa:29888 up:Q9NRL3 equivalent -hsa:29889 up:Q13823 equivalent -hsa:29889 up:Q5T0F3 equivalent -hsa:29890 up:Q8NDT2 equivalent -hsa:29893 up:A0A158RUX1 equivalent -hsa:29893 up:Q9P2W1 equivalent -hsa:29894 up:Q10570 equivalent -hsa:29895 up:Q96A32 equivalent -hsa:29896 up:Q13595 equivalent -hsa:29896 up:Q549U1 equivalent -hsa:29899 up:B4DIF1 equivalent -hsa:29899 up:P81274 equivalent -hsa:2990 up:P08236 equivalent -hsa:29902 up:Q8WUB2 equivalent -hsa:29903 up:Q9BWC9 equivalent -hsa:29904 up:O00418 equivalent -hsa:29906 up:O15466 equivalent -hsa:29907 up:E5KQS5 equivalent -hsa:29907 up:Q9NRS6 equivalent -hsa:29909 up:O14626 equivalent -hsa:29911 up:Q96ED9 equivalent -hsa:29914 up:Q9Y5Z9 equivalent -hsa:29915 up:Q9Y5Z7 equivalent -hsa:29916 up:Q9Y5W9 equivalent -hsa:29919 up:A0A087WZD4 reverse -hsa:29919 up:B7Z201 equivalent -hsa:29919 up:B7Z2Y1 reverse -hsa:29919 up:B7Z3Q1 reverse -hsa:29919 up:Q96DM3 equivalent -hsa:2992 up:P46976 equivalent -hsa:29920 up:A0A0S2Z5U6 equivalent -hsa:29920 up:Q96C36 equivalent -hsa:29922 up:Q9Y5B8 equivalent -hsa:29923 up:Q9Y5L2 equivalent -hsa:29924 up:Q9Y6I3 equivalent -hsa:29925 up:Q9Y5P6 equivalent -hsa:29926 up:A0A384MDS7 equivalent -hsa:29926 up:Q96IJ6 equivalent -hsa:29927 up:B3KME8 equivalent -hsa:29927 up:B3KNF6 equivalent -hsa:29927 up:P61619 equivalent -hsa:29928 up:Q9Y584 equivalent -hsa:29929 up:Q9Y672 equivalent -hsa:2993 up:A0A0C4DFT7 equivalent -hsa:2993 up:P02724 equivalent -hsa:29930 up:Q9Y5F3 equivalent -hsa:29933 up:Q9UNW8 equivalent -hsa:29934 up:Q3SYF1 equivalent -hsa:29934 up:Q9UMY4 equivalent -hsa:29935 up:Q13156 equivalent -hsa:29937 up:Q9UMX5 equivalent -hsa:2994 up:P06028 equivalent -hsa:29940 up:Q9UL01 equivalent -hsa:29941 up:Q6P5Z2 equivalent -hsa:29942 up:Q9UJV8 equivalent -hsa:29943 up:Q9ULC6 equivalent -hsa:29944 up:Q9UL41 equivalent -hsa:29945 up:Q9UJX5 equivalent -hsa:29946 up:Q9UJW9 equivalent -hsa:29947 up:Q9UJW3 equivalent -hsa:29948 up:Q9UJX0 equivalent -hsa:29949 up:Q9UHD0 equivalent -hsa:2995 up:P04921 equivalent -hsa:29950 up:Q53GC0 equivalent -hsa:29950 up:Q9UHV2 equivalent -hsa:29951 up:B4DGD1 equivalent -hsa:29951 up:Q6ZMN7 equivalent -hsa:29952 up:Q9UHL4 equivalent -hsa:29953 up:Q9UKU6 equivalent -hsa:29954 up:Q9UKY4 equivalent -hsa:29956 up:Q96G23 equivalent -hsa:29957 up:Q6NUK1 equivalent -hsa:29958 up:B3KQ84 equivalent -hsa:29958 up:Q9UI17 equivalent -hsa:29959 up:Q9UHY1 equivalent -hsa:2996 up:P15421 equivalent -hsa:29960 up:Q9UI43 equivalent -hsa:29960 up:V9HWJ9 equivalent -hsa:29964 up:Q2TBC4 equivalent -hsa:29965 up:Q9H305 equivalent -hsa:29966 up:Q13033 equivalent -hsa:29967 up:Q59H02 equivalent -hsa:29967 up:Q9Y561 equivalent -hsa:29968 up:Q9Y617 equivalent -hsa:29969 up:Q9P1T7 equivalent -hsa:2997 up:P13807 equivalent -hsa:29970 up:P0DPB3 equivalent -hsa:29974 up:B4E1E3 equivalent -hsa:29974 up:Q9NQ94 equivalent -hsa:29978 up:Q9UHD9 equivalent -hsa:29979 up:Q9UMX0 equivalent -hsa:2998 up:P54840 equivalent -hsa:29980 up:Q9NYP3 equivalent -hsa:29982 up:Q96F24 equivalent -hsa:29984 up:O00212 equivalent -hsa:29985 up:Q9BRY0 equivalent -hsa:29986 up:Q9NP94 equivalent -hsa:29988 up:Q8WZ05 equivalent -hsa:29988 up:Q9NY64 equivalent -hsa:29989 up:Q9NPH6 equivalent -hsa:2999 up:P20718 equivalent -hsa:29990 up:Q9UKJ0 equivalent -hsa:29991 up:Q9NY56 equivalent -hsa:29992 up:Q9UKJ1 equivalent -hsa:29993 up:Q5TZC3 equivalent -hsa:29993 up:Q9BY11 equivalent -hsa:29994 up:Q9UIF8 equivalent -hsa:29995 up:Q9NZU5 equivalent -hsa:29997 up:Q9NZM5 equivalent -hsa:29998 up:Q9NZM4 equivalent -hsa:29999 up:A0A140VK18 equivalent -hsa:29999 up:Q9NQT6 equivalent -hsa:30 up:A0A024R2M6 equivalent -hsa:30 up:P09110 equivalent -hsa:3000 up:Q02846 equivalent -hsa:30000 up:O14787 equivalent -hsa:30000 up:Q05D48 equivalent -hsa:30001 up:Q96HE7 equivalent -hsa:30008 up:O95967 equivalent -hsa:30008 up:Q9H3D5 equivalent -hsa:30009 up:Q9UL17 equivalent -hsa:3001 up:P12544 equivalent -hsa:30010 up:P58417 equivalent -hsa:30010 up:Q3LID8 equivalent -hsa:30011 up:Q5JPT6 equivalent -hsa:30011 up:Q96B97 equivalent -hsa:30012 up:O43711 equivalent -hsa:30014 up:Q9NS26 equivalent -hsa:3002 up:P10144 equivalent -hsa:3002 up:Q67BC3 equivalent -hsa:3003 up:P49863 equivalent -hsa:3004 up:P51124 equivalent -hsa:3005 up:P07305 equivalent -hsa:3006 up:P16403 equivalent -hsa:30061 up:Q9NP59 equivalent -hsa:30062 up:Q9Y2V3 equivalent -hsa:3007 up:P16402 equivalent -hsa:3008 up:A3R0T8 equivalent -hsa:3008 up:P10412 equivalent -hsa:3009 up:P16401 equivalent -hsa:301 up:P04083 equivalent -hsa:301 up:Q5TZZ9 equivalent -hsa:3010 up:P22492 equivalent -hsa:3012 up:P04908 equivalent -hsa:3012 up:Q08AJ9 equivalent -hsa:3013 up:B2R5B6 equivalent -hsa:3013 up:P20671 equivalent -hsa:3014 up:P16104 equivalent -hsa:3015 up:P0C0S5 equivalent -hsa:3017 up:P58876 equivalent -hsa:3017 up:P62807 equivalent -hsa:3018 up:P33778 equivalent -hsa:302 up:A0A024R5Z7 equivalent -hsa:302 up:P07355 equivalent -hsa:3020 up:B2R4P9 equivalent -hsa:3020 up:P84243 equivalent -hsa:3021 up:B2R4P9 equivalent -hsa:3021 up:P84243 equivalent -hsa:3024 up:Q02539 equivalent -hsa:3026 up:Q14520 equivalent -hsa:3028 up:A0A0S2Z410 equivalent -hsa:3028 up:Q99714 equivalent -hsa:3029 up:Q16775 equivalent -hsa:3030 up:E9KL44 equivalent -hsa:3030 up:P40939 equivalent -hsa:3032 up:P55084 equivalent -hsa:3033 up:A0A140VK76 equivalent -hsa:3033 up:Q16836 equivalent -hsa:3034 up:P42357 equivalent -hsa:3035 up:P12081 equivalent -hsa:3036 up:D2N2G5 equivalent -hsa:3036 up:Q8IYH3 equivalent -hsa:3036 up:Q92839 equivalent -hsa:3037 up:Q92819 equivalent -hsa:3038 up:O00219 equivalent -hsa:3039 up:D1MGQ2 equivalent -hsa:3039 up:P69905 equivalent -hsa:3040 up:D1MGQ2 equivalent -hsa:3040 up:P69905 equivalent -hsa:3042 up:A0A1K0FU50 equivalent -hsa:3042 up:Q6B0K9 equivalent -hsa:3043 up:D9YZU5 equivalent -hsa:3043 up:P68871 equivalent -hsa:3045 up:A0N071 equivalent -hsa:3045 up:P02042 equivalent -hsa:3046 up:D9YZU7 equivalent -hsa:3046 up:P02100 equivalent -hsa:3047 up:D9YZU8 equivalent -hsa:3047 up:P69891 equivalent -hsa:3048 up:D9YZU9 equivalent -hsa:3048 up:P69892 equivalent -hsa:3049 up:A0A1K0GUV5 equivalent -hsa:3049 up:P09105 equivalent -hsa:3050 up:P02008 equivalent -hsa:3052 up:P53701 equivalent -hsa:3053 up:P05546 equivalent -hsa:3053 up:Q8IVC0 equivalent -hsa:3054 up:P51610 equivalent -hsa:3055 up:P08631 equivalent -hsa:3059 up:P14317 equivalent -hsa:306 up:P12429 equivalent -hsa:3060 up:O43612 equivalent -hsa:3061 up:O43613 equivalent -hsa:3062 up:O43614 equivalent -hsa:3062 up:S4X0W3 equivalent -hsa:3064 up:P42858 equivalent -hsa:3065 up:Q13547 equivalent -hsa:3065 up:Q6IT96 equivalent -hsa:3066 up:Q92769 equivalent -hsa:3067 up:P19113 equivalent -hsa:3068 up:A0A384NPW1 equivalent -hsa:3068 up:P51858 equivalent -hsa:3069 up:A0A024R4E5 equivalent -hsa:3069 up:B2R5V9 equivalent -hsa:3069 up:Q00341 equivalent -hsa:307 up:P09525 equivalent -hsa:307 up:Q6P452 equivalent -hsa:3070 up:Q9NRZ9 equivalent -hsa:3071 up:P55160 equivalent -hsa:3073 up:A0A0S2Z3W3 equivalent -hsa:3073 up:P06865 equivalent -hsa:3074 up:A0A024RAJ6 equivalent -hsa:3074 up:P07686 equivalent -hsa:3075 up:P08603 equivalent -hsa:3077 up:Q30201 equivalent -hsa:3078 up:Q03591 equivalent -hsa:308 up:P08758 equivalent -hsa:308 up:V9HWE0 equivalent -hsa:3080 up:P36980 equivalent -hsa:3081 up:Q93099 equivalent -hsa:30811 up:P57058 equivalent -hsa:30812 up:P57073 equivalent -hsa:30813 up:Q9NZR4 equivalent -hsa:30814 up:Q9NZK7 equivalent -hsa:30815 up:A0A0S2Z5G9 equivalent -hsa:30815 up:Q969X2 equivalent -hsa:30816 up:D0EYG5 equivalent -hsa:30816 up:Q9UQF0 equivalent -hsa:30817 up:A0JNV7 equivalent -hsa:30817 up:Q9UHX3 equivalent -hsa:30818 up:Q9Y2W7 equivalent -hsa:30819 up:B3KSZ5 equivalent -hsa:30819 up:Q9NS61 equivalent -hsa:3082 up:P14210 equivalent -hsa:30820 up:Q9NZI2 equivalent -hsa:30827 up:Q9P0U4 equivalent -hsa:3083 up:Q04756 equivalent -hsa:30832 up:Q86Y25 equivalent -hsa:30833 up:Q8TCD5 equivalent -hsa:30833 up:V9HWF3 equivalent -hsa:30834 up:Q2L6J2 equivalent -hsa:30834 up:Q9P1U0 equivalent -hsa:30835 up:B2R907 equivalent -hsa:30835 up:Q9NNX6 equivalent -hsa:30836 up:Q5QJE6 equivalent -hsa:30837 up:O14512 equivalent -hsa:3084 up:Q02297 equivalent -hsa:3084 up:Q6PK61 equivalent -hsa:30844 up:A8K9B9 equivalent -hsa:30844 up:Q9H223 equivalent -hsa:30845 up:Q9NZN3 equivalent -hsa:30846 up:Q9NZN4 equivalent -hsa:30848 up:O75638 equivalent -hsa:30849 up:Q99570 equivalent -hsa:30850 up:Q86X02 equivalent -hsa:30851 up:O14907 equivalent -hsa:3087 up:Q03014 equivalent -hsa:309 up:A0A0S2Z2Z6 equivalent -hsa:309 up:P08133 equivalent -hsa:3090 up:Q14526 equivalent -hsa:3091 up:D0VY79 equivalent -hsa:3091 up:Q16665 equivalent -hsa:3092 up:B4DK46 equivalent -hsa:3092 up:O00291 equivalent -hsa:3093 up:P61086 equivalent -hsa:3094 up:A0A384NPU2 equivalent -hsa:3094 up:P49773 equivalent -hsa:3096 up:P15822 equivalent -hsa:30968 up:Q9UJZ1 equivalent -hsa:3097 up:P31629 equivalent -hsa:3098 up:A8K7J7 equivalent -hsa:3098 up:B3KXY9 equivalent -hsa:3098 up:P19367 equivalent -hsa:3098 up:Q59FD4 equivalent -hsa:3099 up:P52789 equivalent -hsa:31 up:Q13085 equivalent -hsa:310 up:B2R657 equivalent -hsa:310 up:P20073 equivalent -hsa:3101 up:P52790 equivalent -hsa:3104 up:A8K291 equivalent -hsa:3104 up:P10074 equivalent -hsa:3105 up:P04439 equivalent -hsa:3105 up:Q5SUL5 equivalent -hsa:3106 up:E5FQ95 equivalent -hsa:3106 up:P01889 equivalent -hsa:3107 up:P10321 equivalent -hsa:3107 up:Q6R739 equivalent -hsa:3107 up:Q95HC2 equivalent -hsa:3108 up:Q31604 equivalent -hsa:3108 up:Q6ICR9 equivalent -hsa:3109 up:A0A1V0E3P2 equivalent -hsa:3109 up:P28068 equivalent -hsa:311 up:P50995 equivalent -hsa:311 up:Q5T0G8 equivalent -hsa:3110 up:P50219 equivalent -hsa:3111 up:A0A1V0E3M7 equivalent -hsa:3111 up:A0A1V0E3N1 equivalent -hsa:3111 up:A0A1V0E3N3 equivalent -hsa:3111 up:A0A1V0E3N6 equivalent -hsa:3111 up:A0A1V0E3N7 equivalent -hsa:3111 up:A0A1V0E3P0 equivalent -hsa:3111 up:A0A1V0E3P1 equivalent -hsa:3111 up:A0A1V0E3P3 equivalent -hsa:3111 up:A0A1V0E3P6 equivalent -hsa:3111 up:A0A1V0E3P8 equivalent -hsa:3111 up:A0A1V0E3P9 equivalent -hsa:3111 up:A0A1V0E3Q1 equivalent -hsa:3111 up:A0A1V0E3Q2 equivalent -hsa:3111 up:A0A1V0E3Q3 equivalent -hsa:3111 up:A0A1V0E3Q4 equivalent -hsa:3111 up:A0A1V0E3Q5 equivalent -hsa:3111 up:A0A1V0E3Q6 equivalent -hsa:3111 up:A0A1V0E3Q7 equivalent -hsa:3111 up:A0A1V0E3Q8 equivalent -hsa:3111 up:A0A1V0E3R0 equivalent -hsa:3111 up:A0A1V0E3R3 equivalent -hsa:3111 up:A0A1V0E3R4 equivalent -hsa:3111 up:A0A1V0E3R6 equivalent -hsa:3111 up:A0A1V0E3R8 equivalent -hsa:3111 up:A0A1V0E3S0 equivalent -hsa:3111 up:A0A1V0E3S4 equivalent -hsa:3111 up:A0A1V0E3S6 equivalent -hsa:3111 up:A0A1V0E3S7 equivalent -hsa:3111 up:A0A1V0E3T1 equivalent -hsa:3111 up:P06340 equivalent -hsa:3111 up:X5CF87 equivalent -hsa:3112 up:P13765 equivalent -hsa:3112 up:Q5QNS2 equivalent -hsa:3113 up:P20036 equivalent -hsa:3113 up:X5CKE2 equivalent -hsa:3115 up:I4EC15 equivalent -hsa:3115 up:P04440 equivalent -hsa:3117 up:A0A173ADG5 equivalent -hsa:3117 up:P01909 equivalent -hsa:3117 up:Q8MH44 equivalent -hsa:3118 up:P01906 equivalent -hsa:3118 up:Q76NI6 equivalent -hsa:3119 up:P01920 equivalent -hsa:3119 up:Q5Y7D3 equivalent -hsa:312 up:P27216 equivalent -hsa:312 up:Q53FB5 equivalent -hsa:3120 up:P05538 equivalent -hsa:3122 up:A0A0G2JMH6 equivalent -hsa:3122 up:P01903 equivalent -hsa:3123 up:P01911 equivalent -hsa:3123 up:Q5Y7D1 equivalent -hsa:3125 up:A0A4D6G1L1 equivalent -hsa:3125 up:P79483 equivalent -hsa:3126 up:P13762 equivalent -hsa:3126 up:X5D2U9 equivalent -hsa:3127 up:A0A2Z4LKS3 equivalent -hsa:3127 up:Q30154 equivalent -hsa:313 up:P28039 equivalent -hsa:3131 up:Q16534 equivalent -hsa:3133 up:A0A4E9D3W4 equivalent -hsa:3133 up:A8K8M6 equivalent -hsa:3133 up:O19682 equivalent -hsa:3133 up:P13747 equivalent -hsa:3134 up:P30511 equivalent -hsa:3134 up:Q5JZ47 equivalent -hsa:3135 up:P17693 equivalent -hsa:3135 up:Q6DU14 equivalent -hsa:314 up:O75106 equivalent -hsa:3140 up:Q95460 equivalent -hsa:3141 up:P50747 equivalent -hsa:3142 up:Q14774 equivalent -hsa:3145 up:P08397 equivalent -hsa:3146 up:P09429 equivalent -hsa:3148 up:P26583 equivalent -hsa:3149 up:O15347 equivalent -hsa:3150 up:P05114 equivalent -hsa:3150 up:Q6NSG7 equivalent -hsa:3151 up:P05204 equivalent -hsa:3155 up:P35914 equivalent -hsa:3156 up:P04035 equivalent -hsa:3157 up:Q01581 equivalent -hsa:3158 up:A0A140VJL2 equivalent -hsa:3158 up:P54868 equivalent -hsa:3159 up:P17096 equivalent -hsa:316 up:Q06278 equivalent -hsa:3161 up:O75330 equivalent -hsa:3162 up:P09601 equivalent -hsa:3162 up:Q6FH11 equivalent -hsa:3163 up:P30519 equivalent -hsa:3164 up:P22736 equivalent -hsa:3166 up:Q9NP08 equivalent -hsa:3167 up:A2RU54 equivalent -hsa:3169 up:P55317 equivalent -hsa:317 up:O14727 equivalent -hsa:3170 up:Q9Y261 equivalent -hsa:3171 up:P55318 equivalent -hsa:3172 up:F1D8T1 equivalent -hsa:3172 up:P41235 equivalent -hsa:3174 up:Q14541 equivalent -hsa:3175 up:Q9UBC0 equivalent -hsa:3176 up:P50135 equivalent -hsa:317649 up:Q8N5X7 equivalent -hsa:317662 up:Q96BN6 equivalent -hsa:317671 up:Q8TAC1 equivalent -hsa:3177 up:Q14542 equivalent -hsa:317701 up:Q8NFZ6 equivalent -hsa:317702 up:Q9BXE9 equivalent -hsa:317703 up:Q7Z5H5 equivalent -hsa:317705 up:Q7Z5H4 equivalent -hsa:317719 up:A0A140VJM8 equivalent -hsa:317719 up:Q6JEL2 equivalent -hsa:317749 up:D5KJA1 equivalent -hsa:317749 up:Q6PKH6 equivalent -hsa:317754 up:Q86YR6 equivalent -hsa:317761 up:Q8N1H7 equivalent -hsa:317762 up:A6NKD9 equivalent -hsa:317772 up:Q8IUE6 equivalent -hsa:317781 up:Q8N8A6 equivalent -hsa:3178 up:P09651 equivalent -hsa:318 up:P50583 equivalent -hsa:3181 up:P22626 equivalent -hsa:3182 up:Q99729 equivalent -hsa:3183 up:P07910 equivalent -hsa:3184 up:Q14103 equivalent -hsa:3185 up:P52597 equivalent -hsa:3187 up:A0A384MEJ3 equivalent -hsa:3187 up:P31943 equivalent -hsa:3188 up:A0A384MDT2 equivalent -hsa:3188 up:P55795 equivalent -hsa:3189 up:P31942 equivalent -hsa:319 up:Q13790 equivalent -hsa:3190 up:P61978 equivalent -hsa:3191 up:P14866 equivalent -hsa:3191 up:Q6NTA2 equivalent -hsa:319100 up:Q96RI8 equivalent -hsa:319101 up:Q86Y46 equivalent -hsa:3192 up:Q00839 equivalent -hsa:3192 up:Q96BA7 equivalent -hsa:3195 up:P31314 equivalent -hsa:3196 up:O43763 equivalent -hsa:3198 up:P49639 equivalent -hsa:3199 up:O43364 equivalent -hsa:32 up:O00763 equivalent -hsa:320 up:Q02410 equivalent -hsa:3200 up:O43365 equivalent -hsa:3201 up:Q00056 equivalent -hsa:3202 up:P20719 equivalent -hsa:3203 up:P31267 equivalent -hsa:3204 up:P31268 equivalent -hsa:3205 up:P31269 equivalent -hsa:3206 up:P31260 equivalent -hsa:3207 up:P31270 equivalent -hsa:3208 up:P84074 equivalent -hsa:3209 up:P31271 equivalent -hsa:3209 up:Q6DI00 equivalent -hsa:321 up:Q59G28 equivalent -hsa:321 up:Q99767 equivalent -hsa:3211 up:P14653 equivalent -hsa:3212 up:P14652 equivalent -hsa:3213 up:B3KNJ7 equivalent -hsa:3213 up:P14651 equivalent -hsa:3214 up:P17483 equivalent -hsa:3215 up:P09067 equivalent -hsa:3216 up:P17509 equivalent -hsa:3217 up:P09629 equivalent -hsa:3218 up:P17481 equivalent -hsa:3218 up:Q8N8T3 equivalent -hsa:3219 up:B3KPJ1 equivalent -hsa:3219 up:P17482 equivalent -hsa:322 up:O00213 equivalent -hsa:3221 up:P09017 equivalent -hsa:3221 up:Q86TF7 equivalent -hsa:3222 up:Q00444 equivalent -hsa:3223 up:P09630 equivalent -hsa:3224 up:P31273 equivalent -hsa:3225 up:P31274 equivalent -hsa:3226 up:Q53XI4 equivalent -hsa:3226 up:Q9NYD6 equivalent -hsa:3227 up:O43248 equivalent -hsa:3228 up:P31275 equivalent -hsa:3229 up:P31276 equivalent -hsa:323 up:B4DJ88 equivalent -hsa:323 up:B4E2F2 equivalent -hsa:323 up:Q92870 equivalent -hsa:3231 up:Q96CA4 equivalent -hsa:3231 up:Q9GZZ0 equivalent -hsa:3232 up:P31249 equivalent -hsa:3233 up:P09016 equivalent -hsa:3234 up:P13378 equivalent -hsa:3235 up:P28356 equivalent -hsa:3236 up:P28358 equivalent -hsa:3237 up:P31277 equivalent -hsa:3238 up:P35452 equivalent -hsa:3239 up:P35453 equivalent -hsa:324 up:P25054 equivalent -hsa:324 up:Q4LE70 equivalent -hsa:3240 up:P00738 equivalent -hsa:3240 up:Q6PEJ8 equivalent -hsa:3241 up:O75544 equivalent -hsa:3241 up:P37235 equivalent -hsa:3241 up:Q6FGY1 equivalent -hsa:3242 up:P32754 equivalent -hsa:3248 up:P15428 equivalent -hsa:3249 up:A0A140VJK9 equivalent -hsa:3249 up:P05981 equivalent -hsa:325 up:P02743 equivalent -hsa:325 up:V9HWP0 equivalent -hsa:3250 up:P00739 equivalent -hsa:3251 up:A0A140VJL3 equivalent -hsa:3251 up:P00492 equivalent -hsa:3257 up:Q658M9 equivalent -hsa:3257 up:Q92902 equivalent -hsa:326 up:O43918 equivalent -hsa:3263 up:P02790 equivalent -hsa:3263 up:Q9BS19 equivalent -hsa:326340 up:B9EG67 equivalent -hsa:326340 up:Q86SH2 equivalent -hsa:3265 up:P01112 equivalent -hsa:3265 up:X5D945 equivalent -hsa:3266 up:Q7Z444 equivalent -hsa:326624 up:Q96AX2 equivalent -hsa:326625 up:Q96EY8 equivalent -hsa:3267 up:A0A0S2Z444 equivalent -hsa:3267 up:P52594 equivalent -hsa:3268 up:A4D2D6 equivalent -hsa:3268 up:O95081 equivalent -hsa:3269 up:P35367 equivalent -hsa:327 up:P13798 equivalent -hsa:3270 up:P23327 equivalent -hsa:3273 up:P04196 equivalent -hsa:3274 up:P25021 equivalent -hsa:3275 up:A0A0S2Z3N3 equivalent -hsa:3275 up:P55345 equivalent -hsa:3276 up:Q99873 equivalent -hsa:327657 up:Q86WD7 equivalent -hsa:328 up:P27695 equivalent -hsa:328 up:Q5TZP7 equivalent -hsa:3280 up:Q14469 equivalent -hsa:3281 up:O75506 equivalent -hsa:3283 up:P14060 equivalent -hsa:3284 up:P26439 equivalent -hsa:329 up:Q13490 equivalent -hsa:3290 up:P28845 equivalent -hsa:3290 up:X5D2L1 equivalent -hsa:3291 up:P80365 equivalent -hsa:3292 up:P14061 equivalent -hsa:3293 up:P37058 equivalent -hsa:3293 up:Q6FH62 equivalent -hsa:3294 up:P37059 equivalent -hsa:3295 up:A0A0S2Z4J1 equivalent -hsa:3295 up:B2R659 equivalent -hsa:3295 up:P51659 equivalent -hsa:3297 up:Q00613 equivalent -hsa:3298 up:Q03933 equivalent -hsa:3299 up:Q9ULV5 equivalent -hsa:33 up:P28330 equivalent -hsa:330 up:Q13489 equivalent -hsa:3300 up:P25686 equivalent -hsa:3301 up:P31689 equivalent -hsa:3303 up:A8K5I0 equivalent -hsa:3303 up:B3KTT5 equivalent -hsa:3303 up:P0DMV8 equivalent -hsa:3303 up:P0DMV9 equivalent -hsa:3304 up:A8K5I0 equivalent -hsa:3304 up:P0DMV8 equivalent -hsa:3304 up:P0DMV9 equivalent -hsa:3305 up:A0A1U9X7W7 equivalent -hsa:3305 up:P34931 equivalent -hsa:3306 up:P54652 equivalent -hsa:3308 up:P34932 equivalent -hsa:3309 up:P11021 equivalent -hsa:3309 up:V9HWB4 equivalent -hsa:331 up:P98170 equivalent -hsa:3310 up:A0A384NKX5 equivalent -hsa:3310 up:B3KSM6 equivalent -hsa:3310 up:P17066 equivalent -hsa:3312 up:P11142 equivalent -hsa:3312 up:Q53HF2 equivalent -hsa:3312 up:V9HW22 equivalent -hsa:3313 up:A0A384P5G6 equivalent -hsa:3313 up:P38646 equivalent -hsa:3315 up:P04792 equivalent -hsa:3315 up:V9HW43 equivalent -hsa:3316 up:A8KAH6 equivalent -hsa:3316 up:Q16082 equivalent -hsa:332 up:A0A0B4J1S3 equivalent -hsa:332 up:O15392 equivalent -hsa:3320 up:K9JA46 equivalent -hsa:3320 up:P07900 equivalent -hsa:3321 up:O75054 equivalent -hsa:3326 up:P08238 equivalent -hsa:3329 up:A0A024R3X4 equivalent -hsa:3329 up:P10809 equivalent -hsa:333 up:P51693 equivalent -hsa:3336 up:A0A384N6A4 equivalent -hsa:3336 up:P61604 equivalent -hsa:3337 up:P25685 equivalent -hsa:3337 up:Q6FHS4 equivalent -hsa:3338 up:Q9NNZ3 equivalent -hsa:3339 up:P98160 equivalent -hsa:333926 up:Q5JR12 equivalent -hsa:333929 up:Q3KNW1 equivalent -hsa:333932 up:Q71DI3 equivalent -hsa:334 up:Q06481 equivalent -hsa:3340 up:A8K8T3 equivalent -hsa:3340 up:P52848 equivalent -hsa:3344 up:P32314 equivalent -hsa:3346 up:P15515 equivalent -hsa:3347 up:P15516 equivalent -hsa:335 up:A0A024R3E3 equivalent -hsa:335 up:P02647 equivalent -hsa:3350 up:A8K5W4 equivalent -hsa:3350 up:P08908 equivalent -hsa:3350 up:Q5ZGX3 equivalent -hsa:3351 up:A8K215 equivalent -hsa:3351 up:P28222 equivalent -hsa:3351 up:X5D7I5 equivalent -hsa:3352 up:P28221 equivalent -hsa:3354 up:P28566 equivalent -hsa:3355 up:P30939 equivalent -hsa:3356 up:P28223 equivalent -hsa:3357 up:P41595 equivalent -hsa:3358 up:P28335 equivalent -hsa:3359 up:B4E398 equivalent -hsa:3359 up:P46098 equivalent -hsa:336 up:P02652 equivalent -hsa:3360 up:A0A2D3FAF9 equivalent -hsa:3360 up:Q13639 equivalent -hsa:3361 up:A4D2N2 equivalent -hsa:3361 up:P47898 equivalent -hsa:3362 up:P50406 equivalent -hsa:3363 up:P34969 equivalent -hsa:3364 up:A4D2F2 equivalent -hsa:3364 up:O60921 equivalent -hsa:337 up:P06727 equivalent -hsa:3371 up:B4E1W8 equivalent -hsa:3371 up:P24821 equivalent -hsa:3371 up:Q4LE33 equivalent -hsa:3373 up:A0A024R2X3 equivalent -hsa:3373 up:Q12794 equivalent -hsa:3375 up:P10997 equivalent -hsa:3376 up:P41252 equivalent -hsa:3376 up:Q6P0M4 equivalent -hsa:3376 up:Q7L4K8 equivalent -hsa:337867 up:A8K2S7 equivalent -hsa:337867 up:Q8NBM4 equivalent -hsa:337876 up:Q70JA7 equivalent -hsa:337878 up:Q8IUC3 equivalent -hsa:337879 up:Q8IUC2 equivalent -hsa:337880 up:Q8IUC1 equivalent -hsa:337882 up:Q8IUB9 equivalent -hsa:337959 up:Q52LG2 equivalent -hsa:337960 up:Q3SY46 equivalent -hsa:337963 up:A1A580 equivalent -hsa:337966 up:Q3LI64 equivalent -hsa:337967 up:Q3LI66 equivalent -hsa:337968 up:Q3LI67 equivalent -hsa:337969 up:Q3LHN2 equivalent -hsa:337970 up:Q7Z4W3 equivalent -hsa:337971 up:Q3LI73 equivalent -hsa:337972 up:Q3LI72 equivalent -hsa:337973 up:A4FU57 equivalent -hsa:337973 up:Q3LI70 equivalent -hsa:337974 up:Q3SYF9 equivalent -hsa:337975 up:Q3LI63 equivalent -hsa:337976 up:Q3LI61 equivalent -hsa:337977 up:Q3LI58 equivalent -hsa:337978 up:Q3LI59 equivalent -hsa:337979 up:Q3MIV0 equivalent -hsa:337985 up:Q3LI60 equivalent -hsa:338 up:P04114 equivalent -hsa:338 up:Q59HB3 equivalent -hsa:338 up:Q7Z7Q0 equivalent -hsa:338094 up:Q8WW52 equivalent -hsa:3381 up:P21815 equivalent -hsa:3382 up:A0A024RA29 equivalent -hsa:3382 up:Q05084 equivalent -hsa:3383 up:A0A384MEK5 equivalent -hsa:3383 up:P05362 equivalent -hsa:338321 up:Q7RTR0 equivalent -hsa:338322 up:Q86W26 equivalent -hsa:338323 up:Q86W24 equivalent -hsa:338324 up:Q86SG5 equivalent -hsa:338328 up:Q8IV16 equivalent -hsa:338339 up:Q8WXI8 equivalent -hsa:338376 up:A0A7R8GUQ9 equivalent -hsa:338376 up:Q86WN2 equivalent -hsa:338382 up:Q96AH8 equivalent -hsa:338398 up:P59551 equivalent -hsa:3384 up:P13598 equivalent -hsa:3384 up:Q6FHE2 equivalent -hsa:338440 up:A1A5B4 equivalent -hsa:338442 up:A0A4Y1JWQ0 equivalent -hsa:338442 up:Q8TDS4 equivalent -hsa:3385 up:P32942 equivalent -hsa:338557 up:B4DWG6 equivalent -hsa:338557 up:Q5NUL3 equivalent -hsa:338567 up:Q7Z418 equivalent -hsa:338596 up:P61647 equivalent -hsa:338599 up:Q68J44 equivalent -hsa:3386 up:Q14773 equivalent -hsa:338645 up:Q86TE4 equivalent -hsa:338657 up:Q86UT8 equivalent -hsa:338661 up:Q6GV28 equivalent -hsa:338662 up:Q8NGM9 equivalent -hsa:338674 up:O95221 equivalent -hsa:338675 up:Q8NGF4 equivalent -hsa:338692 up:Q6ZTN6 equivalent -hsa:338699 up:Q8N9B4 equivalent -hsa:338707 up:Q76KP1 equivalent -hsa:338751 up:Q8NGH7 equivalent -hsa:338755 up:A0A126GWC6 equivalent -hsa:338755 up:A6NM03 equivalent -hsa:338761 up:A0A3B0INP7 equivalent -hsa:338761 up:Q86Z23 equivalent -hsa:338773 up:Q4V9L6 equivalent -hsa:338785 up:Q5XKE5 equivalent -hsa:338811 up:Q8N3H0 equivalent -hsa:338872 up:A0A3B0J259 equivalent -hsa:338872 up:P0C862 equivalent -hsa:338879 up:Q5GAN6 equivalent -hsa:338879 up:W0UTC4 equivalent -hsa:338917 up:P58304 equivalent -hsa:338949 up:A6NGA9 equivalent -hsa:339 up:P41238 equivalent -hsa:339105 up:Q2L4Q9 equivalent -hsa:339122 up:Q86YS6 equivalent -hsa:339123 up:Q96S16 equivalent -hsa:339145 up:A0A1X7SC74 equivalent -hsa:339145 up:Q6ZTR7 equivalent -hsa:339168 up:Q3KNT9 equivalent -hsa:339175 up:B3KM33 equivalent -hsa:339175 up:Q96IZ6 equivalent -hsa:339210 up:Q0P5P2 equivalent -hsa:339221 up:Q6UWV6 equivalent -hsa:339229 up:Q5BKU9 equivalent -hsa:339230 up:Q6PK04 equivalent -hsa:339231 up:B4E3H0 equivalent -hsa:339231 up:Q0P5N6 equivalent -hsa:339287 up:B3KWR7 equivalent -hsa:339287 up:Q68DK7 equivalent -hsa:339291 up:A6NM36 equivalent -hsa:339302 up:Q7Z7G2 equivalent -hsa:339318 up:B4DM69 equivalent -hsa:339318 up:Q2M3W8 equivalent -hsa:339324 up:Q3ZCT1 equivalent -hsa:339327 up:B3KVL3 equivalent -hsa:339327 up:Q86UE3 equivalent -hsa:339344 up:Q86VE0 equivalent -hsa:339345 up:P60321 equivalent -hsa:339366 up:Q0VD77 equivalent -hsa:339366 up:Q6ZMM2 equivalent -hsa:339366 up:X6R4H8 equivalent -hsa:339390 up:Q08G24 equivalent -hsa:339390 up:Q6UXB4 equivalent -hsa:339390 up:Q6XYD1 equivalent -hsa:339398 up:Q6UY18 equivalent -hsa:3394 up:Q02556 equivalent -hsa:339403 up:Q8TDU9 equivalent -hsa:339416 up:Q5TZF3 equivalent -hsa:339448 up:Q8IYL3 equivalent -hsa:339451 up:Q6TDP4 equivalent -hsa:339453 up:Q5SV17 equivalent -hsa:339456 up:Q8NDY8 equivalent -hsa:339479 up:Q76B58 equivalent -hsa:339487 up:A8K0B5 equivalent -hsa:339487 up:Q8IWT0 equivalent -hsa:339488 up:Q6VUC0 equivalent -hsa:339501 up:A1L453 equivalent -hsa:339512 up:Q86UF4 equivalent -hsa:339541 up:Q6PIY5 equivalent -hsa:339559 up:Q49AA0 equivalent -hsa:3396 up:Q14197 equivalent -hsa:339665 up:Q6ICL7 equivalent -hsa:339669 up:O43247 equivalent -hsa:3397 up:P41134 equivalent -hsa:339745 up:Q6IQ16 equivalent -hsa:339761 up:Q4G0S4 equivalent -hsa:339768 up:B3KXY4 equivalent -hsa:339768 up:Q6ZVH7 equivalent -hsa:339778 up:A6NJV1 equivalent -hsa:339779 up:Q53SZ7 equivalent -hsa:3398 up:Q02363 equivalent -hsa:3398 up:Q53T66 equivalent -hsa:339829 up:Q9UFE4 equivalent -hsa:339834 up:B4DZP6 equivalent -hsa:339834 up:Q8IYA8 equivalent -hsa:339855 up:Q8NBH2 equivalent -hsa:339896 up:Q6ZQY3 equivalent -hsa:3399 up:Q02535 equivalent -hsa:339965 up:Q5M9N0 equivalent -hsa:339967 up:A8KA85 equivalent -hsa:339967 up:Q6ZMR5 equivalent -hsa:339976 up:Q8N9V2 equivalent -hsa:339977 up:Q68CR7 equivalent -hsa:339983 up:Q8N9F0 equivalent -hsa:34 up:A0A0S2Z366 equivalent -hsa:34 up:P11310 equivalent -hsa:3400 up:P47928 equivalent -hsa:340024 up:Q695T7 equivalent -hsa:340061 up:Q86WV6 equivalent -hsa:340069 up:A1A519 equivalent -hsa:340075 up:Q5FYB1 equivalent -hsa:340120 up:A5PLL1 equivalent -hsa:340146 up:B7Z9Y0 equivalent -hsa:340146 up:Q5M8T2 equivalent -hsa:340152 up:A2A288 equivalent -hsa:340156 up:A0A8V8TMV3 reverse -hsa:340156 up:Q86YV6 equivalent -hsa:340168 up:A6NC42 equivalent -hsa:340204 up:A2RUU4 equivalent -hsa:340205 up:Q86YW5 equivalent -hsa:340252 up:Q8NEM1 equivalent -hsa:340260 up:A6NJT0 equivalent -hsa:340267 up:Q2UY09 equivalent -hsa:340273 up:Q2M3G0 equivalent -hsa:340277 up:A4D161 equivalent -hsa:340307 up:Q86UF2 equivalent -hsa:340348 up:Q86UF1 equivalent -hsa:340351 up:Q8NEM8 equivalent -hsa:340359 up:Q2WGJ6 equivalent -hsa:340371 up:Q9NSY0 equivalent -hsa:340385 up:A0AV05 equivalent -hsa:340385 up:Q6ZMY9 equivalent -hsa:340390 up:A6NE52 equivalent -hsa:340393 up:Q2WGJ8 equivalent -hsa:340419 up:B3KVP3 equivalent -hsa:340419 up:Q6UXX9 equivalent -hsa:340441 up:Q6S8J7 equivalent -hsa:340481 up:Q8IVQ6 equivalent -hsa:340485 up:B3KVV5 equivalent -hsa:340485 up:Q5QJU3 equivalent -hsa:340526 up:Q5HYW3 equivalent -hsa:340527 up:Q5HYW2 equivalent -hsa:340529 up:Q5JQF8 equivalent -hsa:340533 up:Q5QGS0 equivalent -hsa:340542 up:Q5H9J7 equivalent -hsa:340543 up:Q5H9L2 equivalent -hsa:340547 up:Q86XK7 equivalent -hsa:340554 up:Q5HYM0 equivalent -hsa:340562 up:Q86VE3 equivalent -hsa:340578 up:Q5VW00 equivalent -hsa:340595 up:Q6ZR62 equivalent -hsa:340596 up:Q86WI0 equivalent -hsa:340602 up:A0A515VFR0 equivalent -hsa:340602 up:Q86X51 equivalent -hsa:340654 up:Q5VYY2 equivalent -hsa:340665 up:Q6V0L0 equivalent -hsa:340706 up:Q5GFL6 equivalent -hsa:340719 up:Q8WY41 equivalent -hsa:340745 up:A6NDA9 equivalent -hsa:340784 up:A6NHT5 equivalent -hsa:340895 up:Q5VYJ5 equivalent -hsa:340900 up:P0CF75 equivalent -hsa:340980 up:Q8NGF0 equivalent -hsa:340990 up:Q6ZRI0 equivalent -hsa:341 up:P02654 equivalent -hsa:341019 up:M0R2J8 equivalent -hsa:341032 up:A0A8V8SAS4 equivalent -hsa:341032 up:Q8IXP5 equivalent -hsa:341116 up:Q96PG2 equivalent -hsa:341152 up:A0A126GWB1 equivalent -hsa:341152 up:A6NND4 equivalent -hsa:341208 up:Q6MZM0 equivalent -hsa:341276 up:Q9H208 equivalent -hsa:341346 up:A6NFE2 equivalent -hsa:341359 up:Q6XYQ8 equivalent -hsa:341392 up:P0C7M7 equivalent -hsa:341405 up:Q0VAA8 equivalent -hsa:341405 up:Q5K617 equivalent -hsa:341405 up:Q7Z3H0 equivalent -hsa:341416 up:A0A126GW05 equivalent -hsa:341416 up:Q9NZP2 equivalent -hsa:341418 up:Q8NGE1 equivalent -hsa:341567 up:A0A140VK96 equivalent -hsa:341567 up:Q75WM6 equivalent -hsa:3416 up:P14735 equivalent -hsa:341640 up:Q5SZK8 equivalent -hsa:341676 up:Q6P3R8 equivalent -hsa:3417 up:A0A024R3Y6 equivalent -hsa:3417 up:O75874 equivalent -hsa:341799 up:Q8NH40 equivalent -hsa:3418 up:P48735 equivalent -hsa:341880 up:A4IF30 equivalent -hsa:341880 up:G3V4Z9 equivalent -hsa:3419 up:P50213 equivalent -hsa:341947 up:Q7Z4L0 equivalent -hsa:3420 up:O43837 equivalent -hsa:342035 up:Q6ZMI3 equivalent -hsa:342096 up:A2VDJ1 equivalent -hsa:342096 up:Q9NYA3 equivalent -hsa:3421 up:P51553 equivalent -hsa:342125 up:Q7Z5M5 equivalent -hsa:342132 up:Q6NX45 equivalent -hsa:342184 up:Q68DA7 equivalent -hsa:3422 up:A0A8Q3WKR8 equivalent -hsa:3422 up:Q13907 equivalent -hsa:3423 up:P22304 equivalent -hsa:342346 up:A6NNT2 equivalent -hsa:342357 up:Q63HK3 equivalent -hsa:342371 up:P0C7T5 equivalent -hsa:342372 up:Q7Z443 equivalent -hsa:3425 up:P35475 equivalent -hsa:342510 up:B4E0V9 equivalent -hsa:342510 up:Q496F6 equivalent -hsa:342527 up:Q2TAL5 equivalent -hsa:342538 up:Q9H009 equivalent -hsa:342574 up:Q7Z3Y8 equivalent -hsa:3426 up:A8K3L0 equivalent -hsa:3426 up:P05156 equivalent -hsa:342618 up:P0C7P3 equivalent -hsa:342667 up:D0IN09 equivalent -hsa:342667 up:Q6ZMT1 equivalent -hsa:3428 up:Q16666 equivalent -hsa:342850 up:A6NC57 equivalent -hsa:342865 up:A6NLU5 equivalent -hsa:342892 up:A8MQ14 equivalent -hsa:342897 up:Q6ZVX7 equivalent -hsa:342898 up:Q0VAF6 equivalent -hsa:3429 up:P40305 equivalent -hsa:342900 up:A8MZ59 equivalent -hsa:342908 up:Q494X3 equivalent -hsa:342909 up:Q2VY69 equivalent -hsa:342918 up:C9J6K1 equivalent -hsa:342926 up:Q86XU0 equivalent -hsa:342931 up:A6NLU0 equivalent -hsa:342933 up:A6NJL1 equivalent -hsa:342945 up:P10073 equivalent -hsa:342977 up:P60323 equivalent -hsa:342979 up:A6NDB9 equivalent -hsa:343 up:O94778 equivalent -hsa:3430 up:P80217 equivalent -hsa:343035 up:Q7Z3Z2 equivalent -hsa:343066 up:Q5VUY2 equivalent -hsa:343068 up:Q5TYX0 equivalent -hsa:343069 up:O60812 equivalent -hsa:343070 up:A0A096LNW4 equivalent -hsa:343071 up:O60809 equivalent -hsa:343099 up:Q5T9S5 equivalent -hsa:343099 up:Q6PH87 equivalent -hsa:343099 up:Q7Z659 equivalent -hsa:3431 up:Q9HB58 equivalent -hsa:343169 up:A0A126GV68 equivalent -hsa:343169 up:Q8NGZ6 equivalent -hsa:343171 up:Q7Z3T1 equivalent -hsa:343172 up:A6NH00 equivalent -hsa:343173 up:A0A126GVW5 equivalent -hsa:343173 up:Q8NH03 equivalent -hsa:343263 up:A2RUH7 equivalent -hsa:3433 up:P09913 equivalent -hsa:3433 up:Q05DN2 equivalent -hsa:3434 up:P09914 equivalent -hsa:343406 up:Q8NGX6 equivalent -hsa:343413 up:Q6DN72 equivalent -hsa:343450 up:A9LNM6 equivalent -hsa:343450 up:Q6UVM3 equivalent -hsa:343472 up:Q9NY43 equivalent -hsa:343521 up:Q5JR98 equivalent -hsa:343563 up:Q8NH02 equivalent -hsa:343637 up:Q2I0M5 equivalent -hsa:343641 up:O95932 equivalent -hsa:3437 up:O14879 equivalent -hsa:3437 up:Q5T765 equivalent -hsa:343702 up:Q5GH72 equivalent -hsa:3439 up:L0N195 equivalent -hsa:3439 up:P01562 equivalent -hsa:343930 up:A6NI15 equivalent -hsa:343990 up:Q6NV74 equivalent -hsa:344 up:A0A024R0T9 equivalent -hsa:344 up:P02655 equivalent -hsa:3440 up:A0A7R8GUN5 equivalent -hsa:3440 up:P01563 equivalent -hsa:344018 up:Q6QHK4 equivalent -hsa:344022 up:A8MTQ0 equivalent -hsa:3441 up:P05014 equivalent -hsa:344148 up:O14513 equivalent -hsa:344167 up:A8MTJ6 equivalent -hsa:344191 up:Q03828 equivalent -hsa:3442 up:A0A7R8C382 equivalent -hsa:3442 up:P01569 equivalent -hsa:3443 up:A0A7R8C308 equivalent -hsa:3443 up:P05013 equivalent -hsa:344387 up:Q5MAI5 equivalent -hsa:3444 up:A0A7R8C383 equivalent -hsa:3444 up:P01567 equivalent -hsa:3445 up:A0A7R8C381 equivalent -hsa:3445 up:P32881 equivalent -hsa:344558 up:Q8TEJ3 equivalent -hsa:344561 up:Q8TDV2 equivalent -hsa:3446 up:A0A7R8C2Z1 equivalent -hsa:3446 up:P01566 equivalent -hsa:344657 up:A6NIV6 equivalent -hsa:344658 up:Q7Z3H4 equivalent -hsa:3447 up:A0A087WWS6 equivalent -hsa:3447 up:P01562 equivalent -hsa:344752 up:Q6P093 equivalent -hsa:344758 up:Q2MKA6 equivalent -hsa:344758 up:Q86SP6 equivalent -hsa:344787 up:A6NHJ4 equivalent -hsa:3448 up:P01570 equivalent -hsa:344805 up:Q7RTY8 equivalent -hsa:344807 up:Q6Q8B3 equivalent -hsa:344838 up:Q6ZVX9 equivalent -hsa:344892 up:Q5QGT7 equivalent -hsa:3449 up:A0A7R8C397 equivalent -hsa:3449 up:P05015 equivalent -hsa:344901 up:P61366 equivalent -hsa:344905 up:Q4VNC0 equivalent -hsa:345 up:A3KPE2 equivalent -hsa:345 up:P02656 equivalent -hsa:345062 up:A0A140VJJ1 equivalent -hsa:345062 up:Q7RTY5 equivalent -hsa:345079 up:A6NEL2 equivalent -hsa:3451 up:A0A7R8C355 equivalent -hsa:3451 up:P01571 equivalent -hsa:345193 up:Q3SXY7 equivalent -hsa:3452 up:A0A7R8GUQ6 equivalent -hsa:3452 up:P01568 equivalent -hsa:345222 up:Q6ZTZ1 equivalent -hsa:345274 up:Q3KNW5 equivalent -hsa:345275 up:Q7Z5P4 equivalent -hsa:3454 up:P17181 equivalent -hsa:345456 up:P60673 equivalent -hsa:345462 up:B4DU55 equivalent -hsa:3455 up:P48551 equivalent -hsa:345557 up:B3KXD1 equivalent -hsa:345557 up:Q63HM9 equivalent -hsa:3456 up:A0A7R8GV38 equivalent -hsa:3456 up:P01574 equivalent -hsa:345611 up:A1A4Y4 equivalent -hsa:345643 up:D6RGH6 equivalent -hsa:345651 up:Q562R1 equivalent -hsa:345757 up:Q8TBP5 equivalent -hsa:345778 up:Q5HYI7 equivalent -hsa:3458 up:A0A7R8GUN6 equivalent -hsa:3458 up:P01579 equivalent -hsa:345895 up:B3KTA9 equivalent -hsa:345895 up:Q5TD94 equivalent -hsa:3459 up:A0A0S2Z3Y2 equivalent -hsa:3459 up:P15260 equivalent -hsa:345930 up:Q008S8 equivalent -hsa:346 up:P55056 equivalent -hsa:3460 up:A8K881 equivalent -hsa:3460 up:E7EUY1 reverse -hsa:3460 up:P38484 equivalent -hsa:346007 up:Q5T1H1 equivalent -hsa:346157 up:Q9UJN7 equivalent -hsa:346171 up:A0A1U9X8V5 equivalent -hsa:346171 up:B7ZW61 equivalent -hsa:346171 up:Q9NU63 equivalent -hsa:346288 up:Q6ZU15 equivalent -hsa:346389 up:Q6ZN28 equivalent -hsa:346517 up:A0A126GWQ4 equivalent -hsa:346517 up:Q8N148 equivalent -hsa:346525 up:Q8NGT7 equivalent -hsa:346528 up:Q8NGT9 equivalent -hsa:346562 up:A8MTJ3 equivalent -hsa:346606 up:Q86VF5 equivalent -hsa:346653 up:Q6NXP2 equivalent -hsa:346673 up:Q7Z7C7 equivalent -hsa:346689 up:A4D1S0 equivalent -hsa:3467 up:A0A7R8GUW6 equivalent -hsa:3467 up:P05000 equivalent -hsa:347 up:P05090 equivalent -hsa:347051 up:Q5PT55 equivalent -hsa:347148 up:P83859 equivalent -hsa:347168 up:A0A126GWP9 equivalent -hsa:347168 up:Q8NGS3 equivalent -hsa:347169 up:Q8NGR6 equivalent -hsa:347240 up:Q5T7B8 equivalent -hsa:347252 up:Q8WX77 equivalent -hsa:347273 up:Q5BKX8 equivalent -hsa:347344 up:P51508 equivalent -hsa:347365 up:Q6UXX5 equivalent -hsa:347404 up:Q6ZV70 equivalent -hsa:347411 up:P0DKB6 equivalent -hsa:347454 up:A6NJG2 equivalent -hsa:347468 up:A0A126GW70 equivalent -hsa:347468 up:Q8NG92 equivalent -hsa:347475 up:A6NGH7 equivalent -hsa:347487 up:Q5JRM2 equivalent -hsa:3475 up:A4D0U1 equivalent -hsa:3475 up:O00458 equivalent -hsa:347516 up:Q6ZPD8 equivalent -hsa:347517 up:Q5JT25 equivalent -hsa:347527 up:Q5FYA8 equivalent -hsa:347541 up:Q9BZ81 equivalent -hsa:3476 up:P78318 equivalent -hsa:347688 up:Q3ZCM7 equivalent -hsa:347730 up:Q86UE6 equivalent -hsa:347731 up:Q86VH5 equivalent -hsa:347732 up:Q86XQ3 equivalent -hsa:347733 up:A0A384MEE3 equivalent -hsa:347733 up:Q9BVA1 equivalent -hsa:347734 up:Q8TB61 equivalent -hsa:347735 up:Q96IM8 equivalent -hsa:347735 up:Q96SA4 equivalent -hsa:347736 up:Q86XW9 equivalent -hsa:347741 up:Q7RTS5 equivalent -hsa:347744 up:Q5T4I8 equivalent -hsa:347853 up:O75333 equivalent -hsa:347862 up:B7Z1J9 equivalent -hsa:347862 up:Q8NB37 equivalent -hsa:3479 up:P05019 equivalent -hsa:347902 up:Q86SJ2 equivalent -hsa:348 up:A0A0S2Z3D5 equivalent -hsa:348 up:P02649 equivalent -hsa:3480 up:P08069 equivalent -hsa:348013 up:Q8WV15 equivalent -hsa:348093 up:Q6ZRY4 equivalent -hsa:348094 up:Q495B1 equivalent -hsa:3481 up:P01344 equivalent -hsa:348110 up:Q7Z6K5 equivalent -hsa:348158 up:Q68CK6 equivalent -hsa:348174 up:A5D8T8 equivalent -hsa:348180 up:Q2VPK5 equivalent -hsa:3482 up:P11717 equivalent -hsa:348235 up:Q8WVK7 equivalent -hsa:348262 up:C9JLW8 equivalent -hsa:3483 up:P35858 equivalent -hsa:3483 up:Q8TAY0 equivalent -hsa:348303 up:P59797 equivalent -hsa:348327 up:Q6P9A1 equivalent -hsa:348378 up:Q6UWV7 equivalent -hsa:3484 up:P08833 equivalent -hsa:348487 up:Q96AQ9 equivalent -hsa:3485 up:P18065 equivalent -hsa:3486 up:B3KPF0 equivalent -hsa:3486 up:P17936 equivalent -hsa:348654 up:Q17RS7 equivalent -hsa:3487 up:P22692 equivalent -hsa:348793 up:Q7Z5U6 equivalent -hsa:3488 up:P24593 equivalent -hsa:348801 up:A1A4G5 equivalent -hsa:348807 up:Q494V2 equivalent -hsa:3489 up:P24592 equivalent -hsa:348932 up:Q96N87 equivalent -hsa:348938 up:Q0D2K0 equivalent -hsa:348980 up:O60741 equivalent -hsa:348980 up:Q86WJ6 equivalent -hsa:348995 up:Q8NFH3 equivalent -hsa:348995 up:Q8TEA6 equivalent -hsa:3490 up:Q16270 equivalent -hsa:349075 up:Q8N859 equivalent -hsa:3491 up:O00622 equivalent -hsa:3491 up:Q6FI18 equivalent -hsa:349136 up:Q86TI4 equivalent -hsa:349149 up:Q8NFK1 equivalent -hsa:349334 up:Q8WXT5 equivalent -hsa:349565 up:Q49AL4 equivalent -hsa:349565 up:Q96T66 equivalent -hsa:349633 up:Q6UQ28 equivalent -hsa:349667 up:Q86UN3 equivalent -hsa:35 up:E5KSD5 equivalent -hsa:35 up:P16219 equivalent -hsa:350 up:A0A384NKM6 equivalent -hsa:350 up:P02749 equivalent -hsa:350383 up:Q7Z601 equivalent -hsa:3508 up:P38935 equivalent -hsa:351 up:A0A140VJC8 equivalent -hsa:351 up:P05067 equivalent -hsa:3512 up:P01591 equivalent -hsa:3516 up:Q06330 equivalent -hsa:352909 up:Q8N9W5 equivalent -hsa:352999 up:Q6P5S2 equivalent -hsa:353 up:P07741 equivalent -hsa:353088 up:Q86V71 equivalent -hsa:353091 up:Q6H3X3 equivalent -hsa:353116 up:Q5EBL4 equivalent -hsa:353131 up:Q5T7P2 equivalent -hsa:353132 up:Q5T7P3 equivalent -hsa:353133 up:Q5T751 equivalent -hsa:353134 up:Q5T752 equivalent -hsa:353135 up:Q5T753 equivalent -hsa:353137 up:Q5T754 equivalent -hsa:353139 up:Q5TA79 equivalent -hsa:353140 up:Q5TA81 equivalent -hsa:353141 up:Q5TA82 equivalent -hsa:353142 up:Q5TA76 equivalent -hsa:353143 up:Q5TA77 equivalent -hsa:353144 up:Q5T5A8 equivalent -hsa:353145 up:Q5T5B0 equivalent -hsa:353149 up:Q86UD7 equivalent -hsa:353164 up:A0A0G2JPZ2 equivalent -hsa:353164 up:Q7RTR8 equivalent -hsa:353174 up:Q401N2 equivalent -hsa:353189 up:Q6ZQN7 equivalent -hsa:353238 up:Q6TGC4 equivalent -hsa:353274 up:P59923 equivalent -hsa:353288 up:Q7Z3Y9 equivalent -hsa:353299 up:A5PLK6 equivalent -hsa:353322 up:Q7Z713 equivalent -hsa:353323 up:P59991 equivalent -hsa:353324 up:A0A140VJV7 equivalent -hsa:353324 up:Q7Z6I5 equivalent -hsa:353332 up:P59990 equivalent -hsa:353333 up:P60014 equivalent -hsa:353345 up:Q7Z602 equivalent -hsa:353355 up:A6NK53 equivalent -hsa:353376 up:Q86XR7 equivalent -hsa:353497 up:Q7Z5Q5 equivalent -hsa:353500 up:Q7Z5Y6 equivalent -hsa:353513 up:O14598 equivalent -hsa:353514 up:A6NI73 equivalent -hsa:354 up:P07288 equivalent -hsa:354 up:Q546G3 equivalent -hsa:3543 up:P15814 equivalent -hsa:3547 up:Q8N6C5 equivalent -hsa:3549 up:Q14623 equivalent -hsa:355 up:P25445 equivalent -hsa:3550 up:Q13123 equivalent -hsa:3550 up:Q95HA6 equivalent -hsa:3550 up:Q9UK43 equivalent -hsa:3551 up:O14920 equivalent -hsa:3552 up:P01583 equivalent -hsa:3553 up:P01584 equivalent -hsa:3554 up:P14778 equivalent -hsa:3556 up:A8K6K4 equivalent -hsa:3556 up:Q9NPH3 equivalent -hsa:3557 up:P18510 equivalent -hsa:3558 up:P60568 equivalent -hsa:3558 up:Q0GK43 equivalent -hsa:3559 up:P01589 equivalent -hsa:356 up:P48023 equivalent -hsa:356 up:Q53ZZ1 equivalent -hsa:3560 up:P14784 equivalent -hsa:3561 up:P31785 equivalent -hsa:3562 up:P08700 equivalent -hsa:3563 up:P26951 equivalent -hsa:3565 up:D4HNR6 equivalent -hsa:3565 up:P05112 equivalent -hsa:3566 up:P24394 equivalent -hsa:3567 up:P05113 equivalent -hsa:3568 up:Q01344 equivalent -hsa:3569 up:B4DVM1 equivalent -hsa:3569 up:P05231 equivalent -hsa:3569 up:Q75MH2 equivalent -hsa:357 up:Q13796 equivalent -hsa:3570 up:A0N0L5 equivalent -hsa:3570 up:P08887 equivalent -hsa:3572 up:P40189 equivalent -hsa:3572 up:Q17RA0 equivalent -hsa:3574 up:A8K673 equivalent -hsa:3574 up:P13232 equivalent -hsa:3575 up:P16871 equivalent -hsa:3576 up:P10145 equivalent -hsa:3577 up:P25024 equivalent -hsa:3578 up:P15248 equivalent -hsa:3579 up:P25025 equivalent -hsa:3579 up:Q53PC4 equivalent -hsa:358 up:A0A024RA31 equivalent -hsa:358 up:P29972 equivalent -hsa:3581 up:Q01113 equivalent -hsa:3586 up:P22301 equivalent -hsa:3586 up:Q6FGW4 equivalent -hsa:3587 up:Q13651 equivalent -hsa:3588 up:Q08334 equivalent -hsa:3589 up:A8K3F7 equivalent -hsa:3589 up:P20809 equivalent -hsa:359 up:P41181 equivalent -hsa:3590 up:Q14626 equivalent -hsa:3590 up:Q5VZ79 equivalent -hsa:3592 up:O60595 equivalent -hsa:3592 up:P29459 equivalent -hsa:3593 up:P29460 equivalent -hsa:3594 up:P42701 equivalent -hsa:3595 up:Q99665 equivalent -hsa:3596 up:P35225 equivalent -hsa:3597 up:P78552 equivalent -hsa:359710 up:P59826 equivalent -hsa:359710 up:Q14DE0 equivalent -hsa:359787 up:Q6W0C5 equivalent -hsa:3598 up:Q14627 equivalent -hsa:359845 up:Q8N5W9 equivalent -hsa:359948 up:Q7Z5L9 equivalent -hsa:36 up:A0A0S2Z3P9 equivalent -hsa:36 up:P45954 equivalent -hsa:360 up:Q92482 equivalent -hsa:3600 up:P40933 equivalent -hsa:360023 up:Q5SVQ8 equivalent -hsa:360030 up:Q7Z5D8 equivalent -hsa:3601 up:Q13261 equivalent -hsa:360200 up:Q0X0F2 equivalent -hsa:360200 up:Q7Z410 equivalent -hsa:360203 up:Q7Z4J2 equivalent -hsa:360205 up:D3DTV9 equivalent -hsa:3603 up:Q14005 equivalent -hsa:3604 up:Q07011 equivalent -hsa:3605 up:Q16552 equivalent -hsa:3606 up:Q14116 equivalent -hsa:3607 up:Q01167 equivalent -hsa:3608 up:F4ZW62 equivalent -hsa:3608 up:Q12905 equivalent -hsa:3608 up:Q53FG3 equivalent -hsa:3609 up:Q12906 equivalent -hsa:361 up:F1DSG4 equivalent -hsa:361 up:P55087 equivalent -hsa:3611 up:Q13418 equivalent -hsa:3611 up:V9HWF0 equivalent -hsa:3612 up:A0A140VJL8 reverse -hsa:3612 up:P29218 equivalent -hsa:3613 up:O14732 equivalent -hsa:3614 up:P20839 equivalent -hsa:3615 up:A0A384N6C2 equivalent -hsa:3615 up:P12268 equivalent -hsa:3617 up:Q17R60 equivalent -hsa:3619 up:Q9NQS7 equivalent -hsa:362 up:P55064 equivalent -hsa:3620 up:A0A348GSI3 equivalent -hsa:3620 up:P14902 equivalent -hsa:3621 up:A0A0C4DFW2 equivalent -hsa:3621 up:Q9UK53 equivalent -hsa:3622 up:B2RA15 equivalent -hsa:3622 up:Q9H160 equivalent -hsa:3623 up:P05111 equivalent -hsa:3624 up:A4D1W7 equivalent -hsa:3624 up:P08476 equivalent -hsa:3625 up:P09529 equivalent -hsa:3626 up:P55103 equivalent -hsa:3627 up:P02778 equivalent -hsa:3628 up:P49441 equivalent -hsa:3628 up:Q6IBG4 equivalent -hsa:363 up:Q13520 equivalent -hsa:3630 up:I3WAC9 equivalent -hsa:3630 up:P01308 equivalent -hsa:3631 up:Q96PE3 equivalent -hsa:3632 up:Q14642 equivalent -hsa:3633 up:P32019 equivalent -hsa:3635 up:Q92835 equivalent -hsa:3636 up:O15357 equivalent -hsa:3638 up:O15503 equivalent -hsa:364 up:O14520 equivalent -hsa:3640 up:P51460 equivalent -hsa:3641 up:Q14641 equivalent -hsa:3642 up:Q01101 equivalent -hsa:3643 up:P06213 equivalent -hsa:3645 up:P14616 equivalent -hsa:3646 up:P60228 equivalent -hsa:3651 up:P52945 equivalent -hsa:3652 up:Q9Y573 equivalent -hsa:3654 up:P51617 equivalent -hsa:3655 up:P23229 equivalent -hsa:3656 up:O43187 equivalent -hsa:3658 up:P48200 equivalent -hsa:3659 up:P10914 equivalent -hsa:3659 up:Q6FHN8 equivalent -hsa:366 up:O43315 equivalent -hsa:3660 up:P14316 equivalent -hsa:3661 up:Q14653 equivalent -hsa:3662 up:Q15306 equivalent -hsa:3663 up:Q13568 equivalent -hsa:3664 up:G0Z349 equivalent -hsa:3664 up:O14896 equivalent -hsa:3665 up:Q92985 equivalent -hsa:3667 up:P35568 equivalent -hsa:3669 up:Q96AZ6 equivalent -hsa:367 up:P10275 equivalent -hsa:367 up:Q9NUA2 equivalent -hsa:3670 up:P61371 equivalent -hsa:3671 up:A0A146E5L3 equivalent -hsa:3671 up:O14498 equivalent -hsa:3672 up:P56199 equivalent -hsa:3673 up:P17301 equivalent -hsa:3674 up:P08514 equivalent -hsa:3675 up:A0A140VJM0 equivalent -hsa:3675 up:P26006 equivalent -hsa:3676 up:P13612 equivalent -hsa:3678 up:B2R627 equivalent -hsa:3678 up:P08648 equivalent -hsa:3679 up:Q13683 equivalent -hsa:3679 up:Q4LE35 equivalent -hsa:368 up:O95255 equivalent -hsa:3680 up:Q13797 equivalent -hsa:3680 up:Q8N6H6 equivalent -hsa:3681 up:Q13349 equivalent -hsa:3681 up:Q59H14 equivalent -hsa:3682 up:P38570 equivalent -hsa:3683 up:B2RAL6 equivalent -hsa:3683 up:P20701 equivalent -hsa:3684 up:P11215 equivalent -hsa:3685 up:L7RXH0 equivalent -hsa:3685 up:P06756 equivalent -hsa:3687 up:P20702 equivalent -hsa:3688 up:P05556 equivalent -hsa:3689 up:A0A494C0X7 equivalent -hsa:3689 up:P05107 equivalent -hsa:369 up:A0A024R178 equivalent -hsa:369 up:P10398 equivalent -hsa:3690 up:P05106 equivalent -hsa:3691 up:P16144 equivalent -hsa:3692 up:P56537 equivalent -hsa:3693 up:L7RT22 equivalent -hsa:3693 up:P18084 equivalent -hsa:3694 up:P18564 equivalent -hsa:3695 up:P26010 equivalent -hsa:3696 up:P26012 equivalent -hsa:3696 up:Q9BUG9 equivalent -hsa:3697 up:P19827 equivalent -hsa:3698 up:P19823 equivalent -hsa:3699 up:Q06033 equivalent -hsa:37 up:P49748 equivalent -hsa:3700 up:B2RMS9 equivalent -hsa:3700 up:B7ZKJ8 equivalent -hsa:3700 up:Q14624 equivalent -hsa:3702 up:Q08881 equivalent -hsa:3703 up:P46977 equivalent -hsa:3704 up:A0A0S2Z3W7 equivalent -hsa:3704 up:Q9BY32 equivalent -hsa:3705 up:Q13572 equivalent -hsa:3706 up:P23677 equivalent -hsa:3707 up:B2R9J0 equivalent -hsa:3707 up:P27987 equivalent -hsa:3708 up:Q14643 equivalent -hsa:3709 up:Q14571 equivalent -hsa:3710 up:A6H8K3 equivalent -hsa:3710 up:Q14573 equivalent -hsa:3710 up:Q59ES2 equivalent -hsa:3712 up:A0A0A0MT83 equivalent -hsa:3712 up:P26440 equivalent -hsa:3713 up:P07476 equivalent -hsa:3714 up:Q9Y219 equivalent -hsa:3716 up:P23458 equivalent -hsa:3716 up:Q6P669 equivalent -hsa:3717 up:O60674 equivalent -hsa:3718 up:P52333 equivalent -hsa:372 up:B0YIW5 equivalent -hsa:372 up:P48444 equivalent -hsa:3720 up:Q92833 equivalent -hsa:3725 up:P05412 equivalent -hsa:3726 up:P17275 equivalent -hsa:3726 up:Q5U079 equivalent -hsa:3727 up:P17535 equivalent -hsa:3728 up:A0A0S2Z487 equivalent -hsa:3728 up:P14923 equivalent -hsa:373 up:P36406 equivalent -hsa:3730 up:P23352 equivalent -hsa:373156 up:Q6FII1 equivalent -hsa:373156 up:Q9Y2Q3 equivalent -hsa:3732 up:P27701 equivalent -hsa:3735 up:Q15046 equivalent -hsa:373509 up:Q70EL3 equivalent -hsa:3736 up:Q09470 equivalent -hsa:3737 up:P16389 equivalent -hsa:3738 up:P22001 equivalent -hsa:373863 up:Q8IYX4 equivalent -hsa:3739 up:P22459 equivalent -hsa:374 up:P15514 equivalent -hsa:3741 up:P22460 equivalent -hsa:3742 up:P17658 equivalent -hsa:374286 up:O95170 equivalent -hsa:374286 up:Q59EB2 equivalent -hsa:374291 up:O75251 equivalent -hsa:374291 up:Q7LD69 equivalent -hsa:3743 up:Q96RP8 equivalent -hsa:374308 up:A0A8Q3VUI5 equivalent -hsa:374308 up:Q3KNS1 equivalent -hsa:374354 up:Q7Z658 equivalent -hsa:374354 up:Q8NBF2 equivalent -hsa:374355 up:P0C7W6 equivalent -hsa:374378 up:Q58A54 equivalent -hsa:374378 up:Q6P9A2 equivalent -hsa:374383 up:Q68D85 equivalent -hsa:374393 up:Q6SJ93 equivalent -hsa:374395 up:Q7Z7N9 equivalent -hsa:3744 up:Q16322 equivalent -hsa:374403 up:Q8IV04 equivalent -hsa:374407 up:P59910 equivalent -hsa:374454 up:Q0IIN1 equivalent -hsa:374454 up:Q7Z794 equivalent -hsa:374462 up:A0A087WZU1 equivalent -hsa:374470 up:Q96LP6 equivalent -hsa:3745 up:Q14721 equivalent -hsa:374569 up:Q86U10 equivalent -hsa:3746 up:P48547 equivalent -hsa:374618 up:A0A0S2Z669 equivalent -hsa:374618 up:Q8N6V9 equivalent -hsa:374654 up:Q2M1P5 equivalent -hsa:374655 up:Q8N1W2 equivalent -hsa:374659 up:Q8N4P3 equivalent -hsa:3747 up:Q96PR1 equivalent -hsa:374739 up:A0A140VJW9 reverse -hsa:374739 up:Q6URK8 equivalent -hsa:374768 up:Q8N4L4 equivalent -hsa:374786 up:A4FU69 equivalent -hsa:3748 up:Q14003 equivalent -hsa:374819 up:O60309 equivalent -hsa:374864 up:A1L4G8 equivalent -hsa:374864 up:Q5BJE1 equivalent -hsa:374868 up:B3KSI8 equivalent -hsa:374868 up:O43861 equivalent -hsa:374868 up:Q69YZ7 equivalent -hsa:374868 up:Q7Z3J4 equivalent -hsa:374872 up:Q6ZS72 equivalent -hsa:374875 up:Q7Z5J1 equivalent -hsa:374877 up:Q8NA69 equivalent -hsa:374879 up:Q32M78 equivalent -hsa:374882 up:Q6UW68 equivalent -hsa:374887 up:A6XGL0 equivalent -hsa:374887 up:Q6ZT45 equivalent -hsa:374897 up:Q6UWP8 equivalent -hsa:374899 up:Q3KNS6 equivalent -hsa:3749 up:Q03721 equivalent -hsa:374900 up:Q3ZCX4 equivalent -hsa:374900 up:Q96AZ9 equivalent -hsa:374907 up:Q7Z7M8 equivalent -hsa:374918 up:Q6UW32 equivalent -hsa:374920 up:Q86XI8 equivalent -hsa:374928 up:Q6PK81 equivalent -hsa:374946 up:Q8NBI3 equivalent -hsa:374955 up:Q7Z572 equivalent -hsa:374969 up:Q8N300 equivalent -hsa:374973 up:C9W8M6 equivalent -hsa:374973 up:Q6PEX7 equivalent -hsa:374977 up:B7Z7S6 equivalent -hsa:374977 up:Q68CQ1 equivalent -hsa:374986 up:Q8NAN2 equivalent -hsa:375 up:P84077 equivalent -hsa:3750 up:Q9NSA2 equivalent -hsa:375033 up:Q5VY43 equivalent -hsa:375035 up:O95562 equivalent -hsa:375056 up:Q5JRA6 equivalent -hsa:375057 up:Q69YW2 equivalent -hsa:375061 up:Q96GI7 equivalent -hsa:3751 up:A4D0V9 equivalent -hsa:3751 up:Q9NZV8 equivalent -hsa:375189 up:Q8NHR9 equivalent -hsa:375190 up:P0C875 equivalent -hsa:3752 up:Q9UK17 equivalent -hsa:375287 up:Q6ZSC3 equivalent -hsa:375298 up:Q49MI3 equivalent -hsa:3753 up:C7S316 equivalent -hsa:3753 up:P15382 equivalent -hsa:3753 up:Q6FHJ6 equivalent -hsa:375307 up:Q7Z7H3 equivalent -hsa:375316 up:Q6ZP01 equivalent -hsa:375316 up:Q8N7S3 equivalent -hsa:375318 up:Q8IXF9 equivalent -hsa:375323 up:Q7Z7J7 equivalent -hsa:375337 up:Q8N9V7 equivalent -hsa:375341 up:Q6ZUJ4 equivalent -hsa:375346 up:Q86TL2 equivalent -hsa:375387 up:Q86YC3 equivalent -hsa:3754 up:Q9H3M0 equivalent -hsa:375444 up:Q96MH7 equivalent -hsa:375449 up:O15021 equivalent -hsa:375484 up:B4DRM7 equivalent -hsa:375484 up:Q8NDZ2 equivalent -hsa:3755 up:Q86Y85 equivalent -hsa:3755 up:Q9UIX4 equivalent -hsa:375519 up:Q6PEY0 equivalent -hsa:375567 up:Q2TAL6 equivalent -hsa:375593 up:Q86UV7 equivalent -hsa:3756 up:O95259 equivalent -hsa:375607 up:Q8N8M0 equivalent -hsa:375611 up:P58743 equivalent -hsa:375612 up:Q86UP9 equivalent -hsa:375616 up:Q6ZWJ8 equivalent -hsa:375686 up:Q76KD6 equivalent -hsa:3757 up:A0A090N8Q0 equivalent -hsa:3757 up:Q12809 equivalent -hsa:3757 up:Q15BH2 equivalent -hsa:375704 up:Q6UWT2 equivalent -hsa:375743 up:Q7Z6K3 equivalent -hsa:375748 up:Q5T890 reverse -hsa:375757 up:Q1ZZU3 equivalent -hsa:375759 up:Q5SZB4 equivalent -hsa:375775 up:Q6ZV29 equivalent -hsa:375790 up:O00468 equivalent -hsa:375791 up:A8MQ03 equivalent -hsa:3758 up:A8K432 equivalent -hsa:3758 up:P48048 equivalent -hsa:3759 up:P63252 equivalent -hsa:3760 up:P48549 equivalent -hsa:3761 up:P48050 equivalent -hsa:376132 up:Q5BKY1 equivalent -hsa:3762 up:A0A5J6E2W8 equivalent -hsa:3762 up:P48544 equivalent -hsa:376267 up:G5EMR8 equivalent -hsa:376267 up:P59190 equivalent -hsa:3763 up:P48051 equivalent -hsa:3764 up:Q15842 equivalent -hsa:376497 up:Q6PCB7 equivalent -hsa:3765 up:Q92806 equivalent -hsa:3766 up:P78508 equivalent -hsa:3767 up:B2RC52 equivalent -hsa:3767 up:Q14654 equivalent -hsa:3768 up:Q14500 equivalent -hsa:3769 up:O60928 equivalent -hsa:376940 up:P61129 equivalent -hsa:376940 up:Q6ZN12 equivalent -hsa:377 up:P61204 equivalent -hsa:3770 up:Q9UNX9 equivalent -hsa:377007 up:Q0D2K2 equivalent -hsa:3772 up:Q99712 equivalent -hsa:3773 up:Q9NPI9 equivalent -hsa:3775 up:O00180 equivalent -hsa:3776 up:O95069 equivalent -hsa:3776 up:Q6ZW95 equivalent -hsa:377630 up:Q6R6M4 equivalent -hsa:377677 up:Q8N1Q1 equivalent -hsa:3777 up:O14649 equivalent -hsa:3778 up:Q12791 equivalent -hsa:377841 up:Q5MY95 equivalent -hsa:3779 up:Q16558 equivalent -hsa:378 up:P18085 equivalent -hsa:3780 up:Q92952 equivalent -hsa:3781 up:Q9H2S1 equivalent -hsa:378108 up:Q86UV6 equivalent -hsa:3782 up:Q9UGI6 equivalent -hsa:3783 up:O15554 equivalent -hsa:3784 up:P51787 equivalent -hsa:3784 up:Q96AI9 equivalent -hsa:3785 up:O43526 equivalent -hsa:3786 up:O43525 equivalent -hsa:3787 up:A2RUL8 equivalent -hsa:3787 up:Q96KK3 equivalent -hsa:378708 up:Q8N2Z9 equivalent -hsa:3788 up:Q9ULS6 equivalent -hsa:378807 up:Q7RTX7 equivalent -hsa:378884 up:Q6VVB1 equivalent -hsa:378925 up:Q8N7C7 equivalent -hsa:378948 up:A6NDE4 equivalent -hsa:378949 up:P0C7P1 equivalent -hsa:378950 up:A6NEQ0 equivalent -hsa:378951 up:Q15415 equivalent -hsa:379 up:P49703 equivalent -hsa:3790 up:Q9BQ31 equivalent -hsa:3791 up:P35968 equivalent -hsa:3792 up:A0A077QP03 equivalent -hsa:3792 up:P23276 equivalent -hsa:3795 up:A0A140VJM6 equivalent -hsa:3795 up:P50053 equivalent -hsa:3796 up:O00139 equivalent -hsa:3797 up:A2RU78 equivalent -hsa:3797 up:O14782 equivalent -hsa:3798 up:Q12840 equivalent -hsa:3799 up:P33176 equivalent -hsa:3799 up:Q6P164 equivalent -hsa:3799 up:V9HW29 equivalent -hsa:38 up:A0A140VJX1 equivalent -hsa:38 up:P24752 equivalent -hsa:3800 up:O60282 equivalent -hsa:3800 up:Q59GB8 equivalent -hsa:3801 up:Q9BVG8 equivalent -hsa:3802 up:P43626 equivalent -hsa:3802 up:Q6H2H2 equivalent -hsa:3803 up:P43627 equivalent -hsa:3803 up:Q6H2H0 equivalent -hsa:3803 up:Q8N742 equivalent -hsa:3804 up:E3NZD8 equivalent -hsa:3804 up:P43628 equivalent -hsa:3805 up:Q99706 equivalent -hsa:3806 up:A0A7D4Y6C7 equivalent -hsa:3806 up:Q14954 equivalent -hsa:3808 up:K7QT50 equivalent -hsa:3808 up:Q14952 equivalent -hsa:3809 up:A0A0C4ZN05 equivalent -hsa:3809 up:P43632 equivalent -hsa:381 up:A4D0Z3 equivalent -hsa:381 up:P84085 equivalent -hsa:3810 up:A0A7D4Y677 equivalent -hsa:3810 up:Q14953 equivalent -hsa:3811 up:P43629 equivalent -hsa:3811 up:Q6H2G3 equivalent -hsa:3811 up:Q8N6C9 equivalent -hsa:3812 up:A0A0U1WNF3 equivalent -hsa:3812 up:P43630 equivalent -hsa:3812 up:Q8NHK6 equivalent -hsa:3813 up:O43469 equivalent -hsa:3813 up:Q14943 equivalent -hsa:3814 up:Q15726 equivalent -hsa:3815 up:P10721 equivalent -hsa:3816 up:A0A1R3UCD2 equivalent -hsa:3816 up:P06870 equivalent -hsa:3817 up:A0A024R4J4 equivalent -hsa:3817 up:B4DU77 equivalent -hsa:3817 up:P20151 equivalent -hsa:3818 up:A8K9A9 equivalent -hsa:3818 up:P03952 equivalent -hsa:382 up:P62330 equivalent -hsa:3820 up:Q12918 equivalent -hsa:3821 up:P26715 equivalent -hsa:3822 up:P26717 equivalent -hsa:3823 up:Q07444 equivalent -hsa:3824 up:Q13241 equivalent -hsa:3824 up:Q53ZY6 equivalent -hsa:3827 up:P01042 equivalent -hsa:383 up:P05089 equivalent -hsa:3831 up:Q07866 equivalent -hsa:3832 up:P52732 equivalent -hsa:3833 up:A0A024RCS7 equivalent -hsa:3833 up:Q9BW19 equivalent -hsa:3834 up:Q9UIL4 equivalent -hsa:3835 up:Q14807 equivalent -hsa:3836 up:P52294 equivalent -hsa:3837 up:Q14974 equivalent -hsa:3838 up:P52292 equivalent -hsa:3839 up:O00505 equivalent -hsa:384 up:P78540 equivalent -hsa:3840 up:O00629 equivalent -hsa:3841 up:O15131 equivalent -hsa:3842 up:Q92973 equivalent -hsa:3843 up:B3KWG6 equivalent -hsa:3843 up:O00410 equivalent -hsa:3843 up:Q9BVS9 equivalent -hsa:3845 up:I1SRC5 equivalent -hsa:3845 up:L7RSL8 equivalent -hsa:3845 up:P01116 equivalent -hsa:3846 up:P26371 equivalent -hsa:3848 up:P04264 equivalent -hsa:3849 up:P35908 equivalent -hsa:3850 up:P12035 equivalent -hsa:3851 up:P19013 equivalent -hsa:3852 up:P13647 equivalent -hsa:3853 up:A0A0S2Z428 equivalent -hsa:3853 up:P02538 equivalent -hsa:3854 up:P04259 equivalent -hsa:3855 up:P08729 equivalent -hsa:3856 up:P05787 equivalent -hsa:3857 up:P35527 equivalent -hsa:3858 up:P13645 equivalent -hsa:3859 up:Q99456 equivalent -hsa:3860 up:A1A4E9 equivalent -hsa:3860 up:P13646 equivalent -hsa:3861 up:P02533 equivalent -hsa:3866 up:B3KVF5 equivalent -hsa:3866 up:P19012 equivalent -hsa:386617 up:Q6ZWB6 equivalent -hsa:386618 up:Q8WVF5 equivalent -hsa:386653 up:Q6EBC2 equivalent -hsa:386672 up:P60372 equivalent -hsa:386674 up:P60371 equivalent -hsa:386675 up:P60409 equivalent -hsa:386676 up:P60411 equivalent -hsa:386677 up:P60331 equivalent -hsa:386678 up:P60411 equivalent -hsa:386678 up:P60412 equivalent -hsa:386679 up:P60368 equivalent -hsa:386680 up:P60370 equivalent -hsa:386681 up:P60410 equivalent -hsa:386682 up:P60369 equivalent -hsa:386683 up:P60328 equivalent -hsa:386684 up:P60329 equivalent -hsa:386685 up:P60413 equivalent -hsa:386724 up:Q86WK7 equivalent -hsa:386746 up:Q86SM5 equivalent -hsa:3868 up:P08779 equivalent -hsa:387 up:A0A024R324 equivalent -hsa:387 up:P61586 equivalent -hsa:387032 up:A0A0S2Z658 equivalent -hsa:387032 up:Q969J2 equivalent -hsa:387082 up:Q6EEV6 equivalent -hsa:387103 up:Q5EE01 equivalent -hsa:387119 up:Q3ZCQ5 equivalent -hsa:387119 up:Q5SZL2 equivalent -hsa:387129 up:A0A090N8Z1 equivalent -hsa:387129 up:Q6W5P4 equivalent -hsa:3872 up:Q04695 equivalent -hsa:3872 up:Q14666 equivalent -hsa:387263 up:Q7Z4R8 equivalent -hsa:387264 up:Q6L8H4 equivalent -hsa:387266 up:Q6L8H2 equivalent -hsa:387267 up:Q6L8H1 equivalent -hsa:387273 up:Q6L8G5 equivalent -hsa:387332 up:Q6SJ96 equivalent -hsa:387338 up:Q96CB9 equivalent -hsa:387357 up:Q8N1K5 equivalent -hsa:387496 up:Q6T310 equivalent -hsa:3875 up:P05783 equivalent -hsa:387509 up:A0A0I9QQ03 equivalent -hsa:387509 up:Q6NV75 equivalent -hsa:387521 up:A5PLL7 equivalent -hsa:387522 up:A5PLL7 equivalent -hsa:387522 up:Q13404 equivalent -hsa:387597 up:Q71H61 equivalent -hsa:387601 up:Q6T423 equivalent -hsa:387640 up:Q1XH10 equivalent -hsa:387680 up:Q641Q2 equivalent -hsa:387680 up:Q6P0Q7 equivalent -hsa:387694 up:Q5SQS7 equivalent -hsa:387695 up:Q6UWK7 equivalent -hsa:387700 up:Q6ZSM3 equivalent -hsa:387707 up:Q6DHV5 equivalent -hsa:387712 up:A6NNW6 equivalent -hsa:387715 up:P0C7Q2 equivalent -hsa:387718 up:Q5VZQ5 equivalent -hsa:387733 up:A6NNB3 equivalent -hsa:387748 up:Q8NGI3 equivalent -hsa:387755 up:Q1MX18 equivalent -hsa:387758 up:Q8TAL6 equivalent -hsa:387763 up:A0A087WW59 equivalent -hsa:387763 up:Q7Z7L8 equivalent -hsa:387775 up:Q63ZE4 equivalent -hsa:387778 up:Q5MJ68 equivalent -hsa:387787 up:A6NK58 equivalent -hsa:387804 up:A8MXK1 equivalent -hsa:387836 up:Q6UVW9 equivalent -hsa:387837 up:A0A140VK10 equivalent -hsa:387837 up:Q2HXU8 equivalent -hsa:387849 up:Q6BDI9 equivalent -hsa:387856 up:Q52MB2 equivalent -hsa:387882 up:Q8TAD7 equivalent -hsa:387885 up:A6NFT4 equivalent -hsa:387890 up:B4DJY2 equivalent -hsa:387893 up:Q9NQR1 equivalent -hsa:387911 up:B2RNN3 equivalent -hsa:387914 up:Q6UWI4 equivalent -hsa:387921 up:Q5JS37 equivalent -hsa:387921 up:Q68DP7 equivalent -hsa:387923 up:Q8N6R1 equivalent -hsa:387990 up:Q6UXN7 equivalent -hsa:388 up:P62745 equivalent -hsa:3880 up:P08727 equivalent -hsa:388015 up:A6NKG5 equivalent -hsa:388015 up:B9EK54 equivalent -hsa:388021 up:Q6ZVK1 equivalent -hsa:3881 up:Q15323 equivalent -hsa:388115 up:Q6ZUT6 equivalent -hsa:388121 up:Q5GJ75 equivalent -hsa:388125 up:A6NLJ0 equivalent -hsa:388135 up:Q2T9L4 equivalent -hsa:3882 up:Q14532 equivalent -hsa:388228 up:Q52WX2 equivalent -hsa:388272 up:Q6PH81 equivalent -hsa:388284 up:Q6ZW13 equivalent -hsa:3883 up:O76009 equivalent -hsa:388324 up:Q0VD86 equivalent -hsa:388325 up:Q6UWF3 equivalent -hsa:388327 up:A8MU93 equivalent -hsa:388333 up:A6NLX3 equivalent -hsa:388335 up:Q6QAJ8 equivalent -hsa:388336 up:Q6ZSJ9 equivalent -hsa:388341 up:B7ZMA3 equivalent -hsa:388341 up:Q8NAA5 equivalent -hsa:388364 up:Q6UXZ0 equivalent -hsa:388372 up:B7ZW36 equivalent -hsa:388372 up:P13236 equivalent -hsa:388372 up:Q8NHW4 equivalent -hsa:388381 up:A8MV24 equivalent -hsa:388389 up:Q8IW40 equivalent -hsa:388394 up:Q8N4K4 equivalent -hsa:3884 up:Q14525 equivalent -hsa:388403 up:Q96QA6 equivalent -hsa:388419 up:A6NE02 equivalent -hsa:388468 up:B2RU33 equivalent -hsa:388512 up:Q6ZS10 equivalent -hsa:388523 up:P0DKX0 equivalent -hsa:388531 up:Q6ZS82 equivalent -hsa:388533 up:P60985 equivalent -hsa:388536 up:B4DMI3 equivalent -hsa:388536 up:Q6PG37 equivalent -hsa:388551 up:Q2WEN9 equivalent -hsa:388552 up:Q6QNY0 equivalent -hsa:388553 up:C9JSJ3 equivalent -hsa:388555 up:Q6UXB1 equivalent -hsa:388558 up:Q8N4W9 equivalent -hsa:388559 up:P0CJ79 equivalent -hsa:388561 up:Q86XN6 equivalent -hsa:388564 up:C9JI98 equivalent -hsa:388566 up:Q6ECI4 equivalent -hsa:388567 up:O43361 equivalent -hsa:388569 up:Q6AW86 equivalent -hsa:388581 up:Q5T7M4 equivalent -hsa:388585 up:Q5TA89 equivalent -hsa:388588 up:B2RUZ4 equivalent -hsa:388588 up:M4WDD3 equivalent -hsa:388591 up:Q6ZRF8 equivalent -hsa:388595 up:A0PJX8 equivalent -hsa:3886 up:Q92764 equivalent -hsa:388610 up:A0A8E5N8C3 equivalent -hsa:388610 up:Q6NT89 equivalent -hsa:388611 up:Q6UWJ8 equivalent -hsa:388630 up:A6NFA1 equivalent -hsa:388633 up:Q5T700 equivalent -hsa:388646 up:Q8N8V2 equivalent -hsa:388649 up:Q5VVC0 equivalent -hsa:388650 up:Q5T7M9 equivalent -hsa:388662 up:Q9H1V8 equivalent -hsa:388677 up:Q7Z3S9 equivalent -hsa:388695 up:Q96S90 equivalent -hsa:388697 up:Q86YZ3 equivalent -hsa:388698 up:Q5D862 equivalent -hsa:3887 up:Q14533 equivalent -hsa:388701 up:Q5VU69 equivalent -hsa:388722 up:Q5VUE5 equivalent -hsa:388730 up:Q6P7N7 equivalent -hsa:388743 up:A6NHC0 equivalent -hsa:388753 up:Q5JTJ3 equivalent -hsa:388799 up:Q5JX69 equivalent -hsa:3888 up:Q9NSB4 equivalent -hsa:388818 up:Q6PEX3 equivalent -hsa:388886 up:Q2VPJ9 equivalent -hsa:3889 up:P78385 equivalent -hsa:388931 up:A6NFX1 equivalent -hsa:388939 up:A6NGG8 equivalent -hsa:388951 up:A0A140VJY4 equivalent -hsa:388951 up:Q8N831 equivalent -hsa:388960 up:A6NCI8 equivalent -hsa:388962 up:Q53S33 equivalent -hsa:388963 up:G3XAA6 equivalent -hsa:388969 up:L7T9J5 equivalent -hsa:388969 up:Q2NKX9 equivalent -hsa:389 up:A0A024R0C8 equivalent -hsa:389 up:P08134 equivalent -hsa:3890 up:Q9NSB2 equivalent -hsa:389015 up:Q6AI14 equivalent -hsa:389058 up:Q6BEB4 equivalent -hsa:389072 up:Q6ZWE6 equivalent -hsa:389073 up:Q0P641 equivalent -hsa:389075 up:Q5W5W9 equivalent -hsa:389084 up:A0A6M4NK13 equivalent -hsa:389084 up:Q6UX34 equivalent -hsa:389090 up:Q6IFH4 equivalent -hsa:3891 up:P78386 equivalent -hsa:389114 up:Q6ZS27 equivalent -hsa:389118 up:A6H8M9 equivalent -hsa:389119 up:Q96EL1 equivalent -hsa:389123 up:Q8IXL9 equivalent -hsa:389124 up:A8MTL0 equivalent -hsa:389125 up:Q8IVN3 equivalent -hsa:389136 up:A8MV65 equivalent -hsa:389151 up:Q6ZRT6 equivalent -hsa:389152 up:Q6ZRP0 equivalent -hsa:389158 up:A0PG75 equivalent -hsa:389161 up:A6NFN9 equivalent -hsa:389170 up:Q6ZMV7 equivalent -hsa:389177 up:A6NML5 equivalent -hsa:3892 up:A8K872 equivalent -hsa:3892 up:O43790 equivalent -hsa:389203 up:Q8N5G0 equivalent -hsa:389206 up:Q6ZU67 equivalent -hsa:389207 up:A8MXD5 equivalent -hsa:389208 up:Q6ZWK6 equivalent -hsa:389257 up:A6NHZ5 equivalent -hsa:389289 up:Q3ZCQ2 equivalent -hsa:389320 up:Q6ZNM6 equivalent -hsa:389333 up:E7EW31 equivalent -hsa:389336 up:Q6UWT4 equivalent -hsa:389337 up:A1IGU5 equivalent -hsa:389362 up:Q5JS54 equivalent -hsa:389376 up:A0A1U9X8K0 equivalent -hsa:389376 up:Q6UW10 equivalent -hsa:389383 up:Q6UWE3 equivalent -hsa:389384 up:P0C671 equivalent -hsa:389396 up:Q5SZD4 equivalent -hsa:389400 up:Q6UXV0 equivalent -hsa:389421 up:Q6ZN17 equivalent -hsa:389432 up:Q5TGI4 equivalent -hsa:389434 up:Q6PHW0 equivalent -hsa:389493 up:A6NF83 equivalent -hsa:3895 up:Q86UP2 equivalent -hsa:389524 up:Q6EKJ0 equivalent -hsa:389541 up:Q0VGL1 equivalent -hsa:389549 up:A0PJY2 equivalent -hsa:389558 up:Q6UWF9 equivalent -hsa:389610 up:Q6UX68 equivalent -hsa:389643 up:Q68CJ6 equivalent -hsa:389658 up:Q6UXT8 equivalent -hsa:389668 up:Q5GH70 equivalent -hsa:389677 up:Q8IXT5 equivalent -hsa:389690 up:Q6ZMW9 equivalent -hsa:389690 up:Q6ZUA9 equivalent -hsa:389692 up:Q8NHW3 equivalent -hsa:3897 up:P32004 equivalent -hsa:389730 up:Q5VVP1 equivalent -hsa:389761 up:Q6ZUB0 equivalent -hsa:389762 up:P0C874 equivalent -hsa:389763 up:Q6ZQQ2 equivalent -hsa:389766 up:Q5TBE3 equivalent -hsa:389792 up:Q5T953 equivalent -hsa:389799 up:Q6ZQR2 equivalent -hsa:3898 up:O00515 equivalent -hsa:389812 up:Q6UWW0 equivalent -hsa:389813 up:C9J069 equivalent -hsa:389816 up:Q2I0M4 equivalent -hsa:389827 up:A6NI61 equivalent -hsa:389840 up:Q6ZN16 equivalent -hsa:389852 up:A0A140VJN7 equivalent -hsa:389852 up:Q96QH8 equivalent -hsa:389856 up:A6NNY8 equivalent -hsa:389860 up:Q5JRK9 equivalent -hsa:389874 up:Q8WW36 equivalent -hsa:389895 up:A0A7P0TBJ1 equivalent -hsa:389898 up:Q5JXB2 equivalent -hsa:3899 up:P51826 equivalent -hsa:3899 up:Q8NAP7 reverse -hsa:389903 up:Q9Y5P2 equivalent -hsa:389941 up:A0A3B0J0F3 equivalent -hsa:389941 up:Q5VWW1 equivalent -hsa:39 up:Q9BWD1 equivalent -hsa:390 up:B2R838 equivalent -hsa:390 up:P61587 equivalent -hsa:390010 up:Q9UD57 equivalent -hsa:390036 up:A0A126GVF2 equivalent -hsa:390036 up:Q8NGK4 equivalent -hsa:390037 up:Q8NGK6 equivalent -hsa:390038 up:A0A126GVM2 equivalent -hsa:390038 up:Q8NGF3 equivalent -hsa:390054 up:A0A126GWD2 equivalent -hsa:390054 up:Q9H2C5 equivalent -hsa:390058 up:Q9H340 equivalent -hsa:390059 up:B2RNI9 equivalent -hsa:390059 up:Q9H341 equivalent -hsa:390061 up:Q8NH59 equivalent -hsa:390063 up:A0A126GWE7 equivalent -hsa:390063 up:Q9H343 equivalent -hsa:390064 up:A0A126GVE9 equivalent -hsa:390064 up:Q9H344 equivalent -hsa:390066 up:A0A126GVG9 equivalent -hsa:390066 up:Q9H346 equivalent -hsa:390067 up:A0A126GWQ6 equivalent -hsa:390067 up:Q8NGJ2 equivalent -hsa:390072 up:Q8NGI2 equivalent -hsa:390075 up:A0A126GVK9 equivalent -hsa:390075 up:Q8NH56 equivalent -hsa:390077 up:Q8NGI0 equivalent -hsa:390078 up:A0A126GVK5 equivalent -hsa:390078 up:Q96RD3 equivalent -hsa:390079 up:A0A126GVH0 equivalent -hsa:390079 up:Q6IFG1 equivalent -hsa:390081 up:Q8NGH9 equivalent -hsa:390083 up:A0A126GWL6 equivalent -hsa:390083 up:Q8NH54 equivalent -hsa:390084 up:A0A126GWP3 equivalent -hsa:390084 up:P0C7T3 equivalent -hsa:390093 up:A0A126GVN8 equivalent -hsa:390093 up:Q8NH74 equivalent -hsa:390110 up:Q3C1W0 equivalent -hsa:390110 up:Q4AC99 equivalent -hsa:390113 up:Q8NH49 equivalent -hsa:390142 up:Q8NGL4 equivalent -hsa:390144 up:Q8NGK9 equivalent -hsa:390148 up:Q8NH69 equivalent -hsa:390151 up:Q8N162 equivalent -hsa:390152 up:Q8N146 equivalent -hsa:390154 up:Q8NGG3 equivalent -hsa:390155 up:A0A126GVL6 equivalent -hsa:390155 up:Q8NG75 equivalent -hsa:390157 up:A0A126GVZ6 equivalent -hsa:390157 up:Q8NGG5 equivalent -hsa:390162 up:A0A126GVK6 equivalent -hsa:390162 up:Q8NGP3 equivalent -hsa:390167 up:Q6IEU7 equivalent -hsa:390168 up:Q8NGP8 equivalent -hsa:390174 up:Q8NH87 equivalent -hsa:390181 up:A0A126GW20 equivalent -hsa:390181 up:Q8NH90 equivalent -hsa:390190 up:Q96R09 equivalent -hsa:390191 up:Q96R08 equivalent -hsa:390195 up:A0A126GVP9 equivalent -hsa:390195 up:Q8NGI8 equivalent -hsa:390197 up:A0A126GVJ1 equivalent -hsa:390197 up:Q8NGI6 equivalent -hsa:390199 up:A0A126GVP8 equivalent -hsa:390199 up:Q8NGE8 equivalent -hsa:3902 up:P18627 equivalent -hsa:390201 up:Q8NGI7 equivalent -hsa:390205 up:A6NIK2 equivalent -hsa:390212 up:A0A0I9RJ67 equivalent -hsa:390212 up:Q8TDT2 equivalent -hsa:390231 up:I1YAP6 equivalent -hsa:390231 up:I1YAP7 equivalent -hsa:390243 up:A6ND01 equivalent -hsa:390245 up:B2RXH2 equivalent -hsa:390259 up:Q3C1V8 equivalent -hsa:390260 up:A0A126GVM0 equivalent -hsa:390260 up:Q8NH79 equivalent -hsa:390261 up:A0A126GVK2 equivalent -hsa:390261 up:Q8NGM8 equivalent -hsa:390264 up:A0A126GWS5 equivalent -hsa:390264 up:Q8NGN3 equivalent -hsa:390265 up:A0A126GWF3 equivalent -hsa:390265 up:Q8NGN6 equivalent -hsa:390271 up:Q8NGG8 equivalent -hsa:390275 up:Q8NGG7 equivalent -hsa:3903 up:Q6GTX8 equivalent -hsa:390321 up:Q96RD1 equivalent -hsa:390323 up:A0A126GW92 equivalent -hsa:390323 up:A6NL08 equivalent -hsa:390326 up:A0A126GW16 equivalent -hsa:390326 up:A6NM76 equivalent -hsa:390327 up:A6NIJ9 equivalent -hsa:3904 up:Q6ISS4 equivalent -hsa:390429 up:A0A126GVT2 equivalent -hsa:390429 up:Q8NGD1 equivalent -hsa:390431 up:A0A126GVP5 equivalent -hsa:390431 up:Q8NGD2 equivalent -hsa:390433 up:A0A126GVS2 equivalent -hsa:390433 up:Q8NH42 equivalent -hsa:390436 up:A0A126GVZ4 equivalent -hsa:390437 up:A0A126GVN4 equivalent -hsa:390437 up:Q8IXE1 equivalent -hsa:390439 up:A0A126GWS8 equivalent -hsa:390439 up:Q8NGC1 equivalent -hsa:390441 up:Q8NGC8 equivalent -hsa:390442 up:A0A126GW19 equivalent -hsa:390442 up:Q8NGC9 equivalent -hsa:390443 up:P60153 equivalent -hsa:390443 up:W0UV99 equivalent -hsa:390445 up:A0A126GVW7 equivalent -hsa:390445 up:Q8NGC0 equivalent -hsa:390502 up:P20848 equivalent -hsa:390538 up:Q8NGB6 equivalent -hsa:390594 up:C9JR72 equivalent -hsa:390595 up:F5GYI3 equivalent -hsa:3906 up:A0A080YV01 equivalent -hsa:3906 up:P00709 equivalent -hsa:390616 up:P0C6C1 equivalent -hsa:390637 up:Q6ZNW5 equivalent -hsa:390648 up:A0A126GV96 equivalent -hsa:390648 up:Q8NGB9 equivalent -hsa:390649 up:A0A126GW41 equivalent -hsa:390649 up:Q8NGB8 equivalent -hsa:390664 up:A0A3B0IWW5 equivalent -hsa:390664 up:P60827 equivalent -hsa:390667 up:Q96A99 equivalent -hsa:390748 up:A6NDY0 equivalent -hsa:390748 up:B6RF28 equivalent -hsa:390790 up:A6NH57 equivalent -hsa:390792 up:Q6A163 equivalent -hsa:3908 up:P24043 equivalent -hsa:3908 up:Q59H37 equivalent -hsa:390874 up:O60422 equivalent -hsa:390882 up:A0A126GW43 equivalent -hsa:390882 up:Q8NG99 equivalent -hsa:390883 up:A0A126GVR4 equivalent -hsa:390883 up:Q8NG95 equivalent -hsa:390892 up:A0A126GVC8 equivalent -hsa:390892 up:O76100 equivalent -hsa:3909 up:Q16787 equivalent -hsa:390916 up:A8MXV4 equivalent -hsa:390927 up:Q6ZN11 equivalent -hsa:390928 up:Q6ZNF0 equivalent -hsa:390940 up:A6NC86 equivalent -hsa:390980 up:Q5CZA5 equivalent -hsa:390992 up:Q5TGS1 equivalent -hsa:390999 up:O95522 equivalent -hsa:391 up:P84095 equivalent -hsa:391 up:Q6ICQ8 equivalent -hsa:3910 up:A0A0A0MQS9 equivalent -hsa:3910 up:Q16363 equivalent -hsa:391002 up:Q5VWM4 equivalent -hsa:391003 up:Q5VWM3 equivalent -hsa:391004 up:Q5VTA0 equivalent -hsa:391059 up:Q6ZNA5 equivalent -hsa:3911 up:O15230 equivalent -hsa:391104 up:Q6RSH7 equivalent -hsa:391107 up:A0A126GV65 equivalent -hsa:391107 up:Q6IF99 equivalent -hsa:391109 up:A0A126GV64 equivalent -hsa:391109 up:Q8NGX5 equivalent -hsa:391112 up:Q8NGX8 equivalent -hsa:391114 up:A0A0C4DFU5 equivalent -hsa:391114 up:Q8NGY3 equivalent -hsa:391123 up:P0DPA2 equivalent -hsa:391189 up:Q8NGX0 equivalent -hsa:391190 up:Q8NGY9 equivalent -hsa:391191 up:Q8NG84 equivalent -hsa:391192 up:Q8NG85 equivalent -hsa:391194 up:A0A126GWI7 equivalent -hsa:391194 up:Q96R28 equivalent -hsa:391195 up:Q8NG76 equivalent -hsa:391196 up:A0A126GVZ1 equivalent -hsa:391196 up:Q8NG81 equivalent -hsa:3912 up:P07942 equivalent -hsa:3912 up:Q8TAS6 equivalent -hsa:391211 up:A0A126GW53 equivalent -hsa:391211 up:Q5TZ20 equivalent -hsa:391253 up:A0A384P5R1 equivalent -hsa:391253 up:Q6UDR6 equivalent -hsa:3913 up:P55268 equivalent -hsa:391356 up:Q6GMV3 equivalent -hsa:391365 up:A0A0C4DG03 equivalent -hsa:391365 up:Q6IMI4 equivalent -hsa:3914 up:A0A0S2Z3R6 equivalent -hsa:3914 up:Q13751 equivalent -hsa:391475 up:A2CJ06 equivalent -hsa:3915 up:P11047 equivalent -hsa:3915 up:Q6NVY8 equivalent -hsa:3916 up:P11279 equivalent -hsa:391712 up:Q5EBN2 equivalent -hsa:391723 up:A6NFD8 equivalent -hsa:3918 up:Q13753 equivalent -hsa:392 up:Q07960 equivalent -hsa:3920 up:P13473 equivalent -hsa:3921 up:P08865 equivalent -hsa:392138 up:A0A126GVV5 equivalent -hsa:392138 up:A4D2G3 equivalent -hsa:392188 up:P0C7I0 equivalent -hsa:392197 up:P0C7H9 equivalent -hsa:392255 up:A0A0S2A5D6 equivalent -hsa:392255 up:Q6KF10 equivalent -hsa:392307 up:A6H8Z2 equivalent -hsa:392309 up:Q8NGT2 equivalent -hsa:392376 up:A0A126GWR7 equivalent -hsa:392376 up:Q8NGS9 equivalent -hsa:392390 up:A0A0C4DFP2 equivalent -hsa:392390 up:Q8NGR2 equivalent -hsa:392391 up:A0A126GW42 equivalent -hsa:392391 up:Q8NGR4 equivalent -hsa:392392 up:A0A126GVB9 equivalent -hsa:392392 up:Q8NGR3 equivalent -hsa:392465 up:A6NK44 equivalent -hsa:3925 up:P16949 equivalent -hsa:392509 up:Q5H913 equivalent -hsa:392517 up:A6PVI3 equivalent -hsa:392617 up:P0C7U0 equivalent -hsa:392636 up:Q6ZNB7 equivalent -hsa:392636 up:X5D773 equivalent -hsa:3927 up:Q14847 equivalent -hsa:392843 up:A6NCM1 equivalent -hsa:392843 up:E0ZS59 equivalent -hsa:392862 up:A4D2P6 equivalent -hsa:3929 up:P18428 equivalent -hsa:3929 up:Q8TCF0 equivalent -hsa:393 up:P98171 equivalent -hsa:3930 up:Q14739 equivalent -hsa:393046 up:A0A126GW49 equivalent -hsa:393046 up:Q96R48 equivalent -hsa:3931 up:A0A140VK24 equivalent -hsa:3931 up:P04180 equivalent -hsa:3932 up:A0A0S2Z3Y8 equivalent -hsa:3932 up:P06239 equivalent -hsa:3933 up:P31025 equivalent -hsa:3934 up:P80188 equivalent -hsa:3936 up:P13796 equivalent -hsa:3937 up:Q13094 equivalent -hsa:3938 up:P09848 equivalent -hsa:3939 up:P00338 equivalent -hsa:3939 up:V9HWB9 equivalent -hsa:394 up:Q13017 equivalent -hsa:394263 up:Q5SSG8 equivalent -hsa:3945 up:P07195 equivalent -hsa:3945 up:Q5U077 equivalent -hsa:3948 up:A0A140VKA7 equivalent -hsa:3948 up:P07864 equivalent -hsa:3949 up:P01130 equivalent -hsa:395 up:O43182 equivalent -hsa:3950 up:O14960 equivalent -hsa:3952 up:A4D0Y8 equivalent -hsa:3952 up:P41159 equivalent -hsa:3953 up:P48357 equivalent -hsa:3954 up:O95202 equivalent -hsa:3955 up:Q8NES3 equivalent -hsa:3956 up:A0A384MR27 equivalent -hsa:3956 up:P09382 equivalent -hsa:3957 up:P05162 equivalent -hsa:3958 up:A0A024R693 equivalent -hsa:3958 up:P17931 equivalent -hsa:3959 up:A0A0S2Z3Y1 equivalent -hsa:3959 up:Q08380 equivalent -hsa:396 up:P52565 equivalent -hsa:396 up:V9HWE8 equivalent -hsa:3960 up:P56470 equivalent -hsa:3960 up:Q6FHZ4 equivalent -hsa:3963 up:P47929 equivalent -hsa:3964 up:O00214 equivalent -hsa:3965 up:O00182 equivalent -hsa:397 up:P52566 equivalent -hsa:3972 up:A0A0F7RQE6 equivalent -hsa:3972 up:P01229 equivalent -hsa:3973 up:P22888 equivalent -hsa:3975 up:P48742 equivalent -hsa:3975 up:Q58F18 equivalent -hsa:3976 up:P15018 equivalent -hsa:3977 up:A8K1Z4 equivalent -hsa:3977 up:P42702 equivalent -hsa:3978 up:P18858 equivalent -hsa:398 up:F1T0H7 equivalent -hsa:398 up:Q99819 equivalent -hsa:3980 up:P49916 equivalent -hsa:3981 up:P49917 equivalent -hsa:3982 up:P55344 equivalent -hsa:3983 up:O14639 equivalent -hsa:3984 up:P53667 equivalent -hsa:3985 up:P53671 equivalent -hsa:3987 up:P48059 equivalent -hsa:3988 up:P38571 equivalent -hsa:399 up:Q15669 equivalent -hsa:399 up:Q6ICP4 equivalent -hsa:3990 up:A6H8L5 equivalent -hsa:3990 up:P11150 equivalent -hsa:3991 up:A8K8W7 equivalent -hsa:3991 up:Q05469 equivalent -hsa:3992 up:A0A0A0MR51 equivalent -hsa:3992 up:O60427 equivalent -hsa:3993 up:A0PJJ0 equivalent -hsa:3993 up:Q6P1M3 equivalent -hsa:399473 up:B9EKV1 equivalent -hsa:399473 up:Q2MJR0 equivalent -hsa:399474 up:Q69YZ2 equivalent -hsa:3995 up:Q9Y5Q0 equivalent -hsa:399512 up:Q3KQZ1 equivalent -hsa:3996 up:Q15334 equivalent -hsa:399664 up:Q86XN8 equivalent -hsa:399665 up:Q5T9C2 equivalent -hsa:399668 up:P0DMW4 equivalent -hsa:399668 up:P0DMW5 equivalent -hsa:399671 up:Q86WZ0 equivalent -hsa:399687 up:Q92614 equivalent -hsa:399693 up:A0A096LP49 equivalent -hsa:399694 up:Q6S5L8 equivalent -hsa:399697 up:P0C2S0 equivalent -hsa:3998 up:P49257 equivalent -hsa:399814 up:Q5SQS8 equivalent -hsa:399818 up:Q5JPI9 equivalent -hsa:399818 up:Q8TC28 equivalent -hsa:399823 up:Q6ZQN5 equivalent -hsa:399888 up:Q6P0A1 equivalent -hsa:399909 up:Q9H6A9 equivalent -hsa:399939 up:C9J1S8 equivalent -hsa:399947 up:A0A158RFU1 equivalent -hsa:399947 up:Q6NUJ2 equivalent -hsa:399949 up:Q6PI97 equivalent -hsa:399967 up:Q6UY27 equivalent -hsa:399968 up:P0C8F1 equivalent -hsa:399979 up:Q92543 equivalent -hsa:40 up:Q16515 equivalent -hsa:400 up:P40616 equivalent -hsa:4000 up:A0A384MQX1 equivalent -hsa:4000 up:P02545 equivalent -hsa:4001 up:P20700 equivalent -hsa:400120 up:A2A2V5 equivalent -hsa:400224 up:A6NEE1 equivalent -hsa:400258 up:Q8N912 equivalent -hsa:4004 up:P25800 equivalent -hsa:400451 up:Q3ZCQ3 equivalent -hsa:4005 up:P25791 equivalent -hsa:400506 up:Q1ED39 equivalent -hsa:400566 up:A0A0H4IV28 equivalent -hsa:400566 up:Q6ZQX7 equivalent -hsa:400569 up:Q9P086 equivalent -hsa:400581 up:Q8TC17 equivalent -hsa:400629 up:Q8NA77 equivalent -hsa:400668 up:Q6UWY2 equivalent -hsa:400673 up:Q2NL98 equivalent -hsa:4007 up:B7Z5U0 equivalent -hsa:4007 up:B7Z8D2 equivalent -hsa:4007 up:O43900 equivalent -hsa:400713 up:Q6PDB4 equivalent -hsa:400720 up:Q68DY9 equivalent -hsa:400735 up:O60810 equivalent -hsa:400736 up:Q5VWM6 equivalent -hsa:400745 up:Q6ZV89 equivalent -hsa:400746 up:Q5T1S8 equivalent -hsa:400757 up:Q5JVX7 equivalent -hsa:400793 up:A1L170 equivalent -hsa:4008 up:F8J2B5 equivalent -hsa:4008 up:F8WD26 equivalent -hsa:4008 up:Q8WWI1 equivalent -hsa:400818 up:B4DG53 equivalent -hsa:400818 up:P0DPF3 equivalent -hsa:400823 up:A6PVY3 equivalent -hsa:400830 up:Q7Z7B7 equivalent -hsa:400891 up:Q6ZQY2 equivalent -hsa:4009 up:Q8TE12 equivalent -hsa:400916 up:Q8WYQ3 equivalent -hsa:400935 up:Q6ZVW7 equivalent -hsa:400954 up:Q6ZMW3 equivalent -hsa:400961 up:Q9ULR5 equivalent -hsa:400966 up:P0DJD0 equivalent -hsa:401 up:O14813 equivalent -hsa:4010 up:O60663 equivalent -hsa:4010 up:Q6ISE0 equivalent -hsa:401024 up:Q5CZC0 equivalent -hsa:401027 up:Q6UXQ4 equivalent -hsa:401036 up:Q6ZVZ8 equivalent -hsa:401067 up:P0C7M6 equivalent -hsa:401089 up:Q6ZUU3 equivalent -hsa:401097 up:F5H4A9 equivalent -hsa:401124 up:Q6ZMT9 equivalent -hsa:401137 up:Q6MZM9 equivalent -hsa:401138 up:F1T0L8 equivalent -hsa:401138 up:Q6UX39 equivalent -hsa:401145 up:Q9C0I3 equivalent -hsa:401152 up:Q8WVX3 equivalent -hsa:401190 up:Q6MZT1 equivalent -hsa:4012 up:Q9UIQ6 equivalent -hsa:401207 up:A6NC05 equivalent -hsa:401236 up:H3BQB6 equivalent -hsa:401250 up:A0A1U9X802 equivalent -hsa:401250 up:P59942 equivalent -hsa:401251 up:A0A1U9X8I8 equivalent -hsa:401251 up:Q5SSQ6 equivalent -hsa:401258 up:Q7Z6P3 equivalent -hsa:401262 up:Q6Q6R5 equivalent -hsa:401265 up:Q9H511 equivalent -hsa:4013 up:O00534 equivalent -hsa:401387 up:A4D1F6 equivalent -hsa:401399 up:C9JH25 equivalent -hsa:4014 up:P23490 equivalent -hsa:401409 up:A4D1S5 equivalent -hsa:401427 up:A0A126GWD8 equivalent -hsa:401427 up:Q96R45 equivalent -hsa:401447 up:Q7RTZ2 equivalent -hsa:401466 up:Q8N0T1 equivalent -hsa:401474 up:Q8N8I0 equivalent -hsa:401494 up:Q5VWC8 equivalent -hsa:401498 up:Q68D42 equivalent -hsa:4015 up:D0PNI2 equivalent -hsa:4015 up:P28300 equivalent -hsa:401505 up:Q8N4H5 equivalent -hsa:401541 up:Q6IPU0 equivalent -hsa:401546 up:A8K2L3 equivalent -hsa:401546 up:Q5JTZ5 equivalent -hsa:401548 up:Q5VWJ9 equivalent -hsa:401551 up:B9EK65 equivalent -hsa:401551 up:Q5JTN6 equivalent -hsa:401562 up:Q6ZST4 equivalent -hsa:401565 up:Q6J272 equivalent -hsa:4016 up:Q08397 equivalent -hsa:401612 up:Q5H9E4 equivalent -hsa:401647 up:Q2TAP0 equivalent -hsa:401647 up:Q6ZUQ1 equivalent -hsa:401665 up:A0A0C4DFX5 equivalent -hsa:401665 up:Q8NGJ9 equivalent -hsa:401666 up:Q8NGJ6 equivalent -hsa:401667 up:A0A126GWD5 equivalent -hsa:401667 up:Q8NGJ7 equivalent -hsa:4017 up:Q9Y4K0 equivalent -hsa:401720 up:A6NMB9 equivalent -hsa:401720 up:Q6ZP58 equivalent -hsa:4018 up:P08519 equivalent -hsa:401934 up:E7ERA6 equivalent -hsa:401944 up:Q5SZI1 equivalent -hsa:401992 up:Q6IF00 equivalent -hsa:401993 up:Q6IEZ7 equivalent -hsa:401994 up:A6ND48 equivalent -hsa:402 up:P36404 equivalent -hsa:402 up:Q53YD8 equivalent -hsa:402055 up:Q9UH36 equivalent -hsa:402117 up:B2RUY7 equivalent -hsa:402135 up:A0A126GVB4 equivalent -hsa:402135 up:Q8NHB8 equivalent -hsa:4023 up:A0A1B1RVA9 equivalent -hsa:4023 up:P06858 equivalent -hsa:402317 up:Q8NGT9 equivalent -hsa:402381 up:Q5JUK2 equivalent -hsa:402415 up:Q6PP77 equivalent -hsa:4025 up:P22079 equivalent -hsa:402569 up:A9QM74 equivalent -hsa:402573 up:Q8IZ16 equivalent -hsa:4026 up:B7ZLW0 equivalent -hsa:4026 up:Q93052 equivalent -hsa:402665 up:A6NGN9 equivalent -hsa:402682 up:Q6NVU6 equivalent -hsa:402778 up:A6NMD0 equivalent -hsa:403 up:P36405 equivalent -hsa:403239 up:Q8NH04 equivalent -hsa:403244 up:Q8NGX2 equivalent -hsa:403253 up:Q6IF82 equivalent -hsa:403257 up:A6NMZ5 equivalent -hsa:403273 up:A6NHG9 equivalent -hsa:403274 up:A6NDH6 equivalent -hsa:403277 up:A6NET4 equivalent -hsa:403278 up:A6NMS3 equivalent -hsa:403282 up:A0A126GW71 equivalent -hsa:403282 up:A6NJZ3 equivalent -hsa:403284 up:A6NDL8 equivalent -hsa:4033 up:Q12912 equivalent -hsa:403313 up:Q8IY26 equivalent -hsa:403314 up:Q8WW27 equivalent -hsa:403341 up:Q8NCN2 equivalent -hsa:4034 up:O75427 equivalent -hsa:4035 up:Q07954 equivalent -hsa:4035 up:Q59FG2 equivalent -hsa:4036 up:P98164 equivalent -hsa:4036 up:Q7Z5C0 equivalent -hsa:4036 up:Q7Z5C1 equivalent -hsa:4037 up:O75074 equivalent -hsa:4038 up:O75096 equivalent -hsa:4040 up:O75581 equivalent -hsa:404037 up:Q86UW8 equivalent -hsa:404093 up:Q9NWM3 equivalent -hsa:4041 up:O75197 equivalent -hsa:404203 up:Q6UWN8 equivalent -hsa:404217 up:P60606 equivalent -hsa:404281 up:O15391 equivalent -hsa:4043 up:P30533 equivalent -hsa:4045 up:B7Z661 equivalent -hsa:4045 up:Q13449 equivalent -hsa:404550 up:A0A0M5MPK6 equivalent -hsa:404550 up:Q96GX8 equivalent -hsa:404552 up:Q6XE38 equivalent -hsa:4046 up:P33241 equivalent -hsa:404636 up:Q8TCE6 equivalent -hsa:404672 up:Q6ZYL4 equivalent -hsa:4047 up:B2R694 equivalent -hsa:4047 up:P48449 equivalent -hsa:404734 up:Q8IWZ3 equivalent -hsa:404785 up:Q6S5H5 equivalent -hsa:4048 up:A0A140VK27 equivalent -hsa:4048 up:P09960 equivalent -hsa:4049 up:P01374 equivalent -hsa:4049 up:Q5STV3 equivalent -hsa:405 up:P27540 equivalent -hsa:4050 up:Q06643 equivalent -hsa:4050 up:Q5STB2 equivalent -hsa:4051 up:Q08477 equivalent -hsa:4052 up:Q14766 equivalent -hsa:4053 up:Q14767 equivalent -hsa:4054 up:Q8WYU6 equivalent -hsa:4054 up:Q9NS15 equivalent -hsa:4055 up:P36941 equivalent -hsa:4056 up:Q16873 equivalent -hsa:4057 up:P02788 equivalent -hsa:4057 up:V9HWI4 equivalent -hsa:405753 up:Q1HG44 equivalent -hsa:405754 up:P60508 equivalent -hsa:4058 up:P29376 equivalent -hsa:4059 up:P50895 equivalent -hsa:406 up:B2RCL8 equivalent -hsa:406 up:O00327 equivalent -hsa:4060 up:A0A384N669 equivalent -hsa:4060 up:P51884 equivalent -hsa:4061 up:Q16553 equivalent -hsa:4062 up:O94772 equivalent -hsa:4063 up:Q9HBG7 equivalent -hsa:4064 up:Q99467 equivalent -hsa:4065 up:O60449 equivalent -hsa:4065 up:Q59H44 equivalent -hsa:4066 up:P12980 equivalent -hsa:4067 up:A8K379 equivalent -hsa:4067 up:P07948 equivalent -hsa:4067 up:Q6NUK7 equivalent -hsa:4068 up:O60880 equivalent -hsa:4069 up:B2R4C5 equivalent -hsa:4069 up:P61626 equivalent -hsa:407 up:P36575 equivalent -hsa:4070 up:P09758 equivalent -hsa:4071 up:P30408 equivalent -hsa:4072 up:P16422 equivalent -hsa:4074 up:P20645 equivalent -hsa:4076 up:Q14444 equivalent -hsa:4077 up:Q14596 equivalent -hsa:407738 up:Q7Z5A9 equivalent -hsa:407977 up:A0A0A6YY99 equivalent -hsa:407977 up:O43508 equivalent -hsa:408 up:B7Z1Q3 equivalent -hsa:408 up:P49407 equivalent -hsa:408050 up:P69849 equivalent -hsa:408050 up:Q1LZN2 equivalent -hsa:4081 up:B2R805 equivalent -hsa:4081 up:F1T0A2 equivalent -hsa:4081 up:Q13394 equivalent -hsa:408187 up:Q6IE38 equivalent -hsa:4082 up:P29966 equivalent -hsa:4082 up:Q6NVI1 equivalent -hsa:408263 up:Q8TBE3 equivalent -hsa:4084 up:Q05195 equivalent -hsa:4085 up:Q13257 equivalent -hsa:4086 up:Q15797 equivalent -hsa:4087 up:Q15796 equivalent -hsa:4087 up:Q53XR6 equivalent -hsa:4088 up:P84022 equivalent -hsa:4088 up:Q9P0T0 equivalent -hsa:4089 up:A0A024R274 equivalent -hsa:4089 up:Q13485 equivalent -hsa:409 up:P32121 equivalent -hsa:4090 up:Q68DB7 equivalent -hsa:4090 up:Q99717 equivalent -hsa:4091 up:O43541 equivalent -hsa:4092 up:O15105 equivalent -hsa:4093 up:O15198 equivalent -hsa:4094 up:O75444 equivalent -hsa:4097 up:O15525 equivalent -hsa:4099 up:P20916 equivalent -hsa:4099 up:Q53ES7 equivalent -hsa:41 up:A8K1U5 equivalent -hsa:41 up:P78348 equivalent -hsa:410 up:A0A0C4DFZ2 equivalent -hsa:410 up:B4DVI5 equivalent -hsa:410 up:P15289 equivalent -hsa:4100 up:P43355 equivalent -hsa:4101 up:P43356 equivalent -hsa:4101 up:Q6P448 equivalent -hsa:4102 up:P43357 equivalent -hsa:4103 up:P43358 equivalent -hsa:4105 up:P43360 equivalent -hsa:4107 up:B2R9W4 equivalent -hsa:4107 up:P43361 equivalent -hsa:4108 up:P43362 equivalent -hsa:4109 up:B2RAE8 equivalent -hsa:4109 up:P43363 equivalent -hsa:411 up:P15848 equivalent -hsa:4110 up:P43364 equivalent -hsa:4111 up:P43365 equivalent -hsa:4112 up:P43366 equivalent -hsa:4113 up:O15479 equivalent -hsa:4113 up:Q53G50 equivalent -hsa:4114 up:O15480 equivalent -hsa:4115 up:O15481 equivalent -hsa:4116 up:P61326 equivalent -hsa:4117 up:A0A140VK28 equivalent -hsa:4117 up:P20794 equivalent -hsa:4118 up:P21145 equivalent -hsa:412 up:P08842 equivalent -hsa:4121 up:P33908 equivalent -hsa:4122 up:P49641 equivalent -hsa:4123 up:A0A140VJN9 equivalent -hsa:4123 up:Q9NTJ4 equivalent -hsa:4124 up:Q16706 equivalent -hsa:4125 up:O00754 equivalent -hsa:4126 up:O00462 equivalent -hsa:4128 up:P21397 equivalent -hsa:4128 up:Q49A63 equivalent -hsa:4128 up:Q53YE7 equivalent -hsa:4129 up:P27338 equivalent -hsa:4130 up:P78559 equivalent -hsa:4130 up:Q504X9 equivalent -hsa:4131 up:P46821 equivalent -hsa:4131 up:Q6PJD3 equivalent -hsa:4131 up:Q86X89 equivalent -hsa:4133 up:P11137 equivalent -hsa:4133 up:Q6NYC5 equivalent -hsa:4134 up:P27816 equivalent -hsa:4135 up:Q96JE9 equivalent -hsa:4137 up:P10636 equivalent -hsa:4139 up:Q9P0L2 equivalent -hsa:414 up:A0A140VK06 equivalent -hsa:414 up:P51689 equivalent -hsa:4140 up:P27448 equivalent -hsa:4140 up:Q86U11 equivalent -hsa:414059 up:A6NDS4 equivalent -hsa:414060 up:Q6IPX1 equivalent -hsa:414060 up:Q8IZP1 equivalent -hsa:414062 up:P16619 equivalent -hsa:4141 up:P56192 equivalent -hsa:414149 up:Q8N6N7 equivalent -hsa:414152 up:Q8TEF2 equivalent -hsa:414157 up:Q5T681 equivalent -hsa:414189 up:Q5VW22 equivalent -hsa:4142 up:P04201 equivalent -hsa:4142 up:W8W3P4 equivalent -hsa:4143 up:Q00266 equivalent -hsa:414301 up:Q8WTU0 equivalent -hsa:414325 up:A0A894JZ42 equivalent -hsa:414325 up:P81534 equivalent -hsa:414328 up:Q5T6J7 equivalent -hsa:414332 up:Q6JVE6 equivalent -hsa:4144 up:A0A140VJP5 equivalent -hsa:4144 up:P31153 equivalent -hsa:4145 up:F1T0G6 equivalent -hsa:4145 up:P42679 equivalent -hsa:4146 up:P21941 equivalent -hsa:4147 up:A0A140VKH7 equivalent -hsa:4147 up:O00339 equivalent -hsa:4147 up:Q8N2G3 equivalent -hsa:4148 up:O15232 equivalent -hsa:414899 up:Q8IZY5 equivalent -hsa:4149 up:P61244 equivalent -hsa:4149 up:Q8TAX8 equivalent -hsa:414918 up:Q8NEG7 equivalent -hsa:414919 up:Q6P1X6 equivalent -hsa:415 up:P51690 equivalent -hsa:4150 up:P56270 equivalent -hsa:4151 up:A0A1K0FU49 equivalent -hsa:4151 up:P02144 equivalent -hsa:415116 up:Q86V86 equivalent -hsa:415117 up:Q8N4C7 equivalent -hsa:4152 up:A8K654 equivalent -hsa:4152 up:Q9UIS9 equivalent -hsa:4153 up:P11226 equivalent -hsa:4154 up:Q9NR56 equivalent -hsa:4155 up:P02686 equivalent -hsa:4157 up:Q01726 equivalent -hsa:4157 up:Q1JUL4 equivalent -hsa:4158 up:Q01718 equivalent -hsa:4159 up:P41968 equivalent -hsa:416 up:P54793 equivalent -hsa:4160 up:P32245 equivalent -hsa:4161 up:P33032 equivalent -hsa:4162 up:P43121 equivalent -hsa:4163 up:P23508 equivalent -hsa:4166 up:Q9GZX3 equivalent -hsa:4168 up:B2R9S6 equivalent -hsa:4168 up:P10911 equivalent -hsa:417 up:P52961 equivalent -hsa:4170 up:Q07820 equivalent -hsa:4171 up:P49736 equivalent -hsa:4172 up:A0A0S2Z4T1 equivalent -hsa:4172 up:P25205 equivalent -hsa:4173 up:B4DLA6 equivalent -hsa:4173 up:P33991 equivalent -hsa:4174 up:B1AHB0 equivalent -hsa:4174 up:P33992 equivalent -hsa:4175 up:Q14566 equivalent -hsa:4176 up:A0A0S2Z4A5 equivalent -hsa:4176 up:C6EMX8 equivalent -hsa:4176 up:P33993 equivalent -hsa:4179 up:P15529 equivalent -hsa:4184 up:P49901 equivalent -hsa:4184 up:Q5T7P5 equivalent -hsa:4185 up:O75078 equivalent -hsa:4188 up:Q99750 equivalent -hsa:4189 up:Q6FIF1 equivalent -hsa:4189 up:Q9UBS3 equivalent -hsa:419 up:Q13508 equivalent -hsa:4190 up:P40925 equivalent -hsa:4190 up:V9HWF2 equivalent -hsa:4191 up:A0A024R4K3 equivalent -hsa:4191 up:B3KTM1 equivalent -hsa:4191 up:P40926 equivalent -hsa:4192 up:P21741 equivalent -hsa:4193 up:Q00987 equivalent -hsa:4194 up:O15151 equivalent -hsa:4194 up:Q59FS6 equivalent -hsa:4199 up:P48163 equivalent -hsa:420 up:Q93070 equivalent -hsa:4200 up:P23368 equivalent -hsa:4201 up:Q16626 equivalent -hsa:4204 up:D3YJ43 equivalent -hsa:4204 up:P51608 equivalent -hsa:4204 up:Q59FJ6 equivalent -hsa:4205 up:A0A0S2Z4N0 equivalent -hsa:4205 up:Q02078 equivalent -hsa:4207 up:Q02080 equivalent -hsa:4208 up:Q06413 equivalent -hsa:4209 up:Q14814 equivalent -hsa:421 up:O00192 equivalent -hsa:4210 up:O15553 equivalent -hsa:4211 up:O00470 equivalent -hsa:4212 up:B3KPD8 equivalent -hsa:4212 up:O14770 equivalent -hsa:4214 up:Q13233 equivalent -hsa:4215 up:Q99759 equivalent -hsa:4216 up:Q9P1M2 equivalent -hsa:4216 up:Q9Y6R4 equivalent -hsa:4217 up:Q99683 equivalent -hsa:4218 up:P61006 equivalent -hsa:4221 up:O00255 equivalent -hsa:4222 up:P50221 equivalent -hsa:4223 up:P50222 equivalent -hsa:4224 up:Q16819 equivalent -hsa:4225 up:Q16820 equivalent -hsa:4232 up:Q5EB52 equivalent -hsa:4233 up:P08581 equivalent -hsa:4234 up:Q9UBP6 equivalent -hsa:4236 up:P55081 equivalent -hsa:4237 up:P55001 equivalent -hsa:4238 up:P55082 equivalent -hsa:4239 up:P55083 equivalent -hsa:4240 up:Q08431 equivalent -hsa:4241 up:P08582 equivalent -hsa:4242 up:O00587 equivalent -hsa:4245 up:P26572 equivalent -hsa:4246 up:O75556 equivalent -hsa:4247 up:Q10469 equivalent -hsa:4248 up:Q09327 equivalent -hsa:4249 up:Q09328 equivalent -hsa:4250 up:Q13296 equivalent -hsa:425054 up:Q9H321 equivalent -hsa:4253 up:Q96PC5 equivalent -hsa:4254 up:P21583 equivalent -hsa:4255 up:B4DEE8 equivalent -hsa:4255 up:P16455 equivalent -hsa:4256 up:P08493 equivalent -hsa:4257 up:P10620 equivalent -hsa:4258 up:Q99735 equivalent -hsa:4259 up:O14880 equivalent -hsa:4261 up:A0A0B4J1S1 equivalent -hsa:4261 up:P33076 equivalent -hsa:4261 up:Q66X48 equivalent -hsa:4267 up:P14209 equivalent -hsa:427 up:A8K0B6 equivalent -hsa:427 up:Q13510 equivalent -hsa:427 up:Q53H01 equivalent -hsa:4277 up:A0A7D9H7X8 equivalent -hsa:4277 up:Q29980 equivalent -hsa:4281 up:O15344 equivalent -hsa:4282 up:I4AY87 equivalent -hsa:4282 up:P14174 equivalent -hsa:4283 up:Q07325 equivalent -hsa:4284 up:P30301 equivalent -hsa:4285 up:Q99797 equivalent -hsa:4286 up:O75030 equivalent -hsa:4287 up:P54252 equivalent -hsa:4288 up:P46013 equivalent -hsa:4289 up:B4DG30 equivalent -hsa:4289 up:Q9UL63 equivalent -hsa:429 up:P50553 equivalent -hsa:4291 up:A0A0S2Z4U8 equivalent -hsa:4291 up:B2RD48 equivalent -hsa:4291 up:P58340 equivalent -hsa:4291 up:Q5HYH4 equivalent -hsa:4292 up:P40692 equivalent -hsa:4293 up:P80192 equivalent -hsa:4293 up:Q8NEB1 equivalent -hsa:4294 up:Q02779 equivalent -hsa:4295 up:P12872 equivalent -hsa:4296 up:Q16584 equivalent -hsa:4297 up:Q03164 equivalent -hsa:4298 up:Q03111 equivalent -hsa:4299 up:P51825 equivalent -hsa:4299 up:Q14C88 equivalent -hsa:43 up:P22303 equivalent -hsa:430 up:Q99929 equivalent -hsa:4300 up:A0A0S2Z448 equivalent -hsa:4300 up:P42568 equivalent -hsa:4301 up:A8MQ02 equivalent -hsa:4301 up:G1UI22 equivalent -hsa:4301 up:P55196 equivalent -hsa:4302 up:P55198 equivalent -hsa:4303 up:P98177 equivalent -hsa:4306 up:B0ZBF6 equivalent -hsa:4306 up:P08235 equivalent -hsa:4308 up:Q7Z4N2 equivalent -hsa:4311 up:P08473 equivalent -hsa:4312 up:P03956 equivalent -hsa:4312 up:Q53G95 equivalent -hsa:4313 up:P08253 equivalent -hsa:4314 up:P08254 equivalent -hsa:4316 up:P09237 equivalent -hsa:4317 up:P22894 equivalent -hsa:431704 up:Q2M5E4 equivalent -hsa:431705 up:Q6HA08 equivalent -hsa:431707 up:Q68G74 equivalent -hsa:4318 up:P14780 equivalent -hsa:4319 up:P09238 equivalent -hsa:432 up:P07306 equivalent -hsa:432 up:Q6FGQ5 equivalent -hsa:4320 up:B3KQS8 equivalent -hsa:4320 up:P24347 equivalent -hsa:4321 up:P39900 equivalent -hsa:4322 up:P45452 equivalent -hsa:4322 up:Q53H33 equivalent -hsa:4323 up:P50281 equivalent -hsa:432355 up:P0DP57 equivalent -hsa:4324 up:P51511 equivalent -hsa:4325 up:P51512 equivalent -hsa:4326 up:Q9ULZ9 equivalent -hsa:4327 up:Q99542 equivalent -hsa:4329 up:A0A024R6G4 equivalent -hsa:4329 up:Q02252 equivalent -hsa:433 up:P07307 equivalent -hsa:4330 up:Q10571 equivalent -hsa:4331 up:A0A024R688 equivalent -hsa:4331 up:P51948 equivalent -hsa:4332 up:P41218 equivalent -hsa:4332 up:Q5VUU6 equivalent -hsa:4335 up:Q99583 equivalent -hsa:4336 up:Q13875 equivalent -hsa:4337 up:Q9NZB8 equivalent -hsa:4338 up:O96007 equivalent -hsa:434 up:P42127 equivalent -hsa:4340 up:Q16653 equivalent -hsa:4342 up:P00540 equivalent -hsa:4343 up:Q9HCE1 equivalent -hsa:4345 up:P41217 equivalent -hsa:435 up:A0A024RDL8 equivalent -hsa:435 up:P04424 equivalent -hsa:4350 up:P29372 equivalent -hsa:4350 up:Q1W6H1 equivalent -hsa:4351 up:P34949 equivalent -hsa:4352 up:P40238 equivalent -hsa:4353 up:P05164 equivalent -hsa:4354 up:Q00013 equivalent -hsa:4355 up:D3DX49 equivalent -hsa:4355 up:Q14168 equivalent -hsa:4356 up:Q13368 equivalent -hsa:4357 up:A0A140VJX3 equivalent -hsa:4357 up:P25325 equivalent -hsa:4358 up:A0A0S2Z3Z9 equivalent -hsa:4358 up:P39210 equivalent -hsa:4359 up:P25189 equivalent -hsa:4360 up:P22897 equivalent -hsa:4361 up:P49959 equivalent -hsa:4363 up:P33527 equivalent -hsa:438 up:P46597 equivalent -hsa:43847 up:A0A1R3UHJ7 equivalent -hsa:43847 up:Q9P0G3 equivalent -hsa:43849 up:A0A024R4M4 equivalent -hsa:43849 up:Q9UKR0 equivalent -hsa:439 up:O43681 equivalent -hsa:439915 up:Q701N2 equivalent -hsa:439921 up:P84157 equivalent -hsa:439996 up:Q5T764 equivalent -hsa:440 up:P08243 equivalent -hsa:440021 up:Q701N4 equivalent -hsa:440023 up:Q6L8G9 equivalent -hsa:440026 up:Q5BJD5 equivalent -hsa:440050 up:Q6L8G8 equivalent -hsa:440051 up:Q6L8G4 equivalent -hsa:440073 up:Q9UPP2 equivalent -hsa:440077 up:Q6ZN79 equivalent -hsa:440087 up:A2RU48 equivalent -hsa:440093 up:Q6NXT2 equivalent -hsa:440097 up:Q6ZNG2 equivalent -hsa:440107 up:Q6ZR37 equivalent -hsa:440138 up:Q2TAA5 equivalent -hsa:440145 up:Q08AG7 equivalent -hsa:440153 up:B2RN74 equivalent -hsa:440163 up:Q5GAN3 equivalent -hsa:440163 up:V9HW52 equivalent -hsa:440193 up:B4DZB8 equivalent -hsa:440193 up:Q9P219 equivalent -hsa:440270 up:A8MQT2 equivalent -hsa:440275 up:Q9P2K8 equivalent -hsa:440279 up:Q8NB66 equivalent -hsa:440295 up:A6NEM1 equivalent -hsa:440335 up:K7EJ46 equivalent -hsa:440345 up:A0A804HK81 equivalent -hsa:440348 up:A6NHN6 equivalent -hsa:440387 up:Q6GPI1 equivalent -hsa:440400 up:Q6P5S7 equivalent -hsa:440435 up:A0A087X0K8 equivalent -hsa:440435 up:Q6PRD1 equivalent -hsa:440498 up:C9JCN9 equivalent -hsa:440503 up:Q00G26 equivalent -hsa:440515 up:Q5JVG8 equivalent -hsa:440533 up:Q9UQ74 equivalent -hsa:440560 up:O60813 equivalent -hsa:440561 up:Q5VXH4 equivalent -hsa:440563 up:B2RXH8 equivalent -hsa:440567 up:A0A096LP55 equivalent -hsa:440574 up:Q5TGZ0 equivalent -hsa:440585 up:A6NL82 equivalent -hsa:440590 up:Q6WRX3 equivalent -hsa:440603 up:Q53EI7 equivalent -hsa:440603 up:Q5TBC7 equivalent -hsa:440689 up:Q5QNW6 equivalent -hsa:440695 up:Q6ZN32 equivalent -hsa:440699 up:Q8N7C0 equivalent -hsa:440712 up:Q6ZWK4 equivalent -hsa:440730 up:Q6ZTA4 equivalent -hsa:440738 up:Q9BXW4 equivalent -hsa:440804 up:A6NNM3 equivalent -hsa:440822 up:Q7Z3Z3 equivalent -hsa:440829 up:B8ZZ34 equivalent -hsa:440836 up:A1L1A8 equivalent -hsa:440836 up:A8MYP8 equivalent -hsa:440854 up:A8MX76 equivalent -hsa:440854 up:B7Z467 equivalent -hsa:440955 up:A2RUT3 equivalent -hsa:440956 up:A8MYZ5 equivalent -hsa:440957 up:Q8WVI0 equivalent -hsa:441024 up:Q9H903 equivalent -hsa:441027 up:B9EJG8 equivalent -hsa:441054 up:A7E2U8 equivalent -hsa:441061 up:A6NNE9 equivalent -hsa:441150 up:Q5I0X4 equivalent -hsa:441151 up:Q8IW70 equivalent -hsa:441155 up:A0A8V8TLD8 equivalent -hsa:441155 up:B4DYM8 equivalent -hsa:441155 up:P0DQW0 equivalent -hsa:441161 up:A6NGQ2 equivalent -hsa:441168 up:Q5R3K3 equivalent -hsa:441234 up:A6NP11 equivalent -hsa:441250 up:Q6NUM6 equivalent -hsa:441272 up:A6NKU9 equivalent -hsa:441273 up:I6XC90 equivalent -hsa:441273 up:Q495Y8 equivalent -hsa:441282 up:C9JRZ8 equivalent -hsa:441294 up:A4D2H0 equivalent -hsa:441308 up:O95013 equivalent -hsa:441376 up:B2RU19 equivalent -hsa:441376 up:Q4LEZ3 equivalent -hsa:441381 up:Q50LG9 equivalent -hsa:441452 up:P0DKV0 equivalent -hsa:441457 up:Q5VZR2 equivalent -hsa:441476 up:Q8N7X2 equivalent -hsa:441478 up:Q7Z6K4 equivalent -hsa:441518 up:Q17RB0 equivalent -hsa:441519 up:Q8NHU0 equivalent -hsa:441521 up:P0DMU7 equivalent -hsa:441521 up:P0DMU8 equivalent -hsa:441521 up:P0DMV0 equivalent -hsa:441525 up:Q5MJ08 equivalent -hsa:441531 up:Q8N0Y7 equivalent -hsa:441549 up:Q49AH0 equivalent -hsa:441581 up:Q96QU4 equivalent -hsa:441608 up:A0A126GVH3 equivalent -hsa:441608 up:Q8NH48 equivalent -hsa:441631 up:A1L157 equivalent -hsa:441639 up:A0A126GW01 equivalent -hsa:441639 up:Q8NGE7 equivalent -hsa:441669 up:A0A126GW32 equivalent -hsa:441669 up:Q8NH05 equivalent -hsa:441670 up:A0A126GWC3 equivalent -hsa:441670 up:Q8NGD0 equivalent -hsa:441864 up:B6A8C7 equivalent -hsa:441869 up:E5RJM6 equivalent -hsa:441871 up:Q5VXH5 equivalent -hsa:441873 up:A6NGN4 equivalent -hsa:441873 up:H0Y7S4 equivalent -hsa:441925 up:A8MW95 equivalent -hsa:441933 up:Q8NGZ3 equivalent -hsa:442038 up:Q6IMI6 equivalent -hsa:442117 up:E5D8G0 equivalent -hsa:442117 up:Q49A17 equivalent -hsa:442184 up:A0A126GV76 equivalent -hsa:442184 up:O76000 equivalent -hsa:442185 up:Q9GZK6 equivalent -hsa:442186 up:A0A126GWT2 equivalent -hsa:442186 up:O76001 equivalent -hsa:442191 up:A0A126GW10 equivalent -hsa:442191 up:Q9UGF5 equivalent -hsa:442194 up:A0A126GV80 equivalent -hsa:442194 up:Q96KK4 equivalent -hsa:442213 up:Q6ZW05 equivalent -hsa:442247 up:Q6ZWI9 equivalent -hsa:442319 up:A8MUV8 equivalent -hsa:442361 up:A0A126GW45 equivalent -hsa:442361 up:Q6IF42 equivalent -hsa:442425 up:Q5VYV0 equivalent -hsa:442444 up:Q5HY64 equivalent -hsa:442590 up:A6NIY4 equivalent -hsa:442721 up:Q6P5Q4 equivalent -hsa:442862 up:A0A384MTZ8 equivalent -hsa:442862 up:O14603 equivalent -hsa:442867 up:O14599 equivalent -hsa:442868 up:O14599 equivalent -hsa:443 up:P45381 equivalent -hsa:443 up:Q6FH48 equivalent -hsa:4430 up:B0I1S9 equivalent -hsa:4430 up:O43795 equivalent -hsa:4435 up:Q99966 equivalent -hsa:4436 up:P43246 equivalent -hsa:4437 up:P20585 equivalent -hsa:4438 up:O15457 equivalent -hsa:4439 up:A0A024RCM1 equivalent -hsa:4439 up:O43196 equivalent -hsa:444 up:Q12797 equivalent -hsa:4440 up:O43347 equivalent -hsa:444882 up:Q6B9Z1 equivalent -hsa:445 up:P00966 equivalent -hsa:445 up:Q5T6L4 equivalent -hsa:445328 up:A5YM69 equivalent -hsa:445329 up:P0DMM9 equivalent -hsa:445329 up:P0DMN0 equivalent -hsa:445329 up:Q1ET61 equivalent -hsa:445347 up:A2JGV3 equivalent -hsa:445372 up:B2RNG4 equivalent -hsa:445571 up:Q5JTY5 equivalent -hsa:445582 up:Q6S8J3 equivalent -hsa:445815 up:Q9Y2D5 equivalent -hsa:4477 up:P08118 equivalent -hsa:4478 up:P26038 equivalent -hsa:4478 up:V9HWC0 equivalent -hsa:4481 up:P21757 equivalent -hsa:4482 up:Q9UJ68 equivalent -hsa:4485 up:G3XAK1 equivalent -hsa:4485 up:P26927 equivalent -hsa:4485 up:Q53GN8 equivalent -hsa:4486 up:Q04912 equivalent -hsa:4487 up:P28360 equivalent -hsa:4488 up:P35548 equivalent -hsa:448831 up:Q64ET8 equivalent -hsa:448834 up:Q5T749 equivalent -hsa:448835 up:A0A183 equivalent -hsa:4489 up:P04731 equivalent -hsa:4490 up:P07438 equivalent -hsa:4493 up:P04732 equivalent -hsa:4494 up:P04733 equivalent -hsa:4495 up:P13640 equivalent -hsa:4496 up:A0A140VJP7 equivalent -hsa:4496 up:P80294 equivalent -hsa:4499 up:Q8N339 equivalent -hsa:4501 up:A0A140VJP8 equivalent -hsa:4501 up:P80297 equivalent -hsa:4502 up:P02795 equivalent -hsa:4504 up:P25713 equivalent -hsa:4507 up:A0A384ME80 equivalent -hsa:4507 up:Q13126 equivalent -hsa:4508 up:P00846 equivalent -hsa:4508 up:Q0ZFE3 equivalent -hsa:4509 up:P03928 equivalent -hsa:4509 up:U5YV54 equivalent -hsa:4512 up:P00395 equivalent -hsa:4512 up:U5YWV7 equivalent -hsa:4513 up:P00403 equivalent -hsa:4513 up:U5Z487 equivalent -hsa:4514 up:P00414 equivalent -hsa:4514 up:Q7GIM7 equivalent -hsa:4515 up:P56278 equivalent -hsa:4519 up:P00156 equivalent -hsa:4519 up:Q0ZFD6 equivalent -hsa:4520 up:Q14872 equivalent -hsa:4521 up:P36639 equivalent -hsa:4522 up:P11586 equivalent -hsa:4524 up:P42898 equivalent -hsa:4524 up:Q59GJ6 equivalent -hsa:4524 up:Q8IU67 equivalent -hsa:4528 up:P46199 equivalent -hsa:4528 up:Q6P1N2 equivalent -hsa:4534 up:Q13496 equivalent -hsa:4535 up:P03886 equivalent -hsa:4535 up:U5Z754 equivalent -hsa:4536 up:P03891 equivalent -hsa:4536 up:Q7GXY9 equivalent -hsa:4537 up:P03897 equivalent -hsa:4537 up:Q7GXZ5 equivalent -hsa:4538 up:H9EC08 equivalent -hsa:4538 up:P03905 equivalent -hsa:4539 up:P03901 equivalent -hsa:4539 up:Q7GXZ4 equivalent -hsa:4540 up:P03915 equivalent -hsa:4540 up:U5ZC31 equivalent -hsa:4541 up:P03923 equivalent -hsa:4541 up:U5Z977 equivalent -hsa:4542 up:O00160 equivalent -hsa:4542 up:Q4LE34 equivalent -hsa:4543 up:P48039 equivalent -hsa:4544 up:P49286 equivalent -hsa:4547 up:P55157 equivalent -hsa:4548 up:Q99707 equivalent -hsa:4552 up:Q9UBK8 equivalent -hsa:4580 up:Q13505 equivalent -hsa:4582 up:P15941 equivalent -hsa:4583 up:A0A3S8TMF2 equivalent -hsa:4583 up:Q02817 equivalent -hsa:4584 up:Q02505 equivalent -hsa:4584 up:Q9H3Q6 equivalent -hsa:4585 up:E9PDY6 equivalent -hsa:4585 up:Q99102 equivalent -hsa:4586 up:P98088 equivalent -hsa:4588 up:Q6W4X9 equivalent -hsa:4589 up:Q8TAX7 equivalent -hsa:4591 up:O94972 equivalent -hsa:4593 up:O15146 equivalent -hsa:4594 up:A0A024RD82 equivalent -hsa:4594 up:B2R6K1 equivalent -hsa:4594 up:P22033 equivalent -hsa:4595 up:E5KP26 equivalent -hsa:4595 up:Q9UIF7 equivalent -hsa:4597 up:P53602 equivalent -hsa:4598 up:B2RDU6 equivalent -hsa:4598 up:Q03426 equivalent -hsa:4599 up:P20591 equivalent -hsa:460 up:O14525 equivalent -hsa:4600 up:P20592 equivalent -hsa:4601 up:P50539 equivalent -hsa:4602 up:P10242 equivalent -hsa:4602 up:Q708E9 equivalent -hsa:4603 up:P10243 equivalent -hsa:4604 up:A8KAB1 equivalent -hsa:4604 up:Q00872 equivalent -hsa:4604 up:Q86TA8 equivalent -hsa:4605 up:P10244 equivalent -hsa:4606 up:A0A140VJQ0 equivalent -hsa:4606 up:Q14324 equivalent -hsa:4607 up:A5YM48 equivalent -hsa:4607 up:Q14896 equivalent -hsa:4608 up:Q13203 equivalent -hsa:4609 up:P01106 equivalent -hsa:4610 up:P12524 equivalent -hsa:4613 up:P04198 equivalent -hsa:4615 up:Q99836 equivalent -hsa:4616 up:O75293 equivalent -hsa:4617 up:P13349 equivalent -hsa:4618 up:P23409 equivalent -hsa:4619 up:P12882 equivalent -hsa:462 up:P01008 equivalent -hsa:4620 up:Q9UKX2 equivalent -hsa:4621 up:P11055 equivalent -hsa:4621 up:Q5GJ67 equivalent -hsa:4622 up:Q9Y623 equivalent -hsa:4624 up:P13533 equivalent -hsa:4625 up:P12883 equivalent -hsa:4626 up:P13535 equivalent -hsa:4627 up:P35579 equivalent -hsa:4628 up:P35580 equivalent -hsa:4629 up:A0A024QZJ4 equivalent -hsa:4629 up:P35749 equivalent -hsa:463 up:Q15911 equivalent -hsa:463 up:Q8N2Y6 equivalent -hsa:4632 up:P05976 equivalent -hsa:4633 up:P10916 equivalent -hsa:4633 up:Q6IB42 equivalent -hsa:4634 up:P08590 equivalent -hsa:4635 up:P12829 equivalent -hsa:4636 up:Q02045 equivalent -hsa:4637 up:P60660 equivalent -hsa:4638 up:Q15746 equivalent -hsa:4640 up:B2R643 equivalent -hsa:4640 up:Q9UBC5 equivalent -hsa:4641 up:O00159 equivalent -hsa:4642 up:O94832 equivalent -hsa:4642 up:Q8N618 equivalent -hsa:4643 up:Q12965 equivalent -hsa:4643 up:Q4KMR3 equivalent -hsa:4644 up:Q9UES4 equivalent -hsa:4644 up:Q9Y4I1 equivalent -hsa:4645 up:Q7Z7A5 equivalent -hsa:4645 up:Q9ULV0 equivalent -hsa:4646 up:Q9UM54 equivalent -hsa:4647 up:Q13402 equivalent -hsa:4648 up:Q6PIF6 equivalent -hsa:4649 up:B2RTY4 equivalent -hsa:4650 up:B0I1T6 equivalent -hsa:4650 up:Q13459 equivalent -hsa:4650 up:Q8WVD2 equivalent -hsa:4651 up:Q9HD67 equivalent -hsa:4653 up:A0A0S2Z421 equivalent -hsa:4653 up:Q99972 equivalent -hsa:4654 up:P15172 equivalent -hsa:4656 up:P15173 equivalent -hsa:4659 up:B2RAH5 equivalent -hsa:4659 up:O14974 equivalent -hsa:466 up:P18846 equivalent -hsa:4660 up:O60237 equivalent -hsa:4661 up:Q01538 equivalent -hsa:4664 up:A8K8T1 equivalent -hsa:4664 up:Q13506 equivalent -hsa:4665 up:Q15742 equivalent -hsa:4666 up:Q13765 equivalent -hsa:4668 up:P17050 equivalent -hsa:4669 up:A0A140VJE4 equivalent -hsa:4669 up:P54802 equivalent -hsa:467 up:P18847 equivalent -hsa:4670 up:P52272 equivalent -hsa:4671 up:Q13075 equivalent -hsa:4673 up:P55209 equivalent -hsa:4673 up:Q9H2B0 equivalent -hsa:4674 up:Q9ULW6 equivalent -hsa:4675 up:Q8IYV1 equivalent -hsa:4675 up:Q99457 equivalent -hsa:4676 up:Q99733 equivalent -hsa:4677 up:O43776 equivalent -hsa:4678 up:P49321 equivalent -hsa:468 up:P18848 equivalent -hsa:4680 up:P40199 equivalent -hsa:4681 up:P41271 equivalent -hsa:4682 up:P53384 equivalent -hsa:4683 up:O60934 equivalent -hsa:4684 up:P13591 equivalent -hsa:4685 up:O15394 equivalent -hsa:4686 up:Q09161 equivalent -hsa:4688 up:A0A0S2Z457 equivalent -hsa:4688 up:P19878 equivalent -hsa:4689 up:Q15080 equivalent -hsa:4690 up:A0A0S2Z4Y3 equivalent -hsa:4690 up:P16333 equivalent -hsa:4691 up:B3KM80 equivalent -hsa:4691 up:P19338 equivalent -hsa:4692 up:Q99608 equivalent -hsa:4692 up:X5D982 equivalent -hsa:4693 up:Q00604 equivalent -hsa:4694 up:O15239 equivalent -hsa:4694 up:Q6IBB5 equivalent -hsa:4695 up:O43678 equivalent -hsa:4696 up:O95167 equivalent -hsa:4696 up:Q6FGG4 equivalent -hsa:4697 up:O00483 equivalent -hsa:4698 up:Q16718 equivalent -hsa:47 up:P53396 equivalent -hsa:4700 up:A0A2Y9D025 equivalent -hsa:4700 up:P56556 equivalent -hsa:4701 up:O95182 equivalent -hsa:4702 up:P51970 equivalent -hsa:4703 up:P20929 equivalent -hsa:4703 up:Q05C45 equivalent -hsa:4703 up:Q96MF8 equivalent -hsa:4704 up:Q16795 equivalent -hsa:4705 up:O95299 equivalent -hsa:4706 up:O14561 equivalent -hsa:4707 up:O75438 equivalent -hsa:4708 up:A4D1T5 equivalent -hsa:4708 up:O95178 equivalent -hsa:4709 up:O43676 equivalent -hsa:471 up:P31939 equivalent -hsa:471 up:V9HWH7 equivalent -hsa:4710 up:O95168 equivalent -hsa:4711 up:O43674 equivalent -hsa:4712 up:O95139 equivalent -hsa:4713 up:P17568 equivalent -hsa:4714 up:O95169 equivalent -hsa:4715 up:Q9Y6M9 equivalent -hsa:4716 up:A8K761 equivalent -hsa:4716 up:O96000 equivalent -hsa:4717 up:O43677 equivalent -hsa:4718 up:O95298 equivalent -hsa:4719 up:E5KRK5 equivalent -hsa:4719 up:P28331 equivalent -hsa:472 up:Q13315 equivalent -hsa:4720 up:O75306 equivalent -hsa:4722 up:O75489 equivalent -hsa:4723 up:E5KNH5 equivalent -hsa:4723 up:P49821 equivalent -hsa:4724 up:A0A0S2Z433 equivalent -hsa:4724 up:O43181 equivalent -hsa:4725 up:O43920 equivalent -hsa:4725 up:Q6IBA0 equivalent -hsa:4726 up:O75380 equivalent -hsa:4726 up:Q6IBC4 equivalent -hsa:4728 up:O00217 equivalent -hsa:4729 up:P19404 equivalent -hsa:473 up:Q9P2R6 equivalent -hsa:4731 up:P56181 equivalent -hsa:4733 up:Q9Y295 equivalent -hsa:4734 up:P46934 equivalent -hsa:4735 up:Q15019 equivalent -hsa:4736 up:P62906 equivalent -hsa:4738 up:Q15843 equivalent -hsa:4739 up:Q14511 equivalent -hsa:474 up:Q92858 equivalent -hsa:4741 up:P07197 equivalent -hsa:474170 up:A6NM11 equivalent -hsa:474170 up:Q5YKG5 equivalent -hsa:474343 up:Q9BPZ2 equivalent -hsa:474344 up:A0A090N7V4 equivalent -hsa:474344 up:Q6P9H5 equivalent -hsa:474354 up:Q8N456 equivalent -hsa:474381 up:P0C5Z0 equivalent -hsa:474382 up:P0C5Y9 equivalent -hsa:474383 up:P23610 equivalent -hsa:474384 up:P23610 equivalent -hsa:4744 up:P12036 equivalent -hsa:4745 up:K9UUD5 equivalent -hsa:4745 up:Q92832 equivalent -hsa:4747 up:P07196 equivalent -hsa:475 up:O00244 equivalent -hsa:4750 up:Q96PY6 equivalent -hsa:4751 up:P51955 equivalent -hsa:4752 up:P51956 equivalent -hsa:4753 up:Q99435 equivalent -hsa:4756 up:Q59FP8 equivalent -hsa:4756 up:Q92859 equivalent -hsa:4758 up:Q5JQI0 equivalent -hsa:4758 up:Q99519 equivalent -hsa:4759 up:Q9Y3R4 equivalent -hsa:476 up:P05023 equivalent -hsa:4760 up:A0A0S2Z493 equivalent -hsa:4760 up:Q13562 equivalent -hsa:4761 up:Q15784 equivalent -hsa:4762 up:F1T0H3 equivalent -hsa:4762 up:Q92886 equivalent -hsa:4763 up:P21359 equivalent -hsa:477 up:A0A0S2Z3W6 equivalent -hsa:477 up:P50993 equivalent -hsa:4771 up:P35240 equivalent -hsa:4772 up:O95644 equivalent -hsa:4773 up:Q13469 equivalent -hsa:4774 up:Q12857 equivalent -hsa:4775 up:B5B2S1 equivalent -hsa:4775 up:Q12968 equivalent -hsa:4776 up:Q14934 equivalent -hsa:4778 up:A8K3E0 equivalent -hsa:4778 up:Q16621 equivalent -hsa:4779 up:Q14494 equivalent -hsa:4779 up:Q8NF22 equivalent -hsa:478 up:P13637 equivalent -hsa:478 up:Q53ES0 equivalent -hsa:4780 up:Q16236 equivalent -hsa:4781 up:O00712 equivalent -hsa:4781 up:Q5VW28 equivalent -hsa:4782 up:B7Z4T6 equivalent -hsa:4782 up:P08651 equivalent -hsa:4783 up:Q16649 equivalent -hsa:4784 up:Q14938 equivalent -hsa:479 up:B4E0R9 equivalent -hsa:479 up:P54707 equivalent -hsa:4790 up:P19838 equivalent -hsa:4791 up:Q00653 equivalent -hsa:4792 up:P25963 equivalent -hsa:4793 up:Q15653 equivalent -hsa:4794 up:O00221 equivalent -hsa:4794 up:Q7LC14 equivalent -hsa:4794 up:Q96F31 equivalent -hsa:4795 up:A8K778 equivalent -hsa:4795 up:Q9UBC1 equivalent -hsa:4796 up:Q96HA7 equivalent -hsa:4798 up:Q6P4R8 equivalent -hsa:4799 up:Q12986 equivalent -hsa:48 up:P21399 equivalent -hsa:48 up:Q9HBB2 equivalent -hsa:48 up:V9HWB7 equivalent -hsa:480 up:Q13733 equivalent -hsa:4800 up:P23511 equivalent -hsa:4801 up:P25208 equivalent -hsa:4802 up:Q13952 equivalent -hsa:4803 up:P01138 equivalent -hsa:4804 up:P08138 equivalent -hsa:4807 up:Q02575 equivalent -hsa:4807 up:Q5T203 equivalent -hsa:4808 up:Q02577 equivalent -hsa:4809 up:P55769 equivalent -hsa:4809 up:Q6FHM6 equivalent -hsa:481 up:A3KLL5 equivalent -hsa:481 up:P05026 equivalent -hsa:4810 up:Q6T4R5 equivalent -hsa:4811 up:P14543 equivalent -hsa:4814 up:Q92982 equivalent -hsa:4815 up:A0A590UJR9 equivalent -hsa:4815 up:B4DJC1 equivalent -hsa:4815 up:Q9NZG7 equivalent -hsa:4817 up:Q86X76 equivalent -hsa:4818 up:Q16617 equivalent -hsa:482 up:P14415 equivalent -hsa:4820 up:P30414 equivalent -hsa:4821 up:O95096 equivalent -hsa:4824 up:Q99801 equivalent -hsa:4825 up:P78426 equivalent -hsa:4826 up:Q16517 equivalent -hsa:4828 up:P08949 equivalent -hsa:4829 up:P28336 equivalent -hsa:483 up:P54709 equivalent -hsa:4830 up:A0A384MTW7 equivalent -hsa:4830 up:P15531 equivalent -hsa:4831 up:P22392 equivalent -hsa:4831 up:Q6FHN3 equivalent -hsa:4832 up:Q13232 equivalent -hsa:4833 up:O00746 equivalent -hsa:4835 up:B3KPX6 equivalent -hsa:4835 up:P16083 equivalent -hsa:4836 up:P30419 equivalent -hsa:4837 up:B0YJ53 equivalent -hsa:4837 up:P40261 equivalent -hsa:4838 up:Q96S42 equivalent -hsa:4839 up:P46087 equivalent -hsa:4841 up:A0A0S2Z4Z9 equivalent -hsa:4841 up:Q15233 equivalent -hsa:4842 up:A0PJJ7 equivalent -hsa:4842 up:B3VK56 equivalent -hsa:4842 up:B4DG68 equivalent -hsa:4842 up:P29475 equivalent -hsa:4843 up:P35228 equivalent -hsa:4846 up:P29474 equivalent -hsa:4848 up:B2RDX7 equivalent -hsa:4848 up:Q9NZN8 equivalent -hsa:4849 up:O75175 equivalent -hsa:4850 up:O95628 equivalent -hsa:4851 up:P46531 equivalent -hsa:4852 up:A4D158 equivalent -hsa:4852 up:P01303 equivalent -hsa:4853 up:Q04721 equivalent -hsa:4853 up:Q6IQ50 equivalent -hsa:4853 up:Q9UFD5 equivalent -hsa:4854 up:Q9UM47 equivalent -hsa:4855 up:A0A1U9X983 equivalent -hsa:4855 up:Q99466 equivalent -hsa:4856 up:P48745 equivalent -hsa:4857 up:P51513 equivalent -hsa:4858 up:Q9UNW9 equivalent -hsa:486 up:P54710 equivalent -hsa:4860 up:P00491 equivalent -hsa:4860 up:V9HWH6 equivalent -hsa:4861 up:Q99742 equivalent -hsa:4862 up:A2I2P5 equivalent -hsa:4862 up:Q99743 equivalent -hsa:4863 up:Q14207 equivalent -hsa:4864 up:O15118 equivalent -hsa:4867 up:O15259 equivalent -hsa:4868 up:O60500 equivalent -hsa:4869 up:A0A0S2Z491 equivalent -hsa:4869 up:P06748 equivalent -hsa:487 up:O14983 equivalent -hsa:487 up:Q7Z675 equivalent -hsa:4878 up:P01160 equivalent -hsa:4879 up:P16860 equivalent -hsa:488 up:A0A0S2Z3L2 equivalent -hsa:488 up:P16615 equivalent -hsa:4880 up:E5LCN7 equivalent -hsa:4880 up:P23582 equivalent -hsa:4881 up:A0A140VJE6 equivalent -hsa:4881 up:P16066 equivalent -hsa:4882 up:P20594 equivalent -hsa:4883 up:A8K4A5 equivalent -hsa:4883 up:P17342 equivalent -hsa:4884 up:Q15818 equivalent -hsa:4885 up:P47972 equivalent -hsa:4886 up:P25929 equivalent -hsa:4887 up:P49146 equivalent -hsa:4889 up:Q15761 equivalent -hsa:489 up:A8K9K1 equivalent -hsa:489 up:Q93084 equivalent -hsa:4891 up:A0A0X8GKR4 equivalent -hsa:4891 up:P49281 equivalent -hsa:4892 up:Q86VF7 equivalent -hsa:4893 up:P01111 equivalent -hsa:4893 up:Q5U091 equivalent -hsa:4897 up:Q14CA1 equivalent -hsa:4897 up:Q92823 equivalent -hsa:4898 up:O43847 equivalent -hsa:4898 up:Q6UUU9 equivalent -hsa:4899 up:Q16656 equivalent -hsa:49 up:P10323 equivalent -hsa:490 up:P20020 equivalent -hsa:4900 up:Q92686 equivalent -hsa:4901 up:P54845 equivalent -hsa:4902 up:Q99748 equivalent -hsa:4904 up:P67809 equivalent -hsa:4905 up:A0A384MTI6 equivalent -hsa:4905 up:P46459 equivalent -hsa:4907 up:P21589 equivalent -hsa:4907 up:Q6NZX3 equivalent -hsa:4908 up:P20783 equivalent -hsa:4909 up:P34130 equivalent -hsa:491 up:Q01814 equivalent -hsa:4913 up:E5KTI5 equivalent -hsa:4913 up:P78549 equivalent -hsa:4914 up:P04629 equivalent -hsa:4915 up:Q16620 equivalent -hsa:4915 up:Q548C2 equivalent -hsa:4915 up:Q5VWE5 equivalent -hsa:4916 up:Q16288 equivalent -hsa:4916 up:X5D2R1 equivalent -hsa:4917 up:O00634 equivalent -hsa:4919 up:Q01973 equivalent -hsa:492 up:Q16720 equivalent -hsa:4920 up:Q01974 equivalent -hsa:4921 up:Q16832 equivalent -hsa:4922 up:P30990 equivalent -hsa:4922 up:Q6FH20 equivalent -hsa:4923 up:P30989 equivalent -hsa:492307 up:Q8WWR9 equivalent -hsa:492311 up:A0A158RFU4 equivalent -hsa:492311 up:A6NJ69 equivalent -hsa:4924 up:A8K7Q1 equivalent -hsa:4924 up:Q02818 equivalent -hsa:4925 up:P80303 equivalent -hsa:4926 up:Q14980 equivalent -hsa:4926 up:Q3SYK8 equivalent -hsa:4926 up:Q4LE64 equivalent -hsa:4927 up:Q99567 equivalent -hsa:4928 up:P52948 equivalent -hsa:4929 up:F1D8N6 equivalent -hsa:4929 up:P43354 equivalent -hsa:4929 up:Q53EL4 equivalent -hsa:493 up:P23634 equivalent -hsa:4931 up:B4DF43 equivalent -hsa:4931 up:O15381 equivalent -hsa:4935 up:P51810 equivalent -hsa:493753 up:Q86WW8 equivalent -hsa:4938 up:P00973 equivalent -hsa:493829 up:Q6ZMU5 equivalent -hsa:493856 up:Q8N5K1 equivalent -hsa:493860 up:Q6ZRK6 equivalent -hsa:493861 up:A0A140VJI9 equivalent -hsa:493861 up:Q8N140 equivalent -hsa:493869 up:Q8TED1 equivalent -hsa:4939 up:P29728 equivalent -hsa:493901 up:Q5GAN4 equivalent -hsa:493901 up:W0UV30 equivalent -hsa:493911 up:Q8TCD6 equivalent -hsa:4940 up:Q9Y6K5 equivalent -hsa:494115 up:Q96E39 equivalent -hsa:494118 up:Q5VSR9 equivalent -hsa:494119 up:Q5MJ10 equivalent -hsa:494143 up:Q8WUX2 equivalent -hsa:494188 up:Q5MNV8 equivalent -hsa:494197 up:Q5MJ07 equivalent -hsa:4942 up:A0A140VJQ4 equivalent -hsa:4942 up:P04181 equivalent -hsa:4943 up:Q3MII6 equivalent -hsa:494470 up:A0A059NXK6 equivalent -hsa:494470 up:Q6ZSG1 equivalent -hsa:494513 up:Q0ZLH3 equivalent -hsa:494551 up:P0C1S8 equivalent -hsa:4946 up:P54368 equivalent -hsa:4947 up:O95190 equivalent -hsa:4948 up:Q04671 equivalent -hsa:495 up:A0A384MR29 equivalent -hsa:495 up:P20648 equivalent -hsa:495 up:Q658V6 equivalent -hsa:4951 up:P0CE71 equivalent -hsa:4952 up:Q01968 equivalent -hsa:4953 up:P11926 equivalent -hsa:4956 up:Q14990 equivalent -hsa:4957 up:Q5BJF6 equivalent -hsa:4958 up:Q99983 equivalent -hsa:496 up:P51164 equivalent -hsa:4967 up:B4E3E9 equivalent -hsa:4967 up:Q02218 equivalent -hsa:4968 up:E5KPN1 equivalent -hsa:4968 up:O15527 equivalent -hsa:4969 up:A8K0R3 equivalent -hsa:4969 up:B4DI63 equivalent -hsa:4969 up:P20774 equivalent -hsa:4969 up:Q7Z532 equivalent -hsa:497189 up:Q6ZNK6 equivalent -hsa:497190 up:Q6UXF7 equivalent -hsa:4973 up:P78380 equivalent -hsa:4974 up:P23515 equivalent -hsa:4975 up:P47874 equivalent -hsa:4976 up:O60313 equivalent -hsa:497661 up:Q8TCD1 equivalent -hsa:4978 up:A8K0Y0 equivalent -hsa:4978 up:Q14982 equivalent -hsa:498 up:P25705 equivalent -hsa:498 up:V9HW26 equivalent -hsa:4982 up:O00300 equivalent -hsa:4983 up:O60890 equivalent -hsa:4985 up:P41143 equivalent -hsa:49854 up:Q9ULJ3 equivalent -hsa:49855 up:Q9BY12 equivalent -hsa:49856 up:A0A384MQZ3 equivalent -hsa:49856 up:Q9P2S5 equivalent -hsa:4986 up:P41145 equivalent -hsa:49860 up:Q9UBG3 equivalent -hsa:49861 up:A0A140VKA2 equivalent -hsa:49861 up:P56880 equivalent -hsa:4987 up:P41146 equivalent -hsa:4988 up:G8XRH5 equivalent -hsa:4988 up:P35372 equivalent -hsa:4990 up:O95475 equivalent -hsa:4990 up:Q6P051 equivalent -hsa:4991 up:A0A126GVV4 equivalent -hsa:4991 up:P34982 equivalent -hsa:4992 up:O43749 equivalent -hsa:4993 up:O95371 equivalent -hsa:4994 up:A0A126GVP1 equivalent -hsa:4994 up:P47881 equivalent -hsa:4995 up:A0A126GVQ3 equivalent -hsa:4995 up:P47893 equivalent -hsa:4998 up:Q13415 equivalent -hsa:4998 up:Q96F82 equivalent -hsa:4999 up:Q13416 equivalent -hsa:50 up:Q99798 equivalent -hsa:5000 up:O43929 equivalent -hsa:5001 up:A4D0P7 equivalent -hsa:5001 up:O43913 equivalent -hsa:5001 up:Q53FC8 equivalent -hsa:5002 up:Q96BI1 equivalent -hsa:5004 up:P02763 equivalent -hsa:5005 up:P19652 equivalent -hsa:5007 up:P22059 equivalent -hsa:5008 up:P13725 equivalent -hsa:5009 up:P00480 equivalent -hsa:501 up:P49419 equivalent -hsa:5010 up:O75508 equivalent -hsa:5013 up:P32242 equivalent -hsa:5015 up:F1T0D1 equivalent -hsa:5015 up:P32243 equivalent -hsa:5016 up:Q12889 equivalent -hsa:5016 up:Q86YN0 equivalent -hsa:5017 up:O14753 equivalent -hsa:5018 up:J3KNA0 equivalent -hsa:5018 up:Q15070 equivalent -hsa:5018 up:Q2M1J6 equivalent -hsa:5019 up:A0A024R040 equivalent -hsa:5019 up:P55809 equivalent -hsa:5020 up:P01178 equivalent -hsa:5020 up:X5D7M6 equivalent -hsa:5021 up:B2R9L7 equivalent -hsa:5021 up:P30559 equivalent -hsa:5023 up:P51575 equivalent -hsa:5024 up:P56373 equivalent -hsa:5025 up:Q99571 equivalent -hsa:5026 up:Q93086 equivalent -hsa:5027 up:Q99572 equivalent -hsa:5028 up:P47900 equivalent -hsa:5029 up:P41231 equivalent -hsa:5030 up:P51582 equivalent -hsa:5031 up:Q15077 equivalent -hsa:5032 up:Q96G91 equivalent -hsa:5033 up:P13674 equivalent -hsa:5033 up:Q5VSQ6 equivalent -hsa:5034 up:A0A024R8S5 equivalent -hsa:5034 up:P07237 equivalent -hsa:503497 up:Q5J8X5 equivalent -hsa:503542 up:Q5BIV9 equivalent -hsa:503582 up:A6NJG6 equivalent -hsa:5036 up:Q9UQ80 equivalent -hsa:503614 up:Q8IZN7 equivalent -hsa:503618 up:Q8WTQ1 equivalent -hsa:5037 up:D9IAI1 equivalent -hsa:5037 up:P30086 equivalent -hsa:503834 up:A6NFQ7 equivalent -hsa:503835 up:A6NLW8 equivalent -hsa:503841 up:Q8N104 equivalent -hsa:504180 up:A0A0K0K1I4 equivalent -hsa:504180 up:B2RU30 equivalent -hsa:504180 up:Q8NG35 equivalent -hsa:504190 up:P0C7N5 equivalent -hsa:504191 up:A0A126GVB8 equivalent -hsa:5042 up:Q5VX58 equivalent -hsa:5042 up:Q9H361 equivalent -hsa:5045 up:P09958 equivalent -hsa:5046 up:A2RQD9 equivalent -hsa:5046 up:P29122 equivalent -hsa:5047 up:P09466 equivalent -hsa:5048 up:P43034 equivalent -hsa:50484 up:Q7LG56 equivalent -hsa:50485 up:Q9NZC9 equivalent -hsa:50486 up:P27469 equivalent -hsa:50487 up:Q9NZ20 equivalent -hsa:50488 up:Q8N4C8 equivalent -hsa:50489 up:Q9UJ71 equivalent -hsa:5049 up:P68402 equivalent -hsa:5049 up:V9HW44 equivalent -hsa:5050 up:A0A024R0L6 equivalent -hsa:5050 up:Q15102 equivalent -hsa:50506 up:Q9NRD8 equivalent -hsa:50507 up:Q9NPH5 equivalent -hsa:50508 up:Q9HBY0 equivalent -hsa:50509 up:P25940 equivalent -hsa:5051 up:Q99487 equivalent -hsa:50511 up:Q8IZU3 equivalent -hsa:50512 up:Q9NZ53 equivalent -hsa:50515 up:Q9NPF2 equivalent -hsa:5052 up:A0A384NPQ2 equivalent -hsa:5052 up:Q06830 equivalent -hsa:5053 up:P00439 equivalent -hsa:5054 up:P05121 equivalent -hsa:5055 up:P05120 equivalent -hsa:5058 up:Q13153 equivalent -hsa:506 up:P06576 equivalent -hsa:506 up:V9HW31 equivalent -hsa:50604 up:A0A7R8C4W0 equivalent -hsa:50604 up:Q9NYY1 equivalent -hsa:50613 up:A0A140VJZ3 equivalent -hsa:50613 up:Q9H347 equivalent -hsa:50614 up:J3KNN1 equivalent -hsa:50614 up:Q9HCQ5 equivalent -hsa:50615 up:Q9HBE5 equivalent -hsa:50616 up:A0A7R8C389 equivalent -hsa:50616 up:Q9GZX6 equivalent -hsa:50617 up:Q9HBG4 equivalent -hsa:50618 up:A6H8W8 equivalent -hsa:50618 up:Q9NZM3 equivalent -hsa:50619 up:Q9H4E7 equivalent -hsa:5062 up:A8K5M4 equivalent -hsa:5062 up:Q13177 equivalent -hsa:50624 up:Q86UP6 equivalent -hsa:50626 up:P0DTL6 equivalent -hsa:50628 up:P57678 equivalent -hsa:50628 up:Q8WUM5 equivalent -hsa:5063 up:O75914 equivalent -hsa:50632 up:Q9NYX4 equivalent -hsa:50636 up:Q6IWH7 equivalent -hsa:5064 up:O75781 equivalent -hsa:50640 up:Q9NP80 equivalent -hsa:50649 up:Q9NR80 equivalent -hsa:50649 up:Q9NTG0 equivalent -hsa:50650 up:Q9NR81 equivalent -hsa:50651 up:Q9Y2W3 equivalent -hsa:5066 up:P19021 equivalent -hsa:5067 up:Q9P232 equivalent -hsa:50674 up:Q9Y4Z2 equivalent -hsa:5068 up:Q06141 equivalent -hsa:5068 up:Q53S56 equivalent -hsa:5069 up:B4DTA8 equivalent -hsa:5069 up:Q13219 equivalent -hsa:5069 up:Q7Z613 equivalent -hsa:50700 up:K7ELF7 equivalent -hsa:50700 up:Q9NYR8 equivalent -hsa:5071 up:O60260 equivalent -hsa:5071 up:X5DR79 equivalent -hsa:50717 up:B7Z8C9 equivalent -hsa:50717 up:Q5TAQ9 equivalent -hsa:5073 up:B3KN69 equivalent -hsa:5073 up:O95453 equivalent -hsa:5074 up:Q96IZ0 equivalent -hsa:5075 up:P15863 equivalent -hsa:5076 up:Q02962 equivalent -hsa:5077 up:P23760 equivalent -hsa:5079 up:Q02548 equivalent -hsa:5080 up:P26367 equivalent -hsa:5080 up:Q66SS1 equivalent -hsa:50801 up:Q2YDA1 equivalent -hsa:50801 up:Q9NYG8 equivalent -hsa:50804 up:Q9P2K5 equivalent -hsa:50805 up:P78413 equivalent -hsa:50807 up:Q9ULH1 equivalent -hsa:50808 up:Q7Z4Y4 equivalent -hsa:50808 up:Q9UIJ7 equivalent -hsa:50809 up:Q5SSJ5 equivalent -hsa:5081 up:P23759 equivalent -hsa:50810 up:Q9Y3E1 equivalent -hsa:50813 up:Q9UBW8 equivalent -hsa:50814 up:A0A384NPZ7 equivalent -hsa:50814 up:Q15738 equivalent -hsa:5082 up:Q13371 equivalent -hsa:5083 up:P55771 equivalent -hsa:5083 up:Q2L4T1 equivalent -hsa:50831 up:Q9NYW6 equivalent -hsa:50832 up:Q9NYW5 equivalent -hsa:50833 up:A0A8E5KFD5 equivalent -hsa:50833 up:Q9NYV7 equivalent -hsa:50834 up:Q502V6 equivalent -hsa:50834 up:Q9NYW7 equivalent -hsa:50835 up:Q9NYW1 equivalent -hsa:50836 up:Q9NYW2 equivalent -hsa:50837 up:Q9NYW3 equivalent -hsa:50838 up:Q9NYV9 equivalent -hsa:50839 up:Q9NYW0 equivalent -hsa:50840 up:Q9NYV8 equivalent -hsa:50846 up:O43323 equivalent -hsa:50848 up:Q6FIB4 equivalent -hsa:50848 up:Q9Y624 equivalent -hsa:50852 up:C9JF66 reverse -hsa:50852 up:Q6PIZ9 equivalent -hsa:50853 up:O15195 equivalent -hsa:50855 up:Q9NPB6 equivalent -hsa:50856 up:Q9UMR7 equivalent -hsa:50859 up:Q9BQ16 equivalent -hsa:50861 up:Q9NZ72 equivalent -hsa:50862 up:Q8WVD5 equivalent -hsa:50863 up:Q9P121 equivalent -hsa:50865 up:Q9NRV9 equivalent -hsa:5087 up:A8K5V0 equivalent -hsa:5087 up:P40424 equivalent -hsa:5089 up:A0A024RCR3 equivalent -hsa:5089 up:P40425 equivalent -hsa:509 up:P36542 equivalent -hsa:509 up:Q8TAS0 equivalent -hsa:5090 up:P40426 equivalent -hsa:5090 up:Q96AL5 equivalent -hsa:5091 up:P11498 equivalent -hsa:5092 up:P61457 equivalent -hsa:5093 up:Q15365 equivalent -hsa:5093 up:Q53SS8 equivalent -hsa:50937 up:Q4KMG0 equivalent -hsa:50939 up:F1T0J3 equivalent -hsa:50939 up:Q9BZV3 equivalent -hsa:5094 up:Q15366 equivalent -hsa:50940 up:Q9HCR9 equivalent -hsa:50943 up:Q9BZS1 equivalent -hsa:50944 up:Q9Y566 equivalent -hsa:50945 up:B3KUL8 equivalent -hsa:50945 up:Q9Y458 equivalent -hsa:5095 up:P05165 equivalent -hsa:5096 up:P05166 equivalent -hsa:50964 up:Q9BQB4 equivalent -hsa:5097 up:A8K0E7 equivalent -hsa:5097 up:B4E2D8 equivalent -hsa:5097 up:Q08174 equivalent -hsa:5098 up:Q9BR81 equivalent -hsa:5098 up:Q9UN70 equivalent -hsa:5099 up:O60245 equivalent -hsa:50999 up:Q9Y3A6 equivalent -hsa:51 up:Q15067 equivalent -hsa:5100 up:O95206 equivalent -hsa:51000 up:B2R8V5 equivalent -hsa:51000 up:Q9H1N7 equivalent -hsa:51001 up:Q96E29 equivalent -hsa:51002 up:Q9Y3C4 equivalent -hsa:51003 up:Q9Y3C7 equivalent -hsa:51004 up:Q9Y2Z9 equivalent -hsa:51005 up:Q9Y303 equivalent -hsa:51006 up:Q9NQQ7 equivalent -hsa:51008 up:Q8N9N2 equivalent -hsa:51009 up:Q9GZP9 equivalent -hsa:5101 up:Q9HC56 equivalent -hsa:5101 up:X5D7N0 equivalent -hsa:51010 up:Q9NQT5 equivalent -hsa:51011 up:Q96GK7 equivalent -hsa:51012 up:Q9Y3B1 equivalent -hsa:51013 up:Q9Y3B2 equivalent -hsa:51014 up:Q9Y3B3 equivalent -hsa:51015 up:Q96CN7 equivalent -hsa:51016 up:Q9Y3B6 equivalent -hsa:51018 up:Q9Y3B9 equivalent -hsa:51019 up:Q9Y3C0 equivalent -hsa:51020 up:A0A140VJK7 equivalent -hsa:51020 up:Q7Z4H3 equivalent -hsa:51021 up:Q9Y3D3 equivalent -hsa:51022 up:Q9NS18 equivalent -hsa:51023 up:Q9Y3D5 equivalent -hsa:51024 up:Q9Y3D6 equivalent -hsa:51025 up:Q9Y3D7 equivalent -hsa:51026 up:Q9Y3E0 equivalent -hsa:51027 up:Q9Y3E2 equivalent -hsa:51028 up:Q86VN1 equivalent -hsa:51029 up:Q9BSY9 equivalent -hsa:51030 up:Q9NYZ1 equivalent -hsa:51031 up:Q9HC38 equivalent -hsa:51032 up:P08218 equivalent -hsa:51032 up:Q6ISP9 equivalent -hsa:51035 up:Q04323 equivalent -hsa:5104 up:B4DDH1 equivalent -hsa:5104 up:P05154 equivalent -hsa:51042 up:O00488 equivalent -hsa:51043 up:O15156 equivalent -hsa:51046 up:O43173 equivalent -hsa:51046 up:Q59GW3 equivalent -hsa:5105 up:P35558 equivalent -hsa:51050 up:O43692 equivalent -hsa:51052 up:P81277 equivalent -hsa:51052 up:Q53QV7 equivalent -hsa:51053 up:O75496 equivalent -hsa:51056 up:P28838 equivalent -hsa:51057 up:O95876 equivalent -hsa:51058 up:Q5VV52 equivalent -hsa:51059 up:Q49AJ0 equivalent -hsa:5106 up:A0A384MTT2 equivalent -hsa:5106 up:Q16822 equivalent -hsa:51060 up:O95881 equivalent -hsa:51061 up:Q6PKC3 equivalent -hsa:51062 up:A0A0S2Z5B0 equivalent -hsa:51062 up:Q53F53 equivalent -hsa:51062 up:Q8WXF7 equivalent -hsa:51063 up:Q9HA72 equivalent -hsa:51065 up:Q71UM5 equivalent -hsa:51066 up:Q9Y2M2 equivalent -hsa:51067 up:Q9Y2Z4 equivalent -hsa:51068 up:Q96D46 equivalent -hsa:51069 up:Q5T653 equivalent -hsa:51070 up:Q9Y314 equivalent -hsa:51071 up:Q9Y315 equivalent -hsa:51072 up:A8K3Y8 equivalent -hsa:51072 up:Q9Y316 equivalent -hsa:51073 up:Q9BYD3 equivalent -hsa:51074 up:Q96GX9 equivalent -hsa:51075 up:Q9Y320 equivalent -hsa:51076 up:Q9NTM9 equivalent -hsa:51077 up:Q4FZ45 equivalent -hsa:51077 up:Q9Y324 equivalent -hsa:51078 up:Q8WY91 equivalent -hsa:51079 up:Q9P0J0 equivalent -hsa:5108 up:A2RUU9 equivalent -hsa:5108 up:Q15154 equivalent -hsa:51081 up:Q9Y2R9 equivalent -hsa:51082 up:P0DPB6 equivalent -hsa:51083 up:P22466 equivalent -hsa:51084 up:Q9Y2S2 equivalent -hsa:51084 up:V9HWG2 equivalent -hsa:51085 up:Q9NP71 equivalent -hsa:51086 up:Q59H18 equivalent -hsa:51087 up:A0A384MDP4 equivalent -hsa:51087 up:Q9Y2T7 equivalent -hsa:51088 up:Q7Z6D5 equivalent -hsa:51088 up:Q96PQ7 equivalent -hsa:51090 up:Q9Y342 equivalent -hsa:51091 up:Q9HD40 equivalent -hsa:51092 up:Q8NBJ9 equivalent -hsa:51093 up:Q96FB5 equivalent -hsa:51094 up:Q96A54 equivalent -hsa:51095 up:Q96Q11 equivalent -hsa:51096 up:Q9Y5J1 equivalent -hsa:51097 up:A0A384NPM7 equivalent -hsa:51097 up:Q8NBX0 equivalent -hsa:51098 up:Q9Y366 equivalent -hsa:51099 up:A0A0S2Z5D6 equivalent -hsa:51099 up:Q8WTS1 equivalent -hsa:5110 up:P22061 equivalent -hsa:51100 up:A0A140VJU5 equivalent -hsa:51100 up:Q9Y371 equivalent -hsa:51101 up:B2R9B8 equivalent -hsa:51101 up:Q96GY0 equivalent -hsa:51102 up:Q9BV79 equivalent -hsa:51103 up:Q9Y375 equivalent -hsa:51104 up:A0A384MEH9 equivalent -hsa:51104 up:Q5VST6 equivalent -hsa:51105 up:A8MW92 equivalent -hsa:51106 up:E5KTM5 equivalent -hsa:51106 up:Q8WVM0 equivalent -hsa:51107 up:Q96BI3 equivalent -hsa:51108 up:Q9H1A3 equivalent -hsa:51109 up:A0A0S2Z583 equivalent -hsa:51109 up:Q8TC12 equivalent -hsa:5111 up:P12004 equivalent -hsa:51110 up:A0A024R811 equivalent -hsa:51110 up:Q53H82 equivalent -hsa:51111 up:Q4FZB7 equivalent -hsa:51112 up:Q8WVT3 equivalent -hsa:51114 up:Q9Y397 equivalent -hsa:51115 up:Q96DB5 equivalent -hsa:51116 up:Q9Y399 equivalent -hsa:51117 up:Q9Y3A0 equivalent -hsa:51118 up:Q9Y3A2 equivalent -hsa:51119 up:A0A0S2Z5I7 equivalent -hsa:51119 up:Q9Y3A5 equivalent -hsa:51121 up:Q9UNX3 equivalent -hsa:51122 up:Q86X83 equivalent -hsa:51123 up:Q9Y5V0 equivalent -hsa:51124 up:Q9Y5U9 equivalent -hsa:51125 up:Q7Z5G4 equivalent -hsa:51126 up:P61599 equivalent -hsa:51127 up:Q9Y577 equivalent -hsa:51128 up:Q9Y6B6 equivalent -hsa:51129 up:Q9BY76 equivalent -hsa:51130 up:Q9Y575 equivalent -hsa:51131 up:B4DDL5 equivalent -hsa:51131 up:Q9UIL8 equivalent -hsa:51132 up:Q9NVW2 equivalent -hsa:51133 up:Q9Y597 equivalent -hsa:51134 up:Q9Y592 equivalent -hsa:51135 up:B4E359 equivalent -hsa:51135 up:Q69FE3 equivalent -hsa:51135 up:Q9NWZ3 equivalent -hsa:51136 up:Q5M7Z0 equivalent -hsa:51138 up:A0A0S2Z5H7 equivalent -hsa:51138 up:B3KM48 equivalent -hsa:51138 up:Q9BT78 equivalent -hsa:51141 up:Q9Y5U4 equivalent -hsa:51142 up:Q9Y6H1 equivalent -hsa:51143 up:Q9Y6G9 equivalent -hsa:51144 up:Q53GQ0 equivalent -hsa:51146 up:Q9UNA3 equivalent -hsa:51147 up:Q9UNL4 equivalent -hsa:51148 up:Q5T4B2 equivalent -hsa:51149 up:Q6NTE8 equivalent -hsa:51150 up:Q9BRK5 equivalent -hsa:51151 up:A0A076YGN1 equivalent -hsa:51151 up:A0A076YIB8 equivalent -hsa:51151 up:Q9UMX9 equivalent -hsa:51154 up:Q9UKD2 equivalent -hsa:51155 up:Q9UK76 equivalent -hsa:51156 up:Q9UK55 equivalent -hsa:51157 up:Q9UK33 equivalent -hsa:5116 up:O95613 equivalent -hsa:51160 up:Q548N1 equivalent -hsa:51160 up:Q9UK41 equivalent -hsa:51161 up:Q9UK00 equivalent -hsa:51162 up:Q9UHF1 equivalent -hsa:51163 up:Q9UK59 equivalent -hsa:51164 up:A0A0S2Z5D4 equivalent -hsa:51164 up:Q9NSJ5 equivalent -hsa:51164 up:Q9UJW0 equivalent -hsa:51166 up:Q4W5N8 equivalent -hsa:51166 up:Q8N5Z0 equivalent -hsa:51167 up:Q7L1T6 equivalent -hsa:51168 up:Q9UKN7 equivalent -hsa:51170 up:Q8NBQ5 equivalent -hsa:51171 up:A0A140VJH8 equivalent -hsa:51171 up:Q9BPX1 equivalent -hsa:51172 up:Q9UK23 equivalent -hsa:51174 up:Q9UJT1 equivalent -hsa:51175 up:Q9UJT0 equivalent -hsa:51176 up:Q659G9 equivalent -hsa:51176 up:Q9UJU2 equivalent -hsa:51177 up:Q53GL0 equivalent -hsa:51179 up:Q9NYQ3 equivalent -hsa:5118 up:Q15113 equivalent -hsa:51181 up:A0A384NY14 equivalent -hsa:51181 up:Q7Z4W1 equivalent -hsa:51182 up:Q0VDF9 equivalent -hsa:51184 up:Q9UHW5 equivalent -hsa:51185 up:Q96SW2 equivalent -hsa:51186 up:Q9UHQ7 equivalent -hsa:51187 up:Q9UHA3 equivalent -hsa:51188 up:Q9UHA2 equivalent -hsa:5119 up:Q9HD42 equivalent -hsa:51191 up:B4DXV3 equivalent -hsa:51191 up:Q9UII4 equivalent -hsa:51192 up:Q9UBR5 equivalent -hsa:51193 up:Q9UID6 equivalent -hsa:51194 up:Q9UI26 equivalent -hsa:51195 up:Q9UHV5 equivalent -hsa:51196 up:Q9P212 equivalent -hsa:51199 up:Q8N4C6 equivalent -hsa:51200 up:A4D1M3 equivalent -hsa:51200 up:Q9UI42 equivalent -hsa:51201 up:A0A140VKD9 equivalent -hsa:51201 up:Q9UIJ5 equivalent -hsa:51202 up:Q9H0S4 equivalent -hsa:51203 up:Q9BXS6 equivalent -hsa:51204 up:Q9BSH4 equivalent -hsa:51205 up:Q9NPH0 equivalent -hsa:51206 up:Q9HCN6 equivalent -hsa:51207 up:Q6B8I1 equivalent -hsa:51207 up:Q9UII6 equivalent -hsa:51208 up:P56856 equivalent -hsa:51209 up:Q9NP90 equivalent -hsa:5121 up:P48539 equivalent -hsa:51213 up:Q9P127 equivalent -hsa:51218 up:A0A384MDT9 equivalent -hsa:51218 up:Q86SX6 equivalent -hsa:5122 up:P29120 equivalent -hsa:51222 up:Q9P2Y4 equivalent -hsa:51224 up:Q8IYF1 equivalent -hsa:51225 up:Q9P2A4 equivalent -hsa:51226 up:Q9P299 equivalent -hsa:51227 up:P57054 equivalent -hsa:51228 up:Q9NZD2 equivalent -hsa:51230 up:Q9BVI0 equivalent -hsa:51231 up:Q8IV63 equivalent -hsa:51232 up:Q9NZV1 equivalent -hsa:51233 up:Q6PGQ1 equivalent -hsa:51234 up:A0A024R9N3 equivalent -hsa:51234 up:Q5J8M3 equivalent -hsa:51236 up:Q96BK8 equivalent -hsa:51236 up:Q9BTY7 equivalent -hsa:51237 up:Q8WU39 equivalent -hsa:51239 up:Q53RE8 equivalent -hsa:51241 up:Q9P0S2 equivalent -hsa:51244 up:Q6PII3 equivalent -hsa:51246 up:Q8N114 equivalent -hsa:51247 up:Q49AE6 equivalent -hsa:51247 up:Q9BPZ3 equivalent -hsa:51248 up:Q5EBL8 equivalent -hsa:51249 up:Q5SWH9 equivalent -hsa:5125 up:Q92824 equivalent -hsa:51250 up:Q9P0P8 equivalent -hsa:51251 up:Q9H0P0 equivalent -hsa:51252 up:B3KV66 equivalent -hsa:51252 up:Q8IXR5 equivalent -hsa:51253 up:Q9BZE1 equivalent -hsa:51255 up:Q9P0P0 equivalent -hsa:51256 up:Q9P0N9 equivalent -hsa:51257 up:Q9P0N8 equivalent -hsa:51258 up:Q4U2R6 equivalent -hsa:51259 up:Q9P0N5 equivalent -hsa:5126 up:P16519 equivalent -hsa:51260 up:Q9BVG4 equivalent -hsa:51263 up:Q8TCC3 equivalent -hsa:51264 up:Q9P0M9 equivalent -hsa:51265 up:Q8IVW4 equivalent -hsa:51266 up:Q9P126 equivalent -hsa:51267 up:Q8NC01 equivalent -hsa:51268 up:Q9P0Z9 equivalent -hsa:5127 up:A0A140VK97 equivalent -hsa:5127 up:Q00536 equivalent -hsa:5127 up:Q9BRL4 equivalent -hsa:51270 up:Q5H9I0 equivalent -hsa:51271 up:A0A6G6AA68 equivalent -hsa:51271 up:Q9NZ09 equivalent -hsa:51272 up:Q9NYM9 equivalent -hsa:51274 up:P57682 equivalent -hsa:51276 up:A8K5U8 equivalent -hsa:51276 up:Q7Z3V5 equivalent -hsa:51277 up:Q9NZQ0 equivalent -hsa:51278 up:Q5VY09 equivalent -hsa:51279 up:Q9NZP8 equivalent -hsa:5128 up:Q00537 equivalent -hsa:51280 up:B3KNK9 equivalent -hsa:51280 up:Q8NBJ4 equivalent -hsa:51281 up:Q9P2S6 equivalent -hsa:51282 up:P57086 equivalent -hsa:51282 up:Q9NZG6 equivalent -hsa:51283 up:Q9NZS9 equivalent -hsa:51284 up:B2R9N9 equivalent -hsa:51284 up:Q9NYK1 equivalent -hsa:51285 up:Q9NYN1 equivalent -hsa:51286 up:Q8N111 equivalent -hsa:51287 up:Q9NYJ1 equivalent -hsa:51289 up:Q9NSD7 equivalent -hsa:5129 up:Q07002 equivalent -hsa:5129 up:Q59G02 equivalent -hsa:51290 up:Q86TD3 equivalent -hsa:51290 up:Q96RQ1 equivalent -hsa:51291 up:A0A024R7N1 equivalent -hsa:51291 up:B4DLZ1 equivalent -hsa:51291 up:Q9P107 equivalent -hsa:51292 up:Q9P2T1 equivalent -hsa:51293 up:Q9NPF0 equivalent -hsa:51294 up:Q9NPG4 equivalent -hsa:51295 up:Q9BQ95 equivalent -hsa:51296 up:Q8IY34 equivalent -hsa:51297 up:Q9NP55 equivalent -hsa:51298 up:Q9P2T0 equivalent -hsa:51299 up:Q9NPD7 equivalent -hsa:513 up:P30049 equivalent -hsa:5130 up:B4E322 equivalent -hsa:5130 up:P49585 equivalent -hsa:51300 up:Q9NPL8 equivalent -hsa:51302 up:Q9NYL5 equivalent -hsa:51303 up:Q9NYL4 equivalent -hsa:51304 up:Q9NYG2 equivalent -hsa:51305 up:Q9NPC2 equivalent -hsa:51306 up:A0A2X0SG06 equivalent -hsa:51306 up:Q9NYF5 equivalent -hsa:51307 up:Q9NYF3 equivalent -hsa:51308 up:A8K3D2 equivalent -hsa:51308 up:Q9BRK0 equivalent -hsa:51309 up:Q9P291 equivalent -hsa:51310 up:Q8WUG5 equivalent -hsa:51311 up:Q9NR97 equivalent -hsa:51312 up:Q71JB2 equivalent -hsa:51312 up:Q9NYZ2 equivalent -hsa:51313 up:Q6UWH4 equivalent -hsa:51313 up:Q9NYZ0 equivalent -hsa:51314 up:Q8N427 equivalent -hsa:51315 up:Q9NPI7 equivalent -hsa:51316 up:Q9NZF1 equivalent -hsa:51316 up:X2BQ60 equivalent -hsa:51317 up:Q96BD5 equivalent -hsa:51318 up:Q9NZE8 equivalent -hsa:51319 up:Q96IZ7 equivalent -hsa:5132 up:P20941 equivalent -hsa:5132 up:Q52LP8 equivalent -hsa:51320 up:Q5U5Q3 equivalent -hsa:51321 up:Q86W34 equivalent -hsa:51322 up:Q9BTA9 equivalent -hsa:51324 up:Q9NZD8 equivalent -hsa:51326 up:A8K0M5 equivalent -hsa:51326 up:Q8IVW1 equivalent -hsa:51327 up:Q549J4 equivalent -hsa:51327 up:Q9NZD4 equivalent -hsa:51329 up:Q66PJ3 equivalent -hsa:5133 up:A0A0M3M0G7 equivalent -hsa:5133 up:Q15116 equivalent -hsa:51330 up:Q9NP84 equivalent -hsa:51332 up:Q9NRC6 equivalent -hsa:51333 up:B2R9V3 equivalent -hsa:51333 up:Q7L3S4 equivalent -hsa:51334 up:Q569H4 equivalent -hsa:51335 up:Q9NPE2 equivalent -hsa:51337 up:Q8WUY1 equivalent -hsa:51338 up:Q96JQ5 equivalent -hsa:51339 up:Q9NYF0 equivalent -hsa:5134 up:Q16342 equivalent -hsa:51340 up:Q69YP1 equivalent -hsa:51340 up:Q9BZJ0 equivalent -hsa:51341 up:O95365 equivalent -hsa:51343 up:Q9UM11 equivalent -hsa:51347 up:Q9H2K8 equivalent -hsa:51348 up:Q9NZS2 equivalent -hsa:51350 up:Q01546 equivalent -hsa:51351 up:Q03924 equivalent -hsa:5136 up:P54750 equivalent -hsa:51360 up:O43462 equivalent -hsa:51361 up:Q9UJC3 equivalent -hsa:51362 up:O60508 equivalent -hsa:51363 up:Q7LFX5 equivalent -hsa:51364 up:O75800 equivalent -hsa:51365 up:Q53H76 equivalent -hsa:51366 up:O95071 equivalent -hsa:51367 up:Q969H6 equivalent -hsa:51368 up:Q9Y6I9 equivalent -hsa:5137 up:Q14123 equivalent -hsa:51371 up:Q9Y244 equivalent -hsa:51372 up:Q9Y2S6 equivalent -hsa:51373 up:Q9Y2R5 equivalent -hsa:51374 up:Q6UW56 equivalent -hsa:51375 up:B4DP69 equivalent -hsa:51375 up:E9PNL2 equivalent -hsa:51375 up:Q9UNH6 equivalent -hsa:51377 up:Q9Y5K5 equivalent -hsa:51378 up:Q9Y264 equivalent -hsa:51379 up:Q8IUI8 equivalent -hsa:5138 up:O00408 equivalent -hsa:5138 up:Q8IW54 equivalent -hsa:51380 up:Q86V02 equivalent -hsa:51380 up:Q9Y600 equivalent -hsa:51382 up:Q9Y5K8 equivalent -hsa:51384 up:Q9UBV4 equivalent -hsa:51385 up:Q86UQ0 equivalent -hsa:51386 up:Q9Y262 equivalent -hsa:51388 up:Q9Y221 equivalent -hsa:51389 up:Q9H446 equivalent -hsa:5139 up:Q14432 equivalent -hsa:51390 up:Q9NVV5 equivalent -hsa:51393 up:Q9Y5S1 equivalent -hsa:51397 up:Q9Y6G5 equivalent -hsa:51398 up:Q9Y284 equivalent -hsa:51399 up:Q9Y296 equivalent -hsa:514 up:P56381 equivalent -hsa:5140 up:A7E2E5 equivalent -hsa:5140 up:Q13370 equivalent -hsa:51400 up:A0A140VK39 equivalent -hsa:51400 up:Q9Y570 equivalent -hsa:51406 up:Q9UMY1 equivalent -hsa:51409 up:A0A140VK98 equivalent -hsa:51409 up:Q9Y5R4 equivalent -hsa:5141 up:P27815 equivalent -hsa:51411 up:Q9UBW5 equivalent -hsa:51412 up:O94805 equivalent -hsa:5142 up:Q07343 equivalent -hsa:5142 up:X5DNX5 equivalent -hsa:51421 up:Q9Y2J4 equivalent -hsa:51422 up:A0A090N8Q6 equivalent -hsa:51422 up:Q9UGJ0 equivalent -hsa:51426 up:Q9UBT6 equivalent -hsa:51427 up:Q9UII5 equivalent -hsa:51428 up:B3KRK2 reverse -hsa:51428 up:Q9UJV9 equivalent -hsa:51429 up:Q9Y5X1 equivalent -hsa:5143 up:O43849 equivalent -hsa:5143 up:Q08493 equivalent -hsa:5143 up:Q32MM7 equivalent -hsa:51430 up:Q9UBS9 equivalent -hsa:51433 up:Q9UJX4 equivalent -hsa:51435 up:Q6AZY7 equivalent -hsa:51438 up:Q9UBF1 equivalent -hsa:51439 up:Q9UBU6 equivalent -hsa:5144 up:A0A140VJR0 equivalent -hsa:5144 up:Q08499 equivalent -hsa:51440 up:Q9UM19 equivalent -hsa:51441 up:Q9Y5A9 equivalent -hsa:51442 up:Q99990 equivalent -hsa:51444 up:A0A140VJT9 equivalent -hsa:51444 up:Q8WVD3 equivalent -hsa:51447 up:B2RCP4 equivalent -hsa:51447 up:Q9UHH9 equivalent -hsa:51449 up:Q9UHG3 equivalent -hsa:5145 up:P16499 equivalent -hsa:51450 up:A0A140VJS2 equivalent -hsa:51450 up:Q99811 equivalent -hsa:51451 up:Q9UIC8 equivalent -hsa:51454 up:Q9UBP9 equivalent -hsa:51455 up:Q9UBZ9 equivalent -hsa:51458 up:Q9UBD6 equivalent -hsa:5146 up:P51160 equivalent -hsa:51460 up:Q9UHJ3 equivalent -hsa:51463 up:B7ZAQ6 equivalent -hsa:51463 up:P0CG08 equivalent -hsa:51463 up:X5D7G6 equivalent -hsa:51465 up:Q9Y385 equivalent -hsa:51466 up:A0A024R6K5 equivalent -hsa:51466 up:Q9UI08 equivalent -hsa:5147 up:O43924 equivalent -hsa:5147 up:Q6IB24 equivalent -hsa:51473 up:Q9UHG0 equivalent -hsa:51474 up:Q9UHB6 equivalent -hsa:51475 up:Q9NPB3 equivalent -hsa:51477 up:A0A140VK73 equivalent -hsa:51477 up:Q9NPH2 equivalent -hsa:51478 up:P56937 equivalent -hsa:51479 up:Q9P2R3 equivalent -hsa:5148 up:P18545 equivalent -hsa:51480 up:Q9H322 equivalent -hsa:51481 up:Q9NNX9 equivalent -hsa:5149 up:Q13956 equivalent -hsa:51490 up:Q5T280 equivalent -hsa:51491 up:Q9Y3C1 equivalent -hsa:51493 up:Q9Y3I0 equivalent -hsa:51495 up:Q9P035 equivalent -hsa:51496 up:Q05D32 equivalent -hsa:51497 up:H0UI80 equivalent -hsa:51497 up:Q8IXH7 equivalent -hsa:51499 up:O43715 equivalent -hsa:515 up:P24539 equivalent -hsa:515 up:Q08ET0 equivalent -hsa:5150 up:Q13946 equivalent -hsa:51501 up:Q53FT3 equivalent -hsa:51503 up:Q9P013 equivalent -hsa:51504 up:Q9UI30 equivalent -hsa:51506 up:Q9Y3C8 equivalent -hsa:51507 up:Q9BY42 equivalent -hsa:5151 up:O60658 equivalent -hsa:51510 up:Q9NZZ3 equivalent -hsa:51512 up:Q9NYZ3 equivalent -hsa:51513 up:Q9Y603 equivalent -hsa:51514 up:Q9NZJ0 equivalent -hsa:51517 up:Q9NZQ3 equivalent -hsa:5152 up:A0A0S2Z4T6 equivalent -hsa:5152 up:O76083 equivalent -hsa:51520 up:Q9P2J5 equivalent -hsa:51522 up:Q9P0S9 equivalent -hsa:51523 up:Q7LFL8 equivalent -hsa:51524 up:Q9NPI0 equivalent -hsa:51526 up:Q9NX31 equivalent -hsa:51527 up:Q9P0R6 equivalent -hsa:51528 up:Q9P055 equivalent -hsa:51529 up:Q9NYG5 equivalent -hsa:5153 up:Q01064 equivalent -hsa:51530 up:Q86WB0 equivalent -hsa:51531 up:Q9BU70 equivalent -hsa:51533 up:A0A024R336 equivalent -hsa:51533 up:A8K856 equivalent -hsa:51533 up:Q9BWX1 equivalent -hsa:51534 up:Q9NP79 equivalent -hsa:51535 up:Q8NEY8 equivalent -hsa:51537 up:Q9UDX5 equivalent -hsa:51538 up:B4DYA9 equivalent -hsa:51538 up:Q9NP64 equivalent -hsa:5154 up:P04085 equivalent -hsa:51540 up:A0A0A0MQU4 equivalent -hsa:51540 up:B4DDP9 equivalent -hsa:51540 up:Q59FK2 equivalent -hsa:51540 up:Q96I15 equivalent -hsa:51542 up:Q9P1Q0 equivalent -hsa:51545 up:Q9P0T4 equivalent -hsa:51547 up:Q9NRC8 equivalent -hsa:51548 up:Q8N6T7 equivalent -hsa:5155 up:A0A384NYY3 equivalent -hsa:5155 up:P01127 equivalent -hsa:51550 up:Q9BW66 equivalent -hsa:51552 up:P61106 equivalent -hsa:51554 up:Q9NPB9 equivalent -hsa:51555 up:Q8IYB4 equivalent -hsa:51557 up:Q5TDP6 equivalent -hsa:51559 up:Q86UY8 equivalent -hsa:5156 up:P16234 equivalent -hsa:51560 up:Q9NRW1 equivalent -hsa:51561 up:Q9NPF7 equivalent -hsa:51562 up:B2RCV0 equivalent -hsa:51562 up:Q9NS73 equivalent -hsa:51564 up:Q8WUI4 equivalent -hsa:51566 up:Q9UH62 equivalent -hsa:51567 up:A0A384MDM5 equivalent -hsa:51567 up:O95551 equivalent -hsa:51569 up:P61960 equivalent -hsa:5157 up:Q15198 equivalent -hsa:51571 up:Q9NUQ9 equivalent -hsa:51573 up:Q9NZC3 equivalent -hsa:51574 up:Q4G0J3 equivalent -hsa:51575 up:Q9H501 equivalent -hsa:5158 up:P35913 equivalent -hsa:51582 up:O14977 equivalent -hsa:51585 up:O94913 equivalent -hsa:51586 up:Q6PKB8 equivalent -hsa:51586 up:Q96RN5 equivalent -hsa:51588 up:B3KMR4 equivalent -hsa:51588 up:Q8N2W9 equivalent -hsa:5159 up:P09619 equivalent -hsa:5159 up:Q59F04 equivalent -hsa:51592 up:B3KN30 equivalent -hsa:51592 up:Q9UPN9 equivalent -hsa:51593 up:Q9BXP5 equivalent -hsa:51594 up:A2RRP1 equivalent -hsa:51594 up:G1UI26 equivalent -hsa:51596 up:O60888 equivalent -hsa:51599 up:Q86X29 equivalent -hsa:516 up:P05496 equivalent -hsa:516 up:Q6FIH7 equivalent -hsa:5160 up:P08559 equivalent -hsa:51601 up:Q9Y234 equivalent -hsa:51602 up:Q9Y2X3 equivalent -hsa:51603 up:C4B4C6 equivalent -hsa:51603 up:Q8N6R0 equivalent -hsa:51604 up:Q969N2 equivalent -hsa:51605 up:Q9UJA5 equivalent -hsa:51606 up:Q9UI12 equivalent -hsa:51608 up:Q7L5D6 equivalent -hsa:5161 up:P29803 equivalent -hsa:51611 up:B3KWP1 equivalent -hsa:51611 up:Q9H2P9 equivalent -hsa:51614 up:A2TJK5 equivalent -hsa:51614 up:Q9Y282 equivalent -hsa:51616 up:Q9HBM6 equivalent -hsa:51617 up:Q9Y328 equivalent -hsa:51619 up:Q9Y2X8 equivalent -hsa:5162 up:A0A384MDR8 equivalent -hsa:5162 up:P11177 equivalent -hsa:51621 up:Q9Y2Y9 equivalent -hsa:51621 up:X5DNR2 equivalent -hsa:51622 up:P86790 equivalent -hsa:51622 up:P86791 equivalent -hsa:51626 up:Q8TCX1 equivalent -hsa:51629 up:Q9BZJ4 equivalent -hsa:5163 up:Q15118 equivalent -hsa:51631 up:Q9Y383 equivalent -hsa:51633 up:A0A087X0W9 equivalent -hsa:51633 up:Q8N6M0 equivalent -hsa:51634 up:Q9Y388 equivalent -hsa:51635 up:Q9Y394 equivalent -hsa:51637 up:Q549M8 equivalent -hsa:51637 up:Q9Y224 equivalent -hsa:51639 up:Q9Y3B4 equivalent -hsa:5164 up:Q15119 equivalent -hsa:51642 up:Q96GC5 equivalent -hsa:51643 up:Q9HC24 equivalent -hsa:51645 up:Q9Y3C6 equivalent -hsa:51646 up:P62699 equivalent -hsa:51647 up:Q9Y3D0 equivalent -hsa:51649 up:Q9Y3D9 equivalent -hsa:5165 up:Q15120 equivalent -hsa:51650 up:A4D1T3 equivalent -hsa:51650 up:Q9Y291 equivalent -hsa:51651 up:Q9Y3E5 equivalent -hsa:51652 up:Q9Y3E7 equivalent -hsa:51654 up:Q96SZ6 equivalent -hsa:51655 up:Q9Y272 equivalent -hsa:51657 up:Q9Y6J8 equivalent -hsa:51659 up:Q9Y248 equivalent -hsa:5166 up:A4D1H4 equivalent -hsa:5166 up:Q16654 equivalent -hsa:51660 up:Q9Y5U8 equivalent -hsa:51661 up:Q9Y680 equivalent -hsa:51663 up:Q05D65 equivalent -hsa:51663 up:Q96KR1 equivalent -hsa:51665 up:Q9Y576 equivalent -hsa:51666 up:Q9Y574 equivalent -hsa:51667 up:H3BM74 equivalent -hsa:51667 up:Q9Y5A7 equivalent -hsa:51668 up:Q9Y547 equivalent -hsa:51669 up:A0A140VK59 equivalent -hsa:51669 up:Q96BY9 equivalent -hsa:5167 up:P22413 equivalent -hsa:51673 up:Q9BW30 equivalent -hsa:51676 up:Q96Q27 equivalent -hsa:51678 up:Q9NZW5 equivalent -hsa:5168 up:Q13822 equivalent -hsa:51684 up:Q9UMX1 equivalent -hsa:51686 up:Q9UMX2 equivalent -hsa:5169 up:O14638 equivalent -hsa:51690 up:Q9UK45 equivalent -hsa:51691 up:A4D0W0 equivalent -hsa:51691 up:O95777 equivalent -hsa:51692 up:Q9UKF6 equivalent -hsa:51693 up:Q9UL33 equivalent -hsa:51696 up:Q9UBI9 equivalent -hsa:51699 up:Q9UBQ0 equivalent -hsa:517 up:Q06055 equivalent -hsa:5170 up:O15530 equivalent -hsa:51700 up:A8K237 equivalent -hsa:51700 up:Q6BCY4 equivalent -hsa:51701 up:Q9UBE8 equivalent -hsa:51702 up:Q9ULW8 equivalent -hsa:51703 up:Q9ULC5 equivalent -hsa:51704 up:Q9NZH0 equivalent -hsa:51705 up:Q4W5J1 equivalent -hsa:51705 up:Q9ULC0 equivalent -hsa:51706 up:Q9UHQ9 equivalent -hsa:51710 up:P15621 equivalent -hsa:51714 up:P62341 equivalent -hsa:51715 up:Q9ULC3 equivalent -hsa:51719 up:Q9Y376 equivalent -hsa:5172 up:O43511 equivalent -hsa:51720 up:Q96RL1 equivalent -hsa:51725 up:Q9UH90 equivalent -hsa:51726 up:Q9UBS4 equivalent -hsa:51727 up:A0A494BXC7 equivalent -hsa:51727 up:P30085 equivalent -hsa:51728 up:Q9Y2Y1 equivalent -hsa:51729 up:Q9Y2W2 equivalent -hsa:5173 up:P01213 equivalent -hsa:51733 up:B3KNC1 equivalent -hsa:51733 up:Q9UBR1 equivalent -hsa:51734 up:Q9NZV6 equivalent -hsa:51735 up:Q8TEU7 equivalent -hsa:51738 up:Q9UBU3 equivalent -hsa:5174 up:Q5T2W1 equivalent -hsa:51741 up:A0A411HBC7 equivalent -hsa:51741 up:Q9NZC7 equivalent -hsa:51742 up:Q4LE39 equivalent -hsa:51744 up:Q9BZW8 equivalent -hsa:51747 up:O95232 equivalent -hsa:5175 up:P16284 equivalent -hsa:51750 up:Q9NZ71 equivalent -hsa:51751 up:Q9P298 equivalent -hsa:51752 up:Q9NZ08 equivalent -hsa:51754 up:A6NDV4 equivalent -hsa:51755 up:Q9NYV4 equivalent -hsa:51759 up:Q9NZ63 equivalent -hsa:5176 up:A0A140VKF3 equivalent -hsa:5176 up:P36955 equivalent -hsa:51760 up:Q9BSW7 equivalent -hsa:51761 up:Q6ZU25 equivalent -hsa:51761 up:Q9NTI2 equivalent -hsa:51762 up:Q92930 equivalent -hsa:51763 up:Q9BT40 equivalent -hsa:51764 up:Q9P2W3 equivalent -hsa:51765 up:Q9P289 equivalent -hsa:51768 up:Q9NS93 equivalent -hsa:51773 up:Q05DG0 equivalent -hsa:51773 up:Q96T23 equivalent -hsa:51776 up:Q9NYL2 equivalent -hsa:51778 up:Q9NPC6 equivalent -hsa:5178 up:Q9GZU2 equivalent -hsa:51780 up:Q7LBC6 equivalent -hsa:5179 up:P01210 equivalent -hsa:518 up:P48201 equivalent -hsa:51802 up:Q9NY37 equivalent -hsa:51804 up:Q9UIU6 equivalent -hsa:51805 up:Q9NZJ6 equivalent -hsa:51806 up:Q53H37 equivalent -hsa:51806 up:Q9NZT1 equivalent -hsa:51807 up:Q9NY65 equivalent -hsa:51808 up:Q9H814 equivalent -hsa:51809 up:Q86SF2 equivalent -hsa:51816 up:Q9NZK5 equivalent -hsa:5184 up:A0A140VJR2 equivalent -hsa:5184 up:P12955 equivalent -hsa:5187 up:O15534 equivalent -hsa:5188 up:O75879 equivalent -hsa:5189 up:O43933 equivalent -hsa:5190 up:Q13608 equivalent -hsa:5191 up:O00628 equivalent -hsa:5191 up:Q6FGN1 equivalent -hsa:5192 up:O60683 equivalent -hsa:5193 up:O00623 equivalent -hsa:5194 up:Q92968 equivalent -hsa:5195 up:O75381 equivalent -hsa:5196 up:P02776 equivalent -hsa:5197 up:P10720 equivalent -hsa:5198 up:A8K9T9 equivalent -hsa:5198 up:O15067 equivalent -hsa:5198 up:Q6P4B4 equivalent -hsa:5199 up:A0A0S2Z4I5 equivalent -hsa:5199 up:P27918 equivalent -hsa:52 up:P24666 equivalent -hsa:52 up:Q59EH3 equivalent -hsa:5201 up:O60925 equivalent -hsa:5202 up:B1AQP2 equivalent -hsa:5202 up:Q9UHV9 equivalent -hsa:5203 up:Q9NQP4 equivalent -hsa:5204 up:Q99471 equivalent -hsa:5205 up:O43520 equivalent -hsa:5207 up:P16118 equivalent -hsa:5208 up:O60825 equivalent -hsa:5209 up:Q16875 equivalent -hsa:521 up:P56385 equivalent -hsa:5210 up:Q16877 equivalent -hsa:5211 up:P17858 equivalent -hsa:5211 up:Q7L2M7 equivalent -hsa:5212 up:Q6UXI7 equivalent -hsa:5213 up:A0A024R0Y5 equivalent -hsa:5213 up:P08237 equivalent -hsa:5214 up:Q01813 equivalent -hsa:5216 up:P07737 equivalent -hsa:5217 up:P35080 equivalent -hsa:5218 up:O94921 equivalent -hsa:522 up:P18859 equivalent -hsa:522 up:Q6IB54 equivalent -hsa:522 up:Q6NZ59 equivalent -hsa:5222 up:P0DJD9 equivalent -hsa:5223 up:P18669 equivalent -hsa:5223 up:Q6FHU2 equivalent -hsa:5224 up:P15259 equivalent -hsa:5225 up:P20142 equivalent -hsa:5226 up:P52209 equivalent -hsa:5228 up:P49763 equivalent -hsa:5228 up:Q53XY6 equivalent -hsa:5228 up:Q86TW6 equivalent -hsa:5229 up:P53609 equivalent -hsa:523 up:P38606 equivalent -hsa:5230 up:P00558 equivalent -hsa:5230 up:V9HWF4 equivalent -hsa:5232 up:A0A140VJR3 equivalent -hsa:5232 up:P07205 equivalent -hsa:5236 up:P36871 equivalent -hsa:5238 up:O95394 equivalent -hsa:5239 up:Q15124 equivalent -hsa:5241 up:P06401 equivalent -hsa:5243 up:A4D1D2 equivalent -hsa:5243 up:P08183 equivalent -hsa:5244 up:P21439 equivalent -hsa:5245 up:A8K401 equivalent -hsa:5245 up:P35232 equivalent -hsa:525 up:P15313 equivalent -hsa:5250 up:A0A024RBH9 equivalent -hsa:5250 up:Q00325 equivalent -hsa:5250 up:Q6MZF9 equivalent -hsa:5251 up:B4DWG8 equivalent -hsa:5251 up:P78562 equivalent -hsa:5252 up:O43189 equivalent -hsa:5253 up:O75151 equivalent -hsa:5255 up:P46020 equivalent -hsa:5256 up:P46019 equivalent -hsa:5257 up:Q93100 equivalent -hsa:526 up:A0A140VK65 equivalent -hsa:526 up:P21281 equivalent -hsa:5260 up:Q16816 equivalent -hsa:5261 up:P15735 equivalent -hsa:5264 up:O14832 equivalent -hsa:5265 up:E9KL23 equivalent -hsa:5265 up:P01009 equivalent -hsa:5266 up:P19957 equivalent -hsa:5267 up:A0A024R6I9 equivalent -hsa:5267 up:P29622 equivalent -hsa:5268 up:P36952 equivalent -hsa:5269 up:P35237 equivalent -hsa:527 up:P27449 equivalent -hsa:5270 up:P07093 equivalent -hsa:5271 up:P50452 equivalent -hsa:5272 up:A0A024QZT4 equivalent -hsa:5272 up:P50453 equivalent -hsa:5273 up:B2RC45 equivalent -hsa:5273 up:P48595 equivalent -hsa:5274 up:A0A0S2Z455 equivalent -hsa:5274 up:Q99574 equivalent -hsa:5275 up:A0A0A0MQW3 reverse -hsa:5275 up:B7Z447 reverse -hsa:5275 up:Q9UIV8 equivalent -hsa:5276 up:B4DDY9 equivalent -hsa:5276 up:O75830 equivalent -hsa:5277 up:A0A2K4ZA02 equivalent -hsa:5277 up:P37287 equivalent -hsa:5279 up:Q92535 equivalent -hsa:528 up:A0A024R9I0 equivalent -hsa:528 up:P21283 equivalent -hsa:5281 up:Q07326 equivalent -hsa:5281 up:Q6IB04 equivalent -hsa:5283 up:Q14442 equivalent -hsa:5284 up:P01833 equivalent -hsa:5286 up:L7RRS0 equivalent -hsa:5286 up:O00443 equivalent -hsa:5287 up:A2RUF7 equivalent -hsa:5287 up:O00750 equivalent -hsa:5287 up:Q4LE65 equivalent -hsa:5288 up:B7ZLY6 equivalent -hsa:5288 up:O75747 equivalent -hsa:5289 up:Q8NEB9 equivalent -hsa:529 up:P36543 equivalent -hsa:529 up:Q53Y06 equivalent -hsa:5290 up:P42336 equivalent -hsa:5290 up:Q4LE51 equivalent -hsa:5291 up:P42338 equivalent -hsa:5292 up:P11309 equivalent -hsa:5293 up:A0A2K8FKV1 equivalent -hsa:5293 up:O00329 equivalent -hsa:5294 up:A8K9G9 equivalent -hsa:5294 up:P48736 equivalent -hsa:5295 up:A0A2X0SFG1 equivalent -hsa:5295 up:P27986 equivalent -hsa:5296 up:O00459 equivalent -hsa:5297 up:B4DYG5 equivalent -hsa:5297 up:P42356 equivalent -hsa:5297 up:Q4LE69 equivalent -hsa:5298 up:Q9UBF8 equivalent -hsa:53 up:P11117 equivalent -hsa:5300 up:Q13526 equivalent -hsa:5303 up:Q9Y237 equivalent -hsa:5304 up:P12273 equivalent -hsa:5305 up:P48426 equivalent -hsa:5306 up:Q00169 equivalent -hsa:5306 up:V9HWC5 equivalent -hsa:5307 up:P78337 equivalent -hsa:5307 up:X5D9A5 equivalent -hsa:5308 up:Q99697 equivalent -hsa:5309 up:O75364 equivalent -hsa:5310 up:P98161 equivalent -hsa:5311 up:Q13563 equivalent -hsa:5311 up:Q9UEU6 equivalent -hsa:5313 up:P30613 equivalent -hsa:5314 up:P08F94 equivalent -hsa:5315 up:P14618 equivalent -hsa:5315 up:V9HWB8 equivalent -hsa:5316 up:P55347 equivalent -hsa:5316 up:Q6PKH2 equivalent -hsa:5316 up:Q96I87 equivalent -hsa:5317 up:Q13835 equivalent -hsa:5318 up:Q99959 equivalent -hsa:5319 up:P04054 equivalent -hsa:5320 up:P14555 equivalent -hsa:5321 up:P47712 equivalent -hsa:5322 up:P39877 equivalent -hsa:5324 up:Q6DJT9 equivalent -hsa:5325 up:A1YLA1 equivalent -hsa:5325 up:Q9UM63 equivalent -hsa:5326 up:Q9UPG8 equivalent -hsa:5327 up:P00750 equivalent -hsa:5328 up:P00749 equivalent -hsa:5328 up:Q59GZ8 equivalent -hsa:5329 up:Q03405 equivalent -hsa:533 up:Q99437 equivalent -hsa:5330 up:Q00722 equivalent -hsa:5330 up:Q59F77 equivalent -hsa:5331 up:Q01970 equivalent -hsa:5332 up:Q15147 equivalent -hsa:5333 up:A0A384MR47 equivalent -hsa:5333 up:A8K8F9 equivalent -hsa:5333 up:P51178 equivalent -hsa:53335 up:D9YZW0 equivalent -hsa:53335 up:Q9H165 equivalent -hsa:53336 up:Q8N123 equivalent -hsa:53339 up:Q9H0C5 equivalent -hsa:5334 up:Q15111 equivalent -hsa:53340 up:A0A172Q397 equivalent -hsa:53340 up:Q15506 equivalent -hsa:53342 up:Q8TAD2 equivalent -hsa:53343 up:Q96KB3 equivalent -hsa:53343 up:Q9BW91 equivalent -hsa:53344 up:Q5VXU3 equivalent -hsa:53345 up:Q8N8A7 equivalent -hsa:53345 up:Q9BZW4 equivalent -hsa:53346 up:Q9BZW5 equivalent -hsa:53347 up:P57075 equivalent -hsa:53349 up:Q9HBF4 equivalent -hsa:5335 up:P19174 equivalent -hsa:5335 up:Q4LE43 equivalent -hsa:53353 up:Q9NZR2 equivalent -hsa:53354 up:Q8TE04 equivalent -hsa:53358 up:Q92529 equivalent -hsa:5336 up:P16885 equivalent -hsa:5337 up:Q13393 equivalent -hsa:5337 up:Q59EA4 equivalent -hsa:53371 up:Q7Z3B4 equivalent -hsa:53373 up:B3KSG7 equivalent -hsa:53373 up:Q9ULQ1 equivalent -hsa:5338 up:O14939 equivalent -hsa:5339 up:Q15149 equivalent -hsa:534 up:O95670 equivalent -hsa:534 up:Q6NVJ2 equivalent -hsa:5340 up:P00747 equivalent -hsa:53405 up:Q53G01 equivalent -hsa:53405 up:Q9NZA1 equivalent -hsa:53407 up:Q9P2W9 equivalent -hsa:5341 up:P08567 equivalent -hsa:5342 up:Q02325 equivalent -hsa:5343 up:Q02325 equivalent -hsa:5345 up:P08697 equivalent -hsa:5346 up:O60240 equivalent -hsa:5347 up:P53350 equivalent -hsa:5348 up:O00168 equivalent -hsa:5349 up:Q14802 equivalent -hsa:535 up:Q53X12 equivalent -hsa:535 up:Q93050 equivalent -hsa:5350 up:P26678 equivalent -hsa:5350 up:Q5R352 equivalent -hsa:5351 up:Q02809 equivalent -hsa:5352 up:O00469 equivalent -hsa:5354 up:A8K9L3 equivalent -hsa:5354 up:P60201 equivalent -hsa:5355 up:Q04941 equivalent -hsa:5356 up:O43660 equivalent -hsa:5357 up:Q14651 equivalent -hsa:5358 up:P13797 equivalent -hsa:5359 up:O15162 equivalent -hsa:5360 up:P55058 equivalent -hsa:5361 up:Q9UIW2 equivalent -hsa:53615 up:O95983 equivalent -hsa:53616 up:Q9P0K1 equivalent -hsa:5362 up:O75051 equivalent -hsa:53630 up:Q9HAY6 equivalent -hsa:53632 up:Q9UGI9 equivalent -hsa:53635 up:Q86YD1 equivalent -hsa:53637 up:Q9H228 equivalent -hsa:5364 up:O43157 equivalent -hsa:5365 up:A8K920 equivalent -hsa:5365 up:Q9ULL4 equivalent -hsa:5366 up:A0A0S2Z490 equivalent -hsa:5366 up:Q13794 equivalent -hsa:5367 up:P20382 equivalent -hsa:5368 up:Q13519 equivalent -hsa:537 up:A0A384MQW4 equivalent -hsa:537 up:Q15904 equivalent -hsa:5371 up:P29590 equivalent -hsa:5372 up:Q92871 equivalent -hsa:5373 up:A0A0S2Z4J6 equivalent -hsa:5373 up:O15305 equivalent -hsa:5373 up:Q59F02 equivalent -hsa:5375 up:E5RH45 reverse -hsa:5375 up:P02689 equivalent -hsa:5376 up:Q01453 equivalent -hsa:5376 up:Q6FH25 equivalent -hsa:5378 up:P54277 equivalent -hsa:538 up:B4DRW0 equivalent -hsa:538 up:Q04656 equivalent -hsa:538 up:Q762B6 equivalent -hsa:53820 up:P57055 equivalent -hsa:53822 up:P58549 equivalent -hsa:53826 up:Q9H0Q3 equivalent -hsa:53827 up:Q96DB9 equivalent -hsa:53828 up:P59646 equivalent -hsa:53829 up:Q9BPV8 equivalent -hsa:53831 up:Q9NQS5 equivalent -hsa:53832 up:Q9UHF4 equivalent -hsa:53833 up:Q6UXL0 equivalent -hsa:53834 up:A0PJ49 equivalent -hsa:53834 up:Q8N441 equivalent -hsa:53836 up:Q9BY21 equivalent -hsa:53838 up:Q96F05 equivalent -hsa:53840 up:Q9BYJ4 equivalent -hsa:53841 up:B4DV98 equivalent -hsa:53841 up:Q9HBB8 equivalent -hsa:53842 up:Q8N7P3 equivalent -hsa:539 up:P48047 equivalent -hsa:53904 up:Q8NEV4 equivalent -hsa:53905 up:Q9NRD9 equivalent -hsa:53916 up:P61018 equivalent -hsa:53917 up:Q969Q5 equivalent -hsa:53918 up:Q9BRX2 equivalent -hsa:53919 up:Q9NYB5 equivalent -hsa:5393 up:Q06265 equivalent -hsa:53938 up:A0A024R3V4 equivalent -hsa:53938 up:Q9H2H8 equivalent -hsa:5394 up:Q01780 equivalent -hsa:53940 up:A0A384NPV7 equivalent -hsa:53940 up:Q9BXU8 equivalent -hsa:53942 up:O94779 equivalent -hsa:53944 up:Q9HCP0 equivalent -hsa:53947 up:A0A0S2Z5J1 equivalent -hsa:53947 up:Q9NPC4 equivalent -hsa:5395 up:B4DGM0 equivalent -hsa:5395 up:P54278 equivalent -hsa:5395 up:Q7Z3Q2 equivalent -hsa:5396 up:P54821 equivalent -hsa:53981 up:Q9P2I0 equivalent -hsa:54 up:P13686 equivalent -hsa:540 up:B7ZLR4 equivalent -hsa:540 up:P35670 equivalent -hsa:54014 up:Q9NSI6 equivalent -hsa:54020 up:P57057 equivalent -hsa:54033 up:P57052 equivalent -hsa:54039 up:P57721 equivalent -hsa:54058 up:P58505 equivalent -hsa:54059 up:P58557 equivalent -hsa:5406 up:P16233 equivalent -hsa:54065 up:P58511 equivalent -hsa:54069 up:Q9NYP9 equivalent -hsa:5407 up:P54315 equivalent -hsa:5408 up:P54317 equivalent -hsa:54084 up:Q8WU66 equivalent -hsa:5409 up:P11086 equivalent -hsa:54093 up:Q9NVD3 equivalent -hsa:54097 up:P58499 equivalent -hsa:54101 up:Q96T11 equivalent -hsa:54101 up:Q9H4D1 equivalent -hsa:54102 up:Q96NY7 equivalent -hsa:54103 up:A4D1B5 equivalent -hsa:54106 up:Q9NR96 equivalent -hsa:54107 up:Q9NRF9 equivalent -hsa:54108 up:Q9NRG0 equivalent -hsa:5411 up:Q9H307 equivalent -hsa:54112 up:Q9GZN0 equivalent -hsa:5412 up:O95164 equivalent -hsa:5413 up:Q99719 equivalent -hsa:5413 up:X5DNA9 equivalent -hsa:5414 up:O43236 equivalent -hsa:541465 up:P0DMU7 equivalent -hsa:541465 up:P0DMU8 equivalent -hsa:541465 up:P0DMV0 equivalent -hsa:541466 up:Q5HYN5 equivalent -hsa:541468 up:Q96LR2 equivalent -hsa:54148 up:Q9NYK5 equivalent -hsa:54149 up:Q68DA1 equivalent -hsa:54149 up:Q9NYK6 equivalent -hsa:541565 up:Q8NAV2 equivalent -hsa:541578 up:Q96DE9 equivalent -hsa:54165 up:B4DM76 equivalent -hsa:54165 up:Q96GG9 equivalent -hsa:54187 up:Q9NR45 equivalent -hsa:5420 up:O00592 equivalent -hsa:5420 up:Q96N83 equivalent -hsa:54205 up:G4XXL9 equivalent -hsa:54205 up:P99999 equivalent -hsa:54206 up:B3KTV8 equivalent -hsa:54206 up:I6S2Y9 equivalent -hsa:54206 up:Q9UJM3 equivalent -hsa:54207 up:P57789 equivalent -hsa:54209 up:Q5TCX1 equivalent -hsa:54209 up:Q9NZC2 equivalent -hsa:54210 up:Q38L15 equivalent -hsa:54210 up:Q9NP99 equivalent -hsa:54212 up:B2RA84 equivalent -hsa:54212 up:Q9NSN8 equivalent -hsa:5422 up:P09884 equivalent -hsa:54221 up:Q9NY99 equivalent -hsa:5423 up:P06746 equivalent -hsa:5424 up:P28340 equivalent -hsa:5425 up:P49005 equivalent -hsa:5426 up:Q07864 equivalent -hsa:5427 up:P56282 equivalent -hsa:5428 up:E5KNU5 equivalent -hsa:5428 up:P54098 equivalent -hsa:5429 up:Q9Y253 equivalent -hsa:5430 up:P24928 equivalent -hsa:5431 up:B4DH29 equivalent -hsa:5431 up:P30876 equivalent -hsa:5432 up:P19387 equivalent -hsa:5432 up:Q6FGR6 equivalent -hsa:54328 up:Q9NS66 equivalent -hsa:54329 up:A4D0T8 equivalent -hsa:54329 up:P60893 equivalent -hsa:54329 up:Q8NEN2 equivalent -hsa:5433 up:O15514 equivalent -hsa:54331 up:P59768 equivalent -hsa:54332 up:Q8TB36 equivalent -hsa:5434 up:E5KT65 equivalent -hsa:5434 up:P19388 equivalent -hsa:54344 up:Q86TM7 equivalent -hsa:54344 up:Q9P2X0 equivalent -hsa:54345 up:P35713 equivalent -hsa:54346 up:Q86WB7 equivalent -hsa:5435 up:P61218 equivalent -hsa:5436 up:P62487 equivalent -hsa:54360 up:Q9NRR1 equivalent -hsa:54361 up:P56705 equivalent -hsa:54363 up:A8K058 equivalent -hsa:54363 up:Q9UJM8 equivalent -hsa:5437 up:P52434 equivalent -hsa:5438 up:P36954 equivalent -hsa:54386 up:Q9NYB0 equivalent -hsa:5439 up:P52435 equivalent -hsa:5440 up:P53803 equivalent -hsa:54407 up:Q96QD8 equivalent -hsa:5441 up:P62875 equivalent -hsa:54413 up:Q9NZ94 equivalent -hsa:54413 up:X5DNV3 equivalent -hsa:54414 up:Q9HAT2 equivalent -hsa:5442 up:O00411 equivalent -hsa:5442 up:Q4G0F4 equivalent -hsa:54429 up:A4D1U0 equivalent -hsa:54429 up:Q502V5 equivalent -hsa:54429 up:Q9NYW4 equivalent -hsa:5443 up:P01189 equivalent -hsa:54431 up:Q8IXB1 equivalent -hsa:54432 up:Q9Y548 equivalent -hsa:54433 up:Q9NY12 equivalent -hsa:54434 up:Q8WYL5 equivalent -hsa:54436 up:B3KWX8 equivalent -hsa:54436 up:Q8TE82 equivalent -hsa:54437 up:Q9P283 equivalent -hsa:54438 up:Q9NXC2 equivalent -hsa:54439 up:Q9P2N5 equivalent -hsa:5444 up:P27169 equivalent -hsa:54440 up:O75995 equivalent -hsa:54442 up:Q9NXV2 equivalent -hsa:54443 up:Q9NQW6 equivalent -hsa:5445 up:Q15165 equivalent -hsa:54453 up:A1A4T0 equivalent -hsa:54453 up:Q8WYP3 equivalent -hsa:54454 up:B3KWS5 equivalent -hsa:54454 up:Q9ULI0 equivalent -hsa:54455 up:Q6P3S6 equivalent -hsa:54456 up:Q9BXT6 equivalent -hsa:54457 up:Q5H9L4 equivalent -hsa:54458 up:Q9NZ81 equivalent -hsa:5446 up:Q15166 equivalent -hsa:54460 up:P82921 equivalent -hsa:54460 up:Q99768 equivalent -hsa:54461 up:Q969U6 equivalent -hsa:54462 up:Q9H7U1 equivalent -hsa:54463 up:Q9H6L5 equivalent -hsa:54464 up:Q8IZH2 equivalent -hsa:54465 up:Q9NY74 equivalent -hsa:54466 up:Q99865 equivalent -hsa:54467 up:Q9P2G1 equivalent -hsa:54468 up:Q9NXC5 equivalent -hsa:54469 up:Q6FIF0 equivalent -hsa:54470 up:Q7L4S7 equivalent -hsa:54471 up:Q9NQG6 equivalent -hsa:54472 up:Q6FIE9 equivalent -hsa:54472 up:Q9H0E2 equivalent -hsa:54474 up:P35900 equivalent -hsa:54475 up:Q9NVX2 equivalent -hsa:54476 up:A8K8N1 equivalent -hsa:54476 up:Q9NWF9 equivalent -hsa:54477 up:Q9HAU0 equivalent -hsa:54478 up:A0A0S2Z5F0 equivalent -hsa:54478 up:Q9BSJ6 equivalent -hsa:54480 up:Q9P2E5 equivalent -hsa:54482 up:Q9NUP7 equivalent -hsa:54487 up:Q8WYQ5 equivalent -hsa:5449 up:P28069 equivalent -hsa:54490 up:Q9BY64 equivalent -hsa:54491 up:Q9NUU6 equivalent -hsa:54492 up:A8MQ27 equivalent -hsa:54494 up:A0A0A8K8C2 equivalent -hsa:54494 up:Q6IPW1 equivalent -hsa:54495 up:Q96JJ7 equivalent -hsa:54496 up:Q9NVM4 equivalent -hsa:54497 up:Q9P2D3 equivalent -hsa:54498 up:Q9NWM0 equivalent -hsa:54499 up:Q9UM00 equivalent -hsa:545 up:Q13535 equivalent -hsa:5450 up:Q16633 equivalent -hsa:54502 up:A0AV96 equivalent -hsa:54503 up:Q8IUH4 equivalent -hsa:54504 up:Q9H3G5 equivalent -hsa:54505 up:Q7Z478 equivalent -hsa:54507 up:B7ZMJ3 equivalent -hsa:54507 up:Q6UY14 equivalent -hsa:54507 up:Q9UFG7 equivalent -hsa:54509 up:Q9HBH0 equivalent -hsa:5451 up:P14859 equivalent -hsa:54510 up:Q5HYG2 equivalent -hsa:54510 up:Q9HCL0 equivalent -hsa:54511 up:O95896 equivalent -hsa:54511 up:Q8TB92 equivalent -hsa:54512 up:Q9NPD3 equivalent -hsa:54514 up:Q9NQI0 equivalent -hsa:54516 up:Q9UGC7 equivalent -hsa:54517 up:B3KRB2 equivalent -hsa:54517 up:B3KY42 equivalent -hsa:54517 up:Q96PZ0 equivalent -hsa:54518 up:Q7Z5R6 equivalent -hsa:5452 up:P09086 equivalent -hsa:54520 up:Q567U6 equivalent -hsa:54521 up:Q5JSH3 equivalent -hsa:54522 up:Q6P6B7 equivalent -hsa:54529 up:Q9NWL6 equivalent -hsa:5453 up:Q03052 equivalent -hsa:54531 up:Q8N344 equivalent -hsa:54532 up:Q70EK8 equivalent -hsa:54532 up:Q9H9I0 equivalent -hsa:54534 up:Q8N5N7 equivalent -hsa:54535 up:Q2TB68 equivalent -hsa:54535 up:Q769H0 equivalent -hsa:54535 up:Q8TD31 equivalent -hsa:54536 up:B2RDH5 equivalent -hsa:54536 up:Q8TAG9 equivalent -hsa:54537 up:Q86V20 equivalent -hsa:54538 up:Q8WZ75 equivalent -hsa:54539 up:Q9NX14 equivalent -hsa:5454 up:P20265 equivalent -hsa:54540 up:Q6IPW0 equivalent -hsa:54541 up:Q9NX09 equivalent -hsa:54542 up:Q9HBD1 equivalent -hsa:54543 up:Q75MR5 equivalent -hsa:54543 up:Q9P0U1 equivalent -hsa:54544 up:Q9UGL9 equivalent -hsa:54545 up:Q9C0I1 equivalent -hsa:54546 up:Q9NXI6 equivalent -hsa:54549 up:Q58EX2 equivalent -hsa:5455 up:P20264 equivalent -hsa:54550 up:Q7Z6G3 equivalent -hsa:54551 up:Q9UJ55 equivalent -hsa:54552 up:Q05DU1 equivalent -hsa:54552 up:Q9NVN8 equivalent -hsa:54554 up:Q86VZ2 equivalent -hsa:54555 up:Q9Y6V7 equivalent -hsa:54556 up:Q9NXR8 equivalent -hsa:54557 up:Q96EQ0 equivalent -hsa:54558 up:A0A140VJV1 equivalent -hsa:54558 up:Q9NWH7 equivalent -hsa:5456 up:A0A2R8Y739 equivalent -hsa:5456 up:P49335 equivalent -hsa:54566 up:Q59GC2 equivalent -hsa:54566 up:Q9H329 equivalent -hsa:54566 up:Q9NSG9 equivalent -hsa:54567 up:Q9NR61 equivalent -hsa:5457 up:Q01851 equivalent -hsa:54575 up:Q5DT02 equivalent -hsa:54575 up:Q9HAW8 equivalent -hsa:54576 up:Q5DSZ6 equivalent -hsa:54576 up:Q9HAW9 equivalent -hsa:54577 up:Q5DSZ7 equivalent -hsa:54577 up:Q9HAW7 equivalent -hsa:54578 up:P19224 equivalent -hsa:54578 up:Q5DSZ8 equivalent -hsa:54579 up:P35504 equivalent -hsa:54579 up:Q5DSZ9 equivalent -hsa:5458 up:Q12837 equivalent -hsa:54583 up:Q9GZT9 equivalent -hsa:54583 up:R4SCQ0 equivalent -hsa:54584 up:Q9BYB4 equivalent -hsa:54585 up:Q9NQ48 equivalent -hsa:54586 up:Q9NQ60 equivalent -hsa:54587 up:Q9BRK3 equivalent -hsa:5459 up:Q15319 equivalent -hsa:54596 up:Q5T7N2 equivalent -hsa:546 up:A4LAA3 equivalent -hsa:546 up:B4DLW1 equivalent -hsa:546 up:P46100 equivalent -hsa:5460 up:D2IYK3 equivalent -hsa:5460 up:Q01860 equivalent -hsa:54600 up:O60656 equivalent -hsa:54600 up:Q5DSZ5 equivalent -hsa:54602 up:Q9NV92 equivalent -hsa:54606 up:Q9NY93 equivalent -hsa:54617 up:Q9ULG1 equivalent -hsa:54619 up:Q5T5M9 equivalent -hsa:5462 up:Q06416 equivalent -hsa:54620 up:Q6PCT2 equivalent -hsa:54621 up:Q8N0Z9 equivalent -hsa:54622 up:Q9NXU5 equivalent -hsa:54623 up:Q8N7H5 equivalent -hsa:54625 up:Q460N5 equivalent -hsa:54625 up:Q8N546 equivalent -hsa:54626 up:Q9Y543 equivalent -hsa:54627 up:Q9P2G4 equivalent -hsa:54629 up:Q8NBR6 equivalent -hsa:5463 up:A0A1C7CYV8 equivalent -hsa:5463 up:B3KT91 equivalent -hsa:5463 up:Q14863 equivalent -hsa:5464 up:Q15181 equivalent -hsa:5464 up:V9HWB5 equivalent -hsa:5465 up:F1D8S4 equivalent -hsa:5465 up:Q07869 equivalent -hsa:54657 up:P22310 equivalent -hsa:54658 up:P22309 equivalent -hsa:54658 up:Q5DT03 equivalent -hsa:54659 up:P35503 equivalent -hsa:54659 up:Q5DT01 equivalent -hsa:54662 up:A0A024R8C8 equivalent -hsa:54662 up:B3KNG3 equivalent -hsa:54662 up:Q9NVG8 equivalent -hsa:54663 up:Q6RFH5 equivalent -hsa:54664 up:Q9NUM4 equivalent -hsa:54665 up:Q5VWQ0 equivalent -hsa:5467 up:Q03181 equivalent -hsa:54674 up:A4D0T1 equivalent -hsa:54674 up:Q9H3W5 equivalent -hsa:54675 up:Q9UJA2 equivalent -hsa:54676 up:Q9BX10 equivalent -hsa:54677 up:Q9UKG9 equivalent -hsa:5468 up:P37231 equivalent -hsa:54680 up:Q9NWK9 equivalent -hsa:54681 up:Q9NXG6 equivalent -hsa:54682 up:Q9H8J5 equivalent -hsa:5469 up:Q15648 equivalent -hsa:547 up:Q12756 equivalent -hsa:5470 up:O14830 equivalent -hsa:54700 up:Q9NYV6 equivalent -hsa:54704 up:Q9P0J1 equivalent -hsa:54707 up:Q9H9Y4 equivalent -hsa:54708 up:Q9NX47 equivalent -hsa:5471 up:A8K4H7 equivalent -hsa:5471 up:Q06203 equivalent -hsa:5471 up:Q59G63 equivalent -hsa:54714 up:Q9NQW8 equivalent -hsa:54715 up:Q9NWB1 equivalent -hsa:54716 up:Q9NP91 equivalent -hsa:54726 up:Q01804 equivalent -hsa:54729 up:Q15270 equivalent -hsa:5473 up:P02775 equivalent -hsa:54732 up:Q9BVK6 equivalent -hsa:54733 up:Q8IXU6 equivalent -hsa:54734 up:Q14964 equivalent -hsa:54737 up:Q99549 equivalent -hsa:54738 up:Q99581 equivalent -hsa:54739 up:Q6GPH4 equivalent -hsa:54741 up:O15243 equivalent -hsa:54742 up:Q17RY6 equivalent -hsa:54749 up:Q96J80 equivalent -hsa:54749 up:Q9UM22 equivalent -hsa:5475 up:O14829 equivalent -hsa:54751 up:Q8WUP2 equivalent -hsa:54752 up:Q8TC99 equivalent -hsa:54753 up:P0CG23 equivalent -hsa:54754 up:A1L443 equivalent -hsa:54756 up:B4DXM5 equivalent -hsa:54756 up:Q8NFM7 equivalent -hsa:54757 up:L8B8N7 equivalent -hsa:54757 up:Q8IYA5 equivalent -hsa:54757 up:Q96MK3 equivalent -hsa:54758 up:Q8TBB5 equivalent -hsa:5476 up:P10619 equivalent -hsa:5476 up:X6R8A1 equivalent -hsa:54760 up:A0A140VJQ9 equivalent -hsa:54760 up:Q6UW60 equivalent -hsa:54762 up:Q8IYS0 equivalent -hsa:54763 up:A0A140VKB2 equivalent -hsa:54763 up:Q9HAT0 equivalent -hsa:54764 up:Q9UGI0 equivalent -hsa:54765 up:Q96DX7 equivalent -hsa:54766 up:Q9NY30 equivalent -hsa:54768 up:Q4G0P3 equivalent -hsa:54769 up:Q96HU8 equivalent -hsa:54776 up:Q9BZL4 equivalent -hsa:54777 up:Q8IYW2 equivalent -hsa:54778 up:Q6ZNA4 equivalent -hsa:5478 up:P62937 equivalent -hsa:5478 up:V9HWF5 equivalent -hsa:54780 up:Q9NXX6 equivalent -hsa:54784 up:Q9NXW9 equivalent -hsa:54785 up:Q96GS4 equivalent -hsa:54788 up:J3KPS0 equivalent -hsa:54788 up:Q9NXW2 equivalent -hsa:5479 up:P23284 equivalent -hsa:54790 up:A0A158SIU0 equivalent -hsa:54790 up:Q6N021 equivalent -hsa:54793 up:Q7L273 equivalent -hsa:54795 up:Q8TD43 equivalent -hsa:54796 up:Q6ZN30 equivalent -hsa:54797 up:Q9BUE0 equivalent -hsa:54798 up:A0A0A0MRC0 equivalent -hsa:54798 up:Q6V1P8 equivalent -hsa:54798 up:Q6V1P9 equivalent -hsa:54799 up:Q05BQ5 equivalent -hsa:5480 up:P45877 equivalent -hsa:54800 up:Q6TFL4 equivalent -hsa:54801 up:Q7Z4H7 equivalent -hsa:54802 up:Q3T7C7 equivalent -hsa:54802 up:Q53F11 equivalent -hsa:54802 up:Q9H3H1 equivalent -hsa:54805 up:Q9H8M5 equivalent -hsa:54806 up:Q8N157 equivalent -hsa:54807 up:Q9NXT0 equivalent -hsa:54808 up:Q7RTS9 equivalent -hsa:54809 up:Q5K651 equivalent -hsa:5481 up:E5KN55 equivalent -hsa:5481 up:Q08752 equivalent -hsa:54810 up:A0A384P5H2 equivalent -hsa:54810 up:Q8TF65 equivalent -hsa:54811 up:Q6V9R5 equivalent -hsa:54812 up:Q6ULP2 equivalent -hsa:54813 up:Q9NXS3 equivalent -hsa:54814 up:Q9NXS2 equivalent -hsa:54815 up:Q86YP4 equivalent -hsa:54816 up:Q6N043 equivalent -hsa:54819 up:B4DU89 equivalent -hsa:54819 up:Q8TBK6 equivalent -hsa:54820 up:Q9NXR1 equivalent -hsa:54820 up:X5DR54 equivalent -hsa:54821 up:Q2NKX8 equivalent -hsa:54822 up:Q96QT4 equivalent -hsa:54823 up:B3KXU9 equivalent -hsa:54823 up:Q5T5J6 equivalent -hsa:54825 up:Q9BYE9 equivalent -hsa:54826 up:Q9NXP7 equivalent -hsa:54827 up:Q6UWF7 equivalent -hsa:54828 up:Q9H6U6 equivalent -hsa:54829 up:Q6P528 equivalent -hsa:54829 up:Q9BXN1 equivalent -hsa:54830 up:A0A0S2Z5E8 equivalent -hsa:54830 up:Q9H1M0 equivalent -hsa:54831 up:Q8NFU1 equivalent -hsa:548313 up:O60224 equivalent -hsa:54832 up:Q709C8 equivalent -hsa:54834 up:Q9NXN4 equivalent -hsa:54836 up:Q5W0U4 equivalent -hsa:54838 up:Q9NX94 equivalent -hsa:54839 up:B7Z7G0 equivalent -hsa:54839 up:Q8IUZ0 equivalent -hsa:54840 up:Q7Z2E3 equivalent -hsa:54841 up:Q86UB2 equivalent -hsa:54842 up:Q6ZSS7 equivalent -hsa:54843 up:Q9HCH5 equivalent -hsa:54845 up:Q6NXG1 equivalent -hsa:54847 up:Q9NXL6 equivalent -hsa:54848 up:Q9NXL2 equivalent -hsa:54849 up:Q6ZN54 equivalent -hsa:54850 up:Q9NXK8 equivalent -hsa:54851 up:Q8WVL7 equivalent -hsa:54852 up:Q9NXK6 equivalent -hsa:54853 up:Q9H6Y2 equivalent -hsa:54854 up:Q2M2I3 equivalent -hsa:54855 up:Q5VWP2 equivalent -hsa:54856 up:Q3T8J9 equivalent -hsa:54857 up:Q9HCC8 equivalent -hsa:54858 up:Q9NXJ5 equivalent -hsa:54859 up:Q0PNE2 equivalent -hsa:548593 up:Q9BQ83 equivalent -hsa:548596 up:P12532 equivalent -hsa:54860 up:Q9NXJ0 equivalent -hsa:54861 up:Q9NRH2 equivalent -hsa:54862 up:Q6P1N0 equivalent -hsa:54863 up:Q9NXH8 equivalent -hsa:548644 up:A0A0B4J2F8 equivalent -hsa:548644 up:Q9GZM3 equivalent -hsa:548644 up:Q9H1A7 equivalent -hsa:548645 up:Q9H1X3 equivalent -hsa:54866 up:Q9NXH3 equivalent -hsa:54867 up:Q6NUQ4 equivalent -hsa:54868 up:Q8NE00 equivalent -hsa:54869 up:Q8TE68 equivalent -hsa:54870 up:A1L3Z9 equivalent -hsa:54870 up:Q2TAL8 equivalent -hsa:54872 up:Q5H8A4 equivalent -hsa:54873 up:A0A0S2Z5E7 equivalent -hsa:54873 up:Q9NP74 equivalent -hsa:54874 up:B4DSI7 equivalent -hsa:54874 up:Q5T0N5 equivalent -hsa:54875 up:Q9NXG0 equivalent -hsa:54876 up:Q9NXF7 equivalent -hsa:54877 up:Q9BRD4 equivalent -hsa:54877 up:Q9C0B9 equivalent -hsa:54878 up:A8K4U2 equivalent -hsa:54878 up:Q6V1X1 equivalent -hsa:54879 up:Q8TDW4 equivalent -hsa:54880 up:Q6W2J9 equivalent -hsa:54881 up:Q9NXF1 equivalent -hsa:54882 up:Q8IWZ3 equivalent -hsa:54883 up:Q9NXE8 equivalent -hsa:54884 up:Q6NUM9 equivalent -hsa:54885 up:Q0IIM8 equivalent -hsa:54886 up:Q8TBJ4 equivalent -hsa:54887 up:Q6BDS2 equivalent -hsa:54888 up:Q08J23 equivalent -hsa:54890 up:Q6P6C2 equivalent -hsa:54891 up:Q53TQ3 equivalent -hsa:54892 up:B3KRQ2 equivalent -hsa:54892 up:Q86XI2 equivalent -hsa:54893 up:Q9NXD2 equivalent -hsa:54893 up:X5D963 equivalent -hsa:54894 up:Q68DV7 equivalent -hsa:54896 up:Q6ZP29 equivalent -hsa:54897 up:B3KRV8 equivalent -hsa:54897 up:Q86V15 equivalent -hsa:54898 up:Q9NXB9 equivalent -hsa:54899 up:B4DJD8 equivalent -hsa:54899 up:Q7Z7A4 equivalent -hsa:549 up:Q13825 equivalent -hsa:54900 up:Q8IWV1 equivalent -hsa:54901 up:Q5VV42 equivalent -hsa:54902 up:Q6DKK2 equivalent -hsa:54903 up:Q9NXB0 equivalent -hsa:54904 up:Q9BZ95 equivalent -hsa:54905 up:Q8TAV3 equivalent -hsa:54906 up:Q5VWN6 equivalent -hsa:54908 up:Q96EA4 equivalent -hsa:54910 up:Q9C0C4 equivalent -hsa:54913 up:Q9BUL9 equivalent -hsa:54914 up:B3KNV9 equivalent -hsa:54914 up:Q5VW36 equivalent -hsa:54915 up:Q9BYJ9 equivalent -hsa:54916 up:B3KN73 equivalent -hsa:54916 up:Q9NX78 equivalent -hsa:54918 up:Q9NX76 equivalent -hsa:54919 up:B3KPE2 equivalent -hsa:54919 up:Q86Y56 equivalent -hsa:54920 up:Q9NX74 equivalent -hsa:54921 up:P0CG13 equivalent -hsa:54922 up:Q5U651 equivalent -hsa:54922 up:Q7L251 equivalent -hsa:54922 up:Q8IUR2 equivalent -hsa:54923 up:Q9H400 equivalent -hsa:54925 up:Q9NX65 equivalent -hsa:54926 up:Q712K3 equivalent -hsa:54927 up:A4D1N4 equivalent -hsa:54927 up:Q9NX63 equivalent -hsa:54928 up:Q9NX62 equivalent -hsa:54929 up:Q9NX61 equivalent -hsa:5493 up:O60437 equivalent -hsa:54930 up:Q9H6D7 equivalent -hsa:54931 up:Q7L0Y3 equivalent -hsa:54932 up:Q8N9H8 equivalent -hsa:54933 up:B7Z1Y9 equivalent -hsa:54933 up:Q9NX52 equivalent -hsa:54934 up:Q9H9L4 equivalent -hsa:54935 up:A0A140VJI5 equivalent -hsa:54935 up:Q9BVJ7 equivalent -hsa:54936 up:Q9NX46 equivalent -hsa:54937 up:Q9NX45 equivalent -hsa:54938 up:Q9NP81 equivalent -hsa:54939 up:Q9H0A8 equivalent -hsa:5494 up:P35813 equivalent -hsa:54940 up:Q9NX40 equivalent -hsa:54941 up:Q96EQ8 equivalent -hsa:54942 up:Q9NX38 equivalent -hsa:54943 up:Q9NX36 equivalent -hsa:54946 up:Q96GZ6 equivalent -hsa:54947 up:Q7L5N7 equivalent -hsa:54948 up:Q9NX20 equivalent -hsa:54949 up:Q9NX18 equivalent -hsa:5495 up:O75688 equivalent -hsa:54951 up:Q9NX08 equivalent -hsa:54952 up:Q9NX07 equivalent -hsa:54953 up:Q5SWX8 equivalent -hsa:54954 up:Q9NX05 equivalent -hsa:54955 up:B4DRQ5 reverse -hsa:54955 up:Q9NX04 equivalent -hsa:54956 up:Q8N5Y8 equivalent -hsa:54957 up:Q9NX01 equivalent -hsa:54958 up:Q9NX00 equivalent -hsa:54959 up:A1E959 equivalent -hsa:5496 up:O15355 equivalent -hsa:5496 up:Q6IAU5 equivalent -hsa:54960 up:Q9NWZ8 equivalent -hsa:54961 up:Q8TE77 equivalent -hsa:54962 up:Q9BVW5 equivalent -hsa:54963 up:Q53HM1 equivalent -hsa:54963 up:Q9NWZ5 equivalent -hsa:54964 up:Q9BUN1 equivalent -hsa:54965 up:Q8TBF5 equivalent -hsa:54967 up:Q8WUE5 equivalent -hsa:54968 up:Q9BUB7 equivalent -hsa:54969 up:Q9NWY4 equivalent -hsa:54970 up:A8K8G6 equivalent -hsa:54970 up:Q53G14 equivalent -hsa:54970 up:Q9H892 equivalent -hsa:54971 up:B3KM38 equivalent -hsa:54971 up:Q8N9N5 equivalent -hsa:54971 up:Q9NSS6 equivalent -hsa:54972 up:Q24JP5 equivalent -hsa:54973 up:Q5TA45 equivalent -hsa:54974 up:Q9NWX6 equivalent -hsa:54976 up:Q9GZN8 equivalent -hsa:54977 up:Q96DW6 equivalent -hsa:54978 up:Q8N357 equivalent -hsa:54979 up:Q9NWW9 equivalent -hsa:5498 up:P50336 equivalent -hsa:54980 up:Q9NWW7 equivalent -hsa:54981 up:Q9NWW6 equivalent -hsa:54982 up:A0A024R601 equivalent -hsa:54982 up:Q9NWW5 equivalent -hsa:54984 up:Q96BK5 equivalent -hsa:54985 up:Q9NWW0 equivalent -hsa:54986 up:Q96C45 equivalent -hsa:54987 up:Q9NWV4 equivalent -hsa:54988 up:Q6NUN0 equivalent -hsa:54989 up:Q6IQ21 equivalent -hsa:5499 up:P62136 equivalent -hsa:54991 up:Q96HA4 equivalent -hsa:54993 up:Q7Z7L9 equivalent -hsa:54994 up:Q9NWU2 equivalent -hsa:54995 up:Q9NWU1 equivalent -hsa:54996 up:Q969Z3 equivalent -hsa:54997 up:Q96BS2 equivalent -hsa:54998 up:Q9NWT8 equivalent -hsa:55 up:P15309 equivalent -hsa:550 up:Q9Y679 equivalent -hsa:5500 up:P62140 equivalent -hsa:5500 up:V9HW04 equivalent -hsa:55001 up:Q5TAA0 equivalent -hsa:55002 up:A0A024RE09 equivalent -hsa:55002 up:Q6UWJ1 equivalent -hsa:55003 up:A0A0S2Z5C3 equivalent -hsa:55003 up:Q9NWT1 equivalent -hsa:55004 up:Q6IAA8 equivalent -hsa:55005 up:Q9NWS8 equivalent -hsa:55006 up:Q9BVS5 equivalent -hsa:55007 up:Q9NWS6 equivalent -hsa:55008 up:Q8IVU3 equivalent -hsa:55009 up:Q9BVV8 equivalent -hsa:5501 up:P36873 equivalent -hsa:55010 up:B4DT40 equivalent -hsa:55010 up:Q9NWS1 equivalent -hsa:55011 up:Q9NWS0 equivalent -hsa:55012 up:Q969Q6 equivalent -hsa:55013 up:Q9NWR8 equivalent -hsa:55014 up:P56962 equivalent -hsa:55015 up:Q86UA1 equivalent -hsa:55016 up:A8K0Z6 equivalent -hsa:55016 up:Q8TCQ1 equivalent -hsa:55017 up:Q9NWQ9 equivalent -hsa:5502 up:Q13522 equivalent -hsa:55020 up:Q5R3I4 equivalent -hsa:55022 up:Q7Z2X4 equivalent -hsa:55023 up:Q8WWQ0 equivalent -hsa:55024 up:Q8NDB2 equivalent -hsa:55026 up:Q5JRV8 equivalent -hsa:55026 up:Q7Z4S8 equivalent -hsa:55027 up:Q7Z4Q2 equivalent -hsa:55028 up:Q9BSJ5 equivalent -hsa:55030 up:Q9NWN3 equivalent -hsa:55031 up:Q96K76 equivalent -hsa:55032 up:Q9BS91 equivalent -hsa:55033 up:A0A090N7V8 equivalent -hsa:55033 up:Q9NWM8 equivalent -hsa:55034 up:Q96EN8 equivalent -hsa:55035 up:Q76FK4 equivalent -hsa:55036 up:Q4G0X9 equivalent -hsa:55037 up:Q96EY7 equivalent -hsa:55038 up:Q9BXL8 equivalent -hsa:55039 up:Q53H54 equivalent -hsa:5504 up:P41236 equivalent -hsa:55040 up:Q9H201 equivalent -hsa:55041 up:Q96CS7 equivalent -hsa:55048 up:A5D8V6 equivalent -hsa:55049 up:Q96EN9 equivalent -hsa:55051 up:Q9H7Z3 equivalent -hsa:55052 up:Q9BYC9 equivalent -hsa:55054 up:Q17RG0 equivalent -hsa:55054 up:Q676U5 equivalent -hsa:55055 up:Q9H900 equivalent -hsa:55057 up:Q8N1P7 equivalent -hsa:55057 up:Q9NWG5 equivalent -hsa:5506 up:Q16821 equivalent -hsa:55061 up:B3KTY0 equivalent -hsa:55061 up:Q5VX71 equivalent -hsa:55062 up:Q5MNZ9 equivalent -hsa:55063 up:Q9H0M4 equivalent -hsa:550631 up:Q569K6 equivalent -hsa:55064 up:Q8N4H0 equivalent -hsa:550643 up:A0A0U1RRE5 equivalent -hsa:550643 up:A0A4P8PLQ7 equivalent -hsa:55065 up:Q9NWF4 equivalent -hsa:55066 up:Q8NCN5 equivalent -hsa:55068 up:A0A024RDT8 equivalent -hsa:55068 up:Q8TC92 equivalent -hsa:55069 up:Q9NWD8 equivalent -hsa:5507 up:Q9UQK1 equivalent -hsa:55070 up:Q7L5Y6 equivalent -hsa:55071 up:Q8IXQ3 equivalent -hsa:55072 up:Q96EP0 equivalent -hsa:55074 up:Q8N573 equivalent -hsa:55075 up:Q9BZF9 equivalent -hsa:55076 up:Q9NWC5 equivalent -hsa:55079 up:A0A140VKG3 equivalent -hsa:55079 up:Q8TBJ5 equivalent -hsa:55080 up:Q9BX59 equivalent -hsa:55081 up:Q9NWB7 equivalent -hsa:55082 up:Q9NWB6 equivalent -hsa:55083 up:Q2KJY2 equivalent -hsa:55084 up:A7XYQ1 equivalent -hsa:55084 up:Q24K27 equivalent -hsa:55086 up:Q6NSI4 equivalent -hsa:55088 up:Q496Y1 equivalent -hsa:55088 up:Q7Z3E2 equivalent -hsa:55089 up:Q969I6 equivalent -hsa:5509 up:O95685 equivalent -hsa:5509 up:Q86X09 equivalent -hsa:55090 up:Q9NWA0 equivalent -hsa:55092 up:Q9NW97 equivalent -hsa:55093 up:Q96HA8 equivalent -hsa:55094 up:Q9BRR8 equivalent -hsa:55095 up:Q5PRF9 equivalent -hsa:55096 up:Q6P2I7 equivalent -hsa:551 up:P01185 equivalent -hsa:551 up:X5DQP6 equivalent -hsa:5510 up:A0A140VK83 equivalent -hsa:5510 up:Q15435 equivalent -hsa:55100 up:Q9NW82 equivalent -hsa:55101 up:Q9NW81 equivalent -hsa:55102 up:Q96BY7 equivalent -hsa:55103 up:Q86X27 equivalent -hsa:55105 up:Q9NW75 equivalent -hsa:55106 up:Q8IYM2 equivalent -hsa:55107 up:Q5XXA6 equivalent -hsa:55107 up:Q9NW72 equivalent -hsa:55108 up:Q9NW68 equivalent -hsa:55109 up:Q8N302 equivalent -hsa:5511 up:Q12972 equivalent -hsa:55110 up:A0A023T6R1 equivalent -hsa:55110 up:Q96A72 equivalent -hsa:55111 up:Q9NW61 equivalent -hsa:55112 up:A0A140VK66 equivalent -hsa:55112 up:Q8WVS4 equivalent -hsa:55113 up:Q9H6D3 equivalent -hsa:55114 up:Q68EM7 equivalent -hsa:55116 up:Q9BT39 equivalent -hsa:55116 up:Q9GZU3 equivalent -hsa:55117 up:Q9H2J7 equivalent -hsa:55118 up:Q9NQ79 equivalent -hsa:55119 up:Q5VTL8 equivalent -hsa:55120 up:Q9NW38 equivalent -hsa:55122 up:Q53H80 equivalent -hsa:55122 up:Q9NW35 equivalent -hsa:55124 up:Q8TC59 equivalent -hsa:55124 up:W0HK13 equivalent -hsa:55125 up:Q8TEP8 equivalent -hsa:55125 up:Q9HCK3 equivalent -hsa:55127 up:A2VDI1 equivalent -hsa:55127 up:B2RWN5 equivalent -hsa:55127 up:Q9H583 equivalent -hsa:55128 up:Q6AZZ1 equivalent -hsa:55129 up:Q9NW15 equivalent -hsa:55130 up:A0A140VKF7 equivalent -hsa:55130 up:B7Z7Y0 equivalent -hsa:55130 up:Q5T2S8 equivalent -hsa:55131 up:A0A024R753 equivalent -hsa:55131 up:Q9NW13 equivalent -hsa:55132 up:Q659C4 equivalent -hsa:55133 up:Q8N5C6 equivalent -hsa:55135 up:Q9BUR4 equivalent -hsa:55137 up:Q5HY92 equivalent -hsa:55138 up:Q86YD7 equivalent -hsa:55139 up:Q9H8Y5 equivalent -hsa:5514 up:Q2L6I0 equivalent -hsa:5514 up:Q96QC0 equivalent -hsa:55140 up:Q9H9T3 equivalent -hsa:55142 up:Q9NVX0 equivalent -hsa:55143 up:Q53HL2 equivalent -hsa:55144 up:B3KRU1 equivalent -hsa:55144 up:Q7L1W4 equivalent -hsa:55145 up:Q9NVV9 equivalent -hsa:55146 up:Q9NPG8 equivalent -hsa:55147 up:A0A0S2Z5D9 equivalent -hsa:55147 up:Q86U06 equivalent -hsa:55148 up:Q8N806 equivalent -hsa:55149 up:Q9NVV4 equivalent -hsa:5515 up:B3KUN1 equivalent -hsa:5515 up:P67775 equivalent -hsa:55150 up:Q9NVV2 equivalent -hsa:55151 up:Q9NVV0 equivalent -hsa:55152 up:Q5D0E6 equivalent -hsa:55153 up:Q9NVU7 equivalent -hsa:55154 up:Q9BUK6 equivalent -hsa:55156 up:Q9NVT9 equivalent -hsa:55157 up:Q6PI48 equivalent -hsa:55157 up:Q9H9J7 equivalent -hsa:55159 up:Q6PCD5 equivalent -hsa:5516 up:A0A140VJS0 equivalent -hsa:5516 up:P62714 equivalent -hsa:55160 up:Q9HCE6 equivalent -hsa:55161 up:P57088 equivalent -hsa:55163 up:Q9NVS9 equivalent -hsa:55163 up:V9HW45 equivalent -hsa:55164 up:Q6PI26 equivalent -hsa:55165 up:Q53EZ4 equivalent -hsa:55166 up:Q7L2Z9 equivalent -hsa:55167 up:Q9HCI7 equivalent -hsa:55168 up:Q9NVS2 equivalent -hsa:55170 up:Q96LA8 equivalent -hsa:55171 up:Q9NVR7 equivalent -hsa:55172 up:Q9NVR5 equivalent -hsa:55173 up:P82664 equivalent -hsa:55174 up:Q9NVR2 equivalent -hsa:55175 up:Q9NVR0 equivalent -hsa:55176 up:Q8TC24 equivalent -hsa:55176 up:Q9H9S3 equivalent -hsa:55177 up:Q96TC7 equivalent -hsa:55178 up:Q9HC36 equivalent -hsa:55179 up:Q9NVQ4 equivalent -hsa:5518 up:A8K7B7 equivalent -hsa:5518 up:P30153 equivalent -hsa:55180 up:Q8NG48 equivalent -hsa:55181 up:Q8ND04 equivalent -hsa:55182 up:Q5VTB9 equivalent -hsa:55183 up:Q5UIP0 equivalent -hsa:55184 up:Q9NVP4 equivalent -hsa:55186 up:A0A384MEA9 equivalent -hsa:55186 up:Q96CQ1 equivalent -hsa:55187 up:Q5THJ4 equivalent -hsa:55188 up:Q9NVN3 equivalent -hsa:5519 up:P30154 equivalent -hsa:55190 up:Q96G61 equivalent -hsa:55191 up:Q6IA69 equivalent -hsa:55192 up:Q9NVM6 equivalent -hsa:55193 up:Q86U86 equivalent -hsa:55194 up:Q9NVM1 equivalent -hsa:55195 up:Q9NVL8 equivalent -hsa:55196 up:Q9HCM1 equivalent -hsa:55197 up:Q96P16 equivalent -hsa:55198 up:Q8NEU8 equivalent -hsa:552 up:P37288 equivalent -hsa:552 up:X5D2B0 equivalent -hsa:5520 up:A0A140VJT0 equivalent -hsa:5520 up:P63151 equivalent -hsa:55200 up:A0A2X0TW08 equivalent -hsa:55200 up:Q3KR16 equivalent -hsa:55201 up:Q66K74 equivalent -hsa:55203 up:Q8N0V4 equivalent -hsa:55204 up:Q9H4A5 equivalent -hsa:55205 up:B3KXW2 equivalent -hsa:55205 up:Q9HCE3 equivalent -hsa:55206 up:A3KN83 equivalent -hsa:55207 up:Q9NVJ2 equivalent -hsa:55208 up:Q6PH85 equivalent -hsa:55209 up:Q9C0A6 equivalent -hsa:5521 up:Q00005 equivalent -hsa:55210 up:Q9NVI7 equivalent -hsa:55211 up:Q7L190 equivalent -hsa:55212 up:Q8IWZ6 equivalent -hsa:55213 up:B3KR20 equivalent -hsa:55213 up:Q8NDN9 equivalent -hsa:55214 up:Q8IVL5 equivalent -hsa:55215 up:Q9NVI1 equivalent -hsa:55216 up:Q6ZUT1 equivalent -hsa:55217 up:Q9NVH6 equivalent -hsa:55218 up:Q9NVH0 equivalent -hsa:55219 up:Q8N5G2 equivalent -hsa:5522 up:Q9Y2T4 equivalent -hsa:55220 up:Q8IYD2 equivalent -hsa:55222 up:Q8TCA0 equivalent -hsa:55223 up:Q9BVG3 equivalent -hsa:55224 up:Q9NVF9 equivalent -hsa:55225 up:Q9HCJ3 equivalent -hsa:55226 up:Q9H0A0 equivalent -hsa:55227 up:Q9BTT6 equivalent -hsa:55228 up:Q86V59 equivalent -hsa:55229 up:Q9NVE7 equivalent -hsa:5523 up:Q06190 equivalent -hsa:55230 up:Q9NVE5 equivalent -hsa:55231 up:Q9NVE4 equivalent -hsa:55233 up:Q9H8S9 equivalent -hsa:55234 up:A0MNN4 equivalent -hsa:55234 up:Q2TAY7 equivalent -hsa:55236 up:A0AVT1 equivalent -hsa:55237 up:Q9H8Y1 equivalent -hsa:55238 up:Q9NVC3 equivalent -hsa:55239 up:Q8N543 equivalent -hsa:5524 up:Q15257 equivalent -hsa:55240 up:Q658P3 equivalent -hsa:55243 up:Q96J84 equivalent -hsa:55244 up:Q96FL8 equivalent -hsa:55245 up:Q3KRB6 equivalent -hsa:55245 up:Q9NVA1 equivalent -hsa:55246 up:Q86WR0 equivalent -hsa:55247 up:Q8TAT5 equivalent -hsa:55248 up:Q9H813 equivalent -hsa:55249 up:Q9H869 equivalent -hsa:5525 up:Q15172 equivalent -hsa:55250 up:Q6IA86 equivalent -hsa:55251 up:Q9NV79 equivalent -hsa:55252 up:Q76L83 equivalent -hsa:55253 up:Q9NV66 equivalent -hsa:55254 up:Q9NV64 equivalent -hsa:55255 up:A0A0S2Z5E0 equivalent -hsa:55255 up:Q9HAD4 equivalent -hsa:55256 up:Q9BV57 equivalent -hsa:55257 up:Q9NV56 equivalent -hsa:55258 up:Q86YJ6 equivalent -hsa:55259 up:B4E376 equivalent -hsa:55259 up:Q6TDU7 equivalent -hsa:5526 up:Q15173 equivalent -hsa:55260 up:Q96AN5 equivalent -hsa:55262 up:Q8WVR3 equivalent -hsa:55266 up:Q96HH6 equivalent -hsa:55268 up:Q86YB7 equivalent -hsa:55269 up:Q8WXF1 equivalent -hsa:5527 up:Q13362 equivalent -hsa:55270 up:Q9NV35 equivalent -hsa:55272 up:Q9NV31 equivalent -hsa:55273 up:Q9NV29 equivalent -hsa:55274 up:Q8WUB8 equivalent -hsa:55275 up:B3KS06 equivalent -hsa:55275 up:Q5VIR6 equivalent -hsa:55276 up:Q96G03 equivalent -hsa:55277 up:Q96C11 equivalent -hsa:55278 up:Q9H0R6 equivalent -hsa:5528 up:Q14738 equivalent -hsa:55280 up:A0A0S2Z5E9 equivalent -hsa:55280 up:Q69YN2 equivalent -hsa:55281 up:Q9NV12 equivalent -hsa:55282 up:Q1X8D7 equivalent -hsa:55283 up:Q8TDD5 equivalent -hsa:55284 up:Q96B02 equivalent -hsa:55285 up:Q96IZ5 equivalent -hsa:55286 up:Q8IY42 equivalent -hsa:55287 up:Q8WWA1 equivalent -hsa:55288 up:Q8IXI2 equivalent -hsa:552889 up:Q96GX2 equivalent -hsa:55289 up:B4DU63 equivalent -hsa:55289 up:Q9NUZ1 equivalent -hsa:552891 up:A0A024R161 equivalent -hsa:552891 up:Q9H1X3 equivalent -hsa:5529 up:Q16537 equivalent -hsa:55290 up:Q9HAW0 equivalent -hsa:552900 up:A0A499FJE1 equivalent -hsa:552900 up:Q9H3K6 equivalent -hsa:55291 up:Q5H9R7 equivalent -hsa:55293 up:Q8IX04 equivalent -hsa:55294 up:Q969H0 equivalent -hsa:55295 up:Q53HC5 equivalent -hsa:55296 up:Q8N5T2 equivalent -hsa:55297 up:Q05D28 equivalent -hsa:55297 up:Q7Z6B0 equivalent -hsa:55298 up:Q9H920 equivalent -hsa:55299 up:Q8TDN6 equivalent -hsa:553 up:P47901 equivalent -hsa:5530 up:A0A0S2Z4C6 equivalent -hsa:5530 up:Q08209 equivalent -hsa:55300 up:Q8TCG2 equivalent -hsa:55301 up:Q9NV23 equivalent -hsa:55303 up:A0A090N7X0 equivalent -hsa:55303 up:Q9NUV9 equivalent -hsa:55304 up:Q9NUV7 equivalent -hsa:55308 up:Q9NUU7 equivalent -hsa:5531 up:A0A024R625 equivalent -hsa:5531 up:P60510 equivalent -hsa:55311 up:Q8N0Y2 equivalent -hsa:553115 up:A0A384MQX5 equivalent -hsa:553115 up:Q9UBV8 equivalent -hsa:55312 up:B2RDZ2 equivalent -hsa:55312 up:Q969G6 equivalent -hsa:553128 up:A0A0G2JPC4 equivalent -hsa:553128 up:Q8NHK3 equivalent -hsa:55313 up:Q9BRF8 equivalent -hsa:55314 up:Q7Z5S9 equivalent -hsa:55315 up:Q9BZD2 equivalent -hsa:553158 up:B1AHC3 equivalent -hsa:55316 up:Q9HA92 equivalent -hsa:55317 up:Q9NUS5 equivalent -hsa:55319 up:Q96EY4 equivalent -hsa:5532 up:P16298 equivalent -hsa:55320 up:Q6P0N0 equivalent -hsa:55321 up:Q9NUR3 equivalent -hsa:55322 up:Q49AR2 equivalent -hsa:55323 up:Q9BRS8 equivalent -hsa:55324 up:A0A0S2Z5L1 equivalent -hsa:55324 up:Q9NUQ8 equivalent -hsa:55325 up:B3KRI4 equivalent -hsa:55325 up:Q9NUQ7 equivalent -hsa:55326 up:A0A024R640 equivalent -hsa:55326 up:Q9NUQ2 equivalent -hsa:55327 up:Q9NUP9 equivalent -hsa:55328 up:Q5VYX0 equivalent -hsa:55329 up:B3KQ70 equivalent -hsa:55329 up:Q8NEH6 equivalent -hsa:5533 up:P48454 equivalent -hsa:55330 up:Q9NUP1 equivalent -hsa:55331 up:Q9NUN7 equivalent -hsa:55332 up:Q8N682 equivalent -hsa:55333 up:P57105 equivalent -hsa:55334 up:C4N9M8 equivalent -hsa:55334 up:Q9NUM3 equivalent -hsa:55335 up:Q71RE8 equivalent -hsa:55335 up:Q9BS92 equivalent -hsa:55336 up:Q96CD0 equivalent -hsa:55337 up:Q9NUL5 equivalent -hsa:55339 up:Q9C0J8 equivalent -hsa:5534 up:P63098 equivalent -hsa:55340 up:A0A090N8P9 equivalent -hsa:55340 up:Q96F15 equivalent -hsa:55341 up:Q9H089 equivalent -hsa:55342 up:Q96SI9 equivalent -hsa:55342 up:V9HWK4 equivalent -hsa:55343 up:B3KQH0 equivalent -hsa:55343 up:Q96A29 equivalent -hsa:55344 up:Q9NUJ7 equivalent -hsa:55345 up:Q86YA3 equivalent -hsa:55346 up:Q9NUJ3 equivalent -hsa:55347 up:Q9NUJ1 equivalent -hsa:55349 up:Q8NE62 equivalent -hsa:5535 up:Q96LZ3 equivalent -hsa:55351 up:B2R9M8 equivalent -hsa:55351 up:Q9NY57 equivalent -hsa:55352 up:Q9NQ92 equivalent -hsa:55353 up:Q86VI4 equivalent -hsa:55355 up:Q8NCD3 equivalent -hsa:55356 up:Q8IZD6 equivalent -hsa:55357 up:Q9BYX2 equivalent -hsa:55359 up:Q6J9G0 equivalent -hsa:5536 up:P53041 equivalent -hsa:55361 up:Q9BTU6 equivalent -hsa:55362 up:Q5T3F8 equivalent -hsa:55363 up:Q9BXL5 equivalent -hsa:55364 up:Q9P2X3 equivalent -hsa:55365 up:A0A090N8H6 equivalent -hsa:55365 up:Q96HP8 equivalent -hsa:55366 up:Q59ER8 equivalent -hsa:55366 up:Q9BXB1 equivalent -hsa:55367 up:Q9HB75 equivalent -hsa:5537 up:A0A024R861 equivalent -hsa:5537 up:O00743 equivalent -hsa:55374 up:Q96DC7 equivalent -hsa:55379 up:Q96AG4 equivalent -hsa:5538 up:P50897 equivalent -hsa:55388 up:Q7L590 equivalent -hsa:5539 up:P01298 equivalent -hsa:554 up:P30518 equivalent -hsa:5540 up:P50391 equivalent -hsa:5542 up:P04280 equivalent -hsa:55421 up:Q53F19 equivalent -hsa:55422 up:Q68D63 equivalent -hsa:55422 up:Q71QC5 equivalent -hsa:55422 up:Q9NQX6 equivalent -hsa:55423 up:Q9P1W8 equivalent -hsa:554235 up:A6ND91 equivalent -hsa:55425 up:Q8IXQ4 equivalent -hsa:554251 up:Q5FWF7 equivalent -hsa:554282 up:H0Y354 equivalent -hsa:554313 up:B2R4R0 equivalent -hsa:554313 up:P62805 equivalent -hsa:55432 up:Q5VVQ6 equivalent -hsa:55435 up:Q63HQ0 equivalent -hsa:55437 up:Q9C0K7 equivalent -hsa:5545 up:E7EXA8 equivalent -hsa:55450 up:Q7Z7J9 equivalent -hsa:55454 up:A0A0S2Z5F5 equivalent -hsa:55454 up:Q8N6G5 equivalent -hsa:5546 up:A0A0S2Z456 equivalent -hsa:5546 up:Q92733 equivalent -hsa:5546 up:Q96FT4 equivalent -hsa:55466 up:Q69YX3 equivalent -hsa:55466 up:Q8WW22 equivalent -hsa:5547 up:P42785 equivalent -hsa:55471 up:Q7L592 equivalent -hsa:55486 up:Q9H300 equivalent -hsa:5549 up:P51888 equivalent -hsa:5550 up:B2RAH7 equivalent -hsa:5550 up:P48147 equivalent -hsa:55500 up:Q9HBU6 equivalent -hsa:55501 up:Q9NRB3 equivalent -hsa:55502 up:Q96HZ4 equivalent -hsa:55503 up:Q9H1D0 equivalent -hsa:55504 up:Q9NS68 equivalent -hsa:55505 up:Q9NPE3 equivalent -hsa:55506 up:Q9P0M6 equivalent -hsa:55507 up:Q9NZD1 equivalent -hsa:55508 up:Q7Z769 equivalent -hsa:55509 up:Q9NR55 equivalent -hsa:5551 up:P14222 equivalent -hsa:55510 up:Q9NXZ2 equivalent -hsa:55511 up:Q9NXZ1 equivalent -hsa:55512 up:A8K0T6 equivalent -hsa:55512 up:Q9NY59 equivalent -hsa:55515 up:Q96FT7 equivalent -hsa:5552 up:P10124 equivalent -hsa:55520 up:Q9H777 equivalent -hsa:55521 up:Q9NQ86 equivalent -hsa:55526 up:Q96HY7 equivalent -hsa:55527 up:Q9BSK4 equivalent -hsa:55529 up:Q8N4L2 equivalent -hsa:5553 up:P13727 equivalent -hsa:55530 up:Q8N4V2 equivalent -hsa:55531 up:Q8N336 equivalent -hsa:55532 up:B3KR19 equivalent -hsa:55532 up:Q6XR72 equivalent -hsa:55534 up:Q96JK9 equivalent -hsa:55534 up:Q9NPV6 equivalent -hsa:55536 up:A8K8X5 equivalent -hsa:55536 up:Q96GN5 equivalent -hsa:5554 up:A0A087WV42 equivalent -hsa:5554 up:F1T0A8 equivalent -hsa:5554 up:P02810 equivalent -hsa:55540 up:Q9NRM6 equivalent -hsa:55544 up:Q9H0Z9 equivalent -hsa:5555 up:P02810 equivalent -hsa:55552 up:P16415 equivalent -hsa:55553 up:P35712 equivalent -hsa:55554 up:Q6UBM2 equivalent -hsa:55554 up:Q9H2R5 equivalent -hsa:55556 up:Q7L5Y1 equivalent -hsa:55558 up:P51805 equivalent -hsa:55561 up:Q6DT37 equivalent -hsa:55565 up:O75541 equivalent -hsa:55567 up:Q8TD57 equivalent -hsa:55568 up:Q86SR1 equivalent -hsa:5557 up:P49642 equivalent -hsa:55571 up:Q9UKZ1 equivalent -hsa:55572 up:Q96CU9 equivalent -hsa:55573 up:Q9UKY7 equivalent -hsa:55576 up:Q8WWQ8 equivalent -hsa:55577 up:A0A384N6G7 equivalent -hsa:55577 up:Q9UJ70 equivalent -hsa:55578 up:Q8NEM7 equivalent -hsa:5558 up:P49643 equivalent -hsa:55582 up:Q86VH2 equivalent -hsa:55584 up:Q9UGM1 equivalent -hsa:55585 up:Q7Z7E8 equivalent -hsa:55586 up:Q9UGB7 equivalent -hsa:55588 up:B4DUA7 equivalent -hsa:55588 up:Q9NX70 equivalent -hsa:55589 up:Q9NSY1 equivalent -hsa:55591 up:Q9HBM0 equivalent -hsa:55593 up:Q96G74 equivalent -hsa:55596 up:Q6NZY4 equivalent -hsa:55599 up:Q96LT9 equivalent -hsa:55600 up:Q8WWA0 equivalent -hsa:55601 up:A0A3G9HN97 equivalent -hsa:55601 up:Q6B0F7 equivalent -hsa:55601 up:Q8IY21 equivalent -hsa:55601 up:Q9H616 equivalent -hsa:55601 up:Q9NXV7 equivalent -hsa:55602 up:Q9NXV6 equivalent -hsa:55603 up:Q96IP4 equivalent -hsa:55604 up:Q5VZK9 equivalent -hsa:55605 up:Q7Z4S6 equivalent -hsa:55607 up:Q9ULJ8 equivalent -hsa:55608 up:Q9NXR5 equivalent -hsa:55609 up:Q8ND82 equivalent -hsa:55610 up:Q96JG6 equivalent -hsa:55611 up:B3KUV5 equivalent -hsa:55611 up:Q96FW1 equivalent -hsa:55612 up:Q49AC8 equivalent -hsa:55612 up:Q54A15 equivalent -hsa:55612 up:Q9BQL6 equivalent -hsa:55613 up:Q96EF0 equivalent -hsa:55614 up:A0A140VK74 equivalent -hsa:55614 up:Q96L93 equivalent -hsa:55615 up:A8K699 equivalent -hsa:55615 up:P85299 equivalent -hsa:55616 up:Q8TDY4 equivalent -hsa:55617 up:Q9H6P5 equivalent -hsa:55619 up:Q96BY6 equivalent -hsa:5562 up:Q13131 equivalent -hsa:55620 up:Q9UGK3 equivalent -hsa:55621 up:Q9NXH9 equivalent -hsa:55622 up:Q6P3X3 equivalent -hsa:55623 up:Q6MZT3 equivalent -hsa:55623 up:Q9NXG2 equivalent -hsa:55624 up:Q8WZA1 equivalent -hsa:55625 up:Q9NXF8 equivalent -hsa:55626 up:Q9C0C7 equivalent -hsa:55627 up:Q9NXE4 equivalent -hsa:55628 up:Q9C0G0 equivalent -hsa:55629 up:Q9NPJ4 equivalent -hsa:5563 up:P54646 equivalent -hsa:55630 up:Q6P5W5 equivalent -hsa:55631 up:A0A140VJN3 equivalent -hsa:55631 up:Q9H9A6 equivalent -hsa:55632 up:Q7L622 equivalent -hsa:55633 up:Q9NU19 equivalent -hsa:55634 up:Q5JUW0 equivalent -hsa:55635 up:Q5TB30 equivalent -hsa:55636 up:Q6ZWF9 equivalent -hsa:55636 up:Q9P2D1 equivalent -hsa:55638 up:Q9NX95 equivalent -hsa:5564 up:Q9Y478 equivalent -hsa:55640 up:Q9UPI3 equivalent -hsa:55643 up:Q9BX70 equivalent -hsa:55644 up:Q9NPF4 equivalent -hsa:55646 up:Q9NX58 equivalent -hsa:55647 up:Q9NX57 equivalent -hsa:5565 up:O43741 equivalent -hsa:55650 up:Q9NUD9 equivalent -hsa:55651 up:Q9NX24 equivalent -hsa:55652 up:Q6P1K1 equivalent -hsa:55653 up:Q8TDM0 equivalent -hsa:55654 up:O75204 equivalent -hsa:55655 up:Q9NX02 equivalent -hsa:55656 up:Q75QN2 equivalent -hsa:55657 up:Q9BU19 equivalent -hsa:55658 up:A8K0Q1 equivalent -hsa:55658 up:Q9BV68 equivalent -hsa:55659 up:Q9BWM5 equivalent -hsa:5566 up:P17612 equivalent -hsa:55660 up:O75400 equivalent -hsa:55661 up:B7Z6D5 equivalent -hsa:55661 up:Q96GQ7 equivalent -hsa:55662 up:Q9NWT6 equivalent -hsa:55663 up:Q9NWS9 equivalent -hsa:55663 up:Q9UFF2 equivalent -hsa:55664 up:Q7L3B6 equivalent -hsa:55665 up:Q8TCY9 equivalent -hsa:55666 up:Q8TAT6 equivalent -hsa:55667 up:Q5VZ89 equivalent -hsa:55668 up:Q9NWQ4 equivalent -hsa:55669 up:Q8IWA4 equivalent -hsa:5567 up:B2RB89 equivalent -hsa:5567 up:P22694 equivalent -hsa:55670 up:A0A024R100 equivalent -hsa:55670 up:Q7Z412 equivalent -hsa:55671 up:Q6IN85 equivalent -hsa:55671 up:Q8N6W1 equivalent -hsa:55672 up:Q3BBV0 equivalent -hsa:55676 up:Q6NXT4 equivalent -hsa:55677 up:Q96ST2 equivalent -hsa:55679 up:Q7Z4I7 equivalent -hsa:5568 up:P22612 equivalent -hsa:55680 up:Q5GIA6 equivalent -hsa:55680 up:Q8WXA3 equivalent -hsa:55681 up:Q6P3W7 equivalent -hsa:55683 up:Q9P2N6 equivalent -hsa:55684 up:Q3YEC7 equivalent -hsa:55686 up:Q8N565 equivalent -hsa:55687 up:O75648 equivalent -hsa:55689 up:Q9ULM3 equivalent -hsa:5569 up:P61925 equivalent -hsa:55690 up:Q6VY07 equivalent -hsa:55691 up:Q9P2Q2 equivalent -hsa:55692 up:Q9NQ29 equivalent -hsa:55693 up:Q6B0I6 equivalent -hsa:55695 up:Q96P11 equivalent -hsa:55696 up:Q9NW64 equivalent -hsa:55697 up:Q08AM6 equivalent -hsa:55698 up:Q96JH8 equivalent -hsa:55699 up:Q9NSE4 equivalent -hsa:5570 up:Q9C010 equivalent -hsa:55700 up:Q3KQU3 equivalent -hsa:55701 up:Q8TER5 equivalent -hsa:55702 up:Q9BW85 equivalent -hsa:55703 up:Q7Z3R8 equivalent -hsa:55703 up:Q9NW08 equivalent -hsa:55704 up:O14997 equivalent -hsa:55704 up:Q3V6T2 equivalent -hsa:55705 up:Q96P70 equivalent -hsa:55706 up:Q9BTX1 equivalent -hsa:55707 up:Q9NVZ3 equivalent -hsa:55709 up:Q9NVX7 equivalent -hsa:5571 up:P54619 equivalent -hsa:55711 up:A0A024RAW7 equivalent -hsa:55711 up:B2RBI0 equivalent -hsa:55711 up:Q96K12 equivalent -hsa:55711 up:Q9NUX8 equivalent -hsa:55713 up:Q9HCZ1 equivalent -hsa:55714 up:A0A140VJW8 equivalent -hsa:55714 up:Q9P273 equivalent -hsa:55715 up:Q8TEW6 equivalent -hsa:55716 up:A0A024R0Y9 equivalent -hsa:55716 up:Q6UX01 equivalent -hsa:55717 up:Q9BZH6 equivalent -hsa:55718 up:Q9NVU0 equivalent -hsa:55719 up:Q8IX21 equivalent -hsa:55720 up:Q2NL82 equivalent -hsa:55721 up:Q4KMZ1 equivalent -hsa:55722 up:Q9P209 equivalent -hsa:55723 up:Q9NVP2 equivalent -hsa:55726 up:Q9NVM9 equivalent -hsa:55727 up:Q9P203 equivalent -hsa:55728 up:B2ZZ87 equivalent -hsa:55728 up:Q86UW6 equivalent -hsa:55729 up:B3KNI7 equivalent -hsa:55729 up:B3KQF8 equivalent -hsa:55729 up:Q6VMQ6 equivalent -hsa:5573 up:B2R5T5 equivalent -hsa:5573 up:P10644 equivalent -hsa:55731 up:B3KQ88 equivalent -hsa:55731 up:Q8WU58 equivalent -hsa:55732 up:Q9NSG2 equivalent -hsa:55733 up:Q5VTY9 equivalent -hsa:55734 up:Q9NTW7 equivalent -hsa:55735 up:Q9NVH1 equivalent -hsa:55737 up:Q96QK1 equivalent -hsa:55738 up:Q53F62 equivalent -hsa:55738 up:Q8N6T3 equivalent -hsa:55739 up:Q8IW45 equivalent -hsa:55740 up:Q8N8S7 equivalent -hsa:55741 up:Q9BV94 equivalent -hsa:55742 up:Q9NVD7 equivalent -hsa:55743 up:Q96EP1 equivalent -hsa:55744 up:Q9GZY4 equivalent -hsa:55745 up:Q9H0R1 equivalent -hsa:55746 up:Q8WUM0 equivalent -hsa:55748 up:Q96KP4 equivalent -hsa:55749 up:Q8IX12 equivalent -hsa:5575 up:P31321 equivalent -hsa:55750 up:A4D1U5 equivalent -hsa:55750 up:Q53H12 equivalent -hsa:55751 up:Q9NVA4 equivalent -hsa:55752 up:A0A384P5S0 equivalent -hsa:55752 up:Q9NVA2 equivalent -hsa:55753 up:Q9ULD0 equivalent -hsa:55754 up:Q9NV96 equivalent -hsa:55755 up:B3KVI2 equivalent -hsa:55755 up:Q96SN8 equivalent -hsa:55756 up:Q9NV88 equivalent -hsa:55757 up:Q05D90 equivalent -hsa:55757 up:Q9NYU1 equivalent -hsa:55758 up:Q9P2K3 equivalent -hsa:55759 up:Q53T99 equivalent -hsa:55759 up:Q9GZL7 equivalent -hsa:5576 up:A0A024R2W3 equivalent -hsa:5576 up:A8KAH7 equivalent -hsa:5576 up:P13861 equivalent -hsa:55760 up:Q7L7V1 equivalent -hsa:55761 up:Q49A97 equivalent -hsa:55761 up:Q96AE7 equivalent -hsa:55762 up:Q6NWZ7 equivalent -hsa:55762 up:Q9NV72 equivalent -hsa:55763 up:Q9NV70 equivalent -hsa:55764 up:Q9HBG6 equivalent -hsa:55765 up:A0A8V8N8P9 equivalent -hsa:55765 up:Q3KP66 equivalent -hsa:55766 up:Q9BTM1 equivalent -hsa:55768 up:Q96IV0 equivalent -hsa:55769 up:P51522 equivalent -hsa:5577 up:B3KY43 equivalent -hsa:5577 up:P31323 equivalent -hsa:55770 up:Q96KP1 equivalent -hsa:55771 up:D2SNZ4 equivalent -hsa:55771 up:Q96HE9 equivalent -hsa:55773 up:Q9NUY8 equivalent -hsa:55775 up:B3KN41 equivalent -hsa:55775 up:Q9NUW8 equivalent -hsa:55776 up:Q9NPB0 equivalent -hsa:55777 up:Q9P267 equivalent -hsa:55778 up:A8K0R7 equivalent -hsa:55779 up:Q96MT7 equivalent -hsa:55779 up:Q9NUU0 equivalent -hsa:55779 up:Q9UF55 equivalent -hsa:5578 up:L7RSM7 equivalent -hsa:5578 up:P17252 equivalent -hsa:5578 up:Q7Z727 equivalent -hsa:55780 up:Q5T6L9 equivalent -hsa:55781 up:Q9BVS4 equivalent -hsa:55783 up:Q8IYT2 equivalent -hsa:55784 up:Q6DN12 equivalent -hsa:55785 up:Q6ZV73 equivalent -hsa:55786 up:B3KTG1 equivalent -hsa:55786 up:Q09FC8 equivalent -hsa:55787 up:Q9NUQ3 equivalent -hsa:55788 up:Q9NUN5 equivalent -hsa:55789 up:Q8WUY9 equivalent -hsa:5579 up:P05771 equivalent -hsa:55790 up:Q8TDX6 equivalent -hsa:55791 up:Q5T3J3 equivalent -hsa:55793 up:Q8N5J2 equivalent -hsa:55794 up:Q9NUL7 equivalent -hsa:55795 up:Q5JVF3 equivalent -hsa:55796 up:Q9NUK0 equivalent -hsa:55798 up:Q6P1Q9 equivalent -hsa:55799 up:Q8IZS8 equivalent -hsa:558 up:P30530 equivalent -hsa:5580 up:B4DFV1 equivalent -hsa:5580 up:Q05655 equivalent -hsa:55800 up:Q9NY72 equivalent -hsa:55801 up:A0A7R8GUW8 equivalent -hsa:55801 up:Q9NPH9 equivalent -hsa:55802 up:Q9NPI6 equivalent -hsa:55803 up:Q9NPF8 equivalent -hsa:55805 up:Q9P2M1 equivalent -hsa:55806 up:O43593 equivalent -hsa:55808 up:Q9NSC7 equivalent -hsa:55809 up:Q05GC8 equivalent -hsa:55809 up:Q96PN7 equivalent -hsa:5581 up:L7RTI5 equivalent -hsa:5581 up:Q02156 equivalent -hsa:55810 up:Q9P0K8 equivalent -hsa:55811 up:A0A0K0K1J8 equivalent -hsa:55811 up:Q96PN6 equivalent -hsa:55812 up:Q9P0W8 equivalent -hsa:55812 up:V9HVY9 equivalent -hsa:55813 up:Q9NYH9 equivalent -hsa:55814 up:A6H8Y1 equivalent -hsa:55815 up:Q2TAA8 equivalent -hsa:55816 up:Q9P104 equivalent -hsa:55818 up:Q9Y4C1 equivalent -hsa:55819 up:Q2HIY3 equivalent -hsa:55819 up:Q86XS8 equivalent -hsa:5582 up:P05129 equivalent -hsa:55821 up:Q8N6M5 equivalent -hsa:55823 up:A0A087WXL6 equivalent -hsa:55823 up:B7Z879 equivalent -hsa:55823 up:Q9H270 equivalent -hsa:55824 up:Q9NWQ8 equivalent -hsa:55825 up:Q9BY49 equivalent -hsa:55827 up:Q58WW2 equivalent -hsa:55829 up:Q9BQE4 equivalent -hsa:5583 up:P24723 equivalent -hsa:55830 up:Q68CQ7 equivalent -hsa:55831 up:Q9P0I2 equivalent -hsa:55832 up:Q86VP6 equivalent -hsa:55833 up:B4DH66 equivalent -hsa:55833 up:B7Z7P2 equivalent -hsa:55833 up:Q5T6F2 equivalent -hsa:55833 up:Q9P0H6 equivalent -hsa:55835 up:A8K8P1 equivalent -hsa:55835 up:Q9HC77 equivalent -hsa:55837 up:Q56P03 equivalent -hsa:55839 up:Q96H22 equivalent -hsa:5584 up:P41743 equivalent -hsa:55840 up:Q96CJ1 equivalent -hsa:55841 up:Q9ULE0 equivalent -hsa:55843 up:Q53QZ3 equivalent -hsa:55844 up:Q66LE6 equivalent -hsa:55845 up:Q8WUW1 equivalent -hsa:55846 up:A0A0S2Z5P1 equivalent -hsa:55846 up:Q969R8 equivalent -hsa:55847 up:Q9NZ45 equivalent -hsa:55848 up:Q9HBL7 equivalent -hsa:5585 up:Q16512 equivalent -hsa:55850 up:Q9NZ43 equivalent -hsa:55851 up:Q9NZ42 equivalent -hsa:55852 up:Q8IWB9 equivalent -hsa:55854 up:Q8WU90 equivalent -hsa:55856 up:Q9NPJ3 equivalent -hsa:55857 up:Q2M2Z5 equivalent -hsa:55858 up:Q9HC07 equivalent -hsa:55859 up:Q9HBH7 equivalent -hsa:5586 up:Q16513 equivalent -hsa:55860 up:Q9NZ32 equivalent -hsa:55861 up:Q9BQY9 equivalent -hsa:55862 up:Q9NTX5 equivalent -hsa:55863 up:Q8IUX1 equivalent -hsa:55867 up:Q9NSA0 equivalent -hsa:55869 up:Q9BY41 equivalent -hsa:5587 up:F8WBA3 reverse -hsa:5587 up:Q15139 equivalent -hsa:55870 up:Q9NR48 equivalent -hsa:55871 up:Q9BRT8 equivalent -hsa:55872 up:Q96KB5 equivalent -hsa:55872 up:V9HWH0 equivalent -hsa:55876 up:Q8TAX9 equivalent -hsa:55879 up:Q9UN88 equivalent -hsa:5588 up:Q04759 equivalent -hsa:55884 up:Q9NYS7 equivalent -hsa:55885 up:Q8TAP4 equivalent -hsa:55885 up:Q9NYC6 equivalent -hsa:55888 up:Q9P0L1 equivalent -hsa:55889 up:A6NDN3 equivalent -hsa:5589 up:P14314 equivalent -hsa:55890 up:Q9BSP0 equivalent -hsa:55890 up:Q9NQ84 equivalent -hsa:55891 up:Q9Y5L5 equivalent -hsa:55892 up:Q9NPC7 equivalent -hsa:55893 up:Q7L9C8 equivalent -hsa:55893 up:Q9H8N7 equivalent -hsa:55894 up:A0A894JZ42 equivalent -hsa:55894 up:P81534 equivalent -hsa:55897 up:Q9BRJ9 equivalent -hsa:55898 up:Q9H3U1 equivalent -hsa:5590 up:Q05513 equivalent -hsa:55900 up:B3KY96 equivalent -hsa:55900 up:E7EVR1 equivalent -hsa:55900 up:Q9NR11 equivalent -hsa:55901 up:B3KTY7 equivalent -hsa:55901 up:Q9NS62 equivalent -hsa:55902 up:Q6DKJ3 equivalent -hsa:55902 up:Q9NR19 equivalent -hsa:55904 up:Q8IZD2 equivalent -hsa:55905 up:Q9Y508 equivalent -hsa:55906 up:Q9NQZ6 equivalent -hsa:55907 up:Q8NFW8 equivalent -hsa:55908 up:Q6UXH0 equivalent -hsa:55909 up:Q9NQY0 equivalent -hsa:5591 up:P78527 equivalent -hsa:55911 up:Q0VD83 equivalent -hsa:55914 up:Q96RT1 equivalent -hsa:55915 up:B3KTN5 equivalent -hsa:55915 up:Q9NS86 equivalent -hsa:55916 up:Q9NPJ8 equivalent -hsa:55917 up:Q9P2B4 equivalent -hsa:5592 up:Q13976 equivalent -hsa:55920 up:A0A024RAC5 equivalent -hsa:55920 up:Q9P258 equivalent -hsa:55924 up:Q9NTI7 equivalent -hsa:55929 up:Q9NPF5 equivalent -hsa:5593 up:A0A140VJM3 equivalent -hsa:5593 up:Q13237 equivalent -hsa:55930 up:Q9NQX4 equivalent -hsa:55937 up:O95445 equivalent -hsa:5594 up:P28482 equivalent -hsa:5594 up:Q1HBJ4 equivalent -hsa:5594 up:Q499G7 equivalent -hsa:5595 up:L7RXH5 equivalent -hsa:5595 up:P27361 equivalent -hsa:55954 up:Q9UDW3 equivalent -hsa:55957 up:Q96GY3 equivalent -hsa:55958 up:Q58EZ4 equivalent -hsa:55958 up:Q9P2J3 equivalent -hsa:55959 up:Q8IWU5 equivalent -hsa:5596 up:P31152 equivalent -hsa:55964 up:Q9UH03 equivalent -hsa:55966 up:Q9UKB5 equivalent -hsa:55967 up:Q9UI09 equivalent -hsa:55968 up:Q53FE8 equivalent -hsa:55968 up:Q9UNZ2 equivalent -hsa:55969 up:Q9BUV8 equivalent -hsa:5597 up:Q16659 equivalent -hsa:55970 up:Q9UBI6 equivalent -hsa:55971 up:Q9UHR4 equivalent -hsa:55972 up:Q8TBP6 equivalent -hsa:55973 up:E9PAJ1 equivalent -hsa:55973 up:Q9UHQ4 equivalent -hsa:55974 up:Q9BRV3 equivalent -hsa:55975 up:A8K364 equivalent -hsa:55975 up:Q8IXQ5 equivalent -hsa:5598 up:Q13164 equivalent -hsa:5599 up:A1L4K2 equivalent -hsa:5599 up:P45983 equivalent -hsa:55997 up:P0CG37 equivalent -hsa:56 up:P26436 equivalent -hsa:5600 up:Q15759 equivalent -hsa:56000 up:Q9H4D5 equivalent -hsa:56001 up:Q9GZY0 equivalent -hsa:56005 up:Q969H8 equivalent -hsa:56006 up:Q9H0W8 equivalent -hsa:5601 up:P45984 equivalent -hsa:5602 up:A0A286YF97 equivalent -hsa:5602 up:P53779 equivalent -hsa:5603 up:A0A024RD04 equivalent -hsa:5603 up:O15264 equivalent -hsa:56033 up:Q9HBU1 equivalent -hsa:56034 up:Q9NRA1 equivalent -hsa:5604 up:A4QPA9 equivalent -hsa:5604 up:Q02750 equivalent -hsa:5605 up:P36507 equivalent -hsa:56052 up:Q9BT22 equivalent -hsa:5606 up:P46734 equivalent -hsa:5606 up:Q6FI23 equivalent -hsa:56061 up:O14562 equivalent -hsa:56062 up:A5PKX1 equivalent -hsa:56062 up:Q9C0H6 equivalent -hsa:56063 up:B4DHR3 equivalent -hsa:56063 up:Q8WY98 equivalent -hsa:5607 up:Q13163 equivalent -hsa:5608 up:A8K3Y2 equivalent -hsa:5608 up:P52564 equivalent -hsa:5609 up:O14733 equivalent -hsa:56097 up:Q9Y5F6 equivalent -hsa:56098 up:Q9Y5F7 equivalent -hsa:56099 up:Q9Y5F8 equivalent -hsa:5610 up:P19525 equivalent -hsa:5610 up:Q8IW76 equivalent -hsa:56100 up:Q9Y5F9 equivalent -hsa:56101 up:Q9Y5G0 equivalent -hsa:56102 up:Q9Y5G1 equivalent -hsa:56103 up:Q9Y5G2 equivalent -hsa:56104 up:Q9Y5G3 equivalent -hsa:56105 up:Q9Y5H2 equivalent -hsa:56106 up:Q9Y5H3 equivalent -hsa:56107 up:Q9Y5G4 equivalent -hsa:56108 up:Q9Y5G6 equivalent -hsa:56109 up:Q9Y5G7 equivalent -hsa:5611 up:A8KA82 equivalent -hsa:5611 up:Q13217 equivalent -hsa:56110 up:Q9Y5G8 equivalent -hsa:56111 up:Q9Y5G9 equivalent -hsa:56112 up:Q9Y5H0 equivalent -hsa:56113 up:Q9Y5H1 equivalent -hsa:56114 up:Q9Y5H4 equivalent -hsa:5612 up:A0A140VJQ7 equivalent -hsa:5612 up:O43422 equivalent -hsa:56121 up:B2R708 equivalent -hsa:56121 up:Q9Y5E8 equivalent -hsa:56122 up:Q9Y5E9 equivalent -hsa:56123 up:Q9Y5F0 equivalent -hsa:56124 up:Q9Y5F1 equivalent -hsa:56125 up:Q9Y5F2 equivalent -hsa:56126 up:Q9UN67 equivalent -hsa:56127 up:Q59H00 equivalent -hsa:56127 up:Q9Y5E1 equivalent -hsa:56128 up:Q9UN66 equivalent -hsa:56129 up:Q9Y5E2 equivalent -hsa:5613 up:P51817 equivalent -hsa:56130 up:Q9Y5E3 equivalent -hsa:56131 up:Q9Y5E5 equivalent -hsa:56132 up:Q9Y5E6 equivalent -hsa:56133 up:Q4KMG6 equivalent -hsa:56133 up:Q9Y5E7 equivalent -hsa:56134 up:Q9Y5I4 equivalent -hsa:56135 up:Q9H158 equivalent -hsa:56136 up:Q9Y5I0 equivalent -hsa:56137 up:Q9UN75 equivalent -hsa:56138 up:Q9Y5I1 equivalent -hsa:56139 up:Q9Y5I2 equivalent -hsa:56140 up:Q9Y5H6 equivalent -hsa:56141 up:Q9UN72 equivalent -hsa:56142 up:Q9UN73 equivalent -hsa:56143 up:Q9Y5H7 equivalent -hsa:56144 up:Q59H34 equivalent -hsa:56144 up:Q9UN74 equivalent -hsa:56145 up:Q9Y5H8 equivalent -hsa:56146 up:Q9Y5H9 equivalent -hsa:56147 up:Q9Y5I3 equivalent -hsa:56155 up:Q8IWB6 equivalent -hsa:56156 up:Q9BXU2 equivalent -hsa:56157 up:Q9BXU3 equivalent -hsa:56158 up:Q9BXU0 equivalent -hsa:56159 up:Q8IYF3 equivalent -hsa:56160 up:Q96MG7 equivalent -hsa:56163 up:Q9BXT8 equivalent -hsa:56164 up:Q9BXU1 equivalent -hsa:56165 up:A0A140VJW6 equivalent -hsa:56165 up:Q9BXT4 equivalent -hsa:56169 up:Q9BYG8 equivalent -hsa:5617 up:P01236 equivalent -hsa:5617 up:Q5THQ0 equivalent -hsa:56171 up:Q8WXX0 equivalent -hsa:56172 up:Q9HCJ1 equivalent -hsa:5618 up:P16471 equivalent -hsa:56180 up:Q9UJG1 equivalent -hsa:56181 up:A0A0S2Z5H6 equivalent -hsa:56181 up:Q9H019 equivalent -hsa:5619 up:P04553 equivalent -hsa:5619 up:Q3MN80 equivalent -hsa:5620 up:P04554 equivalent -hsa:56203 up:Q0VAK6 equivalent -hsa:56204 up:Q32MH5 equivalent -hsa:5621 up:P04156 equivalent -hsa:5621 up:Q53YK7 equivalent -hsa:5623 up:O60542 equivalent -hsa:5624 up:P04070 equivalent -hsa:56241 up:A0A140VJW3 equivalent -hsa:56241 up:Q9UGT4 equivalent -hsa:56242 up:O75346 equivalent -hsa:56243 up:Q5T5P2 equivalent -hsa:56244 up:A0PJV4 equivalent -hsa:56244 up:Q9UIR0 equivalent -hsa:56245 up:Q9NYP8 equivalent -hsa:56246 up:Q8TCY5 equivalent -hsa:5625 up:O43272 equivalent -hsa:56252 up:P49750 equivalent -hsa:56252 up:Q8NF45 equivalent -hsa:56253 up:O95727 equivalent -hsa:56254 up:Q5VTR2 equivalent -hsa:56255 up:Q9H1E5 equivalent -hsa:56256 up:Q9NUC0 equivalent -hsa:56257 up:Q7L2J0 equivalent -hsa:56259 up:Q8WYA6 equivalent -hsa:5626 up:A0A0G2JQ02 equivalent -hsa:5626 up:O75360 equivalent -hsa:56261 up:Q9NPB8 equivalent -hsa:56262 up:A8K1C7 equivalent -hsa:56262 up:Q8IWT6 equivalent -hsa:56265 up:Q96SM3 equivalent -hsa:56267 up:B4DW13 equivalent -hsa:56267 up:Q6YP21 equivalent -hsa:56269 up:J7NNX4 equivalent -hsa:56269 up:Q6NXR0 equivalent -hsa:5627 up:A0A0S2Z4K3 equivalent -hsa:5627 up:P07225 equivalent -hsa:56270 up:Q5MNZ6 equivalent -hsa:56271 up:Q9NWD9 equivalent -hsa:56287 up:A0A8I5KHR1 equivalent -hsa:56287 up:Q53YU7 equivalent -hsa:56287 up:Q9NS71 equivalent -hsa:56288 up:Q8TEW0 equivalent -hsa:5629 up:Q92786 equivalent -hsa:563 up:A0A140VK00 equivalent -hsa:563 up:P25311 equivalent -hsa:5630 up:B3KWQ6 equivalent -hsa:5630 up:P41219 equivalent -hsa:56300 up:Q9NZH8 equivalent -hsa:56301 up:Q9NS82 equivalent -hsa:56302 up:Q9NQA5 equivalent -hsa:5631 up:P60891 equivalent -hsa:56311 up:A0A140VJE5 equivalent -hsa:56311 up:Q92527 equivalent -hsa:56339 up:Q86U44 equivalent -hsa:5634 up:P11908 equivalent -hsa:56341 up:Q59GT2 equivalent -hsa:56341 up:Q9NR22 equivalent -hsa:56342 up:Q9NQ55 equivalent -hsa:56344 up:Q9NP86 equivalent -hsa:5635 up:Q14558 equivalent -hsa:5636 up:O60256 equivalent -hsa:5638 up:O14668 equivalent -hsa:5638 up:Q8NEK6 equivalent -hsa:5639 up:O14669 equivalent -hsa:5641 up:Q53XC6 equivalent -hsa:5641 up:Q99538 equivalent -hsa:56413 up:B4E292 equivalent -hsa:56413 up:Q9NPC1 equivalent -hsa:5644 up:P07477 equivalent -hsa:5645 up:P07478 equivalent -hsa:5645 up:Q5NV56 equivalent -hsa:5645 up:Q6PK75 equivalent -hsa:5646 up:P35030 equivalent -hsa:5646 up:Q7Z5F4 equivalent -hsa:56474 up:Q9NRF8 equivalent -hsa:56475 up:Q9NS64 equivalent -hsa:56477 up:A0N0Q3 equivalent -hsa:56477 up:Q9NRJ3 equivalent -hsa:56478 up:Q9NRA8 equivalent -hsa:56479 up:Q9NR82 equivalent -hsa:5648 up:P48740 equivalent -hsa:5649 up:P78509 equivalent -hsa:5650 up:A0A024R4H6 equivalent -hsa:5650 up:B4DHX9 equivalent -hsa:5650 up:P49862 equivalent -hsa:5651 up:P98073 equivalent -hsa:5652 up:Q16651 equivalent -hsa:56521 up:Q6IAH1 equivalent -hsa:56521 up:Q9UKB3 equivalent -hsa:5653 up:Q92876 equivalent -hsa:5654 up:Q92743 equivalent -hsa:56547 up:Q9NRE1 equivalent -hsa:56548 up:Q9NS84 equivalent -hsa:5655 up:O43240 equivalent -hsa:5657 up:P24158 equivalent -hsa:566 up:P20160 equivalent -hsa:5660 up:P07602 equivalent -hsa:56603 up:Q9NR63 equivalent -hsa:56605 up:Q86YB8 equivalent -hsa:56606 up:Q9NRM0 equivalent -hsa:56616 up:A0A0S2Z5U7 equivalent -hsa:56616 up:Q9NR28 equivalent -hsa:5662 up:A5PKW4 equivalent -hsa:56623 up:Q9NRR6 equivalent -hsa:56624 up:Q9NR71 equivalent -hsa:5663 up:A0A024R6A3 equivalent -hsa:5663 up:P49768 equivalent -hsa:5664 up:P49810 equivalent -hsa:56647 up:Q9P287 equivalent -hsa:56648 up:Q9GZV4 equivalent -hsa:56649 up:Q9NRS4 equivalent -hsa:56650 up:Q9NY35 equivalent -hsa:56652 up:E5KSY5 equivalent -hsa:56652 up:Q96RR1 equivalent -hsa:56652 up:Q9H6V3 equivalent -hsa:56654 up:Q9NQX5 equivalent -hsa:56655 up:Q9NR33 equivalent -hsa:56656 up:Q9NQN1 equivalent -hsa:56658 up:A0A024RCP5 equivalent -hsa:56658 up:Q9HCM9 equivalent -hsa:56659 up:Q9HB14 equivalent -hsa:56660 up:Q9HB15 equivalent -hsa:56666 up:B3KTT7 equivalent -hsa:56666 up:Q495U3 equivalent -hsa:56666 up:Q96RD6 equivalent -hsa:56667 up:Q9H3R2 equivalent -hsa:56670 up:Q9BXA5 equivalent -hsa:56672 up:Q9NQ31 equivalent -hsa:56673 up:Q9NQ32 equivalent -hsa:56674 up:Q543A1 equivalent -hsa:56674 up:Q9NQ34 equivalent -hsa:56675 up:Q9NQ35 equivalent -hsa:56676 up:Q9NQ33 equivalent -hsa:56681 up:Q5SQT9 equivalent -hsa:56681 up:Q9NR31 equivalent -hsa:56683 up:P57076 equivalent -hsa:5669 up:P11464 equivalent -hsa:567 up:P61769 equivalent -hsa:5670 up:P11465 equivalent -hsa:56704 up:Q7Z682 equivalent -hsa:56704 up:Q9HDC5 equivalent -hsa:5671 up:Q16557 equivalent -hsa:5672 up:Q00888 equivalent -hsa:5672 up:Q96QL5 equivalent -hsa:56729 up:Q9HD89 equivalent -hsa:5673 up:Q15238 equivalent -hsa:56731 up:Q9NR83 equivalent -hsa:5675 up:Q00889 equivalent -hsa:56751 up:Q9BZE3 equivalent -hsa:5676 up:Q13046 equivalent -hsa:56776 up:Q9HBL1 equivalent -hsa:56776 up:Q9NZ56 equivalent -hsa:5678 up:Q00887 equivalent -hsa:5678 up:Q05DN5 equivalent -hsa:5680 up:Q9UQ72 equivalent -hsa:5681 up:P11801 equivalent -hsa:5682 up:P25786 equivalent -hsa:56829 up:Q7Z2W4 equivalent -hsa:5683 up:A0A024RA52 equivalent -hsa:5683 up:P25787 equivalent -hsa:56832 up:Q9P0W0 equivalent -hsa:56833 up:Q9P0V8 equivalent -hsa:56834 up:Q96N19 equivalent -hsa:56834 up:Q9NQC5 equivalent -hsa:5684 up:A0A140VK43 equivalent -hsa:5684 up:P25788 equivalent -hsa:56848 up:Q9NRA0 equivalent -hsa:56849 up:Q9BRU2 equivalent -hsa:5685 up:P25789 equivalent -hsa:56850 up:Q4V328 equivalent -hsa:56851 up:Q9NPA0 equivalent -hsa:56852 up:Q9NS91 equivalent -hsa:56853 up:Q9BZC1 equivalent -hsa:5686 up:A0A109NGN6 equivalent -hsa:5686 up:P28066 equivalent -hsa:5687 up:A0A140VK44 equivalent -hsa:5687 up:P60900 equivalent -hsa:5688 up:A0A0K0K1K4 equivalent -hsa:5688 up:O14818 equivalent -hsa:56882 up:Q9NRR8 equivalent -hsa:56884 up:Q8N475 equivalent -hsa:56886 up:Q9NYU2 equivalent -hsa:56888 up:Q9P0J7 equivalent -hsa:56889 up:A0A024QYS2 equivalent -hsa:56889 up:Q9HD45 equivalent -hsa:5689 up:A0A140VK45 equivalent -hsa:5689 up:P20618 equivalent -hsa:56890 up:Q8TC05 equivalent -hsa:56891 up:Q8TCE9 equivalent -hsa:56892 up:Q9NR00 equivalent -hsa:56893 up:Q9NRR5 equivalent -hsa:56894 up:Q9NRZ7 equivalent -hsa:56895 up:Q9NRZ5 equivalent -hsa:56896 up:Q9BPU6 equivalent -hsa:56897 up:Q96S55 equivalent -hsa:56898 up:Q9BUT1 equivalent -hsa:56899 up:Q7Z6G8 equivalent -hsa:5690 up:A0A140VJS6 equivalent -hsa:5690 up:P49721 equivalent -hsa:56900 up:Q9NRX6 equivalent -hsa:56901 up:Q9NRX3 equivalent -hsa:56902 up:Q9NRX1 equivalent -hsa:56903 up:A4D1Z6 equivalent -hsa:56903 up:Q9NRJ5 equivalent -hsa:56904 up:Q9NR46 equivalent -hsa:56905 up:Q6ZRI6 equivalent -hsa:56906 up:Q9P2Z0 equivalent -hsa:56907 up:Q08AE8 equivalent -hsa:5691 up:A0A384NL22 equivalent -hsa:5691 up:P49720 equivalent -hsa:56910 up:Q9NQZ5 equivalent -hsa:56911 up:B0EVZ6 equivalent -hsa:56911 up:B0EVZ8 equivalent -hsa:56911 up:P57077 equivalent -hsa:56912 up:Q9NQC8 equivalent -hsa:56913 up:A0A024RA32 equivalent -hsa:56913 up:Q9NS00 equivalent -hsa:56914 up:Q9NRC9 equivalent -hsa:56915 up:Q9NQT4 equivalent -hsa:56916 up:Q9H4L7 equivalent -hsa:56917 up:Q49A38 equivalent -hsa:56917 up:Q99687 equivalent -hsa:56919 up:B4DIS6 equivalent -hsa:56919 up:Q9H6R0 equivalent -hsa:5692 up:A0A140VK46 equivalent -hsa:5692 up:P28070 equivalent -hsa:56920 up:Q9NS98 equivalent -hsa:56922 up:A0A0S2Z693 equivalent -hsa:56922 up:Q96RQ3 equivalent -hsa:56923 up:Q9GZQ4 equivalent -hsa:56924 up:Q9NQU5 equivalent -hsa:56925 up:Q9BS40 equivalent -hsa:56926 up:Q969V3 equivalent -hsa:56927 up:Q9NPR9 equivalent -hsa:56928 up:Q8TCT7 equivalent -hsa:56929 up:Q96JP0 equivalent -hsa:5693 up:P28074 equivalent -hsa:56931 up:B2RDV7 equivalent -hsa:56931 up:Q96G46 equivalent -hsa:56934 up:A0A384MTY8 equivalent -hsa:56934 up:Q9NS85 equivalent -hsa:56935 up:Q9NRQ5 equivalent -hsa:56936 up:Q9NQR7 equivalent -hsa:56937 up:Q969W9 equivalent -hsa:56938 up:Q8WYA1 equivalent -hsa:5694 up:P28072 equivalent -hsa:5694 up:Q6IAT9 equivalent -hsa:56940 up:A0A384NLC8 equivalent -hsa:56940 up:Q9NRW4 equivalent -hsa:56941 up:Q96FZ2 equivalent -hsa:56942 up:Q9NRP2 equivalent -hsa:56943 up:Q9NPA8 equivalent -hsa:56944 up:M1LAK4 equivalent -hsa:56944 up:Q9NRN5 equivalent -hsa:56945 up:P82650 equivalent -hsa:56946 up:Q7Z589 equivalent -hsa:56947 up:Q9GZY8 equivalent -hsa:56948 up:Q86TZ5 equivalent -hsa:56948 up:Q9NRG7 equivalent -hsa:56949 up:Q9HCS7 equivalent -hsa:5695 up:E9KL30 equivalent -hsa:5695 up:Q99436 equivalent -hsa:56950 up:Q9NRG4 equivalent -hsa:56951 up:Q8NC54 equivalent -hsa:56952 up:Q9NRG1 equivalent -hsa:56953 up:Q9NPB1 equivalent -hsa:56954 up:Q9NQR4 equivalent -hsa:56954 up:V9HW91 equivalent -hsa:56955 up:Q8NC19 equivalent -hsa:56955 up:Q9NQ76 equivalent -hsa:56956 up:Q9NQ69 equivalent -hsa:56957 up:Q6GQQ9 equivalent -hsa:5696 up:P28062 equivalent -hsa:5696 up:X5CMJ9 equivalent -hsa:56961 up:Q96IW2 equivalent -hsa:56963 up:Q96B86 equivalent -hsa:56964 up:Q6P2C0 equivalent -hsa:56965 up:Q2NL67 equivalent -hsa:56967 up:Q9NPU4 equivalent -hsa:5697 up:P10082 equivalent -hsa:56971 up:Q7Z692 equivalent -hsa:56975 up:Q8IXL6 equivalent -hsa:56977 up:Q9P2F5 equivalent -hsa:56978 up:Q05CA1 equivalent -hsa:56978 up:Q9NQV8 equivalent -hsa:56979 up:Q9NQV7 equivalent -hsa:5698 up:A0A1U9X8D7 equivalent -hsa:5698 up:P28065 equivalent -hsa:56980 up:Q9NQV6 equivalent -hsa:56981 up:Q9NQV5 equivalent -hsa:56983 up:Q8NBL1 equivalent -hsa:56984 up:Q969U7 equivalent -hsa:56985 up:Q3LIE5 equivalent -hsa:56985 up:W0NWJ0 equivalent -hsa:56986 up:Q8N5C7 equivalent -hsa:56987 up:A8K6U2 equivalent -hsa:56987 up:Q8WY36 equivalent -hsa:5699 up:P40306 equivalent -hsa:56990 up:Q9NRR3 equivalent -hsa:56992 up:Q9NS87 equivalent -hsa:56993 up:Q549C5 equivalent -hsa:56993 up:Q9NS69 equivalent -hsa:56994 up:Q8WUD6 equivalent -hsa:56995 up:Q9NRJ4 equivalent -hsa:56996 up:Q9BXP2 equivalent -hsa:56996 up:Q9H7I6 equivalent -hsa:56997 up:Q8NI60 equivalent -hsa:56998 up:Q9NSA3 equivalent -hsa:56999 up:Q9P2N4 equivalent -hsa:570 up:Q14032 equivalent -hsa:5700 up:P62191 equivalent -hsa:5700 up:Q53XL8 equivalent -hsa:57001 up:Q9NRP4 equivalent -hsa:57002 up:Q9NRH1 equivalent -hsa:57003 up:Q96A33 equivalent -hsa:57007 up:P25106 equivalent -hsa:5701 up:A0A140VK70 equivalent -hsa:5701 up:P35998 equivalent -hsa:57010 up:P57796 equivalent -hsa:57016 up:O60218 equivalent -hsa:57017 up:O75208 equivalent -hsa:57018 up:Q9UK58 equivalent -hsa:57019 up:Q6FI81 equivalent -hsa:5702 up:A0A140VK42 equivalent -hsa:5702 up:P17980 equivalent -hsa:57020 up:E7EWW0 equivalent -hsa:57020 up:Q7Z3J2 equivalent -hsa:57026 up:A0A024R1I3 equivalent -hsa:57026 up:Q96GD0 equivalent -hsa:57030 up:Q9P2U7 equivalent -hsa:57035 up:Q9BUV0 equivalent -hsa:57037 up:Q8IV38 equivalent -hsa:57038 up:Q5T160 equivalent -hsa:5704 up:A8K2M0 equivalent -hsa:5704 up:P43686 equivalent -hsa:57045 up:Q9GZX9 equivalent -hsa:57047 up:Q9NRY7 equivalent -hsa:57048 up:Q9NRY6 equivalent -hsa:5705 up:A0A140VJS3 equivalent -hsa:5705 up:P62195 equivalent -hsa:57050 up:Q9NQZ2 equivalent -hsa:57053 up:Q9GZZ6 equivalent -hsa:57054 up:Q9NR90 equivalent -hsa:57055 up:B4DZ07 equivalent -hsa:57055 up:Q13117 equivalent -hsa:57057 up:Q9UMR3 equivalent -hsa:5706 up:A0A087X2I1 equivalent -hsa:5706 up:P62333 equivalent -hsa:57060 up:P57723 equivalent -hsa:57062 up:Q9GZR7 equivalent -hsa:5707 up:Q99460 equivalent -hsa:5708 up:Q13200 equivalent -hsa:57082 up:Q8NG31 equivalent -hsa:57084 up:Q9P2U8 equivalent -hsa:57085 up:Q6RW13 equivalent -hsa:57088 up:Q9NRQ2 equivalent -hsa:57089 up:Q9NQZ7 equivalent -hsa:5709 up:O43242 equivalent -hsa:57091 up:B4DII4 equivalent -hsa:57091 up:Q9NQ75 equivalent -hsa:57092 up:Q8WW12 equivalent -hsa:57093 up:P0CI25 equivalent -hsa:57094 up:Q8N4T0 equivalent -hsa:57095 up:Q9GZP4 equivalent -hsa:57096 up:Q96KN7 equivalent -hsa:57097 up:Q9NR21 equivalent -hsa:57099 up:Q9NQS1 equivalent -hsa:571 up:O14867 equivalent -hsa:5710 up:P55036 equivalent -hsa:57101 up:F1T0L7 equivalent -hsa:57101 up:Q9NQ90 equivalent -hsa:57102 up:Q9NQ89 equivalent -hsa:57103 up:Q9NQ88 equivalent -hsa:57104 up:Q96AD5 equivalent -hsa:57105 up:A4ZKH2 equivalent -hsa:57105 up:Q5KU17 equivalent -hsa:57105 up:Q9NS75 equivalent -hsa:57106 up:Q8WUY8 equivalent -hsa:57107 up:Q86YH6 equivalent -hsa:57109 up:Q9GZR2 equivalent -hsa:5711 up:Q16401 equivalent -hsa:57110 up:Q9HDD0 equivalent -hsa:57111 up:P57735 equivalent -hsa:57113 up:Q9HCX4 equivalent -hsa:57115 up:Q96LB8 equivalent -hsa:57116 up:Q8IW36 equivalent -hsa:57117 up:Q96CB8 equivalent -hsa:57118 up:Q5SQQ7 equivalent -hsa:57118 up:Q8IU85 equivalent -hsa:57119 up:A0A384NYB9 equivalent -hsa:57119 up:O95925 equivalent -hsa:57120 up:Q9HD26 equivalent -hsa:57121 up:Q5KU18 equivalent -hsa:57121 up:Q9H1C0 equivalent -hsa:57122 up:P57740 equivalent -hsa:57124 up:Q9HCU0 equivalent -hsa:57125 up:Q8IUK5 equivalent -hsa:57126 up:A0A087WVM2 equivalent -hsa:57126 up:Q8N6Q3 equivalent -hsa:57127 up:Q9H310 equivalent -hsa:57128 up:Q9HD34 equivalent -hsa:57129 up:Q9HD33 equivalent -hsa:5713 up:P51665 equivalent -hsa:57130 up:Q9HD20 equivalent -hsa:57132 up:Q7LBR1 equivalent -hsa:57134 up:Q59G34 equivalent -hsa:57134 up:Q9NR34 equivalent -hsa:57135 up:Q658T2 equivalent -hsa:57135 up:Q86SG3 equivalent -hsa:57136 up:Q9HDC9 equivalent -hsa:57139 up:Q3MIN7 equivalent -hsa:5714 up:P48556 equivalent -hsa:5714 up:V9HW09 equivalent -hsa:57140 up:Q9HAU8 equivalent -hsa:57142 up:Q9NQC3 equivalent -hsa:57143 up:Q86TW2 equivalent -hsa:57144 up:B0AZM9 equivalent -hsa:57144 up:Q9P286 equivalent -hsa:57146 up:Q96B96 equivalent -hsa:57147 up:Q8IZE3 equivalent -hsa:57148 up:Q6MZJ2 equivalent -hsa:57148 up:Q86X10 equivalent -hsa:57149 up:O43325 equivalent -hsa:5715 up:O00233 equivalent -hsa:57150 up:Q96KF7 equivalent -hsa:57151 up:A0A080YUZ6 equivalent -hsa:57151 up:O75951 equivalent -hsa:57152 up:P55000 equivalent -hsa:57153 up:Q8IWA5 equivalent -hsa:57154 up:Q9HCE7 equivalent -hsa:57156 up:Q9P1W3 equivalent -hsa:57157 up:Q8N3S3 equivalent -hsa:57158 up:Q86VZ3 equivalent -hsa:57158 up:Q9BR39 equivalent -hsa:57159 up:Q9BYV2 equivalent -hsa:5716 up:O75832 equivalent -hsa:57161 up:Q9H716 equivalent -hsa:57161 up:Q9HAT8 equivalent -hsa:57162 up:Q53T26 equivalent -hsa:57162 up:Q96FA3 equivalent -hsa:57165 up:A0A654IBV7 equivalent -hsa:57165 up:Q5T442 equivalent -hsa:57167 up:Q9UJQ4 equivalent -hsa:57168 up:Q6ICH7 equivalent -hsa:57169 up:Q9P2E3 equivalent -hsa:5717 up:O00231 equivalent -hsa:57171 up:Q86YN1 equivalent -hsa:57172 up:Q96NX5 equivalent -hsa:57175 up:Q9BR76 equivalent -hsa:57176 up:B4DG77 equivalent -hsa:57176 up:B4E0K6 equivalent -hsa:57176 up:Q5ST30 equivalent -hsa:57178 up:A0JLS3 equivalent -hsa:57178 up:Q9ULJ6 equivalent -hsa:57179 up:Q96A73 equivalent -hsa:5718 up:A0A0S2Z489 equivalent -hsa:5718 up:O00232 equivalent -hsa:57180 up:Q59GD5 equivalent -hsa:57180 up:Q9P1U1 equivalent -hsa:57181 up:Q05C42 equivalent -hsa:57181 up:Q9ULF5 equivalent -hsa:57182 up:Q9ULJ7 equivalent -hsa:57184 up:Q5XKK7 equivalent -hsa:57185 up:Q6P499 equivalent -hsa:57186 up:Q2PPJ7 equivalent -hsa:57187 up:Q8NI27 equivalent -hsa:57188 up:P82987 equivalent -hsa:57189 up:A4D1U4 equivalent -hsa:5719 up:Q9UNM6 equivalent -hsa:57190 up:Q9NZV5 equivalent -hsa:57191 up:Q9GZP7 equivalent -hsa:57192 up:Q9GZU1 equivalent -hsa:57194 up:O60312 equivalent -hsa:57198 up:P98198 equivalent -hsa:572 up:Q92934 equivalent -hsa:5720 up:A0A0K0K1L8 equivalent -hsa:5720 up:Q06323 equivalent -hsa:57205 up:Q9P241 equivalent -hsa:57209 up:A2RUI7 equivalent -hsa:57209 up:Q8NDW4 equivalent -hsa:5721 up:Q86SZ7 equivalent -hsa:5721 up:Q9UL46 equivalent -hsa:57210 up:Q5BKX6 equivalent -hsa:57211 up:Q86SQ4 equivalent -hsa:57213 up:A0A024RDT6 equivalent -hsa:57213 up:Q5W111 equivalent -hsa:57214 up:Q8WUJ3 equivalent -hsa:57215 up:Q96EK4 equivalent -hsa:57216 up:A8K4L6 equivalent -hsa:57216 up:Q9ULK5 equivalent -hsa:57217 up:Q9ULT0 equivalent -hsa:57221 up:Q5TH69 equivalent -hsa:57222 up:Q969X5 equivalent -hsa:57223 up:Q5MIZ7 equivalent -hsa:57224 up:Q5SYE7 equivalent -hsa:57226 up:Q9NU23 equivalent -hsa:57228 up:Q0VAQ4 equivalent -hsa:5723 up:P78330 equivalent -hsa:57231 up:Q9Y5W7 equivalent -hsa:57232 up:Q2M218 equivalent -hsa:5724 up:P25105 equivalent -hsa:5725 up:P26599 equivalent -hsa:5726 up:P59533 equivalent -hsa:5727 up:Q13635 equivalent -hsa:5728 up:F6KD01 equivalent -hsa:5728 up:P60484 equivalent -hsa:57282 up:Q6U841 equivalent -hsa:5729 up:Q13258 equivalent -hsa:57292 up:A0A191URI1 equivalent -hsa:57292 up:Q8N109 equivalent -hsa:573 up:Q99933 equivalent -hsa:5730 up:A0A024R8G3 equivalent -hsa:5730 up:P41222 equivalent -hsa:5731 up:P34995 equivalent -hsa:5732 up:P43116 equivalent -hsa:57325 up:Q9H8E8 equivalent -hsa:57326 up:Q96AQ6 equivalent -hsa:5733 up:P43115 equivalent -hsa:57332 up:Q9HC52 equivalent -hsa:57333 up:Q96D15 equivalent -hsa:57335 up:B2RCD9 equivalent -hsa:57335 up:Q9HBT8 equivalent -hsa:57336 up:Q9HBT7 equivalent -hsa:57337 up:Q9BQF6 equivalent -hsa:57338 up:B4DIC1 equivalent -hsa:57338 up:F8W9A3 equivalent -hsa:57338 up:Q8WXH2 equivalent -hsa:5734 up:A0PJF5 equivalent -hsa:5734 up:P35408 equivalent -hsa:57343 up:Q2T9G7 equivalent -hsa:57343 up:Q9HCX3 equivalent -hsa:57348 up:Q9H313 equivalent -hsa:57369 up:Q9UKL4 equivalent -hsa:5737 up:P43088 equivalent -hsa:57379 up:Q546Y9 equivalent -hsa:57379 up:Q7Z599 equivalent -hsa:57379 up:Q9GZX7 equivalent -hsa:5738 up:Q9P2B2 equivalent -hsa:57380 up:Q9HD23 equivalent -hsa:57381 up:Q7Z513 equivalent -hsa:57381 up:Q9H4E5 equivalent -hsa:5739 up:P43119 equivalent -hsa:57393 up:Q9HBJ8 equivalent -hsa:57396 up:Q9HAZ1 equivalent -hsa:574 up:Q13072 equivalent -hsa:5740 up:Q16647 equivalent -hsa:57402 up:Q9HCY8 equivalent -hsa:57403 up:Q9UL26 equivalent -hsa:57404 up:Q6UW02 equivalent -hsa:57405 up:Q9HBM1 equivalent -hsa:57406 up:Q9BV23 equivalent -hsa:57407 up:A0A384P622 equivalent -hsa:57407 up:Q9HBL8 equivalent -hsa:57408 up:Q9HBL6 equivalent -hsa:57409 up:A0A0S2Z5K9 equivalent -hsa:57409 up:A9UHW6 equivalent -hsa:5741 up:P01270 equivalent -hsa:57410 up:Q96KG9 equivalent -hsa:57412 up:Q9HBK9 equivalent -hsa:57413 up:P0DMS9 equivalent -hsa:57414 up:Q6NTF9 equivalent -hsa:57415 up:Q9HBI5 equivalent -hsa:57418 up:Q9BV38 equivalent -hsa:57419 up:Q9HC58 equivalent -hsa:5742 up:P23219 equivalent -hsa:5743 up:P35354 equivalent -hsa:5744 up:P12272 equivalent -hsa:574414 up:Q5T870 equivalent -hsa:57446 up:Q9UGV2 equivalent -hsa:57447 up:Q9UN36 equivalent -hsa:57448 up:Q9NR09 equivalent -hsa:57449 up:O94827 equivalent -hsa:5745 up:Q03431 equivalent -hsa:57451 up:F8VNQ3 equivalent -hsa:57451 up:Q9NT68 equivalent -hsa:57452 up:Q68VJ8 equivalent -hsa:57452 up:Q8N428 equivalent -hsa:57453 up:A0A384DVL8 equivalent -hsa:57453 up:Q8TD84 equivalent -hsa:574537 up:P0DTE5 equivalent -hsa:57455 up:Q8N1G1 equivalent -hsa:57456 up:Q96AT1 equivalent -hsa:57458 up:Q9ULS5 equivalent -hsa:57459 up:Q8WXI9 equivalent -hsa:5746 up:P49190 equivalent -hsa:57460 up:Q9ULR3 equivalent -hsa:57461 up:Q9ULR0 equivalent -hsa:57462 up:Q6NSJ0 equivalent -hsa:57463 up:Q86WK6 equivalent -hsa:57464 up:Q9ULQ0 equivalent -hsa:57465 up:Q9ULP9 equivalent -hsa:57466 up:O95104 equivalent -hsa:57467 up:Q5QTR4 equivalent -hsa:57467 up:Q9HCP6 equivalent -hsa:57468 up:Q9H2X9 equivalent -hsa:57469 up:Q9ULN7 equivalent -hsa:5747 up:Q05397 equivalent -hsa:5747 up:Q59GM6 equivalent -hsa:5747 up:Q658W2 equivalent -hsa:57470 up:Q8N1G4 equivalent -hsa:57471 up:Q8TAM6 equivalent -hsa:57473 up:Q96KM6 equivalent -hsa:57474 up:Q9ULM2 equivalent -hsa:57475 up:Q9ULM0 equivalent -hsa:57476 up:Q3KR37 equivalent -hsa:57477 up:Q9ULL8 equivalent -hsa:57478 up:Q70CQ4 equivalent -hsa:57479 up:Q9ULL5 equivalent -hsa:57480 up:Q5JYA6 equivalent -hsa:57480 up:Q9ULL1 equivalent -hsa:57481 up:Q9ULL0 equivalent -hsa:57482 up:Q6ZU35 equivalent -hsa:57484 up:Q9ULK6 equivalent -hsa:57486 up:Q9BYT8 equivalent -hsa:57488 up:A0FGR8 equivalent -hsa:57489 up:Q9ULJ1 equivalent -hsa:57492 up:Q8NFD5 equivalent -hsa:57493 up:Q9ULI3 equivalent -hsa:57494 up:Q9ULI2 equivalent -hsa:57495 up:Q9ULI1 equivalent -hsa:57496 up:Q9ULH7 equivalent -hsa:57497 up:Q9ULH4 equivalent -hsa:57498 up:Q9ULH0 equivalent -hsa:575 up:O14514 equivalent -hsa:57501 up:Q9ULG3 equivalent -hsa:57502 up:B3KP11 equivalent -hsa:57502 up:Q8N0W4 equivalent -hsa:57504 up:Q9BTC8 equivalent -hsa:57505 up:Q5JTZ9 equivalent -hsa:57506 up:Q7Z434 equivalent -hsa:57507 up:B3KPE6 equivalent -hsa:57507 up:Q9ULD9 equivalent -hsa:57508 up:Q9H0H0 equivalent -hsa:57509 up:Q9ULD2 equivalent -hsa:57510 up:Q9HAV4 equivalent -hsa:57511 up:Q9Y2V7 equivalent -hsa:57512 up:Q5T848 equivalent -hsa:57513 up:Q8WXE0 equivalent -hsa:57514 up:A0A8S0MHV1 equivalent -hsa:57514 up:Q2M1Z3 equivalent -hsa:57515 up:Q9NRX5 equivalent -hsa:57519 up:Q9P2P6 equivalent -hsa:57520 up:Q9P2P5 equivalent -hsa:57521 up:Q6DKI0 equivalent -hsa:57521 up:Q8N122 equivalent -hsa:57522 up:Q7Z6B7 equivalent -hsa:57523 up:Q9P2P1 equivalent -hsa:57524 up:Q8WXD9 equivalent -hsa:57526 up:Q8TAB3 equivalent -hsa:57528 up:A8K8W2 equivalent -hsa:57528 up:Q68DU8 equivalent -hsa:57529 up:Q8NET4 equivalent -hsa:5753 up:Q13882 equivalent -hsa:57530 up:Q9P2M7 equivalent -hsa:57531 up:Q8IYU2 equivalent -hsa:57532 up:Q7Z417 equivalent -hsa:57533 up:Q9P2M4 equivalent -hsa:57534 up:Q86YT6 equivalent -hsa:57535 up:B4DWM4 equivalent -hsa:57535 up:Q6UXG2 equivalent -hsa:57536 up:Q86T90 equivalent -hsa:57537 up:Q96PQ0 equivalent -hsa:57538 up:Q96L96 equivalent -hsa:57539 up:Q9P2L0 equivalent -hsa:5754 up:Q13308 equivalent -hsa:57540 up:Q9P2K9 equivalent -hsa:57541 up:A0A090N7S8 equivalent -hsa:57541 up:Q8TD17 equivalent -hsa:57542 up:B2RNT7 equivalent -hsa:57542 up:Q9P2K6 equivalent -hsa:57544 up:Q9P2K2 equivalent -hsa:57545 up:Q9P2K1 equivalent -hsa:57546 up:Q9P2J9 equivalent -hsa:57547 up:Q9P2J8 equivalent -hsa:57549 up:Q9P2J2 equivalent -hsa:57551 up:Q7L7X3 equivalent -hsa:57552 up:Q6PIU2 equivalent -hsa:57553 up:Q7RTP6 equivalent -hsa:57554 up:A0A075B6E9 equivalent -hsa:57555 up:Q8NFZ4 equivalent -hsa:57556 up:Q9H2E6 equivalent -hsa:57558 up:Q9P2H5 equivalent -hsa:57559 up:Q96FJ0 equivalent -hsa:5756 up:Q12792 equivalent -hsa:57560 up:Q9P2H3 equivalent -hsa:57561 up:Q96B67 equivalent -hsa:57562 up:Q9P2H0 equivalent -hsa:57563 up:B3KY78 equivalent -hsa:57563 up:Q7Z330 equivalent -hsa:57563 up:Q9P2G9 equivalent -hsa:57565 up:Q9P2G3 equivalent -hsa:57567 up:Q9P2F9 equivalent -hsa:57568 up:Q9P2F8 equivalent -hsa:57569 up:Q9P2F6 equivalent -hsa:5757 up:P06454 equivalent -hsa:57570 up:Q32P41 equivalent -hsa:57571 up:A5YM72 equivalent -hsa:57572 up:B7Z9U8 equivalent -hsa:57572 up:Q96HP0 equivalent -hsa:57573 up:Q9BX82 equivalent -hsa:57574 up:Q9P2E8 equivalent -hsa:57575 up:Q9NSR3 equivalent -hsa:57575 up:Q9P2E7 equivalent -hsa:57575 up:X5D999 equivalent -hsa:57576 up:Q9P2E2 equivalent -hsa:57577 up:Q8NCU4 equivalent -hsa:57578 up:Q9P2D8 equivalent -hsa:57579 up:Q9P2D6 equivalent -hsa:57580 up:Q8TCU6 equivalent -hsa:57582 up:Q5JUK3 equivalent -hsa:57583 up:Q9P2C4 equivalent -hsa:57584 up:Q5T5U3 equivalent -hsa:57585 up:A7MD53 equivalent -hsa:57585 up:B2RNX8 equivalent -hsa:57585 up:Q96RY5 equivalent -hsa:57586 up:Q7L8C5 equivalent -hsa:57587 up:Q9P2B7 equivalent -hsa:57589 up:Q4ADV7 equivalent -hsa:57590 up:Q8IWB7 equivalent -hsa:57590 up:Q9H8N9 equivalent -hsa:57591 up:A4FUJ8 equivalent -hsa:57591 up:Q969V6 equivalent -hsa:57592 up:Q8N1G0 equivalent -hsa:57593 up:E9PEI2 equivalent -hsa:57593 up:Q7Z5T1 equivalent -hsa:57593 up:Q9BQW3 equivalent -hsa:57594 up:Q8IX15 equivalent -hsa:57595 up:Q76G19 equivalent -hsa:57596 up:Q9BUH8 equivalent -hsa:57597 up:Q9P281 equivalent -hsa:57599 up:A0A024R2L1 equivalent -hsa:57599 up:Q8TAF3 equivalent -hsa:576 up:O60241 equivalent -hsa:57600 up:Q9P278 equivalent -hsa:57602 up:Q9P275 equivalent -hsa:57604 up:Q9P272 equivalent -hsa:57605 up:Q9BZ72 equivalent -hsa:57605 up:Q9UF51 equivalent -hsa:57606 up:A0A024R9T6 equivalent -hsa:57606 up:Q9P270 equivalent -hsa:57608 up:Q9P266 equivalent -hsa:57609 up:Q7Z3H2 equivalent -hsa:57609 up:Q96IB4 equivalent -hsa:57609 up:Q9P265 equivalent -hsa:57610 up:Q6VN20 equivalent -hsa:57611 up:Q6UXK2 equivalent -hsa:57613 up:A2RU67 equivalent -hsa:57614 up:Q96ES0 equivalent -hsa:57614 up:Q9P260 equivalent -hsa:57615 up:Q9P255 equivalent -hsa:57616 up:Q63HK5 equivalent -hsa:57617 up:Q9P253 equivalent -hsa:57619 up:B3KY47 equivalent -hsa:57619 up:Q8TF72 equivalent -hsa:57620 up:B3KUB5 equivalent -hsa:57620 up:Q9P246 equivalent -hsa:57621 up:Q8N680 equivalent -hsa:57622 up:Q9P244 equivalent -hsa:57623 up:Q9P243 equivalent -hsa:57624 up:Q9P242 equivalent -hsa:57626 up:Q8TBJ7 equivalent -hsa:57626 up:Q9NR64 equivalent -hsa:57628 up:B2RCJ8 equivalent -hsa:57628 up:Q8N608 equivalent -hsa:5763 up:A0A158RFU3 equivalent -hsa:5763 up:P20962 equivalent -hsa:57630 up:Q7Z6J0 equivalent -hsa:57631 up:Q5VUJ6 equivalent -hsa:57633 up:Q6UXK5 equivalent -hsa:57634 up:Q96L91 equivalent -hsa:57636 up:Q9P227 equivalent -hsa:57639 up:Q8IYE0 equivalent -hsa:57639 up:Q96MS1 equivalent -hsa:5764 up:P21246 equivalent -hsa:57642 up:Q9P218 equivalent -hsa:57643 up:Q9P217 equivalent -hsa:57644 up:A7E2Y1 equivalent -hsa:57645 up:Q9P215 equivalent -hsa:57646 up:Q96RU2 equivalent -hsa:57647 up:Q8IY37 equivalent -hsa:57648 up:Q9P206 equivalent -hsa:57649 up:Q96QT6 equivalent -hsa:57650 up:Q8TCG1 equivalent -hsa:57654 up:Q2YD98 equivalent -hsa:57654 up:Q69YU2 equivalent -hsa:57655 up:Q96CP6 equivalent -hsa:57657 up:Q9P1Z3 equivalent -hsa:57658 up:Q9P1Z2 equivalent -hsa:57659 up:Q9P1Z0 equivalent -hsa:57661 up:Q9P1Y6 equivalent -hsa:57662 up:Q9P1Y5 equivalent -hsa:57663 up:Q9HBJ7 equivalent -hsa:57664 up:Q9H4M7 equivalent -hsa:57665 up:Q53RX3 equivalent -hsa:57665 up:Q9HBH5 equivalent -hsa:57666 up:Q9HCM7 equivalent -hsa:57669 up:Q9HCM4 equivalent -hsa:57670 up:Q9HCM3 equivalent -hsa:57673 up:Q5T5X7 equivalent -hsa:57674 up:A0A0A0MTR7 equivalent -hsa:57674 up:Q63HN8 equivalent -hsa:57677 up:Q9HCL3 equivalent -hsa:57678 up:Q86T70 equivalent -hsa:57678 up:Q8N1G6 equivalent -hsa:57678 up:Q9HCL2 equivalent -hsa:57679 up:A8K4R4 equivalent -hsa:57679 up:Q96Q42 equivalent -hsa:5768 up:O00391 equivalent -hsa:5768 up:Q13876 equivalent -hsa:57680 up:Q9HCK8 equivalent -hsa:57683 up:N0DVB2 equivalent -hsa:57683 up:Q9HCK1 equivalent -hsa:57684 up:Q9HCK0 equivalent -hsa:57685 up:A0A0A0MQY7 equivalent -hsa:57685 up:Q5VU97 equivalent -hsa:57687 up:A8K288 equivalent -hsa:57687 up:Q9HCJ6 equivalent -hsa:57688 up:Q9HCJ5 equivalent -hsa:57689 up:Q4JIV9 equivalent -hsa:57689 up:Q4JIW0 equivalent -hsa:57689 up:Q9HCJ2 equivalent -hsa:57690 up:Q9HCJ0 equivalent -hsa:57691 up:Q9HCI6 equivalent -hsa:57692 up:Q9HCI5 equivalent -hsa:57693 up:Q96PQ6 equivalent -hsa:57695 up:Q86T82 equivalent -hsa:57696 up:Q8NHQ9 equivalent -hsa:57697 up:Q8IYD8 equivalent -hsa:57698 up:A0MZ66 equivalent -hsa:57699 up:Q9HCH3 equivalent -hsa:577 up:O60242 equivalent -hsa:5770 up:A8K3M3 equivalent -hsa:5770 up:P18031 equivalent -hsa:57700 up:Q5W0V3 equivalent -hsa:57701 up:Q9HCH0 equivalent -hsa:57703 up:Q9HCG8 equivalent -hsa:57704 up:Q9HCG7 equivalent -hsa:57705 up:Q6ZS81 equivalent -hsa:57706 up:Q8TEH3 equivalent -hsa:57706 up:Q9HCG4 equivalent -hsa:57707 up:A8K5C2 equivalent -hsa:57707 up:Q6P9B6 equivalent -hsa:57708 up:Q8N108 equivalent -hsa:57709 up:Q8TBB6 equivalent -hsa:5771 up:P17706 equivalent -hsa:5771 up:Q59F91 equivalent -hsa:57710 up:Q5VZ46 equivalent -hsa:57711 up:Q6P280 equivalent -hsa:57713 up:Q5VUG0 equivalent -hsa:57715 up:Q9NTN9 equivalent -hsa:57716 up:Q9BXM0 equivalent -hsa:57717 up:Q9NRJ7 equivalent -hsa:57718 up:Q6NUP7 equivalent -hsa:57719 up:Q9HCE9 equivalent -hsa:57720 up:Q5VW38 equivalent -hsa:57721 up:Q9HCE5 equivalent -hsa:57722 up:Q8TDY8 equivalent -hsa:57724 up:Q9BTI0 equivalent -hsa:57724 up:Q9HCE0 equivalent -hsa:57727 up:Q9HCD5 equivalent -hsa:57728 up:Q8NEZ3 equivalent -hsa:57730 up:Q8N2N9 equivalent -hsa:57731 up:Q9H254 equivalent -hsa:57732 up:Q9HCC9 equivalent -hsa:57733 up:A8K9N1 equivalent -hsa:57733 up:Q9H227 equivalent -hsa:5774 up:B7Z9V1 equivalent -hsa:5774 up:P26045 equivalent -hsa:5774 up:Q8N4S3 equivalent -hsa:5775 up:P29074 equivalent -hsa:57758 up:B3KS09 equivalent -hsa:57758 up:Q9NQ36 equivalent -hsa:57761 up:Q96RU7 equivalent -hsa:57763 up:Q9H9E1 equivalent -hsa:5777 up:P29350 equivalent -hsa:5778 up:P35236 equivalent -hsa:57786 up:Q9NYW8 equivalent -hsa:57787 up:Q96L34 equivalent -hsa:57794 up:Q8IWZ8 equivalent -hsa:57795 up:Q9C0B6 equivalent -hsa:57798 up:Q8WUU5 equivalent -hsa:57799 up:Q96S21 equivalent -hsa:578 up:A0A0S2Z391 equivalent -hsa:578 up:Q16611 equivalent -hsa:5780 up:P43378 equivalent -hsa:5780 up:Q6IQ43 equivalent -hsa:57801 up:Q9HCC6 equivalent -hsa:57804 up:Q6NSD7 equivalent -hsa:57804 up:Q9HCU8 equivalent -hsa:57805 up:Q8N163 equivalent -hsa:5781 up:Q06124 equivalent -hsa:57817 up:P81172 equivalent -hsa:57818 up:Q9NQR9 equivalent -hsa:57819 up:Q9Y333 equivalent -hsa:5782 up:Q05209 equivalent -hsa:57820 up:A0A384MR52 equivalent -hsa:57820 up:Q9NPC3 equivalent -hsa:57821 up:Q5TID7 equivalent -hsa:57822 up:Q8TE85 equivalent -hsa:57823 up:Q9NQ25 equivalent -hsa:57824 up:O97980 equivalent -hsa:57826 up:Q9Y3L5 equivalent -hsa:57827 up:A0A1U9X7F2 equivalent -hsa:57827 up:O95873 equivalent -hsa:57827 up:Q9UMP7 equivalent -hsa:57828 up:Q32MQ2 equivalent -hsa:57828 up:Q6ZRH7 equivalent -hsa:57829 up:Q12836 equivalent -hsa:5783 up:Q12923 equivalent -hsa:57830 up:O75690 equivalent -hsa:57834 up:Q9HBI6 equivalent -hsa:57835 up:Q9BY07 equivalent -hsa:5784 up:A8K6H6 equivalent -hsa:5784 up:Q15678 equivalent -hsa:5786 up:P18433 equivalent -hsa:57862 up:Q53FM1 equivalent -hsa:57862 up:Q86VK4 equivalent -hsa:57863 up:Q8N126 equivalent -hsa:57864 up:Q9BY10 equivalent -hsa:5787 up:P23467 equivalent -hsa:5788 up:P08575 equivalent -hsa:5789 up:P23468 equivalent -hsa:5789 up:Q2HXI4 equivalent -hsa:579 up:P78367 equivalent -hsa:5790 up:Q14761 equivalent -hsa:5791 up:P23469 equivalent -hsa:5792 up:G1UI20 equivalent -hsa:5792 up:P10586 equivalent -hsa:5793 up:P23470 equivalent -hsa:5793 up:Q49A02 equivalent -hsa:5794 up:Q9HD43 equivalent -hsa:5795 up:Q12913 equivalent -hsa:5795 up:Q9NPR5 equivalent -hsa:5796 up:Q15262 equivalent -hsa:5797 up:P28827 equivalent -hsa:5798 up:Q16849 equivalent -hsa:5798 up:Q96IA0 equivalent -hsa:5799 up:I6L9F8 equivalent -hsa:5799 up:Q92932 equivalent -hsa:58 up:P68133 equivalent -hsa:580 up:A0AVN2 equivalent -hsa:580 up:Q99728 equivalent -hsa:5800 up:Q16827 equivalent -hsa:5801 up:Q15256 equivalent -hsa:5802 up:Q13332 equivalent -hsa:5802 up:Q59FX6 equivalent -hsa:5802 up:Q8NHS7 equivalent -hsa:5803 up:P23471 equivalent -hsa:5805 up:Q03393 equivalent -hsa:5806 up:P26022 equivalent -hsa:581 up:Q07812 equivalent -hsa:5810 up:O60671 equivalent -hsa:5813 up:Q00577 equivalent -hsa:5814 up:Q96QR8 equivalent -hsa:58155 up:Q9UKA9 equivalent -hsa:58157 up:A0M8W9 equivalent -hsa:58157 up:Q9NPG2 equivalent -hsa:58158 up:Q8IW56 equivalent -hsa:58158 up:Q9HD90 equivalent -hsa:5816 up:P20472 equivalent -hsa:5817 up:A0A0C4DG49 equivalent -hsa:5817 up:A8K4I1 equivalent -hsa:5817 up:P15151 equivalent -hsa:5818 up:Q15223 equivalent -hsa:58189 up:Q9HC57 equivalent -hsa:5819 up:Q92692 equivalent -hsa:58190 up:Q9GZU7 equivalent -hsa:58191 up:Q9H2A7 equivalent -hsa:582 up:Q8NFJ9 equivalent -hsa:5822 up:Q15269 equivalent -hsa:5824 up:A0A0S2Z497 equivalent -hsa:5824 up:P40855 equivalent -hsa:5825 up:P28288 equivalent -hsa:5826 up:O14678 equivalent -hsa:5827 up:Q9NR77 equivalent -hsa:5828 up:P28328 equivalent -hsa:5829 up:A0A140VJQ8 equivalent -hsa:5829 up:P49023 equivalent -hsa:583 up:Q9BXC9 equivalent -hsa:5830 up:A0A0S2Z4H1 equivalent -hsa:5830 up:B4DR50 equivalent -hsa:5830 up:P50542 equivalent -hsa:5831 up:P32322 equivalent -hsa:5832 up:P54886 equivalent -hsa:5833 up:Q99447 equivalent -hsa:5834 up:P11216 equivalent -hsa:5836 up:P06737 equivalent -hsa:5837 up:P11217 equivalent -hsa:58472 up:Q9Y6N5 equivalent -hsa:58473 up:Q9UF11 equivalent -hsa:58475 up:Q9GZW8 equivalent -hsa:58476 up:Q8IXH6 equivalent -hsa:58477 up:Q549N5 equivalent -hsa:58477 up:Q9Y5M8 equivalent -hsa:58478 up:Q9UHY7 equivalent -hsa:58480 up:Q7L0Q8 equivalent -hsa:58484 up:Q9NPP4 equivalent -hsa:58485 up:Q9Y5R8 equivalent -hsa:58486 up:Q49AG3 equivalent -hsa:58487 up:Q9NS37 equivalent -hsa:58488 up:Q549N3 equivalent -hsa:58488 up:Q9UKL6 equivalent -hsa:58489 up:Q6PCB6 equivalent -hsa:58490 up:Q9NQG5 equivalent -hsa:58491 up:Q9NQZ8 equivalent -hsa:58492 up:Q15935 equivalent -hsa:58493 up:Q9NRY2 equivalent -hsa:58494 up:P57087 equivalent -hsa:58495 up:Q9BRP0 equivalent -hsa:58496 up:A0A1U9X7Y3 equivalent -hsa:58496 up:N0E641 equivalent -hsa:58496 up:Q8NDX9 equivalent -hsa:58497 up:Q86TP1 equivalent -hsa:58498 up:Q01449 equivalent -hsa:58499 up:Q63HJ5 equivalent -hsa:58499 up:Q96JM2 equivalent -hsa:585 up:A0A0S2Z3A9 equivalent -hsa:585 up:Q96RK4 equivalent -hsa:58500 up:B3KNS9 equivalent -hsa:58500 up:P15622 equivalent -hsa:58503 up:Q99935 equivalent -hsa:58504 up:Q7Z5H3 equivalent -hsa:58505 up:Q9NRP0 equivalent -hsa:58506 up:Q9H7N4 equivalent -hsa:58508 up:Q8NEZ4 equivalent -hsa:58509 up:Q8WUQ7 equivalent -hsa:58510 up:Q9UF12 equivalent -hsa:58511 up:Q66K39 equivalent -hsa:58511 up:Q8WZ79 equivalent -hsa:58512 up:O95886 equivalent -hsa:58513 up:Q9UBC2 equivalent -hsa:58515 up:Q9Y6D0 equivalent -hsa:58516 up:Q9NP50 equivalent -hsa:58517 up:P49756 equivalent -hsa:58524 up:Q9NQL9 equivalent -hsa:58525 up:O95785 equivalent -hsa:58526 up:Q9NPA3 equivalent -hsa:58527 up:Q9P1F3 equivalent -hsa:58528 up:Q9NQL2 equivalent -hsa:58529 up:Q9NP98 equivalent -hsa:58530 up:A0A1L6Z9X4 equivalent -hsa:58530 up:O95868 equivalent -hsa:58531 up:Q9NNZ6 equivalent -hsa:58533 up:A0A0A0MRI2 equivalent -hsa:58533 up:Q9UNH7 equivalent -hsa:58538 up:Q96JB8 equivalent -hsa:5859 up:B7Z840 equivalent -hsa:5859 up:P47897 equivalent -hsa:586 up:P54687 equivalent -hsa:5860 up:A0A140VKA9 equivalent -hsa:5860 up:P09417 equivalent -hsa:5861 up:P62820 equivalent -hsa:5861 up:Q5U0I6 equivalent -hsa:5862 up:P61019 equivalent -hsa:5863 up:A0A024RCS9 equivalent -hsa:5863 up:O15211 equivalent -hsa:5864 up:A0A024R7I7 equivalent -hsa:5864 up:P20336 equivalent -hsa:5865 up:P20337 equivalent -hsa:5866 up:Q8TBN0 equivalent -hsa:5867 up:P20338 equivalent -hsa:5868 up:P20339 equivalent -hsa:5869 up:P61020 equivalent -hsa:587 up:O15382 equivalent -hsa:5870 up:P20340 equivalent -hsa:5871 up:Q12851 equivalent -hsa:5872 up:P51153 equivalent -hsa:5872 up:Q504R6 equivalent -hsa:5873 up:A2RU94 equivalent -hsa:5873 up:P51159 equivalent -hsa:5874 up:O00194 equivalent -hsa:5875 up:Q92696 equivalent -hsa:5876 up:A8KAJ2 equivalent -hsa:5876 up:P53611 equivalent -hsa:5876 up:Q6IB63 equivalent -hsa:5877 up:P47224 equivalent -hsa:5877 up:Q53EV1 equivalent -hsa:5878 up:P51148 equivalent -hsa:5879 up:A4D2P1 equivalent -hsa:5879 up:P63000 equivalent -hsa:5880 up:P15153 equivalent -hsa:5880 up:V9H0H7 equivalent -hsa:5881 up:P60763 equivalent -hsa:5883 up:Q99638 equivalent -hsa:5884 up:O75943 equivalent -hsa:5885 up:O60216 equivalent -hsa:5886 up:P54725 equivalent -hsa:5887 up:P54727 equivalent -hsa:5888 up:Q06609 equivalent -hsa:5889 up:O43502 equivalent -hsa:5890 up:O15315 equivalent -hsa:5891 up:Q9UQ07 equivalent -hsa:5892 up:O75771 equivalent -hsa:5893 up:P43351 equivalent -hsa:5893 up:Q5DR82 equivalent -hsa:5894 up:L7RRS6 equivalent -hsa:5894 up:P04049 equivalent -hsa:5896 up:P15918 equivalent -hsa:5897 up:P55895 equivalent -hsa:5898 up:P11233 equivalent -hsa:58985 up:Q8N6P7 equivalent -hsa:58986 up:Q9HCN3 equivalent -hsa:5899 up:P11234 equivalent -hsa:59 up:D2JYH4 equivalent -hsa:59 up:P62736 equivalent -hsa:590 up:P06276 equivalent -hsa:5900 up:Q12967 equivalent -hsa:5900 up:Q8N4Y1 equivalent -hsa:5901 up:P62826 equivalent -hsa:5902 up:A0A140VK94 equivalent -hsa:5902 up:P43487 equivalent -hsa:5903 up:P49792 equivalent -hsa:5905 up:P46060 equivalent -hsa:5905 up:Q9BSK3 equivalent -hsa:5906 up:A8KAH9 equivalent -hsa:5906 up:P62834 equivalent -hsa:59067 up:A0A224B028 equivalent -hsa:59067 up:Q9HBE4 equivalent -hsa:5908 up:P61224 equivalent -hsa:59082 up:P57730 equivalent -hsa:59084 up:Q9UJA9 equivalent -hsa:5909 up:P47736 equivalent -hsa:5910 up:B3KNU0 equivalent -hsa:5910 up:P52306 equivalent -hsa:5911 up:P10114 equivalent -hsa:5912 up:P61225 equivalent -hsa:5913 up:A0A0S2Z4F8 equivalent -hsa:5913 up:Q13702 equivalent -hsa:5914 up:P10276 equivalent -hsa:5914 up:Q6I9R7 equivalent -hsa:5915 up:P10826 equivalent -hsa:5916 up:A8K3H3 equivalent -hsa:5916 up:P13631 equivalent -hsa:5917 up:P54136 equivalent -hsa:5918 up:P49788 equivalent -hsa:5919 up:A0A090N7U9 equivalent -hsa:5919 up:Q99969 equivalent -hsa:5920 up:Q9UL19 equivalent -hsa:5921 up:P20936 equivalent -hsa:5921 up:Q59GK3 equivalent -hsa:5922 up:Q15283 equivalent -hsa:5923 up:A8K270 equivalent -hsa:5923 up:Q13972 equivalent -hsa:5924 up:A0A2X0SFL3 equivalent -hsa:5924 up:O14827 equivalent -hsa:5924 up:Q68DX5 equivalent -hsa:5925 up:P06400 equivalent -hsa:5926 up:P29374 equivalent -hsa:5926 up:Q05CG0 equivalent -hsa:59269 up:Q5T1R4 equivalent -hsa:5927 up:P29375 equivalent -hsa:59271 up:P58658 equivalent -hsa:59272 up:Q9BYF1 equivalent -hsa:59274 up:Q9H1K6 equivalent -hsa:59277 up:Q9HB63 equivalent -hsa:5928 up:Q09028 equivalent -hsa:59283 up:Q8WXS5 equivalent -hsa:59284 up:P62955 equivalent -hsa:59285 up:Q9BXT2 equivalent -hsa:59286 up:A0A024R7B0 equivalent -hsa:59286 up:Q9BZL1 equivalent -hsa:5929 up:Q15291 equivalent -hsa:593 up:P12694 equivalent -hsa:5930 up:Q7Z6E9 equivalent -hsa:59307 up:Q6IA17 equivalent -hsa:5931 up:Q16576 equivalent -hsa:5931 up:Q6FHQ0 equivalent -hsa:5932 up:Q99708 equivalent -hsa:5933 up:P28749 equivalent -hsa:59335 up:Q9H4Q4 equivalent -hsa:59336 up:Q9H4Q3 equivalent -hsa:59338 up:Q9HB21 equivalent -hsa:59339 up:Q9HB19 equivalent -hsa:5934 up:Q08999 equivalent -hsa:59340 up:Q9H3N8 equivalent -hsa:59341 up:Q9HBA0 equivalent -hsa:59342 up:Q9H2J9 equivalent -hsa:59342 up:Q9HB40 equivalent -hsa:59343 up:Q9HC62 equivalent -hsa:59344 up:Q9BYJ1 equivalent -hsa:59345 up:Q9HAV0 equivalent -hsa:59348 up:Q9GZX5 equivalent -hsa:59349 up:Q53G59 equivalent -hsa:59349 up:Q9H7R2 equivalent -hsa:5935 up:P98179 equivalent -hsa:59350 up:Q9HBX9 equivalent -hsa:59351 up:Q9GZY1 equivalent -hsa:59352 up:Q9HBX8 equivalent -hsa:59353 up:Q53FP2 equivalent -hsa:5936 up:Q9BWF3 equivalent -hsa:5937 up:P29558 equivalent -hsa:5939 up:Q15434 equivalent -hsa:594 up:A0A140VKB3 equivalent -hsa:594 up:P21953 equivalent -hsa:5940 up:P0DJD3 equivalent -hsa:5947 up:P09455 equivalent -hsa:5948 up:P50120 equivalent -hsa:594855 up:A0A384N6F4 equivalent -hsa:594855 up:Q8WVH0 equivalent -hsa:594857 up:P0C0P6 equivalent -hsa:5949 up:P10745 equivalent -hsa:595 up:P24385 equivalent -hsa:595 up:Q6FI00 equivalent -hsa:5950 up:P02753 equivalent -hsa:5954 up:Q15293 equivalent -hsa:5954 up:V9HW95 equivalent -hsa:5955 up:Q14257 equivalent -hsa:5956 up:P04000 equivalent -hsa:5957 up:P35243 equivalent -hsa:5959 up:Q92781 equivalent -hsa:596 up:P10415 equivalent -hsa:5961 up:P23942 equivalent -hsa:5962 up:B0YJ88 equivalent -hsa:5962 up:P35241 equivalent -hsa:5962 up:Q6PKD3 equivalent -hsa:5965 up:P46063 equivalent -hsa:5966 up:Q04864 equivalent -hsa:5967 up:A8K7G6 equivalent -hsa:5967 up:P05451 equivalent -hsa:5968 up:P48304 equivalent -hsa:5968 up:Q6ICS1 equivalent -hsa:597 up:Q16548 equivalent -hsa:5970 up:Q04206 equivalent -hsa:5971 up:Q01201 equivalent -hsa:5972 up:P00797 equivalent -hsa:5973 up:P51606 equivalent -hsa:5976 up:B3KY55 equivalent -hsa:5976 up:Q92900 equivalent -hsa:5977 up:Q92785 equivalent -hsa:5978 up:Q13127 equivalent -hsa:5979 up:P07949 equivalent -hsa:598 up:A0A0S2Z3C5 equivalent -hsa:598 up:Q07817 equivalent -hsa:5980 up:O60673 equivalent -hsa:5980 up:Q9UG47 equivalent -hsa:5981 up:P35251 equivalent -hsa:5982 up:P35250 equivalent -hsa:5983 up:P40938 equivalent -hsa:5984 up:P35249 equivalent -hsa:5985 up:P40937 equivalent -hsa:5986 up:Q8N9R1 equivalent -hsa:5986 up:Q9Y644 equivalent -hsa:5987 up:A0A1U9X8R9 equivalent -hsa:5987 up:P14373 equivalent -hsa:5988 up:O75677 equivalent -hsa:5989 up:P22670 equivalent -hsa:599 up:Q92843 equivalent -hsa:5990 up:P48378 equivalent -hsa:5991 up:P48380 equivalent -hsa:5992 up:Q33E94 equivalent -hsa:5993 up:P48382 equivalent -hsa:5994 up:O00287 equivalent -hsa:5995 up:P47804 equivalent -hsa:5996 up:Q08116 equivalent -hsa:5997 up:P41220 equivalent -hsa:5998 up:P49796 equivalent -hsa:5999 up:P49798 equivalent -hsa:60 up:P60709 equivalent -hsa:60 up:Q1KLZ0 equivalent -hsa:6000 up:P49802 equivalent -hsa:6001 up:O43665 equivalent -hsa:6002 up:O14924 equivalent -hsa:6003 up:O14921 equivalent -hsa:6004 up:O15492 equivalent -hsa:6005 up:Q02094 equivalent -hsa:6005 up:Q96E98 equivalent -hsa:6006 up:A0A1L3H056 equivalent -hsa:6006 up:A0A220QMN8 equivalent -hsa:6006 up:P18577 equivalent -hsa:6007 up:A0A1B1R0Y1 equivalent -hsa:6007 up:B4DLT8 equivalent -hsa:6007 up:Q02161 equivalent -hsa:6007 up:Q1KT12 equivalent -hsa:6007 up:Q5XLT3 reverse -hsa:6007 up:Q7RU08 equivalent -hsa:6009 up:A0A090N900 equivalent -hsa:6009 up:Q15382 equivalent -hsa:6010 up:P08100 equivalent -hsa:6011 up:Q15835 equivalent -hsa:6013 up:P04808 equivalent -hsa:6014 up:Q99578 equivalent -hsa:6015 up:A0A1U9X8F2 equivalent -hsa:6015 up:Q06587 equivalent -hsa:6016 up:Q92963 equivalent -hsa:6017 up:P12271 equivalent -hsa:6018 up:Q13129 equivalent -hsa:6019 up:P04090 equivalent -hsa:602 up:P20749 equivalent -hsa:60312 up:Q8N556 equivalent -hsa:60313 up:Q9HC44 equivalent -hsa:60314 up:Q9HB07 equivalent -hsa:60343 up:P98173 equivalent -hsa:6035 up:P07998 equivalent -hsa:6035 up:W0UV93 equivalent -hsa:6036 up:P10153 equivalent -hsa:6036 up:W0UV60 equivalent -hsa:6037 up:P12724 equivalent -hsa:60370 up:Q5T686 equivalent -hsa:6038 up:P34096 equivalent -hsa:6038 up:Q53XB4 equivalent -hsa:60385 up:Q9UJT2 equivalent -hsa:60386 up:Q5JPC1 equivalent -hsa:60386 up:Q9HC21 equivalent -hsa:6039 up:Q6IB39 equivalent -hsa:6039 up:Q93091 equivalent -hsa:604 up:P41182 equivalent -hsa:60401 up:B2RBZ9 equivalent -hsa:60401 up:Q9HAV5 equivalent -hsa:6041 up:Q05823 equivalent -hsa:60412 up:Q96A65 equivalent -hsa:60436 up:Q9GZN2 equivalent -hsa:60437 up:Q8IXH8 equivalent -hsa:6045 up:Q99496 equivalent -hsa:6046 up:P25440 equivalent -hsa:60468 up:Q9BYV9 equivalent -hsa:6047 up:P78317 equivalent -hsa:6048 up:A0A024RCQ4 equivalent -hsa:6048 up:Q99942 equivalent -hsa:60481 up:B3KWH9 equivalent -hsa:60481 up:Q9NYP7 equivalent -hsa:60482 up:B2RCU2 equivalent -hsa:60482 up:Q9GZV3 equivalent -hsa:60484 up:Q9GZV7 equivalent -hsa:60485 up:Q9H4B6 equivalent -hsa:60487 up:Q7Z4G4 equivalent -hsa:60488 up:P82673 equivalent -hsa:60489 up:Q9HC16 equivalent -hsa:6049 up:A0A024RDP2 equivalent -hsa:6049 up:Q9Y252 equivalent -hsa:60490 up:Q96CD2 equivalent -hsa:60491 up:Q9GZT8 equivalent -hsa:60492 up:Q9GZT6 equivalent -hsa:60493 up:Q7L8L6 equivalent -hsa:60494 up:Q6ZN84 equivalent -hsa:60495 up:Q2M1H9 equivalent -hsa:60495 up:Q8WWQ2 equivalent -hsa:60496 up:Q9NRN7 equivalent -hsa:605 up:Q4VC05 equivalent -hsa:6050 up:A0A140VJT8 equivalent -hsa:6050 up:P13489 equivalent -hsa:60506 up:Q9GZU5 equivalent -hsa:60509 up:Q8NDL9 equivalent -hsa:6051 up:Q9H4A4 equivalent -hsa:60526 up:Q9H6V9 equivalent -hsa:60528 up:A0A0S2Z5M8 equivalent -hsa:60528 up:Q9BQ52 equivalent -hsa:60529 up:Q9H161 equivalent -hsa:60558 up:Q8N442 equivalent -hsa:60559 up:P61009 equivalent -hsa:60560 up:A8K874 equivalent -hsa:60560 up:Q5VZE5 equivalent -hsa:60561 up:Q6NUQ1 equivalent -hsa:6059 up:P61221 equivalent -hsa:60592 up:Q9UIL1 equivalent -hsa:60598 up:Q9H427 equivalent -hsa:60625 up:Q9H5Z1 equivalent -hsa:60626 up:Q9NPQ8 equivalent -hsa:606495 up:Q6IPT4 equivalent -hsa:60672 up:Q5JXC2 equivalent -hsa:60673 up:Q9BSB4 equivalent -hsa:60675 up:Q9HC23 equivalent -hsa:60676 up:Q9BXP8 equivalent -hsa:60677 up:Q96J87 equivalent -hsa:60678 up:P57772 equivalent -hsa:60680 up:Q8N6W0 equivalent -hsa:60681 up:Q658U4 equivalent -hsa:60681 up:Q8NAG5 equivalent -hsa:60681 up:Q96AY3 equivalent -hsa:60682 up:Q8IYB5 equivalent -hsa:60684 up:Q7Z392 equivalent -hsa:60685 up:Q9H8U3 equivalent -hsa:60686 up:Q9H972 equivalent -hsa:607 up:O00512 equivalent -hsa:607 up:Q1JQ81 equivalent -hsa:608 up:Q02223 equivalent -hsa:6091 up:Q9Y6N7 equivalent -hsa:6092 up:Q9HCK4 equivalent -hsa:6093 up:Q13464 equivalent -hsa:6094 up:Q03395 equivalent -hsa:6095 up:P35398 equivalent -hsa:6097 up:P51449 equivalent -hsa:6097 up:Q6I9R9 equivalent -hsa:6098 up:P08922 equivalent -hsa:610 up:Q9UL51 equivalent -hsa:6100 up:A0A090N8Z0 equivalent -hsa:6100 up:Q8TA86 equivalent -hsa:6101 up:P56715 equivalent -hsa:6102 up:A0A1B2JLU2 equivalent -hsa:6102 up:O75695 equivalent -hsa:6103 up:Q92834 equivalent -hsa:6117 up:P27694 equivalent -hsa:6118 up:P15927 equivalent -hsa:6119 up:A4D105 equivalent -hsa:6119 up:P35244 equivalent -hsa:6120 up:Q96AT9 equivalent -hsa:6121 up:Q16518 equivalent -hsa:6122 up:P39023 equivalent -hsa:6123 up:Q92901 equivalent -hsa:6124 up:P36578 equivalent -hsa:6125 up:A2RUM7 equivalent -hsa:6125 up:P46777 equivalent -hsa:6128 up:Q02878 equivalent -hsa:6129 up:P18124 equivalent -hsa:613 up:P11274 equivalent -hsa:6130 up:P62424 equivalent -hsa:613037 up:A6NJU9 equivalent -hsa:6132 up:P62917 equivalent -hsa:613209 up:Q30KP9 equivalent -hsa:613210 up:Q30KP8 equivalent -hsa:613211 up:Q4QY38 equivalent -hsa:613212 up:Q4LDR2 equivalent -hsa:613227 up:A8MV81 equivalent -hsa:6133 up:P32969 equivalent -hsa:6133 up:Q53Z07 equivalent -hsa:6134 up:P27635 equivalent -hsa:6134 up:X5D2T3 equivalent -hsa:6135 up:P62913 equivalent -hsa:6135 up:Q5VVD0 equivalent -hsa:6136 up:P30050 equivalent -hsa:6137 up:A8K4C8 equivalent -hsa:6137 up:P26373 equivalent -hsa:6138 up:P61313 equivalent -hsa:6139 up:P18621 equivalent -hsa:6141 up:Q07020 equivalent -hsa:6142 up:Q02543 equivalent -hsa:6143 up:P84098 equivalent -hsa:6144 up:P46778 equivalent -hsa:6144 up:Q6IAX2 equivalent -hsa:6146 up:P35268 equivalent -hsa:6147 up:P62750 equivalent -hsa:6150 up:Q16540 equivalent -hsa:6152 up:P83731 equivalent -hsa:6152 up:V9HW01 equivalent -hsa:6154 up:P61254 equivalent -hsa:6155 up:P61353 equivalent -hsa:6156 up:P62888 equivalent -hsa:6157 up:P46776 equivalent -hsa:6158 up:P46779 equivalent -hsa:6159 up:P47914 equivalent -hsa:6160 up:P62899 equivalent -hsa:6161 up:P62910 equivalent -hsa:6164 up:P49207 equivalent -hsa:6165 up:P18077 equivalent -hsa:6166 up:Q969Q0 equivalent -hsa:6167 up:P61927 equivalent -hsa:6168 up:P61513 equivalent -hsa:6169 up:P63173 equivalent -hsa:617 up:A0A024R445 equivalent -hsa:617 up:Q9Y276 equivalent -hsa:6170 up:P62891 equivalent -hsa:6171 up:A0A024RB15 equivalent -hsa:6171 up:P62945 equivalent -hsa:6173 up:J3KQN4 equivalent -hsa:6173 up:P83881 equivalent -hsa:6175 up:P05388 equivalent -hsa:6176 up:P05386 equivalent -hsa:6181 up:P05387 equivalent -hsa:6182 up:P52815 equivalent -hsa:6183 up:O15235 equivalent -hsa:6184 up:P04843 equivalent -hsa:6185 up:P04844 equivalent -hsa:6187 up:P15880 equivalent -hsa:6188 up:P23396 equivalent -hsa:6189 up:P61247 equivalent -hsa:6191 up:B2R491 equivalent -hsa:6191 up:P62701 equivalent -hsa:619189 up:A6NH21 equivalent -hsa:6192 up:P22090 equivalent -hsa:619208 up:Q4G0N7 equivalent -hsa:619279 up:Q6ZNC4 equivalent -hsa:6193 up:P46782 equivalent -hsa:619373 up:Q96T53 equivalent -hsa:6194 up:A2A3R6 equivalent -hsa:6194 up:P62753 equivalent -hsa:6195 up:Q15418 equivalent -hsa:6196 up:Q15349 equivalent -hsa:6197 up:A0A384MDW3 equivalent -hsa:6197 up:P51812 equivalent -hsa:6198 up:P23443 equivalent -hsa:6199 up:Q9UBS0 equivalent -hsa:6201 up:P62081 equivalent -hsa:6202 up:P62241 equivalent -hsa:6202 up:Q5JR94 equivalent -hsa:6203 up:P46781 equivalent -hsa:6204 up:P46783 equivalent -hsa:6205 up:P62280 equivalent -hsa:6206 up:P25398 equivalent -hsa:6207 up:P62277 equivalent -hsa:6208 up:P62263 equivalent -hsa:6209 up:P62841 equivalent -hsa:6210 up:B2R4W8 equivalent -hsa:6210 up:P62244 equivalent -hsa:6217 up:P62249 equivalent -hsa:6218 up:P08708 equivalent -hsa:622 up:A0A384MTY4 equivalent -hsa:622 up:Q02338 equivalent -hsa:6222 up:P62269 equivalent -hsa:6223 up:B0ZBD0 equivalent -hsa:6223 up:P39019 equivalent -hsa:6224 up:P60866 equivalent -hsa:6227 up:P63220 equivalent -hsa:6227 up:Q6FGH5 equivalent -hsa:6228 up:A8K517 equivalent -hsa:6228 up:P62266 equivalent -hsa:6229 up:P62847 equivalent -hsa:623 up:P46663 equivalent -hsa:6230 up:P62851 equivalent -hsa:6231 up:P62854 equivalent -hsa:6232 up:P42677 equivalent -hsa:6233 up:B2RDW1 equivalent -hsa:6233 up:P62979 equivalent -hsa:6234 up:B2R4R9 equivalent -hsa:6234 up:P62857 equivalent -hsa:6235 up:P62273 equivalent -hsa:6236 up:P55042 equivalent -hsa:6237 up:P10301 equivalent -hsa:6238 up:Q9P2E9 equivalent -hsa:6239 up:Q92766 equivalent -hsa:624 up:P30411 equivalent -hsa:6240 up:P23921 equivalent -hsa:6241 up:P31350 equivalent -hsa:6242 up:Q9BST9 equivalent -hsa:6247 up:O15537 equivalent -hsa:6248 up:Q92681 equivalent -hsa:6249 up:P30622 equivalent -hsa:6251 up:Q15404 equivalent -hsa:6252 up:Q16799 equivalent -hsa:6253 up:A8K7F2 equivalent -hsa:6253 up:O75298 equivalent -hsa:6253 up:Q6GMT0 equivalent -hsa:6256 up:F1D8Q5 equivalent -hsa:6256 up:P19793 equivalent -hsa:6256 up:Q6P3U7 equivalent -hsa:6257 up:P28702 equivalent -hsa:6257 up:Q5STP9 equivalent -hsa:6258 up:F1D8Q7 equivalent -hsa:6258 up:P48443 equivalent -hsa:6259 up:P34925 equivalent -hsa:6259 up:Q59FQ5 equivalent -hsa:6259 up:Q8WTZ8 equivalent -hsa:6261 up:P21817 equivalent -hsa:6262 up:Q92736 equivalent -hsa:6263 up:Q15413 equivalent -hsa:627 up:A0A0E3SU01 equivalent -hsa:627 up:P23560 equivalent -hsa:6271 up:A0A0S2Z4H2 equivalent -hsa:6271 up:P23297 equivalent -hsa:6272 up:Q99523 equivalent -hsa:6273 up:P29034 equivalent -hsa:6274 up:P33764 equivalent -hsa:6275 up:P26447 equivalent -hsa:6276 up:P33763 equivalent -hsa:6277 up:P06703 equivalent -hsa:6278 up:P31151 equivalent -hsa:6279 up:P05109 equivalent -hsa:6280 up:P06702 equivalent -hsa:6281 up:P60903 equivalent -hsa:6282 up:P31949 equivalent -hsa:6282 up:V9HWH9 equivalent -hsa:6283 up:P80511 equivalent -hsa:6284 up:Q99584 equivalent -hsa:6285 up:A0A0S2Z4C5 equivalent -hsa:6285 up:P04271 equivalent -hsa:6286 up:P25815 equivalent -hsa:6288 up:P0DJI8 equivalent -hsa:6289 up:P0DJI9 equivalent -hsa:629 up:A0A1U9X7H8 equivalent -hsa:629 up:P00751 equivalent -hsa:6291 up:P35542 equivalent -hsa:6293 up:B3KMF7 equivalent -hsa:6293 up:Q4VXZ2 equivalent -hsa:6293 up:Q8N1B4 equivalent -hsa:6294 up:Q15424 equivalent -hsa:6295 up:P10523 equivalent -hsa:6296 up:Q53FZ2 equivalent -hsa:6297 up:Q9Y467 equivalent -hsa:6299 up:Q9NSC2 equivalent -hsa:6300 up:P53778 equivalent -hsa:6301 up:P49591 equivalent -hsa:6301 up:Q0VGA5 equivalent -hsa:6302 up:Q12999 equivalent -hsa:63027 up:A1A5C7 equivalent -hsa:6303 up:A0A384NQ10 equivalent -hsa:6303 up:P21673 equivalent -hsa:63035 up:Q5H9F3 equivalent -hsa:63036 up:P08217 equivalent -hsa:6304 up:Q01826 equivalent -hsa:6305 up:O95248 equivalent -hsa:6307 up:Q15800 equivalent -hsa:6309 up:O75845 equivalent -hsa:631 up:Q12934 equivalent -hsa:6310 up:P54253 equivalent -hsa:6310 up:Q96FF1 equivalent -hsa:6311 up:Q99700 equivalent -hsa:6314 up:O15265 equivalent -hsa:6314 up:Q9UPD8 equivalent -hsa:6317 up:P29508 equivalent -hsa:6318 up:P48594 equivalent -hsa:6319 up:O00767 equivalent -hsa:632 up:P02818 equivalent -hsa:6320 up:Q9Y240 equivalent -hsa:6322 up:Q9UN30 equivalent -hsa:6323 up:P35498 equivalent -hsa:6324 up:Q07699 equivalent -hsa:6326 up:Q99250 equivalent -hsa:6327 up:O60939 equivalent -hsa:6327 up:Q5U0K8 equivalent -hsa:6328 up:Q9NY46 equivalent -hsa:6329 up:P35499 equivalent -hsa:633 up:B4DNL4 equivalent -hsa:633 up:P21810 equivalent -hsa:6330 up:B0YJ93 equivalent -hsa:6330 up:Q8IWT1 equivalent -hsa:6331 up:H9KVD2 equivalent -hsa:6331 up:Q14524 equivalent -hsa:6332 up:Q01118 equivalent -hsa:6334 up:Q6B4S4 equivalent -hsa:6334 up:Q9UQD0 equivalent -hsa:6335 up:Q15858 equivalent -hsa:6336 up:Q9Y5Y9 equivalent -hsa:6337 up:P37088 equivalent -hsa:6338 up:B2R812 equivalent -hsa:6338 up:P51168 equivalent -hsa:6339 up:P51172 equivalent -hsa:634 up:P13688 equivalent -hsa:6340 up:A5X2V1 equivalent -hsa:6340 up:P51170 equivalent -hsa:6341 up:O75880 equivalent -hsa:6342 up:A0A384NY87 equivalent -hsa:6342 up:B2R761 equivalent -hsa:6342 up:P22307 equivalent -hsa:6342 up:Q59HG9 equivalent -hsa:6343 up:P09683 equivalent -hsa:6344 up:P47872 equivalent -hsa:6344 up:Q8IV17 equivalent -hsa:6345 up:B3KPP4 equivalent -hsa:6345 up:Q86TD4 equivalent -hsa:6346 up:P22362 equivalent -hsa:6347 up:P13500 equivalent -hsa:6348 up:A0N0R1 equivalent -hsa:6348 up:P10147 equivalent -hsa:6349 up:P16619 equivalent -hsa:635 up:Q93088 equivalent -hsa:635 up:V9HWA4 equivalent -hsa:6351 up:P13236 equivalent -hsa:6352 up:D0EI67 equivalent -hsa:6352 up:P13501 equivalent -hsa:6354 up:P80098 equivalent -hsa:6355 up:P80075 equivalent -hsa:6356 up:P51671 equivalent -hsa:6356 up:Q6I9T4 equivalent -hsa:6357 up:Q99616 equivalent -hsa:6358 up:Q16627 equivalent -hsa:6359 up:A0A0B4J2E2 equivalent -hsa:6359 up:Q16663 equivalent -hsa:636 up:Q96G01 equivalent -hsa:6360 up:O15467 equivalent -hsa:6361 up:Q92583 equivalent -hsa:6362 up:P55774 equivalent -hsa:6363 up:Q6IBD6 equivalent -hsa:6363 up:Q99731 equivalent -hsa:6364 up:P78556 equivalent -hsa:6366 up:O00585 equivalent -hsa:6367 up:O00626 equivalent -hsa:6368 up:P55773 equivalent -hsa:6369 up:O00175 equivalent -hsa:637 up:A8ASI8 equivalent -hsa:637 up:B3KT21 equivalent -hsa:637 up:P55957 equivalent -hsa:6370 up:O15444 equivalent -hsa:6372 up:P80162 equivalent -hsa:6373 up:O14625 equivalent -hsa:6374 up:P42830 equivalent -hsa:6374 up:Q6I9S7 equivalent -hsa:6375 up:P47992 equivalent -hsa:6376 up:A0N0N7 equivalent -hsa:6376 up:P78423 equivalent -hsa:638 up:Q13323 equivalent -hsa:6382 up:P18827 equivalent -hsa:63826 up:Q3ZK31 equivalent -hsa:63826 up:Q8N3F4 equivalent -hsa:63826 up:Q9GZT4 equivalent -hsa:63827 up:Q96GW7 equivalent -hsa:6383 up:P34741 equivalent -hsa:6385 up:P31431 equivalent -hsa:6386 up:O00560 equivalent -hsa:6387 up:P48061 equivalent -hsa:63874 up:Q8TB40 equivalent -hsa:63875 up:Q9NRX2 equivalent -hsa:63877 up:Q9H8W3 equivalent -hsa:6388 up:Q6IBU4 equivalent -hsa:6388 up:Q99470 equivalent -hsa:6389 up:P31040 equivalent -hsa:63891 up:Q5XPI4 equivalent -hsa:63892 up:Q6YHU6 equivalent -hsa:63893 up:Q9C0C9 equivalent -hsa:63894 up:Q6IA61 equivalent -hsa:63894 up:Q9H9C1 equivalent -hsa:63895 up:Q9H5I5 equivalent -hsa:63897 up:Q6AI08 equivalent -hsa:63898 up:Q9H788 equivalent -hsa:63899 up:Q9H649 equivalent -hsa:639 up:O75626 equivalent -hsa:6390 up:P21912 equivalent -hsa:63901 up:Q96PZ2 equivalent -hsa:63904 up:Q9H596 equivalent -hsa:63905 up:Q9NQG1 equivalent -hsa:63906 up:Q96I76 equivalent -hsa:63908 up:Q9H115 equivalent -hsa:6391 up:A0A0S2Z4B7 equivalent -hsa:6391 up:Q99643 equivalent -hsa:63910 up:Q9BYT1 equivalent -hsa:63915 up:Q8TDH9 equivalent -hsa:63916 up:Q96JJ3 equivalent -hsa:63917 up:A0A090N7X6 equivalent -hsa:63917 up:Q8NCW6 equivalent -hsa:6392 up:A0A0S2Z4J3 equivalent -hsa:6392 up:O14521 equivalent -hsa:63920 up:Q8IZ13 equivalent -hsa:63922 up:Q8WVB6 equivalent -hsa:63923 up:B3KXB6 equivalent -hsa:63923 up:Q9UQP3 equivalent -hsa:63924 up:Q96AQ7 equivalent -hsa:63925 up:Q8IW09 equivalent -hsa:63925 up:Q9H4Z2 equivalent -hsa:63926 up:Q9NU02 equivalent -hsa:63928 up:O43745 equivalent -hsa:63929 up:Q9NQH7 equivalent -hsa:63931 up:O60783 equivalent -hsa:63932 up:Q9H5V9 equivalent -hsa:63933 up:A0A384NPW7 equivalent -hsa:63933 up:Q96AQ8 equivalent -hsa:63934 up:Q5HYK9 equivalent -hsa:63935 up:Q9H4Z3 equivalent -hsa:63939 up:Q9NTX9 equivalent -hsa:63940 up:A0A024RCP6 equivalent -hsa:63940 up:Q9Y4H4 equivalent -hsa:63941 up:Q96P71 equivalent -hsa:63943 up:A0A024RCQ6 equivalent -hsa:63943 up:Q9UIM3 equivalent -hsa:63946 up:Q8IXT2 equivalent -hsa:63947 up:Q5HYR2 equivalent -hsa:63948 up:I6L9A0 equivalent -hsa:63948 up:Q96MA1 equivalent -hsa:63950 up:Q96SC8 equivalent -hsa:63951 up:Q5VZB9 equivalent -hsa:6396 up:P55735 equivalent -hsa:63967 up:Q9HAW4 equivalent -hsa:6397 up:Q7Z3R7 equivalent -hsa:6397 up:Q92503 equivalent -hsa:63970 up:Q9HCN2 equivalent -hsa:63971 up:Q9H1H9 equivalent -hsa:63973 up:Q9H2A3 equivalent -hsa:63974 up:A0A090N7T3 equivalent -hsa:63974 up:Q96NK8 equivalent -hsa:63976 up:Q9HAZ2 equivalent -hsa:63977 up:P57071 equivalent -hsa:63978 up:Q9GZV8 equivalent -hsa:63979 up:Q6PIW4 equivalent -hsa:6398 up:Q8WVN6 equivalent -hsa:63982 up:Q9BYT9 equivalent -hsa:6399 up:P0DI81 equivalent -hsa:6399 up:P0DI82 equivalent -hsa:6399 up:Q6IBE5 equivalent -hsa:640 up:P51451 equivalent -hsa:640 up:Q05D26 equivalent -hsa:6400 up:Q3ZCU6 equivalent -hsa:6400 up:Q9UBV2 equivalent -hsa:64005 up:B0I1T2 equivalent -hsa:6401 up:P16581 equivalent -hsa:6402 up:P14151 equivalent -hsa:6403 up:P16109 equivalent -hsa:6403 up:Q6NUL9 equivalent -hsa:6404 up:Q14242 equivalent -hsa:6405 up:Q13275 equivalent -hsa:6406 up:P04279 equivalent -hsa:64061 up:Q9H2G4 equivalent -hsa:64062 up:A0A087X0H9 equivalent -hsa:64062 up:Q5T8P6 equivalent -hsa:64063 up:Q9GZN4 equivalent -hsa:64064 up:Q9BYC2 equivalent -hsa:64065 up:Q96FX8 equivalent -hsa:64066 up:Q9H306 equivalent -hsa:64067 up:Q8IXF0 equivalent -hsa:64067 up:X5D2Q4 equivalent -hsa:6407 up:Q02383 equivalent -hsa:64072 up:Q6P152 equivalent -hsa:64072 up:Q9H251 equivalent -hsa:64073 up:Q9GZP8 equivalent -hsa:64077 up:Q9H008 equivalent -hsa:64078 up:Q9HAS3 equivalent -hsa:64080 up:Q9H477 equivalent -hsa:64081 up:A0A024QZK5 equivalent -hsa:64081 up:P30039 equivalent -hsa:64083 up:Q9H4A6 equivalent -hsa:64084 up:Q9H4D0 equivalent -hsa:64087 up:A0A140VK29 equivalent -hsa:64087 up:Q9HCC0 equivalent -hsa:64089 up:P57768 equivalent -hsa:64090 up:Q9H3Q3 equivalent -hsa:64091 up:Q9HBU9 equivalent -hsa:64092 up:Q9NSI8 equivalent -hsa:64093 up:Q9H4F8 equivalent -hsa:64094 up:Q9H3U7 equivalent -hsa:64096 up:Q9GZZ7 equivalent -hsa:64097 up:Q8N8X1 equivalent -hsa:64097 up:Q8NEH8 equivalent -hsa:64097 up:Q9HCS5 equivalent -hsa:64098 up:Q9HBI0 equivalent -hsa:641 up:P54132 equivalent -hsa:64100 up:A0A384NKL6 equivalent -hsa:64100 up:Q96BH3 equivalent -hsa:64101 up:Q9HBW1 equivalent -hsa:64102 up:Q9H2S6 equivalent -hsa:64105 up:Q9BS16 equivalent -hsa:64106 up:Q9GZQ6 equivalent -hsa:64108 up:Q96DX8 equivalent -hsa:64109 up:D0E2W4 equivalent -hsa:64109 up:Q9HC73 equivalent -hsa:64110 up:Q9HAY2 equivalent -hsa:64111 up:Q9HCQ7 equivalent -hsa:64112 up:Q96BY2 equivalent -hsa:64114 up:B3KSM0 equivalent -hsa:64114 up:Q969X1 equivalent -hsa:64115 up:Q9H7M9 equivalent -hsa:64116 up:Q9C0K1 equivalent -hsa:64118 up:Q6P1R4 equivalent -hsa:64121 up:Q9HB90 equivalent -hsa:64122 up:Q9H479 equivalent -hsa:64123 up:Q9HBW9 equivalent -hsa:64127 up:Q9HC29 equivalent -hsa:64129 up:Q9GZM7 equivalent -hsa:64130 up:Q9HAP6 equivalent -hsa:64131 up:Q86Y38 equivalent -hsa:64132 up:B4DT06 equivalent -hsa:64132 up:Q9H1B5 equivalent -hsa:641339 up:Q2M3X9 equivalent -hsa:64135 up:Q9BYX4 equivalent -hsa:64137 up:Q9H172 equivalent -hsa:641371 up:E9KL42 equivalent -hsa:641371 up:Q86TX2 equivalent -hsa:641372 up:Q3I5F7 equivalent -hsa:6414 up:P49908 equivalent -hsa:64145 up:A8K5H3 equivalent -hsa:64145 up:Q9H1K0 equivalent -hsa:641455 up:A6NI47 equivalent -hsa:64146 up:Q9HBH1 equivalent -hsa:64147 up:A8K932 equivalent -hsa:64147 up:Q9HAQ2 equivalent -hsa:64149 up:Q9HAS0 equivalent -hsa:6415 up:P63302 equivalent -hsa:64151 up:Q9BPX3 equivalent -hsa:6416 up:P45985 equivalent -hsa:641649 up:Q6ZNR0 equivalent -hsa:641654 up:Q6WQI6 equivalent -hsa:64167 up:B2R769 equivalent -hsa:64167 up:Q6P179 equivalent -hsa:64168 up:Q8N987 equivalent -hsa:64170 up:Q9H257 equivalent -hsa:641700 up:Q19T08 equivalent -hsa:64172 up:Q9H4B0 equivalent -hsa:64174 up:Q9H4A9 equivalent -hsa:64175 up:Q32P28 equivalent -hsa:6418 up:Q01105 equivalent -hsa:6418 up:Q5VXV3 equivalent -hsa:64180 up:A0A140VK16 equivalent -hsa:64180 up:Q9H4B8 equivalent -hsa:64184 up:P56851 equivalent -hsa:64184 up:W0UV31 equivalent -hsa:6419 up:Q53H47 equivalent -hsa:642 up:Q13867 equivalent -hsa:64207 up:Q9H1B7 equivalent -hsa:64208 up:Q9HBV1 equivalent -hsa:6421 up:A0A384N5Z8 equivalent -hsa:6421 up:P23246 equivalent -hsa:6421 up:Q86VG2 equivalent -hsa:64210 up:Q96T76 equivalent -hsa:64211 up:Q9H2C1 equivalent -hsa:64215 up:Q96KC8 equivalent -hsa:64216 up:Q9H5Q4 equivalent -hsa:64218 up:Q9H3S1 equivalent -hsa:64219 up:Q8NG27 equivalent -hsa:6422 up:Q8N474 equivalent -hsa:64220 up:B3KPB8 equivalent -hsa:64220 up:Q9BX79 equivalent -hsa:64221 up:Q96MS0 equivalent -hsa:64222 up:Q9H497 equivalent -hsa:64223 up:Q9BVC4 equivalent -hsa:64224 up:Q9BSE4 equivalent -hsa:64225 up:Q8NHH9 equivalent -hsa:642273 up:Q1W6H9 equivalent -hsa:6423 up:A0A140VJU3 equivalent -hsa:6423 up:B3KSM5 equivalent -hsa:6423 up:Q96HF1 equivalent -hsa:64231 up:Q9H2W1 equivalent -hsa:64232 up:Q9H3V2 equivalent -hsa:64236 up:Q96JY6 equivalent -hsa:6424 up:Q6FHJ7 equivalent -hsa:64240 up:Q9H222 equivalent -hsa:64241 up:Q9H221 equivalent -hsa:642446 up:A6NI03 equivalent -hsa:642475 up:A6NGR9 equivalent -hsa:6425 up:Q5T4F7 equivalent -hsa:642517 up:Q5VTM2 equivalent -hsa:642597 up:P0CW23 equivalent -hsa:6426 up:Q07955 equivalent -hsa:642612 up:P0CI26 equivalent -hsa:642623 up:P0CB47 equivalent -hsa:642636 up:Q9H4I0 equivalent -hsa:642658 up:Q7RTU7 equivalent -hsa:6427 up:Q01130 equivalent -hsa:6427 up:Q53FN0 equivalent -hsa:642778 up:F8WFD2 equivalent -hsa:642799 up:A0A0B4J2F6 equivalent -hsa:642799 up:Q9UND3 equivalent -hsa:6428 up:B2R6F3 equivalent -hsa:6428 up:P84103 equivalent -hsa:64282 up:Q8NDF8 equivalent -hsa:64283 up:Q8N1W1 equivalent -hsa:64284 up:Q9H0T7 equivalent -hsa:642843 up:A6NMK7 equivalent -hsa:64285 up:Q96CC6 equivalent -hsa:64288 up:B3KTA4 equivalent -hsa:64288 up:Q96LW9 equivalent -hsa:6429 up:Q08170 equivalent -hsa:642938 up:Q6ZSG2 equivalent -hsa:642968 up:P0C2L3 equivalent -hsa:642987 up:C9JQI7 equivalent -hsa:643 up:A0N0R2 equivalent -hsa:643 up:A8K647 equivalent -hsa:643 up:P32302 equivalent -hsa:643 up:Q2YD84 equivalent -hsa:6430 up:Q13243 equivalent -hsa:643008 up:Q71RC9 equivalent -hsa:643037 up:A0A1B0GVM6 equivalent -hsa:6431 up:Q13247 equivalent -hsa:643155 up:Q7Z3B0 equivalent -hsa:643161 up:B3EWG3 equivalent -hsa:643161 up:B3EWG5 equivalent -hsa:643161 up:B3EWG6 equivalent -hsa:64318 up:Q8WTT2 equivalent -hsa:64319 up:B3KTZ7 equivalent -hsa:64319 up:J3KNZ9 equivalent -hsa:64319 up:Q9HAH7 equivalent -hsa:6432 up:Q16629 equivalent -hsa:64320 up:Q96BH1 equivalent -hsa:64321 up:Q9H6I2 equivalent -hsa:643226 up:A6NFK2 equivalent -hsa:643236 up:A0PK05 equivalent -hsa:64324 up:Q96L73 equivalent -hsa:643246 up:A6NCE7 equivalent -hsa:64326 up:Q8NHY2 equivalent -hsa:64327 up:Q8WVP7 equivalent -hsa:64328 up:Q9C0E2 equivalent -hsa:6433 up:Q12872 equivalent -hsa:6433 up:Q8IV81 equivalent -hsa:643311 up:P0C2W7 equivalent -hsa:64332 up:Q9BYH8 equivalent -hsa:64333 up:Q9BRR9 equivalent -hsa:643338 up:A8K5M9 equivalent -hsa:643376 up:B2RXH4 equivalent -hsa:643382 up:P0C7T8 equivalent -hsa:643394 up:Q5DT21 equivalent -hsa:6434 up:P62995 equivalent -hsa:643414 up:Q5VXJ0 equivalent -hsa:643418 up:Q5VXI9 equivalent -hsa:64342 up:Q53T59 equivalent -hsa:64342 up:Q9H7U7 equivalent -hsa:64343 up:Q9H6S1 equivalent -hsa:64344 up:Q9Y2N7 equivalent -hsa:64359 up:Q6DKJ4 equivalent -hsa:643596 up:P0DH78 equivalent -hsa:643641 up:O60290 equivalent -hsa:643664 up:P0C7Q6 equivalent -hsa:643669 up:I3L3R5 equivalent -hsa:643677 up:Q8NDH2 equivalent -hsa:643699 up:F8WBI6 equivalent -hsa:643707 up:A6NEF3 equivalent -hsa:64374 up:A0A0S2Z6B4 equivalent -hsa:64374 up:Q9H173 equivalent -hsa:64375 up:Q9H2S9 equivalent -hsa:64376 up:Q9H5V7 equivalent -hsa:64377 up:Q9H2A9 equivalent -hsa:643803 up:Q3LI83 equivalent -hsa:643812 up:Q3LI81 equivalent -hsa:643834 up:P0DJD8 equivalent -hsa:643836 up:Q8NB50 equivalent -hsa:643847 up:A0A1S5UZ02 equivalent -hsa:643847 up:B7Z719 equivalent -hsa:643847 up:P0DJD7 equivalent -hsa:643853 up:Q6ZT21 equivalent -hsa:643854 up:A4FU28 equivalent -hsa:64386 up:Q9NPA2 equivalent -hsa:643866 up:Q6UW01 equivalent -hsa:64388 up:Q9H772 equivalent -hsa:6439 up:P07988 equivalent -hsa:643904 up:A6NCQ9 equivalent -hsa:64393 up:Q9HA38 equivalent -hsa:64395 up:Q53SE7 equivalent -hsa:64395 up:Q96IK5 equivalent -hsa:643965 up:A6NKF7 equivalent -hsa:64397 up:Q9H2Y7 equivalent -hsa:64398 up:Q658X5 equivalent -hsa:64398 up:Q8N3R9 equivalent -hsa:643988 up:F2Z333 equivalent -hsa:64399 up:Q96QV1 equivalent -hsa:644 up:A0A140VJF4 equivalent -hsa:644 up:P53004 equivalent -hsa:6440 up:A0A0S2Z4Q0 equivalent -hsa:6440 up:P11686 equivalent -hsa:64400 up:Q9H8T0 equivalent -hsa:644019 up:Q4V339 equivalent -hsa:64403 up:Q86UP0 equivalent -hsa:644041 up:Q68DL7 equivalent -hsa:64405 up:A8K0L9 equivalent -hsa:64405 up:Q9UJ99 equivalent -hsa:644054 up:B3EWG3 equivalent -hsa:644054 up:B3EWG5 equivalent -hsa:644054 up:B3EWG6 equivalent -hsa:64407 up:Q9NS28 equivalent -hsa:644070 up:A8MUP6 equivalent -hsa:64409 up:Q2L4S5 equivalent -hsa:64409 up:Q6IS24 equivalent -hsa:644096 up:A6NFY7 equivalent -hsa:6441 up:P35247 equivalent -hsa:64410 up:Q9H0H3 equivalent -hsa:644100 up:P0DKL9 equivalent -hsa:64411 up:Q05CH1 equivalent -hsa:64411 up:Q8WWN8 equivalent -hsa:64411 up:Q9H7C1 equivalent -hsa:64412 up:Q9H116 equivalent -hsa:644139 up:P0C851 equivalent -hsa:644150 up:A6NGB9 equivalent -hsa:644168 up:A6NNA5 equivalent -hsa:64417 up:Q0VDI3 equivalent -hsa:64418 up:Q9H0V1 equivalent -hsa:644186 up:A1L190 equivalent -hsa:64419 up:Q8NCE2 equivalent -hsa:6442 up:A0A0S2Z4Q1 equivalent -hsa:6442 up:Q16586 equivalent -hsa:64420 up:Q6UWL2 equivalent -hsa:64421 up:Q96SD1 equivalent -hsa:64422 up:Q9NT62 equivalent -hsa:64423 up:Q27J81 equivalent -hsa:64425 up:Q9GZS1 equivalent -hsa:64426 up:Q9H7L9 equivalent -hsa:64427 up:Q49AM3 equivalent -hsa:64428 up:Q9H6Q4 equivalent -hsa:64429 up:Q9H6R6 equivalent -hsa:6443 up:Q16585 equivalent -hsa:6443 up:Q5U0N0 equivalent -hsa:64430 up:Q63HM2 equivalent -hsa:64431 up:Q9GZN1 equivalent -hsa:64432 up:P82663 equivalent -hsa:64434 up:Q5C9Z4 equivalent -hsa:644353 up:P0CG32 equivalent -hsa:6444 up:Q92629 equivalent -hsa:644414 up:P59861 equivalent -hsa:64446 up:Q9GZS0 equivalent -hsa:6445 up:Q13326 equivalent -hsa:644524 up:Q9H2Z4 equivalent -hsa:644538 up:Q96HG1 equivalent -hsa:644591 up:P0DN37 equivalent -hsa:644596 up:P0DMW4 equivalent -hsa:644596 up:P0DMW5 equivalent -hsa:6446 up:O00141 equivalent -hsa:644672 up:C9JDP6 equivalent -hsa:6447 up:P05408 equivalent -hsa:64478 up:Q59FF8 equivalent -hsa:64478 up:Q96PZ7 equivalent -hsa:6448 up:P51688 equivalent -hsa:644815 up:A6ND36 equivalent -hsa:644844 up:A0A1L2EC20 equivalent -hsa:644844 up:C9JFL3 equivalent -hsa:644890 up:Q5JSS6 equivalent -hsa:6449 up:O43765 equivalent -hsa:644943 up:A6NK89 equivalent -hsa:644974 up:C9J202 equivalent -hsa:64499 up:A0A140VJT7 equivalent -hsa:64499 up:P20231 equivalent -hsa:644994 up:A6NLE4 equivalent -hsa:645 up:P30043 equivalent -hsa:645 up:V9HWI1 equivalent -hsa:6450 up:P55822 equivalent -hsa:645027 up:A8MZ36 equivalent -hsa:645037 up:Q13066 equivalent -hsa:645051 up:Q4V321 equivalent -hsa:64506 up:Q9BZB8 equivalent -hsa:645073 up:O76087 equivalent -hsa:645073 up:P0CL80 equivalent -hsa:645073 up:P0CL81 equivalent -hsa:645073 up:P0CL82 equivalent -hsa:6451 up:O75368 equivalent -hsa:6451 up:V9HW48 equivalent -hsa:645104 up:A0PK11 equivalent -hsa:645121 up:Q6ZMN8 equivalent -hsa:645142 up:F5H284 equivalent -hsa:64518 up:Q9BXF9 equivalent -hsa:645191 up:P0C6S8 equivalent -hsa:6452 up:A0A384N6E5 equivalent -hsa:6452 up:P78314 equivalent -hsa:6453 up:Q15811 equivalent -hsa:6453 up:Q6PD56 equivalent -hsa:645359 up:A6NGN4 equivalent -hsa:645359 up:H0Y7S4 equivalent -hsa:645369 up:A6NKL6 equivalent -hsa:645382 up:A0A0G2JMD5 equivalent -hsa:645402 up:A6NCW7 equivalent -hsa:645414 up:Q5SWL8 equivalent -hsa:645425 up:Q5VT98 equivalent -hsa:645426 up:A6NGB0 reverse -hsa:645432 up:A6NEK1 equivalent -hsa:6455 up:Q6FGM0 equivalent -hsa:6455 up:Q99961 equivalent -hsa:6456 up:Q7Z376 equivalent -hsa:6456 up:Q99962 equivalent -hsa:6457 up:Q99963 equivalent -hsa:645745 up:P0DM35 equivalent -hsa:64577 up:Q9H2A2 equivalent -hsa:64579 up:A8K0V5 equivalent -hsa:64579 up:Q9H3R1 equivalent -hsa:64581 up:Q68D78 equivalent -hsa:64581 up:Q9BXN2 equivalent -hsa:645811 up:A6NI56 equivalent -hsa:64582 up:Q8IZ08 equivalent -hsa:645832 up:Q9HB31 equivalent -hsa:645836 up:A6NCW0 equivalent -hsa:645864 up:A8MXT2 equivalent -hsa:64591 up:A6NKD2 equivalent -hsa:645961 up:B4DYI2 equivalent -hsa:645961 up:Q9Y4N5 equivalent -hsa:645974 up:Q5JQF8 equivalent -hsa:64598 up:O75425 equivalent -hsa:646 up:Q01954 equivalent -hsa:64600 up:Q9BZM2 equivalent -hsa:646000 up:P0C7Q5 equivalent -hsa:64601 up:Q9H269 equivalent -hsa:646019 up:A6NI87 equivalent -hsa:6461 up:Q15464 equivalent -hsa:646174 up:A8MZG2 equivalent -hsa:6462 up:B0FWH2 equivalent -hsa:6462 up:P04278 equivalent -hsa:646262 up:H0Y608 equivalent -hsa:6464 up:P29353 equivalent -hsa:64641 up:B2RNT0 equivalent -hsa:64641 up:B7Z934 equivalent -hsa:64641 up:Q9HAK2 equivalent -hsa:646424 up:P0C7L1 equivalent -hsa:64645 up:Q96MC6 equivalent -hsa:646457 up:A6NJJ6 equivalent -hsa:64648 up:Q9BXN6 equivalent -hsa:646480 up:Q0Z7S8 equivalent -hsa:646486 up:A6NFH5 equivalent -hsa:646498 up:H3BNL1 equivalent -hsa:64651 up:Q96S65 equivalent -hsa:646603 up:C9J302 equivalent -hsa:646625 up:A6NGE7 equivalent -hsa:646627 up:Q6UX82 equivalent -hsa:64663 up:Q9NY87 equivalent -hsa:646658 up:A6NDD5 equivalent -hsa:646754 up:A6NLI5 equivalent -hsa:646799 up:A6NP61 equivalent -hsa:6468 up:A0A384P5X9 equivalent -hsa:6468 up:P57775 equivalent -hsa:646817 up:P0DME0 equivalent -hsa:64682 up:Q9H1A4 equivalent -hsa:646851 up:F5H4B4 equivalent -hsa:646862 up:M0QZC1 equivalent -hsa:64689 up:B3KPY8 equivalent -hsa:64689 up:Q9BQQ3 equivalent -hsa:646892 up:A6NKC9 equivalent -hsa:6469 up:Q15465 equivalent -hsa:64693 up:Q8NEG8 equivalent -hsa:64693 up:Q96RT6 equivalent -hsa:646960 up:P0CW18 equivalent -hsa:646962 up:Q6UXD1 equivalent -hsa:64699 up:P57727 equivalent -hsa:6470 up:P34896 equivalent -hsa:647024 up:Q5T0Z8 equivalent -hsa:647042 up:A6NI86 equivalent -hsa:647060 up:B4DYR9 equivalent -hsa:64708 up:Q9H9Q2 equivalent -hsa:647087 up:E0CX11 equivalent -hsa:64710 up:Q9H1E3 equivalent -hsa:64711 up:Q96QI5 equivalent -hsa:647135 up:A0A286YEY3 equivalent -hsa:64714 up:Q13087 equivalent -hsa:647174 up:A8MV23 equivalent -hsa:64718 up:E9PDK2 equivalent -hsa:64718 up:Q9H9P5 equivalent -hsa:6472 up:P34897 equivalent -hsa:6472 up:Q5BJF5 equivalent -hsa:6472 up:V9HW06 equivalent -hsa:647219 up:M0R2M9 equivalent -hsa:647286 up:P0DJH9 equivalent -hsa:6473 up:O15266 equivalent -hsa:647309 up:A6NCL1 equivalent -hsa:647310 up:C9J3V5 equivalent -hsa:6474 up:O60902 equivalent -hsa:64743 up:Q9H1Z4 equivalent -hsa:64744 up:Q8WU79 equivalent -hsa:64745 up:A0A0S2Z5L8 equivalent -hsa:64745 up:Q9H7H0 equivalent -hsa:64746 up:Q9H3P7 equivalent -hsa:64747 up:Q9H3U5 equivalent -hsa:64748 up:Q96GM1 equivalent -hsa:64750 up:Q96DE7 equivalent -hsa:64750 up:Q9HAU4 equivalent -hsa:64753 up:Q96JN2 equivalent -hsa:64754 up:Q9H7B4 equivalent -hsa:64755 up:Q96GQ5 equivalent -hsa:64756 up:I3L448 equivalent -hsa:64756 up:Q5TC12 equivalent -hsa:64757 up:Q5VT66 equivalent -hsa:647589 up:E9PGG2 equivalent -hsa:64759 up:Q68CZ2 equivalent -hsa:6476 up:P14410 equivalent -hsa:64760 up:Q86V87 equivalent -hsa:64761 up:A4D1T0 equivalent -hsa:64761 up:Q9H0J9 equivalent -hsa:64762 up:Q9H706 equivalent -hsa:64763 up:Q6ZN55 equivalent -hsa:64763 up:Q71MF7 equivalent -hsa:64764 up:Q68D60 equivalent -hsa:64764 up:Q70SY1 equivalent -hsa:64766 up:A0A0S2Z5M0 equivalent -hsa:64766 up:Q96BU1 equivalent -hsa:64768 up:Q9H8X2 equivalent -hsa:64769 up:Q9HAF1 equivalent -hsa:6477 up:Q8IUQ4 equivalent -hsa:64770 up:Q49A88 equivalent -hsa:64771 up:Q9H6K1 equivalent -hsa:64772 up:Q8NFI3 equivalent -hsa:64773 up:Q9H1Q7 equivalent -hsa:64776 up:Q9H5F2 equivalent -hsa:64777 up:B3KSG5 equivalent -hsa:64777 up:Q96G75 equivalent -hsa:64778 up:Q53EP0 equivalent -hsa:64779 up:B4DN17 equivalent -hsa:64779 up:Q2M296 equivalent -hsa:6478 up:O43255 equivalent -hsa:64780 up:Q8TDZ2 equivalent -hsa:64781 up:Q8TCT0 equivalent -hsa:64782 up:Q8WTP8 equivalent -hsa:64783 up:Q96T37 equivalent -hsa:64784 up:Q6UUV7 equivalent -hsa:64784 up:Q8TEF4 equivalent -hsa:64785 up:A0A0S2Z5L0 equivalent -hsa:64785 up:Q9BRX5 equivalent -hsa:64786 up:Q8TC07 equivalent -hsa:64787 up:Q9H6S3 equivalent -hsa:64788 up:Q96S06 equivalent -hsa:64789 up:Q9H790 equivalent -hsa:64792 up:Q9H7X7 equivalent -hsa:64793 up:Q6P2H3 equivalent -hsa:64794 up:Q9H8H2 equivalent -hsa:64795 up:Q9H871 equivalent -hsa:64798 up:Q8TB45 equivalent -hsa:64799 up:Q86VS3 equivalent -hsa:648 up:P35226 equivalent -hsa:6480 up:P15907 equivalent -hsa:64800 up:Q5THR3 equivalent -hsa:64801 up:Q9H2C2 equivalent -hsa:64802 up:Q9HAN9 equivalent -hsa:64805 up:A8K7T1 equivalent -hsa:64805 up:Q9H244 equivalent -hsa:64806 up:Q9H293 equivalent -hsa:64816 up:Q9HB55 equivalent -hsa:6482 up:Q11201 equivalent -hsa:6483 up:B3KXG9 equivalent -hsa:6483 up:Q16842 equivalent -hsa:64834 up:Q9BW60 equivalent -hsa:64837 up:Q9H0B6 equivalent -hsa:64838 up:Q9H6D8 equivalent -hsa:64839 up:Q9UF56 equivalent -hsa:6484 up:Q11206 equivalent -hsa:64840 up:Q9H237 equivalent -hsa:64841 up:Q96EK6 equivalent -hsa:64843 up:Q96A47 equivalent -hsa:64844 up:B7ZAR7 equivalent -hsa:64844 up:Q9H992 equivalent -hsa:64847 up:Q8TB22 equivalent -hsa:64848 up:Q9H6S0 equivalent -hsa:64849 up:Q8WWT9 equivalent -hsa:64850 up:Q8TBG4 equivalent -hsa:64852 up:A0A0A8K9B1 equivalent -hsa:64852 up:F5H0R1 equivalent -hsa:64852 up:Q9H6E5 equivalent -hsa:64853 up:Q96BJ3 equivalent -hsa:64854 up:P62068 equivalent -hsa:64855 up:Q96TA1 equivalent -hsa:64856 up:Q6PCB0 equivalent -hsa:64857 up:Q9H7P9 equivalent -hsa:64858 up:Q9H816 equivalent -hsa:64859 up:Q96AH0 equivalent -hsa:64860 up:Q6P1M9 equivalent -hsa:64863 up:Q8N3J2 equivalent -hsa:64864 up:Q2KHR2 equivalent -hsa:64866 up:Q9H5V8 equivalent -hsa:6487 up:Q11203 equivalent -hsa:648791 up:B7ZBB8 equivalent -hsa:64881 up:B3KSZ7 equivalent -hsa:64881 up:Q8N6Y1 equivalent -hsa:6489 up:Q92185 equivalent -hsa:64895 up:Q9BWT3 equivalent -hsa:64897 up:B4DWJ9 equivalent -hsa:64897 up:F5H7W8 reverse -hsa:64897 up:Q96C57 equivalent -hsa:649 up:P13497 equivalent -hsa:6490 up:P40967 equivalent -hsa:64900 up:Q9BQK8 equivalent -hsa:64901 up:Q546R4 equivalent -hsa:64901 up:Q9H2T7 equivalent -hsa:64902 up:Q9BYV1 equivalent -hsa:6491 up:Q15468 equivalent -hsa:64919 up:L8B7P7 equivalent -hsa:64919 up:Q9C0K0 equivalent -hsa:6492 up:P81133 equivalent -hsa:64921 up:Q8WZ77 equivalent -hsa:64921 up:Q96PB1 equivalent -hsa:64922 up:Q9H756 equivalent -hsa:64924 up:Q8TAD4 equivalent -hsa:64925 up:Q8IV32 equivalent -hsa:64926 up:Q86YV0 equivalent -hsa:64927 up:Q5W5X9 equivalent -hsa:64928 up:Q6P1L8 equivalent -hsa:6493 up:Q14190 equivalent -hsa:6494 up:Q96FS4 equivalent -hsa:64943 up:Q9H857 equivalent -hsa:64946 up:A0A0S2Z5T0 equivalent -hsa:64946 up:Q9H3R5 equivalent -hsa:64949 up:Q9BYN8 equivalent -hsa:6495 up:Q15475 equivalent -hsa:64951 up:Q96EL2 equivalent -hsa:6496 up:O95343 equivalent -hsa:64960 up:P82914 equivalent -hsa:64963 up:P82912 equivalent -hsa:64965 up:P82933 equivalent -hsa:64968 up:P82932 equivalent -hsa:64969 up:P82675 equivalent -hsa:6497 up:P12755 equivalent -hsa:64975 up:Q8IXM3 equivalent -hsa:64976 up:Q9NQ50 equivalent -hsa:64978 up:Q96DV4 equivalent -hsa:64979 up:Q9P0J6 equivalent -hsa:6498 up:P12757 equivalent -hsa:64981 up:Q9BQ48 equivalent -hsa:64983 up:A4D1V4 equivalent -hsa:64983 up:Q9BYC8 equivalent -hsa:6499 up:A0A1U9X8J1 equivalent -hsa:6499 up:Q15477 equivalent -hsa:650 up:C8C060 equivalent -hsa:650 up:P12643 equivalent -hsa:6500 up:P63208 equivalent -hsa:65003 up:Q9Y3B7 equivalent -hsa:65005 up:Q9BYD2 equivalent -hsa:65008 up:Q9BYD6 equivalent -hsa:65009 up:A0A0S2Z5R7 equivalent -hsa:65009 up:Q9ULP0 equivalent -hsa:65010 up:Q9BXS9 equivalent -hsa:65010 up:Q9Y3Y1 equivalent -hsa:65018 up:Q9BXM7 equivalent -hsa:6502 up:Q13309 equivalent -hsa:6503 up:Q13239 equivalent -hsa:6504 up:Q13291 equivalent -hsa:6505 up:P43005 equivalent -hsa:65055 up:Q9H902 equivalent -hsa:65056 up:Q86WP2 equivalent -hsa:65057 up:Q96AP0 equivalent -hsa:65059 up:Q70E73 equivalent -hsa:6506 up:P43004 equivalent -hsa:65061 up:Q96Q40 equivalent -hsa:65062 up:Q96Q45 equivalent -hsa:65065 up:Q6ZS30 equivalent -hsa:6507 up:P43003 equivalent -hsa:6507 up:Q8N169 equivalent -hsa:65078 up:Q9BZR6 equivalent -hsa:6508 up:P48751 equivalent -hsa:65080 up:Q9H9J2 equivalent -hsa:65082 up:Q96AX1 equivalent -hsa:65083 up:Q9H6R4 equivalent -hsa:65084 up:Q86UB9 equivalent -hsa:6509 up:P43007 equivalent -hsa:65094 up:Q9H9V9 equivalent -hsa:65095 up:A0A494C108 equivalent -hsa:65095 up:Q8N9T8 equivalent -hsa:651 up:P12645 equivalent -hsa:6510 up:Q15758 equivalent -hsa:6510 up:Q59ES3 equivalent -hsa:65108 up:P49006 equivalent -hsa:65109 up:Q9BZI7 equivalent -hsa:6511 up:B7Z7Q5 equivalent -hsa:6511 up:P48664 equivalent -hsa:65110 up:Q9H1J1 equivalent -hsa:65117 up:Q7L4I2 equivalent -hsa:6512 up:F1T0D3 equivalent -hsa:6512 up:O00341 equivalent -hsa:65121 up:B7ZM17 equivalent -hsa:65121 up:O95521 equivalent -hsa:65122 up:O60811 equivalent -hsa:65123 up:Q68E01 equivalent -hsa:65124 up:Q53LP3 equivalent -hsa:65125 up:A5D8Z4 equivalent -hsa:65125 up:Q9H4A3 equivalent -hsa:6513 up:P11166 equivalent -hsa:6513 up:Q59GX2 equivalent -hsa:6514 up:P11168 equivalent -hsa:6515 up:P11169 equivalent -hsa:6517 up:P14672 equivalent -hsa:651746 up:A6NCL7 equivalent -hsa:6518 up:P22732 equivalent -hsa:6519 up:A0A0S2Z4E1 equivalent -hsa:6519 up:Q07837 equivalent -hsa:652 up:P12644 equivalent -hsa:652 up:Q53XC5 equivalent -hsa:6520 up:P08195 equivalent -hsa:6521 up:P02730 equivalent -hsa:65217 up:Q96QU1 equivalent -hsa:6522 up:P04920 equivalent -hsa:6522 up:Q59GF1 equivalent -hsa:65220 up:O95544 equivalent -hsa:65220 up:Q6PJ22 equivalent -hsa:6523 up:P13866 equivalent -hsa:6524 up:P31639 equivalent -hsa:65243 up:Q9UJL9 equivalent -hsa:65244 up:Q86XZ4 equivalent -hsa:65249 up:Q9H7M6 equivalent -hsa:65249 up:Q9HA55 equivalent -hsa:6525 up:P53814 equivalent -hsa:65250 up:Q9H799 equivalent -hsa:65251 up:Q9BS31 equivalent -hsa:65258 up:Q53F39 equivalent -hsa:6526 up:P53794 equivalent -hsa:65260 up:Q96BR5 equivalent -hsa:65263 up:A0A0A0MQS1 equivalent -hsa:65263 up:Q53H96 equivalent -hsa:65264 up:Q9H832 equivalent -hsa:65265 up:Q9H7E9 equivalent -hsa:65266 up:Q96J92 equivalent -hsa:65267 up:Q9BYP7 equivalent -hsa:65268 up:Q9Y3S1 equivalent -hsa:6527 up:Q9NY91 equivalent -hsa:6528 up:Q92911 equivalent -hsa:6529 up:P30531 equivalent -hsa:652968 up:Q8WTX7 equivalent -hsa:652991 up:Q2VWA4 equivalent -hsa:653 up:A8K694 equivalent -hsa:653 up:M9VUD0 equivalent -hsa:653 up:P22003 equivalent -hsa:6530 up:P23975 equivalent -hsa:653067 up:Q9HD64 equivalent -hsa:653073 up:A6NMD2 equivalent -hsa:6531 up:Q01959 equivalent -hsa:653121 up:Q96BR9 equivalent -hsa:653125 up:D6RF30 equivalent -hsa:653140 up:Q86W67 equivalent -hsa:653145 up:P13928 equivalent -hsa:653149 up:Q5VWK0 equivalent -hsa:653192 up:A6NCK2 equivalent -hsa:6532 up:B2R7Y7 equivalent -hsa:6532 up:P31645 equivalent -hsa:653220 up:Q9HD64 equivalent -hsa:653240 up:Q9BYQ6 equivalent -hsa:653247 up:P02812 equivalent -hsa:653269 up:P0CG38 equivalent -hsa:653275 up:P0CG36 equivalent -hsa:653282 up:Q5JQC4 equivalent -hsa:6533 up:B4E140 equivalent -hsa:6533 up:P31641 equivalent -hsa:6533 up:Q59GD7 equivalent -hsa:653308 up:P0C7U1 equivalent -hsa:653319 up:Q68EN5 equivalent -hsa:653333 up:P0C5J1 equivalent -hsa:653361 up:P14598 equivalent -hsa:6534 up:Q99884 equivalent -hsa:653404 up:Q3SYB3 equivalent -hsa:653423 up:A0A0A0MR37 equivalent -hsa:653423 up:Q6PDA7 equivalent -hsa:653427 up:Q5VV16 equivalent -hsa:653437 up:A6NM10 equivalent -hsa:653437 up:Q8IUS6 equivalent -hsa:653464 up:P0DJJ0 equivalent -hsa:653486 up:P0DMR2 equivalent -hsa:653486 up:Q8TD33 equivalent -hsa:653489 up:A6NKT7 equivalent -hsa:653499 up:P47929 equivalent -hsa:6535 up:P48029 equivalent -hsa:6535 up:X5D9C4 equivalent -hsa:653505 up:Q9Y536 equivalent -hsa:653509 up:Q8IWL2 equivalent -hsa:653519 up:B7ZAQ6 equivalent -hsa:653519 up:P0CG08 equivalent -hsa:653519 up:X5D7G6 equivalent -hsa:653550 up:Q9ULZ0 equivalent -hsa:653567 up:Q5W0B7 equivalent -hsa:653583 up:Q6NSJ2 equivalent -hsa:653583 up:Q96HZ0 equivalent -hsa:653598 up:A0A0B4J2A2 equivalent -hsa:6536 up:P48067 equivalent -hsa:653604 up:Q71DI3 equivalent -hsa:653606 up:A3QJZ6 equivalent -hsa:653619 up:P0DUQ1 equivalent -hsa:653619 up:P0DUQ2 equivalent -hsa:653641 up:A6NDK9 equivalent -hsa:653643 up:P0CG33 equivalent -hsa:653656 up:A6NDZ8 equivalent -hsa:653657 up:A6NE82 equivalent -hsa:653689 up:G9J6Q5 equivalent -hsa:653689 up:P0CG30 equivalent -hsa:653720 up:H3BSY2 equivalent -hsa:653781 up:P0CG39 equivalent -hsa:653784 up:Q6P582 equivalent -hsa:6538 up:P48066 equivalent -hsa:653808 up:O60844 equivalent -hsa:653820 up:Q86X60 equivalent -hsa:653857 up:Q9C0K3 equivalent -hsa:6539 up:P48065 equivalent -hsa:654 up:B4DUF7 equivalent -hsa:654 up:P22004 equivalent -hsa:654 up:Q4VBA3 equivalent -hsa:6540 up:Q9NSD5 equivalent -hsa:6541 up:P30825 equivalent -hsa:6542 up:P52569 equivalent -hsa:654231 up:P0CE72 equivalent -hsa:654254 up:B4DXR9 equivalent -hsa:6543 up:Q9UPR5 equivalent -hsa:654346 up:Q6DKI2 equivalent -hsa:654364 up:P22392 equivalent -hsa:654429 up:Q8N967 equivalent -hsa:654463 up:Q2WGJ9 equivalent -hsa:654483 up:A0A499FJE1 equivalent -hsa:654483 up:Q9H3K6 equivalent -hsa:6545 up:O43246 equivalent -hsa:654502 up:Q1A5X6 equivalent -hsa:6546 up:P32418 equivalent -hsa:6547 up:P57103 equivalent -hsa:654790 up:A6NKN8 equivalent -hsa:6548 up:B2RAH2 equivalent -hsa:6548 up:P19634 equivalent -hsa:6549 up:Q9UBY0 equivalent -hsa:655 up:A8K571 equivalent -hsa:655 up:P18075 equivalent -hsa:6550 up:P48764 equivalent -hsa:6553 up:Q14940 equivalent -hsa:6553 up:Q9NSW9 equivalent -hsa:6554 up:B2RA41 equivalent -hsa:6554 up:Q14973 equivalent -hsa:6555 up:Q12908 equivalent -hsa:6556 up:P49279 equivalent -hsa:6557 up:Q13621 equivalent -hsa:6557 up:Q8IUN5 equivalent -hsa:6558 up:P55011 equivalent -hsa:6558 up:Q53ZR1 equivalent -hsa:6559 up:P55017 equivalent -hsa:656 up:P34820 equivalent -hsa:6560 up:Q9UP95 equivalent -hsa:6561 up:A4D0X1 equivalent -hsa:6561 up:Q9BZW2 equivalent -hsa:6563 up:G0W2N5 equivalent -hsa:6563 up:Q13336 equivalent -hsa:6564 up:B2CQT6 equivalent -hsa:6564 up:P46059 equivalent -hsa:6565 up:Q16348 equivalent -hsa:6566 up:B4DKS0 equivalent -hsa:6566 up:P53985 equivalent -hsa:6567 up:P36021 equivalent -hsa:6568 up:Q14916 equivalent -hsa:6569 up:Q06495 equivalent -hsa:6569 up:Q7Z725 equivalent -hsa:6569 up:Q86VN6 equivalent -hsa:657 up:P36894 equivalent -hsa:6570 up:P54219 equivalent -hsa:6570 up:Q96GL6 equivalent -hsa:6571 up:Q05940 equivalent -hsa:6572 up:Q16572 equivalent -hsa:6573 up:P41440 equivalent -hsa:6574 up:A7LNJ1 equivalent -hsa:6574 up:Q8WUM9 equivalent -hsa:6575 up:A0A384MR38 equivalent -hsa:6575 up:Q08357 equivalent -hsa:6576 up:P53007 equivalent -hsa:6578 up:Q92959 equivalent -hsa:6579 up:P46721 equivalent -hsa:658 up:O00238 equivalent -hsa:6580 up:O15245 equivalent -hsa:6581 up:O75751 equivalent -hsa:6582 up:O15244 equivalent -hsa:6583 up:Q9H015 equivalent -hsa:6584 up:O76082 equivalent -hsa:6585 up:A6H8V1 equivalent -hsa:6585 up:O75093 equivalent -hsa:6586 up:O75094 equivalent -hsa:6588 up:A0A158RFT9 equivalent -hsa:6588 up:O00631 equivalent -hsa:659 up:Q13873 equivalent -hsa:6590 up:P03973 equivalent -hsa:6591 up:O43623 equivalent -hsa:6594 up:P28370 equivalent -hsa:6595 up:B4DSC8 equivalent -hsa:6595 up:P51531 equivalent -hsa:6595 up:Q8N9Q1 equivalent -hsa:6596 up:A0A0C4DGA6 reverse -hsa:6596 up:A8K5B6 equivalent -hsa:6596 up:Q14527 equivalent -hsa:6597 up:A7E2E1 equivalent -hsa:6597 up:P51532 equivalent -hsa:65975 up:Q9BYT3 equivalent -hsa:65977 up:Q9HB20 equivalent -hsa:65979 up:Q8IZ21 equivalent -hsa:6598 up:Q12824 equivalent -hsa:65980 up:Q9H8M2 equivalent -hsa:65981 up:Q6IMN6 equivalent -hsa:65982 up:Q8TBC5 equivalent -hsa:65983 up:Q96HH9 equivalent -hsa:65985 up:Q86V21 equivalent -hsa:65986 up:Q96DT7 equivalent -hsa:65987 up:Q9BQ13 equivalent -hsa:65988 up:B7ZAD9 equivalent -hsa:65988 up:Q9BV97 equivalent -hsa:65989 up:Q6UY11 equivalent -hsa:6599 up:Q58EY4 equivalent -hsa:6599 up:Q92922 equivalent -hsa:65990 up:Q9BQD7 equivalent -hsa:65991 up:Q9BWH2 equivalent -hsa:65992 up:Q96HY6 equivalent -hsa:65993 up:P82930 equivalent -hsa:65997 up:Q9BPW5 equivalent -hsa:65998 up:C9JLR9 equivalent -hsa:65999 up:A0A090N7W5 equivalent -hsa:65999 up:Q9BV99 equivalent -hsa:660 up:P51813 equivalent -hsa:66000 up:Q6UXF1 equivalent -hsa:66002 up:Q9HCS2 equivalent -hsa:66004 up:P0DP58 equivalent -hsa:66005 up:Q9BWS9 equivalent -hsa:66008 up:O60296 equivalent -hsa:6601 up:Q8TAQ2 equivalent -hsa:6602 up:Q96GM5 equivalent -hsa:6603 up:Q92925 equivalent -hsa:66035 up:Q6PJ99 equivalent -hsa:66035 up:Q9BYW1 equivalent -hsa:66036 up:Q96QG7 equivalent -hsa:66037 up:Q8N9W6 equivalent -hsa:6604 up:Q6STE5 equivalent -hsa:6605 up:Q969G3 equivalent -hsa:6606 up:Q16637 equivalent -hsa:6607 up:Q16637 equivalent -hsa:6608 up:Q99835 equivalent -hsa:6609 up:P17405 equivalent -hsa:6609 up:Q59EN6 equivalent -hsa:661 up:P05423 equivalent -hsa:6610 up:O60906 equivalent -hsa:6611 up:P52788 equivalent -hsa:6612 up:P55854 equivalent -hsa:6613 up:P61956 equivalent -hsa:6614 up:Q9BZZ2 equivalent -hsa:6615 up:O95863 equivalent -hsa:6616 up:P60880 equivalent -hsa:6617 up:B2RC42 equivalent -hsa:6617 up:Q16533 equivalent -hsa:6618 up:Q13487 equivalent -hsa:6619 up:Q92966 equivalent -hsa:662 up:Q12981 equivalent -hsa:6620 up:Q16143 equivalent -hsa:6621 up:Q5SXM2 equivalent -hsa:6622 up:P37840 equivalent -hsa:6623 up:O76070 equivalent -hsa:6623 up:Q6FHG5 equivalent -hsa:6624 up:A0A384MEG1 equivalent -hsa:6624 up:B3KTA3 equivalent -hsa:6624 up:Q16658 equivalent -hsa:6625 up:P08621 equivalent -hsa:6626 up:P09012 equivalent -hsa:6627 up:P09661 equivalent -hsa:6628 up:P14678 equivalent -hsa:6629 up:P08579 equivalent -hsa:663 up:Q12982 equivalent -hsa:6631 up:P09234 equivalent -hsa:6631 up:Q5TAL4 equivalent -hsa:6632 up:P62314 equivalent -hsa:6633 up:P62316 equivalent -hsa:6634 up:P62318 equivalent -hsa:6635 up:P62304 equivalent -hsa:6636 up:P62306 equivalent -hsa:6637 up:P62308 equivalent -hsa:6638 up:P63162 equivalent -hsa:6638 up:X5DP00 equivalent -hsa:664 up:Q12983 equivalent -hsa:664 up:Q6NVY4 equivalent -hsa:6640 up:Q13424 equivalent -hsa:6641 up:Q13884 equivalent -hsa:6642 up:Q13596 equivalent -hsa:6643 up:O60749 equivalent -hsa:6645 up:Q13425 equivalent -hsa:6646 up:P35610 equivalent -hsa:6647 up:P00441 equivalent -hsa:6647 up:V9HWC9 equivalent -hsa:6648 up:A0A384NL29 equivalent -hsa:6648 up:P04179 equivalent -hsa:6649 up:A0A140VJU8 equivalent -hsa:6649 up:P08294 equivalent -hsa:665 up:O60238 equivalent -hsa:665 up:Q6IBV1 equivalent -hsa:6650 up:O75808 equivalent -hsa:6651 up:P18583 equivalent -hsa:6652 up:Q00796 equivalent -hsa:6653 up:Q92673 equivalent -hsa:6654 up:Q07889 equivalent -hsa:6655 up:Q07890 equivalent -hsa:6656 up:O00570 equivalent -hsa:6657 up:A0A0U3FYV6 equivalent -hsa:6657 up:P48431 equivalent -hsa:6658 up:P41225 equivalent -hsa:6659 up:Q06945 equivalent -hsa:666 up:A0A024R4A8 equivalent -hsa:666 up:Q9UMX3 equivalent -hsa:6660 up:P35711 equivalent -hsa:6662 up:P48436 equivalent -hsa:6663 up:P56693 equivalent -hsa:6664 up:P35716 equivalent -hsa:6665 up:O60248 equivalent -hsa:6666 up:O15370 equivalent -hsa:6667 up:P08047 equivalent -hsa:6668 up:Q02086 equivalent -hsa:667 up:B4DSS9 equivalent -hsa:667 up:Q03001 equivalent -hsa:667 up:Q6P0N6 equivalent -hsa:6670 up:Q02447 equivalent -hsa:6670 up:Q86TP0 equivalent -hsa:6671 up:Q02446 equivalent -hsa:6672 up:P23497 equivalent -hsa:6674 up:Q07617 equivalent -hsa:6675 up:Q16222 equivalent -hsa:6676 up:Q9NPE6 equivalent -hsa:6677 up:P38567 equivalent -hsa:6677 up:Q5D1J4 equivalent -hsa:6678 up:P09486 equivalent -hsa:668 up:P58012 equivalent -hsa:668 up:Q53ZD3 equivalent -hsa:6683 up:E5KRP5 equivalent -hsa:6683 up:Q9UBP0 equivalent -hsa:6687 up:Q9UQ90 equivalent -hsa:6688 up:P17947 equivalent -hsa:6689 up:Q01892 equivalent -hsa:669 up:A0A024R782 equivalent -hsa:669 up:P07738 equivalent -hsa:6690 up:P00995 equivalent -hsa:6691 up:P20155 equivalent -hsa:6692 up:O43278 equivalent -hsa:6693 up:P16150 equivalent -hsa:6694 up:Q13103 equivalent -hsa:6695 up:Q08629 equivalent -hsa:6696 up:P10451 equivalent -hsa:6697 up:P35270 equivalent -hsa:6698 up:P35321 equivalent -hsa:6699 up:P22528 equivalent -hsa:670 up:Q49AI2 equivalent -hsa:670 up:Q86WA6 equivalent -hsa:6700 up:P35326 equivalent -hsa:6701 up:P35325 equivalent -hsa:6703 up:P22532 equivalent -hsa:6704 up:P22531 equivalent -hsa:6705 up:Q96RM1 equivalent -hsa:6706 up:Q9BYE4 equivalent -hsa:6707 up:Q9UBC9 equivalent -hsa:6708 up:P02549 equivalent -hsa:6709 up:Q13813 equivalent -hsa:671 up:P17213 equivalent -hsa:6710 up:P11277 equivalent -hsa:6711 up:B2ZZ89 equivalent -hsa:6711 up:Q01082 equivalent -hsa:6712 up:O15020 equivalent -hsa:6713 up:Q14534 equivalent -hsa:6713 up:Q5HYI4 equivalent -hsa:6714 up:P12931 equivalent -hsa:6715 up:P18405 equivalent -hsa:6716 up:P31213 equivalent -hsa:6717 up:B4DHQ6 equivalent -hsa:6717 up:P30626 equivalent -hsa:6718 up:P51857 equivalent -hsa:672 up:P38398 equivalent -hsa:6720 up:P36956 equivalent -hsa:6721 up:Q12772 equivalent -hsa:6722 up:P11831 equivalent -hsa:6723 up:P19623 equivalent -hsa:6725 up:Q9H3Y6 equivalent -hsa:6726 up:P49458 equivalent -hsa:6727 up:P37108 equivalent -hsa:6728 up:P09132 equivalent -hsa:6729 up:P61011 equivalent -hsa:673 up:P15056 equivalent -hsa:6730 up:Q9UHB9 equivalent -hsa:6731 up:O76094 equivalent -hsa:6731 up:V9HWK0 equivalent -hsa:6732 up:Q96SB4 equivalent -hsa:6733 up:P78362 equivalent -hsa:6734 up:P08240 equivalent -hsa:6736 up:A7WPU8 equivalent -hsa:6736 up:Q05066 equivalent -hsa:6737 up:P19474 equivalent -hsa:6738 up:P10155 equivalent -hsa:6741 up:P05455 equivalent -hsa:6742 up:A4D1U3 equivalent -hsa:6742 up:Q04837 equivalent -hsa:6744 up:P28290 equivalent -hsa:6745 up:P43307 equivalent -hsa:6746 up:P43308 equivalent -hsa:6747 up:Q9UNL2 equivalent -hsa:6748 up:P51571 equivalent -hsa:6749 up:Q08945 equivalent -hsa:675 up:P51587 equivalent -hsa:6750 up:P61278 equivalent -hsa:6751 up:P30872 equivalent -hsa:6751 up:Q86SW9 equivalent -hsa:6752 up:P30874 equivalent -hsa:6753 up:P32745 equivalent -hsa:6754 up:P31391 equivalent -hsa:6755 up:P35346 equivalent -hsa:6756 up:Q16384 equivalent -hsa:6757 up:Q16385 equivalent -hsa:6758 up:O60225 equivalent -hsa:6759 up:O60224 equivalent -hsa:676 up:Q58F21 equivalent -hsa:6760 up:Q15532 equivalent -hsa:6764 up:P78524 equivalent -hsa:6767 up:A0A140VKA6 equivalent -hsa:6767 up:P50502 equivalent -hsa:6767 up:Q0IJ56 equivalent -hsa:6768 up:Q9Y5Y6 equivalent -hsa:6769 up:Q8WUK8 equivalent -hsa:6769 up:Q99469 equivalent -hsa:677 up:B3KNA8 equivalent -hsa:677 up:Q07352 equivalent -hsa:6770 up:P49675 equivalent -hsa:6770 up:Q6IBK0 equivalent -hsa:6772 up:P42224 equivalent -hsa:6773 up:P52630 equivalent -hsa:6773 up:R9QE65 equivalent -hsa:6774 up:P40763 equivalent -hsa:6775 up:Q14765 equivalent -hsa:6776 up:A0A384N5W4 equivalent -hsa:6776 up:A8K6I5 equivalent -hsa:6776 up:P42229 equivalent -hsa:6776 up:Q59GY7 equivalent -hsa:6777 up:P51692 equivalent -hsa:6778 up:P42226 equivalent -hsa:6779 up:P02808 equivalent -hsa:678 up:P47974 equivalent -hsa:6780 up:B3KRE0 equivalent -hsa:6780 up:O95793 equivalent -hsa:6780 up:Q59F99 equivalent -hsa:6781 up:P52823 equivalent -hsa:6782 up:A0A140VK72 equivalent -hsa:6782 up:P48723 equivalent -hsa:6783 up:P49888 equivalent -hsa:6783 up:Q53X91 equivalent -hsa:6785 up:Q9GZR5 equivalent -hsa:6786 up:Q13586 equivalent -hsa:6787 up:P51957 equivalent -hsa:6787 up:Q05DF6 equivalent -hsa:6788 up:A0A384MR07 equivalent -hsa:6788 up:Q13188 equivalent -hsa:6789 up:Q13043 equivalent -hsa:6790 up:O14965 equivalent -hsa:6792 up:O76039 equivalent -hsa:6793 up:O94804 equivalent -hsa:6794 up:A0A0S2Z4D1 equivalent -hsa:6794 up:Q15831 equivalent -hsa:6795 up:Q9UQB9 equivalent -hsa:6799 up:P50226 equivalent -hsa:680 up:P32247 equivalent -hsa:6801 up:O43815 equivalent -hsa:6804 up:Q16623 equivalent -hsa:6804 up:Q75ME0 equivalent -hsa:6809 up:Q13277 equivalent -hsa:6809 up:Q53YE2 equivalent -hsa:6810 up:Q12846 equivalent -hsa:6811 up:Q13190 equivalent -hsa:6812 up:P61764 equivalent -hsa:6813 up:Q15833 equivalent -hsa:6813 up:Q53GF4 equivalent -hsa:6814 up:O00186 equivalent -hsa:6815 up:Q8WUJ0 equivalent -hsa:6817 up:P50225 equivalent -hsa:6818 up:P0DMM9 equivalent -hsa:6818 up:P0DMN0 equivalent -hsa:6818 up:Q1ET61 equivalent -hsa:6819 up:O00338 equivalent -hsa:682 up:P35613 equivalent -hsa:6820 up:O00204 equivalent -hsa:6821 up:P51687 equivalent -hsa:6822 up:A8K015 equivalent -hsa:6822 up:Q06520 equivalent -hsa:6827 up:P63272 equivalent -hsa:6829 up:O00267 equivalent -hsa:683 up:Q10588 equivalent -hsa:6830 up:Q7KZ85 equivalent -hsa:6832 up:Q8IYB8 equivalent -hsa:6833 up:Q09428 equivalent -hsa:6834 up:E5KRX5 equivalent -hsa:6834 up:Q15526 equivalent -hsa:6835 up:Q15527 equivalent -hsa:6836 up:O15260 equivalent -hsa:6837 up:Q15528 equivalent -hsa:6838 up:O75683 equivalent -hsa:6839 up:O43463 equivalent -hsa:684 up:A0A024R7H5 equivalent -hsa:684 up:Q10589 equivalent -hsa:6840 up:O95425 equivalent -hsa:6840 up:Q569J5 equivalent -hsa:6843 up:P23763 equivalent -hsa:6844 up:P63027 equivalent -hsa:6845 up:P51809 equivalent -hsa:6846 up:Q9UBD3 equivalent -hsa:6847 up:A0A024R0I2 equivalent -hsa:6847 up:B7ZLS9 equivalent -hsa:6847 up:Q15431 equivalent -hsa:685 up:A0A0S2Z437 equivalent -hsa:685 up:P35070 equivalent -hsa:6850 up:P43405 equivalent -hsa:6853 up:P17600 equivalent -hsa:6854 up:B3KRB3 equivalent -hsa:6854 up:Q86VA8 equivalent -hsa:6854 up:Q92777 equivalent -hsa:6855 up:P08247 equivalent -hsa:6856 up:A4D0R1 equivalent -hsa:6856 up:Q16563 equivalent -hsa:6857 up:P21579 equivalent -hsa:686 up:P43251 equivalent -hsa:6860 up:Q9H2B2 equivalent -hsa:6861 up:O00445 equivalent -hsa:6862 up:O15178 equivalent -hsa:6863 up:P20366 equivalent -hsa:6865 up:P21452 equivalent -hsa:6866 up:Q9UHF0 equivalent -hsa:6867 up:O75410 equivalent -hsa:6868 up:B2RNB2 equivalent -hsa:6868 up:P78536 equivalent -hsa:6869 up:P25103 equivalent -hsa:687 up:Q13886 equivalent -hsa:6870 up:P29371 equivalent -hsa:6871 up:A0A024R0Y4 equivalent -hsa:6871 up:O75478 equivalent -hsa:6872 up:P21675 equivalent -hsa:6873 up:B3KMD8 equivalent -hsa:6873 up:Q6P1X5 equivalent -hsa:6874 up:O00268 equivalent -hsa:6875 up:Q92750 equivalent -hsa:6876 up:Q01995 equivalent -hsa:6876 up:Q5U0D2 equivalent -hsa:6877 up:Q15542 equivalent -hsa:6878 up:P49848 equivalent -hsa:6879 up:Q15545 equivalent -hsa:688 up:Q13887 equivalent -hsa:688 up:Q5T6X2 equivalent -hsa:6880 up:Q16594 equivalent -hsa:6881 up:Q12962 equivalent -hsa:6882 up:Q15544 equivalent -hsa:6883 up:Q16514 equivalent -hsa:6884 up:Q15543 equivalent -hsa:6885 up:O43318 equivalent -hsa:6886 up:P17542 equivalent -hsa:6886 up:Q16509 equivalent -hsa:6887 up:Q16559 equivalent -hsa:6888 up:A0A140VK56 equivalent -hsa:6888 up:P37837 equivalent -hsa:689 up:P20290 equivalent -hsa:6890 up:A0A0S2Z5A6 equivalent -hsa:6890 up:Q03518 equivalent -hsa:6890 up:X5CKB3 equivalent -hsa:6891 up:Q03519 equivalent -hsa:6891 up:Q5JNW1 equivalent -hsa:6892 up:A0A024RCT1 equivalent -hsa:6892 up:O15533 equivalent -hsa:6894 up:Q13395 equivalent -hsa:6895 up:Q15633 equivalent -hsa:6897 up:P26639 equivalent -hsa:6898 up:A0A140VKB7 equivalent -hsa:6898 up:P17735 equivalent -hsa:6899 up:O43435 equivalent -hsa:6900 up:Q02246 equivalent -hsa:6901 up:A0A0S2Z4E6 equivalent -hsa:6901 up:Q16635 equivalent -hsa:6902 up:O75347 equivalent -hsa:6902 up:Q6FGD7 equivalent -hsa:6903 up:Q15814 equivalent -hsa:6904 up:Q9BTW9 equivalent -hsa:6905 up:Q15813 equivalent -hsa:6906 up:P05543 equivalent -hsa:6907 up:O60907 equivalent -hsa:6908 up:P20226 equivalent -hsa:6908 up:Q32MN7 equivalent -hsa:6909 up:Q13207 equivalent -hsa:6910 up:Q99593 equivalent -hsa:6911 up:O95947 equivalent -hsa:6913 up:Q96SF7 equivalent -hsa:6915 up:P21731 equivalent -hsa:6915 up:Q05C92 equivalent -hsa:6915 up:Q0VAB0 equivalent -hsa:6916 up:P24557 equivalent -hsa:6916 up:Q53F23 equivalent -hsa:6917 up:A0A384MTX4 equivalent -hsa:6917 up:P23193 equivalent -hsa:6919 up:Q15560 equivalent -hsa:6919 up:Q6IB64 equivalent -hsa:6920 up:B4DUM4 equivalent -hsa:6920 up:O75764 equivalent -hsa:692094 up:Q1L6U9 equivalent -hsa:6921 up:Q15369 equivalent -hsa:6923 up:Q15370 equivalent -hsa:692312 up:A0A0B4J1V8 equivalent -hsa:692312 up:Q9NQ55 equivalent -hsa:6924 up:Q14241 equivalent -hsa:6925 up:B3KVA4 equivalent -hsa:6925 up:P15884 equivalent -hsa:6926 up:O15119 equivalent -hsa:6927 up:E0YMI7 equivalent -hsa:6927 up:P20823 equivalent -hsa:6928 up:P35680 equivalent -hsa:6928 up:Q6FHW6 equivalent -hsa:6929 up:P15923 equivalent -hsa:6932 up:B3KQ75 equivalent -hsa:6932 up:P36402 equivalent -hsa:6934 up:Q9NQB0 equivalent -hsa:6935 up:B2RBI8 equivalent -hsa:6935 up:P37275 equivalent -hsa:6936 up:A4UHR0 equivalent -hsa:6936 up:P16383 equivalent -hsa:6938 up:Q99081 equivalent -hsa:6939 up:A4LBB6 equivalent -hsa:6939 up:Q12870 equivalent -hsa:6939 up:Q6NVX3 equivalent -hsa:694 up:P62324 equivalent -hsa:694 up:Q6IBC8 equivalent -hsa:6940 up:O60765 equivalent -hsa:6940 up:V9HWI2 equivalent -hsa:6941 up:A0A1U9X8M7 equivalent -hsa:6941 up:Q9Y242 equivalent -hsa:6942 up:Q9UGU0 equivalent -hsa:6942 up:W5ZR30 equivalent -hsa:6943 up:O43680 equivalent -hsa:6944 up:Q15906 equivalent -hsa:6945 up:Q9UH92 equivalent -hsa:6947 up:P20061 equivalent -hsa:6948 up:P20062 equivalent -hsa:6949 up:Q13428 equivalent -hsa:695 up:Q06187 equivalent -hsa:695 up:Q5JY90 equivalent -hsa:6950 up:P17987 equivalent -hsa:6954 up:B7ZAT8 equivalent -hsa:6954 up:Q8WWU5 equivalent -hsa:696 up:Q13410 equivalent -hsa:696 up:Q4VAN2 equivalent -hsa:6975 up:Q96PL2 equivalent -hsa:6988 up:P57738 equivalent -hsa:699 up:O43683 equivalent -hsa:6990 up:P51808 equivalent -hsa:6991 up:Q8IZS6 equivalent -hsa:6992 up:A2BEK1 equivalent -hsa:6992 up:O60927 equivalent -hsa:6993 up:P63172 equivalent -hsa:6996 up:B4E127 equivalent -hsa:6996 up:Q13569 equivalent -hsa:6997 up:P13385 equivalent -hsa:6999 up:P48775 equivalent -hsa:70 up:B3KPP5 equivalent -hsa:70 up:P68032 equivalent -hsa:7001 up:P32119 equivalent -hsa:7001 up:V9HW12 equivalent -hsa:7003 up:P28347 equivalent -hsa:7003 up:Q59EF3 equivalent -hsa:7004 up:Q15561 equivalent -hsa:7005 up:Q99594 equivalent -hsa:7006 up:P42680 equivalent -hsa:7007 up:O75443 equivalent -hsa:7008 up:Q10587 equivalent -hsa:7009 up:P55061 equivalent -hsa:701 up:O60566 equivalent -hsa:7010 up:Q02763 equivalent -hsa:7010 up:Q59HG2 equivalent -hsa:7011 up:Q99973 equivalent -hsa:7013 up:P54274 equivalent -hsa:7014 up:Q15554 equivalent -hsa:7015 up:O14746 equivalent -hsa:7016 up:Q15569 equivalent -hsa:7016 up:Q8NFJ4 equivalent -hsa:7018 up:A0PJA6 equivalent -hsa:7018 up:P02787 equivalent -hsa:7018 up:Q06AH7 equivalent -hsa:7019 up:E5KSU5 equivalent -hsa:7019 up:Q00059 equivalent -hsa:7020 up:P05549 equivalent -hsa:7021 up:Q92481 equivalent -hsa:7022 up:Q92754 equivalent -hsa:7023 up:Q01664 equivalent -hsa:7024 up:Q12800 equivalent -hsa:7025 up:P10589 equivalent -hsa:7026 up:F1D8R0 equivalent -hsa:7026 up:P24468 equivalent -hsa:7027 up:Q14186 equivalent -hsa:7029 up:Q14188 equivalent -hsa:7030 up:P19532 equivalent -hsa:7031 up:P04155 equivalent -hsa:7032 up:Q03403 equivalent -hsa:7033 up:Q07654 equivalent -hsa:7035 up:P10646 equivalent -hsa:7036 up:Q9UP52 equivalent -hsa:7037 up:P02786 equivalent -hsa:7037 up:Q7Z3E0 equivalent -hsa:7038 up:P01266 equivalent -hsa:7039 up:P01135 equivalent -hsa:7040 up:A0A499FJK2 equivalent -hsa:7040 up:P01137 equivalent -hsa:7041 up:O43294 equivalent -hsa:7042 up:P61812 equivalent -hsa:7042 up:Q59EG9 equivalent -hsa:7043 up:A5YM40 equivalent -hsa:7043 up:P10600 equivalent -hsa:7044 up:O00292 equivalent -hsa:7045 up:A0A0S2Z4Q2 equivalent -hsa:7045 up:Q15582 equivalent -hsa:7046 up:B4DXN7 equivalent -hsa:7046 up:P36897 equivalent -hsa:7046 up:Q5T7S2 equivalent -hsa:7047 up:P49221 equivalent -hsa:7048 up:A3QNQ0 equivalent -hsa:7048 up:P37173 equivalent -hsa:7049 up:Q03167 equivalent -hsa:705 up:Q13895 equivalent -hsa:7050 up:Q15583 equivalent -hsa:7051 up:P22735 equivalent -hsa:7052 up:P21980 equivalent -hsa:7052 up:V9HWG3 equivalent -hsa:7053 up:Q08188 equivalent -hsa:7054 up:P07101 equivalent -hsa:7054 up:P78428 equivalent -hsa:7056 up:P07204 equivalent -hsa:7057 up:P07996 equivalent -hsa:7058 up:P35442 equivalent -hsa:7059 up:P49746 equivalent -hsa:706 up:O76068 equivalent -hsa:706 up:P30536 equivalent -hsa:7060 up:P35443 equivalent -hsa:7062 up:Q07283 equivalent -hsa:7064 up:P52888 equivalent -hsa:7066 up:P40225 equivalent -hsa:7067 up:P10827 equivalent -hsa:7068 up:A0A024R2I8 equivalent -hsa:7068 up:P10828 equivalent -hsa:7069 up:Q92748 equivalent -hsa:7070 up:B0YJA4 equivalent -hsa:7070 up:P04216 equivalent -hsa:7071 up:Q13118 equivalent -hsa:7072 up:P31483 equivalent -hsa:7073 up:Q01085 equivalent -hsa:7073 up:Q49AS9 equivalent -hsa:7074 up:A0A2X0TW27 equivalent -hsa:7074 up:Q13009 equivalent -hsa:7075 up:P35590 equivalent -hsa:7076 up:P01033 equivalent -hsa:7076 up:Q6FGX5 equivalent -hsa:7077 up:A0A140VK57 equivalent -hsa:7077 up:P16035 equivalent -hsa:7078 up:P35625 equivalent -hsa:7079 up:Q99727 equivalent -hsa:708 up:Q07021 equivalent -hsa:7080 up:P43699 equivalent -hsa:7082 up:Q07157 equivalent -hsa:7082 up:Q6MZU1 equivalent -hsa:7083 up:A0A384MDV9 equivalent -hsa:7083 up:P04183 equivalent -hsa:7084 up:O00142 equivalent -hsa:7084 up:Q8IZR3 equivalent -hsa:7086 up:P29401 equivalent -hsa:7086 up:V9HWD9 equivalent -hsa:7087 up:Q8N6I2 equivalent -hsa:7087 up:Q9UMF0 equivalent -hsa:7088 up:Q04724 equivalent -hsa:7088 up:Q59EF7 equivalent -hsa:7089 up:Q04725 equivalent -hsa:7090 up:Q04726 equivalent -hsa:7091 up:Q04727 equivalent -hsa:7092 up:B7ZLW3 equivalent -hsa:7092 up:O43897 equivalent -hsa:7093 up:Q9Y6L7 equivalent -hsa:7094 up:Q9Y490 equivalent -hsa:7095 up:Q99442 equivalent -hsa:7096 up:Q15399 equivalent -hsa:7097 up:A0A0S2Z4S4 equivalent -hsa:7097 up:B3KWR9 equivalent -hsa:7097 up:O60603 equivalent -hsa:7098 up:O15455 equivalent -hsa:7099 up:O00206 equivalent -hsa:71 up:P63261 equivalent -hsa:710 up:E9KL26 equivalent -hsa:710 up:P05155 equivalent -hsa:7100 up:A0A2R8Y7Z4 equivalent -hsa:7100 up:O60602 equivalent -hsa:7101 up:B6ZGT9 equivalent -hsa:7101 up:Q9Y466 equivalent -hsa:7102 up:P41732 equivalent -hsa:7103 up:P19075 equivalent -hsa:7104 up:P48230 equivalent -hsa:7105 up:O43657 equivalent -hsa:7106 up:O14817 equivalent -hsa:7107 up:O60478 equivalent -hsa:7108 up:O76062 equivalent -hsa:7109 up:P48553 equivalent -hsa:7110 up:P82094 equivalent -hsa:7110 up:Q6PII6 equivalent -hsa:7111 up:P28289 equivalent -hsa:7112 up:P42167 equivalent -hsa:7112 up:Q59G12 equivalent -hsa:7113 up:O15393 equivalent -hsa:7114 up:A2VCK8 equivalent -hsa:7114 up:P62328 equivalent -hsa:7114 up:Q0P5T0 equivalent -hsa:712 up:A0A024RAG6 equivalent -hsa:712 up:P02745 equivalent -hsa:7122 up:D3DX19 equivalent -hsa:7122 up:O00501 equivalent -hsa:7123 up:P05452 equivalent -hsa:7124 up:P01375 equivalent -hsa:7124 up:Q5STB3 equivalent -hsa:7125 up:P02585 equivalent -hsa:7126 up:Q13829 equivalent -hsa:7127 up:Q03169 equivalent -hsa:7128 up:P21580 equivalent -hsa:713 up:A0A024RAB9 equivalent -hsa:713 up:P02746 equivalent -hsa:7130 up:P98066 equivalent -hsa:7132 up:P19438 equivalent -hsa:7133 up:P20333 equivalent -hsa:7134 up:P63316 equivalent -hsa:7134 up:Q6FH91 equivalent -hsa:7135 up:P19237 equivalent -hsa:7136 up:P48788 equivalent -hsa:7137 up:P19429 equivalent -hsa:7137 up:Q6FGX2 equivalent -hsa:7138 up:P13805 equivalent -hsa:7139 up:P45379 equivalent -hsa:714 up:A0A024RAA7 equivalent -hsa:714 up:P02747 equivalent -hsa:7140 up:P45378 equivalent -hsa:7141 up:P09430 equivalent -hsa:7141 up:Q4ZG82 equivalent -hsa:7142 up:Q05952 equivalent -hsa:7142 up:Q4VB56 equivalent -hsa:7143 up:A1L306 equivalent -hsa:7143 up:Q92752 equivalent -hsa:7145 up:A1L0S7 equivalent -hsa:7145 up:Q59G71 equivalent -hsa:7145 up:Q86VB0 equivalent -hsa:7145 up:Q9HBL0 equivalent -hsa:7148 up:O95680 equivalent -hsa:7148 up:O95681 equivalent -hsa:7148 up:P22105 equivalent -hsa:7148 up:Q9Y464 equivalent -hsa:715 up:P00736 equivalent -hsa:7150 up:P11387 equivalent -hsa:7150 up:Q9BVT2 equivalent -hsa:7153 up:P11388 equivalent -hsa:7155 up:Q02880 equivalent -hsa:7156 up:Q13472 equivalent -hsa:7157 up:K7PPA8 equivalent -hsa:7157 up:P04637 equivalent -hsa:7157 up:Q53GA5 equivalent -hsa:7158 up:Q12888 equivalent -hsa:7159 up:Q13625 equivalent -hsa:716 up:P09871 equivalent -hsa:7161 up:O15350 equivalent -hsa:7162 up:Q13641 equivalent -hsa:7163 up:P55327 equivalent -hsa:7164 up:Q15730 equivalent -hsa:7164 up:Q16890 equivalent -hsa:7165 up:O43399 equivalent -hsa:7165 up:Q6FGS1 equivalent -hsa:7166 up:P17752 equivalent -hsa:7167 up:P60174 equivalent -hsa:7167 up:Q53HE2 equivalent -hsa:7167 up:V9HWK1 equivalent -hsa:7168 up:A0A0K0K1I0 equivalent -hsa:7168 up:P09493 equivalent -hsa:7169 up:P07951 equivalent -hsa:717 up:P06681 equivalent -hsa:717 up:Q53HP3 equivalent -hsa:717 up:Q5JP69 equivalent -hsa:7170 up:P06753 equivalent -hsa:7171 up:P67936 equivalent -hsa:7171 up:V9HW56 equivalent -hsa:7172 up:P51580 equivalent -hsa:7173 up:P07202 equivalent -hsa:7173 up:Q502Y3 equivalent -hsa:7173 up:Q6P534 equivalent -hsa:7174 up:P29144 equivalent -hsa:7175 up:P12270 equivalent -hsa:7177 up:Q15661 equivalent -hsa:7178 up:A0A0P1J1R0 equivalent -hsa:7178 up:P13693 equivalent -hsa:7179 up:P56180 equivalent -hsa:718 up:B4DR57 equivalent -hsa:718 up:P01024 equivalent -hsa:718 up:V9HWA9 equivalent -hsa:7180 up:A0A024RD74 equivalent -hsa:7180 up:P16562 equivalent -hsa:7181 up:H9NIM2 equivalent -hsa:7181 up:P13056 equivalent -hsa:7182 up:P49116 equivalent -hsa:7184 up:P14625 equivalent -hsa:7184 up:V9HWP2 equivalent -hsa:7185 up:Q13077 equivalent -hsa:7186 up:Q12933 equivalent -hsa:7187 up:Q13114 equivalent -hsa:7188 up:O00463 equivalent -hsa:7189 up:Q9Y4K3 equivalent -hsa:719 up:A8K2H7 equivalent -hsa:719 up:Q16581 equivalent -hsa:72 up:P63267 equivalent -hsa:720 up:P0C0L4 equivalent -hsa:7200 up:P20396 equivalent -hsa:7201 up:P34981 equivalent -hsa:7203 up:B3KX11 equivalent -hsa:7203 up:P49368 equivalent -hsa:7203 up:Q59H77 equivalent -hsa:7204 up:O75962 equivalent -hsa:7205 up:Q15654 equivalent -hsa:721 up:P0C0L4 equivalent -hsa:721 up:P0C0L5 equivalent -hsa:7216 up:Q12816 equivalent -hsa:7216 up:Q9BX91 equivalent -hsa:722 up:P04003 equivalent -hsa:7220 up:P48995 equivalent -hsa:7222 up:Q13507 equivalent -hsa:7223 up:Q9UBN4 equivalent -hsa:7224 up:Q9UL62 equivalent -hsa:7225 up:Q9Y210 equivalent -hsa:7226 up:O94759 equivalent -hsa:7227 up:Q9UHF7 equivalent -hsa:723790 up:Q6FI13 equivalent -hsa:723961 up:F8WCM5 equivalent -hsa:7247 up:Q15631 equivalent -hsa:7248 up:Q86WV8 equivalent -hsa:7248 up:Q92574 equivalent -hsa:7248 up:X5D9D2 equivalent -hsa:7249 up:P49815 equivalent -hsa:725 up:P20851 equivalent -hsa:7251 up:Q99816 equivalent -hsa:7252 up:P01222 equivalent -hsa:7253 up:A0A0A0MTJ0 equivalent -hsa:7253 up:P16473 equivalent -hsa:7257 up:Q99598 equivalent -hsa:7258 up:Q01534 equivalent -hsa:7259 up:Q9H0U9 equivalent -hsa:726 up:A0A140VKH4 equivalent -hsa:726 up:O15484 equivalent -hsa:7260 up:Q53HC9 equivalent -hsa:7262 up:Q53GA4 equivalent -hsa:7263 up:A0A384NKQ2 equivalent -hsa:7263 up:Q16762 equivalent -hsa:7264 up:A0A140VKC8 equivalent -hsa:7264 up:Q13630 equivalent -hsa:7265 up:Q99614 equivalent -hsa:7266 up:Q99615 equivalent -hsa:7267 up:P53804 equivalent -hsa:7268 up:O95801 equivalent -hsa:727 up:P01031 equivalent -hsa:7270 up:Q15361 equivalent -hsa:7272 up:P33981 equivalent -hsa:7273 up:Q8WZ42 equivalent -hsa:7274 up:P49638 equivalent -hsa:7275 up:P50607 equivalent -hsa:7276 up:E9KL36 equivalent -hsa:7276 up:P02766 equivalent -hsa:7277 up:P68366 equivalent -hsa:7278 up:P0DPH7 equivalent -hsa:7278 up:Q1ZYQ1 equivalent -hsa:727800 up:Q9H0X6 equivalent -hsa:727830 up:Q5VYP0 equivalent -hsa:727832 up:A8MZA4 equivalent -hsa:727837 up:Q16385 equivalent -hsa:727851 up:O14715 equivalent -hsa:727857 up:Q7RTU4 equivalent -hsa:727866 up:Q8NDB6 equivalent -hsa:727897 up:Q9HC84 equivalent -hsa:727905 up:Q5VU36 equivalent -hsa:727910 up:A6NGC4 equivalent -hsa:727936 up:A0PJZ3 equivalent -hsa:727940 up:P0C7M4 equivalent -hsa:727957 up:Q8NDA8 equivalent -hsa:728 up:P21730 equivalent -hsa:7280 up:Q13885 equivalent -hsa:728036 up:Q5JQC4 equivalent -hsa:728042 up:Q5JQC4 equivalent -hsa:728047 up:A6NCC3 equivalent -hsa:728049 up:Q5JQC4 equivalent -hsa:728062 up:Q5JQC4 equivalent -hsa:728072 up:Q5JQC4 equivalent -hsa:728075 up:Q5JQC4 equivalent -hsa:728082 up:Q5JQC4 equivalent -hsa:728090 up:Q5JQC4 equivalent -hsa:728096 up:Q5JQC4 equivalent -hsa:728113 up:P13928 equivalent -hsa:728113 up:Q5VT79 equivalent -hsa:728116 up:Q8NAP8 equivalent -hsa:728118 up:Q8IVF1 equivalent -hsa:728130 up:A0A075B6P9 equivalent -hsa:728130 up:Q8IVF1 equivalent -hsa:728137 up:P0CV98 equivalent -hsa:728137 up:P0CW01 equivalent -hsa:728137 up:Q01534 equivalent -hsa:728194 up:B2RC85 equivalent -hsa:728215 up:B1AL88 equivalent -hsa:728224 up:Q9BYQ9 equivalent -hsa:728229 up:P0C7N4 equivalent -hsa:728239 up:Q96JG8 equivalent -hsa:728255 up:P0C5Y4 equivalent -hsa:728269 up:P43362 equivalent -hsa:728276 up:Q6UXS0 equivalent -hsa:728279 up:Q9BYT5 equivalent -hsa:728294 up:B4E3K7 equivalent -hsa:728294 up:Q8N465 equivalent -hsa:728299 up:Q3LI54 equivalent -hsa:7283 up:P23258 equivalent -hsa:728318 up:A8MXZ3 equivalent -hsa:728340 up:Q6P1K8 equivalent -hsa:728343 up:Q9GZY0 equivalent -hsa:728358 up:P59665 equivalent -hsa:728361 up:O00110 equivalent -hsa:728369 up:Q0WX57 equivalent -hsa:728373 up:Q0WX57 equivalent -hsa:728378 up:A5A3E0 equivalent -hsa:728379 up:Q0WX57 equivalent -hsa:728386 up:A8MUK1 equivalent -hsa:728392 up:A0A494C1I1 equivalent -hsa:728393 up:Q0WX57 equivalent -hsa:728395 up:P0CV99 equivalent -hsa:7284 up:A0A384ME17 equivalent -hsa:7284 up:P49411 equivalent -hsa:728400 up:Q0WX57 equivalent -hsa:728403 up:P0CW00 equivalent -hsa:728405 up:Q0WX57 equivalent -hsa:728419 up:Q0WX57 equivalent -hsa:728458 up:P04001 equivalent -hsa:728458 up:P0DN77 equivalent -hsa:728458 up:P0DN78 equivalent -hsa:728464 up:Q5JXM2 equivalent -hsa:728489 up:Q5SXM8 equivalent -hsa:728492 up:O75920 equivalent -hsa:728498 up:P0CJ92 equivalent -hsa:728568 up:Q69YU5 equivalent -hsa:728577 up:Q96NU0 equivalent -hsa:728586 up:P0DO97 equivalent -hsa:728591 up:A6NNP5 equivalent -hsa:728597 up:A8MYV0 equivalent -hsa:7286 up:Q9NNX1 equivalent -hsa:728621 up:Q5VVM6 equivalent -hsa:728637 up:A0A087WXM9 equivalent -hsa:728642 up:Q9UQ88 equivalent -hsa:728656 up:Q5HYR2 equivalent -hsa:728661 up:P0CK96 equivalent -hsa:728689 up:B5ME19 equivalent -hsa:728695 up:Q9NS25 equivalent -hsa:7287 up:O00294 equivalent -hsa:7287 up:Q0QD38 equivalent -hsa:728712 up:Q9NS26 equivalent -hsa:728734 up:E9PQR5 equivalent -hsa:728741 up:B2RXF8 equivalent -hsa:728741 up:E9PJ23 equivalent -hsa:728780 up:A6NHY2 equivalent -hsa:7288 up:O00295 equivalent -hsa:728819 up:P0DN25 equivalent -hsa:728833 up:Q6L9T8 equivalent -hsa:728841 up:A0A8V8TN03 equivalent -hsa:728858 up:A8MTZ7 equivalent -hsa:7289 up:B7Z1E7 equivalent -hsa:7289 up:O75386 equivalent -hsa:728911 up:P0DMV1 equivalent -hsa:728911 up:P0DMV2 equivalent -hsa:728911 up:Q5DJT8 equivalent -hsa:728927 up:B4DX44 equivalent -hsa:728945 up:A0A075B759 equivalent -hsa:728945 up:P0DN26 equivalent -hsa:728957 up:P0CH99 equivalent -hsa:729 up:P13671 equivalent -hsa:7290 up:P54198 equivalent -hsa:729020 up:Q2QD12 equivalent -hsa:729025 up:A6NIM6 equivalent -hsa:729059 up:H3BTG2 equivalent -hsa:729085 up:Q9UFP1 equivalent -hsa:729092 up:A6NIR3 equivalent -hsa:7291 up:Q15672 equivalent -hsa:7292 up:A0A024R937 equivalent -hsa:7292 up:P23510 equivalent -hsa:729201 up:A0A140VJN7 equivalent -hsa:729201 up:Q96QH8 equivalent -hsa:729230 up:P41597 equivalent -hsa:729233 up:P86478 equivalent -hsa:729233 up:P86479 equivalent -hsa:729233 up:P86480 equivalent -hsa:729233 up:P86481 equivalent -hsa:729233 up:P86496 equivalent -hsa:729238 up:Q8IWL1 equivalent -hsa:729240 up:P86478 equivalent -hsa:729240 up:P86479 equivalent -hsa:729240 up:P86480 equivalent -hsa:729240 up:P86481 equivalent -hsa:729240 up:P86496 equivalent -hsa:729246 up:P86478 equivalent -hsa:729246 up:P86479 equivalent -hsa:729246 up:P86480 equivalent -hsa:729246 up:P86481 equivalent -hsa:729246 up:P86496 equivalent -hsa:729250 up:P86478 equivalent -hsa:729250 up:P86479 equivalent -hsa:729250 up:P86480 equivalent -hsa:729250 up:P86481 equivalent -hsa:729250 up:P86496 equivalent -hsa:729262 up:A6NNL0 equivalent -hsa:729264 up:Q9ULZ0 equivalent -hsa:7293 up:P43489 equivalent -hsa:729330 up:Q02509 equivalent -hsa:729355 up:Q9ULZ0 equivalent -hsa:729384 up:C9J1S8 equivalent -hsa:729396 up:A6NER3 equivalent -hsa:7294 up:P42681 equivalent -hsa:729408 up:Q9UEU5 equivalent -hsa:729422 up:A1L429 equivalent -hsa:729428 up:A1L429 equivalent -hsa:729428 up:O76087 equivalent -hsa:729431 up:A1L429 equivalent -hsa:729438 up:A6NHX0 equivalent -hsa:729440 up:Q9Y6R9 equivalent -hsa:729442 up:A6NDE8 equivalent -hsa:729447 up:Q6NT46 equivalent -hsa:729475 up:Q09MP3 equivalent -hsa:7295 up:H9ZYJ2 equivalent -hsa:7295 up:P10599 equivalent -hsa:729515 up:Q9NWH2 equivalent -hsa:729528 up:Q5SWL7 equivalent -hsa:729533 up:Q5TYM5 equivalent -hsa:729540 up:Q99666 equivalent -hsa:729540 up:V9HWE4 equivalent -hsa:729597 up:P0CI01 equivalent -hsa:7296 up:Q16881 equivalent -hsa:729627 up:A6NEV1 equivalent -hsa:729665 up:P0C221 equivalent -hsa:7297 up:P29597 equivalent -hsa:729747 up:C9JN71 equivalent -hsa:729759 up:A0A126GV92 equivalent -hsa:729759 up:Q6IEY1 equivalent -hsa:7298 up:P04818 equivalent -hsa:7298 up:Q53Y97 equivalent -hsa:729830 up:Q05DH4 equivalent -hsa:729852 up:C9J7I0 equivalent -hsa:729857 up:B4DYH0 equivalent -hsa:729857 up:P0DJD1 equivalent -hsa:729873 up:Q6IPX1 equivalent -hsa:729873 up:Q8IZP1 equivalent -hsa:729877 up:P0C7X1 equivalent -hsa:7299 up:L8B082 equivalent -hsa:7299 up:P14679 equivalent -hsa:729920 up:A4D126 equivalent -hsa:729956 up:A6NL88 equivalent -hsa:729967 up:Q502X0 equivalent -hsa:729974 up:F8VTS6 equivalent -hsa:729991 up:Q96FH0 equivalent -hsa:729993 up:B4DS77 equivalent -hsa:730 up:P10643 equivalent -hsa:730 up:Q05CI3 equivalent -hsa:730005 up:B5MCN3 equivalent -hsa:730051 up:B7Z6K7 equivalent -hsa:730087 up:A6NNF4 equivalent -hsa:730094 up:Q8NHV5 equivalent -hsa:730098 up:G3V523 equivalent -hsa:7301 up:Q06418 equivalent -hsa:730112 up:A8MTA8 equivalent -hsa:730130 up:B2RXF0 equivalent -hsa:730159 up:A0A1B0GTY4 equivalent -hsa:730249 up:A6NK06 equivalent -hsa:730262 up:A0A075B759 equivalent -hsa:730262 up:P0DN26 equivalent -hsa:730291 up:P0CB33 equivalent -hsa:730394 up:Q6P1K8 equivalent -hsa:7305 up:O43914 equivalent -hsa:7306 up:P17643 equivalent -hsa:7307 up:Q01081 equivalent -hsa:730755 up:P0C7H8 equivalent -hsa:730755 up:Q9BYR9 equivalent -hsa:731 up:P07357 equivalent -hsa:7311 up:P62987 equivalent -hsa:7311 up:Q3MIH3 equivalent -hsa:7311 up:Q7Z4P3 equivalent -hsa:731220 up:Q6ZV50 equivalent -hsa:7314 up:P0CG47 equivalent -hsa:7314 up:Q5U5U6 equivalent -hsa:7316 up:P0CG48 equivalent -hsa:7317 up:A0A024R1A3 equivalent -hsa:7317 up:P22314 equivalent -hsa:7318 up:P41226 equivalent -hsa:7319 up:P49459 equivalent -hsa:732 up:P07358 equivalent -hsa:7320 up:P63146 equivalent -hsa:7321 up:P51668 equivalent -hsa:7322 up:P62837 equivalent -hsa:7323 up:D6RAH7 reverse -hsa:7323 up:P61077 equivalent -hsa:7324 up:P51965 equivalent -hsa:7325 up:Q96LR5 equivalent -hsa:7326 up:P62253 equivalent -hsa:7327 up:P60604 equivalent -hsa:7328 up:A4D1L5 equivalent -hsa:7328 up:P62256 equivalent -hsa:7329 up:A8K503 equivalent -hsa:7329 up:P63279 equivalent -hsa:733 up:P07360 equivalent -hsa:7332 up:P68036 equivalent -hsa:7334 up:P61088 equivalent -hsa:7334 up:V9HW41 equivalent -hsa:7335 up:Q13404 equivalent -hsa:7336 up:A0M8W4 equivalent -hsa:7336 up:Q15819 equivalent -hsa:7337 up:Q05086 equivalent -hsa:734 up:Q9Y236 equivalent -hsa:7341 up:P63165 equivalent -hsa:7342 up:A8KAN5 equivalent -hsa:7342 up:Q9NZI7 equivalent -hsa:7343 up:P17480 equivalent -hsa:7345 up:P09936 equivalent -hsa:7345 up:V9HW74 equivalent -hsa:7347 up:A0A140VJZ4 equivalent -hsa:7347 up:P15374 equivalent -hsa:7348 up:O75841 equivalent -hsa:7349 up:P55089 equivalent -hsa:735 up:P02748 equivalent -hsa:7350 up:P25874 equivalent -hsa:7351 up:P55851 equivalent -hsa:7352 up:A0A0S2Z4G5 equivalent -hsa:7352 up:P55916 equivalent -hsa:7353 up:Q541A5 equivalent -hsa:7353 up:Q92890 equivalent -hsa:7355 up:P78381 equivalent -hsa:7356 up:A0A0S2Z4R6 equivalent -hsa:7356 up:P11684 equivalent -hsa:7357 up:Q16739 equivalent -hsa:7358 up:O60701 equivalent -hsa:7360 up:Q16851 equivalent -hsa:7363 up:P06133 equivalent -hsa:7364 up:P16662 equivalent -hsa:7365 up:P36537 equivalent -hsa:7366 up:P54855 equivalent -hsa:7367 up:O75795 equivalent -hsa:7368 up:Q16880 equivalent -hsa:7369 up:P07911 equivalent -hsa:7371 up:Q9BZX2 equivalent -hsa:7372 up:A8K5J1 equivalent -hsa:7372 up:P11172 equivalent -hsa:7373 up:Q05707 equivalent -hsa:7374 up:E5KTA5 equivalent -hsa:7374 up:P13051 equivalent -hsa:7375 up:Q08AK7 equivalent -hsa:7375 up:Q13107 equivalent -hsa:7376 up:F1D8P7 equivalent -hsa:7376 up:P55055 equivalent -hsa:7378 up:B4DND0 equivalent -hsa:7378 up:Q16831 equivalent -hsa:7379 up:O00526 equivalent -hsa:738 up:Q9UID3 equivalent -hsa:7380 up:O75631 equivalent -hsa:7381 up:P14927 equivalent -hsa:7384 up:P31930 equivalent -hsa:7385 up:P22695 equivalent -hsa:7386 up:P47985 equivalent -hsa:7388 up:P07919 equivalent -hsa:7389 up:P06132 equivalent -hsa:7390 up:A0A0S2Z4T8 equivalent -hsa:7390 up:P10746 equivalent -hsa:7391 up:A0A0S2Z4U5 equivalent -hsa:7391 up:P22415 equivalent -hsa:7392 up:Q15853 equivalent -hsa:7398 up:O94782 equivalent -hsa:7399 up:O75445 equivalent -hsa:740 up:Q13405 equivalent -hsa:7401 up:P58418 equivalent -hsa:7402 up:P46939 equivalent -hsa:7402 up:Q6LBS5 equivalent -hsa:7403 up:O15550 equivalent -hsa:7403 up:Q59HG3 equivalent -hsa:7404 up:O14607 equivalent -hsa:7405 up:Q9P2Y5 equivalent -hsa:7407 up:A0A024RCN6 equivalent -hsa:7407 up:P26640 equivalent -hsa:7408 up:A0A024R0V4 equivalent -hsa:7408 up:P50552 equivalent -hsa:7409 up:B2R8B5 equivalent -hsa:7409 up:P15498 equivalent -hsa:7409 up:Q96D37 equivalent -hsa:741 up:Q9UHR6 equivalent -hsa:7410 up:P52735 equivalent -hsa:7411 up:P61758 equivalent -hsa:7412 up:P19320 equivalent -hsa:7414 up:B3KXA2 equivalent -hsa:7414 up:P18206 equivalent -hsa:7414 up:V9HWK2 equivalent -hsa:7415 up:P55072 equivalent -hsa:7416 up:A0A1L1UHR1 equivalent -hsa:7416 up:B3KTS5 equivalent -hsa:7416 up:P21796 equivalent -hsa:7417 up:A0A024QZT0 equivalent -hsa:7417 up:P45880 equivalent -hsa:7419 up:Q9Y277 equivalent -hsa:7421 up:F1D8P8 equivalent -hsa:7421 up:P11473 equivalent -hsa:7422 up:P15692 equivalent -hsa:7423 up:P49765 equivalent -hsa:7423 up:Q7LAP4 equivalent -hsa:7424 up:P49767 equivalent -hsa:7425 up:O15240 equivalent -hsa:7428 up:A0A024R2F2 equivalent -hsa:7428 up:P40337 equivalent -hsa:7429 up:P09327 equivalent -hsa:7429 up:Q53F91 equivalent -hsa:7430 up:P15311 equivalent -hsa:7431 up:P08670 equivalent -hsa:7431 up:V9HWE1 equivalent -hsa:7432 up:P01282 equivalent -hsa:7433 up:P32241 equivalent -hsa:7434 up:P41587 equivalent -hsa:7434 up:X5D7Q6 equivalent -hsa:7436 up:P98155 equivalent -hsa:7439 up:O76090 equivalent -hsa:744 up:Q15777 equivalent -hsa:7441 up:P12018 equivalent -hsa:7442 up:Q8NER1 equivalent -hsa:7443 up:Q99986 equivalent -hsa:7444 up:Q86Y07 equivalent -hsa:7447 up:P62760 equivalent -hsa:7448 up:D9ZGG2 equivalent -hsa:7448 up:P04004 equivalent -hsa:745 up:Q9Y2G1 equivalent -hsa:7450 up:P04275 equivalent -hsa:7453 up:A0A024R6K8 equivalent -hsa:7453 up:P23381 equivalent -hsa:7454 up:P42768 equivalent -hsa:7455 up:B4DYT6 equivalent -hsa:7455 up:Q9Y493 equivalent -hsa:7456 up:A0A140VJZ9 equivalent -hsa:7456 up:O43516 equivalent -hsa:7456 up:Q2YDC4 equivalent -hsa:7458 up:Q15056 equivalent -hsa:746 up:P61165 equivalent -hsa:7461 up:A0A140VJG6 equivalent -hsa:7461 up:Q9UDT6 equivalent -hsa:7462 up:Q9GZY6 equivalent -hsa:7464 up:A8K9S3 equivalent -hsa:7464 up:Q92828 equivalent -hsa:7465 up:P30291 equivalent -hsa:7465 up:Q86V29 equivalent -hsa:7466 up:A0A0S2Z4V6 equivalent -hsa:7466 up:O76024 equivalent -hsa:7468 up:O96028 equivalent -hsa:7469 up:A0A0C4DFX9 equivalent -hsa:7469 up:Q9H3P2 equivalent -hsa:747 up:Q9Y4D2 equivalent -hsa:7471 up:P04628 equivalent -hsa:7472 up:A0A384MDX3 equivalent -hsa:7472 up:P09544 equivalent -hsa:7473 up:P56703 equivalent -hsa:7474 up:A0A384N611 equivalent -hsa:7474 up:B3KQX9 equivalent -hsa:7474 up:P41221 equivalent -hsa:7475 up:Q8N2E5 equivalent -hsa:7475 up:Q9Y6F9 equivalent -hsa:7476 up:O00755 equivalent -hsa:7477 up:P56706 equivalent -hsa:7478 up:Q9H1J5 equivalent -hsa:7479 up:A0A384NKY7 equivalent -hsa:7479 up:Q93098 equivalent -hsa:7480 up:O00744 equivalent -hsa:7481 up:O96014 equivalent -hsa:7482 up:Q93097 equivalent -hsa:7483 up:D9ZGG3 equivalent -hsa:7483 up:O14904 equivalent -hsa:7484 up:O14905 equivalent -hsa:7485 up:O00258 equivalent -hsa:7486 up:Q14191 equivalent -hsa:7490 up:P19544 equivalent -hsa:7490 up:Q6PI38 equivalent -hsa:7494 up:P17861 equivalent -hsa:7498 up:P47989 equivalent -hsa:7499 up:B4E289 equivalent -hsa:7499 up:P55808 equivalent -hsa:7504 up:P51811 equivalent -hsa:7507 up:P23025 equivalent -hsa:7508 up:Q01831 equivalent -hsa:7508 up:X5DRB1 equivalent -hsa:751071 up:A8MUP2 equivalent -hsa:7511 up:Q9NQW7 equivalent -hsa:7512 up:O43895 equivalent -hsa:7514 up:B3KWD0 equivalent -hsa:7514 up:O14980 equivalent -hsa:7515 up:B2RCY5 equivalent -hsa:7515 up:P18887 equivalent -hsa:7515 up:Q59HH7 equivalent -hsa:7516 up:A0A384MEK2 equivalent -hsa:7516 up:O43543 equivalent -hsa:7517 up:O43542 equivalent -hsa:7517 up:Q53XC8 equivalent -hsa:7518 up:Q13426 equivalent -hsa:7518 up:Q7Z763 equivalent -hsa:752 up:O95466 equivalent -hsa:7520 up:P13010 equivalent -hsa:752014 up:Q6PRD7 equivalent -hsa:7525 up:P07947 equivalent -hsa:7528 up:P25490 equivalent -hsa:7529 up:P31946 equivalent -hsa:7529 up:V9HWD6 equivalent -hsa:753 up:O15165 equivalent -hsa:7531 up:P62258 equivalent -hsa:7531 up:V9HW98 equivalent -hsa:7532 up:P61981 equivalent -hsa:7533 up:Q04917 equivalent -hsa:7533 up:Q9H4N8 equivalent -hsa:7534 up:D0PNI1 equivalent -hsa:7534 up:P63104 equivalent -hsa:7535 up:P43403 equivalent -hsa:7536 up:Q15637 equivalent -hsa:7538 up:M0QY76 equivalent -hsa:7538 up:P26651 equivalent -hsa:7539 up:Q9Y6Q3 equivalent -hsa:754 up:P53801 equivalent -hsa:7541 up:O43829 equivalent -hsa:7542 up:O95159 equivalent -hsa:7543 up:P17010 equivalent -hsa:7543 up:Q59EB9 equivalent -hsa:7544 up:P08048 equivalent -hsa:7545 up:Q15915 equivalent -hsa:7546 up:O95409 equivalent -hsa:7547 up:O60481 equivalent -hsa:7549 up:Q9BSG1 equivalent -hsa:755 up:O43822 equivalent -hsa:7551 up:P17036 equivalent -hsa:7552 up:Q6PK66 equivalent -hsa:7552 up:Q9Y462 equivalent -hsa:7553 up:P17097 equivalent -hsa:7554 up:B3KS94 equivalent -hsa:7554 up:P17098 equivalent -hsa:7555 up:A0A0S2Z4K2 equivalent -hsa:7555 up:P62633 equivalent -hsa:7556 up:P21506 equivalent -hsa:7556 up:Q9UG14 equivalent -hsa:7559 up:P17014 equivalent -hsa:7561 up:P17017 equivalent -hsa:7562 up:P17019 equivalent -hsa:7564 up:P17020 equivalent -hsa:7565 up:P17021 equivalent -hsa:7566 up:B3KXT5 equivalent -hsa:7566 up:P17022 equivalent -hsa:7567 up:P17023 equivalent -hsa:7568 up:P17024 equivalent -hsa:7569 up:P17025 equivalent -hsa:757 up:P56557 equivalent -hsa:7570 up:P17026 equivalent -hsa:7571 up:B3KR55 equivalent -hsa:7571 up:P17027 equivalent -hsa:7572 up:P17028 equivalent -hsa:7574 up:P17031 equivalent -hsa:7574 up:V9HW07 equivalent -hsa:7576 up:P17035 equivalent -hsa:7579 up:P17040 equivalent -hsa:758 up:O15442 equivalent -hsa:7580 up:P17041 equivalent -hsa:7581 up:Q06730 equivalent -hsa:7582 up:Q06732 equivalent -hsa:7584 up:P13682 equivalent -hsa:7586 up:P17029 equivalent -hsa:7587 up:P17032 equivalent -hsa:7589 up:Q9Y5A6 equivalent -hsa:759 up:P00915 equivalent -hsa:759 up:V9HWE3 equivalent -hsa:7592 up:P51814 equivalent -hsa:7593 up:P28698 equivalent -hsa:7594 up:P17038 equivalent -hsa:7596 up:Q02386 equivalent -hsa:7597 up:P24278 equivalent -hsa:760 up:P00918 equivalent -hsa:760 up:V9HW21 equivalent -hsa:761 up:P07451 equivalent -hsa:761 up:V9HWA3 equivalent -hsa:762 up:P22748 equivalent -hsa:7620 up:Q9UC07 equivalent -hsa:7621 up:B3KV76 equivalent -hsa:7621 up:Q9UC06 equivalent -hsa:7625 up:A8K5P3 equivalent -hsa:7625 up:Q16587 equivalent -hsa:7626 up:P51815 equivalent -hsa:7626 up:Q86TD5 equivalent -hsa:7627 up:Q68CU0 equivalent -hsa:7627 up:Q96N20 equivalent -hsa:7629 up:P36508 equivalent -hsa:763 up:P35218 equivalent -hsa:7633 up:Q15937 equivalent -hsa:7634 up:P51504 equivalent -hsa:7637 up:P51523 equivalent -hsa:7638 up:Q9UK13 equivalent -hsa:7639 up:Q03923 equivalent -hsa:7639 up:Q49A12 equivalent -hsa:7643 up:Q03938 equivalent -hsa:7644 up:Q05481 equivalent -hsa:765 up:B4DUH8 equivalent -hsa:765 up:P23280 equivalent -hsa:7652 up:A8MXY4 equivalent -hsa:766 up:P43166 equivalent -hsa:767 up:P35219 equivalent -hsa:7673 up:Q9UK12 equivalent -hsa:7675 up:P58317 equivalent -hsa:7678 up:Q15973 equivalent -hsa:768 up:A0A0S2Z3D0 equivalent -hsa:768 up:Q16790 equivalent -hsa:7681 up:Q13064 equivalent -hsa:768206 up:Q00LT1 equivalent -hsa:768211 up:Q8IUW5 equivalent -hsa:768239 up:Q6NUJ1 equivalent -hsa:7690 up:P52739 equivalent -hsa:7691 up:B3KQ54 equivalent -hsa:7691 up:P52740 equivalent -hsa:7692 up:P52736 equivalent -hsa:7693 up:P52741 equivalent -hsa:7693 up:Q5U5N5 equivalent -hsa:7694 up:P52742 equivalent -hsa:7694 up:Q8N9M3 equivalent -hsa:7695 up:P52737 equivalent -hsa:7697 up:A2RRP7 equivalent -hsa:7697 up:P52744 equivalent -hsa:7699 up:P52738 equivalent -hsa:770 up:O75493 equivalent -hsa:7700 up:Q15928 equivalent -hsa:7700 up:Q4W5N2 reverse -hsa:7701 up:P52746 equivalent -hsa:7702 up:P52747 equivalent -hsa:7703 up:P35227 equivalent -hsa:7704 up:A0A024R3C6 equivalent -hsa:7704 up:Q05516 equivalent -hsa:7705 up:Q15072 equivalent -hsa:7706 up:Q14258 equivalent -hsa:7707 up:Q9UQR1 equivalent -hsa:7709 up:Q13105 equivalent -hsa:771 up:O43570 equivalent -hsa:7710 up:Q13106 equivalent -hsa:7711 up:Q12901 equivalent -hsa:7712 up:P51786 equivalent -hsa:7716 up:Q14119 equivalent -hsa:7718 up:P49910 equivalent -hsa:7718 up:Q53Z40 equivalent -hsa:7726 up:A0A024RCP3 equivalent -hsa:7726 up:Q12899 equivalent -hsa:7727 up:Q15697 equivalent -hsa:7728 up:Q9Y473 equivalent -hsa:773 up:O00555 equivalent -hsa:7730 up:Q13360 equivalent -hsa:7732 up:Q9ULX5 equivalent -hsa:7733 up:Q9UJW8 equivalent -hsa:7737 up:O15541 equivalent -hsa:7738 up:Q99676 equivalent -hsa:7739 up:B3KPM4 equivalent -hsa:7739 up:O15231 equivalent -hsa:774 up:Q00975 equivalent -hsa:7741 up:B3KTR1 equivalent -hsa:7741 up:B4DVH3 equivalent -hsa:7741 up:Q16670 equivalent -hsa:7743 up:O75820 equivalent -hsa:7745 up:Q15776 equivalent -hsa:7745 up:Q59HG5 equivalent -hsa:7746 up:O15535 equivalent -hsa:7748 up:O14628 equivalent -hsa:775 up:Q13936 equivalent -hsa:775 up:Q59GU3 equivalent -hsa:775 up:Q5V9X9 equivalent -hsa:7750 up:Q9UBW7 equivalent -hsa:7752 up:B3KP91 equivalent -hsa:7752 up:P98182 equivalent -hsa:7753 up:O95125 equivalent -hsa:7755 up:O95201 equivalent -hsa:7756 up:O43670 equivalent -hsa:7757 up:O43345 equivalent -hsa:776 up:Q01668 equivalent -hsa:776 up:Q59GD8 equivalent -hsa:7760 up:A0A0S2Z4L6 equivalent -hsa:7760 up:O14771 equivalent -hsa:7761 up:Q9UL59 equivalent -hsa:7762 up:Q9UL58 equivalent -hsa:7763 up:O76080 equivalent -hsa:7764 up:O75362 equivalent -hsa:7766 up:Q9UK11 equivalent -hsa:7767 up:Q9NZL3 equivalent -hsa:7768 up:Q9UK10 equivalent -hsa:7769 up:Q9NYT6 equivalent -hsa:777 up:Q15878 equivalent -hsa:777 up:Q59FG1 equivalent -hsa:7770 up:Q658S5 equivalent -hsa:7770 up:Q86WZ6 equivalent -hsa:7771 up:Q9UJU3 equivalent -hsa:7772 up:Q9UJW7 equivalent -hsa:7773 up:Q9UIE0 equivalent -hsa:7775 up:Q9UNY5 equivalent -hsa:7776 up:Q9UL36 equivalent -hsa:7779 up:Q9Y6M5 equivalent -hsa:778 up:O60840 equivalent -hsa:7780 up:Q9BRI3 equivalent -hsa:7781 up:Q99726 equivalent -hsa:7782 up:O14863 equivalent -hsa:7783 up:Q05996 equivalent -hsa:7784 up:P21754 equivalent -hsa:7786 up:Q12852 equivalent -hsa:7789 up:P98168 equivalent -hsa:779 up:Q13698 equivalent -hsa:7791 up:Q15942 equivalent -hsa:7791 up:Q96AF9 equivalent -hsa:7798 up:Q86V48 equivalent -hsa:7799 up:Q13029 equivalent -hsa:780 up:Q08345 equivalent -hsa:7802 up:A0A499FIY3 equivalent -hsa:7802 up:O14645 equivalent -hsa:7803 up:Q93096 equivalent -hsa:7804 up:Q14114 equivalent -hsa:7805 up:Q13571 equivalent -hsa:7805 up:Q5TBB8 equivalent -hsa:780776 up:A6NH52 equivalent -hsa:7809 up:Q5VU50 equivalent -hsa:7809 up:Q8WZ55 equivalent -hsa:781 up:P54289 equivalent -hsa:7812 up:O75534 equivalent -hsa:7813 up:O60447 equivalent -hsa:7813 up:Q59FE7 equivalent -hsa:7818 up:P51398 equivalent -hsa:782 up:Q02641 equivalent -hsa:7827 up:Q9NP85 equivalent -hsa:783 up:Q08289 equivalent -hsa:7832 up:P78543 equivalent -hsa:7837 up:Q92626 equivalent -hsa:784 up:P54284 equivalent -hsa:7840 up:Q8TCU4 equivalent -hsa:7841 up:A0A384MDR6 equivalent -hsa:7841 up:Q13724 equivalent -hsa:7844 up:O00237 equivalent -hsa:7846 up:Q71U36 equivalent -hsa:7849 up:Q06710 equivalent -hsa:7849 up:R9W7C9 equivalent -hsa:785 up:O00305 equivalent -hsa:7850 up:P27930 equivalent -hsa:7851 up:Q13021 equivalent -hsa:7852 up:P61073 equivalent -hsa:7855 up:Q13467 equivalent -hsa:7857 up:P13521 equivalent -hsa:786 up:Q06432 equivalent -hsa:7862 up:P55201 equivalent -hsa:7866 up:Q12894 equivalent -hsa:7867 up:Q16644 equivalent -hsa:7869 up:Q13214 equivalent -hsa:7871 up:Q14BN4 equivalent -hsa:7873 up:A8K878 equivalent -hsa:7873 up:P55145 equivalent -hsa:7874 up:Q6U8A4 equivalent -hsa:7874 up:Q93009 equivalent -hsa:7879 up:A0A158RFU6 equivalent -hsa:7879 up:P51149 equivalent -hsa:788 up:O43772 equivalent -hsa:7881 up:Q14722 equivalent -hsa:7884 up:B3KSC5 equivalent -hsa:7884 up:B3KST9 equivalent -hsa:7884 up:Q14493 equivalent -hsa:7884 up:Q53XR2 equivalent -hsa:78986 up:Q9BV47 equivalent -hsa:78987 up:Q96HD1 equivalent -hsa:78988 up:Q9BQC6 equivalent -hsa:78989 up:Q9BWP8 equivalent -hsa:78990 up:Q96DC9 equivalent -hsa:78991 up:Q8NBM8 equivalent -hsa:78992 up:Q9BWQ6 equivalent -hsa:78994 up:Q9BWN1 equivalent -hsa:78995 up:Q8N3J3 equivalent -hsa:78996 up:Q9BWK5 equivalent -hsa:78997 up:Q96MZ0 equivalent -hsa:78999 up:Q6PJG9 equivalent -hsa:790 up:P27708 equivalent -hsa:79000 up:Q9H7T9 equivalent -hsa:79001 up:A0A0S2Z6I4 equivalent -hsa:79001 up:Q9BQB6 equivalent -hsa:79002 up:Q9BQ61 equivalent -hsa:79003 up:Q9H081 equivalent -hsa:79004 up:Q9H467 equivalent -hsa:79005 up:Q9BWG6 equivalent -hsa:79006 up:Q9UJH8 equivalent -hsa:79007 up:Q9H9R9 equivalent -hsa:79008 up:Q9BQ83 equivalent -hsa:79009 up:Q9BQ39 equivalent -hsa:79012 up:A0A140VKD5 equivalent -hsa:79012 up:Q8NCB2 equivalent -hsa:79016 up:Q9BW61 equivalent -hsa:79017 up:A0A090N7V5 equivalent -hsa:79017 up:O75223 equivalent -hsa:79018 up:B3KXL6 equivalent -hsa:79018 up:Q8IVV7 equivalent -hsa:79019 up:Q9NSP4 equivalent -hsa:79020 up:Q9BPX7 equivalent -hsa:79022 up:Q9BVX2 equivalent -hsa:79023 up:Q8NFH4 equivalent -hsa:79024 up:Q9BVW6 equivalent -hsa:79025 up:Q9BVV2 equivalent -hsa:79026 up:Q09666 equivalent -hsa:79027 up:Q68DU4 equivalent -hsa:79027 up:Q8N720 equivalent -hsa:79029 up:Q9BVQ7 equivalent -hsa:7903 up:Q92187 equivalent -hsa:79031 up:Q9H2J4 equivalent -hsa:79033 up:B4DEX5 equivalent -hsa:79033 up:O43414 equivalent -hsa:79034 up:Q96N11 equivalent -hsa:79035 up:Q9BQ15 equivalent -hsa:79036 up:Q9BQD3 equivalent -hsa:79037 up:Q6DKI7 equivalent -hsa:79038 up:Q9BQ24 equivalent -hsa:79039 up:Q8TDD1 equivalent -hsa:79041 up:Q9H6F2 equivalent -hsa:79042 up:Q9BSV6 equivalent -hsa:79047 up:Q96SI1 equivalent -hsa:79048 up:Q96T21 equivalent -hsa:7905 up:Q00765 equivalent -hsa:79050 up:Q9BVI4 equivalent -hsa:79053 up:A0A024R5K5 equivalent -hsa:79053 up:Q9BVK2 equivalent -hsa:79054 up:Q7Z2W7 equivalent -hsa:79054 up:W8DTH1 equivalent -hsa:79056 up:A0A0S2Z5N9 equivalent -hsa:79056 up:Q9BZD6 equivalent -hsa:79057 up:Q9BZD7 equivalent -hsa:79058 up:Q9BZE9 equivalent -hsa:79064 up:A0PJW6 equivalent -hsa:79065 up:Q7Z3C6 equivalent -hsa:79066 up:Q86W50 equivalent -hsa:79068 up:B3KU60 equivalent -hsa:79068 up:Q99770 equivalent -hsa:79068 up:Q9C0B1 equivalent -hsa:79070 up:Q6UW63 equivalent -hsa:79071 up:Q9H5J4 equivalent -hsa:79072 up:Q14CZ7 equivalent -hsa:79073 up:Q9BVC6 equivalent -hsa:79074 up:Q9BVC5 equivalent -hsa:79075 up:Q9BVC3 equivalent -hsa:79077 up:Q9H773 equivalent -hsa:79078 up:Q9BV19 equivalent -hsa:79080 up:Q9H6F5 equivalent -hsa:79081 up:Q9BQE6 equivalent -hsa:79083 up:Q9BV36 equivalent -hsa:79084 up:A0A024R0H7 equivalent -hsa:79084 up:Q9BQA1 equivalent -hsa:79085 up:Q9BV35 equivalent -hsa:79086 up:Q9BQ49 equivalent -hsa:79087 up:Q9BV10 equivalent -hsa:79088 up:Q9BUY5 equivalent -hsa:79089 up:Q71RG4 equivalent -hsa:79090 up:B7TZ90 equivalent -hsa:79090 up:O75865 equivalent -hsa:79091 up:Q9BUU2 equivalent -hsa:79092 up:Q9BXL6 equivalent -hsa:79094 up:Q9BUX1 equivalent -hsa:79095 up:Q9BUW7 equivalent -hsa:790955 up:Q6UW78 equivalent -hsa:79096 up:Q9H6J7 equivalent -hsa:79097 up:Q8IWZ4 equivalent -hsa:79098 up:Q9BW04 equivalent -hsa:79101 up:Q9H5J8 equivalent -hsa:79102 up:Q9BY78 equivalent -hsa:79109 up:Q9BPZ7 equivalent -hsa:7913 up:P35659 equivalent -hsa:79132 up:A0AA51U9C6 equivalent -hsa:79132 up:Q96C10 equivalent -hsa:79133 up:Q5TEU4 equivalent -hsa:79134 up:Q9H7F4 equivalent -hsa:79135 up:Q9BUR5 equivalent -hsa:79137 up:Q8NC44 equivalent -hsa:79139 up:Q9BUN8 equivalent -hsa:79140 up:Q9BUN5 equivalent -hsa:79142 up:Q9BUL5 equivalent -hsa:79143 up:Q96N66 equivalent -hsa:79144 up:Q9H3Y8 equivalent -hsa:79145 up:Q9BUK0 equivalent -hsa:79147 up:Q9H9S5 equivalent -hsa:79148 up:B3KV06 equivalent -hsa:79148 up:Q9H239 equivalent -hsa:79149 up:Q9BUG6 equivalent -hsa:7915 up:P51649 equivalent -hsa:7915 up:X5DQN2 equivalent -hsa:79152 up:Q7L5A8 equivalent -hsa:79153 up:Q7L5L3 equivalent -hsa:79154 up:Q6UWP2 equivalent -hsa:79155 up:Q8NFZ5 equivalent -hsa:79156 up:Q96S99 equivalent -hsa:79157 up:O43934 equivalent -hsa:79158 up:Q3T906 equivalent -hsa:79159 up:Q9UGY1 equivalent -hsa:7916 up:A0A1U9X974 equivalent -hsa:7916 up:P48634 equivalent -hsa:79161 up:Q9BU79 equivalent -hsa:79165 up:Q96BZ8 equivalent -hsa:79169 up:Q9BU76 equivalent -hsa:7917 up:A0A1U9X7A6 equivalent -hsa:7917 up:P46379 equivalent -hsa:79170 up:A0A140VJT1 equivalent -hsa:79170 up:Q9BU68 equivalent -hsa:79171 up:Q9BTD8 equivalent -hsa:79172 up:Q9BU64 equivalent -hsa:79173 up:Q0VDD7 equivalent -hsa:79174 up:Q6UXH1 equivalent -hsa:79175 up:Q6P1L6 equivalent -hsa:79176 up:Q9H469 equivalent -hsa:79177 up:Q9H609 equivalent -hsa:79178 up:Q9BU02 equivalent -hsa:7918 up:A0A024RCU2 equivalent -hsa:7918 up:O95872 equivalent -hsa:79180 up:A0A024QZ77 equivalent -hsa:79180 up:Q96C19 equivalent -hsa:79183 up:B2RA57 equivalent -hsa:79183 up:Q9BTX7 equivalent -hsa:79184 up:P46736 equivalent -hsa:79187 up:Q9BTV5 equivalent -hsa:79188 up:A0A024R2F9 equivalent -hsa:79188 up:Q9BTV4 equivalent -hsa:7919 up:A0A024RCM3 equivalent -hsa:7919 up:Q13838 equivalent -hsa:79190 up:P78412 equivalent -hsa:79191 up:P78415 equivalent -hsa:79192 up:P78414 equivalent -hsa:7920 up:A0A1U9X777 equivalent -hsa:7920 up:O95870 equivalent -hsa:7922 up:A0A024RCX7 equivalent -hsa:7922 up:Q92504 equivalent -hsa:79228 up:Q86W42 equivalent -hsa:7923 up:A0A1U9X7U3 equivalent -hsa:7923 up:Q92506 equivalent -hsa:79230 up:Q8N988 equivalent -hsa:79258 up:B3KS82 equivalent -hsa:79258 up:Q495T6 equivalent -hsa:79269 up:Q5QP82 equivalent -hsa:79290 up:A0A126GVD8 equivalent -hsa:79290 up:Q8NGR1 equivalent -hsa:79295 up:A0A126GW86 equivalent -hsa:79295 up:Q8NGV6 equivalent -hsa:79296 up:Q8NGJ3 equivalent -hsa:793 up:P05937 equivalent -hsa:79310 up:Q8NGV7 equivalent -hsa:79317 up:A0A126GVN5 equivalent -hsa:79317 up:Q8NGD3 equivalent -hsa:7932 up:A0A1U9X844 equivalent -hsa:7932 up:O95918 equivalent -hsa:79324 up:A0A126GVF5 equivalent -hsa:79324 up:Q8NGK1 equivalent -hsa:79334 up:Q8NH07 equivalent -hsa:79339 up:Q9Y5P0 equivalent -hsa:79345 up:A0A126GWB2 equivalent -hsa:79345 up:Q9Y5P1 equivalent -hsa:79346 up:Q8NGB2 equivalent -hsa:7936 up:A0A1U9X830 equivalent -hsa:7936 up:P18615 equivalent -hsa:79363 up:Q9BU20 equivalent -hsa:79364 up:Q2QGD7 equivalent -hsa:79365 up:Q8TAT1 equivalent -hsa:79365 up:Q9C0J9 equivalent -hsa:79366 up:P82970 equivalent -hsa:79368 up:B4E0W2 equivalent -hsa:79368 up:Q96LA5 equivalent -hsa:79369 up:Q9C0J1 equivalent -hsa:79370 up:Q9BZR8 equivalent -hsa:794 up:A0A140VK08 equivalent -hsa:794 up:P22676 equivalent -hsa:7940 up:O00453 equivalent -hsa:79400 up:A3QRJ0 equivalent -hsa:79400 up:Q96PH1 equivalent -hsa:7941 up:Q13093 equivalent -hsa:79411 up:A0A140VJK0 equivalent -hsa:79411 up:Q6UWU2 equivalent -hsa:79412 up:Q53F67 equivalent -hsa:79412 up:Q8NCW0 equivalent -hsa:79413 up:Q9BTP6 equivalent -hsa:79414 up:Q9BTN0 equivalent -hsa:79415 up:Q9BQA9 equivalent -hsa:7942 up:P19484 equivalent -hsa:79441 up:Q68CZ6 equivalent -hsa:79442 up:Q9BYS8 equivalent -hsa:79443 up:Q9BQS8 equivalent -hsa:79444 up:Q96CA5 equivalent -hsa:79446 up:A0A384NPW5 equivalent -hsa:79446 up:Q64LD2 equivalent -hsa:79447 up:Q9BTK6 equivalent -hsa:79465 up:Q9BZM4 equivalent -hsa:79473 up:Q8NH53 equivalent -hsa:79482 up:P0C617 equivalent -hsa:795 up:P29377 equivalent -hsa:79501 up:Q8NH21 equivalent -hsa:79541 up:A0A126GVW2 equivalent -hsa:79541 up:O95047 equivalent -hsa:79544 up:Q8NGD4 equivalent -hsa:79549 up:Q8NGC5 equivalent -hsa:79567 up:Q6ZS17 equivalent -hsa:79568 up:Q8WWC4 equivalent -hsa:7957 up:O95278 equivalent -hsa:79570 up:Q4KMZ8 equivalent -hsa:79571 up:A4D0Z4 equivalent -hsa:79571 up:Q96CN9 equivalent -hsa:79572 up:Q9H7F0 equivalent -hsa:79573 up:A0A384NPL4 equivalent -hsa:79573 up:Q8NBP0 equivalent -hsa:79574 up:Q8TE67 equivalent -hsa:79575 up:B2C6G3 equivalent -hsa:79575 up:Q96I13 equivalent -hsa:79576 up:Q8N5F7 equivalent -hsa:79577 up:Q6P1J9 equivalent -hsa:79581 up:Q9HAB3 equivalent -hsa:79582 up:B4DYB5 equivalent -hsa:79582 up:Q4G1A2 equivalent -hsa:79582 up:Q8N0X2 equivalent -hsa:79583 up:Q9H6L2 equivalent -hsa:79585 up:P57737 equivalent -hsa:79586 up:Q8IZ52 equivalent -hsa:79587 up:B7Z7E6 equivalent -hsa:79587 up:Q9HA77 equivalent -hsa:79589 up:Q8TEB7 equivalent -hsa:79590 up:Q96A35 equivalent -hsa:79591 up:B3KUU6 equivalent -hsa:79591 up:Q5T2E6 equivalent -hsa:79594 up:Q969V5 equivalent -hsa:79595 up:Q9H0E3 equivalent -hsa:79596 up:Q5W0B1 equivalent -hsa:79598 up:Q8IW35 equivalent -hsa:796 up:P01258 equivalent -hsa:79600 up:B4DIB9 equivalent -hsa:79600 up:Q2MV58 equivalent -hsa:79602 up:Q86V24 equivalent -hsa:79603 up:Q53HF9 equivalent -hsa:79603 up:Q9HA82 equivalent -hsa:79605 up:Q8N414 equivalent -hsa:79607 up:Q9BPY3 equivalent -hsa:79608 up:Q7Z5B4 equivalent -hsa:79609 up:Q9H867 equivalent -hsa:79611 up:Q9H6R3 equivalent -hsa:79612 up:A4FU51 equivalent -hsa:79612 up:Q6N069 equivalent -hsa:79613 up:B3KTB6 equivalent -hsa:79613 up:Q9C0B7 equivalent -hsa:79616 up:B4DZA8 equivalent -hsa:79616 up:Q8IV13 equivalent -hsa:79618 up:Q6NT76 equivalent -hsa:79621 up:Q5TBB1 equivalent -hsa:79621 up:Q8N451 equivalent -hsa:79622 up:Q9BV90 equivalent -hsa:79623 up:Q96FL9 equivalent -hsa:79624 up:Q9H993 equivalent -hsa:79625 up:Q8TB73 equivalent -hsa:79626 up:Q6P589 equivalent -hsa:79627 up:Q5TC84 equivalent -hsa:79628 up:A0A514TP98 equivalent -hsa:79628 up:Q8TF17 equivalent -hsa:79629 up:Q9H607 equivalent -hsa:79630 up:Q8WWF1 equivalent -hsa:79631 up:Q7Z2Z2 equivalent -hsa:79632 up:Q6P9G8 equivalent -hsa:79632 up:Q8NB25 equivalent -hsa:79633 up:B3KU84 equivalent -hsa:79633 up:Q6V0I7 equivalent -hsa:79634 up:Q0VDG4 equivalent -hsa:79634 up:Q0VDG5 equivalent -hsa:79635 up:Q6ZUS5 equivalent -hsa:79637 up:Q9H6L4 equivalent -hsa:79639 up:Q6P2H8 equivalent -hsa:79641 up:Q9GZN7 equivalent -hsa:79642 up:Q5FYB0 equivalent -hsa:79643 up:Q96FZ7 equivalent -hsa:79644 up:Q9H8P0 equivalent -hsa:79645 up:Q9HAE3 equivalent -hsa:79646 up:Q9H999 equivalent -hsa:79647 up:Q9H9L7 equivalent -hsa:79648 up:Q8NEM0 equivalent -hsa:79649 up:Q8IWC1 equivalent -hsa:7965 up:Q13155 equivalent -hsa:79650 up:Q9BQ65 equivalent -hsa:79651 up:Q6PJF5 equivalent -hsa:79652 up:Q9BSN7 equivalent -hsa:79654 up:A1A4G1 equivalent -hsa:79654 up:B3KU34 equivalent -hsa:79654 up:Q5T447 equivalent -hsa:79656 up:A0A0S2Z5N0 equivalent -hsa:79656 up:Q7L4P6 equivalent -hsa:79657 up:Q9H6T3 equivalent -hsa:79658 up:A0A2X0SFB3 equivalent -hsa:79658 up:A1A4S6 equivalent -hsa:79659 up:Q8NCM8 equivalent -hsa:79660 up:Q86XI6 equivalent -hsa:79661 up:Q96FI4 equivalent -hsa:79663 up:A8K045 equivalent -hsa:79663 up:Q96EW2 equivalent -hsa:79664 up:Q659A1 equivalent -hsa:79665 up:Q8IX18 equivalent -hsa:79666 up:Q9H8W4 equivalent -hsa:79668 up:B2RB27 equivalent -hsa:79668 up:Q8N3A8 equivalent -hsa:79669 up:Q5BVD1 equivalent -hsa:79670 up:Q5VYS8 equivalent -hsa:79671 up:Q86UT6 equivalent -hsa:79672 up:A0A140VK84 equivalent -hsa:79672 up:Q9HA64 equivalent -hsa:79673 up:Q86UD4 equivalent -hsa:79674 up:Q14D04 equivalent -hsa:79675 up:Q53R41 equivalent -hsa:79676 up:Q6N063 equivalent -hsa:79677 up:A0A2S1ZR87 equivalent -hsa:79677 up:Q96SB8 equivalent -hsa:79679 up:Q7Z7D3 equivalent -hsa:79680 up:Q7L3V2 equivalent -hsa:79682 up:Q71F23 equivalent -hsa:79683 up:Q8IZN3 equivalent -hsa:79684 up:Q6P1R3 equivalent -hsa:79685 up:Q9HAJ7 equivalent -hsa:79689 up:Q687X5 equivalent -hsa:79690 up:Q96RP7 equivalent -hsa:79691 up:Q9H974 equivalent -hsa:79692 up:Q6U7Q0 equivalent -hsa:79693 up:Q86U90 equivalent -hsa:79694 up:Q5SRI9 equivalent -hsa:79695 up:Q8IXK2 equivalent -hsa:79696 up:Q53FD0 equivalent -hsa:79697 up:Q9H6W3 equivalent -hsa:79698 up:Q9H898 equivalent -hsa:79699 up:B4DK95 equivalent -hsa:79699 up:Q9C0D3 equivalent -hsa:797 up:P10092 equivalent -hsa:79701 up:Q6PK18 equivalent -hsa:79703 up:Q8N6T0 equivalent -hsa:79705 up:Q38SD2 equivalent -hsa:79706 up:Q9H875 equivalent -hsa:79707 up:Q5SY16 equivalent -hsa:79709 up:Q8NBJ5 equivalent -hsa:79710 up:B4DTP6 equivalent -hsa:79710 up:Q8TE76 equivalent -hsa:79711 up:B3KT38 equivalent -hsa:79711 up:Q8TEX9 equivalent -hsa:79712 up:Q4AE62 equivalent -hsa:79713 up:Q9H665 equivalent -hsa:79714 up:Q96ER9 equivalent -hsa:79716 up:Q8NDH3 equivalent -hsa:79717 up:Q9HAB8 equivalent -hsa:79718 up:Q9BZK7 equivalent -hsa:79719 up:Q6PD74 equivalent -hsa:79720 up:Q9H9H4 equivalent -hsa:79722 up:Q3KP44 equivalent -hsa:79723 up:Q9H5I1 equivalent -hsa:79724 up:Q9H5H4 equivalent -hsa:79725 up:Q9H5L6 equivalent -hsa:79726 up:Q6PJI9 equivalent -hsa:79727 up:Q9H9Z2 equivalent -hsa:79728 up:Q86YC2 equivalent -hsa:79729 up:A4FU49 equivalent -hsa:79730 up:Q8NE18 equivalent -hsa:79731 up:Q96I59 equivalent -hsa:79733 up:A0AVK6 equivalent -hsa:79734 up:Q8N5Z5 equivalent -hsa:79735 up:Q9HA65 equivalent -hsa:79736 up:Q96QE5 equivalent -hsa:79738 up:Q8TAM1 equivalent -hsa:79739 up:Q6ZT98 equivalent -hsa:79740 up:A8MT70 equivalent -hsa:79741 up:A0A384NKY2 reverse -hsa:79741 up:Q96M83 equivalent -hsa:79742 up:Q8WZ11 equivalent -hsa:79742 up:Q9H7Y0 equivalent -hsa:79744 up:Q96HQ0 equivalent -hsa:79745 up:B7Z936 equivalent -hsa:79745 up:Q8N3C7 equivalent -hsa:79746 up:A0A140VKF9 equivalent -hsa:79746 up:Q96DC8 equivalent -hsa:79747 up:Q8N7X0 equivalent -hsa:79747 up:Q9H5S1 equivalent -hsa:79748 up:Q9HAT1 equivalent -hsa:7975 up:O60675 equivalent -hsa:79750 up:Q9H6B1 equivalent -hsa:79751 up:Q9H936 equivalent -hsa:79752 up:Q8TCF1 equivalent -hsa:79753 up:B1AK66 equivalent -hsa:79753 up:Q8TAD8 equivalent -hsa:79754 up:Q8WXK3 equivalent -hsa:79755 up:Q32MQ0 equivalent -hsa:79758 up:A0PJE2 equivalent -hsa:79759 up:A8K1I4 equivalent -hsa:79759 up:Q96K58 equivalent -hsa:7976 up:Q9NPG1 equivalent -hsa:79760 up:Q9H840 equivalent -hsa:79762 up:Q9H7X2 equivalent -hsa:79763 up:Q96AB3 equivalent -hsa:79767 up:Q96BJ8 equivalent -hsa:79768 up:Q9H079 equivalent -hsa:79770 up:Q7Z345 equivalent -hsa:79770 up:Q96J42 equivalent -hsa:79772 up:B7Z4G1 equivalent -hsa:79772 up:Q6DN14 equivalent -hsa:79774 up:Q5TC63 equivalent -hsa:79776 up:Q86UP3 equivalent -hsa:79777 up:Q8NC06 equivalent -hsa:79778 up:Q6UWK3 equivalent -hsa:79778 up:Q8IY33 equivalent -hsa:7978 up:Q99551 equivalent -hsa:79780 up:Q8N4S0 equivalent -hsa:79781 up:Q86XH1 equivalent -hsa:79782 up:A0A384N629 equivalent -hsa:79782 up:Q6UY01 equivalent -hsa:79783 up:Q9HAC7 equivalent -hsa:79784 up:Q7Z406 equivalent -hsa:79785 up:Q9H628 equivalent -hsa:79786 up:Q8N4N3 equivalent -hsa:79788 up:Q9H7R5 equivalent -hsa:79789 up:Q6NUQ2 equivalent -hsa:79789 up:Q96JQ2 equivalent -hsa:7979 up:P60896 equivalent -hsa:7979 up:Q6IBB7 equivalent -hsa:79791 up:Q5XUX0 equivalent -hsa:79792 up:P57764 equivalent -hsa:79794 up:Q9H741 equivalent -hsa:79796 up:Q9H6U8 equivalent -hsa:79797 up:Q9H9D4 equivalent -hsa:79798 up:Q96C12 equivalent -hsa:79799 up:Q6UWM9 equivalent -hsa:7980 up:P48307 equivalent -hsa:79800 up:Q8N187 equivalent -hsa:79801 up:Q8NEM2 equivalent -hsa:79802 up:Q6UWX4 equivalent -hsa:79803 up:Q86YV9 equivalent -hsa:79805 up:A8K4K8 equivalent -hsa:79805 up:Q86V25 equivalent -hsa:79807 up:Q8NEC7 equivalent -hsa:79809 up:A8KA77 equivalent -hsa:79809 up:Q7Z4L5 equivalent -hsa:79810 up:B3KPU6 equivalent -hsa:79810 up:Q8WV60 equivalent -hsa:79811 up:Q9NWH9 equivalent -hsa:79812 up:Q9H8L6 equivalent -hsa:79813 up:Q9H9B1 equivalent -hsa:79814 up:Q9BSE5 equivalent -hsa:79815 up:Q9H841 equivalent -hsa:79816 up:Q9H808 equivalent -hsa:79817 up:Q86TA1 equivalent -hsa:79818 up:Q9H707 equivalent -hsa:79819 up:A0AVI9 equivalent -hsa:79819 up:Q5VTH9 equivalent -hsa:7982 up:Q9NRC1 equivalent -hsa:7982 up:X5DRA0 equivalent -hsa:79820 up:B3KWW9 equivalent -hsa:79820 up:Q9H7T0 equivalent -hsa:79822 up:B4DXL2 equivalent -hsa:79823 up:Q7Z624 equivalent -hsa:79825 up:Q9HA90 equivalent -hsa:79827 up:B4E3S3 equivalent -hsa:79827 up:Q9H6B4 equivalent -hsa:79828 up:Q9H825 equivalent -hsa:79829 up:Q86UY6 equivalent -hsa:79830 up:A0A1B0GXA6 equivalent -hsa:79830 up:Q5SVZ6 equivalent -hsa:79830 up:Q9H5R2 equivalent -hsa:79831 up:A0A0S2Z5T1 equivalent -hsa:79831 up:Q8N371 equivalent -hsa:79832 up:B3KWV1 equivalent -hsa:79832 up:Q2KHR3 equivalent -hsa:79833 up:Q8WXD5 equivalent -hsa:79834 up:Q9H792 equivalent -hsa:79836 up:A8K2D3 equivalent -hsa:79836 up:Q496Y0 equivalent -hsa:79837 up:B3KQV3 equivalent -hsa:79837 up:Q8TBX8 equivalent -hsa:79838 up:Q6UXY8 equivalent -hsa:79839 up:Q68D86 equivalent -hsa:7984 up:Q12774 equivalent -hsa:79840 up:Q9H9Q4 equivalent -hsa:79841 up:A0A140VKH9 equivalent -hsa:79841 up:Q5U5Z8 equivalent -hsa:79843 up:Q9H5Z6 equivalent -hsa:79844 up:Q9H8X9 equivalent -hsa:79845 up:Q9H9V4 equivalent -hsa:79846 up:A5D8W1 equivalent -hsa:79847 up:Q14CX5 equivalent -hsa:79848 up:Q1MSJ5 equivalent -hsa:79849 up:Q86UT5 equivalent -hsa:79850 up:Q8TBR7 equivalent -hsa:79852 up:Q9H6B9 equivalent -hsa:79853 up:Q53R12 equivalent -hsa:79856 up:Q96L94 equivalent -hsa:79858 up:B4DM56 equivalent -hsa:79858 up:Q8NG66 equivalent -hsa:79861 up:A6NHL2 equivalent -hsa:79862 up:Q96BR6 equivalent -hsa:79863 up:Q8N0V3 equivalent -hsa:79864 up:Q6NUN7 equivalent -hsa:79865 up:Q5T2D2 equivalent -hsa:79866 up:A0A087WV86 equivalent -hsa:79866 up:Q6PGQ7 equivalent -hsa:79867 up:Q96GX1 equivalent -hsa:79868 up:Q9NP73 equivalent -hsa:79869 up:Q8N684 equivalent -hsa:79870 up:Q8WXS3 equivalent -hsa:79871 up:Q8IXW5 equivalent -hsa:79872 up:Q75N03 equivalent -hsa:79873 up:Q6ZVK8 equivalent -hsa:79874 up:Q9H5N1 equivalent -hsa:79875 up:Q6ZMP0 equivalent -hsa:79876 up:Q9GZZ9 equivalent -hsa:79877 up:Q8WVC6 equivalent -hsa:79879 up:Q9H6E4 equivalent -hsa:7988 up:A0A090N8N3 equivalent -hsa:7988 up:B3KQE6 equivalent -hsa:7988 up:Q9UDV6 equivalent -hsa:79882 up:Q6PJT7 equivalent -hsa:79883 up:B7Z3M0 equivalent -hsa:79883 up:Q6PEZ8 equivalent -hsa:79884 up:Q05CN5 equivalent -hsa:79884 up:Q49MG5 equivalent -hsa:79885 up:Q96DB2 equivalent -hsa:79886 up:Q9H8G2 equivalent -hsa:79887 up:Q6P4A8 equivalent -hsa:79888 up:Q8NF37 equivalent -hsa:79890 up:Q6NSK7 equivalent -hsa:79890 up:Q86U22 equivalent -hsa:79890 up:Q8TB24 equivalent -hsa:79891 up:Q8TAW3 equivalent -hsa:79892 up:Q9BTE3 equivalent -hsa:79893 up:Q9H3C7 equivalent -hsa:79894 up:Q499Z4 equivalent -hsa:79895 up:Q6PG43 equivalent -hsa:79895 up:Q8TF62 equivalent -hsa:79896 up:Q8IYQ7 equivalent -hsa:79896 up:Q9H6P9 equivalent -hsa:79897 up:Q9H633 equivalent -hsa:79898 up:Q6PF04 equivalent -hsa:79899 up:B3KNU3 equivalent -hsa:79899 up:Q6MZQ0 equivalent -hsa:799 up:P30988 equivalent -hsa:79901 up:Q53TN4 equivalent -hsa:79902 up:Q9BW27 equivalent -hsa:79903 up:A0A384NYU5 equivalent -hsa:79903 up:Q9H7X0 equivalent -hsa:79905 up:Q7Z402 equivalent -hsa:79906 up:Q5T089 equivalent -hsa:79908 up:Q6UX41 equivalent -hsa:7991 up:Q13454 equivalent -hsa:79912 up:Q8WU10 equivalent -hsa:79913 up:Q9H9F9 equivalent -hsa:79915 up:Q96QE3 equivalent -hsa:79917 up:Q9H6Y5 equivalent -hsa:79918 up:Q8TBK2 equivalent -hsa:79919 up:B3KU29 equivalent -hsa:79919 up:Q08AI8 equivalent -hsa:79921 up:A0A384NKK0 equivalent -hsa:79921 up:Q96EI5 equivalent -hsa:79922 up:Q6IN84 equivalent -hsa:79923 up:A8K4D1 equivalent -hsa:79923 up:Q9H9S0 equivalent -hsa:79924 up:Q7Z4H4 equivalent -hsa:79925 up:A0A140VKD0 equivalent -hsa:79925 up:Q9C093 equivalent -hsa:79927 up:Q8TAY7 equivalent -hsa:79929 up:Q9H9H5 equivalent -hsa:7993 up:O00124 equivalent -hsa:79930 up:D6RAM3 equivalent -hsa:79930 up:Q7L591 equivalent -hsa:79931 up:Q96KP6 equivalent -hsa:79932 up:Q8IZA0 equivalent -hsa:79933 up:Q9H987 equivalent -hsa:79934 up:Q96D53 equivalent -hsa:79935 up:Q9H8S5 equivalent -hsa:79937 up:Q9BZ76 equivalent -hsa:79939 up:Q96K37 equivalent -hsa:7994 up:A5PKX7 equivalent -hsa:7994 up:Q92794 equivalent -hsa:79943 up:Q9H7X3 equivalent -hsa:79944 up:Q9H9P8 equivalent -hsa:79947 up:Q86SQ9 equivalent -hsa:79948 up:Q6T4P5 equivalent -hsa:79949 up:A0A384P5Z2 equivalent -hsa:79949 up:Q5SXH7 equivalent -hsa:79953 up:Q9H7V2 equivalent -hsa:79954 up:Q9BSC4 equivalent -hsa:79955 up:Q9H5P4 equivalent -hsa:79956 up:Q6ZMD3 equivalent -hsa:79956 up:Q7Z2K6 equivalent -hsa:79957 up:Q5TCK7 equivalent -hsa:79957 up:Q6TCH4 equivalent -hsa:79958 up:Q8IV53 equivalent -hsa:79959 up:B4DP81 equivalent -hsa:79959 up:Q8TAP6 equivalent -hsa:79960 up:B4E2E2 equivalent -hsa:79960 up:Q6IE81 equivalent -hsa:79961 up:Q9H6A0 equivalent -hsa:79962 up:Q8N4W6 equivalent -hsa:79966 up:Q86SK9 equivalent -hsa:79966 up:Q86UC8 equivalent -hsa:79968 up:Q9H967 equivalent -hsa:79969 up:A0A1U9X797 equivalent -hsa:79969 up:Q5SQI0 equivalent -hsa:79971 up:Q5T9L3 equivalent -hsa:79973 up:Q9H7R0 equivalent -hsa:79974 up:A4D0V7 equivalent -hsa:79977 up:Q6ISB3 equivalent -hsa:79979 up:Q96GJ1 equivalent -hsa:79980 up:Q9H410 equivalent -hsa:79981 up:Q8N878 equivalent -hsa:79982 up:Q8TBM8 equivalent -hsa:79983 up:Q8WVV4 equivalent -hsa:79987 up:B3KQM1 equivalent -hsa:79987 up:Q4LDE5 equivalent -hsa:79987 up:Q5JB40 equivalent -hsa:79989 up:A0AVF1 equivalent -hsa:79990 up:Q7Z736 equivalent -hsa:79991 up:Q9H668 equivalent -hsa:79993 up:A1L3X0 equivalent -hsa:79998 up:Q8N9V6 equivalent -hsa:800 up:Q05682 equivalent -hsa:8000 up:O43653 equivalent -hsa:80000 up:Q9C091 equivalent -hsa:80003 up:A6NKB5 equivalent -hsa:80003 up:B3KNZ5 equivalent -hsa:80004 up:Q9H6T0 equivalent -hsa:80005 up:Q68DL4 equivalent -hsa:80005 up:Q9H7D0 equivalent -hsa:80006 up:A5PLN9 equivalent -hsa:80007 up:Q9H8K7 equivalent -hsa:80008 up:Q8N614 equivalent -hsa:8001 up:O75311 equivalent -hsa:8001 up:Q9UPF3 equivalent -hsa:80010 up:Q9H9A7 equivalent -hsa:80011 up:Q9GZU8 equivalent -hsa:80012 up:B4E2T1 equivalent -hsa:80012 up:Q8NDX5 equivalent -hsa:80013 up:Q9H8M7 equivalent -hsa:80014 up:Q6AWC2 equivalent -hsa:80017 up:Q7Z3D6 equivalent -hsa:80018 up:Q14CX7 equivalent -hsa:80019 up:Q9HAC8 equivalent -hsa:80020 up:Q8IWF2 equivalent -hsa:80021 up:Q0P6H9 equivalent -hsa:80022 up:Q96JP2 equivalent -hsa:80022 up:Q9H614 equivalent -hsa:80023 up:Q9GZP1 equivalent -hsa:80024 up:Q6J4K2 equivalent -hsa:80025 up:Q9BZ23 equivalent -hsa:80028 up:Q96D16 equivalent -hsa:80028 up:Q96ME1 equivalent -hsa:80031 up:Q8NFY4 equivalent -hsa:80032 up:A0A0C4DGQ3 reverse -hsa:80032 up:Q9HAH1 equivalent -hsa:80034 up:Q8WYN3 equivalent -hsa:80036 up:Q9HCF6 equivalent -hsa:80045 up:Q5UAW9 equivalent -hsa:80055 up:Q75T13 equivalent -hsa:80059 up:Q6ZT31 equivalent -hsa:80059 up:Q86VH4 equivalent -hsa:80063 up:Q5U623 equivalent -hsa:80067 up:F5H7W1 reverse -hsa:80067 up:Q5H9S7 equivalent -hsa:80070 up:P59510 equivalent -hsa:80071 up:Q0P6D6 equivalent -hsa:80095 up:Q8WXB4 equivalent -hsa:80095 up:Q9H7U2 equivalent -hsa:80097 up:Q6NZ67 equivalent -hsa:801 up:B4DJ51 equivalent -hsa:801 up:P0DP23 equivalent -hsa:801 up:P0DP24 equivalent -hsa:801 up:P0DP25 equivalent -hsa:80108 up:Q6ZN57 equivalent -hsa:80110 up:Q8N883 equivalent -hsa:80114 up:Q9H694 equivalent -hsa:80115 up:Q6UXY1 equivalent -hsa:80117 up:Q8N4G2 equivalent -hsa:80119 up:Q9H611 equivalent -hsa:80122 up:Q56UN5 equivalent -hsa:80124 up:Q96JH7 equivalent -hsa:80125 up:Q8N5R6 equivalent -hsa:80127 up:Q8ND07 equivalent -hsa:80128 up:Q7Z4K8 equivalent -hsa:80129 up:Q8IYT3 equivalent -hsa:8013 up:Q92570 equivalent -hsa:80131 up:Q6NSJ5 equivalent -hsa:80133 up:Q5TGP6 equivalent -hsa:80135 up:Q9H9Y2 equivalent -hsa:80139 up:Q9H7S9 equivalent -hsa:80142 up:B3KPZ2 equivalent -hsa:80142 up:Q9H7Z7 equivalent -hsa:80143 up:Q9BRV8 equivalent -hsa:80144 up:Q86XX4 equivalent -hsa:80145 up:Q6I9Y2 equivalent -hsa:80146 up:Q8NBZ7 equivalent -hsa:80148 up:Q8N2U9 equivalent -hsa:80149 up:Q5D1E8 equivalent -hsa:80150 up:A0A024R573 equivalent -hsa:80150 up:Q7L266 equivalent -hsa:80152 up:B3KPB2 equivalent -hsa:80152 up:Q96BT3 equivalent -hsa:80153 up:Q96F86 equivalent -hsa:80155 up:B2RBE5 equivalent -hsa:80155 up:Q9BXJ9 equivalent -hsa:80157 up:Q9H720 equivalent -hsa:80162 up:A0A024R1Z9 equivalent -hsa:80162 up:Q32M88 equivalent -hsa:80164 up:Q9H6K5 equivalent -hsa:80168 up:Q3SYC2 equivalent -hsa:80169 up:Q2NKJ3 equivalent -hsa:80173 up:Q96LB3 equivalent -hsa:80174 up:Q8NFT6 equivalent -hsa:80176 up:Q96BD6 equivalent -hsa:80177 up:Q8N699 equivalent -hsa:80178 up:Q7L2K0 equivalent -hsa:80179 up:B4E218 equivalent -hsa:80179 up:B7Z1T7 equivalent -hsa:80179 up:Q96H55 equivalent -hsa:80183 up:Q9H714 equivalent -hsa:80184 up:O15078 equivalent -hsa:80184 up:Q05BJ6 equivalent -hsa:80185 up:Q6NXR4 equivalent -hsa:8019 up:Q15059 equivalent -hsa:80194 up:Q9H6X4 equivalent -hsa:80195 up:Q8TBM7 equivalent -hsa:80196 up:Q969K3 equivalent -hsa:80198 up:Q53ES5 equivalent -hsa:80198 up:Q96NY9 equivalent -hsa:80199 up:Q9BT04 equivalent -hsa:80201 up:B3KT70 equivalent -hsa:80201 up:Q2TB90 equivalent -hsa:80204 up:Q86XK2 equivalent -hsa:80205 up:Q3L8U1 equivalent -hsa:80206 up:Q2V2M9 equivalent -hsa:80207 up:Q9H6K4 equivalent -hsa:80208 up:Q96JI7 equivalent -hsa:80209 up:Q86XN7 equivalent -hsa:8021 up:P35658 equivalent -hsa:80210 up:Q7Z3E5 equivalent -hsa:80212 up:Q53HC0 equivalent -hsa:80213 up:Q9BRN9 equivalent -hsa:80216 up:Q96QP1 equivalent -hsa:80217 up:Q8NDM7 equivalent -hsa:80218 up:Q9GZZ1 equivalent -hsa:80219 up:Q9H8M1 equivalent -hsa:8022 up:F1T0D5 equivalent -hsa:8022 up:Q9UBR4 equivalent -hsa:80221 up:Q96CM8 equivalent -hsa:80222 up:Q9BW92 equivalent -hsa:80223 up:Q6WKZ4 equivalent -hsa:80224 up:Q8TB37 equivalent -hsa:80224 up:X5D2R5 equivalent -hsa:80227 up:Q9BRP4 equivalent -hsa:80228 up:Q96SN7 equivalent -hsa:80230 up:Q96T51 equivalent -hsa:80231 up:Q9HAI6 equivalent -hsa:80232 up:Q9H7D7 equivalent -hsa:80233 up:A4ZI32 equivalent -hsa:80233 up:Q0VG06 equivalent -hsa:80235 up:B4DL68 equivalent -hsa:80235 up:Q86VD9 equivalent -hsa:80237 up:Q9HB65 equivalent -hsa:80243 up:Q70Z35 equivalent -hsa:80254 up:Q96MT8 equivalent -hsa:80255 up:Q8WV83 equivalent -hsa:80256 up:Q7L5A3 equivalent -hsa:80258 up:Q5JST6 equivalent -hsa:80262 up:Q9BSU1 equivalent -hsa:80263 up:Q9H8W5 equivalent -hsa:80264 up:A8K360 equivalent -hsa:80264 up:Q9H8G1 equivalent -hsa:80267 up:Q9BZQ6 equivalent -hsa:8027 up:Q92783 equivalent -hsa:80270 up:Q9H2F3 equivalent -hsa:80271 up:Q96DU7 equivalent -hsa:80273 up:Q9HAV7 equivalent -hsa:80274 up:A0JP65 equivalent -hsa:80274 up:Q6ZS56 equivalent -hsa:80274 up:Q86TI6 equivalent -hsa:80274 up:Q8IWY4 equivalent -hsa:80279 up:Q96JB5 equivalent -hsa:8028 up:P55197 equivalent -hsa:8028 up:Q59EQ6 equivalent -hsa:8028 up:Q6N002 equivalent -hsa:8029 up:O60494 equivalent -hsa:80298 up:Q49AM1 equivalent -hsa:8030 up:Q05CP8 equivalent -hsa:8030 up:Q16204 equivalent -hsa:80301 up:Q8TD55 equivalent -hsa:80303 up:Q9BUP0 equivalent -hsa:80304 up:Q9H6R7 equivalent -hsa:80305 up:Q9H4I3 equivalent -hsa:80306 up:Q9H204 equivalent -hsa:80308 up:Q8NFF5 equivalent -hsa:80309 up:Q2M3C7 equivalent -hsa:8031 up:Q13772 equivalent -hsa:8031 up:Q96E88 equivalent -hsa:80310 up:Q9GZP0 equivalent -hsa:80311 up:Q96M94 equivalent -hsa:80311 up:V9HWF1 equivalent -hsa:80312 up:Q8NFU7 equivalent -hsa:80313 up:A0A140VJN2 equivalent -hsa:80313 up:B3KUK5 equivalent -hsa:80313 up:Q9C0I9 equivalent -hsa:80314 up:Q9H2F5 equivalent -hsa:80315 up:Q17RY0 equivalent -hsa:80317 up:Q9BRR0 equivalent -hsa:80318 up:Q5VSY0 equivalent -hsa:80319 up:J9JIF5 equivalent -hsa:80320 up:B3KXP2 equivalent -hsa:80320 up:Q3SY56 equivalent -hsa:80321 up:A0A140VJG2 equivalent -hsa:80321 up:Q8NHQ1 equivalent -hsa:80323 up:Q9H2F9 equivalent -hsa:80324 up:E5KMT5 equivalent -hsa:80324 up:Q9Y606 equivalent -hsa:80325 up:Q969K4 equivalent -hsa:80326 up:A0A2K8FR47 equivalent -hsa:80326 up:Q9GZT5 equivalent -hsa:80328 up:Q9BZM5 equivalent -hsa:80329 up:Q9BZM6 equivalent -hsa:80331 up:Q6AHX3 equivalent -hsa:80331 up:Q9H3Z4 equivalent -hsa:80332 up:Q9BZ11 equivalent -hsa:80333 up:Q6PIL6 equivalent -hsa:80335 up:Q6UXN9 equivalent -hsa:80339 up:Q9NST1 equivalent -hsa:8034 up:P16260 equivalent -hsa:80341 up:Q8N4F0 equivalent -hsa:80342 up:B3KWQ9 equivalent -hsa:80342 up:Q9Y228 equivalent -hsa:80343 up:Q5TEA6 equivalent -hsa:80344 up:B3KSW2 equivalent -hsa:80344 up:Q59GN6 equivalent -hsa:80344 up:Q8TEB1 equivalent -hsa:80345 up:Q9H4T2 equivalent -hsa:80346 up:Q9H6H4 equivalent -hsa:80347 up:Q13057 equivalent -hsa:80349 up:Q9GZS3 equivalent -hsa:80351 up:Q9H2K2 equivalent -hsa:80352 up:Q96QB5 equivalent -hsa:80352 up:Q9H2S5 equivalent -hsa:8036 up:Q9UQ13 equivalent -hsa:8038 up:A8K6G4 reverse -hsa:8038 up:O43184 equivalent -hsa:80380 up:Q9BQ51 equivalent -hsa:80381 up:Q5ZPR3 equivalent -hsa:8045 up:Q02833 equivalent -hsa:8048 up:A2TDB8 equivalent -hsa:8048 up:P50461 equivalent -hsa:805 up:B4DJ51 equivalent -hsa:805 up:P0DP23 equivalent -hsa:805 up:P0DP24 equivalent -hsa:805 up:P0DP25 equivalent -hsa:8050 up:O00330 equivalent -hsa:8061 up:A0A0S2Z595 equivalent -hsa:8061 up:P15407 equivalent -hsa:8065 up:Q93034 equivalent -hsa:80700 up:Q9BZV1 equivalent -hsa:80704 up:Q9BZV2 equivalent -hsa:80705 up:A0A218MIY9 equivalent -hsa:80705 up:Q9BZW7 equivalent -hsa:80709 up:Q64FY1 equivalent -hsa:80709 up:Q7Z591 equivalent -hsa:80712 up:Q8N693 equivalent -hsa:80714 up:Q9BYU1 equivalent -hsa:80723 up:Q8TBE7 equivalent -hsa:80724 up:Q6JQN1 equivalent -hsa:80725 up:Q9C0H9 equivalent -hsa:80726 up:Q9H0B3 equivalent -hsa:80727 up:Q8WYU9 equivalent -hsa:80727 up:Q9C0H2 equivalent -hsa:80728 up:Q9C0H5 equivalent -hsa:8073 up:Q12974 equivalent -hsa:80731 up:Q9C0I4 equivalent -hsa:80736 up:A0A140VJH4 equivalent -hsa:80736 up:Q53GD3 equivalent -hsa:80737 up:A0A1U9X8T7 equivalent -hsa:80737 up:Q9Y334 equivalent -hsa:80739 up:B0V023 equivalent -hsa:80739 up:O95866 equivalent -hsa:8074 up:Q9GZV9 equivalent -hsa:80740 up:A0A1U9X7Z1 equivalent -hsa:80740 up:O95867 equivalent -hsa:80741 up:A0A1U9X7Y6 equivalent -hsa:80741 up:Q5SRR4 equivalent -hsa:80742 up:P79522 equivalent -hsa:80742 up:Q96QB9 equivalent -hsa:80745 up:Q969Z2 equivalent -hsa:80745 up:Q9BTF0 equivalent -hsa:80746 up:Q8NCE0 equivalent -hsa:80755 up:Q9BTE6 equivalent -hsa:80757 up:Q9BTD3 equivalent -hsa:80758 up:Q8TB68 equivalent -hsa:80759 up:Q4VXA5 equivalent -hsa:8076 up:B3KW70 equivalent -hsa:8076 up:Q13361 equivalent -hsa:80760 up:C9J2H1 equivalent -hsa:80760 up:Q86UX2 equivalent -hsa:80762 up:Q9BT67 equivalent -hsa:80763 up:Q9BT56 equivalent -hsa:80764 up:Q9BT49 equivalent -hsa:80765 up:Q9NSY2 equivalent -hsa:80772 up:Q5TA50 equivalent -hsa:80772 up:S4S694 equivalent -hsa:80774 up:A0A140VJN0 equivalent -hsa:80774 up:Q9BT23 equivalent -hsa:80775 up:Q53S58 equivalent -hsa:80776 up:Q9BPU9 equivalent -hsa:80777 up:O43169 equivalent -hsa:80778 up:Q8IZ26 equivalent -hsa:8078 up:A0A140VJZ1 equivalent -hsa:8078 up:P45974 equivalent -hsa:80781 up:P39060 equivalent -hsa:80789 up:Q6P9B9 equivalent -hsa:8079 up:A8K1F4 equivalent -hsa:8079 up:Q15773 equivalent -hsa:8079 up:Q5U0N1 equivalent -hsa:80790 up:Q8IY22 equivalent -hsa:808 up:B4DJ51 equivalent -hsa:808 up:P0DP23 equivalent -hsa:808 up:P0DP24 equivalent -hsa:808 up:P0DP25 equivalent -hsa:80816 up:Q9C0F0 equivalent -hsa:80817 up:Q9C0F1 equivalent -hsa:80818 up:Q9C0F3 equivalent -hsa:8082 up:Q14714 equivalent -hsa:80820 up:Q7L9B9 equivalent -hsa:80821 up:Q8NEL9 equivalent -hsa:80823 up:Q6PI77 equivalent -hsa:80824 up:Q9BY84 equivalent -hsa:80829 up:Q96JP5 equivalent -hsa:80830 up:B3KTP4 equivalent -hsa:80830 up:Q9BWW8 equivalent -hsa:80831 up:Q9BWW9 equivalent -hsa:80832 up:Q9BPW4 equivalent -hsa:80833 up:O95236 equivalent -hsa:80834 up:Q8TE23 equivalent -hsa:80835 up:Q7RTX1 equivalent -hsa:8085 up:O14686 equivalent -hsa:8085 up:Q59FG6 equivalent -hsa:8085 up:Q6PIA1 equivalent -hsa:80851 up:Q7L8J4 equivalent -hsa:80852 up:Q9C0E4 equivalent -hsa:80853 up:Q6ZMT4 equivalent -hsa:80854 up:Q8WTS6 equivalent -hsa:80856 up:Q9C0E8 equivalent -hsa:8086 up:Q9NRG9 equivalent -hsa:80863 up:A0A1U9X8D6 equivalent -hsa:80863 up:Q99946 equivalent -hsa:80864 up:A0A1U9X7N9 equivalent -hsa:80864 up:Q99944 equivalent -hsa:8087 up:P51114 equivalent -hsa:8089 up:O95619 equivalent -hsa:80895 up:Q9H0C8 equivalent -hsa:80896 up:Q9BXD5 equivalent -hsa:8091 up:P52926 equivalent -hsa:8092 up:Q15699 equivalent -hsa:8092 up:V9HWA7 equivalent -hsa:80975 up:Q9H3S3 equivalent -hsa:8099 up:O14519 equivalent -hsa:81 up:A0A0S2Z3G9 equivalent -hsa:81 up:O43707 equivalent -hsa:810 up:P27482 equivalent -hsa:8100 up:A0A140VJL7 equivalent -hsa:8100 up:B3KX42 equivalent -hsa:8100 up:Q13099 equivalent -hsa:81025 up:A0A654IBV8 equivalent -hsa:81025 up:P57773 equivalent -hsa:81027 up:Q9H4B7 equivalent -hsa:81029 up:Q9H1J7 equivalent -hsa:81030 up:Q9H171 equivalent -hsa:81031 up:O95528 equivalent -hsa:81033 up:Q9H252 equivalent -hsa:81034 up:Q9H2D1 equivalent -hsa:81035 up:Q5KU26 equivalent -hsa:81037 up:Q96KA5 equivalent -hsa:81050 up:Q9NZP5 equivalent -hsa:8106 up:Q86U42 equivalent -hsa:81061 up:A0A126GWF9 equivalent -hsa:81061 up:Q8NG94 equivalent -hsa:81099 up:A0A126GWN0 equivalent -hsa:81099 up:Q8NGA8 equivalent -hsa:811 up:P27797 equivalent -hsa:811 up:V9HW88 equivalent -hsa:8110 up:Q92784 equivalent -hsa:8111 up:A1A5B2 equivalent -hsa:8111 up:Q15743 equivalent -hsa:81127 up:Q8NH41 equivalent -hsa:8115 up:P56279 equivalent -hsa:81168 up:A0A126GVE3 equivalent -hsa:81168 up:Q8NGG0 equivalent -hsa:8120 up:Q13367 equivalent -hsa:8125 up:A0A384P5U2 equivalent -hsa:8125 up:P39687 equivalent -hsa:8128 up:B2R9U8 equivalent -hsa:8128 up:Q92186 equivalent -hsa:81282 up:Q8NGK0 equivalent -hsa:81285 up:A0A126GVK0 equivalent -hsa:81285 up:Q9H255 equivalent -hsa:813 up:O43852 equivalent -hsa:81300 up:Q8NGL7 equivalent -hsa:81309 up:A0A2C9F2M4 equivalent -hsa:81309 up:Q8NGM1 equivalent -hsa:8131 up:Q12980 equivalent -hsa:8131 up:Q9BTE2 equivalent -hsa:81318 up:A0A126GWJ2 equivalent -hsa:81318 up:Q8NH83 equivalent -hsa:81327 up:A0A126GW87 equivalent -hsa:81327 up:Q8NH70 equivalent -hsa:81328 up:Q8NGL6 equivalent -hsa:81341 up:Q8NGF6 equivalent -hsa:8139 up:A0A0S2Z4W2 equivalent -hsa:8139 up:B3KTC3 equivalent -hsa:8139 up:Q9H2C0 equivalent -hsa:81392 up:Q8NHA4 equivalent -hsa:81399 up:A0A126GV92 equivalent -hsa:81399 up:Q6IEY1 equivalent -hsa:814 up:Q16566 equivalent -hsa:8140 up:Q01650 equivalent -hsa:81442 up:A0A126GV57 equivalent -hsa:81442 up:Q8NGY6 equivalent -hsa:81448 up:A0A126GV58 equivalent -hsa:81448 up:Q8NGY2 equivalent -hsa:81466 up:A0A126GWR8 equivalent -hsa:81466 up:Q8NG80 equivalent -hsa:81469 up:A0A126GVX0 equivalent -hsa:81469 up:Q8NGZ4 equivalent -hsa:81470 up:Q8NGZ5 equivalent -hsa:81472 up:Q8N628 equivalent -hsa:8148 up:Q92804 equivalent -hsa:81488 up:P0CAP2 equivalent -hsa:81488 up:Q6EEV4 equivalent -hsa:81490 up:Q9BVG9 equivalent -hsa:81491 up:A8K1C4 equivalent -hsa:81491 up:Q9BZJ6 equivalent -hsa:81492 up:Q9H0K4 equivalent -hsa:81493 up:Q9H7C4 equivalent -hsa:81494 up:Q9BXR6 equivalent -hsa:815 up:A8K161 equivalent -hsa:815 up:Q7LDD5 equivalent -hsa:815 up:Q8IWE0 equivalent -hsa:815 up:Q9UQM7 equivalent -hsa:81501 up:Q9H295 equivalent -hsa:81502 up:A0A0S2Z5V7 equivalent -hsa:81502 up:Q8TCT9 equivalent -hsa:8153 up:P52198 equivalent -hsa:81532 up:Q70IA6 equivalent -hsa:81533 up:Q8TB96 equivalent -hsa:81537 up:Q9BX95 equivalent -hsa:81539 up:Q9H2H9 equivalent -hsa:81542 up:Q9H3N1 equivalent -hsa:81543 up:Q9BY71 equivalent -hsa:81544 up:Q8WTR4 equivalent -hsa:81545 up:Q6AZE0 equivalent -hsa:81545 up:Q6PIJ6 equivalent -hsa:81550 up:Q9H7E2 equivalent -hsa:81551 up:Q9H169 equivalent -hsa:81552 up:Q96AW1 equivalent -hsa:81553 up:Q9H0Q0 equivalent -hsa:81554 up:Q96I51 equivalent -hsa:81555 up:Q969M3 equivalent -hsa:81556 up:B4DWZ3 equivalent -hsa:81556 up:Q96SY0 equivalent -hsa:81557 up:Q96JG8 equivalent -hsa:81558 up:Q9C073 equivalent -hsa:81559 up:Q96F44 equivalent -hsa:81562 up:Q9H0V9 equivalent -hsa:81563 up:Q9H246 equivalent -hsa:81565 up:Q9GZM8 equivalent -hsa:81566 up:Q9H175 equivalent -hsa:81567 up:Q8NBS9 equivalent -hsa:81569 up:Q9H568 equivalent -hsa:81570 up:A0A140VK11 equivalent -hsa:81570 up:Q9H078 equivalent -hsa:81572 up:A0A384NKN4 equivalent -hsa:81572 up:Q9NUG6 equivalent -hsa:81573 up:Q8N6S4 equivalent -hsa:81575 up:Q96LR9 equivalent -hsa:81576 up:B7Z1U2 equivalent -hsa:81576 up:P13994 equivalent -hsa:81577 up:Q3B7J2 equivalent -hsa:81578 up:A0A158RFW1 equivalent -hsa:81578 up:B7ZLK3 equivalent -hsa:81578 up:Q96P44 equivalent -hsa:81579 up:Q542Y6 equivalent -hsa:81579 up:Q9BZM1 equivalent -hsa:816 up:A4D2J9 equivalent -hsa:816 up:Q13554 equivalent -hsa:81602 up:Q9BWV3 equivalent -hsa:81603 up:Q9BZR9 equivalent -hsa:81605 up:Q9BTM9 equivalent -hsa:81606 up:Q53QV2 equivalent -hsa:81607 up:K4PZ75 equivalent -hsa:81607 up:Q96NY8 equivalent -hsa:81608 up:Q6UN15 equivalent -hsa:81609 up:Q96L92 equivalent -hsa:8161 up:P38432 equivalent -hsa:81610 up:Q9H4H8 equivalent -hsa:81611 up:Q9BTT0 equivalent -hsa:81614 up:Q8N8Q9 equivalent -hsa:81615 up:Q8TC26 equivalent -hsa:81616 up:A0A140VJD4 equivalent -hsa:81616 up:Q5FVE4 equivalent -hsa:81617 up:Q9H9S4 equivalent -hsa:81618 up:Q9NQX7 equivalent -hsa:81619 up:Q8NG11 equivalent -hsa:81620 up:Q9H211 equivalent -hsa:81621 up:Q96I82 equivalent -hsa:81622 up:Q9H1C4 equivalent -hsa:81623 up:A0A384MDP8 equivalent -hsa:81623 up:Q9BYW3 equivalent -hsa:81624 up:B4DPV3 equivalent -hsa:81624 up:Q9NSV4 equivalent -hsa:81626 up:Q9BZQ2 equivalent -hsa:81627 up:Q7Z2T5 equivalent -hsa:81628 up:B4DKI8 equivalent -hsa:81628 up:Q9Y3Q8 equivalent -hsa:81629 up:Q96PN8 equivalent -hsa:81631 up:Q658J6 equivalent -hsa:81631 up:Q9GZQ8 equivalent -hsa:8165 up:A0A140VK05 equivalent -hsa:8165 up:B4DN86 equivalent -hsa:8165 up:Q92667 equivalent -hsa:81669 up:Q96S94 equivalent -hsa:81671 up:Q96GC9 equivalent -hsa:81688 up:Q9GZU0 equivalent -hsa:81689 up:Q9BUE6 equivalent -hsa:81691 up:Q96IC2 equivalent -hsa:81693 up:Q9BXJ7 equivalent -hsa:81696 up:A0A126GV99 equivalent -hsa:81696 up:Q9UGF6 equivalent -hsa:81697 up:A0A126GWD0 equivalent -hsa:81697 up:Q9GZK3 equivalent -hsa:817 up:Q13557 equivalent -hsa:8170 up:Q15849 equivalent -hsa:81704 up:Q8NF50 equivalent -hsa:81706 up:Q8TAE6 equivalent -hsa:8174 up:Q13477 equivalent -hsa:8175 up:Q05DF2 equivalent -hsa:8175 up:Q15428 equivalent -hsa:8178 up:P55199 equivalent -hsa:81786 up:Q9C029 equivalent -hsa:81788 up:B4E0Y5 equivalent -hsa:81788 up:Q9H093 equivalent -hsa:81789 up:Q17RP2 equivalent -hsa:81790 up:Q96K19 equivalent -hsa:81792 up:P58397 equivalent -hsa:81793 up:Q9BXR5 equivalent -hsa:81794 up:A0A0A0MQW6 equivalent -hsa:81794 up:Q59FE5 equivalent -hsa:81794 up:Q6ZN14 equivalent -hsa:81794 up:Q9H324 equivalent -hsa:81796 up:B3KUC7 equivalent -hsa:81796 up:Q9H2Y9 equivalent -hsa:81797 up:D2XT27 equivalent -hsa:81797 up:Q9UGF7 equivalent -hsa:818 up:Q13555 equivalent -hsa:81831 up:Q8NC67 equivalent -hsa:81832 up:Q8TDF5 equivalent -hsa:81833 up:Q9HBV2 equivalent -hsa:81839 up:Q8TAA9 equivalent -hsa:81844 up:Q9BRZ2 equivalent -hsa:81846 up:Q86WG5 equivalent -hsa:81847 up:Q9NTX7 equivalent -hsa:81848 up:Q9C004 equivalent -hsa:81849 up:Q9BVH7 equivalent -hsa:81850 up:Q8IUG1 equivalent -hsa:81851 up:Q07627 equivalent -hsa:81853 up:Q9NUH8 equivalent -hsa:81855 up:Q9BWM7 equivalent -hsa:81856 up:Q8N823 equivalent -hsa:81857 up:Q71SY5 equivalent -hsa:81858 up:Q6PJD5 equivalent -hsa:81858 up:Q9H0F6 equivalent -hsa:8187 up:Q16600 equivalent -hsa:81870 up:Q9BYP9 equivalent -hsa:81871 up:Q9BYQ5 equivalent -hsa:81872 up:Q9BYU5 equivalent -hsa:81873 up:A0A024R897 equivalent -hsa:81873 up:B3KPC7 equivalent -hsa:81873 up:Q9BPX5 equivalent -hsa:81875 up:Q9H9L3 equivalent -hsa:81876 up:Q9H0U4 equivalent -hsa:81887 up:Q9Y4W2 equivalent -hsa:81888 up:Q5T013 equivalent -hsa:81889 up:Q6P587 equivalent -hsa:8189 up:Q92797 equivalent -hsa:81890 up:Q71RF8 equivalent -hsa:81890 up:Q9BXR0 equivalent -hsa:81892 up:Q9GZT3 equivalent -hsa:81894 up:Q96A46 equivalent -hsa:819 up:P49069 equivalent -hsa:8190 up:Q16674 equivalent -hsa:8192 up:Q16740 equivalent -hsa:81926 up:Q96GS6 equivalent -hsa:81928 up:Q9BTV7 equivalent -hsa:81929 up:Q96EE3 equivalent -hsa:8193 up:A0A8I5QL29 equivalent -hsa:8193 up:Q92782 equivalent -hsa:81930 up:Q8NI77 equivalent -hsa:81931 up:P35789 equivalent -hsa:81931 up:Q6NS90 equivalent -hsa:81932 up:Q9BSH5 equivalent -hsa:8195 up:B7Z3W9 equivalent -hsa:8195 up:Q9NPJ1 equivalent -hsa:820 up:A0A384NPR0 equivalent -hsa:820 up:J3KNB4 equivalent -hsa:820 up:P49913 equivalent -hsa:8200 up:F1T0J1 equivalent -hsa:8200 up:P43026 equivalent -hsa:8202 up:Q9Y6Q9 equivalent -hsa:8204 up:A8K171 equivalent -hsa:8204 up:P48552 equivalent -hsa:8208 up:Q13112 equivalent -hsa:8209 up:A0A0B4J2D5 equivalent -hsa:8209 up:A0A140VKB0 equivalent -hsa:8209 up:P0DPI2 equivalent -hsa:821 up:P27824 equivalent -hsa:8214 up:Q14129 equivalent -hsa:8214 up:X5D7D2 equivalent -hsa:8216 up:A0A384NL67 equivalent -hsa:8216 up:Q8N653 equivalent -hsa:8218 up:P53675 equivalent -hsa:822 up:B2R9S4 equivalent -hsa:822 up:P40121 equivalent -hsa:822 up:V9HW69 equivalent -hsa:8220 up:Q96DF8 equivalent -hsa:8224 up:O14994 equivalent -hsa:8225 up:O43824 equivalent -hsa:8226 up:Q08623 equivalent -hsa:8227 up:Q02040 equivalent -hsa:8227 up:Q05DA9 equivalent -hsa:8228 up:P41247 equivalent -hsa:823 up:B2RDI5 equivalent -hsa:823 up:B4DWH5 reverse -hsa:823 up:P07384 equivalent -hsa:8233 up:Q15696 equivalent -hsa:8239 up:Q6P468 equivalent -hsa:8239 up:Q86X58 equivalent -hsa:8239 up:Q93008 equivalent -hsa:824 up:P17655 equivalent -hsa:824 up:Q59EF6 equivalent -hsa:8241 up:A0A0S2Z4W4 equivalent -hsa:8241 up:P98175 equivalent -hsa:8242 up:P41229 equivalent -hsa:8243 up:A0A384MR33 equivalent -hsa:8243 up:Q14683 equivalent -hsa:8243 up:Q68EN4 equivalent -hsa:825 up:P20807 equivalent -hsa:826 up:P04632 equivalent -hsa:8260 up:P41227 equivalent -hsa:8263 up:P23610 equivalent -hsa:8266 up:P11441 equivalent -hsa:8269 up:Q14656 equivalent -hsa:827 up:Q9Y6Q1 equivalent -hsa:8270 up:Q14657 equivalent -hsa:8273 up:P09131 equivalent -hsa:8277 up:P51854 equivalent -hsa:828 up:A0A384NYV7 equivalent -hsa:828 up:Q13938 equivalent -hsa:828 up:Q96ET4 equivalent -hsa:8284 up:A0A384MR42 equivalent -hsa:8284 up:Q9BY66 equivalent -hsa:8287 up:O00507 equivalent -hsa:8288 up:P11678 equivalent -hsa:8289 up:O14497 equivalent -hsa:829 up:P52907 equivalent -hsa:8290 up:Q16695 equivalent -hsa:8291 up:O75923 equivalent -hsa:8292 up:Q9Y215 equivalent -hsa:8293 up:O75920 equivalent -hsa:8294 up:B2R4R0 equivalent -hsa:8294 up:P62805 equivalent -hsa:8295 up:Q9Y4A5 equivalent -hsa:830 up:A4D0V4 equivalent -hsa:830 up:P47755 equivalent -hsa:8301 up:Q13492 equivalent -hsa:8302 up:O43908 equivalent -hsa:8303 up:O75324 equivalent -hsa:8309 up:Q99424 equivalent -hsa:831 up:P20810 equivalent -hsa:8310 up:O15254 equivalent -hsa:8312 up:A0A0S2Z4R0 equivalent -hsa:8312 up:O15169 equivalent -hsa:8313 up:Q9Y2T1 equivalent -hsa:8314 up:Q92560 equivalent -hsa:8315 up:Q59H81 equivalent -hsa:8315 up:Q7Z569 equivalent -hsa:8317 up:A0A384MTU6 equivalent -hsa:8317 up:O00311 equivalent -hsa:8318 up:O75419 equivalent -hsa:832 up:A0A384MR50 equivalent -hsa:832 up:P47756 equivalent -hsa:832 up:Q7L4N0 equivalent -hsa:8320 up:B7Z4K0 equivalent -hsa:8320 up:O95936 equivalent -hsa:8321 up:Q9UP38 equivalent -hsa:8322 up:Q9ULV1 equivalent -hsa:8323 up:O60353 equivalent -hsa:8324 up:O75084 equivalent -hsa:8325 up:Q9H461 equivalent -hsa:83259 up:Q70LR4 equivalent -hsa:83259 up:Q9BZA8 equivalent -hsa:8326 up:O00144 equivalent -hsa:8328 up:Q5VTD9 equivalent -hsa:8329 up:A4FTV9 equivalent -hsa:8329 up:P0C0S8 equivalent -hsa:833 up:P49589 equivalent -hsa:8330 up:A4FTV9 equivalent -hsa:8330 up:P0C0S8 equivalent -hsa:8331 up:Q99878 equivalent -hsa:8332 up:A4FTV9 equivalent -hsa:8332 up:P0C0S8 equivalent -hsa:8334 up:Q93077 equivalent -hsa:8335 up:P04908 equivalent -hsa:8335 up:Q08AJ9 equivalent -hsa:8336 up:A4FTV9 equivalent -hsa:8336 up:P0C0S8 equivalent -hsa:8337 up:Q6FI13 equivalent -hsa:8338 up:Q16777 equivalent -hsa:8339 up:B2R4S9 equivalent -hsa:8339 up:P62807 equivalent -hsa:83394 up:Q9BZ71 equivalent -hsa:834 up:A8K249 equivalent -hsa:834 up:P29466 equivalent -hsa:8340 up:Q99880 equivalent -hsa:83401 up:Q9HB03 equivalent -hsa:8341 up:Q99877 equivalent -hsa:83416 up:Q96RD9 equivalent -hsa:83417 up:Q96PJ5 equivalent -hsa:8342 up:Q99879 equivalent -hsa:8343 up:B2R4S9 equivalent -hsa:8343 up:P62807 equivalent -hsa:83439 up:Q9HCS4 equivalent -hsa:8344 up:B2R4S9 equivalent -hsa:8344 up:P62807 equivalent -hsa:83440 up:Q9BRR6 equivalent -hsa:83442 up:Q9H299 equivalent -hsa:83443 up:Q9BWJ5 equivalent -hsa:83444 up:Q9C086 equivalent -hsa:83445 up:F1T0A1 equivalent -hsa:83445 up:Q2KHT4 equivalent -hsa:83446 up:Q6NSX1 equivalent -hsa:83447 up:Q9H0C2 equivalent -hsa:83448 up:Q9H0K6 equivalent -hsa:83449 up:Q8TBY8 equivalent -hsa:8345 up:Q93079 equivalent -hsa:83450 up:B3KSC6 equivalent -hsa:83450 up:Q9H069 equivalent -hsa:83451 up:Q8NFV4 equivalent -hsa:83452 up:Q9H082 equivalent -hsa:8346 up:B2R4S9 equivalent -hsa:8346 up:P62807 equivalent -hsa:83460 up:Q9BV81 equivalent -hsa:83461 up:Q99618 equivalent -hsa:83463 up:Q9BW11 equivalent -hsa:83464 up:Q8WW43 equivalent -hsa:83468 up:Q9H1C3 equivalent -hsa:8347 up:B2R4S9 equivalent -hsa:8347 up:P62807 equivalent -hsa:83473 up:Q8IYT4 equivalent -hsa:83475 up:Q9BU89 equivalent -hsa:83478 up:Q8N264 equivalent -hsa:83479 up:Q5T1V6 equivalent -hsa:8348 up:P23527 equivalent -hsa:83480 up:Q9BZE2 equivalent -hsa:83481 up:P58107 equivalent -hsa:83482 up:Q9BWW7 equivalent -hsa:83483 up:Q9BX97 equivalent -hsa:8349 up:Q16778 equivalent -hsa:835 up:A0A0S2Z3H1 equivalent -hsa:835 up:P42575 equivalent -hsa:8350 up:P68431 equivalent -hsa:8351 up:P68431 equivalent -hsa:8352 up:P68431 equivalent -hsa:8353 up:P68431 equivalent -hsa:83538 up:Q96NG3 equivalent -hsa:83539 up:Q7L1S5 equivalent -hsa:8354 up:P68431 equivalent -hsa:83540 up:Q9BZD4 equivalent -hsa:83541 up:Q9BQ89 equivalent -hsa:83543 up:Q9BQI0 equivalent -hsa:83544 up:Q4LDG9 equivalent -hsa:83546 up:Q9BSG5 equivalent -hsa:83547 up:Q96NA2 equivalent -hsa:83548 up:Q96JB2 equivalent -hsa:83549 up:Q9HA47 equivalent -hsa:8355 up:P68431 equivalent -hsa:83550 up:Q96P66 equivalent -hsa:83551 up:Q969N4 equivalent -hsa:83552 up:Q9BY79 equivalent -hsa:8356 up:P68431 equivalent -hsa:8357 up:P68431 equivalent -hsa:8358 up:P68431 equivalent -hsa:8359 up:B2R4R0 equivalent -hsa:8359 up:P62805 equivalent -hsa:83590 up:A0A090N8Q3 equivalent -hsa:83590 up:Q9BVT8 equivalent -hsa:83591 up:Q9H0W7 equivalent -hsa:83592 up:Q96JD6 equivalent -hsa:83593 up:A8K5F3 equivalent -hsa:83593 up:Q8WWW0 equivalent -hsa:83594 up:Q9BQG2 equivalent -hsa:83595 up:Q9BT81 equivalent -hsa:83596 up:Q9HB09 equivalent -hsa:83597 up:Q9BQQ7 equivalent -hsa:836 up:P42574 equivalent -hsa:8360 up:B2R4R0 equivalent -hsa:8360 up:P62805 equivalent -hsa:83604 up:Q9BQJ4 equivalent -hsa:83605 up:Q9BSQ5 equivalent -hsa:83606 up:Q96NT3 equivalent -hsa:83607 up:Q6DCA0 equivalent -hsa:83608 up:Q32NC0 equivalent -hsa:8361 up:B2R4R0 equivalent -hsa:8361 up:P62805 equivalent -hsa:8362 up:B2R4R0 equivalent -hsa:8362 up:P62805 equivalent -hsa:8363 up:B2R4R0 equivalent -hsa:8363 up:P62805 equivalent -hsa:83636 up:Q9NSK7 equivalent -hsa:83637 up:Q8NF64 equivalent -hsa:83638 up:Q9H3H3 equivalent -hsa:83639 up:Q9BY14 equivalent -hsa:8364 up:B2R4R0 equivalent -hsa:8364 up:P62805 equivalent -hsa:83640 up:Q9BTL3 equivalent -hsa:83641 up:Q9H098 equivalent -hsa:83642 up:Q9BVL4 equivalent -hsa:83643 up:Q9BQI4 equivalent -hsa:83648 up:Q96KS9 equivalent -hsa:8365 up:B2R4R0 equivalent -hsa:8365 up:P62805 equivalent -hsa:83650 up:Q96KT7 equivalent -hsa:83657 up:A0A140VJH9 equivalent -hsa:83657 up:Q8TF09 equivalent -hsa:83658 up:Q9NP97 equivalent -hsa:83659 up:Q969V4 equivalent -hsa:8366 up:B2R4R0 equivalent -hsa:8366 up:P62805 equivalent -hsa:83660 up:Q9Y4G6 equivalent -hsa:83661 up:Q9BY19 equivalent -hsa:83666 up:Q8IXQ6 equivalent -hsa:83667 up:P58004 equivalent -hsa:8367 up:B2R4R0 equivalent -hsa:8367 up:P62805 equivalent -hsa:8368 up:B2R4R0 equivalent -hsa:8368 up:P62805 equivalent -hsa:8369 up:Q99525 equivalent -hsa:83690 up:Q9H336 equivalent -hsa:83692 up:A0A024RC16 equivalent -hsa:83692 up:Q8TCZ2 equivalent -hsa:83693 up:I6L975 equivalent -hsa:83693 up:Q3SXM5 equivalent -hsa:83694 up:B4DSP6 equivalent -hsa:83694 up:Q9Y6S9 equivalent -hsa:83695 up:Q9BSD3 equivalent -hsa:83696 up:Q96Q05 equivalent -hsa:83697 up:Q96Q91 equivalent -hsa:83698 up:Q9BXU9 equivalent -hsa:83699 up:Q9UJC5 equivalent -hsa:837 up:P49662 equivalent -hsa:8370 up:B2R4R0 equivalent -hsa:8370 up:P62805 equivalent -hsa:83700 up:Q9BX67 equivalent -hsa:83706 up:Q86UX7 equivalent -hsa:83707 up:Q86TN4 equivalent -hsa:83714 up:Q9BQI9 equivalent -hsa:83715 up:B1AK53 equivalent -hsa:83716 up:A0A140VK80 equivalent -hsa:83716 up:Q9H0B8 equivalent -hsa:83719 up:P61236 equivalent -hsa:8372 up:O43820 equivalent -hsa:83723 up:F1T0F5 equivalent -hsa:83723 up:Q71RH2 equivalent -hsa:83729 up:P58166 equivalent -hsa:83732 up:Q9BRS2 equivalent -hsa:83733 up:Q9H1K4 equivalent -hsa:83734 up:Q9H0Y0 equivalent -hsa:83737 up:Q96J02 equivalent -hsa:83740 up:P0C5Z0 equivalent -hsa:83741 up:Q7Z6R9 equivalent -hsa:83742 up:Q9BSK0 equivalent -hsa:83743 up:Q9BQ67 equivalent -hsa:83744 up:Q5JVG2 equivalent -hsa:83746 up:A0A0S2Z5X6 equivalent -hsa:83746 up:Q969R5 equivalent -hsa:83752 up:Q86WA8 equivalent -hsa:83755 up:Q9BQ66 equivalent -hsa:83756 up:Q7RTX0 equivalent -hsa:83758 up:P82980 equivalent -hsa:83759 up:Q9BQ04 equivalent -hsa:83786 up:A8K6L3 equivalent -hsa:83786 up:Q9BZ67 equivalent -hsa:83787 up:Q8N2F6 equivalent -hsa:8379 up:Q9Y6D9 equivalent -hsa:83795 up:Q96T55 equivalent -hsa:838 up:P51878 equivalent -hsa:8382 up:A0A0S2Z4L9 equivalent -hsa:8382 up:P56597 equivalent -hsa:8383 up:A0A126GWA2 equivalent -hsa:8383 up:Q9P1Q5 equivalent -hsa:83844 up:Q9BXU7 equivalent -hsa:83849 up:Q9BQS2 equivalent -hsa:83850 up:A0FGR9 equivalent -hsa:83852 up:Q96T68 equivalent -hsa:83853 up:Q96C74 equivalent -hsa:83854 up:Q8NI99 equivalent -hsa:83855 up:Q9BXK1 equivalent -hsa:83856 up:Q8N450 equivalent -hsa:83856 up:Q9BXM9 equivalent -hsa:83857 up:Q8IUR5 equivalent -hsa:83858 up:Q5T9A4 equivalent -hsa:8386 up:A0A126GVQ6 equivalent -hsa:8386 up:P58170 equivalent -hsa:83860 up:Q5VWG9 equivalent -hsa:83861 up:Q86UC2 equivalent -hsa:83862 up:Q9BXJ8 equivalent -hsa:8387 up:P30953 equivalent -hsa:83871 up:Q9BZG1 equivalent -hsa:83872 up:Q96RW7 equivalent -hsa:83873 up:G4XH66 equivalent -hsa:83873 up:Q9BZJ8 equivalent -hsa:83874 up:A7E244 equivalent -hsa:83874 up:B7ZVY9 equivalent -hsa:83874 up:Q9BXI6 equivalent -hsa:83875 up:B2RCV8 equivalent -hsa:83875 up:Q9BYV7 equivalent -hsa:83876 up:Q9BYG7 equivalent -hsa:83877 up:Q9BX73 equivalent -hsa:83878 up:Q8N6Y0 equivalent -hsa:83879 up:Q9BWT1 equivalent -hsa:8388 up:A0A126GW81 equivalent -hsa:8388 up:P47887 equivalent -hsa:83881 up:Q9H2W2 equivalent -hsa:83882 up:F1T0E7 equivalent -hsa:83882 up:F1T0E8 equivalent -hsa:83882 up:Q6PJ65 equivalent -hsa:83882 up:Q9H1Z9 equivalent -hsa:83884 up:Q9BXI2 equivalent -hsa:83886 up:Q9BQR3 equivalent -hsa:83887 up:Q9BWV7 equivalent -hsa:83888 up:Q9BYJ0 equivalent -hsa:83889 up:Q6ZQQ6 equivalent -hsa:83890 up:A0A140VJV2 equivalent -hsa:83890 up:Q9BWV2 equivalent -hsa:83891 up:Q9H3E2 equivalent -hsa:83892 up:Q9H3F6 equivalent -hsa:83893 up:A0A140VJV8 equivalent -hsa:83893 up:Q9BXB7 equivalent -hsa:83894 up:A0A140VK62 equivalent -hsa:83894 up:Q8NA56 equivalent -hsa:83894 up:Q8TC83 equivalent -hsa:83895 up:Q9BYS1 equivalent -hsa:83896 up:Q9BYR8 equivalent -hsa:83897 up:Q9BYR7 equivalent -hsa:83899 up:Q9BYQ4 equivalent -hsa:839 up:P55212 equivalent -hsa:8390 up:A0A126GW57 equivalent -hsa:8390 up:P47890 equivalent -hsa:83900 up:Q9BYQ3 equivalent -hsa:83901 up:Q9BYQ0 equivalent -hsa:83902 up:Q9BYP8 equivalent -hsa:83903 up:A0PJ70 equivalent -hsa:83903 up:Q8TF76 equivalent -hsa:8392 up:A0A126GWB3 equivalent -hsa:8392 up:P47888 equivalent -hsa:83930 up:O95772 equivalent -hsa:83931 up:Q8N2I9 equivalent -hsa:83932 up:Q9H040 equivalent -hsa:83933 up:Q969S8 equivalent -hsa:83937 up:Q9H2L5 equivalent -hsa:83938 up:Q9H2I8 equivalent -hsa:83939 up:Q9BY44 equivalent -hsa:8394 up:Q99755 equivalent -hsa:83940 up:Q6P1N9 equivalent -hsa:83941 up:Q9BX74 equivalent -hsa:83942 up:A0ZT98 equivalent -hsa:83942 up:Q9BXA7 equivalent -hsa:83943 up:A4D0S9 equivalent -hsa:83943 up:Q96T52 equivalent -hsa:8395 up:O14986 equivalent -hsa:8395 up:Q7KYT6 equivalent -hsa:83953 up:Q8WWV6 equivalent -hsa:83959 up:Q8NBS3 equivalent -hsa:8396 up:P78356 equivalent -hsa:8398 up:O60733 equivalent -hsa:83982 up:Q9H2X8 equivalent -hsa:83983 up:A0A024R7Q5 equivalent -hsa:83983 up:Q9BXA6 equivalent -hsa:83985 up:Q9H2V7 equivalent -hsa:83986 up:Q9H0X4 equivalent -hsa:83987 up:G8IFA7 equivalent -hsa:83987 up:Q9H0W5 equivalent -hsa:83988 up:B2RB70 equivalent -hsa:83988 up:P61601 equivalent -hsa:83989 up:Q8WUF8 equivalent -hsa:8399 up:O15496 equivalent -hsa:83990 up:Q9BX63 equivalent -hsa:83992 up:Q20BG9 equivalent -hsa:83992 up:Q8WZ74 equivalent -hsa:83998 up:Q9BYZ8 equivalent -hsa:83999 up:Q96MU8 equivalent -hsa:840 up:P55210 equivalent -hsa:84000 up:Q9BYE2 equivalent -hsa:84002 up:Q9BYG0 equivalent -hsa:8402 up:Q02978 equivalent -hsa:8402 up:Q6IBH0 equivalent -hsa:8403 up:O95416 equivalent -hsa:84033 up:Q5VST9 equivalent -hsa:84034 up:Q9BXX0 equivalent -hsa:8404 up:Q14515 equivalent -hsa:8405 up:O43791 equivalent -hsa:84056 up:B3KUK7 equivalent -hsa:84056 up:Q9BW62 equivalent -hsa:84057 up:Q9BWT6 equivalent -hsa:84058 up:Q9H977 equivalent -hsa:84059 up:Q8WXG9 equivalent -hsa:8406 up:P78539 equivalent -hsa:84060 up:Q5RL73 equivalent -hsa:84061 up:A0A087WU53 equivalent -hsa:84061 up:Q9H0U3 equivalent -hsa:84062 up:A0A0S2Z5U8 equivalent -hsa:84062 up:Q96EV8 equivalent -hsa:84063 up:Q6UWL6 equivalent -hsa:84064 up:Q9H0R4 equivalent -hsa:84064 up:V9HW73 equivalent -hsa:84065 up:Q9H0R3 equivalent -hsa:84066 up:Q5T0J7 equivalent -hsa:84067 up:Q8N612 equivalent -hsa:84068 up:Q0GE19 equivalent -hsa:84069 up:Q494U1 equivalent -hsa:8407 up:A0A384MTL2 equivalent -hsa:8407 up:P37802 equivalent -hsa:84070 up:Q8IYM0 equivalent -hsa:84071 up:Q8NEN0 equivalent -hsa:84072 up:A0A140VKG9 equivalent -hsa:84072 up:Q86X24 equivalent -hsa:84073 up:Q8TBZ2 equivalent -hsa:84074 up:Q9H0J4 equivalent -hsa:84075 up:Q5H9T9 equivalent -hsa:84076 up:A0A140VKC2 equivalent -hsa:84076 up:Q9H0I9 equivalent -hsa:84077 up:Q8ND61 equivalent -hsa:84078 up:Q8WVZ9 equivalent -hsa:84079 up:Q96NW4 equivalent -hsa:8408 up:O75385 equivalent -hsa:84080 up:Q9H0I2 equivalent -hsa:84081 up:Q9H0G5 equivalent -hsa:84083 up:Q5FWF4 equivalent -hsa:84084 up:Q9H0N0 equivalent -hsa:84085 up:Q8TB52 equivalent -hsa:8409 up:Q9UBK9 equivalent -hsa:841 up:Q14790 equivalent -hsa:84100 up:Q9H0F7 equivalent -hsa:84101 up:Q9H0E7 equivalent -hsa:84102 up:Q96JW4 equivalent -hsa:84103 up:Q53FE4 equivalent -hsa:84105 up:Q9H0N5 equivalent -hsa:84106 up:Q96QH2 equivalent -hsa:84107 up:Q8N9L1 equivalent -hsa:84108 up:Q9BYE7 equivalent -hsa:84109 up:Q96P65 equivalent -hsa:8411 up:Q15075 equivalent -hsa:8412 up:A0A384MTS3 equivalent -hsa:8412 up:O75815 equivalent -hsa:84124 up:Q53GI3 equivalent -hsa:84125 up:A0A140VJN5 equivalent -hsa:84125 up:Q96JM4 equivalent -hsa:84126 up:Q8WXE1 equivalent -hsa:84128 up:Q8IWA0 equivalent -hsa:84129 up:Q709F0 equivalent -hsa:84131 up:Q5JTW2 equivalent -hsa:84132 up:Q9H9J4 equivalent -hsa:84133 up:Q9ULT6 equivalent -hsa:84134 up:Q969M1 equivalent -hsa:84135 up:Q8TED0 equivalent -hsa:84138 up:Q96CW6 equivalent -hsa:84140 up:Q3B820 equivalent -hsa:84141 up:Q9H8M9 equivalent -hsa:84142 up:Q6UWZ7 equivalent -hsa:84144 up:Q5VT97 equivalent -hsa:84146 up:A7E234 equivalent -hsa:84146 up:Q9H582 equivalent -hsa:84148 up:Q9H7Z6 equivalent -hsa:84152 up:B3KVQ9 equivalent -hsa:84152 up:Q9UD71 equivalent -hsa:84153 up:Q8TDP1 equivalent -hsa:84154 up:Q9H7B2 equivalent -hsa:84159 up:Q14865 equivalent -hsa:8416 up:O76027 equivalent -hsa:84162 up:Q2LD37 equivalent -hsa:84163 up:Q86UP8 equivalent -hsa:84164 up:Q9H1I8 equivalent -hsa:84166 up:Q6MZW3 equivalent -hsa:84166 up:Q86WI3 equivalent -hsa:84166 up:Q9H6Y0 equivalent -hsa:84167 up:M0R2B3 reverse -hsa:84167 up:Q9H6X5 equivalent -hsa:84168 up:Q53FL1 equivalent -hsa:84168 up:Q9H6X2 equivalent -hsa:8417 up:O15400 equivalent -hsa:84171 up:Q96JB6 equivalent -hsa:84172 up:B7Z1W6 equivalent -hsa:84172 up:Q9H9Y6 equivalent -hsa:84173 up:Q96FG2 equivalent -hsa:84174 up:Q9H6Q3 equivalent -hsa:84179 up:Q6UXD7 equivalent -hsa:84181 up:Q8TD26 equivalent -hsa:84182 up:Q4G0A6 equivalent -hsa:84186 up:Q05DN1 equivalent -hsa:84186 up:Q8N3Z6 equivalent -hsa:84187 up:Q5U3C3 equivalent -hsa:84188 up:Q8WVX9 equivalent -hsa:84189 up:Q9H5Y7 equivalent -hsa:8419 up:Q13515 equivalent -hsa:84190 up:Q8N6Q8 equivalent -hsa:84191 up:Q9H5X1 equivalent -hsa:84193 up:Q86TU7 equivalent -hsa:84196 up:Q86UV5 equivalent -hsa:84197 up:Q9H5K3 equivalent -hsa:842 up:P55211 equivalent -hsa:84203 up:A0A140VJY8 equivalent -hsa:84203 up:Q86VQ3 equivalent -hsa:84206 up:Q6ZN04 equivalent -hsa:84210 up:A0A384NKR9 equivalent -hsa:84210 up:Q5TYW2 equivalent -hsa:84215 up:Q9H0D2 equivalent -hsa:84216 up:Q9H0C3 equivalent -hsa:84217 up:Q9H0C1 equivalent -hsa:84218 up:A6NER0 equivalent -hsa:84219 up:Q96S15 equivalent -hsa:84220 up:Q99666 equivalent -hsa:84220 up:V9HWE4 equivalent -hsa:84221 up:Q9H0A9 equivalent -hsa:84223 up:Q9H095 equivalent -hsa:84223 up:Q9H5C8 equivalent -hsa:84224 up:Q9H094 equivalent -hsa:84225 up:Q9H091 equivalent -hsa:84226 up:Q68DN1 equivalent -hsa:84229 up:Q8IY82 equivalent -hsa:84230 up:Q8TDW0 equivalent -hsa:84231 up:B3KQY7 equivalent -hsa:84231 up:Q6Q0C0 equivalent -hsa:84232 up:Q9H063 equivalent -hsa:84233 up:Q9H061 equivalent -hsa:84236 up:Q8TEB9 equivalent -hsa:84239 up:B3KU47 equivalent -hsa:84239 up:Q4VNC1 equivalent -hsa:8424 up:O75936 equivalent -hsa:84240 up:Q8N567 equivalent -hsa:84243 up:Q9NUE0 equivalent -hsa:84245 up:Q9BV20 equivalent -hsa:84246 up:Q9BTT4 equivalent -hsa:84247 up:Q6ICC9 equivalent -hsa:84247 up:Q9BQJ3 equivalent -hsa:84248 up:Q96QD9 equivalent -hsa:84249 up:Q9BQI7 equivalent -hsa:8425 up:B3KXY6 equivalent -hsa:8425 up:Q8N2S1 equivalent -hsa:84250 up:I6L9F1 equivalent -hsa:84250 up:Q9BQI6 equivalent -hsa:84251 up:Q9BQI5 equivalent -hsa:84253 up:Q5VVW2 equivalent -hsa:84254 up:Q8N5S9 equivalent -hsa:84255 up:Q8NCC5 equivalent -hsa:84256 up:Q4VC44 equivalent -hsa:84258 up:Q9BQG1 equivalent -hsa:84259 up:Q9BTE7 equivalent -hsa:84260 up:Q9BT92 equivalent -hsa:84261 up:Q5XUX1 equivalent -hsa:84262 up:Q9BT73 equivalent -hsa:84263 up:Q6YN16 equivalent -hsa:84264 up:Q6PII5 equivalent -hsa:84265 up:Q9BT43 equivalent -hsa:84266 up:Q9BT30 equivalent -hsa:84267 up:Q5T6V5 equivalent -hsa:84268 up:Q86UA6 equivalent -hsa:84269 up:A0A2U9EWT9 equivalent -hsa:84269 up:Q9BSY4 equivalent -hsa:8427 up:A0A090N8Y3 equivalent -hsa:8427 up:Q86YG2 equivalent -hsa:8427 up:Q9UDV7 equivalent -hsa:84270 up:Q96LW7 equivalent -hsa:84271 up:Q9BY77 equivalent -hsa:84272 up:Q9BSR8 equivalent -hsa:84273 up:Q8NC60 equivalent -hsa:84274 up:Q5HYK3 equivalent -hsa:84275 up:Q9BSK2 equivalent -hsa:84276 up:B2R7Q3 equivalent -hsa:84276 up:Q9BSH3 equivalent -hsa:84277 up:B3KSU4 equivalent -hsa:84277 up:Q96LL9 equivalent -hsa:84279 up:Q9BSG0 equivalent -hsa:8428 up:Q9Y6E0 equivalent -hsa:84280 up:D3DQW7 equivalent -hsa:84280 up:Q9BSF8 equivalent -hsa:84281 up:Q9BSF0 equivalent -hsa:84282 up:Q8IUD6 equivalent -hsa:84283 up:Q9BSE2 equivalent -hsa:84284 up:Q5TDE9 equivalent -hsa:84284 up:Q9BSD7 equivalent -hsa:84285 up:Q8N9N8 equivalent -hsa:84286 up:Q9BSA9 equivalent -hsa:84287 up:Q969W1 equivalent -hsa:84288 up:Q5VUJ9 equivalent -hsa:84289 up:Q8WYH8 equivalent -hsa:84290 up:Q96L46 equivalent -hsa:84292 up:Q9BRX9 equivalent -hsa:84293 up:Q9BRX8 equivalent -hsa:84294 up:Q9BRU9 equivalent -hsa:84295 up:Q8IWS0 equivalent -hsa:84296 up:Q9BRT9 equivalent -hsa:84298 up:Q9BRT6 equivalent -hsa:84299 up:Q9BRT3 equivalent -hsa:843 up:Q92851 equivalent -hsa:84300 up:Q9BRT2 equivalent -hsa:84301 up:Q5TDH0 equivalent -hsa:84302 up:Q9BRR3 equivalent -hsa:84303 up:Q9BRQ6 equivalent -hsa:84304 up:Q9BRQ3 equivalent -hsa:84305 up:Q9BRP8 equivalent -hsa:84306 up:Q9BRP1 equivalent -hsa:84307 up:Q8NF99 equivalent -hsa:84309 up:B2RD96 equivalent -hsa:84309 up:Q9BRJ7 equivalent -hsa:84309 up:W4VSQ8 reverse -hsa:8431 up:Q15466 equivalent -hsa:84310 up:Q9BRJ6 equivalent -hsa:84311 up:A0A087WU62 equivalent -hsa:84311 up:B4DEF8 equivalent -hsa:84312 up:Q5PSV4 equivalent -hsa:84313 up:Q9BRG1 equivalent -hsa:84314 up:Q6UX40 equivalent -hsa:84315 up:Q86VX9 equivalent -hsa:84316 up:Q9BRA0 equivalent -hsa:84317 up:Q96NT0 equivalent -hsa:84318 up:Q9BR77 equivalent -hsa:84319 up:Q9BQ75 equivalent -hsa:84320 up:B2RAA8 equivalent -hsa:84320 up:Q9BR61 equivalent -hsa:84321 up:Q96J01 equivalent -hsa:84324 up:P82979 equivalent -hsa:84326 up:Q96S19 equivalent -hsa:84327 up:Q96IU2 equivalent -hsa:84328 up:Q8WZA0 equivalent -hsa:84329 up:Q96D96 equivalent -hsa:8433 up:Q5T230 equivalent -hsa:84330 up:Q96IQ9 equivalent -hsa:84331 up:Q9BUT9 equivalent -hsa:84332 up:Q96IM9 equivalent -hsa:84333 up:Q86SE9 equivalent -hsa:84334 up:Q96IL0 equivalent -hsa:84335 up:Q96B36 equivalent -hsa:84336 up:Q96IK0 equivalent -hsa:84337 up:P60002 equivalent -hsa:8434 up:A8K9D8 equivalent -hsa:8434 up:O95980 equivalent -hsa:84340 up:Q969S9 equivalent -hsa:84342 up:Q96MW5 equivalent -hsa:84343 up:Q969F9 equivalent -hsa:8435 up:O75908 equivalent -hsa:8436 up:O95810 equivalent -hsa:84364 up:Q8N6H7 equivalent -hsa:84365 up:Q9BYG3 equivalent -hsa:84366 up:Q96KF2 equivalent -hsa:8437 up:O95294 equivalent -hsa:84376 up:Q86VS8 equivalent -hsa:8438 up:A8K996 equivalent -hsa:8438 up:Q92698 equivalent -hsa:8439 up:Q92636 equivalent -hsa:844 up:P31415 equivalent -hsa:8440 up:A0A0S2Z4M6 equivalent -hsa:8440 up:O43639 equivalent -hsa:84417 up:Q9H1Z8 equivalent -hsa:84418 up:Q9H1C7 equivalent -hsa:84419 up:Q9C002 equivalent -hsa:8443 up:O15228 equivalent -hsa:84432 up:P58294 equivalent -hsa:84433 up:Q8TES3 equivalent -hsa:84433 up:Q9BXL7 equivalent -hsa:84435 up:Q86SQ6 equivalent -hsa:84436 up:Q3MIS6 equivalent -hsa:84437 up:Q8NCY6 equivalent -hsa:84439 up:F1T0G3 equivalent -hsa:84439 up:Q96JK4 equivalent -hsa:8444 up:O43781 equivalent -hsa:84440 up:Q86YS3 equivalent -hsa:84441 up:Q8IZL2 equivalent -hsa:84443 up:Q5JV73 reverse -hsa:84444 up:Q8TEK3 equivalent -hsa:84445 up:B4DP66 equivalent -hsa:84445 up:Q9BRK4 equivalent -hsa:84446 up:Q8TDC3 equivalent -hsa:84447 up:Q86TM6 equivalent -hsa:84448 up:Q6H8Q1 equivalent -hsa:84449 up:Q96JL9 equivalent -hsa:8445 up:Q92630 equivalent -hsa:84450 up:Q96ME7 equivalent -hsa:84451 up:Q5TCX8 equivalent -hsa:84455 up:A8K855 equivalent -hsa:84456 up:Q96JM7 equivalent -hsa:84457 up:Q96FC7 equivalent -hsa:84458 up:Q96JN0 equivalent -hsa:8446 up:O75319 equivalent -hsa:84460 up:A7MD47 equivalent -hsa:84460 up:Q5H9K5 equivalent -hsa:84461 up:Q96JN8 equivalent -hsa:84464 up:Q8IY92 equivalent -hsa:84465 up:A6BM72 equivalent -hsa:84466 up:Q96KG7 equivalent -hsa:84467 up:A8KAY2 equivalent -hsa:84467 up:Q75N90 equivalent -hsa:8447 up:Q14184 equivalent -hsa:8448 up:Q14183 equivalent -hsa:8449 up:O60231 equivalent -hsa:8449 up:Q5SQH4 equivalent -hsa:84498 up:B4DSS4 equivalent -hsa:84498 up:Q96EK7 equivalent -hsa:845 up:O14958 equivalent -hsa:8450 up:Q13620 equivalent -hsa:84501 up:Q8WWL2 equivalent -hsa:84502 up:Q96JJ6 equivalent -hsa:84503 up:Q8NB42 equivalent -hsa:84504 up:Q9C056 equivalent -hsa:8451 up:Q13619 equivalent -hsa:84513 up:A0A140VK38 equivalent -hsa:84513 up:Q8NEB5 equivalent -hsa:84514 up:Q8N2G8 equivalent -hsa:84515 up:Q9UJA3 equivalent -hsa:84516 up:Q9BTE1 equivalent -hsa:84517 up:Q9BYD9 equivalent -hsa:84518 up:Q9BYD5 equivalent -hsa:84519 up:A0A140VJD6 equivalent -hsa:84519 up:Q8NEB7 equivalent -hsa:8452 up:Q13618 equivalent -hsa:84520 up:Q9BXV9 equivalent -hsa:84522 up:Q8N5M9 equivalent -hsa:84524 up:Q8N5P1 equivalent -hsa:84525 up:Q9BPY8 equivalent -hsa:84527 up:B4DP29 equivalent -hsa:84527 up:Q9BR84 equivalent -hsa:84528 up:Q9BQY4 equivalent -hsa:84529 up:Q9Y2V0 equivalent -hsa:8453 up:A0A140VKB1 equivalent -hsa:8453 up:Q13617 equivalent -hsa:84530 up:A7MD48 equivalent -hsa:84530 up:V5T9A0 equivalent -hsa:84532 up:Q9NUB1 equivalent -hsa:84539 up:Q969V1 equivalent -hsa:8454 up:A0A090N7U0 equivalent -hsa:8454 up:B3KTW0 equivalent -hsa:8454 up:Q13616 equivalent -hsa:84541 up:Q8NFY9 equivalent -hsa:84542 up:Q6NSI8 equivalent -hsa:84545 up:Q8N983 equivalent -hsa:84547 up:Q96JS3 equivalent -hsa:84548 up:Q8NFB2 equivalent -hsa:84549 up:Q9BXY0 equivalent -hsa:8455 up:O75882 equivalent -hsa:84552 up:Q9BYG4 equivalent -hsa:84553 up:Q5TGI0 equivalent -hsa:84557 up:Q9H492 equivalent -hsa:8456 up:O15353 equivalent -hsa:84560 up:P47944 equivalent -hsa:84561 up:A0AV02 equivalent -hsa:84569 up:A0A080YUZ8 equivalent -hsa:84569 up:Q6UWQ5 equivalent -hsa:84570 up:Q9BXS0 equivalent -hsa:84572 up:Q9UJJ9 equivalent -hsa:8458 up:Q9UNY4 equivalent -hsa:8459 up:O60704 equivalent -hsa:846 up:P41180 equivalent -hsa:8460 up:O60507 equivalent -hsa:84612 up:Q9BYG5 equivalent -hsa:84614 up:B7Z7Z4 equivalent -hsa:84614 up:Q5TC79 equivalent -hsa:84616 up:Q9BYR3 equivalent -hsa:84617 up:Q9BUF5 equivalent -hsa:84618 up:Q9BXI3 equivalent -hsa:84619 up:Q8N5A5 equivalent -hsa:8462 up:O14901 equivalent -hsa:8462 up:Q53QU8 equivalent -hsa:84620 up:Q96JF0 equivalent -hsa:84622 up:Q6ZNC6 equivalent -hsa:84622 up:Q96JF6 equivalent -hsa:84623 up:Q8IZU9 equivalent -hsa:84624 up:Q4ZHG4 equivalent -hsa:84626 up:A5PL33 equivalent -hsa:84628 up:Q96CW9 equivalent -hsa:84629 up:A3KMH2 equivalent -hsa:84629 up:O15417 equivalent -hsa:8463 up:Q15562 equivalent -hsa:84630 up:Q5TCY1 equivalent -hsa:84631 up:Q9H156 equivalent -hsa:84632 up:Q8N4X5 equivalent -hsa:84634 up:Q969F8 equivalent -hsa:84636 up:Q9BXC1 equivalent -hsa:84639 up:Q8WWZ1 equivalent -hsa:8464 up:O75486 equivalent -hsa:84640 up:Q8NB14 equivalent -hsa:84641 up:Q5SR56 equivalent -hsa:84643 up:A0A140VKG5 equivalent -hsa:84643 up:Q8N4N8 equivalent -hsa:84645 up:Q9BZE7 equivalent -hsa:84647 up:Q9BX93 equivalent -hsa:84648 up:Q9BYE3 equivalent -hsa:84649 up:Q96PD7 equivalent -hsa:84650 up:A0A0A0MRV2 reverse -hsa:84650 up:Q9BY08 equivalent -hsa:84651 up:P58062 equivalent -hsa:84654 up:A0A140VKA5 equivalent -hsa:84654 up:Q9BXG8 equivalent -hsa:84656 up:Q49A26 equivalent -hsa:84658 up:A1L1B9 equivalent -hsa:84658 up:B7Z5A1 equivalent -hsa:84658 up:Q0IJ53 equivalent -hsa:84658 up:Q9BY15 equivalent -hsa:84659 up:Q9H1E1 equivalent -hsa:84660 up:Q6P9F0 equivalent -hsa:84661 up:Q9C005 equivalent -hsa:84662 up:B3KTH4 equivalent -hsa:84662 up:Q9BZE0 equivalent -hsa:84665 up:Q86TC9 equivalent -hsa:84666 up:Q9BQ08 equivalent -hsa:84667 up:Q9BYE0 equivalent -hsa:84668 up:Q9BYI3 equivalent -hsa:84669 up:Q8NFA0 equivalent -hsa:8467 up:O60264 equivalent -hsa:84671 up:Q96SE7 equivalent -hsa:84674 up:Q9BX69 equivalent -hsa:84675 up:Q9BYV6 equivalent -hsa:84676 up:Q969Q1 equivalent -hsa:84678 up:Q8NHM5 equivalent -hsa:84679 up:Q96T83 equivalent -hsa:8468 up:O75344 equivalent -hsa:84680 up:A0A0S2Z622 equivalent -hsa:84680 up:Q96QU6 equivalent -hsa:84681 up:Q9BX68 equivalent -hsa:84684 up:Q96T92 equivalent -hsa:84687 up:Q96SB3 equivalent -hsa:84688 up:Q8NCR6 equivalent -hsa:84689 up:Q96JA4 equivalent -hsa:84690 up:A0A140VJV9 equivalent -hsa:84690 up:Q8NHS9 equivalent -hsa:84691 up:A0A140VJJ3 equivalent -hsa:84691 up:Q96KD3 equivalent -hsa:84692 up:A0A140VJF9 equivalent -hsa:84692 up:Q8NEL0 equivalent -hsa:84693 up:Q96PE7 equivalent -hsa:84694 up:A0A654ICQ6 equivalent -hsa:84694 up:Q969M2 equivalent -hsa:84695 up:P58215 equivalent -hsa:84696 up:A0A140VJD1 equivalent -hsa:84696 up:Q96SE0 equivalent -hsa:84698 up:Q9BXY5 equivalent -hsa:84699 up:Q68CJ9 equivalent -hsa:847 up:A0A384P5Q0 equivalent -hsa:847 up:P04040 equivalent -hsa:8470 up:O94875 equivalent -hsa:84700 up:Q8IUG5 equivalent -hsa:84701 up:H6SG14 equivalent -hsa:84701 up:Q96KJ9 equivalent -hsa:84705 up:Q969Y2 equivalent -hsa:84706 up:Q8TD30 equivalent -hsa:84707 up:Q9BXY8 equivalent -hsa:84708 up:Q8TBB1 equivalent -hsa:84709 up:Q8TDB4 equivalent -hsa:8471 up:O14654 equivalent -hsa:84717 up:Q7Z4V5 equivalent -hsa:84720 up:Q8TEQ8 equivalent -hsa:84722 up:A8K0M8 equivalent -hsa:84722 up:Q6PGN9 equivalent -hsa:84725 up:A0A2P1JJM6 equivalent -hsa:84725 up:Q96JA3 equivalent -hsa:84726 up:Q5JSZ5 equivalent -hsa:84726 up:Q9BU62 equivalent -hsa:84727 up:Q99619 equivalent -hsa:8473 up:O15294 equivalent -hsa:84733 up:Q14781 equivalent -hsa:84734 up:Q9BTA0 equivalent -hsa:84735 up:Q96KN2 equivalent -hsa:84747 up:A6NIH7 equivalent -hsa:84747 up:Q69YW6 equivalent -hsa:84749 up:Q70CQ3 equivalent -hsa:84750 up:Q6P4F1 equivalent -hsa:84752 up:Q6UX72 equivalent -hsa:84759 up:Q9BSM1 equivalent -hsa:8476 up:Q5VT25 equivalent -hsa:84765 up:Q9BSK1 equivalent -hsa:84766 up:Q9BSW2 equivalent -hsa:84767 up:Q9BSJ1 equivalent -hsa:84769 up:Q567V2 equivalent -hsa:8477 up:B5B0C2 equivalent -hsa:8477 up:Q8IYL9 equivalent -hsa:84773 up:P0DTL5 equivalent -hsa:84773 up:P0DTL6 equivalent -hsa:84775 up:Q96SK3 equivalent -hsa:84779 up:Q9BSU3 equivalent -hsa:84787 up:Q86Y97 equivalent -hsa:8479 up:Q9BW71 equivalent -hsa:84790 up:Q9BQE3 equivalent -hsa:84792 up:Q7Z4H9 equivalent -hsa:84795 up:Q8N2H3 equivalent -hsa:8480 up:P78406 equivalent -hsa:84803 up:A0A024RDG5 equivalent -hsa:84803 up:Q53EU6 equivalent -hsa:84804 up:B4DKY6 equivalent -hsa:84804 up:Q8NBP5 equivalent -hsa:84807 up:Q8NI38 equivalent -hsa:84808 up:Q5SV97 equivalent -hsa:8481 up:E9KL37 equivalent -hsa:8481 up:O75665 equivalent -hsa:84811 up:Q9BRD0 equivalent -hsa:84812 up:Q9BRC7 equivalent -hsa:84814 up:A0A384NPM3 equivalent -hsa:84814 up:Q8NBV4 equivalent -hsa:84816 up:Q8WWV3 equivalent -hsa:84817 up:A0A140VJY7 equivalent -hsa:84817 up:Q9BRA2 equivalent -hsa:84818 up:Q8NAC3 equivalent -hsa:8482 up:B3KMH6 equivalent -hsa:8482 up:O75326 equivalent -hsa:84823 up:Q03252 equivalent -hsa:84824 up:Q6MZF2 equivalent -hsa:84824 up:Q7L513 equivalent -hsa:84826 up:Q587I9 equivalent -hsa:8483 up:O75339 equivalent -hsa:84830 up:Q96IZ2 equivalent -hsa:84833 up:Q96IX5 equivalent -hsa:84836 up:Q96IU4 equivalent -hsa:84836 up:V9HW87 equivalent -hsa:84838 up:Q96IT1 equivalent -hsa:84839 up:Q96IS3 equivalent -hsa:8484 up:O60755 equivalent -hsa:84842 up:Q96IR7 equivalent -hsa:84844 up:Q7RTV0 equivalent -hsa:84851 up:Q96A61 equivalent -hsa:84858 up:Q96F45 equivalent -hsa:84859 up:B4DU23 equivalent -hsa:84859 up:Q96II8 equivalent -hsa:84861 up:Q53GT1 equivalent -hsa:84864 up:A0A6M8YDW1 equivalent -hsa:84864 up:Q8IUF8 equivalent -hsa:84865 up:Q17RM4 equivalent -hsa:84866 up:Q86YD3 equivalent -hsa:84867 up:P54829 equivalent -hsa:84867 up:Q86TL3 equivalent -hsa:84868 up:Q8TDQ0 equivalent -hsa:84869 up:Q8N4T8 equivalent -hsa:8487 up:O14893 equivalent -hsa:84870 up:Q9BXY4 equivalent -hsa:84871 up:Q5VU57 equivalent -hsa:84872 up:Q96K80 equivalent -hsa:84873 up:Q6ZMH4 equivalent -hsa:84873 up:Q96K78 equivalent -hsa:84874 up:Q96K75 equivalent -hsa:84875 up:Q53GL7 equivalent -hsa:84876 up:Q96D31 equivalent -hsa:84878 up:Q96K62 equivalent -hsa:84879 up:Q71RE4 equivalent -hsa:84879 up:Q8NA29 equivalent -hsa:84881 up:Q96CM3 equivalent -hsa:84883 up:Q9BRQ8 equivalent -hsa:84885 up:Q96GR4 equivalent -hsa:84886 up:Q9H425 equivalent -hsa:84888 up:Q8TCT8 equivalent -hsa:84889 up:Q8WY07 equivalent -hsa:84890 up:B3KXN9 equivalent -hsa:84890 up:Q96SZ5 equivalent -hsa:84891 up:I3L1J3 equivalent -hsa:84891 up:Q96SZ4 equivalent -hsa:84892 up:Q8NAT1 equivalent -hsa:84893 up:Q8NFZ0 equivalent -hsa:84894 up:Q96FE5 equivalent -hsa:84895 up:Q7L4E1 equivalent -hsa:84896 up:Q8NBU5 equivalent -hsa:84897 up:Q3YBR2 equivalent -hsa:84898 up:Q6UX71 equivalent -hsa:84899 up:Q5T4D3 equivalent -hsa:8490 up:O15539 equivalent -hsa:84900 up:Q96EX2 equivalent -hsa:84901 up:Q8NCF5 equivalent -hsa:84902 up:Q96ST8 equivalent -hsa:84904 up:Q8N4T4 equivalent -hsa:84905 up:Q504V9 equivalent -hsa:84905 up:Q9BYN7 equivalent -hsa:84908 up:Q96C01 equivalent -hsa:84909 up:Q8N6M6 equivalent -hsa:8491 up:A8K602 equivalent -hsa:8491 up:B3KMM5 equivalent -hsa:8491 up:Q8IVH8 equivalent -hsa:84910 up:Q96K49 equivalent -hsa:84911 up:Q96SR6 equivalent -hsa:84912 up:Q969S0 equivalent -hsa:84913 up:Q96SQ7 equivalent -hsa:84914 up:Q96SQ5 equivalent -hsa:84915 up:Q5U5X8 equivalent -hsa:84916 up:Q969X6 equivalent -hsa:84918 up:B4DS68 equivalent -hsa:84918 up:Q86VZ4 equivalent -hsa:84919 up:Q5SWA1 equivalent -hsa:8492 up:P56730 equivalent -hsa:8492 up:Q96I80 equivalent -hsa:84920 up:Q5BKT4 equivalent -hsa:84922 up:Q96SL8 equivalent -hsa:84923 up:Q969W3 equivalent -hsa:84924 up:Q969W8 equivalent -hsa:84925 up:Q96SL1 equivalent -hsa:84926 up:Q8NCJ5 equivalent -hsa:84928 up:A0A140VJX5 equivalent -hsa:84928 up:Q96SK2 equivalent -hsa:84929 up:Q8N539 equivalent -hsa:8493 up:A0A0S2Z4M2 equivalent -hsa:8493 up:O15297 equivalent -hsa:84930 up:Q96GX5 equivalent -hsa:84932 up:Q8WUD1 equivalent -hsa:84933 up:Q96K31 equivalent -hsa:84934 up:Q96K30 equivalent -hsa:84935 up:Q5VYS4 equivalent -hsa:84936 up:Q96K21 equivalent -hsa:84937 up:Q8ND25 equivalent -hsa:84938 up:A0A384MTY5 equivalent -hsa:84938 up:Q96DT6 equivalent -hsa:84939 up:J3KNX4 equivalent -hsa:84939 up:Q2TAK8 equivalent -hsa:84940 up:B3KRY9 equivalent -hsa:84940 up:Q6QEF8 equivalent -hsa:84941 up:Q96JZ2 equivalent -hsa:84942 up:Q5RKY8 equivalent -hsa:84942 up:Q6P4I2 equivalent -hsa:84942 up:Q6PJL8 equivalent -hsa:84944 up:A0A140VJP0 equivalent -hsa:84944 up:Q96JY0 equivalent -hsa:84945 up:Q7L211 equivalent -hsa:84946 up:Q96GA3 equivalent -hsa:84947 up:Q96JX3 equivalent -hsa:84948 up:Q53EQ6 equivalent -hsa:8495 up:Q8ND30 equivalent -hsa:84950 up:Q8NAV1 equivalent -hsa:84951 up:Q6PJP3 equivalent -hsa:84951 up:Q8IZW8 equivalent -hsa:84952 up:Q0VF96 equivalent -hsa:84954 up:Q8N594 equivalent -hsa:84955 up:Q96RS6 equivalent -hsa:84957 up:Q969Z4 equivalent -hsa:84958 up:Q8IYJ3 equivalent -hsa:84959 up:Q8TF42 equivalent -hsa:8496 up:Q86W92 equivalent -hsa:84960 up:Q5T5S1 equivalent -hsa:84960 up:Q96IG8 equivalent -hsa:84961 up:Q96IG2 equivalent -hsa:84962 up:Q96IF1 equivalent -hsa:84964 up:B4E3P3 equivalent -hsa:84964 up:Q3KRA9 equivalent -hsa:84966 up:Q96ID5 equivalent -hsa:84967 up:Q969L4 equivalent -hsa:84968 up:P0CW24 equivalent -hsa:84969 up:Q96NM4 equivalent -hsa:8497 up:B3KN22 equivalent -hsa:8497 up:B4DIS5 equivalent -hsa:8497 up:O75335 equivalent -hsa:84970 up:Q6P1W5 equivalent -hsa:84971 up:Q86TL0 equivalent -hsa:84975 up:Q6N075 equivalent -hsa:84976 up:Q96F81 equivalent -hsa:84978 up:Q7Z6J6 equivalent -hsa:8498 up:Q9H6Z4 equivalent -hsa:84984 up:Q96LK0 equivalent -hsa:84985 up:Q86UY5 equivalent -hsa:84986 up:Q14CB8 equivalent -hsa:84987 up:Q96I36 equivalent -hsa:84988 up:Q96I34 equivalent -hsa:8499 up:O75334 equivalent -hsa:84991 up:Q5W009 equivalent -hsa:84991 up:Q96I25 equivalent -hsa:84992 up:Q3MUY2 equivalent -hsa:84993 up:Q96S82 equivalent -hsa:8500 up:B3KVS8 equivalent -hsa:8500 up:Q13136 equivalent -hsa:85002 up:Q4KMP3 equivalent -hsa:85002 up:Q8N7N1 equivalent -hsa:85004 up:Q96A58 equivalent -hsa:85007 up:Q8IUZ5 equivalent -hsa:8501 up:O75387 equivalent -hsa:85012 up:Q969E4 equivalent -hsa:85013 up:B7Z3K1 equivalent -hsa:85013 up:Q5BJH2 equivalent -hsa:85014 up:Q96I45 equivalent -hsa:85015 up:Q70EL2 equivalent -hsa:85016 up:Q9BRQ4 equivalent -hsa:85019 up:Q24JQ0 equivalent -hsa:85019 up:Q7L033 equivalent -hsa:8502 up:Q99569 equivalent -hsa:85021 up:B2R7D3 equivalent -hsa:85021 up:Q96D71 equivalent -hsa:85025 up:Q9H2L4 equivalent -hsa:85027 up:Q9BZL3 equivalent -hsa:8503 up:Q8N381 equivalent -hsa:8503 up:Q92569 equivalent -hsa:8504 up:P56589 equivalent -hsa:8505 up:Q86W56 equivalent -hsa:8506 up:P78357 equivalent -hsa:8507 up:O14682 equivalent -hsa:8507 up:Q53XS2 equivalent -hsa:8508 up:Q9BPW8 equivalent -hsa:8509 up:B4E139 equivalent -hsa:8509 up:P52849 equivalent -hsa:8510 up:O75900 equivalent -hsa:8513 up:P07098 equivalent -hsa:8514 up:Q13303 equivalent -hsa:8515 up:O75578 equivalent -hsa:8516 up:B4DN28 equivalent -hsa:8516 up:P53708 equivalent -hsa:8517 up:Q9Y6K9 equivalent -hsa:8518 up:O95163 equivalent -hsa:8518 up:Q4LE38 equivalent -hsa:8518 up:Q8N516 equivalent -hsa:8519 up:P13164 equivalent -hsa:8520 up:O14929 equivalent -hsa:8521 up:Q9NP62 equivalent -hsa:8522 up:O60861 equivalent -hsa:85235 up:A3KPC7 equivalent -hsa:85235 up:Q96KK5 equivalent -hsa:85236 up:O60814 equivalent -hsa:8525 up:Q13574 equivalent -hsa:8526 up:A1L4Q0 equivalent -hsa:8526 up:P52429 equivalent -hsa:8527 up:Q16760 equivalent -hsa:8528 up:Q99489 equivalent -hsa:85280 up:Q9BYQ2 equivalent -hsa:85285 up:Q9BYQ7 equivalent -hsa:85289 up:Q9BYR2 equivalent -hsa:8529 up:P78329 equivalent -hsa:85290 up:Q9BYR4 equivalent -hsa:85291 up:Q9BYR5 equivalent -hsa:85293 up:Q9BYR6 equivalent -hsa:85294 up:P0C7H8 equivalent -hsa:85294 up:Q9BYR9 equivalent -hsa:8530 up:O76096 equivalent -hsa:85300 up:A0A0S2Z5T8 equivalent -hsa:85300 up:Q86WG3 equivalent -hsa:85301 up:Q8IZC6 equivalent -hsa:85302 up:Q8TES7 equivalent -hsa:8531 up:P16989 equivalent -hsa:85313 up:Q8WUA2 equivalent -hsa:85315 up:B3KXW6 equivalent -hsa:85315 up:Q8TEZ7 equivalent -hsa:85316 up:Q86Y27 equivalent -hsa:85317 up:Q86Y28 equivalent -hsa:85318 up:Q86Y29 equivalent -hsa:8532 up:A0A384MDV6 equivalent -hsa:8532 up:Q66K79 equivalent -hsa:85320 up:Q96J66 equivalent -hsa:85329 up:A0A140VK26 equivalent -hsa:85329 up:Q96DT0 equivalent -hsa:8533 up:Q9UNS2 equivalent -hsa:8534 up:O43916 equivalent -hsa:8535 up:A0A0S2Z5B2 equivalent -hsa:8535 up:O00257 equivalent -hsa:85352 up:Q3SXP7 equivalent -hsa:85359 up:Q9BY27 equivalent -hsa:8536 up:B0YIY3 equivalent -hsa:8536 up:Q14012 equivalent -hsa:85360 up:Q6ZW31 equivalent -hsa:85363 up:Q9C035 equivalent -hsa:85364 up:Q9NUD5 equivalent -hsa:85365 up:Q9H553 equivalent -hsa:85366 up:Q9H1R3 equivalent -hsa:85369 up:Q5VSL9 equivalent -hsa:8537 up:O75363 equivalent -hsa:85376 up:Q9UFD9 equivalent -hsa:85377 up:Q8N3F8 equivalent -hsa:85378 up:Q96RT7 equivalent -hsa:85379 up:Q9BY89 equivalent -hsa:8538 up:Q9UMQ3 equivalent -hsa:8539 up:Q9BZZ5 equivalent -hsa:85395 up:Q9NSI2 equivalent -hsa:85397 up:P57771 equivalent -hsa:8540 up:O00116 equivalent -hsa:85403 up:Q96JC9 equivalent -hsa:85406 up:Q6Y2X3 equivalent -hsa:85407 up:Q969G9 equivalent -hsa:85409 up:Q969F2 equivalent -hsa:8541 up:O75145 equivalent -hsa:85413 up:A0A0K0K1K9 equivalent -hsa:85413 up:Q86VW1 equivalent -hsa:85414 up:Q96JT2 equivalent -hsa:85415 up:Q8IUC4 equivalent -hsa:85416 up:Q96T25 equivalent -hsa:85417 up:Q8WWL7 equivalent -hsa:8542 up:O14791 equivalent -hsa:8543 up:P61968 equivalent -hsa:85437 up:Q8TBF4 equivalent -hsa:85438 up:Q96KC9 equivalent -hsa:85439 up:Q8WXE9 equivalent -hsa:8544 up:O00625 equivalent -hsa:85440 up:Q96N67 equivalent -hsa:85441 up:Q9BYK8 equivalent -hsa:85442 up:Q76NI1 equivalent -hsa:85443 up:B3KVM3 equivalent -hsa:85443 up:Q9C098 equivalent -hsa:85444 up:B4DTJ0 equivalent -hsa:85444 up:Q9C099 equivalent -hsa:85445 up:Q9C0A0 equivalent -hsa:85446 up:A0A2P1H683 equivalent -hsa:85446 up:B7ZM83 equivalent -hsa:85446 up:B9EK48 equivalent -hsa:85446 up:Q9C0A1 equivalent -hsa:85449 up:Q5JYT7 equivalent -hsa:8545 up:Q9UFW8 equivalent -hsa:85450 up:Q8IWB1 equivalent -hsa:85451 up:Q9C0B0 equivalent -hsa:85452 up:A0A804HLA9 equivalent -hsa:85452 up:Q9C0B2 equivalent -hsa:85453 up:Q86VY4 equivalent -hsa:85455 up:A7MBM2 equivalent -hsa:85456 up:A0A024R542 equivalent -hsa:85456 up:Q9C0C2 equivalent -hsa:85457 up:Q9C0C6 equivalent -hsa:85458 up:Q155Q3 equivalent -hsa:85459 up:Q9C0D2 equivalent -hsa:8546 up:A0A0S2Z5J4 equivalent -hsa:8546 up:O00203 equivalent -hsa:85460 up:Q9C0D4 equivalent -hsa:85461 up:B9EK39 equivalent -hsa:85461 up:Q9C0D5 equivalent -hsa:85462 up:Q9C0D6 equivalent -hsa:85463 up:Q9C0D7 equivalent -hsa:85464 up:Q76I76 equivalent -hsa:85465 up:Q9C0D9 equivalent -hsa:8547 up:O75636 equivalent -hsa:8547 up:Q6UY50 equivalent -hsa:85474 up:Q6XYB7 equivalent -hsa:85476 up:E5KND5 equivalent -hsa:85476 up:Q96RP9 equivalent -hsa:85477 up:Q9Y6U3 equivalent -hsa:85478 up:Q8IXS2 equivalent -hsa:85479 up:A0A024R7Z1 equivalent -hsa:85479 up:Q9UF47 equivalent -hsa:8548 up:Q9H2G9 equivalent -hsa:85480 up:Q969D9 equivalent -hsa:85481 up:Q96QS6 equivalent -hsa:8549 up:A0A0A8K8C7 equivalent -hsa:8549 up:O75473 equivalent -hsa:8550 up:Q8IW41 equivalent -hsa:85508 up:Q9NQ03 equivalent -hsa:85509 up:Q8WWY6 equivalent -hsa:8553 up:O14503 equivalent -hsa:8553 up:Q6IB83 equivalent -hsa:8554 up:O75925 equivalent -hsa:8555 up:O60729 equivalent -hsa:8556 up:Q59EF4 equivalent -hsa:8556 up:Q9UNH5 equivalent -hsa:85569 up:Q9UBC7 equivalent -hsa:8557 up:A2TDC0 equivalent -hsa:8557 up:O15273 equivalent -hsa:8558 up:B7Z537 equivalent -hsa:8558 up:Q15131 equivalent -hsa:8559 up:Q99633 equivalent -hsa:8560 up:O15121 equivalent -hsa:8562 up:O43583 equivalent -hsa:8563 up:Q13769 equivalent -hsa:8564 up:A8K693 equivalent -hsa:8564 up:O15229 equivalent -hsa:8565 up:A0A0S2Z4R1 equivalent -hsa:8565 up:P54577 equivalent -hsa:8566 up:F2Z2Y4 reverse -hsa:8566 up:O00764 equivalent -hsa:8566 up:V9HWC3 equivalent -hsa:8567 up:Q8WXG6 equivalent -hsa:8568 up:P56182 equivalent -hsa:8569 up:Q9BUB5 equivalent -hsa:857 up:Q03135 equivalent -hsa:857 up:Q2TNI1 equivalent -hsa:857 up:Q59E85 equivalent -hsa:8570 up:Q92945 equivalent -hsa:8572 up:P50479 equivalent -hsa:8573 up:O14936 equivalent -hsa:8574 up:O43488 equivalent -hsa:8574 up:V9HWA2 equivalent -hsa:8575 up:O75569 equivalent -hsa:8576 up:O75716 equivalent -hsa:8577 up:Q8IYR6 equivalent -hsa:8578 up:A8K6Z5 equivalent -hsa:8578 up:Q14162 equivalent -hsa:858 up:P51636 equivalent -hsa:858 up:Q53X57 equivalent -hsa:8581 up:Q14210 equivalent -hsa:85865 up:A4D1E9 equivalent -hsa:859 up:P56539 equivalent -hsa:8590 up:A0A126GW91 equivalent -hsa:8590 up:O95222 equivalent -hsa:86 up:O96019 equivalent -hsa:860 up:Q13950 equivalent -hsa:8600 up:O14788 equivalent -hsa:8600 up:Q5T9Y4 equivalent -hsa:8601 up:O76081 equivalent -hsa:8602 up:A8KA74 equivalent -hsa:8602 up:P78316 equivalent -hsa:8603 up:P78312 equivalent -hsa:8604 up:O75746 equivalent -hsa:8605 up:Q9UP65 equivalent -hsa:8607 up:A0A384MTR5 equivalent -hsa:8607 up:Q9Y265 equivalent -hsa:8608 up:O75452 equivalent -hsa:8608 up:Q59FX7 equivalent -hsa:8609 up:O75840 equivalent -hsa:861 up:Q01196 equivalent -hsa:8611 up:O14494 equivalent -hsa:8612 up:O43688 equivalent -hsa:8613 up:O14495 equivalent -hsa:8614 up:O76061 equivalent -hsa:8614 up:Q6FHC9 equivalent -hsa:8615 up:O60763 equivalent -hsa:8618 up:Q9ULU8 equivalent -hsa:862 up:Q06455 equivalent -hsa:8620 up:O15130 equivalent -hsa:8621 up:Q14004 equivalent -hsa:8621 up:Q9BVE2 equivalent -hsa:8622 up:B3KN77 equivalent -hsa:8622 up:O95263 equivalent -hsa:8623 up:B3KM43 equivalent -hsa:8623 up:O95671 equivalent -hsa:8624 up:O95456 equivalent -hsa:8625 up:O14593 equivalent -hsa:8626 up:A0A0S2Z4N5 equivalent -hsa:8626 up:Q9H3D4 equivalent -hsa:8629 up:O75564 equivalent -hsa:863 up:O75081 equivalent -hsa:8630 up:O14756 equivalent -hsa:8631 up:Q86WV1 equivalent -hsa:8632 up:Q9UFH2 equivalent -hsa:8633 up:A8K385 equivalent -hsa:8633 up:O95185 equivalent -hsa:8634 up:O00442 equivalent -hsa:8635 up:O00584 equivalent -hsa:8636 up:O43805 equivalent -hsa:8637 up:O60516 equivalent -hsa:8638 up:Q15646 equivalent -hsa:8639 up:Q16853 equivalent -hsa:8639 up:Q9UEU7 equivalent -hsa:864 up:Q13761 equivalent -hsa:8641 up:Q9UN71 equivalent -hsa:8642 up:Q96JQ0 equivalent -hsa:8643 up:Q9Y6C5 equivalent -hsa:8644 up:A0A0A0MSS8 equivalent -hsa:8644 up:P42330 equivalent -hsa:8645 up:O95279 equivalent -hsa:8646 up:Q8N2W7 equivalent -hsa:8646 up:Q9H2X0 equivalent -hsa:8647 up:O95342 equivalent -hsa:8648 up:Q15788 equivalent -hsa:8649 up:Q9UHA4 equivalent -hsa:865 up:Q13951 equivalent -hsa:8650 up:P49757 equivalent -hsa:8651 up:O15524 equivalent -hsa:8651 up:Q4JHT5 equivalent -hsa:8653 up:O15523 equivalent -hsa:8654 up:O76074 equivalent -hsa:8655 up:P63167 equivalent -hsa:8655 up:Q6FGH9 equivalent -hsa:8658 up:O95271 equivalent -hsa:8659 up:A0A024RAC7 equivalent -hsa:8659 up:P30038 equivalent -hsa:866 up:A0A2Z4LCH4 equivalent -hsa:866 up:P08185 equivalent -hsa:8660 up:Q9P084 equivalent -hsa:8660 up:Q9Y4H2 equivalent -hsa:8661 up:Q14152 equivalent -hsa:86614 up:Q96LI6 equivalent -hsa:8662 up:P55884 equivalent -hsa:8663 up:Q99613 equivalent -hsa:8664 up:O15371 equivalent -hsa:8665 up:O00303 equivalent -hsa:8666 up:O75821 equivalent -hsa:8667 up:O15372 equivalent -hsa:8667 up:Q6IB98 equivalent -hsa:8668 up:Q13347 equivalent -hsa:8668 up:Q5U0F4 equivalent -hsa:8669 up:O75822 equivalent -hsa:867 up:P22681 equivalent -hsa:8671 up:Q9Y6R1 equivalent -hsa:8672 up:O43432 equivalent -hsa:8672 up:Q59GJ0 equivalent -hsa:8673 up:Q9BV40 equivalent -hsa:8674 up:O75379 equivalent -hsa:8674 up:Q6IAZ3 equivalent -hsa:8675 up:O14662 equivalent -hsa:8676 up:O75558 equivalent -hsa:8677 up:O60499 equivalent -hsa:8678 up:A0A024R1X5 equivalent -hsa:8678 up:Q14457 equivalent -hsa:868 up:Q13191 equivalent -hsa:8681 up:P0C869 equivalent -hsa:8682 up:B1AKZ4 equivalent -hsa:8682 up:Q15121 equivalent -hsa:8682 up:Q96FS5 equivalent -hsa:8683 up:Q13242 equivalent -hsa:8685 up:Q4ZG40 equivalent -hsa:8685 up:Q9UEW3 equivalent -hsa:8687 up:O76015 equivalent -hsa:8688 up:O76014 equivalent -hsa:8689 up:O76013 equivalent -hsa:869 up:P23435 equivalent -hsa:8690 up:Q9Y4A0 equivalent -hsa:8692 up:Q12891 equivalent -hsa:8693 up:Q8N4A0 equivalent -hsa:8694 up:O75907 equivalent -hsa:8697 up:Q9UJX2 equivalent -hsa:8698 up:O95977 equivalent -hsa:87 up:A0A024R694 equivalent -hsa:87 up:P12814 equivalent -hsa:8701 up:H9NAJ7 equivalent -hsa:8701 up:H9NAJ8 equivalent -hsa:8701 up:Q96DT5 equivalent -hsa:8701 up:Q96NT7 equivalent -hsa:8702 up:B2RAZ5 equivalent -hsa:8702 up:B3KM35 equivalent -hsa:8702 up:O60513 equivalent -hsa:8703 up:A0A384NY44 equivalent -hsa:8703 up:A8K5Z0 equivalent -hsa:8703 up:O60512 equivalent -hsa:8704 up:O60909 equivalent -hsa:8705 up:B3KQP5 equivalent -hsa:8705 up:O96024 equivalent -hsa:8705 up:Q5STJ7 equivalent -hsa:8706 up:O75752 equivalent -hsa:8706 up:Q49AT3 equivalent -hsa:8706 up:Q8TDY1 equivalent -hsa:8707 up:O43825 equivalent -hsa:8708 up:Q9Y5Z6 equivalent -hsa:871 up:A8K259 equivalent -hsa:871 up:P50454 equivalent -hsa:8710 up:O75635 equivalent -hsa:8711 up:Q13470 equivalent -hsa:8712 up:O75459 equivalent -hsa:8714 up:O15438 equivalent -hsa:8715 up:O94818 equivalent -hsa:8717 up:Q15628 equivalent -hsa:87178 up:Q8TCS8 equivalent -hsa:8718 up:Q93038 equivalent -hsa:8720 up:Q14703 equivalent -hsa:8721 up:O60869 equivalent -hsa:8722 up:Q9UBX1 equivalent -hsa:8723 up:O95219 equivalent -hsa:8724 up:O60493 equivalent -hsa:8725 up:O94763 equivalent -hsa:8726 up:O75530 equivalent -hsa:8727 up:B3KMX6 equivalent -hsa:8727 up:Q9UBT7 equivalent -hsa:8728 up:Q8TBU7 equivalent -hsa:8728 up:Q9H013 equivalent -hsa:8729 up:Q92538 equivalent -hsa:873 up:A0A384NL53 equivalent -hsa:873 up:P16152 equivalent -hsa:8731 up:O43148 equivalent -hsa:8732 up:O60942 equivalent -hsa:8732 up:Q7Z3R6 equivalent -hsa:8733 up:O43292 equivalent -hsa:8735 up:Q9UKX3 equivalent -hsa:8736 up:P52179 equivalent -hsa:8737 up:Q13546 equivalent -hsa:8738 up:P78560 equivalent -hsa:8738 up:Q53XL1 equivalent -hsa:8738 up:Q8IY43 equivalent -hsa:8739 up:O00198 equivalent -hsa:874 up:O75828 equivalent -hsa:874 up:V9HW40 equivalent -hsa:8740 up:O43557 equivalent -hsa:8741 up:O75888 equivalent -hsa:8742 up:O43508 equivalent -hsa:8742 up:Q4ACW9 equivalent -hsa:8743 up:P50591 equivalent -hsa:8743 up:Q6IBA9 equivalent -hsa:8744 up:A0A0U5J8I0 equivalent -hsa:8744 up:P41273 equivalent -hsa:8745 up:O75077 equivalent -hsa:8747 up:Q9UKJ8 equivalent -hsa:8748 up:A0A494C0E3 equivalent -hsa:8748 up:O43506 equivalent -hsa:8749 up:Q9Y3Q7 equivalent -hsa:875 up:P35520 equivalent -hsa:875 up:Q9NTF0 equivalent -hsa:8751 up:Q13444 equivalent -hsa:8754 up:Q13443 equivalent -hsa:8756 up:A0A384MTL6 equivalent -hsa:8756 up:Q9H2U9 equivalent -hsa:8760 up:O95674 equivalent -hsa:8761 up:Q13310 equivalent -hsa:8763 up:Q04900 equivalent -hsa:8764 up:Q92956 equivalent -hsa:8766 up:P62491 equivalent -hsa:8767 up:A0A0S2Z4Z8 equivalent -hsa:8767 up:O43353 equivalent -hsa:8771 up:O95407 equivalent -hsa:8772 up:Q13158 equivalent -hsa:8773 up:A8K287 equivalent -hsa:8773 up:O00161 equivalent -hsa:8774 up:Q6FHY4 equivalent -hsa:8774 up:Q99747 equivalent -hsa:8775 up:P54920 equivalent -hsa:8776 up:Q13613 equivalent -hsa:8776 up:Q8NEC6 equivalent -hsa:87769 up:Q9BVM4 equivalent -hsa:8777 up:O75970 equivalent -hsa:8778 up:O15389 equivalent -hsa:8780 up:B0YJ89 equivalent -hsa:8780 up:B4E1Q4 reverse -hsa:8780 up:O14730 equivalent -hsa:8784 up:Q9Y5U5 equivalent -hsa:8785 up:A2RRP8 equivalent -hsa:8785 up:A5D8U1 equivalent -hsa:8785 up:O95460 equivalent -hsa:8786 up:O94810 equivalent -hsa:8786 up:Q4TT70 equivalent -hsa:8787 up:A8K1G1 equivalent -hsa:8787 up:O75916 equivalent -hsa:8788 up:A8K019 equivalent -hsa:8788 up:P80370 equivalent -hsa:8789 up:O00757 equivalent -hsa:8790 up:A0A0S2Z5C6 equivalent -hsa:8790 up:O14772 equivalent -hsa:8792 up:Q9Y6Q6 equivalent -hsa:8793 up:Q9UBN6 equivalent -hsa:8794 up:O14798 equivalent -hsa:8795 up:O14763 equivalent -hsa:8795 up:Q7Z2I8 equivalent -hsa:8796 up:O95171 equivalent -hsa:8797 up:O00220 equivalent -hsa:8798 up:Q9NR20 equivalent -hsa:8799 up:O96011 equivalent -hsa:88 up:P35609 equivalent -hsa:8800 up:B2R8C6 equivalent -hsa:8800 up:O75192 equivalent -hsa:8801 up:Q96I99 equivalent -hsa:8802 up:P53597 equivalent -hsa:8803 up:E5KS60 equivalent -hsa:8803 up:Q9P2R7 equivalent -hsa:8803 up:Q9Y4T0 equivalent -hsa:8804 up:O75629 equivalent -hsa:8805 up:O15164 equivalent -hsa:8807 up:O95256 equivalent -hsa:8808 up:Q9HB29 equivalent -hsa:8809 up:Q13478 equivalent -hsa:881 up:Q13939 equivalent -hsa:881 up:Q8WWB2 equivalent -hsa:881 up:Q8WX35 equivalent -hsa:8811 up:O43603 equivalent -hsa:8812 up:O75909 equivalent -hsa:8813 up:A0A0S2Z4Y5 equivalent -hsa:8813 up:O60762 equivalent -hsa:8814 up:Q00532 equivalent -hsa:8815 up:O75531 equivalent -hsa:8816 up:Q96JK2 equivalent -hsa:8817 up:A0A7U3JVY7 equivalent -hsa:8817 up:O76093 equivalent -hsa:8818 up:O94777 equivalent -hsa:8819 up:O75446 equivalent -hsa:8820 up:Q9UBX0 equivalent -hsa:8821 up:O15327 equivalent -hsa:8822 up:O60258 equivalent -hsa:8823 up:A0A7U3L5H2 equivalent -hsa:8823 up:O43320 equivalent -hsa:8824 up:O00748 equivalent -hsa:8825 up:O14910 equivalent -hsa:8826 up:P46940 equivalent -hsa:8828 up:O60462 equivalent -hsa:8828 up:Q7Z3T9 equivalent -hsa:8829 up:O14786 equivalent -hsa:8829 up:Q59F20 equivalent -hsa:8829 up:Q68DN3 equivalent -hsa:8829 up:Q6AWA9 equivalent -hsa:883 up:A8K563 equivalent -hsa:883 up:Q16773 equivalent -hsa:8831 up:A0A1U9X8L0 equivalent -hsa:8831 up:Q96PV0 equivalent -hsa:8832 up:Q9UIB8 equivalent -hsa:8833 up:A0A140VJK6 equivalent -hsa:8833 up:P49915 equivalent -hsa:8834 up:P17152 equivalent -hsa:8835 up:O14508 equivalent -hsa:8836 up:Q92820 equivalent -hsa:8837 up:A0A024R3Y4 equivalent -hsa:8837 up:O15519 equivalent -hsa:8838 up:A0A384NYW3 equivalent -hsa:8838 up:I6L968 equivalent -hsa:8838 up:O95389 equivalent -hsa:8839 up:O76076 equivalent -hsa:8840 up:O95388 equivalent -hsa:8841 up:O15379 equivalent -hsa:8842 up:O43490 equivalent -hsa:8843 up:P49019 equivalent -hsa:8844 up:Q8IVT5 equivalent -hsa:88455 up:Q3ZTS7 equivalent -hsa:88455 up:Q8IZ07 equivalent -hsa:88455 up:Q9Y5A3 equivalent -hsa:8846 up:Q13686 equivalent -hsa:8846 up:Q5XKL0 equivalent -hsa:8848 up:Q15714 equivalent -hsa:885 up:P06307 equivalent -hsa:885 up:Q6FG82 equivalent -hsa:8850 up:Q92831 equivalent -hsa:8851 up:Q15078 equivalent -hsa:8851 up:Q8N619 equivalent -hsa:8852 up:A0A384MQY7 equivalent -hsa:8852 up:Q5JQC9 equivalent -hsa:8853 up:O43150 equivalent -hsa:8854 up:O94788 equivalent -hsa:8856 up:O75469 equivalent -hsa:8857 up:Q9Y6R7 equivalent -hsa:8858 up:P22891 equivalent -hsa:8859 up:A0A1U9X8L3 equivalent -hsa:8859 up:P49842 equivalent -hsa:886 up:P32238 equivalent -hsa:8861 up:Q86U70 equivalent -hsa:8862 up:Q9ULZ1 equivalent -hsa:8863 up:A2I2N5 equivalent -hsa:8863 up:P56645 equivalent -hsa:8864 up:O15055 equivalent -hsa:8867 up:J3KQV8 equivalent -hsa:8867 up:O43426 equivalent -hsa:8867 up:Q05CZ1 equivalent -hsa:8869 up:Q9UNP4 equivalent -hsa:887 up:P32239 equivalent -hsa:8870 up:A0A1U9X7X2 equivalent -hsa:8870 up:P46695 equivalent -hsa:8871 up:B4DG94 equivalent -hsa:8871 up:O15056 equivalent -hsa:8872 up:O75794 equivalent -hsa:8874 up:Q14155 equivalent -hsa:8874 up:Q5W9H1 equivalent -hsa:88745 up:Q96EU6 equivalent -hsa:8875 up:O95498 equivalent -hsa:8876 up:O95497 equivalent -hsa:8877 up:Q53ZR5 equivalent -hsa:8877 up:Q9NYA1 equivalent -hsa:8878 up:Q13501 equivalent -hsa:8879 up:O95470 equivalent -hsa:8880 up:Q96AE4 equivalent -hsa:8881 up:Q13042 equivalent -hsa:8882 up:O75312 equivalent -hsa:8883 up:Q13564 equivalent -hsa:8884 up:Q9HD19 equivalent -hsa:8884 up:Q9Y289 equivalent -hsa:8886 up:Q8N254 equivalent -hsa:8886 up:Q9NVP1 equivalent -hsa:8887 up:Q86VP1 equivalent -hsa:8888 up:O60318 equivalent -hsa:889 up:A4D1F7 equivalent -hsa:889 up:O00522 equivalent -hsa:8890 up:Q9UI10 equivalent -hsa:8891 up:Q9HA31 equivalent -hsa:8891 up:Q9NR50 equivalent -hsa:8892 up:P49770 equivalent -hsa:8892 up:Q53XC2 equivalent -hsa:8893 up:Q13144 equivalent -hsa:8894 up:P20042 equivalent -hsa:8894 up:Q6IBR8 equivalent -hsa:8895 up:O75131 equivalent -hsa:8896 up:P41223 equivalent -hsa:8897 up:Q13615 equivalent -hsa:8898 up:Q13614 equivalent -hsa:8899 up:Q13523 equivalent -hsa:89 up:B4DZQ2 equivalent -hsa:89 up:Q08043 equivalent -hsa:890 up:P20248 equivalent -hsa:8900 up:A0A140VJG0 equivalent -hsa:8900 up:P78396 equivalent -hsa:8904 up:Q99829 equivalent -hsa:8905 up:P56377 equivalent -hsa:8905 up:Q549M9 equivalent -hsa:8906 up:O75843 equivalent -hsa:8907 up:B3KNH5 equivalent -hsa:8907 up:Q9BXS5 equivalent -hsa:8908 up:O15488 equivalent -hsa:8909 up:P21128 equivalent -hsa:891 up:P14635 equivalent -hsa:8910 up:A0A0S2Z4P5 equivalent -hsa:8910 up:O43556 equivalent -hsa:8911 up:Q9P0X4 equivalent -hsa:8912 up:B3KQH9 equivalent -hsa:8912 up:O95180 equivalent -hsa:89122 up:Q9C037 equivalent -hsa:8913 up:O43497 equivalent -hsa:8914 up:Q9UNS1 equivalent -hsa:8915 up:O95999 equivalent -hsa:8916 up:Q15034 equivalent -hsa:892 up:P24863 equivalent -hsa:892 up:Q7Z4L3 equivalent -hsa:8924 up:A8KAQ8 equivalent -hsa:8924 up:O95714 equivalent -hsa:8925 up:Q15751 equivalent -hsa:8926 up:P63162 equivalent -hsa:8926 up:Q9Y675 equivalent -hsa:8927 up:Q9UPA5 equivalent -hsa:8928 up:O75593 equivalent -hsa:8929 up:Q99453 equivalent -hsa:8930 up:O95243 equivalent -hsa:8932 up:Q9UBB5 equivalent -hsa:8933 up:A6ZKI3 equivalent -hsa:8934 up:B2R7I9 equivalent -hsa:8934 up:O14966 equivalent -hsa:8934 up:Q6FGU7 equivalent -hsa:8935 up:O75563 equivalent -hsa:8936 up:Q92558 equivalent -hsa:8938 up:O94812 equivalent -hsa:8939 up:Q96I24 equivalent -hsa:894 up:P30279 equivalent -hsa:8940 up:O95985 equivalent -hsa:8941 up:Q13319 equivalent -hsa:8942 up:Q16719 equivalent -hsa:8943 up:O14617 equivalent -hsa:8945 up:A0A0S2Z4P6 equivalent -hsa:8945 up:B2R8L3 equivalent -hsa:8945 up:Q68DS0 equivalent -hsa:8945 up:Q9Y297 equivalent -hsa:896 up:P30281 equivalent -hsa:8968 up:P68431 equivalent -hsa:8969 up:A4FTV9 equivalent -hsa:8969 up:B2R5B3 equivalent -hsa:8969 up:P0C0S8 equivalent -hsa:8970 up:P06899 equivalent -hsa:8971 up:Q92522 equivalent -hsa:8972 up:O43451 equivalent -hsa:8973 up:Q15825 equivalent -hsa:8974 up:O15460 equivalent -hsa:8974 up:Q05DA4 equivalent -hsa:8975 up:A0A0A6YZ17 equivalent -hsa:8975 up:Q92995 equivalent -hsa:8976 up:O00401 equivalent -hsa:89765 up:Q8WYR4 equivalent -hsa:89766 up:Q5DID0 equivalent -hsa:89777 up:Q96P63 equivalent -hsa:89778 up:A9UKE9 equivalent -hsa:89778 up:F5GYW9 equivalent -hsa:89778 up:Q96P15 equivalent -hsa:89780 up:P56704 equivalent -hsa:89781 up:A8K2E6 equivalent -hsa:89781 up:Q6P1K3 equivalent -hsa:89781 up:Q9NQG7 equivalent -hsa:89782 up:B4DR62 equivalent -hsa:89782 up:Q96KR4 equivalent -hsa:89790 up:Q96LC7 equivalent -hsa:89792 up:Q96A11 equivalent -hsa:89795 up:Q8IVL0 equivalent -hsa:89796 up:Q8NEY1 equivalent -hsa:89797 up:A7E2D6 equivalent -hsa:89797 up:Q8IVL1 equivalent -hsa:898 up:P24864 equivalent -hsa:89801 up:Q6ZSY5 equivalent -hsa:89822 up:Q96T54 equivalent -hsa:89832 up:Q494W8 equivalent -hsa:89839 up:Q3KRB8 equivalent -hsa:89845 up:Q5T3U5 equivalent -hsa:89846 up:Q5JSP0 equivalent -hsa:89848 up:Q86WN1 equivalent -hsa:89849 up:Q8NAA4 equivalent -hsa:89849 up:Q9H7Q5 equivalent -hsa:8985 up:O60568 equivalent -hsa:8985 up:Q9UG85 equivalent -hsa:89853 up:Q9H7P6 equivalent -hsa:89857 up:Q8WZ60 equivalent -hsa:89858 up:Q96PQ1 equivalent -hsa:8986 up:A0PJF8 equivalent -hsa:8986 up:O75676 equivalent -hsa:89866 up:Q96JE7 equivalent -hsa:89869 up:A0A140VJR9 equivalent -hsa:89869 up:Q86YW0 equivalent -hsa:8987 up:O95210 equivalent -hsa:89870 up:Q5SRL0 equivalent -hsa:89870 up:Q9C019 equivalent -hsa:89872 up:Q96PS8 equivalent -hsa:89874 up:Q9BQT8 equivalent -hsa:89876 up:Q7Z4T9 equivalent -hsa:8988 up:Q12988 equivalent -hsa:8988 up:Q6ICS9 equivalent -hsa:89882 up:Q96J77 equivalent -hsa:89884 up:A0A0S2Z5S4 equivalent -hsa:89884 up:Q969G2 equivalent -hsa:89885 up:Q969F0 equivalent -hsa:89886 up:Q96A28 equivalent -hsa:89887 up:Q5EBL2 equivalent -hsa:8989 up:O75762 equivalent -hsa:89890 up:Q86V97 equivalent -hsa:89891 up:Q96EX3 equivalent -hsa:89894 up:Q8NCL8 equivalent -hsa:899 up:P41002 equivalent -hsa:899 up:Q59HD0 equivalent -hsa:8991 up:Q13228 equivalent -hsa:8991 up:V9HWG1 equivalent -hsa:89910 up:Q7Z3V4 equivalent -hsa:8992 up:O15342 equivalent -hsa:89927 up:Q96MC5 equivalent -hsa:8993 up:O75594 equivalent -hsa:89932 up:B3KXI1 equivalent -hsa:89932 up:O95428 equivalent -hsa:8994 up:Q9UGP4 equivalent -hsa:89941 up:Q8IXI1 equivalent -hsa:89944 up:Q8IW92 equivalent -hsa:8995 up:A0A0U5JXL4 equivalent -hsa:8995 up:Q9UNG2 equivalent -hsa:89953 up:Q9NSK0 equivalent -hsa:89958 up:Q86UD0 equivalent -hsa:8996 up:O60936 equivalent -hsa:8996 up:Q5TZN6 equivalent -hsa:8997 up:O60229 equivalent -hsa:89970 up:Q96DX4 equivalent -hsa:89978 up:Q7L8W6 equivalent -hsa:8999 up:A0A140VJG1 equivalent -hsa:8999 up:B4DH08 equivalent -hsa:8999 up:Q92772 equivalent -hsa:9 up:P18440 equivalent -hsa:90 up:D3DPA4 equivalent -hsa:90 up:Q04771 equivalent -hsa:900 up:P51959 equivalent -hsa:90007 up:Q504T8 equivalent -hsa:9001 up:P54257 equivalent -hsa:90019 up:Q8NBV8 equivalent -hsa:9002 up:Q96RI0 equivalent -hsa:90025 up:Q4G0J6 equivalent -hsa:90025 up:Q7Z6J8 equivalent -hsa:90050 up:Q8N9Y4 equivalent -hsa:90060 up:Q96HB5 equivalent -hsa:90070 up:Q9GZZ8 equivalent -hsa:90075 up:P17039 equivalent -hsa:901 up:Q16589 equivalent -hsa:90102 up:Q86SQ0 equivalent -hsa:90113 up:Q8N398 equivalent -hsa:90113 up:Q9BVH8 equivalent -hsa:90120 up:H0YL14 equivalent -hsa:90121 up:Q969E8 equivalent -hsa:9013 up:Q15572 equivalent -hsa:90134 up:Q9NS40 equivalent -hsa:90135 up:A0A384NYR4 equivalent -hsa:90135 up:Q96KE9 equivalent -hsa:90139 up:Q96SJ8 equivalent -hsa:9014 up:Q53T94 equivalent -hsa:90141 up:Q9BUY7 equivalent -hsa:9015 up:A8K4K5 equivalent -hsa:9015 up:B4DS21 equivalent -hsa:9015 up:Q15573 equivalent -hsa:9016 up:O95258 equivalent -hsa:90161 up:Q96MM7 equivalent -hsa:90167 up:Q6ZUT3 equivalent -hsa:90187 up:Q9NT22 equivalent -hsa:9019 up:A8K5D4 equivalent -hsa:9019 up:O95297 equivalent -hsa:90196 up:Q8N2H4 equivalent -hsa:90199 up:A0A140VK68 equivalent -hsa:90199 up:Q8IUA0 equivalent -hsa:902 up:P51946 equivalent -hsa:9020 up:Q68D39 equivalent -hsa:9020 up:Q99558 equivalent -hsa:90203 up:Q969T3 equivalent -hsa:90204 up:Q9BR11 equivalent -hsa:9021 up:O14543 equivalent -hsa:9021 up:Q6FI39 equivalent -hsa:9022 up:O95833 equivalent -hsa:90226 up:Q96RP3 equivalent -hsa:9023 up:O95992 equivalent -hsa:90231 up:Q8IYS2 equivalent -hsa:90233 up:Q7Z340 equivalent -hsa:9024 up:Q8IWQ3 equivalent -hsa:90249 up:Q6ZN44 equivalent -hsa:9025 up:O76064 equivalent -hsa:9026 up:O75146 equivalent -hsa:90268 up:Q96BN8 equivalent -hsa:9027 up:Q9UHE5 equivalent -hsa:90273 up:A0A0G2JSC8 equivalent -hsa:90273 up:Q3KPI0 equivalent -hsa:9028 up:O75783 equivalent -hsa:90288 up:B3KXU6 equivalent -hsa:90288 up:Q6NXP0 equivalent -hsa:90293 up:Q96HC9 equivalent -hsa:90293 up:Q9P2N7 equivalent -hsa:9031 up:Q9UIG0 equivalent -hsa:90313 up:Q8NBR0 equivalent -hsa:90316 up:Q8IUE1 equivalent -hsa:90317 up:Q08AN1 equivalent -hsa:9032 up:O14894 equivalent -hsa:90321 up:Q5HY98 equivalent -hsa:90324 up:Q96F63 equivalent -hsa:90326 up:Q8WTV1 equivalent -hsa:9033 up:Q9P0L9 equivalent -hsa:90333 up:Q5VIY5 equivalent -hsa:90338 up:Q9HCG1 equivalent -hsa:9034 up:B2R8C0 equivalent -hsa:9034 up:O00421 equivalent -hsa:90342 up:A0AVI2 equivalent -hsa:90342 up:Q2NNQ7 equivalent -hsa:90353 up:Q7Z7A3 equivalent -hsa:90355 up:Q96GV9 equivalent -hsa:90362 up:B3KRT5 equivalent -hsa:90362 up:Q8TC76 equivalent -hsa:9037 up:Q13591 equivalent -hsa:9037 up:X5DR95 equivalent -hsa:90378 up:Q6SPF0 equivalent -hsa:90379 up:Q66K64 equivalent -hsa:9038 up:O14804 equivalent -hsa:90381 up:Q7Z2Z1 equivalent -hsa:9039 up:Q8TBC4 equivalent -hsa:90390 up:Q96HR3 equivalent -hsa:904 up:O60563 equivalent -hsa:9040 up:A0A024R4T4 equivalent -hsa:9040 up:P61081 equivalent -hsa:90407 up:Q96HV5 equivalent -hsa:90410 up:Q8IY31 equivalent -hsa:90411 up:Q8NI22 equivalent -hsa:90416 up:Q9BV29 equivalent -hsa:90417 up:Q9Y448 equivalent -hsa:90423 up:A0A140VKA8 equivalent -hsa:90423 up:Q96A05 equivalent -hsa:90427 up:Q96LC9 equivalent -hsa:9043 up:O60271 equivalent -hsa:9044 up:O14981 equivalent -hsa:9044 up:Q2M1V9 equivalent -hsa:9044 up:Q8N6J1 equivalent -hsa:90441 up:Q969S3 equivalent -hsa:9045 up:P50914 equivalent -hsa:90459 up:Q8IV48 equivalent -hsa:9046 up:O60496 equivalent -hsa:9047 up:Q9NP31 equivalent -hsa:9048 up:Q5T4W7 equivalent -hsa:90480 up:Q8TAE8 equivalent -hsa:90485 up:Q9Y2P0 equivalent -hsa:90488 up:Q8WUH6 equivalent -hsa:9049 up:O00170 equivalent -hsa:905 up:B4DH21 equivalent -hsa:905 up:O60583 equivalent -hsa:9050 up:A0A0S2Z4R2 equivalent -hsa:9050 up:Q9H939 equivalent -hsa:90506 up:Q96FV0 equivalent -hsa:90507 up:A0A384NKK8 equivalent -hsa:90507 up:Q96FV2 equivalent -hsa:9051 up:A0A0S2Z5P3 equivalent -hsa:9051 up:O43586 equivalent -hsa:9052 up:Q8NFJ5 equivalent -hsa:90522 up:Q5BJH7 equivalent -hsa:90522 up:Q9H5F7 equivalent -hsa:90523 up:Q5VWP3 equivalent -hsa:90525 up:B3KTY1 equivalent -hsa:90525 up:B4E1A9 equivalent -hsa:90527 up:B5M0B7 equivalent -hsa:90527 up:Q1HG43 equivalent -hsa:90529 up:Q5TH74 equivalent -hsa:9053 up:Q14244 equivalent -hsa:9054 up:Q53FP3 equivalent -hsa:9054 up:Q9Y697 equivalent -hsa:9055 up:O43663 equivalent -hsa:90550 up:Q8NE86 equivalent -hsa:90557 up:A0A384MR57 equivalent -hsa:90557 up:Q96AQ1 equivalent -hsa:9056 up:A0A0S2Z502 equivalent -hsa:9056 up:Q9UM01 equivalent -hsa:9057 up:Q92536 equivalent -hsa:90576 up:Q96GE5 equivalent -hsa:9058 up:Q13183 equivalent -hsa:90580 up:Q9BSF4 equivalent -hsa:90589 up:Q96I27 equivalent -hsa:90592 up:Q9H0M5 equivalent -hsa:90594 up:Q8NDP4 equivalent -hsa:9060 up:O95340 equivalent -hsa:9060 up:Q5TB52 equivalent -hsa:9061 up:O43252 equivalent -hsa:90624 up:Q5U5X0 equivalent -hsa:90625 up:M5A8F1 equivalent -hsa:90627 up:Q9Y3M8 equivalent -hsa:9063 up:O75928 equivalent -hsa:90634 up:Q5TBK1 equivalent -hsa:90634 up:Q9Y273 equivalent -hsa:90637 up:Q8N6M9 equivalent -hsa:90639 up:Q49B96 equivalent -hsa:9064 up:O95382 equivalent -hsa:90649 up:Q4G180 equivalent -hsa:90649 up:Q96H40 equivalent -hsa:90655 up:Q8IUE0 equivalent -hsa:9066 up:O43581 equivalent -hsa:90665 up:Q9BQ87 equivalent -hsa:90668 up:Q8ND23 equivalent -hsa:90673 up:Q9H7J1 equivalent -hsa:90678 up:Q6UWE0 equivalent -hsa:9068 up:O95841 equivalent -hsa:9069 up:B2R687 equivalent -hsa:9069 up:P56749 equivalent -hsa:90693 up:Q96EE4 equivalent -hsa:9070 up:Q9UBL3 equivalent -hsa:90701 up:Q9BY50 equivalent -hsa:9071 up:P78369 equivalent -hsa:9073 up:A0A0K0K1I9 equivalent -hsa:9073 up:P56748 equivalent -hsa:90736 up:Q5XKR9 equivalent -hsa:90737 up:Q96GU1 equivalent -hsa:9074 up:P56747 equivalent -hsa:9075 up:P57739 equivalent -hsa:9076 up:A5JSJ9 equivalent -hsa:9076 up:O95832 equivalent -hsa:9077 up:O95661 equivalent -hsa:90780 up:Q5T170 equivalent -hsa:90780 up:Q9BRQ0 equivalent -hsa:9079 up:O43679 equivalent -hsa:90799 up:Q96GE4 equivalent -hsa:908 up:P40227 equivalent -hsa:9080 up:O95484 equivalent -hsa:90806 up:Q5VTE6 equivalent -hsa:90806 up:Q96AL9 equivalent -hsa:90809 up:Q86T03 equivalent -hsa:9081 up:A0A384MTZ8 equivalent -hsa:9081 up:O14603 equivalent -hsa:90826 up:Q6P2P2 equivalent -hsa:90827 up:Q96JC4 equivalent -hsa:9083 up:O14599 equivalent -hsa:90835 up:A1A4V9 equivalent -hsa:9084 up:O14598 equivalent -hsa:90843 up:Q8IYN2 equivalent -hsa:9085 up:Q9Y6F8 equivalent -hsa:90850 up:Q86UK7 equivalent -hsa:90853 up:Q6ZMY3 equivalent -hsa:9086 up:O14602 equivalent -hsa:90861 up:Q9H910 equivalent -hsa:90864 up:Q6PJ21 equivalent -hsa:90865 up:O95760 equivalent -hsa:9087 up:O14604 equivalent -hsa:90871 up:Q96GE9 equivalent -hsa:90874 up:Q5TEC3 equivalent -hsa:9088 up:Q0IJ49 equivalent -hsa:9088 up:Q99640 equivalent -hsa:909 up:P06126 equivalent -hsa:9091 up:Q9BRB3 equivalent -hsa:9092 up:O43290 equivalent -hsa:9093 up:Q53G26 equivalent -hsa:9093 up:Q59E88 equivalent -hsa:9093 up:Q96EY1 equivalent -hsa:90933 up:Q8WV44 equivalent -hsa:9094 up:Q13432 equivalent -hsa:9095 up:B3KRD9 equivalent -hsa:9095 up:O60806 equivalent -hsa:90952 up:Q96AP7 equivalent -hsa:90956 up:A4D1T6 equivalent -hsa:90956 up:Q7Z695 equivalent -hsa:90957 up:Q6P158 equivalent -hsa:9096 up:O95935 equivalent -hsa:9097 up:P54578 equivalent -hsa:9098 up:P35125 equivalent -hsa:90987 up:Q9BRH9 equivalent -hsa:9099 up:O75604 equivalent -hsa:90990 up:Q96AC6 equivalent -hsa:90993 up:B2RA75 equivalent -hsa:90993 up:Q96BA8 equivalent -hsa:91 up:P36896 equivalent -hsa:910 up:P29016 equivalent -hsa:9100 up:Q14694 equivalent -hsa:9101 up:P40818 equivalent -hsa:91010 up:Q8IVF7 equivalent -hsa:91012 up:Q8N5B7 equivalent -hsa:9103 up:P31995 equivalent -hsa:91039 up:Q86TI2 equivalent -hsa:9104 up:Q15493 equivalent -hsa:9104 up:V9HWF8 equivalent -hsa:91050 up:Q6ZUS6 equivalent -hsa:91056 up:Q2VPB7 equivalent -hsa:91057 up:Q96HJ3 equivalent -hsa:9107 up:Q9Y217 equivalent -hsa:91074 up:Q9BXX3 equivalent -hsa:91074 up:R4GNA2 equivalent -hsa:9108 up:B7Z9Q7 equivalent -hsa:9108 up:B7ZAG8 equivalent -hsa:9108 up:Q9Y216 equivalent -hsa:911 up:P29017 equivalent -hsa:9110 up:Q9NYA4 equivalent -hsa:91107 up:Q96LD4 equivalent -hsa:9111 up:Q13287 equivalent -hsa:9112 up:Q13330 equivalent -hsa:9112 up:Q9BRL8 equivalent -hsa:91120 up:O95780 equivalent -hsa:9113 up:O95835 equivalent -hsa:91133 up:Q8NA19 equivalent -hsa:91137 up:Q96AG3 equivalent -hsa:9114 up:P61421 equivalent -hsa:91147 up:Q5HYA8 equivalent -hsa:91151 up:Q6NT04 equivalent -hsa:91156 up:Q86VF2 equivalent -hsa:9117 up:A0A024R2N5 equivalent -hsa:9117 up:Q9BRL7 equivalent -hsa:91179 up:Q96GP6 equivalent -hsa:9118 up:Q16352 equivalent -hsa:91181 up:Q5VU65 equivalent -hsa:9119 up:O95678 equivalent -hsa:912 up:P15813 equivalent -hsa:9120 up:O15403 equivalent -hsa:9121 up:O15375 equivalent -hsa:9122 up:O15374 equivalent -hsa:91227 up:Q14390 equivalent -hsa:9123 up:O15427 equivalent -hsa:9124 up:O00151 equivalent -hsa:9124 up:V9HW92 equivalent -hsa:9125 up:D5MQE1 equivalent -hsa:9125 up:Q92600 equivalent -hsa:91252 up:Q96H72 equivalent -hsa:9126 up:Q9UQE7 equivalent -hsa:9127 up:O15547 equivalent -hsa:91272 up:Q96IK1 equivalent -hsa:9128 up:O43172 equivalent -hsa:91283 up:Q96H12 equivalent -hsa:91289 up:Q9BU23 equivalent -hsa:9129 up:O43395 equivalent -hsa:91298 up:Q8N999 equivalent -hsa:913 up:A2RRL5 equivalent -hsa:913 up:P15812 equivalent -hsa:9130 up:Q14320 equivalent -hsa:91300 up:Q96D70 equivalent -hsa:91304 up:B3KTL0 equivalent -hsa:91304 up:Q4ZIN3 equivalent -hsa:9131 up:E9PMA0 reverse -hsa:9131 up:O95831 equivalent -hsa:91319 up:Q96Q80 equivalent -hsa:9132 up:B3KQH8 equivalent -hsa:9132 up:P56696 equivalent -hsa:9133 up:O95067 equivalent -hsa:9134 up:O96020 equivalent -hsa:9135 up:Q15276 equivalent -hsa:91351 up:Q5H9U9 equivalent -hsa:9136 up:O43818 equivalent -hsa:91368 up:Q96HQ2 equivalent -hsa:91369 up:A8IK34 equivalent -hsa:91369 up:Q6AI12 equivalent -hsa:91373 up:Q3KQV9 equivalent -hsa:9138 up:Q92888 equivalent -hsa:9139 up:O43439 equivalent -hsa:91392 up:Q8TBZ5 equivalent -hsa:914 up:P06729 equivalent -hsa:914 up:Q53F96 equivalent -hsa:9140 up:O94817 equivalent -hsa:91404 up:B3KTX3 equivalent -hsa:91404 up:Q86VW0 equivalent -hsa:91408 up:Q96K17 equivalent -hsa:91409 up:Q96LY2 equivalent -hsa:9141 up:O14737 equivalent -hsa:91419 up:Q9Y6H3 equivalent -hsa:9143 up:O43761 equivalent -hsa:91433 up:A6NED2 equivalent -hsa:9144 up:O43760 equivalent -hsa:91442 up:A0A0S2Z5V6 equivalent -hsa:91442 up:Q9BTP7 equivalent -hsa:91445 up:Q96GF1 equivalent -hsa:9145 up:O43759 equivalent -hsa:91452 up:B7Z2A7 equivalent -hsa:91452 up:Q5T8D3 equivalent -hsa:91452 up:Q8NCM9 equivalent -hsa:9146 up:A0A0S2Z4R4 equivalent -hsa:9146 up:O14964 equivalent -hsa:91461 up:Q504Y2 equivalent -hsa:91464 up:Q2M1V0 equivalent -hsa:9147 up:O60524 equivalent -hsa:9148 up:B4DS86 equivalent -hsa:9148 up:O76050 equivalent -hsa:9149 up:Q9Y463 equivalent -hsa:915 up:B0YIY4 equivalent -hsa:915 up:P04234 equivalent -hsa:9150 up:Q9Y5B0 equivalent -hsa:9152 up:Q4VAM4 equivalent -hsa:9152 up:Q4VAM6 equivalent -hsa:9152 up:Q9Y345 equivalent -hsa:91522 up:Q86Y22 equivalent -hsa:91523 up:Q96HM7 equivalent -hsa:91526 up:Q8N8A2 equivalent -hsa:9153 up:O43868 equivalent -hsa:9153 up:Q2M2A7 equivalent -hsa:9153 up:Q53H72 equivalent -hsa:9154 up:B7Z3L6 equivalent -hsa:9154 up:O00337 equivalent -hsa:91543 up:Q8WXG1 equivalent -hsa:91544 up:Q5T124 equivalent -hsa:9156 up:Q9UQ84 equivalent -hsa:91574 up:Q9H3J6 equivalent -hsa:9158 up:O43427 equivalent -hsa:91582 up:Q86WX3 equivalent -hsa:91584 up:Q9HCM2 equivalent -hsa:9159 up:Q16549 equivalent -hsa:916 up:P07766 equivalent -hsa:91603 up:Q96NB3 equivalent -hsa:91607 up:Q7Z7L1 equivalent -hsa:91608 up:Q96S79 equivalent -hsa:91612 up:Q8WUH1 equivalent -hsa:91614 up:Q96QD5 equivalent -hsa:9162 up:O75912 equivalent -hsa:91624 up:Q0ZGT2 equivalent -hsa:91646 up:Q587J7 equivalent -hsa:91647 up:Q8N5M1 equivalent -hsa:91653 up:Q9BWV1 equivalent -hsa:9166 up:O00559 equivalent -hsa:91661 up:Q7L2R6 equivalent -hsa:91662 up:P59046 equivalent -hsa:91663 up:Q96S97 equivalent -hsa:91664 up:Q96IR2 equivalent -hsa:9167 up:O14548 equivalent -hsa:9167 up:Q6FGA0 equivalent -hsa:9168 up:P63313 equivalent -hsa:91683 up:B0AZL9 equivalent -hsa:91683 up:Q8IV01 equivalent -hsa:91683 up:Q8NDM9 equivalent -hsa:91687 up:Q8N0S6 equivalent -hsa:91689 up:Q9H4I9 equivalent -hsa:9169 up:Q99590 equivalent -hsa:91694 up:Q17RB8 equivalent -hsa:917 up:B0YIY5 equivalent -hsa:917 up:P09693 equivalent -hsa:91703 up:Q96HD9 equivalent -hsa:9172 up:P54296 equivalent -hsa:9173 up:Q01638 equivalent -hsa:91734 up:Q9BXS1 equivalent -hsa:91746 up:Q96MU7 equivalent -hsa:91748 up:Q6PJG2 equivalent -hsa:91749 up:B3KSA1 equivalent -hsa:91749 up:Q5TF39 equivalent -hsa:9175 up:O43283 equivalent -hsa:91750 up:B3KN83 equivalent -hsa:91750 up:Q52LA3 equivalent -hsa:91752 up:Q7Z570 equivalent -hsa:91754 up:Q6PKF2 equivalent -hsa:91754 up:Q8TD19 equivalent -hsa:91768 up:A7K6Y5 equivalent -hsa:91768 up:Q8TDN4 equivalent -hsa:9177 up:O95264 equivalent -hsa:91775 up:Q969Y0 equivalent -hsa:91782 up:B3KUH0 equivalent -hsa:91782 up:Q8WUX9 equivalent -hsa:9179 up:O00189 equivalent -hsa:9180 up:Q99650 equivalent -hsa:91801 up:Q96BT7 equivalent -hsa:91807 up:Q32MK0 equivalent -hsa:9181 up:Q92974 equivalent -hsa:9182 up:O75901 equivalent -hsa:91828 up:Q17RC7 equivalent -hsa:9183 up:O43264 equivalent -hsa:91833 up:Q8TBZ3 equivalent -hsa:9184 up:O43684 equivalent -hsa:9185 up:Q8NFH8 equivalent -hsa:91851 up:Q9BU40 equivalent -hsa:91860 up:Q96GE6 equivalent -hsa:91862 up:Q96A59 equivalent -hsa:91869 up:Q96AA3 equivalent -hsa:9187 up:O60721 equivalent -hsa:91875 up:Q86T04 equivalent -hsa:91875 up:Q8N0Z6 equivalent -hsa:9188 up:Q9NR30 equivalent -hsa:9189 up:O96006 equivalent -hsa:91893 up:Q9BRP7 equivalent -hsa:91894 up:Q96A22 equivalent -hsa:919 up:P20963 equivalent -hsa:9191 up:O75618 equivalent -hsa:91937 up:Q96H15 equivalent -hsa:9194 up:O60669 equivalent -hsa:91942 up:A0A0S2Z5U1 equivalent -hsa:91942 up:Q8N183 equivalent -hsa:91947 up:A8K2F6 equivalent -hsa:91947 up:Q8NCT1 equivalent -hsa:91949 up:A0A0S2Z652 equivalent -hsa:91949 up:P83436 equivalent -hsa:9196 up:O43448 equivalent -hsa:91966 up:Q8TE69 equivalent -hsa:9197 up:O00400 equivalent -hsa:91975 up:Q96RE9 equivalent -hsa:91977 up:Q8TDC0 equivalent -hsa:91978 up:Q6ZTW0 equivalent -hsa:92 up:P27037 equivalent -hsa:920 up:A0A4Y5UGE4 equivalent -hsa:920 up:B4DT49 equivalent -hsa:920 up:P01730 equivalent -hsa:9200 up:B0YJ81 equivalent -hsa:92002 up:Q8N1B3 equivalent -hsa:9201 up:O15075 equivalent -hsa:92014 up:Q9H1U9 equivalent -hsa:92017 up:Q8TEQ0 equivalent -hsa:9202 up:Q5VZL5 equivalent -hsa:9203 up:A8K3Z7 equivalent -hsa:9203 up:Q14202 equivalent -hsa:9204 up:O95789 equivalent -hsa:9205 up:Q9UJ78 equivalent -hsa:9208 up:Q32MZ4 equivalent -hsa:92086 up:Q9BX51 equivalent -hsa:9209 up:Q9Y608 equivalent -hsa:92092 up:Q96H79 equivalent -hsa:921 up:P06127 equivalent -hsa:9210 up:O95972 equivalent -hsa:92104 up:Q86WT1 equivalent -hsa:92105 up:Q96HW7 equivalent -hsa:92106 up:Q96HP4 equivalent -hsa:9211 up:A0A0S2Z4S7 equivalent -hsa:9211 up:O95970 equivalent -hsa:9212 up:Q96GD4 equivalent -hsa:92126 up:Q8IZU8 equivalent -hsa:92129 up:Q0D2K3 equivalent -hsa:9213 up:Q9UBH6 equivalent -hsa:9214 up:O60667 equivalent -hsa:92140 up:Q86UE4 equivalent -hsa:9215 up:O95461 equivalent -hsa:9215 up:X5DR28 equivalent -hsa:92154 up:Q765P7 equivalent -hsa:92162 up:Q6PEY1 equivalent -hsa:9217 up:O95292 equivalent -hsa:9217 up:Q53XM7 equivalent -hsa:92170 up:Q9BT17 equivalent -hsa:9218 up:Q9P0L0 equivalent -hsa:92181 up:B3KMW8 equivalent -hsa:92181 up:Q8WUN7 equivalent -hsa:9219 up:O94776 equivalent -hsa:92196 up:A0PJW8 equivalent -hsa:92196 up:M1E9T5 equivalent -hsa:922 up:O43866 equivalent -hsa:9221 up:B2RAU8 equivalent -hsa:9221 up:Q14978 equivalent -hsa:9221 up:Q96J17 equivalent -hsa:92211 up:F1T0L2 equivalent -hsa:92211 up:Q96JP9 equivalent -hsa:9223 up:Q96QZ7 equivalent -hsa:92235 up:Q5VZP5 equivalent -hsa:92241 up:Q6JBY9 equivalent -hsa:92255 up:Q68DH5 equivalent -hsa:92259 up:P82909 equivalent -hsa:9227 up:O95237 equivalent -hsa:9228 up:A0A1B0GTN4 equivalent -hsa:92283 up:B4DRP8 equivalent -hsa:92283 up:Q8TAF7 equivalent -hsa:92285 up:Q52M93 equivalent -hsa:9229 up:O14490 equivalent -hsa:92291 up:Q6MZZ7 equivalent -hsa:92292 up:A9ZM15 equivalent -hsa:92292 up:Q969I3 equivalent -hsa:92293 up:Q8N3T6 equivalent -hsa:923 up:P30203 equivalent -hsa:923 up:Q6AZ88 equivalent -hsa:923 up:Q8N4Q7 equivalent -hsa:9230 up:Q15907 equivalent -hsa:92304 up:Q96QR1 equivalent -hsa:92305 up:A0AVI4 equivalent -hsa:9231 up:Q8TDM6 equivalent -hsa:92312 up:A1L020 equivalent -hsa:9232 up:O95997 equivalent -hsa:9232 up:Q6IAL9 equivalent -hsa:92335 up:Q7RTN6 equivalent -hsa:92340 up:P0C7W0 equivalent -hsa:92342 up:O95568 equivalent -hsa:92344 up:B3KQ87 equivalent -hsa:92344 up:Q5T7V8 equivalent -hsa:92345 up:Q96HR8 equivalent -hsa:92346 up:O95561 equivalent -hsa:9235 up:P24001 equivalent -hsa:92359 up:Q9BUF7 equivalent -hsa:9236 up:Q9ULG6 equivalent -hsa:92369 up:Q96A44 equivalent -hsa:92370 up:Q8TE99 equivalent -hsa:92370 up:Q9NT50 equivalent -hsa:9238 up:Q969Z0 equivalent -hsa:92399 up:Q96E11 equivalent -hsa:924 up:P09564 equivalent -hsa:924 up:Q29VG3 equivalent -hsa:9240 up:Q8ND90 equivalent -hsa:92400 up:Q96H35 equivalent -hsa:9241 up:Q13253 equivalent -hsa:9242 up:O60682 equivalent -hsa:92421 up:Q96CF2 equivalent -hsa:9244 up:O75462 equivalent -hsa:9245 up:O95395 equivalent -hsa:9246 up:O14933 equivalent -hsa:9247 up:O75603 equivalent -hsa:9248 up:Q13585 equivalent -hsa:92482 up:A8MTZ0 equivalent -hsa:92483 up:A0A140VJM9 equivalent -hsa:92483 up:Q9BYZ2 equivalent -hsa:9249 up:O75911 equivalent -hsa:925 up:P01732 equivalent -hsa:925 up:Q6ZVS2 equivalent -hsa:925 up:Q8TAW8 equivalent -hsa:9252 up:O75582 equivalent -hsa:92521 up:B4DW07 equivalent -hsa:92521 up:B4E2A4 equivalent -hsa:92521 up:Q5M775 equivalent -hsa:9253 up:A8K033 equivalent -hsa:9253 up:Q9Y6R0 equivalent -hsa:9254 up:Q9NY47 equivalent -hsa:9255 up:B4DNK3 equivalent -hsa:9255 up:Q12904 equivalent -hsa:92552 up:B4DYC7 equivalent -hsa:92552 up:Q9H3M9 equivalent -hsa:92558 up:Q6ZP65 equivalent -hsa:9256 up:A7E2C5 equivalent -hsa:9256 up:B2RUT8 equivalent -hsa:9256 up:B7ZVZ7 equivalent -hsa:9256 up:O95153 equivalent -hsa:92565 up:Q8TC84 equivalent -hsa:92579 up:Q9BUM1 equivalent -hsa:9258 up:Q9Y4C4 equivalent -hsa:92591 up:Q96NS5 equivalent -hsa:92595 up:Q96H86 equivalent -hsa:92597 up:Q7L9L4 equivalent -hsa:926 up:P10966 equivalent -hsa:9260 up:Q9NR12 equivalent -hsa:92609 up:Q3ZCQ8 equivalent -hsa:9261 up:P49137 equivalent -hsa:92610 up:Q96CG3 equivalent -hsa:9262 up:O94768 equivalent -hsa:9262 up:Q53QE7 equivalent -hsa:9263 up:Q9UEE5 equivalent -hsa:9265 up:O43739 equivalent -hsa:9266 up:Q99418 equivalent -hsa:92667 up:Q9BQP7 equivalent -hsa:9267 up:Q15438 equivalent -hsa:92675 up:Q8TEA8 equivalent -hsa:92689 up:Q8IWE2 equivalent -hsa:92691 up:Q96HH4 equivalent -hsa:9270 up:O14713 equivalent -hsa:92703 up:Q8IXX5 equivalent -hsa:9271 up:Q96J94 equivalent -hsa:92714 up:Q8N5I2 equivalent -hsa:92715 up:Q9BTV6 equivalent -hsa:92736 up:Q7RTS6 equivalent -hsa:92737 up:Q8NFT8 equivalent -hsa:9274 up:Q8WUZ0 equivalent -hsa:92745 up:Q8WUX1 equivalent -hsa:92747 up:Q8TDL5 equivalent -hsa:92749 up:Q96MC2 equivalent -hsa:9275 up:Q9BQE9 equivalent -hsa:9276 up:P35606 equivalent -hsa:9277 up:A8K806 equivalent -hsa:9277 up:O15213 equivalent -hsa:9278 up:A0A1U9X8V3 equivalent -hsa:9278 up:O15209 equivalent -hsa:92797 up:Q8NG08 equivalent -hsa:92799 up:Q8TBC3 equivalent -hsa:928 up:P21926 equivalent -hsa:92815 up:Q7L7L0 equivalent -hsa:9282 up:O60244 equivalent -hsa:92822 up:I6L9I3 equivalent -hsa:92822 up:Q8N554 equivalent -hsa:9283 up:O60883 equivalent -hsa:9284 up:Q9UND3 equivalent -hsa:92840 up:Q96HR9 equivalent -hsa:92856 up:Q96G21 equivalent -hsa:9287 up:Q9P1P5 equivalent -hsa:9289 up:A0A024R6U7 equivalent -hsa:9289 up:Q9Y653 equivalent -hsa:929 up:P08571 equivalent -hsa:9290 up:A8K858 equivalent -hsa:9290 up:Q9Y2T6 equivalent -hsa:92906 up:A0A0S2Z6K1 equivalent -hsa:92906 up:Q8WVV9 equivalent -hsa:92912 up:Q8WVN8 equivalent -hsa:92922 up:Q96A19 equivalent -hsa:9293 up:F2YGU0 equivalent -hsa:9293 up:Q9Y2T5 equivalent -hsa:92935 up:Q96GW9 equivalent -hsa:9294 up:O95136 equivalent -hsa:92949 up:Q6MZQ3 equivalent -hsa:92949 up:Q8N6G6 equivalent -hsa:9295 up:Q05519 equivalent -hsa:9296 up:A4D1K0 equivalent -hsa:9296 up:Q16864 equivalent -hsa:92960 up:Q96HA9 equivalent -hsa:92979 up:Q86YJ5 equivalent -hsa:92979 up:Q8N9T1 equivalent -hsa:92999 up:Q9UFB7 equivalent -hsa:93 up:Q13705 equivalent -hsa:930 up:P15391 equivalent -hsa:93010 up:Q8NFL0 equivalent -hsa:93034 up:A0A140VJC7 equivalent -hsa:93034 up:Q96P26 equivalent -hsa:93035 up:Q86WI1 equivalent -hsa:93058 up:Q96MF6 equivalent -hsa:9306 up:O14544 equivalent -hsa:9308 up:Q01151 equivalent -hsa:93081 up:Q5JUR7 equivalent -hsa:93082 up:Q96EH8 equivalent -hsa:93099 up:Q6E0U4 equivalent -hsa:931 up:P11836 equivalent -hsa:9310 up:Q14590 equivalent -hsa:93100 up:Q6XQN6 equivalent -hsa:93107 up:Q32MC1 equivalent -hsa:93107 up:Q547S7 equivalent -hsa:93107 up:Q8TDN1 equivalent -hsa:93109 up:Q2T9K0 equivalent -hsa:9311 up:A0A090N7X8 equivalent -hsa:9311 up:Q9UHC3 equivalent -hsa:9312 up:Q92953 equivalent -hsa:93129 up:Q9BRQ5 equivalent -hsa:9313 up:O60882 equivalent -hsa:93134 up:Q8N587 equivalent -hsa:9314 up:O43474 equivalent -hsa:93145 up:O95897 equivalent -hsa:9315 up:Q16612 equivalent -hsa:93166 up:Q9NQX0 equivalent -hsa:9317 up:Q96BW5 equivalent -hsa:9318 up:P61201 equivalent -hsa:93183 up:Q9H3S5 equivalent -hsa:93185 up:Q969P0 equivalent -hsa:9319 up:Q15645 equivalent -hsa:93190 up:Q8N1D5 equivalent -hsa:932 up:Q96HJ5 equivalent -hsa:9320 up:Q14669 equivalent -hsa:9321 up:Q15643 equivalent -hsa:93210 up:Q96FM1 equivalent -hsa:9322 up:Q15642 equivalent -hsa:93233 up:Q96M63 equivalent -hsa:9324 up:Q15651 equivalent -hsa:9325 up:Q15650 equivalent -hsa:9326 up:Q15649 equivalent -hsa:93273 up:Q68G75 equivalent -hsa:9328 up:Q9Y5Q8 equivalent -hsa:9329 up:B3KNH2 equivalent -hsa:9329 up:Q9UKN8 equivalent -hsa:933 up:P20273 equivalent -hsa:933 up:Q0EAF5 equivalent -hsa:9330 up:Q9Y5Q9 equivalent -hsa:9331 up:Q9UBX8 equivalent -hsa:9332 up:Q86VB7 equivalent -hsa:93323 up:Q9BT25 equivalent -hsa:9333 up:B4DPS8 equivalent -hsa:9333 up:O43548 equivalent -hsa:9334 up:O43286 equivalent -hsa:93343 up:Q96EY5 equivalent -hsa:93349 up:Q9H930 equivalent -hsa:9337 up:Q9UFF9 equivalent -hsa:93377 up:Q96PE5 equivalent -hsa:9338 up:Q15170 equivalent -hsa:93380 up:Q8N4V1 equivalent -hsa:9340 up:A0A384MTS7 equivalent -hsa:9340 up:B2RAN4 equivalent -hsa:9340 up:O95838 equivalent -hsa:93408 up:Q9BUA6 equivalent -hsa:9341 up:Q15836 equivalent -hsa:9341 up:Q6FGG2 equivalent -hsa:9342 up:O95721 equivalent -hsa:93426 up:A0A0B4J1R9 equivalent -hsa:93426 up:Q8N0S2 equivalent -hsa:9343 up:Q15029 equivalent -hsa:93432 up:Q2M2H8 equivalent -hsa:93436 up:Q6NXE6 equivalent -hsa:9344 up:Q9UL54 equivalent -hsa:93474 up:Q9BS34 equivalent -hsa:9348 up:O95803 equivalent -hsa:93487 up:Q8NDC0 equivalent -hsa:9349 up:P62829 equivalent -hsa:93492 up:Q6XPS3 equivalent -hsa:9350 up:O95813 equivalent -hsa:9351 up:Q15599 equivalent -hsa:93517 up:Q8WUS8 equivalent -hsa:9352 up:O43396 equivalent -hsa:9352 up:V9HW51 equivalent -hsa:9353 up:O94813 equivalent -hsa:9354 up:Q14139 equivalent -hsa:9355 up:B3KNJ5 equivalent -hsa:9355 up:P50458 equivalent -hsa:93550 up:Q86XD8 equivalent -hsa:9356 up:Q4U2R8 equivalent -hsa:9358 up:O95965 equivalent -hsa:93587 up:Q8TBZ6 equivalent -hsa:93587 up:V9HVY8 equivalent -hsa:93589 up:Q7Z3S7 equivalent -hsa:93594 up:Q96DN5 equivalent -hsa:9360 up:Q13427 equivalent -hsa:9361 up:P36776 equivalent -hsa:93611 up:Q9H4M3 equivalent -hsa:9362 up:O95741 equivalent -hsa:93621 up:Q9Y605 equivalent -hsa:93624 up:Q86TJ2 equivalent -hsa:93627 up:Q8TEA7 equivalent -hsa:9363 up:Q14088 equivalent -hsa:9364 up:P51157 equivalent -hsa:93643 up:Q5JTD0 equivalent -hsa:93649 up:Q8IZQ8 equivalent -hsa:9365 up:Q9UEF7 equivalent -hsa:93650 up:Q9BZG2 equivalent -hsa:93659 up:A0A0F7RQP8 equivalent -hsa:93659 up:P0DN86 equivalent -hsa:93661 up:A0A140VKF6 equivalent -hsa:93661 up:Q96KX2 equivalent -hsa:93663 up:Q8N392 equivalent -hsa:93664 up:Q86UW7 equivalent -hsa:9367 up:P51151 equivalent -hsa:9368 up:O14745 equivalent -hsa:9369 up:Q9HDB5 equivalent -hsa:9370 up:A8K660 equivalent -hsa:9370 up:B2R773 equivalent -hsa:9370 up:Q15848 equivalent -hsa:9371 up:O15066 equivalent -hsa:9372 up:O95405 equivalent -hsa:9373 up:Q9Y263 equivalent -hsa:9374 up:A0A1U9X8D2 equivalent -hsa:9374 up:Q9UMR5 equivalent -hsa:9375 up:A0A024QYR8 equivalent -hsa:9375 up:Q99805 equivalent -hsa:9376 up:B2R807 equivalent -hsa:9376 up:Q8TCC7 equivalent -hsa:9377 up:P20674 equivalent -hsa:9378 up:P58400 equivalent -hsa:9379 up:Q9P2S2 equivalent -hsa:9380 up:A0A384N605 equivalent -hsa:9380 up:Q9UBQ7 equivalent -hsa:9381 up:Q9HC10 equivalent -hsa:9382 up:Q8WTW3 equivalent -hsa:9388 up:Q9Y5X9 equivalent -hsa:9389 up:Q9Y267 equivalent -hsa:939 up:P26842 equivalent -hsa:9390 up:Q9Y226 equivalent -hsa:9391 up:O76071 equivalent -hsa:9392 up:Q8WUH2 equivalent -hsa:9394 up:O60243 equivalent -hsa:93953 up:Q96QF7 equivalent -hsa:9397 up:O60551 equivalent -hsa:93973 up:Q9H981 equivalent -hsa:93974 up:Q9UII2 equivalent -hsa:93978 up:Q6EIG7 equivalent -hsa:93979 up:A4D1M2 equivalent -hsa:93979 up:Q8WXQ8 equivalent -hsa:9398 up:Q93033 equivalent -hsa:93986 up:O15409 equivalent -hsa:9399 up:Q9UBI4 equivalent -hsa:94 up:A0A0S2Z310 equivalent -hsa:94 up:P37023 equivalent -hsa:940 up:P10747 equivalent -hsa:9400 up:O94762 equivalent -hsa:9400 up:Q8WYH5 equivalent -hsa:94005 up:Q8NBL9 equivalent -hsa:94005 up:Q96IR5 equivalent -hsa:94005 up:Q96S52 equivalent -hsa:9401 up:O94761 equivalent -hsa:94015 up:Q8N3U8 equivalent -hsa:94015 up:Q9BSA4 equivalent -hsa:9402 up:O75791 equivalent -hsa:9402 up:Q6FI14 equivalent -hsa:94025 up:B3KY81 equivalent -hsa:94025 up:Q8WXI7 equivalent -hsa:94026 up:Q96KW2 equivalent -hsa:94027 up:A0A0F7RQF0 equivalent -hsa:94027 up:P0DN87 equivalent -hsa:9403 up:O60613 equivalent -hsa:94030 up:Q9NT99 equivalent -hsa:94031 up:P83110 equivalent -hsa:94032 up:Q96S95 equivalent -hsa:94033 up:Q8N4E7 equivalent -hsa:94039 up:Q8IZC7 equivalent -hsa:9404 up:O60711 equivalent -hsa:94056 up:Q96A49 equivalent -hsa:94059 up:A0A087WVD1 equivalent -hsa:9406 up:O95218 equivalent -hsa:9407 up:O60235 equivalent -hsa:94081 up:Q9H9B4 equivalent -hsa:94086 up:Q9BQS6 equivalent -hsa:9409 up:Q9Y5Y5 equivalent -hsa:94097 up:Q8TD22 equivalent -hsa:941 up:A0N0P2 equivalent -hsa:941 up:P33681 equivalent -hsa:9410 up:A0MNP2 equivalent -hsa:9410 up:Q96DI7 equivalent -hsa:94101 up:Q9P0S3 equivalent -hsa:94103 up:Q8N138 equivalent -hsa:94104 up:Q8N6E6 equivalent -hsa:94104 up:Q9Y5B6 equivalent -hsa:94107 up:Q969S6 equivalent -hsa:9411 up:Q52LW3 equivalent -hsa:94115 up:A0A0F7RQP8 equivalent -hsa:94115 up:P0DN86 equivalent -hsa:9412 up:A0A024RAW0 equivalent -hsa:9412 up:Q13503 equivalent -hsa:94120 up:B4E2A9 equivalent -hsa:94120 up:Q4VX76 equivalent -hsa:94121 up:A8K973 equivalent -hsa:94121 up:Q71SF7 equivalent -hsa:94121 up:Q96C24 equivalent -hsa:94122 up:Q8TDW5 equivalent -hsa:9413 up:Q15884 equivalent -hsa:9413 up:Q8WU02 equivalent -hsa:94134 up:Q8IWW6 equivalent -hsa:94137 up:Q8IWN7 equivalent -hsa:9414 up:Q9UDY2 equivalent -hsa:9415 up:O95864 equivalent -hsa:9416 up:B3KY11 equivalent -hsa:9416 up:Q9BUQ8 equivalent -hsa:94160 up:Q96J65 equivalent -hsa:9419 up:Q9P021 equivalent -hsa:942 up:A8K632 equivalent -hsa:942 up:P42081 equivalent -hsa:9420 up:O75881 equivalent -hsa:9420 up:Q05C57 equivalent -hsa:9421 up:O96004 equivalent -hsa:9422 up:O43296 equivalent -hsa:9423 up:O95631 equivalent -hsa:94233 up:Q9UHM6 equivalent -hsa:94234 up:Q9C009 equivalent -hsa:94235 up:Q9UK08 equivalent -hsa:94239 up:Q71UI9 equivalent -hsa:9424 up:B2RDS2 equivalent -hsa:9424 up:Q9Y257 equivalent -hsa:94240 up:Q96J88 equivalent -hsa:94241 up:Q96A56 equivalent -hsa:9425 up:Q9Y232 equivalent -hsa:9426 up:Q9Y6F7 equivalent -hsa:9427 up:A0A6F7YIA8 equivalent -hsa:9427 up:O95672 equivalent -hsa:94274 up:Q96A00 equivalent -hsa:9429 up:Q9UNQ0 equivalent -hsa:943 up:A5D8T4 equivalent -hsa:943 up:P28908 equivalent -hsa:9435 up:Q9Y4C5 equivalent -hsa:9435 up:V9HVX9 equivalent -hsa:9436 up:O95944 equivalent -hsa:9437 up:A0A0A0MQZ0 equivalent -hsa:9437 up:O76036 equivalent -hsa:9439 up:Q9ULK4 equivalent -hsa:944 up:P32971 equivalent -hsa:944 up:Q52M88 equivalent -hsa:9440 up:Q9NVC6 equivalent -hsa:9441 up:O95402 equivalent -hsa:9442 up:Q6P2C8 equivalent -hsa:9443 up:O43513 equivalent -hsa:9443 up:Q6IAZ5 equivalent -hsa:9444 up:Q8WY44 equivalent -hsa:9444 up:Q96PU8 equivalent -hsa:9445 up:A0A384MDP7 equivalent -hsa:9445 up:Q9Y287 equivalent -hsa:9446 up:P78417 equivalent -hsa:9446 up:V9HWG9 equivalent -hsa:9447 up:O14862 equivalent -hsa:9448 up:O95819 equivalent -hsa:945 up:P20138 equivalent -hsa:945 up:Q546G0 equivalent -hsa:9450 up:O95711 equivalent -hsa:9451 up:B3KY45 equivalent -hsa:9451 up:Q9NZJ5 equivalent -hsa:9452 up:O43736 equivalent -hsa:9453 up:O95749 equivalent -hsa:9454 up:Q9NSC5 equivalent -hsa:9455 up:Q9NSB8 equivalent -hsa:9456 up:Q5U5K4 equivalent -hsa:9456 up:Q86YM7 equivalent -hsa:9457 up:Q5TD97 equivalent -hsa:9459 up:Q15052 equivalent -hsa:9459 up:Q8N4Q3 equivalent -hsa:946 up:O43699 equivalent -hsa:9462 up:A8K2P3 equivalent -hsa:9462 up:Q9UJF2 equivalent -hsa:9463 up:Q9NRD5 equivalent -hsa:9464 up:P61296 equivalent -hsa:9465 up:Q2TAJ5 equivalent -hsa:9465 up:Q9P0M2 equivalent -hsa:9466 up:Q6UWB1 equivalent -hsa:9467 up:O60239 equivalent -hsa:9468 up:Q9Y5K3 equivalent -hsa:9469 up:Q7LGC8 equivalent -hsa:947 up:P28906 equivalent -hsa:9470 up:O60573 equivalent -hsa:9470 up:Q53RG0 equivalent -hsa:9472 up:B2RP22 equivalent -hsa:9472 up:Q13023 equivalent -hsa:9473 up:Q5TEJ8 equivalent -hsa:9474 up:A9UGY9 equivalent -hsa:9474 up:Q7Z3H3 equivalent -hsa:9474 up:Q9H1Y0 equivalent -hsa:9475 up:A0A2P9DU05 equivalent -hsa:9475 up:O75116 equivalent -hsa:9475 up:Q14DU5 equivalent -hsa:9476 up:O96009 equivalent -hsa:9477 up:Q9H944 equivalent -hsa:9478 up:Q9NZU7 equivalent -hsa:9479 up:Q6NUQ9 equivalent -hsa:9479 up:Q9UQF2 equivalent -hsa:948 up:A4D1B1 equivalent -hsa:948 up:P16671 equivalent -hsa:9480 up:O95948 equivalent -hsa:9481 up:O95847 equivalent -hsa:9482 up:Q9UNK0 equivalent -hsa:9486 up:O43529 equivalent -hsa:9487 up:Q9Y2B2 equivalent -hsa:9488 up:Q92521 equivalent -hsa:9489 up:Q32NB8 equivalent -hsa:949 up:Q8WTV0 equivalent -hsa:9491 up:A0A140VJT2 equivalent -hsa:9491 up:Q92530 equivalent -hsa:9493 up:Q02241 equivalent -hsa:9495 up:P24588 equivalent -hsa:9495 up:Q6PG46 equivalent -hsa:9496 up:P57082 equivalent -hsa:9497 up:Q9Y6M7 equivalent -hsa:9498 up:Q2Y0W8 equivalent -hsa:9499 up:A0A0C4DFM5 equivalent -hsa:9499 up:Q9UBF9 equivalent -hsa:95 up:Q03154 equivalent -hsa:95 up:V9HWA0 equivalent -hsa:950 up:Q14108 equivalent -hsa:9500 up:Q9Y5V3 equivalent -hsa:9501 up:Q9UNE2 equivalent -hsa:9502 up:Q96GT9 equivalent -hsa:9506 up:O60829 equivalent -hsa:9507 up:O75173 equivalent -hsa:9508 up:B7Z2U9 equivalent -hsa:9508 up:O15072 equivalent -hsa:9508 up:Q96AY5 equivalent -hsa:9509 up:O95450 equivalent -hsa:951 up:P11049 equivalent -hsa:9510 up:B2RB33 equivalent -hsa:9510 up:Q9UHI8 equivalent -hsa:9512 up:B3KM34 equivalent -hsa:9512 up:O75439 equivalent -hsa:9512 up:Q96CP5 equivalent -hsa:9513 up:P51116 equivalent -hsa:9514 up:Q99999 equivalent -hsa:9515 up:B4DKF6 reverse -hsa:9515 up:E9PFI2 reverse -hsa:9515 up:Q9Y2K9 equivalent -hsa:9516 up:Q99732 equivalent -hsa:9517 up:O15270 equivalent -hsa:9518 up:Q99988 equivalent -hsa:9519 up:P62380 equivalent -hsa:952 up:B4E006 equivalent -hsa:952 up:P28907 equivalent -hsa:9520 up:P55786 equivalent -hsa:9521 up:O43324 equivalent -hsa:9522 up:O15126 equivalent -hsa:9524 up:Q9NZ01 equivalent -hsa:9525 up:O75351 equivalent -hsa:9526 up:A0A0S2Z4W8 equivalent -hsa:9526 up:O75352 equivalent -hsa:9527 up:O95249 equivalent -hsa:9528 up:Q9BXS4 equivalent -hsa:9529 up:A0A024R6M6 equivalent -hsa:9529 up:Q9UL15 equivalent -hsa:953 up:P49961 equivalent -hsa:9530 up:O95429 equivalent -hsa:9531 up:O95817 equivalent -hsa:9532 up:O95816 equivalent -hsa:9533 up:O15160 equivalent -hsa:9534 up:O75437 equivalent -hsa:9535 up:O60234 equivalent -hsa:9536 up:O14684 equivalent -hsa:9537 up:O14683 equivalent -hsa:9538 up:O14681 equivalent -hsa:954 up:Q9Y5L3 equivalent -hsa:9540 up:Q53FA7 equivalent -hsa:9541 up:Q86X95 equivalent -hsa:9542 up:O14511 equivalent -hsa:9543 up:Q8IVU1 equivalent -hsa:9545 up:A0A024R7G2 equivalent -hsa:9545 up:O95716 equivalent -hsa:9546 up:O96018 equivalent -hsa:9547 up:O95715 equivalent -hsa:955 up:O75354 equivalent -hsa:9550 up:O75348 equivalent -hsa:9551 up:P56134 equivalent -hsa:9552 up:O75391 equivalent -hsa:9553 up:O75394 equivalent -hsa:9554 up:O75396 equivalent -hsa:9555 up:O75367 equivalent -hsa:9556 up:P56378 equivalent -hsa:9557 up:Q86WJ1 equivalent -hsa:9559 up:O75436 equivalent -hsa:956 up:O75355 equivalent -hsa:9560 up:Q8NHW4 equivalent -hsa:9562 up:Q9UNW1 equivalent -hsa:9563 up:O95479 equivalent -hsa:9564 up:P56945 equivalent -hsa:9567 up:O00178 equivalent -hsa:9568 up:H9NIL8 equivalent -hsa:9568 up:O75899 equivalent -hsa:95681 up:Q9BYV8 equivalent -hsa:9569 up:Q9UHL9 equivalent -hsa:957 up:O75356 equivalent -hsa:9570 up:O14653 equivalent -hsa:9572 up:F1D8S3 equivalent -hsa:9572 up:P20393 equivalent -hsa:9573 up:Q9NR23 equivalent -hsa:9575 up:O15516 equivalent -hsa:9575 up:Q3ZCT4 equivalent -hsa:9576 up:A0A140VJU9 equivalent -hsa:9576 up:O75602 equivalent -hsa:9577 up:Q9NXR7 equivalent -hsa:9578 up:Q86XZ8 equivalent -hsa:9578 up:Q9Y5S2 equivalent -hsa:958 up:A0A0S2Z3C7 equivalent -hsa:958 up:P25942 equivalent -hsa:958 up:Q6P2H9 equivalent -hsa:9580 up:Q9UN79 equivalent -hsa:9581 up:Q4J6C6 equivalent -hsa:9582 up:Q9UH17 equivalent -hsa:9583 up:Q9Y227 equivalent -hsa:9584 up:A0A384NQ03 equivalent -hsa:9584 up:Q14498 equivalent -hsa:9585 up:Q96Q89 equivalent -hsa:9586 up:Q02930 equivalent -hsa:9587 up:Q15013 equivalent -hsa:9588 up:P30041 equivalent -hsa:9588 up:V9HWC7 equivalent -hsa:9589 up:Q15007 equivalent -hsa:959 up:P29965 equivalent -hsa:9590 up:Q02952 equivalent -hsa:9590 up:Q86TJ9 equivalent -hsa:9592 up:Q9BTL4 equivalent -hsa:9595 up:O60759 equivalent -hsa:960 up:P16070 equivalent -hsa:9600 up:B2R787 equivalent -hsa:9600 up:O00562 equivalent -hsa:9601 up:A0A090N8Y2 equivalent -hsa:9601 up:P13667 equivalent -hsa:9603 up:Q9Y4A8 equivalent -hsa:9604 up:Q9UBS8 equivalent -hsa:9605 up:Q9Y2B5 equivalent -hsa:9607 up:Q16568 equivalent -hsa:9609 up:O95755 equivalent -hsa:961 up:Q08722 equivalent -hsa:9610 up:A0A0S2Z4U0 equivalent -hsa:9610 up:Q13671 equivalent -hsa:9611 up:O75376 equivalent -hsa:9612 up:Q9Y618 equivalent -hsa:9615 up:Q9Y2T3 equivalent -hsa:9616 up:Q9UBF6 equivalent -hsa:9617 up:O75570 equivalent -hsa:9618 up:Q9BUZ4 equivalent -hsa:9619 up:P45844 equivalent -hsa:962 up:P09326 equivalent -hsa:9620 up:Q9NYQ6 equivalent -hsa:9622 up:A0A0C4DFQ5 equivalent -hsa:9622 up:Q9Y5K2 equivalent -hsa:9623 up:O95988 equivalent -hsa:9625 up:Q6ZMQ8 equivalent -hsa:9626 up:O95843 equivalent -hsa:9627 up:Q9Y6H5 equivalent -hsa:9628 up:P49758 equivalent -hsa:9628 up:Q2M3K2 equivalent -hsa:963 up:P19397 equivalent -hsa:9630 up:O95837 equivalent -hsa:9631 up:O75694 equivalent -hsa:9632 up:P53992 equivalent -hsa:9633 up:Q9Y4I5 equivalent -hsa:9635 up:Q9UQC9 equivalent -hsa:9636 up:P05161 equivalent -hsa:9637 up:Q9UHY8 equivalent -hsa:9638 up:Q99689 equivalent -hsa:9639 up:O15013 equivalent -hsa:9640 up:Q92610 equivalent -hsa:9641 up:Q14164 equivalent -hsa:9643 up:Q15014 equivalent -hsa:9644 up:B3KPL1 equivalent -hsa:9644 up:Q5TCZ1 equivalent -hsa:9645 up:O94851 equivalent -hsa:96459 up:Q8TF40 equivalent -hsa:9646 up:Q6PD62 equivalent -hsa:9647 up:P49593 equivalent -hsa:9648 up:B3KR21 equivalent -hsa:9648 up:Q8IWJ2 equivalent -hsa:9649 up:Q5JS13 equivalent -hsa:965 up:P19256 equivalent -hsa:9650 up:Q15390 equivalent -hsa:9651 up:O75038 equivalent -hsa:9652 up:Q6PGP7 equivalent -hsa:9653 up:Q7LGA3 equivalent -hsa:9654 up:Q14679 equivalent -hsa:9655 up:O75159 equivalent -hsa:9656 up:A0A1U9XBC1 equivalent -hsa:9656 up:A1Z5I9 equivalent -hsa:9656 up:Q14676 equivalent -hsa:9657 up:Q15051 equivalent -hsa:9658 up:Q2YDX2 equivalent -hsa:9658 up:Q92618 equivalent -hsa:9659 up:Q5VU43 equivalent -hsa:966 up:P13987 equivalent -hsa:966 up:Q6FHM9 equivalent -hsa:9662 up:Q66GS9 equivalent -hsa:96626 up:P0CW19 equivalent -hsa:96626 up:P0CW20 equivalent -hsa:9663 up:Q92539 equivalent -hsa:9665 up:Q9Y4F3 equivalent -hsa:9666 up:Q86Y13 equivalent -hsa:9667 up:Q14151 equivalent -hsa:9668 up:O94892 equivalent -hsa:9669 up:O60841 equivalent -hsa:9669 up:Q8N5A0 equivalent -hsa:967 up:P08962 equivalent -hsa:9670 up:O94829 equivalent -hsa:9671 up:Q2TBF2 equivalent -hsa:9672 up:O75056 equivalent -hsa:9673 up:Q96H78 equivalent -hsa:9674 up:Q15053 equivalent -hsa:9675 up:O43156 equivalent -hsa:96764 up:Q96RS0 equivalent -hsa:9677 up:Q6PFW1 equivalent -hsa:9678 up:B4DG57 equivalent -hsa:9678 up:O94880 equivalent -hsa:9679 up:Q14153 equivalent -hsa:968 up:P34810 equivalent -hsa:9681 up:O75140 equivalent -hsa:9682 up:O75164 equivalent -hsa:9683 up:O75113 equivalent -hsa:9684 up:Q15048 equivalent -hsa:9685 up:Q14677 equivalent -hsa:9686 up:A0A075B6E4 equivalent -hsa:9686 up:Q14135 equivalent -hsa:9687 up:Q4ZG55 equivalent -hsa:9688 up:Q8N1F7 equivalent -hsa:9689 up:Q3LIC9 equivalent -hsa:9689 up:Q7L1Q6 equivalent -hsa:969 up:Q07108 equivalent -hsa:969 up:Q53ZX0 equivalent -hsa:9690 up:Q15386 equivalent -hsa:9692 up:O15091 equivalent -hsa:9693 up:Q9Y4G8 equivalent -hsa:9694 up:Q15006 equivalent -hsa:9695 up:Q92611 equivalent -hsa:9696 up:Q5TZA2 equivalent -hsa:9697 up:A0A024RD84 equivalent -hsa:9697 up:Q15035 equivalent -hsa:9698 up:Q14671 equivalent -hsa:9699 up:Q9UQ26 equivalent -hsa:97 up:P07311 equivalent -hsa:970 up:A0A0U5JA32 equivalent -hsa:970 up:P32970 equivalent -hsa:9700 up:Q14674 equivalent -hsa:9701 up:O75170 equivalent -hsa:9702 up:Q86XR8 equivalent -hsa:9703 up:Q14667 equivalent -hsa:9704 up:Q14147 equivalent -hsa:9705 up:O60284 equivalent -hsa:9706 up:Q8IYT8 equivalent -hsa:9708 up:Q9Y5G5 equivalent -hsa:9709 up:Q15011 equivalent -hsa:9709 up:Q53FP9 equivalent -hsa:971 up:P21854 equivalent -hsa:971 up:Q5TLG3 equivalent -hsa:9710 up:O15063 equivalent -hsa:9711 up:Q8N4U6 equivalent -hsa:9711 up:Q92622 equivalent -hsa:9712 up:Q92738 equivalent -hsa:9715 up:Q86XD5 equivalent -hsa:9716 up:O60306 equivalent -hsa:9717 up:O43304 equivalent -hsa:9718 up:P0DPD6 equivalent -hsa:9718 up:P0DPD8 equivalent -hsa:9719 up:Q86TH1 equivalent -hsa:972 up:P04233 equivalent -hsa:9720 up:A2RUR9 equivalent -hsa:9720 up:B7ZM27 equivalent -hsa:9721 up:O60269 equivalent -hsa:9722 up:O75052 equivalent -hsa:9723 up:O15041 equivalent -hsa:9724 up:Q5TAP6 equivalent -hsa:9725 up:O94886 equivalent -hsa:9726 up:O15015 equivalent -hsa:9727 up:O75154 equivalent -hsa:9728 up:Q93073 equivalent -hsa:9729 up:Q6ZU52 equivalent -hsa:973 up:P11912 equivalent -hsa:9730 up:Q9Y4B6 equivalent -hsa:9731 up:O60308 equivalent -hsa:9732 up:Q8N1I0 equivalent -hsa:9733 up:Q15020 equivalent -hsa:9734 up:Q9UKV0 equivalent -hsa:9735 up:P50748 equivalent -hsa:9736 up:Q70CQ2 equivalent -hsa:9737 up:Q5JY77 equivalent -hsa:9738 up:O43303 equivalent -hsa:9739 up:O15047 equivalent -hsa:974 up:P40259 equivalent -hsa:9741 up:Q15012 equivalent -hsa:9741 up:Q6IBP4 equivalent -hsa:9742 up:Q96RY7 equivalent -hsa:9743 up:A7KAX9 equivalent -hsa:9743 up:Q86T64 equivalent -hsa:9744 up:Q15027 equivalent -hsa:9745 up:O15090 equivalent -hsa:9746 up:Q9BQT9 equivalent -hsa:9747 up:Q9Y4C2 equivalent -hsa:9748 up:Q9H2G2 equivalent -hsa:9749 up:O75167 equivalent -hsa:975 up:P60033 equivalent -hsa:9750 up:B7Z5J9 equivalent -hsa:9750 up:Q9Y4F9 equivalent -hsa:9751 up:O15079 equivalent -hsa:9752 up:Q9Y5H5 equivalent -hsa:9753 up:A0A804HJ42 equivalent -hsa:9753 up:O43309 equivalent -hsa:9754 up:Q92502 equivalent -hsa:9755 up:A7MCY6 equivalent -hsa:9757 up:Q9UMN6 equivalent -hsa:9758 up:Q14CM0 equivalent -hsa:9759 up:P56524 equivalent -hsa:976 up:P48960 equivalent -hsa:9760 up:O94900 equivalent -hsa:9761 up:Q14165 equivalent -hsa:9762 up:O60299 equivalent -hsa:9764 up:O60268 equivalent -hsa:9765 up:Q7Z3T8 equivalent -hsa:9766 up:Q92537 equivalent -hsa:9767 up:Q92613 equivalent -hsa:9768 up:Q15004 equivalent -hsa:977 up:P48509 equivalent -hsa:977 up:Q6ZNZ0 equivalent -hsa:9770 up:P50749 equivalent -hsa:9771 up:A8MQ07 equivalent -hsa:9771 up:Q5JPD2 equivalent -hsa:9771 up:Q92565 equivalent -hsa:9772 up:B7Z9U5 reverse -hsa:9772 up:Q12767 equivalent -hsa:9774 up:Q9NYF8 equivalent -hsa:9775 up:P38919 equivalent -hsa:9776 up:A8K0S6 equivalent -hsa:9776 up:O75143 equivalent -hsa:9777 up:A0A024QYR3 equivalent -hsa:9777 up:Q92544 equivalent -hsa:9778 up:A5YKK5 equivalent -hsa:9778 up:Q92628 equivalent -hsa:9779 up:B9A6K1 equivalent -hsa:9779 up:Q92609 equivalent -hsa:978 up:P32320 equivalent -hsa:9780 up:Q92508 equivalent -hsa:9781 up:P50876 equivalent -hsa:9782 up:A0A0R4J2E8 equivalent -hsa:9782 up:P43243 equivalent -hsa:9783 up:Q9UJD0 equivalent -hsa:9784 up:Q15036 equivalent -hsa:9785 up:Q92620 equivalent -hsa:9786 up:Q9BVV6 equivalent -hsa:9787 up:Q15398 equivalent -hsa:9788 up:O43312 equivalent -hsa:9789 up:Q15005 equivalent -hsa:9790 up:Q14692 equivalent -hsa:9791 up:P48651 equivalent -hsa:9792 up:Q14140 equivalent -hsa:9793 up:Q14008 equivalent -hsa:9794 up:Q92585 equivalent -hsa:9796 up:Q92561 equivalent -hsa:9797 up:Q93075 equivalent -hsa:9798 up:P53990 equivalent -hsa:98 up:A0A140VJD7 equivalent -hsa:98 up:P14621 equivalent -hsa:9801 up:P49406 equivalent -hsa:9802 up:Q15038 equivalent -hsa:9804 up:Q15388 equivalent -hsa:9805 up:A0A090N7T9 equivalent -hsa:9805 up:Q12765 equivalent -hsa:9806 up:Q92563 equivalent -hsa:9807 up:Q92551 equivalent -hsa:9810 up:O75150 equivalent -hsa:9811 up:O43310 equivalent -hsa:9812 up:Q14154 equivalent -hsa:9813 up:O75071 equivalent -hsa:9814 up:A8K8P3 equivalent -hsa:9815 up:Q14161 equivalent -hsa:9816 up:Q14146 equivalent -hsa:9817 up:Q14145 equivalent -hsa:9818 up:Q9BVL2 equivalent -hsa:9819 up:O75157 equivalent -hsa:9820 up:Q14999 equivalent -hsa:9821 up:Q8TDY2 equivalent -hsa:9823 up:Q7L311 equivalent -hsa:9824 up:Q6P4F7 equivalent -hsa:9825 up:A8K0S9 equivalent -hsa:9825 up:Q9UM82 equivalent -hsa:9826 up:O15085 equivalent -hsa:9827 up:A8K0K1 equivalent -hsa:9827 up:Q92546 equivalent -hsa:9828 up:Q96PE2 equivalent -hsa:9829 up:O75061 equivalent -hsa:983 up:P06493 equivalent -hsa:9830 up:Q14142 equivalent -hsa:9831 up:O75123 equivalent -hsa:9832 up:Q96AA8 equivalent -hsa:9833 up:Q14680 equivalent -hsa:9836 up:O60294 equivalent -hsa:9837 up:Q14691 equivalent -hsa:9839 up:O60315 equivalent -hsa:984 up:P21127 equivalent -hsa:9840 up:A2RU30 equivalent -hsa:9841 up:O43167 equivalent -hsa:9842 up:Q9Y4G2 equivalent -hsa:9843 up:Q1HE23 equivalent -hsa:9843 up:Q9BQS7 equivalent -hsa:9844 up:A4D1X5 equivalent -hsa:9844 up:Q92556 equivalent -hsa:9846 up:Q9UQC2 equivalent -hsa:9847 up:Q86YS7 equivalent -hsa:9848 up:O75121 equivalent -hsa:9849 up:Q6AHZ1 equivalent -hsa:9851 up:Q2KHM9 equivalent -hsa:9852 up:Q7L775 equivalent -hsa:9853 up:Q8N2Y8 equivalent -hsa:9854 up:O14523 equivalent -hsa:9855 up:O94887 equivalent -hsa:9856 up:Q5VV43 equivalent -hsa:9857 up:Q5VT06 equivalent -hsa:9858 up:Q5T8A7 equivalent -hsa:9859 up:Q5SW79 equivalent -hsa:9860 up:O94898 equivalent -hsa:9861 up:Q15008 equivalent -hsa:9862 up:O75448 equivalent -hsa:9863 up:Q86UL8 equivalent -hsa:9865 up:Q7L0X0 equivalent -hsa:9866 up:O15016 equivalent -hsa:9867 up:O43164 equivalent -hsa:9868 up:O94826 equivalent -hsa:9869 up:Q15047 equivalent -hsa:987 up:P50851 equivalent -hsa:9870 up:O15033 equivalent -hsa:9871 up:A8K6V0 equivalent -hsa:9871 up:O94855 equivalent -hsa:9873 up:O94868 equivalent -hsa:9874 up:Q9UKI8 equivalent -hsa:9875 up:O60287 equivalent -hsa:9877 up:O75152 equivalent -hsa:9878 up:O94842 equivalent -hsa:9879 up:Q7L014 equivalent -hsa:988 up:Q99459 equivalent -hsa:9880 up:O15060 equivalent -hsa:9881 up:O15050 equivalent -hsa:9882 up:O60343 equivalent -hsa:9883 up:Q96HA1 equivalent -hsa:9884 up:A6NMS7 equivalent -hsa:9885 up:Q9H1P3 equivalent -hsa:9886 up:O94844 equivalent -hsa:9887 up:Q6TV06 equivalent -hsa:9887 up:Q92540 equivalent -hsa:9889 up:O75132 equivalent -hsa:989 up:Q16181 equivalent -hsa:9890 up:Q7Z2D5 equivalent -hsa:9891 up:O60285 equivalent -hsa:9892 up:O60641 equivalent -hsa:9894 up:B4DXS2 equivalent -hsa:9894 up:Q9Y4R8 equivalent -hsa:9895 up:O15040 equivalent -hsa:9896 up:Q92562 equivalent -hsa:9897 up:Q12768 equivalent -hsa:9898 up:Q14157 equivalent -hsa:9899 up:Q7L1I2 equivalent -hsa:990 up:Q99741 equivalent -hsa:9900 up:Q7L0J3 equivalent -hsa:9901 up:O43295 equivalent -hsa:9902 up:Q9UBG0 equivalent -hsa:9903 up:Q9UJP4 equivalent -hsa:9904 up:Q9Y4C8 equivalent -hsa:9905 up:B9A6J3 equivalent -hsa:9905 up:O43147 equivalent -hsa:9907 up:O43299 equivalent -hsa:9908 up:Q9UN86 equivalent -hsa:9909 up:O75064 equivalent -hsa:991 up:Q12834 equivalent -hsa:9910 up:B7ZAP0 equivalent -hsa:9911 up:O75069 equivalent -hsa:9912 up:Q17R89 equivalent -hsa:9912 up:Q69Z00 equivalent -hsa:9913 up:O94864 equivalent -hsa:9914 up:O75185 equivalent -hsa:9915 up:Q7Z3A3 equivalent -hsa:9915 up:Q86TN1 equivalent -hsa:9915 up:Q9HBZ2 equivalent -hsa:9915 up:X5DQN9 equivalent -hsa:9917 up:O75063 equivalent -hsa:9918 up:B3KMS0 equivalent -hsa:9918 up:B3KY03 equivalent -hsa:9918 up:Q15021 equivalent -hsa:9919 up:O15027 equivalent -hsa:9920 up:O94819 equivalent -hsa:9921 up:A0A024RBP0 equivalent -hsa:9921 up:Q8N5U6 equivalent -hsa:9922 up:Q6DN90 equivalent -hsa:9923 up:B3KR52 equivalent -hsa:9923 up:Q1RMZ5 equivalent -hsa:9923 up:Q9NUA8 equivalent -hsa:9924 up:Q504Q3 equivalent -hsa:9925 up:O15062 equivalent -hsa:9925 up:Q5T942 equivalent -hsa:9926 up:Q92604 equivalent -hsa:9927 up:O95140 equivalent -hsa:9928 up:Q15058 equivalent -hsa:9929 up:Q15040 equivalent -hsa:993 up:P30304 equivalent -hsa:9931 up:A0A2P0H7U5 equivalent -hsa:9931 up:P42694 equivalent -hsa:9933 up:Q15397 equivalent -hsa:9934 up:A5JUU3 equivalent -hsa:9934 up:Q15391 equivalent -hsa:9935 up:Q9Y5Q3 equivalent -hsa:9936 up:Q8IX05 equivalent -hsa:9937 up:Q6PJP8 equivalent -hsa:9938 up:P42331 equivalent -hsa:9939 up:A0A023T787 equivalent -hsa:9939 up:Q9Y5S9 equivalent -hsa:994 up:B3KS38 equivalent -hsa:994 up:P30305 equivalent -hsa:994 up:Q6MZW8 equivalent -hsa:9940 up:Q9Y238 equivalent -hsa:9941 up:Q9Y2C4 equivalent -hsa:9942 up:O75191 equivalent -hsa:9943 up:O95747 equivalent -hsa:9945 up:A0A0S2Z4X9 equivalent -hsa:9945 up:B3KMR8 equivalent -hsa:9945 up:O94808 equivalent -hsa:9946 up:O95825 equivalent -hsa:9947 up:O60732 equivalent -hsa:9948 up:O75083 equivalent -hsa:9948 up:V9HWG7 equivalent -hsa:9949 up:A0A0S2Z4V0 reverse -hsa:9949 up:A0A0S2Z4X0 equivalent -hsa:9949 up:Q9Y4X0 equivalent -hsa:995 up:P30307 equivalent -hsa:9950 up:Q8TBA6 equivalent -hsa:9951 up:Q9Y661 equivalent -hsa:9953 up:Q9Y662 equivalent -hsa:9955 up:Q9Y663 equivalent -hsa:9956 up:Q9Y278 equivalent -hsa:9957 up:O14792 equivalent -hsa:9958 up:Q9Y4E8 equivalent -hsa:996 up:P30260 equivalent -hsa:9960 up:Q9Y6I4 equivalent -hsa:9961 up:Q14764 equivalent -hsa:9961 up:X5D2M8 equivalent -hsa:9962 up:A0A140VK48 equivalent -hsa:9962 up:Q9UGH3 equivalent -hsa:9963 up:Q9UHI7 equivalent -hsa:9965 up:A0A7U3L4E7 equivalent -hsa:9965 up:O95750 equivalent -hsa:9966 up:A0A0U5JA19 equivalent -hsa:9966 up:O95150 equivalent -hsa:9967 up:Q9Y2W1 equivalent -hsa:9968 up:Q93074 equivalent -hsa:9969 up:Q9UHV7 equivalent -hsa:997 up:P49427 equivalent -hsa:9970 up:Q14994 equivalent -hsa:9971 up:Q96RI1 equivalent -hsa:9972 up:P49790 equivalent -hsa:9973 up:O14618 equivalent -hsa:9975 up:F1D8P2 equivalent -hsa:9975 up:Q14995 equivalent -hsa:9976 up:Q92478 equivalent -hsa:9978 up:P62877 equivalent -hsa:998 up:P60953 equivalent -hsa:9980 up:Q9Y3R5 equivalent -hsa:9982 up:Q14512 equivalent -hsa:9984 up:Q96FV9 equivalent -hsa:9985 up:O95072 equivalent -hsa:9986 up:Q0P5W4 equivalent -hsa:9986 up:Q9Y256 equivalent -hsa:9987 up:O14979 equivalent -hsa:9988 up:B3KMJ8 equivalent -hsa:9988 up:Q9Y222 equivalent -hsa:9989 up:Q8TF05 equivalent -hsa:999 up:A0A0U2ZQU7 equivalent -hsa:999 up:B3GN61 equivalent -hsa:999 up:P12830 equivalent -hsa:9990 up:Q9UHW9 equivalent -hsa:9991 up:O95758 equivalent -hsa:9992 up:Q9Y6J6 equivalent -hsa:9993 up:P98153 equivalent -hsa:9993 up:Q8IWC8 equivalent -hsa:9994 up:Q9UKL3 equivalent -hsa:9997 up:O43819 equivalent diff --git a/hiv-benchmarking/hiv_raw_data/idmapping_2024_06_26.tsv b/hiv-benchmarking/hiv_raw_data/idmapping_2024_06_26.tsv deleted file mode 100644 index a46cb47..0000000 --- a/hiv-benchmarking/hiv_raw_data/idmapping_2024_06_26.tsv +++ /dev/null @@ -1,2087 +0,0 @@ -From Entry Reviewed Entry Name Protein names -Q96K83 Q96K83 reviewed ZN521_HUMAN Zinc finger protein 521 (Early hematopoietic zinc finger protein) (LYST-interacting protein 3) -P07305 P07305 reviewed H10_HUMAN Histone H1.0 (Histone H1') (Histone H1(0)) [Cleaved into: Histone H1.0, N-terminally processed] -O95793 O95793 reviewed STAU1_HUMAN Double-stranded RNA-binding protein Staufen homolog 1 -Q5QP82 Q5QP82 reviewed DCA10_HUMAN DDB1- and CUL4-associated factor 10 (WD repeat-containing protein 32) -Q9Y4I1 Q9Y4I1 reviewed MYO5A_HUMAN Unconventional myosin-Va (Dilute myosin heavy chain, non-muscle) (Myosin heavy chain 12) (Myosin-12) (Myoxin) -Q9BTE6 Q9BTE6 reviewed AASD1_HUMAN Alanyl-tRNA editing protein Aarsd1 (Alanyl-tRNA synthetase domain-containing protein 1) -Q92621 Q92621 reviewed NU205_HUMAN Nuclear pore complex protein Nup205 (205 kDa nucleoporin) (Nucleoporin Nup205) -Q96G23 Q96G23 reviewed CERS2_HUMAN Ceramide synthase 2 (CerS2) (LAG1 longevity assurance homolog 2) (SP260) (Sphingosine N-acyltransferase CERS2) (EC 2.3.1.24) (Tumor metastasis-suppressor gene 1 protein) (Very-long-chain ceramide synthase CERS2) (EC 2.3.1.297) -A0A0C4DGB9 A0A0C4DGB9 unreviewed A0A0C4DGB9_HUMAN Inorganic pyrophosphatase 2 -G3V4K3 G3V4K3 unreviewed G3V4K3_HUMAN Spermatogenesis-defective protein 39 homolog (VPS33B-interacting protein in apical-basolateral polarity regulator) (VPS33B-interacting protein in polarity and apical restriction) -Q9BPX3 Q9BPX3 reviewed CND3_HUMAN Condensin complex subunit 3 (Chromosome-associated protein G) (Condensin subunit CAP-G) (hCAP-G) (Melanoma antigen NY-MEL-3) (Non-SMC condensin I complex subunit G) (XCAP-G homolog) -P22694 P22694 reviewed KAPCB_HUMAN cAMP-dependent protein kinase catalytic subunit beta (PKA C-beta) (EC 2.7.11.11) -Q13242 Q13242 reviewed SRSF9_HUMAN Serine/arginine-rich splicing factor 9 (Pre-mRNA-splicing factor SRp30C) (Splicing factor, arginine/serine-rich 9) -Q12888 Q12888 reviewed TP53B_HUMAN TP53-binding protein 1 (53BP1) (p53-binding protein 1) (p53BP1) -P16150 P16150 reviewed LEUK_HUMAN Leukosialin (GPL115) (Galactoglycoprotein) (GALGP) (Leukocyte sialoglycoprotein) (Sialophorin) (CD antigen CD43) [Cleaved into: CD43 cytoplasmic tail (CD43-ct) (CD43ct)] -Q9ULT8 Q9ULT8 reviewed HECD1_HUMAN E3 ubiquitin-protein ligase HECTD1 (EC 2.3.2.26) (E3 ligase for inhibin receptor) (EULIR) (HECT domain-containing protein 1) -Q96PN7 Q96PN7 reviewed TREF1_HUMAN Transcriptional-regulating factor 1 (Breast cancer anti-estrogen resistance 2) (Transcriptional-regulating protein 132) (Zinc finger protein rapa) (Zinc finger transcription factor TReP-132) -P50747 P50747 reviewed BPL1_HUMAN Biotin--protein ligase (EC 6.3.4.-) (Biotin apo-protein ligase) [Includes: Biotin--[methylmalonyl-CoA-carboxytransferase] ligase (EC 6.3.4.9); Biotin--[propionyl-CoA-carboxylase [ATP-hydrolyzing]] ligase (EC 6.3.4.10) (Holocarboxylase synthetase) (HCS); Biotin--[methylcrotonoyl-CoA-carboxylase] ligase (EC 6.3.4.11); Biotin--[acetyl-CoA-carboxylase] ligase (EC 6.3.4.15)] -Q5JSZ5 Q5JSZ5 reviewed PRC2B_HUMAN Protein PRRC2B (HLA-B-associated transcript 2-like 1) (Proline-rich coiled-coil protein 2B) -Q9BZI7 Q9BZI7 reviewed REN3B_HUMAN Regulator of nonsense transcripts 3B (Nonsense mRNA reducing factor 3B) (Up-frameshift suppressor 3 homolog B) (hUpf3B) (Up-frameshift suppressor 3 homolog on chromosome X) (hUpf3p-X) -Q14242 Q14242 reviewed SELPL_HUMAN P-selectin glycoprotein ligand 1 (PSGL-1) (Selectin P ligand) (CD antigen CD162) -Q9Y2I7 Q9Y2I7 reviewed FYV1_HUMAN 1-phosphatidylinositol 3-phosphate 5-kinase (Phosphatidylinositol 3-phosphate 5-kinase) (EC 2.7.1.150) (FYVE finger-containing phosphoinositide kinase) (PIKfyve) (Phosphatidylinositol 3-phosphate 5-kinase type III) (PIPkin-III) (Type III PIP kinase) (Serine-protein kinase PIKFYVE) (EC 2.7.11.1) -J3QS41 J3QS41 unreviewed J3QS41_HUMAN Helicase with zinc finger -O15173 O15173 reviewed PGRC2_HUMAN Membrane-associated progesterone receptor component 2 (Progesterone membrane-binding protein) (Steroid receptor protein DG6) -Q9UKL0 Q9UKL0 reviewed RCOR1_HUMAN REST corepressor 1 (Protein CoREST) -O95613 O95613 reviewed PCNT_HUMAN Pericentrin (Kendrin) (Pericentrin-B) -D3DQV9 D3DQV9 unreviewed D3DQV9_HUMAN Eukaryotic translation initiation factor 4 gamma 2 -P00519 P00519 reviewed ABL1_HUMAN Tyrosine-protein kinase ABL1 (EC 2.7.10.2) (Abelson murine leukemia viral oncogene homolog 1) (Abelson tyrosine-protein kinase 1) (Proto-oncogene c-Abl) (p150) -O95169 O95169 reviewed NDUB8_HUMAN NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial (Complex I-ASHI) (CI-ASHI) (NADH-ubiquinone oxidoreductase ASHI subunit) -A8K727 Q9HB19 reviewed PKHA2_HUMAN Pleckstrin homology domain-containing family A member 2 (PH domain-containing family A member 2) (Tandem PH domain-containing protein 2) (TAPP-2) -Q8N5U6 Q8N5U6 reviewed RNF10_HUMAN E3 ubiquitin-protein ligase RNF10 (EC 2.3.2.27) (RING finger protein 10) -Q96QE3 Q96QE3 reviewed ATAD5_HUMAN ATPase family AAA domain-containing protein 5 (Chromosome fragility-associated gene 1 protein) -P53985 P53985 reviewed MOT1_HUMAN Monocarboxylate transporter 1 (MCT 1) (Solute carrier family 16 member 1) -P51784 P51784 reviewed UBP11_HUMAN Ubiquitin carboxyl-terminal hydrolase 11 (EC 3.4.19.12) (Deubiquitinating enzyme 11) (Ubiquitin thioesterase 11) (Ubiquitin-specific-processing protease 11) -Q9H9J4 Q9H9J4 reviewed UBP42_HUMAN Ubiquitin carboxyl-terminal hydrolase 42 (EC 3.4.19.12) (Deubiquitinating enzyme 42) (Ubiquitin thioesterase 42) (Ubiquitin-specific-processing protease 42) -O95644 O95644 reviewed NFAC1_HUMAN Nuclear factor of activated T-cells, cytoplasmic 1 (NF-ATc1) (NFATc1) (NFAT transcription complex cytosolic component) (NF-ATc) (NFATc) -P09960 P09960 reviewed LKHA4_HUMAN Leukotriene A-4 hydrolase (LTA-4 hydrolase) (EC 3.3.2.6) (Leukotriene A(4) hydrolase) (Tripeptide aminopeptidase LTA4H) (EC 3.4.11.4) -Q9H4L5 Q9H4L5 reviewed OSBL3_HUMAN Oxysterol-binding protein-related protein 3 (ORP-3) (OSBP-related protein 3) -P22626 P22626 reviewed ROA2_HUMAN Heterogeneous nuclear ribonucleoproteins A2/B1 (hnRNP A2/B1) -Q9Y2W1 Q9Y2W1 reviewed TR150_HUMAN Thyroid hormone receptor-associated protein 3 (BCLAF1 and THRAP3 family member 2) (Thyroid hormone receptor-associated protein complex 150 kDa component) (Trap150) -O00472 O00472 reviewed ELL2_HUMAN RNA polymerase II elongation factor ELL2 -Q8N9N5 Q8N9N5 reviewed BANP_HUMAN Protein BANP (BEN domain-containing protein 1) (Btg3-associated nuclear protein) (Scaffold/matrix-associated region-1-binding protein) -Q9BWW4 Q9BWW4 reviewed SSBP3_HUMAN Single-stranded DNA-binding protein 3 (Sequence-specific single-stranded-DNA-binding protein) -Q9H8Y5 Q9H8Y5 reviewed ANKZ1_HUMAN tRNA endonuclease ANKZF1 (EC 3.1.-.-) (Ankyrin repeat and zinc finger domain-containing protein 1) (Zinc finger protein 744) -O75909 O75909 reviewed CCNK_HUMAN Cyclin-K -Q9H992 Q9H992 reviewed MARH7_HUMAN E3 ubiquitin-protein ligase MARCHF7 (EC 2.3.2.27) (Axotrophin) (Membrane-associated RING finger protein 7) (Membrane-associated RING-CH protein VII) (MARCH-VII) (RING finger protein 177) (RING-type E3 ubiquitin transferase MARCHF7) -O95685 O95685 reviewed PPR3D_HUMAN Protein phosphatase 1 regulatory subunit 3D (Protein phosphatase 1 regulatory subunit 6) (PP1 subunit R6) (Protein phosphatase 1-binding subunit R6) -Q9H7P9 Q9H7P9 reviewed PKHG2_HUMAN Pleckstrin homology domain-containing family G member 2 (PH domain-containing family G member 2) -O43561 O43561 reviewed LAT_HUMAN Linker for activation of T-cells family member 1 (36 kDa phosphotyrosine adapter protein) (pp36) (p36-38) -Q96SK2 Q96SK2 reviewed TM209_HUMAN Transmembrane protein 209 -P20700 P20700 reviewed LMNB1_HUMAN Lamin-B1 -Q14966 Q14966 reviewed ZN638_HUMAN Zinc finger protein 638 (Cutaneous T-cell lymphoma-associated antigen se33-1) (CTCL-associated antigen se33-1) (Nuclear protein 220) (Zinc finger matrin-like protein) -P51816 P51816 reviewed AFF2_HUMAN AF4/FMR2 family member 2 (Protein FMR-2) (FMR2P) (Protein Ox19) -Q9C0D5 Q9C0D5 reviewed TANC1_HUMAN Protein TANC1 (Tetratricopeptide repeat, ankyrin repeat and coiled-coil domain-containing protein 1) -Q8IX15 Q8IX15 reviewed HOMEZ_HUMAN Homeobox and leucine zipper protein Homez (Homeodomain leucine zipper-containing factor) -Q9H211 Q9H211 reviewed CDT1_HUMAN DNA replication factor Cdt1 (Double parked homolog) (DUP) -Q9Y6D0 Q9Y6D0 reviewed SELK_HUMAN Selenoprotein K (SelK) -Q92504 Q92504 reviewed S39A7_HUMAN Zinc transporter SLC39A7 (Histidine-rich membrane protein Ke4) (Really interesting new gene 5 protein) (Solute carrier family 39 member 7) (Zrt-, Irt-like protein 7) (ZIP7) -Q13057 Q13057 reviewed COASY_HUMAN Bifunctional coenzyme A synthase (CoA synthase) (NBP) (POV-2) [Includes: Phosphopantetheine adenylyltransferase (EC 2.7.7.3) (Dephospho-CoA pyrophosphorylase) (Pantetheine-phosphate adenylyltransferase) (PPAT); Dephospho-CoA kinase (DPCK) (EC 2.7.1.24) (Dephosphocoenzyme A kinase) (DPCOAK)] -Q9Y3R5 Q9Y3R5 reviewed DOP2_HUMAN Protein dopey-2 -Q99590 Q99590 reviewed SCAFB_HUMAN Protein SCAF11 (CTD-associated SR protein 11) (Renal carcinoma antigen NY-REN-40) (SC35-interacting protein 1) (SR-related and CTD-associated factor 11) (SRSF2-interacting protein) (Serine/arginine-rich splicing factor 2-interacting protein) (Splicing factor, arginine/serine-rich 2-interacting protein) (Splicing regulatory protein 129) (SRrp129) -P46531 P46531 reviewed NOTC1_HUMAN Neurogenic locus notch homolog protein 1 (Notch 1) (hN1) (Translocation-associated notch protein TAN-1) [Cleaved into: Notch 1 extracellular truncation (NEXT); Notch 1 intracellular domain (NICD)] -O95297 O95297 reviewed MPZL1_HUMAN Myelin protein zero-like protein 1 (Protein zero-related) -E7EQS8 E7EQS8 unreviewed E7EQS8_HUMAN Methylcytosine dioxygenase TET (EC 1.14.11.80) -Q9BTD8 Q9BTD8 reviewed RBM42_HUMAN RNA-binding protein 42 (RNA-binding motif protein 42) -Q5VTL8 Q5VTL8 reviewed PR38B_HUMAN Pre-mRNA-splicing factor 38B (Sarcoma antigen NY-SAR-27) -O75554 O75554 reviewed WBP4_HUMAN WW domain-binding protein 4 (WBP-4) (Formin-binding protein 21) (WW domain-containing-binding protein 4) -P28066 P28066 reviewed PSA5_HUMAN Proteasome subunit alpha type-5 (Macropain zeta chain) (Multicatalytic endopeptidase complex zeta chain) (Proteasome zeta chain) -Q8NHG8 Q8NHG8 reviewed ZNRF2_HUMAN E3 ubiquitin-protein ligase ZNRF2 (EC 2.3.2.27) (Protein Ells2) (RING finger protein 202) (RING-type E3 ubiquitin transferase ZNRF2) (Zinc/RING finger protein 2) -P30041 P30041 reviewed PRDX6_HUMAN Peroxiredoxin-6 (EC 1.11.1.27) (1-Cys peroxiredoxin) (1-Cys PRX) (24 kDa protein) (Acidic calcium-independent phospholipase A2) (aiPLA2) (EC 3.1.1.4) (Antioxidant protein 2) (Glutathione-dependent peroxiredoxin) (Liver 2D page spot 40) (Lysophosphatidylcholine acyltransferase 5) (LPC acyltransferase 5) (LPCAT-5) (Lyso-PC acyltransferase 5) (EC 2.3.1.23) (Non-selenium glutathione peroxidase) (NSGPx) (Red blood cells page spot 12) -Q9UBC3 Q9UBC3 reviewed DNM3B_HUMAN DNA (cytosine-5)-methyltransferase 3B (Dnmt3b) (EC 2.1.1.37) (DNA methyltransferase HsaIIIB) (DNA MTase HsaIIIB) (M.HsaIIIB) -O14646 O14646 reviewed CHD1_HUMAN Chromodomain-helicase-DNA-binding protein 1 (CHD-1) (EC 3.6.4.12) (ATP-dependent helicase CHD1) -Q9NY27 Q9NY27 reviewed PP4R2_HUMAN Serine/threonine-protein phosphatase 4 regulatory subunit 2 -U3KQ54 U3KQ54 unreviewed U3KQ54_HUMAN HCG2044777 (PMF1-BGLAP readthrough) -Q8ND82 Q8ND82 reviewed Z280C_HUMAN Zinc finger protein 280C (Suppressor of hairy wing homolog 3) (Zinc finger protein 633) -P18065 P18065 reviewed IBP2_HUMAN Insulin-like growth factor-binding protein 2 (IBP-2) (IGF-binding protein 2) (IGFBP-2) -Q9ULF5 Q9ULF5 reviewed S39AA_HUMAN Zinc transporter ZIP10 (Solute carrier family 39 member 10) (Zrt- and Irt-like protein 10) (ZIP-10) -Q92538 Q92538 reviewed GBF1_HUMAN Golgi-specific brefeldin A-resistance guanine nucleotide exchange factor 1 (BFA-resistant GEF 1) -Q9H4L7 Q9H4L7 reviewed SMRCD_HUMAN SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily A containing DEAD/H box 1 (EC 3.6.4.12) (ATP-dependent helicase 1) (hHEL1) -O60869 O60869 reviewed EDF1_HUMAN Endothelial differentiation-related factor 1 (EDF-1) (Multiprotein-bridging factor 1) (MBF1) -Q9UII2 Q9UII2 reviewed ATIF1_HUMAN ATPase inhibitor, mitochondrial (ATP synthase F1 subunit epsilon) (Inhibitor of F(1)F(o)-ATPase) (IF(1)) (IF1) -Q96D05 Q96D05 reviewed F241B_HUMAN Protein FAM241B -Q5SRE5 Q5SRE5 reviewed NU188_HUMAN Nucleoporin NUP188 (hNup188) -Q96A19 Q96A19 reviewed C102A_HUMAN Coiled-coil domain-containing protein 102A -P05164 P05164 reviewed PERM_HUMAN Myeloperoxidase (MPO) (EC 1.11.2.2) [Cleaved into: Myeloperoxidase; 89 kDa myeloperoxidase; 84 kDa myeloperoxidase; Myeloperoxidase light chain; Myeloperoxidase heavy chain] -Q8NFA0 Q8NFA0 reviewed UBP32_HUMAN Ubiquitin carboxyl-terminal hydrolase 32 (EC 3.4.19.12) (Deubiquitinating enzyme 32) (Renal carcinoma antigen NY-REN-60) (Ubiquitin thioesterase 32) (Ubiquitin-specific-processing protease 32) -Q9NU19 Q9NU19 reviewed TB22B_HUMAN TBC1 domain family member 22B -Q96HQ2 Q96HQ2 reviewed C2AIL_HUMAN CDKN2AIP N-terminal-like protein (CDKN2A-interacting protein N-terminal-like protein) -P47914 P47914 reviewed RL29_HUMAN Large ribosomal subunit protein eL29 (60S ribosomal protein L29) (Cell surface heparin-binding protein HIP) -Q16204 Q16204 reviewed CCDC6_HUMAN Coiled-coil domain-containing protein 6 (Papillary thyroid carcinoma-encoded protein) (Protein H4) -Q68CP9 Q68CP9 reviewed ARID2_HUMAN AT-rich interactive domain-containing protein 2 (ARID domain-containing protein 2) (BRG1-associated factor 200) (BAF200) (Zinc finger protein with activation potential) (Zipzap/p200) -Q13200 Q13200 reviewed PSMD2_HUMAN 26S proteasome non-ATPase regulatory subunit 2 (26S proteasome regulatory subunit RPN1) (26S proteasome regulatory subunit S2) (26S proteasome subunit p97) (Protein 55.11) (Tumor necrosis factor type 1 receptor-associated protein 2) -O95400 O95400 reviewed CD2B2_HUMAN CD2 antigen cytoplasmic tail-binding protein 2 (CD2 cytoplasmic domain-binding protein 2) (CD2 tail-binding protein 2) (U5 snRNP 52K protein) (U5-52K) -Q8N9N7 Q8N9N7 reviewed LRC57_HUMAN Leucine-rich repeat-containing protein 57 -Q86XL3 Q86XL3 reviewed ANKL2_HUMAN Ankyrin repeat and LEM domain-containing protein 2 (LEM domain-containing protein 4) -Q9H0B6 Q9H0B6 reviewed KLC2_HUMAN Kinesin light chain 2 (KLC 2) -H9KVB4 H9KVB4 unreviewed H9KVB4_HUMAN Trinucleotide repeat containing 18 -Q96PC5 Q96PC5 reviewed MIA2_HUMAN Melanoma inhibitory activity protein 2 (MIA protein 2) (CTAGE family member 5 ER export factor) (Cutaneous T-cell lymphoma-associated antigen 5) (Meningioma-expressed antigen 6/11) -P31146 P31146 reviewed COR1A_HUMAN Coronin-1A (Coronin-like protein A) (Clipin-A) (Coronin-like protein p57) (Tryptophan aspartate-containing coat protein) (TACO) -Q8TF68 Q8TF68 reviewed ZN384_HUMAN Zinc finger protein 384 (CAG repeat protein 1) (CAS-interacting zinc finger protein) (Nuclear matrix transcription factor 4) (Nuclear matrix protein 4) (Trinucleotide repeat-containing gene 1 protein) -Q9Y5L4 Q9Y5L4 reviewed TIM13_HUMAN Mitochondrial import inner membrane translocase subunit Tim13 -Q9NPD8 Q9NPD8 reviewed UBE2T_HUMAN Ubiquitin-conjugating enzyme E2 T (EC 2.3.2.23) (Cell proliferation-inducing gene 50 protein) (E2 ubiquitin-conjugating enzyme T) (Ubiquitin carrier protein T) (Ubiquitin-protein ligase T) -Q99459 Q99459 reviewed CDC5L_HUMAN Cell division cycle 5-like protein (Cdc5-like protein) (Pombe cdc5-related protein) -Q96F63 Q96F63 reviewed CCD97_HUMAN Coiled-coil domain-containing protein 97 -Q9H7F0 Q9H7F0 reviewed AT133_HUMAN Polyamine-transporting ATPase 13A3 (ATPase family homolog up-regulated in senescence cells 1) (Putrescine transporting ATPase) (EC 7.6.2.16) -Q16666 Q16666 reviewed IF16_HUMAN Gamma-interferon-inducible protein 16 (Ifi-16) (Interferon-inducible myeloid differentiation transcriptional activator) -Q5TC82 Q5TC82 reviewed RC3H1_HUMAN Roquin-1 (Roquin) (EC 2.3.2.27) (RING finger and C3H zinc finger protein 1) (RING finger and CCCH-type zinc finger domain-containing protein 1) (RING finger protein 198) -P18031 P18031 reviewed PTN1_HUMAN Tyrosine-protein phosphatase non-receptor type 1 (EC 3.1.3.48) (Protein-tyrosine phosphatase 1B) (PTP-1B) -Q6PKG0 Q6PKG0 reviewed LARP1_HUMAN La-related protein 1 (La ribonucleoprotein domain family member 1) -Q7Z417 Q7Z417 reviewed NUFP2_HUMAN FMR1-interacting protein NUFIP2 (82 kDa FMRP-interacting protein) (82-FIP) (Cell proliferation-inducing gene 1 protein) (FMRP-interacting protein 2) (Nuclear FMR1-interacting protein 2) -Q00403 Q00403 reviewed TF2B_HUMAN Transcription initiation factor IIB (EC 2.3.1.48) (General transcription factor TFIIB) (S300-II) -Q9BTA9 Q9BTA9 reviewed WAC_HUMAN WW domain-containing adapter protein with coiled-coil -O60683 O60683 reviewed PEX10_HUMAN Peroxisome biogenesis factor 10 (EC 2.3.2.27) (Peroxin-10) (Peroxisomal biogenesis factor 10) (Peroxisome assembly protein 10) (RING finger protein 69) -P51957 P51957 reviewed NEK4_HUMAN Serine/threonine-protein kinase Nek4 (EC 2.7.11.1) (Never in mitosis A-related kinase 4) (NimA-related protein kinase 4) (Serine/threonine-protein kinase 2) (Serine/threonine-protein kinase NRK2) -P62633 P62633 reviewed CNBP_HUMAN CCHC-type zinc finger nucleic acid binding protein (Cellular nucleic acid-binding protein) (CNBP) (Zinc finger protein 9) -Q8IXM6 Q8IXM6 reviewed NRM_HUMAN Nurim (Nuclear envelope membrane protein) (Nuclear rim protein) -P06396 P06396 reviewed GELS_HUMAN Gelsolin (AGEL) (Actin-depolymerizing factor) (ADF) (Brevin) -Q86YV5 Q86YV5 reviewed PRAG1_HUMAN Inactive tyrosine-protein kinase PRAG1 (PEAK1-related kinase-activating pseudokinase 1) (Pragmin) (Sugen kinase 223) (SgK223) -Q16563 Q16563 reviewed SYPL1_HUMAN Synaptophysin-like protein 1 (Pantophysin) -Q8IUC4 Q8IUC4 reviewed RHPN2_HUMAN Rhophilin-2 (76 kDa RhoB effector protein) (GTP-Rho-binding protein 2) (p76RBE) -Q14671 Q14671 reviewed PUM1_HUMAN Pumilio homolog 1 (HsPUM) (Pumilio-1) -Q9UJF2 Q9UJF2 reviewed NGAP_HUMAN Ras GTPase-activating protein nGAP (RAS protein activator-like 2) -Q92545 Q92545 reviewed TM131_HUMAN Transmembrane protein 131 (Protein RW1) -K7ELC2 K7ELC2 unreviewed K7ELC2_HUMAN Small ribosomal subunit protein uS19 (40S ribosomal protein S15) -Q7Z7G8 Q7Z7G8 reviewed VP13B_HUMAN Intermembrane lipid transfer protein VPS13B (Cohen syndrome protein 1) (Vacuolar protein sorting-associated protein 13B) -Q9NTJ3 Q9NTJ3 reviewed SMC4_HUMAN Structural maintenance of chromosomes protein 4 (SMC protein 4) (SMC-4) (Chromosome-associated polypeptide C) (hCAP-C) (XCAP-C homolog) -Q8IWB9 Q8IWB9 reviewed TEX2_HUMAN Testis-expressed protein 2 (Transmembrane protein 96) -Q9Y6K9 Q9Y6K9 reviewed NEMO_HUMAN NF-kappa-B essential modulator (NEMO) (FIP-3) (IkB kinase-associated protein 1) (IKKAP1) (Inhibitor of nuclear factor kappa-B kinase subunit gamma) (I-kappa-B kinase subunit gamma) (IKK-gamma) (IKKG) (IkB kinase subunit gamma) (NF-kappa-B essential modifier) -B7WPE2 B7WPE2 unreviewed B7WPE2_HUMAN EMAP like 3 (Echinoderm microtubule associated protein like 3, isoform CRA_e) -Q86WR7 Q86WR7 reviewed PRSR2_HUMAN Proline and serine-rich protein 2 -Q15111 Q15111 reviewed PLCL1_HUMAN Inactive phospholipase C-like protein 1 (PLC-L1) (Phospholipase C-deleted in lung carcinoma) (Phospholipase C-related but catalytically inactive protein) (PRIP) -Q07666 Q07666 reviewed KHDR1_HUMAN KH domain-containing, RNA-binding, signal transduction-associated protein 1 (GAP-associated tyrosine phosphoprotein p62) (Src-associated in mitosis 68 kDa protein) (Sam68) (p21 Ras GTPase-activating protein-associated p62) (p68) -Q86WJ1 Q86WJ1 reviewed CHD1L_HUMAN Chromodomain-helicase-DNA-binding protein 1-like (EC 3.6.4.-) (Amplified in liver cancer protein 1) -Q8N3X1 Q8N3X1 reviewed FNBP4_HUMAN Formin-binding protein 4 (Formin-binding protein 30) -J3QR29 P21127 reviewed CD11B_HUMAN Cyclin-dependent kinase 11B (EC 2.7.11.22) (Cell division cycle 2-like protein kinase 1) (CLK-1) (Cell division protein kinase 11B) (Galactosyltransferase-associated protein kinase p58/GTA) (PITSLRE serine/threonine-protein kinase CDC2L1) (p58 CLK-1) -P51587 P51587 reviewed BRCA2_HUMAN Breast cancer type 2 susceptibility protein (Fanconi anemia group D1 protein) -P14866 P14866 reviewed HNRPL_HUMAN Heterogeneous nuclear ribonucleoprotein L (hnRNP L) -O43396 O43396 reviewed TXNL1_HUMAN Thioredoxin-like protein 1 (32 kDa thioredoxin-related protein) -P28908 P28908 reviewed TNR8_HUMAN Tumor necrosis factor receptor superfamily member 8 (CD30L receptor) (Ki-1 antigen) (Lymphocyte activation antigen CD30) (CD antigen CD30) -Q5T8P6 Q5T8P6 reviewed RBM26_HUMAN RNA-binding protein 26 (CTCL tumor antigen se70-2) (RNA-binding motif protein 26) -O15231 O15231 reviewed ZN185_HUMAN Zinc finger protein 185 (LIM domain protein ZNF185) (P1-A) -O94888 O94888 reviewed UBXN7_HUMAN UBX domain-containing protein 7 -Q14865 Q14865 reviewed ARI5B_HUMAN AT-rich interactive domain-containing protein 5B (ARID domain-containing protein 5B) (MRF1-like protein) (Modulator recognition factor 2) (MRF-2) -Q14161 Q14161 reviewed GIT2_HUMAN ARF GTPase-activating protein GIT2 (ARF GAP GIT2) (Cool-interacting tyrosine-phosphorylated protein 2) (CAT-2) (CAT2) (G protein-coupled receptor kinase-interactor 2) (GRK-interacting protein 2) -P16989 P16989 reviewed YBOX3_HUMAN Y-box-binding protein 3 (Cold shock domain-containing protein A) (DNA-binding protein A) (Single-strand DNA-binding protein NF-GMB) -Q9C0C2 Q9C0C2 reviewed TB182_HUMAN 182 kDa tankyrase-1-binding protein -P02686 P02686 reviewed MBP_HUMAN Myelin basic protein (MBP) (Myelin A1 protein) (Myelin membrane encephalitogenic protein) -O76031 O76031 reviewed CLPX_HUMAN ATP-dependent Clp protease ATP-binding subunit clpX-like, mitochondrial -O00139 O00139 reviewed KIF2A_HUMAN Kinesin-like protein KIF2A (Kinesin-2) (hK2) -Q7L2H7 Q7L2H7 reviewed EIF3M_HUMAN Eukaryotic translation initiation factor 3 subunit M (eIF3m) (Fetal lung protein B5) (hFL-B5) (PCI domain-containing protein 1) -A0A0G2JLV7 A0A0G2JLV7 unreviewed A0A0G2JLV7_HUMAN Leukocyte-associated immunoglobulin-like receptor 1 -A0A0G2JQJ7 A0A0G2JQJ7 unreviewed A0A0G2JQJ7_HUMAN Microtubule-associated protein -P23396 P23396 reviewed RS3_HUMAN Small ribosomal subunit protein uS3 (40S ribosomal protein S3) (EC 4.2.99.18) -O15534 O15534 reviewed PER1_HUMAN Period circadian protein homolog 1 (hPER1) (Circadian clock protein PERIOD 1) (Circadian pacemaker protein Rigui) -Q8WWY3 Q8WWY3 reviewed PRP31_HUMAN U4/U6 small nuclear ribonucleoprotein Prp31 (Pre-mRNA-processing factor 31) (Serologically defined breast cancer antigen NY-BR-99) (U4/U6 snRNP 61 kDa protein) (Protein 61K) (hPrp31) -A0A0G2JNG9 A0A0G2JNG9 A0A0G2JNG9_HUMAN deleted -P04114 P04114 reviewed APOB_HUMAN Apolipoprotein B-100 (Apo B-100) [Cleaved into: Apolipoprotein B-48 (Apo B-48)] -Q14676 Q14676 reviewed MDC1_HUMAN Mediator of DNA damage checkpoint protein 1 (Nuclear factor with BRCT domains 1) -P61956 P61956 reviewed SUMO2_HUMAN Small ubiquitin-related modifier 2 (SUMO-2) (HSMT3) (SMT3 homolog 2) (SUMO-3) (Sentrin-2) (Ubiquitin-like protein SMT3B) (Smt3B) -A0A0C4DFX9 A0A0C4DFX9 unreviewed A0A0C4DFX9_HUMAN Negative elongation factor complex member A -Q6P1L5 Q6P1L5 reviewed F117B_HUMAN Protein FAM117B (Amyotrophic lateral sclerosis 2 chromosomal region candidate gene 13 protein) -O15047 O15047 reviewed SET1A_HUMAN Histone-lysine N-methyltransferase SETD1A (EC 2.1.1.364) (Lysine N-methyltransferase 2F) (SET domain-containing protein 1A) (hSET1A) (Set1/Ash2 histone methyltransferase complex subunit SET1) -P50991 P50991 reviewed TCPD_HUMAN T-complex protein 1 subunit delta (TCP-1-delta) (CCT-delta) (Chaperonin containing T-complex polypeptide 1 subunit 4) (Stimulator of TAR RNA-binding) -Q9C0B0 Q9C0B0 reviewed UNK_HUMAN RING finger protein unkempt homolog (Zinc finger CCCH domain-containing protein 5) -P29590 P29590 reviewed PML_HUMAN Protein PML (E3 SUMO-protein ligase PML) (EC 2.3.2.-) (Promyelocytic leukemia protein) (RING finger protein 71) (RING-type E3 SUMO transferase PML) (Tripartite motif-containing protein 19) (TRIM19) -Q2KHR2 Q2KHR2 reviewed RFX7_HUMAN DNA-binding protein RFX7 (Regulatory factor X 7) (Regulatory factor X domain-containing protein 2) -P61006 P61006 reviewed RAB8A_HUMAN Ras-related protein Rab-8A (EC 3.6.5.2) (Oncogene c-mel) -Q15773 Q15773 reviewed MLF2_HUMAN Myeloid leukemia factor 2 (Myelodysplasia-myeloid leukemia factor 2) -Q9NVM6 Q9NVM6 reviewed DJC17_HUMAN DnaJ homolog subfamily C member 17 -Q9H2G2 Q9H2G2 reviewed SLK_HUMAN STE20-like serine/threonine-protein kinase (STE20-like kinase) (hSLK) (EC 2.7.11.1) (CTCL tumor antigen se20-9) (STE20-related serine/threonine-protein kinase) (STE20-related kinase) (Serine/threonine-protein kinase 2) -Q969S3 Q969S3 reviewed ZN622_HUMAN Cytoplasmic 60S subunit biogenesis factor ZNF622 (Zinc finger protein 622) (Zinc finger-like protein 9) -O75064 O75064 reviewed DEN4B_HUMAN DENN domain-containing protein 4B -Q14684 Q14684 reviewed RRP1B_HUMAN Ribosomal RNA processing protein 1 homolog B (RRP1-like protein B) -O94915 O94915 reviewed FRYL_HUMAN Protein furry homolog-like (ALL1-fused gene from chromosome 4p12 protein) -Q9Y6Y0 Q9Y6Y0 reviewed NS1BP_HUMAN Influenza virus NS1A-binding protein (NS1-BP) (NS1-binding protein) (Aryl hydrocarbon receptor-associated protein 3) (Kelch-like protein 39) -Q9NPA5 Q9NTW7 reviewed ZF64B_HUMAN Zinc finger protein 64 (Zfp-64) (Zinc finger protein 338) -P35612 P35612 reviewed ADDB_HUMAN Beta-adducin (Erythrocyte adducin subunit beta) -Q9ULJ3 Q9ULJ3 reviewed ZBT21_HUMAN Zinc finger and BTB domain-containing protein 21 (Zinc finger protein 295) -Q9BQ61 Q9BQ61 reviewed TRIR_HUMAN Telomerase RNA component interacting RNase (EC 3.1.13.-) (Exoribonuclease TRIR) -Q14738 Q14738 reviewed 2A5D_HUMAN Serine/threonine-protein phosphatase 2A 56 kDa regulatory subunit delta isoform (PP2A B subunit isoform B'-delta) (PP2A B subunit isoform B56-delta) (PP2A B subunit isoform PR61-delta) (PP2A B subunit isoform R5-delta) -Q9Y6I3 Q9Y6I3 reviewed EPN1_HUMAN Epsin-1 (EH domain-binding mitotic phosphoprotein) (EPS-15-interacting protein 1) -Q9P2B4 Q9P2B4 reviewed CT2NL_HUMAN CTTNBP2 N-terminal-like protein -D6REX3 D6REX3 unreviewed D6REX3_HUMAN Protein transport protein Sec31A (SEC31-like protein 1) (SEC31-related protein A) -Q9NXV2 Q9NXV2 reviewed KCTD5_HUMAN BTB/POZ domain-containing protein KCTD5 -O00303 O00303 reviewed EIF3F_HUMAN Eukaryotic translation initiation factor 3 subunit F (eIF3f) (Deubiquitinating enzyme eIF3f) (EC 3.4.19.12) (Eukaryotic translation initiation factor 3 subunit 5) (eIF-3-epsilon) (eIF3 p47) -P13598 P13598 reviewed ICAM2_HUMAN Intercellular adhesion molecule 2 (ICAM-2) (CD antigen CD102) -Q9Y2Y9 Q9Y2Y9 reviewed KLF13_HUMAN Krueppel-like factor 13 (Basic transcription element-binding protein 3) (BTE-binding protein 3) (Novel Sp1-like zinc finger transcription factor 1) (RANTES factor of late activated T-lymphocytes 1) (RFLAT-1) (Transcription factor BTEB3) (Transcription factor NSLP1) -J3QTA6 J3QTA6 unreviewed J3QTA6_HUMAN Coiled-coil-helix-coiled-coil-helix domain containing 6 -Q8WWI1 Q8WWI1 reviewed LMO7_HUMAN LIM domain only protein 7 (LMO-7) (F-box only protein 20) (LOMP) -Q13469 Q13469 reviewed NFAC2_HUMAN Nuclear factor of activated T-cells, cytoplasmic 2 (NF-ATc2) (NFATc2) (NFAT pre-existing subunit) (NF-ATp) (T-cell transcription factor NFAT1) -P63244 P63244 reviewed RACK1_HUMAN Small ribosomal subunit protein RACK1 (Cell proliferation-inducing gene 21 protein) (Guanine nucleotide-binding protein subunit beta-2-like 1) (Guanine nucleotide-binding protein subunit beta-like protein 12.3) (Human lung cancer oncogene 7 protein) (HLC-7) (Receptor for activated C kinase) (Receptor of activated protein C kinase 1) [Cleaved into: Small ribosomal subunit protein RACK1, N-terminally processed (Guanine nucleotide-binding protein subunit beta-2-like 1, N-terminally processed) (Receptor of activated protein C kinase 1, N-terminally processed)] -Q13614 Q13614 reviewed MTMR2_HUMAN Myotubularin-related protein 2 (Phosphatidylinositol-3,5-bisphosphate 3-phosphatase) (EC 3.1.3.95) (Phosphatidylinositol-3-phosphate phosphatase) (EC 3.1.3.64) -Q6P3S1 Q6P3S1 reviewed DEN1B_HUMAN DENN domain-containing protein 1B (Connecdenn 2) (Protein FAM31B) -P52566 P52566 reviewed GDIR2_HUMAN Rho GDP-dissociation inhibitor 2 (Rho GDI 2) (Ly-GDI) (Rho-GDI beta) -Q8N9F8 Q8N9F8 reviewed ZN454_HUMAN Zinc finger protein 454 -P06493 P06493 reviewed CDK1_HUMAN Cyclin-dependent kinase 1 (CDK1) (EC 2.7.11.22) (EC 2.7.11.23) (Cell division control protein 2 homolog) (Cell division protein kinase 1) (p34 protein kinase) -Q8IWE5 Q8IWE5 reviewed PKHM2_HUMAN Pleckstrin homology domain-containing family M member 2 (PH domain-containing family M member 2) (Salmonella-induced filaments A and kinesin-interacting protein) (SifA and kinesin-interacting protein) -A0A0A0MTC5 Q9NUL3 reviewed STAU2_HUMAN Double-stranded RNA-binding protein Staufen homolog 2 -P08311 P08311 reviewed CATG_HUMAN Cathepsin G (CG) (EC 3.4.21.20) [Cleaved into: Cathepsin G, C-terminal truncated form] -A0A0A0MRR7 A0A0A0MRR7 unreviewed A0A0A0MRR7_HUMAN U1 small nuclear ribonucleoprotein C (U1 snRNP C) (U1-C) (U1C) -P10643 P10643 reviewed CO7_HUMAN Complement component C7 -Q96QR8 Q96QR8 reviewed PURB_HUMAN Transcriptional regulator protein Pur-beta (Purine-rich element-binding protein B) -P05114 P05114 reviewed HMGN1_HUMAN Non-histone chromosomal protein HMG-14 (High mobility group nucleosome-binding domain-containing protein 1) -Q8TF50 Q8TF50 reviewed ZN526_HUMAN Zinc finger protein 526 -A0A087X1R1 A0A087X1R1 unreviewed A0A087X1R1_HUMAN Smoothelin -B4DNK4 B4DNK4 unreviewed B4DNK4_HUMAN Pyruvate kinase (EC 2.7.1.40) -G1UD79 G1UD79 unreviewed G1UD79_HUMAN PABIR family member 2 (Synoviocyte proliferation associated in collagen-induced arthritis 2) -Q9UG63 Q9UG63 reviewed ABCF2_HUMAN ATP-binding cassette sub-family F member 2 (Iron-inhibited ABC transporter 2) -Q12834 Q12834 reviewed CDC20_HUMAN Cell division cycle protein 20 homolog (p55CDC) -Q9BZE4 Q9BZE4 reviewed GTPB4_HUMAN GTP-binding protein 4 (Chronic renal failure gene protein) (GTP-binding protein NGB) (Nucleolar GTP-binding protein 1) -Q96RT1 Q96RT1 reviewed ERBIN_HUMAN Erbin (Densin-180-like protein) (Erbb2-interacting protein) (Protein LAP2) -Q6KC79 Q6KC79 reviewed NIPBL_HUMAN Nipped-B-like protein (Delangin) (SCC2 homolog) -O95747 O95747 reviewed OXSR1_HUMAN Serine/threonine-protein kinase OSR1 (EC 2.7.11.1) (Oxidative stress-responsive 1 protein) -Q9NUY8 Q9NUY8 reviewed TBC23_HUMAN TBC1 domain family member 23 (HCV non-structural protein 4A-transactivated protein 1) -Q9UQQ2 Q9UQQ2 reviewed SH2B3_HUMAN SH2B adapter protein 3 (Lymphocyte adapter protein) (Lymphocyte-specific adapter protein Lnk) (Signal transduction protein Lnk) -Q96MF7 Q96MF7 reviewed NSE2_HUMAN E3 SUMO-protein ligase NSE2 (EC 2.3.2.-) (E3 SUMO-protein transferase NSE2) (MMS21 homolog) (hMMS21) (Non-structural maintenance of chromosomes element 2 homolog) (Non-SMC element 2 homolog) -A0A0A6YY96 P48200 reviewed IREB2_HUMAN Iron-responsive element-binding protein 2 (IRE-BP 2) (Iron regulatory protein 2) (IRP2) -Q96DV4 Q96DV4 reviewed RM38_HUMAN Large ribosomal subunit protein mL38 (39S ribosomal protein L38, mitochondrial) (L38mt) (MRP-L38) -Q9NPI6 Q9NPI6 reviewed DCP1A_HUMAN mRNA-decapping enzyme 1A (EC 3.6.1.62) (Smad4-interacting transcriptional co-activator) (Transcription factor SMIF) -J3KN59 J3KN59 J3KN59_HUMAN deleted -B7ZL14 B7ZL14 unreviewed B7ZL14_HUMAN FNBP1 protein -O94762 O94762 reviewed RECQ5_HUMAN ATP-dependent DNA helicase Q5 (EC 5.6.2.4) (DNA 3'-5' helicase RecQ5) (DNA helicase, RecQ-like type 5) (RecQ5) (RecQ protein-like 5) -P38432 P38432 reviewed COIL_HUMAN Coilin (p80-coilin) -E7EVA0 E7EVA0 unreviewed E7EVA0_HUMAN Microtubule-associated protein -Q86U70 Q86U70 reviewed LDB1_HUMAN LIM domain-binding protein 1 (LDB-1) (Carboxyl-terminal LIM domain-binding protein 2) (CLIM-2) (LIM domain-binding factor CLIM2) (hLdb1) (Nuclear LIM interactor) -Q96EB1 Q96EB1 reviewed ELP4_HUMAN Elongator complex protein 4 (hELP4) (PAX6 neighbor gene protein) -Q96PQ6 Q96PQ6 reviewed ZN317_HUMAN Zinc finger protein 317 -Q9NQR1 Q9NQR1 reviewed KMT5A_HUMAN N-lysine methyltransferase KMT5A (EC 2.1.1.-) (H4-K20-HMTase KMT5A) (Histone-lysine N-methyltransferase KMT5A) (EC 2.1.1.361) (Lysine N-methyltransferase 5A) (Lysine-specific methylase 5A) (PR/SET domain-containing protein 07) (PR-Set7) (PR/SET07) (SET domain-containing protein 8) -A6PW57 A6PW57 unreviewed A6PW57_HUMAN Phosphatidylinositol-4-phosphate 5-kinase type 1 alpha -Q9UPT9 Q9UPT9 reviewed UBP22_HUMAN Ubiquitin carboxyl-terminal hydrolase 22 (EC 3.4.19.12) (Deubiquitinating enzyme 22) (Ubiquitin thioesterase 22) (Ubiquitin-specific-processing protease 22) -Q9H6L5 Q9H6L5 reviewed RETR1_HUMAN Reticulophagy regulator 1 (Reticulophagy receptor 1) -Q00536 Q00536 reviewed CDK16_HUMAN Cyclin-dependent kinase 16 (EC 2.7.11.22) (Cell division protein kinase 16) (PCTAIRE-motif protein kinase 1) (Serine/threonine-protein kinase PCTAIRE-1) -Q96GE4 Q96GE4 reviewed CEP95_HUMAN Centrosomal protein of 95 kDa (Cep95) (Coiled-coil domain-containing protein 45) -X6RLX0 X6RLX0 unreviewed X6RLX0_HUMAN ELKS/RAB6-interacting/CAST family member 1 -C9JV77 C9JV77 unreviewed C9JV77_HUMAN Alpha-2-HS-glycoprotein (Fetuin-A) -P27540 P27540 reviewed ARNT_HUMAN Aryl hydrocarbon receptor nuclear translocator (ARNT protein) (Class E basic helix-loop-helix protein 2) (bHLHe2) (Dioxin receptor, nuclear translocator) (Hypoxia-inducible factor 1-beta) (HIF-1-beta) (HIF1-beta) -Q15651 Q15651 reviewed HMGN3_HUMAN High mobility group nucleosome-binding domain-containing protein 3 (Thyroid receptor-interacting protein 7) (TR-interacting protein 7) (TRIP-7) -O75132 O75132 reviewed ZBED4_HUMAN Zinc finger BED domain-containing protein 4 -O95104 O95104 reviewed SCAF4_HUMAN SR-related and CTD-associated factor 4 (CTD-binding SR-like protein RA4) (Splicing factor, arginine/serine-rich 15) -Q684P5 Q684P5 reviewed RPGP2_HUMAN Rap1 GTPase-activating protein 2 (Rap1GAP2) (GTPase-activating Rap/Ran-GAP domain-like protein 4) -O95376 O95376 reviewed ARI2_HUMAN E3 ubiquitin-protein ligase ARIH2 (ARI-2) (Protein ariadne-2 homolog) (EC 2.3.2.31) (RING-type E3 ubiquitin transferase ARIH2) (Triad1 protein) -Q5JSH3 Q5JSH3 reviewed WDR44_HUMAN WD repeat-containing protein 44 (Rab11-binding protein) (Rab11BP) (Rabphilin-11) -Q15181 Q15181 reviewed IPYR_HUMAN Inorganic pyrophosphatase (EC 3.6.1.1) (Pyrophosphate phospho-hydrolase) (PPase) -Q6NW29 Q6NW29 reviewed RWDD4_HUMAN RWD domain-containing protein 4 (Protein FAM28A) -Q9NQS7 Q9NQS7 reviewed INCE_HUMAN Inner centromere protein -Q8N1F7 Q8N1F7 reviewed NUP93_HUMAN Nuclear pore complex protein Nup93 (93 kDa nucleoporin) (Nucleoporin Nup93) -O60547 O60547 reviewed GMDS_HUMAN GDP-mannose 4,6 dehydratase (EC 4.2.1.47) (GDP-D-mannose dehydratase) (GMD) -A0A1B0GW41 A0A1B0GW41 unreviewed A0A1B0GW41_HUMAN Inhibitor of growth family member 5 -Q6ZV73 Q6ZV73 reviewed FGD6_HUMAN FYVE, RhoGEF and PH domain-containing protein 6 (Zinc finger FYVE domain-containing protein 24) -O60216 O60216 reviewed RAD21_HUMAN Double-strand-break repair protein rad21 homolog (hHR21) (Nuclear matrix protein 1) (NXP-1) (SCC1 homolog) [Cleaved into: 64-kDa C-terminal product (64-kDa carboxy-terminal product) (65-kDa carboxy-terminal product)] -Q96S53 Q96S53 reviewed TESK2_HUMAN Dual specificity testis-specific protein kinase 2 (EC 2.7.12.1) (Testicular protein kinase 2) -Q86YP4 Q86YP4 reviewed P66A_HUMAN Transcriptional repressor p66-alpha (Hp66alpha) (GATA zinc finger domain-containing protein 2A) -Q7KYR7 Q7KYR7 reviewed BT2A1_HUMAN Butyrophilin subfamily 2 member A1 -P52594 P52594 reviewed AGFG1_HUMAN Arf-GAP domain and FG repeat-containing protein 1 (HIV-1 Rev-binding protein) (Nucleoporin-like protein RIP) (Rev-interacting protein) (Rev/Rex activation domain-binding protein) -Q7Z422 Q7Z422 reviewed SZRD1_HUMAN SUZ RNA-binding domain-containing (SUZ domain-containing protein 1) (Putative MAPK-activating protein PM18/PM20/PM22) -Q9UQ35 Q9UQ35 reviewed SRRM2_HUMAN Serine/arginine repetitive matrix protein 2 (300 kDa nuclear matrix antigen) (Serine/arginine-rich splicing factor-related nuclear matrix protein of 300 kDa) (SR-related nuclear matrix protein of 300 kDa) (Ser/Arg-related nuclear matrix protein of 300 kDa) (Splicing coactivator subunit SRm300) (Tax-responsive enhancer element-binding protein 803) (TaxREB803) -Q9Y6B7 Q9Y6B7 reviewed AP4B1_HUMAN AP-4 complex subunit beta-1 (AP-4 adaptor complex subunit beta) (Adaptor-related protein complex 4 subunit beta-1) (Beta subunit of AP-4) (Beta4-adaptin) -Q9UNX3 Q9UNX3 reviewed RL26L_HUMAN Ribosomal protein uL24-like (60S ribosomal protein L26-like 1) (Large ribosomal subunit protein uL24-like 1) -Q15172 Q15172 reviewed 2A5A_HUMAN Serine/threonine-protein phosphatase 2A 56 kDa regulatory subunit alpha isoform (PP2A B subunit isoform B'-alpha) (PP2A B subunit isoform B56-alpha) (PP2A B subunit isoform PR61-alpha) (PR61alpha) (PP2A B subunit isoform R5-alpha) -Q9P2N5 Q9P2N5 reviewed RBM27_HUMAN RNA-binding protein 27 (RNA-binding motif protein 27) -P29350 P29350 reviewed PTN6_HUMAN Tyrosine-protein phosphatase non-receptor type 6 (EC 3.1.3.48) (Hematopoietic cell protein-tyrosine phosphatase) (Protein-tyrosine phosphatase 1C) (PTP-1C) (Protein-tyrosine phosphatase SHP-1) (SH-PTP1) -P45973 P45973 reviewed CBX5_HUMAN Chromobox protein homolog 5 (Antigen p25) (Heterochromatin protein 1 homolog alpha) (HP1 alpha) -Q08945 Q08945 reviewed SSRP1_HUMAN FACT complex subunit SSRP1 (Chromatin-specific transcription elongation factor 80 kDa subunit) (Facilitates chromatin transcription complex 80 kDa subunit) (FACT 80 kDa subunit) (FACTp80) (Facilitates chromatin transcription complex subunit SSRP1) (Recombination signal sequence recognition protein 1) (Structure-specific recognition protein 1) (hSSRP1) (T160) -Q05519 Q05519 reviewed SRS11_HUMAN Serine/arginine-rich splicing factor 11 (Arginine-rich 54 kDa nuclear protein) (p54) (Splicing factor, arginine/serine-rich 11) -Q9NVC6 Q9NVC6 reviewed MED17_HUMAN Mediator of RNA polymerase II transcription subunit 17 (Activator-recruited cofactor 77 kDa component) (ARC77) (Cofactor required for Sp1 transcriptional activation subunit 6) (CRSP complex subunit 6) (Mediator complex subunit 17) (Thyroid hormone receptor-associated protein complex 80 kDa component) (Trap80) (Transcriptional coactivator CRSP77) (Vitamin D3 receptor-interacting protein complex 80 kDa component) (DRIP80) -Q9UHD8 Q9UHD8 reviewed SEPT9_HUMAN Septin-9 (MLL septin-like fusion protein MSF-A) (MLL septin-like fusion protein) (Ovarian/Breast septin) (Ov/Br septin) (Septin D1) -J3KTL2 J3KTL2 unreviewed J3KTL2_HUMAN Serine/arginine-rich splicing factor 1 (Splicing factor, arginine/serine-rich 1) -Q9P2K3 Q9P2K3 reviewed RCOR3_HUMAN REST corepressor 3 -Q03252 Q03252 reviewed LMNB2_HUMAN Lamin-B2 -J3KNL2 J3KNL2 unreviewed J3KNL2_HUMAN Septin -Q6PJI9 Q6PJI9 reviewed WDR59_HUMAN GATOR2 complex protein WDR59 (WD repeat-containing protein 59) -Q08378 Q08378 reviewed GOGA3_HUMAN Golgin subfamily A member 3 (Golgi complex-associated protein of 170 kDa) (GCP170) (Golgin-160) -Q5BKY9 Q5BKY9 reviewed F133B_HUMAN Protein FAM133B -Q96SI1 Q96SI1 reviewed KCD15_HUMAN BTB/POZ domain-containing protein KCTD15 (Potassium channel tetramerization domain-containing protein 15) -Q9NS91 Q9NS91 reviewed RAD18_HUMAN E3 ubiquitin-protein ligase RAD18 (EC 2.3.2.27) (Postreplication repair protein RAD18) (hHR18) (hRAD18) (RING finger protein 73) (RING-type E3 ubiquitin transferase RAD18) -P17096 P17096 reviewed HMGA1_HUMAN High mobility group protein HMG-I/HMG-Y (HMG-I(Y)) (High mobility group AT-hook protein 1) (High mobility group protein A1) (High mobility group protein R) -Q99856 Q99856 reviewed ARI3A_HUMAN AT-rich interactive domain-containing protein 3A (ARID domain-containing protein 3A) (B-cell regulator of IgH transcription) (Bright) (Dead ringer-like protein 1) (E2F-binding protein 1) -P29762 P29762 reviewed RABP1_HUMAN Cellular retinoic acid-binding protein 1 (Cellular retinoic acid-binding protein I) (CRABP-I) -P11171 P11171 reviewed EPB41_HUMAN Protein 4.1 (P4.1) (4.1R) (Band 4.1) (EPB4.1) (Erythrocyte membrane protein band 4.1) -E9PCW1 E9PCW1 unreviewed E9PCW1_HUMAN Golgi SNAP receptor complex member 1 -Q9NQZ2 Q9NQZ2 reviewed SAS10_HUMAN Something about silencing protein 10 (Charged amino acid-rich leucine zipper 1) (CRL1) (Disrupter of silencing SAS10) (UTP3 homolog) -Q7Z6E9 Q7Z6E9 reviewed RBBP6_HUMAN E3 ubiquitin-protein ligase RBBP6 (EC 2.3.2.27) (Proliferation potential-related protein) (Protein P2P-R) (RING-type E3 ubiquitin transferase RBBP6) (Retinoblastoma-binding Q protein 1) (RBQ-1) (Retinoblastoma-binding protein 6) (p53-associated cellular protein of testis) -P42166 P42166 reviewed LAP2A_HUMAN Lamina-associated polypeptide 2, isoform alpha (Thymopoietin isoform alpha) (TP alpha) (Thymopoietin-related peptide isoform alpha) (TPRP isoform alpha) [Cleaved into: Thymopoietin (TP) (Splenin); Thymopentin (TP5)] -Q96P11 Q96P11 reviewed NSUN5_HUMAN 28S rRNA (cytosine-C(5))-methyltransferase (EC 2.1.1.-) (NOL1-related protein) (NOL1R) (NOL1/NOP2/Sun domain family member 5) (Williams-Beuren syndrome chromosomal region 20A protein) -Q9UPT8 Q9UPT8 reviewed ZC3H4_HUMAN Zinc finger CCCH domain-containing protein 4 -P01008 P01008 reviewed ANT3_HUMAN Antithrombin-III (ATIII) (Serpin C1) -B0QXZ6 B0QXZ6 unreviewed B0QXZ6_HUMAN Chromobox 6 -Q9Y5V3 Q9Y5V3 reviewed MAGD1_HUMAN Melanoma-associated antigen D1 (MAGE tumor antigen CCF) (MAGE-D1 antigen) (Neurotrophin receptor-interacting MAGE homolog) -Q9Y4E5 Q9Y4E5 reviewed ZN451_HUMAN E3 SUMO-protein ligase ZNF451 (EC 2.3.2.-) (Coactivator for steroid receptors) (E3 SUMO-protein transferase ZNF451) (Zinc finger protein 451) -Q8IZT6 Q8IZT6 reviewed ASPM_HUMAN Abnormal spindle-like microcephaly-associated protein (Abnormal spindle protein homolog) (Asp homolog) -Q9NZN5 Q9NZN5 reviewed ARHGC_HUMAN Rho guanine nucleotide exchange factor 12 (Leukemia-associated RhoGEF) -Q9H299 Q9H299 reviewed SH3L3_HUMAN SH3 domain-binding glutamic acid-rich-like protein 3 (SH3 domain-binding protein 1) (SH3BP-1) (TNF inhibitory protein B1) (TIP-B1) -Q9Y324 Q9Y324 reviewed FCF1_HUMAN rRNA-processing protein FCF1 homolog -P50402 P50402 reviewed EMD_HUMAN Emerin -Q53HC0 Q53HC0 reviewed CCD92_HUMAN Coiled-coil domain-containing protein 92 (Limkain beta-2) -O60271 O60271 reviewed JIP4_HUMAN C-Jun-amino-terminal kinase-interacting protein 4 (JIP-4) (JNK-interacting protein 4) (Cancer/testis antigen 89) (CT89) (Human lung cancer oncogene 6 protein) (HLC-6) (JNK-associated leucine-zipper protein) (JLP) (Mitogen-activated protein kinase 8-interacting protein 4) (Proliferation-inducing protein 6) (Protein highly expressed in testis) (PHET) (Sperm surface protein) (Sperm-associated antigen 9) (Sperm-specific protein) (Sunday driver 1) -Q04759 Q04759 reviewed KPCT_HUMAN Protein kinase C theta type (EC 2.7.11.13) (nPKC-theta) -P51858 P51858 reviewed HDGF_HUMAN Hepatoma-derived growth factor (HDGF) (High mobility group protein 1-like 2) (HMG-1L2) -Q96JM7 Q96JM7 reviewed LMBL3_HUMAN Lethal(3)malignant brain tumor-like protein 3 (H-l(3)mbt-like protein 3) (L(3)mbt-like protein 3) (L3mbt-like 3) (MBT-1) -P51397 P51397 reviewed DAP1_HUMAN Death-associated protein 1 (DAP-1) -Q9H1E3 Q9H1E3 reviewed NUCKS_HUMAN Nuclear ubiquitous casein and cyclin-dependent kinase substrate 1 (P1) -Q13574 Q13574 reviewed DGKZ_HUMAN Diacylglycerol kinase zeta (DAG kinase zeta) (EC 2.7.1.107) (EC 2.7.1.93) (Diglyceride kinase zeta) (DGK-zeta) -P63220 P63220 reviewed RS21_HUMAN Small ribosomal subunit protein eS21 (40S ribosomal protein S21) -G0XQ39 G0XQ39 unreviewed G0XQ39_HUMAN STIM1L (Stromal interaction molecule 1) -Q9NXG2 Q9NXG2 reviewed THUM1_HUMAN THUMP domain-containing protein 1 -Q9H6K5 Q9H6K5 reviewed PRR36_HUMAN Proline-rich protein 36 -D6RAF8 D6RAF8 unreviewed D6RAF8_HUMAN Heterogeneous nuclear ribonucleoprotein D -Q6IQ49 Q6IQ49 reviewed SDE2_HUMAN Splicing regulator SDE2 (Replication stress response regulator SDE2) -Q1MSJ5 Q1MSJ5 reviewed CSPP1_HUMAN Centrosome and spindle pole-associated protein 1 -Q9NP80 Q9NP80 reviewed PLPL8_HUMAN Calcium-independent phospholipase A2-gamma (EC 3.1.1.-) (EC 3.1.1.5) (Intracellular membrane-associated calcium-independent phospholipase A2 gamma) (iPLA2-gamma) (PNPLA-gamma) (Patatin-like phospholipase domain-containing protein 8) (iPLA2-2) -Q9UQE7 Q9UQE7 reviewed SMC3_HUMAN Structural maintenance of chromosomes protein 3 (SMC protein 3) (SMC-3) (Basement membrane-associated chondroitin proteoglycan) (Bamacan) (Chondroitin sulfate proteoglycan 6) (Chromosome-associated polypeptide) (hCAP) -Q9Y2H2 Q9Y2H2 reviewed SAC2_HUMAN Phosphatidylinositide phosphatase SAC2 (EC 3.1.3.25) (Inositol polyphosphate 5-phosphatase F) (Sac domain-containing inositol phosphatase 2) (Sac domain-containing phosphoinositide 4-phosphatase 2) (hSAC2) -O00418 O00418 reviewed EF2K_HUMAN Eukaryotic elongation factor 2 kinase (eEF-2 kinase) (eEF-2K) (EC 2.7.11.20) (Calcium/calmodulin-dependent eukaryotic elongation factor 2 kinase) -Q8NCF5 Q8NCF5 reviewed NF2IP_HUMAN NFATC2-interacting protein (45 kDa NF-AT-interacting protein) (45 kDa NFAT-interacting protein) (Nuclear factor of activated T-cells, cytoplasmic 2-interacting protein) -Q9Y478 Q9Y478 reviewed AAKB1_HUMAN 5'-AMP-activated protein kinase subunit beta-1 (AMPK subunit beta-1) (AMPKb) -Q04721 Q04721 reviewed NOTC2_HUMAN Neurogenic locus notch homolog protein 2 (Notch 2) (hN2) [Cleaved into: Notch 2 extracellular truncation (N2ECD); Notch 2 intracellular domain (N2ICD)] -P62877 P62877 reviewed RBX1_HUMAN E3 ubiquitin-protein ligase RBX1 (EC 2.3.2.27) (EC 2.3.2.32) (E3 ubiquitin-protein transferase RBX1) (Protein ZYP) (RING finger protein 75) (RING-box protein 1) (Rbx1) (Regulator of cullins 1) (ROC1) [Cleaved into: E3 ubiquitin-protein ligase RBX1, N-terminally processed (E3 ubiquitin-protein transferase RBX1, N-terminally processed)] -Q96MU7 Q96MU7 reviewed YTDC1_HUMAN YTH domain-containing protein 1 (Splicing factor YT521) (YT521-B) -Q2NKX9 Q2NKX9 reviewed CB068_HUMAN UPF0561 protein C2orf68 -Q9NVU0 Q9NVU0 reviewed RPC5_HUMAN DNA-directed RNA polymerase III subunit RPC5 (RNA polymerase III subunit C5) (DNA-directed RNA polymerase III 80 kDa polypeptide) -Q01433 Q01433 reviewed AMPD2_HUMAN AMP deaminase 2 (EC 3.5.4.6) (AMP deaminase isoform L) -P42575 P42575 reviewed CASP2_HUMAN Caspase-2 (CASP-2) (EC 3.4.22.55) (Neural precursor cell expressed developmentally down-regulated protein 2) (NEDD-2) (Protease ICH-1) [Cleaved into: Caspase-2 subunit p18; Caspase-2 subunit p13; Caspase-2 subunit p12] -O00232 O00232 reviewed PSD12_HUMAN 26S proteasome non-ATPase regulatory subunit 12 (26S proteasome regulatory subunit RPN5) (26S proteasome regulatory subunit p55) -Q8N201 Q8N201 reviewed INT1_HUMAN Integrator complex subunit 1 (Int1) -Q96IF1 Q96IF1 reviewed AJUBA_HUMAN LIM domain-containing protein ajuba -J3KNN5 J3KNN5 J3KNN5_HUMAN deleted -O75937 O75937 reviewed DNJC8_HUMAN DnaJ homolog subfamily C member 8 (Splicing protein spf31) -A0A0A0MRV0 Q9P2E9 reviewed RRBP1_HUMAN Ribosome-binding protein 1 (180 kDa ribosome receptor homolog) (RRp) (ES/130-related protein) (Ribosome receptor protein) -P40692 P40692 reviewed MLH1_HUMAN DNA mismatch repair protein Mlh1 (MutL protein homolog 1) -Q15459 Q15459 reviewed SF3A1_HUMAN Splicing factor 3A subunit 1 (SF3a120) (Spliceosome-associated protein 114) (SAP 114) -Q9NQ29 Q9NQ29 reviewed LUC7L_HUMAN Putative RNA-binding protein Luc7-like 1 (Putative SR protein LUC7B1) (SR+89) -Q9H6F5 Q9H6F5 reviewed CCD86_HUMAN Coiled-coil domain-containing protein 86 (Cytokine-induced protein with coiled-coil domain) -O95071 O95071 reviewed UBR5_HUMAN E3 ubiquitin-protein ligase UBR5 (EC 2.3.2.26) (E3 ubiquitin-protein ligase, HECT domain-containing 1) (HECT-type E3 ubiquitin transferase UBR5) (Hyperplastic discs protein homolog) (hHYD) (Progestin-induced protein) -Q9Y4P8 Q9Y4P8 reviewed WIPI2_HUMAN WD repeat domain phosphoinositide-interacting protein 2 (WIPI-2) (WIPI49-like protein 2) -Q9P219 Q9P219 reviewed DAPLE_HUMAN Protein Daple (Coiled-coil domain-containing protein 88C) (Dvl-associating protein with a high frequency of leucine residues) (hDaple) (Hook-related protein 2) (HkRP2) -O43257 O43257 reviewed ZNHI1_HUMAN Zinc finger HIT domain-containing protein 1 (Cyclin-G1-binding protein 1) (Zinc finger protein subfamily 4A member 1) (p18 Hamlet) -A0A0A0MTS7 A0A0A0MTS7 unreviewed A0A0A0MTS7_HUMAN Titin -Q92859 Q92859 reviewed NEO1_HUMAN Neogenin (Immunoglobulin superfamily DCC subclass member 2) -P21333 P21333 reviewed FLNA_HUMAN Filamin-A (FLN-A) (Actin-binding protein 280) (ABP-280) (Alpha-filamin) (Endothelial actin-binding protein) (Filamin-1) (Non-muscle filamin) -E7EQZ4 E7EQZ4 unreviewed E7EQZ4_HUMAN Survival motor neuron protein -Q9H496 Q9H496 reviewed IFG15_HUMAN Torsin-1A-interacting protein 2, isoform IFRG15 (15 kDa interferon-responsive protein) (IFRG15) -Q9H4L4 Q9H4L4 reviewed SENP3_HUMAN Sentrin-specific protease 3 (EC 3.4.22.-) (SUMO-1-specific protease 3) (Sentrin/SUMO-specific protease SENP3) -Q641Q2 Q641Q2 reviewed WAC2A_HUMAN WASH complex subunit 2A -Q9H9B1 Q9H9B1 reviewed EHMT1_HUMAN Histone-lysine N-methyltransferase EHMT1 (EC 2.1.1.-) (EC 2.1.1.367) (Euchromatic histone-lysine N-methyltransferase 1) (Eu-HMTase1) (G9a-like protein 1) (GLP) (GLP1) (Histone H3-K9 methyltransferase 5) (H3-K9-HMTase 5) (Lysine N-methyltransferase 1D) -P62701 P62701 reviewed RS4X_HUMAN Small ribosomal subunit protein eS4, X isoform (40S ribosomal protein S4) (SCR10) (Single copy abundant mRNA protein) -Q5T5H1 Q5T5H1 unreviewed Q5T5H1_HUMAN Endosulfine alpha -O95248 O95248 reviewed MTMR5_HUMAN Myotubularin-related protein 5 (Inactive phosphatidylinositol 3-phosphatase 5) (SET-binding factor 1) (Sbf1) -Q76L83 Q76L83 reviewed ASXL2_HUMAN Putative Polycomb group protein ASXL2 (Additional sex combs-like protein 2) -A0A1B0GTN9 A0A1B0GTN9 unreviewed A0A1B0GTN9_HUMAN Pleckstrin homology domain containing A7 -C9IZ08 C9IZ08 unreviewed C9IZ08_HUMAN GTPase activating protein and VPS9 domains 1 -Q92769 Q92769 reviewed HDAC2_HUMAN Histone deacetylase 2 (HD2) (EC 3.5.1.98) (Protein deacylase HDAC2) (EC 3.5.1.-) -Q86WB0 Q86WB0 reviewed ZC3C1_HUMAN Zinc finger C3HC-type protein 1 (Nuclear-interacting partner of ALK) (hNIPA) (Nuclear-interacting partner of anaplastic lymphoma kinase) -P26358 P26358 reviewed DNMT1_HUMAN DNA (cytosine-5)-methyltransferase 1 (Dnmt1) (EC 2.1.1.37) (CXXC-type zinc finger protein 9) (DNA methyltransferase HsaI) (DNA MTase HsaI) (M.HsaI) (MCMT) -Q14141 Q14141 reviewed SEPT6_HUMAN Septin-6 -A0A024R4E5 A0A024R4E5 unreviewed A0A024R4E5_HUMAN High density lipoprotein binding protein -Q92556 Q92556 reviewed ELMO1_HUMAN Engulfment and cell motility protein 1 (Protein ced-12 homolog) -Q9Y5B6 Q9Y5B6 reviewed PAXB1_HUMAN PAX3- and PAX7-binding protein 1 (GC-rich sequence DNA-binding factor 1) -Q15652 Q15652 reviewed JHD2C_HUMAN Probable JmjC domain-containing histone demethylation protein 2C (EC 1.14.11.-) (Jumonji domain-containing protein 1C) (Thyroid receptor-interacting protein 8) (TR-interacting protein 8) (TRIP-8) -A0A0G2JPR0 A0A0G2JPR0 unreviewed A0A0G2JPR0_HUMAN Complement C4-A -P51452 P51452 reviewed DUS3_HUMAN Dual specificity protein phosphatase 3 (EC 3.1.3.16) (EC 3.1.3.48) (Dual specificity protein phosphatase VHR) (Vaccinia H1-related phosphatase) (VHR) -E7EPT4 E7EPT4 unreviewed E7EPT4_HUMAN NADH dehydrogenase [ubiquinone] flavoprotein 2, mitochondrial (NADH-ubiquinone oxidoreductase 24 kDa subunit) -P35268 P35268 reviewed RL22_HUMAN Large ribosomal subunit protein eL22 (60S ribosomal protein L22) (EBER-associated protein) (EAP) (Epstein-Barr virus small RNA-associated protein) (Heparin-binding protein HBp15) -Q9BRD0 Q9BRD0 reviewed BUD13_HUMAN BUD13 homolog -P19823 P19823 reviewed ITIH2_HUMAN Inter-alpha-trypsin inhibitor heavy chain H2 (ITI heavy chain H2) (ITI-HC2) (Inter-alpha-inhibitor heavy chain 2) (Inter-alpha-trypsin inhibitor complex component II) (Serum-derived hyaluronan-associated protein) (SHAP) -Q9BVJ6 Q9BVJ6 reviewed UT14A_HUMAN U3 small nucleolar RNA-associated protein 14 homolog A (Antigen NY-CO-16) (Serologically defined colon cancer antigen 16) -Q6WCQ1 Q6WCQ1 reviewed MPRIP_HUMAN Myosin phosphatase Rho-interacting protein (M-RIP) (Rho-interacting protein 3) (RIP3) (p116Rip) -P78332 P78332 reviewed RBM6_HUMAN RNA-binding protein 6 (Lung cancer antigen NY-LU-12) (Protein G16) (RNA-binding motif protein 6) (RNA-binding protein DEF-3) -R4GMX8 R4GMX8 unreviewed R4GMX8_HUMAN RAN binding protein 10 -Q86VZ1 Q86VZ1 reviewed P2RY8_HUMAN P2Y purinoceptor 8 (P2Y8) -Q92685 Q92685 reviewed ALG3_HUMAN Dol-P-Man:Man(5)GlcNAc(2)-PP-Dol alpha-1,3-mannosyltransferase (EC 2.4.1.258) (Asparagine-linked glycosylation protein 3 homolog) (Dol-P-Man-dependent alpha(1-3)-mannosyltransferase) (Dolichyl-P-Man:Man(5)GlcNAc(2)-PP-dolichyl mannosyltransferase) (Dolichyl-phosphate-mannose--glycolipid alpha-mannosyltransferase) (Not56-like protein) -O00479 O00479 reviewed HMGN4_HUMAN High mobility group nucleosome-binding domain-containing protein 4 (Non-histone chromosomal protein HMG-17-like 3) (Non-histone chromosomal protein) -Q9ULR3 Q9ULR3 reviewed PPM1H_HUMAN Protein phosphatase 1H (EC 3.1.3.16) -Q53EZ4 Q53EZ4 reviewed CEP55_HUMAN Centrosomal protein of 55 kDa (Cep55) (Up-regulated in colon cancer 6) -P20742 P20742 reviewed PZP_HUMAN Pregnancy zone protein (C3 and PZP-like alpha-2-macroglobulin domain-containing protein 6) -Q7Z7L8 Q7Z7L8 reviewed CK096_HUMAN Uncharacterized protein C11orf96 (Protein Ag2 homolog) -H7C494 H7C494 unreviewed H7C494_HUMAN DnaJ heat shock protein family (Hsp40) member B14 -Q9BSW2 Q9BSW2 reviewed EFC4B_HUMAN EF-hand calcium-binding domain-containing protein 4B (Calcium release-activated calcium channel regulator 2A) (CRAC channel regulator 2A) (Calcium release-activated channel regulator 2A) (Ras-related protein Rab-46) -Q5T7W7 Q5T7W7 reviewed TSTD2_HUMAN Thiosulfate sulfurtransferase/rhodanese-like domain-containing protein 2 (Rhodanese domain-containing protein 2) -P13645 P13645 reviewed K1C10_HUMAN Keratin, type I cytoskeletal 10 (Cytokeratin-10) (CK-10) (Keratin-10) (K10) -Q9Y3Q3 Q9Y3Q3 reviewed TMED3_HUMAN Transmembrane emp24 domain-containing protein 3 (Membrane protein p24B) (p24 family protein gamma-4) (p24gamma4) (p26) -Q9H0G5 Q9H0G5 reviewed NSRP1_HUMAN Nuclear speckle splicing regulatory protein 1 (Coiled-coil domain-containing protein 55) (Nuclear speckle-related protein 70) (NSrp70) -Q8NBZ0 Q8NBZ0 reviewed IN80E_HUMAN INO80 complex subunit E (Coiled-coil domain-containing protein 95) -P46783 P46783 reviewed RS10_HUMAN Small ribosomal subunit protein eS10 (40S ribosomal protein S10) -Q92888 Q92888 reviewed ARHG1_HUMAN Rho guanine nucleotide exchange factor 1 (115 kDa guanine nucleotide exchange factor) (p115-RhoGEF) (p115RhoGEF) (Sub1.5) -Q6UUV9 Q6UUV9 reviewed CRTC1_HUMAN CREB-regulated transcription coactivator 1 (Mucoepidermoid carcinoma translocated protein 1) (Transducer of regulated cAMP response element-binding protein 1) (TORC-1) (Transducer of CREB protein 1) -Q15056 Q15056 reviewed IF4H_HUMAN Eukaryotic translation initiation factor 4H (eIF-4H) (Williams-Beuren syndrome chromosomal region 1 protein) -Q9Y3P9 Q9Y3P9 reviewed RBGP1_HUMAN Rab GTPase-activating protein 1 (GAP and centrosome-associated protein) (Rab6 GTPase-activating protein GAPCenA) -Q9NZI8 Q9NZI8 reviewed IF2B1_HUMAN Insulin-like growth factor 2 mRNA-binding protein 1 (IGF2 mRNA-binding protein 1) (IMP-1) (IMP1) (Coding region determinant-binding protein) (CRD-BP) (IGF-II mRNA-binding protein 1) (VICKZ family member 1) (Zipcode-binding protein 1) (ZBP-1) -Q15629 Q15629 reviewed TRAM1_HUMAN Translocating chain-associated membrane protein 1 (Protein TRAM1) -Q8N183 Q8N183 reviewed NDUF2_HUMAN NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 2 (B17.2-like) (B17.2L) (Mimitin) (Myc-induced mitochondrial protein) (MMTN) (NDUFA12-like protein) -P61978 P61978 reviewed HNRPK_HUMAN Heterogeneous nuclear ribonucleoprotein K (hnRNP K) (Transformation up-regulated nuclear protein) (TUNP) -O14561 O14561 reviewed ACPM_HUMAN Acyl carrier protein, mitochondrial (ACP) (CI-SDAP) (NADH-ubiquinone oxidoreductase 9.6 kDa subunit) -Q9ULU4 Q9ULU4 reviewed ZMYD8_HUMAN MYND-type zinc finger-containing chromatin reader ZMYND8 (Cutaneous T-cell lymphoma-associated antigen se14-3) (CTCL-associated antigen se14-3) (Protein kinase C-binding protein 1) (Rack7) (Transcription coregulator ZMYND8) (Zinc finger MYND domain-containing protein 8) -Q9NZ32 Q9NZ32 reviewed ARP10_HUMAN Actin-related protein 10 (Actin-related protein 11) (hARP11) -O75037 O75037 reviewed KI21B_HUMAN Kinesin-like protein KIF21B -Q86XZ4 Q86XZ4 reviewed SPAS2_HUMAN Spermatogenesis-associated serine-rich protein 2 (Serine-rich spermatocytes and round spermatid 59 kDa protein) (p59scr) -Q9Y3U8 Q9Y3U8 reviewed RL36_HUMAN Large ribosomal subunit protein eL36 (60S ribosomal protein L36) -Q08752 Q08752 reviewed PPID_HUMAN Peptidyl-prolyl cis-trans isomerase D (PPIase D) (EC 5.2.1.8) (40 kDa peptidyl-prolyl cis-trans isomerase) (Cyclophilin-40) (CYP-40) (Cyclophilin-related protein) (Rotamase D) -Q9Y519 Q9Y519 reviewed T184B_HUMAN Transmembrane protein 184B (Putative MAPK-activating protein FM08) -Q8WX93 Q8WX93 reviewed PALLD_HUMAN Palladin (SIH002) (Sarcoma antigen NY-SAR-77) -Q9P1Y6 Q9P1Y6 reviewed PHRF1_HUMAN PHD and RING finger domain-containing protein 1 -Q96BR1 Q96BR1 reviewed SGK3_HUMAN Serine/threonine-protein kinase Sgk3 (EC 2.7.11.1) (Cytokine-independent survival kinase) (Serum/glucocorticoid-regulated kinase 3) (Serum/glucocorticoid-regulated kinase-like) -Q9NW64 Q9NW64 reviewed RBM22_HUMAN Pre-mRNA-splicing factor RBM22 (RNA-binding motif protein 22) (Zinc finger CCCH domain-containing protein 16) -Q01518 Q01518 reviewed CAP1_HUMAN Adenylyl cyclase-associated protein 1 (CAP 1) -H7C0J3 H7C0J3 unreviewed H7C0J3_HUMAN Chromodomain helicase DNA binding protein 3 -Q9Y3S2 Q9Y3S2 reviewed ZN330_HUMAN Zinc finger protein 330 (Nucleolar autoantigen 36) (Nucleolar cysteine-rich protein) -A0A0A0MQU4 A0A0A0MQU4 unreviewed A0A0A0MQU4_HUMAN Selenocysteine lyase (EC 4.4.1.16) -Q13625 Q13625 reviewed ASPP2_HUMAN Apoptosis-stimulating of p53 protein 2 (Bcl2-binding protein) (Bbp) (Renal carcinoma antigen NY-REN-51) (Tumor suppressor p53-binding protein 2) (53BP2) (p53-binding protein 2) (p53BP2) -Q9BQF6 Q9BQF6 reviewed SENP7_HUMAN Sentrin-specific protease 7 (EC 3.4.22.-) (SUMO-1-specific protease 2) (Sentrin/SUMO-specific protease SENP7) -Q99567 Q99567 reviewed NUP88_HUMAN Nuclear pore complex protein Nup88 (88 kDa nucleoporin) (Nucleoporin Nup88) -Q86YA3 Q86YA3 reviewed ZGRF1_HUMAN 5'-3' DNA helicase ZGRF1 (EC 5.6.2.3) (GRF-type zinc finger domain-containing protein 1) -O00512 O00512 reviewed BCL9_HUMAN B-cell CLL/lymphoma 9 protein (B-cell lymphoma 9 protein) (Bcl-9) (Protein legless homolog) -O75494 O75494 reviewed SRS10_HUMAN Serine/arginine-rich splicing factor 10 (40 kDa SR-repressor protein) (SRrp40) (FUS-interacting serine-arginine-rich protein 1) (Splicing factor SRp38) (Splicing factor, arginine/serine-rich 13A) (TLS-associated protein with Ser-Arg repeats) (TASR) (TLS-associated protein with SR repeats) (TLS-associated serine-arginine protein) (TLS-associated SR protein) -Q13243 Q13243 reviewed SRSF5_HUMAN Serine/arginine-rich splicing factor 5 (Delayed-early protein HRS) (Pre-mRNA-splicing factor SRP40) (Splicing factor, arginine/serine-rich 5) -K4DI81 K4DI81 unreviewed K4DI81_HUMAN Ubiquitin conjugating enzyme E2 C (Ubiquitin-conjugating enzyme E2C, isoform CRA_d) -Q05655 Q05655 reviewed KPCD_HUMAN Protein kinase C delta type (EC 2.7.11.13) (Tyrosine-protein kinase PRKCD) (EC 2.7.10.2) (nPKC-delta) [Cleaved into: Protein kinase C delta type regulatory subunit; Protein kinase C delta type catalytic subunit (Sphingosine-dependent protein kinase-1) (SDK1)] -P17844 P17844 reviewed DDX5_HUMAN Probable ATP-dependent RNA helicase DDX5 (EC 3.6.4.13) (DEAD box protein 5) (RNA helicase p68) -Q92688 Q92688 reviewed AN32B_HUMAN Acidic leucine-rich nuclear phosphoprotein 32 family member B (Acidic protein rich in leucines) (Putative HLA-DR-associated protein I-2) (PHAPI2) (Silver-stainable protein SSP29) -P33316 P33316 reviewed DUT_HUMAN Deoxyuridine 5'-triphosphate nucleotidohydrolase, mitochondrial (dUTPase) (EC 3.6.1.23) (dUTP pyrophosphatase) -A4D2B0 A4D2B0 reviewed MBLC1_HUMAN Metallo-beta-lactamase domain-containing protein 1 (EC 3.1.27.-) (Endoribonuclease MBLAC1) -Q15287 Q15287 reviewed RNPS1_HUMAN RNA-binding protein with serine-rich domain 1 (SR-related protein LDC2) -Q14318 Q14318 reviewed FKBP8_HUMAN Peptidyl-prolyl cis-trans isomerase FKBP8 (PPIase FKBP8) (EC 5.2.1.8) (38 kDa FK506-binding protein) (38 kDa FKBP) (FKBP-38) (hFKBP38) (FK506-binding protein 8) (FKBP-8) (FKBPR38) (Rotamase) -Q9NRQ5 Q9NRQ5 reviewed SMCO4_HUMAN Single-pass membrane and coiled-coil domain-containing protein 4 (Protein FN5) -P14317 P14317 reviewed HCLS1_HUMAN Hematopoietic lineage cell-specific protein (Hematopoietic cell-specific LYN substrate 1) (LckBP1) (p75) -Q8WV93 Q8WV93 reviewed AFG1L_HUMAN AFG1-like ATPase (Lactation elevated protein 1) (EC 3.6.-.-) (Protein AFG1 homolog) -Q96S55 Q96S55 reviewed WRIP1_HUMAN ATPase WRNIP1 (EC 3.6.1.-) (Werner helicase-interacting protein 1) -Q6ZU80 Q6ZU80 reviewed CE128_HUMAN Centrosomal protein of 128 kDa (Cep128) -Q9NWS9 Q9NWS9 reviewed ZN446_HUMAN Zinc finger protein 446 (Zinc finger protein with KRAB and SCAN domains 20) -Q13158 Q13158 reviewed FADD_HUMAN FAS-associated death domain protein (FAS-associating death domain-containing protein) (Growth-inhibiting gene 3 protein) (Mediator of receptor induced toxicity) -P04637 P04637 reviewed P53_HUMAN Cellular tumor antigen p53 (Antigen NY-CO-13) (Phosphoprotein p53) (Tumor suppressor p53) -Q53GL0 Q53GL0 reviewed PKHO1_HUMAN Pleckstrin homology domain-containing family O member 1 (PH domain-containing family O member 1) (C-Jun-binding protein) (JBP) (Casein kinase 2-interacting protein 1) (CK2-interacting protein 1) (CKIP-1) (Osteoclast maturation-associated gene 120 protein) -H0YEM9 H0YEM9 unreviewed H0YEM9_HUMAN Zinc finger and BTB domain containing 44 -A0A0A0MRJ7 A0A0A0MRJ7 unreviewed A0A0A0MRJ7_HUMAN Coagulation factor V -Q02790 Q02790 reviewed FKBP4_HUMAN Peptidyl-prolyl cis-trans isomerase FKBP4 (PPIase FKBP4) (EC 5.2.1.8) (51 kDa FK506-binding protein) (FKBP51) (52 kDa FK506-binding protein) (52 kDa FKBP) (FKBP-52) (59 kDa immunophilin) (p59) (FK506-binding protein 4) (FKBP-4) (FKBP59) (HSP-binding immunophilin) (HBI) (Immunophilin FKBP52) (Rotamase) [Cleaved into: Peptidyl-prolyl cis-trans isomerase FKBP4, N-terminally processed] -O75925 O75925 reviewed PIAS1_HUMAN E3 SUMO-protein ligase PIAS1 (EC 2.3.2.-) (DEAD/H box-binding protein 1) (E3 SUMO-protein transferase PIAS1) (Gu-binding protein) (GBP) (Protein inhibitor of activated STAT protein 1) (RNA helicase II-binding protein) -O43566 O43566 reviewed RGS14_HUMAN Regulator of G-protein signaling 14 (RGS14) -P55209 P55209 reviewed NP1L1_HUMAN Nucleosome assembly protein 1-like 1 (NAP-1-related protein) (hNRP) -P12270 P12270 reviewed TPR_HUMAN Nucleoprotein TPR (Megator) (NPC-associated intranuclear protein) (Translocated promoter region protein) -O60264 O60264 reviewed SMCA5_HUMAN SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily A member 5 (SWI/SNF-related matrix-associated actin-dependent regulator of chromatin A5) (EC 3.6.4.-) (Sucrose nonfermenting protein 2 homolog) (hSNF2H) -Q9H910 Q9H910 reviewed JUPI2_HUMAN Jupiter microtubule associated homolog 2 (Hematological and neurological expressed 1-like protein) (HN1-like protein) -P08238 P08238 reviewed HS90B_HUMAN Heat shock protein HSP 90-beta (HSP 90) (Heat shock 84 kDa) (HSP 84) (HSP84) (Heat shock protein family C member 3) -Q8WWQ0 Q8WWQ0 reviewed PHIP_HUMAN PH-interacting protein (PHIP) (DDB1- and CUL4-associated factor 14) (IRS-1 PH domain-binding protein) (WD repeat-containing protein 11) -Q9H814 Q9H814 reviewed PHAX_HUMAN Phosphorylated adapter RNA export protein (RNA U small nuclear RNA export adapter protein) -Q5W0B1 Q5W0B1 reviewed OBI1_HUMAN ORC ubiquitin ligase 1 (OBI1) (EC 2.3.2.27) (RING finger protein 219) -Q96S44 Q96S44 reviewed PRPK_HUMAN EKC/KEOPS complex subunit TP53RK (EC 3.6.-.-) (Atypical serine/threonine protein kinase TP53RK) (Nori-2) (TP53-regulating kinase) (EC 2.7.11.1) (p53-related protein kinase) -O75475 O75475 reviewed PSIP1_HUMAN PC4 and SFRS1-interacting protein (CLL-associated antigen KW-7) (Dense fine speckles 70 kDa protein) (DFS 70) (Lens epithelium-derived growth factor) (Transcriptional coactivator p75/p52) -P55265 P55265 reviewed DSRAD_HUMAN Double-stranded RNA-specific adenosine deaminase (DRADA) (EC 3.5.4.37) (136 kDa double-stranded RNA-binding protein) (p136) (Interferon-inducible protein 4) (IFI-4) (K88DSRBP) -P28290 P28290 reviewed ITPI2_HUMAN Protein ITPRID2 (Cleavage signal-1 protein) (CS-1) (ITPR-interacting domain-containing protein 2) (Ki-ras-induced actin-interacting protein) (Sperm-specific antigen 2) -O75396 O75396 reviewed SC22B_HUMAN Vesicle-trafficking protein SEC22b (ER-Golgi SNARE of 24 kDa) (ERS-24) (ERS24) (SEC22 vesicle-trafficking protein homolog B) (SEC22 vesicle-trafficking protein-like 1) -Q8IYW5 Q8IYW5 reviewed RN168_HUMAN E3 ubiquitin-protein ligase RNF168 (hRNF168) (EC 2.3.2.27) (RING finger protein 168) (RING-type E3 ubiquitin transferase RNF168) -Q96R06 Q96R06 reviewed SPAG5_HUMAN Sperm-associated antigen 5 (Astrin) (Deepest) (Mitotic spindle-associated protein p126) (MAP126) -O94804 O94804 reviewed STK10_HUMAN Serine/threonine-protein kinase 10 (EC 2.7.11.1) (Lymphocyte-oriented kinase) -A0A087WUT6 A0A087WUT6 A0A087WUT6_HUMAN deleted -P20339 P20339 reviewed RAB5A_HUMAN Ras-related protein Rab-5A (EC 3.6.5.2) -Q9BRL6 Q9BRL6 reviewed SRSF8_HUMAN Serine/arginine-rich splicing factor 8 (Pre-mRNA-splicing factor SRP46) (Splicing factor SRp46) (Splicing factor, arginine/serine-rich 2B) -Q92994 Q92994 reviewed TF3B_HUMAN Transcription factor IIIB 90 kDa subunit (TFIIIB90) (hTFIIIB90) (B-related factor 1) (BRF-1) (hBRF) (TAF3B2) (TATA box-binding protein-associated factor, RNA polymerase III, subunit 2) -P51003 P51003 reviewed PAPOA_HUMAN Poly(A) polymerase alpha (PAP-alpha) (EC 2.7.7.19) (Polynucleotide adenylyltransferase alpha) -Q13435 Q13435 reviewed SF3B2_HUMAN Splicing factor 3B subunit 2 (Pre-mRNA-splicing factor SF3b 145 kDa subunit) (SF3b145) (Spliceosome-associated protein 145) (SAP 145) -C9J2V2 C9J2V2 unreviewed C9J2V2_HUMAN NF-kappa-B essential modulator (IkB kinase-associated protein 1) (Inhibitor of nuclear factor kappa-B kinase subunit gamma) (NF-kappa-B essential modifier) -P42224 P42224 reviewed STAT1_HUMAN Signal transducer and activator of transcription 1-alpha/beta (Transcription factor ISGF-3 components p91/p84) -P24666 P24666 reviewed PPAC_HUMAN Low molecular weight phosphotyrosine protein phosphatase (LMW-PTP) (LMW-PTPase) (EC 3.1.3.48) (Adipocyte acid phosphatase) (Low molecular weight cytosolic acid phosphatase) (EC 3.1.3.2) (Red cell acid phosphatase 1) -P30414 P30414 reviewed NKTR_HUMAN NK-tumor recognition protein (NK-TR protein) (Natural-killer cells cyclophilin-related protein) (Peptidyl-prolyl cis-trans isomerase NKTR) (PPIase) (EC 5.2.1.8) (Rotamase) -Q9Y2F5 Q9Y2F5 reviewed ICE1_HUMAN Little elongation complex subunit 1 (Interactor of little elongator complex ELL subunit 1) -A0A0D9SF60 A0A0D9SF60 A0A0D9SF60_HUMAN deleted -Q14207 Q14207 reviewed NPAT_HUMAN Protein NPAT (Nuclear protein of the ataxia telangiectasia mutated locus) (Nuclear protein of the ATM locus) (p220) -Q99081 Q99081 reviewed HTF4_HUMAN Transcription factor 12 (TCF-12) (Class B basic helix-loop-helix protein 20) (bHLHb20) (DNA-binding protein HTF4) (E-box-binding protein) (Transcription factor HTF-4) -Q9P275 Q9P275 reviewed UBP36_HUMAN Ubiquitin carboxyl-terminal hydrolase 36 (EC 2.3.2.-) (EC 3.4.19.12) (Deubiquitinating enzyme 36) (Ubiquitin thioesterase 36) (Ubiquitin-specific-processing protease 36) -Q5FWF5 Q5FWF5 reviewed ESCO1_HUMAN N-acetyltransferase ESCO1 (EC 2.3.1.-) (CTF7 homolog 1) (Establishment factor-like protein 1) (EFO1) (EFO1p) (hEFO1) (Establishment of cohesion 1 homolog 1) (ECO1 homolog 1) (ESO1 homolog 1) -Q7Z5R6 Q7Z5R6 reviewed AB1IP_HUMAN Amyloid beta A4 precursor protein-binding family B member 1-interacting protein (APBB1-interacting protein 1) (Proline-rich EVH1 ligand 1) (PREL-1) (Proline-rich protein 73) (Rap1-GTP-interacting adapter molecule) (RIAM) (Retinoic acid-responsive proline-rich protein 1) (RARP-1) -Q9NWB6 Q9NWB6 reviewed ARGL1_HUMAN Arginine and glutamate-rich protein 1 -M0QYC1 M0QYC1 unreviewed M0QYC1_HUMAN Rho guanine nucleotide exchange factor 1 -P35269 P35269 reviewed T2FA_HUMAN General transcription factor IIF subunit 1 (General transcription factor IIF 74 kDa subunit) (Transcription initiation factor IIF subunit alpha) (TFIIF-alpha) (Transcription initiation factor RAP74) -O43143 O43143 reviewed DHX15_HUMAN ATP-dependent RNA helicase DHX15 (EC 3.6.4.13) (ATP-dependent RNA helicase #46) (DEAH box protein 15) (Splicing factor Prp43) (hPrp43) -Q9NUP7 Q9NUP7 reviewed TRM13_HUMAN tRNA:m(4)X modification enzyme TRM13 homolog (EC 2.1.1.225) (Coiled-coil domain-containing protein 76) -O43677 O43677 reviewed NDUC1_HUMAN NADH dehydrogenase [ubiquinone] 1 subunit C1, mitochondrial (Complex I-KFYI) (CI-KFYI) (NADH-ubiquinone oxidoreductase KFYI subunit) -Q8N8D1 Q8N8D1 reviewed PDCD7_HUMAN Programmed cell death protein 7 (ES18) (hES18) -Q9Y3T9 Q9Y3T9 reviewed NOC2L_HUMAN Nucleolar complex protein 2 homolog (Protein NOC2 homolog) (NOC2-like protein) (Novel INHAT repressor) -Q8NEZ4 Q8NEZ4 reviewed KMT2C_HUMAN Histone-lysine N-methyltransferase 2C (Lysine N-methyltransferase 2C) (EC 2.1.1.364) (Homologous to ALR protein) (Myeloid/lymphoid or mixed-lineage leukemia protein 3) -E7ETA6 Q15154 reviewed PCM1_HUMAN Pericentriolar material 1 protein (PCM-1) (hPCM-1) -Q9H165 Q9H165 reviewed BC11A_HUMAN B-cell lymphoma/leukemia 11A (BCL-11A) (B-cell CLL/lymphoma 11A) (COUP-TF-interacting protein 1) (Ecotropic viral integration site 9 protein homolog) (EVI-9) (Zinc finger protein 856) -Q93073 Q93073 reviewed SBP2L_HUMAN Selenocysteine insertion sequence-binding protein 2-like (SECIS-binding protein 2-like) -P01733 P01733 reviewed TVBL3_HUMAN T cell receptor beta variable 12-3 (T-cell receptor beta chain V region YT35) -Q9H4E7 Q9H4E7 reviewed DEFI6_HUMAN Differentially expressed in FDCP 6 homolog (DEF-6) (IRF4-binding protein) -O43295 O43295 reviewed SRGP3_HUMAN SLIT-ROBO Rho GTPase-activating protein 3 (srGAP3) (Mental disorder-associated GAP) (Rho GTPase-activating protein 14) (WAVE-associated Rac GTPase-activating protein) (WRP) -P16520 P16520 reviewed GBB3_HUMAN Guanine nucleotide-binding protein G(I)/G(S)/G(T) subunit beta-3 (Transducin beta chain 3) -P29084 P29084 reviewed T2EB_HUMAN Transcription initiation factor IIE subunit beta (TFIIE-beta) (General transcription factor IIE subunit 2) -Q9BWH2 Q9BWH2 reviewed FUND2_HUMAN FUN14 domain-containing protein 2 (Cervical cancer proto-oncogene 3 protein) (HCC-3) (Hepatitis C virus core-binding protein 6) -A2RRD8 A2RRD8 reviewed ZN320_HUMAN Zinc finger protein 320 -Q6P0Q8 Q6P0Q8 reviewed MAST2_HUMAN Microtubule-associated serine/threonine-protein kinase 2 (EC 2.7.11.1) -Q9UI08 Q9UI08 reviewed EVL_HUMAN Ena/VASP-like protein (Ena/vasodilator-stimulated phosphoprotein-like) -Q9P2B7 Q9P2B7 reviewed CFA97_HUMAN Cilia- and flagella-associated protein 97 -Q9ULW0 Q9ULW0 reviewed TPX2_HUMAN Targeting protein for Xklp2 (Differentially expressed in cancerous and non-cancerous lung cells 2) (DIL-2) (Hepatocellular carcinoma-associated antigen 519) (Hepatocellular carcinoma-associated antigen 90) (Protein fls353) (Restricted expression proliferation-associated protein 100) (p100) -A0A024R214 A0A024R214 unreviewed A0A024R214_HUMAN Cytoplasmic polyadenylation element binding protein 1, isoform CRA_c (Cytoplasmic polyadenylation element-binding protein 1) -Q9UHB6 Q9UHB6 reviewed LIMA1_HUMAN LIM domain and actin-binding protein 1 (Epithelial protein lost in neoplasm) -E9PDJ2 E9PDJ2 unreviewed E9PDJ2_HUMAN Calcipressin-1 (Regulator of calcineurin 1) -Q16537 Q16537 reviewed 2A5E_HUMAN Serine/threonine-protein phosphatase 2A 56 kDa regulatory subunit epsilon isoform (PP2A B subunit isoform B'-epsilon) (PP2A B subunit isoform B56-epsilon) (PP2A B subunit isoform PR61-epsilon) (PP2A B subunit isoform R5-epsilon) -P05204 P05204 reviewed HMGN2_HUMAN Non-histone chromosomal protein HMG-17 (High mobility group nucleosome-binding domain-containing protein 2) -P56182 P56182 reviewed RRP1_HUMAN Ribosomal RNA processing protein 1 homolog A (Novel nuclear protein 1) (NNP-1) (Nucleolar protein Nop52) (RRP1-like protein) -O43516 O43516 reviewed WIPF1_HUMAN WAS/WASL-interacting protein family member 1 (Protein PRPL-2) (Wiskott-Aldrich syndrome protein-interacting protein) (WASP-interacting protein) -Q9UPN4 Q9UPN4 reviewed CP131_HUMAN Centrosomal protein of 131 kDa (5-azacytidine-induced protein 1) (Pre-acrosome localization protein 1) -O60524 O60524 reviewed NEMF_HUMAN Ribosome quality control complex subunit NEMF (Antigen NY-CO-1) (Nuclear export mediator factor) (Serologically defined colon cancer antigen 1) -Q9BZX2 Q9BZX2 reviewed UCK2_HUMAN Uridine-cytidine kinase 2 (UCK 2) (EC 2.7.1.48) (Cytidine monophosphokinase 2) (Testis-specific protein TSA903) (Uridine monophosphokinase 2) -P11117 P11117 reviewed PPAL_HUMAN Lysosomal acid phosphatase (LAP) (EC 3.1.3.2) -J3KNL6 O15027 reviewed SC16A_HUMAN Protein transport protein Sec16A (SEC16 homolog A) (p250) -Q9Y462 Q9Y462 reviewed ZN711_HUMAN Zinc finger protein 711 (Zinc finger protein 6) -Q9NYF3 Q9NYF3 reviewed FA53C_HUMAN Protein FAM53C -Q9NXR1 Q9NXR1 reviewed NDE1_HUMAN Nuclear distribution protein nudE homolog 1 (NudE) -Q9P270 Q9P270 reviewed SLAI2_HUMAN SLAIN motif-containing protein 2 -Q9Y5K6 Q9Y5K6 reviewed CD2AP_HUMAN CD2-associated protein (Adapter protein CMS) (Cas ligand with multiple SH3 domains) -Q9BXW9 Q9BXW9 reviewed FACD2_HUMAN Fanconi anemia group D2 protein (Protein FACD2) -P51114 P51114 reviewed FXR1_HUMAN RNA-binding protein FXR1 (FMR1 autosomal homolog 1) (hFXR1p) -Q13523 Q13523 reviewed PRP4K_HUMAN Serine/threonine-protein kinase PRP4 homolog (EC 2.7.11.1) (PRP4 kinase) (PRP4 pre-mRNA-processing factor 4 homolog) -Q96G03 Q96G03 reviewed PGM2_HUMAN Phosphopentomutase (EC 5.4.2.7) (Glucose phosphomutase 2) (Phosphodeoxyribomutase) (Phosphoglucomutase-2) (EC 5.4.2.2) -P62753 P62753 reviewed RS6_HUMAN Small ribosomal subunit protein eS6 (40S ribosomal protein S6) (Phosphoprotein NP33) -Q2M2I8 Q2M2I8 reviewed AAK1_HUMAN AP2-associated protein kinase 1 (EC 2.7.11.1) (Adaptor-associated kinase 1) -H7C0H2 H7C0H2 unreviewed H7C0H2_HUMAN RNA binding motif protein 33 -Q99622 Q99622 reviewed C10_HUMAN Protein C10 -Q9Y5J1 Q9Y5J1 reviewed UTP18_HUMAN U3 small nucleolar RNA-associated protein 18 homolog (WD repeat-containing protein 50) -Q9Y6X4 Q9Y6X4 reviewed F169A_HUMAN Soluble lamin-associated protein of 75 kDa (SLAP75) (Protein FAM169A) -Q9BXI6 Q9BXI6 reviewed TB10A_HUMAN TBC1 domain family member 10A (EBP50-PDX interactor of 64 kDa) (EPI64 protein) (Rab27A-GAP-alpha) -Q12789 Q12789 reviewed TF3C1_HUMAN General transcription factor 3C polypeptide 1 (TF3C-alpha) (TFIIIC box B-binding subunit) (Transcription factor IIIC 220 kDa subunit) (TFIIIC 220 kDa subunit) (TFIIIC220) (Transcription factor IIIC subunit alpha) -F8W130 F8W130 unreviewed F8W130_HUMAN Trophinin associated protein -Q3V6T2 Q3V6T2 reviewed GRDN_HUMAN Girdin (Akt phosphorylation enhancer) (APE) (Coiled-coil domain-containing protein 88A) (G alpha-interacting vesicle-associated protein) (GIV) (Girders of actin filament) (Hook-related protein 1) (HkRP1) -A0A0D9SF58 A0A0D9SF58 unreviewed A0A0D9SF58_HUMAN Chromosome transmission fidelity factor 18 -H7C0P6 H7C0P6 unreviewed H7C0P6_HUMAN non-specific serine/threonine protein kinase (EC 2.7.11.1) -Q8WY36 Q8WY36 reviewed BBX_HUMAN HMG box transcription factor BBX (Bobby sox homolog) (HMG box-containing protein 2) -Q92698 Q92698 reviewed RAD54_HUMAN DNA repair and recombination protein RAD54-like (EC 3.6.4.12) (RAD54 homolog) (hHR54) (hRAD54) -Q96T51 Q96T51 reviewed RUFY1_HUMAN RUN and FYVE domain-containing protein 1 (FYVE-finger protein EIP1) (La-binding protein 1) (Rab4-interacting protein) (Zinc finger FYVE domain-containing protein 12) -Q9BW61 Q9BW61 reviewed DDA1_HUMAN DET1- and DDB1-associated protein 1 (Placenta cross-immune reaction antigen 1) (PCIA-1) -Q8IUW5 Q8IUW5 reviewed RELL1_HUMAN RELT-like protein 1 -Q04727 Q04727 reviewed TLE4_HUMAN Transducin-like enhancer protein 4 (Grg-4) (Groucho-related protein 4) -Q8WXE0 Q8WXE0 reviewed CSKI2_HUMAN Caskin-2 (CASK-interacting protein 2) -P63272 P63272 reviewed SPT4H_HUMAN Transcription elongation factor SPT4 (hSPT4) (DRB sensitivity-inducing factor 14 kDa subunit) (DSIF p14) (DRB sensitivity-inducing factor small subunit) (DSIF small subunit) -Q96F86 Q96F86 reviewed EDC3_HUMAN Enhancer of mRNA-decapping protein 3 (LSM16 homolog) (YjeF N-terminal domain-containing protein 2) (YjeF_N2) (hYjeF_N2) (YjeF domain-containing protein 1) -Q16566 Q16566 reviewed KCC4_HUMAN Calcium/calmodulin-dependent protein kinase type IV (CaMK IV) (EC 2.7.11.17) (CaM kinase-GR) -Q05823 Q05823 reviewed RN5A_HUMAN 2-5A-dependent ribonuclease (2-5A-dependent RNase) (EC 3.1.26.-) (Ribonuclease 4) (Ribonuclease L) (RNase L) -E9PGC8 E9PGC8 unreviewed E9PGC8_HUMAN Microtubule associated protein 1A -P08697 P08697 reviewed A2AP_HUMAN Alpha-2-antiplasmin (Alpha-2-AP) (Alpha-2-plasmin inhibitor) (Alpha-2-PI) (Serpin F2) -O14757 O14757 reviewed CHK1_HUMAN Serine/threonine-protein kinase Chk1 (EC 2.7.11.1) (CHK1 checkpoint homolog) (Cell cycle checkpoint kinase) (Checkpoint kinase-1) -P21281 P21281 reviewed VATB2_HUMAN V-type proton ATPase subunit B, brain isoform (V-ATPase subunit B 2) (Endomembrane proton pump 58 kDa subunit) (HO57) (Vacuolar proton pump subunit B 2) -Q8IZC7 Q8IZC7 reviewed ZN101_HUMAN Zinc finger protein 101 (Zinc finger protein HZF12) -P10075 P10075 reviewed GLI4_HUMAN Zinc finger protein GLI4 (Krueppel-related zinc finger protein 4) (Protein HKR4) -Q8TF76 Q8TF76 reviewed HASP_HUMAN Serine/threonine-protein kinase haspin (EC 2.7.11.1) (Germ cell-specific gene 2 protein) (H-haspin) (Haploid germ cell-specific nuclear protein kinase) -P13807 P13807 reviewed GYS1_HUMAN Glycogen [starch] synthase, muscle (EC 2.4.1.11) (Glycogen synthase 1) -Q86XN8 Q86XN8 reviewed MEX3D_HUMAN RNA-binding protein MEX3D (RING finger and KH domain-containing protein 1) (RING finger protein 193) (TINO) -P00747 P00747 reviewed PLMN_HUMAN Plasminogen (EC 3.4.21.7) [Cleaved into: Plasmin heavy chain A; Activation peptide; Angiostatin; Plasmin heavy chain A, short form; Plasmin light chain B] -Q9H7N4 Q9H7N4 reviewed SFR19_HUMAN Splicing factor, arginine/serine-rich 19 (SR-related C-terminal domain-associated factor 1) (SR-related and CTD-associated factor 1) (SR-related-CTD-associated factor) (SCAF) (Serine arginine-rich pre-mRNA splicing factor SR-A1) (SR-A1) -P78549 P78549 reviewed NTH_HUMAN Endonuclease III-like protein 1 (hNTH1) (EC 3.2.2.-) (EC 4.2.99.18) (Bifunctional DNA N-glycosylase/DNA-(apurinic or apyrimidinic site) lyase) (DNA glycosylase/AP lyase) -P42766 P42766 reviewed RL35_HUMAN Large ribosomal subunit protein uL29 (60S ribosomal protein L35) -Q5VYS8 Q5VYS8 reviewed TUT7_HUMAN Terminal uridylyltransferase 7 (TUTase 7) (EC 2.7.7.52) (Zinc finger CCHC domain-containing protein 6) -O95684 O95684 reviewed CEP43_HUMAN Centrosomal protein 43 (FGFR1 oncogene partner) -Q16875 Q16875 reviewed F263_HUMAN 6-phosphofructo-2-kinase/fructose-2,6-bisphosphatase 3 (6PF-2-K/Fru-2,6-P2ase 3) (PFK/FBPase 3) (6PF-2-K/Fru-2,6-P2ase brain/placenta-type isozyme) (Renal carcinoma antigen NY-REN-56) (iPFK-2) [Includes: 6-phosphofructo-2-kinase (EC 2.7.1.105); Fructose-2,6-bisphosphatase (EC 3.1.3.46)] -Q9Y294 Q9Y294 reviewed ASF1A_HUMAN Histone chaperone ASF1A (Anti-silencing function protein 1 homolog A) (hAsf1) (hAsf1a) (CCG1-interacting factor A) (CIA) (hCIA) -Q9ULL5 Q9ULL5 reviewed PRR12_HUMAN Proline-rich protein 12 -Q8TEM1 Q8TEM1 reviewed PO210_HUMAN Nuclear pore membrane glycoprotein 210 (Nuclear pore protein gp210) (Nuclear envelope pore membrane protein POM 210) (POM210) (Nucleoporin Nup210) (Pore membrane protein of 210 kDa) -Q12873 Q12873 reviewed CHD3_HUMAN Chromodomain-helicase-DNA-binding protein 3 (CHD-3) (EC 3.6.4.12) (ATP-dependent helicase CHD3) (Mi-2 autoantigen 240 kDa protein) (Mi2-alpha) (Zinc finger helicase) (hZFH) -O60303 O60303 reviewed KATIP_HUMAN Katanin-interacting protein -A0A0U1RRM6 A0A0U1RRM6 unreviewed A0A0U1RRM6_HUMAN ENAH actin regulator -Q8NHM5 Q8NHM5 reviewed KDM2B_HUMAN Lysine-specific demethylase 2B (EC 1.14.11.27) (CXXC-type zinc finger protein 2) (F-box and leucine-rich repeat protein 10) (F-box protein FBL10) (F-box/LRR-repeat protein 10) (JmjC domain-containing histone demethylation protein 1B) (Jumonji domain-containing EMSY-interactor methyltransferase motif protein) (Protein JEMMA) (Protein-containing CXXC domain 2) ([Histone-H3]-lysine-36 demethylase 1B) -Q9NR30 Q9NR30 reviewed DDX21_HUMAN Nucleolar RNA helicase 2 (EC 3.6.4.13) (DEAD box protein 21) (Gu-alpha) (Nucleolar RNA helicase Gu) (Nucleolar RNA helicase II) (RH II/Gu) -P30281 P30281 reviewed CCND3_HUMAN G1/S-specific cyclin-D3 -Q5T200 Q5T200 reviewed ZC3HD_HUMAN Zinc finger CCCH domain-containing protein 13 -P26639 P26639 reviewed SYTC_HUMAN Threonine--tRNA ligase 1, cytoplasmic (EC 6.1.1.3) (Threonyl-tRNA synthetase) (ThrRS) (Threonyl-tRNA synthetase 1) -A0A0A0MT22 P08575 reviewed PTPRC_HUMAN Receptor-type tyrosine-protein phosphatase C (EC 3.1.3.48) (Leukocyte common antigen) (L-CA) (T200) (CD antigen CD45) -E7EV07 E7EV07 unreviewed E7EV07_HUMAN Rho guanine nucleotide exchange factor 4 -P52565 P52565 reviewed GDIR1_HUMAN Rho GDP-dissociation inhibitor 1 (Rho GDI 1) (Rho-GDI alpha) -P17480 P17480 reviewed UBF1_HUMAN Nucleolar transcription factor 1 (Autoantigen NOR-90) (Upstream-binding factor 1) (UBF-1) -O75962 O75962 reviewed TRIO_HUMAN Triple functional domain protein (EC 2.7.11.1) (PTPRF-interacting protein) -Q16539 Q16539 reviewed MK14_HUMAN Mitogen-activated protein kinase 14 (MAP kinase 14) (MAPK 14) (EC 2.7.11.24) (Cytokine suppressive anti-inflammatory drug-binding protein) (CSAID-binding protein) (CSBP) (MAP kinase MXI2) (MAX-interacting protein 2) (Mitogen-activated protein kinase p38 alpha) (MAP kinase p38 alpha) (Stress-activated protein kinase 2a) (SAPK2a) -P06400 P06400 reviewed RB_HUMAN Retinoblastoma-associated protein (p105-Rb) (p110-RB1) (pRb) (Rb) (pp110) -O95562 O95562 reviewed SFT2B_HUMAN Vesicle transport protein SFT2B (SFT2 domain-containing protein 2) -Q04637 Q04637 reviewed IF4G1_HUMAN Eukaryotic translation initiation factor 4 gamma 1 (eIF-4-gamma 1) (eIF-4G 1) (eIF-4G1) (p220) -Q8N5G2 Q8N5G2 reviewed MACOI_HUMAN Macoilin (Macoilin-1) (Transmembrane protein 57) -Q7Z6Z7 Q7Z6Z7 reviewed HUWE1_HUMAN E3 ubiquitin-protein ligase HUWE1 (EC 2.3.2.26) (ARF-binding protein 1) (ARF-BP1) (HECT, UBA and WWE domain-containing protein 1) (HECT-type E3 ubiquitin transferase HUWE1) (Homologous to E6AP carboxyl terminus homologous protein 9) (HectH9) (Large structure of UREB1) (LASU1) (Mcl-1 ubiquitin ligase E3) (Mule) (Upstream regulatory element-binding protein 1) (URE-B1) (URE-binding protein 1) -Q6JBY9 Q6JBY9 reviewed CPZIP_HUMAN CapZ-interacting protein (Protein kinase substrate CapZIP) (RCSD domain-containing protein 1) -Q9P260 Q9P260 reviewed RELCH_HUMAN RAB11-binding protein RELCH (LisH domain and HEAT repeat-containing protein KIAA1468) (RAB11 binding and LisH domain, coiled-coil and HEAT repeat-containing) (RAB11-binding protein containing LisH, coiled-coil, and HEAT repeats) -P02787 P02787 reviewed TRFE_HUMAN Serotransferrin (Transferrin) (Beta-1 metal-binding globulin) (Siderophilin) -P49815 P49815 reviewed TSC2_HUMAN Tuberin (Tuberous sclerosis 2 protein) -Q9UJZ1 Q9UJZ1 reviewed STML2_HUMAN Stomatin-like protein 2, mitochondrial (SLP-2) (EPB72-like protein 2) (Paraprotein target 7) (Paratarg-7) -Q8NF99 Q8NF99 reviewed ZN397_HUMAN Zinc finger protein 397 (Zinc finger and SCAN domain-containing protein 15) (Zinc finger protein 47) -Q96PE3 Q96PE3 reviewed INP4A_HUMAN Inositol polyphosphate-4-phosphatase type I A (Inositol polyphosphate 4-phosphatase type I) (Type I inositol 3,4-bisphosphate 4-phosphatase) (EC 3.1.3.66) -O75400 O75400 reviewed PR40A_HUMAN Pre-mRNA-processing factor 40 homolog A (Fas ligand-associated factor 1) (Formin-binding protein 11) (Formin-binding protein 3) (Huntingtin yeast partner A) (Huntingtin-interacting protein 10) (HIP-10) (Huntingtin-interacting protein A) (Renal carcinoma antigen NY-REN-6) -F8W7T1 F8W7T1 unreviewed F8W7T1_HUMAN Double PHD fingers 3 -Q9NZM3 Q9NZM3 reviewed ITSN2_HUMAN Intersectin-2 (SH3 domain-containing protein 1B) (SH3P18) (SH3P18-like WASP-associated protein) -P33527 P33527 reviewed MRP1_HUMAN Multidrug resistance-associated protein 1 (EC 7.6.2.2) (ATP-binding cassette sub-family C member 1) (Glutathione-S-conjugate-translocating ATPase ABCC1) (EC 7.6.2.3) (Leukotriene C(4) transporter) (LTC4 transporter) -Q92610 Q92610 reviewed ZN592_HUMAN Zinc finger protein 592 -M0QZI3 M0QZI3 M0QZI3_HUMAN deleted -P15822 P15822 reviewed ZEP1_HUMAN Zinc finger protein 40 (Cirhin interaction protein) (CIRIP) (Gate keeper of apoptosis-activating protein) (GAAP) (Human immunodeficiency virus type I enhancer-binding protein 1) (HIV-EP1) (Major histocompatibility complex-binding protein 1) (MBP-1) (Positive regulatory domain II-binding factor 1) (PRDII-BF1) -Q9BWG6 Q9BWG6 reviewed SCNM1_HUMAN Sodium channel modifier 1 -B5MCU0 B5MCU0 unreviewed B5MCU0_HUMAN R3H domain containing 2 -P16949 P16949 reviewed STMN1_HUMAN Stathmin (Leukemia-associated phosphoprotein p18) (Metablastin) (Oncoprotein 18) (Op18) (Phosphoprotein p19) (pp19) (Prosolin) (Protein Pr22) (pp17) -Q14155 Q14155 reviewed ARHG7_HUMAN Rho guanine nucleotide exchange factor 7 (Beta-Pix) (COOL-1) (PAK-interacting exchange factor beta) (p85) -Q9BTE3 Q9BTE3 reviewed MCMBP_HUMAN Mini-chromosome maintenance complex-binding protein (MCM-BP) (MCM-binding protein) -Q96CB8 Q96CB8 reviewed INT12_HUMAN Integrator complex subunit 12 (Int12) (PHD finger protein 22) -O60343 O60343 reviewed TBCD4_HUMAN TBC1 domain family member 4 (Akt substrate of 160 kDa) (AS160) -Q53F19 Q53F19 reviewed NCBP3_HUMAN Nuclear cap-binding protein subunit 3 (Protein ELG) -Q5TEC6 Q5TEC6 reviewed H37_HUMAN Histone H3-7 -Q9Y6X9 Q9Y6X9 reviewed MORC2_HUMAN ATPase MORC2 (EC 3.6.1.-) (MORC family CW-type zinc finger protein 2) (Zinc finger CW-type coiled-coil domain protein 1) -M0R2Z9 M0R2Z9 unreviewed M0R2Z9_HUMAN SURP and G-patch domain containing 2 -P26641 P26641 reviewed EF1G_HUMAN Elongation factor 1-gamma (EF-1-gamma) (eEF-1B gamma) -Q08170 Q08170 reviewed SRSF4_HUMAN Serine/arginine-rich splicing factor 4 (Pre-mRNA-splicing factor SRP75) (SRP001LB) (Splicing factor, arginine/serine-rich 4) -P20226 P20226 reviewed TBP_HUMAN TATA-box-binding protein (TATA sequence-binding protein) (TATA-binding factor) (TATA-box factor) (Transcription initiation factor TFIID TBP subunit) -J3KNR0 J3KNR0 unreviewed J3KNR0_HUMAN non-specific serine/threonine protein kinase (EC 2.7.11.1) -Q96K21 Q96K21 reviewed ANCHR_HUMAN Abscission/NoCut checkpoint regulator (ANCHR) (MLL partner containing FYVE domain) (Zinc finger FYVE domain-containing protein 19) -P17152 P17152 reviewed TMM11_HUMAN Transmembrane protein 11, mitochondrial (Protein PM1) (Protein PMI) -Q99704 Q99704 reviewed DOK1_HUMAN Docking protein 1 (Downstream of tyrosine kinase 1) (p62(dok)) (pp62) -Q15363 Q15363 reviewed TMED2_HUMAN Transmembrane emp24 domain-containing protein 2 (Membrane protein p24A) (p24) (p24 family protein beta-1) (p24beta1) -P20774 P20774 reviewed MIME_HUMAN Mimecan (Osteoglycin) (Osteoinductive factor) (OIF) -O94986 O94986 reviewed CE152_HUMAN Centrosomal protein of 152 kDa (Cep152) -P51692 P51692 reviewed STA5B_HUMAN Signal transducer and activator of transcription 5B -P19634 P19634 reviewed SL9A1_HUMAN Sodium/hydrogen exchanger 1 (APNH) (Na(+)/H(+) antiporter, amiloride-sensitive) (Na(+)/H(+) exchanger 1) (NHE-1) (Solute carrier family 9 member 1) -Q13627 Q13627 reviewed DYR1A_HUMAN Dual specificity tyrosine-phosphorylation-regulated kinase 1A (EC 2.7.11.23) (EC 2.7.12.1) (Dual specificity YAK1-related kinase) (HP86) (Protein kinase minibrain homolog) (MNBH) (hMNB) -Q92833 Q92833 reviewed JARD2_HUMAN Protein Jumonji (Jumonji/ARID domain-containing protein 2) -Q5QJE6 Q5QJE6 reviewed TDIF2_HUMAN Deoxynucleotidyltransferase terminal-interacting protein 2 (Estrogen receptor-binding protein) (LPTS-interacting protein 2) (LPTS-RP2) (Terminal deoxynucleotidyltransferase-interacting factor 2) (TdIF2) (TdT-interacting factor 2) -P55081 P55081 reviewed MFAP1_HUMAN Microfibrillar-associated protein 1 (Spliceosome B complex protein MFAP1) -P51116 P51116 reviewed FXR2_HUMAN RNA-binding protein FXR2 (FXR2P) (FMR1 autosomal homolog 2) -Q9Y383 Q9Y383 reviewed LC7L2_HUMAN Putative RNA-binding protein Luc7-like 2 -Q9UKM9 Q9UKM9 reviewed RALY_HUMAN RNA-binding protein Raly (Autoantigen p542) (Heterogeneous nuclear ribonucleoprotein C-like 2) (hnRNP core protein C-like 2) (hnRNP associated with lethal yellow protein homolog) -C9JA08 C9JA08 unreviewed C9JA08_HUMAN 60S ribosomal export protein NMD3 -Q13263 Q13263 reviewed TIF1B_HUMAN Transcription intermediary factor 1-beta (TIF1-beta) (E3 SUMO-protein ligase TRIM28) (EC 2.3.2.27) (KRAB-associated protein 1) (KAP-1) (KRAB-interacting protein 1) (KRIP-1) (Nuclear corepressor KAP-1) (RING finger protein 96) (RING-type E3 ubiquitin transferase TIF1-beta) (Tripartite motif-containing protein 28) -J3KQ96 J3KQ96 J3KQ96_HUMAN deleted -Q9UKL3 Q9UKL3 reviewed C8AP2_HUMAN CASP8-associated protein 2 (FLICE-associated huge protein) -O14523 O14523 reviewed C2C2L_HUMAN Phospholipid transfer protein C2CD2L (C2 domain-containing protein 2-like) (C2CD2-like) (Transmembrane protein 24) -Q9Y3X0 Q9Y3X0 reviewed CCDC9_HUMAN Coiled-coil domain-containing protein 9 -Q00537 Q00537 reviewed CDK17_HUMAN Cyclin-dependent kinase 17 (EC 2.7.11.22) (Cell division protein kinase 17) (PCTAIRE-motif protein kinase 2) (Serine/threonine-protein kinase PCTAIRE-2) -Q9H6D3 Q9H6D3 reviewed XKR8_HUMAN XK-related protein 8 (hXkr8) [Cleaved into: XK-related protein 8, processed form] -B8ZZS0 B8ZZS0 unreviewed B8ZZS0_HUMAN Bet1 golgi vesicular membrane trafficking protein like -Q9Y2H0 Q9Y2H0 reviewed DLGP4_HUMAN Disks large-associated protein 4 (DAP-4) (PSD-95/SAP90-binding protein 4) (SAP90/PSD-95-associated protein 4) (SAPAP-4) -P60891 P60891 reviewed PRPS1_HUMAN Ribose-phosphate pyrophosphokinase 1 (EC 2.7.6.1) (PPRibP) (Phosphoribosyl pyrophosphate synthase I) (PRS-I) -E7EVB6 E7EVB6 unreviewed E7EVB6_HUMAN Dystrobrevin -Q8TCJ2 Q8TCJ2 reviewed STT3B_HUMAN Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit STT3B (Oligosaccharyl transferase subunit STT3B) (STT3-B) (EC 2.4.99.18) (Source of immunodominant MHC-associated peptides homolog) -O75347 O75347 reviewed TBCA_HUMAN Tubulin-specific chaperone A (TCP1-chaperonin cofactor A) (Tubulin-folding cofactor A) (CFA) -O75531 O75531 reviewed BAF_HUMAN Barrier-to-autointegration factor (Breakpoint cluster region protein 1) [Cleaved into: Barrier-to-autointegration factor, N-terminally processed] -A0A0B4J2E5 A0A0B4J2E5 A0A0B4J2E5_HUMAN deleted -Q7Z5J4 Q7Z5J4 reviewed RAI1_HUMAN Retinoic acid-induced protein 1 -Q8WUM0 Q8WUM0 reviewed NU133_HUMAN Nuclear pore complex protein Nup133 (133 kDa nucleoporin) (Nucleoporin Nup133) -O43583 O43583 reviewed DENR_HUMAN Density-regulated protein (DRP) (Protein DRP1) (Smooth muscle cell-associated protein 3) (SMAP-3) -Q9P2R6 Q9P2R6 reviewed RERE_HUMAN Arginine-glutamic acid dipeptide repeats protein (Atrophin-1-like protein) (Atrophin-1-related protein) -Q7L9B9 Q7L9B9 reviewed EEPD1_HUMAN Endonuclease/exonuclease/phosphatase family domain-containing protein 1 -P51451 P51451 reviewed BLK_HUMAN Tyrosine-protein kinase Blk (EC 2.7.10.2) (B lymphocyte kinase) (p55-Blk) -O60238 O60238 reviewed BNI3L_HUMAN BCL2/adenovirus E1B 19 kDa protein-interacting protein 3-like (Adenovirus E1B19K-binding protein B5) (BCL2/adenovirus E1B 19 kDa protein-interacting protein 3A) (NIP3-like protein X) (NIP3L) -Q8IWI9 Q8IWI9 reviewed MGAP_HUMAN MAX gene-associated protein (MAX dimerization protein 5) -Q99755 Q99755 reviewed PI51A_HUMAN Phosphatidylinositol 4-phosphate 5-kinase type-1 alpha (PIP5K1-alpha) (PtdIns(4)P-5-kinase 1 alpha) (EC 2.7.1.68) (68 kDa type I phosphatidylinositol 4-phosphate 5-kinase alpha) (Phosphatidylinositol 4-phosphate 5-kinase type I alpha) (PIP5KIalpha) -P35611 P35611 reviewed ADDA_HUMAN Alpha-adducin (Erythrocyte adducin subunit alpha) -P04004 P04004 reviewed VTNC_HUMAN Vitronectin (VN) (S-protein) (Serum-spreading factor) (V75) [Cleaved into: Vitronectin V65 subunit; Vitronectin V10 subunit; Somatomedin-B] -Q9NPQ8 Q9NPQ8 reviewed RIC8A_HUMAN Synembryn-A (Protein Ric-8A) -A0AVF1 A0AVF1 reviewed IFT56_HUMAN Intraflagellar transport protein 56 (Tetratricopeptide repeat protein 26) (TPR repeat protein 26) -P69905 P69905 reviewed HBA_HUMAN Hemoglobin subunit alpha (Alpha-globin) (Hemoglobin alpha chain) [Cleaved into: Hemopressin] -P33991 P33991 reviewed MCM4_HUMAN DNA replication licensing factor MCM4 (EC 3.6.4.12) (CDC21 homolog) (P1-CDC21) -Q9Y4B6 Q9Y4B6 reviewed DCAF1_HUMAN DDB1- and CUL4-associated factor 1 (HIV-1 Vpr-binding protein) (VprBP) (Serine/threonine-protein kinase VPRBP) (EC 2.7.11.1) (Vpr-interacting protein) -Q96DF8 Q96DF8 reviewed ESS2_HUMAN Splicing factor ESS-2 homolog (DiGeorge syndrome critical region 13) (DiGeorge syndrome critical region 14) (DiGeorge syndrome protein H) (DGS-H) (Protein ES2) -P0C1Z6 P0C1Z6 reviewed TFPT_HUMAN TCF3 fusion partner (INO80 complex subunit F) (Protein FB1) -P28749 P28749 reviewed RBL1_HUMAN Retinoblastoma-like protein 1 (107 kDa retinoblastoma-associated protein) (p107) (pRb1) -Q8IWY9 Q8IWY9 reviewed CDAN1_HUMAN Codanin-1 -Q15185 Q15185 reviewed TEBP_HUMAN Prostaglandin E synthase 3 (EC 5.3.99.3) (Cytosolic prostaglandin E2 synthase) (cPGES) (Hsp90 co-chaperone) (Progesterone receptor complex p23) (Telomerase-binding protein p23) -Q9BTC0 Q9BTC0 reviewed DIDO1_HUMAN Death-inducer obliterator 1 (DIO-1) (hDido1) (Death-associated transcription factor 1) (DATF-1) -O00264 O00264 reviewed PGRC1_HUMAN Membrane-associated progesterone receptor component 1 (mPR) (Dap1) (IZA) -P69892 P69892 reviewed HBG2_HUMAN Hemoglobin subunit gamma-2 (Gamma-2-globin) (Hb F Ggamma) (Hemoglobin gamma-2 chain) (Hemoglobin gamma-G chain) -Q15942 Q15942 reviewed ZYX_HUMAN Zyxin (Zyxin-2) -Q92854 Q92854 reviewed SEM4D_HUMAN Semaphorin-4D (A8) (BB18) (GR3) (CD antigen CD100) -P11388 P11388 reviewed TOP2A_HUMAN DNA topoisomerase 2-alpha (EC 5.6.2.2) (DNA topoisomerase II, alpha isozyme) -Q96GN5 Q96GN5 reviewed CDA7L_HUMAN Cell division cycle-associated 7-like protein (Protein JPO2) (Transcription factor RAM2) -O94876 O94876 reviewed TMCC1_HUMAN Transmembrane and coiled-coil domains protein 1 -Q9Y5Z4 Q9Y5Z4 reviewed HEBP2_HUMAN Heme-binding protein 2 (Placental protein 23) (PP23) (Protein SOUL) -Q8N573 Q8N573 reviewed OXR1_HUMAN Oxidation resistance protein 1 -P40855 P40855 reviewed PEX19_HUMAN Peroxisomal biogenesis factor 19 (33 kDa housekeeping protein) (Peroxin-19) (Peroxisomal farnesylated protein) -Q9UBD5 Q9UBD5 reviewed ORC3_HUMAN Origin recognition complex subunit 3 (Origin recognition complex subunit Latheo) -A0A096LP69 A0A096LP69 unreviewed A0A096LP69_HUMAN CD99 molecule (Xg blood group) -Q5H9R7 Q5H9R7 reviewed PP6R3_HUMAN Serine/threonine-protein phosphatase 6 regulatory subunit 3 (SAPS domain family member 3) (Sporulation-induced transcript 4-associated protein SAPL) -P49756 P49756 reviewed RBM25_HUMAN RNA-binding protein 25 (Arg/Glu/Asp-rich protein of 120 kDa) (RED120) (Protein S164) (RNA-binding motif protein 25) (RNA-binding region-containing protein 7) -P13994 P13994 reviewed YJU2B_HUMAN Probable splicing factor YJU2B (Coiled-coil domain-containing protein 130) -V5IRT4 V5IRT4 unreviewed V5IRT4_HUMAN Mitochondrial nucleoid factor 1 (Mitochondrial protein M19) -Q92934 Q92934 reviewed BAD_HUMAN Bcl2-associated agonist of cell death (BAD) (Bcl-2-binding component 6) (Bcl-2-like protein 8) (Bcl2-L-8) (Bcl-xL/Bcl-2-associated death promoter) (Bcl2 antagonist of cell death) -Q07866 Q07866 reviewed KLC1_HUMAN Kinesin light chain 1 (KLC 1) -Q92804 Q92804 reviewed RBP56_HUMAN TATA-binding protein-associated factor 2N (68 kDa TATA-binding protein-associated factor) (TAF(II)68) (TAFII68) (RNA-binding protein 56) -Q8WUH2 Q8WUH2 reviewed TGFA1_HUMAN Transforming growth factor-beta receptor-associated protein 1 (TGF-beta receptor-associated protein 1) (TRAP-1) (TRAP1) -Q9HAW4 Q9HAW4 reviewed CLSPN_HUMAN Claspin (hClaspin) -Q96EY5 Q96EY5 reviewed MB12A_HUMAN Multivesicular body subunit 12A (CIN85/CD2AP family-binding protein) (ESCRT-I complex subunit MVB12A) (Protein FAM125A) -Q29RF7 Q29RF7 reviewed PDS5A_HUMAN Sister chromatid cohesion protein PDS5 homolog A (Cell proliferation-inducing gene 54 protein) (Sister chromatid cohesion protein 112) (SCC-112) -O75781 O75781 reviewed PALM_HUMAN Paralemmin-1 (Paralemmin) -Q9Y608 Q9Y608 reviewed LRRF2_HUMAN Leucine-rich repeat flightless-interacting protein 2 (LRR FLII-interacting protein 2) -P39687 P39687 reviewed AN32A_HUMAN Acidic leucine-rich nuclear phosphoprotein 32 family member A (Acidic nuclear phosphoprotein pp32) (pp32) (Leucine-rich acidic nuclear protein) (LANP) (Mapmodulin) (Potent heat-stable protein phosphatase 2A inhibitor I1PP2A) (Putative HLA-DR-associated protein I) (PHAPI) -P23246 P23246 reviewed SFPQ_HUMAN Splicing factor, proline- and glutamine-rich (100 kDa DNA-pairing protein) (hPOMp100) (DNA-binding p52/p100 complex, 100 kDa subunit) (Polypyrimidine tract-binding protein-associated-splicing factor) (PSF) (PTB-associated-splicing factor) -P50548 P50548 reviewed ERF_HUMAN ETS domain-containing transcription factor ERF (Ets2 repressor factor) (PE-2) -Q04760 Q04760 reviewed LGUL_HUMAN Lactoylglutathione lyase (EC 4.4.1.5) (Aldoketomutase) (Glyoxalase I) (Glx I) (Ketone-aldehyde mutase) (Methylglyoxalase) (S-D-lactoylglutathione methylglyoxal lyase) -Q99879 Q99879 reviewed H2B1M_HUMAN Histone H2B type 1-M (Histone H2B.e) (H2B/e) -Q8IX90 Q8IX90 reviewed SKA3_HUMAN Spindle and kinetochore-associated protein 3 -Q02224 Q02224 reviewed CENPE_HUMAN Centromere-associated protein E (Centromere protein E) (CENP-E) (Kinesin-7) (Kinesin-related protein CENPE) -Q9BVV6 Q9BVV6 reviewed TALD3_HUMAN Protein TALPID3 -P11831 P11831 reviewed SRF_HUMAN Serum response factor (SRF) -P16401 P16401 reviewed H15_HUMAN Histone H1.5 (Histone H1a) (Histone H1b) (Histone H1s-3) -O75182 O75182 reviewed SIN3B_HUMAN Paired amphipathic helix protein Sin3b (Histone deacetylase complex subunit Sin3b) (Transcriptional corepressor Sin3b) -Q92979 Q92979 reviewed NEP1_HUMAN Ribosomal RNA small subunit methyltransferase NEP1 (EC 2.1.1.-) (18S rRNA (pseudouridine(1248)-N1)-methyltransferase) (18S rRNA Psi1248 methyltransferase) (Nucleolar protein EMG1 homolog) (Protein C2f) (Ribosome biogenesis protein NEP1) -Q9NZJ0 Q9NZJ0 reviewed DTL_HUMAN Denticleless protein homolog (DDB1- and CUL4-associated factor 2) (Lethal(2) denticleless protein homolog) (Retinoic acid-regulated nuclear matrix-associated protein) -Q9Y2X7 Q9Y2X7 reviewed GIT1_HUMAN ARF GTPase-activating protein GIT1 (ARF GAP GIT1) (Cool-associated and tyrosine-phosphorylated protein 1) (CAT-1) (CAT1) (G protein-coupled receptor kinase-interactor 1) (GRK-interacting protein 1) (p95-APP1) -O95721 O95721 reviewed SNP29_HUMAN Synaptosomal-associated protein 29 (SNAP-29) (Soluble 29 kDa NSF attachment protein) (Vesicle-membrane fusion protein SNAP-29) -Q15149 Q15149 reviewed PLEC_HUMAN Plectin (PCN) (PLTN) (Hemidesmosomal protein 1) (HD1) (Plectin-1) -G5EA09 G5EA09 unreviewed G5EA09_HUMAN Syndecan binding protein -Q15027 Q15027 reviewed ACAP1_HUMAN Arf-GAP with coiled-coil, ANK repeat and PH domain-containing protein 1 (Centaurin-beta-1) (Cnt-b1) -Q9UKS6 Q9UKS6 reviewed PACN3_HUMAN Protein kinase C and casein kinase substrate in neurons protein 3 (SH3 domain-containing protein 6511) -G3XAH0 G3XAH0 unreviewed G3XAH0_HUMAN Septin -H7BZ55 H7BZ55 reviewed CRCC2_HUMAN Ciliary rootlet coiled-coil protein 2 -O95429 O95429 reviewed BAG4_HUMAN BAG family molecular chaperone regulator 4 (BAG-4) (Bcl-2-associated athanogene 4) (Silencer of death domains) -Q8N1K5 Q8N1K5 reviewed THMS1_HUMAN Protein THEMIS (Thymocyte-expressed molecule involved in selection) -P49768 P49768 reviewed PSN1_HUMAN Presenilin-1 (PS-1) (EC 3.4.23.-) (Protein S182) [Cleaved into: Presenilin-1 NTF subunit; Presenilin-1 CTF subunit; Presenilin-1 CTF12 (PS1-CTF12)] -O43639 O43639 reviewed NCK2_HUMAN Cytoplasmic protein NCK2 (Growth factor receptor-bound protein 4) (NCK adaptor protein 2) (Nck-2) (SH2/SH3 adaptor protein NCK-beta) -O75369 O75369 reviewed FLNB_HUMAN Filamin-B (FLN-B) (ABP-278) (ABP-280 homolog) (Actin-binding-like protein) (Beta-filamin) (Filamin homolog 1) (Fh1) (Filamin-3) (Thyroid autoantigen) (Truncated actin-binding protein) (Truncated ABP) -Q9NYP9 Q9NYP9 reviewed MS18A_HUMAN Protein Mis18-alpha (FAPP1-associated protein 1) -P16104 P16104 reviewed H2AX_HUMAN Histone H2AX (H2a/x) (Histone H2A.X) -Q8IY63 Q8IY63 reviewed AMOL1_HUMAN Angiomotin-like protein 1 -Q8TF74 Q8TF74 reviewed WIPF2_HUMAN WAS/WASL-interacting protein family member 2 (WASP-interacting protein-related protein) (WIP- and CR16-homologous protein) (WIP-related protein) -Q9UHJ3 Q9UHJ3 reviewed SMBT1_HUMAN Scm-like with four MBT domains protein 1 (hSFMBT) (Renal ubiquitous protein 1) -P53367 P53367 reviewed ARFP1_HUMAN Arfaptin-1 (ADP-ribosylation factor-interacting protein 1) -Q9Y520 Q9Y520 reviewed PRC2C_HUMAN Protein PRRC2C (BAT2 domain-containing protein 1) (HBV X-transactivated gene 2 protein) (HBV XAg-transactivated protein 2) (HLA-B-associated transcript 2-like 2) (Proline-rich and coiled-coil-containing protein 2C) -P30305 P30305 reviewed MPIP2_HUMAN M-phase inducer phosphatase 2 (EC 3.1.3.48) (Dual specificity phosphatase Cdc25B) -Q9UP95 Q9UP95 reviewed S12A4_HUMAN Solute carrier family 12 member 4 (Electroneutral potassium-chloride cotransporter 1) (Erythroid K-Cl cotransporter 1) (hKCC1) -P20963 P20963 reviewed CD3Z_HUMAN T-cell surface glycoprotein CD3 zeta chain (T-cell receptor T3 zeta chain) (CD antigen CD247) -B8ZZ87 B8ZZ87 unreviewed B8ZZ87_HUMAN Mitotic spindle organizing protein 2B -J3KPD3 J3KPD3 unreviewed J3KPD3_HUMAN RNA binding motif protein 7 -O14874 O14874 reviewed BCKD_HUMAN Branched-chain alpha-ketoacid dehydrogenase kinase (BCKDH kinase) (BCKDHKIN) (BDK) (EC 2.7.11.1) ([3-methyl-2-oxobutanoate dehydrogenase [lipoamide]] kinase, mitochondrial) (EC 2.7.11.4) -P49585 P49585 reviewed PCY1A_HUMAN Choline-phosphate cytidylyltransferase A (EC 2.7.7.15) (CCT-alpha) (CTP:phosphocholine cytidylyltransferase A) (CCT A) (CT A) (Phosphorylcholine transferase A) -Q9NPF2 Q9NPF2 reviewed CHSTB_HUMAN Carbohydrate sulfotransferase 11 (EC 2.8.2.5) (Chondroitin 4-O-sulfotransferase 1) (Chondroitin 4-sulfotransferase 1) (C4S-1) (C4ST-1) (C4ST1) -Q9BVG9 Q9BVG9 reviewed PTSS2_HUMAN Phosphatidylserine synthase 2 (PSS-2) (PtdSer synthase 2) (EC 2.7.8.29) (Serine-exchange enzyme II) -Q96D71 Q96D71 reviewed REPS1_HUMAN RalBP1-associated Eps domain-containing protein 1 (RalBP1-interacting protein 1) -Q8N9N8 Q8N9N8 reviewed EIF1A_HUMAN Probable RNA-binding protein EIF1AD (Eukaryotic translation initiation factor 1A domain-containing protein) (Haponin) -O15169 O15169 reviewed AXIN1_HUMAN Axin-1 (Axis inhibition protein 1) (hAxin) -Q9NWQ8 Q9NWQ8 reviewed PHAG1_HUMAN Phosphoprotein associated with glycosphingolipid-enriched microdomains 1 (Csk-binding protein) (Transmembrane adapter protein PAG) (Transmembrane phosphoprotein Cbp) -E9PIM0 E9PIM0 unreviewed E9PIM0_HUMAN CREB/ATF bZIP transcription factor -Q96BH1 Q96BH1 reviewed RNF25_HUMAN E3 ubiquitin-protein ligase RNF25 (EC 2.3.2.27) (RING finger protein 25) (RING finger protein AO7) -Q16760 Q16760 reviewed DGKD_HUMAN Diacylglycerol kinase delta (DAG kinase delta) (EC 2.7.1.107) (130 kDa diacylglycerol kinase) (Diglyceride kinase delta) (DGK-delta) -Q9NZN8 Q9NZN8 reviewed CNOT2_HUMAN CCR4-NOT transcription complex subunit 2 (CCR4-associated factor 2) -A0A140T9T7 A0A140T9T7 unreviewed A0A140T9T7_HUMAN ABC-type antigen peptide transporter (EC 7.4.2.14) -Q14209 Q14209 reviewed E2F2_HUMAN Transcription factor E2F2 (E2F-2) -H7BYN4 H7BYN4 unreviewed H7BYN4_HUMAN Kinesin-like protein -P62070 P62070 reviewed RRAS2_HUMAN Ras-related protein R-Ras2 (EC 3.6.5.-) (Ras-like protein TC21) (Teratocarcinoma oncogene) -Q9NQX3 Q9NQX3 reviewed GEPH_HUMAN Gephyrin [Includes: Molybdopterin adenylyltransferase (MPT adenylyltransferase) (EC 2.7.7.75) (Domain G); Molybdopterin molybdenumtransferase (MPT Mo-transferase) (EC 2.10.1.1) (Domain E)] -P36955 P36955 reviewed PEDF_HUMAN Pigment epithelium-derived factor (PEDF) (Cell proliferation-inducing gene 35 protein) (EPC-1) (Serpin F1) -Q6ZR52 Q6ZR52 reviewed ZN493_HUMAN Zinc finger protein 493 -Q14693 Q14693 reviewed LPIN1_HUMAN Phosphatidate phosphatase LPIN1 (EC 3.1.3.4) (Lipin-1) -Q9Y6G9 Q9Y6G9 reviewed DC1L1_HUMAN Cytoplasmic dynein 1 light intermediate chain 1 (LIC1) (Dynein light chain A) (DLC-A) (Dynein light intermediate chain 1, cytosolic) (DLIC-1) -Q14498 Q14498 reviewed RBM39_HUMAN RNA-binding protein 39 (CAPER alpha) (CAPERalpha) (Hepatocellular carcinoma protein 1) (RNA-binding motif protein 39) (RNA-binding region-containing protein 2) (Splicing factor HCC1) -Q6UN15 Q6UN15 reviewed FIP1_HUMAN Pre-mRNA 3'-end-processing factor FIP1 (hFip1) (FIP1-like 1 protein) (Factor interacting with PAP) (Rearranged in hypereosinophilia) -Q9H6A9 Q9H6A9 reviewed PCX3_HUMAN Pecanex-like protein 3 (Pecanex homolog protein 3) -Q96EV8 Q96EV8 reviewed DTBP1_HUMAN Dysbindin (Biogenesis of lysosome-related organelles complex 1 subunit 8) (BLOC-1 subunit 8) (Dysbindin-1) (Dystrobrevin-binding protein 1) (Hermansky-Pudlak syndrome 7 protein) (HPS7 protein) -Q15291 Q15291 reviewed RBBP5_HUMAN Retinoblastoma-binding protein 5 (RBBP-5) (Retinoblastoma-binding protein RBQ-3) -P18583 P18583 reviewed SON_HUMAN Protein SON (Bax antagonist selected in saccharomyces 1) (BASS1) (Negative regulatory element-binding protein) (NRE-binding protein) (Protein DBP-5) (SON3) -P53801 P53801 reviewed PTTG_HUMAN Pituitary tumor-transforming gene 1 protein-interacting protein (Pituitary tumor-transforming gene protein-binding factor) (PBF) (PTTG-binding factor) -O76071 O76071 reviewed CIAO1_HUMAN Probable cytosolic iron-sulfur protein assembly protein CIAO1 (WD repeat-containing protein 39) -Q92609 Q92609 reviewed TBCD5_HUMAN TBC1 domain family member 5 -Q8IZP0 Q8IZP0 reviewed ABI1_HUMAN Abl interactor 1 (Abelson interactor 1) (Abi-1) (Abl-binding protein 4) (AblBP4) (Eps8 SH3 domain-binding protein) (Eps8-binding protein) (Nap1-binding protein) (Nap1BP) (Spectrin SH3 domain-binding protein 1) (e3B1) -Q8NC51 Q8NC51 reviewed SERB1_HUMAN SERPINE1 mRNA-binding protein 1 (PAI1 RNA-binding protein 1) (PAI-RBP1) (Plasminogen activator inhibitor 1 RNA-binding protein) -G5E9M7 G5E9M7 unreviewed G5E9M7_HUMAN Vestigial like 4 (Drosophila), isoform CRA_d (Vestigial like family member 4) -Q5T6F2 Q5T6F2 reviewed UBAP2_HUMAN Ubiquitin-associated protein 2 (UBAP-2) (RNA polymerase II degradation factor UBAP2) -O15117 O15117 reviewed FYB1_HUMAN FYN-binding protein 1 (Adhesion and degranulation promoting adaptor protein) (ADAP) (FYB-120/130) (p120/p130) (FYN-T-binding protein) (SLAP-130) (SLP-76-associated phosphoprotein) -Q9NR12 Q9NR12 reviewed PDLI7_HUMAN PDZ and LIM domain protein 7 (LIM mineralization protein) (LMP) (Protein enigma) -P04264 P04264 reviewed K2C1_HUMAN Keratin, type II cytoskeletal 1 (67 kDa cytokeratin) (Cytokeratin-1) (CK-1) (Hair alpha protein) (Keratin-1) (K1) (Type-II keratin Kb1) -P62750 P62750 reviewed RL23A_HUMAN Large ribosomal subunit protein uL23 (60S ribosomal protein L23a) -O95758 O95758 reviewed PTBP3_HUMAN Polypyrimidine tract-binding protein 3 (Regulator of differentiation 1) (Rod1) -F5H0R1 F5H0R1 unreviewed F5H0R1_HUMAN Speckle targeted PIP5K1A-regulated poly(A) polymerase (EC 2.7.7.19) (EC 2.7.7.52) (RNA-binding motif protein 21) (U6 snRNA-specific terminal uridylyltransferase 1) -Q12986 Q12986 reviewed NFX1_HUMAN Transcriptional repressor NF-X1 (EC 2.3.2.-) (Nuclear transcription factor, X box-binding protein 1) -Q9H9A7 Q9H9A7 reviewed RMI1_HUMAN RecQ-mediated genome instability protein 1 (BLM-associated protein of 75 kDa) (BLAP75) (FAAP75) -P07766 P07766 reviewed CD3E_HUMAN T-cell surface glycoprotein CD3 epsilon chain (T-cell surface antigen T3/Leu-4 epsilon chain) (CD antigen CD3e) -Q6NUT3 Q6NUT3 reviewed MFS12_HUMAN Major facilitator superfamily domain-containing protein 12 -Q7L2E3 Q7L2E3 reviewed DHX30_HUMAN ATP-dependent RNA helicase DHX30 (EC 3.6.4.13) (DEAH box protein 30) -P42345 P42345 reviewed MTOR_HUMAN Serine/threonine-protein kinase mTOR (EC 2.7.11.1) (FK506-binding protein 12-rapamycin complex-associated protein 1) (FKBP12-rapamycin complex-associated protein) (Mammalian target of rapamycin) (mTOR) (Mechanistic target of rapamycin) (Rapamycin and FKBP12 target 1) (Rapamycin target protein 1) -Q5SRN5 Q5SRN5 unreviewed Q5SRN5_HUMAN Major histocompatibility complex, class I, A -Q13619 Q13619 reviewed CUL4A_HUMAN Cullin-4A (CUL-4A) -P35527 P35527 reviewed K1C9_HUMAN Keratin, type I cytoskeletal 9 (Cytokeratin-9) (CK-9) (Keratin-9) (K9) -O15294 O15294 reviewed OGT1_HUMAN UDP-N-acetylglucosamine--peptide N-acetylglucosaminyltransferase 110 kDa subunit (EC 2.4.1.255) (O-GlcNAc transferase subunit p110) (O-linked N-acetylglucosamine transferase 110 kDa subunit) (OGT) -Q7Z3C6 Q7Z3C6 reviewed ATG9A_HUMAN Autophagy-related protein 9A (APG9-like 1) (mATG9) -K7EM46 K7EM46 unreviewed K7EM46_HUMAN KIAA1328 -Q8WVC0 Q8WVC0 reviewed LEO1_HUMAN RNA polymerase-associated protein LEO1 (Replicative senescence down-regulated leo1-like protein) -P52948 P52948 reviewed NUP98_HUMAN Nuclear pore complex protein Nup98-Nup96 (EC 3.4.21.-) [Cleaved into: Nuclear pore complex protein Nup98 (98 kDa nucleoporin) (Nucleoporin Nup98) (Nup98); Nuclear pore complex protein Nup96 (96 kDa nucleoporin) (Nucleoporin Nup96) (Nup96)] -Q8TF01 Q8TF01 reviewed PNISR_HUMAN Arginine/serine-rich protein PNISR (PNN-interacting serine/arginine-rich protein) (SR-related protein) (SR-rich protein) (Serine/arginine-rich-splicing regulatory protein 130) (SRrp130) (Splicing factor, arginine/serine-rich 130) (Splicing factor, arginine/serine-rich 18) -P10412 P10412 reviewed H14_HUMAN Histone H1.4 (Histone H1b) (Histone H1s-4) -Q6L9W6 Q6L9W6 reviewed B4GN3_HUMAN Beta-1,4-N-acetylgalactosaminyltransferase 3 (B4GalNAcT3) (Beta4GalNAc-T3) (Beta4GalNAcT3) (EC 2.4.1.244) (Beta-1,4-N-acetylgalactosaminyltransferase III) (N-acetyl-beta-glucosaminyl-glycoprotein 4-beta-N-acetylgalactosaminyltransferase 2) (NGalNAc-T2) -O15355 O15355 reviewed PPM1G_HUMAN Protein phosphatase 1G (EC 3.1.3.16) (Protein phosphatase 1C) (Protein phosphatase 2C isoform gamma) (PP2C-gamma) (Protein phosphatase magnesium-dependent 1 gamma) -O43439 O43439 reviewed MTG8R_HUMAN Protein CBFA2T2 (ETO homologous on chromosome 20) (MTG8-like protein) (MTG8-related protein 1) (Myeloid translocation-related protein 1) (p85) -V9GYM8 V9GYM8 unreviewed V9GYM8_HUMAN Rho guanine nucleotide exchange factor 2 (Guanine nucleotide exchange factor H1) -P18615 P18615 reviewed NELFE_HUMAN Negative elongation factor E (NELF-E) (RNA-binding protein RD) -Q9P209 Q9P209 reviewed CEP72_HUMAN Centrosomal protein of 72 kDa (Cep72) -Q9H582 Q9H582 reviewed ZN644_HUMAN Zinc finger protein 644 (Zinc finger motif enhancer-binding protein 2) (Zep-2) -Q96F46 Q96F46 reviewed I17RA_HUMAN Interleukin-17 receptor A (IL-17 receptor A) (IL-17RA) (CDw217) (CD antigen CD217) -Q1ED39 Q1ED39 reviewed KNOP1_HUMAN Lysine-rich nucleolar protein 1 (Protein FAM191A) (Testis-specific gene 118 protein) -Q12968 Q12968 reviewed NFAC3_HUMAN Nuclear factor of activated T-cells, cytoplasmic 3 (NF-ATc3) (NFATc3) (NFATx) (T-cell transcription factor NFAT4) (NF-AT4) (NF-AT4c) -O75420 O75420 reviewed GGYF1_HUMAN GRB10-interacting GYF protein 1 (PERQ amino acid-rich with GYF domain-containing protein 1) -Q86U06 Q86U06 reviewed RBM23_HUMAN Probable RNA-binding protein 23 (CAPER beta) (CAPERbeta) (RNA-binding motif protein 23) (RNA-binding region-containing protein 4) (Splicing factor SF2) -Q99640 Q99640 reviewed PMYT1_HUMAN Membrane-associated tyrosine- and threonine-specific cdc2-inhibitory kinase (EC 2.7.11.1) (Myt1 kinase) -Q96GK7 Q96GK7 reviewed FAH2A_HUMAN Fumarylacetoacetate hydrolase domain-containing protein 2A (EC 3.-.-.-) -Q14643 Q14643 reviewed ITPR1_HUMAN Inositol 1,4,5-trisphosphate-gated calcium channel ITPR1 (IP3 receptor isoform 1) (IP3R 1) (InsP3R1) (Inositol 1,4,5 trisphosphate receptor) (Inositol 1,4,5-trisphosphate receptor type 1) (Type 1 inositol 1,4,5-trisphosphate receptor) (Type 1 InsP3 receptor) -Q9NYL2 Q9NYL2 reviewed M3K20_HUMAN Mitogen-activated protein kinase kinase kinase 20 (EC 2.7.11.25) (Human cervical cancer suppressor gene 4 protein) (HCCS-4) (Leucine zipper- and sterile alpha motif-containing kinase) (MLK-like mitogen-activated protein triple kinase) (Mitogen-activated protein kinase kinase kinase MLT) (Mixed lineage kinase 7) (Mixed lineage kinase-related kinase) (MLK-related kinase) (MRK) (Sterile alpha motif- and leucine zipper-containing kinase AZK) -P49321 P49321 reviewed NASP_HUMAN Nuclear autoantigenic sperm protein (NASP) -P50851 P50851 reviewed LRBA_HUMAN Lipopolysaccharide-responsive and beige-like anchor protein (Beige-like protein) (CDC4-like protein) -Q9NVG8 Q9NVG8 reviewed TBC13_HUMAN TBC1 domain family member 13 -Q9BXB4 Q9BXB4 reviewed OSB11_HUMAN Oxysterol-binding protein-related protein 11 (ORP-11) (OSBP-related protein 11) -A0A087WVP1 A0A087WVP1 A0A087WVP1_HUMAN deleted -O60563 O60563 reviewed CCNT1_HUMAN Cyclin-T1 (CycT1) (Cyclin-T) -P78527 P78527 reviewed PRKDC_HUMAN DNA-dependent protein kinase catalytic subunit (DNA-PK catalytic subunit) (DNA-PKcs) (EC 2.7.11.1) (DNPK1) (p460) -Q92506 Q92506 reviewed DHB8_HUMAN (3R)-3-hydroxyacyl-CoA dehydrogenase (EC 1.1.1.n12) (17-beta-hydroxysteroid dehydrogenase 8) (17-beta-HSD 8) (HSD17B8) (3-ketoacyl-[acyl-carrier-protein] reductase alpha subunit) (KAR alpha subunit) (3-oxoacyl-[acyl-carrier-protein] reductase) (Estradiol 17-beta-dehydrogenase 8) (EC 1.1.1.62) (Protein Ke6) (Ke6) (Short chain dehydrogenase/reductase family 30C member 1) (Testosterone 17-beta-dehydrogenase 8) (EC 1.1.1.239) -Q9Y248 Q9Y248 reviewed PSF2_HUMAN DNA replication complex GINS protein PSF2 (GINS complex subunit 2) -F8W9L8 F8W9L8 unreviewed F8W9L8_HUMAN PHD finger protein 20-like protein 1 -O95239 O95239 reviewed KIF4A_HUMAN Chromosome-associated kinesin KIF4A (Chromokinesin-A) -Q7KZF4 Q7KZF4 reviewed SND1_HUMAN Staphylococcal nuclease domain-containing protein 1 (EC 3.1.31.1) (100 kDa coactivator) (EBNA2 coactivator p100) (Tudor domain-containing protein 11) (p100 co-activator) -Q01167 Q01167 reviewed FOXK2_HUMAN Forkhead box protein K2 (G/T-mismatch specific binding protein) (nGTBP) (Interleukin enhancer-binding factor 1) -Q96K37 Q96K37 reviewed S35E1_HUMAN Solute carrier family 35 member E1 -Q9NTI5 Q9NTI5 reviewed PDS5B_HUMAN Sister chromatid cohesion protein PDS5 homolog B (Androgen-induced proliferation inhibitor) (Androgen-induced prostate proliferative shutoff-associated protein AS3) -P0DI81 P0DI81 reviewed TPC2A_HUMAN Trafficking protein particle complex subunit 2 (Sedlin) -Q96T37 Q96T37 reviewed RBM15_HUMAN RNA-binding protein 15 (One-twenty two protein 1) (RNA-binding motif protein 15) -A0A1C7CYX1 A0A1C7CYX1 unreviewed A0A1C7CYX1_HUMAN Mitotic deacetylase associated SANT domain protein -Q14692 Q14692 reviewed BMS1_HUMAN Ribosome biogenesis protein BMS1 homolog (Ribosome assembly protein BMS1 homolog) -P13639 P13639 reviewed EF2_HUMAN Elongation factor 2 (EF-2) (EC 3.6.5.-) -Q96PY6 Q96PY6 reviewed NEK1_HUMAN Serine/threonine-protein kinase Nek1 (EC 2.7.11.1) (Never in mitosis A-related kinase 1) (NimA-related protein kinase 1) (Renal carcinoma antigen NY-REN-55) -P35908 P35908 reviewed K22E_HUMAN Keratin, type II cytoskeletal 2 epidermal (Cytokeratin-2e) (CK-2e) (Epithelial keratin-2e) (Keratin-2 epidermis) (Keratin-2e) (K2e) (Type-II keratin Kb2) -P31323 P31323 reviewed KAP3_HUMAN cAMP-dependent protein kinase type II-beta regulatory subunit -Q9BVC5 Q9BVC5 reviewed ASHWN_HUMAN Ashwin -D6RIF6 D6RIF6 unreviewed D6RIF6_HUMAN SLAIN motif family member 2 -Q9HBU6 Q9HBU6 reviewed EKI1_HUMAN Ethanolamine kinase 1 (EKI 1) (EC 2.7.1.82) -A1L0T0 A1L0T0 reviewed HACL2_HUMAN 2-hydroxyacyl-CoA lyase 2 (EC 4.1.2.-) (Acetolactate synthase-like protein) (IlvB-like protein) -Q6R327 Q6R327 reviewed RICTR_HUMAN Rapamycin-insensitive companion of mTOR (AVO3 homolog) (hAVO3) -P29374 P29374 reviewed ARI4A_HUMAN AT-rich interactive domain-containing protein 4A (ARID domain-containing protein 4A) (Retinoblastoma-binding protein 1) (RBBP-1) -O60516 O60516 reviewed 4EBP3_HUMAN Eukaryotic translation initiation factor 4E-binding protein 3 (4E-BP3) (eIF4E-binding protein 3) -O43166 O43166 reviewed SI1L1_HUMAN Signal-induced proliferation-associated 1-like protein 1 (SIPA1-like protein 1) (High-risk human papilloma viruses E6 oncoproteins targeted protein 1) (E6-targeted protein 1) -Q00613 Q00613 reviewed HSF1_HUMAN Heat shock factor protein 1 (HSF 1) (Heat shock transcription factor 1) (HSTF 1) -P0C7P0 P0C7P0 reviewed CISD3_HUMAN CDGSH iron-sulfur domain-containing protein 3, mitochondrial (MitoNEET-related protein 2) (Miner2) (Mitochondrial inner NEET protein) (MiNT) -O14681 O14681 reviewed EI24_HUMAN Etoposide-induced protein 2.4 homolog (p53-induced gene 8 protein) -O15127 O15127 reviewed SCAM2_HUMAN Secretory carrier-associated membrane protein 2 (Secretory carrier membrane protein 2) -Q9H8U3 Q9H8U3 reviewed ZFAN3_HUMAN AN1-type zinc finger protein 3 (Testis-expressed protein 27) -P43307 P43307 reviewed SSRA_HUMAN Translocon-associated protein subunit alpha (TRAP-alpha) (Signal sequence receptor subunit alpha) (SSR-alpha) -Q9UER7 Q9UER7 reviewed DAXX_HUMAN Death domain-associated protein 6 (Daxx) (hDaxx) (ETS1-associated protein 1) (EAP1) (Fas death domain-associated protein) -Q8N684 Q8N684 reviewed CPSF7_HUMAN Cleavage and polyadenylation specificity factor subunit 7 (Cleavage and polyadenylation specificity factor 59 kDa subunit) (CPSF 59 kDa subunit) (Cleavage factor Im complex 59 kDa subunit) (CFIm59) (Pre-mRNA cleavage factor Im 59 kDa subunit) -Q4LE39 Q4LE39 reviewed ARI4B_HUMAN AT-rich interactive domain-containing protein 4B (ARID domain-containing protein 4B) (180 kDa Sin3-associated polypeptide) (Sin3-associated polypeptide p180) (Breast cancer-associated antigen BRCAA1) (Histone deacetylase complex subunit SAP180) (Retinoblastoma-binding protein 1-like 1) -Q3B726 Q3B726 reviewed RPA43_HUMAN DNA-directed RNA polymerase I subunit RPA43 (DNA-directed RNA polymerase I subunit F) (Twist neighbor protein) -P0C7T5 P0C7T5 reviewed ATX1L_HUMAN Ataxin-1-like (Brother of ataxin-1) (Brother of ATXN1) -P24534 P24534 reviewed EF1B_HUMAN Elongation factor 1-beta (EF-1-beta) -Q9H501 Q9H501 reviewed ESF1_HUMAN ESF1 homolog (ABT1-associated protein) -Q8NI27 Q8NI27 reviewed THOC2_HUMAN THO complex subunit 2 (Tho2) (hTREX120) -Q06546 Q06546 reviewed GABPA_HUMAN GA-binding protein alpha chain (GABP subunit alpha) (Nuclear respiratory factor 2 subunit alpha) (Transcription factor E4TF1-60) -A6NIW2 A6NIW2 unreviewed A6NIW2_HUMAN Dedicator of cytokinesis 11 -P17181 P17181 reviewed INAR1_HUMAN Interferon alpha/beta receptor 1 (IFN-R-1) (IFN-alpha/beta receptor 1) (Cytokine receptor class-II member 1) (Cytokine receptor family 2 member 1) (CRF2-1) (Type I interferon receptor 1) -Q6WKZ4 Q6WKZ4 reviewed RFIP1_HUMAN Rab11 family-interacting protein 1 (Rab11-FIP1) (Rab-coupling protein) -Q9Y388 Q9Y388 reviewed RBMX2_HUMAN RNA-binding motif protein, X-linked 2 -Q8N883 Q8N883 reviewed ZN614_HUMAN Zinc finger protein 614 -P07996 P07996 reviewed TSP1_HUMAN Thrombospondin-1 (Glycoprotein G) -Q9UIF9 Q9UIF9 reviewed BAZ2A_HUMAN Bromodomain adjacent to zinc finger domain protein 2A (Transcription termination factor I-interacting protein 5) (TTF-I-interacting protein 5) (Tip5) (hWALp3) -Q8TDM6 Q8TDM6 reviewed DLG5_HUMAN Disks large homolog 5 (Discs large protein P-dlg) (Placenta and prostate DLG) -P17275 P17275 reviewed JUNB_HUMAN Transcription factor JunB (Transcription factor AP-1 subunit JunB) -Q9NV70 Q9NV70 reviewed EXOC1_HUMAN Exocyst complex component 1 (Exocyst complex component Sec3) -Q8NAV1 Q8NAV1 reviewed PR38A_HUMAN Pre-mRNA-splicing factor 38A -Q96B01 Q96B01 reviewed R51A1_HUMAN RAD51-associated protein 1 (HsRAD51AP1) (RAD51-interacting protein) -Q8TEW0 Q8TEW0 reviewed PARD3_HUMAN Partitioning defective 3 homolog (PAR-3) (PARD-3) (Atypical PKC isotype-specific-interacting protein) (ASIP) (CTCL tumor antigen se2-5) (PAR3-alpha) -O43586 O43586 reviewed PPIP1_HUMAN Proline-serine-threonine phosphatase-interacting protein 1 (PEST phosphatase-interacting protein 1) (CD2-binding protein 1) (H-PIP) -Q96HR8 Q96HR8 reviewed NAF1_HUMAN H/ACA ribonucleoprotein complex non-core subunit NAF1 (hNAF1) -Q8IVT5 Q8IVT5 reviewed KSR1_HUMAN Kinase suppressor of Ras 1 (EC 2.7.11.1) -O43663 O43663 reviewed PRC1_HUMAN Protein regulator of cytokinesis 1 -Q99623 Q99623 reviewed PHB2_HUMAN Prohibitin-2 (B-cell receptor-associated protein BAP37) (D-prohibitin) (Repressor of estrogen receptor activity) -O60749 O60749 reviewed SNX2_HUMAN Sorting nexin-2 (Transformation-related gene 9 protein) (TRG-9) -P06732 P06732 reviewed KCRM_HUMAN Creatine kinase M-type (EC 2.7.3.2) (Creatine kinase M chain) (Creatine phosphokinase M-type) (CPK-M) (M-CK) -E9PES4 E9PES4 unreviewed E9PES4_HUMAN Kinesin-like protein -Q71DI3 Q71DI3 reviewed H32_HUMAN Histone H3.2 (H3-clustered histone 13) (H3-clustered histone 14) (H3-clustered histone 15) (Histone H3/m) (Histone H3/o) -Q6P4F7 Q6P4F7 reviewed RHGBA_HUMAN Rho GTPase-activating protein 11A (Rho-type GTPase-activating protein 11A) -Q86UU0 Q86UU0 reviewed BCL9L_HUMAN B-cell CLL/lymphoma 9-like protein (B-cell lymphoma 9-like protein) (BCL9-like protein) (Protein BCL9-2) -Q5HY81 Q5HY81 unreviewed Q5HY81_HUMAN Ubiquitin-like protein 4A -O43399 O43399 reviewed TPD54_HUMAN Tumor protein D54 (hD54) (Tumor protein D52-like 2) -Q8TEA8 Q8TEA8 reviewed DTD1_HUMAN D-aminoacyl-tRNA deacylase 1 (DTD) (EC 3.1.1.96) (DNA-unwinding element-binding protein B) (DUE-B) (Gly-tRNA(Ala) deacylase) (Histidyl-tRNA synthase-related) -Q9NRY4 Q9NRY4 reviewed RHG35_HUMAN Rho GTPase-activating protein 35 (Glucocorticoid receptor DNA-binding factor 1) (Glucocorticoid receptor repression factor 1) (GRF-1) (Rho GAP p190A) (p190-A) -Q14103 Q14103 reviewed HNRPD_HUMAN Heterogeneous nuclear ribonucleoprotein D0 (hnRNP D0) (AU-rich element RNA-binding protein 1) -Q8NDI1 Q8NDI1 reviewed EHBP1_HUMAN EH domain-binding protein 1 -P04049 P04049 reviewed RAF1_HUMAN RAF proto-oncogene serine/threonine-protein kinase (EC 2.7.11.1) (Proto-oncogene c-RAF) (cRaf) (Raf-1) -Q53EL6 Q53EL6 reviewed PDCD4_HUMAN Programmed cell death protein 4 (Neoplastic transformation inhibitor protein) (Nuclear antigen H731-like) (Protein 197/15a) -P19827 P19827 reviewed ITIH1_HUMAN Inter-alpha-trypsin inhibitor heavy chain H1 (ITI heavy chain H1) (ITI-HC1) (Inter-alpha-inhibitor heavy chain 1) (Inter-alpha-trypsin inhibitor complex component III) (Serum-derived hyaluronan-associated protein) (SHAP) -O95453 O95453 reviewed PARN_HUMAN Poly(A)-specific ribonuclease PARN (EC 3.1.13.4) (Deadenylating nuclease) (Deadenylation nuclease) (Polyadenylate-specific ribonuclease) -P27816 P27816 reviewed MAP4_HUMAN Microtubule-associated protein 4 (MAP-4) -Q9BU76 Q9BU76 reviewed MMTA2_HUMAN Multiple myeloma tumor-associated protein 2 (hMMTAG2) -Q8NCD3 Q8NCD3 reviewed HJURP_HUMAN Holliday junction recognition protein (14-3-3-associated AKT substrate) (Fetal liver-expressing gene 1 protein) (Up-regulated in lung cancer 9) -Q3ZAQ7 Q3ZAQ7 reviewed VMA21_HUMAN Vacuolar ATPase assembly integral membrane protein VMA21 (Myopathy with excessive autophagy protein) -Q9GZP4 Q9GZP4 reviewed PITH1_HUMAN PITH domain-containing protein 1 -Q86XP3 Q86XP3 reviewed DDX42_HUMAN ATP-dependent RNA helicase DDX42 (EC 3.6.4.13) (DEAD box protein 42) (RNA helicase-like protein) (RHELP) (RNA helicase-related protein) (RNAHP) (SF3b DEAD box protein) (Splicing factor 3B-associated 125 kDa protein) (SF3b125) -Q86TL0 Q86TL0 reviewed ATG4D_HUMAN Cysteine protease ATG4D (EC 3.4.22.-) (AUT-like 4 cysteine endopeptidase) (Autophagy-related cysteine endopeptidase 4) (Autophagin-4) (Autophagy-related protein 4 homolog D) (HsAPG4D) [Cleaved into: Cysteine protease ATG4D, mitochondrial] -P57737 P57737 reviewed CORO7_HUMAN Coronin-7 (Crn7) (70 kDa WD repeat tumor rejection antigen homolog) -Q9Y237 Q9Y237 reviewed PIN4_HUMAN Peptidyl-prolyl cis-trans isomerase NIMA-interacting 4 (EC 5.2.1.8) (Parvulin-14) (Par14) (hPar14) (Parvulin-17) (Par17) (hPar17) (Peptidyl-prolyl cis-trans isomerase Pin4) (PPIase Pin4) (Peptidyl-prolyl cis/trans isomerase EPVH) (hEPVH) (Rotamase Pin4) -Q16512 Q16512 reviewed PKN1_HUMAN Serine/threonine-protein kinase N1 (EC 2.7.11.13) (Protease-activated kinase 1) (PAK-1) (Protein kinase C-like 1) (Protein kinase C-like PKN) (Protein kinase PKN-alpha) (Protein-kinase C-related kinase 1) (Serine-threonine protein kinase N) -Q96PV7 Q96PV7 reviewed F193B_HUMAN Protein FAM193B -P57740 P57740 reviewed NU107_HUMAN Nuclear pore complex protein Nup107 (107 kDa nucleoporin) (Nucleoporin Nup107) -O94782 O94782 reviewed UBP1_HUMAN Ubiquitin carboxyl-terminal hydrolase 1 (EC 3.4.19.12) (Deubiquitinating enzyme 1) (hUBP) (Ubiquitin thioesterase 1) (Ubiquitin-specific-processing protease 1) [Cleaved into: Ubiquitin carboxyl-terminal hydrolase 1, N-terminal fragment] -P38159 P38159 reviewed RBMX_HUMAN RNA-binding motif protein, X chromosome (Glycoprotein p43) (Heterogeneous nuclear ribonucleoprotein G) (hnRNP G) [Cleaved into: RNA-binding motif protein, X chromosome, N-terminally processed] -E7ERR0 E7ERR0 E7ERR0_HUMAN deleted -E9PNI7 E9PNI7 unreviewed E9PNI7_HUMAN Poly [ADP-ribose] polymerase (PARP) (EC 2.4.2.-) -Q8IXQ3 Q8IXQ3 reviewed CI040_HUMAN Uncharacterized protein C9orf40 -P50443 P50443 reviewed S26A2_HUMAN Sulfate transporter (Diastrophic dysplasia protein) (Solute carrier family 26 member 2) -Q9BUA3 Q9BUA3 reviewed SPNDC_HUMAN Spindlin interactor and repressor of chromatin-binding protein (SPIN1-docking protein) (SPIN-DOC) -P47974 P47974 reviewed TISD_HUMAN mRNA decay activator protein ZFP36L2 (Butyrate response factor 2) (EGF-response factor 2) (ERF-2) (TPA-induced sequence 11d) (Zinc finger protein 36, C3H1 type-like 2) (ZFP36-like 2) -Q96G01 Q96G01 reviewed BICD1_HUMAN Protein bicaudal D homolog 1 (Bic-D 1) -Q96S15 Q96S15 reviewed WDR24_HUMAN GATOR2 complex protein WDR24 (EC 2.3.2.27) (WD repeat-containing protein 24) -Q6P0N0 Q6P0N0 reviewed M18BP_HUMAN Mis18-binding protein 1 (Kinetochore-associated protein KNL-2 homolog) (HsKNL-2) (P243) -Q8ND61 Q8ND61 reviewed CC020_HUMAN Uncharacterized protein C3orf20 -X6RAL5 O00422 reviewed SAP18_HUMAN Histone deacetylase complex subunit SAP18 (18 kDa Sin3-associated polypeptide) (2HOR0202) (Cell growth-inhibiting gene 38 protein) (Sin3-associated polypeptide p18) -Q13573 Q13573 reviewed SNW1_HUMAN SNW domain-containing protein 1 (Nuclear protein SkiP) (Nuclear receptor coactivator NCoA-62) (Ski-interacting protein) -O43395 O43395 reviewed PRPF3_HUMAN U4/U6 small nuclear ribonucleoprotein Prp3 (Pre-mRNA-splicing factor 3) (hPrp3) (U4/U6 snRNP 90 kDa protein) -Q8WWW0 Q8WWW0 reviewed RASF5_HUMAN Ras association domain-containing protein 5 (New ras effector 1) (Regulator for cell adhesion and polarization enriched in lymphoid tissues) (RAPL) -Q8NBM4 Q8NBM4 reviewed UBAC2_HUMAN Ubiquitin-associated domain-containing protein 2 (UBA domain-containing protein 2) (Phosphoglycerate dehydrogenase-like protein 1) -Q659C4 Q659C4 reviewed LAR1B_HUMAN La-related protein 1B (La ribonucleoprotein domain family member 1B) (La ribonucleoprotein domain family member 2) (La-related protein 2) -P05452 P05452 reviewed TETN_HUMAN Tetranectin (TN) (C-type lectin domain family 3 member B) (Plasminogen kringle 4-binding protein) -Q3L8U1 Q3L8U1 reviewed CHD9_HUMAN Chromodomain-helicase-DNA-binding protein 9 (CHD-9) (EC 3.6.4.12) (ATP-dependent helicase CHD9) (Chromatin-related mesenchymal modulator) (CReMM) (Chromatin-remodeling factor CHROM1) (Kismet homolog 2) (PPAR-alpha-interacting complex protein 320 kDa) (Peroxisomal proliferator-activated receptor A-interacting complex 320 kDa protein) -Q15464 Q15464 reviewed SHB_HUMAN SH2 domain-containing adapter protein B -Q15366 Q15366 reviewed PCBP2_HUMAN Poly(rC)-binding protein 2 (Alpha-CP2) (Heterogeneous nuclear ribonucleoprotein E2) (hnRNP E2) -M0R088 M0R088 unreviewed M0R088_HUMAN Serine and arginine repetitive matrix 1 -H0Y4E8 H0Y4E8 unreviewed H0Y4E8_HUMAN non-specific serine/threonine protein kinase (EC 2.7.11.1) -O75122 O75122 reviewed CLAP2_HUMAN CLIP-associating protein 2 (Cytoplasmic linker-associated protein 2) (Protein Orbit homolog 2) (hOrbit2) -Q9UNL2 Q9UNL2 reviewed SSRG_HUMAN Translocon-associated protein subunit gamma (TRAP-gamma) (Signal sequence receptor subunit gamma) (SSR-gamma) -A0A087X0X3 A0A087X0X3 A0A087X0X3_HUMAN deleted -Q86W92 Q86W92 reviewed LIPB1_HUMAN Liprin-beta-1 (Protein tyrosine phosphatase receptor type f polypeptide-interacting protein-binding protein 1) (PTPRF-interacting protein-binding protein 1) (hSGT2) -Q9Y314 Q9Y314 reviewed NOSIP_HUMAN Nitric oxide synthase-interacting protein (E3 ubiquitin-protein ligase NOSIP) (EC 2.3.2.27) (RING-type E3 ubiquitin transferase NOSIP) (eNOS-interacting protein) -A0A087X1Z1 A0A087X1Z1 unreviewed A0A087X1Z1_HUMAN Gamma-tubulin complex component -Q9NR81 Q9NR81 reviewed ARHG3_HUMAN Rho guanine nucleotide exchange factor 3 (Exchange factor found in platelets and leukemic and neuronal tissues) (XPLN) -P17706 P17706 reviewed PTN2_HUMAN Tyrosine-protein phosphatase non-receptor type 2 (EC 3.1.3.48) (T-cell protein-tyrosine phosphatase) (TCPTP) -P02748 P02748 reviewed CO9_HUMAN Complement component C9 [Cleaved into: Complement component C9a; Complement component C9b] -Q4KMP7 Q4KMP7 reviewed TB10B_HUMAN TBC1 domain family member 10B (Rab27A-GAP-beta) -P02768 P02768 reviewed ALBU_HUMAN Albumin -Q9NSY1 Q9NSY1 reviewed BMP2K_HUMAN BMP-2-inducible protein kinase (BIKe) (EC 2.7.11.1) -P18621 P18621 reviewed RL17_HUMAN Large ribosomal subunit protein uL22 (60S ribosomal protein L17) (60S ribosomal protein L23) (PD-1) -C9J7T7 C9J7T7 C9J7T7_HUMAN deleted -Q96FJ0 Q96FJ0 reviewed STALP_HUMAN AMSH-like protease (AMSH-LP) (EC 3.4.19.-) (STAM-binding protein-like 1) -Q53GS9 Q53GS9 reviewed UBP39_HUMAN Ubiquitin carboxyl-terminal hydrolase 39 (EC 3.4.19.12) (SAD1 homolog) (U4/U6.U5 tri-snRNP-associated 65 kDa protein) -Q6P2E9 Q6P2E9 reviewed EDC4_HUMAN Enhancer of mRNA-decapping protein 4 (Autoantigen Ge-1) (Autoantigen RCD-8) (Human enhancer of decapping large subunit) (Hedls) -Q12874 Q12874 reviewed SF3A3_HUMAN Splicing factor 3A subunit 3 (SF3a60) (Spliceosome-associated protein 61) (SAP 61) -A0A0U1RRH7 A0A0U1RRH7 unreviewed A0A0U1RRH7_HUMAN Histone H2A -Q9BXS6 Q9BXS6 reviewed NUSAP_HUMAN Nucleolar and spindle-associated protein 1 (NuSAP) -Q8TAT5 Q8TAT5 reviewed NEIL3_HUMAN Endonuclease 8-like 3 (EC 3.2.2.-) (EC 4.2.99.18) (DNA glycosylase FPG2) (DNA glycosylase/AP lyase Neil3) (Endonuclease VIII-like 3) (Nei-like protein 3) -Q96BY7 Q96BY7 reviewed ATG2B_HUMAN Autophagy-related protein 2 homolog B -Q13283 Q13283 reviewed G3BP1_HUMAN Ras GTPase-activating protein-binding protein 1 (G3BP-1) (EC 3.6.4.12) (EC 3.6.4.13) (ATP-dependent DNA helicase VIII) (hDH VIII) (GAP SH3 domain-binding protein 1) -C9JCP7 C9JCP7 unreviewed C9JCP7_HUMAN Vasoactive intestinal peptide receptor 2 -P16455 P16455 reviewed MGMT_HUMAN Methylated-DNA--protein-cysteine methyltransferase (EC 2.1.1.63) (6-O-methylguanine-DNA methyltransferase) (MGMT) (O-6-methylguanine-DNA-alkyltransferase) -O94906 O94906 reviewed PRP6_HUMAN Pre-mRNA-processing factor 6 (Androgen receptor N-terminal domain-transactivating protein 1) (ANT-1) (PRP6 homolog) (U5 snRNP-associated 102 kDa protein) (U5-102 kDa protein) -Q9NTM9 Q9NTM9 reviewed CUTC_HUMAN Copper homeostasis protein cutC homolog -Q9BUQ8 Q9BUQ8 reviewed DDX23_HUMAN Probable ATP-dependent RNA helicase DDX23 (EC 3.6.4.13) (100 kDa U5 snRNP-specific protein) (DEAD box protein 23) (PRP28 homolog) (U5-100kD) -Q8NBX0 Q8NBX0 reviewed SCPDL_HUMAN Saccharopine dehydrogenase-like oxidoreductase (EC 1.-.-.-) -Q12846 Q12846 reviewed STX4_HUMAN Syntaxin-4 (Renal carcinoma antigen NY-REN-31) -Q9HD15 Q9HD15 reviewed SRA1_HUMAN Steroid receptor RNA activator 1 (Steroid receptor RNA activator protein) (SRAP) -P15153 P15153 reviewed RAC2_HUMAN Ras-related C3 botulinum toxin substrate 2 (GX) (Small G protein) (p21-Rac2) -Q6P4R8 Q6P4R8 reviewed NFRKB_HUMAN Nuclear factor related to kappa-B-binding protein (DNA-binding protein R kappa-B) (INO80 complex subunit G) -Q14807 Q14807 reviewed KIF22_HUMAN Kinesin-like protein KIF22 (Kinesin-like DNA-binding protein) (Kinesin-like protein 4) -F8WA39 F8WA39 unreviewed F8WA39_HUMAN Phosphatidylinositol-3,5-bisphosphate 3-phosphatase (EC 3.1.3.64) (EC 3.1.3.95) (Phosphatidylinositol-3-phosphate phosphatase) -Q9NRX4 Q9NRX4 reviewed PHP14_HUMAN 14 kDa phosphohistidine phosphatase (EC 3.9.1.3) (Phosphohistidine phosphatase 1) (PHPT1) (Protein histidine phosphatase) (PHP) (Protein janus-A homolog) -Q8TDY4 Q8TDY4 reviewed ASAP3_HUMAN Arf-GAP with SH3 domain, ANK repeat and PH domain-containing protein 3 (Development and differentiation-enhancing factor-like 1) (Protein up-regulated in liver cancer 1) -Q9UPU5 Q9UPU5 reviewed UBP24_HUMAN Ubiquitin carboxyl-terminal hydrolase 24 (EC 3.4.19.12) (Deubiquitinating enzyme 24) (Ubiquitin thioesterase 24) (Ubiquitin-specific-processing protease 24) -P60709 P60709 reviewed ACTB_HUMAN Actin, cytoplasmic 1 (EC 3.6.4.-) (Beta-actin) [Cleaved into: Actin, cytoplasmic 1, N-terminally processed] -Q8IWZ3 Q8IWZ3 reviewed ANKH1_HUMAN Ankyrin repeat and KH domain-containing protein 1 (HIV-1 Vpr-binding ankyrin repeat protein) (Multiple ankyrin repeats single KH domain) (hMASK) -O60307 O60307 reviewed MAST3_HUMAN Microtubule-associated serine/threonine-protein kinase 3 (EC 2.7.11.1) -P52657 P52657 reviewed T2AG_HUMAN Transcription initiation factor IIA subunit 2 (General transcription factor IIA subunit 2) (TFIIA p12 subunit) (TFIIA-12) (TFIIAS) (Transcription initiation factor IIA gamma chain) (TFIIA-gamma) -Q9UKD2 Q9UKD2 reviewed MRT4_HUMAN mRNA turnover protein 4 homolog (Ribosome assembly factor MRTO4) -O00308 O00308 reviewed WWP2_HUMAN NEDD4-like E3 ubiquitin-protein ligase WWP2 (EC 2.3.2.26) (Atrophin-1-interacting protein 2) (AIP2) (HECT-type E3 ubiquitin transferase WWP2) (WW domain-containing protein 2) -Q8NC44 Q8NC44 reviewed RETR2_HUMAN Reticulophagy regulator 2 -B1AM27 B1AM27 unreviewed B1AM27_HUMAN Unc-13 homolog B -Q9UI10 Q9UI10 reviewed EI2BD_HUMAN Translation initiation factor eIF2B subunit delta (eIF2B GDP-GTP exchange factor subunit delta) -P60174 P60174 reviewed TPIS_HUMAN Triosephosphate isomerase (TIM) (EC 5.3.1.1) (Methylglyoxal synthase) (EC 4.2.3.3) (Triose-phosphate isomerase) -Q8WXG6 Q8WXG6 reviewed MADD_HUMAN MAP kinase-activating death domain protein (Differentially expressed in normal and neoplastic cells) (Insulinoma glucagonoma clone 20) (Rab3 GDP/GTP exchange factor) (RabGEF) (Rab3 GDP/GTP exchange protein) (Rab3GEP) -P01106 P01106 reviewed MYC_HUMAN Myc proto-oncogene protein (Class E basic helix-loop-helix protein 39) (bHLHe39) (Proto-oncogene c-Myc) (Transcription factor p64) -Q13185 Q13185 reviewed CBX3_HUMAN Chromobox protein homolog 3 (HECH) (Heterochromatin protein 1 homolog gamma) (HP1 gamma) (Modifier 2 protein) -Q86XK3 Q86XK3 reviewed SFR1_HUMAN Swi5-dependent recombination DNA repair protein 1 homolog (Meiosis protein 5 homolog) -Q9UPU7 Q9UPU7 reviewed TBD2B_HUMAN TBC1 domain family member 2B -Q7Z4H7 Q7Z4H7 reviewed HAUS6_HUMAN HAUS augmin-like complex subunit 6 -P55036 P55036 reviewed PSMD4_HUMAN 26S proteasome non-ATPase regulatory subunit 4 (26S proteasome regulatory subunit RPN10) (26S proteasome regulatory subunit S5A) (Antisecretory factor 1) (AF) (ASF) (Multiubiquitin chain-binding protein) -Q15758 Q15758 reviewed AAAT_HUMAN Neutral amino acid transporter B(0) (ATB(0)) (Baboon M7 virus receptor) (RD114/simian type D retrovirus receptor) (Sodium-dependent neutral amino acid transporter type 2) (Solute carrier family 1 member 5) -D4PHA4 D4PHA4 unreviewed D4PHA4_HUMAN Vasculin (GC-rich promoter-binding protein 1) -A0A0C4DGZ1 A0A0C4DGZ1 A0A0C4DGZ1_HUMAN deleted -P41002 P41002 reviewed CCNF_HUMAN Cyclin-F (F-box only protein 1) -P06239 P06239 reviewed LCK_HUMAN Tyrosine-protein kinase Lck (EC 2.7.10.2) (Leukocyte C-terminal Src kinase) (LSK) (Lymphocyte cell-specific protein-tyrosine kinase) (Protein YT16) (Proto-oncogene Lck) (T cell-specific protein-tyrosine kinase) (p56-LCK) -P04053 P04053 reviewed TDT_HUMAN DNA nucleotidylexotransferase (EC 2.7.7.31) (Terminal addition enzyme) (Terminal deoxynucleotidyltransferase) (Terminal transferase) -Q13049 Q13049 reviewed TRI32_HUMAN E3 ubiquitin-protein ligase TRIM32 (EC 2.3.2.27) (72 kDa Tat-interacting protein) (RING-type E3 ubiquitin transferase TRIM32) (Tripartite motif-containing protein 32) (Zinc finger protein HT2A) -P31629 P31629 reviewed ZEP2_HUMAN Transcription factor HIVEP2 (Human immunodeficiency virus type I enhancer-binding protein 2) (HIV-EP2) (MHC-binding protein 2) (MBP-2) -Q15717 Q15717 reviewed ELAV1_HUMAN ELAV-like protein 1 (Hu-antigen R) (HuR) -O95475 O95475 reviewed SIX6_HUMAN Homeobox protein SIX6 (Homeodomain protein OPTX2) (Optic homeobox 2) (Sine oculis homeobox homolog 6) -P50219 P50219 reviewed MNX1_HUMAN Motor neuron and pancreas homeobox protein 1 (Homeobox protein HB9) -P33993 P33993 reviewed MCM7_HUMAN DNA replication licensing factor MCM7 (EC 3.6.4.12) (CDC47 homolog) (P1.1-MCM3) -Q96NY9 Q96NY9 reviewed MUS81_HUMAN Crossover junction endonuclease MUS81 (EC 3.1.22.-) -P31942 P31942 reviewed HNRH3_HUMAN Heterogeneous nuclear ribonucleoprotein H3 (hnRNP H3) (Heterogeneous nuclear ribonucleoprotein 2H9) (hnRNP 2H9) -P60953 P60953 reviewed CDC42_HUMAN Cell division control protein 42 homolog (EC 3.6.5.2) (G25K GTP-binding protein) -B0QYS7 B0QYS7 unreviewed B0QYS7_HUMAN Transcription factor EB -O75717 O75717 reviewed WDHD1_HUMAN WD repeat and HMG-box DNA-binding protein 1 (Acidic nucleoplasmic DNA-binding protein 1) (And-1) -P24723 P24723 reviewed KPCL_HUMAN Protein kinase C eta type (EC 2.7.11.13) (PKC-L) (nPKC-eta) -C9JYS8 C9JYS8 unreviewed C9JYS8_HUMAN Non-POU domain containing octamer binding -P53350 P53350 reviewed PLK1_HUMAN Serine/threonine-protein kinase PLK1 (EC 2.7.11.21) (Polo-like kinase 1) (PLK-1) (Serine/threonine-protein kinase 13) (STPK13) -Q08AE8 Q08AE8 reviewed SPIR1_HUMAN Protein spire homolog 1 (Spir-1) -Q14232 Q14232 reviewed EI2BA_HUMAN Translation initiation factor eIF2B subunit alpha (eIF2B GDP-GTP exchange factor subunit alpha) -P35443 P35443 reviewed TSP4_HUMAN Thrombospondin-4 -P31751 P31751 reviewed AKT2_HUMAN RAC-beta serine/threonine-protein kinase (EC 2.7.11.1) (Protein kinase Akt-2) (Protein kinase B beta) (PKB beta) (RAC protein kinase beta) (RAC-PK-beta) -Q9UPX8 Q9UPX8 reviewed SHAN2_HUMAN SH3 and multiple ankyrin repeat domains protein 2 (Shank2) (Cortactin-binding protein 1) (CortBP1) (Proline-rich synapse-associated protein 1) -P62699 P62699 reviewed YPEL5_HUMAN Protein yippee-like 5 -Q9Y4F3 Q9Y4F3 reviewed MARF1_HUMAN Meiosis regulator and mRNA stability factor 1 (Limkain-b1) (Meiosis arrest female protein 1) -Q7Z7A4 Q7Z7A4 reviewed PXK_HUMAN PX domain-containing protein kinase-like protein (Modulator of Na,K-ATPase) (MONaKA) -E9PCH4 E9PCH4 unreviewed E9PCH4_HUMAN Rap guanine nucleotide exchange factor 6 -Q8WV99 Q8WV99 reviewed ZFN2B_HUMAN AN1-type zinc finger protein 2B (Arsenite-inducible RNA-associated protein-like protein) (AIRAP-like protein) -Q15058 Q15058 reviewed KIF14_HUMAN Kinesin-like protein KIF14 -A0A0C4DFM7 A0A0C4DFM7 unreviewed A0A0C4DFM7_HUMAN RNA uridylyltransferase (EC 2.7.7.52) -Q01826 Q01826 reviewed SATB1_HUMAN DNA-binding protein SATB1 (Special AT-rich sequence-binding protein 1) -Q8WVC6 Q8WVC6 reviewed DCAKD_HUMAN Dephospho-CoA kinase domain-containing protein -O60318 O60318 reviewed GANP_HUMAN Germinal-center associated nuclear protein (GANP) (EC 2.3.1.48) (80 kDa MCM3-associated protein) (MCM3 acetylating protein) (MCM3AP) (EC 2.3.1.-) (MCM3 acetyltransferase) -P39880 P39880 reviewed CUX1_HUMAN Homeobox protein cut-like 1 (CCAAT displacement protein) (CDP) (CDP/Cux p200) (Homeobox protein cux-1) [Cleaved into: CDP/Cux p110] -Q9NX00 Q9NX00 reviewed TM160_HUMAN Transmembrane protein 160 -P49761 P49761 reviewed CLK3_HUMAN Dual specificity protein kinase CLK3 (EC 2.7.12.1) (CDC-like kinase 3) -Q9UMN6 Q9UMN6 reviewed KMT2B_HUMAN Histone-lysine N-methyltransferase 2B (Lysine N-methyltransferase 2B) (EC 2.1.1.364) (Myeloid/lymphoid or mixed-lineage leukemia protein 4) (Trithorax homolog 2) (WW domain-binding protein 7) (WBP-7) -P43487 P43487 reviewed RANG_HUMAN Ran-specific GTPase-activating protein (Ran-binding protein 1) (RanBP1) -Q7Z4W1 Q7Z4W1 reviewed DCXR_HUMAN L-xylulose reductase (XR) (EC 1.1.1.10) (Carbonyl reductase II) (Dicarbonyl/L-xylulose reductase) (Kidney dicarbonyl reductase) (kiDCR) (Short chain dehydrogenase/reductase family 20C member 1) (Sperm surface protein P34H) -O75368 O75368 reviewed SH3L1_HUMAN Adapter SH3BGRL (SH3 domain-binding glutamic acid-rich-like protein 1) -E9PFI5 E9PFI5 unreviewed E9PFI5_HUMAN Small ribosomal subunit protein eS1 -Q09161 Q09161 reviewed NCBP1_HUMAN Nuclear cap-binding protein subunit 1 (80 kDa nuclear cap-binding protein) (CBP80) (NCBP 80 kDa subunit) -M0QXA7 M0QXA7 unreviewed M0QXA7_HUMAN WIZ zinc finger -Q92597 Q92597 reviewed NDRG1_HUMAN Protein NDRG1 (Differentiation-related gene 1 protein) (DRG-1) (N-myc downstream-regulated gene 1 protein) (Nickel-specific induction protein Cap43) (Reducing agents and tunicamycin-responsive protein) (RTP) (Rit42) -Q969T9 Q969T9 reviewed WBP2_HUMAN WW domain-binding protein 2 (WBP-2) -P82094 P82094 reviewed TMF1_HUMAN TATA element modulatory factor (TMF) (Androgen receptor coactivator 160 kDa protein) (Androgen receptor-associated protein of 160 kDa) -Q99613 Q99613 reviewed EIF3C_HUMAN Eukaryotic translation initiation factor 3 subunit C (eIF3c) (Eukaryotic translation initiation factor 3 subunit 8) (eIF3 p110) -P08651 P08651 reviewed NFIC_HUMAN Nuclear factor 1 C-type (NF1-C) (Nuclear factor 1/C) (CCAAT-box-binding transcription factor) (CTF) (Nuclear factor I/C) (NF-I/C) (NFI-C) (TGGCA-binding protein) -P13051 P13051 reviewed UNG_HUMAN Uracil-DNA glycosylase (UDG) (EC 3.2.2.27) -Q7Z4V5 Q7Z4V5 reviewed HDGR2_HUMAN Hepatoma-derived growth factor-related protein 2 (HDGF-related protein 2) (HRP-2) (Hepatoma-derived growth factor 2) (HDGF-2) -Q9Y2D5 Q9Y2D5 reviewed PLAK2_HUMAN PALM2-AKAP2 fusion protein (A-kinase anchor protein 2) (AKAP-2) (AKAP-KL) (Paralemmin A kinase anchor protein) (Paralemmin-2) (Protein kinase A-anchoring protein 2) (PRKA2) -F8WAL6 F8WAL6 unreviewed F8WAL6_HUMAN Abl interactor 2 -H0Y449 H0Y449 unreviewed H0Y449_HUMAN Y-box-binding protein 1 (Y-box transcription factor) -Q96Q89 Q96Q89 reviewed KI20B_HUMAN Kinesin-like protein KIF20B (Cancer/testis antigen 90) (CT90) (Kinesin family member 20B) (Kinesin-related motor interacting with PIN1) (M-phase phosphoprotein 1) (MPP1) -O00255 O00255 reviewed MEN1_HUMAN Menin -Q92766 Q92766 reviewed RREB1_HUMAN Ras-responsive element-binding protein 1 (RREB-1) (Finger protein in nuclear bodies) (Raf-responsive zinc finger protein LZ321) (Zinc finger motif enhancer-binding protein 1) (Zep-1) -P42167 P42167 reviewed LAP2B_HUMAN Lamina-associated polypeptide 2, isoforms beta/gamma (Thymopoietin, isoforms beta/gamma) (TP beta/gamma) (Thymopoietin-related peptide isoforms beta/gamma) (TPRP isoforms beta/gamma) [Cleaved into: Thymopoietin (TP) (Splenin); Thymopentin (TP5)] -P27815 P27815 reviewed PDE4A_HUMAN 3',5'-cyclic-AMP phosphodiesterase 4A (EC 3.1.4.53) (DPDE2) (PDE46) (cAMP-specific phosphodiesterase 4A) -C9JCC6 C9JCC6 unreviewed C9JCC6_HUMAN DR1 associated protein 1 -Q9H410 Q9H410 reviewed DSN1_HUMAN Kinetochore-associated protein DSN1 homolog -Q9NZR1 Q9NZR1 reviewed TMOD2_HUMAN Tropomodulin-2 (Neuronal tropomodulin) (N-Tmod) -A0A1C7CYX9 A0A1C7CYX9 unreviewed A0A1C7CYX9_HUMAN Dihydropyrimidinase-related protein 2 -O75410 O75410 reviewed TACC1_HUMAN Transforming acidic coiled-coil-containing protein 1 (Gastric cancer antigen Ga55) (Taxin-1) -Q99986 Q99986 reviewed VRK1_HUMAN Serine/threonine-protein kinase VRK1 (EC 2.7.11.1) (Vaccinia-related kinase 1) -Q9UEE9 Q9UEE9 reviewed CFDP1_HUMAN Craniofacial development protein 1 (Bucentaur) -B0YIW2 B0YIW2 unreviewed B0YIW2_HUMAN Apolipoprotein C-III (Apolipoprotein C3) -Q8N490 Q8N490 reviewed PNKD_HUMAN Probable hydrolase PNKD (EC 3.-.-.-) (Myofibrillogenesis regulator 1) (MR-1) (Paroxysmal nonkinesiogenic dyskinesia protein) (Trans-activated by hepatitis C virus core protein 2) -Q9Y679 Q9Y679 reviewed AUP1_HUMAN Lipid droplet-regulating VLDL assembly factor AUP1 (Ancient ubiquitous protein 1) -Q3KQU3 Q3KQU3 reviewed MA7D1_HUMAN MAP7 domain-containing protein 1 (Arginine/proline-rich coiled-coil domain-containing protein 1) (Proline/arginine-rich coiled-coil domain-containing protein 1) -P98171 P98171 reviewed RHG04_HUMAN Rho GTPase-activating protein 4 (Rho-GAP hematopoietic protein C1) (Rho-type GTPase-activating protein 4) (p115) -A0A1B0GW05 A0A1B0GW05 unreviewed A0A1B0GW05_HUMAN Dpy-19 like C-mannosyltransferase 1 -P02751 P02751 reviewed FINC_HUMAN Fibronectin (FN) (Cold-insoluble globulin) (CIG) [Cleaved into: Anastellin; Ugl-Y1; Ugl-Y2; Ugl-Y3] -Q9NRL2 Q9NRL2 reviewed BAZ1A_HUMAN Bromodomain adjacent to zinc finger domain protein 1A (ATP-dependent chromatin-remodeling protein) (ATP-utilizing chromatin assembly and remodeling factor 1) (hACF1) (CHRAC subunit ACF1) (Williams syndrome transcription factor-related chromatin-remodeling factor 180) (WCRF180) (hWALp1) -P21291 P21291 reviewed CSRP1_HUMAN Cysteine and glycine-rich protein 1 (Cysteine-rich protein 1) (CRP) (CRP1) (Epididymis luminal protein 141) (HEL-141) -A0A0G2JNW7 A0A0G2JNW7 unreviewed A0A0G2JNW7_HUMAN Solute carrier family 12 member 7 -B4E0Y9 B4E0Y9 unreviewed B4E0Y9_HUMAN non-specific serine/threonine protein kinase (EC 2.7.11.1) -Q99490 Q99490 reviewed AGAP2_HUMAN Arf-GAP with GTPase, ANK repeat and PH domain-containing protein 2 (AGAP-2) (Centaurin-gamma-1) (Cnt-g1) (GTP-binding and GTPase-activating protein 2) (GGAP2) (Phosphatidylinositol 3-kinase enhancer) (PIKE) -Q96Q15 Q96Q15 reviewed SMG1_HUMAN Serine/threonine-protein kinase SMG1 (SMG-1) (hSMG-1) (EC 2.7.11.1) (Lambda/iota protein kinase C-interacting protein) (Lambda-interacting protein) (Nonsense mediated mRNA decay-associated PI3K-related kinase SMG1) -Q9BVA0 Q9BVA0 reviewed KTNB1_HUMAN Katanin p80 WD40 repeat-containing subunit B1 (Katanin p80 subunit B1) (p80 katanin) -P20962 P20962 reviewed PTMS_HUMAN Parathymosin -Q92667 Q92667 reviewed AKAP1_HUMAN A-kinase anchor protein 1, mitochondrial (A-kinase anchor protein 149 kDa) (AKAP 149) (Dual specificity A-kinase-anchoring protein 1) (D-AKAP-1) (Protein kinase A-anchoring protein 1) (PRKA1) (Spermatid A-kinase anchor protein 84) (S-AKAP84) -Q9UQR0 Q9UQR0 reviewed SCML2_HUMAN Sex comb on midleg-like protein 2 -B2RBV5 B2RBV5 reviewed MR1L2_HUMAN MORF4 family associated protein 1 like 2 (MORF4 family-associated protein 1-like protein UPP) (Unnamed protein product) (UPP) -Q8WW12 Q8WW12 reviewed PCNP_HUMAN PEST proteolytic signal-containing nuclear protein (PCNP) (PEST-containing nuclear protein) -Q5SW79 Q5SW79 reviewed CE170_HUMAN Centrosomal protein of 170 kDa (Cep170) (KARP-1-binding protein) (KARP1-binding protein) -Q86YV0 Q86YV0 reviewed RASL3_HUMAN RAS protein activator like-3 -Q99717 Q99717 reviewed SMAD5_HUMAN Mothers against decapentaplegic homolog 5 (MAD homolog 5) (Mothers against DPP homolog 5) (JV5-1) (SMAD family member 5) (SMAD 5) (Smad5) (hSmad5) -Q13813 Q13813 reviewed SPTN1_HUMAN Spectrin alpha chain, non-erythrocytic 1 (Alpha-II spectrin) (Fodrin alpha chain) (Spectrin, non-erythroid alpha subunit) -Q99683 Q99683 reviewed M3K5_HUMAN Mitogen-activated protein kinase kinase kinase 5 (EC 2.7.11.25) (Apoptosis signal-regulating kinase 1) (ASK-1) (MAPK/ERK kinase kinase 5) (MEK kinase 5) (MEKK 5) -Q00013 Q00013 reviewed EM55_HUMAN 55 kDa erythrocyte membrane protein (p55) (Membrane protein, palmitoylated 1) -P07919 P07919 reviewed QCR6_HUMAN Cytochrome b-c1 complex subunit 6, mitochondrial (Complex III subunit 6) (Complex III subunit VIII) (Cytochrome c1 non-heme 11 kDa protein) (Mitochondrial hinge protein) (Ubiquinol-cytochrome c reductase complex 11 kDa protein) -Q15052 Q15052 reviewed ARHG6_HUMAN Rho guanine nucleotide exchange factor 6 (Alpha-Pix) (COOL-2) (PAK-interacting exchange factor alpha) (Rac/Cdc42 guanine nucleotide exchange factor 6) -Q96EV2 Q96EV2 reviewed RBM33_HUMAN RNA-binding protein 33 (Proline-rich protein 8) (RNA-binding motif protein 33) -Q8NCN4 Q8NCN4 reviewed RN169_HUMAN E3 ubiquitin-protein ligase RNF169 (EC 2.3.2.27) (RING finger protein 169) (RING-type E3 ubiquitin transferase RNF169) -O95425 O95425 reviewed SVIL_HUMAN Supervillin (Archvillin) (p205/p250) -Q96N67 Q96N67 reviewed DOCK7_HUMAN Dedicator of cytokinesis protein 7 -Q6ZRI6 Q6ZRI6 reviewed CO039_HUMAN Uncharacterized protein C15orf39 -P54725 P54725 reviewed RD23A_HUMAN UV excision repair protein RAD23 homolog A (HR23A) (hHR23A) -Q5T5Y3 Q5T5Y3 reviewed CAMP1_HUMAN Calmodulin-regulated spectrin-associated protein 1 -P05387 P05387 reviewed RLA2_HUMAN Large ribosomal subunit protein P2 (60S acidic ribosomal protein P2) (Renal carcinoma antigen NY-REN-44) -O00767 O00767 reviewed SCD_HUMAN Stearoyl-CoA desaturase (hSCD1) (EC 1.14.19.1) (Acyl-CoA desaturase) (Delta(9)-desaturase) (Delta-9 desaturase) (Fatty acid desaturase) -Q9UBH6 Q9UBH6 reviewed S53A1_HUMAN Solute carrier family 53 member 1 (Phosphate exporter SLC53A1) (Protein SYG1 homolog) (Xenotropic and polytropic murine leukemia virus receptor X3) (X-receptor) (Xenotropic and polytropic retrovirus receptor 1) -Q9Y266 Q9Y266 reviewed NUDC_HUMAN Nuclear migration protein nudC (Nuclear distribution protein C homolog) -Q8N163 Q8N163 reviewed CCAR2_HUMAN Cell cycle and apoptosis regulator protein 2 (Cell division cycle and apoptosis regulator protein 2) (DBIRD complex subunit KIAA1967) (Deleted in breast cancer gene 1 protein) (DBC-1) (DBC.1) (NET35) (p30 DBC) -Q9H6H4 Q9H6H4 reviewed REEP4_HUMAN Receptor expression-enhancing protein 4 -F8VP89 F8VP89 unreviewed F8VP89_HUMAN Eukaryotic translation initiation factor 4B -Q9Y6R0 Q9Y6R0 reviewed NUMBL_HUMAN Numb-like protein (Numb-related protein) (Numb-R) -A6QL63 A6QL63 reviewed ABTB3_HUMAN Ankyrin repeat and BTB/POZ domain-containing protein 3 (BTB/POZ domain-containing protein 11) -O60664 O60664 reviewed PLIN3_HUMAN Perilipin-3 (47 kDa mannose 6-phosphate receptor-binding protein) (47 kDa MPR-binding protein) (Cargo selection protein TIP47) (Mannose-6-phosphate receptor-binding protein 1) (Placental protein 17) (PP17) -Q9NQT4 Q9NQT4 reviewed EXOS5_HUMAN Exosome complex component RRP46 (Chronic myelogenous leukemia tumor antigen 28) (Exosome component 5) (Ribosomal RNA-processing protein 46) (p12B) -P68363 P68363 reviewed TBA1B_HUMAN Tubulin alpha-1B chain (EC 3.6.5.-) (Alpha-tubulin ubiquitous) (Tubulin K-alpha-1) (Tubulin alpha-ubiquitous chain) [Cleaved into: Detyrosinated tubulin alpha-1B chain] -Q7L273 Q7L273 reviewed KCTD9_HUMAN BTB/POZ domain-containing protein KCTD9 -P50914 P50914 reviewed RL14_HUMAN Large ribosomal subunit protein eL14 (60S ribosomal protein L14) (CAG-ISL 7) -Q9UM11 Q9UM11 reviewed FZR1_HUMAN Fizzy-related protein homolog (Fzr) (CDC20-like protein 1) (Cdh1/Hct1 homolog) (hCDH1) -Q9NSU2 Q9NSU2 reviewed TREX1_HUMAN Three-prime repair exonuclease 1 (EC 3.1.11.2) (3'-5' exonuclease TREX1) (Deoxyribonuclease III) (DNase III) -Q15751 Q15751 reviewed HERC1_HUMAN Probable E3 ubiquitin-protein ligase HERC1 (EC 2.3.2.26) (HECT domain and RCC1-like domain-containing protein 1) (HECT-type E3 ubiquitin transferase HERC1) (p532) (p619) -Q5VV67 Q5VV67 reviewed PPRC1_HUMAN Peroxisome proliferator-activated receptor gamma coactivator-related protein 1 (PGC-1-related coactivator) (PRC) -Q5W0Z9 Q5W0Z9 reviewed ZDH20_HUMAN Palmitoyltransferase ZDHHC20 (EC 2.3.1.225) (Acyltransferase ZDHHC20) (EC 2.3.1.-) (DHHC domain-containing cysteine-rich protein 20) (DHHC20) (Zinc finger DHHC domain-containing protein 20) -Q9NQW6 Q9NQW6 reviewed ANLN_HUMAN Anillin -P22059 P22059 reviewed OSBP1_HUMAN Oxysterol-binding protein 1 -Q14573 Q14573 reviewed ITPR3_HUMAN Inositol 1,4,5-trisphosphate receptor type 3 (IP3 receptor isoform 3) (IP3R 3) (InsP3R3) (Type 3 inositol 1,4,5-trisphosphate receptor) (Type 3 InsP3 receptor) -P30405 P30405 reviewed PPIF_HUMAN Peptidyl-prolyl cis-trans isomerase F, mitochondrial (PPIase F) (EC 5.2.1.8) (Cyclophilin D) (CyP-D) (CypD) (Cyclophilin F) (Mitochondrial cyclophilin) (CyP-M) (Rotamase F) -P40337 P40337 reviewed VHL_HUMAN von Hippel-Lindau disease tumor suppressor (Protein G7) (pVHL) -O75391 O75391 reviewed SPAG7_HUMAN Sperm-associated antigen 7 -A0A0C4DG17 A0A0C4DG17 unreviewed A0A0C4DG17_HUMAN Small ribosomal subunit protein uS2 (37 kDa laminin receptor precursor) (37LRP) (37/67 kDa laminin receptor) (LRP/LR) (67 kDa laminin receptor) (67LR) (Laminin receptor 1) (LamR) (Laminin-binding protein precursor p40) (LBP/p40) -P61221 P61221 reviewed ABCE1_HUMAN ATP-binding cassette sub-family E member 1 (EC 3.6.5.-) (2'-5'-oligoadenylate-binding protein) (HuHP68) (RNase L inhibitor) (Ribonuclease 4 inhibitor) (RNS4I) -Q9ULH7 Q9ULH7 reviewed MRTFB_HUMAN Myocardin-related transcription factor B (MRTF-B) (MKL/myocardin-like protein 2) (Megakaryoblastic leukemia 2) -Q9Y3D0 Q9Y3D0 reviewed CIA2B_HUMAN Cytosolic iron-sulfur assembly component 2B (MSS19-interacting protein of 18 kDa) (Mitotic spindle-associated MMXD complex subunit MIP18) (Protein FAM96B) -Q86W56 Q86W56 reviewed PARG_HUMAN Poly(ADP-ribose) glycohydrolase (EC 3.2.1.143) -Q5H9F3 Q5H9F3 reviewed BCORL_HUMAN BCL-6 corepressor-like protein 1 (BCoR-L1) (BCoR-like protein 1) -Q9Y2S0 P0DPB6 reviewed RPAC2_HUMAN DNA-directed RNA polymerases I and III subunit RPAC2 (RNA polymerases I and III subunit AC2) (AC19) (DNA-directed RNA polymerase I subunit D) (RNA polymerase I 16 kDa subunit) (RPA16) (RPC16) (hRPA19) -Q9Y2S0 P0DPB5 reviewed RPC22_HUMAN Protein POLR1D, isoform 2 -Q06945 Q06945 reviewed SOX4_HUMAN Transcription factor SOX-4 -O00203 O00203 reviewed AP3B1_HUMAN AP-3 complex subunit beta-1 (Adaptor protein complex AP-3 subunit beta-1) (Adaptor-related protein complex 3 subunit beta-1) (Beta-3A-adaptin) (Clathrin assembly protein complex 3 beta-1 large chain) -P16403 P16403 reviewed H12_HUMAN Histone H1.2 (Histone H1c) (Histone H1d) (Histone H1s-1) -Q9P246 Q9P246 reviewed STIM2_HUMAN Stromal interaction molecule 2 -H0YLM1 H0YLM1 unreviewed H0YLM1_HUMAN Src homology 2 domain containing F -P62820 P62820 reviewed RAB1A_HUMAN Ras-related protein Rab-1A (EC 3.6.5.2) (YPT1-related protein) -P41162 P41162 reviewed ETV3_HUMAN ETS translocation variant 3 (ETS domain transcriptional repressor PE1) (PE-1) (Mitogenic Ets transcriptional suppressor) -P26599 P26599 reviewed PTBP1_HUMAN Polypyrimidine tract-binding protein 1 (PTB) (57 kDa RNA-binding protein PPTB-1) (Heterogeneous nuclear ribonucleoprotein I) (hnRNP I) -Q96RY7 Q96RY7 reviewed IF140_HUMAN Intraflagellar transport protein 140 homolog (WD and tetratricopeptide repeats protein 2) -Q6ZSZ6 Q6ZSZ6 reviewed TSH1_HUMAN Teashirt homolog 1 (Antigen NY-CO-33) (Serologically defined colon cancer antigen 33) -Q15051 Q15051 reviewed IQCB1_HUMAN IQ calmodulin-binding motif-containing protein 1 (Nephrocystin-5) (p53 and DNA damage-regulated IQ motif protein) (PIQ) -Q13303 Q13303 reviewed KCAB2_HUMAN Voltage-gated potassium channel subunit beta-2 (EC 1.1.1.-) (K(+) channel subunit beta-2) (Kv-beta-2) (hKvbeta2) -Q92615 Q92615 reviewed LAR4B_HUMAN La-related protein 4B (La ribonucleoprotein domain family member 4B) (La ribonucleoprotein domain family member 5) (La-related protein 5) -Q8IYB1 Q8IYB1 reviewed M21D2_HUMAN Nucleotidyltransferase MB21D2 (EC 2.7.7.-) (Mab-21 domain-containing protein 2) (hMB21D2) -A0A1B0GTW1 A0A1B0GTW1 unreviewed A0A1B0GTW1_HUMAN Tight junction protein 2 -O60293 O60293 reviewed ZC3H1_HUMAN Zinc finger C3H1 domain-containing protein (Coiled-coil domain-containing protein 131) (Proline/serine-rich coiled-coil protein 2) -P20020 P20020 reviewed AT2B1_HUMAN Plasma membrane calcium-transporting ATPase 1 (EC 7.2.2.10) (Plasma membrane calcium ATPase isoform 1) (PMCA1) (Plasma membrane calcium pump isoform 1) -Q9HC52 Q9HC52 reviewed CBX8_HUMAN Chromobox protein homolog 8 (Polycomb 3 homolog) (Pc3) (hPc3) (Rectachrome 1) -Q99741 Q99741 reviewed CDC6_HUMAN Cell division control protein 6 homolog (CDC6-related protein) (Cdc18-related protein) (HsCdc18) (p62(cdc6)) (HsCDC6) -P16402 P16402 reviewed H13_HUMAN Histone H1.3 (Histone H1c) (Histone H1s-2) -Q9Y3B9 Q9Y3B9 reviewed RRP15_HUMAN RRP15-like protein (Ribosomal RNA-processing protein 15) -Q86YE8 Q86YE8 reviewed ZN573_HUMAN Zinc finger protein 573 -Q9GZR2 Q9GZR2 reviewed REXO4_HUMAN RNA exonuclease 4 (EC 3.1.-.-) (Exonuclease XPMC2) (Prevents mitotic catastrophe 2 protein homolog) (hPMC2) -P41236 P41236 reviewed IPP2_HUMAN Protein phosphatase inhibitor 2 (IPP-2) -Q96B97 Q96B97 reviewed SH3K1_HUMAN SH3 domain-containing kinase-binding protein 1 (CD2-binding protein 3) (CD2BP3) (Cbl-interacting protein of 85 kDa) (Human Src family kinase-binding protein 1) (HSB-1) -P10809 P10809 reviewed CH60_HUMAN 60 kDa heat shock protein, mitochondrial (EC 5.6.1.7) (60 kDa chaperonin) (Chaperonin 60) (CPN60) (Heat shock protein 60) (HSP-60) (Hsp60) (Heat shock protein family D member 1) (HuCHA60) (Mitochondrial matrix protein P1) (P60 lymphocyte protein) -P78347 P78347 reviewed GTF2I_HUMAN General transcription factor II-I (GTFII-I) (TFII-I) (Bruton tyrosine kinase-associated protein 135) (BAP-135) (BTK-associated protein 135) (SRF-Phox1-interacting protein) (SPIN) (Williams-Beuren syndrome chromosomal region 6 protein) -P30291 P30291 reviewed WEE1_HUMAN Wee1-like protein kinase (WEE1hu) (EC 2.7.10.2) (Wee1A kinase) -Q8NI08 Q8NI08 reviewed NCOA7_HUMAN Nuclear receptor coactivator 7 (140 kDa estrogen receptor-associated protein) (Estrogen nuclear receptor coactivator 1) -Q14CW9 Q14CW9 reviewed AT7L3_HUMAN Ataxin-7-like protein 3 (SAGA-associated factor 11 homolog) -P01024 P01024 reviewed CO3_HUMAN Complement C3 (C3 and PZP-like alpha-2-macroglobulin domain-containing protein 1) [Cleaved into: Complement C3 beta chain; C3-beta-c (C3bc); Complement C3 alpha chain; C3a anaphylatoxin; Acylation stimulating protein (ASP) (C3adesArg); Complement C3b alpha' chain; Complement C3c alpha' chain fragment 1; Complement C3dg fragment; Complement C3g fragment; Complement C3d fragment; Complement C3f fragment; Complement C3c alpha' chain fragment 2] -P54105 P54105 reviewed ICLN_HUMAN Methylosome subunit pICln (Chloride channel, nucleotide sensitive 1A) (Chloride conductance regulatory protein ICln) (I(Cln)) (Chloride ion current inducer protein) (ClCI) (Reticulocyte pICln) -A0A087WV86 A0A087WV86 unreviewed A0A087WV86_HUMAN Protein aurora borealis -Q14011 Q14011 reviewed CIRBP_HUMAN Cold-inducible RNA-binding protein (A18 hnRNP) (Glycine-rich RNA-binding protein CIRP) -Q96EZ8 Q96EZ8 reviewed MCRS1_HUMAN Microspherule protein 1 (58 kDa microspherule protein) (Cell cycle-regulated factor p78) (INO80 complex subunit J) (MCRS2) -Q9UEW8 Q9UEW8 reviewed STK39_HUMAN STE20/SPS1-related proline-alanine-rich protein kinase (Ste-20-related kinase) (EC 2.7.11.1) (DCHT) (Serine/threonine-protein kinase 39) -B7ZKJ8 B7ZKJ8 unreviewed B7ZKJ8_HUMAN ITIH4 protein (Inter-alpha-trypsin inhibitor heavy chain 4) -Q9UJU6 Q9UJU6 reviewed DBNL_HUMAN Drebrin-like protein (Cervical SH3P7) (Cervical mucin-associated protein) (Drebrin-F) (HPK1-interacting protein of 55 kDa) (HIP-55) (SH3 domain-containing protein 7) -O15054 O15054 reviewed KDM6B_HUMAN Lysine-specific demethylase 6B (EC 1.14.11.68) (JmjC domain-containing protein 3) (Jumonji domain-containing protein 3) (Lysine demethylase 6B) ([histone H3]-trimethyl-L-lysine(27) demethylase 6B) -Q9BSK4 Q9BSK4 reviewed FEM1A_HUMAN Protein fem-1 homolog A (FEM1a) (FEM1-alpha) (Prostaglandin E receptor 4-associated protein) -O95777 O95777 reviewed LSM8_HUMAN U6 snRNA-associated Sm-like protein LSm8 -Q8NDD1 Q8NDD1 reviewed CA131_HUMAN Uncharacterized protein C1orf131 -Q9BV73 Q9BV73 reviewed CP250_HUMAN Centrosome-associated protein CEP250 (250 kDa centrosomal protein) (Cep250) (Centrosomal Nek2-associated protein 1) (C-Nap1) (Centrosomal protein 2) -Q9NUA8 Q9NUA8 reviewed ZBT40_HUMAN Zinc finger and BTB domain-containing protein 40 -Q15527 Q15527 reviewed SURF2_HUMAN Surfeit locus protein 2 (Surf-2) -I3L1I5 Q6ZSZ5 reviewed ARHGI_HUMAN Rho guanine nucleotide exchange factor 18 (114 kDa Rho-specific guanine nucleotide exchange factor) (p114-Rho-GEF) (p114RhoGEF) (Septin-associated RhoGEF) (SA-RhoGEF) -Q15365 Q15365 reviewed PCBP1_HUMAN Poly(rC)-binding protein 1 (Alpha-CP1) (Heterogeneous nuclear ribonucleoprotein E1) (hnRNP E1) (Nucleic acid-binding protein SUB2.3) -Q9NPA8 Q9NPA8 reviewed ENY2_HUMAN Transcription and mRNA export factor ENY2 (Enhancer of yellow 2 transcription factor homolog) -P49792 P49792 reviewed RBP2_HUMAN E3 SUMO-protein ligase RanBP2 (EC 2.3.2.-) (358 kDa nucleoporin) (Nuclear pore complex protein Nup358) (Nucleoporin Nup358) (Ran-binding protein 2) (RanBP2) (p270) -P61970 P61970 reviewed NTF2_HUMAN Nuclear transport factor 2 (NTF-2) (Placental protein 15) (PP15) -Q9NSC5 Q9NSC5 reviewed HOME3_HUMAN Homer protein homolog 3 (Homer-3) -Q8IX21 Q8IX21 reviewed SLF2_HUMAN SMC5-SMC6 complex localization factor protein 2 (Smc5/6 localization factor 1) -P62273 P62273 reviewed RS29_HUMAN Small ribosomal subunit protein uS14 (40S ribosomal protein S29) -Q9Y4E8 Q9Y4E8 reviewed UBP15_HUMAN Ubiquitin carboxyl-terminal hydrolase 15 (EC 3.4.19.12) (Deubiquitinating enzyme 15) (Ubiquitin thioesterase 15) (Ubiquitin-specific-processing protease 15) (Unph-2) (Unph4) -Q01130 Q01130 reviewed SRSF2_HUMAN Serine/arginine-rich splicing factor 2 (Protein PR264) (Splicing component, 35 kDa) (Splicing factor SC35) (SC-35) (Splicing factor, arginine/serine-rich 2) -P23511 P23511 reviewed NFYA_HUMAN Nuclear transcription factor Y subunit alpha (CAAT box DNA-binding protein subunit A) (Nuclear transcription factor Y subunit A) (NF-YA) -Q9BYW2 Q9BYW2 reviewed SETD2_HUMAN Histone-lysine N-methyltransferase SETD2 (EC 2.1.1.359) (HIF-1) (Huntingtin yeast partner B) (Huntingtin-interacting protein 1) (HIP-1) (Huntingtin-interacting protein B) (Lysine N-methyltransferase 3A) (Protein-lysine N-methyltransferase SETD2) (EC 2.1.1.-) (SET domain-containing protein 2) (hSET2) (p231HBP) -P35236 P35236 reviewed PTN7_HUMAN Tyrosine-protein phosphatase non-receptor type 7 (EC 3.1.3.48) (Hematopoietic protein-tyrosine phosphatase) (HEPTP) (Protein-tyrosine phosphatase LC-PTP) -Q9Y5B9 Q9Y5B9 reviewed SP16H_HUMAN FACT complex subunit SPT16 (Chromatin-specific transcription elongation factor 140 kDa subunit) (FACT 140 kDa subunit) (FACTp140) (Facilitates chromatin transcription complex subunit SPT16) (hSPT16) -O94925 O94925 reviewed GLSK_HUMAN Glutaminase kidney isoform, mitochondrial (GLS) (EC 3.5.1.2) (K-glutaminase) (L-glutamine amidohydrolase) [Cleaved into: Glutaminase kidney isoform, mitochondrial 68 kDa chain; Glutaminase kidney isoform, mitochondrial 65 kDa chain] -Q17R89 Q17R89 reviewed RHG44_HUMAN Rho GTPase-activating protein 44 (NPC-A-10) (Rho-type GTPase-activating protein RICH2) (RhoGAP interacting with CIP4 homologs protein 2) (RICH-2) -Q6XZF7 Q6XZF7 reviewed DNMBP_HUMAN Dynamin-binding protein (Scaffold protein Tuba) -P62310 P62310 reviewed LSM3_HUMAN U6 snRNA-associated Sm-like protein LSm3 -Q15036 Q15036 reviewed SNX17_HUMAN Sorting nexin-17 -H0Y5F5 H0Y5F5 unreviewed H0Y5F5_HUMAN Polyadenylate-binding protein (PABP) -Q9BWT3 Q9BWT3 reviewed PAPOG_HUMAN Poly(A) polymerase gamma (PAP-gamma) (EC 2.7.7.19) (Neo-poly(A) polymerase) (Neo-PAP) (Polynucleotide adenylyltransferase gamma) (SRP RNA 3'-adenylating enzyme) (Signal recognition particle RNA-adenylating enzyme) (SRP RNA-adenylating enzyme) -Q96AV8 Q96AV8 reviewed E2F7_HUMAN Transcription factor E2F7 (E2F-7) -Q86YS7 Q86YS7 reviewed C2CD5_HUMAN C2 domain-containing protein 5 (C2 domain-containing phosphoprotein of 138 kDa) -Q12872 Q12872 reviewed SFSWA_HUMAN Splicing factor, suppressor of white-apricot homolog (Splicing factor, arginine/serine-rich 8) (Suppressor of white apricot protein homolog) -Q92576 Q92576 reviewed PHF3_HUMAN PHD finger protein 3 -O60486 O60486 reviewed PLXC1_HUMAN Plexin-C1 (Virus-encoded semaphorin protein receptor) (CD antigen CD232) -Q96JH7 Q96JH7 reviewed VCIP1_HUMAN Deubiquitinating protein VCPIP1 (EC 3.4.19.12) (Valosin-containing protein p97/p47 complex-interacting protein 1) (Valosin-containing protein p97/p47 complex-interacting protein p135) (VCP/p47 complex-interacting 135-kDa protein) -A0A087WTF0 A0A087WTF0 unreviewed A0A087WTF0_HUMAN Protein tyrosine phosphatase domain containing 1 -Q7Z460 Q7Z460 reviewed CLAP1_HUMAN CLIP-associating protein 1 (Cytoplasmic linker-associated protein 1) (Multiple asters homolog 1) (Protein Orbit homolog 1) (hOrbit1) -Q02078 Q02078 reviewed MEF2A_HUMAN Myocyte-specific enhancer factor 2A (Serum response factor-like protein 1) -Q8WXD9 Q8WXD9 reviewed CSKI1_HUMAN Caskin-1 (CASK-interacting protein 1) -O43900 O43900 reviewed PRIC3_HUMAN Prickle planar cell polarity protein 3 (LIM domain only protein 6) (LMO-6) (Prickle-like protein 3) (Pk3) (Triple LIM domain protein 6) -O60336 O60336 reviewed MABP1_HUMAN Mitogen-activated protein kinase-binding protein 1 (JNK-binding protein 1) (JNKBP-1) -O43148 O43148 reviewed MCES_HUMAN mRNA cap guanine-N7 methyltransferase (EC 2.1.1.56) (RG7MT1) (mRNA (guanine-N(7))-methyltransferase) (mRNA cap methyltransferase) (hCMT1) (hMet) (hcm1p) -P15169 P15169 reviewed CBPN_HUMAN Carboxypeptidase N catalytic chain (CPN) (EC 3.4.17.3) (Anaphylatoxin inactivator) (Arginine carboxypeptidase) (Carboxypeptidase N polypeptide 1) (Carboxypeptidase N small subunit) (Kininase-1) (Lysine carboxypeptidase) (Plasma carboxypeptidase B) (Serum carboxypeptidase N) (SCPN) -O14578 O14578 reviewed CTRO_HUMAN Citron Rho-interacting kinase (CRIK) (EC 2.7.11.1) (Serine/threonine-protein kinase 21) -Q3MHD2 Q3MHD2 reviewed LSM12_HUMAN Protein LSM12 -P12956 P12956 reviewed XRCC6_HUMAN X-ray repair cross-complementing protein 6 (EC 3.6.4.-) (EC 4.2.99.-) (5'-deoxyribose-5-phosphate lyase Ku70) (5'-dRP lyase Ku70) (70 kDa subunit of Ku antigen) (ATP-dependent DNA helicase 2 subunit 1) (ATP-dependent DNA helicase II 70 kDa subunit) (CTC box-binding factor 75 kDa subunit) (CTC75) (CTCBF) (DNA repair protein XRCC6) (Lupus Ku autoantigen protein p70) (Ku70) (Thyroid-lupus autoantigen) (TLAA) (X-ray repair complementing defective repair in Chinese hamster cells 6) -Q6W2J9 Q6W2J9 reviewed BCOR_HUMAN BCL-6 corepressor (BCoR) -J3QQJ0 J3QQJ0 unreviewed J3QQJ0_HUMAN SAP30 binding protein -Q8N103 Q8N103 reviewed TAGAP_HUMAN T-cell activation Rho GTPase-activating protein (T-cell activation GTPase-activating protein) -P61803 P61803 reviewed DAD1_HUMAN Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit DAD1 (Oligosaccharyl transferase subunit DAD1) (Defender against cell death 1) (DAD-1) -O96028 O96028 reviewed NSD2_HUMAN Histone-lysine N-methyltransferase NSD2 (EC 2.1.1.357) (Multiple myeloma SET domain-containing protein) (MMSET) (Nuclear SET domain-containing protein 2) (Protein trithorax-5) (Wolf-Hirschhorn syndrome candidate 1 protein) -Q9Y487 Q9Y487 reviewed VPP2_HUMAN V-type proton ATPase 116 kDa subunit a 2 (V-ATPase 116 kDa subunit a 2) (Lysosomal H(+)-transporting ATPase V0 subunit a 2) (TJ6) (Vacuolar proton translocating ATPase 116 kDa subunit a isoform 2) -Q8TDJ6 Q8TDJ6 reviewed DMXL2_HUMAN DmX-like protein 2 (Rabconnectin-3) -Q13131 Q13131 reviewed AAPK1_HUMAN 5'-AMP-activated protein kinase catalytic subunit alpha-1 (AMPK subunit alpha-1) (EC 2.7.11.1) (Acetyl-CoA carboxylase kinase) (ACACA kinase) (Hydroxymethylglutaryl-CoA reductase kinase) (HMGCR kinase) (EC 2.7.11.31) (Tau-protein kinase PRKAA1) (EC 2.7.11.26) -P54578 P54578 reviewed UBP14_HUMAN Ubiquitin carboxyl-terminal hydrolase 14 (EC 3.4.19.12) (Deubiquitinating enzyme 14) (Ubiquitin thioesterase 14) (Ubiquitin-specific-processing protease 14) -F6VDE0 F6VDE0 unreviewed F6VDE0_HUMAN SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 2 -Q9NYV4 Q9NYV4 reviewed CDK12_HUMAN Cyclin-dependent kinase 12 (EC 2.7.11.22) (EC 2.7.11.23) (Cdc2-related kinase, arginine/serine-rich) (CrkRS) (Cell division cycle 2-related protein kinase 7) (CDC2-related protein kinase 7) (Cell division protein kinase 12) (hCDK12) -Q8IZ21 Q8IZ21 reviewed PHAR4_HUMAN Phosphatase and actin regulator 4 -P25686 P25686 reviewed DNJB2_HUMAN DnaJ homolog subfamily B member 2 (Heat shock 40 kDa protein 3) (Heat shock protein J1) (HSJ-1) -O14974 O14974 reviewed MYPT1_HUMAN Protein phosphatase 1 regulatory subunit 12A (Myosin phosphatase-targeting subunit 1) (Myosin phosphatase target subunit 1) (Protein phosphatase myosin-binding subunit) -Q9NYF8 Q9NYF8 reviewed BCLF1_HUMAN Bcl-2-associated transcription factor 1 (Btf) (BCLAF1 and THRAP3 family member 1) -P08779 P08779 reviewed K1C16_HUMAN Keratin, type I cytoskeletal 16 (Cytokeratin-16) (CK-16) (Keratin-16) (K16) -P49207 P49207 reviewed RL34_HUMAN Large ribosomal subunit protein eL34 (60S ribosomal protein L34) -P04921 P04921 reviewed GLPC_HUMAN Glycophorin-C (Glycoconnectin) (Glycophorin-D) (GPD) (Glycoprotein beta) (PAS-2') (Sialoglycoprotein D) (CD antigen CD236) -Q9C0C7 Q9C0C7 reviewed AMRA1_HUMAN Activating molecule in BECN1-regulated autophagy protein 1 (DDB1- and CUL4-associated factor 3) -P51965 P51965 reviewed UB2E1_HUMAN Ubiquitin-conjugating enzyme E2 E1 (EC 2.3.2.23) ((E3-independent) E2 ubiquitin-conjugating enzyme E1) (EC 2.3.2.24) (E2 ubiquitin-conjugating enzyme E1) (UbcH6) (Ubiquitin carrier protein E1) (Ubiquitin-protein ligase E1) -Q5T2D3 Q5T2D3 reviewed OTUD3_HUMAN OTU domain-containing protein 3 (EC 3.4.19.12) -Q8N3U4 Q8N3U4 reviewed STAG2_HUMAN Cohesin subunit SA-2 (SCC3 homolog 2) (Stromal antigen 2) -P38398 P38398 reviewed BRCA1_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) (RING finger protein 53) (RING-type E3 ubiquitin transferase BRCA1) -P49916 P49916 reviewed DNLI3_HUMAN DNA ligase 3 (EC 6.5.1.1) (DNA ligase III) (Polydeoxyribonucleotide synthase [ATP] 3) -Q15398 Q15398 reviewed DLGP5_HUMAN Disks large-associated protein 5 (DAP-5) (Discs large homolog 7) (Disks large-associated protein DLG7) (Hepatoma up-regulated protein) (HURP) -Q9HBD4 Q9HBD4 unreviewed Q9HBD4_HUMAN SMARCA4 isoform 2 (SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 4) -P84101 P84101 reviewed SERF2_HUMAN Small EDRK-rich factor 2 (Gastric cancer-related protein VRG107) (Protein 4F5-related) (4F5rel) (h4F5rel) -P25445 P25445 reviewed TNR6_HUMAN Tumor necrosis factor receptor superfamily member 6 (Apo-1 antigen) (Apoptosis-mediating surface antigen FAS) (FASLG receptor) (CD antigen CD95) -Q8NE71 Q8NE71 reviewed ABCF1_HUMAN ATP-binding cassette sub-family F member 1 (ATP-binding cassette 50) (TNF-alpha-stimulated ABC protein) -Q76FK4 Q76FK4 reviewed NOL8_HUMAN Nucleolar protein 8 (Nucleolar protein Nop132) -P54274 P54274 reviewed TERF1_HUMAN Telomeric repeat-binding factor 1 (NIMA-interacting protein 2) (TTAGGG repeat-binding factor 1) (Telomeric protein Pin2/TRF1) -O75323 O75323 reviewed NIPS2_HUMAN Protein NipSnap homolog 2 (NipSnap2) (Glioblastoma-amplified sequence) -Q6ZN06 Q6ZN06 reviewed ZN813_HUMAN Zinc finger protein 813 -Q92844 Q92844 reviewed TANK_HUMAN TRAF family member-associated NF-kappa-B activator (TRAF-interacting protein) (I-TRAF) -P28715 P28715 reviewed ERCC5_HUMAN DNA excision repair protein ERCC-5 (EC 3.1.-.-) (DNA repair protein complementing XP-G cells) (XPG) (Xeroderma pigmentosum group G-complementing protein) -Q9NYZ3 Q9NYZ3 reviewed GTSE1_HUMAN G2 and S phase-expressed protein 1 (GTSE-1) (Protein B99 homolog) -Q53HL2 Q53HL2 reviewed BOREA_HUMAN Borealin (Cell division cycle-associated protein 8) (Dasra-B) (hDasra-B) (Pluripotent embryonic stem cell-related gene 3 protein) -Q32MZ4 Q32MZ4 reviewed LRRF1_HUMAN Leucine-rich repeat flightless-interacting protein 1 (LRR FLII-interacting protein 1) (GC-binding factor 2) (TAR RNA-interacting protein) -P31946 P31946 reviewed 1433B_HUMAN 14-3-3 protein beta/alpha (Protein 1054) (Protein kinase C inhibitor protein 1) (KCIP-1) [Cleaved into: 14-3-3 protein beta/alpha, N-terminally processed] -Q86UE8 Q86UE8 reviewed TLK2_HUMAN Serine/threonine-protein kinase tousled-like 2 (EC 2.7.11.1) (HsHPK) (PKU-alpha) (Tousled-like kinase 2) -Q6DN12 Q6DN12 reviewed MCTP2_HUMAN Multiple C2 and transmembrane domain-containing protein 2 -A0A0A0MQS2 Q8N2M8 reviewed CLASR_HUMAN CLK4-associating serine/arginine rich protein (Splicing factor, arginine/serine-rich 16) (Suppressor of white-apricot homolog 2) -P22314 P22314 reviewed UBA1_HUMAN Ubiquitin-like modifier-activating enzyme 1 (EC 6.2.1.45) (Protein A1S9) (Ubiquitin-activating enzyme E1) -Q9UGP4 Q9UGP4 reviewed LIMD1_HUMAN LIM domain-containing protein 1 -Q9H9P5 Q9H9P5 reviewed UNKL_HUMAN Putative E3 ubiquitin-protein ligase UNKL (EC 2.3.2.-) (RING finger protein unkempt-like) (Zinc finger CCCH domain-containing protein 5-like) -P54132 P54132 reviewed BLM_HUMAN RecQ-like DNA helicase BLM (EC 5.6.2.4) (Bloom syndrome protein) (DNA 3'-5' helicase BLM) (DNA helicase, RecQ-like type 2) (RecQ2) (RecQ protein-like 3) -Q8WWM7 Q8WWM7 reviewed ATX2L_HUMAN Ataxin-2-like protein (Ataxin-2 domain protein) (Ataxin-2-related protein) -Q9UBP6 Q9UBP6 reviewed TRMB_HUMAN tRNA (guanine-N(7)-)-methyltransferase (EC 2.1.1.33) (Methyltransferase-like protein 1) (mRNA (guanine-N(7)-)-methyltransferase) (EC 2.1.1.-) (miRNA (guanine-N(7)-)-methyltransferase) (EC 2.1.1.-) (tRNA (guanine(46)-N(7))-methyltransferase) (tRNA(m7G46)-methyltransferase) -Q5THJ4 Q5THJ4 reviewed VP13D_HUMAN Intermembrane lipid transfer protein VPS13D (Vacuolar protein sorting-associated protein 13D) -Q9Y3P8 Q9Y3P8 reviewed SIT1_HUMAN Signaling threshold-regulating transmembrane adapter 1 (SHP2-interacting transmembrane adapter protein) (Suppression-inducing transmembrane adapter 1) (gp30/40) -Q13506 Q13506 reviewed NAB1_HUMAN NGFI-A-binding protein 1 (EGR-1-binding protein 1) (Transcriptional regulatory protein p54) -O75175 O75175 reviewed CNOT3_HUMAN CCR4-NOT transcription complex subunit 3 (CCR4-associated factor 3) (Leukocyte receptor cluster member 2) -O96013 O96013 reviewed PAK4_HUMAN Serine/threonine-protein kinase PAK 4 (EC 2.7.11.1) (p21-activated kinase 4) (PAK-4) -O14641 O14641 reviewed DVL2_HUMAN Segment polarity protein dishevelled homolog DVL-2 (Dishevelled-2) (DSH homolog 2) -P49454 P49454 reviewed CENPF_HUMAN Centromere protein F (CENP-F) (AH antigen) (Kinetochore protein CENPF) (Mitosin) -Q9UN86 Q9UN86 reviewed G3BP2_HUMAN Ras GTPase-activating protein-binding protein 2 (G3BP-2) (GAP SH3 domain-binding protein 2) -O00716 O00716 reviewed E2F3_HUMAN Transcription factor E2F3 (E2F-3) -O94776 O94776 reviewed MTA2_HUMAN Metastasis-associated protein MTA2 (Metastasis-associated 1-like 1) (MTA1-L1 protein) (p53 target protein in deacetylase complex) -Q9UKA4 Q9UKA4 reviewed AKA11_HUMAN A-kinase anchor protein 11 (AKAP-11) (A-kinase anchor protein 220 kDa) (AKAP 220) (hAKAP220) (Protein kinase A-anchoring protein 11) (PRKA11) -Q16186 Q16186 reviewed ADRM1_HUMAN Proteasomal ubiquitin receptor ADRM1 (110 kDa cell membrane glycoprotein) (Gp110) (Adhesion-regulating molecule 1) (ARM-1) (Proteasome regulatory particle non-ATPase 13) (hRpn13) (Rpn13 homolog) -A0A1B0GVL4 A0A1B0GVL4 unreviewed A0A1B0GVL4_HUMAN Family with sequence similarity 193 member A -O43293 O43293 reviewed DAPK3_HUMAN Death-associated protein kinase 3 (DAP kinase 3) (EC 2.7.11.1) (DAP-like kinase) (Dlk) (MYPT1 kinase) (Zipper-interacting protein kinase) (ZIP-kinase) -Q15003 Q15003 reviewed CND2_HUMAN Condensin complex subunit 2 (Barren homolog protein 1) (Chromosome-associated protein H) (hCAP-H) (Non-SMC condensin I complex subunit H) (XCAP-H homolog) -Q15390 Q15390 reviewed MTFR1_HUMAN Mitochondrial fission regulator 1 (Chondrocyte protein with a poly-proline region) -Q15906 Q15906 reviewed VPS72_HUMAN Vacuolar protein sorting-associated protein 72 homolog (Protein YL-1) (Transcription factor-like 1) -Q9BQ70 Q9BQ70 reviewed TCF25_HUMAN Ribosome quality control complex subunit TCF25 (Nuclear localized protein 1) (Transcription factor 25) (TCF-25) -Q8TB72 Q8TB72 reviewed PUM2_HUMAN Pumilio homolog 2 (Pumilio-2) -Q8WXX5 Q8WXX5 reviewed DNJC9_HUMAN DnaJ homolog subfamily C member 9 (HDJC9) (DnaJ protein SB73) -Q14151 Q14151 reviewed SAFB2_HUMAN Scaffold attachment factor B2 (SAF-B2) -Q9NST1 Q9NST1 reviewed PLPL3_HUMAN 1-acylglycerol-3-phosphate O-acyltransferase PNPLA3 (EC 2.3.1.51) (Acylglycerol transacylase) (Adiponutrin) (ADPN) (Calcium-independent phospholipase A2-epsilon) (iPLA2-epsilon) (EC 3.1.1.4) (Lysophosphatidic acid acyltransferase) (Patatin-like phospholipase domain-containing protein 3) (EC 3.1.1.3) -O14545 O14545 reviewed TRAD1_HUMAN TRAF-type zinc finger domain-containing protein 1 (Protein FLN29) -E9PG73 E9PG73 unreviewed E9PG73_HUMAN peptidylprolyl isomerase (EC 5.2.1.8) -X6R3V9 Q86VX9 reviewed MON1A_HUMAN Vacuolar fusion protein MON1 homolog A -P56385 P56385 reviewed ATP5I_HUMAN ATP synthase subunit e, mitochondrial (ATPase subunit e) (ATP synthase membrane subunit e) [Cleaved into: ATP synthase subunit e, mitochondrial, N-terminally processed] -Q9UKE5 Q9UKE5 reviewed TNIK_HUMAN TRAF2 and NCK-interacting protein kinase (EC 2.7.11.1) -P52701 P52701 reviewed MSH6_HUMAN DNA mismatch repair protein Msh6 (hMSH6) (G/T mismatch-binding protein) (GTBP) (GTMBP) (MutS protein homolog 6) (MutS-alpha 160 kDa subunit) (p160) -Q92973 Q92973 reviewed TNPO1_HUMAN Transportin-1 (Importin beta-2) (Karyopherin beta-2) (M9 region interaction protein) (MIP) -Q96T58 Q96T58 reviewed MINT_HUMAN Msx2-interacting protein (SMART/HDAC1-associated repressor protein) (SPEN homolog) -Q13576 Q13576 reviewed IQGA2_HUMAN Ras GTPase-activating-like protein IQGAP2 -Q96ER9 Q96ER9 reviewed MITOK_HUMAN Mitochondrial potassium channel (MITOK) (Coiled-coil domain-containing protein 51) -O00257 O00257 reviewed CBX4_HUMAN E3 SUMO-protein ligase CBX4 (EC 2.3.2.-) (Chromobox protein homolog 4) (Polycomb 2 homolog) (Pc2) (hPc2) -Q13045 Q13045 reviewed FLII_HUMAN Protein flightless-1 homolog -Q3T8J9 Q3T8J9 reviewed GON4L_HUMAN GON-4-like protein (GON-4 homolog) -Q5SSJ5 Q5SSJ5 reviewed HP1B3_HUMAN Heterochromatin protein 1-binding protein 3 (Protein HP1-BP74) -Q9H2P0 Q9H2P0 reviewed ADNP_HUMAN Activity-dependent neuroprotector homeobox protein (Activity-dependent neuroprotective protein) -Q5T5C0 Q5T5C0 reviewed STXB5_HUMAN Syntaxin-binding protein 5 (Lethal(2) giant larvae protein homolog 3) (Tomosyn-1) -Q9UEY8 Q9UEY8 reviewed ADDG_HUMAN Gamma-adducin (Adducin-like protein 70) -P42684 P42684 reviewed ABL2_HUMAN Tyrosine-protein kinase ABL2 (EC 2.7.10.2) (Abelson murine leukemia viral oncogene homolog 2) (Abelson tyrosine-protein kinase 2) (Abelson-related gene protein) (Tyrosine-protein kinase ARG) -P55011 P55011 reviewed S12A2_HUMAN Solute carrier family 12 member 2 (Basolateral Na-K-Cl symporter) (Bumetanide-sensitive sodium-(potassium)-chloride cotransporter 2) -Q9UNY4 Q9UNY4 reviewed TTF2_HUMAN Transcription termination factor 2 (EC 3.6.4.-) (Lodestar homolog) (RNA polymerase II termination factor) (Transcription release factor 2) (F2) (HuF2) -P49006 P49006 reviewed MRP_HUMAN MARCKS-related protein (MARCKS-like protein 1) (Macrophage myristoylated alanine-rich C kinase substrate) (Mac-MARCKS) (MacMARCKS) -Q14181 Q14181 reviewed DPOA2_HUMAN DNA polymerase alpha subunit B (DNA polymerase alpha 70 kDa subunit) -Q13148 Q13148 reviewed TADBP_HUMAN TAR DNA-binding protein 43 (TDP-43) -Q5T3J3 Q5T3J3 reviewed LRIF1_HUMAN Ligand-dependent nuclear receptor-interacting factor 1 (HP1-binding protein enriched in inactive X chromosome protein 1) (HBiX1) (Receptor-interacting factor 1) -P25205 P25205 reviewed MCM3_HUMAN DNA replication licensing factor MCM3 (EC 3.6.4.12) (DNA polymerase alpha holoenzyme-associated protein P1) (P1-MCM3) (RLF subunit beta) (p102) -Q8IYH5 Q8IYH5 reviewed ZZZ3_HUMAN ZZ-type zinc finger-containing protein 3 -Q92794 Q92794 reviewed KAT6A_HUMAN Histone acetyltransferase KAT6A (EC 2.3.1.48) (MOZ, YBF2/SAS3, SAS2 and TIP60 protein 3) (MYST-3) (Monocytic leukemia zinc finger protein) (Runt-related transcription factor-binding protein 2) (Zinc finger protein 220) -Q70EL2 Q70EL2 reviewed UBP45_HUMAN Ubiquitin carboxyl-terminal hydrolase 45 (EC 3.4.19.12) (Deubiquitinating enzyme 45) (Ubiquitin thioesterase 45) (Ubiquitin-specific-processing protease 45) -Q14814 Q14814 reviewed MEF2D_HUMAN Myocyte-specific enhancer factor 2D -P02765 P02765 reviewed FETUA_HUMAN Alpha-2-HS-glycoprotein (Alpha-2-Z-globulin) (Ba-alpha-2-glycoprotein) (Fetuin-A) [Cleaved into: Alpha-2-HS-glycoprotein chain A; Alpha-2-HS-glycoprotein chain B] -P09564 P09564 reviewed CD7_HUMAN T-cell antigen CD7 (GP40) (T-cell leukemia antigen) (T-cell surface antigen Leu-9) (TP41) (CD antigen CD7) -Q8WXI9 Q8WXI9 reviewed P66B_HUMAN Transcriptional repressor p66-beta (GATA zinc finger domain-containing protein 2B) (p66/p68) -Q6IA17 Q6IA17 reviewed SIGIR_HUMAN Single Ig IL-1-related receptor (Single Ig IL-1R-related molecule) (Single immunoglobulin domain-containing IL1R-related protein) (Toll/interleukin-1 receptor 8) (TIR8) -Q13428 Q13428 reviewed TCOF_HUMAN Treacle protein (Treacher Collins syndrome protein) -Q16659 Q16659 reviewed MK06_HUMAN Mitogen-activated protein kinase 6 (MAP kinase 6) (MAPK 6) (EC 2.7.11.24) (Extracellular signal-regulated kinase 3) (ERK-3) (MAP kinase isoform p97) (p97-MAPK) -Q9C0K0 Q9C0K0 reviewed BC11B_HUMAN B-cell lymphoma/leukemia 11B (BCL-11B) (B-cell CLL/lymphoma 11B) (COUP-TF-interacting protein 2) (Radiation-induced tumor suppressor gene 1 protein) (hRit1) -Q13740 Q13740 reviewed CD166_HUMAN CD166 antigen (Activated leukocyte cell adhesion molecule) (CD antigen CD166) -Q8N6H7 Q8N6H7 reviewed ARFG2_HUMAN ADP-ribosylation factor GTPase-activating protein 2 (ARF GAP 2) (GTPase-activating protein ZNF289) (Zinc finger protein 289) -F8W0Q9 F8W0Q9 unreviewed F8W0Q9_HUMAN Periphilin 1 -Q9NS23 Q9NS23 reviewed RASF1_HUMAN Ras association domain-containing protein 1 -Q9HCE1 Q9HCE1 reviewed MOV10_HUMAN Helicase MOV-10 (EC 3.6.4.13) (Armitage homolog) (Moloney leukemia virus 10 protein) -Q12979 Q12979 reviewed ABR_HUMAN Active breakpoint cluster region-related protein -O14828 O14828 reviewed SCAM3_HUMAN Secretory carrier-associated membrane protein 3 (Secretory carrier membrane protein 3) -Q92598 Q92598 reviewed HS105_HUMAN Heat shock protein 105 kDa (Antigen NY-CO-25) (Heat shock 110 kDa protein) (Heat shock protein family H member 1) -Q6ZU65 Q6ZU65 reviewed UBN2_HUMAN Ubinuclein-2 -Q9BY43 Q9BY43 reviewed CHM4A_HUMAN Charged multivesicular body protein 4a (Chromatin-modifying protein 4a) (CHMP4a) (SNF7 homolog associated with Alix-2) (SNF7-1) (hSnf-1) (Vacuolar protein sorting-associated protein 32-1) (Vps32-1) (hVps32-1) -P43403 P43403 reviewed ZAP70_HUMAN Tyrosine-protein kinase ZAP-70 (EC 2.7.10.2) (70 kDa zeta-chain associated protein) (Syk-related tyrosine kinase) -Q14188 Q14188 reviewed TFDP2_HUMAN Transcription factor Dp-2 (E2F dimerization partner 2) -Q8NCY6 Q8NCY6 reviewed MSD4_HUMAN Myb/SANT-like DNA-binding domain-containing protein 4 (Myb/SANT-like DNA-binding domain containing 4 with coiled-coils) -O60499 O60499 reviewed STX10_HUMAN Syntaxin-10 (Syn10) -P62861 P62861 reviewed RS30_HUMAN Ubiquitin-like FUBI-ribosomal protein eS30 fusion protein (FAU ubiquitin like and ribosomal protein S30 fusion) [Cleaved into: Ubiquitin-like protein FUBI; Small ribosomal subunit protein eS30 (40S ribosomal protein S30)] -A0A140TA76 A0A140TA76 unreviewed A0A140TA76_HUMAN Protein LSM14 homolog A -A0A075B746 P82921 reviewed RT21_HUMAN Small ribosomal subunit protein bS21m (28S ribosomal protein S21, mitochondrial) (MRP-S21) (S21mt) -O95801 O95801 reviewed TTC4_HUMAN Tetratricopeptide repeat protein 4 (TPR repeat protein 4) -G5E9I4 G5E9I4 unreviewed G5E9I4_HUMAN BRMS1 transcriptional repressor and anoikis regulator (Breast cancer metastasis suppressor 1, isoform CRA_c) -Q14980 Q14980 reviewed NUMA1_HUMAN Nuclear mitotic apparatus protein 1 (Nuclear matrix protein-22) (NMP-22) (Nuclear mitotic apparatus protein) (NuMA protein) (SP-H antigen) -A0A1B0GV45 A0A1B0GV45 unreviewed A0A1B0GV45_HUMAN Myosin XVIIIA -Q8N3F8 Q8N3F8 reviewed MILK1_HUMAN MICAL-like protein 1 (Molecule interacting with Rab13) (MIRab13) -Q8TEK3 Q8TEK3 reviewed DOT1L_HUMAN Histone-lysine N-methyltransferase, H3 lysine-79 specific (EC 2.1.1.360) (DOT1-like protein) (Histone H3-K79 methyltransferase) (H3-K79-HMTase) (Lysine N-methyltransferase 4) -Q5VTU8 Q5VTU8 reviewed AT5EL_HUMAN ATP synthase subunit epsilon-like protein, mitochondrial (ATP synthase F1 subunit epsilon pseudogene 2) -O00570 O00570 reviewed SOX1_HUMAN Transcription factor SOX-1 -Q92608 Q92608 reviewed DOCK2_HUMAN Dedicator of cytokinesis protein 2 -Q9UH99 Q9UH99 reviewed SUN2_HUMAN SUN domain-containing protein 2 (Protein unc-84 homolog B) (Rab5-interacting protein) (Rab5IP) (Sad1/unc-84 protein-like 2) -Q93100 Q93100 reviewed KPBB_HUMAN Phosphorylase b kinase regulatory subunit beta (Phosphorylase kinase subunit beta) -Q92630 Q92630 reviewed DYRK2_HUMAN Dual specificity tyrosine-phosphorylation-regulated kinase 2 (EC 2.7.12.1) -O75791 O75791 reviewed GRAP2_HUMAN GRB2-related adapter protein 2 (Adapter protein GRID) (GRB-2-like protein) (GRB2L) (GRBLG) (GRBX) (Grf40 adapter protein) (Grf-40) (Growth factor receptor-binding protein) (Hematopoietic cell-associated adapter protein GrpL) (P38) (Protein GADS) (SH3-SH2-SH3 adapter Mona) -Q86TB9 Q86TB9 reviewed PATL1_HUMAN Protein PAT1 homolog 1 (PAT1-like protein 1) (Protein PAT1 homolog b) (Pat1b) (hPat1b) -O95628 O95628 reviewed CNOT4_HUMAN CCR4-NOT transcription complex subunit 4 (EC 2.3.2.27) (CCR4-associated factor 4) (E3 ubiquitin-protein ligase CNOT4) (Potential transcriptional repressor NOT4Hp) (RING-type E3 ubiquitin transferase CNOT4) -Q01082 Q01082 reviewed SPTB2_HUMAN Spectrin beta chain, non-erythrocytic 1 (Beta-II spectrin) (Fodrin beta chain) (Spectrin, non-erythroid beta chain 1) -Q6NUK1 Q6NUK1 reviewed SCMC1_HUMAN Mitochondrial adenyl nucleotide antiporter SLC25A24 (Mitochondrial ATP-Mg/Pi carrier protein 1) (Mitochondrial Ca(2+)-dependent solute carrier protein 1) (Short calcium-binding mitochondrial carrier protein 1) (SCaMC-1) (Solute carrier family 25 member 24) -P27701 P27701 reviewed CD82_HUMAN CD82 antigen (C33 antigen) (IA4) (Inducible membrane protein R2) (Metastasis suppressor Kangai-1) (Suppressor of tumorigenicity 6 protein) (Tetraspanin-27) (Tspan-27) (CD antigen CD82) -O60701 O60701 reviewed UGDH_HUMAN UDP-glucose 6-dehydrogenase (UDP-Glc dehydrogenase) (UDP-GlcDH) (UDPGDH) (EC 1.1.1.22) -Q96DI7 Q96DI7 reviewed SNR40_HUMAN U5 small nuclear ribonucleoprotein 40 kDa protein (U5 snRNP 40 kDa protein) (U5-40K) (38 kDa-splicing factor) (Prp8-binding protein) (hPRP8BP) (U5 snRNP-specific 40 kDa protein) (WD repeat-containing protein 57) -Q92620 Q92620 reviewed PRP16_HUMAN Pre-mRNA-splicing factor ATP-dependent RNA helicase PRP16 (EC 3.6.4.13) (ATP-dependent RNA helicase DHX38) (DEAH box protein 38) -Q9NZJ4 Q9NZJ4 reviewed SACS_HUMAN Sacsin (DnaJ homolog subfamily C member 29) -Q15063 Q15063 reviewed POSTN_HUMAN Periostin (PN) (Osteoblast-specific factor 2) (OSF-2) -F5H2A4 F5H2A4 unreviewed F5H2A4_HUMAN High mobility group AT-hook 2 -Q9P2Y5 Q9P2Y5 reviewed UVRAG_HUMAN UV radiation resistance-associated gene protein (p63) -Q9UBL0 Q9UBL0 reviewed ARP21_HUMAN cAMP-regulated phosphoprotein 21 (ARPP-21) (Thymocyte cAMP-regulated phosphoprotein) -Q92843 Q92843 reviewed B2CL2_HUMAN Bcl-2-like protein 2 (Bcl2-L-2) (Apoptosis regulator Bcl-W) -B5MDQ6 B5MDQ6 unreviewed B5MDQ6_HUMAN Zinc finger protein 74 -P62979 P62979 reviewed RS27A_HUMAN Ubiquitin-ribosomal protein eS31 fusion protein (Ubiquitin carboxyl extension protein 80) [Cleaved into: Ubiquitin; Small ribosomal subunit protein eS31 (40S ribosomal protein S27a)] -P37802 P37802 reviewed TAGL2_HUMAN Transgelin-2 (Epididymis tissue protein Li 7e) (SM22-alpha homolog) -P17483 P17483 reviewed HXB4_HUMAN Homeobox protein Hox-B4 (Homeobox protein Hox-2.6) (Homeobox protein Hox-2F) -Q14241 Q14241 reviewed ELOA1_HUMAN Elongin-A (EloA) (Elongin 110 kDa subunit) (RNA polymerase II transcription factor SIII subunit A1) (SIII p110) (Transcription elongation factor B polypeptide 3) -Q15021 Q15021 reviewed CND1_HUMAN Condensin complex subunit 1 (Chromosome condensation-related SMC-associated protein 1) (Chromosome-associated protein D2) (hCAP-D2) (Non-SMC condensin I complex subunit D2) (XCAP-D2 homolog) -Q9Y2U5 Q9Y2U5 reviewed M3K2_HUMAN Mitogen-activated protein kinase kinase kinase 2 (EC 2.7.11.25) (MAPK/ERK kinase kinase 2) (MEK kinase 2) (MEKK 2) -Q7Z5L9 Q7Z5L9 reviewed I2BP2_HUMAN Interferon regulatory factor 2-binding protein 2 (IRF-2-binding protein 2) (IRF-2BP2) -Q14677 Q14677 reviewed EPN4_HUMAN Clathrin interactor 1 (Clathrin-interacting protein localized in the trans-Golgi region) (Clint) (Enthoprotin) (Epsin-4) (Epsin-related protein) (EpsinR) -P38935 P38935 reviewed SMBP2_HUMAN DNA-binding protein SMUBP-2 (EC 3.6.4.12) (EC 3.6.4.13) (ATP-dependent helicase IGHMBP2) (Glial factor 1) (GF-1) (Immunoglobulin mu-binding protein 2) -Q9H7X3 Q9H7X3 reviewed ZN696_HUMAN Zinc finger protein 696 -Q96JN0 Q96JN0 reviewed LCOR_HUMAN Ligand-dependent corepressor (LCoR) (Mblk1-related protein 2) -Q13541 Q13541 reviewed 4EBP1_HUMAN Eukaryotic translation initiation factor 4E-binding protein 1 (4E-BP1) (eIF4E-binding protein 1) (Phosphorylated heat- and acid-stable protein regulated by insulin 1) (PHAS-I) -Q13098 Q13098 reviewed CSN1_HUMAN COP9 signalosome complex subunit 1 (SGN1) (Signalosome subunit 1) (G protein pathway suppressor 1) (GPS-1) (JAB1-containing signalosome subunit 1) (Protein MFH) -Q8N6T3 Q8N6T3 reviewed ARFG1_HUMAN ADP-ribosylation factor GTPase-activating protein 1 (ARF GAP 1) (ADP-ribosylation factor 1 GTPase-activating protein) (ARF1 GAP) (ARF1-directed GTPase-activating protein) -Q9BWD1 Q9BWD1 reviewed THIC_HUMAN Acetyl-CoA acetyltransferase, cytosolic (EC 2.3.1.9) (Acetyl-CoA transferase-like protein) (Cytosolic acetoacetyl-CoA thiolase) -P52943 P52943 reviewed CRIP2_HUMAN Cysteine-rich protein 2 (CRP-2) (Protein ESP1) -Q96FS4 Q96FS4 reviewed SIPA1_HUMAN Signal-induced proliferation-associated protein 1 (Sipa-1) (GTPase-activating protein Spa-1) (p130 SPA-1) -P40227 P40227 reviewed TCPZ_HUMAN T-complex protein 1 subunit zeta (TCP-1-zeta) (Acute morphine dependence-related protein 2) (CCT-zeta-1) (Chaperonin containing T-complex polypeptide 1 subunit 6A) (HTR3) (Tcp20) -O95466 O95466 reviewed FMNL1_HUMAN Formin-like protein 1 (CLL-associated antigen KW-13) (Leukocyte formin) -Q7Z2W4 Q7Z2W4 reviewed ZCCHV_HUMAN Zinc finger CCCH-type antiviral protein 1 (ADP-ribosyltransferase diphtheria toxin-like 13) (ARTD13) (Inactive Poly [ADP-ribose] polymerase 13) (PARP13) (Zinc finger CCCH domain-containing protein 2) (Zinc finger antiviral protein) (ZAP) -B4DT28 B4DT28 unreviewed B4DT28_HUMAN Heterogeneous nuclear ribonucleoprotein R (cDNA FLJ54544, highly similar to Heterogeneous nuclear ribonucleoprotein R) -Q9Y4A5 Q9Y4A5 reviewed TRRAP_HUMAN Transformation/transcription domain-associated protein (350/400 kDa PCAF-associated factor) (PAF350/400) (STAF40) (Tra1 homolog) -Q6NXT6 Q6NXT6 reviewed TAPT1_HUMAN Transmembrane anterior posterior transformation protein 1 homolog (Cytomegalovirus partial fusion receptor) -Q66K74 Q66K74 reviewed MAP1S_HUMAN Microtubule-associated protein 1S (MAP-1S) (BPY2-interacting protein 1) (Microtubule-associated protein 8) (Variable charge Y chromosome 2-interacting protein 1) (VCY2-interacting protein 1) (VCY2IP-1) [Cleaved into: MAP1S heavy chain; MAP1S light chain] -Q7L8J4 Q7L8J4 reviewed 3BP5L_HUMAN SH3 domain-binding protein 5-like (SH3BP-5-like) -Q14978 Q14978 reviewed NOLC1_HUMAN Nucleolar and coiled-body phosphoprotein 1 (140 kDa nucleolar phosphoprotein) (Nopp140) (Hepatitis C virus NS5A-transactivated protein 13) (HCV NS5A-transactivated protein 13) (Nucleolar 130 kDa protein) (Nucleolar phosphoprotein p130) -Q5TGY3 Q5TGY3 reviewed AHDC1_HUMAN Transcription factor Gibbin (AT-hook DNA-binding motif-containing protein 1) -P41440 P41440 reviewed S19A1_HUMAN Reduced folate transporter (FOLT) (Cyclic dinucleotide:anion antiporter SLC19A1) (Folate:anion antiporter SLC19A1) (Intestinal folate carrier 1) (IFC-1) (Placental folate transporter) (Reduced folate carrier protein) (RFC) (hRFC) (Reduced folate transporter 1) (RFT-1) (Solute carrier family 19 member 1) (hSLC19A1) -Q9UKT7 Q9UKT7 reviewed FBXL3_HUMAN F-box/LRR-repeat protein 3 (F-box and leucine-rich repeat protein 3A) (F-box/LRR-repeat protein 3A) -Q7L590 Q7L590 reviewed MCM10_HUMAN Protein MCM10 homolog (HsMCM10) -Q8ND04 Q8ND04 reviewed SMG8_HUMAN Nonsense-mediated mRNA decay factor SMG8 (Amplified in breast cancer gene 2 protein) (Protein smg-8 homolog) -H7C2Q8 H7C2Q8 unreviewed H7C2Q8_HUMAN EBNA1 binding protein 2 -O75179 O75179 reviewed ANR17_HUMAN Ankyrin repeat domain-containing protein 17 (Gene trap ankyrin repeat protein) (Serologically defined breast cancer antigen NY-BR-16) -O43572 O43572 reviewed AKA10_HUMAN A-kinase anchor protein 10, mitochondrial (AKAP-10) (Dual specificity A kinase-anchoring protein 2) (D-AKAP-2) (Protein kinase A-anchoring protein 10) (PRKA10) -Q8TDB6 Q8TDB6 reviewed DTX3L_HUMAN E3 ubiquitin-protein ligase DTX3L (EC 2.3.2.27) (B-lymphoma- and BAL-associated protein) (Protein deltex-3-like) (RING-type E3 ubiquitin transferase DTX3L) (Rhysin-2) (Rhysin2) -P84243 P84243 reviewed H33_HUMAN Histone H3.3 -Q8IWX8 Q8IWX8 reviewed CHERP_HUMAN Calcium homeostasis endoplasmic reticulum protein (ERPROT 213-21) (SR-related CTD-associated factor 6) -P42677 P42677 reviewed RS27_HUMAN Small ribosomal subunit protein eS27 (40S ribosomal protein S27) (Metallopan-stimulin 1) (MPS-1) -Q7LDG7 Q7LDG7 reviewed GRP2_HUMAN RAS guanyl-releasing protein 2 (Calcium and DAG-regulated guanine nucleotide exchange factor I) (CalDAG-GEFI) (Cdc25-like protein) (hCDC25L) (F25B3.3 kinase-like protein) -Q9H2K8 Q9H2K8 reviewed TAOK3_HUMAN Serine/threonine-protein kinase TAO3 (EC 2.7.11.1) (Cutaneous T-cell lymphoma-associated antigen HD-CL-09) (CTCL-associated antigen HD-CL-09) (Dendritic cell-derived protein kinase) (JNK/SAPK-inhibitory kinase) (Jun kinase-inhibitory kinase) (Kinase from chicken homolog A) (hKFC-A) (Thousand and one amino acid protein 3) -P46019 P46019 reviewed KPB2_HUMAN Phosphorylase b kinase regulatory subunit alpha, liver isoform (Phosphorylase kinase alpha L subunit) -Q9Y4X4 Q9Y4X4 reviewed KLF12_HUMAN Krueppel-like factor 12 (Transcriptional repressor AP-2rep) -Q5UIP0 Q5UIP0 reviewed RIF1_HUMAN Telomere-associated protein RIF1 (Rap1-interacting factor 1 homolog) -Q9BW71 Q9BW71 reviewed HIRP3_HUMAN HIRA-interacting protein 3 -Q9UBF8 Q9UBF8 reviewed PI4KB_HUMAN Phosphatidylinositol 4-kinase beta (PI4K-beta) (PI4Kbeta) (PtdIns 4-kinase beta) (EC 2.7.1.67) (NPIK) (PI4K92) (PI4KIII) -Q96B36 Q96B36 reviewed AKTS1_HUMAN Proline-rich AKT1 substrate 1 (40 kDa proline-rich AKT substrate) -Q9UK61 Q9UK61 reviewed TASOR_HUMAN Protein TASOR (CTCL tumor antigen se89-1) (Retinoblastoma-associated protein RAP140) (Transgene activation suppressor protein) -Q9GZT6 Q9GZT6 reviewed CC90B_HUMAN Coiled-coil domain-containing protein 90B, mitochondrial -Q14157 Q14157 reviewed UBP2L_HUMAN Ubiquitin-associated protein 2-like (Protein NICE-4) (RNA polymerase II degradation factor UBAP2L) -R4GN35 Q5VZ89 reviewed DEN4C_HUMAN DENN domain-containing protein 4C -Q9BRP8 Q9BRP8 reviewed PYM1_HUMAN Partner of Y14 and mago (PYM homolog 1 exon junction complex-associated factor) (Protein wibg homolog) -O95714 O95714 reviewed HERC2_HUMAN E3 ubiquitin-protein ligase HERC2 (EC 2.3.2.26) (HECT domain and RCC1-like domain-containing protein 2) (HECT-type E3 ubiquitin transferase HERC2) -Q5JTV8 Q5JTV8 reviewed TOIP1_HUMAN Torsin-1A-interacting protein 1 (Lamin-associated protein 1B) (LAP1B) -P85037 P85037 reviewed FOXK1_HUMAN Forkhead box protein K1 (Myocyte nuclear factor) (MNF) -Q8WUQ7 Q8WUQ7 reviewed CATIN_HUMAN Splicing factor Cactin (Renal carcinoma antigen NY-REN-24) -P49773 P49773 reviewed HINT1_HUMAN Adenosine 5'-monophosphoramidase HINT1 (EC 3.9.1.-) (Desumoylating isopeptidase HINT1) (EC 3.4.22.-) (Histidine triad nucleotide-binding protein 1) (Protein kinase C inhibitor 1) (Protein kinase C-interacting protein 1) (PKCI-1) -O60504 O60504 reviewed VINEX_HUMAN Vinexin (SH3-containing adapter molecule 1) (SCAM-1) (Sorbin and SH3 domain-containing protein 3) -Q15388 Q15388 reviewed TOM20_HUMAN Mitochondrial import receptor subunit TOM20 homolog (Mitochondrial 20 kDa outer membrane protein) (Outer mitochondrial membrane receptor Tom20) -Q3ZCQ8 Q3ZCQ8 reviewed TIM50_HUMAN Mitochondrial import inner membrane translocase subunit TIM50 -O60333 O60333 reviewed KIF1B_HUMAN Kinesin-like protein KIF1B (Klp) -A6NHB5 A6NHB5 unreviewed A6NHB5_HUMAN Zinc finger MYM-type containing 3 -P16333 P16333 reviewed NCK1_HUMAN SH2/SH3 adapter protein NCK1 (Cytoplasmic protein NCK1) (NCK adapter protein 1) (Nck-1) (SH2/SH3 adapter protein NCK-alpha) -Q9BVS4 Q9BVS4 reviewed RIOK2_HUMAN Serine/threonine-protein kinase RIO2 (EC 2.7.11.1) (RIO kinase 2) -O43318 O43318 reviewed M3K7_HUMAN Mitogen-activated protein kinase kinase kinase 7 (EC 2.7.11.25) (Transforming growth factor-beta-activated kinase 1) (TGF-beta-activated kinase 1) -Q15648 Q15648 reviewed MED1_HUMAN Mediator of RNA polymerase II transcription subunit 1 (Activator-recruited cofactor 205 kDa component) (ARC205) (Mediator complex subunit 1) (Peroxisome proliferator-activated receptor-binding protein) (PBP) (PPAR-binding protein) (Thyroid hormone receptor-associated protein complex 220 kDa component) (Trap220) (Thyroid receptor-interacting protein 2) (TR-interacting protein 2) (TRIP-2) (Vitamin D receptor-interacting protein complex component DRIP205) (p53 regulatory protein RB18A) -P05455 P05455 reviewed LA_HUMAN Lupus La protein (La autoantigen) (La ribonucleoprotein) (Sjoegren syndrome type B antigen) (SS-B) -A0A087WTW0 A0A087WTW0 unreviewed A0A087WTW0_HUMAN E3 ubiquitin-protein ligase UHRF (EC 2.3.2.27) (RING-type E3 ubiquitin transferase UHRF) (Ubiquitin-like PHD and RING finger domain-containing protein) (Ubiquitin-like-containing PHD and RING finger domains protein) -P14625 P14625 reviewed ENPL_HUMAN Endoplasmin (94 kDa glucose-regulated protein) (GRP-94) (Heat shock protein 90 kDa beta member 1) (Heat shock protein family C member 4) (Tumor rejection antigen 1) (gp96 homolog) -Q7Z628 Q7Z628 reviewed ARHG8_HUMAN Neuroepithelial cell-transforming gene 1 protein (Proto-oncogene p65 Net1) (Rho guanine nucleotide exchange factor 8) -Q53GS7 Q53GS7 reviewed GLE1_HUMAN mRNA export factor GLE1 (hGLE1) (GLE1 RNA export mediator) (GLE1-like protein) (Nucleoporin GLE1) -Q9UPR3 Q9UPR3 reviewed SMG5_HUMAN Nonsense-mediated mRNA decay factor SMG5 (EST1-like protein B) (LPTS-RP1) (LPTS-interacting protein) (SMG-5 homolog) (hSMG-5) -Q96QD9 Q96QD9 reviewed UIF_HUMAN UAP56-interacting factor (Forty-two-three domain-containing protein 1) (Protein 40-2-3) -P42858 P42858 reviewed HD_HUMAN Huntingtin (Huntington disease protein) (HD protein) [Cleaved into: Huntingtin, myristoylated N-terminal fragment] -Q99595 Q99595 reviewed TI17A_HUMAN Mitochondrial import inner membrane translocase subunit Tim17-A (Inner membrane preprotein translocase Tim17a) -P37275 P37275 reviewed ZEB1_HUMAN Zinc finger E-box-binding homeobox 1 (NIL-2-A zinc finger protein) (Negative regulator of IL2) (Transcription factor 8) (TCF-8) -P09693 P09693 reviewed CD3G_HUMAN T-cell surface glycoprotein CD3 gamma chain (T-cell receptor T3 gamma chain) (CD antigen CD3g) -Q13111 Q13111 reviewed CAF1A_HUMAN Chromatin assembly factor 1 subunit A (CAF-1 subunit A) (Chromatin assembly factor I p150 subunit) (CAF-I 150 kDa subunit) (CAF-I p150) (hp150) -Q9HCN8 Q9HCN8 reviewed SDF2L_HUMAN Stromal cell-derived factor 2-like protein 1 (SDF2-like protein 1) (PWP1-interacting protein 8) -Q9HB90 Q9HB90 reviewed RRAGC_HUMAN Ras-related GTP-binding protein C (Rag C) (RagC) (EC 3.6.5.-) (GTPase-interacting protein 2) (TIB929) -Q96BT3 Q96BT3 reviewed CENPT_HUMAN Centromere protein T (CENP-T) (Interphase centromere complex protein 22) -Q5VUA4 Q5VUA4 reviewed ZN318_HUMAN Zinc finger protein 318 (Endocrine regulatory protein) -P52732 P52732 reviewed KIF11_HUMAN Kinesin-like protein KIF11 (Kinesin-like protein 1) (Kinesin-like spindle protein HKSP) (Kinesin-related motor protein Eg5) (Thyroid receptor-interacting protein 5) (TR-interacting protein 5) (TRIP-5) -P20648 P20648 reviewed ATP4A_HUMAN Potassium-transporting ATPase alpha chain 1 (EC 7.2.2.19) (Gastric H(+)/K(+) ATPase subunit alpha) (Proton pump) -P52756 P52756 reviewed RBM5_HUMAN RNA-binding protein 5 (Protein G15) (Putative tumor suppressor LUCA15) (RNA-binding motif protein 5) (Renal carcinoma antigen NY-REN-9) -Q9Y2R4 Q9Y2R4 reviewed DDX52_HUMAN Probable ATP-dependent RNA helicase DDX52 (EC 3.6.4.13) (ATP-dependent RNA helicase ROK1-like) (DEAD box protein 52) -O75190 O75190 reviewed DNJB6_HUMAN DnaJ homolog subfamily B member 6 (HHDJ1) (Heat shock protein J2) (HSJ-2) (MRJ) (MSJ-1) -Q9BX63 Q9BX63 reviewed FANCJ_HUMAN Fanconi anemia group J protein (EC 3.6.4.12) (BRCA1-associated C-terminal helicase 1) (BRCA1-interacting protein C-terminal helicase 1) (BRCA1-interacting protein 1) -P32519 P32519 reviewed ELF1_HUMAN ETS-related transcription factor Elf-1 (E74-like factor 1) -F5H8D7 F5H8D7 unreviewed F5H8D7_HUMAN X-ray repair cross complementing 1 -P52292 P52292 reviewed IMA1_HUMAN Importin subunit alpha-1 (Karyopherin subunit alpha-2) (RAG cohort protein 1) (SRP1-alpha) -O43491 O43491 reviewed E41L2_HUMAN Band 4.1-like protein 2 (Erythrocyte membrane protein band 4.1-like 2) (Generally expressed protein 4.1) (4.1G) -Q96RR4 Q96RR4 reviewed KKCC2_HUMAN Calcium/calmodulin-dependent protein kinase kinase 2 (CaM-KK 2) (CaM-kinase kinase 2) (CaMKK 2) (EC 2.7.11.17) (Calcium/calmodulin-dependent protein kinase kinase beta) (CaM-KK beta) (CaM-kinase kinase beta) (CaMKK beta) -Q9ULX3 Q9ULX3 reviewed NOB1_HUMAN RNA-binding protein NOB1 (EC 3.1.-.-) (Phosphorylation regulatory protein HP-10) (Protein ART-4) -O00231 O00231 reviewed PSD11_HUMAN 26S proteasome non-ATPase regulatory subunit 11 (26S proteasome regulatory subunit RPN6) (26S proteasome regulatory subunit S9) (26S proteasome regulatory subunit p44.5) -Q9NQT8 Q9NQT8 reviewed KI13B_HUMAN Kinesin-like protein KIF13B (Kinesin-like protein GAKIN) -Q96TA1 Q96TA1 reviewed NIBA2_HUMAN Protein Niban 2 (Meg-3) (Melanoma invasion by ERK) (MINERVA) (Niban-like protein 1) (Protein FAM129B) -Q9BTT6 Q9BTT6 reviewed LRRC1_HUMAN Leucine-rich repeat-containing protein 1 (LANO adapter protein) (LAP and no PDZ protein) -P05198 P05198 reviewed IF2A_HUMAN Eukaryotic translation initiation factor 2 subunit 1 (Eukaryotic translation initiation factor 2 subunit alpha) (eIF-2-alpha) (eIF-2A) (eIF-2alpha) (eIF2-alpha) -Q9NPF5 Q9NPF5 reviewed DMAP1_HUMAN DNA methyltransferase 1-associated protein 1 (DNMAP1) (DNMT1-associated protein 1) -Q07960 Q07960 reviewed RHG01_HUMAN Rho GTPase-activating protein 1 (CDC42 GTPase-activating protein) (GTPase-activating protein rhoGAP) (Rho-related small GTPase protein activator) (Rho-type GTPase-activating protein 1) (p50-RhoGAP) -Q14839 Q14839 reviewed CHD4_HUMAN Chromodomain-helicase-DNA-binding protein 4 (CHD-4) (EC 3.6.4.12) (ATP-dependent helicase CHD4) (Mi-2 autoantigen 218 kDa protein) (Mi2-beta) -Q8NDT2 Q8NDT2 reviewed RB15B_HUMAN Putative RNA-binding protein 15B (One-twenty two protein 3) (HsOTT3) (HuOTT3) (RNA-binding motif protein 15B) -P18077 P18077 reviewed RL35A_HUMAN Large ribosomal subunit protein eL33 (60S ribosomal protein L35a) (Cell growth-inhibiting gene 33 protein) -Q8IWA0 Q8IWA0 reviewed WDR75_HUMAN WD repeat-containing protein 75 (U3 small nucleolar RNA-associated protein 17 homolog) -P07108 P07108 reviewed ACBP_HUMAN Acyl-CoA-binding protein (ACBP) (Diazepam-binding inhibitor) (DBI) (Endozepine) (EP) -Q99549 Q99549 reviewed MPP8_HUMAN M-phase phosphoprotein 8 (Two hybrid-associated protein 3 with RanBPM) (Twa3) -Q9Y2V2 Q9Y2V2 reviewed CHSP1_HUMAN Calcium-regulated heat-stable protein 1 (Calcium-regulated heat-stable protein of 24 kDa) (CRHSP-24) -Q96DY7 Q96DY7 reviewed MTBP_HUMAN Mdm2-binding protein (hMTBP) -Q70J99 Q70J99 reviewed UN13D_HUMAN Protein unc-13 homolog D (Munc13-4) -Q9H6L4 Q9H6L4 reviewed ARMC7_HUMAN Armadillo repeat-containing protein 7 -Q8TEV9 Q8TEV9 reviewed SMCR8_HUMAN Guanine nucleotide exchange protein SMCR8 (Smith-Magenis syndrome chromosomal region candidate gene 8 protein) -Q9P2N6 Q9P2N6 reviewed KANL3_HUMAN KAT8 regulatory NSL complex subunit 3 (NSL complex protein NSL3) (Non-specific lethal 3 homolog) (Serum inhibited-related protein) (Testis development protein PRTD) -Q96C90 Q96C90 reviewed PP14B_HUMAN Protein phosphatase 1 regulatory subunit 14B (Phospholipase C-beta-3 neighbouring gene protein) -H3BQL3 H3BQL3 unreviewed H3BQL3_HUMAN Chromosome 16 open reading frame 87 -Q15813 Q15813 reviewed TBCE_HUMAN Tubulin-specific chaperone E (Tubulin-folding cofactor E) -P35573 P35573 reviewed GDE_HUMAN Glycogen debranching enzyme (Glycogen debrancher) [Includes: 4-alpha-glucanotransferase (EC 2.4.1.25) (Oligo-1,4-1,4-glucantransferase); Amylo-alpha-1,6-glucosidase (Amylo-1,6-glucosidase) (EC 3.2.1.33) (Dextrin 6-alpha-D-glucosidase)] -Q765P7 Q765P7 reviewed MTSS2_HUMAN Protein MTSS 2 (Actin-bundling with BAIAP2 homology protein 1) (ABBA-1) (MTSS1-like protein) -Q9UHB7 Q9UHB7 reviewed AFF4_HUMAN AF4/FMR2 family member 4 (ALL1-fused gene from chromosome 5q31 protein) (Protein AF-5q31) (Major CDK9 elongation factor-associated protein) -Q14847 Q14847 reviewed LASP1_HUMAN LIM and SH3 domain protein 1 (LASP-1) (Metastatic lymph node gene 50 protein) (MLN 50) -A0A1B0GTU4 A0A1B0GTU4 unreviewed A0A1B0GTU4_HUMAN Paxillin -Q9NVF7 Q9NVF7 reviewed FBX28_HUMAN F-box only protein 28 -P02774 P02774 reviewed VTDB_HUMAN Vitamin D-binding protein (DBP) (VDB) (Gc protein-derived macrophage activating factor) (Gc-MAF) (GcMAF) (Gc-globulin) (Group-specific component) (Gc) (Vitamin D-binding protein-macrophage activating factor) (DBP-maf) -M0R226 M0R226 unreviewed M0R226_HUMAN Large ribosomal subunit protein bL34m (39S ribosomal protein L34, mitochondrial) -Q86Z02 Q86Z02 reviewed HIPK1_HUMAN Homeodomain-interacting protein kinase 1 (EC 2.7.11.1) (Nuclear body-associated kinase 2) -Q00987 Q00987 reviewed MDM2_HUMAN E3 ubiquitin-protein ligase Mdm2 (EC 2.3.2.27) (Double minute 2 protein) (Hdm2) (Oncoprotein Mdm2) (RING-type E3 ubiquitin transferase Mdm2) (p53-binding protein Mdm2) -P49711 P49711 reviewed CTCF_HUMAN Transcriptional repressor CTCF (11-zinc finger protein) (CCCTC-binding factor) (CTCFL paralog) -O43776 O43776 reviewed SYNC_HUMAN Asparagine--tRNA ligase, cytoplasmic (EC 6.1.1.22) (Asparaginyl-tRNA synthetase) (AsnRS) (Asparaginyl-tRNA synthetase 1) -Q6PJT7 Q6PJT7 reviewed ZC3HE_HUMAN Zinc finger CCCH domain-containing protein 14 (Mammalian suppressor of tau pathology-2) (MSUT-2) (Renal carcinoma antigen NY-REN-37) -P46100 P46100 reviewed ATRX_HUMAN Transcriptional regulator ATRX (EC 3.6.4.12) (ATP-dependent helicase ATRX) (X-linked helicase II) (X-linked nuclear protein) (XNP) (Znf-HX) -Q9UBB9 Q9UBB9 reviewed TFP11_HUMAN Tuftelin-interacting protein 11 (Septin and tuftelin-interacting protein 1) (STIP-1) -Q9NYA4 Q9NYA4 reviewed MTMR4_HUMAN Myotubularin-related protein 4 (EC 3.1.3.48) (FYVE domain-containing dual specificity protein phosphatase 2) (FYVE-DSP2) (Zinc finger FYVE domain-containing protein 11) -O15151 O15151 reviewed MDM4_HUMAN Protein Mdm4 (Double minute 4 protein) (Mdm2-like p53-binding protein) (Protein Mdmx) (p53-binding protein Mdm4) -Q9Y4B5 Q9Y4B5 reviewed MTCL1_HUMAN Microtubule cross-linking factor 1 (Coiled-coil domain-containing protein 165) (PAR-1-interacting protein) (SOGA family member 2) -O60496 O60496 reviewed DOK2_HUMAN Docking protein 2 (Downstream of tyrosine kinase 2) (p56(dok-2)) -Q9UHV7 Q9UHV7 reviewed MED13_HUMAN Mediator of RNA polymerase II transcription subunit 13 (Activator-recruited cofactor 250 kDa component) (ARC250) (Mediator complex subunit 13) (Thyroid hormone receptor-associated protein 1) (Thyroid hormone receptor-associated protein complex 240 kDa component) (Trap240) (Vitamin D3 receptor-interacting protein complex component DRIP250) (DRIP250) -Q8IWB7 Q8IWB7 reviewed WDFY1_HUMAN WD repeat and FYVE domain-containing protein 1 (FYVE domain-containing protein localized to endosomes 1) (FENS-1) (Phosphoinositide-binding protein 1) (WD40- and FYVE domain-containing protein 1) (Zinc finger FYVE domain-containing protein 17) -Q9Y277 Q9Y277 reviewed VDAC3_HUMAN Voltage-dependent anion-selective channel protein 3 (VDAC-3) (hVDAC3) (Outer mitochondrial membrane protein porin 3) -Q9Y385 Q9Y385 reviewed UB2J1_HUMAN Ubiquitin-conjugating enzyme E2 J1 (EC 2.3.2.23) (E2 ubiquitin-conjugating enzyme J1) (Non-canonical ubiquitin-conjugating enzyme 1) (NCUBE-1) (Yeast ubiquitin-conjugating enzyme UBC6 homolog E) (HsUBC6e) -Q96N16 Q96N16 reviewed JKIP1_HUMAN Janus kinase and microtubule-interacting protein 1 (GABA-B receptor-binding protein) (Multiple alpha-helices and RNA-linker protein 1) (Marlin-1) -A0FGR8 A0FGR8 reviewed ESYT2_HUMAN Extended synaptotagmin-2 (E-Syt2) (Chr2Syt) -Q8ND56 Q8ND56 reviewed LS14A_HUMAN Protein LSM14 homolog A (Protein FAM61A) (Protein SCD6 homolog) (Putative alpha-synuclein-binding protein) (AlphaSNBP) (RNA-associated protein 55A) (hRAP55) (hRAP55A) -Q9Y250 Q9Y250 reviewed LZTS1_HUMAN Leucine zipper putative tumor suppressor 1 (F37/esophageal cancer-related gene-coding leucine-zipper motif) (Fez1) -Q9HB21 Q9HB21 reviewed PKHA1_HUMAN Pleckstrin homology domain-containing family A member 1 (PH domain-containing family A member 1) (Tandem PH domain-containing protein 1) (TAPP-1) -Q8NFC6 Q8NFC6 reviewed BD1L1_HUMAN Biorientation of chromosomes in cell division protein 1-like 1 -Q8IZD4 Q8IZD4 reviewed DCP1B_HUMAN mRNA-decapping enzyme 1B (EC 3.6.1.62) -Q9GZY8 Q9GZY8 reviewed MFF_HUMAN Mitochondrial fission factor -Q96PK6 Q96PK6 reviewed RBM14_HUMAN RNA-binding protein 14 (Paraspeckle protein 2) (PSP2) (RNA-binding motif protein 14) (RRM-containing coactivator activator/modulator) (Synaptotagmin-interacting protein) (SYT-interacting protein) -Q8IU60 Q8IU60 reviewed DCP2_HUMAN m7GpppN-mRNA hydrolase (EC 3.6.1.62) (Nucleoside diphosphate-linked moiety X motif 20) (Nudix motif 20) (mRNA-decapping enzyme 2) (hDpc) -H7BZJ3 H7BZJ3 unreviewed H7BZJ3_HUMAN Protein disulfide-isomerase A6 (EC 5.3.4.1) -Q66PJ3 Q66PJ3 reviewed AR6P4_HUMAN ADP-ribosylation factor-like protein 6-interacting protein 4 (ARL-6-interacting protein 4) (Aip-4) (HSP-975) (HSVI-binding protein) (SR-15) (SRp25) (SR-25) (Splicing factor SRrp37) -P61073 P61073 reviewed CXCR4_HUMAN C-X-C chemokine receptor type 4 (CXC-R4) (CXCR-4) (FB22) (Fusin) (HM89) (LCR1) (Leukocyte-derived seven transmembrane domain receptor) (LESTR) (Lipopolysaccharide-associated protein 3) (LAP-3) (LPS-associated protein 3) (NPYRL) (Stromal cell-derived factor 1 receptor) (SDF-1 receptor) (CD antigen CD184) -Q9P013 Q9P013 reviewed CWC15_HUMAN Spliceosome-associated protein CWC15 homolog -P00441 P00441 reviewed SODC_HUMAN Superoxide dismutase [Cu-Zn] (EC 1.15.1.1) (Superoxide dismutase 1) (hSod1) -Q68DK7 Q68DK7 reviewed MSL1_HUMAN Male-specific lethal 1 homolog (MSL-1) (Male-specific lethal 1-like 1) (MSL1-like 1) (Male-specific lethal-1 homolog 1) -Q96E39 Q96E39 reviewed RMXL1_HUMAN RNA binding motif protein, X-linked-like-1 (Heterogeneous nuclear ribonucleoprotein G-like 1) -P05141 P05141 reviewed ADT2_HUMAN ADP/ATP translocase 2 (ADP,ATP carrier protein 2) (ADP,ATP carrier protein, fibroblast isoform) (Adenine nucleotide translocator 2) (ANT 2) (Solute carrier family 25 member 5) [Cleaved into: ADP/ATP translocase 2, N-terminally processed] -A0A087WUE4 A0A087WUE4 unreviewed A0A087WUE4_HUMAN Leukocyte receptor cluster member 8 -P17026 P17026 reviewed ZNF22_HUMAN Zinc finger protein 22 (Zinc finger protein KOX15) (Zinc finger protein Krox-26) -O00571 O00571 reviewed DDX3X_HUMAN ATP-dependent RNA helicase DDX3X (EC 3.6.4.13) (CAP-Rf) (DEAD box protein 3, X-chromosomal) (DEAD box, X isoform) (DBX) (Helicase-like protein 2) (HLP2) -Q56VL3 Q56VL3 reviewed OCAD2_HUMAN OCIA domain-containing protein 2 (Ovarian carcinoma immunoreactive antigen-like protein) -Q9HCG8 Q9HCG8 reviewed CWC22_HUMAN Pre-mRNA-splicing factor CWC22 homolog (Nucampholin homolog) (fSAPb) -Q9H3N1 Q9H3N1 reviewed TMX1_HUMAN Thioredoxin-related transmembrane protein 1 (Protein disulfide-isomerase TMX1) (EC 5.3.4.1) (Thioredoxin domain-containing protein 1) (Transmembrane Trx-related protein) -Q8TAE8 Q8TAE8 reviewed G45IP_HUMAN Large ribosomal subunit protein mL64 (39S ribosomal protein L59, mitochondrial) (MRP-L59) (CKII beta-associating protein) (CR6-interacting factor 1) (CRIF1) (Growth arrest and DNA damage-inducible proteins-interacting protein 1) (Papillomavirus L2-interacting nuclear protein 1) (PLINP) (PLINP-1) (p53-responsive gene 6 protein) -O94874 O94874 reviewed UFL1_HUMAN E3 UFM1-protein ligase 1 (EC 2.3.2.-) (E3 UFM1-protein transferase 1) (Multiple alpha-helix protein located at ER) (Novel LZAP-binding protein) (Regulator of C53/LZAP and DDRGK1) -Q8WYQ5 Q8WYQ5 reviewed DGCR8_HUMAN Microprocessor complex subunit DGCR8 (DiGeorge syndrome critical region 8) -Q86V59 Q86V59 reviewed PNM8A_HUMAN Paraneoplastic antigen-like protein 8A (PNMA-like protein 1) -Q8TBB5 Q8TBB5 reviewed KLDC4_HUMAN Kelch domain-containing protein 4 -F8W8D3 F8W8D3 unreviewed F8W8D3_HUMAN Stem-loop binding protein -P49757 P49757 reviewed NUMB_HUMAN Protein numb homolog (h-Numb) (Protein S171) -Q9P265 Q9P265 reviewed DIP2B_HUMAN Disco-interacting protein 2 homolog B (DIP2 homolog B) -E7ERS3 E7ERS3 unreviewed E7ERS3_HUMAN Zinc finger CCCH-type containing 18 -J3KR72 J3KR72 unreviewed J3KR72_HUMAN Transcription initiation factor TFIID subunit 6 -Q01196 Q01196 reviewed RUNX1_HUMAN Runt-related transcription factor 1 (Acute myeloid leukemia 1 protein) (Core-binding factor subunit alpha-2) (CBF-alpha-2) (Oncogene AML-1) (Polyomavirus enhancer-binding protein 2 alpha B subunit) (PEA2-alpha B) (PEBP2-alpha B) (SL3-3 enhancer factor 1 alpha B subunit) (SL3/AKV core-binding factor alpha B subunit) -Q9H2Y7 Q9H2Y7 reviewed ZN106_HUMAN Zinc finger protein 106 (Zfp-106) (Zinc finger protein 474) -Q9BZF2 Q9BZF2 reviewed OSBL7_HUMAN Oxysterol-binding protein-related protein 7 (ORP-7) (OSBP-related protein 7) -Q9Y2X3 Q9Y2X3 reviewed NOP58_HUMAN Nucleolar protein 58 (Nucleolar protein 5) -O60292 O60292 reviewed SI1L3_HUMAN Signal-induced proliferation-associated 1-like protein 3 (SIPA1-like protein 3) (SPA-1-like protein 3) -Q13547 Q13547 reviewed HDAC1_HUMAN Histone deacetylase 1 (HD1) (EC 3.5.1.98) (Protein deacetylase HDAC1) (EC 3.5.1.-) (Protein decrotonylase HDAC1) (EC 3.5.1.-) -P06753 P06753 reviewed TPM3_HUMAN Tropomyosin alpha-3 chain (Gamma-tropomyosin) (Tropomyosin-3) (Tropomyosin-5) (hTM5) -Q9Y508 Q9Y508 reviewed RN114_HUMAN E3 ubiquitin-protein ligase RNF114 (EC 2.3.2.27) (RING finger protein 114) (RING-type E3 ubiquitin transferase RNF114) (Zinc finger protein 228) (Zinc finger protein 313) -Q96KB5 Q96KB5 reviewed TOPK_HUMAN Lymphokine-activated killer T-cell-originated protein kinase (EC 2.7.12.2) (Cancer/testis antigen 84) (CT84) (MAPKK-like protein kinase) (Nori-3) (PDZ-binding kinase) (Spermatogenesis-related protein kinase) (SPK) (T-LAK cell-originated protein kinase) -Q9BWJ5 Q9BWJ5 reviewed SF3B5_HUMAN Splicing factor 3B subunit 5 (SF3b5) (Pre-mRNA-splicing factor SF3b 10 kDa subunit) -Q8TDG4 Q8TDG4 reviewed HELQ_HUMAN Helicase POLQ-like (EC 3.6.4.12) (Mus308-like helicase) (POLQ-like helicase) -Q96L94 Q96L94 reviewed SNX22_HUMAN Sorting nexin-22 -Q9NUQ3 Q9NUQ3 reviewed TXLNG_HUMAN Gamma-taxilin (Environmental lipopolysaccharide-responding gene protein) (Factor inhibiting ATF4-mediated transcription) (FIAT) (Lipopolysaccharide-specific response protein 5) -P19838 P19838 reviewed NFKB1_HUMAN Nuclear factor NF-kappa-B p105 subunit (DNA-binding factor KBF1) (EBP-1) (Nuclear factor of kappa light polypeptide gene enhancer in B-cells 1) [Cleaved into: Nuclear factor NF-kappa-B p50 subunit] -Q9HB58 Q9HB58 reviewed SP110_HUMAN Sp110 nuclear body protein (Interferon-induced protein 41/75) (Speckled 110 kDa) (Transcriptional coactivator Sp110) -Q9BVI0 Q9BVI0 reviewed PHF20_HUMAN PHD finger protein 20 (Glioma-expressed antigen 2) (Hepatocellular carcinoma-associated antigen 58) (Novel zinc finger protein) (Transcription factor TZP) -P54278 P54278 reviewed PMS2_HUMAN Mismatch repair endonuclease PMS2 (EC 3.1.-.-) (DNA mismatch repair protein PMS2) (PMS1 protein homolog 2) -P48634 P48634 reviewed PRC2A_HUMAN Protein PRRC2A (HLA-B-associated transcript 2) (Large proline-rich protein BAT2) (Proline-rich and coiled-coil-containing protein 2A) (Protein G2) -E7ESS2 O95819 reviewed M4K4_HUMAN Mitogen-activated protein kinase kinase kinase kinase 4 (EC 2.7.11.1) (HPK/GCK-like kinase HGK) (MAPK/ERK kinase kinase kinase 4) (MEK kinase kinase 4) (MEKKK 4) (Nck-interacting kinase) -Q9HCJ3 Q9HCJ3 reviewed RAVR2_HUMAN Ribonucleoprotein PTB-binding 2 (Protein raver-2) -P15336 P15336 reviewed ATF2_HUMAN Cyclic AMP-dependent transcription factor ATF-2 (cAMP-dependent transcription factor ATF-2) (Activating transcription factor 2) (Cyclic AMP-responsive element-binding protein 2) (CREB-2) (cAMP-responsive element-binding protein 2) (HB16) (cAMP response element-binding protein CRE-BP1) -O75152 O75152 reviewed ZC11A_HUMAN Zinc finger CCCH domain-containing protein 11A -Q6UB35 Q6UB35 reviewed C1TM_HUMAN Monofunctional C1-tetrahydrofolate synthase, mitochondrial (EC 6.3.4.3) (Formyltetrahydrofolate synthetase) -P49750 P49750 reviewed YLPM1_HUMAN YLP motif-containing protein 1 (Nuclear protein ZAP3) (ZAP113) -Q15334 Q15334 reviewed L2GL1_HUMAN Lethal(2) giant larvae protein homolog 1 (LLGL) (DLG4) (Hugl-1) (Human homolog to the D-lgl gene protein) -E9PN30 E9PN30 unreviewed E9PN30_HUMAN Selenoprotein S -Q7KZ85 Q7KZ85 reviewed SPT6H_HUMAN Transcription elongation factor SPT6 (hSPT6) (Histone chaperone suppressor of Ty6) (Tat-cotransactivator 2 protein) (Tat-CT2 protein) -O00161 O00161 reviewed SNP23_HUMAN Synaptosomal-associated protein 23 (SNAP-23) (Vesicle-membrane fusion protein SNAP-23) -I3L2J0 I3L2J0 unreviewed I3L2J0_HUMAN Capicua transcriptional repressor -Q00325 Q00325 reviewed S25A3_HUMAN Solute carrier family 25 member 3 (Phosphate carrier protein, mitochondrial) (Phosphate transport protein) (PTP) -Q86U86 Q86U86 reviewed PB1_HUMAN Protein polybromo-1 (hPB1) (BRG1-associated factor 180) (BAF180) (Polybromo-1D) -Q7LBC6 Q7LBC6 reviewed KDM3B_HUMAN Lysine-specific demethylase 3B (EC 1.14.11.65) (JmjC domain-containing histone demethylation protein 2B) (Jumonji domain-containing protein 1B) (Nuclear protein 5qNCA) ([histone H3]-dimethyl-L-lysine(9) demethylase 3B) -O14647 O14647 reviewed CHD2_HUMAN Chromodomain-helicase-DNA-binding protein 2 (CHD-2) (EC 3.6.4.12) (ATP-dependent helicase CHD2) -Q9UIQ6 Q9UIQ6 reviewed LCAP_HUMAN Leucyl-cystinyl aminopeptidase (Cystinyl aminopeptidase) (EC 3.4.11.3) (Insulin-regulated membrane aminopeptidase) (Insulin-responsive aminopeptidase) (IRAP) (Oxytocinase) (OTase) (Placental leucine aminopeptidase) (P-LAP) [Cleaved into: Leucyl-cystinyl aminopeptidase, pregnancy serum form] -O15347 O15347 reviewed HMGB3_HUMAN High mobility group protein B3 (High mobility group protein 2a) (HMG-2a) (High mobility group protein 4) (HMG-4) -Q9Y6D5 Q9Y6D5 reviewed BIG2_HUMAN Brefeldin A-inhibited guanine nucleotide-exchange protein 2 (Brefeldin A-inhibited GEP 2) (ADP-ribosylation factor guanine nucleotide-exchange factor 2) -Q15059 Q15059 reviewed BRD3_HUMAN Bromodomain-containing protein 3 (RING3-like protein) -P11274 P11274 reviewed BCR_HUMAN Breakpoint cluster region protein (EC 2.7.11.1) (Renal carcinoma antigen NY-REN-26) -Q8N0Z3 Q8N0Z3 reviewed SPICE_HUMAN Spindle and centriole-associated protein 1 (Coiled-coil domain-containing protein 52) (Spindle and centriole-associated protein) -Q8WVK2 Q8WVK2 reviewed SNR27_HUMAN U4/U6.U5 small nuclear ribonucleoprotein 27 kDa protein (U4/U6.U5 snRNP 27 kDa protein) (U4/U6.U5-27K) (Nucleic acid-binding protein RY-1) (U4/U6.U5 tri-snRNP-associated 27 kDa protein) (27K) (U4/U6.U5 tri-snRNP-associated protein 3) -Q53QZ3 Q53QZ3 reviewed RHG15_HUMAN Rho GTPase-activating protein 15 (ArhGAP15) (Rho-type GTPase-activating protein 15) -P04350 P04350 reviewed TBB4A_HUMAN Tubulin beta-4A chain (Tubulin 5 beta) (Tubulin beta-4 chain) -P52597 P52597 reviewed HNRPF_HUMAN Heterogeneous nuclear ribonucleoprotein F (hnRNP F) (Nucleolin-like protein mcs94-1) [Cleaved into: Heterogeneous nuclear ribonucleoprotein F, N-terminally processed] -Q15032 Q15032 reviewed R3HD1_HUMAN R3H domain-containing protein 1 -P05543 P05543 reviewed THBG_HUMAN Thyroxine-binding globulin (Serpin A7) (T4-binding globulin) -E7EQT4 E7EQT4 unreviewed E7EQT4_HUMAN Apoptotic chromatin condensation inducer 1 -Q92797 Q92797 reviewed SYMPK_HUMAN Symplekin -P02786 P02786 reviewed TFR1_HUMAN Transferrin receptor protein 1 (TR) (TfR) (TfR1) (Trfr) (T9) (p90) (CD antigen CD71) [Cleaved into: Transferrin receptor protein 1, serum form (sTfR)] -P30622 P30622 reviewed CLIP1_HUMAN CAP-Gly domain-containing linker protein 1 (Cytoplasmic linker protein 1) (Cytoplasmic linker protein 170 alpha-2) (CLIP-170) (Reed-Sternberg intermediate filament-associated protein) (Restin) -A0A0A0MTR7 A0A0A0MTR7 unreviewed A0A0A0MTR7_HUMAN Ring finger protein 213 -B3KTM8 B3KTM8 unreviewed B3KTM8_HUMAN Mortality factor 4 like 1 (cDNA FLJ38504 fis, clone HCHON2000156, highly similar to Mortality factor 4-like protein 1) -Q9UJK0 Q9UJK0 reviewed TSR3_HUMAN 18S rRNA aminocarboxypropyltransferase (EC 2.5.1.157) (20S S rRNA accumulation protein 3 homolog) (HsTsr3) -P25054 P25054 reviewed APC_HUMAN Adenomatous polyposis coli protein (Protein APC) (Deleted in polyposis 2.5) -Q9H8V3 Q9H8V3 reviewed ECT2_HUMAN Protein ECT2 (Epithelial cell-transforming sequence 2 oncogene) -X6R7X0 X6R7X0 unreviewed X6R7X0_HUMAN Transcription elongation factor A N-terminal and central domain-containing protein 2 -P02647 P02647 reviewed APOA1_HUMAN Apolipoprotein A-I (Apo-AI) (ApoA-I) (Apolipoprotein A1) [Cleaved into: Proapolipoprotein A-I (ProapoA-I); Truncated apolipoprotein A-I (Apolipoprotein A-I(1-242))] -Q6FI81 Q6FI81 reviewed CPIN1_HUMAN Anamorsin (Cytokine-induced apoptosis inhibitor 1) (Fe-S cluster assembly protein DRE2 homolog) -B9EGE7 B9EGE7 unreviewed B9EGE7_HUMAN ZNF507 protein (Zinc finger protein 507) -Q15233 Q15233 reviewed NONO_HUMAN Non-POU domain-containing octamer-binding protein (NonO protein) (54 kDa nuclear RNA- and DNA-binding protein) (p54(nrb)) (p54nrb) (55 kDa nuclear protein) (NMT55) (DNA-binding p52/p100 complex, 52 kDa subunit) -Q9H307 Q9H307 reviewed PININ_HUMAN Pinin (140 kDa nuclear and cell adhesion-related phosphoprotein) (Desmosome-associated protein) (Domain-rich serine protein) (DRS protein) (DRSP) (Melanoma metastasis clone A protein) (Nuclear protein SDK3) (SR-like protein) -Q9UNE7 Q9UNE7 reviewed CHIP_HUMAN E3 ubiquitin-protein ligase CHIP (EC 2.3.2.27) (Antigen NY-CO-7) (CLL-associated antigen KW-8) (Carboxy terminus of Hsp70-interacting protein) (RING-type E3 ubiquitin transferase CHIP) (STIP1 homology and U box-containing protein 1) -P31483 P31483 reviewed TIA1_HUMAN Cytotoxic granule associated RNA binding protein TIA1 (Nucleolysin TIA-1 isoform p40) (RNA-binding protein TIA-1) (T-cell-restricted intracellular antigen-1) (TIA-1) (p40-TIA-1) -P46109 P46109 reviewed CRKL_HUMAN Crk-like protein -Q7Z2Z1 Q7Z2Z1 reviewed TICRR_HUMAN Treslin (TopBP1-interacting checkpoint and replication regulator) (TopBP1-interacting, replication-stimulating protein) -I1E4Y6 I1E4Y6 unreviewed I1E4Y6_HUMAN GRB10 interacting GYF protein 2 -Q5VT06 Q5VT06 reviewed CE350_HUMAN Centrosome-associated protein 350 (Cep350) (Centrosome-associated protein of 350 kDa) -Q7Z4S6 Q7Z4S6 reviewed KI21A_HUMAN Kinesin-like protein KIF21A (Kinesin-like protein KIF2) (Renal carcinoma antigen NY-REN-62) -Q9UHI6 Q9UHI6 reviewed DDX20_HUMAN Probable ATP-dependent RNA helicase DDX20 (EC 3.6.1.15) (EC 3.6.4.13) (Component of gems 3) (DEAD box protein 20) (DEAD box protein DP 103) (Gemin-3) -P48651 P48651 reviewed PTSS1_HUMAN Phosphatidylserine synthase 1 (PSS-1) (PtdSer synthase 1) (EC 2.7.8.29) (Serine-exchange enzyme I) -O95696 O95696 reviewed BRD1_HUMAN Bromodomain-containing protein 1 (BR140-like protein) (Bromodomain and PHD finger-containing protein 2) -O95674 O95674 reviewed CDS2_HUMAN Phosphatidate cytidylyltransferase 2 (EC 2.7.7.41) (CDP-DAG synthase 2) (CDP-DG synthase 2) (CDP-diacylglycerol synthase 2) (CDS 2) (CDP-diglyceride pyrophosphorylase 2) (CDP-diglyceride synthase 2) (CTP:phosphatidate cytidylyltransferase 2) -F5H7W8 F5H7W8 unreviewed F5H7W8_HUMAN Protein CUSTOS -Q70CQ4 Q70CQ4 reviewed UBP31_HUMAN Ubiquitin carboxyl-terminal hydrolase 31 (EC 3.4.19.12) (Deubiquitinating enzyme 31) (Ubiquitin thioesterase 31) (Ubiquitin-specific-processing protease 31) -Q9C0C9 Q9C0C9 reviewed UBE2O_HUMAN (E3-independent) E2 ubiquitin-conjugating enzyme (EC 2.3.2.24) (E2/E3 hybrid ubiquitin-protein ligase UBE2O) (Ubiquitin carrier protein O) (Ubiquitin-conjugating enzyme E2 O) (Ubiquitin-conjugating enzyme E2 of 230 kDa) (Ubiquitin-conjugating enzyme E2-230K) (Ubiquitin-protein ligase O) -P46379 P46379 reviewed BAG6_HUMAN Large proline-rich protein BAG6 (BAG family molecular chaperone regulator 6) (BCL2-associated athanogene 6) (BAG-6) (HLA-B-associated transcript 3) (Protein G3) (Protein Scythe) -P21359 P21359 reviewed NF1_HUMAN Neurofibromin (Neurofibromatosis-related protein NF-1) [Cleaved into: Neurofibromin truncated] -P19174 P19174 reviewed PLCG1_HUMAN 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase gamma-1 (EC 3.1.4.11) (PLC-148) (Phosphoinositide phospholipase C-gamma-1) (Phospholipase C-II) (PLC-II) (Phospholipase C-gamma-1) (PLC-gamma-1) -Q12849 Q12849 reviewed GRSF1_HUMAN G-rich sequence factor 1 (GRSF-1) -Q75N03 Q75N03 reviewed HAKAI_HUMAN E3 ubiquitin-protein ligase Hakai (EC 2.3.2.27) (Casitas B-lineage lymphoma-transforming sequence-like protein 1) (c-Cbl-like protein 1) (RING finger protein 188) (RING-type E3 ubiquitin transferase Hakai) -Q9P0L0 Q9P0L0 reviewed VAPA_HUMAN Vesicle-associated membrane protein-associated protein A (VAMP-A) (VAMP-associated protein A) (VAP-A) (33 kDa VAMP-associated protein) (VAP-33) -Q9H4A6 Q9H4A6 reviewed GOLP3_HUMAN Golgi phosphoprotein 3 (Coat protein GPP34) (Mitochondrial DNA absence factor) (MIDAS) -Q99570 Q99570 reviewed PI3R4_HUMAN Phosphoinositide 3-kinase regulatory subunit 4 (PI3-kinase regulatory subunit 4) (EC 2.7.11.1) (PI3-kinase p150 subunit) (Phosphoinositide 3-kinase adaptor protein) -P27708 P27708 reviewed PYR1_HUMAN Multifunctional protein CAD (Carbamoyl phosphate synthetase 2-aspartate transcarbamylase-dihydroorotase) [Includes: Glutamine-dependent carbamoyl phosphate synthase (EC 6.3.5.5); Glutamine amidotransferase (GATase) (GLNase) (EC 3.5.1.2); Ammonium-dependent carbamoyl phosphate synthase (CPS) (CPSase) (EC 6.3.4.16); Aspartate carbamoyltransferase (EC 2.1.3.2); Dihydroorotase (EC 3.5.2.3)] -P49796 P49796 reviewed RGS3_HUMAN Regulator of G-protein signaling 3 (RGP3) (RGS3) -A0A087WZG4 A0A087WZG4 unreviewed A0A087WZG4_HUMAN Rho guanine nucleotide exchange factor 18 -Q9UIG0 Q9UIG0 reviewed BAZ1B_HUMAN Tyrosine-protein kinase BAZ1B (EC 2.7.10.2) (Bromodomain adjacent to zinc finger domain protein 1B) (Williams syndrome transcription factor) (Williams-Beuren syndrome chromosomal region 10 protein) (Williams-Beuren syndrome chromosomal region 9 protein) (hWALp2) -X5D2R7 X5D2R7 unreviewed X5D2R7_HUMAN Proteasome subunit beta -Q562F6 Q562F6 reviewed SGO2_HUMAN Shugoshin 2 (Shugoshin-2) (Shugoshin-like 2) (Tripin) -Q8IWV1 Q8IWV1 reviewed LAX1_HUMAN Lymphocyte transmembrane adapter 1 (Linker for activation of X cells) (Membrane-associated adapter protein LAX) -Q9NVA4 Q9NVA4 reviewed T184C_HUMAN Transmembrane protein 184C (Transmembrane protein 34) -Q6P6C2 Q6P6C2 reviewed ALKB5_HUMAN RNA demethylase ALKBH5 (EC 1.14.11.53) (Alkylated DNA repair protein alkB homolog 5) (Alpha-ketoglutarate-dependent dioxygenase alkB homolog 5) -Q15814 Q15814 reviewed TBCC_HUMAN Tubulin-specific chaperone C (Tubulin-folding cofactor C) (CFC) -A0A087WTJ2 A0A087WTJ2 unreviewed A0A087WTJ2_HUMAN GIMAP1-GIMAP5 readthrough -Q68DH5 Q68DH5 reviewed LMBD2_HUMAN G-protein coupled receptor-associated protein LMBRD2 (LMBR1 domain-containing protein 2) -Q9Y6X3 Q9Y6X3 reviewed SCC4_HUMAN MAU2 chromatid cohesion factor homolog (MAU-2) (Cohesin loading complex subunit SCC4 homolog) -Q6PL18 Q6PL18 reviewed ATAD2_HUMAN ATPase family AAA domain-containing protein 2 (EC 3.6.1.-) (AAA nuclear coregulator cancer-associated protein) (ANCCA) -Q13151 Q13151 reviewed ROA0_HUMAN Heterogeneous nuclear ribonucleoprotein A0 (hnRNP A0) -Q9BRF8 Q9BRF8 reviewed CPPED_HUMAN Serine/threonine-protein phosphatase CPPED1 (EC 3.1.3.16) (Calcineurin-like phosphoesterase domain-containing protein 1) (Complete S-transactivated protein 1) -Q15555 Q15555 reviewed MARE2_HUMAN Microtubule-associated protein RP/EB family member 2 (APC-binding protein EB2) (End-binding protein 2) (EB2) -P29597 P29597 reviewed TYK2_HUMAN Non-receptor tyrosine-protein kinase TYK2 (EC 2.7.10.2) -P42025 P42025 reviewed ACTY_HUMAN Beta-centractin (Actin-related protein 1B) (ARP1B) -P06127 P06127 reviewed CD5_HUMAN T-cell surface glycoprotein CD5 (Lymphocyte antigen T1/Leu-1) (CD antigen CD5) -P42331 P42331 reviewed RHG25_HUMAN Rho GTPase-activating protein 25 (Rho-type GTPase-activating protein 25) -Q92619 Q92619 reviewed HMHA1_HUMAN Rho GTPase-activating protein 45 [Cleaved into: Minor histocompatibility antigen HA-1 (mHag HA-1)] -O15042 O15042 reviewed SR140_HUMAN U2 snRNP-associated SURP motif-containing protein (140 kDa Ser/Arg-rich domain protein) (U2-associated protein SR140) -Q9BRA2 Q9BRA2 reviewed TXD17_HUMAN Thioredoxin domain-containing protein 17 (14 kDa thioredoxin-related protein) (TRP14) (Protein 42-9-9) (Thioredoxin-like protein 5) -A0A075B6G3 A0A075B6G3 unreviewed A0A075B6G3_HUMAN Dystrophin -Q12802 Q12802 reviewed AKP13_HUMAN A-kinase anchor protein 13 (AKAP-13) (AKAP-Lbc) (Breast cancer nuclear receptor-binding auxiliary protein) (Guanine nucleotide exchange factor Lbc) (Human thyroid-anchoring protein 31) (Lymphoid blast crisis oncogene) (LBC oncogene) (Non-oncogenic Rho GTPase-specific GTP exchange factor) (Protein kinase A-anchoring protein 13) (PRKA13) (p47) -Q5W0V3 Q5W0V3 reviewed FHI2A_HUMAN FHF complex subunit HOOK interacting protein 2A (FHIP2A) -O60832 O60832 reviewed DKC1_HUMAN H/ACA ribonucleoprotein complex subunit DKC1 (EC 5.4.99.-) (CBF5 homolog) (Dyskerin) (Nopp140-associated protein of 57 kDa) (Nucleolar protein NAP57) (Nucleolar protein family A member 4) (snoRNP protein DKC1) -Q969R8 Q969R8 reviewed ITFG2_HUMAN KICSTOR complex protein ITFG2 (Integrin-alpha FG-GAP repeat-containing protein 2) -Q9NRA8 Q9NRA8 reviewed 4ET_HUMAN Eukaryotic translation initiation factor 4E transporter (4E-T) (eIF4E transporter) (Eukaryotic translation initiation factor 4E nuclear import factor 1) -Q92585 Q92585 reviewed MAML1_HUMAN Mastermind-like protein 1 (Mam-1) -Q9UN36 Q9UN36 reviewed NDRG2_HUMAN Protein NDRG2 (N-myc downstream-regulated gene 2 protein) (Protein Syld709613) -O15021 O15021 reviewed MAST4_HUMAN Microtubule-associated serine/threonine-protein kinase 4 (EC 2.7.11.1) -P20674 P20674 reviewed COX5A_HUMAN Cytochrome c oxidase subunit 5A, mitochondrial (Cytochrome c oxidase polypeptide Va) -A0A087WZY3 Q8TCU4 reviewed ALMS1_HUMAN Centrosome-associated protein ALMS1 (Alstrom syndrome protein 1) -Q99729 Q99729 reviewed ROAA_HUMAN Heterogeneous nuclear ribonucleoprotein A/B (hnRNP A/B) (APOBEC1-binding protein 1) (ABBP-1) -Q9BRR9 Q9BRR9 reviewed RHG09_HUMAN Rho GTPase-activating protein 9 (Rho-type GTPase-activating protein 9) -O43809 O43809 reviewed CPSF5_HUMAN Cleavage and polyadenylation specificity factor subunit 5 (Cleavage and polyadenylation specificity factor 25 kDa subunit) (CPSF 25 kDa subunit) (Cleavage factor Im complex 25 kDa subunit) (CFIm25) (Nucleoside diphosphate-linked moiety X motif 21) (Nudix motif 21) (Nudix hydrolase 21) (Pre-mRNA cleavage factor Im 68 kDa subunit) -Q9C0J8 Q9C0J8 reviewed WDR33_HUMAN pre-mRNA 3' end processing protein WDR33 (WD repeat-containing protein 33) (WD repeat-containing protein of 146 kDa) -A0A0G2JH68 A0A0G2JH68 A0A0G2JH68_HUMAN deleted -Q9BWF3 Q9BWF3 reviewed RBM4_HUMAN RNA-binding protein 4 (Lark homolog) (hLark) (RNA-binding motif protein 4) (RNA-binding motif protein 4a) -P62328 P62328 reviewed TYB4_HUMAN Thymosin beta-4 (T beta-4) (Fx) [Cleaved into: Hemoregulatory peptide AcSDKP (Ac-Ser-Asp-Lys-Pro) (N-acetyl-SDKP) (AcSDKP) (Seraspenide)] -Q9UBP0 Q9UBP0 reviewed SPAST_HUMAN Spastin (EC 5.6.1.1) (Spastic paraplegia 4 protein) -P62854 P62854 reviewed RS26_HUMAN Small ribosomal subunit protein eS26 (40S ribosomal protein S26) -Q96T49 Q96T49 reviewed PP16B_HUMAN Protein phosphatase 1 regulatory inhibitor subunit 16B (Ankyrin repeat domain-containing protein 4) (CAAX box protein TIMAP) (TGF-beta-inhibited membrane-associated protein) (hTIMAP) -Q9NRJ4 Q9NRJ4 reviewed TULP4_HUMAN Tubby-related protein 4 (Tubby superfamily protein) (Tubby-like protein 4) -Q7Z4G1 Q7Z4G1 reviewed COMD6_HUMAN COMM domain-containing protein 6 -O60669 O60669 reviewed MOT2_HUMAN Monocarboxylate transporter 2 (MCT 2) (Solute carrier family 16 member 7) -O75995 O75995 reviewed SASH3_HUMAN SAM and SH3 domain-containing protein 3 (SH3 protein expressed in lymphocytes homolog) -P53634 P53634 reviewed CATC_HUMAN Dipeptidyl peptidase 1 (EC 3.4.14.1) (Cathepsin C) (Cathepsin J) (Dipeptidyl peptidase I) (DPP-I) (DPPI) (Dipeptidyl transferase) [Cleaved into: Dipeptidyl peptidase 1 exclusion domain chain (Dipeptidyl peptidase I exclusion domain chain); Dipeptidyl peptidase 1 heavy chain (Dipeptidyl peptidase I heavy chain); Dipeptidyl peptidase 1 light chain (Dipeptidyl peptidase I light chain)] -O94761 O94761 reviewed RECQ4_HUMAN ATP-dependent DNA helicase Q4 (EC 5.6.2.4) (DNA 3'-5' helicase RecQ4) (DNA helicase, RecQ-like type 4) (RecQ4) (RTS) (RecQ protein-like 4) -Q8IXM2 Q8IXM2 reviewed BAP18_HUMAN Chromatin complexes subunit BAP18 (BPTF-associated protein of 18 kDa) -Q9BZ95 Q9BZ95 reviewed NSD3_HUMAN Histone-lysine N-methyltransferase NSD3 (EC 2.1.1.370) (EC 2.1.1.371) (Nuclear SET domain-containing protein 3) (Protein whistle) (WHSC1-like 1 isoform 9 with methyltransferase activity to lysine) (Wolf-Hirschhorn syndrome candidate 1-like protein 1) (WHSC1-like protein 1) -Q9ULH0 Q9ULH0 reviewed KDIS_HUMAN Kinase D-interacting substrate of 220 kDa (Ankyrin repeat-rich membrane-spanning protein) -Q9BXP5 Q9BXP5 reviewed SRRT_HUMAN Serrate RNA effector molecule homolog (Arsenite-resistance protein 2) -P46013 P46013 reviewed KI67_HUMAN Proliferation marker protein Ki-67 (Antigen identified by monoclonal antibody Ki-67) (Antigen KI-67) (Antigen Ki67) -Q86UE4 Q86UE4 reviewed LYRIC_HUMAN Protein LYRIC (3D3/LYRIC) (Astrocyte elevated gene-1 protein) (AEG-1) (Lysine-rich CEACAM1 co-isolated protein) (Metadherin) (Metastasis adhesion protein) -A8MXP9 A8MXP9 unreviewed A8MXP9_HUMAN Matrin 3 -Q96I23 Q96I23 reviewed PREY_HUMAN Protein preY, mitochondrial (PIGY upstream reading frame protein) -Q8N9T8 Q8N9T8 reviewed KRI1_HUMAN Protein KRI1 homolog -P27824 P27824 reviewed CALX_HUMAN Calnexin (IP90) (Major histocompatibility complex class I antigen-binding protein p88) (p90) -Q6NUJ5 Q6NUJ5 reviewed PWP2B_HUMAN PWWP domain-containing protein 2B -H0YL70 H0YL70 unreviewed H0YL70_HUMAN TLE family member 3, transcriptional corepressor -Q8WWW8 Q8WWW8 reviewed GAB3_HUMAN GRB2-associated-binding protein 3 (GRB2-associated binder 3) (Growth factor receptor bound protein 2-associated protein 3) -Q15435 Q15435 reviewed PP1R7_HUMAN Protein phosphatase 1 regulatory subunit 7 (Protein phosphatase 1 regulatory subunit 22) -Q9H000 Q9H000 reviewed MKRN2_HUMAN E3 ubiquitin-protein ligase makorin-2 (EC 2.3.2.27) (RING finger protein 62) (RING-type E3 ubiquitin transferase makorin-2) -Q8WVM8 Q8WVM8 reviewed SCFD1_HUMAN Sec1 family domain-containing protein 1 (SLY1 homolog) (Sly1p) (Syntaxin-binding protein 1-like 2) -Q9BW19 Q9BW19 reviewed KIFC1_HUMAN Kinesin-like protein KIFC1 (Kinesin-like protein 2) (Kinesin-related protein HSET) -J3KNZ9 J3KNZ9 unreviewed J3KNZ9_HUMAN Fibrosin -Q13422 Q13422 reviewed IKZF1_HUMAN DNA-binding protein Ikaros (Ikaros family zinc finger protein 1) (Lymphoid transcription factor LyF-1) -A0A140T9E9 A0A140T9E9 unreviewed A0A140T9E9_HUMAN Bromodomain-containing protein 2 -X6RAB3 X6RAB3 unreviewed X6RAB3_HUMAN USP6 N-terminal like -Q8N5I9 Q8N5I9 reviewed NOPC1_HUMAN NOP protein chaperone 1 -Q6PCT2 Q6PCT2 reviewed FXL19_HUMAN F-box/LRR-repeat protein 19 (F-box and leucine-rich repeat protein 19) -Q96GA3 Q96GA3 reviewed LTV1_HUMAN Protein LTV1 homolog -Q5T4S7 Q5T4S7 reviewed UBR4_HUMAN E3 ubiquitin-protein ligase UBR4 (EC 2.3.2.27) (600 kDa retinoblastoma protein-associated factor) (N-recognin-4) (RING-type E3 ubiquitin transferase UBR4) (Retinoblastoma-associated factor of 600 kDa) (RBAF600) (p600) (Zinc finger UBR1-type protein 1) -E9PJ55 E9PJ55 unreviewed E9PJ55_HUMAN T-complex 11 like 1 -O76021 O76021 reviewed RL1D1_HUMAN Ribosomal L1 domain-containing protein 1 (CATX-11) (Cellular senescence-inhibited gene protein) (Protein PBK1) -A2RU30 A2RU30 reviewed TESP1_HUMAN Protein TESPA1 (Thymocyte-expressed positive selection-associated protein 1) -Q8WU90 Q8WU90 reviewed ZC3HF_HUMAN Zinc finger CCCH domain-containing protein 15 (DRG family-regulatory protein 1) (Likely ortholog of mouse immediate early response erythropoietin 4) -Q86TI0 Q86TI0 reviewed TBCD1_HUMAN TBC1 domain family member 1 -Q9Y6V0 Q9Y6V0 reviewed PCLO_HUMAN Protein piccolo (Aczonin) -Q8WUX9 Q8WUX9 reviewed CHMP7_HUMAN Charged multivesicular body protein 7 (Chromatin-modifying protein 7) -Q96ST2 Q96ST2 reviewed IWS1_HUMAN Protein IWS1 homolog (IWS1-like protein) -Q86VR2 Q86VR2 reviewed RETR3_HUMAN Reticulophagy regulator 3 -Q9H0E3 Q9H0E3 reviewed SP130_HUMAN Histone deacetylase complex subunit SAP130 (130 kDa Sin3-associated polypeptide) (Sin3-associated polypeptide p130) -O00115 O00115 reviewed DNS2A_HUMAN Deoxyribonuclease-2-alpha (EC 3.1.22.1) (Acid DNase) (Deoxyribonuclease II alpha) (DNase II alpha) (Lysosomal DNase II) (R31240_2) -Q9HAZ1 Q9HAZ1 reviewed CLK4_HUMAN Dual specificity protein kinase CLK4 (EC 2.7.12.1) (CDC-like kinase 4) -A1X283 A1X283 reviewed SPD2B_HUMAN SH3 and PX domain-containing protein 2B (Adapter protein HOFI) (Factor for adipocyte differentiation 49) (Tyrosine kinase substrate with four SH3 domains) -Q9UPP1 Q9UPP1 reviewed PHF8_HUMAN Histone lysine demethylase PHF8 (EC 1.14.11.27) (EC 1.14.11.65) (PHD finger protein 8) ([histone H3]-dimethyl-L-lysine(36) demethylase PHF8) ([histone H3]-dimethyl-L-lysine(9) demethylase PHF8) -O75081 O75081 reviewed MTG16_HUMAN Protein CBFA2T3 (MTG8-related protein 2) (Myeloid translocation gene on chromosome 16 protein) (hMTG16) (Zinc finger MYND domain-containing protein 4) -Q69YN4 Q69YN4 reviewed VIR_HUMAN Protein virilizer homolog -P18507 P18507 reviewed GBRG2_HUMAN Gamma-aminobutyric acid receptor subunit gamma-2 (GABA(A) receptor subunit gamma-2) (GABAAR subunit gamma-2) -Q9Y2W2 Q9Y2W2 reviewed WBP11_HUMAN WW domain-binding protein 11 (WBP-11) (Npw38-binding protein) (NpwBP) (SH3 domain-binding protein SNP70) (Splicing factor that interacts with PQBP-1 and PP1) -O75616 O75616 reviewed ERAL1_HUMAN GTPase Era, mitochondrial (H-ERA) (hERA) (Conserved ERA-like GTPase) (CEGA) (ERA-W) (ERA-like protein 1) -C9JI98 C9JI98 reviewed TM238_HUMAN Transmembrane protein 238 -Q9HC62 Q9HC62 reviewed SENP2_HUMAN Sentrin-specific protease 2 (EC 3.4.22.-) (Axam2) (SMT3-specific isopeptidase 2) (Smt3ip2) (Sentrin/SUMO-specific protease SENP2) -Q6UWD8 Q6UWD8 reviewed CP054_HUMAN Transmembrane protein C16orf54 -P02649 P02649 reviewed APOE_HUMAN Apolipoprotein E (Apo-E) -Q9HCH0 Q9HCH0 reviewed NCK5L_HUMAN Nck-associated protein 5-like (NCKAP5-like) (Centrosomal protein of 169 kDa) (Cep169) -Q96I24 Q96I24 reviewed FUBP3_HUMAN Far upstream element-binding protein 3 (FUSE-binding protein 3) -Q7Z5K2 Q7Z5K2 reviewed WAPL_HUMAN Wings apart-like protein homolog (Friend of EBNA2 protein) (WAPL cohesin release factor) -Q7Z589 Q7Z589 reviewed EMSY_HUMAN BRCA2-interacting transcriptional repressor EMSY -Q86X95 Q86X95 reviewed CIR1_HUMAN Corepressor interacting with RBPJ 1 (CBF1-interacting corepressor) (Recepin) -Q5HYJ3 Q5HYJ3 reviewed FA76B_HUMAN Protein FAM76B -P41182 P41182 reviewed BCL6_HUMAN B-cell lymphoma 6 protein (BCL-6) (B-cell lymphoma 5 protein) (BCL-5) (Protein LAZ-3) (Zinc finger and BTB domain-containing protein 27) (Zinc finger protein 51) -Q5T6C5 Q5T6C5 reviewed AT7L2_HUMAN Ataxin-7-like protein 2 -Q9NQC7 Q9NQC7 reviewed CYLD_HUMAN Ubiquitin carboxyl-terminal hydrolase CYLD (EC 3.4.19.12) (Deubiquitinating enzyme CYLD) (Ubiquitin thioesterase CYLD) (Ubiquitin-specific-processing protease CYLD) -Q13905 Q13905 reviewed RPGF1_HUMAN Rap guanine nucleotide exchange factor 1 (CRK SH3-binding GNRP) (Guanine nucleotide-releasing factor 2) (Protein C3G) -Q6PD62 Q6PD62 reviewed CTR9_HUMAN RNA polymerase-associated protein CTR9 homolog (SH2 domain-binding protein 1) -Q9Y3D3 Q9Y3D3 reviewed RT16_HUMAN Small ribosomal subunit protein bS16m (28S ribosomal protein S16, mitochondrial) (MRP-S16) (S16mt) -P22415 P22415 reviewed USF1_HUMAN Upstream stimulatory factor 1 (Class B basic helix-loop-helix protein 11) (bHLHb11) (Major late transcription factor 1) -P10242 P10242 reviewed MYB_HUMAN Transcriptional activator Myb (Proto-oncogene c-Myb) -Q9BUJ2 Q9BUJ2 reviewed HNRL1_HUMAN Heterogeneous nuclear ribonucleoprotein U-like protein 1 (Adenovirus early region 1B-associated protein 5) (E1B-55 kDa-associated protein 5) (E1B-AP5) -J3KQL8 J3KQL8 unreviewed J3KQL8_HUMAN Apolipoprotein L2 -B4DTS2 Q9BZL6 reviewed KPCD2_HUMAN Serine/threonine-protein kinase D2 (EC 2.7.11.13) (nPKC-D2) -P55199 P55199 reviewed ELL_HUMAN RNA polymerase II elongation factor ELL (Eleven-nineteen lysine-rich leukemia protein) -Q96A57 Q96A57 reviewed TM230_HUMAN Transmembrane protein 230 -O94763 O94763 reviewed RMP_HUMAN Unconventional prefoldin RPB5 interactor 1 (Protein NNX3) (Protein phosphatase 1 regulatory subunit 19) (RNA polymerase II subunit 5-mediating protein) (RPB5-mediating protein) -Q6DKI7 Q6DKI7 reviewed PVRIG_HUMAN Transmembrane protein PVRIG (CD112 receptor) (CD112R) (Poliovirus receptor-related immunoglobulin domain-containing protein) -Q02086 Q02086 reviewed SP2_HUMAN Transcription factor Sp2 -H3BLZ8 Q92841 reviewed DDX17_HUMAN Probable ATP-dependent RNA helicase DDX17 (EC 3.6.4.13) (DEAD box protein 17) (DEAD box protein p72) (DEAD box protein p82) (RNA-dependent helicase p72) -P60866 P60866 reviewed RS20_HUMAN Small ribosomal subunit protein uS10 (40S ribosomal protein S20) -Q8IYB4 Q8IYB4 reviewed PEX5R_HUMAN PEX5-related protein (PEX2-related protein) (PEX5-like protein) (Peroxin-5-related protein) (Peroxisome biogenesis factor 5-like) (Tetratricopeptide repeat-containing Rab8b-interacting protein) (Pex5Rp) (TRIP8b) -Q01780 Q01780 reviewed EXOSX_HUMAN Exosome complex component 10 (EC 3.1.13.-) (Autoantigen PM/Scl 2) (P100 polymyositis-scleroderma overlap syndrome-associated autoantigen) (Polymyositis/scleroderma autoantigen 100 kDa) (PM/Scl-100) (Polymyositis/scleroderma autoantigen 2) -O75533 O75533 reviewed SF3B1_HUMAN Splicing factor 3B subunit 1 (Pre-mRNA-splicing factor SF3b 155 kDa subunit) (SF3b155) (Spliceosome-associated protein 155) (SAP 155) -A0A0J9YYD9 A0A0J9YYD9 unreviewed A0A0J9YYD9_HUMAN Tudor domain-containing protein -Q01664 Q01664 reviewed TFAP4_HUMAN Transcription factor AP-4 (Activating enhancer-binding protein 4) (Class C basic helix-loop-helix protein 41) (bHLHc41) -Q99952 Q99952 reviewed PTN18_HUMAN Tyrosine-protein phosphatase non-receptor type 18 (EC 3.1.3.48) (Brain-derived phosphatase) -Q96D15 Q96D15 reviewed RCN3_HUMAN Reticulocalbin-3 (EF-hand calcium-binding protein RLP49) -Q96P16 Q96P16 reviewed RPR1A_HUMAN Regulation of nuclear pre-mRNA domain-containing protein 1A (Cyclin-dependent kinase inhibitor 2B-related protein) (p15INK4B-related protein) -Q8TF61 Q8TF61 reviewed FBX41_HUMAN F-box only protein 41 -P48382 P48382 reviewed RFX5_HUMAN DNA-binding protein RFX5 (Regulatory factor X 5) -Q6NZY4 Q6NZY4 reviewed ZCHC8_HUMAN Zinc finger CCHC domain-containing protein 8 (TRAMP-like complex RNA-binding factor ZCCHC8) -Q9H4Z2 Q9H4Z2 reviewed ZN335_HUMAN Zinc finger protein 335 (NRC-interacting factor 1) (NIF-1) -Q86X53 Q86X53 reviewed ERIC1_HUMAN Glutamate-rich protein 1 -P48729 P48729 reviewed KC1A_HUMAN Casein kinase I isoform alpha (CKI-alpha) (EC 2.7.11.1) (CK1) -Q86XN7 Q86XN7 reviewed PRSR1_HUMAN Proline and serine-rich protein 1 -P84085 P84085 reviewed ARF5_HUMAN ADP-ribosylation factor 5 -Q68E01 Q68E01 reviewed INT3_HUMAN Integrator complex subunit 3 (Int3) (SOSS complex subunit A) (Sensor of single-strand DNA complex subunit A) (SOSS-A) (Sensor of ssDNA subunit A) -Q14571 Q14571 reviewed ITPR2_HUMAN Inositol 1,4,5-trisphosphate receptor type 2 (IP3 receptor isoform 2) (IP3R 2) (InsP3R2) (Type 2 inositol 1,4,5-trisphosphate receptor) (Type 2 InsP3 receptor) -A9Z1X7 A9Z1X7 unreviewed A9Z1X7_HUMAN Serine and arginine repetitive matrix 1 -Q5TCZ1 Q5TCZ1 reviewed SPD2A_HUMAN SH3 and PX domain-containing protein 2A (Adapter protein TKS5) (Five SH3 domain-containing protein) (SH3 multiple domains protein 1) (Tyrosine kinase substrate with five SH3 domains) -P35240 P35240 reviewed MERL_HUMAN Merlin (Moesin-ezrin-radixin-like protein) (Neurofibromin-2) (Schwannomerlin) (Schwannomin) -Q13370 Q13370 reviewed PDE3B_HUMAN cGMP-inhibited 3',5'-cyclic phosphodiesterase 3B (EC 3.1.4.17) (CGIPDE1) (CGIP1) (Cyclic GMP-inhibited phosphodiesterase B) (CGI-PDE B) -Q13094 Q13094 reviewed LCP2_HUMAN Lymphocyte cytosolic protein 2 (SH2 domain-containing leukocyte protein of 76 kDa) (SLP-76 tyrosine phosphoprotein) (SLP76) -Q9HB71 Q9HB71 reviewed CYBP_HUMAN Calcyclin-binding protein (CacyBP) (hCacyBP) (S100A6-binding protein) (Siah-interacting protein) -A0A075B7F8 A8CG34 reviewed P121C_HUMAN Nuclear envelope pore membrane protein POM 121C (Nuclear pore membrane protein 121-2) (POM121-2) (Pore membrane protein of 121 kDa C) -P68366 P68366 reviewed TBA4A_HUMAN Tubulin alpha-4A chain (EC 3.6.5.-) (Alpha-tubulin 1) (Testis-specific alpha-tubulin) (Tubulin H2-alpha) (Tubulin alpha-1 chain) -Q13542 Q13542 reviewed 4EBP2_HUMAN Eukaryotic translation initiation factor 4E-binding protein 2 (4E-BP2) (eIF4E-binding protein 2) -P00492 P00492 reviewed HPRT_HUMAN Hypoxanthine-guanine phosphoribosyltransferase (HGPRT) (HGPRTase) (EC 2.4.2.8) -Q9NRH2 Q9NRH2 reviewed SNRK_HUMAN SNF-related serine/threonine-protein kinase (EC 2.7.11.1) (SNF1-related kinase) -P36915 P36915 reviewed GNL1_HUMAN Guanine nucleotide-binding protein-like 1 (GTP-binding protein HSR1) -Q13247 Q13247 reviewed SRSF6_HUMAN Serine/arginine-rich splicing factor 6 (Pre-mRNA-splicing factor SRP55) (Splicing factor, arginine/serine-rich 6) -Q92747 Q92747 reviewed ARC1A_HUMAN Actin-related protein 2/3 complex subunit 1A (SOP2-like protein) -Q9BQG0 Q9BQG0 reviewed MBB1A_HUMAN Myb-binding protein 1A -Q17RY0 Q17RY0 reviewed CPEB4_HUMAN Cytoplasmic polyadenylation element-binding protein 4 (CPE-BP4) (CPE-binding protein 4) (hCPEB-4) -P36542 P36542 reviewed ATPG_HUMAN ATP synthase subunit gamma, mitochondrial (ATP synthase F1 subunit gamma) (F-ATPase gamma subunit) -Q7L0J3 Q7L0J3 reviewed SV2A_HUMAN Synaptic vesicle glycoprotein 2A -Q15700 Q15700 reviewed DLG2_HUMAN Disks large homolog 2 (Channel-associated protein of synapse-110) (Chapsyn-110) (Postsynaptic density protein PSD-93) -Q8WVZ9 Q8WVZ9 reviewed KBTB7_HUMAN Kelch repeat and BTB domain-containing protein 7 -Q8N2F6 Q8N2F6 reviewed ARM10_HUMAN Armadillo repeat-containing protein 10 (Splicing variant involved in hepatocarcinogenesis protein) -P30304 P30304 reviewed MPIP1_HUMAN M-phase inducer phosphatase 1 (EC 3.1.3.48) (Dual specificity phosphatase Cdc25A) -Q9Y6H1 Q9Y6H1 reviewed CHCH2_HUMAN Coiled-coil-helix-coiled-coil-helix domain-containing protein 2 (Aging-associated gene 10 protein) (HCV NS2 trans-regulated protein) (NS2TP) -Q86Y91 Q86Y91 reviewed KI18B_HUMAN Kinesin-like protein KIF18B -C9JQE8 C9JQE8 unreviewed C9JQE8_HUMAN Nuclear receptor corepressor 2 -Q7L4I2 Q7L4I2 reviewed RSRC2_HUMAN Arginine/serine-rich coiled-coil protein 2 -Q8IUE6 Q8IUE6 reviewed H2A2B_HUMAN Histone H2A type 2-B (H2A-clustered histone 21) -P68133 P68133 reviewed ACTS_HUMAN Actin, alpha skeletal muscle (EC 3.6.4.-) (Alpha-actin-1) [Cleaved into: Actin, alpha skeletal muscle, intermediate form] -Q5VT52 Q5VT52 reviewed RPRD2_HUMAN Regulation of nuclear pre-mRNA domain-containing protein 2 -Q96BY6 Q96BY6 reviewed DOC10_HUMAN Dedicator of cytokinesis protein 10 (Zizimin-3) -Q9BSJ8 Q9BSJ8 reviewed ESYT1_HUMAN Extended synaptotagmin-1 (E-Syt1) (Membrane-bound C2 domain-containing protein) -Q14149 Q14149 reviewed MORC3_HUMAN MORC family CW-type zinc finger protein 3 (Nuclear matrix protein 2) (Zinc finger CW-type coiled-coil domain protein 3) -Q13177 Q13177 reviewed PAK2_HUMAN Serine/threonine-protein kinase PAK 2 (EC 2.7.11.1) (Gamma-PAK) (PAK65) (S6/H4 kinase) (p21-activated kinase 2) (PAK-2) (p58) [Cleaved into: PAK-2p27 (p27); PAK-2p34 (p34) (C-t-PAK2)] -Q14699 Q14699 reviewed RFTN1_HUMAN Raftlin (Cell migration-inducing gene 2 protein) (Raft-linking protein) -Q69YQ0 Q69YQ0 reviewed CYTSA_HUMAN Cytospin-A (Renal carcinoma antigen NY-REN-22) (Sperm antigen with calponin homology and coiled-coil domains 1-like) (SPECC1-like protein) -A6NMQ1 A6NMQ1 unreviewed A6NMQ1_HUMAN DNA polymerase (EC 2.7.7.7) -O95231 O95231 reviewed VENTX_HUMAN Homeobox protein VENTX (VENT homeobox homolog) (VENT-like homeobox protein 2) -Q07864 Q07864 reviewed DPOE1_HUMAN DNA polymerase epsilon catalytic subunit A (EC 2.7.7.7) (3'-5' exodeoxyribonuclease) (EC 3.1.11.-) (DNA polymerase II subunit A) -Q9NX58 Q9NX58 reviewed LYAR_HUMAN Cell growth-regulating nucleolar protein -Q8ND76 Q8ND76 reviewed CCNY_HUMAN Cyclin-Y (Cyc-Y) (Cyclin box protein 1) (Cyclin fold protein 1) (cyclin-X) -Q92890 Q92890 reviewed UFD1_HUMAN Ubiquitin recognition factor in ER-associated degradation protein 1 (Ubiquitin fusion degradation protein 1) (UB fusion protein 1) -Q96L91 Q96L91 reviewed EP400_HUMAN E1A-binding protein p400 (EC 3.6.4.-) (CAG repeat protein 32) (Domino homolog) (hDomino) (Trinucleotide repeat-containing gene 12 protein) (p400 kDa SWI2/SNF2-related protein) -Q13415 Q13415 reviewed ORC1_HUMAN Origin recognition complex subunit 1 (Replication control protein 1) -Q27J81 Q27J81 reviewed INF2_HUMAN Inverted formin-2 (HBEBP2-binding protein C) -A0A024R0Y4 A0A024R0Y4 unreviewed A0A024R0Y4_HUMAN Transcriptional adapter -O95218 O95218 reviewed ZRAB2_HUMAN Zinc finger Ran-binding domain-containing protein 2 (Zinc finger protein 265) (Zinc finger, splicing) -Q96II8 Q96II8 reviewed LRCH3_HUMAN DISP complex protein LRCH3 (Leucine-rich repeat and calponin homology domain-containing protein 3) -Q15477 Q15477 reviewed SKI2_HUMAN Superkiller complex protein 2 (Ski2) (EC 3.6.4.13) (Helicase-like protein) (HLP) -O75528 O75528 reviewed TADA3_HUMAN Transcriptional adapter 3 (ADA3 homolog) (hADA3) (STAF54) (Transcriptional adapter 3-like) (ADA3-like protein) -A0A075B738 P16284 reviewed PECA1_HUMAN Platelet endothelial cell adhesion molecule (PECAM-1) (EndoCAM) (GPIIA') (PECA1) (CD antigen CD31) -Q6ZNJ1 Q6ZNJ1 reviewed NBEL2_HUMAN Neurobeachin-like protein 2 -P49327 P49327 reviewed FAS_HUMAN Fatty acid synthase (EC 2.3.1.85) (Type I fatty acid synthase) [Includes: [Acyl-carrier-protein] S-acetyltransferase (EC 2.3.1.38); [Acyl-carrier-protein] S-malonyltransferase (EC 2.3.1.39); 3-oxoacyl-[acyl-carrier-protein] synthase (EC 2.3.1.41); 3-oxoacyl-[acyl-carrier-protein] reductase (EC 1.1.1.100); 3-hydroxyacyl-[acyl-carrier-protein] dehydratase (EC 4.2.1.59); Enoyl-[acyl-carrier-protein] reductase (EC 1.3.1.39); Acyl-[acyl-carrier-protein] hydrolase (EC 3.1.2.14)] -A0A087X188 A0A087X188 A0A087X188_HUMAN deleted -A0A0G2JNZ2 A0A0G2JNZ2 unreviewed A0A0G2JNZ2_HUMAN Protein scribble homolog -O96007 O96007 reviewed MOC2B_HUMAN Molybdopterin synthase catalytic subunit (EC 2.8.1.12) (MOCO1-B) (Molybdenum cofactor synthesis protein 2 large subunit) (Molybdenum cofactor synthesis protein 2B) (MOCS2B) (Molybdopterin-synthase large subunit) (MPT synthase large subunit) -J3KMZ8 J3KMZ8 unreviewed J3KMZ8_HUMAN Double PHD fingers 2 -Q96GM8 Q96GM8 reviewed TOE1_HUMAN Target of EGR1 protein 1 -Q00839 Q00839 reviewed HNRPU_HUMAN Heterogeneous nuclear ribonucleoprotein U (hnRNP U) (GRIP120) (Nuclear p120 ribonucleoprotein) (Scaffold-attachment factor A) (SAF-A) (p120) (pp120) -P78414 P78414 reviewed IRX1_HUMAN Iroquois-class homeodomain protein IRX-1 (Homeodomain protein IRXA1) (Iroquois homeobox protein 1) -O43861 O43861 reviewed ATP9B_HUMAN Probable phospholipid-transporting ATPase IIB (EC 7.6.2.1) (ATPase class II type 9B) -E9PC69 E9PC69 unreviewed E9PC69_HUMAN non-specific serine/threonine protein kinase (EC 2.7.11.1) -Q9UPR0 Q9UPR0 reviewed PLCL2_HUMAN Inactive phospholipase C-like protein 2 (PLC-L(2)) (PLC-L2) (Phospholipase C-L2) (Phospholipase C-epsilon-2) (PLC-epsilon-2) -Q9NXL9 Q9NXL9 reviewed MCM9_HUMAN DNA helicase MCM9 (hMCM9) (EC 3.6.4.12) (Mini-chromosome maintenance deficient domain-containing protein 1) (Minichromosome maintenance 9) -Q92733 Q92733 reviewed PRCC_HUMAN Proline-rich protein PRCC (Papillary renal cell carcinoma translocation-associated gene protein) -P49915 P49915 reviewed GUAA_HUMAN GMP synthase [glutamine-hydrolyzing] (EC 6.3.5.2) (GMP synthetase) (Glutamine amidotransferase) -Q15154 Q15154 reviewed PCM1_HUMAN Pericentriolar material 1 protein (PCM-1) (hPCM-1) -A0A087WX41 A0A087WX41 unreviewed A0A087WX41_HUMAN Clathrin heavy chain like 1 -P35626 P35626 reviewed ARBK2_HUMAN G protein-coupled receptor kinase 3 (EC 2.7.11.15) (Beta-adrenergic receptor kinase 2) (Beta-ARK-2) -Q8IWZ8 Q8IWZ8 reviewed SUGP1_HUMAN SURP and G-patch domain-containing protein 1 (RNA-binding protein RBP) (Splicing factor 4) -Q13409 Q13409 reviewed DC1I2_HUMAN Cytoplasmic dynein 1 intermediate chain 2 (Cytoplasmic dynein intermediate chain 2) (Dynein intermediate chain 2, cytosolic) (DH IC-2) -Q2NL67 Q2NL67 reviewed PARP6_HUMAN Protein mono-ADP-ribosyltransferase PARP6 (EC 2.4.2.-) (ADP-ribosyltransferase diphtheria toxin-like 17) (ARTD17) (Poly [ADP-ribose] polymerase 6) (PARP-6) -Q99442 Q99442 reviewed SEC62_HUMAN Translocation protein SEC62 (Translocation protein 1) (TP-1) (hTP-1) -Q06587 Q06587 reviewed RING1_HUMAN E3 ubiquitin-protein ligase RING1 (EC 2.3.2.27) (Polycomb complex protein RING1) (RING finger protein 1) (RING-type E3 ubiquitin transferase RING1) (Really interesting new gene 1 protein) -O95625 O95625 reviewed ZBT11_HUMAN Zinc finger and BTB domain-containing protein 11 -Q66K14 Q66K14 reviewed TBC9B_HUMAN TBC1 domain family member 9B -Q14669 Q14669 reviewed TRIPC_HUMAN E3 ubiquitin-protein ligase TRIP12 (EC 2.3.2.26) (E3 ubiquitin-protein ligase for Arf) (ULF) (HECT-type E3 ubiquitin transferase TRIP12) (Thyroid receptor-interacting protein 12) (TR-interacting protein 12) (TRIP-12) -P09496 P09496 reviewed CLCA_HUMAN Clathrin light chain A (Lca) -Q15776 Q15776 reviewed ZKSC8_HUMAN Zinc finger protein with KRAB and SCAN domains 8 (LD5-1) (Zinc finger protein 192) -Q9Y3Q8 Q9Y3Q8 reviewed T22D4_HUMAN TSC22 domain family protein 4 (TSC22-related-inducible leucine zipper protein 2) -Q2TAZ0 Q2TAZ0 reviewed ATG2A_HUMAN Autophagy-related protein 2 homolog A -Q9NYV6 Q9NYV6 reviewed RRN3_HUMAN RNA polymerase I-specific transcription initiation factor RRN3 (Transcription initiation factor IA) (TIF-IA) -P29966 P29966 reviewed MARCS_HUMAN Myristoylated alanine-rich C-kinase substrate (MARCKS) (Protein kinase C substrate, 80 kDa protein, light chain) (80K-L protein) (PKCSL) -Q9BZZ5 Q9BZZ5 reviewed API5_HUMAN Apoptosis inhibitor 5 (API-5) (Antiapoptosis clone 11 protein) (AAC-11) (Cell migration-inducing gene 8 protein) (Fibroblast growth factor 2-interacting factor) (FIF) (Protein XAGL) -Q9Y5W3 Q9Y5W3 reviewed KLF2_HUMAN Krueppel-like factor 2 (Lung krueppel-like factor) -Q13118 Q13118 reviewed KLF10_HUMAN Krueppel-like factor 10 (EGR-alpha) (Transforming growth factor-beta-inducible early growth response protein 1) (TGFB-inducible early growth response protein 1) (TIEG-1) -J3KPH8 J3KPH8 unreviewed J3KPH8_HUMAN Histone deacetylase (EC 3.5.1.98) -Q9H875 Q9H875 reviewed PKRI1_HUMAN PRKR-interacting protein 1 -F8VX04 F8VX04 unreviewed F8VX04_HUMAN Solute carrier family 38 member 1 -Q8N5C8 Q8N5C8 reviewed TAB3_HUMAN TGF-beta-activated kinase 1 and MAP3K7-binding protein 3 (Mitogen-activated protein kinase kinase kinase 7-interacting protein 3) (NF-kappa-B-activating protein 1) (TAK1-binding protein 3) (TAB-3) (TGF-beta-activated kinase 1-binding protein 3) -A0A5E8 A0A5E8 unreviewed A0A5E8_HUMAN Growth arrest specific 2 like 1 (Growth arrest-specific 2 like 1, isoform CRA_a) (cDNA FLJ16435 fis, clone BRACE3020671, highly similar to GAS2-like protein 1) (cDNA FLJ36067 fis, clone TESTI2019308, highly similar to GAR22 PROTEIN) -Q6UUV7 Q6UUV7 reviewed CRTC3_HUMAN CREB-regulated transcription coactivator 3 (Transducer of regulated cAMP response element-binding protein 3) (TORC-3) (Transducer of CREB protein 3) -Q1RMZ1 Q1RMZ1 reviewed SAMTR_HUMAN S-adenosylmethionine sensor upstream of mTORC1 (Probable methyltransferase BMT2 homolog) (EC 2.1.1.-) -A0A0J9YWL0 A0A0J9YWL0 unreviewed A0A0J9YWL0_HUMAN Crystallin beta-gamma domain containing 1 -Q14CB8 Q14CB8 reviewed RHG19_HUMAN Rho GTPase-activating protein 19 (Rho-type GTPase-activating protein 19) -Q92522 Q92522 reviewed H1X_HUMAN Histone H1.10 (Histone H1x) -Q8N4V1 Q8N4V1 reviewed EMC5_HUMAN ER membrane protein complex subunit 5 (Membrane magnesium transporter 1) (Transmembrane protein 32) -Q96NJ6 Q96NJ6 reviewed ZFP3_HUMAN Zinc finger protein 3 homolog (Zfp-3) (Zinc finger protein 752) -Q14152 Q14152 reviewed EIF3A_HUMAN Eukaryotic translation initiation factor 3 subunit A (eIF3a) (Eukaryotic translation initiation factor 3 subunit 10) (eIF-3-theta) (eIF3 p167) (eIF3 p180) (eIF3 p185) -Q9BT25 Q9BT25 reviewed HAUS8_HUMAN HAUS augmin-like complex subunit 8 (HEC1/NDC80-interacting centrosome-associated protein 1) (Sarcoma antigen NY-SAR-48) -P35251 P35251 reviewed RFC1_HUMAN Replication factor C subunit 1 (Activator 1 140 kDa subunit) (A1 140 kDa subunit) (Activator 1 large subunit) (Activator 1 subunit 1) (DNA-binding protein PO-GA) (Replication factor C 140 kDa subunit) (RF-C 140 kDa subunit) (RFC140) (Replication factor C large subunit) -Q02040 Q02040 reviewed AK17A_HUMAN A-kinase anchor protein 17A (AKAP-17A) (721P) (B-lymphocyte antigen) (Protein XE7) (Protein kinase A-anchoring protein 17A) (PRKA17A) (Splicing factor, arginine/serine-rich 17A) -Q9UK76 Q9UK76 reviewed JUPI1_HUMAN Jupiter microtubule associated homolog 1 (Androgen-regulated protein 2) (Hematological and neurological expressed 1 protein) [Cleaved into: Jupiter microtubule associated homolog 1, N-terminally processed] -O75170 O75170 reviewed PP6R2_HUMAN Serine/threonine-protein phosphatase 6 regulatory subunit 2 (SAPS domain family member 2) -Q12770 Q12770 reviewed SCAP_HUMAN Sterol regulatory element-binding protein cleavage-activating protein (SCAP) (SREBP cleavage-activating protein) -Q9P107 Q9P107 reviewed GMIP_HUMAN GEM-interacting protein (GMIP) -Q9BS16 Q9BS16 reviewed CENPK_HUMAN Centromere protein K (CENP-K) (Interphase centromere complex protein 37) (Protein AF-5alpha) (p33) -A0A1B0GV70 A0A1B0GV70 unreviewed A0A1B0GV70_HUMAN TEPSIN adaptor related protein complex 4 accessory protein -A0A0U1RRB6 A0A0U1RRB6 unreviewed A0A0U1RRB6_HUMAN Exocyst complex component -Q9UKG1 Q9UKG1 reviewed DP13A_HUMAN DCC-interacting protein 13-alpha (Dip13-alpha) (Adapter protein containing PH domain, PTB domain and leucine zipper motif 1) -O75145 O75145 reviewed LIPA3_HUMAN Liprin-alpha-3 (Protein tyrosine phosphatase receptor type f polypeptide-interacting protein alpha-3) (PTPRF-interacting protein alpha-3) -Q9HBM6 Q9HBM6 reviewed TAF9B_HUMAN Transcription initiation factor TFIID subunit 9B (Neuronal cell death-related protein 7) (DN-7) (Transcription initiation factor TFIID subunit 9-like) (Transcription-associated factor TAFII31L) -P34972 P34972 reviewed CNR2_HUMAN Cannabinoid receptor 2 (CB-2) (CB2) (hCB2) (CX5) -Q92922 Q92922 reviewed SMRC1_HUMAN SWI/SNF complex subunit SMARCC1 (BRG1-associated factor 155) (BAF155) (SWI/SNF complex 155 kDa subunit) (SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily C member 1) -P18858 P18858 reviewed DNLI1_HUMAN DNA ligase 1 (EC 6.5.1.1) (DNA ligase I) (Polydeoxyribonucleotide synthase [ATP] 1) -Q8IXT5 Q8IXT5 reviewed RB12B_HUMAN RNA-binding protein 12B (RNA-binding motif protein 12B) -Q9H400 Q9H400 reviewed LIME1_HUMAN Lck-interacting transmembrane adapter 1 (Lck-interacting membrane protein) (Lck-interacting molecule) -Q9NZ52 Q9NZ52 reviewed GGA3_HUMAN ADP-ribosylation factor-binding protein GGA3 (Golgi-localized, gamma ear-containing, ARF-binding protein 3) -Q8WTW3 Q8WTW3 reviewed COG1_HUMAN Conserved oligomeric Golgi complex subunit 1 (COG complex subunit 1) (Component of oligomeric Golgi complex 1) -Q9BUR4 Q9BUR4 reviewed TCAB1_HUMAN Telomerase Cajal body protein 1 (WD repeat-containing protein 79) (WD40 repeat-containing protein antisense to TP53 gene) (WRAP53beta) -Q96C36 Q96C36 reviewed P5CR2_HUMAN Pyrroline-5-carboxylate reductase 2 (P5C reductase 2) (P5CR 2) (EC 1.5.1.2) -Q7Z591 Q7Z591 reviewed AKNA_HUMAN Microtubule organization protein AKNA (AT-hook-containing transcription factor) -Q9Y2H6 Q9Y2H6 reviewed FND3A_HUMAN Fibronectin type-III domain-containing protein 3A (Human gene expressed in odontoblasts) -P08621 P08621 reviewed RU17_HUMAN U1 small nuclear ribonucleoprotein 70 kDa (U1 snRNP 70 kDa) (U1-70K) (snRNP70) -Q9H8M2 Q9H8M2 reviewed BRD9_HUMAN Bromodomain-containing protein 9 (Rhabdomyosarcoma antigen MU-RMS-40.8) -P18085 P18085 reviewed ARF4_HUMAN ADP-ribosylation factor 4 -Q13838 Q13838 reviewed DX39B_HUMAN Spliceosome RNA helicase DDX39B (EC 3.6.4.13) (56 kDa U2AF65-associated protein) (ATP-dependent RNA helicase p47) (DEAD box protein UAP56) (HLA-B-associated transcript 1 protein) -Q9H1A4 Q9H1A4 reviewed APC1_HUMAN Anaphase-promoting complex subunit 1 (APC1) (Cyclosome subunit 1) (Mitotic checkpoint regulator) (Testis-specific gene 24 protein) -Q1W6H9 Q1W6H9 reviewed F110C_HUMAN Protein FAM110C -O94964 O94964 reviewed MTCL2_HUMAN Microtubule cross-linking factor 2 (SOGA family member 1) (Suppressor of glucose by autophagy) (Suppressor of glucose, autophagy-associated protein 1) [Cleaved into: N-terminal form; C-terminal 80 kDa form (80-kDa SOGA fragment)] -F5GX28 F5GX28 unreviewed F5GX28_HUMAN [histone H3]-trimethyl-L-lysine(9) demethylase (EC 1.14.11.66) -E7EUN2 E7EUN2 unreviewed E7EUN2_HUMAN ArfGAP with GTPase domain, ankyrin repeat and PH domain 1 -Q504T8 Q504T8 reviewed MIDN_HUMAN Midnolin (Midbrain nucleolar protein) -P61927 P61927 reviewed RL37_HUMAN Large ribosomal subunit protein eL37 (60S ribosomal protein L37) (G1.16) -Q15424 Q15424 reviewed SAFB1_HUMAN Scaffold attachment factor B1 (SAF-B) (SAF-B1) (HSP27 estrogen response element-TATA box-binding protein) (HSP27 ERE-TATA-binding protein) -Q9Y2K7 Q9Y2K7 reviewed KDM2A_HUMAN Lysine-specific demethylase 2A (EC 1.14.11.27) (CXXC-type zinc finger protein 8) (F-box and leucine-rich repeat protein 11) (F-box protein FBL7) (F-box protein Lilina) (F-box/LRR-repeat protein 11) (JmjC domain-containing histone demethylation protein 1A) ([Histone-H3]-lysine-36 demethylase 1A) -Q5SQI0 Q5SQI0 reviewed ATAT_HUMAN Alpha-tubulin N-acetyltransferase 1 (Alpha-TAT) (Alpha-TAT1) (TAT) (EC 2.3.1.108) (Acetyltransferase mec-17 homolog) -O60725 O60725 reviewed ICMT_HUMAN Protein-S-isoprenylcysteine O-methyltransferase (EC 2.1.1.100) (Isoprenylcysteine carboxylmethyltransferase) (Prenylated protein carboxyl methyltransferase) (PPMT) (Prenylcysteine carboxyl methyltransferase) (pcCMT) -P98179 P98179 reviewed RBM3_HUMAN RNA-binding protein 3 (RNA-binding motif protein 3) (RNPL) -Q14687 Q14687 reviewed GSE1_HUMAN Genetic suppressor element 1 -Q8TAQ2 Q8TAQ2 reviewed SMRC2_HUMAN SWI/SNF complex subunit SMARCC2 (BRG1-associated factor 170) (BAF170) (SWI/SNF complex 170 kDa subunit) (SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily C member 2) -J3KPC5 J3KPC5 unreviewed J3KPC5_HUMAN RAP1 GTPase activating protein (RAP1, GTPase activating protein 1, isoform CRA_e) -Q9P0U3 Q9P0U3 reviewed SENP1_HUMAN Sentrin-specific protease 1 (EC 3.4.22.-) (Sentrin/SUMO-specific protease SENP1) -Q8NHQ9 Q8NHQ9 reviewed DDX55_HUMAN ATP-dependent RNA helicase DDX55 (EC 3.6.4.13) (DEAD box protein 55) -Q9Y2L5 Q9Y2L5 reviewed TPPC8_HUMAN Trafficking protein particle complex subunit 8 (Protein TRS85 homolog) -K7ER00 K7ER00 unreviewed K7ER00_HUMAN Phenylalanine--tRNA ligase alpha subunit (EC 6.1.1.20) -Q6AI39 Q6AI39 reviewed BICRL_HUMAN BRD4-interacting chromatin-remodeling complex-associated protein-like (Glioma tumor suppressor candidate region gene 1 protein-like) -Q14C86 Q14C86 reviewed GAPD1_HUMAN GTPase-activating protein and VPS9 domain-containing protein 1 (GAPex-5) (Rab5-activating protein 6) -Q9Y3S1 Q9Y3S1 reviewed WNK2_HUMAN Serine/threonine-protein kinase WNK2 (EC 2.7.11.1) (Antigen NY-CO-43) (Protein kinase lysine-deficient 2) (Protein kinase with no lysine 2) (Serologically defined colon cancer antigen 43) -O14672 O14672 reviewed ADA10_HUMAN Disintegrin and metalloproteinase domain-containing protein 10 (ADAM 10) (EC 3.4.24.81) (CDw156) (Kuzbanian protein homolog) (Mammalian disintegrin-metalloprotease) (CD antigen CD156c) -Q13595 Q13595 reviewed TRA2A_HUMAN Transformer-2 protein homolog alpha (TRA-2 alpha) (TRA2-alpha) (Transformer-2 protein homolog A) -Q9Y2Z0 Q9Y2Z0 reviewed SGT1_HUMAN Protein SGT1 homolog (Protein 40-6-3) (Sgt1) (Suppressor of G2 allele of SKP1 homolog) -Q13123 Q13123 reviewed RED_HUMAN Protein Red (Cytokine IK) (IK factor) (Protein RER) -Q9P225 Q9P225 reviewed DYH2_HUMAN Dynein axonemal heavy chain 2 (Axonemal beta dynein heavy chain 2) (Ciliary dynein heavy chain 2) (Dynein heavy chain domain-containing protein 3) -Q9Y5B0 Q9Y5B0 reviewed CTDP1_HUMAN RNA polymerase II subunit A C-terminal domain phosphatase (EC 3.1.3.16) (TFIIF-associating CTD phosphatase) -P50750 P50750 reviewed CDK9_HUMAN Cyclin-dependent kinase 9 (EC 2.7.11.22) (EC 2.7.11.23) (C-2K) (Cell division cycle 2-like protein kinase 4) (Cell division protein kinase 9) (Serine/threonine-protein kinase PITALRE) (Tat-associated kinase complex catalytic subunit) -Q9NQL2 Q9NQL2 reviewed RRAGD_HUMAN Ras-related GTP-binding protein D (Rag D) (RagD) (EC 3.6.5.-) -Q86V48 Q86V48 reviewed LUZP1_HUMAN Leucine zipper protein 1 -P78371 P78371 reviewed TCPB_HUMAN T-complex protein 1 subunit beta (TCP-1-beta) (CCT-beta) (Chaperonin containing T-complex polypeptide 1 subunit 2) -P26368 P26368 reviewed U2AF2_HUMAN Splicing factor U2AF 65 kDa subunit (U2 auxiliary factor 65 kDa subunit) (hU2AF(65)) (hU2AF65) (U2 snRNP auxiliary factor large subunit) -Q7Z569 Q7Z569 reviewed BRAP_HUMAN BRCA1-associated protein (EC 2.3.2.27) (BRAP2) (Impedes mitogenic signal propagation) (IMP) (RING finger protein 52) (RING-type E3 ubiquitin transferase BRAP2) (Renal carcinoma antigen NY-REN-63) -O76064 O76064 reviewed RNF8_HUMAN E3 ubiquitin-protein ligase RNF8 (hRNF8) (EC 2.3.2.27) (RING finger protein 8) (RING-type E3 ubiquitin transferase RNF8) -Q9NQC3 Q9NQC3 reviewed RTN4_HUMAN Reticulon-4 (Foocen) (Neurite outgrowth inhibitor) (Nogo protein) (Neuroendocrine-specific protein) (NSP) (Neuroendocrine-specific protein C homolog) (RTN-x) (Reticulon-5) -O60784 O60784 reviewed TOM1_HUMAN Target of Myb1 membrane trafficking protein (Target of Myb protein 1) -P19338 P19338 reviewed NUCL_HUMAN Nucleolin (Protein C23) -O15014 O15014 reviewed ZN609_HUMAN Zinc finger protein 609 -P17544 P17544 reviewed ATF7_HUMAN Cyclic AMP-dependent transcription factor ATF-7 (cAMP-dependent transcription factor ATF-7) (Activating transcription factor 7) (Transcription factor ATF-A) -P11387 P11387 reviewed TOP1_HUMAN DNA topoisomerase 1 (EC 5.6.2.1) (DNA topoisomerase I) -O43290 O43290 reviewed SNUT1_HUMAN U4/U6.U5 tri-snRNP-associated protein 1 (SNU66 homolog) (hSnu66) (Squamous cell carcinoma antigen recognized by T-cells 1) (SART-1) (hSART-1) (U4/U6.U5 tri-snRNP-associated 110 kDa protein) (allergen Hom s 1) -Q9UQ80 Q9UQ80 reviewed PA2G4_HUMAN Proliferation-associated protein 2G4 (Cell cycle protein p38-2G4 homolog) (hG4-1) (ErbB3-binding protein 1) -Q9UPT5 Q9UPT5 reviewed EXOC7_HUMAN Exocyst complex component 7 (Exocyst complex component Exo70) -P84103 P84103 reviewed SRSF3_HUMAN Serine/arginine-rich splicing factor 3 (Pre-mRNA-splicing factor SRP20) (Splicing factor, arginine/serine-rich 3) -Q6ZTW0 Q6ZTW0 reviewed TPGS1_HUMAN Tubulin polyglutamylase complex subunit 1 (PGs1) -Q5FWF4 Q5FWF4 reviewed ZRAB3_HUMAN DNA annealing helicase and endonuclease ZRANB3 (Annealing helicase 2) (AH2) (Zinc finger Ran-binding domain-containing protein 3) [Includes: DNA annealing helicase ZRANB3 (EC 3.6.4.-); Endonuclease ZRANB3 (EC 3.1.-.-)] -Q9H019 Q9H019 reviewed MFR1L_HUMAN Mitochondrial fission regulator 1-like -Q8TBK6 Q8TBK6 reviewed ZCH10_HUMAN Zinc finger CCHC domain-containing protein 10 -Q86UK7 Q86UK7 reviewed ZN598_HUMAN E3 ubiquitin-protein ligase ZNF598 (EC 2.3.2.27) (Zinc finger protein 598) -Q8IYL3 Q8IYL3 reviewed CA174_HUMAN UPF0688 protein C1orf174 -B7Z1P2 B7Z1P2 unreviewed B7Z1P2_HUMAN F-box protein 44 -Q02880 Q02880 reviewed TOP2B_HUMAN DNA topoisomerase 2-beta (EC 5.6.2.2) (DNA topoisomerase II, beta isozyme) -B3KS98 B3KS98 unreviewed B3KS98_HUMAN Eukaryotic translation initiation factor 3 subunit H (eIF3h) (Eukaryotic translation initiation factor 3 subunit 3) (eIF-3 gamma) (eIF3 p40 subunit) -Q5JTH9 Q5JTH9 reviewed RRP12_HUMAN RRP12-like protein -P56589 P56589 reviewed PEX3_HUMAN Peroxisomal biogenesis factor 3 (Peroxin-3) (Peroxisomal assembly protein PEX3) -E9PNT2 E9PNT2 unreviewed E9PNT2_HUMAN Rho GTPase-activating protein 27 -P62851 P62851 reviewed RS25_HUMAN Small ribosomal subunit protein eS25 (40S ribosomal protein S25) -Q14739 Q14739 reviewed LBR_HUMAN Delta(14)-sterol reductase LBR (Delta-14-SR) (EC 1.3.1.70) (3-beta-hydroxysterol Delta (14)-reductase) (C-14 sterol reductase) (C14SR) (Integral nuclear envelope inner membrane protein) (LMN2R) (Lamin-B receptor) (Sterol C14-reductase) -P24928 P24928 reviewed RPB1_HUMAN DNA-directed RNA polymerase II subunit RPB1 (RNA polymerase II subunit B1) (EC 2.7.7.6) (3'-5' exoribonuclease) (EC 3.1.13.-) (DNA-directed RNA polymerase II subunit A) (DNA-directed RNA polymerase III largest subunit) (RNA-directed RNA polymerase II subunit RPB1) (EC 2.7.7.48) -Q96EP0 Q96EP0 reviewed RNF31_HUMAN E3 ubiquitin-protein ligase RNF31 (EC 2.3.2.31) (HOIL-1-interacting protein) (HOIP) (RING finger protein 31) (RING-type E3 ubiquitin transferase RNF31) (Zinc in-between-RING-finger ubiquitin-associated domain protein) -Q8TAP9 Q8TAP9 reviewed MPLKI_HUMAN M-phase-specific PLK1-interacting protein (TTD non-photosensitive 1 protein) -P13647 P13647 reviewed K2C5_HUMAN Keratin, type II cytoskeletal 5 (58 kDa cytokeratin) (Cytokeratin-5) (CK-5) (Keratin-5) (K5) (Type-II keratin Kb5) -O43896 O43896 reviewed KIF1C_HUMAN Kinesin-like protein KIF1C -Q9UH03 Q9UH03 reviewed SEPT3_HUMAN Neuronal-specific septin-3 -P23588 P23588 reviewed IF4B_HUMAN Eukaryotic translation initiation factor 4B (eIF-4B) -E7EMB3 E7EMB3 unreviewed E7EMB3_HUMAN Calmodulin 2 -A0A087WXK8 A0A087WXK8 unreviewed A0A087WXK8_HUMAN Chromosome 20 open reading frame 129 (Family with sequence similarity 83 member D) -Q8WXX7 Q8WXX7 reviewed AUTS2_HUMAN Autism susceptibility gene 2 protein -Q96JK2 Q96JK2 reviewed DCAF5_HUMAN DDB1- and CUL4-associated factor 5 (Breakpoint cluster region protein 2) (BCRP2) (WD repeat-containing protein 22) -P60468 P60468 reviewed SC61B_HUMAN Protein transport protein Sec61 subunit beta -O75592 O75592 reviewed MYCB2_HUMAN E3 ubiquitin-protein ligase MYCBP2 (EC 2.3.2.33) (Myc-binding protein 2) (Protein associated with Myc) -Q86UP2 Q86UP2 reviewed KTN1_HUMAN Kinectin (CG-1 antigen) (Kinesin receptor) -Q9H0J9 Q9H0J9 reviewed PAR12_HUMAN Protein mono-ADP-ribosyltransferase PARP12 (EC 2.4.2.-) (ADP-ribosyltransferase diphtheria toxin-like 12) (ARTD12) (Poly [ADP-ribose] polymerase 12) (PARP-12) (Zinc finger CCCH domain-containing protein 1) -Q13112 Q13112 reviewed CAF1B_HUMAN Chromatin assembly factor 1 subunit B (CAF-1 subunit B) (Chromatin assembly factor I p60 subunit) (CAF-I 60 kDa subunit) (CAF-I p60) (M-phase phosphoprotein 7) -Q92900 Q92900 reviewed RENT1_HUMAN Regulator of nonsense transcripts 1 (EC 3.6.4.12) (EC 3.6.4.13) (ATP-dependent helicase RENT1) (Nonsense mRNA reducing factor 1) (NORF1) (Up-frameshift suppressor 1 homolog) (hUpf1) -Q13085 Q13085 reviewed ACACA_HUMAN Acetyl-CoA carboxylase 1 (ACC1) (EC 6.4.1.2) (Acetyl-Coenzyme A carboxylase alpha) (ACC-alpha) -Q9HCD5 Q9HCD5 reviewed NCOA5_HUMAN Nuclear receptor coactivator 5 (NCoA-5) (Coactivator independent of AF-2) (CIA) -Q96Q45 Q96Q45 reviewed TM237_HUMAN Transmembrane protein 237 (Amyotrophic lateral sclerosis 2 chromosomal region candidate gene 4 protein) -Q15025 Q15025 reviewed TNIP1_HUMAN TNFAIP3-interacting protein 1 (A20-binding inhibitor of NF-kappa-B activation 1) (ABIN-1) (HIV-1 Nef-interacting protein) (Nef-associated factor 1) (Naf1) (Nip40-1) (Virion-associated nuclear shuttling protein) (VAN) (hVAN) -Q9Y6R4 Q9Y6R4 reviewed M3K4_HUMAN Mitogen-activated protein kinase kinase kinase 4 (EC 2.7.11.25) (MAP three kinase 1) (MAPK/ERK kinase kinase 4) (MEK kinase 4) (MEKK 4) -O14639 O14639 reviewed ABLM1_HUMAN Actin-binding LIM protein 1 (abLIM-1) (Actin-binding LIM protein family member 1) (Actin-binding double zinc finger protein) (LIMAB1) (Limatin) -Q9BQ52 Q9BQ52 reviewed RNZ2_HUMAN Zinc phosphodiesterase ELAC protein 2 (EC 3.1.26.11) (ElaC homolog protein 2) (Heredity prostate cancer protein 2) (Ribonuclease Z 2) (RNase Z 2) (tRNA 3 endonuclease 2) (tRNase Z 2) -Q96AY4 Q96AY4 reviewed TTC28_HUMAN Tetratricopeptide repeat protein 28 (TPR repeat protein 28) (TPR repeat-containing big gene cloned at Keio) -Q9NPG3 Q9NPG3 reviewed UBN1_HUMAN Ubinuclein-1 (HIRA-binding protein) (Protein VT4) (Ubiquitously expressed nuclear protein) -Q14657 Q14657 reviewed LAGE3_HUMAN EKC/KEOPS complex subunit LAGE3 (L antigen family member 3) (Protein ESO-3) (Protein ITBA2) -Q01831 Q01831 reviewed XPC_HUMAN DNA repair protein complementing XP-C cells (Xeroderma pigmentosum group C-complementing protein) (p125) -Q9Y6R1 Q9Y6R1 reviewed S4A4_HUMAN Electrogenic sodium bicarbonate cotransporter 1 (Sodium bicarbonate cotransporter) (Na(+)/HCO3(-) cotransporter) (Solute carrier family 4 member 4) (kNBC1) -G8JLB6 G8JLB6 unreviewed G8JLB6_HUMAN Heterogeneous nuclear ribonucleoprotein H1 -A0A087WZV0 A0A087WZV0 unreviewed A0A087WZV0_HUMAN Inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase (EC 2.7.4.24) -Q9ULC8 Q9ULC8 reviewed ZDHC8_HUMAN Palmitoyltransferase ZDHHC8 (EC 2.3.1.225) (Zinc finger DHHC domain-containing protein 8) (DHHC-8) (Zinc finger protein 378) -Q2KHT3 Q2KHT3 reviewed CL16A_HUMAN Protein CLEC16A (C-type lectin domain family 16 member A) -Q8NG31 Q8NG31 reviewed KNL1_HUMAN Kinetochore scaffold 1 (ALL1-fused gene from chromosome 15q14 protein) (AF15q14) (Bub-linking kinetochore protein) (Blinkin) (Cancer susceptibility candidate gene 5 protein) (Cancer/testis antigen 29) (CT29) (Kinetochore-null protein 1) (Protein CASC5) (Protein D40/AF15q14) -Q8IWB1 Q8IWB1 reviewed IPRI_HUMAN Inositol 1,4,5-trisphosphate receptor-interacting protein (Protein DANGER) -Q8NC56 Q8NC56 reviewed LEMD2_HUMAN LEM domain-containing protein 2 (hLEM2) -Q13895 Q13895 reviewed BYST_HUMAN Bystin -P57088 P57088 reviewed TMM33_HUMAN Transmembrane protein 33 (Protein DB83) (SHINC-3) -P46779 P46779 reviewed RL28_HUMAN Large ribosomal subunit protein eL28 (60S ribosomal protein L28) -Q96T23 Q96T23 reviewed RSF1_HUMAN Remodeling and spacing factor 1 (Rsf-1) (HBV pX-associated protein 8) (Hepatitis B virus X-associated protein) (p325 subunit of RSF chromatin-remodeling complex) -P63313 P63313 reviewed TYB10_HUMAN Thymosin beta-10 -Q96DU3 Q96DU3 reviewed SLAF6_HUMAN SLAM family member 6 (Activating NK receptor) (NK-T-B-antigen) (NTB-A) (CD antigen CD352) -Q96SL8 Q96SL8 reviewed FIZ1_HUMAN Flt3-interacting zinc finger protein 1 (Zinc finger protein 798) -P16383 P16383 reviewed GCFC2_HUMAN Intron Large complex component GCFC2 (GC-rich sequence DNA-binding factor) (GC-rich sequence DNA-binding factor 2) (Transcription factor 9) (TCF-9) -Q8N488 Q8N488 reviewed RYBP_HUMAN RING1 and YY1-binding protein (Apoptin-associating protein 1) (APAP-1) (Death effector domain-associated factor) (DED-associated factor) (YY1 and E4TF1-associated factor 1) -I3L0U5 I3L0U5 unreviewed I3L0U5_HUMAN Coiled-coil domain containing 137 -Q1KMD3 Q1KMD3 reviewed HNRL2_HUMAN Heterogeneous nuclear ribonucleoprotein U-like protein 2 (Scaffold-attachment factor A2) (SAF-A2) -P37108 P37108 reviewed SRP14_HUMAN Signal recognition particle 14 kDa protein (SRP14) (18 kDa Alu RNA-binding protein) -Q96ST3 Q96ST3 reviewed SIN3A_HUMAN Paired amphipathic helix protein Sin3a (Histone deacetylase complex subunit Sin3a) (Transcriptional corepressor Sin3a) -B4DY08 B4DY08 unreviewed B4DY08_HUMAN Heterogeneous nuclear ribonucleoprotein C (cDNA FLJ53542, highly similar to Heterogeneous nuclear ribonucleoproteins C) -Q96JM3 Q96JM3 reviewed CHAP1_HUMAN Chromosome alignment-maintaining phosphoprotein 1 (Zinc finger protein 828) -Q8IWS0 Q8IWS0 reviewed PHF6_HUMAN PHD finger protein 6 (PHD-like zinc finger protein) -Q8WUA4 Q8WUA4 reviewed TF3C2_HUMAN General transcription factor 3C polypeptide 2 (TF3C-beta) (Transcription factor IIIC 110 kDa subunit) (TFIIIC 110 kDa subunit) (TFIIIC110) (Transcription factor IIIC subunit beta) -O75362 O75362 reviewed ZN217_HUMAN Zinc finger protein 217 -Q8TDY2 Q8TDY2 reviewed RBCC1_HUMAN RB1-inducible coiled-coil protein 1 (FAK family kinase-interacting protein of 200 kDa) (FIP200) -Q9NZ63 Q9NZ63 reviewed TLS1_HUMAN Splicing factor C9orf78 (Hepatocellular carcinoma-associated antigen 59) -Q9Y2I8 Q9Y2I8 reviewed WDR37_HUMAN WD repeat-containing protein 37 -F5H527 F5H527 unreviewed F5H527_HUMAN protein-serine/threonine phosphatase (EC 3.1.3.16) -Q9BVA1 Q9BVA1 reviewed TBB2B_HUMAN Tubulin beta-2B chain -O75385 O75385 reviewed ULK1_HUMAN Serine/threonine-protein kinase ULK1 (EC 2.7.11.1) (Autophagy-related protein 1 homolog) (ATG1) (hATG1) (Unc-51-like kinase 1) -Q9H147 Q9H147 reviewed TDIF1_HUMAN Deoxynucleotidyltransferase terminal-interacting protein 1 (Terminal deoxynucleotidyltransferase-interacting factor 1) (TdIF1) (TdT-interacting factor 1) -Q6UB98 Q6UB98 reviewed ANR12_HUMAN Ankyrin repeat domain-containing protein 12 (Ankyrin repeat-containing cofactor 2) (GAC-1 protein) -Q13769 Q13769 reviewed THOC5_HUMAN THO complex subunit 5 homolog (Functional spliceosome-associated protein 79) (fSAP79) (NF2/meningioma region protein pK1.3) (Placental protein 39.2) (PP39.2) (hTREX90) -P62995 P62995 reviewed TRA2B_HUMAN Transformer-2 protein homolog beta (TRA-2 beta) (TRA2-beta) (hTRA2-beta) (Splicing factor, arginine/serine-rich 10) (Transformer-2 protein homolog B) -Q9UKJ3 Q9UKJ3 reviewed GPTC8_HUMAN G patch domain-containing protein 8 -P23528 P23528 reviewed COF1_HUMAN Cofilin-1 (18 kDa phosphoprotein) (p18) (Cofilin, non-muscle isoform) -Q9UNN5 Q9UNN5 reviewed FAF1_HUMAN FAS-associated factor 1 (hFAF1) (UBX domain-containing protein 12) (UBX domain-containing protein 3A) -Q92993 Q92993 reviewed KAT5_HUMAN Histone acetyltransferase KAT5 (EC 2.3.1.48) (60 kDa Tat-interactive protein) (Tip60) (Histone acetyltransferase HTATIP) (HIV-1 Tat interactive protein) (Lysine acetyltransferase 5) (Protein 2-hydroxyisobutyryltransferase KAT5) (EC 2.3.1.-) (Protein acetyltransferase KAT5) (EC 2.3.1.-) (Protein crotonyltransferase KAT5) (EC 2.3.1.-) (cPLA(2)-interacting protein) -A0A087WWF6 A0A087WWF6 unreviewed A0A087WWF6_HUMAN DNA polymerase delta subunit 2 -O94913 O94913 reviewed PCF11_HUMAN Pre-mRNA cleavage complex 2 protein Pcf11 (Pre-mRNA cleavage complex II protein Pcf11) -Q9UKY7 Q9UKY7 reviewed CDV3_HUMAN Protein CDV3 homolog -Q96F24 Q96F24 reviewed NRBF2_HUMAN Nuclear receptor-binding factor 2 (NRBF-2) (Comodulator of PPAR and RXR) -P15814 P15814 reviewed IGLL1_HUMAN Immunoglobulin lambda-like polypeptide 1 (CD179 antigen-like family member B) (Ig lambda-5) (Immunoglobulin omega polypeptide) (Immunoglobulin-related protein 14.1) (CD antigen CD179b) -Q15121 Q15121 reviewed PEA15_HUMAN Astrocytic phosphoprotein PEA-15 (15 kDa phosphoprotein enriched in astrocytes) (Phosphoprotein enriched in diabetes) (PED) -Q8NHZ8 Q8NHZ8 reviewed CDC26_HUMAN Anaphase-promoting complex subunit CDC26 (Anaphase-promoting complex subunit 12) (APC12) (Cell division cycle protein 26 homolog) -Q9H1B7 Q9H1B7 reviewed I2BPL_HUMAN Probable E3 ubiquitin-protein ligase IRF2BPL (EC 2.3.2.27) (Enhanced at puberty protein 1) (Interferon regulatory factor 2-binding protein-like) -P63241 P63241 reviewed IF5A1_HUMAN Eukaryotic translation initiation factor 5A-1 (eIF-5A-1) (eIF-5A1) (Eukaryotic initiation factor 5A isoform 1) (eIF-5A) (Rev-binding factor) (eIF-4D) -Q15643 Q15643 reviewed TRIPB_HUMAN Thyroid receptor-interacting protein 11 (TR-interacting protein 11) (TRIP-11) (Clonal evolution-related gene on chromosome 14 protein) (Golgi-associated microtubule-binding protein 210) (GMAP-210) (Trip230) -P06748 P06748 reviewed NPM_HUMAN Nucleophosmin (NPM) (Nucleolar phosphoprotein B23) (Nucleolar protein NO38) (Numatrin) -Q96HA1 Q96HA1 reviewed P121A_HUMAN Nuclear envelope pore membrane protein POM 121 (Nuclear envelope pore membrane protein POM 121A) (Nucleoporin Nup121) (Pore membrane protein of 121 kDa) -Q4G0F5 Q4G0F5 reviewed VP26B_HUMAN Vacuolar protein sorting-associated protein 26B (Vesicle protein sorting 26B) -G3V1A6 G3V1A6 unreviewed G3V1A6_HUMAN Gasdermin domain containing 1, isoform CRA_d (Gasdermin-D) -Q6P3S6 Q6P3S6 reviewed FBX42_HUMAN F-box only protein 42 (Just one F-box and Kelch domain-containing protein) -O43379 O43379 reviewed WDR62_HUMAN WD repeat-containing protein 62 -O43719 O43719 reviewed HTSF1_HUMAN 17S U2 SnRNP complex component HTATSF1 (HIV Tat-specific factor 1) (Tat-SF1) -Q9BZL1 Q9BZL1 reviewed UBL5_HUMAN Ubiquitin-like protein 5 -P09651 P09651 reviewed ROA1_HUMAN Heterogeneous nuclear ribonucleoprotein A1 (hnRNP A1) (Helix-destabilizing protein) (Single-strand RNA-binding protein) (hnRNP core protein A1) [Cleaved into: Heterogeneous nuclear ribonucleoprotein A1, N-terminally processed] -E9PRY8 E9PRY8 unreviewed E9PRY8_HUMAN Elongation factor 1-delta -Q96A65 Q96A65 reviewed EXOC4_HUMAN Exocyst complex component 4 (Exocyst complex component Sec8) -A0A0D9SFK2 A0A0D9SFK2 A0A0D9SFK2_HUMAN deleted -Q96PZ0 Q96PZ0 reviewed PUS7_HUMAN Pseudouridylate synthase 7 homolog (EC 5.4.99.-) -Q9NU22 Q9NU22 reviewed MDN1_HUMAN Midasin (Dynein-related AAA-ATPase MDN1) (MIDAS-containing protein) -P55201 P55201 reviewed BRPF1_HUMAN Peregrin (Bromodomain and PHD finger-containing protein 1) (Protein Br140) -Q9C0B5 Q9C0B5 reviewed ZDHC5_HUMAN Palmitoyltransferase ZDHHC5 (EC 2.3.1.225) (Zinc finger DHHC domain-containing protein 5) (DHHC-5) (Zinc finger protein 375) -Q14938 Q14938 reviewed NFIX_HUMAN Nuclear factor 1 X-type (NF1-X) (Nuclear factor 1/X) (CCAAT-box-binding transcription factor) (CTF) (Nuclear factor I/X) (NF-I/X) (NFI-X) (TGGCA-binding protein) -A2ABF8 A2ABF8 unreviewed A2ABF8_HUMAN Euchromatic histone lysine methyltransferase 2 (Histone-lysine N-methyltransferase EHMT2) -Q8IV63 Q8IV63 reviewed VRK3_HUMAN Serine/threonine-protein kinase VRK3 (EC 2.7.11.22) (Vaccinia-related kinase 3) -J3KPF0 J3KPF0 unreviewed J3KPF0_HUMAN HECT domain E3 ubiquitin protein ligase 4 -Q08117 Q08117 reviewed TLE5_HUMAN TLE family member 5 (Amino-terminal enhancer of split) (Amino enhancer of split) (Gp130-associated protein GAM) (Grg-5) (Groucho-related protein 5) (Protein ESP1) (Protein GRG) (TLE family member 5, transcriptional modulator) -Q5FBB7 Q5FBB7 reviewed SGO1_HUMAN Shugoshin 1 (Serologically defined breast cancer antigen NY-BR-85) (Shugoshin-like 1) -Q9NWH9 Q9NWH9 reviewed SLTM_HUMAN SAFB-like transcription modulator (Modulator of estrogen-induced transcription) -Q92614 Q92614 reviewed MY18A_HUMAN Unconventional myosin-XVIIIa (Molecule associated with JAK3 N-terminus) (MAJN) (Myosin containing a PDZ domain) (Surfactant protein receptor SP-R210) (SP-R210) -O43678 O43678 reviewed NDUA2_HUMAN NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 2 (Complex I-B8) (CI-B8) (NADH-ubiquinone oxidoreductase B8 subunit) -Q58A45 Q58A45 reviewed PAN3_HUMAN PAN2-PAN3 deadenylation complex subunit PAN3 (PAB1P-dependent poly(A)-specific ribonuclease) (Poly(A)-nuclease deadenylation complex subunit 3) (PAN deadenylation complex subunit 3) -P42356 P42356 reviewed PI4KA_HUMAN Phosphatidylinositol 4-kinase alpha (PI4-kinase alpha) (PI4K-alpha) (PtdIns-4-kinase alpha) (EC 2.7.1.67) (Phosphatidylinositol 4-Kinase III alpha) -Q8TBC3 Q8TBC3 reviewed SHKB1_HUMAN SH3KBP1-binding protein 1 (SETA-binding protein 1) -E9PN89 E9PN89 unreviewed E9PN89_HUMAN Heat shock cognate 71 kDa protein (EC 3.6.4.10) (Heat shock 70 kDa protein 8) -Q6ZUT1 Q6ZUT1 reviewed NKAP1_HUMAN Uncharacterized protein NKAPD1 (NKAP domain containing protein 1) -P14921 P14921 reviewed ETS1_HUMAN Protein C-ets-1 (p54) -Q9GZT9 Q9GZT9 reviewed EGLN1_HUMAN Egl nine homolog 1 (EC 1.14.11.29) (Hypoxia-inducible factor prolyl hydroxylase 2) (HIF-PH2) (HIF-prolyl hydroxylase 2) (HPH-2) (Prolyl hydroxylase domain-containing protein 2) (PHD2) (SM-20) -P56211 P56211 reviewed ARP19_HUMAN cAMP-regulated phosphoprotein 19 (ARPP-19) -P49902 P49902 reviewed 5NTC_HUMAN Cytosolic purine 5'-nucleotidase (EC 3.1.3.5) (EC 3.1.3.99) (Cytosolic 5'-nucleotidase II) (cN-II) (Cytosolic IMP/GMP-specific 5'-nucleotidase) (Cytosolic nucleoside phosphotransferase 5'N) (EC 2.7.1.77) (High Km 5'-nucleotidase) -Q8TC07 Q8TC07 reviewed TBC15_HUMAN TBC1 domain family member 15 (GTPase-activating protein RAB7) (GAP for RAB7) (Rab7-GAP) -P02788 P02788 reviewed TRFL_HUMAN Lactotransferrin (Lactoferrin) (EC 3.4.21.-) (Growth-inhibiting protein 12) (Talalactoferrin) [Cleaved into: Lactoferricin-H (Lfcin-H); Kaliocin-1; Lactoferroxin-A; Lactoferroxin-B; Lactoferroxin-C] -P48730 P48730 reviewed KC1D_HUMAN Casein kinase I isoform delta (CKI-delta) (CKId) (EC 2.7.11.1) (Tau-protein kinase CSNK1D) (EC 2.7.11.26) -Q8TAD8 Q8TAD8 reviewed SNIP1_HUMAN Smad nuclear-interacting protein 1 (FHA domain-containing protein SNIP1) -Q9UKS7 Q9UKS7 reviewed IKZF2_HUMAN Zinc finger protein Helios (Ikaros family zinc finger protein 2) -Q9UBB4 Q9UBB4 reviewed ATX10_HUMAN Ataxin-10 (Brain protein E46 homolog) (Spinocerebellar ataxia type 10 protein) -O75151 O75151 reviewed PHF2_HUMAN Lysine-specific demethylase PHF2 (EC 1.14.11.-) (GRC5) (PHD finger protein 2) -O75376 O75376 reviewed NCOR1_HUMAN Nuclear receptor corepressor 1 (N-CoR) (N-CoR1) -F5H1Z8 F5H1Z8 unreviewed F5H1Z8_HUMAN protein-tyrosine-phosphatase (EC 3.1.3.48) -A0A0B4J1V8 A0A0B4J1V8 unreviewed A0A0B4J1V8_HUMAN HCG2039996 (PPAN-P2RY11 readthrough) -Q9NWZ5 Q9NWZ5 reviewed UCKL1_HUMAN Uridine-cytidine kinase-like 1 (EC 2.7.1.48) -Q8N9B5 Q8N9B5 reviewed JMY_HUMAN Junction-mediating and -regulatory protein -A0A0C4DGT3 A0A0C4DGT3 unreviewed A0A0C4DGT3_HUMAN Epididymis secretory sperm binding protein (IQ motif and Sec7 domain ArfGEF 1) -P31749 P31749 reviewed AKT1_HUMAN RAC-alpha serine/threonine-protein kinase (EC 2.7.11.1) (Protein kinase B) (PKB) (Protein kinase B alpha) (PKB alpha) (Proto-oncogene c-Akt) (RAC-PK-alpha) -Q3B7T1 Q3B7T1 reviewed EDRF1_HUMAN Erythroid differentiation-related factor 1 -Q49AR2 Q49AR2 reviewed CE022_HUMAN UPF0489 protein C5orf22 -G3XAN8 G3XAN8 unreviewed G3XAN8_HUMAN Mitochondrial import inner membrane translocase subunit -P55084 P55084 reviewed ECHB_HUMAN Trifunctional enzyme subunit beta, mitochondrial (TP-beta) [Includes: 3-ketoacyl-CoA thiolase (EC 2.3.1.155) (EC 2.3.1.16) (Acetyl-CoA acyltransferase) (Beta-ketothiolase)] -Q8NI22 Q8NI22 reviewed MCFD2_HUMAN Multiple coagulation factor deficiency protein 2 (Neural stem cell-derived neuronal survival protein) -A0A0A0MR07 A0A0A0MR07 unreviewed A0A0A0MR07_HUMAN Vav guanine nucleotide exchange factor 1 -O14924 O14924 reviewed RGS12_HUMAN Regulator of G-protein signaling 12 (RGS12) -Q15596 Q15596 reviewed NCOA2_HUMAN Nuclear receptor coactivator 2 (NCoA-2) (Class E basic helix-loop-helix protein 75) (bHLHe75) (Transcriptional intermediary factor 2) (hTIF2) -Q0VDF9 Q0VDF9 reviewed HSP7E_HUMAN Heat shock 70 kDa protein 14 (HSP70-like protein 1) (Heat shock protein HSP60) (Heat shock protein family A member 14) -Q8IV04 Q8IV04 reviewed TB10C_HUMAN Carabin (TBC1 domain family member 10C) -O14908 O14908 reviewed GIPC1_HUMAN PDZ domain-containing protein GIPC1 (GAIP C-terminus-interacting protein) (RGS-GAIP-interacting protein) (RGS19-interacting protein 1) (Synectin) (Tax interaction protein 2) (TIP-2) -Q76N32 Q76N32 reviewed CEP68_HUMAN Centrosomal protein of 68 kDa (Cep68) -A0A0A0MT60 A0A0A0MT60 A0A0A0MT60_HUMAN deleted -Q0ZGT2 Q0ZGT2 reviewed NEXN_HUMAN Nexilin (F-actin-binding protein) (Nelin) -O00567 O00567 reviewed NOP56_HUMAN Nucleolar protein 56 (Nucleolar protein 5A) -P01023 P01023 reviewed A2MG_HUMAN Alpha-2-macroglobulin (Alpha-2-M) (C3 and PZP-like alpha-2-macroglobulin domain-containing protein 5) -Q7L2J0 Q7L2J0 reviewed MEPCE_HUMAN 7SK snRNA methylphosphate capping enzyme (MePCE) (EC 2.1.1.-) (Bicoid-interacting protein 3 homolog) (Bin3 homolog) -P54259 P54259 reviewed ATN1_HUMAN Atrophin-1 (Dentatorubral-pallidoluysian atrophy protein) -P43686 P43686 reviewed PRS6B_HUMAN 26S proteasome regulatory subunit 6B (26S proteasome AAA-ATPase subunit RPT3) (MB67-interacting protein) (MIP224) (Proteasome 26S subunit ATPase 4) (Tat-binding protein 7) (TBP-7) -Q16718 Q16718 reviewed NDUA5_HUMAN NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 5 (Complex I subunit B13) (Complex I-13kD-B) (CI-13kD-B) (NADH-ubiquinone oxidoreductase 13 kDa-B subunit) -Q9Y6Q9 Q9Y6Q9 reviewed NCOA3_HUMAN Nuclear receptor coactivator 3 (NCoA-3) (EC 2.3.1.48) (ACTR) (Amplified in breast cancer 1 protein) (AIB-1) (CBP-interacting protein) (pCIP) (Class E basic helix-loop-helix protein 42) (bHLHe42) (Receptor-associated coactivator 3) (RAC-3) (Steroid receptor coactivator protein 3) (SRC-3) (Thyroid hormone receptor activator molecule 1) (TRAM-1) -Q9H1I8 Q9H1I8 reviewed ASCC2_HUMAN Activating signal cointegrator 1 complex subunit 2 (ASC-1 complex subunit p100) (Trip4 complex subunit p100) -O75449 O75449 reviewed KTNA1_HUMAN Katanin p60 ATPase-containing subunit A1 (Katanin p60 subunit A1) (EC 5.6.1.1) (p60 katanin) -P58546 P58546 reviewed MTPN_HUMAN Myotrophin (Protein V-1) -Q49A26 Q49A26 reviewed GLYR1_HUMAN Cytokine-like nuclear factor N-PAC (NPAC) (3-hydroxyisobutyrate dehydrogenase-like protein) (Glyoxylate reductase 1 homolog) (Nuclear protein NP60) (Nuclear protein of 60 kDa) (Nucleosome-destabilizing factor) (hNDF) (Putative oxidoreductase GLYR1) -Q7Z2E3 Q7Z2E3 reviewed APTX_HUMAN Aprataxin (EC 3.6.1.71) (EC 3.6.1.72) (Forkhead-associated domain histidine triad-like protein) (FHA-HIT) -Q9Y6A5 Q9Y6A5 reviewed TACC3_HUMAN Transforming acidic coiled-coil-containing protein 3 (ERIC-1) -Q96DC7 Q96DC7 reviewed TMCO6_HUMAN Transmembrane and coiled-coil domain-containing protein 6 -Q9NWQ4 Q9NWQ4 reviewed GPT2L_HUMAN G patch domain-containing protein 2-like -A2VDJ0 A2VDJ0 reviewed T131L_HUMAN Transmembrane protein 131-like -P05386 P05386 reviewed RLA1_HUMAN Large ribosomal subunit protein P1 (60S acidic ribosomal protein P1) -P62805 P62805 reviewed H4_HUMAN Histone H4 -Q96IZ7 Q96IZ7 reviewed RSRC1_HUMAN Serine/Arginine-related protein 53 (SRrp53) (Arginine/serine-rich coiled-coil protein 1) -Q9HCK8 Q9HCK8 reviewed CHD8_HUMAN Chromodomain-helicase-DNA-binding protein 8 (CHD-8) (EC 3.6.4.12) (ATP-dependent helicase CHD8) (Helicase with SNF2 domain 1) -S4R347 S4R347 S4R347_HUMAN deleted -P49790 P49790 reviewed NU153_HUMAN Nuclear pore complex protein Nup153 (153 kDa nucleoporin) (Nucleoporin Nup153) -Q8N999 Q8N999 reviewed RLIG1_HUMAN RNA ligase 1 (EC 6.5.1.3) (RNA ligase) (Rnl) -P28482 P28482 reviewed MK01_HUMAN Mitogen-activated protein kinase 1 (MAP kinase 1) (MAPK 1) (EC 2.7.11.24) (ERT1) (Extracellular signal-regulated kinase 2) (ERK-2) (MAP kinase isoform p42) (p42-MAPK) (Mitogen-activated protein kinase 2) (MAP kinase 2) (MAPK 2) -P08670 P08670 reviewed VIME_HUMAN Vimentin -Q9UGN5 Q9UGN5 reviewed PARP2_HUMAN Poly [ADP-ribose] polymerase 2 (PARP-2) (hPARP-2) (EC 2.4.2.30) (ADP-ribosyltransferase diphtheria toxin-like 2) (ARTD2) (DNA ADP-ribosyltransferase PARP2) (EC 2.4.2.-) (NAD(+) ADP-ribosyltransferase 2) (ADPRT-2) (Poly[ADP-ribose] synthase 2) (pADPRT-2) (Protein poly-ADP-ribosyltransferase PARP2) (EC 2.4.2.-) -Q9ULX6 Q9ULX6 reviewed AKP8L_HUMAN A-kinase anchor protein 8-like (AKAP8-like protein) (Helicase A-binding protein 95) (HAP95) (Homologous to AKAP95 protein) (HA95) (Neighbor of A-kinase-anchoring protein 95) (Neighbor of AKAP95) -Q12830 Q12830 reviewed BPTF_HUMAN Nucleosome-remodeling factor subunit BPTF (Bromodomain and PHD finger-containing transcription factor) (Fetal Alz-50 clone 1 protein) (Fetal Alzheimer antigen) -P20290 P20290 reviewed BTF3_HUMAN Transcription factor BTF3 (Nascent polypeptide-associated complex subunit beta) (NAC-beta) (RNA polymerase B transcription factor 3) -Q96E09 Q96E09 reviewed PBIR1_HUMAN PPP2R1A-PPP2R2A-interacting phosphatase regulator 1 (PABIR family member 1) -P23142 P23142 reviewed FBLN1_HUMAN Fibulin-1 (FIBL-1) -Q9UKV3 Q9UKV3 reviewed ACINU_HUMAN Apoptotic chromatin condensation inducer in the nucleus (Acinus) -Q9NSK0 Q9NSK0 reviewed KLC4_HUMAN Kinesin light chain 4 (KLC 4) (Kinesin-like protein 8) -Q96HY6 Q96HY6 reviewed DDRGK_HUMAN DDRGK domain-containing protein 1 (Dashurin) (UFM1-binding and PCI domain-containing protein 1) -Q6VY07 Q6VY07 reviewed PACS1_HUMAN Phosphofurin acidic cluster sorting protein 1 (PACS-1) -Q9H4A3 Q9H4A3 reviewed WNK1_HUMAN Serine/threonine-protein kinase WNK1 (EC 2.7.11.1) (Erythrocyte 65 kDa protein) (p65) (Kinase deficient protein) (Protein kinase lysine-deficient 1) (Protein kinase with no lysine 1) (hWNK1) diff --git a/hiv-benchmarking/hiv_raw_data/idmapping_active_false_2024_06_26.tsv b/hiv-benchmarking/hiv_raw_data/idmapping_active_false_2024_06_26.tsv deleted file mode 100644 index 7aa3284..0000000 --- a/hiv-benchmarking/hiv_raw_data/idmapping_active_false_2024_06_26.tsv +++ /dev/null @@ -1,19 +0,0 @@ -From Entry Reviewed Entry Name -A0A087WUT6 A0A087WUT6 A0A087WUT6_HUMAN -A0A087WVP1 A0A087WVP1 A0A087WVP1_HUMAN -A0A087X0X3 A0A087X0X3 A0A087X0X3_HUMAN -A0A087X188 A0A087X188 A0A087X188_HUMAN -A0A0A0MT60 A0A0A0MT60 A0A0A0MT60_HUMAN -A0A0B4J2E5 A0A0B4J2E5 A0A0B4J2E5_HUMAN -A0A0C4DGZ1 A0A0C4DGZ1 A0A0C4DGZ1_HUMAN -A0A0D9SF60 A0A0D9SF60 A0A0D9SF60_HUMAN -A0A0D9SFK2 A0A0D9SFK2 A0A0D9SFK2_HUMAN -A0A0G2JH68 A0A0G2JH68 A0A0G2JH68_HUMAN -A0A0G2JNG9 A0A0G2JNG9 A0A0G2JNG9_HUMAN -C9J7T7 C9J7T7 C9J7T7_HUMAN -E7ERR0 E7ERR0 E7ERR0_HUMAN -J3KN59 J3KN59 J3KN59_HUMAN -J3KNN5 J3KNN5 J3KNN5_HUMAN -J3KQ96 J3KQ96 J3KQ96_HUMAN -M0QZI3 M0QZI3 M0QZI3_HUMAN -S4R347 S4R347 S4R347_HUMAN diff --git a/hiv-benchmarking/hiv_raw_data/ko03250.xml b/hiv-benchmarking/hiv_raw_data/ko03250.xml deleted file mode 100644 index 6f1ad2f..0000000 --- a/hiv-benchmarking/hiv_raw_data/ko03250.xml +++ /dev/null @@ -1,569 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/hiv-benchmarking/hiv_raw_data/ko05170.xml b/hiv-benchmarking/hiv_raw_data/ko05170.xml deleted file mode 100644 index 5a7cad2..0000000 --- a/hiv-benchmarking/hiv_raw_data/ko05170.xml +++ /dev/null @@ -1,1383 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/hiv-benchmarking/hiv_raw_data/uniprotkb_go_0000398_AND_taxonomy_id_96_2024_07_25.tsv b/hiv-benchmarking/hiv_raw_data/uniprotkb_go_0000398_AND_taxonomy_id_96_2024_07_25.tsv deleted file mode 100644 index ad91a54..0000000 --- a/hiv-benchmarking/hiv_raw_data/uniprotkb_go_0000398_AND_taxonomy_id_96_2024_07_25.tsv +++ /dev/null @@ -1,678 +0,0 @@ -Entry Reviewed Entry Name Protein names Gene Names Gene Ontology (biological process) -O00148 reviewed DX39A_HUMAN ATP-dependent RNA helicase DDX39A (EC 3.6.4.13) (DEAD box protein 39) (Nuclear RNA helicase URH49) DDX39A DDX39 mRNA export from nucleus [GO:0006406]; mRNA splicing, via spliceosome [GO:0000398]; RNA export from nucleus [GO:0006405] -O14744 reviewed ANM5_HUMAN Protein arginine N-methyltransferase 5 (PRMT5) (EC 2.1.1.320) (72 kDa ICln-binding protein) (Histone-arginine N-methyltransferase PRMT5) (Jak-binding protein 1) (Shk1 kinase-binding protein 1 homolog) (SKB1 homolog) (SKB1Hs) [Cleaved into: Protein arginine N-methyltransferase 5, N-terminally processed] PRMT5 HRMT1L5 IBP72 JBP1 SKB1 chromatin remodeling [GO:0006338]; circadian regulation of gene expression [GO:0032922]; DNA-templated transcription termination [GO:0006353]; endothelial cell activation [GO:0042118]; Golgi ribbon formation [GO:0090161]; liver regeneration [GO:0097421]; negative regulation of cell differentiation [GO:0045596]; negative regulation of gene expression via chromosomal CpG island methylation [GO:0044027]; peptidyl-arginine methylation [GO:0018216]; peptidyl-arginine N-methylation [GO:0035246]; positive regulation of adenylate cyclase-inhibiting dopamine receptor signaling pathway [GO:1904992]; positive regulation of mRNA splicing, via spliceosome [GO:0048026]; positive regulation of oligodendrocyte differentiation [GO:0048714]; regulation of DNA-templated transcription [GO:0006355]; regulation of ERK1 and ERK2 cascade [GO:0070372]; regulation of mitotic nuclear division [GO:0007088]; regulation of signal transduction by p53 class mediator [GO:1901796]; spliceosomal snRNP assembly [GO:0000387] -O14893 reviewed GEMI2_HUMAN Gem-associated protein 2 (Gemin-2) (Component of gems 2) (Survival of motor neuron protein-interacting protein 1) (SMN-interacting protein 1) GEMIN2 SIP1 mRNA processing [GO:0006397]; negative regulation of RNA binding [GO:1905215]; RNA splicing [GO:0008380]; RNA splicing, via transesterification reactions [GO:0000375]; spliceosomal complex assembly [GO:0000245]; spliceosomal snRNP assembly [GO:0000387] -O15234 reviewed CASC3_HUMAN Protein CASC3 (Cancer susceptibility candidate gene 3 protein) (Metastatic lymph node gene 51 protein) (MLN 51) (Protein barentsz) (Btz) CASC3 MLN51 intracellular mRNA localization [GO:0008298]; mRNA export from nucleus [GO:0006406]; mRNA splicing, via spliceosome [GO:0000398]; nuclear-transcribed mRNA catabolic process, nonsense-mediated decay [GO:0000184]; regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay [GO:2000622]; regulation of translation [GO:0006417] -O15541 reviewed R113A_HUMAN E3 ubiquitin-protein ligase RNF113A (EC 2.3.2.27) (Cwc24 homolog) (RING finger protein 113A) (Zinc finger protein 183) RNF113A RNF113 ZNF183 DNA repair [GO:0006281]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of chemokine-mediated signaling pathway [GO:0070100]; protein ubiquitination [GO:0016567]; snoRNA splicing [GO:0034247] -O43143 reviewed DHX15_HUMAN ATP-dependent RNA helicase DHX15 (EC 3.6.4.13) (ATP-dependent RNA helicase #46) (DEAH box protein 15) (Splicing factor Prp43) (hPrp43) DHX15 DBP1 DDX15 antiviral innate immune response [GO:0140374]; defense response to bacterium [GO:0042742]; defense response to virus [GO:0051607]; mRNA processing [GO:0006397]; mRNA splicing, via spliceosome [GO:0000398]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; response to alkaloid [GO:0043279]; response to toxic substance [GO:0009636]; RNA splicing [GO:0008380] -O43172 reviewed PRP4_HUMAN U4/U6 small nuclear ribonucleoprotein Prp4 (PRP4 homolog) (hPrp4) (U4/U6 snRNP 60 kDa protein) (WD splicing factor Prp4) PRPF4 PRP4 mRNA splicing, via spliceosome [GO:0000398]; RNA processing [GO:0006396]; RNA splicing [GO:0008380]; RNA splicing, via transesterification reactions [GO:0000375] -O43290 reviewed SNUT1_HUMAN U4/U6.U5 tri-snRNP-associated protein 1 (SNU66 homolog) (hSnu66) (Squamous cell carcinoma antigen recognized by T-cells 1) (SART-1) (hSART-1) (U4/U6.U5 tri-snRNP-associated 110 kDa protein) (allergen Hom s 1) SART1 maturation of 5S rRNA [GO:0000481]; mRNA cis splicing, via spliceosome [GO:0045292]; mRNA splicing, via spliceosome [GO:0000398]; positive regulation of cytotoxic T cell differentiation [GO:0045585]; spliceosomal snRNP assembly [GO:0000387] -O43390 reviewed HNRPR_HUMAN Heterogeneous nuclear ribonucleoprotein R (hnRNP R) HNRNPR HNRPR mRNA processing [GO:0006397]; mRNA splicing, via spliceosome [GO:0000398] -O43395 reviewed PRPF3_HUMAN U4/U6 small nuclear ribonucleoprotein Prp3 (Pre-mRNA-splicing factor 3) (hPrp3) (U4/U6 snRNP 90 kDa protein) PRPF3 HPRP3 PRP3 mRNA processing [GO:0006397]; mRNA splicing, via spliceosome [GO:0000398]; RNA splicing [GO:0008380]; RNA splicing, via transesterification reactions [GO:0000375]; spliceosomal tri-snRNP complex assembly [GO:0000244] -O43447 reviewed PPIH_HUMAN Peptidyl-prolyl cis-trans isomerase H (PPIase H) (EC 5.2.1.8) (Rotamase H) (Small nuclear ribonucleoprotein particle-specific cyclophilin H) (CypH) (U-snRNP-associated cyclophilin SnuCyp-20) (USA-CYP) PPIH CYP20 CYPH mRNA splicing, via spliceosome [GO:0000398]; positive regulation of viral genome replication [GO:0045070]; protein folding [GO:0006457]; protein peptidyl-prolyl isomerization [GO:0000413]; protein-containing complex assembly [GO:0065003] -O43660 reviewed PLRG1_HUMAN Pleiotropic regulator 1 PLRG1 mRNA splicing, via spliceosome [GO:0000398]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; protein localization to nucleus [GO:0034504] -O43719 reviewed HTSF1_HUMAN 17S U2 SnRNP complex component HTATSF1 (HIV Tat-specific factor 1) (Tat-SF1) HTATSF1 double-strand break repair via homologous recombination [GO:0000724]; mRNA splicing, via spliceosome [GO:0000398]; protein localization to site of double-strand break [GO:1990166]; U2-type prespliceosome assembly [GO:1903241] -O60231 reviewed DHX16_HUMAN Pre-mRNA-splicing factor ATP-dependent RNA helicase DHX16 (EC 3.6.4.13) (ATP-dependent RNA helicase #3) (DEAH-box protein 16) DHX16 DBP2 DDX16 KIAA0577 PRP2 antiviral innate immune response [GO:0140374]; mRNA splicing, via spliceosome [GO:0000398]; RNA splicing [GO:0008380] -O60306 reviewed AQR_HUMAN RNA helicase aquarius (EC 3.6.4.13) (Intron-binding protein of 160 kDa) (IBP160) AQR KIAA0560 mRNA splicing, via spliceosome [GO:0000398] -O60506 reviewed HNRPQ_HUMAN Heterogeneous nuclear ribonucleoprotein Q (hnRNP Q) (Glycine- and tyrosine-rich RNA-binding protein) (GRY-RBP) (NS1-associated protein 1) (Synaptotagmin-binding, cytoplasmic RNA-interacting protein) SYNCRIP HNRPQ NSAP1 cellular response to type II interferon [GO:0071346]; CRD-mediated mRNA stabilization [GO:0070934]; mRNA modification [GO:0016556]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay [GO:1900152]; negative regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay [GO:2000623]; negative regulation of translation [GO:0017148]; osteoblast differentiation [GO:0001649]; positive regulation of cytoplasmic translation [GO:2000767]; positive regulation of DNA demethylation [GO:1901537]; RNA processing [GO:0006396]; RNA splicing [GO:0008380] -O60508 reviewed PRP17_HUMAN Pre-mRNA-processing factor 17 (Cell division cycle 40 homolog) (EH-binding protein 3) (Ehb3) (PRP17 homolog) (hPRP17) CDC40 EHB3 PRP17 PRPF17 embryonic brain development [GO:1990403]; mRNA splicing, via spliceosome [GO:0000398] -O60828 reviewed PQBP1_HUMAN Polyglutamine-binding protein 1 (PQBP-1) (38 kDa nuclear protein containing a WW domain) (Npw38) (Polyglutamine tract-binding protein 1) PQBP1 NPW38 JM26 activation of innate immune response [GO:0002218]; alternative mRNA splicing, via spliceosome [GO:0000380]; cellular response to exogenous dsRNA [GO:0071360]; defense response to virus [GO:0051607]; innate immune response [GO:0045087]; neuron projection development [GO:0031175]; positive regulation of defense response to virus by host [GO:0002230]; positive regulation of type I interferon production [GO:0032481]; regulation of dendrite morphogenesis [GO:0048814]; regulation of DNA-templated transcription [GO:0006355]; regulation of RNA splicing [GO:0043484] -O60936 reviewed NOL3_HUMAN Nucleolar protein 3 (Apoptosis repressor with CARD) (Muscle-enriched cytoplasmic protein) (Myp) (Nucleolar protein of 30 kDa) (Nop30) NOL3 ARC NOP blood vessel remodeling [GO:0001974]; cardiac muscle cell apoptotic process [GO:0010659]; inhibition of cysteine-type endopeptidase activity involved in apoptotic process [GO:1990001]; intrinsic apoptotic signaling pathway [GO:0097193]; mRNA splice site recognition [GO:0006376]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cardiac muscle cell apoptotic process [GO:0010667]; negative regulation of extrinsic apoptotic signaling pathway [GO:2001237]; negative regulation of hypoxia-induced intrinsic apoptotic signaling pathway [GO:1903298]; negative regulation of intrinsic apoptotic signaling pathway [GO:2001243]; negative regulation of mitochondrial membrane permeability involved in apoptotic process [GO:1902109]; negative regulation of muscle atrophy [GO:0014736]; negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway [GO:1902176]; negative regulation of programmed necrotic cell death [GO:0062099]; negative regulation of release of cytochrome c from mitochondria [GO:0090201]; negative regulation of tumor necrosis factor-mediated signaling pathway [GO:0010804]; protein complex oligomerization [GO:0051259]; regulation of non-canonical NF-kappaB signal transduction [GO:1901222]; release of sequestered calcium ion into cytosol by sarcoplasmic reticulum [GO:0014808]; response to hypoxia [GO:0001666]; response to injury involved in regulation of muscle adaptation [GO:0014876]; response to ischemia [GO:0002931]; RNA splicing [GO:0008380] -O75400 reviewed PR40A_HUMAN Pre-mRNA-processing factor 40 homolog A (Fas ligand-associated factor 1) (Formin-binding protein 11) (Formin-binding protein 3) (Huntingtin yeast partner A) (Huntingtin-interacting protein 10) (HIP-10) (Huntingtin-interacting protein A) (Renal carcinoma antigen NY-REN-6) PRPF40A FBP11 FLAF1 FNBP3 HIP10 HYPA HSPC225 cell division [GO:0051301]; cell migration [GO:0016477]; cytoskeleton organization [GO:0007010]; mRNA cis splicing, via spliceosome [GO:0045292]; mRNA splicing, via spliceosome [GO:0000398]; regulation of cell shape [GO:0008360]; regulation of cytokinesis [GO:0032465] -O75475 reviewed PSIP1_HUMAN PC4 and SFRS1-interacting protein (CLL-associated antigen KW-7) (Dense fine speckles 70 kDa protein) (DFS 70) (Lens epithelium-derived growth factor) (Transcriptional coactivator p75/p52) PSIP1 DFS70 LEDGF PSIP2 chromatin remodeling [GO:0006338]; mRNA 5'-splice site recognition [GO:0000395]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to heat [GO:0009408]; response to oxidative stress [GO:0006979] -O75494 reviewed SRS10_HUMAN Serine/arginine-rich splicing factor 10 (40 kDa SR-repressor protein) (SRrp40) (FUS-interacting serine-arginine-rich protein 1) (Splicing factor SRp38) (Splicing factor, arginine/serine-rich 13A) (TLS-associated protein with Ser-Arg repeats) (TASR) (TLS-associated protein with SR repeats) (TLS-associated serine-arginine protein) (TLS-associated SR protein) SRSF10 FUSIP1 FUSIP2 SFRS13A TASR cytosolic transport [GO:0016482]; mRNA splice site recognition [GO:0006376]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of mRNA splicing, via spliceosome [GO:0048025]; regulation of DNA-templated transcription [GO:0006355]; regulation of mRNA splicing, via spliceosome [GO:0048024]; RNA splicing, via transesterification reactions [GO:0000375]; spliceosomal tri-snRNP complex assembly [GO:0000244] -O75533 reviewed SF3B1_HUMAN Splicing factor 3B subunit 1 (Pre-mRNA-splicing factor SF3b 155 kDa subunit) (SF3b155) (Spliceosome-associated protein 155) (SAP 155) SF3B1 SAP155 chromatin remodeling [GO:0006338]; mRNA splicing, via spliceosome [GO:0000398]; positive regulation of transcription by RNA polymerase I [GO:0045943]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription by RNA polymerase III [GO:0045945]; RNA splicing [GO:0008380]; RNA splicing, via transesterification reactions [GO:0000375]; spliceosomal complex assembly [GO:0000245]; U2-type prespliceosome assembly [GO:1903241] -O75554 reviewed WBP4_HUMAN WW domain-binding protein 4 (WBP-4) (Formin-binding protein 21) (WW domain-containing-binding protein 4) WBP4 FBP21 FNBP21 mRNA cis splicing, via spliceosome [GO:0045292]; mRNA splicing, via spliceosome [GO:0000398]; RNA splicing [GO:0008380] -O75643 reviewed U520_HUMAN U5 small nuclear ribonucleoprotein 200 kDa helicase (EC 3.6.4.13) (Activating signal cointegrator 1 complex subunit 3-like 1) (BRR2 homolog) (U5 snRNP-specific 200 kDa protein) (U5-200KD) SNRNP200 ASCC3L1 BRR2 HELIC2 KIAA0788 cis assembly of pre-catalytic spliceosome [GO:0000354]; mRNA splicing, via spliceosome [GO:0000398]; osteoblast differentiation [GO:0001649]; spliceosome conformational change to release U4 (or U4atac) and U1 (or U11) [GO:0000388] -O75934 reviewed SPF27_HUMAN Pre-mRNA-splicing factor SPF27 (Breast carcinoma-amplified sequence 2) (DNA amplified in mammary carcinoma 1 protein) (Spliceosome-associated protein SPF 27) BCAS2 DAM1 mRNA splicing, via spliceosome [GO:0000398]; RNA splicing [GO:0008380]; RNA splicing, via transesterification reactions [GO:0000375] -O94906 reviewed PRP6_HUMAN Pre-mRNA-processing factor 6 (Androgen receptor N-terminal domain-transactivating protein 1) (ANT-1) (PRP6 homolog) (U5 snRNP-associated 102 kDa protein) (U5-102 kDa protein) PRPF6 C20orf14 mRNA splicing, via spliceosome [GO:0000398]; positive regulation of transcription by RNA polymerase II [GO:0045944]; RNA localization [GO:0006403]; RNA splicing [GO:0008380]; RNA splicing, via transesterification reactions [GO:0000375]; spliceosomal complex assembly [GO:0000245]; spliceosomal tri-snRNP complex assembly [GO:0000244] -O95232 reviewed LC7L3_HUMAN Luc7-like protein 3 (Cisplatin resistance-associated-overexpressed protein) (Luc7A) (Okadaic acid-inducible phosphoprotein OA48-18) (cAMP regulatory element-associated protein 1) (CRE-associated protein 1) (CREAP-1) LUC7L3 CREAP1 CROP O48 mRNA splice site recognition [GO:0006376]; RNA splicing [GO:0008380] -O95319 reviewed CELF2_HUMAN CUGBP Elav-like family member 2 (CELF-2) (Bruno-like protein 3) (CUG triplet repeat RNA-binding protein 2) (CUG-BP2) (CUG-BP- and ETR-3-like factor 2) (ELAV-type RNA-binding protein 3) (ETR-3) (Neuroblastoma apoptosis-related RNA-binding protein) (hNAPOR) (RNA-binding protein BRUNOL-3) CELF2 BRUNOL3 CUGBP2 ETR3 NAPOR mRNA splice site recognition [GO:0006376]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; regulation of heart contraction [GO:0008016]; RNA processing [GO:0006396] -O95391 reviewed SLU7_HUMAN Pre-mRNA-splicing factor SLU7 (hSlu7) SLU7 alternative mRNA splicing, via spliceosome [GO:0000380]; cellular response to heat [GO:0034605]; intracellular protein transport [GO:0006886]; mRNA 3'-splice site recognition [GO:0000389]; mRNA splicing, via spliceosome [GO:0000398]; RNA splicing [GO:0008380]; RNA splicing, via transesterification reactions [GO:0000375] -O95400 reviewed CD2B2_HUMAN CD2 antigen cytoplasmic tail-binding protein 2 (CD2 cytoplasmic domain-binding protein 2) (CD2 tail-binding protein 2) (U5 snRNP 52K protein) (U5-52K) CD2BP2 KIAA1178 spliceosomal tri-snRNP complex assembly [GO:0000244] -O95777 reviewed LSM8_HUMAN U6 snRNA-associated Sm-like protein LSm8 LSM8 mRNA splicing, via spliceosome [GO:0000398] -O95926 reviewed SYF2_HUMAN Pre-mRNA-splicing factor SYF2 (CCNDBP1-interactor) (p29) SYF2 CBPIN GCIPIP embryonic organ development [GO:0048568]; gastrulation [GO:0007369]; in utero embryonic development [GO:0001701]; mitotic G2 DNA damage checkpoint signaling [GO:0007095]; mRNA splicing, via spliceosome [GO:0000398]; positive regulation of cell population proliferation [GO:0008284] -P07910 reviewed HNRPC_HUMAN Heterogeneous nuclear ribonucleoproteins C1/C2 (hnRNP C1/C2) HNRNPC HNRPC 3'-UTR-mediated mRNA stabilization [GO:0070935]; chromatin remodeling [GO:0006338]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of telomere maintenance via telomerase [GO:0032211]; osteoblast differentiation [GO:0001649]; RNA splicing [GO:0008380] -P08579 reviewed RU2B_HUMAN U2 small nuclear ribonucleoprotein B'' (U2 snRNP B'') SNRPB2 mRNA splicing, via spliceosome [GO:0000398]; U2-type prespliceosome assembly [GO:1903241] -P08621 reviewed RU17_HUMAN U1 small nuclear ribonucleoprotein 70 kDa (U1 snRNP 70 kDa) (U1-70K) (snRNP70) SNRNP70 RNPU1Z RPU1 SNRP70 U1AP1 mRNA splicing, via spliceosome [GO:0000398]; negative regulation of chaperone-mediated autophagy [GO:1904715]; negative regulation of protein refolding [GO:0061084]; positive regulation of mRNA splicing, via spliceosome [GO:0048026]; regulation of ATP-dependent activity [GO:0043462]; regulation of RNA splicing [GO:0043484] -P09012 reviewed SNRPA_HUMAN U1 small nuclear ribonucleoprotein A (U1 snRNP A) (U1-A) (U1A) SNRPA mRNA splicing, via spliceosome [GO:0000398] -P09234 reviewed RU1C_HUMAN U1 small nuclear ribonucleoprotein C (U1 snRNP C) (U1-C) (U1C) SNRPC mRNA 5'-splice site recognition [GO:0000395]; mRNA splicing, via spliceosome [GO:0000398]; spliceosomal snRNP assembly [GO:0000387] -P09651 reviewed ROA1_HUMAN Heterogeneous nuclear ribonucleoprotein A1 (hnRNP A1) (Helix-destabilizing protein) (Single-strand RNA-binding protein) (hnRNP core protein A1) [Cleaved into: Heterogeneous nuclear ribonucleoprotein A1, N-terminally processed] HNRNPA1 HNRPA1 cellular response to glucose starvation [GO:0042149]; cellular response to sodium arsenite [GO:1903936]; import into nucleus [GO:0051170]; mRNA splicing, via spliceosome [GO:0000398]; mRNA transport [GO:0051028]; negative regulation of telomere maintenance via telomerase [GO:0032211]; nuclear export [GO:0051168]; positive regulation of telomere maintenance via telomerase [GO:0032212]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; regulation of RNA splicing [GO:0043484]; RNA export from nucleus [GO:0006405] -P09661 reviewed RU2A_HUMAN U2 small nuclear ribonucleoprotein A' (U2 snRNP A') SNRPA1 mRNA splicing, via spliceosome [GO:0000398]; RNA splicing [GO:0008380]; spermatogenesis [GO:0007283]; U2-type prespliceosome assembly [GO:1903241] -P11142 reviewed HSP7C_HUMAN Heat shock cognate 71 kDa protein (EC 3.6.4.10) (Heat shock 70 kDa protein 8) (Heat shock protein family A member 8) (Lipopolysaccharide-associated protein 1) (LAP-1) (LPS-associated protein 1) HSPA8 HSC70 HSP73 HSPA10 ATP metabolic process [GO:0046034]; cellular response to cadmium ion [GO:0071276]; cellular response to heat [GO:0034605]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to starvation [GO:0009267]; cellular response to steroid hormone stimulus [GO:0071383]; cerebellum development [GO:0021549]; chaperone cofactor-dependent protein refolding [GO:0051085]; chaperone-mediated autophagy [GO:0061684]; chaperone-mediated autophagy translocation complex disassembly [GO:1904764]; clathrin coat disassembly [GO:0072318]; estrous cycle [GO:0044849]; forebrain development [GO:0030900]; G1/S transition of mitotic cell cycle [GO:0000082]; kidney development [GO:0001822]; late endosomal microautophagy [GO:0061738]; maintenance of postsynaptic specialization structure [GO:0098880]; membrane organization [GO:0061024]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of cardiac muscle cell apoptotic process [GO:0010667]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of NLRP3 inflammasome complex assembly [GO:1900226]; negative regulation of supramolecular fiber organization [GO:1902904]; positive regulation by host of viral genome replication [GO:0044829]; positive regulation of lysosomal membrane permeability [GO:0097214]; positive regulation of mRNA splicing, via spliceosome [GO:0048026]; positive regulation of phagocytosis [GO:0050766]; positive regulation of protein refolding [GO:1904592]; positive regulation of proteolysis [GO:0045862]; positive regulation of T cell mediated cytotoxicity [GO:0001916]; protein folding [GO:0006457]; protein import into nucleus [GO:0006606]; protein refolding [GO:0042026]; protein targeting to lysosome involved in chaperone-mediated autophagy [GO:0061740]; protein transmembrane import into intracellular organelle [GO:0044743]; regulation of cell cycle [GO:0051726]; regulation of postsynapse organization [GO:0099175]; regulation of protein complex stability [GO:0061635]; regulation of protein import [GO:1904589]; regulation of protein stability [GO:0031647]; regulation of protein-containing complex assembly [GO:0043254]; response to activity [GO:0014823]; response to estradiol [GO:0032355]; response to ethanol [GO:0045471]; response to nickel cation [GO:0010045]; response to odorant [GO:1990834]; response to progesterone [GO:0032570]; response to unfolded protein [GO:0006986]; response to xenobiotic stimulus [GO:0009410]; skeletal muscle tissue development [GO:0007519]; slow axonal transport [GO:1990832]; synaptic vesicle uncoating [GO:0016191] -P11940 reviewed PABP1_HUMAN Polyadenylate-binding protein 1 (PABP-1) (Poly(A)-binding protein 1) PABPC1 PAB1 PABP PABP1 PABPC2 CRD-mediated mRNA stabilization [GO:0070934]; mRNA splicing, via spliceosome [GO:0000398]; mRNA stabilization [GO:0048255]; negative regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay [GO:1900152]; negative regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay [GO:2000623]; nuclear-transcribed mRNA catabolic process, nonsense-mediated decay [GO:0000184]; positive regulation of cytoplasmic translation [GO:2000767]; positive regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay [GO:1900153]; positive regulation of nuclear-transcribed mRNA poly(A) tail shortening [GO:0060213]; positive regulation of viral genome replication [GO:0045070]; regulatory ncRNA-mediated gene silencing [GO:0031047] -P13994 reviewed YJU2B_HUMAN Probable splicing factor YJU2B (Coiled-coil domain-containing protein 130) YJU2B CCDC130 SB115 mRNA splicing, via spliceosome [GO:0000398]; response to virus [GO:0009615]; RNA splicing [GO:0008380] -P14678 reviewed RSMB_HUMAN Small nuclear ribonucleoprotein-associated proteins B and B' (snRNP-B) (Sm protein B/B') (Sm-B/B') (SmB/B') SNRPB COD SNRPB1 7-methylguanosine cap hypermethylation [GO:0036261]; mRNA splicing, via spliceosome [GO:0000398]; protein methylation [GO:0006479]; RNA splicing [GO:0008380]; spliceosomal snRNP assembly [GO:0000387]; U2-type prespliceosome assembly [GO:1903241] -P16383 reviewed GCFC2_HUMAN Intron Large complex component GCFC2 (GC-rich sequence DNA-binding factor) (GC-rich sequence DNA-binding factor 2) (Transcription factor 9) (TCF-9) GCFC2 C2orf3 GCF TCF9 mRNA splicing, via spliceosome [GO:0000398]; spliceosomal complex assembly [GO:0000245] -P17844 reviewed DDX5_HUMAN Probable ATP-dependent RNA helicase DDX5 (EC 3.6.4.13) (DEAD box protein 5) (RNA helicase p68) DDX5 G17P1 HELR HLR1 alternative mRNA splicing, via spliceosome [GO:0000380]; androgen receptor signaling pathway [GO:0030521]; BMP signaling pathway [GO:0030509]; epithelial to mesenchymal transition [GO:0001837]; intracellular estrogen receptor signaling pathway [GO:0030520]; intrinsic apoptotic signaling pathway by p53 class mediator [GO:0072332]; miRNA transcription [GO:0061614]; mRNA splicing, via spliceosome [GO:0000398]; mRNA transcription [GO:0009299]; myoblast differentiation [GO:0045445]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nuclear-transcribed mRNA catabolic process [GO:0000956]; positive regulation of DNA damage response, signal transduction by p53 class mediator [GO:0043517]; primary miRNA processing [GO:0031053]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; regulation of androgen receptor signaling pathway [GO:0060765]; regulation of osteoblast differentiation [GO:0045667]; regulation of skeletal muscle cell differentiation [GO:2001014]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of viral genome replication [GO:0045069]; rhythmic process [GO:0048511] -P22626 reviewed ROA2_HUMAN Heterogeneous nuclear ribonucleoproteins A2/B1 (hnRNP A2/B1) HNRNPA2B1 HNRPA2B1 G-quadruplex DNA unwinding [GO:0044806]; miRNA transport [GO:1990428]; mRNA export from nucleus [GO:0006406]; mRNA processing [GO:0006397]; mRNA splicing, via spliceosome [GO:0000398]; mRNA transport [GO:0051028]; negative regulation of mRNA splicing, via spliceosome [GO:0048025]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of telomerase RNA reverse transcriptase activity [GO:1905663]; positive regulation of telomere maintenance via telomere lengthening [GO:1904358]; primary miRNA processing [GO:0031053]; RNA transport [GO:0050658] -P23246 reviewed SFPQ_HUMAN Splicing factor, proline- and glutamine-rich (100 kDa DNA-pairing protein) (hPOMp100) (DNA-binding p52/p100 complex, 100 kDa subunit) (Polypyrimidine tract-binding protein-associated-splicing factor) (PSF) (PTB-associated-splicing factor) SFPQ PSF activation of innate immune response [GO:0002218]; alternative mRNA splicing, via spliceosome [GO:0000380]; chromatin remodeling [GO:0006338]; double-strand break repair via homologous recombination [GO:0000724]; innate immune response [GO:0045087]; mRNA processing [GO:0006397]; negative regulation of circadian rhythm [GO:0042754]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of oxidative stress-induced intrinsic apoptotic signaling pathway [GO:1902177]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of circadian rhythm [GO:0042752]; regulation of DNA-templated transcription [GO:0006355]; rhythmic process [GO:0048511]; RNA splicing [GO:0008380] -P26368 reviewed U2AF2_HUMAN Splicing factor U2AF 65 kDa subunit (U2 auxiliary factor 65 kDa subunit) (hU2AF(65)) (hU2AF65) (U2 snRNP auxiliary factor large subunit) U2AF2 U2AF65 mRNA processing [GO:0006397]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of mRNA splicing, via spliceosome [GO:0048025]; negative regulation of protein ubiquitination [GO:0031397]; positive regulation of RNA splicing [GO:0033120]; spliceosomal complex assembly [GO:0000245] -P31942 reviewed HNRH3_HUMAN Heterogeneous nuclear ribonucleoprotein H3 (hnRNP H3) (Heterogeneous nuclear ribonucleoprotein 2H9) (hnRNP 2H9) HNRNPH3 HNRPH3 epithelial cell differentiation [GO:0030855]; mRNA splicing, via spliceosome [GO:0000398]; regulation of RNA splicing [GO:0043484]; RNA processing [GO:0006396]; RNA splicing [GO:0008380] -P31943 reviewed HNRH1_HUMAN Heterogeneous nuclear ribonucleoprotein H (hnRNP H) [Cleaved into: Heterogeneous nuclear ribonucleoprotein H, N-terminally processed] HNRNPH1 HNRPH HNRPH1 mRNA splicing, via spliceosome [GO:0000398]; regulation of RNA splicing [GO:0043484]; RNA processing [GO:0006396] -P38159 reviewed RBMX_HUMAN RNA-binding motif protein, X chromosome (Glycoprotein p43) (Heterogeneous nuclear ribonucleoprotein G) (hnRNP G) [Cleaved into: RNA-binding motif protein, X chromosome, N-terminally processed] RBMX HNRPG RBMXP1 cellular response to interleukin-1 [GO:0071347]; membrane protein ectodomain proteolysis [GO:0006509]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of mRNA splicing, via spliceosome [GO:0048025]; osteoblast differentiation [GO:0001649]; positive regulation of mRNA splicing, via spliceosome [GO:0048026]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein homooligomerization [GO:0051260]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; transcription by RNA polymerase II [GO:0006366] -P38432 reviewed COIL_HUMAN Coilin (p80-coilin) COIL CLN80 spliceosomal snRNP assembly [GO:0000387] -P38919 reviewed IF4A3_HUMAN Eukaryotic initiation factor 4A-III (eIF-4A-III) (eIF4A-III) (EC 3.6.4.13) (ATP-dependent RNA helicase DDX48) (ATP-dependent RNA helicase eIF4A-3) (DEAD box protein 48) (Eukaryotic initiation factor 4A-like NUK-34) (Eukaryotic translation initiation factor 4A isoform 3) (Nuclear matrix protein 265) (NMP 265) (hNMP 265) [Cleaved into: Eukaryotic initiation factor 4A-III, N-terminally processed] EIF4A3 DDX48 KIAA0111 associative learning [GO:0008306]; cellular response to brain-derived neurotrophic factor stimulus [GO:1990416]; cellular response to selenite ion [GO:0072715]; embryonic cranial skeleton morphogenesis [GO:0048701]; exploration behavior [GO:0035640]; mRNA export from nucleus [GO:0006406]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of excitatory postsynaptic potential [GO:0090394]; negative regulation of selenocysteine incorporation [GO:1904570]; negative regulation of translation [GO:0017148]; nuclear-transcribed mRNA catabolic process, nonsense-mediated decay [GO:0000184]; positive regulation of translation [GO:0045727]; regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay [GO:2000622]; regulation of translation at postsynapse, modulating synaptic transmission [GO:0099578]; response to organic cyclic compound [GO:0014070]; rRNA processing [GO:0006364] -P41223 reviewed BUD31_HUMAN Protein BUD31 homolog (Protein EDG-2) (Protein G10 homolog) BUD31 EDG2 mRNA splicing, via spliceosome [GO:0000398]; positive regulation of androgen receptor activity [GO:2000825] -P42285 reviewed MTREX_HUMAN Exosome RNA helicase MTR4 (EC 3.6.4.13) (ATP-dependent RNA helicase DOB1) (ATP-dependent RNA helicase SKIV2L2) (Superkiller viralicidic activity 2-like 2) (TRAMP-like complex helicase) MTREX DOB1 KIAA0052 MTR4 SKIV2L2 DNA damage response [GO:0006974]; maturation of 5.8S rRNA [GO:0000460]; mRNA splicing, via spliceosome [GO:0000398]; RNA catabolic process [GO:0006401]; rRNA processing [GO:0006364]; snRNA catabolic process [GO:0016076] -P51513 reviewed NOVA1_HUMAN RNA-binding protein Nova-1 (Neuro-oncological ventral antigen 1) (Onconeural ventral antigen 1) (Paraneoplastic Ri antigen) (Ventral neuron-specific protein 1) NOVA1 mRNA splicing, via spliceosome [GO:0000398]; negative regulation of cold-induced thermogenesis [GO:0120163]; nervous system development [GO:0007399]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; RNA processing [GO:0006396]; RNA splicing [GO:0008380] -P51991 reviewed ROA3_HUMAN Heterogeneous nuclear ribonucleoprotein A3 (hnRNP A3) HNRNPA3 HNRPA3 mRNA splicing, via spliceosome [GO:0000398] -P52272 reviewed HNRPM_HUMAN Heterogeneous nuclear ribonucleoprotein M (hnRNP M) HNRNPM HNRPM NAGR1 alternative mRNA splicing, via spliceosome [GO:0000380]; mRNA splicing, via spliceosome [GO:0000398] -P52298 reviewed NCBP2_HUMAN Nuclear cap-binding protein subunit 2 (20 kDa nuclear cap-binding protein) (Cell proliferation-inducing gene 55 protein) (NCBP 20 kDa subunit) (CBP20) (NCBP-interacting protein 1) (NIP1) NCBP2 CBP20 PIG55 alternative mRNA splicing, via spliceosome [GO:0000380]; cap-dependent translational initiation [GO:0002191]; histone mRNA metabolic process [GO:0008334]; miRNA-mediated post-transcriptional gene silencing [GO:0035195]; mRNA 3'-end processing [GO:0031124]; mRNA cis splicing, via spliceosome [GO:0045292]; mRNA export from nucleus [GO:0006406]; mRNA metabolic process [GO:0016071]; mRNA splicing, via spliceosome [GO:0000398]; mRNA transcription by RNA polymerase II [GO:0042789]; nuclear-transcribed mRNA catabolic process, nonsense-mediated decay [GO:0000184]; positive regulation of mRNA 3'-end processing [GO:0031442]; positive regulation of RNA export from nucleus [GO:0046833]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; primary miRNA processing [GO:0031053]; regulation of translational initiation [GO:0006446]; regulatory ncRNA-mediated post-transcriptional gene silencing [GO:0035194]; RNA splicing [GO:0008380]; snRNA export from nucleus [GO:0006408] -P52597 reviewed HNRPF_HUMAN Heterogeneous nuclear ribonucleoprotein F (hnRNP F) (Nucleolin-like protein mcs94-1) [Cleaved into: Heterogeneous nuclear ribonucleoprotein F, N-terminally processed] HNRNPF HNRPF mRNA splicing, via spliceosome [GO:0000398]; regulation of RNA splicing [GO:0043484]; RNA processing [GO:0006396] -P52756 reviewed RBM5_HUMAN RNA-binding protein 5 (Protein G15) (Putative tumor suppressor LUCA15) (RNA-binding motif protein 5) (Renal carcinoma antigen NY-REN-9) RBM5 H37 LUCA15 apoptotic process [GO:0006915]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of cell population proliferation [GO:0008285]; positive regulation of apoptotic process [GO:0043065]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; RNA processing [GO:0006396]; spliceosomal complex assembly [GO:0000245] -P54105 reviewed ICLN_HUMAN Methylosome subunit pICln (Chloride channel, nucleotide sensitive 1A) (Chloride conductance regulatory protein ICln) (I(Cln)) (Chloride ion current inducer protein) (ClCI) (Reticulocyte pICln) CLNS1A CLCI ICLN cell volume homeostasis [GO:0006884]; chloride transport [GO:0006821]; mRNA cis splicing, via spliceosome [GO:0045292]; positive regulation of mRNA splicing, via spliceosome [GO:0048026]; spliceosomal snRNP assembly [GO:0000387] -P55081 reviewed MFAP1_HUMAN Microfibrillar-associated protein 1 (Spliceosome B complex protein MFAP1) MFAP1 mRNA splicing, via spliceosome [GO:0000398] -P55769 reviewed NH2L1_HUMAN NHP2-like protein 1 (High mobility group-like nuclear protein 2 homolog 1) (OTK27) (SNU13 homolog) (hSNU13) (U4/U6.U5 small nuclear ribonucleoprotein SNU13) (U4/U6.U5 tri-snRNP 15.5 kDa protein) [Cleaved into: NHP2-like protein 1, N-terminally processed] SNU13 NHP2L1 box C/D snoRNP assembly [GO:0000492]; maturation of SSU-rRNA [GO:0030490]; mRNA splicing, via spliceosome [GO:0000398]; ribosomal small subunit biogenesis [GO:0042274]; single fertilization [GO:0007338] -P57678 reviewed GEMI4_HUMAN Gem-associated protein 4 (Gemin-4) (Component of gems 4) (p97) GEMIN4 rRNA processing [GO:0006364]; spliceosomal snRNP assembly [GO:0000387] -P61326 reviewed MGN_HUMAN Protein mago nashi homolog MAGOH MAGOHA mRNA export from nucleus [GO:0006406]; mRNA splicing, via spliceosome [GO:0000398]; nuclear-transcribed mRNA catabolic process, nonsense-mediated decay [GO:0000184]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; regulation of mRNA processing [GO:0050684]; regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay [GO:2000622]; regulation of translation [GO:0006417]; RNA splicing [GO:0008380] -P61978 reviewed HNRPK_HUMAN Heterogeneous nuclear ribonucleoprotein K (hnRNP K) (Transformation up-regulated nuclear protein) (TUNP) HNRNPK HNRPK mRNA splicing, via spliceosome [GO:0000398]; negative regulation of apoptotic process [GO:0043066]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of mRNA splicing, via spliceosome [GO:0048025]; positive regulation of low-density lipoprotein receptor activity [GO:1905599]; positive regulation of receptor-mediated endocytosis [GO:0048260]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:1902165]; regulation of low-density lipoprotein particle clearance [GO:0010988]; regulation of mRNA splicing, via spliceosome [GO:0048024]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA processing [GO:0006396]; signal transduction [GO:0007165] -P62304 reviewed RUXE_HUMAN Small nuclear ribonucleoprotein E (snRNP-E) (Sm protein E) (Sm-E) (SmE) SNRPE 7-methylguanosine cap hypermethylation [GO:0036261]; mRNA splicing, via spliceosome [GO:0000398]; spliceosomal complex assembly [GO:0000245]; spliceosomal snRNP assembly [GO:0000387]; U2-type prespliceosome assembly [GO:1903241] -P62306 reviewed RUXF_HUMAN Small nuclear ribonucleoprotein F (snRNP-F) (Sm protein F) (Sm-F) (SmF) SNRPF PBSCF 7-methylguanosine cap hypermethylation [GO:0036261]; mRNA splicing, via spliceosome [GO:0000398]; RNA splicing [GO:0008380]; spliceosomal snRNP assembly [GO:0000387]; U2-type prespliceosome assembly [GO:1903241] -P62308 reviewed RUXG_HUMAN Small nuclear ribonucleoprotein G (snRNP-G) (Sm protein G) (Sm-G) (SmG) SNRPG PBSCG 7-methylguanosine cap hypermethylation [GO:0036261]; mRNA splicing, via spliceosome [GO:0000398]; RNA splicing [GO:0008380]; spliceosomal complex assembly [GO:0000245]; spliceosomal snRNP assembly [GO:0000387]; U2-type prespliceosome assembly [GO:1903241] -P62310 reviewed LSM3_HUMAN U6 snRNA-associated Sm-like protein LSm3 LSM3 MDS017 mRNA processing [GO:0006397]; mRNA splicing, via spliceosome [GO:0000398]; P-body assembly [GO:0033962] -P62312 reviewed LSM6_HUMAN U6 snRNA-associated Sm-like protein LSm6 LSM6 maturation of SSU-rRNA [GO:0030490]; mRNA catabolic process [GO:0006402]; mRNA splicing, via spliceosome [GO:0000398]; RNA splicing [GO:0008380]; tRNA processing [GO:0008033] -P62314 reviewed SMD1_HUMAN Small nuclear ribonucleoprotein Sm D1 (Sm-D1) (Sm-D autoantigen) (snRNP core protein D1) SNRPD1 7-methylguanosine cap hypermethylation [GO:0036261]; mRNA splicing, via spliceosome [GO:0000398]; RNA splicing [GO:0008380]; spliceosomal complex assembly [GO:0000245]; spliceosomal snRNP assembly [GO:0000387]; U2-type prespliceosome assembly [GO:1903241] -P62316 reviewed SMD2_HUMAN Small nuclear ribonucleoprotein Sm D2 (Sm-D2) (snRNP core protein D2) SNRPD2 SNRPD1 7-methylguanosine cap hypermethylation [GO:0036261]; mRNA splicing, via spliceosome [GO:0000398]; RNA splicing [GO:0008380]; spliceosomal complex assembly [GO:0000245]; spliceosomal snRNP assembly [GO:0000387]; U2-type prespliceosome assembly [GO:1903241] -P62318 reviewed SMD3_HUMAN Small nuclear ribonucleoprotein Sm D3 (Sm-D3) (snRNP core protein D3) SNRPD3 7-methylguanosine cap hypermethylation [GO:0036261]; mRNA splicing, via spliceosome [GO:0000398]; protein methylation [GO:0006479]; RNA splicing [GO:0008380]; spliceosomal snRNP assembly [GO:0000387]; U2-type prespliceosome assembly [GO:1903241] -P62995 reviewed TRA2B_HUMAN Transformer-2 protein homolog beta (TRA-2 beta) (TRA2-beta) (hTRA2-beta) (Splicing factor, arginine/serine-rich 10) (Transformer-2 protein homolog B) TRA2B SFRS10 cellular response to glucose stimulus [GO:0071333]; cerebral cortex regionalization [GO:0021796]; embryonic brain development [GO:1990403]; mRNA splicing, via spliceosome [GO:0000398]; positive regulation of mRNA splicing, via spliceosome [GO:0048026]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; regulation of RNA splicing [GO:0043484]; RNA splicing, via transesterification reactions [GO:0000375] -P63162 reviewed RSMN_HUMAN Small nuclear ribonucleoprotein-associated protein N (snRNP-N) (Sm protein D) (Sm-D) (Sm protein N) (Sm-N) (SmN) (Tissue-specific-splicing protein) SNRPN HCERN3 SMN mRNA splicing, via spliceosome [GO:0000398]; RNA splicing [GO:0008380] -P78332 reviewed RBM6_HUMAN RNA-binding protein 6 (Lung cancer antigen NY-LU-12) (Protein G16) (RNA-binding motif protein 6) (RNA-binding protein DEF-3) RBM6 DEF3 mRNA splicing, via spliceosome [GO:0000398]; RNA processing [GO:0006396] -P78362 reviewed SRPK2_HUMAN SRSF protein kinase 2 (EC 2.7.11.1) (SFRS protein kinase 2) (Serine/arginine-rich protein-specific kinase 2) (SR-protein-specific kinase 2) [Cleaved into: SRSF protein kinase 2 N-terminal; SRSF protein kinase 2 C-terminal] SRPK2 angiogenesis [GO:0001525]; cell differentiation [GO:0030154]; innate immune response [GO:0045087]; intracellular signal transduction [GO:0035556]; negative regulation of viral genome replication [GO:0045071]; nuclear speck organization [GO:0035063]; peptidyl-serine phosphorylation [GO:0018105]; positive regulation of cell cycle [GO:0045787]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of gene expression [GO:0010628]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of viral genome replication [GO:0045070]; protein phosphorylation [GO:0006468]; R-loop processing [GO:0062176]; regulation of mRNA processing [GO:0050684]; regulation of mRNA splicing, via spliceosome [GO:0048024]; RNA splicing [GO:0008380]; spliceosomal complex assembly [GO:0000245] -P83876 reviewed TXN4A_HUMAN Thioredoxin-like protein 4A (DIM1 protein homolog) (Spliceosomal U5 snRNP-specific 15 kDa protein) (Thioredoxin-like U5 snRNP protein U5-15kD) TXNL4A DIM1 TXNL4 cell division [GO:0051301]; mRNA splicing, via spliceosome [GO:0000398]; RNA splicing, via transesterification reactions [GO:0000375]; spliceosomal complex assembly [GO:0000245] -P84103 reviewed SRSF3_HUMAN Serine/arginine-rich splicing factor 3 (Pre-mRNA-splicing factor SRP20) (Splicing factor, arginine/serine-rich 3) SRSF3 SFRS3 SRP20 cellular response to leukemia inhibitory factor [GO:1990830]; mRNA export from nucleus [GO:0006406]; mRNA splicing, via spliceosome [GO:0000398]; primary miRNA processing [GO:0031053]; regulation of mRNA splicing, via spliceosome [GO:0048024] -P98175 reviewed RBM10_HUMAN RNA-binding protein 10 (G patch domain-containing protein 9) (RNA-binding motif protein 10) (RNA-binding protein S1-1) (S1-1) RBM10 DXS8237E GPATC9 GPATCH9 KIAA0122 3'-UTR-mediated mRNA stabilization [GO:0070935]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of mRNA splicing, via spliceosome [GO:0048025]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of vascular associated smooth muscle cell proliferation [GO:1904706]; positive regulation of vascular associated smooth muscle cell apoptotic process [GO:1905461]; vascular associated smooth muscle cell apoptotic process [GO:1905288]; vascular associated smooth muscle cell proliferation [GO:1990874] -Q00839 reviewed HNRPU_HUMAN Heterogeneous nuclear ribonucleoprotein U (hnRNP U) (GRIP120) (Nuclear p120 ribonucleoprotein) (Scaffold-attachment factor A) (SAF-A) (p120) (pp120) HNRNPU C1orf199 HNRPU SAFA U21.1 adaptive thermogenesis [GO:1990845]; cardiac muscle cell development [GO:0055013]; cell division [GO:0051301]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to leukemia inhibitory factor [GO:1990830]; chromatin organization [GO:0006325]; circadian regulation of gene expression [GO:0032922]; CRD-mediated mRNA stabilization [GO:0070934]; dendritic transport of messenger ribonucleoprotein complex [GO:0098963]; dosage compensation by inactivation of X chromosome [GO:0009048]; maintenance of protein location in nucleus [GO:0051457]; mRNA splicing, via spliceosome [GO:0000398]; mRNA stabilization [GO:0048255]; negative regulation of kinase activity [GO:0033673]; negative regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay [GO:1900152]; negative regulation of stem cell differentiation [GO:2000737]; negative regulation of telomere maintenance via telomerase [GO:0032211]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transcription elongation by RNA polymerase II [GO:0034244]; osteoblast differentiation [GO:0001649]; positive regulation of attachment of mitotic spindle microtubules to kinetochore [GO:1902425]; positive regulation of brown fat cell differentiation [GO:0090336]; positive regulation of cytoplasmic translation [GO:2000767]; positive regulation of DNA topoisomerase (ATP-hydrolyzing) activity [GO:2000373]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to spindle microtubule [GO:1902889]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; regulation of chromatin organization [GO:1902275]; regulation of mitotic cell cycle [GO:0007346]; regulation of mitotic spindle assembly [GO:1901673]; RNA localization to chromatin [GO:1990280]; RNA processing [GO:0006396] -Q01081 reviewed U2AF1_HUMAN Splicing factor U2AF 35 kDa subunit (U2 auxiliary factor 35 kDa subunit) (U2 small nuclear RNA auxiliary factor 1) (U2 snRNP auxiliary factor small subunit) U2AF1 U2AF35 U2AFBP FP793 mRNA processing [GO:0006397]; mRNA splicing, via spliceosome [GO:0000398]; RNA splicing [GO:0008380] -Q01130 reviewed SRSF2_HUMAN Serine/arginine-rich splicing factor 2 (Protein PR264) (Splicing component, 35 kDa) (Splicing factor SC35) (SC-35) (Splicing factor, arginine/serine-rich 2) SRSF2 SFRS2 mRNA processing [GO:0006397]; mRNA splicing, via spliceosome [GO:0000398]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; response to vitamin E [GO:0033197]; RNA splicing [GO:0008380] -Q07955 reviewed SRSF1_HUMAN Serine/arginine-rich splicing factor 1 (Alternative-splicing factor 1) (ASF-1) (Splicing factor, arginine/serine-rich 1) (pre-mRNA-splicing factor SF2, P33 subunit) SRSF1 ASF SF2 SF2P33 SFRS1 OK/SW-cl.3 alternative mRNA splicing, via spliceosome [GO:0000380]; liver regeneration [GO:0097421]; mRNA 5'-splice site recognition [GO:0000395]; mRNA processing [GO:0006397]; mRNA splice site recognition [GO:0006376]; mRNA splicing, via spliceosome [GO:0000398]; mRNA transport [GO:0051028]; oligodendrocyte differentiation [GO:0048709]; positive regulation of RNA splicing [GO:0033120]; regulation of RNA splicing [GO:0043484] -Q08170 reviewed SRSF4_HUMAN Serine/arginine-rich splicing factor 4 (Pre-mRNA-splicing factor SRP75) (SRP001LB) (Splicing factor, arginine/serine-rich 4) SRSF4 SFRS4 SRP75 mRNA processing [GO:0006397]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of mRNA splicing, via spliceosome [GO:0048025]; response to insulin [GO:0032868]; RNA splicing [GO:0008380]; RNA splicing, via transesterification reactions [GO:0000375] -Q08211 reviewed DHX9_HUMAN ATP-dependent RNA helicase A (EC 3.6.4.13) (DEAH box protein 9) (DExH-box helicase 9) (Leukophysin) (LKP) (Nuclear DNA helicase II) (NDH II) (RNA helicase A) DHX9 DDX9 LKP NDH2 alternative mRNA splicing, via spliceosome [GO:0000380]; cellular response to exogenous dsRNA [GO:0071360]; cellular response to tumor necrosis factor [GO:0071356]; CRD-mediated mRNA stabilization [GO:0070934]; DNA duplex unwinding [GO:0032508]; DNA replication [GO:0006260]; DNA-templated transcription termination [GO:0006353]; DNA-templated viral transcription [GO:0039695]; G-quadruplex DNA unwinding [GO:0044806]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; miRNA-mediated post-transcriptional gene silencing [GO:0035195]; mRNA transport [GO:0051028]; negative regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay [GO:1900152]; osteoblast differentiation [GO:0001649]; positive regulation of cytoplasmic translation [GO:2000767]; positive regulation of DNA repair [GO:0045739]; positive regulation of DNA replication [GO:0045740]; positive regulation of DNA topoisomerase (ATP-hydrolyzing) activity [GO:2000373]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of inflammatory response [GO:0050729]; positive regulation of innate immune response [GO:0045089]; positive regulation of interferon-alpha production [GO:0032727]; positive regulation of interferon-beta production [GO:0032728]; positive regulation of interleukin-18 production [GO:0032741]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of response to cytokine stimulus [GO:0060760]; positive regulation of RNA export from nucleus [GO:0046833]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of viral transcription [GO:0050434]; protein localization to cytoplasmic stress granule [GO:1903608]; protein-containing complex assembly [GO:0065003]; pyroptosis [GO:0070269]; regulation of cytoplasmic translation [GO:2000765]; regulation of defense response to virus by host [GO:0050691]; regulation of mRNA processing [GO:0050684]; regulation of transcription by RNA polymerase II [GO:0006357]; rhythmic process [GO:0048511]; RISC complex assembly [GO:0070922]; RNA secondary structure unwinding [GO:0010501] -Q09161 reviewed NCBP1_HUMAN Nuclear cap-binding protein subunit 1 (80 kDa nuclear cap-binding protein) (CBP80) (NCBP 80 kDa subunit) NCBP1 CBP80 NCBP 7-methylguanosine mRNA capping [GO:0006370]; alternative mRNA splicing, via spliceosome [GO:0000380]; cap-dependent translational initiation [GO:0002191]; defense response to virus [GO:0051607]; histone mRNA metabolic process [GO:0008334]; miRNA-mediated post-transcriptional gene silencing [GO:0035195]; mRNA 3'-end processing [GO:0031124]; mRNA export from nucleus [GO:0006406]; mRNA metabolic process [GO:0016071]; mRNA splicing, via spliceosome [GO:0000398]; mRNA transcription by RNA polymerase II [GO:0042789]; nuclear-transcribed mRNA catabolic process, nonsense-mediated decay [GO:0000184]; positive regulation of cell growth [GO:0030307]; positive regulation of mRNA 3'-end processing [GO:0031442]; positive regulation of mRNA splicing, via spliceosome [GO:0048026]; positive regulation of RNA binding [GO:1905216]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; primary miRNA processing [GO:0031053]; regulation of mRNA processing [GO:0050684]; regulation of translational initiation [GO:0006446]; regulatory ncRNA-mediated post-transcriptional gene silencing [GO:0035194]; RNA catabolic process [GO:0006401]; RNA splicing [GO:0008380]; snRNA export from nucleus [GO:0006408]; spliceosomal complex assembly [GO:0000245] -Q12874 reviewed SF3A3_HUMAN Splicing factor 3A subunit 3 (SF3a60) (Spliceosome-associated protein 61) (SAP 61) SF3A3 SAP61 mRNA 3'-splice site recognition [GO:0000389]; mRNA processing [GO:0006397]; mRNA splicing, via spliceosome [GO:0000398]; RNA splicing, via transesterification reactions [GO:0000375]; U2-type prespliceosome assembly [GO:1903241] -Q13107 reviewed UBP4_HUMAN Ubiquitin carboxyl-terminal hydrolase 4 (EC 3.4.19.12) (Deubiquitinating enzyme 4) (Ubiquitin thioesterase 4) (Ubiquitin-specific-processing protease 4) (Ubiquitous nuclear protein homolog) USP4 UNP UNPH negative regulation of protein ubiquitination [GO:0031397]; positive regulation of TORC1 signaling [GO:1904263]; protein deubiquitination [GO:0016579]; protein localization to cell surface [GO:0034394]; proteolysis [GO:0006508]; regulation of protein stability [GO:0031647]; spliceosomal tri-snRNP complex assembly [GO:0000244] -Q13123 reviewed RED_HUMAN Protein Red (Cytokine IK) (IK factor) (Protein RER) IK RED RER mitotic cell cycle [GO:0000278]; mitotic spindle assembly checkpoint signaling [GO:0007094]; mRNA splicing, via spliceosome [GO:0000398]; protein localization to kinetochore [GO:0034501] -Q13242 reviewed SRSF9_HUMAN Serine/arginine-rich splicing factor 9 (Pre-mRNA-splicing factor SRp30C) (Splicing factor, arginine/serine-rich 9) SRSF9 SFRS9 SRP30C alternative mRNA splicing, via spliceosome [GO:0000380]; mRNA processing [GO:0006397]; mRNA splice site recognition [GO:0006376]; negative regulation of mRNA splicing, via spliceosome [GO:0048025]; response to alkaloid [GO:0043279]; response to toxic substance [GO:0009636] -Q13243 reviewed SRSF5_HUMAN Serine/arginine-rich splicing factor 5 (Delayed-early protein HRS) (Pre-mRNA-splicing factor SRP40) (Splicing factor, arginine/serine-rich 5) SRSF5 HRS SFRS5 SRP40 mRNA processing [GO:0006397]; mRNA splice site recognition [GO:0006376]; mRNA splicing, via spliceosome [GO:0000398] -Q13247 reviewed SRSF6_HUMAN Serine/arginine-rich splicing factor 6 (Pre-mRNA-splicing factor SRP55) (Splicing factor, arginine/serine-rich 6) SRSF6 SFRS6 SRP55 alternative mRNA splicing, via spliceosome [GO:0000380]; mRNA splice site recognition [GO:0006376]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of keratinocyte differentiation [GO:0045617]; negative regulation of mRNA splicing, via spliceosome [GO:0048025]; negative regulation of type B pancreatic cell apoptotic process [GO:2000675]; positive regulation of epithelial cell proliferation involved in lung morphogenesis [GO:0060501]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; regulation of keratinocyte proliferation [GO:0010837]; regulation of wound healing [GO:0061041]; response to insulin [GO:0032868] -Q13435 reviewed SF3B2_HUMAN Splicing factor 3B subunit 2 (Pre-mRNA-splicing factor SF3b 145 kDa subunit) (SF3b145) (Spliceosome-associated protein 145) (SAP 145) SF3B2 SAP145 mRNA processing [GO:0006397]; mRNA splicing, via spliceosome [GO:0000398]; RNA splicing [GO:0008380]; U2-type prespliceosome assembly [GO:1903241] -Q13523 reviewed PRP4K_HUMAN Serine/threonine-protein kinase PRP4 homolog (EC 2.7.11.1) (PRP4 kinase) (PRP4 pre-mRNA-processing factor 4 homolog) PRP4K KIAA0536 PRP4 PRP4B PRP4H PRPF4K mRNA cis splicing, via spliceosome [GO:0045292]; mRNA splicing, via spliceosome [GO:0000398]; positive regulation of hippo signaling [GO:0035332]; positive regulation of protein export from nucleus [GO:0046827]; regulation of mitotic cell cycle spindle assembly checkpoint [GO:0090266]; spliceosomal snRNP assembly [GO:0000387]; spliceosomal tri-snRNP complex assembly [GO:0000244] -Q13573 reviewed SNW1_HUMAN SNW domain-containing protein 1 (Nuclear protein SkiP) (Nuclear receptor coactivator NCoA-62) (Ski-interacting protein) SNW1 SKIIP SKIP cellular response to retinoic acid [GO:0071300]; intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:0042771]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation by host of viral transcription [GO:0043923]; positive regulation of mRNA splicing, via spliceosome [GO:0048026]; positive regulation of neurogenesis [GO:0050769]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta receptor signaling pathway [GO:0030511]; positive regulation of vitamin D receptor signaling pathway [GO:0070564]; regulation of retinoic acid receptor signaling pathway [GO:0048385]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of vitamin D receptor signaling pathway [GO:0070562]; retinoic acid receptor signaling pathway [GO:0048384] -Q13595 reviewed TRA2A_HUMAN Transformer-2 protein homolog alpha (TRA-2 alpha) (TRA2-alpha) (Transformer-2 protein homolog A) TRA2A mRNA splicing, via spliceosome [GO:0000398]; positive regulation of mRNA splicing, via spliceosome [GO:0048026] -Q13838 reviewed DX39B_HUMAN Spliceosome RNA helicase DDX39B (EC 3.6.4.13) (56 kDa U2AF65-associated protein) (ATP-dependent RNA helicase p47) (DEAD box protein UAP56) (HLA-B-associated transcript 1 protein) DDX39B BAT1 UAP56 mRNA export from nucleus [GO:0006406]; mRNA splicing, via spliceosome [GO:0000398]; RNA export from nucleus [GO:0006405]; RNA secondary structure unwinding [GO:0010501]; RNA splicing [GO:0008380]; spliceosomal complex assembly [GO:0000245] -Q14004 reviewed CDK13_HUMAN Cyclin-dependent kinase 13 (EC 2.7.11.22) (EC 2.7.11.23) (CDC2-related protein kinase 5) (Cell division cycle 2-like protein kinase 5) (Cell division protein kinase 13) (hCDK13) (Cholinesterase-related cell division controller) CDK13 CDC2L CDC2L5 CHED KIAA1791 alternative mRNA splicing, via spliceosome [GO:0000380]; hemopoiesis [GO:0030097]; negative regulation of stem cell differentiation [GO:2000737]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; regulation of signal transduction [GO:0009966] -Q14331 reviewed FRG1_HUMAN Protein FRG1 (FSHD region gene 1 protein) FRG1 mRNA splicing, via spliceosome [GO:0000398]; muscle organ development [GO:0007517]; rRNA processing [GO:0006364] -Q14562 reviewed DHX8_HUMAN ATP-dependent RNA helicase DHX8 (EC 3.6.4.13) (DEAH box protein 8) (RNA helicase HRH1) DHX8 DDX8 mRNA splicing, via spliceosome [GO:0000398]; RNA processing [GO:0006396]; RNA splicing [GO:0008380]; spliceosomal complex disassembly [GO:0000390] -Q15020 reviewed SART3_HUMAN Squamous cell carcinoma antigen recognized by T-cells 3 (SART-3) (Tat-interacting protein of 110 kDa) (Tip110) (p110 nuclear RNA-binding protein) SART3 KIAA0156 TIP110 cell morphogenesis [GO:0000902]; hematopoietic stem cell proliferation [GO:0071425]; homeostasis of number of cells [GO:0048872]; mRNA splicing, via spliceosome [GO:0000398]; nucleosome assembly [GO:0006334]; regulation of gene expression [GO:0010468]; spliceosomal snRNP assembly [GO:0000387]; spliceosomal tri-snRNP complex assembly [GO:0000244]; transcription elongation-coupled chromatin remodeling [GO:0140673] -Q15029 reviewed U5S1_HUMAN 116 kDa U5 small nuclear ribonucleoprotein component (Elongation factor Tu GTP-binding domain-containing protein 2) (SNU114 homolog) (hSNU114) (U5 snRNP-specific protein, 116 kDa) (U5-116 kDa) EFTUD2 KIAA0031 SNRP116 cellular response to xenobiotic stimulus [GO:0071466]; mRNA splicing, via spliceosome [GO:0000398]; response to cocaine [GO:0042220] -Q15287 reviewed RNPS1_HUMAN RNA-binding protein with serine-rich domain 1 (SR-related protein LDC2) RNPS1 LDC2 DNA-templated transcription [GO:0006351]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of mRNA splicing, via spliceosome [GO:0048025]; nuclear-transcribed mRNA catabolic process, nonsense-mediated decay [GO:0000184]; positive regulation of apoptotic process [GO:0043065]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; RNA splicing [GO:0008380] -Q15393 reviewed SF3B3_HUMAN Splicing factor 3B subunit 3 (Pre-mRNA-splicing factor SF3b 130 kDa subunit) (SF3b130) (STAF130) (Spliceosome-associated protein 130) (SAP 130) SF3B3 KIAA0017 SAP130 mRNA splicing, via spliceosome [GO:0000398]; negative regulation of protein catabolic process [GO:0042177]; positive regulation of DNA-templated transcription [GO:0045893]; regulation of DNA repair [GO:0006282]; regulation of RNA splicing [GO:0043484]; RNA splicing [GO:0008380]; RNA splicing, via transesterification reactions [GO:0000375]; U2-type prespliceosome assembly [GO:1903241] -Q15427 reviewed SF3B4_HUMAN Splicing factor 3B subunit 4 (Pre-mRNA-splicing factor SF3b 49 kDa subunit) (Spliceosome-associated protein 49) (SAP 49) SF3B4 SAP49 mRNA processing [GO:0006397]; mRNA splicing, via spliceosome [GO:0000398]; positive regulation of mRNA splicing, via spliceosome [GO:0048026]; RNA splicing [GO:0008380]; RNA splicing, via transesterification reactions [GO:0000375]; U2-type prespliceosome assembly [GO:1903241] -Q15428 reviewed SF3A2_HUMAN Splicing factor 3A subunit 2 (SF3a66) (Spliceosome-associated protein 62) (SAP 62) SF3A2 SAP62 mRNA 3'-splice site recognition [GO:0000389]; mRNA processing [GO:0006397]; mRNA splicing, via spliceosome [GO:0000398]; positive regulation of neuron projection development [GO:0010976]; spliceosomal complex assembly [GO:0000245]; U2-type prespliceosome assembly [GO:1903241] -Q15459 reviewed SF3A1_HUMAN Splicing factor 3A subunit 1 (SF3a120) (Spliceosome-associated protein 114) (SAP 114) SF3A1 SAP114 mRNA 3'-splice site recognition [GO:0000389]; mRNA cis splicing, via spliceosome [GO:0045292]; mRNA processing [GO:0006397]; mRNA splicing, via spliceosome [GO:0000398]; U2-type prespliceosome assembly [GO:1903241] -Q15637 reviewed SF01_HUMAN Splicing factor 1 (Mammalian branch point-binding protein) (BBP) (mBBP) (Transcription factor ZFM1) (Zinc finger gene in MEN1 locus) (Zinc finger protein 162) SF1 ZFM1 ZNF162 Leydig cell differentiation [GO:0033327]; male sex determination [GO:0030238]; mRNA 3'-splice site recognition [GO:0000389]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of smooth muscle cell proliferation [GO:0048662]; nuclear body organization [GO:0030575]; regulation of mRNA splicing, via spliceosome [GO:0048024]; regulation of steroid biosynthetic process [GO:0050810]; spliceosomal complex assembly [GO:0000245] -Q15696 reviewed U2AFM_HUMAN U2 small nuclear ribonucleoprotein auxiliary factor 35 kDa subunit-related protein 2 (CCCH type zinc finger, RNA-binding motif and serine/arginine rich protein 2) (Renal carcinoma antigen NY-REN-20) (U2(RNU2) small nuclear RNA auxiliary factor 1-like 2) (U2AF35-related protein) (URP) ZRSR2 U2AF1-RS2 U2AF1L2 U2AF1RS2 URP mRNA splicing, via spliceosome [GO:0000398]; RNA splicing [GO:0008380]; spliceosomal complex assembly [GO:0000245] -Q16560 reviewed U1SBP_HUMAN U11/U12 small nuclear ribonucleoprotein 35 kDa protein (U11/U12 snRNP 35 kDa protein) (U11/U12-35K) (Protein HM-1) (U1 snRNP-binding protein homolog) SNRNP35 HM1 U1SNRNPBP mRNA splicing, via spliceosome [GO:0000398]; RNA splicing [GO:0008380] -Q16629 reviewed SRSF7_HUMAN Serine/arginine-rich splicing factor 7 (Splicing factor 9G8) (Splicing factor, arginine/serine-rich 7) SRSF7 SFRS7 cellular response to leukemia inhibitory factor [GO:1990830]; mRNA processing [GO:0006397]; mRNA splicing, via spliceosome [GO:0000398]; mRNA transport [GO:0051028]; negative regulation of mRNA splicing, via spliceosome [GO:0048025]; RNA splicing [GO:0008380] -Q16637 reviewed SMN_HUMAN Survival motor neuron protein (Component of gems 1) (Gemin-1) SMN1 SMN SMNT; SMN2 SMNC DNA-templated transcription termination [GO:0006353]; nervous system development [GO:0007399]; spliceosomal complex assembly [GO:0000245]; spliceosomal snRNP assembly [GO:0000387] -Q2TAY7 reviewed SMU1_HUMAN WD40 repeat-containing protein SMU1 (Smu-1 suppressor of mec-8 and unc-52 protein homolog) [Cleaved into: WD40 repeat-containing protein SMU1, N-terminally processed] SMU1 mRNA splicing, via spliceosome [GO:0000398]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; RNA splicing [GO:0008380] -Q2TBE0 reviewed C19L2_HUMAN CWF19-like protein 2 CWF19L2 mRNA splicing, via spliceosome [GO:0000398] -Q53GS9 reviewed UBP39_HUMAN Ubiquitin carboxyl-terminal hydrolase 39 (EC 3.4.19.12) (SAD1 homolog) (U4/U6.U5 tri-snRNP-associated 65 kDa protein) USP39 CGI-21 HSPC332 PRO2855 cell division [GO:0051301]; mRNA processing [GO:0006397]; mRNA splicing, via spliceosome [GO:0000398]; RNA splicing [GO:0008380]; spliceosomal complex assembly [GO:0000245] -Q5SZQ8 reviewed CELF3_HUMAN CUGBP Elav-like family member 3 (CELF-3) (Bruno-like protein 1) (CAG repeat protein 4) (CUG-BP- and ETR-3-like factor 3) (ELAV-type RNA-binding protein 1) (ETR-1) (Expanded repeat domain protein CAG/CTG 4) (RNA-binding protein BRUNOL-1) (Trinucleotide repeat-containing gene 4 protein) CELF3 BRUNOL1 CAGH4 ERDA4 TNRC4 flagellated sperm motility [GO:0030317]; mRNA splice site recognition [GO:0006376]; nuclear body organization [GO:0030575]; positive regulation of mRNA splicing, via spliceosome [GO:0048026]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; RNA splicing [GO:0008380]; spermatogenesis [GO:0007283] -Q5TAL4 unreviewed Q5TAL4_HUMAN U1 small nuclear ribonucleoprotein C (U1 snRNP C) (U1-C) (U1C) SNRPC hCG_16077 mRNA 5'-splice site recognition [GO:0000395]; spliceosomal snRNP assembly [GO:0000387] -Q6IQ49 reviewed SDE2_HUMAN Splicing regulator SDE2 (Replication stress response regulator SDE2) SDE2 C1orf55 cell division [GO:0051301]; cellular response to UV [GO:0034644]; DNA replication [GO:0006260]; endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA) [GO:0000479]; mitotic G1 DNA damage checkpoint signaling [GO:0031571]; mRNA cis splicing, via spliceosome [GO:0045292]; protein processing [GO:0016485]; protein ubiquitination [GO:0016567] -Q6NWY9 reviewed PR40B_HUMAN Pre-mRNA-processing factor 40 homolog B (Huntingtin yeast partner C) (Huntingtin-interacting protein C) PRPF40B HYPC mRNA cis splicing, via spliceosome [GO:0045292]; mRNA splicing, via spliceosome [GO:0000398] -Q6NZY4 reviewed ZCHC8_HUMAN Zinc finger CCHC domain-containing protein 8 (TRAMP-like complex RNA-binding factor ZCCHC8) ZCCHC8 mRNA 3'-end processing [GO:0031124]; mRNA splicing, via spliceosome [GO:0000398]; RNA processing [GO:0006396]; snRNA catabolic process [GO:0016076] -Q6P2Q9 reviewed PRP8_HUMAN Pre-mRNA-processing-splicing factor 8 (220 kDa U5 snRNP-specific protein) (PRP8 homolog) (Splicing factor Prp8) (p220) PRPF8 PRPC8 cellular response to lipopolysaccharide [GO:0071222]; cellular response to tumor necrosis factor [GO:0071356]; mRNA processing [GO:0006397]; mRNA splicing, via spliceosome [GO:0000398]; RNA splicing [GO:0008380]; RNA splicing, via transesterification reactions [GO:0000375]; spliceosomal tri-snRNP complex assembly [GO:0000244] -Q6UX04 reviewed CWC27_HUMAN Spliceosome-associated protein CWC27 homolog (Antigen NY-CO-10) (Probable inactive peptidyl-prolyl cis-trans isomerase CWC27 homolog) (PPIase CWC27) (Serologically defined colon cancer antigen 10) CWC27 SDCCAG10 UNQ438/PRO871 mRNA splicing, via spliceosome [GO:0000398]; protein folding [GO:0006457] -Q70CQ1 reviewed UBP49_HUMAN Ubiquitin carboxyl-terminal hydrolase 49 (EC 3.4.19.12) (Deubiquitinating enzyme 49) (Ubiquitin thioesterase 49) (Ubiquitin-specific-processing protease 49) USP49 mRNA splicing, via spliceosome [GO:0000398]; negative regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051898]; proteolysis [GO:0006508] -Q70Z53 reviewed F10C1_HUMAN Protein FRA10AC1 FRA10AC1 C10orf4 PRO2972 mRNA splicing, via spliceosome [GO:0000398] -Q7L014 reviewed DDX46_HUMAN Probable ATP-dependent RNA helicase DDX46 (EC 3.6.4.13) (DEAD box protein 46) (PRP5 homolog) DDX46 KIAA0801 mRNA splicing, via spliceosome [GO:0000398]; U2-type prespliceosome assembly [GO:1903241] -Q7RTV0 reviewed PHF5A_HUMAN PHD finger-like domain-containing protein 5A (PHD finger-like domain protein 5A) (Splicing factor 3B-associated 14 kDa protein) (SF3b14b) PHF5A mRNA splicing, via spliceosome [GO:0000398]; positive regulation of DNA-templated transcription [GO:0045893]; stem cell differentiation [GO:0048863]; U2-type prespliceosome assembly [GO:1903241] -Q7Z333 reviewed SETX_HUMAN Probable helicase senataxin (EC 3.6.4.-) (Amyotrophic lateral sclerosis 4 protein) (SEN1 homolog) (Senataxin) SETX ALS4 KIAA0625 SCAR1 cell differentiation [GO:0030154]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to oxidative stress [GO:0034599]; circadian rhythm [GO:0007623]; DNA damage response [GO:0006974]; DNA recombination [GO:0006310]; DNA-templated transcription termination [GO:0006353]; double-strand break repair [GO:0006302]; mRNA splice site recognition [GO:0006376]; nervous system development [GO:0007399]; positive regulation of DNA-templated transcription initiation [GO:2000144]; positive regulation of neuron projection development [GO:0010976]; positive regulation of RNA splicing [GO:0033120]; positive regulation of termination of DNA-templated transcription [GO:0060566]; positive regulation of termination of RNA polymerase II transcription, poly(A)-coupled [GO:2000806]; positive regulation of transcription by RNA polymerase II [GO:0045944]; RNA processing [GO:0006396]; spermatogenesis [GO:0007283]; termination of RNA polymerase II transcription [GO:0006369] -Q7Z7F0 reviewed KHDC4_HUMAN KH homology domain-containing protein 4 (Brings lots of money 7) (Pre-mRNA splicing factor protein KHDC4) KHDC4 BLOM7 KIAA0907 SNORA80EHG mRNA splice site recognition [GO:0006376] -Q86U44 reviewed MTA70_HUMAN N6-adenosine-methyltransferase catalytic subunit (EC 2.1.1.348) (Methyltransferase-like protein 3) (hMETTL3) (N6-adenosine-methyltransferase 70 kDa subunit) (MT-A70) METTL3 MTA70 cellular response to UV [GO:0034644]; circadian rhythm [GO:0007623]; DNA damage response [GO:0006974]; dosage compensation by inactivation of X chromosome [GO:0009048]; endothelial to hematopoietic transition [GO:0098508]; forebrain radial glial cell differentiation [GO:0021861]; gliogenesis [GO:0042063]; innate immune response [GO:0045087]; mRNA destabilization [GO:0061157]; mRNA modification [GO:0016556]; mRNA processing [GO:0006397]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of Notch signaling pathway [GO:0045746]; negative regulation of type I interferon-mediated signaling pathway [GO:0060339]; oogenesis [GO:0048477]; positive regulation of cap-independent translational initiation [GO:1903679]; positive regulation of translation [GO:0045727]; primary miRNA processing [GO:0031053]; regulation of hematopoietic stem cell differentiation [GO:1902036]; regulation of meiotic cell cycle [GO:0051445]; regulation of T cell differentiation [GO:0045580]; RNA methylation [GO:0001510]; spermatogenesis [GO:0007283]; stem cell population maintenance [GO:0019827] -Q86UT8 reviewed CATAC_HUMAN Centrosomal AT-AC splicing factor (Coiled-coil domain-containing protein 84) CENATAC CCDC84 DLNB14 chromosome separation [GO:0051304]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of centrosome duplication [GO:0010826]; regulation of protein catabolic process [GO:0042176] -Q86XP3 reviewed DDX42_HUMAN ATP-dependent RNA helicase DDX42 (EC 3.6.4.13) (DEAD box protein 42) (RNA helicase-like protein) (RHELP) (RNA helicase-related protein) (RNAHP) (SF3b DEAD box protein) (Splicing factor 3B-associated 125 kDa protein) (SF3b125) DDX42 protein localization [GO:0008104]; regulation of apoptotic process [GO:0042981]; U2-type prespliceosome assembly [GO:1903241] -Q8IYB3 reviewed SRRM1_HUMAN Serine/arginine repetitive matrix protein 1 (SR-related nuclear matrix protein of 160 kDa) (SRm160) (Ser/Arg-related nuclear matrix protein) SRRM1 SRM160 mRNA splicing, via spliceosome [GO:0000398]; regulation of mRNA splicing, via spliceosome [GO:0048024]; RNA splicing [GO:0008380]; RNA splicing, via transesterification reactions [GO:0000375] -Q8N6W0 reviewed CELF5_HUMAN CUGBP Elav-like family member 5 (CELF-5) (Bruno-like protein 5) (CUG-BP- and ETR-3-like factor 5) (RNA-binding protein BRUNOL-5) CELF5 BRUNOL5 mRNA splice site recognition [GO:0006376]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381] -Q8NAV1 reviewed PR38A_HUMAN Pre-mRNA-splicing factor 38A PRPF38A mRNA splicing, via spliceosome [GO:0000398] -Q8TAD8 reviewed SNIP1_HUMAN Smad nuclear-interacting protein 1 (FHA domain-containing protein SNIP1) SNIP1 miRNA processing [GO:0035196]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of canonical NF-kappaB signal transduction [GO:0043124]; U2-type prespliceosome assembly [GO:1903241] -Q8TEQ6 reviewed GEMI5_HUMAN Gem-associated protein 5 (Gemin5) GEMIN5 mRNA splicing, via spliceosome [GO:0000398]; protein-containing complex assembly [GO:0065003]; regulation of translation [GO:0006417]; spliceosomal snRNP assembly [GO:0000387]; translation [GO:0006412] -Q8WU68 reviewed U2AF4_HUMAN Splicing factor U2AF 26 kDa subunit (U2 auxiliary factor 26) (U2 small nuclear RNA auxiliary factor 1-like protein 4) (U2AF1-like 4) (U2(RNU2) small nuclear RNA auxiliary factor 1-like protein 3) (U2 small nuclear RNA auxiliary factor 1-like protein 3) (U2AF1-like protein 3) U2AF1L4 U2AF1-RS3 U2AF1L3 mRNA splicing, via spliceosome [GO:0000398] -Q8WUQ7 reviewed CATIN_HUMAN Splicing factor Cactin (Renal carcinoma antigen NY-REN-24) CACTIN C19orf29 cellular response to interleukin-1 [GO:0071347]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to tumor necrosis factor [GO:0071356]; innate immune response [GO:0045087]; mRNA cis splicing, via spliceosome [GO:0045292]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of canonical NF-kappaB signal transduction [GO:0043124]; negative regulation of innate immune response [GO:0045824]; negative regulation of interferon-beta production [GO:0032688]; negative regulation of interleukin-8 production [GO:0032717]; negative regulation of lipopolysaccharide-mediated signaling pathway [GO:0031665]; negative regulation of NF-kappaB transcription factor activity [GO:0032088]; negative regulation of protein phosphorylation [GO:0001933]; negative regulation of toll-like receptor signaling pathway [GO:0034122]; negative regulation of tumor necrosis factor production [GO:0032720]; negative regulation of type I interferon-mediated signaling pathway [GO:0060339] -Q8WVK2 reviewed SNR27_HUMAN U4/U6.U5 small nuclear ribonucleoprotein 27 kDa protein (U4/U6.U5 snRNP 27 kDa protein) (U4/U6.U5-27K) (Nucleic acid-binding protein RY-1) (U4/U6.U5 tri-snRNP-associated 27 kDa protein) (27K) (U4/U6.U5 tri-snRNP-associated protein 3) SNRNP27 mRNA splicing, via spliceosome [GO:0000398] -Q8WWY3 reviewed PRP31_HUMAN U4/U6 small nuclear ribonucleoprotein Prp31 (Pre-mRNA-processing factor 31) (Serologically defined breast cancer antigen NY-BR-99) (U4/U6 snRNP 61 kDa protein) (Protein 61K) (hPrp31) PRPF31 PRP31 mRNA splicing, via spliceosome [GO:0000398]; ribonucleoprotein complex localization [GO:0071166]; spliceosomal tri-snRNP complex assembly [GO:0000244] -Q8WXD5 reviewed GEMI6_HUMAN Gem-associated protein 6 (Gemin-6) (SIP2) GEMIN6 mRNA splicing, via spliceosome [GO:0000398]; spliceosomal complex assembly [GO:0000245]; spliceosomal snRNP assembly [GO:0000387] -Q8WXF0 reviewed SRS12_HUMAN Serine/arginine-rich splicing factor 12 (35 kDa SR repressor protein) (SRrp35) (Splicing factor, arginine/serine-rich 13B) (Splicing factor, arginine/serine-rich 19) SRSF12 SFRS13B SFRS19 SRRP35 mRNA 5'-splice site recognition [GO:0000395]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of mRNA splicing, via spliceosome [GO:0048025]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; spliceosomal tri-snRNP complex assembly [GO:0000244] -Q8WYA6 reviewed CTBL1_HUMAN Beta-catenin-like protein 1 (Nuclear-associated protein) (NAP) (Testis development protein NYD-SP19) CTNNBL1 C20orf33 PP8304 adaptive immune response [GO:0002250]; mRNA splicing, via spliceosome [GO:0000398]; positive regulation of apoptotic process [GO:0043065]; somatic diversification of immunoglobulins [GO:0016445] -Q92499 reviewed DDX1_HUMAN ATP-dependent RNA helicase DDX1 (EC 3.6.4.13) (DEAD box protein 1) (DEAD box protein retinoblastoma) (DBP-RB) DDX1 defense response to virus [GO:0051607]; DNA duplex unwinding [GO:0032508]; double-strand break repair [GO:0006302]; innate immune response [GO:0045087]; nucleic acid metabolic process [GO:0090304]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of myeloid dendritic cell cytokine production [GO:0002735]; protein localization to cytoplasmic stress granule [GO:1903608]; regulation of translational initiation [GO:0006446]; response to exogenous dsRNA [GO:0043330]; spliceosomal complex assembly [GO:0000245]; tRNA splicing, via endonucleolytic cleavage and ligation [GO:0006388] -Q92620 reviewed PRP16_HUMAN Pre-mRNA-splicing factor ATP-dependent RNA helicase PRP16 (EC 3.6.4.13) (ATP-dependent RNA helicase DHX38) (DEAH box protein 38) DHX38 DDX38 KIAA0224 PRP16 mRNA splicing, via spliceosome [GO:0000398] -Q92841 reviewed DDX17_HUMAN Probable ATP-dependent RNA helicase DDX17 (EC 3.6.4.13) (DEAD box protein 17) (DEAD box protein p72) (DEAD box protein p82) (RNA-dependent helicase p72) DDX17 alternative mRNA splicing, via spliceosome [GO:0000380]; androgen receptor signaling pathway [GO:0030521]; defense response to virus [GO:0051607]; epithelial to mesenchymal transition [GO:0001837]; immune system process [GO:0002376]; intracellular estrogen receptor signaling pathway [GO:0030520]; miRNA metabolic process [GO:0010586]; myoblast differentiation [GO:0045445]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; regulation of skeletal muscle cell differentiation [GO:2001014]; regulation of transcription by RNA polymerase II [GO:0006357]; regulatory ncRNA-mediated gene silencing [GO:0031047]; RNA processing [GO:0006396]; rRNA processing [GO:0006364] -Q92879 reviewed CELF1_HUMAN CUGBP Elav-like family member 1 (CELF-1) (50 kDa nuclear polyadenylated RNA-binding protein) (Bruno-like protein 2) (CUG triplet repeat RNA-binding protein 1) (CUG-BP1) (CUG-BP- and ETR-3-like factor 1) (Deadenylation factor CUG-BP) (Embryo deadenylation element-binding protein homolog) (EDEN-BP homolog) (RNA-binding protein BRUNOL-2) CELF1 BRUNOL2 CUGBP CUGBP1 NAB50 embryo development ending in birth or egg hatching [GO:0009792]; germ cell development [GO:0007281]; mRNA destabilization [GO:0061157]; mRNA processing [GO:0006397]; mRNA splice site recognition [GO:0006376]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of gene expression [GO:0010629]; positive regulation of gene expression [GO:0010628]; post-transcriptional gene silencing [GO:0016441]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; regulation of inflammatory response [GO:0050727]; regulation of RNA splicing [GO:0043484]; regulatory ncRNA-mediated post-transcriptional gene silencing [GO:0035194] -Q92917 reviewed GPKOW_HUMAN G-patch domain and KOW motifs-containing protein (G-patch domain-containing protein 5) (Protein MOS2 homolog) (Protein T54) GPKOW GPATC5 GPATCH5 T54 mRNA splicing, via spliceosome [GO:0000398] -Q96A72 reviewed MGN2_HUMAN Protein mago nashi homolog 2 MAGOHB MAGOH2 mRNA export from nucleus [GO:0006406]; mRNA splicing, via spliceosome [GO:0000398]; nuclear-transcribed mRNA catabolic process, nonsense-mediated decay [GO:0000184]; regulation of mRNA processing [GO:0050684]; regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay [GO:2000622]; RNA splicing [GO:0008380] -Q96BP3 reviewed PPWD1_HUMAN Peptidylprolyl isomerase domain and WD repeat-containing protein 1 (EC 5.2.1.8) (Spliceosome-associated cyclophilin) PPWD1 KIAA0073 mRNA splicing, via spliceosome [GO:0000398]; protein peptidyl-prolyl isomerization [GO:0000413] -Q96C86 reviewed DCPS_HUMAN m7GpppX diphosphatase (EC 3.6.1.59) (DCS-1) (Decapping scavenger enzyme) (Hint-related 7meGMP-directed hydrolase) (Histidine triad nucleotide-binding protein 5) (Histidine triad protein member 5) (HINT-5) (Scavenger mRNA-decapping enzyme DcpS) DCPS DCS1 HINT5 HSPC015 deadenylation-dependent decapping of nuclear-transcribed mRNA [GO:0000290]; mRNA cis splicing, via spliceosome [GO:0045292]; mRNA methylguanosine-cap decapping [GO:0110156]; nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay [GO:0000288] -Q96DF8 reviewed ESS2_HUMAN Splicing factor ESS-2 homolog (DiGeorge syndrome critical region 13) (DiGeorge syndrome critical region 14) (DiGeorge syndrome protein H) (DGS-H) (Protein ES2) ESS2 DGCR13 DGCR14 DGSH DGSI ES2 mRNA splicing, via spliceosome [GO:0000398]; nervous system development [GO:0007399] -Q96DI7 reviewed SNR40_HUMAN U5 small nuclear ribonucleoprotein 40 kDa protein (U5 snRNP 40 kDa protein) (U5-40K) (38 kDa-splicing factor) (Prp8-binding protein) (hPRP8BP) (U5 snRNP-specific 40 kDa protein) (WD repeat-containing protein 57) SNRNP40 PRP8BP SFP38 WDR57 mRNA splicing, via spliceosome [GO:0000398]; RNA processing [GO:0006396]; RNA splicing [GO:0008380]; RNA splicing, via transesterification reactions [GO:0000375] -Q96I25 reviewed SPF45_HUMAN Splicing factor 45 (45 kDa-splicing factor) (RNA-binding motif protein 17) RBM17 SPF45 alternative mRNA splicing, via spliceosome [GO:0000380]; mRNA cis splicing, via spliceosome [GO:0045292] -Q96IZ5 reviewed RBM41_HUMAN RNA-binding protein 41 (RNA-binding motif protein 41) RBM41 mRNA splicing, via spliceosome [GO:0000398] -Q96IZ7 reviewed RSRC1_HUMAN Serine/Arginine-related protein 53 (SRrp53) (Arginine/serine-rich coiled-coil protein 1) RSRC1 SRRP53 BM-011 alternative mRNA splicing, via spliceosome [GO:0000380]; mRNA splicing, via spliceosome [GO:0000398]; nucleocytoplasmic transport [GO:0006913]; response to antibiotic [GO:0046677]; RNA splicing [GO:0008380] -Q96J87 reviewed CELF6_HUMAN CUGBP Elav-like family member 6 (CELF-6) (Bruno-like protein 6) (CUG-BP- and ETR-3-like factor 6) (RNA-binding protein BRUNOL-6) CELF6 BRUNOL6 mRNA splice site recognition [GO:0006376]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381] -Q96LT9 reviewed RNPC3_HUMAN RNA-binding region-containing protein 3 (RNA-binding motif protein 40) (RNA-binding protein 40) (U11/U12 small nuclear ribonucleoprotein 65 kDa protein) (U11/U12 snRNP 65 kDa protein) (U11/U12-65K) RNPC3 KIAA1839 RBM40 RNP SNRNP65 mRNA splicing, via spliceosome [GO:0000398]; RNA splicing [GO:0008380] -Q96MU7 reviewed YTDC1_HUMAN YTH domain-containing protein 1 (Splicing factor YT521) (YT521-B) YTHDC1 KIAA1966 YT521 dosage compensation by inactivation of X chromosome [GO:0009048]; in utero embryonic development [GO:0001701]; mRNA alternative polyadenylation [GO:0110104]; mRNA export from nucleus [GO:0006406]; mRNA splice site recognition [GO:0006376]; mRNA splicing, via spliceosome [GO:0000398]; post-transcriptional regulation of gene expression [GO:0010608]; primary follicle stage [GO:0048160]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; regulation of mRNA splicing, via spliceosome [GO:0048024]; spermatogenesis [GO:0007283] -Q96NC0 reviewed ZMAT2_HUMAN Zinc finger matrin-type protein 2 ZMAT2 mRNA splicing, via spliceosome [GO:0000398] -Q96PK6 reviewed RBM14_HUMAN RNA-binding protein 14 (Paraspeckle protein 2) (PSP2) (RNA-binding motif protein 14) (RRM-containing coactivator activator/modulator) (Synaptotagmin-interacting protein) (SYT-interacting protein) RBM14 SIP activation of innate immune response [GO:0002218]; apoptotic process [GO:0006915]; centriole assembly [GO:0098534]; gastrulation [GO:0007369]; innate immune response [GO:0045087]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of centriole replication [GO:0046600]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of response to DNA integrity checkpoint signaling [GO:1902151]; response to hormone [GO:0009725]; transcription initiation-coupled chromatin remodeling [GO:0045815] -Q96RS0 reviewed TGS1_HUMAN Trimethylguanosine synthase (EC 2.1.1.-) (CLL-associated antigen KW-2) (Cap-specific guanine-N2 methyltransferase) (Hepatocellular carcinoma-associated antigen 137) (Nuclear receptor coactivator 6-interacting protein) (PRIP-interacting protein with methyltransferase motif) (PIMT) (PIPMT) TGS1 HCA137 NCOA6IP PIMT 7-methylguanosine cap hypermethylation [GO:0036261]; ribonucleoprotein complex biogenesis [GO:0022613]; spliceosomal snRNP assembly [GO:0000387] -Q96SB4 reviewed SRPK1_HUMAN SRSF protein kinase 1 (EC 2.7.11.1) (SFRS protein kinase 1) (Serine/arginine-rich protein-specific kinase 1) (SR-protein-specific kinase 1) SRPK1 chromosome segregation [GO:0007059]; innate immune response [GO:0045087]; intracellular signal transduction [GO:0035556]; negative regulation of viral genome replication [GO:0045071]; positive regulation of viral genome replication [GO:0045070]; protein phosphorylation [GO:0006468]; regulation of mRNA processing [GO:0050684]; regulation of mRNA splicing, via spliceosome [GO:0048024]; RNA splicing [GO:0008380]; sperm DNA condensation [GO:0035092]; spliceosomal complex assembly [GO:0000245] -Q99459 reviewed CDC5L_HUMAN Cell division cycle 5-like protein (Cdc5-like protein) (Pombe cdc5-related protein) CDC5L KIAA0432 PCDC5RP DNA damage checkpoint signaling [GO:0000077]; DNA repair [GO:0006281]; mRNA splicing, via spliceosome [GO:0000398]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q99590 reviewed SCAFB_HUMAN Protein SCAF11 (CTD-associated SR protein 11) (Renal carcinoma antigen NY-REN-40) (SC35-interacting protein 1) (SR-related and CTD-associated factor 11) (SRSF2-interacting protein) (Serine/arginine-rich splicing factor 2-interacting protein) (Splicing factor, arginine/serine-rich 2-interacting protein) (Splicing regulatory protein 129) (SRrp129) SCAF11 CASP11 SFRS2IP SIP1 SRSF2IP mRNA processing [GO:0006397]; RNA splicing [GO:0008380]; RNA splicing, via transesterification reactions [GO:0000375]; spliceosomal complex assembly [GO:0000245] -Q99633 reviewed PRP18_HUMAN Pre-mRNA-splicing factor 18 (PRP18 homolog) (hPRP18) PRPF18 HPRP18 generation of catalytic spliceosome for second transesterification step [GO:0000350]; mRNA processing [GO:0006397]; RNA splicing [GO:0008380] -Q9BQ04 reviewed RBM4B_HUMAN RNA-binding protein 4B (RNA-binding motif protein 30) (RNA-binding motif protein 4B) (RNA-binding protein 30) RBM4B RBM30 circadian regulation of gene expression [GO:0032922]; circadian rhythm [GO:0007623]; entrainment of circadian clock by photoperiod [GO:0043153]; mRNA splicing, via spliceosome [GO:0000398]; positive regulation of gene expression [GO:0010628]; regulation of translation [GO:0006417] -Q9BQA1 reviewed MEP50_HUMAN Methylosome protein WDR77 (Androgen receptor cofactor p44) (Methylosome protein 50) (MEP-50) (WD repeat-containing protein 77) (p44/Mep50) WDR77 MEP50 WD45 HKMT1069 Nbla10071 epithelial cell proliferation involved in prostate gland development [GO:0060767]; negative regulation of epithelial cell proliferation involved in prostate gland development [GO:0060770]; oocyte axis specification [GO:0007309]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of mRNA splicing, via spliceosome [GO:0048026]; protein polyubiquitination [GO:0000209]; regulation of transcription by RNA polymerase II [GO:0006357]; secretory columnal luminar epithelial cell differentiation involved in prostate glandular acinus development [GO:0060528]; spliceosomal snRNP assembly [GO:0000387]; ubiquitin-dependent protein catabolic process [GO:0006511] -Q9BRD0 reviewed BUD13_HUMAN BUD13 homolog BUD13 mRNA splicing, via spliceosome [GO:0000398]; U2-type prespliceosome assembly [GO:1903241] -Q9BRL6 reviewed SRSF8_HUMAN Serine/arginine-rich splicing factor 8 (Pre-mRNA-splicing factor SRP46) (Splicing factor SRp46) (Splicing factor, arginine/serine-rich 2B) SRSF8 SFRS2B SRP46 mRNA splicing, via spliceosome [GO:0000398] -Q9BRX9 reviewed WDR83_HUMAN WD repeat domain-containing protein 83 (Mitogen-activated protein kinase organizer 1) (MAPK organizer 1) WDR83 MORG1 inflammatory response to wounding [GO:0090594]; mRNA splicing, via spliceosome [GO:0000398]; regulation of canonical NF-kappaB signal transduction [GO:0043122]; response to hypoxia [GO:0001666]; response to lipopolysaccharide [GO:0032496]; RNA splicing, via transesterification reactions [GO:0000375] -Q9BTD8 reviewed RBM42_HUMAN RNA-binding protein 42 (RNA-binding motif protein 42) RBM42 mRNA splicing, via spliceosome [GO:0000398]; negative regulation of mRNA splicing, via spliceosome [GO:0048025] -Q9BUQ8 reviewed DDX23_HUMAN Probable ATP-dependent RNA helicase DDX23 (EC 3.6.4.13) (100 kDa U5 snRNP-specific protein) (DEAD box protein 23) (PRP28 homolog) (U5-100kD) DDX23 cis assembly of pre-catalytic spliceosome [GO:0000354]; mRNA splicing, via spliceosome [GO:0000398]; R-loop processing [GO:0062176]; RNA splicing [GO:0008380]; RNA splicing, via transesterification reactions [GO:0000375] -Q9BUV0 reviewed RSRP1_HUMAN Arginine/serine-rich protein 1 RSRP1 C1orf63 HT033 NPD014 spliceosomal complex assembly [GO:0000245] -Q9BV90 reviewed SNR25_HUMAN U11/U12 small nuclear ribonucleoprotein 25 kDa protein (U11/U12 snRNP 25 kDa protein) (U11/U12-25K) (Minus-99 protein) SNRNP25 C16orf33 mRNA splicing, via spliceosome [GO:0000398]; RNA splicing [GO:0008380] -Q9BW85 reviewed YJU2_HUMAN Splicing factor YJU2 (Coiled-coil domain-containing protein 94) YJU2 CCDC94 generation of catalytic spliceosome for first transesterification step [GO:0000349]; negative regulation of DNA damage response, signal transduction by p53 class mediator [GO:0043518]; RNA splicing [GO:0008380] -Q9BWF3 reviewed RBM4_HUMAN RNA-binding protein 4 (Lark homolog) (hLark) (RNA-binding motif protein 4) (RNA-binding motif protein 4a) RBM4 RBM4A cap-independent translational initiation [GO:0002190]; circadian regulation of gene expression [GO:0032922]; circadian regulation of translation [GO:0097167]; enteroendocrine cell differentiation [GO:0035883]; entrainment of circadian clock by photoperiod [GO:0043153]; insulin secretion involved in cellular response to glucose stimulus [GO:0035773]; IRES-dependent translational initiation of linear mRNA [GO:0002192]; miRNA-mediated gene silencing by inhibition of translation [GO:0035278]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of translation [GO:0017148]; negative regulation of translation in response to stress [GO:0032055]; negative regulation of translational initiation [GO:0045947]; pancreas development [GO:0031016]; positive regulation of muscle cell differentiation [GO:0051149]; positive regulation of translation [GO:0045727]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; regulation of insulin receptor signaling pathway [GO:0046626]; regulation of nucleocytoplasmic transport [GO:0046822]; response to arsenic-containing substance [GO:0046685]; RNA processing [GO:0006396] -Q9BWG6 reviewed SCNM1_HUMAN Sodium channel modifier 1 SCNM1 alternative mRNA splicing, via spliceosome [GO:0000380]; RNA splicing [GO:0008380] -Q9BWJ5 reviewed SF3B5_HUMAN Splicing factor 3B subunit 5 (SF3b5) (Pre-mRNA-splicing factor SF3b 10 kDa subunit) SF3B5 SF3B10 mRNA splicing, via spliceosome [GO:0000398]; positive regulation of DNA-templated transcription [GO:0045893]; regulation of DNA repair [GO:0006282]; regulation of RNA splicing [GO:0043484]; U2-type prespliceosome assembly [GO:1903241] -Q9BZC1 reviewed CELF4_HUMAN CUGBP Elav-like family member 4 (CELF-4) (Bruno-like protein 4) (CUG-BP- and ETR-3-like factor 4) (RNA-binding protein BRUNOL-4) CELF4 BRUNOL4 alternative mRNA splicing, via spliceosome [GO:0000380]; embryo development ending in birth or egg hatching [GO:0009792]; excitatory postsynaptic potential [GO:0060079]; germ cell development [GO:0007281]; in utero embryonic development [GO:0001701]; mRNA splice site recognition [GO:0006376]; negative regulation of excitatory postsynaptic potential [GO:0090394]; negative regulation of mRNA splicing, via spliceosome [GO:0048025]; positive regulation of mRNA splicing, via spliceosome [GO:0048026]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; regulation of retina development in camera-type eye [GO:1902866] -Q9BZJ0 reviewed CRNL1_HUMAN Crooked neck-like protein 1 (Crooked neck homolog) (hCrn) CRNKL1 CRN CGI-201 MSTP021 mRNA splicing, via spliceosome [GO:0000398]; spliceosomal complex assembly [GO:0000245] -Q9BZL1 reviewed UBL5_HUMAN Ubiquitin-like protein 5 UBL5 mRNA splicing, via spliceosome [GO:0000398]; positive regulation of protein targeting to mitochondrion [GO:1903955]; protein modification process [GO:0036211] -Q9H2H8 reviewed PPIL3_HUMAN Peptidyl-prolyl cis-trans isomerase-like 3 (PPIase) (EC 5.2.1.8) (Cyclophilin J) (CyPJ) (Cyclophilin-like protein PPIL3) (Rotamase PPIL3) PPIL3 mRNA splicing, via spliceosome [GO:0000398]; protein folding [GO:0006457] -Q9H307 reviewed PININ_HUMAN Pinin (140 kDa nuclear and cell adhesion-related phosphoprotein) (Desmosome-associated protein) (Domain-rich serine protein) (DRS protein) (DRSP) (Melanoma metastasis clone A protein) (Nuclear protein SDK3) (SR-like protein) PNN DRS MEMA cell adhesion [GO:0007155]; mRNA splicing, via spliceosome [GO:0000398] -Q9H5Z1 reviewed DHX35_HUMAN Probable ATP-dependent RNA helicase DHX35 (EC 3.6.4.13) (DEAH box protein 35) DHX35 C20orf15 DDX35 in utero embryonic development [GO:0001701]; mRNA splicing, via spliceosome [GO:0000398] -Q9H6T0 reviewed ESRP2_HUMAN Epithelial splicing regulatory protein 2 (RNA-binding motif protein 35B) (RNA-binding protein 35B) ESRP2 RBM35B PP7059 alternative mRNA splicing, via spliceosome [GO:0000380]; branching involved in salivary gland morphogenesis [GO:0060445]; epithelial cell proliferation [GO:0050673]; epithelial tube branching involved in lung morphogenesis [GO:0060441]; positive regulation of epithelial cell proliferation [GO:0050679]; regulation of RNA splicing [GO:0043484] -Q9H840 reviewed GEMI7_HUMAN Gem-associated protein 7 (Gemin-7) (SIP3) GEMIN7 mRNA splicing, via spliceosome [GO:0000398]; spliceosomal snRNP assembly [GO:0000387] -Q9HCE5 reviewed MET14_HUMAN N6-adenosine-methyltransferase non-catalytic subunit (Methyltransferase-like protein 14) (hMETTL14) METTL14 KIAA1627 forebrain radial glial cell differentiation [GO:0021861]; gliogenesis [GO:0042063]; mRNA catabolic process [GO:0006402]; mRNA destabilization [GO:0061157]; mRNA modification [GO:0016556]; mRNA processing [GO:0006397]; mRNA splicing, via spliceosome [GO:0000398]; mRNA stabilization [GO:0048255]; negative regulation of hematopoietic progenitor cell differentiation [GO:1901533]; positive regulation of translation [GO:0045727]; regulation of neuron differentiation [GO:0045664]; RNA methylation [GO:0001510]; spermatogenesis [GO:0007283]; stem cell population maintenance [GO:0019827] -Q9HCG8 reviewed CWC22_HUMAN Pre-mRNA-splicing factor CWC22 homolog (Nucampholin homolog) (fSAPb) CWC22 KIAA1604 NCM mRNA splicing, via spliceosome [GO:0000398]; regulation of mRNA splicing, via spliceosome [GO:0048024] -Q9HCS7 reviewed SYF1_HUMAN Pre-mRNA-splicing factor SYF1 (Protein HCNP) (XPA-binding protein 2) XAB2 HCNP KIAA1177 SYF1 PP3898 blastocyst development [GO:0001824]; DNA-templated transcription [GO:0006351]; generation of catalytic spliceosome for first transesterification step [GO:0000349]; mRNA splicing, via spliceosome [GO:0000398]; transcription-coupled nucleotide-excision repair [GO:0006283] -Q9NQ29 reviewed LUC7L_HUMAN Putative RNA-binding protein Luc7-like 1 (Putative SR protein LUC7B1) (SR+89) LUC7L LUC7L1 mRNA splice site recognition [GO:0006376]; negative regulation of striated muscle tissue development [GO:0045843] -Q9NVM4 reviewed ANM7_HUMAN Protein arginine N-methyltransferase 7 (EC 2.1.1.321) (Histone-arginine N-methyltransferase PRMT7) ([Myelin basic protein]-arginine N-methyltransferase PRMT7) PRMT7 KIAA1933 chromatin remodeling [GO:0006338]; genomic imprinting [GO:0071514]; peptidyl-arginine methylation [GO:0018216]; regulation of protein binding [GO:0043393]; spliceosomal snRNP assembly [GO:0000387] -Q9NW64 reviewed RBM22_HUMAN Pre-mRNA-splicing factor RBM22 (RNA-binding motif protein 22) (Zinc finger CCCH domain-containing protein 16) RBM22 ZC3H16 199G4 cellular response to xenobiotic stimulus [GO:0071466]; mRNA cis splicing, via spliceosome [GO:0045292]; mRNA splicing, via spliceosome [GO:0000398]; positive regulation of protein export from nucleus [GO:0046827]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of RNA splicing [GO:0033120] -Q9NWZ8 reviewed GEMI8_HUMAN Gem-associated protein 8 (Gemin-8) (Protein FAM51A1) GEMIN8 FAM51A1 spliceosomal snRNP assembly [GO:0000387] -Q9NX01 reviewed TXN4B_HUMAN Thioredoxin-like protein 4B (Dim1-like protein) TXNL4B DIM2 DLP mRNA splicing, via spliceosome [GO:0000398] -Q9NXE8 reviewed CWC25_HUMAN Pre-mRNA-splicing factor CWC25 homolog (Coiled-coil domain-containing protein 49) (Spliceosome-associated protein homolog CWC25) CWC25 CCDC49 mRNA splicing, via spliceosome [GO:0000398] -Q9NZ63 reviewed TLS1_HUMAN Splicing factor C9orf78 (Hepatocellular carcinoma-associated antigen 59) C9orf78 HCA59 chromosome segregation [GO:0007059]; mRNA cis splicing, via spliceosome [GO:0045292]; mRNA splicing, via spliceosome [GO:0000398]; regulation of homologous chromosome segregation [GO:0060629] -Q9P013 reviewed CWC15_HUMAN Spliceosome-associated protein CWC15 homolog CWC15 C11orf5 AD-002 HSPC148 mRNA cis splicing, via spliceosome [GO:0045292]; mRNA splicing, via spliceosome [GO:0000398] -Q9UBB9 reviewed TFP11_HUMAN Tuftelin-interacting protein 11 (Septin and tuftelin-interacting protein 1) (STIP-1) TFIP11 STIP HSPC006 biomineral tissue development [GO:0031214]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of DNA ligase activity [GO:1904876]; negative regulation of double-strand break repair via nonhomologous end joining [GO:2001033]; negative regulation of protein binding [GO:0032091]; negative regulation of protein-containing complex assembly [GO:0031333]; protection from non-homologous end joining at telomere [GO:0031848]; RNA processing [GO:0006396]; spliceosomal complex disassembly [GO:0000390] -Q9UHI6 reviewed DDX20_HUMAN Probable ATP-dependent RNA helicase DDX20 (EC 3.6.1.15) (EC 3.6.4.13) (Component of gems 3) (DEAD box protein 20) (DEAD box protein DP 103) (Gemin-3) DDX20 DP103 GEMIN3 negative regulation of cell population proliferation [GO:0008285]; negative regulation of transcription by RNA polymerase II [GO:0000122]; oogenesis [GO:0048477]; positive regulation of apoptotic process [GO:0043065]; regulation of steroid biosynthetic process [GO:0050810]; RNA processing [GO:0006396]; spliceosomal snRNP assembly [GO:0000387]; spliceosomal tri-snRNP complex assembly [GO:0000244] -Q9UHX1 reviewed PUF60_HUMAN Poly(U)-binding-splicing factor PUF60 (60 kDa poly(U)-binding-splicing factor) (FUSE-binding protein-interacting repressor) (FBP-interacting repressor) (Ro-binding protein 1) (RoBP1) (Siah-binding protein 1) (Siah-BP1) PUF60 FIR ROBPI SIAHBP1 alternative mRNA splicing, via spliceosome [GO:0000380]; apoptotic process [GO:0006915]; mRNA splice site recognition [GO:0006376]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381] -Q9UJV9 reviewed DDX41_HUMAN Probable ATP-dependent RNA helicase DDX41 (EC 3.6.4.13) (DEAD box protein 41) (DEAD box protein abstrakt homolog) DDX41 ABS apoptotic process [GO:0006915]; cell differentiation [GO:0030154]; cell population proliferation [GO:0008283]; mRNA splicing, via spliceosome [GO:0000398] -Q9UK45 reviewed LSM7_HUMAN U6 snRNA-associated Sm-like protein LSm7 LSM7 mRNA splicing, via spliceosome [GO:0000398]; nuclear-transcribed mRNA catabolic process [GO:0000956] -Q9UK59 reviewed DBR1_HUMAN Lariat debranching enzyme (EC 3.1.4.-) DBR1 mRNA splicing, via spliceosome [GO:0000398]; RNA fragment catabolic process [GO:0000292]; RNA splicing, via transesterification reactions [GO:0000375] -Q9UKA9 reviewed PTBP2_HUMAN Polypyrimidine tract-binding protein 2 (Neural polypyrimidine tract-binding protein) (Neurally-enriched homolog of PTB) (PTB-like protein) PTBP2 NPTB PTB PTBLP mRNA splice site recognition [GO:0006376]; negative regulation of RNA splicing [GO:0033119]; regulation of neural precursor cell proliferation [GO:2000177]; regulation of RNA splicing [GO:0043484] -Q9UKM9 reviewed RALY_HUMAN RNA-binding protein Raly (Autoantigen p542) (Heterogeneous nuclear ribonucleoprotein C-like 2) (hnRNP core protein C-like 2) (hnRNP associated with lethal yellow protein homolog) RALY HNRPCL2 P542 cholesterol homeostasis [GO:0042632]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of transcription by RNA polymerase II [GO:0000122] -Q9ULR0 reviewed ISY1_HUMAN Pre-mRNA-splicing factor ISY1 homolog ISY1 KIAA1160 generation of catalytic spliceosome for second transesterification step [GO:0000350]; mRNA 3'-splice site recognition [GO:0000389]; mRNA splicing, via spliceosome [GO:0000398] -Q9UMS4 reviewed PRP19_HUMAN Pre-mRNA-processing factor 19 (EC 2.3.2.27) (Nuclear matrix protein 200) (PRP19/PSO4 homolog) (hPso4) (RING-type E3 ubiquitin transferase PRP19) (Senescence evasion factor) PRPF19 NMP200 PRP19 SNEV DNA damage checkpoint signaling [GO:0000077]; double-strand break repair via nonhomologous end joining [GO:0006303]; lipid biosynthetic process [GO:0008610]; mRNA splicing, via spliceosome [GO:0000398]; positive regulation of mRNA splicing, via spliceosome [GO:0048026]; proteasomal protein catabolic process [GO:0010498]; protein K63-linked ubiquitination [GO:0070534]; protein localization [GO:0008104]; protein polyubiquitination [GO:0000209]; spliceosomal complex assembly [GO:0000245]; spliceosomal tri-snRNP complex assembly [GO:0000244] -Q9UNP9 reviewed PPIE_HUMAN Peptidyl-prolyl cis-trans isomerase E (PPIase E) (EC 5.2.1.8) (Cyclophilin E) (Cyclophilin-33) (Rotamase E) PPIE CYP33 mRNA splicing, via spliceosome [GO:0000398]; positive regulation of viral genome replication [GO:0045070]; protein folding [GO:0006457]; protein peptidyl-prolyl isomerization [GO:0000413]; regulation of DNA-templated transcription [GO:0006355] -Q9UNW9 reviewed NOVA2_HUMAN RNA-binding protein Nova-2 (Astrocytic NOVA1-like RNA-binding protein) (Neuro-oncological ventral antigen 2) NOVA2 ANOVA NOVA3 central nervous system neuron development [GO:0021954]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of cold-induced thermogenesis [GO:0120163]; neuron differentiation [GO:0030182]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; regulation of axon guidance [GO:1902667]; regulation of RNA metabolic process [GO:0051252] -Q9UPE1 reviewed SRPK3_HUMAN SRSF protein kinase 3 (EC 2.7.11.1) (Muscle-specific serine kinase 1) (MSSK-1) (Serine/arginine-rich protein-specific kinase 3) (SR-protein-specific kinase 3) (Serine/threonine-protein kinase 23) SRPK3 MSSK1 STK23 cell differentiation [GO:0030154]; intracellular signal transduction [GO:0035556]; muscle tissue development [GO:0060537]; regulation of mRNA processing [GO:0050684]; skeletal muscle tissue development [GO:0007519]; spliceosomal complex assembly [GO:0000245] -Q9UQ35 reviewed SRRM2_HUMAN Serine/arginine repetitive matrix protein 2 (300 kDa nuclear matrix antigen) (Serine/arginine-rich splicing factor-related nuclear matrix protein of 300 kDa) (SR-related nuclear matrix protein of 300 kDa) (Ser/Arg-related nuclear matrix protein of 300 kDa) (Splicing coactivator subunit SRm300) (Tax-responsive enhancer element-binding protein 803) (TaxREB803) SRRM2 KIAA0324 SRL300 SRM300 HSPC075 mRNA splicing, via spliceosome [GO:0000398] -Q9Y333 reviewed LSM2_HUMAN U6 snRNA-associated Sm-like protein LSm2 (Protein G7b) (Small nuclear ribonuclear protein D homolog) (snRNP core Sm-like protein Sm-x5) LSM2 C6orf28 G7B mRNA catabolic process [GO:0006402]; mRNA splicing, via spliceosome [GO:0000398]; spliceosomal tri-snRNP complex assembly [GO:0000244] -Q9Y383 reviewed LC7L2_HUMAN Putative RNA-binding protein Luc7-like 2 LUC7L2 CGI-59 CGI-74 mRNA splice site recognition [GO:0006376] -Q9Y388 reviewed RBMX2_HUMAN RNA-binding motif protein, X-linked 2 RBMX2 CGI-79 mRNA splicing, via spliceosome [GO:0000398]; U2-type prespliceosome assembly [GO:1903241] -Q9Y3B4 reviewed SF3B6_HUMAN Splicing factor 3B subunit 6 (Pre-mRNA branch site protein p14) (SF3b 14 kDa subunit) (SF3B14a) (Spliceosome-associated protein, 14-kDa) (Splicing factor 3b, subunit 6, 14kDa) SF3B6 SAP14 SF3B14 SF3B14A CGI-110 HSPC175 HT006 blastocyst formation [GO:0001825]; mRNA splicing, via spliceosome [GO:0000398]; U2-type prespliceosome assembly [GO:1903241] -Q9Y3C6 reviewed PPIL1_HUMAN Peptidyl-prolyl cis-trans isomerase-like 1 (PPIase) (EC 5.2.1.8) (Rotamase PPIL1) PPIL1 CYPL1 CGI-124 UNQ2425/PRO4984 embryonic brain development [GO:1990403]; mRNA splicing, via spliceosome [GO:0000398]; protein folding [GO:0006457]; protein peptidyl-prolyl isomerization [GO:0000413] -Q9Y3F4 reviewed STRAP_HUMAN Serine-threonine kinase receptor-associated protein (MAP activator with WD repeats) (UNR-interacting protein) (WD-40 repeat protein PT-WD) STRAP MAWD UNRIP alternative mRNA splicing, via spliceosome [GO:0000380]; maintenance of gastrointestinal epithelium [GO:0030277]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; neuron differentiation [GO:0030182]; spliceosomal snRNP assembly [GO:0000387] -Q9Y4C8 reviewed RBM19_HUMAN Probable RNA-binding protein 19 (RNA-binding motif protein 19) RBM19 KIAA0682 mRNA splicing, via spliceosome [GO:0000398]; positive regulation of embryonic development [GO:0040019] -Q9Y4Y9 reviewed LSM5_HUMAN U6 snRNA-associated Sm-like protein LSm5 LSM5 mRNA catabolic process [GO:0006402]; mRNA processing [GO:0006397]; mRNA splicing, via spliceosome [GO:0000398]; response to bacterium [GO:0009617] -Q9Y4Z0 reviewed LSM4_HUMAN U6 snRNA-associated Sm-like protein LSm4 (Glycine-rich protein) (GRP) LSM4 mRNA splicing, via spliceosome [GO:0000398]; nuclear-transcribed mRNA catabolic process [GO:0000956]; P-body assembly [GO:0033962]; RNA splicing [GO:0008380]; spliceosomal snRNP assembly [GO:0000387] -Q9Y5B6 reviewed PAXB1_HUMAN PAX3- and PAX7-binding protein 1 (GC-rich sequence DNA-binding factor 1) PAXBP1 C21orf66 GCFC GCFC1 mRNA splicing, via spliceosome [GO:0000398]; muscle organ development [GO:0007517]; positive regulation of myoblast proliferation [GO:2000288]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of skeletal muscle satellite cell proliferation [GO:0014842]; transcription by RNA polymerase II [GO:0006366] -Q9Y5S9 reviewed RBM8A_HUMAN RNA-binding protein 8A (Binder of OVCA1-1) (BOV-1) (RNA-binding motif protein 8A) (RNA-binding protein Y14) (Ribonucleoprotein RBM8A) RBM8A RBM8 HSPC114 MDS014 mRNA export from nucleus [GO:0006406]; mRNA splicing, via spliceosome [GO:0000398]; nuclear-transcribed mRNA catabolic process, nonsense-mediated decay [GO:0000184]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; regulation of mRNA processing [GO:0050684]; regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay [GO:2000622]; regulation of translation [GO:0006417]; RNA splicing [GO:0008380] -Q9Y5U2 reviewed TSSC4_HUMAN U5 small nuclear ribonucleoprotein TSSC4 (Tumor-suppressing STF cDNA 4 protein) (Tumor-suppressing subchromosomal transferable fragment candidate gene 4 protein) TSSC4 spliceosomal snRNP assembly [GO:0000387]; spliceosomal tri-snRNP complex assembly [GO:0000244] -Q12872 reviewed SFSWA_HUMAN Splicing factor, suppressor of white-apricot homolog (Splicing factor, arginine/serine-rich 8) (Suppressor of white apricot protein homolog) SFSWAP SFRS8 SWAP alternative mRNA splicing, via spliceosome [GO:0000380]; mRNA 5'-splice site recognition [GO:0000395]; negative regulation of mRNA splicing, via spliceosome [GO:0048025] -Q15695 reviewed U2AFL_HUMAN U2 small nuclear ribonucleoprotein auxiliary factor 35 kDa subunit-related protein 1 (CCCH type zinc finger, RNA-binding motif and serine/arginine rich protein 1) (U2(RNU2) small nuclear RNA auxiliary factor 1-like 1) ZRSR2P1 U2AF1-RS1 U2AF1L1 U2AF1P U2AF1RS1 U2AFBPL ZRSR1 mRNA splicing, via spliceosome [GO:0000398] -Q69YN2 reviewed C19L1_HUMAN CWF19-like protein 1 (C19L1) CWF19L1 mRNA splicing, via spliceosome [GO:0000398] -Q86UA1 reviewed PRP39_HUMAN Pre-mRNA-processing factor 39 (PRP39 homolog) PRPF39 mRNA 5'-splice site recognition [GO:0000395] -Q8TBF4 reviewed ZCRB1_HUMAN Zinc finger CCHC-type and RNA-binding motif-containing protein 1 (U11/U12 small nuclear ribonucleoprotein 31 kDa protein) (U11/U12 snRNP 31 kDa protein) (U11/U12-31K) ZCRB1 mRNA splicing, via spliceosome [GO:0000398]; RNA splicing [GO:0008380] -Q9BRR8 reviewed GPTC1_HUMAN G patch domain-containing protein 1 (Evolutionarily conserved G-patch domain-containing protein) GPATCH1 ECGP GPATC1 mRNA splicing, via spliceosome [GO:0000398] -A0A0A0MRR7 unreviewed A0A0A0MRR7_HUMAN U1 small nuclear ribonucleoprotein C (U1 snRNP C) (U1-C) (U1C) SNRPC mRNA 5'-splice site recognition [GO:0000395]; spliceosomal snRNP assembly [GO:0000387] -A0A0S2Z4V5 unreviewed A0A0S2Z4V5_HUMAN Polyglutamine-binding protein 1 (Polyglutamine tract-binding protein 1) PQBP1 hCG_19821 alternative mRNA splicing, via spliceosome [GO:0000380]; innate immune response [GO:0045087]; neuron projection development [GO:0031175]; regulation of dendrite morphogenesis [GO:0048814] -A0A8I5KPT4 unreviewed A0A8I5KPT4_HUMAN Protein arginine N-methyltransferase (EC 2.1.1.321) PRMT7 cell differentiation [GO:0030154]; methylation [GO:0032259]; spliceosomal snRNP assembly [GO:0000387] -A0A8J9FJK1 unreviewed A0A8J9FJK1_HUMAN Gem-associated protein 2 GEMIN2 spliceosomal complex assembly [GO:0000245]; spliceosomal snRNP assembly [GO:0000387] -A8K8B2 unreviewed A8K8B2_HUMAN non-specific serine/threonine protein kinase (EC 2.7.11.1) intracellular signal transduction [GO:0035556]; regulation of mRNA processing [GO:0050684]; spliceosomal complex assembly [GO:0000245] -A8MWD9 reviewed RUXGL_HUMAN Putative small nuclear ribonucleoprotein G-like protein 15 SNRPGP15 mRNA splicing, via spliceosome [GO:0000398]; spliceosomal snRNP assembly [GO:0000387] -B4DN41 unreviewed B4DN41_HUMAN Probable ATP-dependent RNA helicase DDX5 (EC 3.6.4.13) (DEAD box protein 5) alternative mRNA splicing, via spliceosome [GO:0000380]; rhythmic process [GO:0048511] -B4DNG2 unreviewed B4DNG2_HUMAN Probable ATP-dependent RNA helicase DDX5 (EC 3.6.4.13) (DEAD box protein 5) alternative mRNA splicing, via spliceosome [GO:0000380]; rhythmic process [GO:0048511] -B5BUE6 unreviewed B5BUE6_HUMAN Probable ATP-dependent RNA helicase DDX5 (EC 3.6.4.13) (DEAD box protein 5) DDX5 alternative mRNA splicing, via spliceosome [GO:0000380]; rhythmic process [GO:0048511] -C9JQX9 unreviewed C9JQX9_HUMAN Nuclear cap-binding protein subunit 2 (20 kDa nuclear cap-binding protein) NCBP2 mRNA cis splicing, via spliceosome [GO:0045292]; regulatory ncRNA-mediated gene silencing [GO:0031047] -D3DU92 unreviewed D3DU92_HUMAN RNA-binding protein with serine-rich domain 1 rnps1 mRNA splicing, via spliceosome [GO:0000398] -E9PJF4 unreviewed E9PJF4_HUMAN Methylosome subunit pICln (Chloride channel, nucleotide sensitive 1A) (Chloride conductance regulatory protein ICln) CLNS1A cell volume homeostasis [GO:0006884]; chloride transport [GO:0006821]; spliceosomal snRNP assembly [GO:0000387] -E9PMI6 unreviewed E9PMI6_HUMAN Methylosome subunit pICln (Chloride channel, nucleotide sensitive 1A) (Chloride conductance regulatory protein ICln) CLNS1A cell volume homeostasis [GO:0006884]; chloride transport [GO:0006821]; spliceosomal snRNP assembly [GO:0000387] -F5GY56 unreviewed F5GY56_HUMAN Pre-mRNA-processing factor 19 (EC 2.3.2.27) PRPF19 DNA repair [GO:0006281]; mRNA splicing, via spliceosome [GO:0000398]; protein K63-linked ubiquitination [GO:0070534] -F5H2I0 unreviewed F5H2I0_HUMAN Pre-mRNA-processing factor 19 (EC 2.3.2.27) PRPF19 DNA repair [GO:0006281]; mRNA splicing, via spliceosome [GO:0000398]; protein K63-linked ubiquitination [GO:0070534] -F5H658 unreviewed F5H658_HUMAN RNA helicase (EC 3.6.4.13) DHX8 mRNA splicing, via spliceosome [GO:0000398] -G5EA30 unreviewed G5EA30_HUMAN CUG triplet repeat, RNA binding protein 1, isoform CRA_c (CUGBP Elav-like family member 1) CELF1 CUGBP1 hCG_25183 cerebral cortex development [GO:0021987]; mRNA splice site recognition [GO:0006376]; positive regulation of multicellular organism growth [GO:0040018]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; spermatid development [GO:0007286] -H0YGF3 unreviewed H0YGF3_HUMAN Pre-mRNA-processing factor 19 (EC 2.3.2.27) PRPF19 DNA repair [GO:0006281]; mRNA splicing, via spliceosome [GO:0000398]; protein K63-linked ubiquitination [GO:0070534] -H0YGZ5 unreviewed H0YGZ5_HUMAN Pre-mRNA-processing factor 19 (EC 2.3.2.27) PRPF19 DNA repair [GO:0006281]; mRNA splicing, via spliceosome [GO:0000398]; protein K63-linked ubiquitination [GO:0070534] -J3KN38 unreviewed J3KN38_HUMAN Methylosome subunit pICln (Chloride channel, nucleotide sensitive 1A) (Chloride conductance regulatory protein ICln) CLNS1A cell volume homeostasis [GO:0006884]; chloride transport [GO:0006821]; spliceosomal snRNP assembly [GO:0000387] -J3KPP4 unreviewed J3KPP4_HUMAN Luc7-like protein LUC7L3 CROP hCG_27416 mRNA splice site recognition [GO:0006376] -K7END7 unreviewed K7END7_HUMAN RNA helicase (EC 3.6.4.13) DHX8 hCG_28537 mRNA splicing, via spliceosome [GO:0000398] -O75526 reviewed RMXL2_HUMAN RNA-binding motif protein, X-linked-like-2 (Testis-specific heterogeneous nuclear ribonucleoprotein G-T) (hnRNP G-T) RBMXL2 HNRNPGT mRNA splicing, via spliceosome [GO:0000398] -Q32P51 reviewed RA1L2_HUMAN Heterogeneous nuclear ribonucleoprotein A1-like 2 (hnRNP A1-like 2) (hnRNP core protein A1-like 2) HNRNPA1L2 HNRNPA1L mRNA splicing, via spliceosome [GO:0000398]; mRNA transport [GO:0051028] -Q59GF4 unreviewed Q59GF4_HUMAN non-specific serine/threonine protein kinase (EC 2.7.11.1) intracellular signal transduction [GO:0035556]; regulation of mRNA processing [GO:0050684]; spliceosomal complex assembly [GO:0000245] -Q66K91 unreviewed Q66K91_HUMAN Small nuclear ribonucleoprotein-associated protein SNRPB hCG_2039421 mRNA splicing, via spliceosome [GO:0000398] -Q6FHM6 unreviewed Q6FHM6_HUMAN NHP2-like protein 1 NHP2L1 hCG_41538 box C/D snoRNP assembly [GO:0000492]; maturation of LSU-rRNA [GO:0000470]; maturation of SSU-rRNA [GO:0030490]; mRNA splicing, via spliceosome [GO:0000398]; single fertilization [GO:0007338] -Q6ZP01 reviewed RBM44_HUMAN RNA-binding protein 44 (RNA-binding motif protein 44) RBM44 mRNA splicing, via spliceosome [GO:0000398] -Q7Z5A3 unreviewed Q7Z5A3_HUMAN Small nuclear ribonucleoprotein Sm D1 (snRNP core protein D1) SNRPD1 spliceosomal snRNP assembly [GO:0000387] -Q9Y312 reviewed AAR2_HUMAN Protein AAR2 homolog (AAR2 splicing factor homolog) AAR2 C20orf4 CGI-23 PRO0225 spliceosomal tri-snRNP complex assembly [GO:0000244] -A0A024R7B0 unreviewed A0A024R7B0_HUMAN Ubiquitin-like protein 5 UBL5 hCG_2033693 mRNA splicing, via spliceosome [GO:0000398]; protein modification process [GO:0036211] -A0A024RCM3 unreviewed A0A024RCM3_HUMAN Spliceosome RNA helicase DDX39B (EC 3.6.4.13) (56 kDa U2AF65-associated protein) (DEAD box protein UAP56) mRNA export from nucleus [GO:0006406]; mRNA splicing, via spliceosome [GO:0000398] -A0A087X1B2 unreviewed A0A087X1B2_HUMAN ubiquitinyl hydrolase 1 (EC 3.4.19.12) USP39 spliceosomal complex assembly [GO:0000245] -A0A090N8Y5 unreviewed A0A090N8Y5_HUMAN U6 snRNA-associated Sm-like protein LSm5 LSM5 hCG_37327 tcag7.675 mRNA splicing, via spliceosome [GO:0000398]; response to bacterium [GO:0009617] -A0A0A0MRN0 unreviewed A0A0A0MRN0_HUMAN Pre-mRNA-splicing factor 38B PRPF38B hCG_39919 mRNA splicing, via spliceosome [GO:0000398] -A0A0A6YYJ8 unreviewed A0A0A6YYJ8_HUMAN Putative RNA-binding protein Luc7-like 2 LUC7L2 mRNA splice site recognition [GO:0006376] -A0A0C4DGD2 unreviewed A0A0C4DGD2_HUMAN Pre-mRNA-splicing factor SLU7 SLU7 mRNA splicing, via spliceosome [GO:0000398] -A0A0S2Z4W4 unreviewed A0A0S2Z4W4_HUMAN RNA binding motif protein 10 isoform 2 RBM10 3'-UTR-mediated mRNA stabilization [GO:0070935]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of mRNA splicing, via spliceosome [GO:0048025]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of vascular associated smooth muscle cell proliferation [GO:1904706]; positive regulation of vascular associated smooth muscle cell apoptotic process [GO:1905461]; vascular associated smooth muscle cell apoptotic process [GO:1905288]; vascular associated smooth muscle cell proliferation [GO:1990874] -A0A0S2Z4X1 unreviewed A0A0S2Z4X1_HUMAN Epididymis secretory sperm binding protein (RNA binding motif protein 10 isoform 1) RBM10 mRNA splicing, via spliceosome [GO:0000398] -A0A0S2Z4Z0 unreviewed A0A0S2Z4Z0_HUMAN RNA binding motif protein 14 isoform 1 RBM14 apoptotic process [GO:0006915]; centriole assembly [GO:0098534]; gastrulation [GO:0007369]; mRNA splicing, via spliceosome [GO:0000398]; regulation of response to DNA integrity checkpoint signaling [GO:1902151] -A0A0S2Z504 unreviewed A0A0S2Z504_HUMAN Serine/arginine-rich splicing factor 10 isoform 1 SRSF10 cytosolic transport [GO:0016482]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of mRNA splicing, via spliceosome [GO:0048025] -A0A0S2Z5E9 unreviewed A0A0S2Z5E9_HUMAN CWF19-like protein 1 CWF19L1 mRNA splicing, via spliceosome [GO:0000398] -A0A2R8Y4L2 reviewed RA1L3_HUMAN Heterogeneous nuclear ribonucleoprotein A1-like 3 (Heterogeneous nuclear ribonucleoprotein A1 pseudogene 48) HNRNPA1L3 HNRNPA1P48 mRNA splicing, via spliceosome [GO:0000398] -A0A384NL58 unreviewed A0A384NL58_HUMAN Heterogeneous nuclear ribonucleoproteins A2/B1 mRNA splicing, via spliceosome [GO:0000398]; mRNA transport [GO:0051028] -A0A3B3IU42 unreviewed A0A3B3IU42_HUMAN Gem-associated protein 2 GEMIN2 spliceosomal complex assembly [GO:0000245]; spliceosomal snRNP assembly [GO:0000387] -A0A3B3IUA2 unreviewed A0A3B3IUA2_HUMAN NHP2-like protein 1 SNU13 mRNA splicing, via spliceosome [GO:0000398]; ribosome biogenesis [GO:0042254] -A0A6Q8PFP4 unreviewed A0A6Q8PFP4_HUMAN Protein arginine N-methyltransferase (EC 2.1.1.321) PRMT7 cell differentiation [GO:0030154]; methylation [GO:0032259]; spliceosomal snRNP assembly [GO:0000387] -A0A7P0T9U7 unreviewed A0A7P0T9U7_HUMAN Splicing factor 1 SF1 mRNA splicing, via spliceosome [GO:0000398] -A0A8I5KRH1 unreviewed A0A8I5KRH1_HUMAN Zinc finger CCCH-type, RNA binding motif and serine/arginine rich 2 ZRSR2 mRNA splicing, via spliceosome [GO:0000398] -A0A8I5KRW2 unreviewed A0A8I5KRW2_HUMAN Protein arginine N-methyltransferase (EC 2.1.1.321) PRMT7 cell differentiation [GO:0030154]; methylation [GO:0032259]; spliceosomal snRNP assembly [GO:0000387] -A0A8I5KSD0 unreviewed A0A8I5KSD0_HUMAN Zinc finger CCCH-type, RNA binding motif and serine/arginine rich 2 ZRSR2 mRNA splicing, via spliceosome [GO:0000398] -A0A8I5KXS9 unreviewed A0A8I5KXS9_HUMAN Protein arginine N-methyltransferase (EC 2.1.1.321) PRMT7 cell differentiation [GO:0030154]; methylation [GO:0032259]; spliceosomal snRNP assembly [GO:0000387] -A0A8I5KYD6 unreviewed A0A8I5KYD6_HUMAN Protein arginine N-methyltransferase (EC 2.1.1.321) PRMT7 cell differentiation [GO:0030154]; methylation [GO:0032259]; spliceosomal snRNP assembly [GO:0000387] -A0A8I5KZ92 unreviewed A0A8I5KZ92_HUMAN Protein arginine N-methyltransferase (EC 2.1.1.321) PRMT7 cell differentiation [GO:0030154]; methylation [GO:0032259]; spliceosomal snRNP assembly [GO:0000387] -A0A8I5QKS0 unreviewed A0A8I5QKS0_HUMAN Zinc finger CCCH-type, RNA binding motif and serine/arginine rich 2 ZRSR2 mRNA splicing, via spliceosome [GO:0000398] -A0A8J9FN78 unreviewed A0A8J9FN78_HUMAN Gem-associated protein 2 GEMIN2 spliceosomal complex assembly [GO:0000245]; spliceosomal snRNP assembly [GO:0000387] -A0A9L9PXE4 unreviewed A0A9L9PXE4_HUMAN Splicing factor 1 SF1 mRNA splicing, via spliceosome [GO:0000398] -A0A9L9PXR5 unreviewed A0A9L9PXR5_HUMAN Splicing factor 1 SF1 mRNA splicing, via spliceosome [GO:0000398] -A0JLT9 unreviewed A0JLT9_HUMAN SF3B1 protein SF3B1 spliceosomal complex assembly [GO:0000245] -A0MNN4 unreviewed A0MNN4_HUMAN WD40 repeat-containing protein SMU1 (Smu-1 suppressor of mec-8 and unc-52 protein homolog) SMU1 hCG_30278 mRNA splicing, via spliceosome [GO:0000398] -A0PJH5 unreviewed A0PJH5_HUMAN SF3B1 protein SF3B1 spliceosomal complex assembly [GO:0000245] -A4D0W0 unreviewed A4D0W0_HUMAN U6 snRNA-associated Sm-like protein LSm8 LSM8 hCG_14869 tcag7.58 mRNA splicing, via spliceosome [GO:0000398] -A6NHK2 unreviewed A6NHK2_HUMAN Small nuclear ribonucleoprotein E (snRNP-E) (Sm protein E) SNRPE spliceosomal snRNP assembly [GO:0000387] -A6PVI3 reviewed NCB2L_HUMAN Nuclear cap-binding protein subunit 2-like NCBP2L mRNA cis splicing, via spliceosome [GO:0045292]; mRNA splicing, via spliceosome [GO:0000398] -A8K355 unreviewed A8K355_HUMAN cDNA FLJ76385, highly similar to Homo sapiens splicing factor 3b, subunit 1, 155kDa (SF3B1), transcript variant 2, mRNA spliceosomal complex assembly [GO:0000245] -A8K3C5 unreviewed A8K3C5_HUMAN Luc7-like protein mRNA splice site recognition [GO:0006376] -A8K4Z6 unreviewed A8K4Z6_HUMAN BUD13 homolog mRNA splicing, via spliceosome [GO:0000398] -A8K6F0 unreviewed A8K6F0_HUMAN RNA helicase aquarius mRNA splicing, via spliceosome [GO:0000398] -A8K6G9 unreviewed A8K6G9_HUMAN RNA helicase (EC 3.6.4.13) mRNA splicing, via spliceosome [GO:0000398] -A8K6J9 unreviewed A8K6J9_HUMAN RNA helicase (EC 3.6.4.13) spliceosomal complex disassembly [GO:0000390] -A8KA56 unreviewed A8KA56_HUMAN RNA helicase (EC 3.6.4.13) mRNA splicing, via spliceosome [GO:0000398] -A8KAP3 unreviewed A8KAP3_HUMAN 116 kDa U5 small nuclear ribonucleoprotein component (U5 snRNP-specific protein, 116 kDa) mRNA splicing, via spliceosome [GO:0000398] -A8KAQ5 unreviewed A8KAQ5_HUMAN U1 small nuclear ribonucleoprotein 70 kDa mRNA splicing, via spliceosome [GO:0000398] -A8MYV2 unreviewed A8MYV2_HUMAN LUC7 like (LUC7-like (S. cerevisiae)) LUC7L hCG_22425 LA16c-OS12.1-007 mRNA splice site recognition [GO:0006376] -B0AZV0 unreviewed B0AZV0_HUMAN Serine-threonine kinase receptor-associated protein spliceosomal snRNP assembly [GO:0000387] -B1AHD1 unreviewed B1AHD1_HUMAN NHP2-like protein 1 SNU13 mRNA splicing, via spliceosome [GO:0000398]; ribosome biogenesis [GO:0042254] -B1AK66 unreviewed B1AK66_HUMAN Smad nuclear interacting protein 1 (cDNA, FLJ96650, Homo sapiens Smad nuclear interacting protein (SNIP1), mRNA) SNIP1 hCG_25684 maintenance of RNA location [GO:0051237]; miRNA processing [GO:0035196]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of canonical NF-kappaB signal transduction [GO:0043124]; negative regulation of protein dephosphorylation [GO:0035308] -B2R5H5 unreviewed B2R5H5_HUMAN U6 snRNA-associated Sm-like protein LSm3 LSM3 mRNA splicing, via spliceosome [GO:0000398]; P-body assembly [GO:0033962] -B2R6F3 unreviewed B2R6F3_HUMAN Epididymis secretory sperm binding protein (Splicing factor arginine/serine-rich 3) (Splicing factor, arginine/serine-rich 3, isoform CRA_d) (cDNA, FLJ92926, Homo sapiens splicing factor, arginine/serine-rich 3 (SFRS3), mRNA) SFRS3 hCG_14802 cellular response to leukemia inhibitory factor [GO:1990830]; mRNA splicing, via spliceosome [GO:0000398] -B2R791 unreviewed B2R791_HUMAN U4/U6 small nuclear ribonucleoprotein Prp3 (Pre-mRNA-splicing factor 3) mRNA splicing, via spliceosome [GO:0000398] -B2R802 unreviewed B2R802_HUMAN U1 small nuclear ribonucleoprotein A mRNA splicing, via spliceosome [GO:0000398] -B2RA86 unreviewed B2RA86_HUMAN CUGBP Elav-like family member 2 (Bruno-like protein 3) (CUG triplet repeat RNA-binding protein 2) (CUG-BP- and ETR-3-like factor 2) (RNA-binding protein BRUNOL-3) mRNA splice site recognition [GO:0006376]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381] -B2RBA0 unreviewed B2RBA0_HUMAN Pre-mRNA-splicing factor SLU7 mRNA splicing, via spliceosome [GO:0000398] -B2RBX8 unreviewed B2RBX8_HUMAN Pre-mRNA-splicing factor SYF2 mRNA splicing, via spliceosome [GO:0000398] -B3KPV0 unreviewed B3KPV0_HUMAN cDNA FLJ32246 fis, clone PROST1000097, highly similar to U1 SMALL NUCLEAR RIBONUCLEOPROTEIN 70 kDa mRNA splicing, via spliceosome [GO:0000398] -B3KRK2 unreviewed B3KRK2_HUMAN RNA helicase (EC 3.6.4.13) DDX41 hCG_2039392 mRNA splicing, via spliceosome [GO:0000398] -B3KRR1 unreviewed B3KRR1_HUMAN RNA-binding protein Luc7-like mRNA splice site recognition [GO:0006376] -B3KSL5 unreviewed B3KSL5_HUMAN RNA-binding protein Luc7-like mRNA splice site recognition [GO:0006376] -B3KUZ1 unreviewed B3KUZ1_HUMAN Probable splicing factor YJU2B (Coiled-coil domain-containing protein 130) mRNA splicing, via spliceosome [GO:0000398] -B3KX19 unreviewed B3KX19_HUMAN 116 kDa U5 small nuclear ribonucleoprotein component (U5 snRNP-specific protein, 116 kDa) mRNA splicing, via spliceosome [GO:0000398] -B3KY11 unreviewed B3KY11_HUMAN RNA helicase (EC 3.6.4.13) mRNA splicing, via spliceosome [GO:0000398] -B3KY60 unreviewed B3KY60_HUMAN cDNA FLJ16777 fis, clone BRHIP2029567, highly similar to Cell division cycle 5-like protein cell division [GO:0051301]; mRNA splicing, via spliceosome [GO:0000398] -B4DDE7 unreviewed B4DDE7_HUMAN CUGBP Elav-like family member 2 (Bruno-like protein 3) (CUG triplet repeat RNA-binding protein 2) (CUG-BP- and ETR-3-like factor 2) (RNA-binding protein BRUNOL-3) mRNA splice site recognition [GO:0006376]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381] -B4DDK7 unreviewed B4DDK7_HUMAN cDNA FLJ51792, highly similar to Smad nuclear-interacting protein 1 maintenance of RNA location [GO:0051237]; miRNA processing [GO:0035196]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of protein dephosphorylation [GO:0035308] -B4DEG7 unreviewed B4DEG7_HUMAN SNW domain-containing protein 1 mRNA splicing, via spliceosome [GO:0000398] -B4DET0 unreviewed B4DET0_HUMAN RNA helicase (EC 3.6.4.13) mRNA splicing, via spliceosome [GO:0000398] -B4DFD7 unreviewed B4DFD7_HUMAN cDNA FLJ55457, highly similar to ATP-dependent RNA helicase DHX8 spliceosomal complex disassembly [GO:0000390] -B4DH55 unreviewed B4DH55_HUMAN RNA helicase (EC 3.6.4.13) mRNA export from nucleus [GO:0006406]; mRNA splicing, via spliceosome [GO:0000398] -B4DJ96 unreviewed B4DJ96_HUMAN Luc7-like protein mRNA splice site recognition [GO:0006376] -B4DJM2 unreviewed B4DJM2_HUMAN Nuclear cap-binding protein subunit 2 (20 kDa nuclear cap-binding protein) mRNA cis splicing, via spliceosome [GO:0045292]; regulatory ncRNA-mediated gene silencing [GO:0031047] -B4DJU4 unreviewed B4DJU4_HUMAN Splicing factor 1 mRNA splicing, via spliceosome [GO:0000398]; regulation of mRNA splicing, via spliceosome [GO:0048024] -B4DLS8 unreviewed B4DLS8_HUMAN U4/U6 small nuclear ribonucleoprotein Prp3 (Pre-mRNA-splicing factor 3) mRNA splicing, via spliceosome [GO:0000398] -B4DLV6 unreviewed B4DLV6_HUMAN cDNA FLJ57163, moderately similar to Smad nuclear-interacting protein 1 maintenance of RNA location [GO:0051237]; miRNA processing [GO:0035196]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of protein dephosphorylation [GO:0035308] -B4DM28 unreviewed B4DM28_HUMAN U4/U6 small nuclear ribonucleoprotein Prp3 (Pre-mRNA-splicing factor 3) mRNA splicing, via spliceosome [GO:0000398] -B4DM30 unreviewed B4DM30_HUMAN RNA helicase (EC 3.6.4.13) DHX38 hCG_33013 mRNA splicing, via spliceosome [GO:0000398] -B4DN69 unreviewed B4DN69_HUMAN RNA helicase (EC 3.6.4.13) mRNA splicing, via spliceosome [GO:0000398] -B4DP52 unreviewed B4DP52_HUMAN Spliceosome RNA helicase DDX39B (EC 3.6.4.13) (56 kDa U2AF65-associated protein) (DEAD box protein UAP56) hCG_2005638 mRNA export from nucleus [GO:0006406]; mRNA splicing, via spliceosome [GO:0000398] -B4DQL3 unreviewed B4DQL3_HUMAN cDNA FLJ51939, highly similar to Homo sapiens trinucleotide repeat containing 4 (TNRC4), mRNA mRNA splice site recognition [GO:0006376]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381] -B4DS31 unreviewed B4DS31_HUMAN CUGBP Elav-like family member 2 (Bruno-like protein 3) (CUG triplet repeat RNA-binding protein 2) (CUG-BP- and ETR-3-like factor 2) (RNA-binding protein BRUNOL-3) mRNA splice site recognition [GO:0006376]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381] -B4DSE4 unreviewed B4DSE4_HUMAN Splicing factor 1 mRNA splicing, via spliceosome [GO:0000398]; regulation of mRNA splicing, via spliceosome [GO:0048024] -B4DSH1 unreviewed B4DSH1_HUMAN cDNA FLJ51295, highly similar to Cell division cycle 5-like protein cell division [GO:0051301]; mRNA splicing, via spliceosome [GO:0000398] -B4DSX7 unreviewed B4DSX7_HUMAN Splicing factor Cactin mRNA cis splicing, via spliceosome [GO:0045292]; negative regulation of innate immune response [GO:0045824] -B4DSZ2 unreviewed B4DSZ2_HUMAN CUGBP Elav-like family member 2 (Bruno-like protein 3) (CUG triplet repeat RNA-binding protein 2) (CUG-BP- and ETR-3-like factor 2) (RNA-binding protein BRUNOL-3) mRNA splice site recognition [GO:0006376]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381] -B4DT00 unreviewed B4DT00_HUMAN CUGBP Elav-like family member 2 (Bruno-like protein 3) (CUG triplet repeat RNA-binding protein 2) (CUG-BP- and ETR-3-like factor 2) (RNA-binding protein BRUNOL-3) mRNA splice site recognition [GO:0006376]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381] -B4DUU3 unreviewed B4DUU3_HUMAN cDNA FLJ57162, highly similar to Smad nuclear-interacting protein 1 maintenance of RNA location [GO:0051237]; miRNA processing [GO:0035196]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of protein dephosphorylation [GO:0035308] -B4DVD6 unreviewed B4DVD6_HUMAN cDNA FLJ60171, highly similar to Small nuclear ribonucleoprotein-associated protein B mRNA splicing, via spliceosome [GO:0000398] -B4DVS0 unreviewed B4DVS0_HUMAN Small nuclear ribonucleoprotein-associated protein SNRPB hCG_2039421 mRNA splicing, via spliceosome [GO:0000398] -B4DWW8 unreviewed B4DWW8_HUMAN U4/U6 small nuclear ribonucleoprotein Prp31 (Pre-mRNA-processing factor 31) spliceosomal tri-snRNP complex assembly [GO:0000244] -B4DX42 unreviewed B4DX42_HUMAN Splicing factor 1 mRNA splicing, via spliceosome [GO:0000398]; regulation of mRNA splicing, via spliceosome [GO:0048024] -B4DX78 unreviewed B4DX78_HUMAN RNA helicase (EC 3.6.4.13) mRNA export from nucleus [GO:0006406]; mRNA splicing, via spliceosome [GO:0000398] -B4DY36 unreviewed B4DY36_HUMAN SNW domain-containing protein 1 mRNA splicing, via spliceosome [GO:0000398] -B4DZB1 unreviewed B4DZB1_HUMAN 116 kDa U5 small nuclear ribonucleoprotein component (U5 snRNP-specific protein, 116 kDa) mRNA splicing, via spliceosome [GO:0000398] -B4DZQ5 unreviewed B4DZQ5_HUMAN Serine/threonine-protein kinase PRP4 homolog (EC 2.7.11.1) (PRP4 pre-mRNA-processing factor 4 homolog) mRNA cis splicing, via spliceosome [GO:0045292] -B4DZQ7 unreviewed B4DZQ7_HUMAN RNA helicase (EC 3.6.4.13) alternative mRNA splicing, via spliceosome [GO:0000380] -B4E0Y8 unreviewed B4E0Y8_HUMAN Pre-mRNA-splicing factor SYF2 mRNA splicing, via spliceosome [GO:0000398] -B5BU08 unreviewed B5BU08_HUMAN U2 small nuclear RNA auxillary factor 1 isoform a U2AF1 mRNA splicing, via spliceosome [GO:0000398] -B7Z1U2 unreviewed B7Z1U2_HUMAN Probable splicing factor YJU2B (Coiled-coil domain-containing protein 130) mRNA splicing, via spliceosome [GO:0000398] -B7Z7L9 unreviewed B7Z7L9_HUMAN ubiquitinyl hydrolase 1 (EC 3.4.19.12) spliceosomal complex assembly [GO:0000245] -B7Z8F4 unreviewed B7Z8F4_HUMAN RNA helicase (EC 3.6.4.13) spliceosomal complex disassembly [GO:0000390] -B7Z9X2 unreviewed B7Z9X2_HUMAN SNW domain-containing protein 1 mRNA splicing, via spliceosome [GO:0000398] -B9A018 unreviewed B9A018_HUMAN ubiquitinyl hydrolase 1 (EC 3.4.19.12) USP39 spliceosomal complex assembly [GO:0000245] -C9JIZ0 unreviewed C9JIZ0_HUMAN U6 snRNA-associated Sm-like protein LSm8 LSM8 hCG_14869 mRNA splicing, via spliceosome [GO:0000398] -C9JL41 unreviewed C9JL41_HUMAN Luc7-like protein LUC7L3 mRNA splice site recognition [GO:0006376] -C9JNV3 unreviewed C9JNV3_HUMAN U6 snRNA-associated Sm-like protein LSm8 LSM8 mRNA splicing, via spliceosome [GO:0000398] -C9JVQ0 unreviewed C9JVQ0_HUMAN Small nuclear ribonucleoprotein G (snRNP-G) SNRPG spliceosomal snRNP assembly [GO:0000387] -D6RA26 unreviewed D6RA26_HUMAN Pleiotropic regulator 1 PLRG1 mRNA splicing, via spliceosome [GO:0000398] -D6RC52 unreviewed D6RC52_HUMAN H/ACA ribonucleoprotein complex subunit 2 NHP2 mRNA splicing, via spliceosome [GO:0000398] -D6RCB9 unreviewed D6RCB9_HUMAN H/ACA ribonucleoprotein complex subunit 2 NHP2 mRNA splicing, via spliceosome [GO:0000398] -D6RDI2 unreviewed D6RDI2_HUMAN Luc7-like protein LUC7L3 mRNA splice site recognition [GO:0006376] -E5RGM7 unreviewed E5RGM7_HUMAN Pre-mRNA-splicing factor SLU7 SLU7 mRNA splicing, via spliceosome [GO:0000398] -E5RK41 unreviewed E5RK41_HUMAN Pre-mRNA-splicing factor SLU7 SLU7 mRNA splicing, via spliceosome [GO:0000398] -E7EVX8 unreviewed E7EVX8_HUMAN U4/U6 small nuclear ribonucleoprotein Prp31 (Pre-mRNA-processing factor 31) PRPF31 spliceosomal tri-snRNP complex assembly [GO:0000244] -E9PC62 unreviewed E9PC62_HUMAN CUGBP Elav-like family member 2 (Bruno-like protein 3) (CUG triplet repeat RNA-binding protein 2) (CUG-BP- and ETR-3-like factor 2) (RNA-binding protein BRUNOL-3) CELF2 mRNA splice site recognition [GO:0006376] -F2Z2Y6 unreviewed F2Z2Y6_HUMAN U6 snRNA-associated Sm-like protein LSm8 LSM8 mRNA splicing, via spliceosome [GO:0000398] -F5H013 unreviewed F5H013_HUMAN Small nuclear ribonucleoprotein G (snRNP-G) SNRPG spliceosomal snRNP assembly [GO:0000387] -F5H578 unreviewed F5H578_HUMAN Pre-mRNA processing factor 40 homolog A PRPF40A mRNA cis splicing, via spliceosome [GO:0045292] -F6WVI0 unreviewed F6WVI0_HUMAN Nuclear cap-binding protein subunit 2 (20 kDa nuclear cap-binding protein) NCBP2 hCG_40296 mRNA cis splicing, via spliceosome [GO:0045292]; regulatory ncRNA-mediated gene silencing [GO:0031047] -F8VXY6 unreviewed F8VXY6_HUMAN Zinc finger CCHC-type and RNA-binding motif-containing protein 1 (U11/U12 small nuclear ribonucleoprotein 31 kDa protein) ZCRB1 mRNA splicing, via spliceosome [GO:0000398] -G3V3A4 unreviewed G3V3A4_HUMAN SNW domain-containing protein 1 SNW1 mRNA splicing, via spliceosome [GO:0000398] -G3V4X8 unreviewed G3V4X8_HUMAN SNW domain-containing protein 1 SNW1 mRNA splicing, via spliceosome [GO:0000398] -G3V5R3 unreviewed G3V5R3_HUMAN SNW domain-containing protein 1 SNW1 mRNA splicing, via spliceosome [GO:0000398] -H0YA81 unreviewed H0YA81_HUMAN Luc7-like protein LUC7L3 mRNA splice site recognition [GO:0006376] -H0YDJ3 unreviewed H0YDJ3_HUMAN Serine/threonine-protein kinase PRP4 homolog (EC 2.7.11.1) (PRP4 pre-mRNA-processing factor 4 homolog) PRP4K mRNA cis splicing, via spliceosome [GO:0045292] -H3BN11 unreviewed H3BN11_HUMAN Thioredoxin like 4B TXNL4B mRNA splicing, via spliceosome [GO:0000398] -H3BRD3 unreviewed H3BRD3_HUMAN Protein arginine N-methyltransferase (EC 2.1.1.321) PRMT7 cell differentiation [GO:0030154]; methylation [GO:0032259]; spliceosomal snRNP assembly [GO:0000387] -H3BT13 unreviewed H3BT13_HUMAN Small nuclear ribonucleoprotein Sm D3 (Sm-D3) (snRNP core protein D3) SNRPD3 spliceosomal snRNP assembly [GO:0000387] -H3BUL8 unreviewed H3BUL8_HUMAN Thioredoxin like 4B TXNL4B mRNA splicing, via spliceosome [GO:0000398] -H7C561 unreviewed H7C561_HUMAN Splicing factor 1 SF1 mRNA splicing, via spliceosome [GO:0000398] -H7C5U7 unreviewed H7C5U7_HUMAN Luc7-like protein LUC7L3 mRNA splice site recognition [GO:0006376] -I3L2C7 unreviewed I3L2C7_HUMAN Gem nuclear organelle associated protein 4 GEMIN4 rRNA processing [GO:0006364]; spliceosomal snRNP assembly [GO:0000387] -I3L399 unreviewed I3L399_HUMAN Gem nuclear organelle associated protein 4 GEMIN4 rRNA processing [GO:0006364]; spliceosomal snRNP assembly [GO:0000387] -I3L4A4 unreviewed I3L4A4_HUMAN Gem nuclear organelle associated protein 4 GEMIN4 rRNA processing [GO:0006364]; spliceosomal snRNP assembly [GO:0000387] -I3L4M4 unreviewed I3L4M4_HUMAN Gem nuclear organelle associated protein 4 GEMIN4 rRNA processing [GO:0006364]; spliceosomal snRNP assembly [GO:0000387] -I6L957 unreviewed I6L957_HUMAN Heterogeneous nuclear ribonucleoproteins A2/B1 HNRNPA2B1 mRNA splicing, via spliceosome [GO:0000398]; mRNA transport [GO:0051028] -J3QSY4 unreviewed J3QSY4_HUMAN H/ACA ribonucleoprotein complex subunit 2 NHP2 mRNA splicing, via spliceosome [GO:0000398] -K7EJZ6 unreviewed K7EJZ6_HUMAN Probable splicing factor YJU2B (Coiled-coil domain-containing protein 130) YJU2B mRNA splicing, via spliceosome [GO:0000398] -K7ELI4 unreviewed K7ELI4_HUMAN Probable splicing factor YJU2B (Coiled-coil domain-containing protein 130) YJU2B mRNA splicing, via spliceosome [GO:0000398] -K7ES43 unreviewed K7ES43_HUMAN Probable splicing factor YJU2B (Coiled-coil domain-containing protein 130) YJU2B mRNA splicing, via spliceosome [GO:0000398] -K7ESL1 unreviewed K7ESL1_HUMAN Thioredoxin like 4A TXNL4A mRNA splicing, via spliceosome [GO:0000398] -M0QXB0 unreviewed M0QXB0_HUMAN U6 snRNA-associated Sm-like protein LSm4 LSM4 mRNA splicing, via spliceosome [GO:0000398]; nuclear-transcribed mRNA catabolic process [GO:0000956] -M0QYK5 unreviewed M0QYK5_HUMAN U2 small nuclear RNA auxiliary factor 1 like 4 U2AF1L4 mRNA splicing, via spliceosome [GO:0000398] -M0R2N4 unreviewed M0R2N4_HUMAN C3H1-type domain-containing protein mRNA splicing, via spliceosome [GO:0000398] -O14835 unreviewed O14835_HUMAN Dim1p homolog (Thioredoxin like 4A) (Thioredoxin-like 4A, isoform CRA_a) TXNL4A hCG_16170 mRNA splicing, via spliceosome [GO:0000398] -O75243 unreviewed O75243_HUMAN R30783_1 mRNA splicing, via spliceosome [GO:0000398]; nuclear-transcribed mRNA catabolic process [GO:0000956] -Q05DF2 unreviewed Q05DF2_HUMAN SF3A2 protein SF3A2 spliceosomal complex assembly [GO:0000245] -Q0D2M5 unreviewed Q0D2M5_HUMAN SNW domain-containing protein 1 SNW1 mRNA splicing, via spliceosome [GO:0000398] -Q15182 unreviewed Q15182_HUMAN Small nuclear ribonucleoprotein-associated protein SNRPB mRNA splicing, via spliceosome [GO:0000398] -Q1W6G4 unreviewed Q1W6G4_HUMAN LUC7-like (S. cerevisiae) (Putative RNA-binding protein Luc7-like 1) LUC7L hCG_22425 LA16c-OS12.1-001 mRNA splice site recognition [GO:0006376] -Q32Q20 unreviewed Q32Q20_HUMAN SF3B1 protein SF3B1 spliceosomal complex assembly [GO:0000245] -Q49AN9 unreviewed Q49AN9_HUMAN Small nuclear ribonucleoprotein G (snRNP-G) SNRPG spliceosomal snRNP assembly [GO:0000387] -Q4G1D0 unreviewed Q4G1D0_HUMAN Small nuclear ribonucleoprotein Sm D2 (Sm-D2) (snRNP core protein D2) LOC645339 SNRPD2 spliceosomal snRNP assembly [GO:0000387] -Q4TT61 unreviewed Q4TT61_HUMAN Chromosome 16 open reading frame 33 (Small nuclear ribonucleoprotein U11/U12 subunit 25) SNRNP25 C16orf33 Z69719.2-001 mRNA splicing, via spliceosome [GO:0000398] -Q53GV6 unreviewed Q53GV6_HUMAN U4/U6 small nuclear ribonucleoprotein Prp3 (Pre-mRNA-splicing factor 3) mRNA splicing, via spliceosome [GO:0000398] -Q53HE7 unreviewed Q53HE7_HUMAN Small nuclear ribonucleoprotein polypeptide N variant mRNA splicing, via spliceosome [GO:0000398] -Q53HI2 unreviewed Q53HI2_HUMAN RNA helicase (EC 3.6.4.13) mRNA splicing, via spliceosome [GO:0000398] -Q58EZ8 unreviewed Q58EZ8_HUMAN GEMIN5 protein GEMIN5 spliceosomal snRNP assembly [GO:0000387] -Q59E92 unreviewed Q59E92_HUMAN RNA helicase (EC 3.6.4.13) alternative mRNA splicing, via spliceosome [GO:0000380] -Q59F66 unreviewed Q59F66_HUMAN RNA helicase (EC 3.6.4.13) alternative mRNA splicing, via spliceosome [GO:0000380] -Q59G45 unreviewed Q59G45_HUMAN Trinucleotide repeat containing 4 variant mRNA splice site recognition [GO:0006376]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381] -Q59G92 unreviewed Q59G92_HUMAN RNA helicase (EC 3.6.4.13) mRNA export from nucleus [GO:0006406]; mRNA splicing, via spliceosome [GO:0000398] -Q5H918 unreviewed Q5H918_HUMAN HIV-1 Tat specific factor 1 HTATSF1 mRNA splicing, via spliceosome [GO:0000398] -Q5H919 unreviewed Q5H919_HUMAN HIV-1 Tat specific factor 1 HTATSF1 mRNA splicing, via spliceosome [GO:0000398] -Q5SRN1 unreviewed Q5SRN1_HUMAN Cell division cycle 40 CDC40 mRNA splicing, via spliceosome [GO:0000398] -Q5T1M7 unreviewed Q5T1M7_HUMAN 60 kDa U4/U6 snRNP-specific spliceosomal protein (PRP4 pre-mRNA processing factor 4 homolog (Yeast), isoform CRA_b) PRPF4 hCG_29193 mRNA splicing, via spliceosome [GO:0000398] -Q5W009 unreviewed Q5W009_HUMAN Splicing factor 45 (RNA-binding motif protein 17) RBM17 hCG_24832 alternative mRNA splicing, via spliceosome [GO:0000380]; mRNA cis splicing, via spliceosome [GO:0045292] -Q5XPV6 unreviewed Q5XPV6_HUMAN Small nuclear ribonucleoprotein-associated protein mRNA splicing, via spliceosome [GO:0000398] -Q68CN2 unreviewed Q68CN2_HUMAN Uncharacterized protein DKFZp762C1015 DKFZp762C1015 generation of catalytic spliceosome for first transesterification step [GO:0000349] -Q69YH0 unreviewed Q69YH0_HUMAN Pre-mRNA-splicing factor 38B DKFZp434O1172 PRPF38B mRNA splicing, via spliceosome [GO:0000398] -Q69YP1 unreviewed Q69YP1_HUMAN Uncharacterized protein DKFZp762M013 DKFZp762M013 spliceosomal complex assembly [GO:0000245] -Q69YT6 unreviewed Q69YT6_HUMAN RNA helicase (EC 3.6.4.13) DKFZp547B159 mRNA export from nucleus [GO:0006406]; mRNA splicing, via spliceosome [GO:0000398] -Q6I9S2 unreviewed Q6I9S2_HUMAN SNW domain-containing protein 1 SNW1 mRNA splicing, via spliceosome [GO:0000398] -Q6IBM8 unreviewed Q6IBM8_HUMAN 116 kDa U5 small nuclear ribonucleoprotein component (U5 snRNP-specific protein, 116 kDa) U5-116KD mRNA splicing, via spliceosome [GO:0000398] -Q6LBS1 unreviewed Q6LBS1_HUMAN SmB /B' autoimmune antigene mRNA splicing, via spliceosome [GO:0000398] -Q6P151 unreviewed Q6P151_HUMAN SNW domain-containing protein 1 SNW1 mRNA splicing, via spliceosome [GO:0000398] -Q6PKC2 unreviewed Q6PKC2_HUMAN Luc7-like protein CROP mRNA splice site recognition [GO:0006376] -Q71SV8 unreviewed Q71SV8_HUMAN Crn-related protein kim1 generation of catalytic spliceosome for first transesterification step [GO:0000349] -Q7KYK3 unreviewed Q7KYK3_HUMAN RNA helicase (EC 3.6.4.13) BAT1 mRNA export from nucleus [GO:0006406]; mRNA splicing, via spliceosome [GO:0000398] -Q7Z2V5 unreviewed Q7Z2V5_HUMAN RNA helicase (EC 3.6.4.13) DKFZp686J01190 alternative mRNA splicing, via spliceosome [GO:0000380] -Q7Z3W9 unreviewed Q7Z3W9_HUMAN Nuclear cap-binding protein subunit 2 (20 kDa nuclear cap-binding protein) DKFZp686G18222 mRNA cis splicing, via spliceosome [GO:0045292]; regulatory ncRNA-mediated gene silencing [GO:0031047] -Q7Z497 unreviewed Q7Z497_HUMAN SF3B1 protein SF3B1 spliceosomal complex assembly [GO:0000245] -Q7Z780 unreviewed Q7Z780_HUMAN U2 small nuclear RNA auxiliary factor 1 U2AF1 mRNA splicing, via spliceosome [GO:0000398] -Q86VG2 unreviewed Q86VG2_HUMAN Splicing factor proline/glutamine-rich (Polypyrimidine tract binding protein associated) SFPQ alternative mRNA splicing, via spliceosome [GO:0000380]; regulation of DNA-templated transcription [GO:0006355] -Q86VN0 unreviewed Q86VN0_HUMAN Zinc finger (CCCH type), RNA-binding motif and serine/arginine rich 2 ZRSR2 mRNA splicing, via spliceosome [GO:0000398] -Q86X36 unreviewed Q86X36_HUMAN RNA helicase (EC 3.6.4.13) DHX8 spliceosomal complex disassembly [GO:0000390] -Q86Y74 unreviewed Q86Y74_HUMAN Luc7-like protein CROP mRNA splice site recognition [GO:0006376] -Q86YB2 unreviewed Q86YB2_HUMAN RNA helicase (EC 3.6.4.13) DHX8 spliceosomal complex disassembly [GO:0000390] -Q8IXG0 unreviewed Q8IXG0_HUMAN Crn protein crn spliceosomal complex assembly [GO:0000245] -Q8IYV2 unreviewed Q8IYV2_HUMAN RNA helicase (EC 3.6.4.13) DDX20 spliceosomal snRNP assembly [GO:0000387] -Q8N523 unreviewed Q8N523_HUMAN Tuftelin-interacting protein 11 TFIP11 biomineral tissue development [GO:0031214]; spliceosomal complex disassembly [GO:0000390] -Q8N7X1 reviewed RMXL3_HUMAN RNA-binding motif protein, X-linked-like-3 RBMXL3 CXorf55 mRNA splicing, via spliceosome [GO:0000398] -Q8NEH0 unreviewed Q8NEH0_HUMAN RNA helicase (EC 3.6.4.13) DDX20 spliceosomal snRNP assembly [GO:0000387] -Q8TDR3 unreviewed Q8TDR3_HUMAN RNA helicase (EC 3.6.4.13) DDX20 spliceosomal snRNP assembly [GO:0000387] -Q9C059 unreviewed Q9C059_HUMAN CUGBP Elav-like family member 4 (Bruno-like protein 4) (CUG-BP- and ETR-3-like factor 4) (RNA-binding protein BRUNOL-4) mRNA splice site recognition [GO:0006376]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381] -Q9NVM6 reviewed DJC17_HUMAN DnaJ homolog subfamily C member 17 DNAJC17 negative regulation of transcription by RNA polymerase II [GO:0000122]; spliceosomal complex disassembly [GO:0000390] -Q9UIS4 unreviewed Q9UIS4_HUMAN Small nuclear ribonucleoprotein-associated protein SNRPB mRNA splicing, via spliceosome [GO:0000398] -Q9ULA6 unreviewed Q9ULA6_HUMAN SNW domain-containing protein 1 mRNA splicing, via spliceosome [GO:0000398] -U3KQK1 unreviewed U3KQK1_HUMAN U6 snRNA-associated Sm-like protein LSm4 LSM4 mRNA splicing, via spliceosome [GO:0000398]; nuclear-transcribed mRNA catabolic process [GO:0000956] -V9GZ56 unreviewed V9GZ56_HUMAN U6 snRNA-associated Sm-like protein LSm4 LSM4 mRNA splicing, via spliceosome [GO:0000398]; nuclear-transcribed mRNA catabolic process [GO:0000956] -X5DP00 unreviewed X5DP00_HUMAN HCG15924, isoform CRA_a (Small nuclear ribonucleoprotein polypeptide N isoform A) SNRPN hCG_15924 mRNA splicing, via spliceosome [GO:0000398] -A0A024RB53 unreviewed A0A024RB53_HUMAN Epididymis secretory sperm binding protein mRNA splicing, via spliceosome [GO:0000398] -A0A0B4J254 unreviewed A0A0B4J254_HUMAN Small nuclear ribonucleoprotein polypeptide F SNRPF mRNA splicing, via spliceosome [GO:0000398] -A0A0S2Z549 unreviewed A0A0S2Z549_HUMAN RNA binding motif protein 5 isoform 1 RBM5 mRNA splicing, via spliceosome [GO:0000398] -A0A0S2Z5U0 unreviewed A0A0S2Z5U0_HUMAN RNA binding motif protein 5 isoform 2 RBM5 mRNA splicing, via spliceosome [GO:0000398] -A0A1B0GW87 unreviewed A0A1B0GW87_HUMAN U2 small nuclear RNA auxiliary factor 1 U2AF1 mRNA splicing, via spliceosome [GO:0000398] -A0A384N5Z8 unreviewed A0A384N5Z8_HUMAN Epididymis secretory sperm binding protein alternative mRNA splicing, via spliceosome [GO:0000380]; regulation of DNA-templated transcription [GO:0006355] -A0A384NL63 unreviewed A0A384NL63_HUMAN Epididymis secretory sperm binding protein (Heterogeneous nuclear ribonucleoprotein A3, isoform CRA_b) HNRPA3 hCG_2005824 mRNA splicing, via spliceosome [GO:0000398] -A0A494C1M2 unreviewed A0A494C1M2_HUMAN Splicing factor 3b subunit 1 SF3B1 spliceosomal complex assembly [GO:0000245] -A0A7N4I394 unreviewed A0A7N4I394_HUMAN Pre-mRNA processing factor 40 homolog A PRPF40A mRNA cis splicing, via spliceosome [GO:0045292] -A0A804HJC0 unreviewed A0A804HJC0_HUMAN Arginine and serine rich coiled-coil 1 RSRC1 alternative mRNA splicing, via spliceosome [GO:0000380] -A0A804HJI2 unreviewed A0A804HJI2_HUMAN Arginine and serine rich coiled-coil 1 RSRC1 alternative mRNA splicing, via spliceosome [GO:0000380] -A0A804HLK3 unreviewed A0A804HLK3_HUMAN Arginine and serine rich coiled-coil 1 RSRC1 alternative mRNA splicing, via spliceosome [GO:0000380] -A0A8Q3SIG7 unreviewed A0A8Q3SIG7_HUMAN Pre-mRNA processing factor 40 homolog A PRPF40A mRNA cis splicing, via spliceosome [GO:0045292] -A0A8V8TM61 unreviewed A0A8V8TM61_HUMAN HCG1811743, isoform CRA_d (Pre-mRNA processing factor 40 homolog A) PRPF40A hCG_1811743 mRNA cis splicing, via spliceosome [GO:0045292] -A0A8V8TM87 unreviewed A0A8V8TM87_HUMAN Pre-mRNA processing factor 40 homolog A PRPF40A mRNA cis splicing, via spliceosome [GO:0045292] -A0A8Z5ADK7 unreviewed A0A8Z5ADK7_HUMAN Pre-mRNA processing factor 40 homolog B PRPF40B mRNA cis splicing, via spliceosome [GO:0045292] -A0A994J491 unreviewed A0A994J491_HUMAN Pre-mRNA processing factor 8 PRPF8 mRNA splicing, via spliceosome [GO:0000398] -A0A994J6E8 unreviewed A0A994J6E8_HUMAN Pre-mRNA processing factor 8 PRPF8 mRNA splicing, via spliceosome [GO:0000398] -A0A994J6S8 unreviewed A0A994J6S8_HUMAN Pre-mRNA processing factor 8 PRPF8 mRNA splicing, via spliceosome [GO:0000398] -A0AA34QW04 unreviewed A0AA34QW04_HUMAN Small nuclear ribonucleoprotein U11/U12 subunit 25 SNRNP25 mRNA splicing, via spliceosome [GO:0000398] -A2RRQ7 unreviewed A2RRQ7_HUMAN SNRNP200 protein SNRNP200 spliceosome conformational change to release U4 (or U4atac) and U1 (or U11) [GO:0000388] -A4D2F6 unreviewed A4D2F6_HUMAN Similar to Splicing factor, arginine/serine-rich, 46kD LOC392896 tcag7.956 mRNA splicing, via spliceosome [GO:0000398] -A4UHR0 unreviewed A4UHR0_HUMAN C2ORF3 variant 3 C2orf3 mRNA splicing, via spliceosome [GO:0000398] -A5PLM7 unreviewed A5PLM7_HUMAN SFRS8 protein SFRS8 mRNA 5'-splice site recognition [GO:0000395] -A8K566 unreviewed A8K566_HUMAN cDNA FLJ78246, highly similar to Homo sapiens splicing factor 3a, subunit 3, 60kDa (SF3A3), mRNA mRNA splicing, via spliceosome [GO:0000398] -A8K603 unreviewed A8K603_HUMAN cDNA FLJ75870, highly similar to Homo sapiens neuro-oncological ventral antigen 1 (NOVA1), transcript variant 1, mRNA mRNA splicing, via spliceosome [GO:0000398]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381] -A8K6Q4 unreviewed A8K6Q4_HUMAN cDNA FLJ76888, highly similar to Homo sapiens RNA binding motif protein 6 (RBM6), mRNA mRNA splicing, via spliceosome [GO:0000398] -A8K6V3 unreviewed A8K6V3_HUMAN Splicing factor 3B subunit 3 mRNA splicing, via spliceosome [GO:0000398] -A8K7V1 unreviewed A8K7V1_HUMAN cDNA FLJ78053, highly similar to Homo sapiens splicing factor 3a, subunit 3, 60kDa (SF3A3), mRNA mRNA splicing, via spliceosome [GO:0000398] -A8MVI5 unreviewed A8MVI5_HUMAN ISY1 splicing factor homolog ISY1 generation of catalytic spliceosome for second transesterification step [GO:0000350] -B0AZM4 unreviewed B0AZM4_HUMAN cDNA, FLJ79464, highly similar to Homo sapiens aquarius mRNA splicing, via spliceosome [GO:0000398] -B1AHQ3 unreviewed B1AHQ3_HUMAN Tuftelin interacting protein 11 TFIP11 CTA-445C9.9-015 spliceosomal complex disassembly [GO:0000390] -B2R4N3 unreviewed B2R4N3_HUMAN Ubiquitin-like protein 5 mRNA splicing, via spliceosome [GO:0000398]; protein modification process [GO:0036211] -B2R5Y4 unreviewed B2R5Y4_HUMAN cDNA, FLJ92684, highly similar to Homo sapiens IK cytokine, down-regulator of HLA II (IK), mRNA mRNA splicing, via spliceosome [GO:0000398] -B2R7V4 unreviewed B2R7V4_HUMAN cDNA, FLJ93619, highly similar to Homo sapiens PRP4 pre-mRNA processing factor 4 homolog (yeast) (PRPF4), mRNA mRNA splicing, via spliceosome [GO:0000398] -B2RA91 unreviewed B2RA91_HUMAN cDNA, FLJ94773, highly similar to Homo sapiens splicing factor, arginine/serine-rich 2, interacting protein (SFRS2IP), mRNA spliceosomal complex assembly [GO:0000245] -B2RB72 unreviewed B2RB72_HUMAN cDNA, FLJ95344, highly similar to Homo sapiens WW domain binding protein 4 (formin binding protein 21) (WBP4), mRNA mRNA splicing, via spliceosome [GO:0000398] -B2RBU0 unreviewed B2RBU0_HUMAN Pre-mRNA-splicing factor 18 (PRP18 homolog) generation of catalytic spliceosome for second transesterification step [GO:0000350] -B2RDP2 unreviewed B2RDP2_HUMAN Pre-mRNA-splicing factor 38A mRNA splicing, via spliceosome [GO:0000398] -B3KM77 unreviewed B3KM77_HUMAN Splicing factor 3B subunit 3 mRNA splicing, via spliceosome [GO:0000398] -B3KMC8 unreviewed B3KMC8_HUMAN cDNA FLJ10695 fis, clone NT2RP3000403, highly similar to WW domain-binding protein 4 mRNA splicing, via spliceosome [GO:0000398] -B3KQH1 unreviewed B3KQH1_HUMAN Splicing factor 3B subunit 3 mRNA splicing, via spliceosome [GO:0000398] -B3KSC0 unreviewed B3KSC0_HUMAN cDNA FLJ35972 fis, clone TESTI2013264, highly similar to GC-RICH SEQUENCE DNA-BINDING FACTOR HOMOLOG mRNA splicing, via spliceosome [GO:0000398]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B3KSK6 unreviewed B3KSK6_HUMAN cDNA FLJ36517 fis, clone TRACH2002043, highly similar to RNA-binding protein 6 mRNA splicing, via spliceosome [GO:0000398] -B3KSR5 unreviewed B3KSR5_HUMAN cDNA FLJ36828 fis, clone ASTRO2009333, highly similar to Homo sapiens debranching enzyme homolog 1 (S. cerevisiae) (DBR1), mRNA mRNA splicing, via spliceosome [GO:0000398] -B3KUM5 unreviewed B3KUM5_HUMAN cDNA FLJ40245 fis, clone TESTI2023968, highly similar to GC-RICH SEQUENCE DNA-BINDING FACTOR mRNA splicing, via spliceosome [GO:0000398] -B3KWE6 unreviewed B3KWE6_HUMAN Bruno-like 6, RNA binding protein (Drosophila), isoform CRA_a (cDNA FLJ42868 fis, clone BRHIP2021615, highly similar to Homo sapiens bruno-like 6, RNA binding protein, mRNA) BRUNOL6 hCG_40461 mRNA splice site recognition [GO:0006376]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381] -B3KWY2 unreviewed B3KWY2_HUMAN cDNA FLJ44205 fis, clone THYMU3001379, highly similar to 116 kDa U5 small nuclear ribonucleoprotein component mRNA splicing, via spliceosome [GO:0000398] -B3KY12 unreviewed B3KY12_HUMAN cDNA FLJ46581 fis, clone THYMU3043200, highly similar to Splicing factor 3A subunit 3 mRNA splicing, via spliceosome [GO:0000398] -B3KY25 unreviewed B3KY25_HUMAN cDNA FLJ46670 fis, clone TRACH3008508, highly similar to GC-rich sequence DNA-binding factor homolog mRNA splicing, via spliceosome [GO:0000398]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DDB6 unreviewed B4DDB6_HUMAN Heterogeneous nuclear ribonucleoprotein A3, isoform CRA_a (cDNA FLJ52659, highly similar to Heterogeneous nuclear ribonucleoprotein A3) (cDNA, FLJ79333, highly similar to Heterogeneous nuclear ribonucleoprotein A3) HNRPA3 hCG_2005824 mRNA splicing, via spliceosome [GO:0000398] -B4DDC7 unreviewed B4DDC7_HUMAN cDNA FLJ52249, highly similar to U1 small nuclear ribonucleoprotein A mRNA splicing, via spliceosome [GO:0000398] -B4DDH9 unreviewed B4DDH9_HUMAN cDNA FLJ53820, highly similar to U4/U6.U5 tri-snRNP-associated protein 1 maturation of 5S rRNA [GO:0000481]; mRNA cis splicing, via spliceosome [GO:0045292] -B4DEH2 unreviewed B4DEH2_HUMAN cDNA FLJ53904, highly similar to Protein Red mRNA splicing, via spliceosome [GO:0000398] -B4DEK2 unreviewed B4DEK2_HUMAN cDNA FLJ59182, highly similar to Splicing factor, arginine/serine-rich 7 mRNA splicing, via spliceosome [GO:0000398] -B4DFT9 unreviewed B4DFT9_HUMAN cDNA FLJ56571, highly similar to Splicing factor, arginine/serine-rich 9 mRNA splicing, via spliceosome [GO:0000398] -B4DGZ4 unreviewed B4DGZ4_HUMAN Splicing factor 3b subunit 1 SF3B1 spliceosomal complex assembly [GO:0000245] -B4DHE3 unreviewed B4DHE3_HUMAN cDNA FLJ61258, highly similar to Pre-mRNA-splicing factor PRP17 mRNA splicing, via spliceosome [GO:0000398] -B4DHK4 unreviewed B4DHK4_HUMAN cDNA FLJ60540, moderately similar to Splicing factor, arginine/serine-rich 8 mRNA 5'-splice site recognition [GO:0000395] -B4DIB6 unreviewed B4DIB6_HUMAN cDNA FLJ51739, highly similar to Homo sapiens CUG triplet repeat, RNA binding protein 2 (CUGBP2), transcript variant 2, mRNA mRNA splice site recognition [GO:0006376]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381] -B4DIJ6 unreviewed B4DIJ6_HUMAN cDNA FLJ54033, highly similar to Spliceosome RNA helicase Bat1 mRNA export from nucleus [GO:0006406]; mRNA splicing, via spliceosome [GO:0000398] -B4DIZ8 unreviewed B4DIZ8_HUMAN cDNA FLJ54084, moderately similar to Spliceosome RNA helicase Bat1 (cDNA, FLJ79368, highly similar to Spliceosome RNA helicase Bat1) mRNA export from nucleus [GO:0006406]; mRNA splicing, via spliceosome [GO:0000398] -B4DJK2 unreviewed B4DJK2_HUMAN cDNA FLJ52308 mRNA splicing, via spliceosome [GO:0000398] -B4DK16 unreviewed B4DK16_HUMAN cDNA FLJ57882, highly similar to Pre-mRNA-processing-splicing factor 8 spliceosomal tri-snRNP complex assembly [GO:0000244] -B4DM66 unreviewed B4DM66_HUMAN cDNA FLJ50576, highly similar to Homo sapiens CUG triplet repeat, RNA binding protein 2 (CUGBP2), transcript variant 3, mRNA mRNA splice site recognition [GO:0006376]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381] -B4DMR4 unreviewed B4DMR4_HUMAN cDNA FLJ51897, highly similar to U4/U6.U5 tri-snRNP-associated protein 1 maturation of 5S rRNA [GO:0000481]; mRNA cis splicing, via spliceosome [GO:0045292] -B4DNY1 unreviewed B4DNY1_HUMAN cDNA FLJ60318, highly similar to RNA-binding protein 6 mRNA splicing, via spliceosome [GO:0000398] -B4DP35 unreviewed B4DP35_HUMAN cDNA FLJ51587, highly similar to Heterogeneous nuclear ribonucleoprotein A1 mRNA splicing, via spliceosome [GO:0000398] -B4DP43 unreviewed B4DP43_HUMAN cDNA FLJ51016, highly similar to U4/U6.U5 tri-snRNP-associated protein 1 maturation of 5S rRNA [GO:0000481]; mRNA cis splicing, via spliceosome [GO:0045292] -B4DPE5 unreviewed B4DPE5_HUMAN cDNA FLJ58206, highly similar to Tuftelin-interacting protein 11 spliceosomal complex disassembly [GO:0000390] -B4DPY2 unreviewed B4DPY2_HUMAN cDNA FLJ59286, highly similar to Pre-mRNA-processing factor 40 homolog A mRNA cis splicing, via spliceosome [GO:0045292] -B4DRS4 unreviewed B4DRS4_HUMAN cDNA FLJ60139, highly similar to Homo sapiens HIV TAT specific factor 1 (HTATSF1), mRNA mRNA splicing, via spliceosome [GO:0000398] -B4DSC7 unreviewed B4DSC7_HUMAN cDNA FLJ60849, highly similar to Homo sapiens trinucleotide repeat containing 4 (TNRC4), mRNA mRNA splice site recognition [GO:0006376]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381] -B4DSX8 unreviewed B4DSX8_HUMAN cDNA FLJ57193, highly similar to Tuftelin-interacting protein 11 spliceosomal complex disassembly [GO:0000390] -B4DW90 unreviewed B4DW90_HUMAN cDNA FLJ58737, highly similar to Splicing factor 3A subunit 3 mRNA splicing, via spliceosome [GO:0000398] -B4DYA2 unreviewed B4DYA2_HUMAN cDNA FLJ50292, highly similar to Squamous cell carcinoma antigen recognized byT-cells 3 mRNA splicing, via spliceosome [GO:0000398] -B4DZ01 unreviewed B4DZ01_HUMAN cDNA FLJ52370, highly similar to Homo sapiens CUG triplet repeat, RNA binding protein 2 (CUGBP2), transcript variant 3, mRNA mRNA splice site recognition [GO:0006376]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381] -B4DZ29 unreviewed B4DZ29_HUMAN cDNA FLJ59271, highly similar to Component of gems 4 rRNA processing [GO:0006364]; spliceosomal snRNP assembly [GO:0000387] -B4DZL1 unreviewed B4DZL1_HUMAN cDNA FLJ55385 mRNA splicing, via spliceosome [GO:0000398] -B4DZM2 unreviewed B4DZM2_HUMAN cDNA FLJ53255, highly similar to SFRS2-interacting protein spliceosomal complex assembly [GO:0000245] -B4E036 unreviewed B4E036_HUMAN cDNA FLJ59080, highly similar to Heterogeneous nuclear ribonucleoprotein A3 mRNA splicing, via spliceosome [GO:0000398] -B4E091 unreviewed B4E091_HUMAN cDNA FLJ55438, highly similar to Splicing factor 3 subunit 1 mRNA cis splicing, via spliceosome [GO:0045292]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381] -B4E0B5 unreviewed B4E0B5_HUMAN cDNA FLJ51586, moderately similar to Heterogeneous nuclear ribonucleoprotein A1 mRNA splicing, via spliceosome [GO:0000398] -B4E0P5 unreviewed B4E0P5_HUMAN cDNA FLJ56901, highly similar to U5 small nuclear ribonucleoprotein 200 kDa helicase spliceosome conformational change to release U4 (or U4atac) and U1 (or U11) [GO:0000388] -B4E150 unreviewed B4E150_HUMAN cDNA FLJ55548, highly similar to U5 small nuclear ribonucleoprotein 200 kDa helicase spliceosome conformational change to release U4 (or U4atac) and U1 (or U11) [GO:0000388] -B4E389 unreviewed B4E389_HUMAN cDNA FLJ61568, highly similar to Nuclear inhibitor of protein phosphatase 1 maintenance of RNA location [GO:0051237]; miRNA processing [GO:0035196]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of protein dephosphorylation [GO:0035308] -B4E3E6 unreviewed B4E3E6_HUMAN cDNA FLJ58832, highly similar to Heterogeneous nuclear ribonucleoprotein A3 mRNA splicing, via spliceosome [GO:0000398] -B5BTZ8 unreviewed B5BTZ8_HUMAN Small nuclear ribonucleoprotein polypeptide B'' SNRPB2 mRNA splicing, via spliceosome [GO:0000398] -B7Z770 unreviewed B7Z770_HUMAN cDNA FLJ54517, highly similar to RNA-binding protein Nova-1 mRNA splicing, via spliceosome [GO:0000398]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381] -B7Z982 unreviewed B7Z982_HUMAN Pleiotropic regulator 1 PLRG1 mRNA splicing, via spliceosome [GO:0000398] -B7Z9W2 unreviewed B7Z9W2_HUMAN cDNA, FLJ78976 mRNA splicing, via spliceosome [GO:0000398] -B7ZLC9 unreviewed B7ZLC9_HUMAN GEMIN5 protein GEMIN5 spliceosomal snRNP assembly [GO:0000387] -B8ZZ06 unreviewed B8ZZ06_HUMAN Chromosome 16 open reading frame 33 (Small nuclear ribonucleoprotein U11/U12 subunit 25) SNRNP25 C16orf33 Z69719.2-006 mRNA splicing, via spliceosome [GO:0000398] -B8ZZ09 unreviewed B8ZZ09_HUMAN LUC7 like (LUC7-like (S. cerevisiae)) LUC7L LA16c-OS12.1-012 mRNA splice site recognition [GO:0006376] -B8ZZ10 unreviewed B8ZZ10_HUMAN LUC7 like (LUC7-like (S. cerevisiae)) LUC7L LA16c-OS12.1-015 mRNA splice site recognition [GO:0006376] -B9A037 unreviewed B9A037_HUMAN Gem nuclear organelle associated protein 6 GEMIN6 spliceosomal complex assembly [GO:0000245] -C9J367 unreviewed C9J367_HUMAN Arginine and serine rich coiled-coil 1 RSRC1 alternative mRNA splicing, via spliceosome [GO:0000380] -C9J713 unreviewed C9J713_HUMAN Arginine and serine rich coiled-coil 1 RSRC1 alternative mRNA splicing, via spliceosome [GO:0000380] -C9JVB3 unreviewed C9JVB3_HUMAN Arginine and serine rich coiled-coil 1 RSRC1 alternative mRNA splicing, via spliceosome [GO:0000380] -D6RC18 unreviewed D6RC18_HUMAN ISY1 splicing factor homolog ISY1 generation of catalytic spliceosome for second transesterification step [GO:0000350] -E1CJT4 unreviewed E1CJT4_HUMAN RNA-binding protein 5 variant RBM5 variant mRNA splicing, via spliceosome [GO:0000398] -E7EN12 unreviewed E7EN12_HUMAN Gem nuclear organelle associated protein 4 GEMIN4 rRNA processing [GO:0006364]; spliceosomal snRNP assembly [GO:0000387] -E7EN72 unreviewed E7EN72_HUMAN Pre-mRNA processing factor 31 PRPF31 spliceosomal tri-snRNP complex assembly [GO:0000244] -E7ESX0 unreviewed E7ESX0_HUMAN Pre-mRNA processing factor 31 PRPF31 spliceosomal tri-snRNP complex assembly [GO:0000244] -E7EU94 unreviewed E7EU94_HUMAN Pre-mRNA processing factor 31 PRPF31 spliceosomal tri-snRNP complex assembly [GO:0000244] -E9PQI8 unreviewed E9PQI8_HUMAN Spliceosome associated factor 1, recruiter of U4/U6.U5 tri-snRNP SART1 mRNA splicing, via spliceosome [GO:0000398] -F6SQZ1 unreviewed F6SQZ1_HUMAN Tuftelin interacting protein 11 TFIP11 spliceosomal complex disassembly [GO:0000390] -F6UKU9 unreviewed F6UKU9_HUMAN Tuftelin interacting protein 11 TFIP11 spliceosomal complex disassembly [GO:0000390] -F6XM96 unreviewed F6XM96_HUMAN Tuftelin interacting protein 11 TFIP11 spliceosomal complex disassembly [GO:0000390] -F8VU11 unreviewed F8VU11_HUMAN Pre-mRNA processing factor 40 homolog B PRPF40B hCG_20201 mRNA cis splicing, via spliceosome [GO:0045292] -F8W0W6 unreviewed F8W0W6_HUMAN Sm protein F SNRPF spliceosomal snRNP assembly [GO:0000387] -G3V1V1 unreviewed G3V1V1_HUMAN Zinc finger CCHC-type and RNA binding motif 1, isoform CRA_b (Zinc finger CCHC-type and RNA binding motif containing 1) ZCRB1 hCG_1818570 mRNA splicing, via spliceosome [GO:0000398] -G5EA29 unreviewed G5EA29_HUMAN Gem nuclear organelle associated protein 2 GEMIN2 spliceosomal snRNP assembly [GO:0000387] -H0Y4U8 unreviewed H0Y4U8_HUMAN Tuftelin interacting protein 11 TFIP11 spliceosomal complex disassembly [GO:0000390] -H0Y6J6 unreviewed H0Y6J6_HUMAN RNA binding motif protein 17 RBM17 mRNA cis splicing, via spliceosome [GO:0045292] -H0YA24 unreviewed H0YA24_HUMAN Pleiotropic regulator 1 PLRG1 mRNA splicing, via spliceosome [GO:0000398] -H0YA89 unreviewed H0YA89_HUMAN ISY1 splicing factor homolog ISY1 generation of catalytic spliceosome for second transesterification step [GO:0000350] -H0YAA2 unreviewed H0YAA2_HUMAN Pleiotropic regulator 1 PLRG1 mRNA splicing, via spliceosome [GO:0000398] -H0YDP6 unreviewed H0YDP6_HUMAN Gem nuclear organelle associated protein 2 GEMIN2 spliceosomal snRNP assembly [GO:0000387] -H0YEL0 unreviewed H0YEL0_HUMAN Gem nuclear organelle associated protein 2 GEMIN2 spliceosomal complex assembly [GO:0000245]; spliceosomal snRNP assembly [GO:0000387] -H0YG38 unreviewed H0YG38_HUMAN Pre-mRNA processing factor 40 homolog A PRPF40A mRNA cis splicing, via spliceosome [GO:0045292] -H3BQ09 unreviewed H3BQ09_HUMAN Thioredoxin like 4B TXNL4B mRNA splicing, via spliceosome [GO:0000398] -H7BYE2 unreviewed H7BYE2_HUMAN Gem nuclear organelle associated protein 8 GEMIN8 spliceosomal snRNP assembly [GO:0000387] -H7BYR9 unreviewed H7BYR9_HUMAN Small nuclear ribonucleoprotein U11/U12 subunit 25 SNRNP25 mRNA splicing, via spliceosome [GO:0000398] -H7C1L2 unreviewed H7C1L2_HUMAN Splicing factor 3a subunit 1 SF3A1 mRNA cis splicing, via spliceosome [GO:0045292] -H7C2N3 unreviewed H7C2N3_HUMAN Pre-mRNA processing factor 40 homolog A PRPF40A mRNA cis splicing, via spliceosome [GO:0045292] -H7C335 unreviewed H7C335_HUMAN GC-rich sequence DNA-binding factor 2 GCFC2 mRNA splicing, via spliceosome [GO:0000398] -H7C341 unreviewed H7C341_HUMAN Splicing factor 3b subunit 1 SF3B1 spliceosomal complex assembly [GO:0000245] -H7C5Q0 unreviewed H7C5Q0_HUMAN Arginine and serine rich coiled-coil 1 RSRC1 alternative mRNA splicing, via spliceosome [GO:0000380] -H9XFA1 unreviewed H9XFA1_HUMAN ISY1-RAB43 ISY1-RAB43 generation of catalytic spliceosome for second transesterification step [GO:0000350]; mRNA 3'-splice site recognition [GO:0000389] -I3L0J9 unreviewed I3L0J9_HUMAN Pre-mRNA processing factor 8 PRPF8 mRNA splicing, via spliceosome [GO:0000398] -I3L1J7 unreviewed I3L1J7_HUMAN Gem nuclear organelle associated protein 4 GEMIN4 rRNA processing [GO:0006364]; spliceosomal snRNP assembly [GO:0000387] -I3L1T8 unreviewed I3L1T8_HUMAN Pre-mRNA processing factor 8 PRPF8 mRNA splicing, via spliceosome [GO:0000398] -I3L3Z8 unreviewed I3L3Z8_HUMAN Pre-mRNA processing factor 8 PRPF8 mRNA splicing, via spliceosome [GO:0000398] -K7EJU2 unreviewed K7EJU2_HUMAN Thioredoxin like 4A TXNL4A mRNA splicing, via spliceosome [GO:0000398] -K7EMX5 unreviewed K7EMX5_HUMAN Thioredoxin like 4A TXNL4A mRNA splicing, via spliceosome [GO:0000398] -K7EP29 unreviewed K7EP29_HUMAN YJU2 splicing factor homolog B YJU2B mRNA splicing, via spliceosome [GO:0000398] -K7EPA6 unreviewed K7EPA6_HUMAN Thioredoxin like 4A TXNL4A mRNA splicing, via spliceosome [GO:0000398] -K7ES07 unreviewed K7ES07_HUMAN Thioredoxin like 4A TXNL4A mRNA splicing, via spliceosome [GO:0000398] -M0R2S3 unreviewed M0R2S3_HUMAN YJU2 splicing factor homolog YJU2 mRNA splicing, via spliceosome [GO:0000398] -Q05BS8 unreviewed Q05BS8_HUMAN SFRS2IP protein SFRS2IP spliceosomal complex assembly [GO:0000245] -Q05C41 unreviewed Q05C41_HUMAN PRPF40A protein PRPF40A mRNA cis splicing, via spliceosome [GO:0045292] -Q05CV8 unreviewed Q05CV8_HUMAN PRPF39 protein PRPF39 mRNA 5'-splice site recognition [GO:0000395] -Q05DR1 unreviewed Q05DR1_HUMAN Zinc finger CCHC-type and RNA-binding motif-containing protein 1 (U11/U12 small nuclear ribonucleoprotein 31 kDa protein) ZCRB1 mRNA splicing, via spliceosome [GO:0000398] -Q05DU0 unreviewed Q05DU0_HUMAN RBMX2 protein RBMX2 mRNA splicing, via spliceosome [GO:0000398] -Q0VAC0 unreviewed Q0VAC0_HUMAN Heterogeneous nuclear ribonucleoprotein A1 HNRPA1 mRNA splicing, via spliceosome [GO:0000398] -Q0VGM7 unreviewed Q0VGM7_HUMAN RBMX2 protein RBMX2 mRNA splicing, via spliceosome [GO:0000398] -Q15288 unreviewed Q15288_HUMAN No distinctive protein motifs; ORF mRNA splicing, via spliceosome [GO:0000398] -Q2TA76 unreviewed Q2TA76_HUMAN CDC40 protein CDC40 mRNA splicing, via spliceosome [GO:0000398] -Q38J66 unreviewed Q38J66_HUMAN Protein phosphatase 1 regulatory subunit 8 testis splice variant PPP1R8 maintenance of RNA location [GO:0051237]; miRNA processing [GO:0035196]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of protein dephosphorylation [GO:0035308] -Q3MI39 unreviewed Q3MI39_HUMAN HNRPA1 protein HNRPA1 mRNA splicing, via spliceosome [GO:0000398] -Q53G21 unreviewed Q53G21_HUMAN Small nuclear ribonucleoprotein polypeptide A' variant mRNA splicing, via spliceosome [GO:0000398] -Q53G33 unreviewed Q53G33_HUMAN Small nuclear ribonucleoprotein polypeptide C variant mRNA 5'-splice site recognition [GO:0000395]; spliceosomal snRNP assembly [GO:0000387] -Q53G47 unreviewed Q53G47_HUMAN LUC7-like isoform b variant mRNA splice site recognition [GO:0006376] -Q53G61 unreviewed Q53G61_HUMAN Small nuclear ribonucleoprotein polypeptide A' variant mRNA splicing, via spliceosome [GO:0000398] -Q53GM6 unreviewed Q53GM6_HUMAN U5 snRNP-specific protein variant spliceosomal tri-snRNP complex assembly [GO:0000244] -Q53GP2 unreviewed Q53GP2_HUMAN Thioredoxin-like 4B variant mRNA splicing, via spliceosome [GO:0000398] -Q53H60 unreviewed Q53H60_HUMAN Pre-mRNA splicing factor 17 variant mRNA splicing, via spliceosome [GO:0000398] -Q53HM6 unreviewed Q53HM6_HUMAN Splicing factor 3a, subunit 3 variant mRNA splicing, via spliceosome [GO:0000398] -Q561W4 unreviewed Q561W4_HUMAN Protein phosphatase 1, regulatory (Inhibitor) subunit 8 PPP1R8 maintenance of RNA location [GO:0051237]; miRNA processing [GO:0035196]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of protein dephosphorylation [GO:0035308] -Q59EL4 unreviewed Q59EL4_HUMAN PRPF4 protein variant mRNA splicing, via spliceosome [GO:0000398] -Q59FM6 unreviewed Q59FM6_HUMAN BRUNO-like 6 RNA-binding protein variant mRNA splice site recognition [GO:0006376]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381] -Q59H38 unreviewed Q59H38_HUMAN SFRS8 protein variant mRNA 5'-splice site recognition [GO:0000395] -Q59H56 unreviewed Q59H56_HUMAN Pre-mRNA splicing factor 17 variant mRNA splicing, via spliceosome [GO:0000398] -Q59HE6 unreviewed Q59HE6_HUMAN RNA binding motif protein 5 variant mRNA splicing, via spliceosome [GO:0000398] -Q5JY65 unreviewed Q5JY65_HUMAN Crooked neck pre-mRNA splicing factor 1 CRNKL1 mRNA splicing, via spliceosome [GO:0000398] -Q5TAL2 unreviewed Q5TAL2_HUMAN Small nuclear ribonucleoprotein polypeptide C SNRPC spliceosomal snRNP assembly [GO:0000387] -Q5W010 unreviewed Q5W010_HUMAN RNA binding motif protein 17 RBM17 mRNA cis splicing, via spliceosome [GO:0045292] -Q5W011 unreviewed Q5W011_HUMAN RNA binding motif protein 17 RBM17 mRNA cis splicing, via spliceosome [GO:0045292] -Q5W012 unreviewed Q5W012_HUMAN RNA binding motif protein 17 RBM17 mRNA cis splicing, via spliceosome [GO:0045292] -Q5XGA1 unreviewed Q5XGA1_HUMAN C21orf66 protein C21orf66 mRNA splicing, via spliceosome [GO:0000398]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q65ZQ3 unreviewed Q65ZQ3_HUMAN FBRNP D10S102 mRNA splicing, via spliceosome [GO:0000398] -Q66K53 unreviewed Q66K53_HUMAN HNRPA3 protein HNRPA3 mRNA splicing, via spliceosome [GO:0000398] -Q69YM7 unreviewed Q69YM7_HUMAN Uncharacterized protein DKFZp313J1712 DKFZp313J1712 mRNA splicing, via spliceosome [GO:0000398] -Q6GVN4 unreviewed Q6GVN4_HUMAN Hepatocellular carcinoma-associated antigen 59 C9orf78 mRNA splicing, via spliceosome [GO:0000398] -Q6IAP9 unreviewed Q6IAP9_HUMAN PRPF4 protein PRPF4 mRNA splicing, via spliceosome [GO:0000398] -Q6IPF2 unreviewed Q6IPF2_HUMAN Heterogeneous nuclear ribonucleoprotein A1 HNRPA1 mRNA splicing, via spliceosome [GO:0000398] -Q6JH02 unreviewed Q6JH02_HUMAN Apoptosis-regulated protein 1 spliceosomal tri-snRNP complex assembly [GO:0000244] -Q6JH03 unreviewed Q6JH03_HUMAN Apoptosis-regulated protein 2 spliceosomal tri-snRNP complex assembly [GO:0000244] -Q6NVW9 unreviewed Q6NVW9_HUMAN SNRPA1 protein (Small nuclear ribonucleoprotein polypeptide A', isoform CRA_d) (cDNA FLJ75425, highly similar to Homo sapiens small nuclear ribonucleoprotein polypeptide A', mRNA) SNRPA1 hCG_1992004 mRNA splicing, via spliceosome [GO:0000398] -Q6PIV4 unreviewed Q6PIV4_HUMAN CWF19L2 protein CWF19L2 mRNA splicing, via spliceosome [GO:0000398] -Q6PIX2 unreviewed Q6PIX2_HUMAN SFPQ protein SFPQ alternative mRNA splicing, via spliceosome [GO:0000380]; regulation of DNA-templated transcription [GO:0006355] -Q6PKH5 unreviewed Q6PKH5_HUMAN RBM10 protein RBM10 mRNA splicing, via spliceosome [GO:0000398] -Q7L5W4 unreviewed Q7L5W4_HUMAN SNRNP200 protein SNRNP200 spliceosome conformational change to release U4 (or U4atac) and U1 (or U11) [GO:0000388] -Q7LE05 unreviewed Q7LE05_HUMAN F20887_2 mRNA splicing, via spliceosome [GO:0000398] -Q7Z3D7 unreviewed Q7Z3D7_HUMAN Uncharacterized protein DKFZp686E2459 DKFZp686E2459 mRNA splicing, via spliceosome [GO:0000398] -Q86YK2 unreviewed Q86YK2_HUMAN Similar to small nuclear ribonucleoprotein polypeptide B'' mRNA splicing, via spliceosome [GO:0000398] -Q8IV81 unreviewed Q8IV81_HUMAN SFRS8 protein SFRS8 mRNA 5'-splice site recognition [GO:0000395] -Q8IXJ3 unreviewed Q8IXJ3_HUMAN Small nuclear ribonucleoprotein component SNRP116 mRNA splicing, via spliceosome [GO:0000398] -Q8N2J1 unreviewed Q8N2J1_HUMAN cDNA FLJ90561 fis, clone OVARC1001132, weakly similar to GC-RICH SEQUENCE DNA-BINDING FACTOR (GCF) mRNA splicing, via spliceosome [GO:0000398]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q8N6E6 unreviewed Q8N6E6_HUMAN C21orf66 protein C21orf66 mRNA splicing, via spliceosome [GO:0000398]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q8N7S3 unreviewed Q8N7S3_HUMAN cDNA FLJ40411 fis, clone TESTI2037845 mRNA splicing, via spliceosome [GO:0000398] -Q8NB80 unreviewed Q8NB80_HUMAN cDNA FLJ34106 fis, clone FCBBF3008073, highly similar to SPLICING FACTOR, ARGININE/SERINE-RICH 7 mRNA splicing, via spliceosome [GO:0000398] -Q8NFG3 unreviewed Q8NFG3_HUMAN BX1 mRNA splicing, via spliceosome [GO:0000398] -Q8WUM5 unreviewed Q8WUM5_HUMAN Gem (Nuclear organelle) associated protein 4 GEMIN4 rRNA processing [GO:0006364]; spliceosomal snRNP assembly [GO:0000387] -Q95HA6 unreviewed Q95HA6_HUMAN IK cytokine, down-regulator of HLA II IK mRNA splicing, via spliceosome [GO:0000398] -Q9BSM5 unreviewed Q9BSM5_HUMAN RRM domain-containing protein mRNA splicing, via spliceosome [GO:0000398] -Q9BSV4 unreviewed Q9BSV4_HUMAN SFPQ protein SFPQ alternative mRNA splicing, via spliceosome [GO:0000380]; regulation of DNA-templated transcription [GO:0006355] -Q9BVX3 unreviewed Q9BVX3_HUMAN C2orf3 protein mRNA splicing, via spliceosome [GO:0000398] -Q9H4P6 unreviewed Q9H4P6_HUMAN Clone TCCCIA00142 mRNA sequence mRNA splicing, via spliceosome [GO:0000398] -Q9HBB9 unreviewed Q9HBB9_HUMAN HC56 rRNA processing [GO:0006364]; spliceosomal snRNP assembly [GO:0000387] -Q9HC39 unreviewed Q9HC39_HUMAN Gem-associated protein 4 rRNA processing [GO:0006364]; spliceosomal snRNP assembly [GO:0000387] -Q9NTB4 unreviewed Q9NTB4_HUMAN Uncharacterized protein DKFZp434M052 DKFZp434M052 spliceosomal complex assembly [GO:0000245] -Q9NWR1 unreviewed Q9NWR1_HUMAN cDNA FLJ20666 fis, clone KAIA608 mRNA 5'-splice site recognition [GO:0000395] -Q9NZD7 unreviewed Q9NZD7_HUMAN BM-020 mRNA splicing, via spliceosome [GO:0000398]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9P0Q6 unreviewed Q9P0Q6_HUMAN HSPC220 mRNA splicing, via spliceosome [GO:0000398] -Q9P172 unreviewed Q9P172_HUMAN PRO2281 spliceosome conformational change to release U4 (or U4atac) and U1 (or U11) [GO:0000388] -Q9P1H0 unreviewed Q9P1H0_HUMAN PRO1478 mRNA cis splicing, via spliceosome [GO:0045292]; spliceosomal snRNP assembly [GO:0000387] -Q9UK43 unreviewed Q9UK43_HUMAN Chondrosarcoma-associated protein 2 CSA2 mRNA splicing, via spliceosome [GO:0000398] -Q9UNV9 unreviewed Q9UNV9_HUMAN Putative RNA helicase spliceosome conformational change to release U4 (or U4atac) and U1 (or U11) [GO:0000388] -Q9Y3Z5 unreviewed Q9Y3Z5_HUMAN Uncharacterized protein DKFZp564B112 DKFZp564B112 mRNA splicing, via spliceosome [GO:0000398] -Q9Y6G0 unreviewed Q9Y6G0_HUMAN RNA-binding protein mRNA splicing, via spliceosome [GO:0000398] -R4GMX9 unreviewed R4GMX9_HUMAN Zinc finger matrin-type 2 ZMAT2 mRNA splicing, via spliceosome [GO:0000398] -R4GNG8 unreviewed R4GNG8_HUMAN Zinc finger matrin-type 2 ZMAT2 mRNA splicing, via spliceosome [GO:0000398] diff --git a/hiv-benchmarking/hiv_raw_data/uniprotkb_go_0045944_AND_taxonomy_id_96_2024_07_29.tsv b/hiv-benchmarking/hiv_raw_data/uniprotkb_go_0045944_AND_taxonomy_id_96_2024_07_29.tsv deleted file mode 100644 index 75fa05b..0000000 --- a/hiv-benchmarking/hiv_raw_data/uniprotkb_go_0045944_AND_taxonomy_id_96_2024_07_29.tsv +++ /dev/null @@ -1,2198 +0,0 @@ -Entry Reviewed Entry Name Protein names Gene Names Gene Ontology (biological process) -A0A024R274 unreviewed A0A024R274_HUMAN Mothers against decapentaplegic homolog (MAD homolog) (Mothers against DPP homolog) (SMAD family member) SMAD4 adrenal gland development [GO:0030325]; atrioventricular canal development [GO:0036302]; atrioventricular valve formation [GO:0003190]; axon guidance [GO:0007411]; BMP signaling pathway [GO:0030509]; brainstem development [GO:0003360]; branching involved in ureteric bud morphogenesis [GO:0001658]; cardiac muscle hypertrophy in response to stress [GO:0014898]; cell population proliferation [GO:0008283]; cellular response to glucose stimulus [GO:0071333]; developmental growth [GO:0048589]; embryonic digit morphogenesis [GO:0042733]; endocardial cell differentiation [GO:0060956]; endothelial cell activation [GO:0042118]; epithelial to mesenchymal transition involved in endocardial cushion formation [GO:0003198]; ERK1 and ERK2 cascade [GO:0070371]; female gonad morphogenesis [GO:0061040]; formation of anatomical boundary [GO:0048859]; gastrulation with mouth forming second [GO:0001702]; in utero embryonic development [GO:0001701]; interleukin-6-mediated signaling pathway [GO:0070102]; intracellular iron ion homeostasis [GO:0006879]; left ventricular cardiac muscle tissue morphogenesis [GO:0003220]; mesendoderm development [GO:0048382]; metanephric mesenchyme morphogenesis [GO:0072133]; negative regulation of cardiac muscle hypertrophy [GO:0010614]; negative regulation of cardiac myofibril assembly [GO:1905305]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of ERK1 and ERK2 cascade [GO:0070373]; negative regulation of protein catabolic process [GO:0042177]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nephrogenic mesenchyme morphogenesis [GO:0072134]; neural crest cell differentiation [GO:0014033]; neuron fate commitment [GO:0048663]; osteoblast differentiation [GO:0001649]; outflow tract septum morphogenesis [GO:0003148]; ovarian follicle development [GO:0001541]; positive regulation of cardiac muscle cell apoptotic process [GO:0010666]; positive regulation of cell proliferation involved in heart valve morphogenesis [GO:0003251]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of follicle-stimulating hormone secretion [GO:0046881]; positive regulation of luteinizing hormone secretion [GO:0033686]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of SMAD protein signal transduction [GO:0060391]; regulation of hair follicle development [GO:0051797]; sebaceous gland development [GO:0048733]; secondary palate development [GO:0062009]; seminiferous tubule development [GO:0072520]; single fertilization [GO:0007338]; SMAD protein signal transduction [GO:0060395]; somite rostral/caudal axis specification [GO:0032525]; spermatogenesis [GO:0007283]; transcription by RNA polymerase II [GO:0006366]; transforming growth factor beta receptor signaling pathway [GO:0007179]; uterus development [GO:0060065]; ventricular septum morphogenesis [GO:0060412] -A0A024R5Z7 unreviewed A0A024R5Z7_HUMAN Annexin ANXA2 hCG_2004404 angiogenesis [GO:0001525]; cell-matrix adhesion [GO:0007160]; collagen fibril organization [GO:0030199]; epithelial cell apoptotic process [GO:1904019]; fibrinolysis [GO:0042730]; lung development [GO:0030324]; mRNA transcription by RNA polymerase II [GO:0042789]; negative regulation of low-density lipoprotein particle receptor catabolic process [GO:0032804]; positive regulation of low-density lipoprotein particle clearance [GO:1905581]; positive regulation of receptor recycling [GO:0001921]; positive regulation of receptor-mediated endocytosis involved in cholesterol transport [GO:1905602]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of neurogenesis [GO:0050767]; response to activity [GO:0014823] -A0A0A0MQU7 unreviewed A0A0A0MQU7_HUMAN HNF1 homeobox A HNF1A apoptotic nuclear changes [GO:0030262]; bile acid and bile salt transport [GO:0015721]; bile acid biosynthetic process [GO:0006699]; blastocyst development [GO:0001824]; bone resorption [GO:0045453]; cellular response to glucose stimulus [GO:0071333]; cellular response to L-leucine [GO:0071233]; cellular response to rapamycin [GO:0072752]; cholesterol metabolic process [GO:0008203]; chromatin remodeling [GO:0006338]; embryonic limb morphogenesis [GO:0030326]; fatty acid biosynthetic process [GO:0006633]; fatty acid transport [GO:0015908]; glucose import [GO:0046323]; heme biosynthetic process [GO:0006783]; insulin secretion [GO:0030073]; liver development [GO:0001889]; negative regulation of apoptotic process [GO:0043066]; negative regulation of miRNA processing [GO:1903799]; negative regulation of peptidyl-threonine phosphorylation [GO:0010801]; negative regulation of transcription by RNA polymerase II [GO:0000122]; pancreas development [GO:0031016]; paraxial mesoderm formation [GO:0048341]; placenta development [GO:0001890]; positive regulation of ATP biosynthetic process [GO:2001171]; positive regulation of insulin secretion [GO:0032024]; positive regulation of mitochondrial membrane potential [GO:0010918]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of protein phosphorylation [GO:0001934]; regulation of NADP metabolic process [GO:1902031]; regulation of Wnt signaling pathway [GO:0030111]; renal glucose absorption [GO:0035623]; reproductive structure development [GO:0048608]; response to oxidative stress [GO:0006979]; reverse cholesterol transport [GO:0043691]; transcription by RNA polymerase II [GO:0006366] -A0A0S2Z310 unreviewed A0A0S2Z310_HUMAN Serine/threonine-protein kinase receptor (EC 2.7.11.30) ACVRL1 angiogenesis [GO:0001525]; blood vessel remodeling [GO:0001974]; BMP signaling pathway [GO:0030509]; dorsal aorta morphogenesis [GO:0035912]; endocardial cushion morphogenesis [GO:0003203]; in utero embryonic development [GO:0001701]; lymphangiogenesis [GO:0001946]; lymphatic endothelial cell differentiation [GO:0060836]; negative regulation of endothelial cell differentiation [GO:0045602]; negative regulation of endothelial cell proliferation [GO:0001937]; negative regulation of gene expression [GO:0010629]; positive regulation of angiogenesis [GO:0045766]; positive regulation of BMP signaling pathway [GO:0030513]; positive regulation of endothelial cell differentiation [GO:0045603]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to hypoxia [GO:0001666]; retina vasculature development in camera-type eye [GO:0061298]; transforming growth factor beta receptor signaling pathway [GO:0007179]; venous blood vessel development [GO:0060841] -A0A0S2Z383 unreviewed A0A0S2Z383_HUMAN Homeobox protein Nkx-2.5 (Homeobox protein NK-2 homolog E) NKX2-5 adult heart development [GO:0007512]; apoptotic process involved in heart morphogenesis [GO:0003278]; atrial cardiac muscle tissue development [GO:0003228]; atrioventricular node cell development [GO:0060928]; atrioventricular node cell fate commitment [GO:0060929]; bundle of His development [GO:0003166]; cardiac muscle cell proliferation [GO:0060038]; cardiac muscle contraction [GO:0060048]; cardiac septum morphogenesis [GO:0060411]; cardiac ventricle formation [GO:0003211]; embryonic heart tube left/right pattern formation [GO:0060971]; epithelial cell apoptotic process [GO:1904019]; epithelial cell differentiation [GO:0030855]; epithelial cell proliferation [GO:0050673]; heart looping [GO:0001947]; heart trabecula formation [GO:0060347]; hemopoiesis [GO:0030097]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cardiac muscle cell apoptotic process [GO:0010667]; negative regulation of epithelial cell apoptotic process [GO:1904036]; negative regulation of transcription by RNA polymerase II [GO:0000122]; outflow tract morphogenesis [GO:0003151]; pharyngeal system development [GO:0060037]; positive regulation of cardioblast differentiation [GO:0051891]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of gene expression [GO:0010628]; positive regulation of heart contraction [GO:0045823]; positive regulation of sodium ion transport [GO:0010765]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; proepicardium development [GO:0003342]; pulmonary myocardium development [GO:0003350]; Purkinje myocyte differentiation [GO:0003168]; regulation of cardiac conduction [GO:1903779]; regulation of cardiac muscle cell proliferation [GO:0060043]; regulation of cardiac muscle contraction [GO:0055117]; spleen development [GO:0048536]; thyroid gland development [GO:0030878]; transcription by RNA polymerase II [GO:0006366]; vasculogenesis [GO:0001570]; ventricular cardiac myofibril assembly [GO:0055005]; ventricular trabecula myocardium morphogenesis [GO:0003222] -A0A0S2Z3C7 unreviewed A0A0S2Z3C7_HUMAN Tumor necrosis factor receptor superfamily member 5 (B-cell surface antigen CD40) (CD40L receptor) CD40 B cell mediated immunity [GO:0019724]; B cell proliferation [GO:0042100]; CD40 signaling pathway [GO:0023035]; cellular response to erythropoietin [GO:0036018]; cellular response to interleukin-1 [GO:0071347]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to tumor necrosis factor [GO:0071356]; defense response to protozoan [GO:0042832]; defense response to virus [GO:0051607]; immune response-regulating cell surface receptor signaling pathway [GO:0002768]; intracellular calcium ion homeostasis [GO:0006874]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; positive regulation of angiogenesis [GO:0045766]; positive regulation of B cell proliferation [GO:0030890]; positive regulation of blood vessel endothelial cell migration [GO:0043536]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of endothelial cell apoptotic process [GO:2000353]; positive regulation of interleukin-12 production [GO:0032735]; positive regulation of isotype switching to IgG isotypes [GO:0048304]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; response to cobalamin [GO:0033590]; response to peptide [GO:1901652]; response to type II interferon [GO:0034341]; TRIF-dependent toll-like receptor signaling pathway [GO:0035666] -A0A0S2Z4C6 unreviewed A0A0S2Z4C6_HUMAN Serine/threonine-protein phosphatase (EC 3.1.3.16) PPP3CA calcineurin-NFAT signaling cascade [GO:0033173]; calcium ion transport [GO:0006816]; cardiac muscle hypertrophy in response to stress [GO:0014898]; cellular response to glucose stimulus [GO:0071333]; dendrite morphogenesis [GO:0048813]; dephosphorylation [GO:0016311]; excitatory postsynaptic potential [GO:0060079]; G1/S transition of mitotic cell cycle [GO:0000082]; keratinocyte differentiation [GO:0030216]; multicellular organismal response to stress [GO:0033555]; negative regulation of dendrite morphogenesis [GO:0050774]; negative regulation of gene expression [GO:0010629]; negative regulation of insulin secretion [GO:0046676]; positive regulation of activated T cell proliferation [GO:0042104]; positive regulation of cardiac muscle hypertrophy in response to stress [GO:1903244]; positive regulation of connective tissue replacement [GO:1905205]; positive regulation of endocytosis [GO:0045807]; positive regulation of gene expression [GO:0010628]; positive regulation of glomerulus development [GO:0090193]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of osteoclast differentiation [GO:0045672]; positive regulation of saliva secretion [GO:0046878]; positive regulation of transcription by RNA polymerase II [GO:0045944]; postsynaptic modulation of chemical synaptic transmission [GO:0099170]; protein import into nucleus [GO:0006606]; regulation of cell proliferation involved in kidney morphogenesis [GO:0061006]; renal filtration [GO:0097205]; response to amphetamine [GO:0001975]; skeletal muscle fiber development [GO:0048741]; transition between fast and slow fiber [GO:0014883] -A0A0S2Z4N5 unreviewed A0A0S2Z4N5_HUMAN Tumor protein 63 (p63) TP63 TP73L hCG_16028 cellular senescence [GO:0090398]; chromatin remodeling [GO:0006338]; cloacal septation [GO:0060197]; cranial skeletal system development [GO:1904888]; determination of adult lifespan [GO:0008340]; ectoderm and mesoderm interaction [GO:0007499]; embryonic forelimb morphogenesis [GO:0035115]; embryonic hindlimb morphogenesis [GO:0035116]; epidermal cell division [GO:0010481]; epithelial cell development [GO:0002064]; establishment of planar polarity [GO:0001736]; establishment of skin barrier [GO:0061436]; female genitalia morphogenesis [GO:0048807]; hair follicle morphogenesis [GO:0031069]; intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:0042771]; keratinocyte differentiation [GO:0030216]; keratinocyte proliferation [GO:0043616]; negative regulation of intracellular estrogen receptor signaling pathway [GO:0033147]; negative regulation of keratinocyte differentiation [GO:0045617]; negative regulation of mesoderm development [GO:2000381]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron apoptotic process [GO:0051402]; Notch signaling pathway [GO:0007219]; odontogenesis of dentin-containing tooth [GO:0042475]; polarized epithelial cell differentiation [GO:0030859]; positive regulation of apoptotic signaling pathway [GO:2001235]; positive regulation of keratinocyte proliferation [GO:0010838]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of somatic stem cell population maintenance [GO:1904674]; positive regulation of stem cell proliferation [GO:2000648]; post-anal tail morphogenesis [GO:0036342]; prostatic bud formation [GO:0060513]; protein tetramerization [GO:0051262]; proximal/distal pattern formation [GO:0009954]; regulation of epidermal cell division [GO:0010482]; skeletal system development [GO:0001501]; skin morphogenesis [GO:0043589]; spermatogenesis [GO:0007283]; squamous basal epithelial stem cell differentiation involved in prostate gland acinus development [GO:0060529]; stem cell proliferation [GO:0072089]; sympathetic nervous system development [GO:0048485]; transcription by RNA polymerase II [GO:0006366] -A0A0S2Z5J4 unreviewed A0A0S2Z5J4_HUMAN Adaptor-related protein complex 3 beta 1 subunit isoform 1 AP3B1 anterograde synaptic vesicle transport [GO:0048490]; antigen processing and presentation, exogenous lipid antigen via MHC class Ib [GO:0048007]; blood coagulation [GO:0007596]; cell morphogenesis [GO:0000902]; establishment of protein localization to mitochondrial membrane involved in mitochondrial fission [GO:0090152]; granulocyte differentiation [GO:0030851]; hematopoietic progenitor cell differentiation [GO:0002244]; homeostasis of number of cells [GO:0048872]; inflammatory response [GO:0006954]; intracellular zinc ion homeostasis [GO:0006882]; lung morphogenesis [GO:0060425]; lysosome organization [GO:0007040]; melanosome organization [GO:0032438]; mRNA transcription by RNA polymerase II [GO:0042789]; platelet dense granule organization [GO:0060155]; positive regulation of NK T cell differentiation [GO:0051138]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to cell surface [GO:0034394]; protein modification process [GO:0036211]; protein targeting to lysosome [GO:0006622]; respiratory system process [GO:0003016]; single fertilization [GO:0007338]; skin epidermis development [GO:0098773]; spermatogenesis [GO:0007283]; toll-like receptor signaling pathway [GO:0002224]; vesicle-mediated transport [GO:0016192] -A0A140VJC8 unreviewed A0A140VJC8_HUMAN Amyloid-beta A4 protein adult locomotory behavior [GO:0008344]; axo-dendritic transport [GO:0008088]; axon midline choice point recognition [GO:0016199]; cholesterol metabolic process [GO:0008203]; collateral sprouting in absence of injury [GO:0048669]; cytosolic mRNA polyadenylation [GO:0180011]; dendrite development [GO:0016358]; endocytosis [GO:0006897]; extracellular matrix organization [GO:0030198]; forebrain development [GO:0030900]; G2/M transition of mitotic cell cycle [GO:0000086]; intracellular copper ion homeostasis [GO:0006878]; ionotropic glutamate receptor signaling pathway [GO:0035235]; mating behavior [GO:0007617]; negative regulation of neuron differentiation [GO:0045665]; neuromuscular process controlling balance [GO:0050885]; neuron apoptotic process [GO:0051402]; neuron cellular homeostasis [GO:0070050]; neuron remodeling [GO:0016322]; Notch signaling pathway [GO:0007219]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of multicellular organism growth [GO:0040014]; regulation of synapse structure or activity [GO:0050803]; regulation of translation [GO:0006417]; response to oxidative stress [GO:0006979]; smooth endoplasmic reticulum calcium ion homeostasis [GO:0051563]; suckling behavior [GO:0001967]; synaptic assembly at neuromuscular junction [GO:0051124]; visual learning [GO:0008542] -A0A140VJU3 unreviewed A0A140VJU3_HUMAN Testicular tissue protein Li 170 BMP signaling pathway [GO:0030509]; branching involved in blood vessel morphogenesis [GO:0001569]; canonical Wnt signaling pathway [GO:0060070]; cardiac muscle cell apoptotic process [GO:0010659]; cellular response to extracellular stimulus [GO:0031668]; cellular response to X-ray [GO:0071481]; chondrocyte development [GO:0002063]; collagen fibril organization [GO:0030199]; convergent extension involved in axis elongation [GO:0060028]; digestive tract morphogenesis [GO:0048546]; embryonic digit morphogenesis [GO:0042733]; hematopoietic stem cell proliferation [GO:0071425]; male gonad development [GO:0008584]; mesodermal cell fate specification [GO:0007501]; negative regulation of BMP signaling pathway [GO:0030514]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cardiac muscle cell apoptotic process [GO:0010667]; negative regulation of cell migration [GO:0030336]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of dermatome development [GO:0061185]; negative regulation of extrinsic apoptotic signaling pathway via death domain receptors [GO:1902042]; negative regulation of gene expression [GO:0010629]; negative regulation of mesodermal cell fate specification [GO:0042662]; negative regulation of peptidyl-tyrosine phosphorylation [GO:0050732]; negative regulation of planar cell polarity pathway involved in axis elongation [GO:2000041]; planar cell polarity pathway involved in axis elongation [GO:0003402]; planar cell polarity pathway involved in neural tube closure [GO:0090179]; positive regulation of angiogenesis [GO:0045766]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of cell growth [GO:0030307]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-anal tail morphogenesis [GO:0036342]; regulation of midbrain dopaminergic neuron differentiation [GO:1904956]; regulation of neuron projection development [GO:0010975]; regulation of stem cell division [GO:2000035]; response to nutrient [GO:0007584]; response to xenobiotic stimulus [GO:0009410]; sclerotome development [GO:0061056]; stem cell fate specification [GO:0048866]; Wnt signaling pathway involved in somitogenesis [GO:0090244] -A0A140VKC4 unreviewed A0A140VKC4_HUMAN Methyl-CpG-binding protein 2 (MeCp-2 protein) (MeCp2) MECP2 hCG_37678 adult locomotory behavior [GO:0008344]; behavioral fear response [GO:0001662]; biogenic amine metabolic process [GO:0006576]; cardiolipin metabolic process [GO:0032048]; catecholamine secretion [GO:0050432]; cellular response to isoquinoline alkaloid [GO:0071317]; cellular response to potassium ion [GO:0035865]; cerebellum development [GO:0021549]; cerebral cortex development [GO:0021987]; dendrite development [GO:0016358]; excitatory postsynaptic potential [GO:0060079]; gene expression [GO:0010467]; genomic imprinting [GO:0071514]; glial cell proliferation [GO:0014009]; glucocorticoid metabolic process [GO:0008211]; glutamine metabolic process [GO:0006541]; heterochromatin formation [GO:0031507]; hippocampus development [GO:0021766]; inositol metabolic process [GO:0006020]; long-term memory [GO:0007616]; long-term synaptic potentiation [GO:0060291]; lung alveolus development [GO:0048286]; negative regulation of astrocyte differentiation [GO:0048712]; negative regulation of dendrite extension [GO:1903860]; negative regulation of dendritic spine development [GO:0061000]; negative regulation of locomotion involved in locomotory behavior [GO:0090327]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of primary miRNA processing [GO:2000635]; negative regulation of respiratory gaseous exchange [GO:1903941]; negative regulation of smooth muscle cell differentiation [GO:0051151]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system process involved in regulation of systemic arterial blood pressure [GO:0001976]; neuron maturation [GO:0042551]; Notch signaling pathway [GO:0007219]; olfactory bulb development [GO:0021772]; oligodendrocyte development [GO:0014003]; phosphatidylcholine metabolic process [GO:0046470]; positive regulation of anterograde dense core granule transport [GO:1901953]; positive regulation of branching morphogenesis of a nerve [GO:1905492]; positive regulation of dendrite extension [GO:1903861]; positive regulation of dendritic spine development [GO:0060999]; positive regulation of glial cell proliferation [GO:0060252]; positive regulation of retrograde dense core granule transport [GO:1901956]; positive regulation of synaptic plasticity [GO:0031915]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-embryonic development [GO:0009791]; principal sensory nucleus of trigeminal nerve development [GO:0021740]; proprioception [GO:0019230]; protein localization [GO:0008104]; regulation of action potential firing threshold [GO:0099611]; regulation of respiratory gaseous exchange by nervous system process [GO:0002087]; regulation of synapse organization [GO:0050807]; respiratory gaseous exchange by respiratory system [GO:0007585]; response to cocaine [GO:0042220]; response to estradiol [GO:0032355]; response to hypoxia [GO:0001666]; response to ionizing radiation [GO:0010212]; response to lead ion [GO:0010288]; response to other organism [GO:0051707]; sensory perception of pain [GO:0019233]; social behavior [GO:0035176]; spinal cord development [GO:0021510]; startle response [GO:0001964]; striatum development [GO:0021756]; synapse assembly [GO:0007416]; thalamus development [GO:0021794]; trans-synaptic signaling by BDNF [GO:0099191]; ventricular cardiac muscle tissue development [GO:0003229]; ventricular system development [GO:0021591]; visual learning [GO:0008542] -A0A2X0SFG1 unreviewed A0A2X0SFG1_HUMAN Phosphatidylinositol 3-kinase regulatory subunit alpha (Phosphatidylinositol 3-kinase 85 kDa regulatory subunit alpha) PIK3R1 B cell differentiation [GO:0030183]; cellular response to UV [GO:0034644]; extrinsic apoptotic signaling pathway via death domain receptors [GO:0008625]; insulin receptor signaling pathway [GO:0008286]; insulin-like growth factor receptor signaling pathway [GO:0048009]; intracellular glucose homeostasis [GO:0001678]; intrinsic apoptotic signaling pathway in response to DNA damage [GO:0008630]; myeloid leukocyte migration [GO:0097529]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cell-matrix adhesion [GO:0001953]; negative regulation of osteoclast differentiation [GO:0045671]; negative regulation of stress fiber assembly [GO:0051497]; osteoclast differentiation [GO:0030316]; phosphatidylinositol phosphate biosynthetic process [GO:0046854]; positive regulation of filopodium assembly [GO:0051491]; positive regulation of focal adhesion disassembly [GO:0120183]; positive regulation of lamellipodium assembly [GO:0010592]; positive regulation of leukocyte migration [GO:0002687]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; protein import into nucleus [GO:0006606]; regulation of protein localization to plasma membrane [GO:1903076]; response to endoplasmic reticulum stress [GO:0034976]; transcription by RNA polymerase II [GO:0006366] -A0A384P5C6 unreviewed A0A384P5C6_HUMAN Delta-like protein astrocyte development [GO:0014002]; cerebellar molecular layer formation [GO:0021688]; cerebellar Purkinje cell layer structural organization [GO:0021693]; compartment pattern specification [GO:0007386]; endothelial tip cell fate specification [GO:0097102]; energy homeostasis [GO:0097009]; heart looping [GO:0001947]; inhibition of neuroepithelial cell differentiation [GO:0002085]; inner ear auditory receptor cell differentiation [GO:0042491]; lateral inhibition [GO:0046331]; left/right axis specification [GO:0070986]; loop of Henle development [GO:0072070]; marginal zone B cell differentiation [GO:0002315]; myeloid cell differentiation [GO:0030099]; negative regulation of cardiac muscle cell differentiation [GO:2000726]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of glial cell apoptotic process [GO:0034351]; negative regulation of hemocyte differentiation [GO:0045611]; negative regulation of inner ear auditory receptor cell differentiation [GO:0045608]; negative regulation of myeloid cell differentiation [GO:0045638]; negative regulation of myoblast differentiation [GO:0045662]; negative regulation of Notch signaling pathway [GO:0045746]; neuroepithelial cell differentiation [GO:0060563]; neuron fate specification [GO:0048665]; neuronal stem cell population maintenance [GO:0097150]; Notch signaling pathway involved in arterial endothelial cell fate commitment [GO:0060853]; organ growth [GO:0035265]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of endocytosis [GO:0045807]; positive regulation of gene expression [GO:0010628]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of skeletal muscle tissue growth [GO:0048633]; positive regulation of sprouting angiogenesis [GO:1903672]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proximal tubule development [GO:0072014]; proximal/distal pattern formation [GO:0009954]; regulation of blood pressure [GO:0008217]; regulation of cell adhesion [GO:0030155]; regulation of cell division [GO:0051302]; regulation of neurogenesis [GO:0050767]; regulation of somitogenesis [GO:0014807]; regulation of vascular endothelial growth factor receptor signaling pathway [GO:0030947]; regulation of vascular endothelial growth factor signaling pathway [GO:1900746]; retina morphogenesis in camera-type eye [GO:0060042]; skeletal muscle tissue growth [GO:0048630]; skin epidermis development [GO:0098773]; somite specification [GO:0001757]; spinal cord development [GO:0021510]; type B pancreatic cell development [GO:0003323] -A0A499FJK2 unreviewed A0A499FJK2_HUMAN Transforming growth factor beta TGFB1 adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains [GO:0002460]; aortic valve morphogenesis [GO:0003180]; branch elongation involved in mammary gland duct branching [GO:0060751]; bronchiole development [GO:0060435]; canonical Wnt signaling pathway [GO:0060070]; cell morphogenesis [GO:0000902]; cellular response to dexamethasone stimulus [GO:0071549]; cellular response to glucose stimulus [GO:0071333]; cellular response to insulin-like growth factor stimulus [GO:1990314]; cellular response to ionizing radiation [GO:0071479]; cellular response to mechanical stimulus [GO:0071260]; cellular response to virus [GO:0098586]; columnar/cuboidal epithelial cell maturation [GO:0002069]; connective tissue development [GO:0061448]; defense response to fungus [GO:0050832]; digestive tract development [GO:0048565]; embryonic liver development [GO:1990402]; endoderm development [GO:0007492]; epithelial cell proliferation [GO:0050673]; epithelial to mesenchymal transition [GO:0001837]; extracellular matrix assembly [GO:0085029]; face morphogenesis [GO:0060325]; female pregnancy [GO:0007565]; frontal suture morphogenesis [GO:0060364]; gene expression [GO:0010467]; germ cell migration [GO:0008354]; inflammatory response [GO:0006954]; inner ear development [GO:0048839]; intracellular calcium ion homeostasis [GO:0006874]; Langerhans cell differentiation [GO:0061520]; lens fiber cell differentiation [GO:0070306]; liver regeneration [GO:0097421]; lung alveolus development [GO:0048286]; lymph node development [GO:0048535]; mammary gland branching involved in thelarche [GO:0060744]; muscle cell cellular homeostasis [GO:0046716]; myelination [GO:0042552]; negative regulation of biomineral tissue development [GO:0070168]; negative regulation of cell growth [GO:0030308]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of interleukin-17 production [GO:0032700]; negative regulation of neuroblast proliferation [GO:0007406]; negative regulation of ossification [GO:0030279]; negative regulation of phagocytosis [GO:0050765]; negative regulation of release of sequestered calcium ion into cytosol [GO:0051280]; negative regulation of T cell proliferation [GO:0042130]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural tube closure [GO:0001843]; neuron apoptotic process [GO:0051402]; Notch signaling pathway [GO:0007219]; odontoblast differentiation [GO:0071895]; odontogenesis of dentin-containing tooth [GO:0042475]; oligodendrocyte development [GO:0014003]; osteoclast differentiation [GO:0030316]; phospholipid homeostasis [GO:0055091]; positive regulation of apoptotic process [GO:0043065]; positive regulation of branching involved in ureteric bud morphogenesis [GO:0090190]; positive regulation of cell division [GO:0051781]; positive regulation of collagen biosynthetic process [GO:0032967]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of exit from mitosis [GO:0031536]; positive regulation of extracellular matrix assembly [GO:1901203]; positive regulation of fibroblast migration [GO:0010763]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of interleukin-17 production [GO:0032740]; positive regulation of microglia differentiation [GO:0014008]; positive regulation of mononuclear cell migration [GO:0071677]; positive regulation of odontogenesis [GO:0042482]; positive regulation of protein localization to nucleus [GO:1900182]; positive regulation of regulatory T cell differentiation [GO:0045591]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of smooth muscle cell differentiation [GO:0051152]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of branching involved in mammary gland duct morphogenesis [GO:0060762]; regulation of cartilage development [GO:0061035]; regulation of enamel mineralization [GO:0070173]; regulation of interleukin-23 production [GO:0032667]; regulation of protein import into nucleus [GO:0042306]; regulation of sodium ion transport [GO:0002028]; regulation of striated muscle tissue development [GO:0016202]; regulatory T cell differentiation [GO:0045066]; response to estradiol [GO:0032355]; response to hypoxia [GO:0001666]; response to immobilization stress [GO:0035902]; response to laminar fluid shear stress [GO:0034616]; response to salt [GO:1902074]; response to vitamin D [GO:0033280]; response to xenobiotic stimulus [GO:0009410]; retina vasculature development in camera-type eye [GO:0061298]; stem cell proliferation [GO:0072089]; surfactant homeostasis [GO:0043129]; T cell homeostasis [GO:0043029]; T cell proliferation [GO:0042098]; tolerance induction to self antigen [GO:0002513]; transforming growth factor beta receptor signaling pathway [GO:0007179]; ureteric bud development [GO:0001657]; vasculogenesis [GO:0001570]; ventricular cardiac muscle tissue morphogenesis [GO:0055010] -A0A7I2PJA1 unreviewed A0A7I2PJA1_HUMAN GLI family zinc finger 2 GLI2 anterior/posterior pattern specification [GO:0009952]; axon guidance [GO:0007411]; branching morphogenesis of an epithelial tube [GO:0048754]; cellular response to organic cyclic compound [GO:0071407]; cerebellar cortex morphogenesis [GO:0021696]; chondrocyte differentiation [GO:0002062]; cochlea morphogenesis [GO:0090103]; developmental growth [GO:0048589]; embryonic digestive tract development [GO:0048566]; embryonic digit morphogenesis [GO:0042733]; epithelial cell proliferation [GO:0050673]; floor plate formation [GO:0021508]; gene expression [GO:0010467]; heart development [GO:0007507]; hindgut morphogenesis [GO:0007442]; in utero embryonic development [GO:0001701]; kidney development [GO:0001822]; lung development [GO:0030324]; mammary gland duct morphogenesis [GO:0060603]; negative regulation of apoptotic process [GO:0043066]; negative regulation of chondrocyte differentiation [GO:0032331]; negative regulation of smoothened signaling pathway [GO:0045879]; negative regulation of transcription by RNA polymerase II [GO:0000122]; notochord regression [GO:0060032]; odontogenesis of dentin-containing tooth [GO:0042475]; osteoblast development [GO:0002076]; pituitary gland development [GO:0021983]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of stem cell proliferation [GO:2000648]; prostatic bud formation [GO:0060513]; proximal/distal pattern formation [GO:0009954]; smoothened signaling pathway involved in dorsal/ventral neural tube patterning [GO:0060831]; smoothened signaling pathway involved in spinal cord motor neuron cell fate specification [GO:0021776]; smoothened signaling pathway involved in ventral spinal cord interneuron specification [GO:0021775]; spinal cord ventral commissure morphogenesis [GO:0021965]; stem cell proliferation [GO:0072089] -A0A7I2R3P8 unreviewed A0A7I2R3P8_HUMAN NACHT, LRR and PYD domains-containing protein 3 NLRP3 acute inflammatory response [GO:0002526]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to peptidoglycan [GO:0071224]; defense response to Gram-positive bacterium [GO:0050830]; defense response to virus [GO:0051607]; detection of biotic stimulus [GO:0009595]; NLRP3 inflammasome complex assembly [GO:0044546]; positive regulation of inflammatory response [GO:0050729]; positive regulation of interleukin-1 beta production [GO:0032731]; positive regulation of interleukin-13 production [GO:0032736]; positive regulation of interleukin-4 production [GO:0032753]; positive regulation of interleukin-5 production [GO:0032754]; positive regulation of T-helper 17 cell differentiation [GO:2000321]; positive regulation of T-helper 2 cell cytokine production [GO:2000553]; positive regulation of T-helper 2 cell differentiation [GO:0045630]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein homooligomerization [GO:0051260] -A0A7I2SVS4 unreviewed A0A7I2SVS4_HUMAN Histone deacetylase (EC 3.5.1.98) HDAC4 cell population proliferation [GO:0008283]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of glycolytic process [GO:0045820]; negative regulation of miRNA transcription [GO:1902894]; negative regulation of osteoblast differentiation [GO:0045668]; negative regulation of transcription by RNA polymerase II [GO:0000122]; osteoblast development [GO:0002076]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cardiac muscle contraction by calcium ion signaling [GO:0010882]; regulation of skeletal muscle fiber development [GO:0048742]; regulation of skeletal muscle fiber differentiation [GO:1902809]; response to denervation involved in regulation of muscle adaptation [GO:0014894]; skeletal system development [GO:0001501] -A0A7U3JW18 unreviewed A0A7U3JW18_HUMAN Fibroblast growth factor (FGF) FGF5A angiogenesis [GO:0001525]; blood vessel remodeling [GO:0001974]; branch elongation involved in salivary gland morphogenesis [GO:0060667]; bronchiole morphogenesis [GO:0060436]; bud elongation involved in lung branching [GO:0060449]; determination of left/right symmetry [GO:0007368]; embryonic camera-type eye development [GO:0031076]; embryonic digestive tract morphogenesis [GO:0048557]; embryonic genitalia morphogenesis [GO:0030538]; embryonic pattern specification [GO:0009880]; endothelial cell proliferation [GO:0001935]; epithelial cell proliferation involved in salivary gland morphogenesis [GO:0060664]; ERK1 and ERK2 cascade [GO:0070371]; establishment of mitotic spindle orientation [GO:0000132]; extrinsic apoptotic signaling pathway in absence of ligand [GO:0097192]; female genitalia morphogenesis [GO:0048807]; fibroblast growth factor receptor apoptotic signaling pathway [GO:1902178]; fibroblast growth factor receptor signaling pathway involved in mammary gland specification [GO:0060595]; fibroblast proliferation [GO:0048144]; hair follicle morphogenesis [GO:0031069]; Harderian gland development [GO:0070384]; induction of positive chemotaxis [GO:0050930]; keratinocyte proliferation [GO:0043616]; lacrimal gland development [GO:0032808]; limb bud formation [GO:0060174]; lung alveolus development [GO:0048286]; lung proximal/distal axis specification [GO:0061115]; male genitalia morphogenesis [GO:0048808]; mammary gland bud formation [GO:0060615]; mesenchymal cell differentiation involved in lung development [GO:0060915]; mesenchymal-epithelial cell signaling involved in lung development [GO:0060496]; metanephros morphogenesis [GO:0003338]; muscle cell fate commitment [GO:0042693]; negative regulation of epithelial cell differentiation [GO:0030857]; negative regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001240]; negative regulation of stem cell proliferation [GO:2000647]; odontogenesis of dentin-containing tooth [GO:0042475]; organ induction [GO:0001759]; otic vesicle formation [GO:0030916]; pancreas development [GO:0031016]; pituitary gland development [GO:0021983]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of epithelial cell migration [GO:0010634]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of gene expression [GO:0010628]; positive regulation of keratinocyte proliferation [GO:0010838]; positive regulation of mitotic cell cycle [GO:0045931]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular endothelial growth factor receptor signaling pathway [GO:0030949]; positive regulation of white fat cell proliferation [GO:0070352]; prostatic bud formation [GO:0060513]; radial glial cell differentiation [GO:0060019]; regulation of activin receptor signaling pathway [GO:0032925]; regulation of branching involved in salivary gland morphogenesis by mesenchymal-epithelial signaling [GO:0060665]; regulation of smoothened signaling pathway [GO:0008589]; response to estradiol [GO:0032355]; response to lipopolysaccharide [GO:0032496]; secretion by lung epithelial cell involved in lung growth [GO:0061033]; semicircular canal fusion [GO:0060879]; smooth muscle cell differentiation [GO:0051145]; somatic stem cell population maintenance [GO:0035019]; spleen development [GO:0048536]; stem cell proliferation [GO:0072089]; submandibular salivary gland formation [GO:0060661]; thyroid gland development [GO:0030878]; tissue regeneration [GO:0042246]; type II pneumocyte differentiation [GO:0060510]; vascular endothelial growth factor receptor signaling pathway [GO:0048010]; white fat cell differentiation [GO:0050872]; white fat cell proliferation [GO:0070343]; Wnt signaling pathway [GO:0016055]; wound healing [GO:0042060] -A0AVK6 reviewed E2F8_HUMAN Transcription factor E2F8 (E2F-8) E2F8 cell cycle comprising mitosis without cytokinesis [GO:0033301]; chorionic trophoblast cell differentiation [GO:0060718]; fibroblast proliferation [GO:0048144]; hepatocyte differentiation [GO:0070365]; negative regulation of cytokinesis [GO:0032466]; negative regulation of transcription by RNA polymerase II [GO:0000122]; placenta development [GO:0001890]; positive regulation of DNA endoreduplication [GO:0032877]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; sprouting angiogenesis [GO:0002040]; trophoblast giant cell differentiation [GO:0060707] -A0JLT2 reviewed MED19_HUMAN Mediator of RNA polymerase II transcription subunit 19 (Lung cancer metastasis-related protein 1) (Mediator complex subunit 19) MED19 LCMR1 positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; RNA polymerase II preinitiation complex assembly [GO:0051123] -A4D1W7 unreviewed A4D1W7_HUMAN Inhibin beta A chain (Activin beta-A chain) INHBA hCG_17267 tcag7.474 autophagy [GO:0006914]; cardiac fibroblast cell development [GO:0060936]; cellular response to angiotensin [GO:1904385]; cellular response to cholesterol [GO:0071397]; cellular response to follicle-stimulating hormone stimulus [GO:0071372]; cellular response to hypoxia [GO:0071456]; cellular response to oxygen-glucose deprivation [GO:0090650]; cytokine-mediated signaling pathway [GO:0019221]; eyelid development in camera-type eye [GO:0061029]; hematopoietic progenitor cell differentiation [GO:0002244]; mesodermal cell differentiation [GO:0048333]; negative regulation of hair follicle development [GO:0051799]; positive regulation of collagen biosynthetic process [GO:0032967]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of ovulation [GO:0060279]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription by RNA polymerase III [GO:0045945]; response to aldosterone [GO:1904044]; SMAD protein signal transduction [GO:0060395]; transcription by RNA polymerase II [GO:0006366] -A4FUJ8 unreviewed A4FUJ8_HUMAN MKL1 protein MKL1 positive regulation of transcription by RNA polymerase II [GO:0045944]; smooth muscle cell differentiation [GO:0051145] -A4LAA3 unreviewed A4LAA3_HUMAN Transcriptional regulator ATRX (EC 3.6.4.12) (ATP-dependent helicase ATRX) (X-linked nuclear protein) ATRX cellular response to hydroxyurea [GO:0072711]; chromosome organization involved in meiotic cell cycle [GO:0070192]; DNA damage response, signal transduction by p53 class mediator [GO:0030330]; DNA repair [GO:0006281]; forebrain development [GO:0030900]; meiotic spindle organization [GO:0000212]; multicellular organism growth [GO:0035264]; positive regulation of nuclear cell cycle DNA replication [GO:0010571]; positive regulation of telomere maintenance [GO:0032206]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-embryonic forelimb morphogenesis [GO:0035128]; protein localization to chromosome, telomeric region [GO:0070198]; replication fork processing [GO:0031297]; seminiferous tubule development [GO:0072520]; Sertoli cell development [GO:0060009]; spermatogenesis [GO:0007283]; subtelomeric heterochromatin formation [GO:0031509]; transcription by RNA polymerase II [GO:0006366] -A6NCS4 reviewed NKX26_HUMAN Homeobox protein Nkx-2.6 (Homeobox protein NK-2 homolog F) NKX2-6 NKX2F atrial cardiac muscle cell development [GO:0055014]; cell differentiation [GO:0030154]; digestive tract development [GO:0048565]; embryonic heart tube development [GO:0035050]; epithelial cell apoptotic process [GO:1904019]; epithelial cell differentiation [GO:0030855]; epithelial cell proliferation [GO:0050673]; hypothalamus development [GO:0021854]; negative regulation of apoptotic process [GO:0043066]; negative regulation of epithelial cell apoptotic process [GO:1904036]; pericardium development [GO:0060039]; pharyngeal system development [GO:0060037]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; tongue development [GO:0043586]; ventricular cardiac muscle cell development [GO:0055015] -A6NI15 reviewed MSGN1_HUMAN Mesogenin-1 (Paraxial mesoderm-specific mesogenin1) (pMesogenin1) (pMsgn1) MSGN1 cell differentiation [GO:0030154]; mesoderm formation [GO:0001707]; regulation of transcription by RNA polymerase II [GO:0006357]; segment specification [GO:0007379]; somitogenesis [GO:0001756] -A6NJ46 reviewed NKX63_HUMAN Homeobox protein Nkx-6.3 NKX6-3 cell differentiation [GO:0030154]; cell fate determination [GO:0001709]; enteroendocrine cell differentiation [GO:0035883]; negative regulation of epithelial cell differentiation [GO:0030857]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -A8K3H3 unreviewed A8K3H3_HUMAN Retinoic acid nuclear receptor gamma variant 1 (Retinoic acid receptor gamma) (Retinoic acid receptor, gamma, isoform CRA_b) (cDNA FLJ75202, highly similar to Homo sapiens, retinoic acid receptor, gamma) RARG NR1B3 hCG_31521 anterior/posterior pattern specification [GO:0009952]; apoptotic process [GO:0006915]; cellular response to corticotropin-releasing hormone stimulus [GO:0071376]; cellular response to leukemia inhibitory factor [GO:1990830]; cellular response to retinoic acid [GO:0071300]; embryonic camera-type eye development [GO:0031076]; embryonic eye morphogenesis [GO:0048048]; embryonic hindlimb morphogenesis [GO:0035116]; face development [GO:0060324]; glandular epithelial cell development [GO:0002068]; growth plate cartilage chondrocyte growth [GO:0003430]; Harderian gland development [GO:0070384]; multicellular organism growth [GO:0035264]; negative regulation of chondrocyte differentiation [GO:0032331]; negative regulation of stem cell proliferation [GO:2000647]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural tube closure [GO:0001843]; positive regulation of apoptotic process [GO:0043065]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; prostate gland epithelium morphogenesis [GO:0060740]; regulation of myelination [GO:0031641]; regulation of myeloid cell differentiation [GO:0045637]; retinoic acid receptor signaling pathway [GO:0048384]; stem cell proliferation [GO:0072089]; trachea cartilage development [GO:0060534] -A8K571 unreviewed A8K571_HUMAN Bone morphogenetic protein 7 (Osteogenic protein 1), isoform CRA_b (cDNA FLJ78019, highly similar to Homo sapiens bone morphogenetic protein 7 (osteogenic protein 1), mRNA) (cDNA, FLJ92758, Homo sapiens bone morphogenetic protein 7 (osteogenic protein 1)(BMP7), mRNA) BMP7 hCG_40100 allantois development [GO:1905069]; ameloblast differentiation [GO:0036305]; axon guidance [GO:0007411]; BMP signaling pathway [GO:0030509]; branching involved in salivary gland morphogenesis [GO:0060445]; branching morphogenesis of an epithelial tube [GO:0048754]; cardiac muscle tissue development [GO:0048738]; cardiac septum morphogenesis [GO:0060411]; chorio-allantoic fusion [GO:0060710]; embryonic camera-type eye morphogenesis [GO:0048596]; embryonic limb morphogenesis [GO:0030326]; embryonic pattern specification [GO:0009880]; embryonic skeletal joint morphogenesis [GO:0060272]; endocardial cushion formation [GO:0003272]; heart trabecula morphogenesis [GO:0061384]; hindbrain development [GO:0030902]; mesenchymal cell apoptotic process involved in nephron morphogenesis [GO:1901145]; mesoderm formation [GO:0001707]; metanephric mesenchymal cell proliferation involved in metanephros development [GO:0072136]; metanephric mesenchyme morphogenesis [GO:0072133]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis [GO:0072040]; negative regulation of neurogenesis [GO:0050768]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of Notch signaling pathway [GO:0045746]; negative regulation of prostatic bud formation [GO:0060686]; nephrogenic mesenchyme morphogenesis [GO:0072134]; neural fold elevation formation [GO:0021502]; odontogenesis of dentin-containing tooth [GO:0042475]; pericardium morphogenesis [GO:0003344]; pharyngeal system development [GO:0060037]; positive regulation of apoptotic process [GO:0043065]; positive regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis [GO:1905312]; positive regulation of epithelial cell differentiation [GO:0030858]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of branching involved in prostate gland morphogenesis [GO:0060687]; regulation of phosphorylation [GO:0042325]; response to estradiol [GO:0032355]; response to peptide hormone [GO:0043434]; response to vitamin D [GO:0033280]; ureteric bud development [GO:0001657] -B0LPE5 unreviewed B0LPE5_HUMAN RAC-alpha serine/threonine-protein kinase (EC 2.7.11.1) (RAC-PK-alpha) AKT1 hCG_96740 apoptotic mitochondrial changes [GO:0008637]; behavioral response to pain [GO:0048266]; cellular response to decreased oxygen levels [GO:0036294]; cellular response to epidermal growth factor stimulus [GO:0071364]; cellular response to granulocyte macrophage colony-stimulating factor stimulus [GO:0097011]; cellular response to peptide [GO:1901653]; cellular response to prostaglandin E stimulus [GO:0071380]; cellular response to tumor necrosis factor [GO:0071356]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; execution phase of apoptosis [GO:0097194]; gene expression [GO:0010467]; glucose homeostasis [GO:0042593]; glucose metabolic process [GO:0006006]; glycogen biosynthetic process [GO:0005978]; glycogen cell differentiation involved in embryonic placenta development [GO:0060709]; inflammatory response [GO:0006954]; insulin receptor signaling pathway [GO:0008286]; insulin-like growth factor receptor signaling pathway [GO:0048009]; labyrinthine layer blood vessel development [GO:0060716]; lipopolysaccharide-mediated signaling pathway [GO:0031663]; mammalian oogenesis stage [GO:0022605]; maternal placenta development [GO:0001893]; negative regulation of gene expression [GO:0010629]; negative regulation of intrinsic apoptotic signaling pathway [GO:2001243]; negative regulation of release of cytochrome c from mitochondria [GO:0090201]; organic substance transport [GO:0071702]; osteoblast differentiation [GO:0001649]; peripheral nervous system myelin maintenance [GO:0032287]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; positive regulation of fibroblast migration [GO:0010763]; positive regulation of gene expression [GO:0010628]; positive regulation of organ growth [GO:0046622]; positive regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032436]; positive regulation of protein localization to cell surface [GO:2000010]; positive regulation of sodium ion transport [GO:0010765]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; protein ubiquitination [GO:0016567]; regulation of myelination [GO:0031641]; regulation of neuron projection development [GO:0010975]; regulation of postsynapse organization [GO:0099175]; response to food [GO:0032094]; response to growth hormone [GO:0060416]; response to heat [GO:0009408]; response to insulin-like growth factor stimulus [GO:1990418]; striated muscle cell differentiation [GO:0051146] -B2RAG9 unreviewed B2RAG9_HUMAN Mediator of RNA polymerase II transcription subunit 1 (Mediator complex subunit 1) androgen biosynthetic process [GO:0006702]; angiogenesis [GO:0001525]; cell morphogenesis [GO:0000902]; cellular response to epidermal growth factor stimulus [GO:0071364]; cellular response to thyroid hormone stimulus [GO:0097067]; erythrocyte development [GO:0048821]; intracellular steroid hormone receptor signaling pathway [GO:0030518]; keratinocyte differentiation [GO:0030216]; lens development in camera-type eye [GO:0002088]; megakaryocyte development [GO:0035855]; mRNA transcription by RNA polymerase II [GO:0042789]; negative regulation of apoptotic process [GO:0043066]; negative regulation of keratinocyte proliferation [GO:0010839]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of gene expression [GO:0010628]; positive regulation of keratinocyte differentiation [GO:0045618]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; regulation of RNA biosynthetic process [GO:2001141]; thyroid hormone mediated signaling pathway [GO:0002154] -B6ZGT9 unreviewed B6ZGT9_HUMAN Nuclear receptor subfamily 2 group E member 1 (Nuclear receptor TLX) (Protein tailless homolog) NR2E1 hCG_34018 aggressive behavior [GO:0002118]; amygdala development [GO:0021764]; angiogenesis [GO:0001525]; anterior commissure morphogenesis [GO:0021960]; apoptotic process [GO:0006915]; astrocyte cell migration [GO:0043615]; astrocyte differentiation [GO:0048708]; behavioral fear response [GO:0001662]; cell fate commitment [GO:0045165]; cerebral cortex neuron differentiation [GO:0021895]; dentate gyrus development [GO:0021542]; extracellular matrix organization [GO:0030198]; forebrain generation of neurons [GO:0021872]; layer formation in cerebral cortex [GO:0021819]; long-term synaptic potentiation [GO:0060291]; negative regulation of apoptotic process [GO:0043066]; negative regulation of astrocyte differentiation [GO:0048712]; negative regulation of neural precursor cell proliferation [GO:2000178]; negative regulation of neuron differentiation [GO:0045665]; neuroblast proliferation [GO:0007405]; olfactory bulb development [GO:0021772]; positive regulation of angiogenesis [GO:0045766]; positive regulation of cell cycle [GO:0045787]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of stem cell proliferation [GO:2000648]; regulation of cell migration involved in sprouting angiogenesis [GO:0090049]; regulation of dendrite morphogenesis [GO:0048814]; regulation of timing of neuron differentiation [GO:0060164]; retina development in camera-type eye [GO:0060041]; social behavior [GO:0035176]; somatic stem cell population maintenance [GO:0035019]; visual perception [GO:0007601] -C8C060 unreviewed C8C060_HUMAN Bone morphogenetic protein 2 BMP2 ameloblast differentiation [GO:0036305]; aortic valve development [GO:0003176]; astrocyte differentiation [GO:0048708]; atrioventricular canal morphogenesis [GO:1905222]; atrioventricular valve morphogenesis [GO:0003181]; BMP signaling pathway [GO:0030509]; bone development [GO:0060348]; bone mineralization [GO:0030282]; branching involved in ureteric bud morphogenesis [GO:0001658]; cardiac atrium formation [GO:0003210]; cardiac jelly development [GO:1905072]; cardiac muscle cell differentiation [GO:0055007]; cardiac muscle tissue morphogenesis [GO:0055008]; cartilage development [GO:0051216]; cell fate commitment [GO:0045165]; cellular response to organic cyclic compound [GO:0071407]; corticotropin hormone secreting cell differentiation [GO:0060128]; embryonic heart tube anterior/posterior pattern specification [GO:0035054]; endocardial cushion formation [GO:0003272]; epithelial to mesenchymal transition [GO:0001837]; in utero embryonic development [GO:0001701]; inflammatory response [GO:0006954]; inner ear development [GO:0048839]; mesenchymal cell proliferation involved in ureteric bud development [GO:0072138]; negative regulation of gene expression [GO:0010629]; negative regulation of muscle cell differentiation [GO:0051148]; negative regulation of smooth muscle cell proliferation [GO:0048662]; negative regulation of transcription by RNA polymerase II [GO:0000122]; Notch signaling pathway [GO:0007219]; odontogenesis of dentin-containing tooth [GO:0042475]; osteoblast differentiation [GO:0001649]; pericardium development [GO:0060039]; positive regulation of astrocyte differentiation [GO:0048711]; positive regulation of bone mineralization [GO:0030501]; positive regulation of cartilage development [GO:0061036]; positive regulation of cell migration [GO:0030335]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of extracellular matrix constituent secretion [GO:0003331]; positive regulation of fat cell differentiation [GO:0045600]; positive regulation of gene expression [GO:0010628]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of odontoblast differentiation [GO:1901331]; positive regulation of odontogenesis [GO:0042482]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of osteoblast proliferation [GO:0033690]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of Wnt signaling pathway [GO:0030177]; protein destabilization [GO:0031648]; proteoglycan metabolic process [GO:0006029]; regulation of odontogenesis of dentin-containing tooth [GO:0042487]; response to bacterium [GO:0009617]; response to hypoxia [GO:0001666]; telencephalon regionalization [GO:0021978]; thyroid-stimulating hormone-secreting cell differentiation [GO:0060129]; transcription by RNA polymerase II [GO:0006366] -D0VY79 unreviewed D0VY79_HUMAN Hypoxia-inducible factor 1-alpha HIF1A hCG_21199 angiogenesis [GO:0001525]; B-1 B cell homeostasis [GO:0001922]; bone mineralization [GO:0030282]; cardiac ventricle morphogenesis [GO:0003208]; cerebral cortex development [GO:0021987]; chondrocyte differentiation [GO:0002062]; collagen metabolic process [GO:0032963]; connective tissue replacement involved in inflammatory response wound healing [GO:0002248]; digestive tract morphogenesis [GO:0048546]; dopaminergic neuron differentiation [GO:0071542]; elastin metabolic process [GO:0051541]; embryonic hemopoiesis [GO:0035162]; embryonic placenta development [GO:0001892]; epithelial cell differentiation involved in mammary gland alveolus development [GO:0061030]; epithelial to mesenchymal transition [GO:0001837]; glandular epithelial cell maturation [GO:0002071]; heart looping [GO:0001947]; hemoglobin biosynthetic process [GO:0042541]; hypoxia-inducible factor-1alpha signaling pathway [GO:0097411]; insulin secretion involved in cellular response to glucose stimulus [GO:0035773]; intestinal epithelial cell maturation [GO:0060574]; intracellular iron ion homeostasis [GO:0006879]; intracellular oxygen homeostasis [GO:0032364]; iris morphogenesis [GO:0061072]; lactate metabolic process [GO:0006089]; lactation [GO:0007595]; mesenchymal cell apoptotic process [GO:0097152]; muscle cell cellular homeostasis [GO:0046716]; negative regulation of bone mineralization [GO:0030502]; negative regulation of growth [GO:0045926]; negative regulation of mesenchymal cell apoptotic process [GO:2001054]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of reactive oxygen species metabolic process [GO:2000378]; negative regulation of thymocyte apoptotic process [GO:0070244]; negative regulation of TOR signaling [GO:0032007]; neural crest cell migration [GO:0001755]; neural fold elevation formation [GO:0021502]; neuroblast proliferation [GO:0007405]; neuron apoptotic process [GO:0051402]; outflow tract morphogenesis [GO:0003151]; positive regulation of epithelial cell migration [GO:0010634]; positive regulation of erythrocyte differentiation [GO:0045648]; positive regulation of gene expression [GO:0010628]; positive regulation of insulin secretion involved in cellular response to glucose stimulus [GO:0035774]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of mitophagy [GO:1901526]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of vascular endothelial growth factor receptor signaling pathway [GO:0030949]; regulation of aerobic respiration [GO:1903715]; regulation of glycolytic process [GO:0006110]; response to muscle activity [GO:0014850]; retina vasculature development in camera-type eye [GO:0061298]; TOR signaling [GO:0031929]; visual learning [GO:0008542] -D3DPA4 unreviewed D3DPA4_HUMAN Serine/threonine-protein kinase receptor (EC 2.7.11.30) ACVR1 hCG_1811747 acute inflammatory response [GO:0002526]; atrial septum primum morphogenesis [GO:0003289]; atrioventricular valve morphogenesis [GO:0003181]; BMP signaling pathway [GO:0030509]; branching involved in blood vessel morphogenesis [GO:0001569]; determination of left/right symmetry [GO:0007368]; endocardial cushion formation [GO:0003272]; endocardial cushion fusion [GO:0003274]; gastrulation with mouth forming second [GO:0001702]; germ cell development [GO:0007281]; in utero embryonic development [GO:0001701]; mesoderm formation [GO:0001707]; neural crest cell migration [GO:0001755]; pharyngeal system development [GO:0060037]; positive regulation of cardiac epithelial to mesenchymal transition [GO:0062043]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of transcription by RNA polymerase II [GO:0045944]; smooth muscle cell differentiation [GO:0051145]; transforming growth factor beta receptor signaling pathway [GO:0007179]; ventricular septum morphogenesis [GO:0060412] -D6RGH6 reviewed MCIN_HUMAN Multicilin (Multiciliate differentiation and DNA synthesis-associated cell cycle protein) (McIdas protein) (Protein Idas) MCIDAS IDAS MCI MCIN centriole assembly [GO:0098534]; cilium assembly [GO:0060271]; motile cilium assembly [GO:0044458]; multi-ciliated epithelial cell differentiation [GO:1903251]; negative regulation of cell cycle [GO:0045786]; negative regulation of DNA replication [GO:0008156]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cilium assembly [GO:1902017]; regulation of DNA-templated DNA replication initiation [GO:0030174]; regulation of mitotic cell cycle [GO:0007346] -D9ZGF1 unreviewed D9ZGF1_HUMAN Cbp/p300-interacting transactivator 2 CITED2 hCG_32930 adrenal cortex formation [GO:0035802]; bone morphogenesis [GO:0060349]; cardiac neural crest cell development involved in heart development [GO:0061308]; cellular senescence [GO:0090398]; central nervous system development [GO:0007417]; cranial nerve morphogenesis [GO:0021602]; decidualization [GO:0046697]; determination of left/right asymmetry in lateral mesoderm [GO:0003140]; embryonic camera-type eye morphogenesis [GO:0048596]; embryonic heart tube left/right pattern formation [GO:0060971]; embryonic placenta development [GO:0001892]; embryonic process involved in female pregnancy [GO:0060136]; endocardial cushion development [GO:0003197]; erythrocyte development [GO:0048821]; granulocyte differentiation [GO:0030851]; heart looping [GO:0001947]; hematopoietic progenitor cell differentiation [GO:0002244]; left/right axis specification [GO:0070986]; lens morphogenesis in camera-type eye [GO:0002089]; liver development [GO:0001889]; male gonad development [GO:0008584]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cardiac muscle cell proliferation [GO:0060044]; negative regulation of gene expression [GO:0010629]; neural tube closure [GO:0001843]; nodal signaling pathway [GO:0038092]; outflow tract morphogenesis [GO:0003151]; peripheral nervous system development [GO:0007422]; positive regulation of cell cycle [GO:0045787]; positive regulation of cell-cell adhesion [GO:0022409]; positive regulation of gene expression [GO:0010628]; positive regulation of male gonad development [GO:2000020]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta receptor signaling pathway [GO:0030511]; pulmonary artery morphogenesis [GO:0061156]; regulation of animal organ formation [GO:0003156]; response to mechanical stimulus [GO:0009612]; sex determination [GO:0007530]; skeletal muscle cell differentiation [GO:0035914]; spleen development [GO:0048536]; thymus development [GO:0048538]; transforming growth factor beta receptor signaling pathway [GO:0007179]; trophectodermal cell differentiation [GO:0001829]; uterus development [GO:0060065]; vasculogenesis [GO:0001570]; ventricular septum morphogenesis [GO:0060412] -D9ZGF5 unreviewed D9ZGF5_HUMAN Fibroblast growth factor (FGF) FGF2 FGF2A angiogenesis involved in coronary vascular morphogenesis [GO:0060978]; animal organ morphogenesis [GO:0009887]; canonical Wnt signaling pathway [GO:0060070]; cellular response to mechanical stimulus [GO:0071260]; cerebellar granule cell precursor proliferation [GO:0021930]; corticotropin hormone secreting cell differentiation [GO:0060128]; embryo development ending in birth or egg hatching [GO:0009792]; endothelial cell proliferation [GO:0001935]; ERK1 and ERK2 cascade [GO:0070371]; fibroblast growth factor receptor signaling pathway [GO:0008543]; glial cell differentiation [GO:0010001]; inner ear auditory receptor cell differentiation [GO:0042491]; lung development [GO:0030324]; lymphatic endothelial cell migration [GO:1904977]; mammary gland epithelial cell differentiation [GO:0060644]; negative regulation of stem cell proliferation [GO:2000647]; neuroblast proliferation [GO:0007405]; organ induction [GO:0001759]; osteoblast differentiation [GO:0001649]; paracrine signaling [GO:0038001]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; positive regulation of angiogenesis [GO:0045766]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of cardiac muscle cell proliferation [GO:0060045]; positive regulation of cerebellar granule cell precursor proliferation [GO:0021940]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of gene expression [GO:0010628]; positive regulation of inner ear auditory receptor cell differentiation [GO:0045609]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of neuroepithelial cell differentiation [GO:1902913]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of stem cell differentiation [GO:2000738]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell cycle [GO:0051726]; regulation of retinal cell programmed cell death [GO:0046668]; response to axon injury [GO:0048678]; stem cell development [GO:0048864]; stem cell proliferation [GO:0072089]; substantia nigra development [GO:0021762]; thyroid-stimulating hormone-secreting cell differentiation [GO:0060129]; transcription by RNA polymerase II [GO:0006366]; wound healing [GO:0042060] -E9PFV2 unreviewed E9PFV2_HUMAN Peroxisome proliferator-activated receptor gamma (PPAR-gamma) (Nuclear receptor subfamily 1 group C member 3) PPARG PPARG5 animal organ regeneration [GO:0031100]; cellular response to hyperoxia [GO:0071455]; cellular response to hypoxia [GO:0071456]; cellular response to prostaglandin E stimulus [GO:0071380]; cellular response to retinoic acid [GO:0071300]; cellular response to vitamin E [GO:0071306]; fatty acid oxidation [GO:0019395]; heart development [GO:0007507]; negative regulation of acute inflammatory response [GO:0002674]; negative regulation of cardiac muscle hypertrophy in response to stress [GO:1903243]; negative regulation of cell growth [GO:0030308]; negative regulation of collagen biosynthetic process [GO:0032966]; negative regulation of connective tissue replacement involved in inflammatory response wound healing [GO:1904597]; negative regulation of gene expression [GO:0010629]; negative regulation of lipid storage [GO:0010888]; negative regulation of pancreatic stellate cell proliferation [GO:2000230]; negative regulation of smooth muscle cell proliferation [GO:0048662]; positive regulation of adiponectin secretion [GO:0070165]; positive regulation of apoptotic process [GO:0043065]; positive regulation of fat cell differentiation [GO:0045600]; positive regulation of fatty acid oxidation [GO:0046321]; positive regulation of oligodendrocyte differentiation [GO:0048714]; positive regulation of phagocytosis, engulfment [GO:0060100]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to caffeine [GO:0031000]; response to estrogen [GO:0043627]; response to immobilization stress [GO:0035902]; response to mechanical stimulus [GO:0009612]; response to starvation [GO:0042594]; response to vitamin A [GO:0033189]; response to xenobiotic stimulus [GO:0009410]; rhythmic process [GO:0048511] -F1D8N6 unreviewed F1D8N6_HUMAN Nuclear receptor subfamily 4 group A member 2 NR4A2 adult locomotory behavior [GO:0008344]; cellular response to corticotropin-releasing hormone stimulus [GO:0071376]; cellular response to extracellular stimulus [GO:0031668]; cellular response to oxidative stress [GO:0034599]; central nervous system projection neuron axonogenesis [GO:0021952]; dopamine biosynthetic process [GO:0042416]; dopaminergic neuron differentiation [GO:0071542]; fat cell differentiation [GO:0045444]; general adaptation syndrome [GO:0051866]; habenula development [GO:0021986]; negative regulation of neuron apoptotic process [GO:0043524]; neuron apoptotic process [GO:0051402]; neuron maturation [GO:0042551]; neuron migration [GO:0001764]; post-embryonic development [GO:0009791]; regulation of dopamine metabolic process [GO:0042053]; regulation of respiratory gaseous exchange [GO:0043576]; response to amphetamine [GO:0001975]; response to hypoxia [GO:0001666]; transcription by RNA polymerase II [GO:0006366] -F1D8S3 unreviewed F1D8S3_HUMAN Nuclear receptor subfamily 1 group D member 1 (Rev-erbA-alpha) (V-erbA-related protein 1) NR1D1 hCG_93862 cell differentiation [GO:0030154]; cellular response to interleukin-1 [GO:0071347]; cellular response to tumor necrosis factor [GO:0071356]; cholesterol homeostasis [GO:0042632]; circadian regulation of gene expression [GO:0032922]; circadian temperature homeostasis [GO:0060086]; glycogen biosynthetic process [GO:0005978]; hormone-mediated signaling pathway [GO:0009755]; negative regulation of astrocyte activation [GO:0061889]; negative regulation of canonical NF-kappaB signal transduction [GO:0043124]; negative regulation of cold-induced thermogenesis [GO:0120163]; negative regulation of microglial cell activation [GO:1903979]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of bile acid biosynthetic process [GO:0070859]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proteasomal protein catabolic process [GO:0010498]; protein destabilization [GO:0031648]; regulation of circadian sleep/wake cycle [GO:0042749]; regulation of fat cell differentiation [GO:0045598]; regulation of insulin secretion involved in cellular response to glucose stimulus [GO:0061178]; regulation of type B pancreatic cell proliferation [GO:0061469]; response to leptin [GO:0044321] -F1D8S4 unreviewed F1D8S4_HUMAN Peroxisome proliferator-activated receptor alpha (Nuclear receptor subfamily 1 group C member 1) NR1C1 behavioral response to nicotine [GO:0035095]; cell differentiation [GO:0030154]; cellular response to fructose stimulus [GO:0071332]; cellular response to starvation [GO:0009267]; circadian regulation of gene expression [GO:0032922]; enamel mineralization [GO:0070166]; epidermis development [GO:0008544]; fatty acid metabolic process [GO:0006631]; gluconeogenesis [GO:0006094]; heart development [GO:0007507]; hormone-mediated signaling pathway [GO:0009755]; lipoprotein metabolic process [GO:0042157]; negative regulation of appetite [GO:0032099]; negative regulation of blood pressure [GO:0045776]; negative regulation of cell growth involved in cardiac muscle cell development [GO:0061052]; negative regulation of cholesterol storage [GO:0010887]; negative regulation of inflammatory response [GO:0050728]; nitric oxide metabolic process [GO:0046209]; positive regulation of fatty acid oxidation [GO:0046321]; positive regulation of gluconeogenesis [GO:0045722]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of circadian rhythm [GO:0042752]; response to ethanol [GO:0045471]; response to hypoxia [GO:0001666]; response to insulin [GO:0032868]; response to nutrient [GO:0007584]; response to organic cyclic compound [GO:0014070]; wound healing [GO:0042060] -F1D8S6 unreviewed F1D8S6_HUMAN Retinoic acid receptor beta (Nuclear receptor subfamily 1 group B member 2) NR1B2 RARB hCG_26863 apoptotic process [GO:0006915]; cellular response to corticotropin-releasing hormone stimulus [GO:0071376]; embryonic eye morphogenesis [GO:0048048]; embryonic hindlimb morphogenesis [GO:0035116]; glandular epithelial cell development [GO:0002068]; growth plate cartilage development [GO:0003417]; multicellular organism growth [GO:0035264]; negative regulation of chondrocyte differentiation [GO:0032331]; negative regulation of stem cell proliferation [GO:2000647]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural precursor cell proliferation [GO:0061351]; neurogenesis [GO:0022008]; positive regulation of apoptotic process [GO:0043065]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of myelination [GO:0031641]; retinoic acid receptor signaling pathway [GO:0048384]; stem cell proliferation [GO:0072089]; striatum development [GO:0021756]; ureteric bud development [GO:0001657]; ventricular cardiac muscle cell differentiation [GO:0055012] -F1DAL1 unreviewed F1DAL1_HUMAN Farnesoid X nuclear receptor NR1H4 bile acid metabolic process [GO:0008206]; cell differentiation [GO:0030154]; cell-cell junction assembly [GO:0007043]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to organonitrogen compound [GO:0071417]; cholesterol homeostasis [GO:0042632]; defense response to bacterium [GO:0042742]; fatty acid homeostasis [GO:0055089]; intracellular glucose homeostasis [GO:0001678]; negative regulation of canonical NF-kappaB signal transduction [GO:0043124]; negative regulation of inflammatory response [GO:0050728]; negative regulation of interleukin-1 production [GO:0032692]; negative regulation of interleukin-2 production [GO:0032703]; negative regulation of interleukin-6 production [GO:0032715]; negative regulation of monocyte chemotactic protein-1 production [GO:0071638]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of tumor necrosis factor production [GO:0032720]; negative regulation of tumor necrosis factor-mediated signaling pathway [GO:0010804]; negative regulation of type II interferon production [GO:0032689]; negative regulation of very-low-density lipoprotein particle remodeling [GO:0010903]; Notch signaling pathway [GO:0007219]; positive regulation of adipose tissue development [GO:1904179]; positive regulation of ammonia assimilation cycle [GO:2001250]; positive regulation of insulin receptor signaling pathway [GO:0046628]; positive regulation of insulin secretion involved in cellular response to glucose stimulus [GO:0035774]; regulation of urea metabolic process [GO:0034255]; toll-like receptor 9 signaling pathway [GO:0034162]; transcription by RNA polymerase II [GO:0006366]; triglyceride homeostasis [GO:0070328] -F1T0F8 unreviewed F1T0F8_HUMAN Paired box protein Pax-6 PAX6 astrocyte differentiation [GO:0048708]; axon guidance [GO:0007411]; cell fate determination [GO:0001709]; cellular response to fibroblast growth factor stimulus [GO:0044344]; cellular response to glucose stimulus [GO:0071333]; cellular response to insulin stimulus [GO:0032869]; cellular response to leukemia inhibitory factor [GO:1990830]; cellular response to prostaglandin E stimulus [GO:0071380]; cellular response to xenobiotic stimulus [GO:0071466]; cerebellum development [GO:0021549]; cerebral cortex regionalization [GO:0021796]; chromatin remodeling [GO:0006338]; commitment of neuronal cell to specific neuron type in forebrain [GO:0021902]; DNA demethylation [GO:0080111]; dorsal/ventral axis specification [GO:0009950]; embryonic camera-type eye morphogenesis [GO:0048596]; establishment of mitotic spindle orientation [GO:0000132]; eye photoreceptor cell development [GO:0042462]; forebrain dorsal/ventral pattern formation [GO:0021798]; forebrain-midbrain boundary formation [GO:0021905]; habenula development [GO:0021986]; insulin metabolic process [GO:1901142]; interkinetic nuclear migration [GO:0022027]; keratinocyte differentiation [GO:0030216]; lacrimal gland development [GO:0032808]; learned vocalization behavior or vocal learning [GO:0098598]; lens development in camera-type eye [GO:0002088]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of neuroblast proliferation [GO:0007406]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of protein phosphorylation [GO:0001933]; neural crest cell migration [GO:0001755]; neuroblast proliferation [GO:0007405]; olfactory bulb mitral cell layer development [GO:0061034]; oligodendrocyte cell fate specification [GO:0021778]; pancreatic A cell development [GO:0003322]; pituitary gland development [GO:0021983]; positive regulation of cell fate specification [GO:0042660]; positive regulation of epithelial cell differentiation [GO:0030858]; positive regulation of gene expression [GO:0010628]; positive regulation of glutamatergic neuron differentiation [GO:0120008]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of neuron migration [GO:2001224]; protein localization to organelle [GO:0033365]; regulation of asymmetric cell division [GO:0009786]; regulation of neuron projection development [GO:0010975]; regulation of timing of cell differentiation [GO:0048505]; response to ethanol [GO:0045471]; retina development in camera-type eye [GO:0060041]; rhombomere morphogenesis [GO:0021593]; salivary gland morphogenesis [GO:0007435]; sensory neuron migration [GO:1904937]; signal transduction involved in regulation of gene expression [GO:0023019]; smoothened signaling pathway [GO:0007224]; transcription by RNA polymerase II [GO:0006366]; type B pancreatic cell differentiation [GO:0003309]; ventral spinal cord development [GO:0021517] -F8VVT9 unreviewed F8VVT9_HUMAN ArfGAP with GTPase domain, ankyrin repeat and PH domain 2 AGAP2 cell surface receptor signaling pathway via JAK-STAT [GO:0007259]; cellular response to glycine [GO:1905430]; epithelial cell apoptotic process [GO:1904019]; mammary gland alveolus development [GO:0060749]; mammary gland epithelial cell proliferation [GO:0033598]; negative regulation of epithelial cell apoptotic process [GO:1904036]; negative regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001240]; negative regulation of neuron apoptotic process [GO:0043524]; phosphatidylinositol metabolic process [GO:0046488]; positive regulation of mammary gland epithelial cell proliferation [GO:0033601]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of protein localization to cell surface [GO:2000010]; positive regulation of receptor signaling pathway via JAK-STAT [GO:0046427]; positive regulation of transcription by RNA polymerase II [GO:0045944] -G4XH65 unreviewed G4XH65_HUMAN Estrogen receptor (ER) (ER-alpha) (Estradiol receptor) (Nuclear receptor subfamily 3 group A member 1) ESR1 androgen metabolic process [GO:0008209]; antral ovarian follicle growth [GO:0001547]; cellular response to estradiol stimulus [GO:0071392]; cellular response to estrogen stimulus [GO:0071391]; epithelial cell development [GO:0002064]; epithelial cell proliferation involved in mammary gland duct elongation [GO:0060750]; fibroblast proliferation [GO:0048144]; intracellular estrogen receptor signaling pathway [GO:0030520]; male gonad development [GO:0008584]; mammary gland alveolus development [GO:0060749]; mammary gland branching involved in pregnancy [GO:0060745]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of transcription by RNA polymerase II [GO:0045944]; prostate epithelial cord arborization involved in prostate glandular acinus morphogenesis [GO:0060527]; prostate epithelial cord elongation [GO:0060523]; regulation of branching involved in prostate gland morphogenesis [GO:0060687]; regulation of epithelial cell apoptotic process [GO:1904035]; regulation of inflammatory response [GO:0050727]; regulation of toll-like receptor signaling pathway [GO:0034121]; stem cell differentiation [GO:0048863]; transcription by RNA polymerase II [GO:0006366]; uterus development [GO:0060065]; vagina development [GO:0060068] -K7PPA8 unreviewed K7PPA8_HUMAN Cellular tumor antigen p53 TP53 B cell lineage commitment [GO:0002326]; cardiac muscle cell apoptotic process [GO:0010659]; cardiac septum morphogenesis [GO:0060411]; cellular response to gamma radiation [GO:0071480]; cellular response to UV-C [GO:0071494]; cerebellum development [GO:0021549]; chromosome organization [GO:0051276]; circadian behavior [GO:0048512]; determination of adult lifespan [GO:0008340]; DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest [GO:0006977]; DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator [GO:0006978]; double-strand break repair [GO:0006302]; embryonic organ development [GO:0048568]; entrainment of circadian clock by photoperiod [GO:0043153]; fibroblast proliferation [GO:0048144]; gastrulation [GO:0007369]; glial cell proliferation [GO:0014009]; glucose catabolic process to lactate via pyruvate [GO:0019661]; in utero embryonic development [GO:0001701]; intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:0042771]; intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress [GO:0070059]; intrinsic apoptotic signaling pathway in response to hypoxia [GO:1990144]; mitochondrial DNA repair [GO:0043504]; mitophagy [GO:0000423]; multicellular organism growth [GO:0035264]; necroptotic process [GO:0070266]; negative regulation of apoptotic process [GO:0043066]; negative regulation of DNA replication [GO:0008156]; negative regulation of fibroblast proliferation [GO:0048147]; negative regulation of glial cell proliferation [GO:0060253]; negative regulation of glucose catabolic process to lactate via pyruvate [GO:1904024]; negative regulation of miRNA processing [GO:1903799]; negative regulation of mitophagy [GO:1901525]; negative regulation of neuroblast proliferation [GO:0007406]; negative regulation of proteolysis [GO:0045861]; negative regulation of reactive oxygen species metabolic process [GO:2000378]; negative regulation of stem cell proliferation [GO:2000647]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; neuroblast proliferation [GO:0007405]; neuron apoptotic process [GO:0051402]; positive regulation of cardiac muscle cell apoptotic process [GO:0010666]; positive regulation of cellular senescence [GO:2000774]; positive regulation of mitochondrial membrane permeability [GO:0035794]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of programmed necrotic cell death [GO:0062100]; positive regulation of thymocyte apoptotic process [GO:0070245]; protein import into nucleus [GO:0006606]; protein stabilization [GO:0050821]; protein tetramerization [GO:0051262]; reactive oxygen species metabolic process [GO:0072593]; regulation of DNA damage response, signal transduction by p53 class mediator [GO:0043516]; regulation of fibroblast apoptotic process [GO:2000269]; regulation of intrinsic apoptotic signaling pathway by p53 class mediator [GO:1902253]; regulation of mitochondrial membrane permeability involved in apoptotic process [GO:1902108]; regulation of tissue remodeling [GO:0034103]; release of cytochrome c from mitochondria [GO:0001836]; response to inorganic substance [GO:0010035]; response to ischemia [GO:0002931]; response to oxidative stress [GO:0006979]; response to salt stress [GO:0009651]; response to X-ray [GO:0010165]; response to xenobiotic stimulus [GO:0009410]; rRNA transcription [GO:0009303]; somitogenesis [GO:0001756]; stem cell proliferation [GO:0072089]; T cell differentiation in thymus [GO:0033077]; T cell lineage commitment [GO:0002360]; T cell proliferation involved in immune response [GO:0002309]; thymocyte apoptotic process [GO:0070242]; transforming growth factor beta receptor signaling pathway [GO:0007179]; type II interferon-mediated signaling pathway [GO:0060333] -L7RRS6 unreviewed L7RRS6_HUMAN RAF proto-oncogene serine/threonine-protein kinase (EC 2.7.11.1) (Proto-oncogene c-RAF) (Raf-1) RAF1 death-inducing signaling complex assembly [GO:0071550]; ERBB2-ERBB3 signaling pathway [GO:0038133]; extrinsic apoptotic signaling pathway via death domain receptors [GO:0008625]; face development [GO:0060324]; insulin receptor signaling pathway [GO:0008286]; insulin secretion involved in cellular response to glucose stimulus [GO:0035773]; insulin-like growth factor receptor signaling pathway [GO:0048009]; intermediate filament cytoskeleton organization [GO:0045104]; myelination [GO:0042552]; negative regulation of extrinsic apoptotic signaling pathway via death domain receptors [GO:1902042]; neurotrophin TRK receptor signaling pathway [GO:0048011]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein modification process [GO:0036211]; Ras protein signal transduction [GO:0007265]; regulation of intracellular signal transduction [GO:1902531]; response to muscle stretch [GO:0035994]; Schwann cell development [GO:0014044]; somatic stem cell population maintenance [GO:0035019]; thymus development [GO:0048538]; thyroid gland development [GO:0030878]; type B pancreatic cell proliferation [GO:0044342] -O00159 reviewed MYO1C_HUMAN Unconventional myosin-Ic (Myosin I beta) (MMI-beta) (MMIb) MYO1C actin filament organization [GO:0007015]; actin filament-based movement [GO:0030048]; cellular response to type II interferon [GO:0071346]; chromatin remodeling [GO:0006338]; endocytosis [GO:0006897]; positive regulation of cell migration [GO:0030335]; positive regulation of cellular response to insulin stimulus [GO:1900078]; positive regulation of protein targeting to membrane [GO:0090314]; positive regulation of transcription by RNA polymerase I [GO:0045943]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription by RNA polymerase III [GO:0045945]; protein targeting to membrane [GO:0006612]; regulation of bicellular tight junction assembly [GO:2000810]; vascular endothelial growth factor signaling pathway [GO:0038084]; vesicle transport along actin filament [GO:0030050] -O00165 reviewed HAX1_HUMAN HCLS1-associated protein X-1 (HS1-associating protein X-1) (HAX-1) (HS1-binding protein 1) (HSP1BP-1) HAX1 HS1BP1 cellular response to cytokine stimulus [GO:0071345]; granulocyte colony-stimulating factor signaling pathway [GO:0038158]; negative regulation of apoptotic process [GO:0043066]; positive regulation of granulocyte differentiation [GO:0030854]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of actin filament organization [GO:0110053]; regulation of actin filament polymerization [GO:0030833]; regulation of apoptotic process [GO:0042981]; regulation of autophagy of mitochondrion [GO:1903146]; regulation of protein targeting to mitochondrion [GO:1903214] -O00203 reviewed AP3B1_HUMAN AP-3 complex subunit beta-1 (Adaptor protein complex AP-3 subunit beta-1) (Adaptor-related protein complex 3 subunit beta-1) (Beta-3A-adaptin) (Clathrin assembly protein complex 3 beta-1 large chain) AP3B1 ADTB3A anterograde axonal transport [GO:0008089]; anterograde synaptic vesicle transport [GO:0048490]; antigen processing and presentation, exogenous lipid antigen via MHC class Ib [GO:0048007]; blood coagulation [GO:0007596]; cell morphogenesis [GO:0000902]; clathrin-coated vesicle cargo loading, AP-3-mediated [GO:0035654]; establishment of protein localization to mitochondrial membrane involved in mitochondrial fission [GO:0090152]; granulocyte differentiation [GO:0030851]; hematopoietic progenitor cell differentiation [GO:0002244]; homeostasis of number of cells [GO:0048872]; inflammatory response [GO:0006954]; intracellular protein transport [GO:0006886]; intracellular transport [GO:0046907]; intracellular zinc ion homeostasis [GO:0006882]; lung morphogenesis [GO:0060425]; lysosome organization [GO:0007040]; melanosome assembly [GO:1903232]; melanosome organization [GO:0032438]; mRNA transcription by RNA polymerase II [GO:0042789]; platelet dense granule organization [GO:0060155]; positive regulation of NK T cell differentiation [GO:0051138]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to cell surface [GO:0034394]; protein modification process [GO:0036211]; protein targeting to lysosome [GO:0006622]; respiratory system process [GO:0003016]; single fertilization [GO:0007338]; skin epidermis development [GO:0098773]; spermatogenesis [GO:0007283]; toll-like receptor signaling pathway [GO:0002224]; vesicle-mediated transport [GO:0016192] -O00206 reviewed TLR4_HUMAN Toll-like receptor 4 (hToll) (CD antigen CD284) TLR4 astrocyte development [GO:0014002]; B cell proliferation involved in immune response [GO:0002322]; cellular response to amyloid-beta [GO:1904646]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to lipoteichoic acid [GO:0071223]; cellular response to mechanical stimulus [GO:0071260]; cellular response to oxidised low-density lipoprotein particle stimulus [GO:0140052]; cellular response to platelet-derived growth factor stimulus [GO:0036120]; cellular response to type II interferon [GO:0071346]; defense response to bacterium [GO:0042742]; defense response to Gram-negative bacterium [GO:0050829]; detection of fungus [GO:0016046]; detection of lipopolysaccharide [GO:0032497]; ERK1 and ERK2 cascade [GO:0070371]; gene expression [GO:0010467]; I-kappaB phosphorylation [GO:0007252]; immune response [GO:0006955]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; intestinal epithelial structure maintenance [GO:0060729]; JNK cascade [GO:0007254]; lipopolysaccharide-mediated signaling pathway [GO:0031663]; macrophage activation [GO:0042116]; MHC class II biosynthetic process [GO:0045342]; microglia differentiation [GO:0014004]; MyD88-dependent toll-like receptor signaling pathway [GO:0002755]; negative regulation of cold-induced thermogenesis [GO:0120163]; negative regulation of ERK1 and ERK2 cascade [GO:0070373]; negative regulation of interleukin-17 production [GO:0032700]; negative regulation of interleukin-23 production [GO:0032707]; negative regulation of interleukin-6 production [GO:0032715]; negative regulation of osteoclast differentiation [GO:0045671]; negative regulation of tumor necrosis factor production [GO:0032720]; negative regulation of type II interferon production [GO:0032689]; nitric oxide biosynthetic process [GO:0006809]; nitric oxide production involved in inflammatory response [GO:0002537]; nucleotide-binding oligomerization domain containing 1 signaling pathway [GO:0070427]; nucleotide-binding oligomerization domain containing 2 signaling pathway [GO:0070431]; phagocytosis [GO:0006909]; positive regulation of B cell proliferation [GO:0030890]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cellular response to macrophage colony-stimulating factor stimulus [GO:1903974]; positive regulation of chemokine (C-X-C motif) ligand 2 production [GO:2000343]; positive regulation of chemokine production [GO:0032722]; positive regulation of cytokine production involved in inflammatory response [GO:1900017]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of extrinsic apoptotic signaling pathway [GO:2001238]; positive regulation of gene expression [GO:0010628]; positive regulation of inflammatory response [GO:0050729]; positive regulation of interferon-alpha production [GO:0032727]; positive regulation of interferon-beta production [GO:0032728]; positive regulation of interleukin-1 beta production [GO:0032731]; positive regulation of interleukin-1 production [GO:0032732]; positive regulation of interleukin-10 production [GO:0032733]; positive regulation of interleukin-12 production [GO:0032735]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of JNK cascade [GO:0046330]; positive regulation of macrophage activation [GO:0043032]; positive regulation of macrophage cytokine production [GO:0060907]; positive regulation of MAP kinase activity [GO:0043406]; positive regulation of matrix metallopeptidase secretion [GO:1904466]; positive regulation of MHC class II biosynthetic process [GO:0045348]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of nitric oxide biosynthetic process [GO:0045429]; positive regulation of nitric-oxide synthase biosynthetic process [GO:0051770]; positive regulation of NLRP3 inflammasome complex assembly [GO:1900227]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway [GO:0070430]; positive regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway [GO:0070434]; positive regulation of platelet activation [GO:0010572]; positive regulation of reactive oxygen species biosynthetic process [GO:1903428]; positive regulation of smooth muscle cell migration [GO:0014911]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of stress-activated MAPK cascade [GO:0032874]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of type II interferon production [GO:0032729]; regulation of dendritic cell cytokine production [GO:0002730]; response to lipopolysaccharide [GO:0032496]; stress-activated MAPK cascade [GO:0051403]; T-helper 1 type immune response [GO:0042088]; toll-like receptor 4 signaling pathway [GO:0034142]; toll-like receptor signaling pathway [GO:0002224]; TRIF-dependent toll-like receptor signaling pathway [GO:0035666]; wound healing involved in inflammatory response [GO:0002246] -O00213 reviewed APBB1_HUMAN Amyloid beta precursor protein binding family B member 1 (Amyloid-beta A4 precursor protein-binding family B member 1) (Protein Fe65) APBB1 FE65 RIR apoptotic process [GO:0006915]; axonogenesis [GO:0007409]; chromatin organization [GO:0006325]; DNA damage response [GO:0006974]; negative regulation of cell cycle G1/S phase transition [GO:1902807]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of apoptotic process [GO:0043065]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of neuron projection development [GO:0010976]; positive regulation of protein secretion [GO:0050714]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; signal transduction [GO:0007165]; smooth muscle contraction [GO:0006939] -O00238 reviewed BMR1B_HUMAN Bone morphogenetic protein receptor type-1B (BMP type-1B receptor) (BMPR-1B) (EC 2.7.11.30) (CD antigen CDw293) BMPR1B BMP signaling pathway [GO:0030509]; cartilage condensation [GO:0001502]; cellular response to BMP stimulus [GO:0071773]; cellular response to growth factor stimulus [GO:0071363]; central nervous system neuron differentiation [GO:0021953]; chondrocyte development [GO:0002063]; dorsal/ventral pattern formation [GO:0009953]; endochondral bone morphogenesis [GO:0060350]; eye development [GO:0001654]; inflammatory response [GO:0006954]; negative regulation of chondrocyte proliferation [GO:1902731]; osteoblast differentiation [GO:0001649]; ovarian cumulus expansion [GO:0001550]; ovulation cycle [GO:0042698]; positive regulation of bone mineralization [GO:0030501]; positive regulation of cartilage development [GO:0061036]; positive regulation of chondrocyte differentiation [GO:0032332]; positive regulation of extrinsic apoptotic signaling pathway via death domain receptors [GO:1902043]; positive regulation of gene expression [GO:0010628]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proteoglycan biosynthetic process [GO:0030166]; retina development in camera-type eye [GO:0060041]; retinal ganglion cell axon guidance [GO:0031290] -O00255 reviewed MEN1_HUMAN Menin MEN1 SCG2 DNA damage response [GO:0006974]; DNA repair [GO:0006281]; MAPK cascade [GO:0000165]; negative regulation of cell cycle [GO:0045786]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0045736]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of JNK cascade [GO:0046329]; negative regulation of osteoblast differentiation [GO:0045668]; negative regulation of protein phosphorylation [GO:0001933]; negative regulation of telomerase activity [GO:0051974]; negative regulation of transcription by RNA polymerase II [GO:0000122]; osteoblast development [GO:0002076]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta receptor signaling pathway [GO:0030511]; regulation of transcription by RNA polymerase II [GO:0006357]; response to gamma radiation [GO:0010332]; response to UV [GO:0009411]; T-helper 2 cell differentiation [GO:0045064]; transcription initiation-coupled chromatin remodeling [GO:0045815] -O00267 reviewed SPT5H_HUMAN Transcription elongation factor SPT5 (hSPT5) (DRB sensitivity-inducing factor 160 kDa subunit) (DSIF p160) (DRB sensitivity-inducing factor large subunit) (DSIF large subunit) (Tat-cotransactivator 1 protein) (Tat-CT1 protein) SUPT5H SPT5 SPT5H negative regulation of DNA-templated transcription, elongation [GO:0032785]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of DNA-templated transcription, elongation [GO:0032786]; positive regulation of macroautophagy [GO:0016239]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription elongation by RNA polymerase II [GO:0034243]; transcription elongation by RNA polymerase II [GO:0006368]; transcription elongation-coupled chromatin remodeling [GO:0140673] -O00268 reviewed TAF4_HUMAN Transcription initiation factor TFIID subunit 4 (RNA polymerase II TBP-associated factor subunit C) (TBP-associated factor 4) (Transcription initiation factor TFIID 130 kDa subunit) (TAF(II)130) (TAFII-130) (TAFII130) (Transcription initiation factor TFIID 135 kDa subunit) (TAF(II)135) (TAFII-135) (TAFII135) TAF4 TAF2C TAF2C1 TAF4A TAFII130 TAFII135 DNA-templated transcription initiation [GO:0006352]; mRNA transcription by RNA polymerase II [GO:0042789]; ovarian follicle development [GO:0001541]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; regulation of DNA repair [GO:0006282]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA polymerase II preinitiation complex assembly [GO:0051123]; transcription by RNA polymerase II [GO:0006366]; transcription initiation at RNA polymerase II promoter [GO:0006367] -O00287 reviewed RFXAP_HUMAN Regulatory factor X-associated protein (RFX-associated protein) (RFX DNA-binding complex 36 kDa subunit) RFXAP positive regulation of MHC class II biosynthetic process [GO:0045348]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -O00308 reviewed WWP2_HUMAN NEDD4-like E3 ubiquitin-protein ligase WWP2 (EC 2.3.2.26) (Atrophin-1-interacting protein 2) (AIP2) (HECT-type E3 ubiquitin transferase WWP2) (WW domain-containing protein 2) WWP2 extracellular transport [GO:0006858]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of gene expression [GO:0010629]; negative regulation of Notch signaling pathway [GO:0045746]; negative regulation of protein transport [GO:0051224]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transporter activity [GO:0032410]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; protein autoubiquitination [GO:0051865]; protein K63-linked ubiquitination [GO:0070534]; protein modification process [GO:0036211]; protein ubiquitination [GO:0016567]; regulation of membrane potential [GO:0042391]; regulation of monoatomic ion transmembrane transport [GO:0034765]; regulation of potassium ion transmembrane transporter activity [GO:1901016]; symbiont entry into host cell [GO:0046718]; transcription by RNA polymerase II [GO:0006366] -O00327 reviewed BMAL1_HUMAN Basic helix-loop-helix ARNT-like protein 1 (Aryl hydrocarbon receptor nuclear translocator-like protein 1) (Basic-helix-loop-helix-PAS protein MOP3) (Brain and muscle ARNT-like 1) (Class E basic helix-loop-helix protein 5) (bHLHe5) (Member of PAS protein 3) (PAS domain-containing protein 3) (bHLH-PAS protein JAP3) BMAL1 ARNTL BHLHE5 MOP3 PASD3 circadian regulation of gene expression [GO:0032922]; circadian rhythm [GO:0007623]; energy homeostasis [GO:0097009]; negative regulation of cold-induced thermogenesis [GO:0120163]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of glucocorticoid receptor signaling pathway [GO:2000323]; negative regulation of TOR signaling [GO:0032007]; oxidative stress-induced premature senescence [GO:0090403]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of circadian rhythm [GO:0042753]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of protein acetylation [GO:1901985]; positive regulation of skeletal muscle cell differentiation [GO:2001016]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; regulation of cell cycle [GO:0051726]; regulation of cellular senescence [GO:2000772]; regulation of DNA-templated transcription [GO:0006355]; regulation of hair cycle [GO:0042634]; regulation of insulin secretion [GO:0050796]; regulation of neurogenesis [GO:0050767]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of type B pancreatic cell development [GO:2000074]; response to redox state [GO:0051775]; spermatogenesis [GO:0007283] -O00401 reviewed WASL_HUMAN Actin nucleation-promoting factor WASL (Neural Wiskott-Aldrich syndrome protein) (N-WASP) WASL actin filament polymerization [GO:0030041]; actin polymerization or depolymerization [GO:0008154]; cell division [GO:0051301]; dendritic spine morphogenesis [GO:0060997]; negative regulation of lymphocyte migration [GO:2000402]; negative regulation of membrane tubulation [GO:1903526]; positive regulation of clathrin-dependent endocytosis [GO:2000370]; positive regulation of filopodium assembly [GO:0051491]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein-containing complex assembly [GO:0065003]; protein-containing complex localization [GO:0031503]; regulation of postsynapse organization [GO:0099175]; regulation of protein localization [GO:0032880]; response to bacterium [GO:0009617]; spindle localization [GO:0051653]; vesicle budding from membrane [GO:0006900]; vesicle organization [GO:0016050]; vesicle transport along actin filament [GO:0030050] -O00459 reviewed P85B_HUMAN Phosphatidylinositol 3-kinase regulatory subunit beta (PI3-kinase regulatory subunit beta) (PI3K regulatory subunit beta) (PtdIns-3-kinase regulatory subunit beta) (Phosphatidylinositol 3-kinase 85 kDa regulatory subunit beta) (PI3-kinase subunit p85-beta) (PtdIns-3-kinase regulatory subunit p85-beta) PIK3R2 B cell differentiation [GO:0030183]; cellular response to insulin stimulus [GO:0032869]; immune response [GO:0006955]; insulin receptor signaling pathway [GO:0008286]; intracellular glucose homeostasis [GO:0001678]; negative regulation of MAPK cascade [GO:0043409]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; phosphatidylinositol phosphate biosynthetic process [GO:0046854]; positive regulation of cell adhesion [GO:0045785]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein transport [GO:0015031]; regulation of actin filament polymerization [GO:0030833]; regulation of autophagy [GO:0010506]; regulation of protein localization to plasma membrane [GO:1903076]; regulation of stress fiber assembly [GO:0051492]; response to endoplasmic reticulum stress [GO:0034976]; T cell differentiation [GO:0030217] -O00468 reviewed AGRIN_HUMAN Agrin [Cleaved into: Agrin N-terminal 110 kDa subunit; Agrin C-terminal 110 kDa subunit; Agrin C-terminal 90 kDa fragment (C90); Agrin C-terminal 22 kDa fragment (C22)] AGRN AGRIN clustering of voltage-gated sodium channels [GO:0045162]; G protein-coupled acetylcholine receptor signaling pathway [GO:0007213]; neuromuscular junction development [GO:0007528]; positive regulation of filopodium assembly [GO:0051491]; positive regulation of GTPase activity [GO:0043547]; positive regulation of synaptic assembly at neuromuscular junction [GO:0045887]; positive regulation of transcription by RNA polymerase II [GO:0045944]; receptor clustering [GO:0043113]; signal transduction [GO:0007165]; synapse organization [GO:0050808] -O00470 reviewed MEIS1_HUMAN Homeobox protein Meis1 MEIS1 angiogenesis [GO:0001525]; animal organ morphogenesis [GO:0009887]; brain development [GO:0007420]; cell growth involved in cardiac muscle cell development [GO:0061049]; definitive hemopoiesis [GO:0060216]; embryonic pattern specification [GO:0009880]; eye development [GO:0001654]; hemopoiesis [GO:0030097]; lens morphogenesis in camera-type eye [GO:0002089]; locomotory behavior [GO:0007626]; megakaryocyte development [GO:0035855]; negative regulation of myeloid cell differentiation [GO:0045638]; negative regulation of neuron differentiation [GO:0045665]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of transcription by RNA polymerase II [GO:0045944] -O00472 reviewed ELL2_HUMAN RNA polymerase II elongation factor ELL2 ELL2 positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; snRNA transcription by RNA polymerase II [GO:0042795]; transcription elongation by RNA polymerase II [GO:0006368] -O00482 reviewed NR5A2_HUMAN Nuclear receptor subfamily 5 group A member 2 (Alpha-1-fetoprotein transcription factor) (B1-binding factor) (hB1F) (CYP7A promoter-binding factor) (Hepatocytic transcription factor) (Liver receptor homolog 1) (LRH-1) NR5A2 B1F CPF FTF acinar cell differentiation [GO:0090425]; bile acid metabolic process [GO:0008206]; calcineurin-mediated signaling [GO:0097720]; cellular response to leukemia inhibitory factor [GO:1990830]; cholesterol homeostasis [GO:0042632]; embryo development ending in birth or egg hatching [GO:0009792]; homeostatic process [GO:0042592]; hormone-mediated signaling pathway [GO:0009755]; pancreas morphogenesis [GO:0061113]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of viral genome replication [GO:0045070]; regulation of cell population proliferation [GO:0042127]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; tissue development [GO:0009888] -O00488 reviewed ZN593_HUMAN Zinc finger protein 593 (Zinc finger protein T86) ZNF593 ZT86 negative regulation of RNA polymerase II regulatory region sequence-specific DNA binding [GO:1903026]; positive regulation of transcription by RNA polymerase II [GO:0045944]; ribosome biogenesis [GO:0042254] -O00512 reviewed BCL9_HUMAN B-cell CLL/lymphoma 9 protein (B-cell lymphoma 9 protein) (Bcl-9) (Protein legless homolog) BCL9 canonical Wnt signaling pathway [GO:0060070]; myoblast differentiation [GO:0045445]; myotube differentiation involved in skeletal muscle regeneration [GO:0014908]; positive regulation of transcription by RNA polymerase II [GO:0045944]; skeletal muscle cell differentiation [GO:0035914]; somatic stem cell population maintenance [GO:0035019]; transcription by RNA polymerase II [GO:0006366] -O00548 reviewed DLL1_HUMAN Delta-like protein 1 (Drosophila Delta homolog 1) (Delta1) (H-Delta-1) DLL1 UNQ146/PRO172 astrocyte development [GO:0014002]; cell differentiation [GO:0030154]; cell fate determination [GO:0001709]; cerebellar molecular layer formation [GO:0021688]; cerebellar Purkinje cell layer structural organization [GO:0021693]; clathrin-dependent endocytosis [GO:0072583]; compartment pattern specification [GO:0007386]; determination of left/right symmetry [GO:0007368]; endothelial tip cell fate specification [GO:0097102]; energy homeostasis [GO:0097009]; heart looping [GO:0001947]; hemopoiesis [GO:0030097]; inhibition of neuroepithelial cell differentiation [GO:0002085]; inner ear auditory receptor cell differentiation [GO:0042491]; lateral inhibition [GO:0046331]; left/right axis specification [GO:0070986]; loop of Henle development [GO:0072070]; marginal zone B cell differentiation [GO:0002315]; myeloid cell differentiation [GO:0030099]; negative regulation of cardiac muscle cell differentiation [GO:2000726]; negative regulation of cell differentiation [GO:0045596]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of epidermal cell differentiation [GO:0045605]; negative regulation of epithelial cell differentiation [GO:0030857]; negative regulation of glial cell apoptotic process [GO:0034351]; negative regulation of hemocyte differentiation [GO:0045611]; negative regulation of inner ear auditory receptor cell differentiation [GO:0045608]; negative regulation of interleukin-10 production [GO:0032693]; negative regulation of myeloid cell differentiation [GO:0045638]; negative regulation of myoblast differentiation [GO:0045662]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of Notch signaling pathway [GO:0045746]; nephron development [GO:0072006]; neuroepithelial cell differentiation [GO:0060563]; neuron fate specification [GO:0048665]; neuronal stem cell population maintenance [GO:0097150]; Notch signaling pathway [GO:0007219]; Notch signaling pathway involved in arterial endothelial cell fate commitment [GO:0060853]; organ growth [GO:0035265]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of endocytosis [GO:0045807]; positive regulation of gene expression [GO:0010628]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of skeletal muscle tissue growth [GO:0048633]; positive regulation of sprouting angiogenesis [GO:1903672]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proximal tubule development [GO:0072014]; proximal/distal pattern formation [GO:0009954]; regulation of blood pressure [GO:0008217]; regulation of cell adhesion [GO:0030155]; regulation of cell division [GO:0051302]; regulation of growth [GO:0040008]; regulation of neurogenesis [GO:0050767]; regulation of skeletal muscle tissue growth [GO:0048631]; regulation of somitogenesis [GO:0014807]; regulation of vascular endothelial growth factor receptor signaling pathway [GO:0030947]; regulation of vascular endothelial growth factor signaling pathway [GO:1900746]; retina development in camera-type eye [GO:0060041]; retina morphogenesis in camera-type eye [GO:0060042]; skeletal muscle tissue growth [GO:0048630]; skin epidermis development [GO:0098773]; somite specification [GO:0001757]; somitogenesis [GO:0001756]; spinal cord development [GO:0021510]; type B pancreatic cell development [GO:0003323] -O00571 reviewed DDX3X_HUMAN ATP-dependent RNA helicase DDX3X (EC 3.6.4.13) (CAP-Rf) (DEAD box protein 3, X-chromosomal) (DEAD box, X isoform) (DBX) (Helicase-like protein 2) (HLP2) DDX3X DBX DDX3 cell differentiation [GO:0030154]; cellular response to arsenic-containing substance [GO:0071243]; cellular response to osmotic stress [GO:0071470]; cellular response to virus [GO:0098586]; chromosome segregation [GO:0007059]; cytosolic ribosome assembly [GO:0042256]; extrinsic apoptotic signaling pathway via death domain receptors [GO:0008625]; gamete generation [GO:0007276]; innate immune response [GO:0045087]; intracellular signal transduction [GO:0035556]; intrinsic apoptotic signaling pathway [GO:0097193]; lipid homeostasis [GO:0055088]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cell growth [GO:0030308]; negative regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043154]; negative regulation of extrinsic apoptotic signaling pathway via death domain receptors [GO:1902042]; negative regulation of gene expression [GO:0010629]; negative regulation of intrinsic apoptotic signaling pathway [GO:2001243]; negative regulation of non-canonical NF-kappaB signal transduction [GO:1901223]; negative regulation of protein-containing complex assembly [GO:0031333]; negative regulation of translation [GO:0017148]; positive regulation of apoptotic process [GO:0043065]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of cell growth [GO:0030307]; positive regulation of chemokine (C-C motif) ligand 5 production [GO:0071651]; positive regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043280]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of gene expression [GO:0010628]; positive regulation of interferon-alpha production [GO:0032727]; positive regulation of interferon-beta production [GO:0032728]; positive regulation of NLRP3 inflammasome complex assembly [GO:1900227]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of protein acetylation [GO:1901985]; positive regulation of protein autophosphorylation [GO:0031954]; positive regulation of protein K63-linked ubiquitination [GO:1902523]; positive regulation of protein serine/threonine kinase activity [GO:0071902]; positive regulation of toll-like receptor 7 signaling pathway [GO:0034157]; positive regulation of toll-like receptor 8 signaling pathway [GO:0034161]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of translation [GO:0045727]; positive regulation of translation in response to endoplasmic reticulum stress [GO:0036493]; positive regulation of translational initiation [GO:0045948]; positive regulation of type I interferon production [GO:0032481]; positive regulation of viral genome replication [GO:0045070]; protein localization to cytoplasmic stress granule [GO:1903608]; response to virus [GO:0009615]; RNA secondary structure unwinding [GO:0010501]; stress granule assembly [GO:0034063]; translational initiation [GO:0006413]; Wnt signaling pathway [GO:0016055] -O00622 reviewed CCN1_HUMAN CCN family member 1 (Cellular communication network factor 1) (Cysteine-rich angiogenic inducer 61) (Insulin-like growth factor-binding protein 10) (IBP-10) (IGF-binding protein 10) (IGFBP-10) (Protein CYR61) (Protein GIG1) CCN1 CYR61 GIG1 IGFBP10 apoptotic process involved in heart morphogenesis [GO:0003278]; atrial septum morphogenesis [GO:0060413]; atrioventricular valve morphogenesis [GO:0003181]; cell adhesion [GO:0007155]; chemotaxis [GO:0006935]; chondroblast differentiation [GO:0060591]; chorio-allantoic fusion [GO:0060710]; extracellular matrix organization [GO:0030198]; intussusceptive angiogenesis [GO:0002041]; labyrinthine layer blood vessel development [GO:0060716]; negative regulation of apoptotic process [GO:0043066]; osteoblast differentiation [GO:0001649]; positive regulation of apoptotic process [GO:0043065]; positive regulation of BMP signaling pathway [GO:0030513]; positive regulation of bone mineralization [GO:0030501]; positive regulation of cartilage development [GO:0061036]; positive regulation of cell differentiation [GO:0045597]; positive regulation of cell migration [GO:0030335]; positive regulation of cell-substrate adhesion [GO:0010811]; positive regulation of ceramide biosynthetic process [GO:2000304]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of osteoblast proliferation [GO:0033690]; positive regulation of protein kinase activity [GO:0045860]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of transcription by RNA polymerase II [GO:0045944]; reactive oxygen species metabolic process [GO:0072593]; regulation of ERK1 and ERK2 cascade [GO:0070372]; signal transduction [GO:0007165]; ventricular septum development [GO:0003281]; wound healing, spreading of cells [GO:0044319] -O00712 reviewed NFIB_HUMAN Nuclear factor 1 B-type (NF1-B) (Nuclear factor 1/B) (CCAAT-box-binding transcription factor) (CTF) (Nuclear factor I/B) (NF-I/B) (NFI-B) (TGGCA-binding protein) NFIB anterior commissure morphogenesis [GO:0021960]; brain development [GO:0007420]; cell differentiation involved in salivary gland development [GO:0060689]; cell proliferation in forebrain [GO:0021846]; chondrocyte differentiation [GO:0002062]; club cell differentiation [GO:0060486]; commissural neuron axon guidance [GO:0071679]; DNA replication [GO:0006260]; exit from mitosis [GO:0010458]; gene expression [GO:0010467]; glandular epithelial cell differentiation [GO:0002067]; glial cell differentiation [GO:0010001]; glial cell fate specification [GO:0021780]; glial cell proliferation [GO:0014009]; hindbrain development [GO:0030902]; lung ciliated cell differentiation [GO:0061141]; negative regulation of DNA binding [GO:0043392]; negative regulation of epithelial cell proliferation involved in lung morphogenesis [GO:2000795]; negative regulation of mesenchymal cell proliferation involved in lung development [GO:2000791]; negative regulation of miRNA transcription [GO:1902894]; negative regulation of stem cell proliferation [GO:2000647]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron fate specification [GO:0048665]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; principal sensory nucleus of trigeminal nerve development [GO:0021740]; regeneration [GO:0031099]; regulation of transcription by RNA polymerase II [GO:0006357]; response to bacterium [GO:0009617]; response to wounding [GO:0009611]; retina development in camera-type eye [GO:0060041]; salivary gland cavitation [GO:0060662]; stem cell population maintenance [GO:0019827]; stem cell proliferation [GO:0072089]; tissue homeostasis [GO:0001894]; type I pneumocyte differentiation [GO:0060509]; type II pneumocyte differentiation [GO:0060510] -O00716 reviewed E2F3_HUMAN Transcription factor E2F3 (E2F-3) E2F3 KIAA0075 G1/S transition of mitotic cell cycle [GO:0000082]; negative regulation of fat cell proliferation [GO:0070345]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular associated smooth muscle cell apoptotic process [GO:1905461]; protein import into nucleus [GO:0006606]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription initiation at RNA polymerase II promoter [GO:0006367] -O00744 reviewed WN10B_HUMAN Protein Wnt-10b (Protein Wnt-12) WNT10B WNT12 bone trabecula formation [GO:0060346]; canonical Wnt signaling pathway [GO:0060070]; cell fate commitment [GO:0045165]; cellular response to cAMP [GO:0071320]; cellular response to parathyroid hormone stimulus [GO:0071374]; cellular response to retinoic acid [GO:0071300]; chondrocyte differentiation [GO:0002062]; epithelial cell differentiation [GO:0030855]; fat cell differentiation [GO:0045444]; fungiform papilla development [GO:0061196]; G2/M transition of mitotic cell cycle [GO:0000086]; hematopoietic stem cell proliferation [GO:0071425]; lipid metabolic process [GO:0006629]; myoblast development [GO:0048627]; myoblast differentiation involved in skeletal muscle regeneration [GO:0014835]; negative regulation of cold-induced thermogenesis [GO:0120163]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron differentiation [GO:0030182]; osteoblast differentiation [GO:0001649]; positive regulation of apoptotic process [GO:0043065]; positive regulation of bone mineralization [GO:0030501]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of epithelial cell differentiation [GO:0030858]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; positive regulation of hematopoietic stem cell proliferation [GO:1902035]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of RNA polymerase II transcription preinitiation complex assembly [GO:0045899]; positive regulation of T cell differentiation [GO:0045582]; positive regulation of timing of anagen [GO:0051885]; protein stabilization [GO:0050821]; regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032434]; regulation of skeletal muscle tissue development [GO:0048641]; sensory perception of taste [GO:0050909]; skeletal muscle fiber development [GO:0048741]; smoothened signaling pathway [GO:0007224]; T cell differentiation [GO:0030217]; transcription by RNA polymerase II [GO:0006366] -O00755 reviewed WNT7A_HUMAN Protein Wnt-7a WNT7A angiogenesis [GO:0001525]; apoptotic process [GO:0006915]; asymmetric protein localization involved in cell fate determination [GO:0045167]; axonogenesis [GO:0007409]; canonical Wnt signaling pathway [GO:0060070]; cartilage condensation [GO:0001502]; cell fate commitment [GO:0045165]; cell proliferation in forebrain [GO:0021846]; cellular response to transforming growth factor beta stimulus [GO:0071560]; central nervous system vasculogenesis [GO:0022009]; cerebellar granule cell differentiation [GO:0021707]; chondrocyte differentiation [GO:0002062]; dendritic spine morphogenesis [GO:0060997]; dorsal/ventral pattern formation [GO:0009953]; embryonic axis specification [GO:0000578]; embryonic digit morphogenesis [GO:0042733]; embryonic forelimb morphogenesis [GO:0035115]; embryonic hindlimb morphogenesis [GO:0035116]; establishment of blood-brain barrier [GO:0060856]; establishment of cell polarity [GO:0030010]; excitatory synapse assembly [GO:1904861]; lens fiber cell development [GO:0070307]; negative regulation of apoptotic process [GO:0043066]; negative regulation of neurogenesis [GO:0050768]; neuron differentiation [GO:0030182]; neurotransmitter secretion [GO:0007269]; oviduct development [GO:0060066]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of epithelial cell proliferation involved in wound healing [GO:0060054]; positive regulation of excitatory postsynaptic potential [GO:2000463]; positive regulation of excitatory synapse assembly [GO:1904891]; positive regulation of gene expression [GO:0010628]; positive regulation of JNK cascade [GO:0046330]; positive regulation of protein localization to presynapse [GO:1905386]; positive regulation of protein metabolic process [GO:0051247]; positive regulation of synapse assembly [GO:0051965]; positive regulation of transcription by RNA polymerase II [GO:0045944]; postsynapse assembly [GO:0099068]; presynapse assembly [GO:0099054]; regulation of axon diameter [GO:0031133]; regulation of postsynapse organization [GO:0099175]; regulation of presynapse assembly [GO:1905606]; regulation of synaptic vesicle exocytosis [GO:2000300]; response to estradiol [GO:0032355]; response to estrogen [GO:0043627]; secondary palate development [GO:0062009]; sex differentiation [GO:0007548]; skeletal muscle satellite cell activation [GO:0014719]; skeletal muscle satellite cell maintenance involved in skeletal muscle regeneration [GO:0014834]; somatic stem cell division [GO:0048103]; somatic stem cell population maintenance [GO:0035019]; stem cell development [GO:0048864]; synaptic vesicle recycling [GO:0036465]; uterus morphogenesis [GO:0061038]; Wnt signaling pathway, planar cell polarity pathway [GO:0060071]; wound healing, spreading of epidermal cells [GO:0035313] -O14593 reviewed RFXK_HUMAN DNA-binding protein RFXANK (Ankyrin repeat family A protein 1) (Regulatory factor X subunit B) (RFX-B) (Regulatory factor X-associated ankyrin-containing protein) RFXANK ANKRA1 RFXB positive regulation of MHC class II biosynthetic process [GO:0045348]; positive regulation of transcription by RNA polymerase II [GO:0045944]; Ras protein signal transduction [GO:0007265]; regulation of transcription by RNA polymerase II [GO:0006357] -O14617 reviewed AP3D1_HUMAN AP-3 complex subunit delta-1 (AP-3 complex subunit delta) (Adaptor-related protein complex 3 subunit delta-1) (Delta-adaptin) AP3D1 PRO0039 anterograde axonal transport [GO:0008089]; anterograde synaptic vesicle transport [GO:0048490]; antigen processing and presentation, exogenous lipid antigen via MHC class Ib [GO:0048007]; clathrin-coated vesicle cargo loading, AP-3-mediated [GO:0035654]; endosome to melanosome transport [GO:0035646]; Golgi to vacuole transport [GO:0006896]; intracellular protein transport [GO:0006886]; intracellular transport [GO:0046907]; melanosome assembly [GO:1903232]; melanosome organization [GO:0032438]; neurotransmitter receptor transport, postsynaptic endosome to lysosome [GO:0098943]; platelet dense granule organization [GO:0060155]; positive regulation of NK T cell differentiation [GO:0051138]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to membrane [GO:0072657]; protein targeting to vacuole [GO:0006623]; synaptic vesicle budding from endosome [GO:0016182]; synaptic vesicle coating [GO:0016183]; synaptic vesicle membrane organization [GO:0048499]; synaptic vesicle recycling [GO:0036465]; vesicle-mediated transport [GO:0016192]; zinc ion import into lysosome [GO:0140916] -O14627 reviewed CDX4_HUMAN Homeobox protein CDX-4 (Caudal-type homeobox protein 4) CDX4 animal organ morphogenesis [GO:0009887]; anterior/posterior axis specification [GO:0009948]; blood vessel development [GO:0001568]; cell differentiation [GO:0030154]; labyrinthine layer development [GO:0060711]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -O14640 reviewed DVL1_HUMAN Segment polarity protein dishevelled homolog DVL-1 (Dishevelled-1) (DSH homolog 1) DVL1 axon extension [GO:0048675]; axon guidance [GO:0007411]; canonical Wnt signaling pathway [GO:0060070]; cochlea morphogenesis [GO:0090103]; collateral sprouting [GO:0048668]; convergent extension involved in neural plate elongation [GO:0022007]; cytoplasmic microtubule organization [GO:0031122]; dendrite morphogenesis [GO:0048813]; dendritic spine morphogenesis [GO:0060997]; heart looping [GO:0001947]; intracellular signal transduction [GO:0035556]; negative regulation of protein phosphorylation [GO:0001933]; neural tube development [GO:0021915]; neuromuscular junction development [GO:0007528]; neurotransmitter secretion [GO:0007269]; non-canonical Wnt signaling pathway [GO:0035567]; outflow tract morphogenesis [GO:0003151]; planar cell polarity pathway involved in neural tube closure [GO:0090179]; positive regulation of excitatory postsynaptic potential [GO:2000463]; positive regulation of neuron projection arborization [GO:0150012]; positive regulation of neuron projection development [GO:0010976]; positive regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032436]; positive regulation of protein localization to presynapse [GO:1905386]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of transcription by RNA polymerase II [GO:0045944]; prepulse inhibition [GO:0060134]; presynapse assembly [GO:0099054]; protein localization to microtubule [GO:0035372]; protein localization to nucleus [GO:0034504]; protein stabilization [GO:0050821]; receptor clustering [GO:0043113]; regulation of DNA-templated transcription [GO:0006355]; regulation of postsynapse organization [GO:0099175]; regulation of protein localization [GO:0032880]; regulation of synaptic vesicle exocytosis [GO:2000300]; skeletal muscle acetylcholine-gated channel clustering [GO:0071340]; social behavior [GO:0035176]; synapse organization [GO:0050808]; synaptic vesicle exocytosis [GO:0016079]; Wnt signaling pathway, planar cell polarity pathway [GO:0060071] -O14641 reviewed DVL2_HUMAN Segment polarity protein dishevelled homolog DVL-2 (Dishevelled-2) (DSH homolog 2) DVL2 canonical Wnt signaling pathway [GO:0060070]; cochlea morphogenesis [GO:0090103]; convergent extension involved in neural plate elongation [GO:0022007]; heart development [GO:0007507]; heart looping [GO:0001947]; intracellular signal transduction [GO:0035556]; neural tube closure [GO:0001843]; non-canonical Wnt signaling pathway [GO:0035567]; outflow tract morphogenesis [GO:0003151]; planar cell polarity pathway involved in neural tube closure [GO:0090179]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of JNK cascade [GO:0046330]; positive regulation of JUN kinase activity [GO:0043507]; positive regulation of neuron projection arborization [GO:0150012]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization [GO:0008104]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of cell population proliferation [GO:0042127]; regulation of DNA-templated transcription [GO:0006355]; segment specification [GO:0007379]; Wnt signaling pathway, planar cell polarity pathway [GO:0060071] -O14686 reviewed KMT2D_HUMAN Histone-lysine N-methyltransferase 2D (Lysine N-methyltransferase 2D) (EC 2.1.1.364) (ALL1-related protein) (Myeloid/lymphoid or mixed-lineage leukemia protein 2) KMT2D ALR MLL2 MLL4 beta-catenin-TCF complex assembly [GO:1904837]; heterochromatin formation [GO:0031507]; methylation [GO:0032259]; oocyte growth [GO:0001555]; oogenesis [GO:0048477]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of intracellular estrogen receptor signaling pathway [GO:0033148]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; response to estrogen [GO:0043627] -O14713 reviewed ITBP1_HUMAN Integrin beta-1-binding protein 1 (Integrin cytoplasmic domain-associated protein 1) (ICAP-1) ITGB1BP1 ICAP1 activation of protein kinase B activity [GO:0032148]; biomineral tissue development [GO:0031214]; blood vessel diameter maintenance [GO:0097746]; blood vessel endothelial cell proliferation involved in sprouting angiogenesis [GO:0002043]; cell differentiation [GO:0030154]; cell migration [GO:0016477]; cell-matrix adhesion [GO:0007160]; cellular response to fibroblast growth factor stimulus [GO:0044344]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; integrin activation [GO:0033622]; integrin-mediated signaling pathway [GO:0007229]; intracellular signal transduction [GO:0035556]; myoblast migration [GO:0051451]; negative regulation of cell adhesion involved in substrate-bound cell migration [GO:0006933]; negative regulation of cell migration involved in sprouting angiogenesis [GO:0090051]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of ERK1 and ERK2 cascade [GO:0070373]; negative regulation of fibroblast migration [GO:0010764]; negative regulation of focal adhesion assembly [GO:0051895]; negative regulation of protein binding [GO:0032091]; negative regulation of protein kinase activity [GO:0006469]; negative regulation of protein targeting to membrane [GO:0090315]; negative regulation of substrate adhesion-dependent cell spreading [GO:1900025]; Notch signaling pathway [GO:0007219]; positive regulation of cell division [GO:0051781]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of focal adhesion assembly [GO:0051894]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of protein targeting to membrane [GO:0090314]; positive regulation of stress fiber assembly [GO:0051496]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to plasma membrane [GO:0072659]; receptor clustering [GO:0043113]; regulation of cell adhesion mediated by integrin [GO:0033628]; regulation of GTPase activity [GO:0043087]; regulation of integrin-mediated signaling pathway [GO:2001044]; tube formation [GO:0035148] -O14770 reviewed MEIS2_HUMAN Homeobox protein Meis2 (Meis1-related protein 1) MEIS2 MRG1 animal organ morphogenesis [GO:0009887]; brain development [GO:0007420]; embryonic pattern specification [GO:0009880]; eye development [GO:0001654]; negative regulation of myeloid cell differentiation [GO:0045638]; negative regulation of transcription by RNA polymerase II [GO:0000122]; pancreas development [GO:0031016]; positive regulation of cardiac muscle myoblast proliferation [GO:0110024]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of mitotic cell cycle [GO:0045931]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to growth factor [GO:0070848]; response to mechanical stimulus [GO:0009612]; visual learning [GO:0008542] -O14776 reviewed TCRG1_HUMAN Transcription elongation regulator 1 (TATA box-binding protein-associated factor 2S) (Transcription factor CA150) TCERG1 CA150 TAF2S mRNA processing [GO:0006397]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transcription elongation by RNA polymerase II [GO:0034244]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; RNA splicing [GO:0008380] -O14788 reviewed TNF11_HUMAN Tumor necrosis factor ligand superfamily member 11 (Osteoclast differentiation factor) (ODF) (Osteoprotegerin ligand) (OPGL) (Receptor activator of nuclear factor kappa-B ligand) (RANKL) (TNF-related activation-induced cytokine) (TRANCE) (CD antigen CD254) [Cleaved into: Tumor necrosis factor ligand superfamily member 11, membrane form; Tumor necrosis factor ligand superfamily member 11, soluble form] TNFSF11 OPGL RANKL TRANCE bone resorption [GO:0045453]; calcium ion homeostasis [GO:0055074]; calcium-mediated signaling [GO:0019722]; cellular response to leukemia inhibitory factor [GO:1990830]; cytokine-mediated signaling pathway [GO:0019221]; ERK1 and ERK2 cascade [GO:0070371]; immune response [GO:0006955]; JNK cascade [GO:0007254]; mammary gland alveolus development [GO:0060749]; mammary gland epithelial cell proliferation [GO:0033598]; monocyte chemotaxis [GO:0002548]; negative regulation of transcription by RNA polymerase II [GO:0000122]; ossification [GO:0001503]; osteoclast development [GO:0036035]; osteoclast differentiation [GO:0030316]; osteoclast proliferation [GO:0002158]; paracrine signaling [GO:0038001]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; positive regulation of bone resorption [GO:0045780]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of corticotropin-releasing hormone secretion [GO:0051466]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of fever generation by positive regulation of prostaglandin secretion [GO:0071812]; positive regulation of gene expression [GO:0010628]; positive regulation of homotypic cell-cell adhesion [GO:0034112]; positive regulation of intracellular signal transduction [GO:1902533]; positive regulation of JNK cascade [GO:0046330]; positive regulation of MAP kinase activity [GO:0043406]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of osteoclast development [GO:2001206]; positive regulation of osteoclast differentiation [GO:0045672]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of T cell activation [GO:0050870]; positive regulation of transcription by RNA polymerase II [GO:0045944]; tooth eruption [GO:0044691]; tumor necrosis factor-mediated signaling pathway [GO:0033209] -O14813 reviewed PHX2A_HUMAN Paired mesoderm homeobox protein 2A (ARIX1 homeodomain protein) (Aristaless homeobox protein homolog) (Paired-like homeobox 2A) PHOX2A ARIX PMX2A dopaminergic neuron differentiation [GO:0071542]; locus ceruleus development [GO:0021703]; midbrain development [GO:0030901]; noradrenergic neuron differentiation [GO:0003357]; oculomotor nerve formation [GO:0021623]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of respiratory gaseous exchange [GO:0043576]; regulation of transcription by RNA polymerase II [GO:0006357]; somatic motor neuron differentiation [GO:0021523]; sympathetic nervous system development [GO:0048485]; trochlear nerve formation [GO:0021642] -O14867 reviewed BACH1_HUMAN Transcription regulator protein BACH1 (BTB and CNC homolog 1) (HA2303) BACH1 DNA repair [GO:0006281]; negative regulation of transcription by RNA polymerase II [GO:0000122]; regulation of DNA-templated transcription [GO:0006355]; regulation of metabolic process [GO:0019222]; regulation of transcription by RNA polymerase II [GO:0006357] -O14896 reviewed IRF6_HUMAN Interferon regulatory factor 6 (IRF-6) IRF6 cell development [GO:0048468]; cranial skeletal system development [GO:1904888]; immune system process [GO:0002376]; keratinocyte differentiation [GO:0030216]; keratinocyte proliferation [GO:0043616]; limb development [GO:0060173]; mammary gland epithelial cell differentiation [GO:0060644]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of keratinocyte proliferation [GO:0010839]; negative regulation of stem cell proliferation [GO:2000647]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; roof of mouth development [GO:0060021]; stem cell proliferation [GO:0072089] -O14920 reviewed IKKB_HUMAN Inhibitor of nuclear factor kappa-B kinase subunit beta (I-kappa-B-kinase beta) (IKK-B) (IKK-beta) (IkBKB) (EC 2.7.11.10) (I-kappa-B kinase 2) (IKK-2) (IKK2) (Nuclear factor NF-kappa-B inhibitor kinase beta) (NFKBIKB) (Serine/threonine protein kinase IKBKB) (EC 2.7.11.1) IKBKB IKKB antigen processing and presentation of exogenous peptide antigen via MHC class I, TAP-dependent [GO:0002479]; canonical NF-kappaB signal transduction [GO:0007249]; cellular response to tumor necrosis factor [GO:0071356]; cortical actin cytoskeleton organization [GO:0030866]; Fc-epsilon receptor signaling pathway [GO:0038095]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; interleukin-1-mediated signaling pathway [GO:0070498]; MyD88-dependent toll-like receptor signaling pathway [GO:0002755]; negative regulation of bicellular tight junction assembly [GO:1903347]; negative regulation of myosin-light-chain-phosphatase activity [GO:0035509]; peptidyl-serine phosphorylation [GO:0018105]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to plasma membrane [GO:0072659]; protein maturation [GO:0051604]; protein phosphorylation [GO:0006468]; regulation of establishment of endothelial barrier [GO:1903140]; regulation of phosphorylation [GO:0042325]; regulation of tumor necrosis factor-mediated signaling pathway [GO:0010803]; response to virus [GO:0009615]; stimulatory C-type lectin receptor signaling pathway [GO:0002223]; stress-activated MAPK cascade [GO:0051403]; T cell receptor signaling pathway [GO:0050852]; toll-like receptor 3 signaling pathway [GO:0034138]; TRIF-dependent toll-like receptor signaling pathway [GO:0035666]; tumor necrosis factor-mediated signaling pathway [GO:0033209] -O14936 reviewed CSKP_HUMAN Peripheral plasma membrane protein CASK (hCASK) (EC 2.7.11.1) (Calcium/calmodulin-dependent serine protein kinase) (Protein lin-2 homolog) CASK LIN2 calcium ion import [GO:0070509]; cell adhesion [GO:0007155]; establishment of localization in cell [GO:0051649]; negative regulation of cell-matrix adhesion [GO:0001953]; negative regulation of cellular response to growth factor stimulus [GO:0090288]; negative regulation of keratinocyte proliferation [GO:0010839]; negative regulation of wound healing [GO:0061045]; positive regulation of calcium ion import [GO:0090280]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization [GO:0008104]; regulation of neurotransmitter secretion [GO:0046928]; regulation of synaptic vesicle exocytosis [GO:2000300] -O14948 reviewed TFEC_HUMAN Transcription factor EC (TFE-C) (Class E basic helix-loop-helix protein 34) (bHLHe34) (Transcription factor EC-like) (hTFEC-L) TFEC BHLHE34 TCFEC TFECL cellular response to heat [GO:0034605]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -O14974 reviewed MYPT1_HUMAN Protein phosphatase 1 regulatory subunit 12A (Myosin phosphatase-targeting subunit 1) (Myosin phosphatase target subunit 1) (Protein phosphatase myosin-binding subunit) PPP1R12A MBS MYPT1 cellular response to xenobiotic stimulus [GO:0071466]; centrosome cycle [GO:0007098]; mitotic cell cycle [GO:0000278]; negative regulation of catalytic activity [GO:0043086]; positive regulation of myosin-light-chain-phosphatase activity [GO:0035508]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein dephosphorylation [GO:0006470]; regulation of cell adhesion [GO:0030155]; regulation of myosin-light-chain-phosphatase activity [GO:0035507]; regulation of nucleocytoplasmic transport [GO:0046822]; signal transduction [GO:0007165] -O14978 reviewed ZN263_HUMAN Zinc finger protein 263 (Zinc finger protein FPM315) (Zinc finger protein with KRAB and SCAN domains 12) ZNF263 FPM315 ZKSCAN12 negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357] -O15014 reviewed ZN609_HUMAN Zinc finger protein 609 ZNF609 KIAA0295 muscle organ development [GO:0007517]; positive regulation of neuron migration [GO:2001224]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of myoblast proliferation [GO:2000291]; regulation of transcription by RNA polymerase II [GO:0006357] -O15054 reviewed KDM6B_HUMAN Lysine-specific demethylase 6B (EC 1.14.11.68) (JmjC domain-containing protein 3) (Jumonji domain-containing protein 3) (Lysine demethylase 6B) ([histone H3]-trimethyl-L-lysine(27) demethylase 6B) KDM6B JMJD3 KIAA0346 cardiac muscle cell differentiation [GO:0055007]; cell fate commitment [GO:0045165]; cellular response to hydrogen peroxide [GO:0070301]; chromatin remodeling [GO:0006338]; endothelial cell differentiation [GO:0045446]; hippocampus development [GO:0021766]; inflammatory response to antigenic stimulus [GO:0002437]; mesodermal cell differentiation [GO:0048333]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of gene expression [GO:0010468]; response to activity [GO:0014823]; response to fungicide [GO:0060992] -O15111 reviewed IKKA_HUMAN Inhibitor of nuclear factor kappa-B kinase subunit alpha (I-kappa-B kinase alpha) (IKK-A) (IKK-alpha) (IkBKA) (IkappaB kinase) (EC 2.7.11.10) (Conserved helix-loop-helix ubiquitous kinase) (I-kappa-B kinase 1) (IKK-1) (IKK1) (Nuclear factor NF-kappa-B inhibitor kinase alpha) (NFKBIKA) (Transcription factor 16) (TCF-16) CHUK IKKA TCF16 anatomical structure morphogenesis [GO:0009653]; canonical NF-kappaB signal transduction [GO:0007249]; cellular response to cadmium ion [GO:0071276]; cellular response to reactive oxygen species [GO:0034614]; cellular response to tumor necrosis factor [GO:0071356]; cellular response to virus [GO:0098586]; I-kappaB phosphorylation [GO:0007252]; immune response [GO:0006955]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; negative regulation of NF-kappaB transcription factor activity [GO:0032088]; non-canonical NF-kappaB signal transduction [GO:0038061]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of interferon-alpha production [GO:0032727]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein phosphorylation [GO:0006468]; response to acetate [GO:0010034]; response to amino acid [GO:0043200]; response to cholecystokinin [GO:0061847]; response to hydroperoxide [GO:0033194]; response to lipopolysaccharide [GO:0032496]; response to toxic substance [GO:0009636]; response to virus [GO:0009615]; response to xenobiotic stimulus [GO:0009410]; Rho protein signal transduction [GO:0007266]; skeletal muscle contraction [GO:0003009]; striated muscle cell differentiation [GO:0051146]; toll-like receptor 4 signaling pathway [GO:0034142]; tumor necrosis factor-mediated signaling pathway [GO:0033209] -O15119 reviewed TBX3_HUMAN T-box transcription factor TBX3 (T-box protein 3) TBX3 animal organ morphogenesis [GO:0009887]; anterior/posterior axis specification, embryo [GO:0008595]; atrioventricular bundle cell differentiation [GO:0003167]; atrioventricular canal development [GO:0036302]; atrioventricular canal morphogenesis [GO:1905222]; blood vessel development [GO:0001568]; branching involved in mammary gland duct morphogenesis [GO:0060444]; cardiac epithelial to mesenchymal transition [GO:0060317]; cardiac jelly development [GO:1905072]; cardiac muscle cell fate commitment [GO:0060923]; cell fate specification [GO:0001708]; cellular senescence [GO:0090398]; DNA-templated transcription [GO:0006351]; embryonic digit morphogenesis [GO:0042733]; embryonic forelimb morphogenesis [GO:0035115]; embryonic hindlimb morphogenesis [GO:0035116]; endocardial cushion formation [GO:0003272]; female genitalia development [GO:0030540]; follicle-stimulating hormone secretion [GO:0046884]; forelimb morphogenesis [GO:0035136]; heart looping [GO:0001947]; hepatoblast differentiation [GO:0061017]; in utero embryonic development [GO:0001701]; limbic system development [GO:0021761]; luteinizing hormone secretion [GO:0032275]; male genitalia development [GO:0030539]; mammary gland development [GO:0030879]; mammary placode formation [GO:0060596]; mesoderm morphogenesis [GO:0048332]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cell proliferation involved in heart morphogenesis [GO:2000137]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of epithelial cell differentiation [GO:0030857]; negative regulation of myoblast differentiation [GO:0045662]; negative regulation of stem cell differentiation [GO:2000737]; negative regulation of transcription by RNA polymerase II [GO:0000122]; outflow tract morphogenesis [GO:0003151]; positive regulation of cell cycle [GO:0045787]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of protein complex stability [GO:0061635]; regulation of protein stability [GO:0031647]; regulation of transcription by RNA polymerase II [GO:0006357]; roof of mouth development [GO:0060021]; semicircular canal morphogenesis [GO:0048752]; sinoatrial node cell development [GO:0060931]; skeletal system development [GO:0001501]; smooth muscle cell differentiation [GO:0051145]; specification of animal organ position [GO:0010159]; stem cell population maintenance [GO:0019827]; stem cell proliferation [GO:0072089]; ureteric peristalsis [GO:0072105]; ventricular septum morphogenesis [GO:0060412] -O15156 reviewed ZBT7B_HUMAN Zinc finger and BTB domain-containing protein 7B (Krueppel-related zinc finger protein cKrox) (hcKrox) (T-helper-inducing POZ/Krueppel-like factor) (Zinc finger and BTB domain-containing protein 15) (Zinc finger protein 67 homolog) (Zfp-67) (Zinc finger protein 857B) (Zinc finger protein Th-POK) ZBTB7B ZBTB15 ZFP67 ZNF857B adaptive thermogenesis [GO:1990845]; ectoderm development [GO:0007398]; lactation [GO:0007595]; negative regulation of CD8-positive, alpha-beta T cell differentiation [GO:0043377]; negative regulation of gene expression [GO:0010629]; negative regulation of NK T cell proliferation [GO:0051141]; negative regulation of T-helper 17 cell differentiation [GO:2000320]; negative regulation of transcription by RNA polymerase II [GO:0000122]; NK T cell differentiation [GO:0001865]; positive regulation of brown fat cell differentiation [GO:0090336]; positive regulation of CD4-positive, alpha-beta T cell differentiation [GO:0043372]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of gene expression [GO:0010628]; positive regulation of insulin receptor signaling pathway [GO:0046628]; positive regulation of interleukin-17 production [GO:0032740]; positive regulation of SREBP signaling pathway [GO:2000640]; regulation of transcription by RNA polymerase II [GO:0006357]; response to insulin [GO:0032868]; transcription by RNA polymerase II [GO:0006366] -O15162 reviewed PLS1_HUMAN Phospholipid scramblase 1 (PL scramblase 1) (Ca(2+)-dependent phospholipid scramblase 1) (Erythrocyte phospholipid scramblase) (Mg(2+)-dependent nuclease) (EC 3.1.-.-) (MmTRA1b) PLSCR1 acute-phase response [GO:0006953]; apoptotic process [GO:0006915]; defense response to virus [GO:0051607]; negative regulation of phagocytosis [GO:0050765]; negative regulation of viral genome replication [GO:0045071]; phosphatidylserine biosynthetic process [GO:0006659]; phosphatidylserine exposure on apoptotic cell surface [GO:0070782]; plasma membrane phospholipid scrambling [GO:0017121]; platelet activation [GO:0030168]; positive regulation of chromosome separation [GO:1905820]; positive regulation of DNA topoisomerase (ATP-hydrolyzing) activity [GO:2000373]; positive regulation of gene expression [GO:0010628]; positive regulation of innate immune response [GO:0045089]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of Fc receptor mediated stimulatory signaling pathway [GO:0060368]; regulation of mast cell activation [GO:0033003]; response to interferon-beta [GO:0035456]; response to lead ion [GO:0010288] -O15178 reviewed TBXT_HUMAN T-box transcription factor T (Brachyury protein) (Protein T) TBXT T anterior/posterior axis specification, embryo [GO:0008595]; cardiac muscle cell myoblast differentiation [GO:0060379]; cell fate specification [GO:0001708]; heart morphogenesis [GO:0003007]; mesoderm development [GO:0007498]; mesoderm formation [GO:0001707]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; primitive streak formation [GO:0090009]; regulation of transcription by RNA polymerase II [GO:0006357]; signal transduction [GO:0007165]; somitogenesis [GO:0001756] -O15198 reviewed SMAD9_HUMAN Mothers against decapentaplegic homolog 9 (MAD homolog 9) (Mothers against DPP homolog 9) (Madh6) (SMAD family member 9) (SMAD 9) (Smad9) SMAD9 MADH6 MADH9 SMAD8 anatomical structure morphogenesis [GO:0009653]; BMP signaling pathway [GO:0030509]; cell differentiation [GO:0030154]; cellular response to BMP stimulus [GO:0071773]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; SMAD protein signal transduction [GO:0060395]; transforming growth factor beta receptor signaling pathway [GO:0007179] -O15226 reviewed NKRF_HUMAN NF-kappa-B-repressing factor (NFkB-repressing factor) (NRF) (Protein ITBA4) NKRF ITBA4 NRF negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of transcription by RNA polymerase II [GO:0045944] -O15266 reviewed SHOX_HUMAN Short stature homeobox protein (Pseudoautosomal homeobox-containing osteogenic protein) (Short stature homeobox-containing protein) SHOX PHOG positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; skeletal system development [GO:0001501] -O15294 reviewed OGT1_HUMAN UDP-N-acetylglucosamine--peptide N-acetylglucosaminyltransferase 110 kDa subunit (EC 2.4.1.255) (O-GlcNAc transferase subunit p110) (O-linked N-acetylglucosamine transferase 110 kDa subunit) (OGT) OGT apoptotic process [GO:0006915]; cellular response to glucose stimulus [GO:0071333]; chromatin organization [GO:0006325]; circadian regulation of gene expression [GO:0032922]; hemopoiesis [GO:0030097]; mitophagy [GO:0000423]; negative regulation of cell migration [GO:0030336]; negative regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032435]; negative regulation of protein ubiquitination [GO:0031397]; negative regulation of stem cell population maintenance [GO:1902455]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of lipid biosynthetic process [GO:0046889]; positive regulation of proteolysis [GO:0045862]; positive regulation of stem cell population maintenance [GO:1902459]; positive regulation of TORC1 signaling [GO:1904263]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription from RNA polymerase II promoter by glucose [GO:0000432]; positive regulation of translation [GO:0045727]; protein O-linked glycosylation [GO:0006493]; protein processing [GO:0016485]; regulation of gluconeogenesis [GO:0006111]; regulation of glycolytic process [GO:0006110]; regulation of insulin receptor signaling pathway [GO:0046626]; regulation of necroptotic process [GO:0060544]; regulation of neurotransmitter receptor localization to postsynaptic specialization membrane [GO:0098696]; regulation of Rac protein signal transduction [GO:0035020]; regulation of synapse assembly [GO:0051963]; regulation of transcription by RNA polymerase II [GO:0006357]; response to insulin [GO:0032868]; response to nutrient [GO:0007584]; signal transduction [GO:0007165] -O15350 reviewed P73_HUMAN Tumor protein p73 (p53-like transcription factor) (p53-related protein) TP73 P73 DNA damage response [GO:0006974]; intrinsic apoptotic signaling pathway in response to DNA damage [GO:0008630]; intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:0042771]; kidney development [GO:0001822]; mismatch repair [GO:0006298]; negative regulation of cardiac muscle cell proliferation [GO:0060044]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of neuron differentiation [GO:0045665]; positive regulation of apoptotic process [GO:0043065]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of lung ciliated cell differentiation [GO:1901248]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of oligodendrocyte differentiation [GO:0048714]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein tetramerization [GO:0051262]; regulation of cell cycle [GO:0051726]; regulation of gene expression [GO:0010468]; regulation of mitotic cell cycle [GO:0007346]; regulation of transcription by RNA polymerase II [GO:0006357]; response to organonitrogen compound [GO:0010243]; response to xenobiotic stimulus [GO:0009410] -O15353 reviewed FOXN1_HUMAN Forkhead box protein N1 (Winged-helix transcription factor nude) FOXN1 RONU WHN animal organ morphogenesis [GO:0009887]; blood vessel morphogenesis [GO:0048514]; defense response [GO:0006952]; epidermis development [GO:0008544]; hair follicle development [GO:0001942]; keratinocyte differentiation [GO:0030216]; lymphoid lineage cell migration into thymus [GO:0097535]; nail development [GO:0035878]; positive regulation of epithelial cell differentiation [GO:0030858]; positive regulation of hair follicle development [GO:0051798]; regulation of positive thymic T cell selection [GO:1902232]; regulation of transcription by RNA polymerase II [GO:0006357]; T cell homeostasis [GO:0043029]; T cell lineage commitment [GO:0002360]; thymus epithelium morphogenesis [GO:0097536] -O15379 reviewed HDAC3_HUMAN Histone deacetylase 3 (HD3) (EC 3.5.1.98) (Protein deacetylase HDAC3) (EC 3.5.1.-) (Protein deacylase HDAC3) (EC 3.5.1.-) (RPD3-2) (SMAP45) HDAC3 cellular response to fluid shear stress [GO:0071498]; chromatin organization [GO:0006325]; circadian regulation of gene expression [GO:0032922]; cornified envelope assembly [GO:1903575]; DNA repair-dependent chromatin remodeling [GO:0140861]; epigenetic regulation of gene expression [GO:0040029]; establishment of mitotic spindle orientation [GO:0000132]; establishment of skin barrier [GO:0061436]; in utero embryonic development [GO:0001701]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cardiac muscle cell differentiation [GO:2000726]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of JNK cascade [GO:0046329]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of protein ubiquitination [GO:0031398]; positive regulation of TOR signaling [GO:0032008]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein deacetylation [GO:0006476]; regulation of circadian rhythm [GO:0042752]; regulation of mitotic cell cycle [GO:0007346]; regulation of multicellular organism growth [GO:0040014]; regulation of protein stability [GO:0031647]; spindle assembly [GO:0051225]; transcription by RNA polymerase II [GO:0006366] -O15391 reviewed TYY2_HUMAN Transcription factor YY2 (Yin and yang 2) (YY-2) (Zinc finger protein 631) YY2 ZNF631 positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -O15405 reviewed TOX3_HUMAN TOX high mobility group box family member 3 (CAG trinucleotide repeat-containing gene F9 protein) (Trinucleotide repeat-containing gene 9 protein) TOX3 CAGF9 TNRC9 apoptotic process [GO:0006915]; negative regulation of neuron apoptotic process [GO:0043524]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of apoptotic process [GO:0042981]; regulation of transcription by RNA polymerase II [GO:0006357] -O15455 reviewed TLR3_HUMAN Toll-like receptor 3 (CD antigen CD283) TLR3 activation of NF-kappaB-inducing kinase activity [GO:0007250]; cellular response to exogenous dsRNA [GO:0071360]; cellular response to interferon-beta [GO:0035458]; cellular response to mechanical stimulus [GO:0071260]; cellular response to type II interferon [GO:0071346]; cellular response to virus [GO:0098586]; cellular response to xenobiotic stimulus [GO:0071466]; defense response to bacterium [GO:0042742]; defense response to virus [GO:0051607]; detection of virus [GO:0009597]; extrinsic apoptotic signaling pathway [GO:0097191]; hyperosmotic response [GO:0006972]; I-kappaB phosphorylation [GO:0007252]; inflammatory response to wounding [GO:0090594]; innate immune response [GO:0045087]; JNK cascade [GO:0007254]; male gonad development [GO:0008584]; microglial cell activation [GO:0001774]; necroptotic signaling pathway [GO:0097527]; negative regulation of osteoclast differentiation [GO:0045671]; positive regulation of angiogenesis [GO:0045766]; positive regulation of apoptotic process [GO:0043065]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of chemokine production [GO:0032722]; positive regulation of cytokine production involved in inflammatory response [GO:1900017]; positive regulation of gene expression [GO:0010628]; positive regulation of inflammatory response [GO:0050729]; positive regulation of interferon-alpha production [GO:0032727]; positive regulation of interferon-beta production [GO:0032728]; positive regulation of interleukin-12 production [GO:0032735]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of JNK cascade [GO:0046330]; positive regulation of macrophage cytokine production [GO:0060907]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of type II interferon production [GO:0032729]; positive regulation of type III interferon production [GO:0034346]; regulation of dendritic cell cytokine production [GO:0002730]; response to dsRNA [GO:0043331]; response to exogenous dsRNA [GO:0043330]; signal transduction [GO:0007165]; toll-like receptor 3 signaling pathway [GO:0034138]; toll-like receptor signaling pathway [GO:0002224]; type III interferon production [GO:0034343] -O15516 reviewed CLOCK_HUMAN Circadian locomoter output cycles protein kaput (hCLOCK) (EC 2.3.1.48) (Class E basic helix-loop-helix protein 8) (bHLHe8) CLOCK BHLHE8 KIAA0334 cellular response to ionizing radiation [GO:0071479]; circadian regulation of gene expression [GO:0032922]; circadian rhythm [GO:0007623]; DNA damage checkpoint signaling [GO:0000077]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of glucocorticoid receptor signaling pathway [GO:2000323]; photoperiodism [GO:0009648]; positive regulation of circadian rhythm [GO:0042753]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of inflammatory response [GO:0050729]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; protein acetylation [GO:0006473]; regulation of circadian rhythm [GO:0042752]; regulation of DNA-templated transcription [GO:0006355]; regulation of hair cycle [GO:0042634]; regulation of insulin secretion [GO:0050796]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of type B pancreatic cell development [GO:2000074]; response to redox state [GO:0051775]; signal transduction [GO:0007165]; spermatogenesis [GO:0007283] -O15520 reviewed FGF10_HUMAN Fibroblast growth factor 10 (FGF-10) (Keratinocyte growth factor 2) FGF10 actin cytoskeleton organization [GO:0030036]; angiogenesis [GO:0001525]; animal organ morphogenesis [GO:0009887]; blood vessel remodeling [GO:0001974]; branch elongation involved in salivary gland morphogenesis [GO:0060667]; branching morphogenesis of an epithelial tube [GO:0048754]; bronchiole morphogenesis [GO:0060436]; bud elongation involved in lung branching [GO:0060449]; bud outgrowth involved in lung branching [GO:0060447]; cell differentiation [GO:0030154]; determination of left/right symmetry [GO:0007368]; embryonic camera-type eye development [GO:0031076]; embryonic digestive tract morphogenesis [GO:0048557]; embryonic genitalia morphogenesis [GO:0030538]; embryonic pattern specification [GO:0009880]; endothelial cell proliferation [GO:0001935]; epithelial cell proliferation [GO:0050673]; epithelial cell proliferation involved in salivary gland morphogenesis [GO:0060664]; ERK1 and ERK2 cascade [GO:0070371]; establishment of mitotic spindle orientation [GO:0000132]; extrinsic apoptotic signaling pathway in absence of ligand [GO:0097192]; female genitalia morphogenesis [GO:0048807]; fibroblast growth factor receptor apoptotic signaling pathway [GO:1902178]; fibroblast growth factor receptor signaling pathway [GO:0008543]; fibroblast growth factor receptor signaling pathway involved in mammary gland specification [GO:0060595]; fibroblast proliferation [GO:0048144]; hair follicle morphogenesis [GO:0031069]; Harderian gland development [GO:0070384]; induction of positive chemotaxis [GO:0050930]; keratinocyte proliferation [GO:0043616]; lacrimal gland development [GO:0032808]; limb bud formation [GO:0060174]; lung epithelium development [GO:0060428]; lung proximal/distal axis specification [GO:0061115]; lung saccule development [GO:0060430]; male genitalia morphogenesis [GO:0048808]; mammary gland bud formation [GO:0060615]; mesenchymal cell differentiation involved in lung development [GO:0060915]; mesenchymal-epithelial cell signaling involved in lung development [GO:0060496]; mesonephros development [GO:0001823]; metanephros development [GO:0001656]; metanephros morphogenesis [GO:0003338]; muscle cell fate commitment [GO:0042693]; negative regulation of epithelial cell differentiation [GO:0030857]; negative regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001240]; negative regulation of stem cell proliferation [GO:2000647]; odontogenesis of dentin-containing tooth [GO:0042475]; organ induction [GO:0001759]; otic vesicle formation [GO:0030916]; pancreas development [GO:0031016]; pituitary gland development [GO:0021983]; positive chemotaxis [GO:0050918]; positive regulation of ATP-dependent activity [GO:0032781]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA repair [GO:0045739]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of epithelial cell migration [GO:0010634]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of epithelial cell proliferation involved in wound healing [GO:0060054]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of gene expression [GO:0010628]; positive regulation of hair follicle cell proliferation [GO:0071338]; positive regulation of keratinocyte migration [GO:0051549]; positive regulation of keratinocyte proliferation [GO:0010838]; positive regulation of lymphocyte proliferation [GO:0050671]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of Ras protein signal transduction [GO:0046579]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of urothelial cell proliferation [GO:0050677]; positive regulation of vascular endothelial growth factor receptor signaling pathway [GO:0030949]; positive regulation of white fat cell proliferation [GO:0070352]; prostatic bud formation [GO:0060513]; protein localization to cell surface [GO:0034394]; radial glial cell differentiation [GO:0060019]; regulation of activin receptor signaling pathway [GO:0032925]; regulation of branching involved in salivary gland morphogenesis by mesenchymal-epithelial signaling [GO:0060665]; regulation of cell migration [GO:0030334]; regulation of saliva secretion [GO:0046877]; regulation of smoothened signaling pathway [GO:0008589]; response to estradiol [GO:0032355]; response to lipopolysaccharide [GO:0032496]; salivary gland development [GO:0007431]; secretion by lung epithelial cell involved in lung growth [GO:0061033]; semicircular canal fusion [GO:0060879]; smooth muscle cell differentiation [GO:0051145]; somatic stem cell population maintenance [GO:0035019]; spleen development [GO:0048536]; stem cell proliferation [GO:0072089]; submandibular salivary gland formation [GO:0060661]; tear secretion [GO:0070075]; thymus development [GO:0048538]; thyroid gland development [GO:0030878]; tissue regeneration [GO:0042246]; type II pneumocyte differentiation [GO:0060510]; urothelial cell proliferation [GO:0050674]; vascular endothelial growth factor receptor signaling pathway [GO:0048010]; white fat cell differentiation [GO:0050872]; white fat cell proliferation [GO:0070343]; Wnt signaling pathway [GO:0016055]; wound healing [GO:0042060] -O15522 reviewed NKX28_HUMAN Homeobox protein Nkx-2.8 (Homeobox protein NK-2 homolog H) NKX2-8 NKX-2.8 NKX2G NKX2H axonogenesis [GO:0007409]; cell differentiation [GO:0030154]; DNA-templated transcription [GO:0006351]; epithelial cell proliferation [GO:0050673]; liver development [GO:0001889]; lung development [GO:0030324]; negative regulation of epithelial cell proliferation [GO:0050680]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription by RNA polymerase II [GO:0006366] -O15525 reviewed MAFG_HUMAN Transcription factor MafG (V-maf musculoaponeurotic fibrosarcoma oncogene homolog G) (hMAF) MAFG adult behavior [GO:0030534]; in utero embryonic development [GO:0001701]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of gene expression [GO:0010628]; regulation of cell population proliferation [GO:0042127]; regulation of epidermal cell differentiation [GO:0045604]; regulation of transcription by RNA polymerase II [GO:0006357] -O15527 reviewed OGG1_HUMAN N-glycosylase/DNA lyase [Includes: 8-oxoguanine DNA glycosylase (EC 3.2.2.-); DNA-(apurinic or apyrimidinic site) lyase (AP lyase) (EC 4.2.99.18)] OGG1 MMH MUTM OGH1 base-excision repair [GO:0006284]; base-excision repair, AP site formation [GO:0006285]; cellular response to cadmium ion [GO:0071276]; cellular response to reactive oxygen species [GO:0034614]; depurination [GO:0045007]; depyrimidination [GO:0045008]; DNA damage response [GO:0006974]; negative regulation of apoptotic process [GO:0043066]; negative regulation of double-strand break repair via single-strand annealing [GO:1901291]; nucleotide-excision repair [GO:0006289]; positive regulation of gene expression via chromosomal CpG island demethylation [GO:0044029]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; response to estradiol [GO:0032355]; response to ethanol [GO:0045471]; response to folic acid [GO:0051593]; response to light stimulus [GO:0009416]; response to oxidative stress [GO:0006979]; response to radiation [GO:0009314]; response to xenobiotic stimulus [GO:0009410] -O15534 reviewed PER1_HUMAN Period circadian protein homolog 1 (hPER1) (Circadian clock protein PERIOD 1) (Circadian pacemaker protein Rigui) PER1 KIAA0482 PER RIGUI chromatin remodeling [GO:0006338]; circadian regulation of gene expression [GO:0032922]; circadian regulation of translation [GO:0097167]; circadian rhythm [GO:0007623]; entrainment of circadian clock [GO:0009649]; entrainment of circadian clock by photoperiod [GO:0043153]; negative regulation of canonical NF-kappaB signal transduction [GO:0043124]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of glucocorticoid receptor signaling pathway [GO:2000323]; negative regulation of JNK cascade [GO:0046329]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-transcriptional regulation of gene expression [GO:0010608]; regulation of circadian rhythm [GO:0042752]; regulation of cytokine production involved in inflammatory response [GO:1900015]; regulation of hair cycle [GO:0042634]; regulation of p38MAPK cascade [GO:1900744]; regulation of sodium ion transport [GO:0002028]; response to cAMP [GO:0051591] -O43151 reviewed TET3_HUMAN Methylcytosine dioxygenase TET3 (EC 1.14.11.80) TET3 KIAA0401 5-methylcytosine catabolic process [GO:0006211]; DNA demethylation [GO:0080111]; epigenetic programing of male pronucleus [GO:0044727]; positive regulation of gene expression via chromosomal CpG island demethylation [GO:0044029]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein O-linked glycosylation [GO:0006493] -O43186 reviewed CRX_HUMAN Cone-rod homeobox protein CRX CORD2 animal organ morphogenesis [GO:0009887]; cell differentiation [GO:0030154]; nervous system development [GO:0007399]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; visual perception [GO:0007601] -O43248 reviewed HXC11_HUMAN Homeobox protein Hox-C11 (Homeobox protein Hox-3H) HOXC11 HOX3H anterior/posterior pattern specification [GO:0009952]; embryonic digit morphogenesis [GO:0042733]; embryonic skeletal joint morphogenesis [GO:0060272]; endoderm development [GO:0007492]; metanephros development [GO:0001656]; organ induction [GO:0001759]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proximal/distal pattern formation [GO:0009954]; regulation of transcription by RNA polymerase II [GO:0006357] -O43257 reviewed ZNHI1_HUMAN Zinc finger HIT domain-containing protein 1 (Cyclin-G1-binding protein 1) (Zinc finger protein subfamily 4A member 1) (p18 Hamlet) ZNHIT1 CGBP1 ZNFN4A1 calcium ion homeostasis [GO:0055074]; chromatin remodeling [GO:0006338]; heart process [GO:0003015]; intestinal stem cell homeostasis [GO:0036335]; muscle cell differentiation [GO:0042692]; positive regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator [GO:1902164]; positive regulation of lymphoid progenitor cell differentiation [GO:1905458]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; regulation of DNA-templated transcription [GO:0006355] -O43313 reviewed ATMIN_HUMAN ATM interactor (ATM/ATR-substrate CHK2-interacting zinc finger protein) (ASCIZ) (Zinc finger protein 822) ATMIN KIAA0431 ZNF822 DNA damage response [GO:0006974]; motile cilium assembly [GO:0044458]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of non-motile cilium assembly [GO:1902857]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -O43353 reviewed RIPK2_HUMAN Receptor-interacting serine/threonine-protein kinase 2 (EC 2.7.11.1) (CARD-containing interleukin-1 beta-converting enzyme-associated kinase) (CARD-containing IL-1 beta ICE-kinase) (RIP-like-interacting CLARP kinase) (Receptor-interacting protein 2) (RIP-2) (Tyrosine-protein kinase RIPK2) (EC 2.7.10.2) RIPK2 CARDIAK RICK RIP2 UNQ277/PRO314/PRO34092 activation of cysteine-type endopeptidase activity [GO:0097202]; adaptive immune response [GO:0002250]; apoptotic process [GO:0006915]; canonical NF-kappaB signal transduction [GO:0007249]; CD4-positive, alpha-beta T cell proliferation [GO:0035739]; cellular response to lipoteichoic acid [GO:0071223]; cellular response to muramyl dipeptide [GO:0071225]; cellular response to peptidoglycan [GO:0071224]; cytokine-mediated signaling pathway [GO:0019221]; defense response to bacterium [GO:0042742]; defense response to Gram-positive bacterium [GO:0050830]; ERK1 and ERK2 cascade [GO:0070371]; immature T cell proliferation in thymus [GO:0033080]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; JNK cascade [GO:0007254]; lipopolysaccharide-mediated signaling pathway [GO:0031663]; nucleotide-binding oligomerization domain containing 1 signaling pathway [GO:0070427]; nucleotide-binding oligomerization domain containing 2 signaling pathway [GO:0070431]; positive regulation of apoptotic process [GO:0043065]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of CD4-positive, alpha-beta T cell proliferation [GO:2000563]; positive regulation of chemokine production [GO:0032722]; positive regulation of cytokine-mediated signaling pathway [GO:0001961]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of immature T cell proliferation in thymus [GO:0033092]; positive regulation of interferon-alpha production [GO:0032727]; positive regulation of interferon-beta production [GO:0032728]; positive regulation of interleukin-1 beta production [GO:0032731]; positive regulation of interleukin-12 production [GO:0032735]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of JNK cascade [GO:0046330]; positive regulation of macrophage cytokine production [GO:0060907]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of peptidyl-threonine phosphorylation [GO:0010800]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of protein binding [GO:0032092]; positive regulation of protein K63-linked ubiquitination [GO:1902523]; positive regulation of protein ubiquitination [GO:0031398]; positive regulation of stress-activated MAPK cascade [GO:0032874]; positive regulation of T-helper 1 cell differentiation [GO:0045627]; positive regulation of T-helper 1 type immune response [GO:0002827]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of type II interferon production [GO:0032729]; positive regulation of xenophagy [GO:1904417]; protein homooligomerization [GO:0051260]; response to exogenous dsRNA [GO:0043330]; response to interleukin-1 [GO:0070555]; response to interleukin-12 [GO:0070671]; response to interleukin-18 [GO:0070673]; signal transduction [GO:0007165]; stress-activated MAPK cascade [GO:0051403]; T cell receptor signaling pathway [GO:0050852]; toll-like receptor 2 signaling pathway [GO:0034134]; toll-like receptor 4 signaling pathway [GO:0034142]; xenophagy [GO:0098792] -O43364 reviewed HXA2_HUMAN Homeobox protein Hox-A2 (Homeobox protein Hox-1K) HOXA2 HOX1K anterior/posterior pattern specification [GO:0009952]; brain segmentation [GO:0035284]; cell fate determination [GO:0001709]; cellular response to retinoic acid [GO:0071300]; dorsal/ventral pattern formation [GO:0009953]; embryonic viscerocranium morphogenesis [GO:0048703]; middle ear morphogenesis [GO:0042474]; motor neuron axon guidance [GO:0008045]; muscle structure development [GO:0061061]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of osteoblast differentiation [GO:0045668]; osteoblast development [GO:0002076]; pharyngeal system development [GO:0060037]; positive regulation of transcription by RNA polymerase II [GO:0045944]; rhombomere 2 development [GO:0021568]; rhombomere 3 morphogenesis [GO:0021658]; segment specification [GO:0007379] -O43435 reviewed TBX1_HUMAN T-box transcription factor TBX1 (T-box protein 1) (Testis-specific T-box protein) TBX1 angiogenesis [GO:0001525]; anterior/posterior pattern specification [GO:0009952]; aorta morphogenesis [GO:0035909]; artery morphogenesis [GO:0048844]; blood vessel development [GO:0001568]; blood vessel morphogenesis [GO:0048514]; cell fate specification [GO:0001708]; cell population proliferation [GO:0008283]; cellular response to fibroblast growth factor stimulus [GO:0044344]; cellular response to retinoic acid [GO:0071300]; cochlea morphogenesis [GO:0090103]; coronary artery morphogenesis [GO:0060982]; determination of left/right symmetry [GO:0007368]; ear morphogenesis [GO:0042471]; embryonic cranial skeleton morphogenesis [GO:0048701]; embryonic viscerocranium morphogenesis [GO:0048703]; enamel mineralization [GO:0070166]; epithelial cell differentiation [GO:0030855]; face morphogenesis [GO:0060325]; heart development [GO:0007507]; heart morphogenesis [GO:0003007]; inner ear morphogenesis [GO:0042472]; lymph vessel development [GO:0001945]; mesenchymal cell apoptotic process [GO:0097152]; mesoderm development [GO:0007498]; middle ear morphogenesis [GO:0042474]; muscle cell fate commitment [GO:0042693]; muscle organ development [GO:0007517]; muscle organ morphogenesis [GO:0048644]; muscle tissue morphogenesis [GO:0060415]; negative regulation of cell differentiation [GO:0045596]; negative regulation of mesenchymal cell apoptotic process [GO:2001054]; neural crest cell migration [GO:0001755]; odontogenesis of dentin-containing tooth [GO:0042475]; outer ear morphogenesis [GO:0042473]; outflow tract morphogenesis [GO:0003151]; outflow tract septum morphogenesis [GO:0003148]; parathyroid gland development [GO:0060017]; pattern specification process [GO:0007389]; pharyngeal system development [GO:0060037]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of mesenchymal cell proliferation [GO:0002053]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of tongue muscle cell differentiation [GO:2001037]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of animal organ morphogenesis [GO:2000027]; regulation of transcription by RNA polymerase II [GO:0006357]; retinoic acid receptor signaling pathway [GO:0048384]; semicircular canal morphogenesis [GO:0048752]; sensory perception of sound [GO:0007605]; social behavior [GO:0035176]; soft palate development [GO:0060023]; somatic stem cell population maintenance [GO:0035019]; thymus development [GO:0048538]; thyroid gland development [GO:0030878]; tongue morphogenesis [GO:0043587]; vagus nerve morphogenesis [GO:0021644] -O43462 reviewed MBTP2_HUMAN Membrane-bound transcription factor site-2 protease (EC 3.4.24.85) (Endopeptidase S2P) (Sterol regulatory element-binding proteins intramembrane protease) (SREBPs intramembrane protease) MBTPS2 S2P ATF6-mediated unfolded protein response [GO:0036500]; bone maturation [GO:0070977]; cholesterol metabolic process [GO:0008203]; endoplasmic reticulum unfolded protein response [GO:0030968]; membrane protein intracellular domain proteolysis [GO:0031293]; mitotic G2 DNA damage checkpoint signaling [GO:0007095]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein maturation [GO:0051604]; regulation of cholesterol biosynthetic process [GO:0045540]; regulation of response to endoplasmic reticulum stress [GO:1905897]; response to endoplasmic reticulum stress [GO:0034976] -O43474 reviewed KLF4_HUMAN Krueppel-like factor 4 (Epithelial zinc finger protein EZF) (Gut-enriched krueppel-like factor) KLF4 EZF GKLF canonical Wnt signaling pathway [GO:0060070]; cellular response to cycloheximide [GO:0071409]; cellular response to growth factor stimulus [GO:0071363]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to laminar fluid shear stress [GO:0071499]; cellular response to leukemia inhibitory factor [GO:1990830]; cellular response to peptide [GO:1901653]; cellular response to retinoic acid [GO:0071300]; defense response to tumor cell [GO:0002357]; epidermal cell differentiation [GO:0009913]; epidermis morphogenesis [GO:0048730]; establishment of skin barrier [GO:0061436]; fat cell differentiation [GO:0045444]; glandular epithelial cell differentiation [GO:0002067]; mesodermal cell fate determination [GO:0007500]; negative regulation of angiogenesis [GO:0016525]; negative regulation of cell migration involved in sprouting angiogenesis [GO:0090051]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of chemokine (C-X-C motif) ligand 2 production [GO:2000342]; negative regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043154]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of G1/S transition of mitotic cell cycle [GO:2000134]; negative regulation of gene expression [GO:0010629]; negative regulation of heterotypic cell-cell adhesion [GO:0034115]; negative regulation of inflammatory response [GO:0050728]; negative regulation of interleukin-8 production [GO:0032717]; negative regulation of leukocyte adhesion to arterial endothelial cell [GO:1904998]; negative regulation of NF-kappaB transcription factor activity [GO:0032088]; negative regulation of response to cytokine stimulus [GO:0060761]; negative regulation of smooth muscle cell proliferation [GO:0048662]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of hemoglobin biosynthetic process [GO:0046985]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of nitric oxide biosynthetic process [GO:0045429]; positive regulation of protein metabolic process [GO:0051247]; positive regulation of sprouting angiogenesis [GO:1903672]; positive regulation of telomerase activity [GO:0051973]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-embryonic camera-type eye development [GO:0031077]; post-embryonic hemopoiesis [GO:0035166]; regulation of axon regeneration [GO:0048679]; regulation of blastocyst development [GO:0120222]; regulation of cell differentiation [GO:0045595]; regulation of transcription by RNA polymerase II [GO:0006357]; somatic stem cell population maintenance [GO:0035019]; stem cell population maintenance [GO:0019827]; transcription by RNA polymerase II [GO:0006366] -O43513 reviewed MED7_HUMAN Mediator of RNA polymerase II transcription subunit 7 (hMED7) (Activator-recruited cofactor 34 kDa component) (ARC34) (Cofactor required for Sp1 transcriptional activation subunit 9) (CRSP complex subunit 9) (Mediator complex subunit 7) (RNA polymerase transcriptional regulation mediator subunit 7 homolog) (Transcriptional coactivator CRSP33) MED7 ARC34 CRSP9 positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; protein ubiquitination [GO:0016567]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA polymerase II preinitiation complex assembly [GO:0051123]; somatic stem cell population maintenance [GO:0035019]; transcription initiation at RNA polymerase II promoter [GO:0006367] -O43524 reviewed FOXO3_HUMAN Forkhead box protein O3 (AF6q21 protein) (Forkhead in rhabdomyosarcoma-like 1) FOXO3 FKHRL1 FOXO3A antral ovarian follicle growth [GO:0001547]; brain morphogenesis [GO:0048854]; canonical Wnt signaling pathway [GO:0060070]; cellular response to amyloid-beta [GO:1904646]; cellular response to corticosterone stimulus [GO:0071386]; cellular response to glucose starvation [GO:0042149]; cellular response to glucose stimulus [GO:0071333]; cellular response to hypoxia [GO:0071456]; cellular response to nerve growth factor stimulus [GO:1990090]; cellular response to oxidative stress [GO:0034599]; DNA damage response, signal transduction by p53 class mediator [GO:0030330]; extrinsic apoptotic signaling pathway in absence of ligand [GO:0097192]; initiation of primordial ovarian follicle growth [GO:0001544]; mitochondrial transcription [GO:0006390]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cell migration [GO:0030336]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuronal stem cell population maintenance [GO:0097150]; oocyte maturation [GO:0001556]; ovulation from ovarian follicle [GO:0001542]; positive regulation of apoptotic process [GO:0043065]; positive regulation of autophagy [GO:0010508]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of endothelial cell apoptotic process [GO:2000353]; positive regulation of erythrocyte differentiation [GO:0045648]; positive regulation of hydrogen peroxide-mediated programmed cell death [GO:1901300]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of muscle atrophy [GO:0014737]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of reactive oxygen species biosynthetic process [GO:1903428]; positive regulation of regulatory T cell differentiation [GO:0045591]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of neural precursor cell proliferation [GO:2000177]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of translation [GO:0006417]; response to dexamethasone [GO:0071548]; response to fatty acid [GO:0070542]; response to starvation [GO:0042594]; response to water-immersion restraint stress [GO:1990785]; response to xenobiotic stimulus [GO:0009410]; tumor necrosis factor-mediated signaling pathway [GO:0033209] -O43603 reviewed GALR2_HUMAN Galanin receptor type 2 (GAL2-R) (GALR-2) GALR2 GALNR2 adenylate cyclase-activating G protein-coupled receptor signaling pathway [GO:0007189]; adenylate cyclase-modulating G protein-coupled receptor signaling pathway [GO:0007188]; cell surface receptor signaling pathway [GO:0007166]; feeding behavior [GO:0007631]; galanin-activated signaling pathway [GO:0090663]; inositol phosphate metabolic process [GO:0043647]; learning or memory [GO:0007611]; muscle contraction [GO:0006936]; neuron projection development [GO:0031175]; neuropeptide signaling pathway [GO:0007218]; phosphatidylinositol metabolic process [GO:0046488]; phospholipase C-activating G protein-coupled receptor signaling pathway [GO:0007200]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of large conductance calcium-activated potassium channel activity [GO:1902608]; positive regulation of transcription by RNA polymerase II [GO:0045944] -O43639 reviewed NCK2_HUMAN Cytoplasmic protein NCK2 (Growth factor receptor-bound protein 4) (NCK adaptor protein 2) (Nck-2) (SH2/SH3 adaptor protein NCK-beta) NCK2 GRB4 actin filament organization [GO:0007015]; cell migration [GO:0016477]; dendritic spine development [GO:0060996]; ephrin receptor signaling pathway [GO:0048013]; epidermal growth factor receptor signaling pathway [GO:0007173]; immunological synapse formation [GO:0001771]; lamellipodium assembly [GO:0030032]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation [GO:1903912]; negative regulation of PERK-mediated unfolded protein response [GO:1903898]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of actin filament polymerization [GO:0030838]; positive regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway [GO:1902237]; positive regulation of peptidyl-serine dephosphorylation [GO:1902310]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of translation in response to endoplasmic reticulum stress [GO:0036493]; signal complex assembly [GO:0007172]; signal transduction [GO:0007165]; T cell activation [GO:0042110] -O43679 reviewed LDB2_HUMAN LIM domain-binding protein 2 (LDB-2) (Carboxyl-terminal LIM domain-binding protein 1) (CLIM-1) (LIM domain-binding factor CLIM1) LDB2 CLIM1 cellular component biogenesis [GO:0044085]; epithelial structure maintenance [GO:0010669]; hair follicle development [GO:0001942]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system development [GO:0007399]; positive regulation of cellular component biogenesis [GO:0044089]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell migration [GO:0030334]; regulation of kinase activity [GO:0043549]; somatic stem cell population maintenance [GO:0035019] -O43680 reviewed TCF21_HUMAN Transcription factor 21 (TCF-21) (Capsulin) (Class A basic helix-loop-helix protein 23) (bHLHa23) (Epicardin) (Podocyte-expressed 1) (Pod-1) TCF21 BHLHA23 POD1 branching involved in ureteric bud morphogenesis [GO:0001658]; branchiomeric skeletal muscle development [GO:0014707]; bronchiole development [GO:0060435]; developmental process [GO:0032502]; diaphragm development [GO:0060539]; embryonic digestive tract morphogenesis [GO:0048557]; epithelial cell differentiation [GO:0030855]; gland development [GO:0048732]; glomerulus development [GO:0032835]; kidney development [GO:0001822]; lung alveolus development [GO:0048286]; lung morphogenesis [GO:0060425]; lung vasculature development [GO:0060426]; metanephric glomerular capillary formation [GO:0072277]; metanephric mesenchymal cell differentiation [GO:0072162]; morphogenesis of a branching structure [GO:0001763]; negative regulation of androgen receptor signaling pathway [GO:0060766]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; reproductive structure development [GO:0048608]; respiratory system development [GO:0060541]; roof of mouth development [GO:0060021]; Sertoli cell differentiation [GO:0060008]; sex determination [GO:0007530]; spleen development [GO:0048536]; ureteric bud development [GO:0001657]; vasculature development [GO:0001944] -O43707 reviewed ACTN4_HUMAN Alpha-actinin-4 (Non-muscle alpha-actinin 4) ACTN4 actin cytoskeleton organization [GO:0030036]; muscle cell development [GO:0055001]; negative regulation of substrate adhesion-dependent cell spreading [GO:1900025]; peroxisome proliferator activated receptor signaling pathway [GO:0035357]; positive regulation of cell migration [GO:0030335]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of sodium:proton antiporter activity [GO:0032417]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein transport [GO:0015031]; regulation of apoptotic process [GO:0042981]; retinoic acid receptor signaling pathway [GO:0048384]; tumor necrosis factor-mediated signaling pathway [GO:0033209]; vesicle transport along actin filament [GO:0030050] -O43715 reviewed TRIA1_HUMAN TP53-regulated inhibitor of apoptosis 1 (Protein 15E1.1) (WF-1) (p53-inducible cell-survival factor) (p53CSV) TRIAP1 15E1.1 HSPC132 apoptotic process [GO:0006915]; cellular response to UV [GO:0034644]; DNA damage response, signal transduction by p53 class mediator [GO:0030330]; DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest [GO:0006977]; intermembrane lipid transfer [GO:0120009]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043154]; negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:1902166]; negative regulation of release of cytochrome c from mitochondria [GO:0090201]; phospholipid translocation [GO:0045332]; phospholipid transport [GO:0015914]; positive regulation of phospholipid transport [GO:2001140]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of membrane lipid distribution [GO:0097035] -O43745 reviewed CHP2_HUMAN Calcineurin B homologous protein 2 (Hepatocellular carcinoma-associated antigen 520) CHP2 HCA520 cellular response to calcium ion [GO:0071277]; positive regulation of calcineurin-NFAT signaling cascade [GO:0070886]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of phosphatase activity [GO:0010922]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein transport [GO:0015031] -O43763 reviewed TLX2_HUMAN T-cell leukemia homeobox protein 2 (Homeobox protein Hox-11L1) (Neural crest homeobox protein) TLX2 HOX11L1 NCX animal organ development [GO:0048513]; enteric nervous system development [GO:0048484]; mesoderm formation [GO:0001707]; negative regulation of dendrite morphogenesis [GO:0050774]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -O43889 reviewed CREB3_HUMAN Cyclic AMP-responsive element-binding protein 3 (CREB-3) (cAMP-responsive element-binding protein 3) (Leucine zipper protein) (Luman) (Transcription factor LZIP-alpha) [Cleaved into: Processed cyclic AMP-responsive element-binding protein 3 (N-terminal Luman) (Transcriptionally active form)] CREB3 LZIP chemotaxis [GO:0006935]; cytoplasmic sequestering of transcription factor [GO:0042994]; DNA-templated transcription [GO:0006351]; endoplasmic reticulum unfolded protein response [GO:0030968]; establishment of viral latency [GO:0019043]; induction of positive chemotaxis [GO:0050930]; integrated stress response signaling [GO:0140467]; negative regulation of cell cycle [GO:0045786]; negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway [GO:1902236]; positive regulation of calcium ion transport [GO:0051928]; positive regulation of cell migration [GO:0030335]; positive regulation of deacetylase activity [GO:0090045]; positive regulation of defense response to virus by host [GO:0002230]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of monocyte chemotaxis [GO:0090026]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of apoptotic process [GO:0042981]; regulation of cell growth [GO:0001558]; regulation of cell population proliferation [GO:0042127]; regulation of transcription by RNA polymerase II [GO:0006357]; release from viral latency [GO:0019046] -O43918 reviewed AIRE_HUMAN Autoimmune regulator (Autoimmune polyendocrinopathy candidiasis ectodermal dystrophy protein) (APECED protein) AIRE APECED central tolerance induction to self antigen [GO:0002509]; humoral immune response [GO:0006959]; immune response [GO:0006955]; negative thymic T cell selection [GO:0045060]; peripheral T cell tolerance induction [GO:0002458]; positive regulation of chemokine production [GO:0032722]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of thymocyte migration [GO:2000410]; thymus epithelium morphogenesis [GO:0097536]; transcription by RNA polymerase II [GO:0006366] -O60244 reviewed MED14_HUMAN Mediator of RNA polymerase II transcription subunit 14 (Activator-recruited cofactor 150 kDa component) (ARC150) (Cofactor required for Sp1 transcriptional activation subunit 2) (CRSP complex subunit 2) (Mediator complex subunit 14) (RGR1 homolog) (hRGR1) (Thyroid hormone receptor-associated protein complex 170 kDa component) (Trap170) (Transcriptional coactivator CRSP150) (Vitamin D3 receptor-interacting protein complex 150 kDa component) (DRIP150) MED14 ARC150 CRSP2 CXorf4 DRIP150 EXLM1 RGR1 TRAP170 positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA polymerase II preinitiation complex assembly [GO:0051123]; somatic stem cell population maintenance [GO:0035019] -O60248 reviewed SOX15_HUMAN Transcription factor SOX-15 (Protein SOX-12) (Protein SOX-20) (SRY-box transcription factor 15) SOX15 SOX12 SOX20 SOX26 SOX27 brain development [GO:0007420]; cell differentiation [GO:0030154]; chromatin organization [GO:0006325]; male gonad development [GO:0008584]; myoblast development [GO:0048627]; negative regulation of striated muscle tissue development [GO:0045843]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron differentiation [GO:0030182]; positive regulation of G0 to G1 transition [GO:0070318]; positive regulation of myoblast proliferation [GO:2000288]; positive regulation of satellite cell activation involved in skeletal muscle regeneration [GO:0014718]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; skeletal muscle tissue regeneration [GO:0043403]; trophoblast giant cell differentiation [GO:0060707] -O60260 reviewed PRKN_HUMAN E3 ubiquitin-protein ligase parkin (Parkin) (EC 2.3.2.31) (Parkin RBR E3 ubiquitin-protein ligase) (Parkinson juvenile disease protein 2) (Parkinson disease protein 2) PRKN PARK2 adult locomotory behavior [GO:0008344]; aggresome assembly [GO:0070842]; amyloid fibril formation [GO:1990000]; autophagy of mitochondrion [GO:0000422]; cellular response to dopamine [GO:1903351]; cellular response to manganese ion [GO:0071287]; cellular response to oxidative stress [GO:0034599]; cellular response to toxic substance [GO:0097237]; cellular response to unfolded protein [GO:0034620]; central nervous system development [GO:0007417]; dopamine metabolic process [GO:0042417]; dopamine uptake involved in synaptic transmission [GO:0051583]; ERAD pathway [GO:0036503]; free ubiquitin chain polymerization [GO:0010994]; learning [GO:0007612]; macroautophagy [GO:0016236]; mitochondrial fission [GO:0000266]; mitochondrion organization [GO:0007005]; mitochondrion to lysosome vesicle-mediated transport [GO:0099074]; mitophagy [GO:0000423]; negative regulation by host of viral genome replication [GO:0044828]; negative regulation of actin filament bundle assembly [GO:0032232]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway [GO:1902236]; negative regulation of endoplasmic reticulum stress-induced neuron intrinsic apoptotic signaling pathway [GO:1903382]; negative regulation of exosomal secretion [GO:1903542]; negative regulation of gene expression [GO:0010629]; negative regulation of glucokinase activity [GO:0033132]; negative regulation of insulin secretion [GO:0046676]; negative regulation of intralumenal vesicle formation [GO:1905366]; negative regulation of intrinsic apoptotic signaling pathway by p53 class mediator [GO:1902254]; negative regulation of JNK cascade [GO:0046329]; negative regulation of mitochondrial fusion [GO:0010637]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway [GO:1903377]; negative regulation of primary amine oxidase activity [GO:1902283]; negative regulation of protein phosphorylation [GO:0001933]; negative regulation of reactive oxygen species metabolic process [GO:2000378]; negative regulation of release of cytochrome c from mitochondria [GO:0090201]; negative regulation of spontaneous neurotransmitter secretion [GO:1904049]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron cellular homeostasis [GO:0070050]; norepinephrine metabolic process [GO:0042415]; parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization [GO:0061734]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of dendrite extension [GO:1903861]; positive regulation of DNA binding [GO:0043388]; positive regulation of gene expression [GO:0010628]; positive regulation of mitochondrial fission [GO:0090141]; positive regulation of mitochondrial fusion [GO:0010636]; positive regulation of mitophagy [GO:1901526]; positive regulation of mitophagy in response to mitochondrial depolarization [GO:0098779]; positive regulation of neurotransmitter uptake [GO:0051582]; positive regulation of proteasomal protein catabolic process [GO:1901800]; positive regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032436]; positive regulation of protein binding [GO:0032092]; positive regulation of protein catabolic process [GO:0045732]; positive regulation of protein linear polyubiquitination [GO:1902530]; positive regulation of protein localization to membrane [GO:1905477]; positive regulation of retrograde transport, endosome to Golgi [GO:1905281]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor-mediated signaling pathway [GO:1903265]; proteasomal protein catabolic process [GO:0010498]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; protein autoubiquitination [GO:0051865]; protein destabilization [GO:0031648]; protein K11-linked ubiquitination [GO:0070979]; protein K27-linked ubiquitination [GO:0044314]; protein K29-linked ubiquitination [GO:0035519]; protein K48-linked ubiquitination [GO:0070936]; protein K6-linked ubiquitination [GO:0085020]; protein K63-linked ubiquitination [GO:0070534]; protein localization to mitochondrion [GO:0070585]; protein monoubiquitination [GO:0006513]; protein polyubiquitination [GO:0000209]; protein stabilization [GO:0050821]; protein ubiquitination [GO:0016567]; regulation of apoptotic process [GO:0042981]; regulation of autophagy [GO:0010506]; regulation of canonical Wnt signaling pathway [GO:0060828]; regulation of cellular response to oxidative stress [GO:1900407]; regulation of dopamine metabolic process [GO:0042053]; regulation of dopamine secretion [GO:0014059]; regulation of glucose metabolic process [GO:0010906]; regulation of lipid transport [GO:0032368]; regulation of mitochondrial membrane potential [GO:0051881]; regulation of mitochondrion organization [GO:0010821]; regulation of necroptotic process [GO:0060544]; regulation of protein stability [GO:0031647]; regulation of protein targeting to mitochondrion [GO:1903214]; regulation of protein ubiquitination [GO:0031396]; regulation of reactive oxygen species metabolic process [GO:2000377]; regulation of synaptic vesicle endocytosis [GO:1900242]; regulation of synaptic vesicle transport [GO:1902803]; regulation protein catabolic process at presynapse [GO:0140251]; response to endoplasmic reticulum stress [GO:0034976]; response to oxidative stress [GO:0006979]; startle response [GO:0001964]; synaptic transmission, glutamatergic [GO:0035249]; ubiquitin-dependent protein catabolic process [GO:0006511] -O60264 reviewed SMCA5_HUMAN SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily A member 5 (SWI/SNF-related matrix-associated actin-dependent regulator of chromatin A5) (EC 3.6.4.-) (Sucrose nonfermenting protein 2 homolog) (hSNF2H) SMARCA5 SNF2H WCRF135 antiviral innate immune response [GO:0140374]; cellular response to leukemia inhibitory factor [GO:1990830]; chromatin organization [GO:0006325]; chromatin remodeling [GO:0006338]; DNA damage response [GO:0006974]; DNA methylation-dependent heterochromatin formation [GO:0006346]; DNA repair [GO:0006281]; DNA-templated transcription initiation [GO:0006352]; heterochromatin formation [GO:0031507]; negative regulation of mitotic chromosome condensation [GO:1905213]; negative regulation of transcription by RNA polymerase I [GO:0016479]; nucleosome assembly [GO:0006334]; positive regulation of DNA replication [GO:0045740]; positive regulation of transcription by RNA polymerase I [GO:0045943]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription by RNA polymerase III [GO:0045945]; rDNA heterochromatin formation [GO:0000183]; regulation of DNA replication [GO:0006275]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357] -O60281 reviewed ZN292_HUMAN Zinc finger protein 292 ZNF292 KIAA0530 regulation of transcription by RNA polymerase II [GO:0006357] -O60284 reviewed ST18_HUMAN Suppression of tumorigenicity 18 protein (Zinc finger protein 387) ST18 KIAA0535 ZNF387 interleukin-1-mediated signaling pathway [GO:0070498]; interleukin-6-mediated signaling pathway [GO:0070102]; negative regulation of cell population proliferation [GO:0008285]; positive regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway [GO:2001269]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of gene expression [GO:0010468]; tumor necrosis factor-mediated signaling pathway [GO:0033209] -O60315 reviewed ZEB2_HUMAN Zinc finger E-box-binding homeobox 2 (Smad-interacting protein 1) (SMADIP1) (Zinc finger homeobox protein 1b) ZEB2 KIAA0569 SIP1 ZFHX1B ZFX1B HRIHFB2411 astrocyte activation [GO:0048143]; developmental pigmentation [GO:0048066]; endothelial cell migration [GO:0043542]; endothelial cell proliferation [GO:0001935]; fibroblast activation [GO:0072537]; melanocyte migration [GO:0097324]; myofibroblast differentiation [GO:0036446]; negative regulation of fibroblast migration [GO:0010764]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system development [GO:0007399]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of melanin biosynthetic process [GO:0048023]; positive regulation of melanocyte differentiation [GO:0045636]; positive regulation of myofibroblast contraction [GO:1904330]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta receptor signaling pathway [GO:0030511]; pyroptosis [GO:0070269]; regulation of blood-brain barrier permeability [GO:1905603]; regulation of melanosome organization [GO:1903056]; regulation of myofibroblast cell apoptotic process [GO:1904520]; regulation of transcription by RNA polymerase II [GO:0006357]; response to oxygen-glucose deprivation [GO:0090649]; stress fiber assembly [GO:0043149] -O60341 reviewed KDM1A_HUMAN Lysine-specific histone demethylase 1A (EC 1.14.99.66) (BRAF35-HDAC complex protein BHC110) (Flavin-containing amine oxidase domain-containing protein 2) ([histone H3]-dimethyl-L-lysine(4) FAD-dependent demethylase 1A) KDM1A AOF2 KDM1 KIAA0601 LSD1 cellular response to cAMP [GO:0071320]; cellular response to gamma radiation [GO:0071480]; cellular response to UV [GO:0034644]; cerebral cortex development [GO:0021987]; chromatin remodeling [GO:0006338]; DNA repair-dependent chromatin remodeling [GO:0140861]; guanine metabolic process [GO:0046098]; muscle cell development [GO:0055001]; negative regulation of DNA binding [GO:0043392]; negative regulation of DNA damage response, signal transduction by p53 class mediator [GO:0043518]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:1902166]; negative regulation of protein binding [GO:0032091]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron maturation [GO:0042551]; positive regulation of cell size [GO:0045793]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of neural precursor cell proliferation [GO:2000179]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of neuron projection development [GO:0010976]; positive regulation of protein ubiquitination [GO:0031398]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein demethylation [GO:0006482]; regulation of androgen receptor signaling pathway [GO:0060765]; regulation of DNA methylation-dependent heterochromatin formation [GO:0090308]; regulation of double-strand break repair via homologous recombination [GO:0010569]; regulation of protein localization [GO:0032880]; regulation of transcription by RNA polymerase II [GO:0006357]; response to fungicide [GO:0060992] -O60479 reviewed DLX3_HUMAN Homeobox protein DLX-3 DLX3 blood vessel development [GO:0001568]; BMP signaling pathway [GO:0030509]; epithelial cell differentiation [GO:0030855]; gene expression [GO:0010467]; hair cell differentiation [GO:0035315]; hair follicle cell proliferation [GO:0071335]; hair follicle morphogenesis [GO:0031069]; odontoblast differentiation [GO:0071895]; odontogenesis of dentin-containing tooth [GO:0042475]; placenta development [GO:0001890]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; Wnt signaling pathway [GO:0016055] -O60481 reviewed ZIC3_HUMAN Zinc finger protein ZIC 3 (Zinc finger protein 203) (Zinc finger protein of the cerebellum 3) ZIC3 ZNF203 atrial cardiac muscle tissue development [GO:0003228]; axial mesoderm development [GO:0048318]; central nervous system development [GO:0007417]; central nervous system segmentation [GO:0035283]; cranial skeletal system development [GO:1904888]; determination of digestive tract left/right asymmetry [GO:0071907]; determination of left/right asymmetry in nervous system [GO:0035545]; determination of left/right symmetry [GO:0007368]; determination of liver left/right asymmetry [GO:0071910]; determination of pancreatic left/right asymmetry [GO:0035469]; embryonic pattern specification [GO:0009880]; face development [GO:0060324]; germ-line stem cell population maintenance [GO:0030718]; heart looping [GO:0001947]; hippocampus development [GO:0021766]; left/right axis specification [GO:0070986]; limb morphogenesis [GO:0035108]; lung development [GO:0030324]; mRNA transcription by RNA polymerase II [GO:0042789]; neural plate development [GO:0001840]; neuron differentiation [GO:0030182]; olfactory bulb development [GO:0021772]; outer ear morphogenesis [GO:0042473]; paraxial mesoderm development [GO:0048339]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; primitive streak formation [GO:0090009]; skeletal system development [GO:0001501]; smoothened signaling pathway [GO:0007224]; stem cell differentiation [GO:0048863] -O60548 reviewed FOXD2_HUMAN Forkhead box protein D2 (Forkhead-related protein FKHL17) (Forkhead-related transcription factor 9) (FREAC-9) FOXD2 FKHL17 FREAC9 anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -O60563 reviewed CCNT1_HUMAN Cyclin-T1 (CycT1) (Cyclin-T) CCNT1 cell division [GO:0051301]; positive regulation by host of viral transcription [GO:0043923]; positive regulation of DNA-templated transcription, elongation [GO:0032786]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0000079]; regulation of transcription by RNA polymerase II [GO:0006357]; response to xenobiotic stimulus [GO:0009410]; transcription by RNA polymerase II [GO:0006366] -O60565 reviewed GREM1_HUMAN Gremlin-1 (Cell proliferation-inducing gene 2 protein) (Cysteine knot superfamily 1, BMP antagonist 1) (DAN domain family member 2) (Down-regulated in Mos-transformed cells protein) (Increased in high glucose protein 2) (IHG-2) GREM1 CKTSF1B1 DAND2 DRM PIG2 animal organ morphogenesis [GO:0009887]; cardiac muscle cell differentiation [GO:0055007]; cardiac muscle cell myoblast differentiation [GO:0060379]; cell migration involved in sprouting angiogenesis [GO:0002042]; cell morphogenesis [GO:0000902]; cell-cell signaling [GO:0007267]; collagen fibril organization [GO:0030199]; determination of dorsal identity [GO:0048263]; embryonic limb morphogenesis [GO:0030326]; limb development [GO:0060173]; mesenchymal to epithelial transition involved in metanephros morphogenesis [GO:0003337]; negative regulation of apoptotic process [GO:0043066]; negative regulation of BMP signaling pathway [GO:0030514]; negative regulation of bone mineralization [GO:0030502]; negative regulation of bone mineralization involved in bone maturation [GO:1900158]; negative regulation of bone remodeling [GO:0046851]; negative regulation of bone trabecula formation [GO:1900155]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cell growth [GO:0030308]; negative regulation of chondrocyte differentiation [GO:0032331]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of monocyte chemotaxis [GO:0090027]; negative regulation of osteoblast differentiation [GO:0045668]; negative regulation of osteoblast proliferation [GO:0033689]; negative regulation of osteoclast proliferation [GO:0090291]; negative regulation of SMAD protein signal transduction [GO:0060392]; positive regulation of angiogenesis [GO:0045766]; positive regulation of branching involved in ureteric bud morphogenesis [GO:0090190]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of peptidyl-tyrosine autophosphorylation [GO:1900086]; positive regulation of receptor internalization [GO:0002092]; positive regulation of signaling receptor activity [GO:2000273]; positive regulation of telomerase activity [GO:0051973]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proximal/distal pattern formation [GO:0009954]; regulation of epithelial to mesenchymal transition [GO:0010717]; regulation of focal adhesion assembly [GO:0051893]; sequestering of BMP from receptor via BMP binding [GO:0038098]; signal transduction [GO:0007165]; ureteric bud formation [GO:0060676] -O60583 reviewed CCNT2_HUMAN Cyclin-T2 (CycT2) CCNT2 cell division [GO:0051301]; early viral transcription [GO:0019085]; late viral transcription [GO:0019086]; positive regulation by host of viral transcription [GO:0043923]; positive regulation of DNA-templated transcription, elongation [GO:0032786]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0000079]; regulation of muscle cell differentiation [GO:0051147]; regulation of transcription by RNA polymerase II [GO:0006357]; skeletal muscle tissue development [GO:0007519]; transcription by RNA polymerase II [GO:0006366] -O60603 reviewed TLR2_HUMAN Toll-like receptor 2 (Toll/interleukin-1 receptor-like protein 4) (CD antigen CD282) TLR2 TIL4 apoptotic process [GO:0006915]; cellular response to bacterial lipopeptide [GO:0071221]; cellular response to diacyl bacterial lipopeptide [GO:0071726]; cellular response to lipoteichoic acid [GO:0071223]; cellular response to triacyl bacterial lipopeptide [GO:0071727]; cellular response to type II interferon [GO:0071346]; central nervous system myelin formation [GO:0032289]; defense response to Gram-positive bacterium [GO:0050830]; defense response to virus [GO:0051607]; detection of diacyl bacterial lipopeptide [GO:0042496]; detection of triacyl bacterial lipopeptide [GO:0042495]; I-kappaB phosphorylation [GO:0007252]; immune response [GO:0006955]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; learning [GO:0007612]; leukotriene metabolic process [GO:0006691]; microglia development [GO:0014005]; microglial cell activation [GO:0001774]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of phagocytosis [GO:0050765]; negative regulation of synapse assembly [GO:0051964]; nitric oxide metabolic process [GO:0046209]; positive regulation of cellular response to macrophage colony-stimulating factor stimulus [GO:1903974]; positive regulation of chemokine production [GO:0032722]; positive regulation of gene expression [GO:0010628]; positive regulation of inflammatory response [GO:0050729]; positive regulation of interferon-beta production [GO:0032728]; positive regulation of interleukin-10 production [GO:0032733]; positive regulation of interleukin-12 production [GO:0032735]; positive regulation of interleukin-18 production [GO:0032741]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of matrix metallopeptidase secretion [GO:1904466]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of nitric-oxide synthase biosynthetic process [GO:0051770]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of oligodendrocyte differentiation [GO:0048714]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of Wnt signaling pathway [GO:0030177]; response to fatty acid [GO:0070542]; response to hypoxia [GO:0001666]; response to insulin [GO:0032868]; response to progesterone [GO:0032570]; response to toxic substance [GO:0009636]; signal transduction [GO:0007165]; toll-like receptor 2 signaling pathway [GO:0034134]; toll-like receptor signaling pathway [GO:0002224]; toll-like receptor TLR6:TLR2 signaling pathway [GO:0038124] -O60663 reviewed LMX1B_HUMAN LIM homeobox transcription factor 1-beta (LIM/homeobox protein 1.2) (LMX-1.2) (LIM/homeobox protein LMX1B) LMX1B dopaminergic neuron differentiation [GO:0071542]; dorsal/ventral pattern formation [GO:0009953]; neuron differentiation [GO:0030182]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357] -O60674 reviewed JAK2_HUMAN Tyrosine-protein kinase JAK2 (EC 2.7.10.2) (Janus kinase 2) (JAK-2) JAK2 actin filament polymerization [GO:0030041]; activation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0006919]; activation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway [GO:0097296]; activation of Janus kinase activity [GO:0042976]; adaptive immune response [GO:0002250]; apoptotic process [GO:0006915]; axon regeneration [GO:0031103]; cell differentiation [GO:0030154]; cell surface receptor signaling pathway via JAK-STAT [GO:0007259]; cellular response to dexamethasone stimulus [GO:0071549]; cellular response to interleukin-3 [GO:0036016]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to virus [GO:0098586]; collagen-activated signaling pathway [GO:0038065]; cytokine-mediated signaling pathway [GO:0019221]; enzyme-linked receptor protein signaling pathway [GO:0007167]; erythrocyte differentiation [GO:0030218]; extrinsic apoptotic signaling pathway [GO:0097191]; G protein-coupled receptor signaling pathway [GO:0007186]; granulocyte-macrophage colony-stimulating factor signaling pathway [GO:0038157]; growth hormone receptor signaling pathway [GO:0060396]; growth hormone receptor signaling pathway via JAK-STAT [GO:0060397]; immune response [GO:0006955]; interleukin-12-mediated signaling pathway [GO:0035722]; interleukin-3-mediated signaling pathway [GO:0038156]; interleukin-35-mediated signaling pathway [GO:0070757]; interleukin-5-mediated signaling pathway [GO:0038043]; interleukin-6-mediated signaling pathway [GO:0070102]; intracellular signal transduction [GO:0035556]; intrinsic apoptotic signaling pathway in response to oxidative stress [GO:0008631]; mammary gland epithelium development [GO:0061180]; mesoderm development [GO:0007498]; microglial cell activation [GO:0001774]; mineralocorticoid receptor signaling pathway [GO:0031959]; modulation of chemical synaptic transmission [GO:0050804]; negative regulation of cardiac muscle cell apoptotic process [GO:0010667]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of cell-cell adhesion [GO:0022408]; negative regulation of DNA binding [GO:0043392]; negative regulation of neuron apoptotic process [GO:0043524]; peptidyl-tyrosine phosphorylation [GO:0018108]; platelet-derived growth factor receptor signaling pathway [GO:0048008]; positive regulation of apoptotic signaling pathway [GO:2001235]; positive regulation of cell differentiation [GO:0045597]; positive regulation of cell migration [GO:0030335]; positive regulation of cell-substrate adhesion [GO:0010811]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of epithelial cell apoptotic process [GO:1904037]; positive regulation of growth factor dependent skeletal muscle satellite cell proliferation [GO:1902728]; positive regulation of growth hormone receptor signaling pathway [GO:0060399]; positive regulation of insulin secretion [GO:0032024]; positive regulation of interleukin-1 beta production [GO:0032731]; positive regulation of interleukin-17 production [GO:0032740]; positive regulation of leukocyte proliferation [GO:0070665]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of MHC class II biosynthetic process [GO:0045348]; positive regulation of natural killer cell proliferation [GO:0032819]; positive regulation of nitric oxide biosynthetic process [GO:0045429]; positive regulation of nitric-oxide synthase biosynthetic process [GO:0051770]; positive regulation of NK T cell proliferation [GO:0051142]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of platelet activation [GO:0010572]; positive regulation of platelet aggregation [GO:1901731]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of receptor signaling pathway via JAK-STAT [GO:0046427]; positive regulation of signaling receptor activity [GO:2000273]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 17 type immune response [GO:2000318]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of type II interferon production [GO:0032729]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; positive regulation of vascular associated smooth muscle cell proliferation [GO:1904707]; post-embryonic hemopoiesis [GO:0035166]; post-translational protein modification [GO:0043687]; protein autophosphorylation [GO:0046777]; protein phosphorylation [GO:0006468]; regulation of apoptotic process [GO:0042981]; regulation of inflammatory response [GO:0050727]; regulation of nitric oxide biosynthetic process [GO:0045428]; regulation of postsynapse to nucleus signaling pathway [GO:1905539]; regulation of receptor signaling pathway via JAK-STAT [GO:0046425]; response to amine [GO:0014075]; response to antibiotic [GO:0046677]; response to hydroperoxide [GO:0033194]; response to interleukin-12 [GO:0070671]; response to lipopolysaccharide [GO:0032496]; response to tumor necrosis factor [GO:0034612]; signal transduction [GO:0007165]; symbiont-induced defense-related programmed cell death [GO:0034050]; transcription by RNA polymerase II [GO:0006366]; tumor necrosis factor-mediated signaling pathway [GO:0033209]; type II interferon-mediated signaling pathway [GO:0060333]; tyrosine phosphorylation of STAT protein [GO:0007260] -O60684 reviewed IMA7_HUMAN Importin subunit alpha-7 (Karyopherin subunit alpha-6) KPNA6 IPOA7 entry of viral genome into host nucleus through nuclear pore complex via importin [GO:0075506]; maternal process involved in female pregnancy [GO:0060135]; NLS-bearing protein import into nucleus [GO:0006607]; positive regulation of cytokine production involved in inflammatory response [GO:1900017]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of viral life cycle [GO:1903902]; protein import into nucleus [GO:0006606]; transcription by RNA polymerase II [GO:0006366]; viral genome replication [GO:0019079] -O60755 reviewed GALR3_HUMAN Galanin receptor type 3 (GAL3-R) (GALR-3) GALR3 GALNR3 adenylate cyclase-modulating G protein-coupled receptor signaling pathway [GO:0007188]; chemical synaptic transmission [GO:0007268]; feeding behavior [GO:0007631]; G protein-coupled receptor signaling pathway, coupled to cyclic nucleotide second messenger [GO:0007187]; galanin-activated signaling pathway [GO:0090663]; learning or memory [GO:0007611]; neuropeptide signaling pathway [GO:0007218]; positive regulation of transcription by RNA polymerase II [GO:0045944] -O60806 reviewed TBX19_HUMAN T-box transcription factor TBX19 (T-box protein 19) (T-box factor, pituitary) TBX19 TPIT anatomical structure morphogenesis [GO:0009653]; cell fate specification [GO:0001708]; heart morphogenesis [GO:0003007]; mesoderm formation [GO:0001707]; pituitary gland development [GO:0021983]; regulation of cell differentiation [GO:0045595]; regulation of cell population proliferation [GO:0042127]; regulation of transcription by RNA polymerase II [GO:0006357] -O60885 reviewed BRD4_HUMAN Bromodomain-containing protein 4 (Protein HUNK1) BRD4 HUNK1 chromatin remodeling [GO:0006338]; DNA damage response [GO:0006974]; negative regulation by host of viral transcription [GO:0043922]; negative regulation of DNA damage checkpoint [GO:2000002]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; positive regulation of T-helper 17 cell lineage commitment [GO:2000330]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; regulation of inflammatory response [GO:0050727]; regulation of transcription by RNA polymerase II [GO:0006357] -O60907 reviewed TBL1X_HUMAN F-box-like/WD repeat-containing protein TBL1X (SMAP55) (Transducin beta-like protein 1X) (Transducin-beta-like protein 1, X-linked) TBL1X TBL1 negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; protein stabilization [GO:0050821]; proteolysis [GO:0006508]; regulation of transcription by RNA polymerase II [GO:0006357]; sensory perception of sound [GO:0007605] -O75030 reviewed MITF_HUMAN Microphthalmia-associated transcription factor (Class E basic helix-loop-helix protein 32) (bHLHe32) MITF BHLHE32 bone remodeling [GO:0046849]; camera-type eye development [GO:0043010]; cell fate commitment [GO:0045165]; melanocyte apoptotic process [GO:1902362]; melanocyte differentiation [GO:0030318]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cell migration [GO:0030336]; negative regulation of transcription by RNA polymerase II [GO:0000122]; osteoclast differentiation [GO:0030316]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of DNA-templated transcription initiation [GO:2000144]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein-containing complex assembly [GO:0065003]; regulation of cell population proliferation [GO:0042127]; regulation of DNA-templated transcription [GO:0006355]; regulation of osteoclast differentiation [GO:0045670]; regulation of RNA biosynthetic process [GO:2001141]; regulation of transcription by RNA polymerase II [GO:0006357]; Wnt signaling pathway [GO:0016055] -O75132 reviewed ZBED4_HUMAN Zinc finger BED domain-containing protein 4 ZBED4 KIAA0637 positive regulation of transcription by RNA polymerase II [GO:0045944] -O75150 reviewed BRE1B_HUMAN E3 ubiquitin-protein ligase BRE1B (BRE1-B) (EC 2.3.2.27) (95 kDa retinoblastoma-associated protein) (RBP95) (RING finger protein 40) (RING-type E3 ubiquitin transferase BRE1B) RNF40 BRE1B KIAA0661 chromatin organization [GO:0006325]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein ubiquitination [GO:0016567]; ubiquitin-dependent protein catabolic process [GO:0006511] -O75177 reviewed CREST_HUMAN Calcium-responsive transactivator (SS18-like protein 1) (SYT homolog 1) SS18L1 CREST KIAA0693 chromatin organization [GO:0006325]; dendrite development [GO:0016358]; positive regulation of dendrite morphogenesis [GO:0050775]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944] -O75197 reviewed LRP5_HUMAN Low-density lipoprotein receptor-related protein 5 (LRP-5) (Low-density lipoprotein receptor-related protein 7) (LRP-7) LRP5 LR3 LRP7 adipose tissue development [GO:0060612]; amino acid transport [GO:0006865]; anatomical structure regression [GO:0060033]; anterior/posterior pattern specification [GO:0009952]; apoptotic process involved in blood vessel morphogenesis [GO:1902262]; bone marrow development [GO:0048539]; bone morphogenesis [GO:0060349]; bone remodeling [GO:0046849]; branching involved in mammary gland duct morphogenesis [GO:0060444]; canonical Wnt signaling pathway [GO:0060070]; cell migration involved in gastrulation [GO:0042074]; cell-cell adhesion [GO:0098609]; cell-cell signaling involved in mammary gland development [GO:0060764]; cholesterol homeostasis [GO:0042632]; cholesterol metabolic process [GO:0008203]; embryonic digit morphogenesis [GO:0042733]; endocytosis [GO:0006897]; establishment of blood-brain barrier [GO:0060856]; establishment of blood-retinal barrier [GO:1990963]; extracellular matrix-cell signaling [GO:0035426]; gastrulation with mouth forming second [GO:0001702]; gene expression [GO:0010467]; glucose catabolic process [GO:0006007]; mesodermal cell migration [GO:0008078]; negative regulation of osteoblast differentiation [GO:0045668]; negative regulation of protein serine/threonine kinase activity [GO:0071901]; nervous system development [GO:0007399]; Norrin signaling pathway [GO:0110135]; osteoblast development [GO:0002076]; osteoblast proliferation [GO:0033687]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of fat cell differentiation [GO:0045600]; positive regulation of mesenchymal cell proliferation [GO:0002053]; positive regulation of mitotic nuclear division [GO:0045840]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of osteoblast proliferation [GO:0033690]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of apoptotic process [GO:0042981]; regulation of blood pressure [GO:0008217]; regulation of insulin secretion involved in cellular response to glucose stimulus [GO:0061178]; response to peptide hormone [GO:0043434]; retina morphogenesis in camera-type eye [GO:0060042]; retinal blood vessel morphogenesis [GO:0061304]; somatic stem cell population maintenance [GO:0035019] -O75360 reviewed PROP1_HUMAN Homeobox protein prophet of Pit-1 (PROP-1) (Pituitary-specific homeodomain factor) PROP1 apoptotic process [GO:0006915]; blood vessel development [GO:0001568]; cell migration [GO:0016477]; central nervous system development [GO:0007417]; dorsal/ventral pattern formation [GO:0009953]; hypophysis morphogenesis [GO:0048850]; hypothalamus cell differentiation [GO:0021979]; negative regulation of apoptotic process [GO:0043066]; regulation of transcription by RNA polymerase II [GO:0006357]; somatotropin secreting cell differentiation [GO:0060126] -O75444 reviewed MAF_HUMAN Transcription factor Maf (Proto-oncogene c-Maf) (V-maf musculoaponeurotic fibrosarcoma oncogene homolog) MAF inner ear development [GO:0048839]; integrated stress response signaling [GO:0140467]; lens fiber cell differentiation [GO:0070306]; megakaryocyte differentiation [GO:0030219]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of gene expression [GO:0010628]; regulation of chondrocyte differentiation [GO:0032330]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription by RNA polymerase II [GO:0006366] -O75448 reviewed MED24_HUMAN Mediator of RNA polymerase II transcription subunit 24 (Activator-recruited cofactor 100 kDa component) (ARC100) (Cofactor required for Sp1 transcriptional activation subunit 4) (CRSP complex subunit 4) (Mediator complex subunit 24) (Thyroid hormone receptor-associated protein 4) (Thyroid hormone receptor-associated protein complex 100 kDa component) (Trap100) (hTRAP100) (Vitamin D3 receptor-interacting protein complex 100 kDa component) (DRIP100) MED24 ARC100 CRSP4 DRIP100 KIAA0130 THRAP4 TRAP100 positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; RNA polymerase II preinitiation complex assembly [GO:0051123] -O75469 reviewed NR1I2_HUMAN Nuclear receptor subfamily 1 group I member 2 (Orphan nuclear receptor PAR1) (Orphan nuclear receptor PXR) (Pregnane X receptor) (Steroid and xenobiotic receptor) (SXR) NR1I2 PXR cell differentiation [GO:0030154]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; signal transduction [GO:0007165]; steroid metabolic process [GO:0008202]; xenobiotic catabolic process [GO:0042178]; xenobiotic metabolic process [GO:0006805]; xenobiotic transport [GO:0042908] -O75475 reviewed PSIP1_HUMAN PC4 and SFRS1-interacting protein (CLL-associated antigen KW-7) (Dense fine speckles 70 kDa protein) (DFS 70) (Lens epithelium-derived growth factor) (Transcriptional coactivator p75/p52) PSIP1 DFS70 LEDGF PSIP2 chromatin remodeling [GO:0006338]; mRNA 5'-splice site recognition [GO:0000395]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to heat [GO:0009408]; response to oxidative stress [GO:0006979] -O75533 reviewed SF3B1_HUMAN Splicing factor 3B subunit 1 (Pre-mRNA-splicing factor SF3b 155 kDa subunit) (SF3b155) (Spliceosome-associated protein 155) (SAP 155) SF3B1 SAP155 chromatin remodeling [GO:0006338]; mRNA splicing, via spliceosome [GO:0000398]; positive regulation of transcription by RNA polymerase I [GO:0045943]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription by RNA polymerase III [GO:0045945]; RNA splicing [GO:0008380]; RNA splicing, via transesterification reactions [GO:0000375]; spliceosomal complex assembly [GO:0000245]; U2-type prespliceosome assembly [GO:1903241] -O75581 reviewed LRP6_HUMAN Low-density lipoprotein receptor-related protein 6 (LRP-6) LRP6 canonical Wnt signaling pathway [GO:0060070]; cell-cell adhesion [GO:0098609]; cellular response to cholesterol [GO:0071397]; chemical synaptic transmission [GO:0007268]; dopaminergic neuron differentiation [GO:0071542]; endocytosis [GO:0006897]; midbrain dopaminergic neuron differentiation [GO:1904948]; negative regulation of protein serine/threonine kinase activity [GO:0071901]; negative regulation of smooth muscle cell apoptotic process [GO:0034392]; nervous system development [GO:0007399]; neural crest cell differentiation [GO:0014033]; neural crest formation [GO:0014029]; positive regulation of cell cycle [GO:0045787]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to plasma membrane [GO:0072659]; response to peptide hormone [GO:0043434]; Wnt signaling pathway [GO:0016055] -O75582 reviewed KS6A5_HUMAN Ribosomal protein S6 kinase alpha-5 (S6K-alpha-5) (EC 2.7.11.1) (90 kDa ribosomal protein S6 kinase 5) (Nuclear mitogen- and stress-activated protein kinase 1) (RSK-like protein kinase) (RSKL) RPS6KA5 MSK1 axon guidance [GO:0007411]; inflammatory response [GO:0006954]; interleukin-1-mediated signaling pathway [GO:0070498]; intracellular signal transduction [GO:0035556]; negative regulation of cytokine production [GO:0001818]; negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of CREB transcription factor activity [GO:0032793]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-translational protein modification [GO:0043687]; protein phosphorylation [GO:0006468]; regulation of DNA-templated transcription [GO:0006355]; regulation of postsynapse organization [GO:0099175] -O75586 reviewed MED6_HUMAN Mediator of RNA polymerase II transcription subunit 6 (Activator-recruited cofactor 33 kDa component) (ARC33) (Mediator complex subunit 6) (hMed6) (Renal carcinoma antigen NY-REN-28) MED6 ARC33 positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; protein ubiquitination [GO:0016567]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA polymerase II preinitiation complex assembly [GO:0051123]; somatic stem cell population maintenance [GO:0035019] -O75593 reviewed FOXH1_HUMAN Forkhead box protein H1 (Forkhead activin signal transducer 1) (Fast-1) (hFAST-1) (Forkhead activin signal transducer 2) (Fast-2) FOXH1 FAST1 FAST2 aorta morphogenesis [GO:0035909]; axial mesoderm development [GO:0048318]; cardiac right ventricle morphogenesis [GO:0003215]; cellular response to cytokine stimulus [GO:0071345]; determination of left/right asymmetry in lateral mesoderm [GO:0003140]; embryonic heart tube anterior/posterior pattern specification [GO:0035054]; heart looping [GO:0001947]; hepatocyte differentiation [GO:0070365]; negative regulation of androgen receptor signaling pathway [GO:0060766]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of intracellular estrogen receptor signaling pathway [GO:0033147]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nodal signaling pathway [GO:0038092]; outflow tract morphogenesis [GO:0003151]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; secondary heart field specification [GO:0003139]; transforming growth factor beta receptor signaling pathway [GO:0007179]; ventricular trabecula myocardium morphogenesis [GO:0003222] -O75603 reviewed GCM2_HUMAN Chorion-specific transcription factor GCMb (hGCMb) (GCM motif protein 2) (Glial cells missing homolog 2) GCM2 GCMB gliogenesis [GO:0042063]; intracellular calcium ion homeostasis [GO:0006874]; intracellular phosphate ion homeostasis [GO:0030643]; parathyroid gland development [GO:0060017]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription by RNA polymerase II [GO:0006366] -O75676 reviewed KS6A4_HUMAN Ribosomal protein S6 kinase alpha-4 (S6K-alpha-4) (EC 2.7.11.1) (90 kDa ribosomal protein S6 kinase 4) (Nuclear mitogen- and stress-activated protein kinase 2) (Ribosomal protein kinase B) (RSKB) RPS6KA4 MSK2 inflammatory response [GO:0006954]; interleukin-1-mediated signaling pathway [GO:0070498]; intracellular signal transduction [GO:0035556]; negative regulation of cytokine production [GO:0001818]; positive regulation of CREB transcription factor activity [GO:0032793]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-translational protein modification [GO:0043687]; protein phosphorylation [GO:0006468]; regulation of DNA-templated transcription [GO:0006355] -O75716 reviewed STK16_HUMAN Serine/threonine-protein kinase 16 (EC 2.7.11.1) (Myristoylated and palmitoylated serine/threonine-protein kinase) (MPSK) (Protein kinase PKL12) (TGF-beta-stimulated factor 1) (TSF-1) (Tyrosine-protein kinase STK16) (EC 2.7.10.2) (hPSK) STK16 MPSK1 PKL12 TSF1 cellular response to transforming growth factor beta stimulus [GO:0071560]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autophosphorylation [GO:0046777] -O75840 reviewed KLF7_HUMAN Krueppel-like factor 7 (Ubiquitous krueppel-like factor) KLF7 UKLF axon guidance [GO:0007411]; axonogenesis [GO:0007409]; dendrite morphogenesis [GO:0048813]; glucose homeostasis [GO:0042593]; negative regulation of adipose tissue development [GO:1904178]; negative regulation of insulin secretion involved in cellular response to glucose stimulus [GO:0061179]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of epidermal cell differentiation [GO:0045604]; regulation of transcription by RNA polymerase II [GO:0006357] -O75909 reviewed CCNK_HUMAN Cyclin-K CCNK CPR4 cell division [GO:0051301]; DNA damage response [GO:0006974]; negative regulation by host of viral genome replication [GO:0044828]; positive regulation of DNA-templated transcription, elongation [GO:0032786]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0000079]; regulation of signal transduction [GO:0009966]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription by RNA polymerase II [GO:0006366] -O94776 reviewed MTA2_HUMAN Metastasis-associated protein MTA2 (Metastasis-associated 1-like 1) (MTA1-L1 protein) (p53 target protein in deacetylase complex) MTA2 MTA1L1 PID chromatin organization [GO:0006325]; chromatin remodeling [GO:0006338]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell fate specification [GO:0042659]; regulation of fibroblast migration [GO:0010762]; regulation of stem cell differentiation [GO:2000736] -O94850 reviewed DEND_HUMAN Dendrin DDN KIAA0749 positive regulation of transcription by RNA polymerase II [GO:0045944] -O94851 reviewed MICA2_HUMAN [F-actin]-monooxygenase MICAL2 (EC 1.14.13.225) (MICAL C-terminal-like protein) (Mical-cL) (Molecule interacting with CasL protein 2) (MICAL-2) MICAL2 KIAA0750 MICAL2PV1 MICAL2PV2 MICALCL actin filament depolymerization [GO:0030042]; cytoskeleton organization [GO:0007010]; heart development [GO:0007507]; heart looping [GO:0001947]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sulfur oxidation [GO:0019417] -O94900 reviewed TOX_HUMAN Thymocyte selection-associated high mobility group box protein TOX (Thymus high mobility group box protein TOX) TOX KIAA0808 CD4-positive, alpha-beta T cell lineage commitment [GO:0043373]; CD4-positive, CD25-positive, alpha-beta regulatory T cell lineage commitment [GO:0002362]; CD8-positive, alpha-beta T cell lineage commitment [GO:0043375]; cerebral cortex neuron differentiation [GO:0021895]; chromatin organization [GO:0006325]; leukocyte differentiation [GO:0002521]; lymph node development [GO:0048535]; natural killer cell differentiation [GO:0001779]; NK T cell lineage commitment [GO:0002364]; Peyer's patch development [GO:0048541]; positive regulation of natural killer cell differentiation [GO:0032825]; positive regulation of neural precursor cell proliferation [GO:2000179]; positive regulation of neuron projection development [GO:0010976]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of positive thymic T cell selection [GO:1902232]; regulation of transcription by RNA polymerase II [GO:0006357] -O94906 reviewed PRP6_HUMAN Pre-mRNA-processing factor 6 (Androgen receptor N-terminal domain-transactivating protein 1) (ANT-1) (PRP6 homolog) (U5 snRNP-associated 102 kDa protein) (U5-102 kDa protein) PRPF6 C20orf14 mRNA splicing, via spliceosome [GO:0000398]; positive regulation of transcription by RNA polymerase II [GO:0045944]; RNA localization [GO:0006403]; RNA splicing [GO:0008380]; RNA splicing, via transesterification reactions [GO:0000375]; spliceosomal complex assembly [GO:0000245]; spliceosomal tri-snRNP complex assembly [GO:0000244] -O94916 reviewed NFAT5_HUMAN Nuclear factor of activated T-cells 5 (NF-AT5) (T-cell transcription factor NFAT5) (Tonicity-responsive enhancer-binding protein) (TonE-binding protein) (TonEBP) NFAT5 KIAA0827 TONEBP calcineurin-NFAT signaling cascade [GO:0033173]; cellular hyperosmotic response [GO:0071474]; cellular response to cytokine stimulus [GO:0071345]; DNA damage response [GO:0006974]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of gene expression [GO:0010628]; positive regulation of leukocyte adhesion to vascular endothelial cell [GO:1904996]; positive regulation of transcription by RNA polymerase II [GO:0045944]; R-loop processing [GO:0062176]; regulation of calcineurin-NFAT signaling cascade [GO:0070884]; regulation of transcription by RNA polymerase II [GO:0006357]; signal transduction [GO:0007165]; transcription by RNA polymerase II [GO:0006366] -O94929 reviewed ABLM3_HUMAN Actin-binding LIM protein 3 (abLIM-3) (Actin-binding LIM protein family member 3) ABLIM3 KIAA0843 HMFN1661 cilium assembly [GO:0060271]; cytoskeleton organization [GO:0007010]; lamellipodium assembly [GO:0030032]; positive regulation of protein targeting to mitochondrion [GO:1903955]; positive regulation of transcription by RNA polymerase II [GO:0045944]; transcription by RNA polymerase II [GO:0006366] -O94983 reviewed CMTA2_HUMAN Calmodulin-binding transcription activator 2 CAMTA2 KIAA0909 cardiac muscle hypertrophy in response to stress [GO:0014898]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -O94993 reviewed SOX30_HUMAN Transcription factor SOX-30 SOX30 negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of Wnt signaling pathway [GO:0030178]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proacrosomal vesicle fusion [GO:0120211]; regulation of transcription by RNA polymerase II [GO:0006357]; response to corticosteroid [GO:0031960]; spermatid development [GO:0007286] -O95096 reviewed NKX22_HUMAN Homeobox protein Nkx-2.2 (Homeobox protein NK-2 homolog B) NKX2-2 NKX2.2 NKX2B astrocyte differentiation [GO:0048708]; brain development [GO:0007420]; cell differentiation [GO:0030154]; digestive tract development [GO:0048565]; negative regulation of neuron differentiation [GO:0045665]; neuroendocrine cell differentiation [GO:0061101]; neuron fate specification [GO:0048665]; oligodendrocyte development [GO:0014003]; optic nerve development [GO:0021554]; pancreatic A cell fate commitment [GO:0003326]; pancreatic PP cell fate commitment [GO:0003329]; positive regulation of epithelial cell differentiation [GO:0030858]; positive regulation of gene expression [GO:0010628]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of oligodendrocyte differentiation [GO:0048714]; regulation of transcription by RNA polymerase II [GO:0006357]; response to glucose [GO:0009749]; response to progesterone [GO:0032570]; smoothened signaling pathway [GO:0007224]; spinal cord motor neuron differentiation [GO:0021522]; spinal cord oligodendrocyte cell fate specification [GO:0021530]; type B pancreatic cell development [GO:0003323]; type B pancreatic cell fate commitment [GO:0003327]; ventral spinal cord interneuron fate determination [GO:0060580] -O95231 reviewed VENTX_HUMAN Homeobox protein VENTX (VENT homeobox homolog) (VENT-like homeobox protein 2) VENTX HPX42B VENTX2 positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -O95238 reviewed SPDEF_HUMAN SAM pointed domain-containing Ets transcription factor (Prostate epithelium-specific Ets transcription factor) (Prostate-specific Ets) (Prostate-derived Ets factor) SPDEF PDEF PSE epithelial cell fate commitment [GO:0072148]; glandular epithelial cell development [GO:0002068]; intestinal epithelial cell development [GO:0060576]; lung goblet cell differentiation [GO:0060480]; negative regulation of cell fate commitment [GO:0010454]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of apoptotic process [GO:0043065]; positive regulation of cell fate commitment [GO:0010455]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription by RNA polymerase II [GO:0006366] -O95271 reviewed TNKS1_HUMAN Poly [ADP-ribose] polymerase tankyrase-1 (EC 2.4.2.30) (ADP-ribosyltransferase diphtheria toxin-like 5) (ARTD5) (Poly [ADP-ribose] polymerase 5A) (Protein poly-ADP-ribosyltransferase tankyrase-1) (EC 2.4.2.-) (TNKS-1) (TRF1-interacting ankyrin-related ADP-ribose polymerase) (Tankyrase I) (Tankyrase-1) (TANK1) TNKS PARP5A PARPL TIN1 TINF1 TNKS1 cell division [GO:0051301]; mitotic spindle organization [GO:0007052]; mRNA transport [GO:0051028]; negative regulation of maintenance of mitotic sister chromatid cohesion, telomeric [GO:1904908]; negative regulation of telomere maintenance via telomere lengthening [GO:1904357]; negative regulation of telomeric DNA binding [GO:1904743]; peptidyl-serine phosphorylation [GO:0018105]; peptidyl-threonine phosphorylation [GO:0018107]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of telomerase activity [GO:0051973]; positive regulation of telomere capping [GO:1904355]; positive regulation of telomere maintenance via telomerase [GO:0032212]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein auto-ADP-ribosylation [GO:0070213]; protein localization to chromosome, telomeric region [GO:0070198]; protein poly-ADP-ribosylation [GO:0070212]; protein polyubiquitination [GO:0000209]; protein transport [GO:0015031]; regulation of telomere maintenance via telomerase [GO:0032210]; spindle assembly [GO:0051225]; Wnt signaling pathway [GO:0016055] -O95343 reviewed SIX3_HUMAN Homeobox protein SIX3 (Sine oculis homeobox homolog 3) SIX3 apoptotic process involved in development [GO:1902742]; brain development [GO:0007420]; cell proliferation in forebrain [GO:0021846]; epithelial cell maturation [GO:0002070]; eye development [GO:0001654]; forebrain dorsal/ventral pattern formation [GO:0021798]; lens development in camera-type eye [GO:0002088]; lens fiber cell apoptotic process [GO:1990086]; lens fiber cell differentiation [GO:0070306]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of neuron differentiation [GO:0045665]; neuroblast differentiation [GO:0014016]; neuroblast migration [GO:0097402]; optic vesicle morphogenesis [GO:0003404]; pituitary gland development [GO:0021983]; proximal/distal axis specification [GO:0009946]; regulation of cell cycle phase transition [GO:1901987]; regulation of cell population proliferation [GO:0042127]; regulation of neural precursor cell proliferation [GO:2000177]; regulation of neural retina development [GO:0061074]; regulation of neuroblast proliferation [GO:1902692]; regulation of transcription by RNA polymerase II [GO:0006357]; telencephalon development [GO:0021537]; telencephalon regionalization [GO:0021978]; visual perception [GO:0007601] -O95402 reviewed MED26_HUMAN Mediator of RNA polymerase II transcription subunit 26 (Activator-recruited cofactor 70 kDa component) (ARC70) (Cofactor required for Sp1 transcriptional activation subunit 7) (CRSP complex subunit 7) (Mediator complex subunit 26) (Transcriptional coactivator CRSP70) MED26 ARC70 CRSP7 positive regulation of gene expression [GO:0010628]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA polymerase II preinitiation complex assembly [GO:0051123]; transcription initiation at RNA polymerase II promoter [GO:0006367] -O95416 reviewed SOX14_HUMAN Transcription factor SOX-14 (Protein SOX-28) SOX14 SOX28 brain development [GO:0007420]; entrainment of circadian clock [GO:0009649]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system development [GO:0007399]; neuron differentiation [GO:0030182]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of neuron migration [GO:2001222]; visual perception [GO:0007601] -O95633 reviewed FSTL3_HUMAN Follistatin-related protein 3 (Follistatin-like protein 3) (Follistatin-related gene protein) FSTL3 FLRG UNQ674/PRO1308 cell differentiation [GO:0030154]; hematopoietic progenitor cell differentiation [GO:0002244]; negative regulation of activin receptor signaling pathway [GO:0032926]; negative regulation of BMP signaling pathway [GO:0030514]; negative regulation of osteoclast differentiation [GO:0045671]; negative regulation of transmembrane receptor protein serine/threonine kinase signaling pathway [GO:0090101]; ossification [GO:0001503]; positive regulation of cell-cell adhesion [GO:0022409]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of BMP signaling pathway [GO:0030510]; regulation of transcription by RNA polymerase II [GO:0006357] -O95644 reviewed NFAC1_HUMAN Nuclear factor of activated T-cells, cytoplasmic 1 (NF-ATc1) (NFATc1) (NFAT transcription complex cytosolic component) (NF-ATc) (NFATc) NFATC1 NFAT2 NFATC aortic valve morphogenesis [GO:0003180]; calcineurin-NFAT signaling cascade [GO:0033173]; cellular response to transforming growth factor beta stimulus [GO:0071560]; cellular response to tumor necrosis factor [GO:0071356]; intracellular signal transduction [GO:0035556]; mononuclear cell differentiation [GO:1903131]; negative regulation of vascular associated smooth muscle cell differentiation [GO:1905064]; negative regulation of Wnt signaling pathway [GO:0030178]; positive regulation of DNA biosynthetic process [GO:2000573]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; pulmonary valve morphogenesis [GO:0003184]; regulation of transcription by RNA polymerase II [GO:0006357]; response to muscle activity [GO:0014850]; skeletal muscle adaptation [GO:0043501]; wound healing [GO:0042060] -O95718 reviewed ERR2_HUMAN Steroid hormone receptor ERR2 (ERR beta-2) (Estrogen receptor-like 2) (Estrogen-related receptor beta) (ERR-beta) (Nuclear receptor subfamily 3 group B member 2) ESRRB ERRB2 ESRL2 NR3B2 cell dedifferentiation [GO:0043697]; cell population proliferation [GO:0008283]; inner ear development [GO:0048839]; intracellular steroid hormone receptor signaling pathway [GO:0030518]; negative regulation of stem cell differentiation [GO:2000737]; photoreceptor cell maintenance [GO:0045494]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of stem cell population maintenance [GO:1902459]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of stem cell division [GO:2000035]; regulation of transcription by RNA polymerase II [GO:0006357]; stem cell division [GO:0017145]; stem cell population maintenance [GO:0019827] -O95760 reviewed IL33_HUMAN Interleukin-33 (IL-33) (Interleukin-1 family member 11) (IL-1F11) (Nuclear factor from high endothelial venules) (NF-HEV) [Cleaved into: Interleukin-33 (95-270); Interleukin-33 (99-270); Interleukin-33 (109-270)] IL33 C9orf26 IL1F11 NFHEV cellular response to mechanical stimulus [GO:0071260]; defense response to virus [GO:0051607]; extrinsic apoptotic signaling pathway [GO:0097191]; gene expression [GO:0010467]; interleukin-33-mediated signaling pathway [GO:0038172]; macrophage differentiation [GO:0030225]; microglial cell activation involved in immune response [GO:0002282]; microglial cell proliferation [GO:0061518]; negative regulation of immunoglobulin production [GO:0002638]; negative regulation of inflammatory response to wounding [GO:0106015]; negative regulation of leukocyte migration [GO:0002686]; negative regulation of macrophage proliferation [GO:0120042]; negative regulation of T-helper 1 type immune response [GO:0002826]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of type II interferon production [GO:0032689]; positive regulation of CD80 production [GO:0150145]; positive regulation of CD86 production [GO:0150142]; positive regulation of cellular defense response [GO:0010186]; positive regulation of chemokine production [GO:0032722]; positive regulation of cytokine production [GO:0001819]; positive regulation of gene expression [GO:0010628]; positive regulation of immunoglobulin production [GO:0002639]; positive regulation of inflammatory response [GO:0050729]; positive regulation of interleukin-13 production [GO:0032736]; positive regulation of interleukin-4 production [GO:0032753]; positive regulation of interleukin-5 production [GO:0032754]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of macrophage activation [GO:0043032]; positive regulation of MHC class I biosynthetic process [GO:0045345]; positive regulation of MHC class II biosynthetic process [GO:0045348]; positive regulation of neuroinflammatory response [GO:0150078]; positive regulation of nitric-oxide synthase biosynthetic process [GO:0051770]; positive regulation of oligodendrocyte differentiation [GO:0048714]; positive regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032436]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of type 2 immune response [GO:0002830]; protein import into nucleus [GO:0006606]; type 2 immune response [GO:0042092] -O95786 reviewed RIGI_HUMAN Antiviral innate immune response receptor RIG-I (ATP-dependent RNA helicase DDX58) (EC 3.6.4.13) (DEAD box protein 58) (RIG-I-like receptor 1) (RLR-1) (RNA sensor RIG-I) (Retinoic acid-inducible gene 1 protein) (RIG-1) (Retinoic acid-inducible gene I protein) (RIG-I) RIGI DDX58 antiviral innate immune response [GO:0140374]; cellular response to exogenous dsRNA [GO:0071360]; cytoplasmic pattern recognition receptor signaling pathway [GO:0002753]; defense response to virus [GO:0051607]; detection of virus [GO:0009597]; gene expression [GO:0010467]; innate immune response [GO:0045087]; positive regulation of defense response to virus by host [GO:0002230]; positive regulation of gene expression [GO:0010628]; positive regulation of granulocyte macrophage colony-stimulating factor production [GO:0032725]; positive regulation of interferon-alpha production [GO:0032727]; positive regulation of interferon-beta production [GO:0032728]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of myeloid dendritic cell cytokine production [GO:0002735]; positive regulation of response to cytokine stimulus [GO:0060760]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; regulation of cell migration [GO:0030334]; regulation of type III interferon production [GO:0034344]; response to exogenous dsRNA [GO:0043330]; response to virus [GO:0009615]; RIG-I signaling pathway [GO:0039529] -O95905 reviewed ECD_HUMAN Protein ecdysoneless homolog (Human suppressor of GCR two) (hSGT1) ECD fibroblast proliferation [GO:0048144]; mRNA processing [GO:0006397]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of G1/S transition of mitotic cell cycle [GO:2000045]; RNA splicing [GO:0008380] -O95936 reviewed EOMES_HUMAN Eomesodermin homolog (T-box brain protein 2) (T-brain-2) (TBR-2) EOMES TBR2 adaptive immune response [GO:0002250]; astrocyte differentiation [GO:0048708]; brain development [GO:0007420]; cardioblast differentiation [GO:0010002]; CD8-positive, alpha-beta T cell differentiation involved in immune response [GO:0002302]; cell differentiation involved in embryonic placenta development [GO:0060706]; cerebral cortex neuron differentiation [GO:0021895]; cerebral cortex regionalization [GO:0021796]; chromatin remodeling [GO:0006338]; DNA demethylation [GO:0080111]; endoderm formation [GO:0001706]; endodermal cell fate specification [GO:0001714]; gene expression [GO:0010467]; mesendoderm development [GO:0048382]; mesoderm formation [GO:0001707]; mesodermal to mesenchymal transition involved in gastrulation [GO:0060809]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron migration [GO:0001764]; olfactory bulb development [GO:0021772]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; skeletal muscle cell differentiation [GO:0035914]; stem cell population maintenance [GO:0019827]; trophectodermal cell differentiation [GO:0001829] -O95947 reviewed TBX6_HUMAN T-box transcription factor TBX6 (T-box protein 6) TBX6 anatomical structure morphogenesis [GO:0009653]; cell fate specification [GO:0001708]; heart looping [GO:0001947]; mesoderm development [GO:0007498]; mesodermal cell fate specification [GO:0007501]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of neuron maturation [GO:0014043]; negative regulation of neuron projection development [GO:0010977]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; signal transduction involved in regulation of gene expression [GO:0023019]; somite rostral/caudal axis specification [GO:0032525]; vasculogenesis [GO:0001570] -O95948 reviewed ONEC2_HUMAN One cut domain family member 2 (Hepatocyte nuclear factor 6-beta) (HNF-6-beta) (One cut homeobox 2) (Transcription factor ONECUT-2) (OC-2) ONECUT2 HNF6B animal organ morphogenesis [GO:0009887]; cell fate commitment [GO:0045165]; cilium assembly [GO:0060271]; endocrine pancreas development [GO:0031018]; epithelial cell development [GO:0002064]; liver development [GO:0001889]; mesenchymal stem cell migration [GO:1905319]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; peripheral nervous system neuron development [GO:0048935]; positive regulation of mesenchymal stem cell migration [GO:1905322]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell-matrix adhesion [GO:0001952]; regulation of transcription by RNA polymerase II [GO:0006357]; transforming growth factor beta receptor signaling pathway [GO:0007179] -O96004 reviewed HAND1_HUMAN Heart- and neural crest derivatives-expressed protein 1 (Class A basic helix-loop-helix protein 27) (bHLHa27) (Extraembryonic tissues, heart, autonomic nervous system and neural crest derivatives-expressed protein 1) (eHAND) HAND1 BHLHA27 EHAND angiogenesis [GO:0001525]; blastocyst development [GO:0001824]; cardiac left ventricle formation [GO:0003218]; cardiac right ventricle formation [GO:0003219]; cardiac septum morphogenesis [GO:0060411]; cartilage morphogenesis [GO:0060536]; embryonic heart tube development [GO:0035050]; embryonic heart tube formation [GO:0003144]; heart development [GO:0007507]; heart looping [GO:0001947]; mesenchyme development [GO:0060485]; mesoderm formation [GO:0001707]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of RNA polymerase II regulatory region sequence-specific DNA binding [GO:1903026]; negative regulation of transcription by RNA polymerase II [GO:0000122]; odontogenesis of dentin-containing tooth [GO:0042475]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; trophectodermal cell differentiation [GO:0001829]; trophoblast giant cell differentiation [GO:0060707]; ventricular cardiac muscle tissue morphogenesis [GO:0055010] -O96006 reviewed ZBED1_HUMAN E3 SUMO-protein ligase ZBED1 (EC 2.3.2.-) (DNA replication-related element-binding factor) (Putative Ac-like transposable element) (Zinc finger BED domain-containing protein 1) (dREF homolog) ZBED1 ALTE DREF hDREF KIAA0785 TRAMP negative regulation by host of viral genome replication [GO:0044828]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autosumoylation [GO:1990466]; protein sumoylation [GO:0016925]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357] -P00519 reviewed ABL1_HUMAN Tyrosine-protein kinase ABL1 (EC 2.7.10.2) (Abelson murine leukemia viral oncogene homolog 1) (Abelson tyrosine-protein kinase 1) (Proto-oncogene c-Abl) (p150) ABL1 ABL JTK7 actin cytoskeleton organization [GO:0030036]; actin filament polymerization [GO:0030041]; activated T cell proliferation [GO:0050798]; activation of protein kinase C activity [GO:1990051]; alpha-beta T cell differentiation [GO:0046632]; associative learning [GO:0008306]; autophagy [GO:0006914]; B cell proliferation involved in immune response [GO:0002322]; B cell receptor signaling pathway [GO:0050853]; B-1 B cell homeostasis [GO:0001922]; Bergmann glial cell differentiation [GO:0060020]; BMP signaling pathway [GO:0030509]; canonical NF-kappaB signal transduction [GO:0007249]; cardiac muscle cell proliferation [GO:0060038]; cell-cell adhesion [GO:0098609]; cellular response to dopamine [GO:1903351]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to oxidative stress [GO:0034599]; cellular response to transforming growth factor beta stimulus [GO:0071560]; cellular senescence [GO:0090398]; cerebellum morphogenesis [GO:0021587]; DN4 thymocyte differentiation [GO:1904157]; DNA conformation change [GO:0071103]; DNA damage response [GO:0006974]; endothelial cell migration [GO:0043542]; epidermal growth factor receptor signaling pathway [GO:0007173]; ERK1 and ERK2 cascade [GO:0070371]; establishment of localization in cell [GO:0051649]; Fc-gamma receptor signaling pathway involved in phagocytosis [GO:0038096]; integrin-mediated signaling pathway [GO:0007229]; intrinsic apoptotic signaling pathway in response to DNA damage [GO:0008630]; microspike assembly [GO:0030035]; mismatch repair [GO:0006298]; mitochondrial depolarization [GO:0051882]; mitotic cell cycle [GO:0000278]; myoblast proliferation [GO:0051450]; negative regulation of BMP signaling pathway [GO:0030514]; negative regulation of cell-cell adhesion [GO:0022408]; negative regulation of cellular senescence [GO:2000773]; negative regulation of double-strand break repair via homologous recombination [GO:2000042]; negative regulation of endothelial cell apoptotic process [GO:2000352]; negative regulation of ERK1 and ERK2 cascade [GO:0070373]; negative regulation of long-term synaptic potentiation [GO:1900272]; negative regulation of mitotic cell cycle [GO:0045930]; negative regulation of phospholipase C activity [GO:1900275]; negative regulation of protein serine/threonine kinase activity [GO:0071901]; negative regulation of ubiquitin-protein transferase activity [GO:0051444]; neural tube closure [GO:0001843]; neuroepithelial cell differentiation [GO:0060563]; neuromuscular process controlling balance [GO:0050885]; neuron apoptotic process [GO:0051402]; neuron differentiation [GO:0030182]; neuropilin signaling pathway [GO:0038189]; peptidyl-tyrosine autophosphorylation [GO:0038083]; peptidyl-tyrosine phosphorylation [GO:0018108]; platelet-derived growth factor receptor-beta signaling pathway [GO:0035791]; podocyte apoptotic process [GO:1903210]; positive regulation of actin filament binding [GO:1904531]; positive regulation of apoptotic process [GO:0043065]; positive regulation of blood vessel branching [GO:1905555]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of dendrite development [GO:1900006]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of establishment of T cell polarity [GO:1903905]; positive regulation of extracellular matrix organization [GO:1903055]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of focal adhesion assembly [GO:0051894]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of microtubule binding [GO:1904528]; positive regulation of mitotic cell cycle [GO:0045931]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of osteoblast proliferation [GO:0033690]; positive regulation of oxidoreductase activity [GO:0051353]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of release of sequestered calcium ion into cytosol [GO:0051281]; positive regulation of stress fiber assembly [GO:0051496]; positive regulation of substrate adhesion-dependent cell spreading [GO:1900026]; positive regulation of T cell migration [GO:2000406]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type II interferon production [GO:0032729]; positive regulation of vasoconstriction [GO:0045907]; positive regulation of Wnt signaling pathway, planar cell polarity pathway [GO:2000096]; post-embryonic development [GO:0009791]; protein autophosphorylation [GO:0046777]; protein localization to cytoplasmic microtubule plus-end [GO:1904518]; protein modification process [GO:0036211]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of autophagy [GO:0010506]; regulation of axon extension [GO:0030516]; regulation of Cdc42 protein signal transduction [GO:0032489]; regulation of cell adhesion [GO:0030155]; regulation of cell cycle [GO:0051726]; regulation of cell motility [GO:2000145]; regulation of DNA-templated transcription [GO:0006355]; regulation of endocytosis [GO:0030100]; regulation of hematopoietic stem cell differentiation [GO:1902036]; regulation of microtubule polymerization [GO:0031113]; regulation of modification of synaptic structure [GO:1905244]; regulation of T cell differentiation [GO:0045580]; response to endoplasmic reticulum stress [GO:0034976]; response to epinephrine [GO:0071871]; response to oxidative stress [GO:0006979]; response to xenobiotic stimulus [GO:0009410]; signal transduction in response to DNA damage [GO:0042770]; spleen development [GO:0048536]; substrate adhesion-dependent cell spreading [GO:0034446]; T cell receptor signaling pathway [GO:0050852]; thymus development [GO:0048538]; transitional one stage B cell differentiation [GO:0002333] -P00533 reviewed EGFR_HUMAN Epidermal growth factor receptor (EC 2.7.10.1) (Proto-oncogene c-ErbB-1) (Receptor tyrosine-protein kinase erbB-1) EGFR ERBB ERBB1 HER1 activation of phospholipase C activity [GO:0007202]; astrocyte activation [GO:0048143]; cell surface receptor signaling pathway [GO:0007166]; cell-cell adhesion [GO:0098609]; cellular response to amino acid stimulus [GO:0071230]; cellular response to cadmium ion [GO:0071276]; cellular response to dexamethasone stimulus [GO:0071549]; cellular response to epidermal growth factor stimulus [GO:0071364]; cellular response to estradiol stimulus [GO:0071392]; cellular response to mechanical stimulus [GO:0071260]; cellular response to reactive oxygen species [GO:0034614]; cellular response to xenobiotic stimulus [GO:0071466]; cerebral cortex cell migration [GO:0021795]; circadian rhythm [GO:0007623]; digestive tract morphogenesis [GO:0048546]; diterpenoid metabolic process [GO:0016101]; embryonic placenta development [GO:0001892]; epidermal growth factor receptor signaling pathway [GO:0007173]; epithelial cell proliferation [GO:0050673]; ERBB2-EGFR signaling pathway [GO:0038134]; eyelid development in camera-type eye [GO:0061029]; hair follicle development [GO:0001942]; hydrogen peroxide metabolic process [GO:0042743]; learning or memory [GO:0007611]; liver regeneration [GO:0097421]; lung development [GO:0030324]; midgut development [GO:0007494]; morphogenesis of an epithelial fold [GO:0060571]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cardiocyte differentiation [GO:1905208]; negative regulation of epidermal growth factor receptor signaling pathway [GO:0042059]; negative regulation of mitotic cell cycle [GO:0045930]; negative regulation of protein catabolic process [GO:0042177]; neurogenesis [GO:0022008]; neuron projection morphogenesis [GO:0048812]; ossification [GO:0001503]; ovulation cycle [GO:0042698]; peptidyl-tyrosine autophosphorylation [GO:0038083]; peptidyl-tyrosine phosphorylation [GO:0018108]; positive regulation of bone resorption [GO:0045780]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of cell growth [GO:0030307]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0045737]; positive regulation of DNA repair [GO:0045739]; positive regulation of DNA replication [GO:0045740]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of glial cell proliferation [GO:0060252]; positive regulation of MAP kinase activity [GO:0043406]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of mucus secretion [GO:0070257]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of phosphorylation [GO:0042327]; positive regulation of prolactin secretion [GO:1902722]; positive regulation of protein kinase C activity [GO:1900020]; positive regulation of protein localization to plasma membrane [GO:1903078]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of superoxide anion generation [GO:0032930]; positive regulation of synaptic transmission, glutamatergic [GO:0051968]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vasoconstriction [GO:0045907]; protein autophosphorylation [GO:0046777]; protein insertion into membrane [GO:0051205]; regulation of ERK1 and ERK2 cascade [GO:0070372]; regulation of JNK cascade [GO:0046328]; regulation of peptidyl-tyrosine phosphorylation [GO:0050730]; regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051896]; response to calcium ion [GO:0051592]; response to cobalamin [GO:0033590]; response to hydroxyisoflavone [GO:0033594]; response to UV-A [GO:0070141]; salivary gland morphogenesis [GO:0007435]; signal transduction [GO:0007165]; tongue development [GO:0043586]; translation [GO:0006412]; vasodilation [GO:0042311] -P01100 reviewed FOS_HUMAN Protein c-Fos (Cellular oncogene fos) (Fos proto-oncogene, AP-1 transcription factor subunit) (G0/G1 switch regulatory protein 7) (Proto-oncogene c-Fos) (Transcription factor AP-1 subunit c-Fos) FOS G0S7 cellular response to cadmium ion [GO:0071276]; cellular response to calcium ion [GO:0071277]; cellular response to epidermal growth factor stimulus [GO:0071364]; cellular response to hypoxia [GO:0071456]; cellular response to parathyroid hormone stimulus [GO:0071374]; cellular response to phorbol 13-acetate 12-myristate [GO:1904628]; cellular response to prolactin [GO:1990646]; cellular response to reactive oxygen species [GO:0034614]; cellular response to tumor necrosis factor [GO:0071356]; cellular response to zinc ion starvation [GO:0034224]; conditioned taste aversion [GO:0001661]; female pregnancy [GO:0007565]; inflammatory response [GO:0006954]; integrated stress response signaling [GO:0140467]; mononuclear cell differentiation [GO:1903131]; myoblast proliferation [GO:0051450]; nervous system development [GO:0007399]; osteoclast differentiation [GO:0030316]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of osteoclast differentiation [GO:0045672]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; response to activity [GO:0014823]; response to cAMP [GO:0051591]; response to corticosterone [GO:0051412]; response to ethanol [GO:0045471]; response to gravity [GO:0009629]; response to immobilization stress [GO:0035902]; response to insulin [GO:0032868]; response to light stimulus [GO:0009416]; response to lipopolysaccharide [GO:0032496]; response to muscle stretch [GO:0035994]; response to progesterone [GO:0032570]; response to toxic substance [GO:0009636]; response to xenobiotic stimulus [GO:0009410]; skeletal muscle cell differentiation [GO:0035914]; skeletal muscle cell proliferation [GO:0014856]; SMAD protein signal transduction [GO:0060395]; transcription by RNA polymerase II [GO:0006366]; transforming growth factor beta receptor signaling pathway [GO:0007179] -P01106 reviewed MYC_HUMAN Myc proto-oncogene protein (Class E basic helix-loop-helix protein 39) (bHLHe39) (Proto-oncogene c-Myc) (Transcription factor p64) MYC BHLHE39 branching involved in ureteric bud morphogenesis [GO:0001658]; cellular response to hypoxia [GO:0071456]; cellular response to UV [GO:0034644]; cellular response to xenobiotic stimulus [GO:0071466]; chromatin remodeling [GO:0006338]; chromosome organization [GO:0051276]; DNA damage response [GO:0006974]; ERK1 and ERK2 cascade [GO:0070371]; fibroblast apoptotic process [GO:0044346]; G1/S transition of mitotic cell cycle [GO:0000082]; intracellular iron ion homeostasis [GO:0006879]; MAPK cascade [GO:0000165]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cell division [GO:0051782]; negative regulation of fibroblast proliferation [GO:0048147]; negative regulation of gene expression via chromosomal CpG island methylation [GO:0044027]; negative regulation of monocyte differentiation [GO:0045656]; negative regulation of stress-activated MAPK cascade [GO:0032873]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transcription initiation by RNA polymerase II [GO:0060633]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043280]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of gene expression [GO:0010628]; positive regulation of intrinsic apoptotic signaling pathway by p53 class mediator [GO:1902255]; positive regulation of mesenchymal cell proliferation [GO:0002053]; positive regulation of metanephric cap mesenchymal cell proliferation [GO:0090096]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of telomerase activity [GO:0051973]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein-DNA complex disassembly [GO:0032986]; regulation of cell cycle process [GO:0010564]; regulation of gene expression [GO:0010468]; regulation of somatic stem cell population maintenance [GO:1904672]; regulation of telomere maintenance [GO:0032204]; regulation of transcription by RNA polymerase II [GO:0006357]; response to gamma radiation [GO:0010332]; response to growth factor [GO:0070848]; response to xenobiotic stimulus [GO:0009410] -P01112 reviewed RASH_HUMAN GTPase HRas (EC 3.6.5.2) (H-Ras-1) (Ha-Ras) (Transforming protein p21) (c-H-ras) (p21ras) [Cleaved into: GTPase HRas, N-terminally processed] HRAS HRAS1 adipose tissue development [GO:0060612]; animal organ morphogenesis [GO:0009887]; cell surface receptor signaling pathway [GO:0007166]; cellular response to gamma radiation [GO:0071480]; cellular senescence [GO:0090398]; chemotaxis [GO:0006935]; defense response to protozoan [GO:0042832]; endocytosis [GO:0006897]; fibroblast proliferation [GO:0048144]; insulin receptor signaling pathway [GO:0008286]; intrinsic apoptotic signaling pathway [GO:0097193]; MAPK cascade [GO:0000165]; myelination [GO:0042552]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of gene expression [GO:0010629]; negative regulation of GTPase activity [GO:0034260]; negative regulation of neuron apoptotic process [GO:0043524]; neuron apoptotic process [GO:0051402]; oncogene-induced cell senescence [GO:0090402]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of GTPase activity [GO:0043547]; positive regulation of JNK cascade [GO:0046330]; positive regulation of MAP kinase activity [GO:0043406]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of miRNA metabolic process [GO:2000630]; positive regulation of phospholipase C activity [GO:0010863]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of protein targeting to membrane [GO:0090314]; positive regulation of ruffle assembly [GO:1900029]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type II interferon production [GO:0032729]; positive regulation of wound healing [GO:0090303]; Ras protein signal transduction [GO:0007265]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of cell cycle [GO:0051726]; regulation of cell population proliferation [GO:0042127]; regulation of long-term neuronal synaptic plasticity [GO:0048169]; regulation of neurotransmitter receptor localization to postsynaptic specialization membrane [GO:0098696]; regulation of transcription by RNA polymerase II [GO:0006357]; Schwann cell development [GO:0014044]; signal transduction [GO:0007165]; T cell receptor signaling pathway [GO:0050852]; T-helper 1 type immune response [GO:0042088] -P01137 reviewed TGFB1_HUMAN Transforming growth factor beta-1 proprotein [Cleaved into: Latency-associated peptide (LAP); Transforming growth factor beta-1 (TGF-beta-1)] TGFB1 TGFB adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains [GO:0002460]; aortic valve morphogenesis [GO:0003180]; ATP biosynthetic process [GO:0006754]; branch elongation involved in mammary gland duct branching [GO:0060751]; bronchiole development [GO:0060435]; canonical Wnt signaling pathway [GO:0060070]; cell morphogenesis [GO:0000902]; cell-cell junction organization [GO:0045216]; cellular response to dexamethasone stimulus [GO:0071549]; cellular response to glucose stimulus [GO:0071333]; cellular response to hypoxia [GO:0071456]; cellular response to insulin-like growth factor stimulus [GO:1990314]; cellular response to ionizing radiation [GO:0071479]; cellular response to low-density lipoprotein particle stimulus [GO:0071404]; cellular response to mechanical stimulus [GO:0071260]; cellular response to transforming growth factor beta stimulus [GO:0071560]; cellular response to virus [GO:0098586]; chondrocyte differentiation [GO:0002062]; columnar/cuboidal epithelial cell maturation [GO:0002069]; connective tissue replacement involved in inflammatory response wound healing [GO:0002248]; defense response to fungus [GO:0050832]; digestive tract development [GO:0048565]; embryonic liver development [GO:1990402]; endoderm development [GO:0007492]; epithelial cell proliferation [GO:0050673]; epithelial to mesenchymal transition [GO:0001837]; extracellular matrix assembly [GO:0085029]; extrinsic apoptotic signaling pathway [GO:0097191]; face morphogenesis [GO:0060325]; female pregnancy [GO:0007565]; frontal suture morphogenesis [GO:0060364]; gene expression [GO:0010467]; germ cell migration [GO:0008354]; heart development [GO:0007507]; heart valve morphogenesis [GO:0003179]; hematopoietic progenitor cell differentiation [GO:0002244]; hyaluronan catabolic process [GO:0030214]; inner ear development [GO:0048839]; intracellular calcium ion homeostasis [GO:0006874]; Langerhans cell differentiation [GO:0061520]; lens fiber cell differentiation [GO:0070306]; liver regeneration [GO:0097421]; lung alveolus development [GO:0048286]; lymph node development [GO:0048535]; macrophage derived foam cell differentiation [GO:0010742]; mammary gland branching involved in thelarche [GO:0060744]; membrane protein intracellular domain proteolysis [GO:0031293]; muscle cell cellular homeostasis [GO:0046716]; myelination [GO:0042552]; myofibroblast differentiation [GO:0036446]; negative regulation of biomineral tissue development [GO:0070168]; negative regulation of blood vessel endothelial cell migration [GO:0043537]; negative regulation of cell cycle [GO:0045786]; negative regulation of cell differentiation [GO:0045596]; negative regulation of cell growth [GO:0030308]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of cell-cell adhesion [GO:0022408]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of extracellular matrix disassembly [GO:0010716]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of gene expression [GO:0010629]; negative regulation of hyaluronan biosynthetic process [GO:1900126]; negative regulation of interleukin-17 production [GO:0032700]; negative regulation of macrophage cytokine production [GO:0010936]; negative regulation of miRNA transcription [GO:1902894]; negative regulation of myoblast differentiation [GO:0045662]; negative regulation of natural killer cell mediated cytotoxicity directed against tumor cell target [GO:0002859]; negative regulation of neuroblast proliferation [GO:0007406]; negative regulation of ossification [GO:0030279]; negative regulation of phagocytosis [GO:0050765]; negative regulation of protein localization to plasma membrane [GO:1903077]; negative regulation of protein phosphorylation [GO:0001933]; negative regulation of release of sequestered calcium ion into cytosol [GO:0051280]; negative regulation of skeletal muscle tissue development [GO:0048642]; negative regulation of T cell proliferation [GO:0042130]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural tube closure [GO:0001843]; neural tube development [GO:0021915]; neuron apoptotic process [GO:0051402]; Notch signaling pathway [GO:0007219]; odontoblast differentiation [GO:0071895]; odontogenesis of dentin-containing tooth [GO:0042475]; oligodendrocyte development [GO:0014003]; osteoclast differentiation [GO:0030316]; phosphate-containing compound metabolic process [GO:0006796]; phospholipid homeostasis [GO:0055091]; positive regulation of blood vessel endothelial cell migration [GO:0043536]; positive regulation of branching involved in ureteric bud morphogenesis [GO:0090190]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of cardiac muscle cell differentiation [GO:2000727]; positive regulation of cell division [GO:0051781]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of chemokine (C-X-C motif) ligand 2 production [GO:2000343]; positive regulation of chemotaxis [GO:0050921]; positive regulation of collagen biosynthetic process [GO:0032967]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of endothelial cell apoptotic process [GO:2000353]; positive regulation of epidermal growth factor receptor signaling pathway [GO:0045742]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of exit from mitosis [GO:0031536]; positive regulation of extracellular matrix assembly [GO:1901203]; positive regulation of fibroblast migration [GO:0010763]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of gene expression [GO:0010628]; positive regulation of inflammatory response [GO:0050729]; positive regulation of interleukin-17 production [GO:0032740]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of isotype switching to IgA isotypes [GO:0048298]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of mesenchymal stem cell proliferation [GO:1902462]; positive regulation of microglia differentiation [GO:0014008]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of mononuclear cell migration [GO:0071677]; positive regulation of odontogenesis [GO:0042482]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of primary miRNA processing [GO:2000636]; positive regulation of protein dephosphorylation [GO:0035307]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of protein localization to nucleus [GO:1900182]; positive regulation of protein metabolic process [GO:0051247]; positive regulation of protein secretion [GO:0050714]; positive regulation of protein-containing complex assembly [GO:0031334]; positive regulation of receptor signaling pathway via STAT [GO:1904894]; positive regulation of regulatory T cell differentiation [GO:0045591]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of smooth muscle cell differentiation [GO:0051152]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of superoxide anion generation [GO:0032930]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of vascular endothelial growth factor production [GO:0010575]; positive regulation of vascular permeability [GO:0043117]; positive regulation of vasculature development [GO:1904018]; protein export from nucleus [GO:0006611]; receptor catabolic process [GO:0032801]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of blood vessel remodeling [GO:0060312]; regulation of branching involved in mammary gland duct morphogenesis [GO:0060762]; regulation of cartilage development [GO:0061035]; regulation of cell migration [GO:0030334]; regulation of cell population proliferation [GO:0042127]; regulation of enamel mineralization [GO:0070173]; regulation of interleukin-23 production [GO:0032667]; regulation of protein import into nucleus [GO:0042306]; regulation of sodium ion transport [GO:0002028]; regulation of striated muscle tissue development [GO:0016202]; regulatory T cell differentiation [GO:0045066]; response to cholesterol [GO:0070723]; response to estradiol [GO:0032355]; response to immobilization stress [GO:0035902]; response to laminar fluid shear stress [GO:0034616]; response to progesterone [GO:0032570]; response to salt [GO:1902074]; response to vitamin D [GO:0033280]; response to wounding [GO:0009611]; response to xenobiotic stimulus [GO:0009410]; retina vasculature development in camera-type eye [GO:0061298]; salivary gland morphogenesis [GO:0007435]; sprouting angiogenesis [GO:0002040]; stem cell proliferation [GO:0072089]; surfactant homeostasis [GO:0043129]; T cell homeostasis [GO:0043029]; T cell proliferation [GO:0042098]; tolerance induction to self antigen [GO:0002513]; transforming growth factor beta receptor signaling pathway [GO:0007179]; ureteric bud development [GO:0001657]; vasculogenesis [GO:0001570]; ventricular cardiac muscle tissue morphogenesis [GO:0055010] -P01189 reviewed COLI_HUMAN Pro-opiomelanocortin (POMC) (Corticotropin-lipotropin) [Cleaved into: NPP; Melanotropin gamma (Gamma-MSH); Potential peptide; Corticotropin (Adrenocorticotropic hormone) (ACTH); Melanocyte-stimulating hormone alpha (Alpha-MSH) (Melanotropin alpha); Corticotropin-like intermediary peptide (CLIP); Lipotropin beta (Beta-LPH); Lipotropin gamma (Gamma-LPH); Melanocyte-stimulating hormone beta (Beta-MSH) (Melanotropin beta); Beta-endorphin; Met-enkephalin] POMC calcium-mediated signaling [GO:0019722]; cell-cell signaling [GO:0007267]; cellular pigmentation [GO:0033059]; generation of precursor metabolites and energy [GO:0006091]; glucose homeostasis [GO:0042593]; negative regulation of tumor necrosis factor production [GO:0032720]; neuropeptide signaling pathway [GO:0007218]; positive regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway [GO:0106071]; positive regulation of oxytocin production [GO:0140668]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of appetite [GO:0032098]; regulation of blood pressure [GO:0008217]; regulation of corticosterone secretion [GO:2000852]; regulation of glycogen metabolic process [GO:0070873]; response to melanocyte-stimulating hormone [GO:1990680]; signal transduction [GO:0007165] -P01215 reviewed GLHA_HUMAN Glycoprotein hormones alpha chain (Anterior pituitary glycoprotein hormones common subunit alpha) (Choriogonadotropin alpha chain) (Chorionic gonadotrophin subunit alpha) (CG-alpha) (Follicle-stimulating hormone alpha chain) (FSH-alpha) (Follitropin alpha chain) (Luteinizing hormone alpha chain) (LSH-alpha) (Lutropin alpha chain) (Thyroid-stimulating hormone alpha chain) (TSH-alpha) (Thyrotropin alpha chain) CGA follicle-stimulating hormone secretion [GO:0046884]; follicle-stimulating hormone signaling pathway [GO:0042699]; G protein-coupled receptor signaling pathway [GO:0007186]; hormone-mediated signaling pathway [GO:0009755]; luteinizing hormone secretion [GO:0032275]; negative regulation of organ growth [GO:0046621]; organ growth [GO:0035265]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of steroid biosynthetic process [GO:0010893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of signaling receptor activity [GO:0010469]; thyroid gland development [GO:0030878]; thyroid hormone generation [GO:0006590] -P01225 reviewed FSHB_HUMAN Follitropin subunit beta (Follicle-stimulating hormone beta subunit) (FSH-B) (FSH-beta) (Follitropin beta chain) FSHB female gamete generation [GO:0007292]; female pregnancy [GO:0007565]; follicle-stimulating hormone signaling pathway [GO:0042699]; G protein-coupled receptor signaling pathway [GO:0007186]; positive regulation of bone resorption [GO:0045780]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of gene expression [GO:0010628]; positive regulation of steroid biosynthetic process [GO:0010893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; progesterone biosynthetic process [GO:0006701]; regulation of osteoclast differentiation [GO:0045670]; regulation of signaling receptor activity [GO:0010469]; Sertoli cell proliferation [GO:0060011]; spermatogenesis [GO:0007283]; transforming growth factor beta receptor signaling pathway [GO:0007179] -P01270 reviewed PTHY_HUMAN Parathyroid hormone (PTH) (Parathormone) (Parathyrin) PTH activation of phospholipase C activity [GO:0007202]; adenylate cyclase-activating G protein-coupled receptor signaling pathway [GO:0007189]; bone mineralization [GO:0030282]; bone resorption [GO:0045453]; cAMP metabolic process [GO:0046058]; cell-cell signaling [GO:0007267]; G protein-coupled receptor signaling pathway [GO:0007186]; homeostasis of number of cells within a tissue [GO:0048873]; hormone-mediated apoptotic signaling pathway [GO:0008628]; intracellular calcium ion homeostasis [GO:0006874]; macromolecule biosynthetic process [GO:0009059]; magnesium ion homeostasis [GO:0010960]; negative regulation of apoptotic process in bone marrow cell [GO:0071866]; negative regulation of bone mineralization involved in bone maturation [GO:1900158]; negative regulation of chondrocyte differentiation [GO:0032331]; negative regulation of gene expression [GO:0010629]; phosphate ion homeostasis [GO:0055062]; positive regulation of bone mineralization [GO:0030501]; positive regulation of cell proliferation in bone marrow [GO:0071864]; positive regulation of gene expression [GO:0010628]; positive regulation of glucose import [GO:0046326]; positive regulation of glycogen biosynthetic process [GO:0045725]; positive regulation of inositol phosphate biosynthetic process [GO:0060732]; positive regulation of osteoclast proliferation [GO:0090290]; positive regulation of signal transduction [GO:0009967]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of gene expression [GO:0010468]; response to cadmium ion [GO:0046686]; response to ethanol [GO:0045471]; response to fibroblast growth factor [GO:0071774]; response to lead ion [GO:0010288]; response to parathyroid hormone [GO:0071107]; response to vitamin D [GO:0033280]; response to xenobiotic stimulus [GO:0009410]; Rho protein signal transduction [GO:0007266]; skeletal system development [GO:0001501]; transcription by RNA polymerase II [GO:0006366] -P01344 reviewed IGF2_HUMAN Insulin-like growth factor II (IGF-II) (Somatomedin-A) (T3M-11-derived growth factor) [Cleaved into: Insulin-like growth factor II; Insulin-like growth factor II Ala-25 Del; Preptin] IGF2 PP1446 animal organ morphogenesis [GO:0009887]; embryonic placenta development [GO:0001892]; embryonic placenta morphogenesis [GO:0060669]; exocrine pancreas development [GO:0031017]; genomic imprinting [GO:0071514]; glucose metabolic process [GO:0006006]; in utero embryonic development [GO:0001701]; insulin receptor signaling pathway [GO:0008286]; insulin-like growth factor receptor signaling pathway [GO:0048009]; negative regulation of muscle cell differentiation [GO:0051148]; negative regulation of transcription by RNA polymerase II [GO:0000122]; osteoblast differentiation [GO:0001649]; positive regulation of activated T cell proliferation [GO:0042104]; positive regulation of cell division [GO:0051781]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of glycogen biosynthetic process [GO:0045725]; positive regulation of insulin receptor signaling pathway [GO:0046628]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of mitotic nuclear division [GO:0045840]; positive regulation of multicellular organism growth [GO:0040018]; positive regulation of organ growth [GO:0046622]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of skeletal muscle tissue growth [GO:0048633]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular endothelial cell proliferation [GO:1905564]; regulation of DNA-templated transcription [GO:0006355]; regulation of muscle cell differentiation [GO:0051147]; spongiotrophoblast cell proliferation [GO:0060720]; striated muscle cell differentiation [GO:0051146] -P01375 reviewed TNFA_HUMAN Tumor necrosis factor (Cachectin) (TNF-alpha) (Tumor necrosis factor ligand superfamily member 2) (TNF-a) [Cleaved into: Tumor necrosis factor, membrane form (N-terminal fragment) (NTF); Intracellular domain 1 (ICD1); Intracellular domain 2 (ICD2); C-domain 1; C-domain 2; Tumor necrosis factor, soluble form] TNF TNFA TNFSF2 activation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0006919]; antiviral innate immune response [GO:0140374]; astrocyte activation [GO:0048143]; calcium-mediated signaling [GO:0019722]; cellular response to amino acid stimulus [GO:0071230]; cellular response to amyloid-beta [GO:1904646]; cellular response to ionizing radiation [GO:0071479]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to nicotine [GO:0071316]; cellular response to retinoic acid [GO:0071300]; cellular response to toxic substance [GO:0097237]; cellular response to type II interferon [GO:0071346]; chronic inflammatory response to antigenic stimulus [GO:0002439]; circadian rhythm [GO:0007623]; cognition [GO:0050890]; cortical actin cytoskeleton organization [GO:0030866]; defense response to Gram-positive bacterium [GO:0050830]; detection of mechanical stimulus involved in sensory perception of pain [GO:0050966]; embryonic digestive tract development [GO:0048566]; endothelial cell apoptotic process [GO:0072577]; epithelial cell proliferation involved in salivary gland morphogenesis [GO:0060664]; extracellular matrix organization [GO:0030198]; extrinsic apoptotic signaling pathway [GO:0097191]; extrinsic apoptotic signaling pathway via death domain receptors [GO:0008625]; glucose metabolic process [GO:0006006]; humoral immune response [GO:0006959]; inflammatory response [GO:0006954]; inflammatory response to wounding [GO:0090594]; intrinsic apoptotic signaling pathway in response to DNA damage [GO:0008630]; JNK cascade [GO:0007254]; leukocyte migration involved in inflammatory response [GO:0002523]; leukocyte tethering or rolling [GO:0050901]; liver regeneration [GO:0097421]; macrophage activation involved in immune response [GO:0002281]; microglial cell activation [GO:0001774]; necroptotic signaling pathway [GO:0097527]; negative regulation of amyloid-beta clearance [GO:1900222]; negative regulation of apoptotic signaling pathway [GO:2001234]; negative regulation of bicellular tight junction assembly [GO:1903347]; negative regulation of bile acid secretion [GO:0120190]; negative regulation of blood vessel endothelial cell migration [GO:0043537]; negative regulation of branching involved in lung morphogenesis [GO:0061048]; negative regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043154]; negative regulation of cytokine production involved in immune response [GO:0002719]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of endothelial cell proliferation [GO:0001937]; negative regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001240]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of gene expression [GO:0010629]; negative regulation of glucose import [GO:0046325]; negative regulation of heart rate [GO:0010459]; negative regulation of interleukin-6 production [GO:0032715]; negative regulation of L-glutamate import across plasma membrane [GO:0002037]; negative regulation of lipid catabolic process [GO:0050995]; negative regulation of lipid storage [GO:0010888]; negative regulation of miRNA transcription [GO:1902894]; negative regulation of mitotic cell cycle [GO:0045930]; negative regulation of myelination [GO:0031642]; negative regulation of myoblast differentiation [GO:0045662]; negative regulation of myosin-light-chain-phosphatase activity [GO:0035509]; negative regulation of neurogenesis [GO:0050768]; negative regulation of osteoblast differentiation [GO:0045668]; negative regulation of oxidative phosphorylation [GO:0090324]; negative regulation of protein-containing complex disassembly [GO:0043242]; negative regulation of signaling receptor activity [GO:2000272]; negative regulation of systemic arterial blood pressure [GO:0003085]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of vascular wound healing [GO:0061044]; negative regulation of viral genome replication [GO:0045071]; osteoclast differentiation [GO:0030316]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; positive regulation of action potential [GO:0045760]; positive regulation of amyloid-beta formation [GO:1902004]; positive regulation of apoptotic process [GO:0043065]; positive regulation of blood microparticle formation [GO:2000334]; positive regulation of calcidiol 1-monooxygenase activity [GO:0060559]; positive regulation of calcineurin-NFAT signaling cascade [GO:0070886]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cell adhesion [GO:0045785]; positive regulation of chemokine (C-X-C motif) ligand 2 production [GO:2000343]; positive regulation of chemokine production [GO:0032722]; positive regulation of chronic inflammatory response to antigenic stimulus [GO:0002876]; positive regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043280]; positive regulation of cytokine production [GO:0001819]; positive regulation of cytokine production involved in inflammatory response [GO:1900017]; positive regulation of DNA biosynthetic process [GO:2000573]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of extrinsic apoptotic signaling pathway [GO:2001238]; positive regulation of fever generation [GO:0031622]; positive regulation of fractalkine production [GO:0032724]; positive regulation of gene expression [GO:0010628]; positive regulation of glial cell proliferation [GO:0060252]; positive regulation of hair follicle development [GO:0051798]; positive regulation of hepatocyte proliferation [GO:2000347]; positive regulation of heterotypic cell-cell adhesion [GO:0034116]; positive regulation of humoral immune response mediated by circulating immunoglobulin [GO:0002925]; positive regulation of I-kappaB phosphorylation [GO:1903721]; positive regulation of inflammatory response [GO:0050729]; positive regulation of interleukin-1 beta production [GO:0032731]; positive regulation of interleukin-18 production [GO:0032741]; positive regulation of interleukin-33 production [GO:0150129]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of JNK cascade [GO:0046330]; positive regulation of JUN kinase activity [GO:0043507]; positive regulation of leukocyte adhesion to arterial endothelial cell [GO:1904999]; positive regulation of leukocyte adhesion to vascular endothelial cell [GO:1904996]; positive regulation of MAP kinase activity [GO:0043406]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of membrane protein ectodomain proteolysis [GO:0051044]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of mitotic nuclear division [GO:0045840]; positive regulation of mononuclear cell migration [GO:0071677]; positive regulation of neuroinflammatory response [GO:0150078]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of neutrophil activation [GO:1902565]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of nitric oxide biosynthetic process [GO:0045429]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of osteoclast differentiation [GO:0045672]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of podosome assembly [GO:0071803]; positive regulation of programmed cell death [GO:0043068]; positive regulation of protein catabolic process [GO:0045732]; positive regulation of protein localization to cell surface [GO:2000010]; positive regulation of protein localization to plasma membrane [GO:1903078]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of protein transport [GO:0051222]; positive regulation of protein-containing complex assembly [GO:0031334]; positive regulation of protein-containing complex disassembly [GO:0043243]; positive regulation of receptor signaling pathway via JAK-STAT [GO:0046427]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of synaptic transmission [GO:0050806]; positive regulation of synoviocyte proliferation [GO:1901647]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of translational initiation by iron [GO:0045994]; positive regulation of type II interferon production [GO:0032729]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; positive regulation of vascular associated smooth muscle cell proliferation [GO:1904707]; positive regulation of vitamin D biosynthetic process [GO:0060557]; protein localization to plasma membrane [GO:0072659]; regulation of branching involved in salivary gland morphogenesis [GO:0060693]; regulation of canonical NF-kappaB signal transduction [GO:0043122]; regulation of endothelial cell apoptotic process [GO:2000351]; regulation of establishment of endothelial barrier [GO:1903140]; regulation of fat cell differentiation [GO:0045598]; regulation of immunoglobulin production [GO:0002637]; regulation of insulin secretion [GO:0050796]; regulation of membrane lipid metabolic process [GO:1905038]; regulation of metabolic process [GO:0019222]; regulation of reactive oxygen species metabolic process [GO:2000377]; regulation of synapse organization [GO:0050807]; regulation of synaptic transmission, glutamatergic [GO:0051966]; response to 3,3',5-triiodo-L-thyronine [GO:1905242]; response to activity [GO:0014823]; response to ethanol [GO:0045471]; response to fructose [GO:0009750]; response to glucocorticoid [GO:0051384]; response to gold nanoparticle [GO:1990268]; response to Gram-negative bacterium [GO:0140460]; response to hypoxia [GO:0001666]; response to isolation stress [GO:0035900]; response to L-glutamate [GO:1902065]; response to macrophage colony-stimulating factor [GO:0036005]; response to nutrient levels [GO:0031667]; response to salt stress [GO:0009651]; response to virus [GO:0009615]; response to xenobiotic stimulus [GO:0009410]; sequestering of triglyceride [GO:0030730]; skeletal muscle contraction [GO:0003009]; toll-like receptor 3 signaling pathway [GO:0034138]; tumor necrosis factor-mediated signaling pathway [GO:0033209]; vascular endothelial growth factor production [GO:0010573]; vasodilation [GO:0042311] -P01574 reviewed IFNB_HUMAN Interferon beta (IFN-beta) (Fibroblast interferon) IFNB1 IFB IFNB adaptive immune response [GO:0002250]; B cell activation involved in immune response [GO:0002312]; B cell differentiation [GO:0030183]; B cell proliferation [GO:0042100]; cell surface receptor signaling pathway [GO:0007166]; cell surface receptor signaling pathway via JAK-STAT [GO:0007259]; cellular response to exogenous dsRNA [GO:0071360]; cellular response to interferon-beta [GO:0035458]; cellular response to virus [GO:0098586]; cytokine-mediated signaling pathway [GO:0019221]; defense response to virus [GO:0051607]; humoral immune response [GO:0006959]; innate immune response [GO:0045087]; natural killer cell activation [GO:0030101]; natural killer cell activation involved in immune response [GO:0002323]; negative regulation of Lewy body formation [GO:0140123]; negative regulation of T cell differentiation [GO:0045581]; negative regulation of T-helper 2 cell cytokine production [GO:2000552]; negative regulation of viral genome replication [GO:0045071]; neuron cellular homeostasis [GO:0070050]; positive regulation of apoptotic signaling pathway [GO:2001235]; positive regulation of autophagy [GO:0010508]; positive regulation of innate immune response [GO:0045089]; positive regulation of peptidyl-serine phosphorylation of STAT protein [GO:0033141]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of MHC class I biosynthetic process [GO:0045343]; response to exogenous dsRNA [GO:0043330]; response to virus [GO:0009615]; T cell activation involved in immune response [GO:0002286]; type I interferon-mediated signaling pathway [GO:0060337] -P01583 reviewed IL1A_HUMAN Interleukin-1 alpha (IL-1 alpha) (Hematopoietin-1) IL1A IL1F1 apoptotic process [GO:0006915]; cellular response to heat [GO:0034605]; cellular response to lipopolysaccharide [GO:0071222]; connective tissue replacement involved in inflammatory response wound healing [GO:0002248]; cytokine-mediated signaling pathway [GO:0019221]; ectopic germ cell programmed cell death [GO:0035234]; extrinsic apoptotic signaling pathway in absence of ligand [GO:0097192]; fever generation [GO:0001660]; heart development [GO:0007507]; immune response [GO:0006955]; inflammatory response [GO:0006954]; intracellular sodium ion homeostasis [GO:0006883]; keratinization [GO:0031424]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of establishment of Sertoli cell barrier [GO:1904445]; negative regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001240]; positive regulation of angiogenesis [GO:0045766]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cell division [GO:0051781]; positive regulation of cytokine production [GO:0001819]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of gene expression [GO:0010628]; positive regulation of immature T cell proliferation in thymus [GO:0033092]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of JNK cascade [GO:0046330]; positive regulation of mitotic nuclear division [GO:0045840]; positive regulation of neutrophil migration [GO:1902624]; positive regulation of prostaglandin secretion [GO:0032308]; positive regulation of protein secretion [GO:0050714]; positive regulation of steroid biosynthetic process [GO:0010893]; positive regulation of stress-activated MAPK cascade [GO:0032874]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of vascular endothelial growth factor production [GO:0010575]; regulation of actin cytoskeleton organization [GO:0032956]; response to copper ion [GO:0046688]; response to gamma radiation [GO:0010332]; response to hypoxia [GO:0001666]; response to L-ascorbic acid [GO:0033591]; response to organonitrogen compound [GO:0010243]; response to ozone [GO:0010193]; spermatogenesis [GO:0007283] -P01584 reviewed IL1B_HUMAN Interleukin-1 beta (IL-1 beta) (Catabolin) IL1B IL1F2 apoptotic process [GO:0006915]; astrocyte activation [GO:0048143]; cell-cell signaling [GO:0007267]; cellular response to interleukin-17 [GO:0097398]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to mechanical stimulus [GO:0071260]; cellular response to organic substance [GO:0071310]; cellular response to xenobiotic stimulus [GO:0071466]; cytokine-mediated signaling pathway [GO:0019221]; defense response to Gram-positive bacterium [GO:0050830]; ectopic germ cell programmed cell death [GO:0035234]; embryo implantation [GO:0007566]; extrinsic apoptotic signaling pathway in absence of ligand [GO:0097192]; fever generation [GO:0001660]; hyaluronan biosynthetic process [GO:0030213]; immune response [GO:0006955]; inflammatory response [GO:0006954]; interleukin-1-mediated signaling pathway [GO:0070498]; JNK cascade [GO:0007254]; monocyte aggregation [GO:0070487]; negative regulation of adiponectin secretion [GO:0070164]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001240]; negative regulation of gap junction assembly [GO:1903597]; negative regulation of glucose transmembrane transport [GO:0010829]; negative regulation of insulin receptor signaling pathway [GO:0046627]; negative regulation of lipid catabolic process [GO:0050995]; negative regulation of lipid metabolic process [GO:0045833]; negative regulation of MAP kinase activity [GO:0043407]; negative regulation of neurogenesis [GO:0050768]; negative regulation of synaptic transmission [GO:0050805]; neutrophil chemotaxis [GO:0030593]; positive regulation of angiogenesis [GO:0045766]; positive regulation of calcidiol 1-monooxygenase activity [GO:0060559]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cell adhesion molecule production [GO:0060355]; positive regulation of cell division [GO:0051781]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of complement activation [GO:0045917]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of fever generation [GO:0031622]; positive regulation of gene expression [GO:0010628]; positive regulation of glial cell proliferation [GO:0060252]; positive regulation of granulocyte macrophage colony-stimulating factor production [GO:0032725]; positive regulation of heterotypic cell-cell adhesion [GO:0034116]; positive regulation of immature T cell proliferation in thymus [GO:0033092]; positive regulation of inflammatory response [GO:0050729]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of JNK cascade [GO:0046330]; positive regulation of lipid catabolic process [GO:0050996]; positive regulation of MAP kinase activity [GO:0043406]; positive regulation of membrane protein ectodomain proteolysis [GO:0051044]; positive regulation of mitotic nuclear division [GO:0045840]; positive regulation of monocyte chemotactic protein-1 production [GO:0071639]; positive regulation of myosin light chain kinase activity [GO:0035505]; positive regulation of neuroinflammatory response [GO:0150078]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of nitric oxide biosynthetic process [GO:0045429]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of p38MAPK cascade [GO:1900745]; positive regulation of prostaglandin biosynthetic process [GO:0031394]; positive regulation of prostaglandin secretion [GO:0032308]; positive regulation of protein export from nucleus [GO:0046827]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of RNA biosynthetic process [GO:1902680]; positive regulation of T cell mediated immunity [GO:0002711]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell cytokine production [GO:2000556]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type II interferon production [GO:0032729]; positive regulation of vascular endothelial growth factor production [GO:0010575]; positive regulation of vascular endothelial growth factor receptor signaling pathway [GO:0030949]; regulation of canonical NF-kappaB signal transduction [GO:0043122]; regulation of defense response to virus by host [GO:0050691]; regulation of ERK1 and ERK2 cascade [GO:0070372]; regulation of establishment of endothelial barrier [GO:1903140]; regulation of insulin secretion [GO:0050796]; regulation of neurogenesis [GO:0050767]; regulation of nitric-oxide synthase activity [GO:0050999]; response to ATP [GO:0033198]; response to carbohydrate [GO:0009743]; response to interleukin-1 [GO:0070555]; response to lipopolysaccharide [GO:0032496]; sequestering of triglyceride [GO:0030730]; signal transduction [GO:0007165]; smooth muscle adaptation [GO:0014805]; vascular endothelial growth factor production [GO:0010573] -P02776 reviewed PLF4_HUMAN Platelet factor 4 (PF-4) (C-X-C motif chemokine 4) (Iroplact) (Oncostatin-A) [Cleaved into: Platelet factor 4, short form (Endothelial cell growth inhibitor)] PF4 CXCL4 SCYB4 adenylate cyclase-activating G protein-coupled receptor signaling pathway [GO:0007189]; antimicrobial humoral immune response mediated by antimicrobial peptide [GO:0061844]; cellular response to lipopolysaccharide [GO:0071222]; chemokine-mediated signaling pathway [GO:0070098]; cytokine-mediated signaling pathway [GO:0019221]; defense response to protozoan [GO:0042832]; inflammatory response [GO:0006954]; killing by host of symbiont cells [GO:0051873]; leukocyte chemotaxis [GO:0030595]; monocyte chemotaxis [GO:0002548]; negative regulation of angiogenesis [GO:0016525]; negative regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001240]; negative regulation of megakaryocyte differentiation [GO:0045653]; negative regulation of MHC class II biosynthetic process [GO:0045347]; neutrophil chemotaxis [GO:0030593]; platelet activation [GO:0030168]; positive regulation of gene expression [GO:0010628]; positive regulation of macrophage derived foam cell differentiation [GO:0010744]; positive regulation of macrophage differentiation [GO:0045651]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; regulation of cell population proliferation [GO:0042127] -P02778 reviewed CXL10_HUMAN C-X-C motif chemokine 10 (10 kDa interferon gamma-induced protein) (Gamma-IP10) (IP-10) (Small-inducible cytokine B10) [Cleaved into: CXCL10(1-73)] CXCL10 INP10 SCYB10 adenylate cyclase-activating G protein-coupled receptor signaling pathway [GO:0007189]; antimicrobial humoral immune response mediated by antimicrobial peptide [GO:0061844]; antiviral innate immune response [GO:0140374]; blood circulation [GO:0008015]; cell surface receptor signaling pathway [GO:0007166]; cell-cell signaling [GO:0007267]; cellular response to heat [GO:0034605]; cellular response to interleukin-17 [GO:0097398]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to virus [GO:0098586]; chemokine-mediated signaling pathway [GO:0070098]; chemotaxis [GO:0006935]; endothelial cell activation [GO:0042118]; G protein-coupled receptor signaling pathway [GO:0007186]; inflammatory response [GO:0006954]; muscle organ development [GO:0007517]; negative regulation of angiogenesis [GO:0016525]; negative regulation of myoblast differentiation [GO:0045662]; negative regulation of myoblast fusion [GO:1901740]; neutrophil chemotaxis [GO:0030593]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of monocyte chemotaxis [GO:0090026]; positive regulation of release of sequestered calcium ion into cytosol [GO:0051281]; positive regulation of T cell migration [GO:2000406]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of apoptotic process [GO:0042981]; regulation of cell population proliferation [GO:0042127]; regulation of endothelial tube morphogenesis [GO:1901509]; regulation of T cell chemotaxis [GO:0010819]; response to auditory stimulus [GO:0010996]; response to gamma radiation [GO:0010332]; response to vitamin D [GO:0033280]; signal transduction [GO:0007165]; T cell chemotaxis [GO:0010818] -P03372 reviewed ESR1_HUMAN Estrogen receptor (ER) (ER-alpha) (Estradiol receptor) (Nuclear receptor subfamily 3 group A member 1) ESR1 ESR NR3A1 androgen metabolic process [GO:0008209]; antral ovarian follicle growth [GO:0001547]; cellular response to estradiol stimulus [GO:0071392]; cellular response to estrogen stimulus [GO:0071391]; chromatin remodeling [GO:0006338]; epithelial cell development [GO:0002064]; epithelial cell proliferation involved in mammary gland duct elongation [GO:0060750]; fibroblast proliferation [GO:0048144]; intracellular estrogen receptor signaling pathway [GO:0030520]; intracellular steroid hormone receptor signaling pathway [GO:0030518]; male gonad development [GO:0008584]; mammary gland alveolus development [GO:0060749]; mammary gland branching involved in pregnancy [GO:0060745]; negative regulation of canonical NF-kappaB signal transduction [GO:0043124]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of gene expression [GO:0010629]; negative regulation of miRNA transcription [GO:1902894]; negative regulation of smooth muscle cell apoptotic process [GO:0034392]; negative regulation of transcription by RNA polymerase II [GO:0000122]; phospholipase C-activating G protein-coupled receptor signaling pathway [GO:0007200]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of nitric oxide biosynthetic process [GO:0045429]; positive regulation of nitric-oxide synthase activity [GO:0051000]; positive regulation of phospholipase C activity [GO:0010863]; positive regulation of transcription by RNA polymerase II [GO:0045944]; prostate epithelial cord arborization involved in prostate glandular acinus morphogenesis [GO:0060527]; prostate epithelial cord elongation [GO:0060523]; protein localization to chromatin [GO:0071168]; regulation of branching involved in prostate gland morphogenesis [GO:0060687]; regulation of DNA-templated transcription [GO:0006355]; regulation of epithelial cell apoptotic process [GO:1904035]; regulation of inflammatory response [GO:0050727]; regulation of toll-like receptor signaling pathway [GO:0034121]; regulation of transcription by RNA polymerase II [GO:0006357]; response to estradiol [GO:0032355]; response to estrogen [GO:0043627]; RNA polymerase II preinitiation complex assembly [GO:0051123]; signal transduction [GO:0007165]; stem cell differentiation [GO:0048863]; steroid hormone mediated signaling pathway [GO:0043401]; uterus development [GO:0060065]; vagina development [GO:0060068] -P04049 reviewed RAF1_HUMAN RAF proto-oncogene serine/threonine-protein kinase (EC 2.7.11.1) (Proto-oncogene c-RAF) (cRaf) (Raf-1) RAF1 RAF activation of adenylate cyclase activity [GO:0007190]; apoptotic process [GO:0006915]; death-inducing signaling complex assembly [GO:0071550]; ERBB2-ERBB3 signaling pathway [GO:0038133]; extrinsic apoptotic signaling pathway via death domain receptors [GO:0008625]; face development [GO:0060324]; insulin receptor signaling pathway [GO:0008286]; insulin secretion involved in cellular response to glucose stimulus [GO:0035773]; insulin-like growth factor receptor signaling pathway [GO:0048009]; intermediate filament cytoskeleton organization [GO:0045104]; MAPK cascade [GO:0000165]; myelination [GO:0042552]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043154]; negative regulation of extrinsic apoptotic signaling pathway via death domain receptors [GO:1902042]; negative regulation of protein-containing complex assembly [GO:0031333]; neurotrophin TRK receptor signaling pathway [GO:0048011]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein phosphorylation [GO:0006468]; regulation of apoptotic process [GO:0042981]; regulation of cell differentiation [GO:0045595]; regulation of cell motility [GO:2000145]; regulation of Rho protein signal transduction [GO:0035023]; response to muscle stretch [GO:0035994]; Schwann cell development [GO:0014044]; signal transduction [GO:0007165]; somatic stem cell population maintenance [GO:0035019]; thymus development [GO:0048538]; thyroid gland development [GO:0030878]; type B pancreatic cell proliferation [GO:0044342]; type II interferon-mediated signaling pathway [GO:0060333]; wound healing [GO:0042060] -P04054 reviewed PA21B_HUMAN Phospholipase A2 (EC 3.1.1.4) (Group IB phospholipase A2) (Phosphatidylcholine 2-acylhydrolase 1B) PLA2G1B PLA2 PLA2A PPLA2 actin filament organization [GO:0007015]; activation of phospholipase A2 activity [GO:0032431]; antibacterial humoral response [GO:0019731]; antimicrobial humoral immune response mediated by antimicrobial peptide [GO:0061844]; arachidonic acid secretion [GO:0050482]; cellular response to insulin stimulus [GO:0032869]; defense response to Gram-positive bacterium [GO:0050830]; fatty acid biosynthetic process [GO:0006633]; innate immune response in mucosa [GO:0002227]; intracellular signal transduction [GO:0035556]; leukotriene biosynthetic process [GO:0019370]; lipid catabolic process [GO:0016042]; neutrophil chemotaxis [GO:0030593]; neutrophil mediated immunity [GO:0002446]; phosphatidylcholine metabolic process [GO:0046470]; phosphatidylglycerol metabolic process [GO:0046471]; phospholipid metabolic process [GO:0006644]; positive regulation of calcium ion transport into cytosol [GO:0010524]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of immune response [GO:0050778]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of MAP kinase activity [GO:0043406]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of podocyte apoptotic process [GO:1904635]; positive regulation of protein secretion [GO:0050714]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of glucose import [GO:0046324]; signal transduction [GO:0007165] -P04150 reviewed GCR_HUMAN Glucocorticoid receptor (GR) (Nuclear receptor subfamily 3 group C member 1) NR3C1 GRL adrenal gland development [GO:0030325]; apoptotic process [GO:0006915]; astrocyte differentiation [GO:0048708]; cell division [GO:0051301]; cellular response to dexamethasone stimulus [GO:0071549]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to steroid hormone stimulus [GO:0071383]; cellular response to transforming growth factor beta stimulus [GO:0071560]; chromatin organization [GO:0006325]; chromosome segregation [GO:0007059]; gene expression [GO:0010467]; glucocorticoid metabolic process [GO:0008211]; intracellular steroid hormone receptor signaling pathway [GO:0030518]; mammary gland duct morphogenesis [GO:0060603]; maternal behavior [GO:0042711]; microglia differentiation [GO:0014004]; motor behavior [GO:0061744]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuroinflammatory response [GO:0150076]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of glucocorticoid biosynthetic process [GO:0031946]; regulation of gluconeogenesis [GO:0006111]; regulation of transcription by RNA polymerase II [GO:0006357]; signal transduction [GO:0007165]; synaptic transmission, glutamatergic [GO:0035249] -P04198 reviewed MYCN_HUMAN N-myc proto-oncogene protein (Class E basic helix-loop-helix protein 37) (bHLHe37) MYCN BHLHE37 NMYC negative regulation of gene expression [GO:0010629]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -P04628 reviewed WNT1_HUMAN Proto-oncogene Wnt-1 (Proto-oncogene Int-1 homolog) WNT1 INT1 animal organ regeneration [GO:0031100]; astrocyte-dopaminergic neuron signaling [GO:0036520]; bone development [GO:0060348]; branching involved in ureteric bud morphogenesis [GO:0001658]; canonical Wnt signaling pathway [GO:0060070]; cell fate commitment [GO:0045165]; cell proliferation in midbrain [GO:0033278]; cell-cell signaling [GO:0007267]; cellular response to peptide hormone stimulus [GO:0071375]; central nervous system morphogenesis [GO:0021551]; cerebellum formation [GO:0021588]; diencephalon development [GO:0021536]; embryonic axis specification [GO:0000578]; embryonic brain development [GO:1990403]; fat cell differentiation [GO:0045444]; forebrain anterior/posterior pattern specification [GO:0021797]; hematopoietic stem cell proliferation [GO:0071425]; hepatocyte differentiation [GO:0070365]; inner ear morphogenesis [GO:0042472]; midbrain development [GO:0030901]; midbrain dopaminergic neuron differentiation [GO:1904948]; midbrain-hindbrain boundary maturation during brain development [GO:0022004]; myoblast fusion [GO:0007520]; negative regulation of apoptotic process [GO:0043066]; negative regulation of BMP signaling pathway [GO:0030514]; negative regulation of cell-cell adhesion [GO:0022408]; negative regulation of cell-substrate adhesion [GO:0010812]; negative regulation of cellular senescence [GO:2000773]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway [GO:1903377]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; negative regulation of ubiquitin-dependent protein catabolic process [GO:2000059]; neuron differentiation [GO:0030182]; neuron fate determination [GO:0048664]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of dermatome development [GO:0061184]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of hematopoietic stem cell proliferation [GO:1902035]; positive regulation of insulin-like growth factor receptor signaling pathway [GO:0043568]; positive regulation of lamellipodium assembly [GO:0010592]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to wounding [GO:0009611]; signal transduction in response to DNA damage [GO:0042770]; Spemann organizer formation [GO:0060061]; spinal cord association neuron differentiation [GO:0021527]; T cell differentiation in thymus [GO:0033077]; Wnt signaling pathway [GO:0016055] -P04637 reviewed P53_HUMAN Cellular tumor antigen p53 (Antigen NY-CO-13) (Phosphoprotein p53) (Tumor suppressor p53) TP53 P53 autophagy [GO:0006914]; B cell lineage commitment [GO:0002326]; bone marrow development [GO:0048539]; cardiac muscle cell apoptotic process [GO:0010659]; cardiac septum morphogenesis [GO:0060411]; cellular response to actinomycin D [GO:0072717]; cellular response to gamma radiation [GO:0071480]; cellular response to glucose starvation [GO:0042149]; cellular response to hypoxia [GO:0071456]; cellular response to ionizing radiation [GO:0071479]; cellular response to UV [GO:0034644]; cellular response to UV-C [GO:0071494]; cellular response to xenobiotic stimulus [GO:0071466]; cellular senescence [GO:0090398]; cerebellum development [GO:0021549]; chromosome organization [GO:0051276]; circadian behavior [GO:0048512]; determination of adult lifespan [GO:0008340]; DNA damage response [GO:0006974]; DNA damage response, signal transduction by p53 class mediator [GO:0030330]; DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest [GO:0006977]; DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator [GO:0006978]; double-strand break repair [GO:0006302]; embryonic organ development [GO:0048568]; entrainment of circadian clock by photoperiod [GO:0043153]; ER overload response [GO:0006983]; fibroblast proliferation [GO:0048144]; gastrulation [GO:0007369]; glial cell proliferation [GO:0014009]; glucose catabolic process to lactate via pyruvate [GO:0019661]; hematopoietic progenitor cell differentiation [GO:0002244]; hematopoietic stem cell differentiation [GO:0060218]; in utero embryonic development [GO:0001701]; intrinsic apoptotic signaling pathway [GO:0097193]; intrinsic apoptotic signaling pathway by p53 class mediator [GO:0072332]; intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:0042771]; intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress [GO:0070059]; intrinsic apoptotic signaling pathway in response to hypoxia [GO:1990144]; mitochondrial DNA repair [GO:0043504]; mitophagy [GO:0000423]; mitotic G1 DNA damage checkpoint signaling [GO:0031571]; mRNA transcription [GO:0009299]; multicellular organism growth [GO:0035264]; necroptotic process [GO:0070266]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cell growth [GO:0030308]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of DNA replication [GO:0008156]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of fibroblast proliferation [GO:0048147]; negative regulation of G1 to G0 transition [GO:1903451]; negative regulation of glial cell proliferation [GO:0060253]; negative regulation of glucose catabolic process to lactate via pyruvate [GO:1904024]; negative regulation of helicase activity [GO:0051097]; negative regulation of miRNA processing [GO:1903799]; negative regulation of mitophagy [GO:1901525]; negative regulation of neuroblast proliferation [GO:0007406]; negative regulation of pentose-phosphate shunt [GO:1905856]; negative regulation of proteolysis [GO:0045861]; negative regulation of reactive oxygen species metabolic process [GO:2000378]; negative regulation of stem cell proliferation [GO:2000647]; negative regulation of telomere maintenance via telomerase [GO:0032211]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; neuroblast proliferation [GO:0007405]; neuron apoptotic process [GO:0051402]; nucleotide-excision repair [GO:0006289]; oligodendrocyte apoptotic process [GO:0097252]; oxidative stress-induced premature senescence [GO:0090403]; positive regulation of apoptotic process [GO:0043065]; positive regulation of cardiac muscle cell apoptotic process [GO:0010666]; positive regulation of cellular senescence [GO:2000774]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of execution phase of apoptosis [GO:1900119]; positive regulation of gene expression [GO:0010628]; positive regulation of intrinsic apoptotic signaling pathway [GO:2001244]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of mitochondrial membrane permeability [GO:0035794]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of programmed necrotic cell death [GO:0062100]; positive regulation of reactive oxygen species metabolic process [GO:2000379]; positive regulation of release of cytochrome c from mitochondria [GO:0090200]; positive regulation of RNA polymerase II transcription preinitiation complex assembly [GO:0045899]; positive regulation of thymocyte apoptotic process [GO:0070245]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein import into nucleus [GO:0006606]; protein localization [GO:0008104]; protein stabilization [GO:0050821]; protein tetramerization [GO:0051262]; protein-containing complex assembly [GO:0065003]; Ras protein signal transduction [GO:0007265]; reactive oxygen species metabolic process [GO:0072593]; regulation of apoptotic process [GO:0042981]; regulation of cell cycle [GO:0051726]; regulation of cell cycle G2/M phase transition [GO:1902749]; regulation of DNA damage response, signal transduction by p53 class mediator [GO:0043516]; regulation of DNA-templated transcription [GO:0006355]; regulation of fibroblast apoptotic process [GO:2000269]; regulation of intrinsic apoptotic signaling pathway by p53 class mediator [GO:1902253]; regulation of mitochondrial membrane permeability involved in apoptotic process [GO:1902108]; regulation of tissue remodeling [GO:0034103]; regulation of transcription by RNA polymerase II [GO:0006357]; release of cytochrome c from mitochondria [GO:0001836]; replicative senescence [GO:0090399]; response to antibiotic [GO:0046677]; response to gamma radiation [GO:0010332]; response to inorganic substance [GO:0010035]; response to ischemia [GO:0002931]; response to salt stress [GO:0009651]; response to X-ray [GO:0010165]; rRNA transcription [GO:0009303]; signal transduction by p53 class mediator [GO:0072331]; somitogenesis [GO:0001756]; stem cell proliferation [GO:0072089]; T cell differentiation in thymus [GO:0033077]; T cell lineage commitment [GO:0002360]; T cell proliferation involved in immune response [GO:0002309]; thymocyte apoptotic process [GO:0070242]; transcription initiation-coupled chromatin remodeling [GO:0045815]; transforming growth factor beta receptor signaling pathway [GO:0007179]; tumor necrosis factor-mediated signaling pathway [GO:0033209]; type II interferon-mediated signaling pathway [GO:0060333]; viral process [GO:0016032] -P05019 reviewed IGF1_HUMAN Insulin-like growth factor I (IGF-I) (Mechano growth factor) (MGF) (Somatomedin-C) IGF1 IBP1 activation of protein kinase B activity [GO:0032148]; bone mineralization involved in bone maturation [GO:0035630]; cell activation [GO:0001775]; cell population proliferation [GO:0008283]; cellular response to amyloid-beta [GO:1904646]; epithelial to mesenchymal transition [GO:0001837]; glycolate metabolic process [GO:0009441]; insulin-like growth factor receptor signaling pathway [GO:0048009]; muscle hypertrophy [GO:0014896]; muscle organ development [GO:0007517]; myoblast differentiation [GO:0045445]; myoblast proliferation [GO:0051450]; myotube cell development [GO:0014904]; negative regulation of amyloid-beta formation [GO:1902430]; negative regulation of apoptotic process [GO:0043066]; negative regulation of extrinsic apoptotic signaling pathway [GO:2001237]; negative regulation of gene expression [GO:0010629]; negative regulation of interleukin-1 beta production [GO:0032691]; negative regulation of neuroinflammatory response [GO:0150079]; negative regulation of oocyte development [GO:0060283]; negative regulation of release of cytochrome c from mitochondria [GO:0090201]; negative regulation of smooth muscle cell apoptotic process [GO:0034392]; negative regulation of tumor necrosis factor production [GO:0032720]; negative regulation of vascular associated smooth muscle cell apoptotic process [GO:1905460]; positive regulation of activated T cell proliferation [GO:0042104]; positive regulation of calcineurin-NFAT signaling cascade [GO:0070886]; positive regulation of cardiac muscle hypertrophy [GO:0010613]; positive regulation of cell growth involved in cardiac muscle cell development [GO:0061051]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA binding [GO:0043388]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of gene expression [GO:0010628]; positive regulation of glucose import [GO:0046326]; positive regulation of glycogen biosynthetic process [GO:0045725]; positive regulation of glycolytic process [GO:0045821]; positive regulation of glycoprotein biosynthetic process [GO:0010560]; positive regulation of insulin-like growth factor receptor signaling pathway [GO:0043568]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of mitotic nuclear division [GO:0045840]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of protein secretion [GO:0050714]; positive regulation of Ras protein signal transduction [GO:0046579]; positive regulation of smooth muscle cell migration [GO:0014911]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription regulatory region DNA binding [GO:2000679]; positive regulation of trophectodermal cell proliferation [GO:1904075]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; positive regulation of vascular associated smooth muscle cell proliferation [GO:1904707]; protein stabilization [GO:0050821]; proteoglycan biosynthetic process [GO:0030166]; Ras protein signal transduction [GO:0007265]; regulation of gene expression [GO:0010468]; regulation of protein phosphorylation [GO:0001932]; response to heat [GO:0009408]; signal transduction [GO:0007165]; skeletal muscle satellite cell maintenance involved in skeletal muscle regeneration [GO:0014834]; skeletal system development [GO:0001501]; wound healing [GO:0042060] -P05067 reviewed A4_HUMAN Amyloid-beta precursor protein (APP) (ABPP) (APPI) (Alzheimer disease amyloid A4 protein homolog) (Alzheimer disease amyloid protein) (Amyloid precursor protein) (Amyloid-beta (A4) precursor protein) (Amyloid-beta A4 protein) (Cerebral vascular amyloid peptide) (CVAP) (PreA4) (Protease nexin-II) (PN-II) [Cleaved into: N-APP; Soluble APP-alpha (S-APP-alpha); Soluble APP-beta (S-APP-beta); C99 (Beta-secretase C-terminal fragment) (Beta-CTF); Amyloid-beta protein 42 (Abeta42) (Beta-APP42); Amyloid-beta protein 40 (Abeta40) (Beta-APP40); C83 (Alpha-secretase C-terminal fragment) (Alpha-CTF); P3(42); P3(40); C80; Gamma-secretase C-terminal fragment 59 (Amyloid intracellular domain 59) (AICD-59) (AID(59)) (Gamma-CTF(59)); Gamma-secretase C-terminal fragment 57 (Amyloid intracellular domain 57) (AICD-57) (AID(57)) (Gamma-CTF(57)); Gamma-secretase C-terminal fragment 50 (Amyloid intracellular domain 50) (AICD-50) (AID(50)) (Gamma-CTF(50)); C31] APP A4 AD1 adult locomotory behavior [GO:0008344]; amyloid fibril formation [GO:1990000]; astrocyte activation [GO:0048143]; astrocyte activation involved in immune response [GO:0002265]; axo-dendritic transport [GO:0008088]; axon midline choice point recognition [GO:0016199]; axonogenesis [GO:0007409]; cell adhesion [GO:0007155]; cellular response to amyloid-beta [GO:1904646]; central nervous system development [GO:0007417]; cholesterol metabolic process [GO:0008203]; cognition [GO:0050890]; collateral sprouting in absence of injury [GO:0048669]; cytosolic mRNA polyadenylation [GO:0180011]; dendrite development [GO:0016358]; endocytosis [GO:0006897]; extracellular matrix organization [GO:0030198]; forebrain development [GO:0030900]; G2/M transition of mitotic cell cycle [GO:0000086]; intracellular copper ion homeostasis [GO:0006878]; ionotropic glutamate receptor signaling pathway [GO:0035235]; learning [GO:0007612]; learning or memory [GO:0007611]; locomotory behavior [GO:0007626]; mating behavior [GO:0007617]; microglia development [GO:0014005]; microglial cell activation [GO:0001774]; modulation of excitatory postsynaptic potential [GO:0098815]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of gene expression [GO:0010629]; negative regulation of long-term synaptic potentiation [GO:1900272]; negative regulation of neuron differentiation [GO:0045665]; neuromuscular process controlling balance [GO:0050885]; neuron apoptotic process [GO:0051402]; neuron cellular homeostasis [GO:0070050]; neuron projection development [GO:0031175]; neuron projection maintenance [GO:1990535]; neuron remodeling [GO:0016322]; NMDA selective glutamate receptor signaling pathway [GO:0098989]; Notch signaling pathway [GO:0007219]; positive regulation of amyloid fibril formation [GO:1905908]; positive regulation of calcium-mediated signaling [GO:0050850]; positive regulation of chemokine production [GO:0032722]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; positive regulation of gene expression [GO:0010628]; positive regulation of glycolytic process [GO:0045821]; positive regulation of inflammatory response [GO:0050729]; positive regulation of interleukin-1 beta production [GO:0032731]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of JNK cascade [GO:0046330]; positive regulation of long-term synaptic potentiation [GO:1900273]; positive regulation of mitotic cell cycle [GO:0045931]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of peptidyl-threonine phosphorylation [GO:0010800]; positive regulation of protein metabolic process [GO:0051247]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of T cell migration [GO:2000406]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; protein phosphorylation [GO:0006468]; regulation of epidermal growth factor-activated receptor activity [GO:0007176]; regulation of gene expression [GO:0010468]; regulation of long-term neuronal synaptic plasticity [GO:0048169]; regulation of multicellular organism growth [GO:0040014]; regulation of peptidyl-tyrosine phosphorylation [GO:0050730]; regulation of presynapse assembly [GO:1905606]; regulation of spontaneous synaptic transmission [GO:0150003]; regulation of synapse structure or activity [GO:0050803]; regulation of translation [GO:0006417]; regulation of Wnt signaling pathway [GO:0030111]; response to interleukin-1 [GO:0070555]; response to oxidative stress [GO:0006979]; smooth endoplasmic reticulum calcium ion homeostasis [GO:0051563]; suckling behavior [GO:0001967]; synapse organization [GO:0050808]; synaptic assembly at neuromuscular junction [GO:0051124]; visual learning [GO:0008542] -P05112 reviewed IL4_HUMAN Interleukin-4 (IL-4) (B-cell stimulatory factor 1) (BSF-1) (Binetrakin) (Lymphocyte stimulatory factor 1) (Pitrakinra) IL4 activation of Janus kinase activity [GO:0042976]; B cell differentiation [GO:0030183]; cholesterol metabolic process [GO:0008203]; dendritic cell differentiation [GO:0097028]; immune response [GO:0006955]; interleukin-4-mediated signaling pathway [GO:0035771]; macrophage activation [GO:0042116]; myeloid dendritic cell differentiation [GO:0043011]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cellular response to transforming growth factor beta stimulus [GO:1903845]; negative regulation of complement-dependent cytotoxicity [GO:1903660]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of endothelial cell apoptotic process [GO:2000352]; negative regulation of epithelial cell migration [GO:0010633]; negative regulation of inflammatory response [GO:0050728]; negative regulation of neuroinflammatory response [GO:0150079]; negative regulation of osteoclast differentiation [GO:0045671]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of tumor necrosis factor production [GO:0032720]; neuroinflammatory response [GO:0150076]; positive regulation of amyloid-beta clearance [GO:1900223]; positive regulation of ATP biosynthetic process [GO:2001171]; positive regulation of B cell proliferation [GO:0030890]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cellular respiration [GO:1901857]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of interleukin-10 production [GO:0032733]; positive regulation of interleukin-13 production [GO:0032736]; positive regulation of isotype switching to IgE isotypes [GO:0048295]; positive regulation of isotype switching to IgG isotypes [GO:0048304]; positive regulation of macroautophagy [GO:0016239]; positive regulation of MHC class II biosynthetic process [GO:0045348]; positive regulation of receptor-mediated endocytosis [GO:0048260]; positive regulation of T cell differentiation [GO:0045582]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 2 cell cytokine production [GO:2000553]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; regulation of immune response [GO:0050776]; regulation of isotype switching [GO:0045191]; regulation of phosphorylation [GO:0042325]; T cell activation [GO:0042110]; type 2 immune response [GO:0042092] -P05230 reviewed FGF1_HUMAN Fibroblast growth factor 1 (FGF-1) (Acidic fibroblast growth factor) (aFGF) (Endothelial cell growth factor) (ECGF) (Heparin-binding growth factor 1) (HBGF-1) FGF1 FGFA activation of protein kinase B activity [GO:0032148]; anatomical structure morphogenesis [GO:0009653]; angiogenesis [GO:0001525]; animal organ morphogenesis [GO:0009887]; branch elongation involved in ureteric bud branching [GO:0060681]; cell differentiation [GO:0030154]; cellular response to heat [GO:0034605]; epithelial cell proliferation [GO:0050673]; fibroblast growth factor receptor signaling pathway [GO:0008543]; lung development [GO:0030324]; mesonephric epithelium development [GO:0072163]; organ induction [GO:0001759]; positive regulation of angiogenesis [GO:0045766]; positive regulation of cell division [GO:0051781]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cholesterol biosynthetic process [GO:0045542]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of gene expression [GO:0010628]; positive regulation of hepatocyte proliferation [GO:2000347]; positive regulation of intracellular signal transduction [GO:1902533]; positive regulation of MAP kinase activity [GO:0043406]; positive regulation of sprouting angiogenesis [GO:1903672]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell migration [GO:0030334]; regulation of endothelial cell chemotaxis to fibroblast growth factor [GO:2000544]; regulation of endothelial tube morphogenesis [GO:1901509]; signal transduction [GO:0007165]; wound healing [GO:0042060] -P05231 reviewed IL6_HUMAN Interleukin-6 (IL-6) (B-cell stimulatory factor 2) (BSF-2) (CTL differentiation factor) (CDF) (Hybridoma growth factor) (Interferon beta-2) (IFN-beta-2) IL6 IFNB2 acute-phase response [GO:0006953]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to virus [GO:0098586]; cytokine-mediated signaling pathway [GO:0019221]; defense response to Gram-negative bacterium [GO:0050829]; defense response to Gram-positive bacterium [GO:0050830]; defense response to virus [GO:0051607]; endocrine pancreas development [GO:0031018]; germinal center B cell differentiation [GO:0002314]; glucagon secretion [GO:0070091]; glucose homeostasis [GO:0042593]; hepatic immune response [GO:0002384]; hepatocyte proliferation [GO:0072574]; humoral immune response [GO:0006959]; inflammatory response [GO:0006954]; inflammatory response to wounding [GO:0090594]; interleukin-6-mediated signaling pathway [GO:0070102]; liver regeneration [GO:0097421]; maintenance of blood-brain barrier [GO:0035633]; monocyte chemotaxis [GO:0002548]; negative regulation of apoptotic process [GO:0043066]; negative regulation of bone resorption [GO:0045779]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of chemokine production [GO:0032682]; negative regulation of collagen biosynthetic process [GO:0032966]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of interleukin-1-mediated signaling pathway [GO:2000660]; negative regulation of lipid storage [GO:0010888]; negative regulation of neurogenesis [GO:0050768]; negative regulation of primary miRNA processing [GO:2000635]; neuron cellular homeostasis [GO:0070050]; neuron projection development [GO:0031175]; neutrophil apoptotic process [GO:0001781]; neutrophil mediated immunity [GO:0002446]; platelet activation [GO:0030168]; positive regulation of acute inflammatory response [GO:0002675]; positive regulation of apoptotic DNA fragmentation [GO:1902512]; positive regulation of apoptotic process [GO:0043065]; positive regulation of B cell activation [GO:0050871]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of chemokine production [GO:0032722]; positive regulation of cytokine production involved in inflammatory response [GO:1900017]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of extracellular matrix disassembly [GO:0090091]; positive regulation of gene expression [GO:0010628]; positive regulation of glial cell proliferation [GO:0060252]; positive regulation of immunoglobulin production [GO:0002639]; positive regulation of interleukin-1 beta production [GO:0032731]; positive regulation of interleukin-10 production [GO:0032733]; positive regulation of interleukin-17 production [GO:0032740]; positive regulation of interleukin-21 production [GO:0032745]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of leukocyte adhesion to vascular endothelial cell [GO:1904996]; positive regulation of leukocyte chemotaxis [GO:0002690]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of neuroinflammatory response [GO:0150078]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of platelet aggregation [GO:1901731]; positive regulation of receptor signaling pathway via JAK-STAT [GO:0046427]; positive regulation of receptor signaling pathway via STAT [GO:1904894]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 2 cell cytokine production [GO:2000553]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of translation [GO:0045727]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of type B pancreatic cell apoptotic process [GO:2000676]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; positive regulation of vascular endothelial growth factor production [GO:0010575]; regulation of angiogenesis [GO:0045765]; regulation of astrocyte activation [GO:0061888]; regulation of glucagon secretion [GO:0070092]; regulation of insulin secretion [GO:0050796]; regulation of microglial cell activation [GO:1903978]; regulation of neuroinflammatory response [GO:0150077]; regulation of vascular endothelial growth factor production [GO:0010574]; response to activity [GO:0014823]; response to glucocorticoid [GO:0051384]; response to peptidoglycan [GO:0032494]; T follicular helper cell differentiation [GO:0061470]; T-helper 17 cell lineage commitment [GO:0072540]; vascular endothelial growth factor production [GO:0010573] -P05305 reviewed EDN1_HUMAN Endothelin-1 (Preproendothelin-1) (PPET1) [Cleaved into: Endothelin-1 (ET-1); Big endothelin-1] EDN1 adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway [GO:0007193]; artery smooth muscle contraction [GO:0014824]; axon extension [GO:0048675]; axonogenesis involved in innervation [GO:0060385]; body fluid secretion [GO:0007589]; branching involved in blood vessel morphogenesis [GO:0001569]; calcium ion transmembrane transport [GO:0070588]; calcium-mediated signaling [GO:0019722]; canonical Wnt signaling pathway [GO:0060070]; cardiac neural crest cell migration involved in outflow tract morphogenesis [GO:0003253]; cartilage development [GO:0051216]; cell surface receptor signaling pathway [GO:0007166]; cell-cell signaling [GO:0007267]; cellular response to calcium ion [GO:0071277]; cellular response to fatty acid [GO:0071398]; cellular response to follicle-stimulating hormone stimulus [GO:0071372]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to human chorionic gonadotropin stimulus [GO:0044751]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to hypoxia [GO:0071456]; cellular response to interleukin-1 [GO:0071347]; cellular response to luteinizing hormone stimulus [GO:0071373]; cellular response to mineralocorticoid stimulus [GO:0071389]; cellular response to organic substance [GO:0071310]; cellular response to transforming growth factor beta stimulus [GO:0071560]; cellular response to tumor necrosis factor [GO:0071356]; cellular response to type II interferon [GO:0071346]; cellular response to xenobiotic stimulus [GO:0071466]; dorsal/ventral pattern formation [GO:0009953]; embryonic heart tube development [GO:0035050]; endothelin receptor signaling pathway [GO:0086100]; endothelin receptor signaling pathway involved in heart process [GO:0086101]; epithelial fluid transport [GO:0042045]; ERK1 and ERK2 cascade [GO:0070371]; G protein-coupled receptor signaling pathway [GO:0007186]; glomerular endothelium development [GO:0072011]; glomerular filtration [GO:0003094]; histamine secretion [GO:0001821]; in utero embryonic development [GO:0001701]; intracellular calcium ion homeostasis [GO:0006874]; leukocyte activation [GO:0045321]; maternal process involved in parturition [GO:0060137]; meiotic cell cycle process involved in oocyte maturation [GO:1903537]; membrane depolarization [GO:0051899]; middle ear morphogenesis [GO:0042474]; mitochondrion organization [GO:0007005]; negative regulation of blood coagulation [GO:0030195]; negative regulation of gene expression [GO:0010629]; negative regulation of hormone secretion [GO:0046888]; negative regulation of nitric-oxide synthase biosynthetic process [GO:0051771]; negative regulation of protein metabolic process [GO:0051248]; negative regulation of smooth muscle cell apoptotic process [GO:0034392]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural crest cell fate commitment [GO:0014034]; nitric oxide transport [GO:0030185]; noradrenergic neuron differentiation [GO:0003357]; peptide hormone secretion [GO:0030072]; pharyngeal arch artery morphogenesis [GO:0061626]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; phospholipase C-activating G protein-coupled receptor signaling pathway [GO:0007200]; phospholipase D-activating G protein-coupled receptor signaling pathway [GO:0031583]; podocyte differentiation [GO:0072112]; positive regulation of artery morphogenesis [GO:1905653]; positive regulation of calcium-mediated signaling [GO:0050850]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cardiac muscle hypertrophy [GO:0010613]; positive regulation of cation channel activity [GO:2001259]; positive regulation of cell growth involved in cardiac muscle cell development [GO:0061051]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cell size [GO:0045793]; positive regulation of chemokine-mediated signaling pathway [GO:0070101]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of heart rate [GO:0010460]; positive regulation of hormone secretion [GO:0046887]; positive regulation of JUN kinase activity [GO:0043507]; positive regulation of MAP kinase activity [GO:0043406]; positive regulation of mitotic nuclear division [GO:0045840]; positive regulation of neutrophil chemotaxis [GO:0090023]; positive regulation of nitric oxide biosynthetic process [GO:0045429]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of odontogenesis [GO:0042482]; positive regulation of prostaglandin secretion [GO:0032308]; positive regulation of prostaglandin-endoperoxide synthase activity [GO:0060585]; positive regulation of protein localization to nucleus [GO:1900182]; positive regulation of renal sodium excretion [GO:0035815]; positive regulation of sarcomere organization [GO:0060298]; positive regulation of signaling receptor activity [GO:2000273]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of smooth muscle contraction [GO:0045987]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of urine volume [GO:0035810]; positive regulation of vascular associated smooth muscle cell proliferation [GO:1904707]; prostaglandin biosynthetic process [GO:0001516]; protein kinase A signaling [GO:0010737]; protein kinase C deactivation [GO:0042313]; protein kinase C-activating G protein-coupled receptor signaling pathway [GO:0007205]; regulation of glucose transmembrane transport [GO:0010827]; regulation of pH [GO:0006885]; regulation of systemic arterial blood pressure by endothelin [GO:0003100]; regulation of vasoconstriction [GO:0019229]; renal sodium ion absorption [GO:0070294]; respiratory gaseous exchange by respiratory system [GO:0007585]; response to activity [GO:0014823]; response to amino acid [GO:0043200]; response to amphetamine [GO:0001975]; response to dexamethasone [GO:0071548]; response to leptin [GO:0044321]; response to lipopolysaccharide [GO:0032496]; response to muscle stretch [GO:0035994]; response to nicotine [GO:0035094]; response to ozone [GO:0010193]; response to prostaglandin F [GO:0034696]; response to salt [GO:1902074]; response to testosterone [GO:0033574]; rhythmic excitation [GO:0043179]; semaphorin-plexin signaling pathway involved in axon guidance [GO:1902287]; superoxide anion generation [GO:0042554]; sympathetic neuron axon guidance [GO:0097492]; thyroid gland development [GO:0030878]; transcription by RNA polymerase II [GO:0006366]; vasoconstriction [GO:0042310]; vein smooth muscle contraction [GO:0014826] -P05412 reviewed JUN_HUMAN Transcription factor Jun (Activator protein 1) (AP1) (Proto-oncogene c-Jun) (Transcription factor AP-1 subunit Jun) (V-jun avian sarcoma virus 17 oncogene homolog) (p39) JUN cellular response to cadmium ion [GO:0071276]; cellular response to reactive oxygen species [GO:0034614]; integrated stress response signaling [GO:0140467]; negative regulation by host of viral transcription [GO:0043922]; negative regulation of DNA binding [GO:0043392]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation by host of viral transcription [GO:0043923]; positive regulation of apoptotic process [GO:0043065]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of DNA-templated transcription initiation [GO:2000144]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular associated smooth muscle cell proliferation [GO:1904707]; regulation of cell cycle [GO:0051726]; regulation of cell population proliferation [GO:0042127]; regulation of transcription by RNA polymerase II [GO:0006357]; release from viral latency [GO:0019046]; response to endoplasmic reticulum stress [GO:0034976]; SMAD protein signal transduction [GO:0060395]; transforming growth factor beta receptor signaling pathway [GO:0007179] -P05549 reviewed AP2A_HUMAN Transcription factor AP-2-alpha (AP2-alpha) (AP-2 transcription factor) (Activating enhancer-binding protein 2-alpha) (Activator protein 2) (AP-2) TFAP2A AP2TF TFAP2 bone morphogenesis [GO:0060349]; cellular response to iron ion [GO:0071281]; embryonic cranial skeleton morphogenesis [GO:0048701]; embryonic forelimb morphogenesis [GO:0035115]; eyelid development in camera-type eye [GO:0061029]; inner ear morphogenesis [GO:0042472]; kidney development [GO:0001822]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of reactive oxygen species metabolic process [GO:2000378]; negative regulation of transcription by competitive promoter binding [GO:0010944]; negative regulation of transcription by RNA polymerase II [GO:0000122]; oculomotor nerve formation [GO:0021623]; optic cup structural organization [GO:0003409]; optic vesicle morphogenesis [GO:0003404]; positive regulation of bone mineralization [GO:0030501]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of tooth mineralization [GO:0070172]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell differentiation [GO:0045595]; regulation of cell population proliferation [GO:0042127]; regulation of transcription by RNA polymerase II [GO:0006357]; retina layer formation [GO:0010842]; roof of mouth development [GO:0060021]; sensory perception of sound [GO:0007605]; trigeminal nerve development [GO:0021559] -P06400 reviewed RB_HUMAN Retinoblastoma-associated protein (p105-Rb) (p110-RB1) (pRb) (Rb) (pp110) RB1 aortic valve morphogenesis [GO:0003180]; cell differentiation [GO:0030154]; cell division [GO:0051301]; cell morphogenesis involved in neuron differentiation [GO:0048667]; cellular response to insulin stimulus [GO:0032869]; cellular response to xenobiotic stimulus [GO:0071466]; chondrocyte differentiation [GO:0002062]; chromatin remodeling [GO:0006338]; chromosome organization [GO:0051276]; digestive tract development [GO:0048565]; enucleate erythrocyte differentiation [GO:0043353]; epithelial cell proliferation [GO:0050673]; G1/S transition of mitotic cell cycle [GO:0000082]; glial cell apoptotic process [GO:0034349]; glial cell proliferation [GO:0014009]; hepatocyte apoptotic process [GO:0097284]; heterochromatin formation [GO:0031507]; maintenance of mitotic sister chromatid cohesion [GO:0034088]; myoblast differentiation [GO:0045445]; negative regulation of apoptotic signaling pathway [GO:2001234]; negative regulation of cell cycle [GO:0045786]; negative regulation of cell growth [GO:0030308]; negative regulation of cold-induced thermogenesis [GO:0120163]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of G1/S transition of mitotic cell cycle [GO:2000134]; negative regulation of gene expression [GO:0010629]; negative regulation of glial cell proliferation [GO:0060253]; negative regulation of hepatocyte apoptotic process [GO:1903944]; negative regulation of inflammatory response [GO:0050728]; negative regulation of myofibroblast differentiation [GO:1904761]; negative regulation of protein kinase activity [GO:0006469]; negative regulation of protein serine/threonine kinase activity [GO:0071901]; negative regulation of smoothened signaling pathway [GO:0045879]; negative regulation of tau-protein kinase activity [GO:1902948]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron apoptotic process [GO:0051402]; neuron maturation [GO:0042551]; neuron projection development [GO:0031175]; positive regulation of collagen fibril organization [GO:1904028]; positive regulation of extracellular matrix organization [GO:1903055]; positive regulation of macrophage differentiation [GO:0045651]; positive regulation of mitotic metaphase/anaphase transition [GO:0045842]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription regulatory region DNA binding [GO:2000679]; protein localization to chromosome, centromeric region [GO:0071459]; Ras protein signal transduction [GO:0007265]; regulation of cell cycle [GO:0051726]; regulation of centromere complex assembly [GO:0090230]; regulation of DNA-templated transcription [GO:0006355]; regulation of lipid kinase activity [GO:0043550]; regulation of mitotic cell cycle [GO:0007346]; sister chromatid biorientation [GO:0031134]; skeletal muscle cell differentiation [GO:0035914]; smoothened signaling pathway [GO:0007224]; spermatogenesis [GO:0007283]; striated muscle cell differentiation [GO:0051146]; tissue homeostasis [GO:0001894]; transcription by RNA polymerase II [GO:0006366] -P06401 reviewed PRGR_HUMAN Progesterone receptor (PR) (Nuclear receptor subfamily 3 group C member 3) PGR NR3C3 cell-cell signaling [GO:0007267]; glandular epithelial cell maturation [GO:0002071]; intracellular steroid hormone receptor signaling pathway [GO:0030518]; lung alveolus development [GO:0048286]; maintenance of protein location in nucleus [GO:0051457]; negative regulation of gene expression [GO:0010629]; negative regulation of phosphorylation [GO:0042326]; ovulation from ovarian follicle [GO:0001542]; paracrine signaling [GO:0038001]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; progesterone receptor signaling pathway [GO:0050847]; regulation of DNA-templated transcription [GO:0006355]; regulation of epithelial cell proliferation [GO:0050678]; regulation of transcription by RNA polymerase II [GO:0006357]; signal transduction [GO:0007165]; tertiary branching involved in mammary gland duct morphogenesis [GO:0060748] -P06454 reviewed PTMA_HUMAN Prothymosin alpha [Cleaved into: Prothymosin alpha, N-terminally processed; Thymosin alpha-1] PTMA TMSA DNA-templated transcription [GO:0006351]; negative regulation of apoptotic process [GO:0043066]; positive regulation of transcription by RNA polymerase II [GO:0045944] -P06748 reviewed NPM_HUMAN Nucleophosmin (NPM) (Nucleolar phosphoprotein B23) (Nucleolar protein NO38) (Numatrin) NPM1 NPM cellular response to UV [GO:0034644]; cellular senescence [GO:0090398]; centrosome cycle [GO:0007098]; chromatin remodeling [GO:0006338]; DNA repair [GO:0006281]; intracellular protein transport [GO:0006886]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of centrosome duplication [GO:0010826]; negative regulation of protein kinase activity by regulation of protein phosphorylation [GO:0044387]; nucleocytoplasmic transport [GO:0006913]; nucleosome assembly [GO:0006334]; positive regulation of cell cycle G2/M phase transition [GO:1902751]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of translation [GO:0045727]; protein localization [GO:0008104]; regulation of centriole replication [GO:0046599]; regulation of centrosome duplication [GO:0010824]; regulation of eIF2 alpha phosphorylation by dsRNA [GO:0060735]; regulation of endodeoxyribonuclease activity [GO:0032071]; regulation of endoribonuclease activity [GO:0060699]; regulation of mRNA stability involved in cellular response to UV [GO:1902629]; ribosomal large subunit biogenesis [GO:0042273]; ribosomal large subunit export from nucleus [GO:0000055]; ribosomal small subunit biogenesis [GO:0042274]; ribosomal small subunit export from nucleus [GO:0000056]; ribosome assembly [GO:0042255]; signal transduction [GO:0007165] -P07355 reviewed ANXA2_HUMAN Annexin A2 (Annexin II) (Annexin-2) (Calpactin I heavy chain) (Calpactin-1 heavy chain) (Chromobindin-8) (Lipocortin II) (Placental anticoagulant protein IV) (PAP-IV) (Protein I) (p36) ANXA2 ANX2 ANX2L4 CAL1H LPC2D angiogenesis [GO:0001525]; cell-matrix adhesion [GO:0007160]; collagen fibril organization [GO:0030199]; epithelial cell apoptotic process [GO:1904019]; fibrinolysis [GO:0042730]; lung development [GO:0030324]; membrane raft assembly [GO:0001765]; mRNA transcription by RNA polymerase II [GO:0042789]; negative regulation of low-density lipoprotein particle receptor catabolic process [GO:0032804]; negative regulation of receptor internalization [GO:0002091]; osteoclast development [GO:0036035]; positive regulation of exocytosis [GO:0045921]; positive regulation of low-density lipoprotein particle clearance [GO:1905581]; positive regulation of low-density lipoprotein particle receptor binding [GO:1905597]; positive regulation of low-density lipoprotein receptor activity [GO:1905599]; positive regulation of plasma membrane repair [GO:1905686]; positive regulation of plasminogen activation [GO:0010756]; positive regulation of receptor recycling [GO:0001921]; positive regulation of receptor-mediated endocytosis involved in cholesterol transport [GO:1905602]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vacuole organization [GO:0044090]; positive regulation of vesicle fusion [GO:0031340]; regulation of neurogenesis [GO:0050767]; response to activity [GO:0014823]; vesicle budding from membrane [GO:0006900] -P07550 reviewed ADRB2_HUMAN Beta-2 adrenergic receptor (Beta-2 adrenoreceptor) (Beta-2 adrenoceptor) ADRB2 ADRB2R B2AR activation of transmembrane receptor protein tyrosine kinase activity [GO:0007171]; adenylate cyclase-activating adrenergic receptor signaling pathway [GO:0071880]; adenylate cyclase-modulating G protein-coupled receptor signaling pathway [GO:0007188]; adrenergic receptor signaling pathway [GO:0071875]; bone resorption [GO:0045453]; brown fat cell differentiation [GO:0050873]; cell surface receptor signaling pathway [GO:0007166]; cellular response to amyloid-beta [GO:1904646]; diet induced thermogenesis [GO:0002024]; endosome to lysosome transport [GO:0008333]; heat generation [GO:0031649]; negative regulation of G protein-coupled receptor signaling pathway [GO:0045744]; negative regulation of multicellular organism growth [GO:0040015]; negative regulation of smooth muscle contraction [GO:0045986]; norepinephrine-epinephrine-mediated vasodilation involved in regulation of systemic arterial blood pressure [GO:0002025]; positive regulation of AMPA receptor activity [GO:2000969]; positive regulation of autophagosome maturation [GO:1901098]; positive regulation of bone mineralization [GO:0030501]; positive regulation of cAMP-dependent protein kinase activity [GO:2000481]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of lipophagy [GO:1904504]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of mini excitatory postsynaptic potential [GO:0061885]; positive regulation of protein kinase A signaling [GO:0010739]; positive regulation of protein serine/threonine kinase activity [GO:0071902]; positive regulation of transcription by RNA polymerase II [GO:0045944]; receptor-mediated endocytosis [GO:0006898]; regulation of sodium ion transport [GO:0002028]; response to cold [GO:0009409]; response to psychosocial stress [GO:1990911]; smooth muscle contraction [GO:0006939]; transcription by RNA polymerase II [GO:0006366] -P07585 reviewed PGS2_HUMAN Decorin (Bone proteoglycan II) (PG-S2) (PG40) DCN SLRR1B animal organ morphogenesis [GO:0009887]; negative regulation of angiogenesis [GO:0016525]; negative regulation of endothelial cell migration [GO:0010596]; negative regulation of vascular endothelial growth factor signaling pathway [GO:1900747]; positive regulation of autophagy [GO:0010508]; positive regulation of macroautophagy [GO:0016239]; positive regulation of mitochondrial depolarization [GO:0051901]; positive regulation of mitochondrial fission [GO:0090141]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of transcription by RNA polymerase II [GO:0045944] -P07686 reviewed HEXB_HUMAN Beta-hexosaminidase subunit beta (EC 3.2.1.52) (Beta-N-acetylhexosaminidase subunit beta) (Hexosaminidase subunit B) (Cervical cancer proto-oncogene 7 protein) (HCC-7) (N-acetyl-beta-glucosaminidase subunit beta) [Cleaved into: Beta-hexosaminidase subunit beta chain B; Beta-hexosaminidase subunit beta chain A] HEXB HCC7 astrocyte cell migration [GO:0043615]; chondroitin sulfate catabolic process [GO:0030207]; dermatan sulfate catabolic process [GO:0030209]; ganglioside catabolic process [GO:0006689]; glycosaminoglycan metabolic process [GO:0030203]; hyaluronan catabolic process [GO:0030214]; intracellular calcium ion homeostasis [GO:0006874]; lipid storage [GO:0019915]; locomotory behavior [GO:0007626]; lysosome organization [GO:0007040]; maintenance of location in cell [GO:0051651]; male courtship behavior [GO:0008049]; myelination [GO:0042552]; neuromuscular process controlling balance [GO:0050885]; neuron cellular homeostasis [GO:0070050]; oligosaccharide catabolic process [GO:0009313]; oogenesis [GO:0048477]; penetration of zona pellucida [GO:0007341]; phospholipid biosynthetic process [GO:0008654]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell shape [GO:0008360]; sensory perception of sound [GO:0007605]; single fertilization [GO:0007338]; skeletal system development [GO:0001501] -P07947 reviewed YES_HUMAN Tyrosine-protein kinase Yes (EC 2.7.10.2) (Proto-oncogene c-Yes) (p61-Yes) YES1 YES cell differentiation [GO:0030154]; cell surface receptor protein tyrosine kinase signaling pathway [GO:0007169]; cellular response to platelet-derived growth factor stimulus [GO:0036120]; cellular response to retinoic acid [GO:0071300]; cellular response to transforming growth factor beta stimulus [GO:0071560]; ephrin receptor signaling pathway [GO:0048013]; Fc-gamma receptor signaling pathway involved in phagocytosis [GO:0038096]; innate immune response [GO:0045087]; leukocyte migration [GO:0050900]; negative regulation of inflammatory response to antigenic stimulus [GO:0002862]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein modification process [GO:0036211]; regulation of glucose transmembrane transport [GO:0010827]; regulation of vascular permeability [GO:0043114]; T cell costimulation [GO:0031295] -P07992 reviewed ERCC1_HUMAN DNA excision repair protein ERCC-1 ERCC1 cell population proliferation [GO:0008283]; determination of adult lifespan [GO:0008340]; DNA repair [GO:0006281]; double-strand break repair via nonhomologous end joining [GO:0006303]; embryonic organ development [GO:0048568]; insulin-like growth factor receptor signaling pathway [GO:0048009]; interstrand cross-link repair [GO:0036297]; isotype switching [GO:0045190]; male gonad development [GO:0008584]; mitotic recombination [GO:0006312]; multicellular organism growth [GO:0035264]; negative regulation of protection from non-homologous end joining at telomere [GO:1905765]; negative regulation of telomere maintenance [GO:0032205]; nucleotide-excision repair [GO:0006289]; oogenesis [GO:0048477]; positive regulation of t-circle formation [GO:1904431]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; post-embryonic hemopoiesis [GO:0035166]; pyrimidine dimer repair by nucleotide-excision repair [GO:0000720]; replicative senescence [GO:0090399]; response to cadmium ion [GO:0046686]; response to immobilization stress [GO:0035902]; response to nutrient [GO:0007584]; response to oxidative stress [GO:0006979]; response to sucrose [GO:0009744]; response to X-ray [GO:0010165]; spermatogenesis [GO:0007283]; syncytium formation [GO:0006949]; t-circle formation [GO:0090656]; telomeric DNA-containing double minutes formation [GO:0061819]; UV protection [GO:0009650]; UV-damage excision repair [GO:0070914] -P08047 reviewed SP1_HUMAN Transcription factor Sp1 SP1 TSFP1 cellular response to estrogen stimulus [GO:0071391]; cellular response to insulin stimulus [GO:0032869]; cellular response to wortmannin [GO:1904568]; cellular response to zinc ion starvation [GO:0034224]; positive regulation by host of viral transcription [GO:0043923]; positive regulation of amyloid-beta formation [GO:1902004]; positive regulation of angiogenesis [GO:0045766]; positive regulation of blood vessel endothelial cell migration [GO:0043536]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of hydrogen sulfide biosynthetic process [GO:1904828]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular endothelial cell proliferation [GO:1905564]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; response to hydroperoxide [GO:0033194]; rhythmic process [GO:0048511] -P08048 reviewed ZFY_HUMAN Zinc finger Y-chromosomal protein ZFY positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -P08151 reviewed GLI1_HUMAN Zinc finger protein GLI1 (Glioma-associated oncogene) (Oncogene GLI) GLI1 GLI cerebellar cortex morphogenesis [GO:0021696]; digestive tract morphogenesis [GO:0048546]; dorsal/ventral pattern formation [GO:0009953]; epidermal cell differentiation [GO:0009913]; liver regeneration [GO:0097421]; lung development [GO:0030324]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; notochord regression [GO:0060032]; osteoblast differentiation [GO:0001649]; pituitary gland development [GO:0021983]; positive regulation of cardiac muscle cell proliferation [GO:0060045]; positive regulation of cell cycle G1/S phase transition [GO:1902808]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA replication [GO:0045740]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of smoothened signaling pathway [GO:0045880]; positive regulation of transcription by RNA polymerase II [GO:0045944]; prostate gland development [GO:0030850]; proximal/distal pattern formation [GO:0009954]; regulation of DNA-templated transcription [GO:0006355]; regulation of hepatocyte proliferation [GO:2000345]; regulation of osteoblast differentiation [GO:0045667]; regulation of smoothened signaling pathway [GO:0008589]; regulation of transcription by RNA polymerase II [GO:0006357]; response to wounding [GO:0009611]; smoothened signaling pathway [GO:0007224]; spermatid development [GO:0007286]; ventral midline development [GO:0007418] -P08237 reviewed PFKAM_HUMAN ATP-dependent 6-phosphofructokinase, muscle type (ATP-PFK) (PFK-M) (EC 2.7.1.11) (6-phosphofructokinase type A) (Phosphofructo-1-kinase isozyme A) (PFK-A) (Phosphohexokinase) PFKM PFKX canonical glycolysis [GO:0061621]; fructose 1,6-bisphosphate metabolic process [GO:0030388]; fructose 6-phosphate metabolic process [GO:0006002]; glucose homeostasis [GO:0042593]; glycogen catabolic process [GO:0005980]; glycolysis from storage polysaccharide through glucose-1-phosphate [GO:0093001]; glycolytic process [GO:0006096]; glycolytic process through fructose-6-phosphate [GO:0061615]; muscle cell cellular homeostasis [GO:0046716]; positive regulation of insulin secretion [GO:0032024]; positive regulation of transcription by RNA polymerase II [GO:0045944] -P08476 reviewed INHBA_HUMAN Inhibin beta A chain (Activin beta-A chain) (Erythroid differentiation protein) (EDF) INHBA activin receptor signaling pathway [GO:0032924]; autophagy [GO:0006914]; cardiac fibroblast cell development [GO:0060936]; cell differentiation [GO:0030154]; cell surface receptor signaling pathway [GO:0007166]; cell-cell signaling [GO:0007267]; cellular response to angiotensin [GO:1904385]; cellular response to cholesterol [GO:0071397]; cellular response to follicle-stimulating hormone stimulus [GO:0071372]; cellular response to hypoxia [GO:0071456]; cellular response to oxygen-glucose deprivation [GO:0090650]; cytokine-mediated signaling pathway [GO:0019221]; defense response [GO:0006952]; endodermal cell differentiation [GO:0035987]; erythrocyte differentiation [GO:0030218]; extrinsic apoptotic signaling pathway [GO:0097191]; eyelid development in camera-type eye [GO:0061029]; GABAergic neuron differentiation [GO:0097154]; hair follicle development [GO:0001942]; hematopoietic progenitor cell differentiation [GO:0002244]; hemoglobin biosynthetic process [GO:0042541]; male gonad development [GO:0008584]; mesodermal cell differentiation [GO:0048333]; negative regulation of B cell differentiation [GO:0045578]; negative regulation of cell growth [GO:0030308]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of follicle-stimulating hormone secretion [GO:0046882]; negative regulation of G1/S transition of mitotic cell cycle [GO:2000134]; negative regulation of macrophage differentiation [GO:0045650]; negative regulation of phosphorylation [GO:0042326]; negative regulation of type II interferon production [GO:0032689]; nervous system development [GO:0007399]; odontogenesis [GO:0042476]; ovarian follicle development [GO:0001541]; positive regulation of collagen biosynthetic process [GO:0032967]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of erythrocyte differentiation [GO:0045648]; positive regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001241]; positive regulation of follicle-stimulating hormone secretion [GO:0046881]; positive regulation of gene expression [GO:0010628]; positive regulation of ovulation [GO:0060279]; positive regulation of protein metabolic process [GO:0051247]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription by RNA polymerase III [GO:0045945]; progesterone secretion [GO:0042701]; regulation of follicle-stimulating hormone secretion [GO:0046880]; regulation of transcription by RNA polymerase II [GO:0006357]; response to aldosterone [GO:1904044]; roof of mouth development [GO:0060021]; SMAD protein signal transduction [GO:0060395]; striatal medium spiny neuron differentiation [GO:0021773]; transcription by RNA polymerase II [GO:0006366] -P08581 reviewed MET_HUMAN Hepatocyte growth factor receptor (HGF receptor) (EC 2.7.10.1) (HGF/SF receptor) (Proto-oncogene c-Met) (Scatter factor receptor) (SF receptor) (Tyrosine-protein kinase Met) MET branching morphogenesis of an epithelial tube [GO:0048754]; cell migration [GO:0016477]; cell surface receptor signaling pathway [GO:0007166]; endothelial cell morphogenesis [GO:0001886]; establishment of skin barrier [GO:0061436]; excitatory postsynaptic potential [GO:0060079]; liver development [GO:0001889]; negative regulation of autophagy [GO:0010507]; negative regulation of guanyl-nucleotide exchange factor activity [GO:1905098]; negative regulation of hydrogen peroxide-mediated programmed cell death [GO:1901299]; negative regulation of Rho protein signal transduction [GO:0035024]; negative regulation of stress fiber assembly [GO:0051497]; negative regulation of thrombin-activated receptor signaling pathway [GO:0070495]; nervous system development [GO:0007399]; neuron differentiation [GO:0030182]; pancreas development [GO:0031016]; phagocytosis [GO:0006909]; positive chemotaxis [GO:0050918]; positive regulation of endothelial cell chemotaxis [GO:2001028]; positive regulation of microtubule polymerization [GO:0031116]; positive regulation of transcription by RNA polymerase II [GO:0045944]; semaphorin-plexin signaling pathway [GO:0071526]; signal transduction [GO:0007165] -P08620 reviewed FGF4_HUMAN Fibroblast growth factor 4 (FGF-4) (Heparin secretory-transforming protein 1) (HST) (HST-1) (HSTF-1) (Heparin-binding growth factor 4) (HBGF-4) (Transforming protein KS3) FGF4 HST HSTF1 KS3 animal organ morphogenesis [GO:0009887]; apoptotic process involved in morphogenesis [GO:0060561]; cartilage condensation [GO:0001502]; cell differentiation [GO:0030154]; cell-cell signaling [GO:0007267]; cellular response to leukemia inhibitory factor [GO:1990830]; chondroblast differentiation [GO:0060591]; cranial suture morphogenesis [GO:0060363]; embryonic hindlimb morphogenesis [GO:0035116]; epithelial cell apoptotic process [GO:1904019]; fibroblast growth factor receptor signaling pathway [GO:0008543]; mesenchymal cell proliferation [GO:0010463]; negative regulation of apoptotic process [GO:0043066]; odontogenesis of dentin-containing tooth [GO:0042475]; positive regulation of cell division [GO:0051781]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of gene expression [GO:0010628]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell migration [GO:0030334]; regulation of endothelial cell chemotaxis to fibroblast growth factor [GO:2000544]; signal transduction [GO:0007165]; somatic stem cell population maintenance [GO:0035019]; stem cell proliferation [GO:0072089] -P08651 reviewed NFIC_HUMAN Nuclear factor 1 C-type (NF1-C) (Nuclear factor 1/C) (CCAAT-box-binding transcription factor) (CTF) (Nuclear factor I/C) (NF-I/C) (NFI-C) (TGGCA-binding protein) NFIC NFI DNA replication [GO:0006260]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription by RNA polymerase II [GO:0006366] -P08697 reviewed A2AP_HUMAN Alpha-2-antiplasmin (Alpha-2-AP) (Alpha-2-plasmin inhibitor) (Alpha-2-PI) (Serpin F2) SERPINF2 AAP PLI acute-phase response [GO:0006953]; blood vessel morphogenesis [GO:0048514]; collagen fibril organization [GO:0030199]; fibrinolysis [GO:0042730]; maintenance of blood vessel diameter homeostasis by renin-angiotensin [GO:0002034]; negative regulation of fibrinolysis [GO:0051918]; negative regulation of plasminogen activation [GO:0010757]; positive regulation of cell differentiation [GO:0045597]; positive regulation of cell-cell adhesion mediated by cadherin [GO:2000049]; positive regulation of collagen biosynthetic process [GO:0032967]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of JNK cascade [GO:0046330]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of stress fiber assembly [GO:0051496]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta production [GO:0071636]; response to organic substance [GO:0010033] -P09016 reviewed HXD4_HUMAN Homeobox protein Hox-D4 (Homeobox protein HHO.C13) (Homeobox protein Hox-4B) (Homeobox protein Hox-5.1) HOXD4 HOX4B anterior/posterior pattern specification [GO:0009952]; embryonic organ development [GO:0048568]; embryonic skeletal system morphogenesis [GO:0048704]; positive regulation of transcription by RNA polymerase II [GO:0045944]; stem cell differentiation [GO:0048863] -P09017 reviewed HXC4_HUMAN Homeobox protein Hox-C4 (Homeobox protein CP19) (Homeobox protein Hox-3E) HOXC4 HOX3E anterior/posterior pattern specification [GO:0009952]; cartilage development [GO:0051216]; embryonic skeletal system morphogenesis [GO:0048704]; positive regulation of transcription by RNA polymerase II [GO:0045944] -P09038 reviewed FGF2_HUMAN Fibroblast growth factor 2 (FGF-2) (Basic fibroblast growth factor) (bFGF) (Heparin-binding growth factor 2) (HBGF-2) FGF2 FGFB angiogenesis involved in coronary vascular morphogenesis [GO:0060978]; animal organ morphogenesis [GO:0009887]; branching involved in ureteric bud morphogenesis [GO:0001658]; canonical Wnt signaling pathway [GO:0060070]; cell differentiation [GO:0030154]; cell migration involved in sprouting angiogenesis [GO:0002042]; cellular response to mechanical stimulus [GO:0071260]; cerebellar granule cell precursor proliferation [GO:0021930]; chemotaxis [GO:0006935]; chondroblast differentiation [GO:0060591]; corticotropin hormone secreting cell differentiation [GO:0060128]; embryo development ending in birth or egg hatching [GO:0009792]; embryonic morphogenesis [GO:0048598]; endothelial cell proliferation [GO:0001935]; ERK1 and ERK2 cascade [GO:0070371]; fibroblast growth factor receptor signaling pathway [GO:0008543]; glial cell differentiation [GO:0010001]; growth factor dependent regulation of skeletal muscle satellite cell proliferation [GO:0014843]; hyaluronan catabolic process [GO:0030214]; inner ear auditory receptor cell differentiation [GO:0042491]; lung development [GO:0030324]; lymphatic endothelial cell migration [GO:1904977]; mammary gland epithelial cell differentiation [GO:0060644]; negative regulation of blood vessel endothelial cell migration [GO:0043537]; negative regulation of fibroblast growth factor receptor signaling pathway [GO:0040037]; negative regulation of fibroblast migration [GO:0010764]; negative regulation of gene expression [GO:0010629]; negative regulation of stem cell proliferation [GO:2000647]; negative regulation of wound healing [GO:0061045]; nervous system development [GO:0007399]; neuroblast proliferation [GO:0007405]; organ induction [GO:0001759]; osteoblast differentiation [GO:0001649]; paracrine signaling [GO:0038001]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; positive regulation of angiogenesis [GO:0045766]; positive regulation of blood vessel endothelial cell migration [GO:0043536]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of cardiac muscle cell proliferation [GO:0060045]; positive regulation of cell division [GO:0051781]; positive regulation of cell fate specification [GO:0042660]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cerebellar granule cell precursor proliferation [GO:0021940]; positive regulation of DNA biosynthetic process [GO:2000573]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of endothelial cell chemotaxis [GO:2001028]; positive regulation of endothelial cell chemotaxis to fibroblast growth factor [GO:2000546]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of epithelial tube formation [GO:1905278]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of gene expression [GO:0010628]; positive regulation of inner ear auditory receptor cell differentiation [GO:0045609]; positive regulation of lens fiber cell differentiation [GO:1902748]; positive regulation of MAP kinase activity [GO:0043406]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of neuroepithelial cell differentiation [GO:1902913]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of sprouting angiogenesis [GO:1903672]; positive regulation of stem cell differentiation [GO:2000738]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular associated smooth muscle cell proliferation [GO:1904707]; positive regulation of vascular endothelial cell proliferation [GO:1905564]; Ras protein signal transduction [GO:0007265]; regulation of angiogenesis [GO:0045765]; regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis [GO:1903587]; regulation of cell cycle [GO:0051726]; regulation of cell migration [GO:0030334]; regulation of cell migration involved in sprouting angiogenesis [GO:0090049]; regulation of endothelial cell chemotaxis to fibroblast growth factor [GO:2000544]; regulation of retinal cell programmed cell death [GO:0046668]; release of sequestered calcium ion into cytosol [GO:0051209]; response to axon injury [GO:0048678]; signal transduction [GO:0007165]; stem cell development [GO:0048864]; stem cell proliferation [GO:0072089]; substantia nigra development [GO:0021762]; thyroid-stimulating hormone-secreting cell differentiation [GO:0060129]; transcription by RNA polymerase II [GO:0006366]; wound healing [GO:0042060] -P09067 reviewed HXB5_HUMAN Homeobox protein Hox-B5 (Homeobox protein HHO.C10) (Homeobox protein Hox-2A) (Homeobox protein Hu-1) HOXB5 HOX2A anatomical structure morphogenesis [GO:0009653]; anterior/posterior pattern specification [GO:0009952]; embryonic skeletal system morphogenesis [GO:0048704]; endothelial cell differentiation [GO:0045446]; regulation of transcription by RNA polymerase II [GO:0006357] -P09086 reviewed PO2F2_HUMAN POU domain, class 2, transcription factor 2 (Lymphoid-restricted immunoglobulin octamer-binding protein NF-A2) (Octamer-binding protein 2) (Oct-2) (Octamer-binding transcription factor 2) (OTF-2) POU2F2 OCT2 OTF2 cellular response to virus [GO:0098586]; humoral immune response [GO:0006959]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -P09429 reviewed HMGB1_HUMAN High mobility group protein B1 (High mobility group protein 1) (HMG-1) HMGB1 HMG1 activation of innate immune response [GO:0002218]; apoptotic cell clearance [GO:0043277]; autophagy [GO:0006914]; cellular response to lipopolysaccharide [GO:0071222]; dendritic cell chemotaxis [GO:0002407]; DNA geometric change [GO:0032392]; DNA recombination [GO:0006310]; DNA topological change [GO:0006265]; double-strand break repair via nonhomologous end joining [GO:0006303]; heterochromatin formation [GO:0031507]; inflammatory response [GO:0006954]; inflammatory response to antigenic stimulus [GO:0002437]; innate immune response [GO:0045087]; myeloid dendritic cell activation [GO:0001773]; negative regulation of apoptotic cell clearance [GO:2000426]; negative regulation of blood vessel endothelial cell migration [GO:0043537]; negative regulation of CD4-positive, alpha-beta T cell differentiation [GO:0043371]; negative regulation of RNA polymerase II transcription preinitiation complex assembly [GO:0017055]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of type II interferon production [GO:0032689]; neuron projection development [GO:0031175]; neutrophil clearance [GO:0097350]; positive regulation of activated T cell proliferation [GO:0042104]; positive regulation of apoptotic process [GO:0043065]; positive regulation of autophagy [GO:0010508]; positive regulation of blood vessel endothelial cell migration [GO:0043536]; positive regulation of chemokine (C-X-C motif) ligand 2 production [GO:2000343]; positive regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043280]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of dendritic cell differentiation [GO:2001200]; positive regulation of DNA binding [GO:0043388]; positive regulation of DNA ligation [GO:0051106]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of interleukin-1 production [GO:0032732]; positive regulation of interleukin-10 production [GO:0032733]; positive regulation of interleukin-12 production [GO:0032735]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of JNK cascade [GO:0046330]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of mismatch repair [GO:0032425]; positive regulation of monocyte chemotaxis [GO:0090026]; positive regulation of toll-like receptor 9 signaling pathway [GO:0034165]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of vascular endothelial cell proliferation [GO:1905564]; positive regulation of viral entry into host cell [GO:0046598]; regulation of restriction endodeoxyribonuclease activity [GO:0032072]; regulation of T cell mediated immune response to tumor cell [GO:0002840]; regulation of tolerance induction [GO:0002643]; regulation of transcription by RNA polymerase II [GO:0006357]; T-helper 1 cell activation [GO:0035711]; T-helper 1 cell differentiation [GO:0045063]; V(D)J recombination [GO:0033151] -P09544 reviewed WNT2_HUMAN Protein Wnt-2 (Int-1-like protein 1) (Int-1-related protein) (IRP) WNT2 INT1L1 IRP atrial cardiac muscle tissue morphogenesis [GO:0055009]; canonical Wnt signaling pathway [GO:0060070]; cardiac epithelial to mesenchymal transition [GO:0060317]; cardiac muscle cell proliferation [GO:0060038]; cell fate commitment [GO:0045165]; cell proliferation in midbrain [GO:0033278]; cell-cell signaling [GO:0007267]; cellular response to retinoic acid [GO:0071300]; cellular response to transforming growth factor beta stimulus [GO:0071560]; epithelial cell proliferation involved in lung morphogenesis [GO:0060502]; iris morphogenesis [GO:0061072]; labyrinthine layer blood vessel development [GO:0060716]; lens development in camera-type eye [GO:0002088]; lung induction [GO:0060492]; mammary gland epithelium development [GO:0061180]; mesenchymal cell proliferation [GO:0010463]; midbrain dopaminergic neuron differentiation [GO:1904948]; neurogenesis [GO:0022008]; neuron differentiation [GO:0030182]; positive regulation of cardiac muscle cell proliferation [GO:0060045]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of epithelial cell proliferation involved in lung morphogenesis [GO:0060501]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of mesenchymal cell proliferation [GO:0002053]; positive regulation of neurogenesis [GO:0050769]; positive regulation of transcription by RNA polymerase II [GO:0045944] -P09629 reviewed HXB7_HUMAN Homeobox protein Hox-B7 (Homeobox protein HHO.C1) (Homeobox protein Hox-2C) HOXB7 HOX2C anterior/posterior pattern specification [GO:0009952]; embryonic organ development [GO:0048568]; embryonic skeletal system morphogenesis [GO:0048704]; myeloid cell differentiation [GO:0030099]; positive regulation of branching involved in ureteric bud morphogenesis [GO:0090190]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357] -P09874 reviewed PARP1_HUMAN Poly [ADP-ribose] polymerase 1 (PARP-1) (EC 2.4.2.30) (ADP-ribosyltransferase diphtheria toxin-like 1) (ARTD1) (DNA ADP-ribosyltransferase PARP1) (EC 2.4.2.-) (NAD(+) ADP-ribosyltransferase 1) (ADPRT 1) (Poly[ADP-ribose] synthase 1) (Protein poly-ADP-ribosyltransferase PARP1) (EC 2.4.2.-) [Cleaved into: Poly [ADP-ribose] polymerase 1, processed C-terminus (Poly [ADP-ribose] polymerase 1, 89-kDa form); Poly [ADP-ribose] polymerase 1, processed N-terminus (NT-PARP-1) (Poly [ADP-ribose] polymerase 1, 24-kDa form) (Poly [ADP-ribose] polymerase 1, 28-kDa form)] PARP1 ADPRT PPOL apoptotic process [GO:0006915]; ATP generation from poly-ADP-D-ribose [GO:1990966]; carbohydrate biosynthetic process [GO:0016051]; cellular response to amyloid-beta [GO:1904646]; cellular response to insulin stimulus [GO:0032869]; cellular response to nerve growth factor stimulus [GO:1990090]; cellular response to oxidative stress [GO:0034599]; cellular response to UV [GO:0034644]; cellular response to zinc ion [GO:0071294]; decidualization [GO:0046697]; DNA ADP-ribosylation [GO:0030592]; DNA damage response [GO:0006974]; DNA repair [GO:0006281]; double-strand break repair [GO:0006302]; innate immune response [GO:0045087]; macrophage differentiation [GO:0030225]; mitochondrial DNA metabolic process [GO:0032042]; mitochondrial DNA repair [GO:0043504]; mitochondrion organization [GO:0007005]; negative regulation of adipose tissue development [GO:1904178]; negative regulation of ATP biosynthetic process [GO:2001170]; negative regulation of cGAS/STING signaling pathway [GO:0160049]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of innate immune response [GO:0045824]; negative regulation of telomere maintenance via telomere lengthening [GO:1904357]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transcription elongation by RNA polymerase II [GO:0034244]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cardiac muscle hypertrophy [GO:0010613]; positive regulation of DNA-templated transcription, elongation [GO:0032786]; positive regulation of double-strand break repair via homologous recombination [GO:1905168]; positive regulation of intracellular estrogen receptor signaling pathway [GO:0033148]; positive regulation of mitochondrial depolarization [GO:0051901]; positive regulation of myofibroblast differentiation [GO:1904762]; positive regulation of necroptotic process [GO:0060545]; positive regulation of protein localization to nucleus [GO:1900182]; positive regulation of single strand break repair [GO:1903518]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein auto-ADP-ribosylation [GO:0070213]; protein autoprocessing [GO:0016540]; protein localization to chromatin [GO:0071168]; protein modification process [GO:0036211]; protein poly-ADP-ribosylation [GO:0070212]; regulation of base-excision repair [GO:1905051]; regulation of catalytic activity [GO:0050790]; regulation of circadian sleep/wake cycle, non-REM sleep [GO:0045188]; regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway [GO:1903376]; regulation of protein localization [GO:0032880]; replication fork reversal [GO:0071932]; response to aldosterone [GO:1904044]; response to gamma radiation [GO:0010332]; signal transduction involved in regulation of gene expression [GO:0023019]; telomere maintenance [GO:0000723]; transcription by RNA polymerase II [GO:0006366]; transforming growth factor beta receptor signaling pathway [GO:0007179] -P09919 reviewed CSF3_HUMAN Granulocyte colony-stimulating factor (G-CSF) (Pluripoietin) (Filgrastim) (Lenograstim) CSF3 C17orf33 GCSF cellular response to cytokine stimulus [GO:0071345]; cellular response to lipopolysaccharide [GO:0071222]; cytokine-mediated signaling pathway [GO:0019221]; granulocyte colony-stimulating factor signaling pathway [GO:0038158]; granulocyte differentiation [GO:0030851]; immune response [GO:0006955]; positive regulation of actin filament polymerization [GO:0030838]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of myeloid cell differentiation [GO:0045639]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of actin filament organization [GO:0110053]; response to ethanol [GO:0045471] -P0C0S5 reviewed H2AZ_HUMAN Histone H2A.Z (H2A/z) H2AZ1 H2AFZ H2AZ cellular response to estradiol stimulus [GO:0071392]; chromatin organization [GO:0006325]; heterochromatin formation [GO:0031507]; positive regulation of transcription by RNA polymerase II [GO:0045944] -P0DME0 reviewed SETLP_HUMAN Protein SETSIP (SET pseudogene protein 18) (SET similar protein) (Similar to SET translocation protein) SETSIP SETP18 endothelial cell differentiation [GO:0045446]; nucleosome assembly [GO:0006334]; positive regulation of transcription by RNA polymerase II [GO:0045944] -P10070 reviewed GLI2_HUMAN Zinc finger protein GLI2 (GLI family zinc finger protein 2) (Tax helper protein) GLI2 THP axon guidance [GO:0007411]; branching morphogenesis of an epithelial tube [GO:0048754]; cellular response to virus [GO:0098586]; cerebellar cortex morphogenesis [GO:0021696]; developmental growth [GO:0048589]; embryonic digestive tract development [GO:0048566]; epidermal cell differentiation [GO:0009913]; floor plate formation [GO:0021508]; hair follicle morphogenesis [GO:0031069]; heart development [GO:0007507]; hindbrain development [GO:0030902]; hindgut morphogenesis [GO:0007442]; kidney development [GO:0001822]; lung development [GO:0030324]; mammary gland development [GO:0030879]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron development [GO:0048666]; odontogenesis of dentin-containing tooth [GO:0042475]; osteoblast development [GO:0002076]; osteoblast differentiation [GO:0001649]; pattern specification process [GO:0007389]; pituitary gland development [GO:0021983]; positive regulation of DNA replication [GO:0045740]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of T cell differentiation in thymus [GO:0033089]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proximal/distal pattern formation [GO:0009954]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; skeletal system development [GO:0001501]; smoothened signaling pathway [GO:0007224]; smoothened signaling pathway involved in ventral spinal cord interneuron specification [GO:0021775]; spinal cord dorsal/ventral patterning [GO:0021513]; spinal cord ventral commissure morphogenesis [GO:0021965]; tube development [GO:0035295]; ventral midline development [GO:0007418]; ventral spinal cord development [GO:0021517] -P10071 reviewed GLI3_HUMAN Transcriptional activator GLI3 (GLI3 form of 190 kDa) (GLI3-190) (GLI3 full-length protein) (GLI3FL) [Cleaved into: Transcriptional repressor GLI3R (GLI3 C-terminally truncated form) (GLI3 form of 83 kDa) (GLI3-83)] GLI3 alpha-beta T cell differentiation [GO:0046632]; anterior semicircular canal development [GO:0060873]; anterior/posterior pattern specification [GO:0009952]; artery development [GO:0060840]; axon guidance [GO:0007411]; branching involved in ureteric bud morphogenesis [GO:0001658]; camera-type eye morphogenesis [GO:0048593]; cell differentiation involved in kidney development [GO:0061005]; chondrocyte differentiation [GO:0002062]; developmental growth [GO:0048589]; embryonic digestive tract development [GO:0048566]; embryonic digestive tract morphogenesis [GO:0048557]; embryonic digit morphogenesis [GO:0042733]; embryonic neurocranium morphogenesis [GO:0048702]; forebrain dorsal/ventral pattern formation [GO:0021798]; forebrain radial glial cell differentiation [GO:0021861]; frontal suture morphogenesis [GO:0060364]; heart development [GO:0007507]; hindgut morphogenesis [GO:0007442]; hippocampus development [GO:0021766]; in utero embryonic development [GO:0001701]; lambdoid suture morphogenesis [GO:0060366]; larynx morphogenesis [GO:0120223]; lateral ganglionic eminence cell proliferation [GO:0022018]; lateral semicircular canal development [GO:0060875]; layer formation in cerebral cortex [GO:0021819]; limb morphogenesis [GO:0035108]; lung development [GO:0030324]; mammary gland specification [GO:0060594]; melanocyte differentiation [GO:0030318]; metanephros development [GO:0001656]; negative regulation of alpha-beta T cell differentiation [GO:0046639]; negative regulation of apoptotic process [GO:0043066]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of chondrocyte differentiation [GO:0032331]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of smoothened signaling pathway [GO:0045879]; negative regulation of stem cell proliferation [GO:2000647]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative thymic T cell selection [GO:0045060]; neuroblast proliferation [GO:0007405]; nose morphogenesis [GO:0043585]; odontogenesis of dentin-containing tooth [GO:0042475]; oligodendrocyte differentiation [GO:0048709]; optic nerve morphogenesis [GO:0021631]; osteoblast differentiation [GO:0001649]; positive regulation of alpha-beta T cell differentiation [GO:0046638]; positive regulation of chondrocyte differentiation [GO:0032332]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein import into nucleus [GO:0006606]; protein processing [GO:0016485]; proximal/distal pattern formation [GO:0009954]; regulation of bone development [GO:1903010]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; roof of mouth development [GO:0060021]; sagittal suture morphogenesis [GO:0060367]; smoothened signaling pathway [GO:0007224]; smoothened signaling pathway involved in dorsal/ventral neural tube patterning [GO:0060831]; smoothened signaling pathway involved in spinal cord motor neuron cell fate specification [GO:0021776]; smoothened signaling pathway involved in ventral spinal cord interneuron specification [GO:0021775]; stem cell proliferation [GO:0072089]; T cell differentiation in thymus [GO:0033077]; thymocyte apoptotic process [GO:0070242]; tongue development [GO:0043586]; vocalization behavior [GO:0071625] -P10242 reviewed MYB_HUMAN Transcriptional activator Myb (Proto-oncogene c-Myb) MYB cellular response to hydrogen peroxide [GO:0070301]; cellular response to retinoic acid [GO:0071300]; erythrocyte differentiation [GO:0030218]; mitotic cell cycle [GO:0000278]; myeloid cell development [GO:0061515]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of hematopoietic progenitor cell differentiation [GO:1901533]; negative regulation of megakaryocyte differentiation [GO:0045653]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of collagen biosynthetic process [GO:0032967]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of glial cell proliferation [GO:0060252]; positive regulation of hepatic stellate cell activation [GO:2000491]; positive regulation of hepatic stellate cell proliferation [GO:1904899]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of testosterone secretion [GO:2000845]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta production [GO:0071636]; regulation of DNA-templated transcription [GO:0006355]; response to hypoxia [GO:0001666]; response to ischemia [GO:0002931]; skeletal muscle cell proliferation [GO:0014856]; T-helper 2 cell differentiation [GO:0045064] -P10243 reviewed MYBA_HUMAN Myb-related protein A (A-Myb) (Myb-like protein 1) MYBL1 AMYB cell differentiation [GO:0030154]; male meiosis I [GO:0007141]; mitotic cell cycle [GO:0000278]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of piRNA transcription [GO:0140543]; positive regulation of transcription by RNA polymerase II [GO:0045944]; spermatogenesis [GO:0007283] -P10244 reviewed MYBB_HUMAN Myb-related protein B (B-Myb) (Myb-like protein 2) MYBL2 BMYB cellular response to leukemia inhibitory factor [GO:1990830]; mitotic cell cycle [GO:0000278]; mitotic spindle assembly [GO:0090307]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of transcription by RNA polymerase II [GO:0045944] -P10275 reviewed ANDR_HUMAN Androgen receptor (Dihydrotestosterone receptor) (Nuclear receptor subfamily 3 group C member 4) AR DHTR NR3C4 activation of prostate induction by androgen receptor signaling pathway [GO:0060520]; androgen receptor signaling pathway [GO:0030521]; animal organ formation [GO:0048645]; cell-cell signaling [GO:0007267]; cellular response to estrogen stimulus [GO:0071391]; cellular response to steroid hormone stimulus [GO:0071383]; cellular response to testosterone stimulus [GO:0071394]; epithelial cell differentiation involved in prostate gland development [GO:0060742]; epithelial cell morphogenesis [GO:0003382]; epithelial cell proliferation [GO:0050673]; in utero embryonic development [GO:0001701]; insulin-like growth factor receptor signaling pathway [GO:0048009]; intracellular estrogen receptor signaling pathway [GO:0030520]; intracellular receptor signaling pathway [GO:0030522]; intracellular steroid hormone receptor signaling pathway [GO:0030518]; lateral sprouting involved in mammary gland duct morphogenesis [GO:0060599]; Leydig cell differentiation [GO:0033327]; male genitalia morphogenesis [GO:0048808]; male gonad development [GO:0008584]; male somatic sex determination [GO:0019102]; mammary gland alveolus development [GO:0060749]; MAPK cascade [GO:0000165]; morphogenesis of an epithelial fold [GO:0060571]; multicellular organism growth [GO:0035264]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of extrinsic apoptotic signaling pathway [GO:2001237]; negative regulation of integrin biosynthetic process [GO:0045720]; negative regulation of transcription by RNA polymerase II [GO:0000122]; non-membrane-bounded organelle assembly [GO:0140694]; positive regulation of cell differentiation [GO:0045597]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial cell proliferation involved in prostate gland development [GO:0060769]; positive regulation of gene expression [GO:0010628]; positive regulation of insulin-like growth factor receptor signaling pathway [GO:0043568]; positive regulation of integrin biosynthetic process [GO:0045726]; positive regulation of intracellular estrogen receptor signaling pathway [GO:0033148]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of phosphorylation [GO:0042327]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription by RNA polymerase III [GO:0045945]; prostate gland epithelium morphogenesis [GO:0060740]; prostate gland growth [GO:0060736]; regulation of developmental growth [GO:0048638]; regulation of protein localization to plasma membrane [GO:1903076]; regulation of systemic arterial blood pressure [GO:0003073]; seminiferous tubule development [GO:0072520]; signal transduction [GO:0007165]; single fertilization [GO:0007338]; spermatogenesis [GO:0007283]; tertiary branching involved in mammary gland duct morphogenesis [GO:0060748]; transcription by RNA polymerase II [GO:0006366] -P10276 reviewed RARA_HUMAN Retinoic acid receptor alpha (RAR-alpha) (Nuclear receptor subfamily 1 group B member 1) RARA NR1B1 apoptotic cell clearance [GO:0043277]; cell differentiation [GO:0030154]; cellular response to estrogen stimulus [GO:0071391]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to retinoic acid [GO:0071300]; chondroblast differentiation [GO:0060591]; embryonic camera-type eye development [GO:0031076]; face development [GO:0060324]; female pregnancy [GO:0007565]; germ cell development [GO:0007281]; glandular epithelial cell development [GO:0002068]; growth plate cartilage development [GO:0003417]; hippocampus development [GO:0021766]; hormone-mediated signaling pathway [GO:0009755]; limb development [GO:0060173]; liver development [GO:0001889]; mRNA transcription by RNA polymerase II [GO:0042789]; multicellular organism growth [GO:0035264]; negative regulation of cartilage development [GO:0061037]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of granulocyte differentiation [GO:0030853]; negative regulation of miRNA transcription [GO:1902894]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of tumor necrosis factor production [GO:0032720]; negative regulation of type II interferon production [GO:0032689]; neural tube closure [GO:0001843]; positive regulation of binding [GO:0051099]; positive regulation of cell cycle [GO:0045787]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of interleukin-13 production [GO:0032736]; positive regulation of interleukin-4 production [GO:0032753]; positive regulation of interleukin-5 production [GO:0032754]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of T-helper 2 cell differentiation [GO:0045630]; positive regulation of transcription by RNA polymerase II [GO:0045944]; prostate gland development [GO:0030850]; protein phosphorylation [GO:0006468]; regulation of apoptotic process [GO:0042981]; regulation of hematopoietic progenitor cell differentiation [GO:1901532]; regulation of myelination [GO:0031641]; regulation of synaptic plasticity [GO:0048167]; response to cytokine [GO:0034097]; response to estradiol [GO:0032355]; response to ethanol [GO:0045471]; response to retinoic acid [GO:0032526]; response to vitamin A [GO:0033189]; retinoic acid receptor signaling pathway [GO:0048384]; Sertoli cell fate commitment [GO:0060010]; trachea cartilage development [GO:0060534]; ureteric bud development [GO:0001657]; ventricular cardiac muscle cell differentiation [GO:0055012] -P10589 reviewed COT1_HUMAN COUP transcription factor 1 (COUP-TF1) (COUP transcription factor I) (COUP-TF I) (Nuclear receptor subfamily 2 group F member 1) (V-erbA-related protein 3) (EAR-3) NR2F1 EAR3 ERBAL3 TFCOUP1 cell differentiation [GO:0030154]; negative regulation of neuron projection development [GO:0010977]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system development [GO:0007399]; positive regulation of transcription by RNA polymerase II [GO:0045944]; signal transduction [GO:0007165] -P10600 reviewed TGFB3_HUMAN Transforming growth factor beta-3 proprotein [Cleaved into: Latency-associated peptide (LAP); Transforming growth factor beta-3 (TGF-beta-3)] TGFB3 cell-cell junction organization [GO:0045216]; detection of hypoxia [GO:0070483]; digestive tract development [GO:0048565]; embryonic neurocranium morphogenesis [GO:0048702]; face morphogenesis [GO:0060325]; female pregnancy [GO:0007565]; frontal suture morphogenesis [GO:0060364]; in utero embryonic development [GO:0001701]; inner ear development [GO:0048839]; lung alveolus development [GO:0048286]; mammary gland development [GO:0030879]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of macrophage cytokine production [GO:0010936]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; negative regulation of vascular associated smooth muscle cell proliferation [GO:1904706]; odontogenesis [GO:0042476]; positive regulation of apoptotic process [GO:0043065]; positive regulation of cell division [GO:0051781]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of collagen biosynthetic process [GO:0032967]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of filopodium assembly [GO:0051491]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of protein secretion [GO:0050714]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of stress fiber assembly [GO:0051496]; positive regulation of tight junction disassembly [GO:1905075]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell population proliferation [GO:0042127]; response to estrogen [GO:0043627]; response to hypoxia [GO:0001666]; response to laminar fluid shear stress [GO:0034616]; response to progesterone [GO:0032570]; salivary gland morphogenesis [GO:0007435]; secondary palate development [GO:0062009]; transforming growth factor beta receptor signaling pathway [GO:0007179]; uterine wall breakdown [GO:0042704] -P10747 reviewed CD28_HUMAN T-cell-specific surface glycoprotein CD28 (TP44) (CD antigen CD28) CD28 apoptotic signaling pathway [GO:0097190]; CD4-positive, alpha-beta T cell proliferation [GO:0035739]; cell surface receptor signaling pathway [GO:0007166]; humoral immune response [GO:0006959]; negative regulation of apoptotic process [GO:0043066]; negative regulation of gene expression [GO:0010629]; negative thymic T cell selection [GO:0045060]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; positive regulation of CD4-positive, alpha-beta T cell proliferation [GO:2000563]; positive regulation of cytokine production [GO:0001819]; positive regulation of gene expression [GO:0010628]; positive regulation of inflammatory response to antigenic stimulus [GO:0002863]; positive regulation of interleukin-10 production [GO:0032733]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of interleukin-4 production [GO:0032753]; positive regulation of isotype switching to IgG isotypes [GO:0048304]; positive regulation of mitotic nuclear division [GO:0045840]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of translation [GO:0045727]; positive regulation of viral genome replication [GO:0045070]; regulation of regulatory T cell differentiation [GO:0045589]; regulatory T cell differentiation [GO:0045066]; T cell activation [GO:0042110]; T cell costimulation [GO:0031295]; T cell receptor signaling pathway [GO:0050852]; transcription by RNA polymerase II [GO:0006366] -P10826 reviewed RARB_HUMAN Retinoic acid receptor beta (RAR-beta) (HBV-activated protein) (Nuclear receptor subfamily 1 group B member 2) (RAR-epsilon) RARB HAP NR1B2 apoptotic process [GO:0006915]; cell differentiation [GO:0030154]; embryonic digestive tract development [GO:0048566]; embryonic eye morphogenesis [GO:0048048]; embryonic hindlimb morphogenesis [GO:0035116]; glandular epithelial cell development [GO:0002068]; growth plate cartilage development [GO:0003417]; hormone-mediated signaling pathway [GO:0009755]; multicellular organism growth [GO:0035264]; negative regulation of chondrocyte differentiation [GO:0032331]; negative regulation of stem cell proliferation [GO:2000647]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural precursor cell proliferation [GO:0061351]; neurogenesis [GO:0022008]; positive regulation of apoptotic process [GO:0043065]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of myelination [GO:0031641]; retinoic acid receptor signaling pathway [GO:0048384]; signal transduction [GO:0007165]; stem cell proliferation [GO:0072089]; striatum development [GO:0021756]; ureteric bud development [GO:0001657]; ventricular cardiac muscle cell differentiation [GO:0055012] -P10827 reviewed THA_HUMAN Thyroid hormone receptor alpha (Nuclear receptor subfamily 1 group A member 1) (V-erbA-related protein 7) (EAR-7) (c-erbA-1) (c-erbA-alpha) THRA EAR7 ERBA1 NR1A1 THRA1 THRA2 cartilage condensation [GO:0001502]; cell differentiation [GO:0030154]; erythrocyte differentiation [GO:0030218]; female courtship behavior [GO:0008050]; hormone-mediated signaling pathway [GO:0009755]; learning or memory [GO:0007611]; mRNA transcription by RNA polymerase II [GO:0042789]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of DNA-templated transcription initiation [GO:2000143]; negative regulation of RNA polymerase II transcription preinitiation complex assembly [GO:0017055]; negative regulation of transcription by RNA polymerase II [GO:0000122]; ossification [GO:0001503]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of female receptivity [GO:0045925]; positive regulation of thyroid hormone mediated signaling pathway [GO:0002157]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of heart contraction [GO:0008016]; regulation of lipid catabolic process [GO:0050994]; regulation of myeloid cell apoptotic process [GO:0033032]; regulation of thyroid hormone mediated signaling pathway [GO:0002155]; regulation of transcription by RNA polymerase II [GO:0006357]; response to cold [GO:0009409]; retinoic acid receptor signaling pathway [GO:0048384]; thyroid gland development [GO:0030878]; thyroid hormone mediated signaling pathway [GO:0002154]; transcription by RNA polymerase II [GO:0006366]; type I pneumocyte differentiation [GO:0060509] -P10828 reviewed THB_HUMAN Thyroid hormone receptor beta (Nuclear receptor subfamily 1 group A member 2) (c-erbA-2) (c-erbA-beta) THRB ERBA2 NR1A2 THR1 cell differentiation [GO:0030154]; cellular response to thyroid hormone stimulus [GO:0097067]; DNA-templated transcription [GO:0006351]; female courtship behavior [GO:0008050]; mRNA transcription by RNA polymerase II [GO:0042789]; negative regulation of female receptivity [GO:0007621]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of thyroid hormone mediated signaling pathway [GO:0002157]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of heart contraction [GO:0008016]; retinal cone cell apoptotic process [GO:0097474]; retinal cone cell development [GO:0046549]; retinoic acid receptor signaling pathway [GO:0048384]; sensory perception of sound [GO:0007605]; thyroid hormone mediated signaling pathway [GO:0002154]; type I pneumocyte differentiation [GO:0060509] -P10914 reviewed IRF1_HUMAN Interferon regulatory factor 1 (IRF-1) IRF1 apoptotic process [GO:0006915]; CD8-positive, alpha-beta T cell differentiation [GO:0043374]; cellular response to interferon-beta [GO:0035458]; cellular response to mechanical stimulus [GO:0071260]; defense response to virus [GO:0051607]; immune system process [GO:0002376]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of regulatory T cell differentiation [GO:0045590]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of interferon-beta production [GO:0032728]; positive regulation of interleukin-12 production [GO:0032735]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type I interferon production [GO:0032481]; regulation of adaptive immune response [GO:0002819]; regulation of CD8-positive, alpha-beta T cell proliferation [GO:2000564]; regulation of cell cycle [GO:0051726]; regulation of innate immune response [GO:0045088]; regulation of MyD88-dependent toll-like receptor signaling pathway [GO:0034124]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription by RNA polymerase II [GO:0006366]; type II interferon-mediated signaling pathway [GO:0060333] -P11021 reviewed BIP_HUMAN Endoplasmic reticulum chaperone BiP (EC 3.6.4.10) (78 kDa glucose-regulated protein) (GRP-78) (Binding-immunoglobulin protein) (BiP) (Heat shock protein 70 family protein 5) (HSP70 family protein 5) (Heat shock protein family A member 5) (Immunoglobulin heavy chain-binding protein) HSPA5 GRP78 cellular response to glucose starvation [GO:0042149]; cellular response to interleukin-4 [GO:0071353]; cerebellar Purkinje cell layer development [GO:0021680]; cerebellum structural organization [GO:0021589]; chaperone cofactor-dependent protein refolding [GO:0051085]; endoplasmic reticulum unfolded protein response [GO:0030968]; ER overload response [GO:0006983]; ERAD pathway [GO:0036503]; maintenance of protein localization in endoplasmic reticulum [GO:0035437]; negative regulation of apoptotic process [GO:0043066]; negative regulation of IRE1-mediated unfolded protein response [GO:1903895]; negative regulation of protein-containing complex assembly [GO:0031333]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; positive regulation of cell migration [GO:0030335]; positive regulation of protein ubiquitination [GO:0031398]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-translational protein targeting to membrane, translocation [GO:0031204]; protein folding in endoplasmic reticulum [GO:0034975]; protein refolding [GO:0042026]; regulation of ATF6-mediated unfolded protein response [GO:1903891]; regulation of IRE1-mediated unfolded protein response [GO:1903894]; regulation of PERK-mediated unfolded protein response [GO:1903897]; regulation of protein folding in endoplasmic reticulum [GO:0060904]; response to endoplasmic reticulum stress [GO:0034976]; substantia nigra development [GO:0021762] -P11161 reviewed EGR2_HUMAN E3 SUMO-protein ligase EGR2 (EC 2.3.2.-) (AT591) (E3 SUMO-protein transferase ERG2) (Early growth response protein 2) (EGR-2) (Zinc finger protein Krox-20) EGR2 KROX20 aorta development [GO:0035904]; brain development [GO:0007420]; brain segmentation [GO:0035284]; cellular response to organic substance [GO:0071310]; facial nerve structural organization [GO:0021612]; fat cell differentiation [GO:0045444]; gene expression [GO:0010467]; learning or memory [GO:0007611]; motor neuron axon guidance [GO:0008045]; myelination [GO:0042552]; peripheral nervous system development [GO:0007422]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of myelination [GO:0031643]; positive regulation of Schwann cell differentiation [GO:0014040]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein export from nucleus [GO:0006611]; protein sumoylation [GO:0016925]; regulation of neuronal synaptic plasticity [GO:0048168]; regulation of ossification [GO:0030278]; regulation of transcription by RNA polymerase II [GO:0006357]; response to insulin [GO:0032868]; rhombomere 3 formation [GO:0021660]; rhombomere 3 structural organization [GO:0021659]; rhombomere 5 formation [GO:0021666]; rhombomere 5 structural organization [GO:0021665]; rhythmic behavior [GO:0007622]; Schwann cell differentiation [GO:0014037]; skeletal muscle cell differentiation [GO:0035914] -P11308 reviewed ERG_HUMAN Transcriptional regulator ERG (Transforming protein ERG) ERG positive regulation of transcription by RNA polymerase II [GO:0045944]; protein phosphorylation [GO:0006468]; regulation of transcription by RNA polymerase II [GO:0006357]; signal transduction [GO:0007165] -P11388 reviewed TOP2A_HUMAN DNA topoisomerase 2-alpha (EC 5.6.2.2) (DNA topoisomerase II, alpha isozyme) TOP2A TOP2 apoptotic chromosome condensation [GO:0030263]; chromosome segregation [GO:0007059]; DNA damage response [GO:0006974]; DNA ligation [GO:0006266]; DNA topological change [GO:0006265]; embryonic cleavage [GO:0040016]; female meiotic nuclear division [GO:0007143]; hematopoietic progenitor cell differentiation [GO:0002244]; negative regulation of DNA duplex unwinding [GO:1905463]; positive regulation of apoptotic process [GO:0043065]; positive regulation of single stranded viral RNA replication via double stranded DNA intermediate [GO:0045870]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of circadian rhythm [GO:0042752]; resolution of meiotic recombination intermediates [GO:0000712]; rhythmic process [GO:0048511]; sister chromatid segregation [GO:0000819] -P11473 reviewed VDR_HUMAN Vitamin D3 receptor (VDR) (1,25-dihydroxyvitamin D3 receptor) (Nuclear receptor subfamily 1 group I member 1) VDR NR1I1 apoptotic process involved in mammary gland involution [GO:0060057]; bile acid signaling pathway [GO:0038183]; calcium ion transport [GO:0006816]; cell differentiation [GO:0030154]; cell morphogenesis [GO:0000902]; decidualization [GO:0046697]; intestinal absorption [GO:0050892]; intracellular calcium ion homeostasis [GO:0006874]; lactation [GO:0007595]; mammary gland branching involved in pregnancy [GO:0060745]; mRNA transcription by RNA polymerase II [GO:0042789]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of keratinocyte proliferation [GO:0010839]; negative regulation of transcription by RNA polymerase II [GO:0000122]; phosphate ion transmembrane transport [GO:0035435]; positive regulation of apoptotic process involved in mammary gland involution [GO:0060058]; positive regulation of bone mineralization [GO:0030501]; positive regulation of gene expression [GO:0010628]; positive regulation of keratinocyte differentiation [GO:0045618]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vitamin D 24-hydroxylase activity [GO:0010980]; positive regulation of vitamin D receptor signaling pathway [GO:0070564]; regulation of calcidiol 1-monooxygenase activity [GO:0060558]; response to bile acid [GO:1903412]; skeletal system development [GO:0001501]; vitamin D receptor signaling pathway [GO:0070561] -P11474 reviewed ERR1_HUMAN Steroid hormone receptor ERR1 (Estrogen receptor-like 1) (Estrogen-related receptor alpha) (ERR-alpha) (Nuclear receptor subfamily 3 group B member 1) ESRRA ERR1 ESRL1 NR3B1 intracellular steroid hormone receptor signaling pathway [GO:0030518]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357] -P11831 reviewed SRF_HUMAN Serum response factor (SRF) SRF actin cytoskeleton organization [GO:0030036]; angiogenesis involved in wound healing [GO:0060055]; associative learning [GO:0008306]; axon extension [GO:0048675]; bicellular tight junction assembly [GO:0070830]; branching involved in blood vessel morphogenesis [GO:0001569]; bronchus cartilage development [GO:0060532]; cardiac muscle cell myoblast differentiation [GO:0060379]; cardiac myofibril assembly [GO:0055003]; cardiac vascular smooth muscle cell differentiation [GO:0060947]; cell migration involved in sprouting angiogenesis [GO:0002042]; cell-matrix adhesion [GO:0007160]; cellular response to glucose stimulus [GO:0071333]; cellular senescence [GO:0090398]; dorsal aorta morphogenesis [GO:0035912]; epithelial cell-cell adhesion [GO:0090136]; epithelial structure maintenance [GO:0010669]; erythrocyte development [GO:0048821]; establishment of skin barrier [GO:0061436]; eyelid development in camera-type eye [GO:0061029]; face development [GO:0060324]; filopodium assembly [GO:0046847]; heart development [GO:0007507]; heart looping [GO:0001947]; heart trabecula formation [GO:0060347]; hematopoietic stem cell differentiation [GO:0060218]; hippocampus development [GO:0021766]; long-term memory [GO:0007616]; long-term synaptic depression [GO:0060292]; lung morphogenesis [GO:0060425]; lung smooth muscle development [GO:0061145]; megakaryocyte development [GO:0035855]; mesoderm formation [GO:0001707]; morphogenesis of an epithelial sheet [GO:0002011]; muscle cell cellular homeostasis [GO:0046716]; negative regulation of amyloid-beta clearance [GO:1900222]; negative regulation of cell migration [GO:0030336]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of miRNA transcription [GO:1902894]; neuron development [GO:0048666]; neuron migration [GO:0001764]; platelet activation [GO:0030168]; platelet formation [GO:0030220]; positive regulation of axon extension [GO:0045773]; positive regulation of cell differentiation [GO:0045597]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of filopodium assembly [GO:0051491]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of smooth muscle contraction [GO:0045987]; positive regulation of transcription by glucose [GO:0046016]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; positive thymic T cell selection [GO:0045059]; primitive streak formation [GO:0090009]; regulation of cell adhesion [GO:0030155]; regulation of smooth muscle cell differentiation [GO:0051150]; response to cytokine [GO:0034097]; response to hormone [GO:0009725]; response to hypoxia [GO:0001666]; response to toxic substance [GO:0009636]; sarcomere organization [GO:0045214]; skin morphogenesis [GO:0043589]; stress fiber assembly [GO:0043149]; tangential migration from the subventricular zone to the olfactory bulb [GO:0022028]; thymus development [GO:0048538]; thyroid gland development [GO:0030878]; trachea cartilage development [GO:0060534]; transcription by RNA polymerase II [GO:0006366]; trophectodermal cell differentiation [GO:0001829] -P12643 reviewed BMP2_HUMAN Bone morphogenetic protein 2 (BMP-2) (Bone morphogenetic protein 2A) (BMP-2A) BMP2 BMP2A ameloblast differentiation [GO:0036305]; animal organ morphogenesis [GO:0009887]; aortic valve development [GO:0003176]; astrocyte differentiation [GO:0048708]; atrioventricular canal morphogenesis [GO:1905222]; atrioventricular valve morphogenesis [GO:0003181]; BMP signaling pathway [GO:0030509]; bone development [GO:0060348]; bone mineralization [GO:0030282]; branching involved in ureteric bud morphogenesis [GO:0001658]; cardiac atrium formation [GO:0003210]; cardiac epithelial to mesenchymal transition [GO:0060317]; cardiac jelly development [GO:1905072]; cardiac muscle cell differentiation [GO:0055007]; cardiac muscle tissue morphogenesis [GO:0055008]; cardiocyte differentiation [GO:0035051]; cell fate commitment [GO:0045165]; cell-cell signaling [GO:0007267]; cellular response to BMP stimulus [GO:0071773]; cellular response to organic cyclic compound [GO:0071407]; chondrocyte differentiation [GO:0002062]; corticotropin hormone secreting cell differentiation [GO:0060128]; embryonic heart tube anterior/posterior pattern specification [GO:0035054]; endocardial cushion formation [GO:0003272]; endocardial cushion morphogenesis [GO:0003203]; endodermal-mesodermal cell signaling [GO:0003133]; epithelial to mesenchymal transition [GO:0001837]; heart development [GO:0007507]; heart induction [GO:0003129]; in utero embryonic development [GO:0001701]; inflammatory response [GO:0006954]; inner ear development [GO:0048839]; lung vasculature development [GO:0060426]; mesenchymal cell differentiation [GO:0048762]; mesenchymal cell proliferation involved in ureteric bud development [GO:0072138]; mesenchyme development [GO:0060485]; negative regulation of aldosterone biosynthetic process [GO:0032348]; negative regulation of calcium-independent cell-cell adhesion [GO:0051042]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cardiac muscle cell differentiation [GO:2000726]; negative regulation of cell cycle [GO:0045786]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of cortisol biosynthetic process [GO:2000065]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of gene expression [GO:0010629]; negative regulation of insulin-like growth factor receptor signaling pathway [GO:0043569]; negative regulation of MAP kinase activity [GO:0043407]; negative regulation of smooth muscle cell proliferation [GO:0048662]; negative regulation of steroid biosynthetic process [GO:0010894]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; Notch signaling pathway [GO:0007219]; odontogenesis of dentin-containing tooth [GO:0042475]; osteoblast differentiation [GO:0001649]; osteoclast differentiation [GO:0030316]; pericardium development [GO:0060039]; positive regulation of apoptotic process [GO:0043065]; positive regulation of astrocyte differentiation [GO:0048711]; positive regulation of bone mineralization [GO:0030501]; positive regulation of bone mineralization involved in bone maturation [GO:1900159]; positive regulation of cartilage development [GO:0061036]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of extracellular matrix constituent secretion [GO:0003331]; positive regulation of fat cell differentiation [GO:0045600]; positive regulation of gene expression [GO:0010628]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of odontoblast differentiation [GO:1901331]; positive regulation of odontogenesis [GO:0042482]; positive regulation of ossification [GO:0045778]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of osteoblast proliferation [GO:0033690]; positive regulation of p38MAPK cascade [GO:1900745]; positive regulation of peroxisome proliferator activated receptor signaling pathway [GO:0035360]; positive regulation of phosphatase activity [GO:0010922]; positive regulation of protein binding [GO:0032092]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of Wnt signaling pathway [GO:0030177]; protein destabilization [GO:0031648]; proteoglycan metabolic process [GO:0006029]; regulation of DNA-templated transcription [GO:0006355]; regulation of odontogenesis of dentin-containing tooth [GO:0042487]; response to bacterium [GO:0009617]; response to hypoxia [GO:0001666]; skeletal system development [GO:0001501]; telencephalon development [GO:0021537]; telencephalon regionalization [GO:0021978]; thyroid-stimulating hormone-secreting cell differentiation [GO:0060129]; transcription by RNA polymerase II [GO:0006366] -P12644 reviewed BMP4_HUMAN Bone morphogenetic protein 4 (BMP-4) (Bone morphogenetic protein 2B) (BMP-2B) BMP4 BMP2B DVR4 ameloblast differentiation [GO:0036305]; anterior/posterior axis specification [GO:0009948]; aortic valve morphogenesis [GO:0003180]; blood vessel endothelial cell proliferation involved in sprouting angiogenesis [GO:0002043]; BMP signaling pathway [GO:0030509]; branching involved in prostate gland morphogenesis [GO:0060442]; branching involved in ureteric bud morphogenesis [GO:0001658]; bronchus development [GO:0060433]; bud dilation involved in lung branching [GO:0060503]; bud elongation involved in lung branching [GO:0060449]; cardiac muscle cell differentiation [GO:0055007]; cardiac septum development [GO:0003279]; cellular response to BMP stimulus [GO:0071773]; chondrocyte differentiation [GO:0002062]; coronary vasculature development [GO:0060976]; cranial suture morphogenesis [GO:0060363]; deltoid tuberosity development [GO:0035993]; dorsal/ventral neural tube patterning [GO:0021904]; embryonic cranial skeleton morphogenesis [GO:0048701]; embryonic digit morphogenesis [GO:0042733]; embryonic hindlimb morphogenesis [GO:0035116]; embryonic skeletal joint morphogenesis [GO:0060272]; endocardial cushion development [GO:0003197]; endochondral ossification [GO:0001958]; endoderm development [GO:0007492]; epithelial cell proliferation involved in lung morphogenesis [GO:0060502]; epithelial tube branching involved in lung morphogenesis [GO:0060441]; epithelial-mesenchymal cell signaling [GO:0060684]; erythrocyte differentiation [GO:0030218]; germ cell development [GO:0007281]; glomerular capillary formation [GO:0072104]; heart induction [GO:0003129]; heart morphogenesis [GO:0003007]; hematopoietic progenitor cell differentiation [GO:0002244]; inner ear auditory receptor cell differentiation [GO:0042491]; intermediate mesodermal cell differentiation [GO:0048392]; kidney development [GO:0001822]; lens induction in camera-type eye [GO:0060235]; lung alveolus development [GO:0048286]; lung morphogenesis [GO:0060425]; lung vasculature development [GO:0060426]; lymphoid progenitor cell differentiation [GO:0002320]; macrophage differentiation [GO:0030225]; mammary gland formation [GO:0060592]; membranous septum morphogenesis [GO:0003149]; mesodermal cell fate determination [GO:0007500]; mesonephros development [GO:0001823]; metanephros development [GO:0001656]; monocyte differentiation [GO:0030224]; negative regulation of branching involved in ureteric bud morphogenesis [GO:0090191]; negative regulation of cell cycle [GO:0045786]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of chondrocyte differentiation [GO:0032331]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of extrinsic apoptotic signaling pathway [GO:2001237]; negative regulation of gene expression [GO:0010629]; negative regulation of glomerular mesangial cell proliferation [GO:0072125]; negative regulation of glomerulus development [GO:0090194]; negative regulation of immature T cell proliferation in thymus [GO:0033088]; negative regulation of mesenchymal cell proliferation involved in ureter development [GO:0072200]; negative regulation of metanephric comma-shaped body morphogenesis [GO:2000007]; negative regulation of metanephric S-shaped body morphogenesis [GO:2000005]; negative regulation of miRNA transcription [GO:1902894]; negative regulation of mitotic nuclear division [GO:0045839]; negative regulation of myoblast differentiation [GO:0045662]; negative regulation of prostatic bud formation [GO:0060686]; negative regulation of striated muscle tissue development [GO:0045843]; negative regulation of T cell differentiation in thymus [GO:0033085]; negative regulation of thymocyte apoptotic process [GO:0070244]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of vascular associated smooth muscle cell migration [GO:1904753]; negative regulation of vascular associated smooth muscle cell proliferation [GO:1904706]; nephric duct formation [GO:0072179]; neural tube closure [GO:0001843]; neuron fate commitment [GO:0048663]; odontogenesis [GO:0042476]; odontogenesis of dentin-containing tooth [GO:0042475]; osteoblast differentiation [GO:0001649]; outflow tract septum morphogenesis [GO:0003148]; pericyte cell differentiation [GO:1904238]; pharyngeal arch artery morphogenesis [GO:0061626]; pituitary gland development [GO:0021983]; positive regulation of apoptotic process [GO:0043065]; positive regulation of BMP signaling pathway [GO:0030513]; positive regulation of bone mineralization [GO:0030501]; positive regulation of branching involved in lung morphogenesis [GO:0061047]; positive regulation of cardiac muscle fiber development [GO:0055020]; positive regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis [GO:1905312]; positive regulation of cartilage development [GO:0061036]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of collagen biosynthetic process [GO:0032967]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of endothelial cell differentiation [GO:0045603]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of epidermal cell differentiation [GO:0045606]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of gene expression [GO:0010628]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of odontoblast differentiation [GO:1901331]; positive regulation of ossification [GO:0045778]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of p38MAPK cascade [GO:1900745]; positive regulation of primary miRNA processing [GO:2000636]; positive regulation of programmed cell death [GO:0043068]; positive regulation of protein binding [GO:0032092]; positive regulation of protein localization to nucleus [GO:1900182]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-embryonic development [GO:0009791]; prostatic bud formation [GO:0060513]; pulmonary valve morphogenesis [GO:0003184]; regulation of branching involved in prostate gland morphogenesis [GO:0060687]; regulation of cell fate commitment [GO:0010453]; regulation of mesodermal cell differentiation [GO:1905770]; regulation of odontogenesis of dentin-containing tooth [GO:0042487]; regulation of protein import into nucleus [GO:0042306]; regulation of smooth muscle cell differentiation [GO:0051150]; renal system process [GO:0003014]; secondary heart field specification [GO:0003139]; sinoatrial node development [GO:0003163]; smooth muscle cell differentiation [GO:0051145]; smooth muscle tissue development [GO:0048745]; specification of animal organ position [GO:0010159]; telencephalon development [GO:0021537]; telencephalon regionalization [GO:0021978]; tendon cell differentiation [GO:0035990]; trachea development [GO:0060438]; trachea formation [GO:0060440]; transcription by RNA polymerase II [GO:0006366]; type B pancreatic cell development [GO:0003323]; ureter morphogenesis [GO:0072197]; ureteric bud development [GO:0001657] -P12755 reviewed SKI_HUMAN Ski oncogene (Proto-oncogene c-Ski) SKI anterior/posterior axis specification [GO:0009948]; bone morphogenesis [GO:0060349]; camera-type eye development [GO:0043010]; camera-type eye morphogenesis [GO:0048593]; cardiac muscle cell proliferation [GO:0060038]; cell motility [GO:0048870]; embryonic limb morphogenesis [GO:0030326]; face morphogenesis [GO:0060325]; lens morphogenesis in camera-type eye [GO:0002089]; myelination in peripheral nervous system [GO:0022011]; myotube differentiation [GO:0014902]; negative regulation of activin receptor signaling pathway [GO:0032926]; negative regulation of BMP signaling pathway [GO:0030514]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of fibroblast proliferation [GO:0048147]; negative regulation of osteoblast differentiation [GO:0045668]; negative regulation of Schwann cell proliferation [GO:0010626]; negative regulation of SMAD protein signal transduction [GO:0060392]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; neural tube closure [GO:0001843]; nose morphogenesis [GO:0043585]; olfactory bulb development [GO:0021772]; positive regulation of DNA binding [GO:0043388]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of Wnt signaling pathway [GO:0030177]; retina development in camera-type eye [GO:0060041]; roof of mouth development [GO:0060021]; skeletal muscle fiber development [GO:0048741]; somatic stem cell population maintenance [GO:0035019]; transforming growth factor beta receptor signaling pathway [GO:0007179] -P12956 reviewed XRCC6_HUMAN X-ray repair cross-complementing protein 6 (EC 3.6.4.-) (EC 4.2.99.-) (5'-deoxyribose-5-phosphate lyase Ku70) (5'-dRP lyase Ku70) (70 kDa subunit of Ku antigen) (ATP-dependent DNA helicase 2 subunit 1) (ATP-dependent DNA helicase II 70 kDa subunit) (CTC box-binding factor 75 kDa subunit) (CTC75) (CTCBF) (DNA repair protein XRCC6) (Lupus Ku autoantigen protein p70) (Ku70) (Thyroid-lupus autoantigen) (TLAA) (X-ray repair complementing defective repair in Chinese hamster cells 6) XRCC6 G22P1 activation of innate immune response [GO:0002218]; cellular hyperosmotic salinity response [GO:0071475]; cellular response to gamma radiation [GO:0071480]; cellular response to X-ray [GO:0071481]; DNA ligation [GO:0006266]; double-strand break repair via classical nonhomologous end joining [GO:0097680]; double-strand break repair via nonhomologous end joining [GO:0006303]; innate immune response [GO:0045087]; negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of lymphocyte differentiation [GO:0045621]; positive regulation of protein kinase activity [GO:0045860]; positive regulation of transcription by RNA polymerase II [GO:0045944]; recombinational repair [GO:0000725]; regulation of smooth muscle cell proliferation [GO:0048660]; telomere maintenance [GO:0000723] -P13349 reviewed MYF5_HUMAN Myogenic factor 5 (Myf-5) (Class C basic helix-loop-helix protein 2) (bHLHc2) MYF5 BHLHC2 camera-type eye development [GO:0043010]; cartilage condensation [GO:0001502]; embryonic skeletal system morphogenesis [GO:0048704]; extracellular matrix organization [GO:0030198]; muscle cell fate commitment [GO:0042693]; muscle organ development [GO:0007517]; muscle tissue morphogenesis [GO:0060415]; ossification [GO:0001503]; positive regulation of myoblast differentiation [GO:0045663]; positive regulation of skeletal muscle fiber development [GO:0048743]; regulation of cell-matrix adhesion [GO:0001952]; regulation of transcription by RNA polymerase II [GO:0006357]; skeletal muscle cell differentiation [GO:0035914]; skeletal muscle tissue development [GO:0007519]; somitogenesis [GO:0001756] -P13378 reviewed HXD8_HUMAN Homeobox protein Hox-D8 (Homeobox protein Hox-4E) (Homeobox protein Hox-5.4) HOXD8 HOX4E anterior/posterior axis specification, embryo [GO:0008595]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; skeletal system morphogenesis [GO:0048705] -P13631 reviewed RARG_HUMAN Retinoic acid receptor gamma (RAR-gamma) (Nuclear receptor subfamily 1 group B member 3) RARG NR1B3 anterior/posterior pattern specification [GO:0009952]; apoptotic process [GO:0006915]; canonical Wnt signaling pathway [GO:0060070]; cell differentiation [GO:0030154]; cellular response to leukemia inhibitory factor [GO:1990830]; cellular response to retinoic acid [GO:0071300]; embryonic camera-type eye development [GO:0031076]; embryonic eye morphogenesis [GO:0048048]; embryonic hindlimb morphogenesis [GO:0035116]; face development [GO:0060324]; glandular epithelial cell development [GO:0002068]; growth plate cartilage chondrocyte growth [GO:0003430]; Harderian gland development [GO:0070384]; hormone-mediated signaling pathway [GO:0009755]; multicellular organism growth [GO:0035264]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of chondrocyte differentiation [GO:0032331]; negative regulation of stem cell proliferation [GO:2000647]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural tube closure [GO:0001843]; positive regulation of apoptotic process [GO:0043065]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of gene expression [GO:0010628]; positive regulation of programmed cell death [GO:0043068]; positive regulation of transcription by RNA polymerase II [GO:0045944]; prostate gland epithelium morphogenesis [GO:0060740]; regulation of cell size [GO:0008361]; regulation of myelination [GO:0031641]; regulation of myeloid cell differentiation [GO:0045637]; response to retinoic acid [GO:0032526]; retinoic acid receptor signaling pathway [GO:0048384]; stem cell proliferation [GO:0072089]; trachea cartilage development [GO:0060534] -P13725 reviewed ONCM_HUMAN Oncostatin-M (OSM) OSM immune response [GO:0006955]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of hormone secretion [GO:0046888]; oncostatin-M-mediated signaling pathway [GO:0038165]; positive regulation of acute inflammatory response [GO:0002675]; positive regulation of cell division [GO:0051781]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of inflammatory response [GO:0050729]; positive regulation of interleukin-17 production [GO:0032740]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; regulation of hematopoietic stem cell differentiation [GO:1902036] -P13984 reviewed T2FB_HUMAN General transcription factor IIF subunit 2 (General transcription factor IIF 30 kDa subunit) (Transcription initiation factor IIF subunit beta) (TFIIF-beta) (Transcription initiation factor RAP30) GTF2F2 RAP30 positive regulation of transcription by RNA polymerase II [GO:0045944]; transcription by RNA polymerase II [GO:0006366]; transcription elongation by RNA polymerase II [GO:0006368]; transcription initiation at RNA polymerase II promoter [GO:0006367] -P14210 reviewed HGF_HUMAN Hepatocyte growth factor (Hepatopoietin-A) (Scatter factor) (SF) [Cleaved into: Hepatocyte growth factor alpha chain; Hepatocyte growth factor beta chain] HGF HPTA cell chemotaxis [GO:0060326]; cell morphogenesis [GO:0000902]; cellular response to hepatocyte growth factor stimulus [GO:0035729]; epithelial cell proliferation [GO:0050673]; epithelial to mesenchymal transition [GO:0001837]; hepatocyte growth factor receptor signaling pathway [GO:0048012]; liver development [GO:0001889]; mitotic cell cycle [GO:0000278]; myoblast proliferation [GO:0051450]; negative regulation of apoptotic process [GO:0043066]; negative regulation of autophagy [GO:0010507]; negative regulation of extrinsic apoptotic signaling pathway via death domain receptors [GO:1902042]; negative regulation of hydrogen peroxide-mediated programmed cell death [GO:1901299]; negative regulation of inflammatory response [GO:0050728]; negative regulation of interleukin-6 production [GO:0032715]; negative regulation of peptidyl-serine phosphorylation [GO:0033137]; negative regulation of release of cytochrome c from mitochondria [GO:0090201]; positive regulation of cell migration [GO:0030335]; positive regulation of DNA biosynthetic process [GO:2000573]; positive regulation of interleukin-10 production [GO:0032733]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of branching involved in salivary gland morphogenesis by mesenchymal-epithelial signaling [GO:0060665]; regulation of p38MAPK cascade [GO:1900744]; skeletal muscle cell proliferation [GO:0014856] -P14316 reviewed IRF2_HUMAN Interferon regulatory factor 2 (IRF-2) IRF2 cell population proliferation [GO:0008283]; defense response to virus [GO:0051607]; immune system process [GO:0002376]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357] -P14317 reviewed HCLS1_HUMAN Hematopoietic lineage cell-specific protein (Hematopoietic cell-specific LYN substrate 1) (LckBP1) (p75) HCLS1 HS1 actin filament organization [GO:0007015]; cellular response to cytokine stimulus [GO:0071345]; erythrocyte differentiation [GO:0030218]; granulocyte colony-stimulating factor signaling pathway [GO:0038158]; intracellular signal transduction [GO:0035556]; negative regulation of leukocyte apoptotic process [GO:2000107]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nuclear transport [GO:0051169]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of granulocyte differentiation [GO:0030854]; positive regulation of macrophage differentiation [GO:0045651]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; regulation of actin filament polymerization [GO:0030833]; regulation of DNA-templated transcription [GO:0006355]; response to hormone [GO:0009725]; signal transduction [GO:0007165] -P14416 reviewed DRD2_HUMAN D(2) dopamine receptor (Dopamine D2 receptor) DRD2 acid secretion [GO:0046717]; adenohypophysis development [GO:0021984]; adenylate cyclase-activating adrenergic receptor signaling pathway [GO:0071880]; adenylate cyclase-inhibiting dopamine receptor signaling pathway [GO:0007195]; adult walking behavior [GO:0007628]; arachidonic acid secretion [GO:0050482]; associative learning [GO:0008306]; auditory behavior [GO:0031223]; autophagy [GO:0006914]; axonogenesis [GO:0007409]; behavioral response to cocaine [GO:0048148]; behavioral response to ethanol [GO:0048149]; branching morphogenesis of a nerve [GO:0048755]; cerebral cortex GABAergic interneuron migration [GO:0021853]; circadian regulation of gene expression [GO:0032922]; dopamine metabolic process [GO:0042417]; dopamine uptake involved in synaptic transmission [GO:0051583]; drinking behavior [GO:0042756]; epithelial cell proliferation [GO:0050673]; excitatory postsynaptic potential [GO:0060079]; G protein-coupled receptor internalization [GO:0002031]; grooming behavior [GO:0007625]; hyaloid vascular plexus regression [GO:1990384]; intracellular calcium ion homeostasis [GO:0006874]; intracellular signal transduction [GO:0035556]; locomotory behavior [GO:0007626]; long-term memory [GO:0007616]; negative regulation of adenylate cyclase activity [GO:0007194]; negative regulation of blood pressure [GO:0045776]; negative regulation of cell migration [GO:0030336]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of cellular response to hypoxia [GO:1900038]; negative regulation of circadian sleep/wake cycle, sleep [GO:0042321]; negative regulation of cytosolic calcium ion concentration [GO:0051481]; negative regulation of dopamine receptor signaling pathway [GO:0060160]; negative regulation of dopamine secretion [GO:0033602]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of innate immune response [GO:0045824]; negative regulation of insulin secretion [GO:0046676]; negative regulation of neuron migration [GO:2001223]; negative regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051898]; negative regulation of protein phosphorylation [GO:0001933]; negative regulation of protein secretion [GO:0050709]; negative regulation of synaptic transmission, glutamatergic [GO:0051967]; negative regulation of voltage-gated calcium channel activity [GO:1901386]; nervous system process involved in regulation of systemic arterial blood pressure [GO:0001976]; neuroblast proliferation [GO:0007405]; neuron-neuron synaptic transmission [GO:0007270]; orbitofrontal cortex development [GO:0021769]; peristalsis [GO:0030432]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; phospholipase C-activating dopamine receptor signaling pathway [GO:0060158]; phospholipase C-activating G protein-coupled receptor signaling pathway [GO:0007200]; pigmentation [GO:0043473]; positive regulation of cytokinesis [GO:0032467]; positive regulation of dopamine uptake involved in synaptic transmission [GO:0051586]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of G protein-coupled receptor signaling pathway [GO:0045745]; positive regulation of glial cell-derived neurotrophic factor production [GO:1900168]; positive regulation of growth hormone secretion [GO:0060124]; positive regulation of long-term synaptic potentiation [GO:1900273]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of multicellular organism growth [GO:0040018]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of receptor internalization [GO:0002092]; positive regulation of renal sodium excretion [GO:0035815]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of urine volume [GO:0035810]; postsynaptic modulation of chemical synaptic transmission [GO:0099170]; prepulse inhibition [GO:0060134]; presynaptic modulation of chemical synaptic transmission [GO:0099171]; protein localization [GO:0008104]; regulation of dopamine secretion [GO:0014059]; regulation of dopamine uptake involved in synaptic transmission [GO:0051584]; regulation of heart rate [GO:0002027]; regulation of locomotion involved in locomotory behavior [GO:0090325]; regulation of long-term neuronal synaptic plasticity [GO:0048169]; regulation of potassium ion transport [GO:0043266]; regulation of sodium ion transport [GO:0002028]; regulation of synapse structural plasticity [GO:0051823]; regulation of synaptic transmission, GABAergic [GO:0032228]; release of sequestered calcium ion into cytosol [GO:0051209]; response to amphetamine [GO:0001975]; response to axon injury [GO:0048678]; response to cocaine [GO:0042220]; response to histamine [GO:0034776]; response to hypoxia [GO:0001666]; response to inactivity [GO:0014854]; response to iron ion [GO:0010039]; response to light stimulus [GO:0009416]; response to morphine [GO:0043278]; response to nicotine [GO:0035094]; response to toxic substance [GO:0009636]; response to xenobiotic stimulus [GO:0009410]; sensory perception of smell [GO:0007608]; striatum development [GO:0021756]; synapse assembly [GO:0007416]; temperature homeostasis [GO:0001659]; visual learning [GO:0008542]; Wnt signaling pathway [GO:0016055] -P14618 reviewed KPYM_HUMAN Pyruvate kinase PKM (EC 2.7.1.40) (Cytosolic thyroid hormone-binding protein) (CTHBP) (Opa-interacting protein 3) (OIP-3) (Pyruvate kinase 2/3) (Pyruvate kinase muscle isozyme) (Threonine-protein kinase PKM2) (EC 2.7.11.1) (Thyroid hormone-binding protein 1) (THBP1) (Tumor M2-PK) (Tyrosine-protein kinase PKM2) (EC 2.7.10.2) (p58) PKM OIP3 PK2 PK3 PKM2 canonical glycolysis [GO:0061621]; cellular response to insulin stimulus [GO:0032869]; glycolytic process [GO:0006096]; positive regulation of cytoplasmic translation [GO:2000767]; positive regulation of sprouting angiogenesis [GO:1903672]; positive regulation of transcription by RNA polymerase II [GO:0045944]; programmed cell death [GO:0012501] -P14651 reviewed HXB3_HUMAN Homeobox protein Hox-B3 (Homeobox protein Hox-2.7) (Homeobox protein Hox-2G) HOXB3 HOX2G angiogenesis [GO:0001525]; anterior/posterior pattern specification [GO:0009952]; cartilage development [GO:0051216]; definitive hemopoiesis [GO:0060216]; embryonic skeletal system morphogenesis [GO:0048704]; face development [GO:0060324]; glossopharyngeal nerve morphogenesis [GO:0021615]; hematopoietic progenitor cell differentiation [GO:0002244]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of neurogenesis [GO:0050767]; regulation of transcription by RNA polymerase II [GO:0006357]; rhombomere development [GO:0021546]; thyroid gland development [GO:0030878] -P14652 reviewed HXB2_HUMAN Homeobox protein Hox-B2 (Homeobox protein Hox-2.8) (Homeobox protein Hox-2H) (K8) HOXB2 HOX2H anterior/posterior pattern specification [GO:0009952]; dorsal/ventral pattern formation [GO:0009953]; embryonic skeletal system morphogenesis [GO:0048704]; facial nerve structural organization [GO:0021612]; morphogenesis of an epithelial sheet [GO:0002011]; nervous system development [GO:0007399]; neural nucleus development [GO:0048857]; positive regulation of transcription by RNA polymerase II [GO:0045944]; rhombomere 3 development [GO:0021569]; rhombomere 4 development [GO:0021570] -P14653 reviewed HXB1_HUMAN Homeobox protein Hox-B1 (Homeobox protein Hox-2I) HOXB1 HOX2I anatomical structure formation involved in morphogenesis [GO:0048646]; anterior/posterior pattern specification [GO:0009952]; embryonic skeletal system morphogenesis [GO:0048704]; facial nerve structural organization [GO:0021612]; facial nucleus development [GO:0021754]; pattern specification process [GO:0007389]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; rhombomere 4 development [GO:0021570]; rhombomere 5 development [GO:0021571] -P14859 reviewed PO2F1_HUMAN POU domain, class 2, transcription factor 1 (NF-A1) (Octamer-binding protein 1) (Oct-1) (Octamer-binding transcription factor 1) (OTF-1) POU2F1 OCT1 OTF1 negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -P14921 reviewed ETS1_HUMAN Protein C-ets-1 (p54) ETS1 EWSR2 cell motility [GO:0048870]; immune response [GO:0006955]; negative regulation of cell cycle [GO:0045786]; negative regulation of cell population proliferation [GO:0008285]; PML body organization [GO:0030578]; positive regulation of angiogenesis [GO:0045766]; positive regulation of blood vessel endothelial cell migration [GO:0043536]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of erythrocyte differentiation [GO:0045648]; positive regulation of gene expression [GO:0010628]; positive regulation of inflammatory response [GO:0050729]; positive regulation of leukocyte adhesion to vascular endothelial cell [GO:1904996]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of angiogenesis [GO:0045765]; regulation of apoptotic process [GO:0042981]; regulation of transcription by RNA polymerase II [GO:0006357]; response to antibiotic [GO:0046677]; transcription by RNA polymerase II [GO:0006366] -P14923 reviewed PLAK_HUMAN Junction plakoglobin (Catenin gamma) (Desmoplakin III) (Desmoplakin-3) JUP CTNNG DP3 bundle of His cell-Purkinje myocyte adhesion involved in cell communication [GO:0086073]; canonical Wnt signaling pathway [GO:0060070]; cell migration [GO:0016477]; cell-cell adhesion [GO:0098609]; cellular response to indole-3-methanol [GO:0071681]; desmosome assembly [GO:0002159]; detection of mechanical stimulus [GO:0050982]; endothelial cell-cell adhesion [GO:0071603]; negative regulation of blood vessel endothelial cell migration [GO:0043537]; positive regulation of angiogenesis [GO:0045766]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of cell-matrix adhesion [GO:0001954]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to plasma membrane [GO:0072659]; regulation of cell population proliferation [GO:0042127]; regulation of heart rate by cardiac conduction [GO:0086091]; regulation of ventricular cardiac muscle cell action potential [GO:0098911]; skin development [GO:0043588] -P15018 reviewed LIF_HUMAN Leukemia inhibitory factor (LIF) (Differentiation-stimulating factor) (D factor) (Melanoma-derived LPL inhibitor) (MLPLI) (Emfilermin) LIF HILDA blood vessel remodeling [GO:0001974]; cell morphogenesis [GO:0000902]; cell surface receptor signaling pathway via STAT [GO:0097696]; decidualization [GO:0046697]; embryo implantation [GO:0007566]; fibroblast proliferation [GO:0048144]; gene expression [GO:0010467]; immune response [GO:0006955]; leukemia inhibitory factor signaling pathway [GO:0048861]; lung alveolus development [GO:0048286]; lung lobe morphogenesis [GO:0060463]; lung vasculature development [GO:0060426]; macrophage differentiation [GO:0030225]; meiotic nuclear division [GO:0140013]; muscle organ morphogenesis [GO:0048644]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of ERK1 and ERK2 cascade [GO:0070373]; negative regulation of hormone secretion [GO:0046888]; negative regulation of meiotic nuclear division [GO:0045835]; neuron development [GO:0048666]; positive regulation of astrocyte differentiation [GO:0048711]; positive regulation of cell adhesion mediated by integrin [GO:0033630]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of gene expression [GO:0010628]; positive regulation of macrophage differentiation [GO:0045651]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis [GO:0072108]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of peptidyl-serine phosphorylation of STAT protein [GO:0033141]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; regulation of cell differentiation [GO:0045595]; regulation of metanephric nephron tubule epithelial cell differentiation [GO:0072307]; response to hypoxia [GO:0001666]; somatic stem cell population maintenance [GO:0035019]; spongiotrophoblast differentiation [GO:0060708]; stem cell differentiation [GO:0048863]; trophoblast giant cell differentiation [GO:0060707] -P15036 reviewed ETS2_HUMAN Protein C-ets-2 ETS2 ectodermal cell fate commitment [GO:0001712]; mesoderm development [GO:0007498]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; primitive streak formation [GO:0090009]; regulation of transcription by RNA polymerase II [GO:0006357]; skeletal system development [GO:0001501] -P15172 reviewed MYOD1_HUMAN Myoblast determination protein 1 (Class C basic helix-loop-helix protein 1) (bHLHc1) (Myogenic factor 3) (Myf-3) MYOD1 BHLHC1 MYF3 MYOD cellular response to estradiol stimulus [GO:0071392]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to oxygen levels [GO:0071453]; cellular response to starvation [GO:0009267]; cellular response to tumor necrosis factor [GO:0071356]; muscle cell fate commitment [GO:0042693]; muscle organ development [GO:0007517]; myoblast fate determination [GO:0007518]; myoblast fusion [GO:0007520]; myotube cell development [GO:0014904]; myotube differentiation involved in skeletal muscle regeneration [GO:0014908]; negative regulation of myoblast proliferation [GO:2000818]; positive regulation of muscle cell differentiation [GO:0051149]; positive regulation of myoblast differentiation [GO:0045663]; positive regulation of myoblast fusion [GO:1901741]; positive regulation of skeletal muscle fiber development [GO:0048743]; positive regulation of skeletal muscle tissue regeneration [GO:0043415]; positive regulation of snRNA transcription by RNA polymerase II [GO:1905382]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein phosphorylation [GO:0006468]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; regulation of RNA splicing [GO:0043484]; regulation of transcription by RNA polymerase II [GO:0006357]; skeletal muscle cell differentiation [GO:0035914]; skeletal muscle fiber adaptation [GO:0043503]; skeletal muscle fiber development [GO:0048741]; skeletal muscle tissue development [GO:0007519]; transcription by RNA polymerase II [GO:0006366] -P15173 reviewed MYOG_HUMAN Myogenin (Class C basic helix-loop-helix protein 3) (bHLHc3) (Myogenic factor 4) (Myf-4) MYOG BHLHC3 MYF4 cellular response to estradiol stimulus [GO:0071392]; cellular response to growth factor stimulus [GO:0071363]; cellular response to lithium ion [GO:0071285]; cellular response to tumor necrosis factor [GO:0071356]; muscle cell fate commitment [GO:0042693]; negative regulation of cell population proliferation [GO:0008285]; ossification [GO:0001503]; positive regulation of muscle atrophy [GO:0014737]; positive regulation of myoblast differentiation [GO:0045663]; positive regulation of myotube differentiation [GO:0010831]; positive regulation of skeletal muscle fiber development [GO:0048743]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell cycle [GO:0051726]; regulation of myoblast fusion [GO:1901739]; regulation of skeletal muscle satellite cell proliferation [GO:0014842]; response to denervation involved in regulation of muscle adaptation [GO:0014894]; response to electrical stimulus involved in regulation of muscle adaptation [GO:0014878]; response to muscle activity involved in regulation of muscle adaptation [GO:0014873]; skeletal muscle cell differentiation [GO:0035914]; skeletal muscle fiber development [GO:0048741]; skeletal muscle tissue development [GO:0007519]; striated muscle atrophy [GO:0014891] -P15336 reviewed ATF2_HUMAN Cyclic AMP-dependent transcription factor ATF-2 (cAMP-dependent transcription factor ATF-2) (Activating transcription factor 2) (Cyclic AMP-responsive element-binding protein 2) (CREB-2) (cAMP-responsive element-binding protein 2) (HB16) (cAMP response element-binding protein CRE-BP1) ATF2 CREB2 CREBP1 abducens nucleus development [GO:0021742]; adipose tissue development [GO:0060612]; apoptotic process involved in development [GO:1902742]; BMP signaling pathway [GO:0030509]; brainstem development [GO:0003360]; cellular lipid metabolic process [GO:0044255]; cellular response to anisomycin [GO:0072740]; cellular response to leucine starvation [GO:1990253]; cellular response to oxidative stress [GO:0034599]; cellular response to virus [GO:0098586]; detection of cell density [GO:0060245]; DNA damage response [GO:0006974]; facial nucleus development [GO:0021754]; growth plate cartilage chondrocyte differentiation [GO:0003418]; growth plate cartilage chondrocyte proliferation [GO:0003419]; hematopoietic progenitor cell differentiation [GO:0002244]; hepatocyte apoptotic process [GO:0097284]; hypoglossal nucleus development [GO:0021743]; in utero embryonic development [GO:0001701]; intrinsic apoptotic signaling pathway in response to hypoxia [GO:1990144]; JNK cascade [GO:0007254]; liver development [GO:0001889]; mitotic intra-S DNA damage checkpoint signaling [GO:0031573]; motor neuron apoptotic process [GO:0097049]; mRNA transcription by RNA polymerase II [GO:0042789]; negative regulation of angiogenesis [GO:0016525]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neurofilament cytoskeleton organization [GO:0060052]; NK T cell differentiation [GO:0001865]; outflow tract morphogenesis [GO:0003151]; p38MAPK cascade [GO:0038066]; peptidyl-threonine phosphorylation [GO:0018107]; positive regulation of cardiac muscle myoblast proliferation [GO:0110024]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of gene expression [GO:0010628]; positive regulation of mitochondrial membrane permeability involved in apoptotic process [GO:1902110]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta2 production [GO:0032915]; protein import into nucleus [GO:0006606]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; response to organic cyclic compound [GO:0014070]; response to osmotic stress [GO:0006970]; transcription initiation-coupled chromatin remodeling [GO:0045815]; vacuole organization [GO:0007033]; white fat cell differentiation [GO:0050872] -P15407 reviewed FOSL1_HUMAN Fos-related antigen 1 (FRA-1) FOSL1 FRA1 cellular defense response [GO:0006968]; cellular response to extracellular stimulus [GO:0031668]; chemotaxis [GO:0006935]; cytokine-mediated signaling pathway [GO:0019221]; female pregnancy [GO:0007565]; gene expression [GO:0010467]; in utero embryonic development [GO:0001701]; inflammatory response [GO:0006954]; integrated stress response signaling [GO:0140467]; learning [GO:0007612]; negative regulation of cell population proliferation [GO:0008285]; placenta blood vessel development [GO:0060674]; positive regulation of apoptotic process [GO:0043065]; positive regulation of cell cycle [GO:0045787]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-templated transcription initiation [GO:2000144]; positive regulation of miRNA transcription [GO:1902895]; regulation of transcription by RNA polymerase II [GO:0006357]; response to cAMP [GO:0051591]; response to corticosterone [GO:0051412]; response to gravity [GO:0009629]; response to hydrogen peroxide [GO:0042542]; response to mechanical stimulus [GO:0009612]; response to progesterone [GO:0032570]; response to virus [GO:0009615]; response to wounding [GO:0009611]; response to xenobiotic stimulus [GO:0009410]; toll-like receptor signaling pathway [GO:0002224]; vitellogenesis [GO:0007296] -P15408 reviewed FOSL2_HUMAN Fos-related antigen 2 (FRA-2) FOSL2 FRA2 alveolar secondary septum development [GO:0061144]; B cell differentiation [GO:0030183]; B cell proliferation [GO:0042100]; bone mineralization [GO:0030282]; cell death [GO:0008219]; cell morphogenesis [GO:0000902]; chondrocyte differentiation [GO:0002062]; chondrocyte proliferation [GO:0035988]; collagen biosynthetic process [GO:0032964]; fat cell apoptotic process [GO:1904606]; fat cell differentiation [GO:0045444]; fat pad development [GO:0060613]; gene expression [GO:0010467]; glucose homeostasis [GO:0042593]; growth plate cartilage development [GO:0003417]; homeostasis of number of cells within a tissue [GO:0048873]; inflammatory response to antigenic stimulus [GO:0002437]; innate immune response [GO:0045087]; insulin metabolic process [GO:1901142]; keratinocyte development [GO:0003334]; lung connective tissue development [GO:0060427]; macrophage differentiation [GO:0030225]; mucus secretion [GO:0070254]; multicellular organism growth [GO:0035264]; myofibroblast differentiation [GO:0036446]; neutrophil differentiation [GO:0030223]; NK T cell differentiation [GO:0001865]; osteoblast differentiation [GO:0001649]; osteoclast differentiation [GO:0030316]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of multicellular organism growth [GO:0040014]; regulation of myofibroblast differentiation [GO:1904760]; regulation of transcription by RNA polymerase II [GO:0006357]; response to bleomycin [GO:1904975]; response to glucocorticoid [GO:0051384]; response to Gram-positive bacterium [GO:0140459]; response to hypoxia [GO:0001666]; response to interleukin-13 [GO:0035962]; response to interleukin-7 [GO:0098760]; response to leukemia inhibitory factor [GO:1990823]; response to lipopolysaccharide [GO:0032496]; response to xenobiotic stimulus [GO:0009410]; smooth muscle tissue development [GO:0048745]; T cell receptor signaling pathway [GO:0050852]; tissue remodeling [GO:0048771] -P15692 reviewed VEGFA_HUMAN Vascular endothelial growth factor A, long form (L-VEGF) (Vascular permeability factor) (VPF) [Cleaved into: N-VEGF; VEGFA] VEGFA VEGF angiogenesis [GO:0001525]; apoptotic process [GO:0006915]; artery morphogenesis [GO:0048844]; basophil chemotaxis [GO:0002575]; bone trabecula formation [GO:0060346]; branching involved in blood vessel morphogenesis [GO:0001569]; camera-type eye morphogenesis [GO:0048593]; cardiac muscle cell development [GO:0055013]; cardiac vascular smooth muscle cell development [GO:0060948]; cell maturation [GO:0048469]; cell migration involved in sprouting angiogenesis [GO:0002042]; cell-cell adhesion [GO:0098609]; cellular response to hypoxia [GO:0071456]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; cellular stress response to acid chemical [GO:0097533]; commissural neuron axon guidance [GO:0071679]; coronary artery morphogenesis [GO:0060982]; coronary vein morphogenesis [GO:0003169]; dopaminergic neuron differentiation [GO:0071542]; endothelial cell chemotaxis [GO:0035767]; endothelial cell proliferation [GO:0001935]; epithelial cell differentiation [GO:0030855]; epithelial cell maturation [GO:0002070]; eye photoreceptor cell development [GO:0042462]; heart morphogenesis [GO:0003007]; homeostasis of number of cells within a tissue [GO:0048873]; in utero embryonic development [GO:0001701]; induction of positive chemotaxis [GO:0050930]; kidney development [GO:0001822]; lactation [GO:0007595]; lung development [GO:0030324]; lung vasculature development [GO:0060426]; lymph vessel morphogenesis [GO:0036303]; lymphangiogenesis [GO:0001946]; macrophage differentiation [GO:0030225]; mammary gland alveolus development [GO:0060749]; mesoderm development [GO:0007498]; monocyte differentiation [GO:0030224]; motor neuron migration [GO:0097475]; negative regulation of adherens junction organization [GO:1903392]; negative regulation of apoptotic process [GO:0043066]; negative regulation of blood-brain barrier permeability [GO:1905604]; negative regulation of cell-cell adhesion mediated by cadherin [GO:2000048]; negative regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043154]; negative regulation of epithelial to mesenchymal transition [GO:0010719]; negative regulation of establishment of endothelial barrier [GO:1903141]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of gene expression [GO:0010629]; negative regulation of miRNA transcription [GO:1902894]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system development [GO:0007399]; neuroblast proliferation [GO:0007405]; outflow tract morphogenesis [GO:0003151]; ovarian follicle development [GO:0001541]; positive chemotaxis [GO:0050918]; positive regulation of angiogenesis [GO:0045766]; positive regulation of axon extension involved in axon guidance [GO:0048842]; positive regulation of blood vessel endothelial cell migration [GO:0043536]; positive regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis [GO:1903589]; positive regulation of branching involved in ureteric bud morphogenesis [GO:0090190]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cell adhesion [GO:0045785]; positive regulation of cell division [GO:0051781]; positive regulation of cell migration [GO:0030335]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cell proliferation by VEGF-activated platelet derived growth factor receptor signaling pathway [GO:0038091]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of DNA biosynthetic process [GO:2000573]; positive regulation of endothelial cell chemotaxis [GO:2001028]; positive regulation of endothelial cell chemotaxis by VEGF-activated vascular endothelial growth factor receptor signaling pathway [GO:0038033]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of epithelial tube formation [GO:1905278]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of focal adhesion assembly [GO:0051894]; positive regulation of gene expression [GO:0010628]; positive regulation of leukocyte migration [GO:0002687]; positive regulation of lymphangiogenesis [GO:1901492]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of mast cell chemotaxis [GO:0060754]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of p38MAPK cascade [GO:1900745]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of positive chemotaxis [GO:0050927]; positive regulation of protein autophosphorylation [GO:0031954]; positive regulation of protein kinase C signaling [GO:0090037]; positive regulation of protein localization to early endosome [GO:1902966]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of protein-containing complex assembly [GO:0031334]; positive regulation of receptor internalization [GO:0002092]; positive regulation of sprouting angiogenesis [GO:1903672]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of trophoblast cell migration [GO:1901165]; positive regulation of vascular endothelial growth factor signaling pathway [GO:1900748]; positive regulation of vascular permeability [GO:0043117]; post-embryonic camera-type eye development [GO:0031077]; primitive erythrocyte differentiation [GO:0060319]; regulation of cell shape [GO:0008360]; regulation of hematopoietic progenitor cell differentiation [GO:1901532]; regulation of nitric oxide mediated signal transduction [GO:0010749]; regulation of transcription by RNA polymerase II [GO:0006357]; response to hypoxia [GO:0001666]; retinal ganglion cell axon guidance [GO:0031290]; sprouting angiogenesis [GO:0002040]; surfactant homeostasis [GO:0043129]; tube formation [GO:0035148]; vascular endothelial growth factor receptor signaling pathway [GO:0048010]; vascular endothelial growth factor receptor-2 signaling pathway [GO:0036324]; vascular endothelial growth factor signaling pathway [GO:0038084]; vascular wound healing [GO:0061042]; vasculogenesis [GO:0001570]; vasodilation [GO:0042311]; VEGF-activated neuropilin signaling pathway [GO:0038190] -P15822 reviewed ZEP1_HUMAN Zinc finger protein 40 (Cirhin interaction protein) (CIRIP) (Gate keeper of apoptosis-activating protein) (GAAP) (Human immunodeficiency virus type I enhancer-binding protein 1) (HIV-EP1) (Major histocompatibility complex-binding protein 1) (MBP-1) (Positive regulatory domain II-binding factor 1) (PRDII-BF1) HIVEP1 ZNF40 BMP signaling pathway [GO:0030509]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -P15884 reviewed ITF2_HUMAN Transcription factor 4 (TCF-4) (Class B basic helix-loop-helix protein 19) (bHLHb19) (Immunoglobulin transcription factor 2) (ITF-2) (SL3-3 enhancer factor 2) (SEF-2) TCF4 BHLHB19 ITF2 SEF2 cell differentiation [GO:0030154]; nervous system development [GO:0007399]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein-DNA complex assembly [GO:0065004]; regulation of transcription by RNA polymerase II [GO:0006357] -P15923 reviewed TFE2_HUMAN Transcription factor E2-alpha (Class B basic helix-loop-helix protein 21) (bHLHb21) (Immunoglobulin enhancer-binding factor E12/E47) (Immunoglobulin transcription factor 1) (Kappa-E2-binding factor) (Transcription factor 3) (TCF-3) (Transcription factor ITF-1) TCF3 BHLHB21 E2A ITF1 B cell differentiation [GO:0030183]; B cell lineage commitment [GO:0002326]; immunoglobulin V(D)J recombination [GO:0033152]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system development [GO:0007399]; positive regulation of B cell proliferation [GO:0030890]; positive regulation of cell cycle [GO:0045787]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of G1/S transition of mitotic cell cycle [GO:2000045]; regulation of transcription by RNA polymerase II [GO:0006357] -P15941 reviewed MUC1_HUMAN Mucin-1 (MUC-1) (Breast carcinoma-associated antigen DF3) (Cancer antigen 15-3) (CA 15-3) (Carcinoma-associated mucin) (Episialin) (H23AG) (Krebs von den Lungen-6) (KL-6) (PEMT) (Peanut-reactive urinary mucin) (PUM) (Polymorphic epithelial mucin) (PEM) (Tumor-associated epithelial membrane antigen) (EMA) (Tumor-associated mucin) (CD antigen CD227) [Cleaved into: Mucin-1 subunit alpha (MUC1-NT) (MUC1-alpha); Mucin-1 subunit beta (MUC1-beta) (MUC1-CT)] MUC1 PUM DNA damage response, signal transduction by p53 class mediator [GO:0030330]; DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest [GO:0006977]; negative regulation of cell adhesion mediated by integrin [GO:0033629]; negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:1902166]; negative regulation of transcription by competitive promoter binding [GO:0010944]; positive regulation of transcription by RNA polymerase II [GO:0045944] -P15976 reviewed GATA1_HUMAN Erythroid transcription factor (Eryf1) (GATA-binding factor 1) (GATA-1) (GF-1) (NF-E1 DNA-binding protein) GATA1 ERYF1 GF1 animal organ regeneration [GO:0031100]; basophil differentiation [GO:0030221]; bone mineralization [GO:0030282]; cell fate commitment [GO:0045165]; cell-cell signaling [GO:0007267]; cellular response to cAMP [GO:0071320]; cellular response to follicle-stimulating hormone stimulus [GO:0071372]; cellular response to lipopolysaccharide [GO:0071222]; dendritic cell differentiation [GO:0097028]; eosinophil differentiation [GO:0030222]; eosinophil fate commitment [GO:0035854]; erythrocyte development [GO:0048821]; erythrocyte differentiation [GO:0030218]; homeostasis of number of cells within a tissue [GO:0048873]; in utero embryonic development [GO:0001701]; male gonad development [GO:0008584]; megakaryocyte differentiation [GO:0030219]; myeloid cell apoptotic process [GO:0033028]; negative regulation of apoptotic process [GO:0043066]; negative regulation of bone mineralization [GO:0030502]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001240]; negative regulation of myeloid cell apoptotic process [GO:0033033]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transcription regulatory region DNA binding [GO:2000678]; osteoblast proliferation [GO:0033687]; platelet aggregation [GO:0070527]; platelet formation [GO:0030220]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of erythrocyte differentiation [GO:0045648]; positive regulation of mast cell degranulation [GO:0043306]; positive regulation of osteoblast proliferation [GO:0033690]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of transcription by RNA polymerase II [GO:0045944]; primitive erythrocyte differentiation [GO:0060319]; regulation of definitive erythrocyte differentiation [GO:0010724]; regulation of glycoprotein biosynthetic process [GO:0010559]; regulation of primitive erythrocyte differentiation [GO:0010725]; Sertoli cell development [GO:0060009]; transcription by RNA polymerase II [GO:0006366] -P16220 reviewed CREB1_HUMAN Cyclic AMP-responsive element-binding protein 1 (CREB-1) (cAMP-responsive element-binding protein 1) CREB1 axonogenesis [GO:0007409]; cAMP-mediated signaling [GO:0019933]; cellular response to forskolin [GO:1904322]; cellular response to hepatocyte growth factor stimulus [GO:0035729]; cellular response to leukemia inhibitory factor [GO:1990830]; cellular response to retinoic acid [GO:0071300]; cellular response to zinc ion [GO:0071294]; circadian rhythm [GO:0007623]; hormone secretion [GO:0046879]; lactation [GO:0007595]; lung saccule development [GO:0060430]; memory [GO:0007613]; mRNA transcription by RNA polymerase II [GO:0042789]; negative regulation of apoptotic process [GO:0043066]; negative regulation of transcription by competitive promoter binding [GO:0010944]; osteoclast differentiation [GO:0030316]; pituitary gland development [GO:0021983]; positive regulation of cardiac muscle tissue development [GO:0055025]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of fat cell differentiation [GO:0045600]; positive regulation of hormone secretion [GO:0046887]; positive regulation of lipid biosynthetic process [GO:0046889]; positive regulation of multicellular organism growth [GO:0040018]; positive regulation of osteoclast differentiation [GO:0045672]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein phosphorylation [GO:0006468]; protein stabilization [GO:0050821]; regulation of cell size [GO:0008361]; regulation of testosterone biosynthetic process [GO:2000224]; regulation of transcription by RNA polymerase II [GO:0006357]; response to glucagon [GO:0033762]; response to organic substance [GO:0010033]; response to purine-containing compound [GO:0014074]; response to xenobiotic stimulus [GO:0009410]; secretory granule organization [GO:0033363]; signal transduction [GO:0007165]; type I pneumocyte differentiation [GO:0060509] -P16298 reviewed PP2BB_HUMAN Serine/threonine-protein phosphatase 2B catalytic subunit beta isoform (EC 3.1.3.16) (CAM-PRP catalytic subunit) (Calmodulin-dependent calcineurin A subunit beta isoform) (CNA beta) PPP3CB CALNA2 CALNB CNA2 axon extension [GO:0048675]; calcineurin-mediated signaling [GO:0097720]; calcineurin-NFAT signaling cascade [GO:0033173]; calcium-ion regulated exocytosis [GO:0017156]; dephosphorylation [GO:0016311]; heart development [GO:0007507]; learning [GO:0007612]; locomotion involved in locomotory behavior [GO:0031987]; lymphangiogenesis [GO:0001946]; memory [GO:0007613]; negative regulation of calcium ion import across plasma membrane [GO:1905949]; negative regulation of signaling [GO:0023057]; negative regulation of T cell mediated cytotoxicity [GO:0001915]; positive regulation of calcineurin-NFAT signaling cascade [GO:0070886]; positive regulation of calcium ion import across plasma membrane [GO:1905665]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of insulin secretion involved in cellular response to glucose stimulus [GO:0035774]; positive regulation of lysosome organization [GO:1905673]; positive regulation of protein localization to nucleus [GO:1900182]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein dephosphorylation [GO:0006470]; protein phosphorylation [GO:0006468]; regulation of insulin secretion [GO:0050796]; regulation of synaptic plasticity [GO:0048167]; regulation of synaptic vesicle endocytosis [GO:1900242]; response to cytokine [GO:0034097]; signal transduction [GO:0007165]; skeletal muscle fiber development [GO:0048741]; T cell activation [GO:0042110]; T cell differentiation [GO:0030217]; T cell homeostasis [GO:0043029]; T cell mediated cytotoxicity [GO:0001913]; T cell proliferation [GO:0042098] -P16333 reviewed NCK1_HUMAN SH2/SH3 adapter protein NCK1 (Cytoplasmic protein NCK1) (NCK adapter protein 1) (Nck-1) (SH2/SH3 adapter protein NCK-alpha) NCK1 NCK actin filament organization [GO:0007015]; antiviral innate immune response [GO:0140374]; cell migration [GO:0016477]; ephrin receptor signaling pathway [GO:0048013]; lamellipodium assembly [GO:0030032]; negative regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation [GO:1903912]; negative regulation of insulin receptor signaling pathway [GO:0046627]; negative regulation of peptidyl-serine phosphorylation [GO:0033137]; negative regulation of PERK-mediated unfolded protein response [GO:1903898]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of actin filament polymerization [GO:0030838]; positive regulation of cap-dependent translational initiation [GO:1903676]; positive regulation of cap-independent translational initiation [GO:1903679]; positive regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway [GO:1902237]; positive regulation of neuron projection development [GO:0010976]; positive regulation of peptidyl-serine dephosphorylation [GO:1902310]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of translation in response to endoplasmic reticulum stress [GO:0036493]; regulation of cell migration [GO:0030334]; response to endoplasmic reticulum stress [GO:0034976]; signal complex assembly [GO:0007172]; substrate-dependent cell migration, cell extension [GO:0006930]; T cell activation [GO:0042110] -P16422 reviewed EPCAM_HUMAN Epithelial cell adhesion molecule (Ep-CAM) (Adenocarcinoma-associated antigen) (Cell surface glycoprotein Trop-1) (Epithelial cell surface antigen) (Epithelial glycoprotein) (EGP) (Epithelial glycoprotein 314) (EGP314) (hEGP314) (KS 1/4 antigen) (KSA) (Major gastrointestinal tumor-associated protein GA733-2) (Tumor-associated calcium signal transducer 1) (CD antigen CD326) EPCAM GA733-2 M1S2 M4S1 MIC18 TACSTD1 TROP1 negative regulation of cell-cell adhesion mediated by cadherin [GO:2000048]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; signal transduction involved in regulation of gene expression [GO:0023019]; stem cell differentiation [GO:0048863]; ureteric bud development [GO:0001657] -P17010 reviewed ZFX_HUMAN Zinc finger X-chromosomal protein ZFX fertilization [GO:0009566]; homeostasis of number of cells [GO:0048872]; multicellular organism growth [GO:0035264]; oocyte development [GO:0048599]; ovarian follicle development [GO:0001541]; parental behavior [GO:0060746]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-embryonic development [GO:0009791]; regulation of transcription by RNA polymerase II [GO:0006357]; spermatogenesis [GO:0007283] -P17028 reviewed ZNF24_HUMAN Zinc finger protein 24 (Retinoic acid suppression protein A) (RSG-A) (Zinc finger and SCAN domain-containing protein 3) (Zinc finger protein 191) (Zinc finger protein KOX17) ZNF24 KOX17 ZNF191 ZSCAN3 myelination [GO:0042552]; negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -P17081 reviewed RHOQ_HUMAN Rho-related GTP-binding protein RhoQ (Ras-like protein TC10) (Ras-like protein family member 7A) RHOQ ARHQ RASL7A TC10 actin filament organization [GO:0007015]; cellular response to insulin stimulus [GO:0032869]; cortical actin cytoskeleton organization [GO:0030866]; endocytosis [GO:0006897]; establishment or maintenance of cell polarity [GO:0007163]; GTP metabolic process [GO:0046039]; insulin receptor signaling pathway [GO:0008286]; negative regulation of protein localization to plasma membrane [GO:1903077]; positive regulation of filopodium assembly [GO:0051491]; positive regulation of glucose import [GO:0046326]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of cell shape [GO:0008360]; signal transduction [GO:0007165]; small GTPase-mediated signal transduction [GO:0007264] -P17096 reviewed HMGA1_HUMAN High mobility group protein HMG-I/HMG-Y (HMG-I(Y)) (High mobility group AT-hook protein 1) (High mobility group protein A1) (High mobility group protein R) HMGA1 HMGIY base-excision repair [GO:0006284]; DNA unwinding involved in DNA replication [GO:0006268]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of DNA-templated transcription [GO:0045892]; nucleosome disassembly [GO:0006337]; oncogene-induced cell senescence [GO:0090402]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355] -P17275 reviewed JUNB_HUMAN Transcription factor JunB (Transcription factor AP-1 subunit JunB) JUNB cellular response to calcium ion [GO:0071277]; decidualization [GO:0046697]; embryonic process involved in female pregnancy [GO:0060136]; integrated stress response signaling [GO:0140467]; labyrinthine layer blood vessel development [GO:0060716]; osteoblast differentiation [GO:0001649]; osteoblast proliferation [GO:0033687]; osteoclast differentiation [GO:0030316]; osteoclast proliferation [GO:0002158]; positive regulation of cell differentiation [GO:0045597]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell cycle [GO:0051726]; regulation of cell population proliferation [GO:0042127]; regulation of T-helper 17 cell differentiation [GO:2000319]; regulation of transcription by RNA polymerase II [GO:0006357]; trophectodermal cell differentiation [GO:0001829]; vasculogenesis [GO:0001570] -P17482 reviewed HXB9_HUMAN Homeobox protein Hox-B9 (Homeobox protein Hox-2.5) (Homeobox protein Hox-2E) HOXB9 HOX2E anterior/posterior pattern specification [GO:0009952]; cell chemotaxis [GO:0060326]; DNA-templated transcription [GO:0006351]; embryonic skeletal system morphogenesis [GO:0048704]; mammary gland development [GO:0030879]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proximal/distal pattern formation [GO:0009954]; regulation of transcription by RNA polymerase II [GO:0006357] -P17483 reviewed HXB4_HUMAN Homeobox protein Hox-B4 (Homeobox protein Hox-2.6) (Homeobox protein Hox-2F) HOXB4 HOX2F anterior/posterior pattern specification [GO:0009952]; bone marrow development [GO:0048539]; definitive hemopoiesis [GO:0060216]; embryonic skeletal system morphogenesis [GO:0048704]; hematopoietic stem cell differentiation [GO:0060218]; hematopoietic stem cell proliferation [GO:0071425]; morphogenesis of an epithelial sheet [GO:0002011]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of stem cell differentiation [GO:2000738]; positive regulation of transcription by RNA polymerase II [GO:0045944]; somatic stem cell division [GO:0048103]; spleen development [GO:0048536] -P17535 reviewed JUND_HUMAN Transcription factor JunD (Transcription factor AP-1 subunit JunD) JUND cellular response to calcium ion [GO:0071277]; gene expression [GO:0010467]; negative regulation of transcription by RNA polymerase II [GO:0000122]; osteoblast development [GO:0002076]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell cycle [GO:0051726]; regulation of cell population proliferation [GO:0042127]; regulation of transcription by RNA polymerase II [GO:0006357] -P17542 reviewed TAL1_HUMAN T-cell acute lymphocytic leukemia protein 1 (TAL-1) (Class A basic helix-loop-helix protein 17) (bHLHa17) (Stem cell protein) (T-cell leukemia/lymphoma protein 5) TAL1 BHLHA17 SCL TCL5 angiogenesis [GO:0001525]; astrocyte fate commitment [GO:0060018]; basophil differentiation [GO:0030221]; cell fate commitment [GO:0045165]; definitive hemopoiesis [GO:0060216]; embryonic hemopoiesis [GO:0035162]; erythrocyte differentiation [GO:0030218]; erythrocyte maturation [GO:0043249]; hemangioblast cell differentiation [GO:0060217]; hematopoietic stem cell differentiation [GO:0060218]; hemopoiesis [GO:0030097]; locomotory behavior [GO:0007626]; megakaryocyte development [GO:0035855]; megakaryocyte differentiation [GO:0030219]; negative regulation of transcription by RNA polymerase II [GO:0000122]; platelet formation [GO:0030220]; positive regulation of cell division [GO:0051781]; positive regulation of chromatin organization [GO:1905269]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of erythrocyte differentiation [GO:0045648]; positive regulation of mitotic cell cycle [GO:0045931]; positive regulation of protein-containing complex assembly [GO:0031334]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell population proliferation [GO:0042127]; regulation of mast cell differentiation [GO:0060375]; regulation of somatic stem cell population maintenance [GO:1904672]; regulation of transcription by RNA polymerase II [GO:0006357]; spinal cord association neuron differentiation [GO:0021527]; transcription by RNA polymerase II [GO:0006366] -P17544 reviewed ATF7_HUMAN Cyclic AMP-dependent transcription factor ATF-7 (cAMP-dependent transcription factor ATF-7) (Activating transcription factor 7) (Transcription factor ATF-A) ATF7 ATFA negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357] -P17676 reviewed CEBPB_HUMAN CCAAT/enhancer-binding protein beta (C/EBP beta) (Liver activator protein) (LAP) (Liver-enriched inhibitory protein) (LIP) (Nuclear factor NF-IL6) (Transcription factor 5) (TCF-5) CEBPB TCF5 PP9092 acute-phase response [GO:0006953]; brown fat cell differentiation [GO:0050873]; cellular response to amino acid stimulus [GO:0071230]; defense response to bacterium [GO:0042742]; embryonic placenta development [GO:0001892]; granuloma formation [GO:0002432]; hepatocyte proliferation [GO:0072574]; immune response [GO:0006955]; inflammatory response [GO:0006954]; integrated stress response signaling [GO:0140467]; intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress [GO:0070059]; liver regeneration [GO:0097421]; mammary gland epithelial cell differentiation [GO:0060644]; mammary gland epithelial cell proliferation [GO:0033598]; myeloid cell development [GO:0061515]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of T cell proliferation [GO:0042130]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron differentiation [GO:0030182]; ovarian follicle development [GO:0001541]; positive regulation of biomineral tissue development [GO:0070169]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of fat cell differentiation [GO:0045600]; positive regulation of inflammatory response [GO:0050729]; positive regulation of interleukin-4 production [GO:0032753]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of sodium-dependent phosphate transport [GO:2000120]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell differentiation [GO:0045595]; regulation of dendritic cell differentiation [GO:2001198]; regulation of DNA-templated transcription [GO:0006355]; regulation of interleukin-6 production [GO:0032675]; regulation of odontoblast differentiation [GO:1901329]; regulation of osteoclast differentiation [GO:0045670]; regulation of transcription by RNA polymerase II [GO:0006357]; response to endoplasmic reticulum stress [GO:0034976]; response to lipopolysaccharide [GO:0032496]; T-helper 1 cell activation [GO:0035711]; transcription by RNA polymerase II [GO:0006366] -P17813 reviewed EGLN_HUMAN Endoglin (CD antigen CD105) ENG END artery morphogenesis [GO:0048844]; atrial cardiac muscle tissue morphogenesis [GO:0055009]; atrioventricular canal morphogenesis [GO:1905222]; BMP signaling pathway [GO:0030509]; bone development [GO:0060348]; branching involved in blood vessel morphogenesis [GO:0001569]; cardiac atrium morphogenesis [GO:0003209]; cardiac ventricle morphogenesis [GO:0003208]; cell adhesion [GO:0007155]; cell chemotaxis [GO:0060326]; cell migration [GO:0016477]; cell migration involved in endocardial cushion formation [GO:0003273]; cell motility [GO:0048870]; cellular response to mechanical stimulus [GO:0071260]; central nervous system vasculogenesis [GO:0022009]; detection of hypoxia [GO:0070483]; dorsal aorta morphogenesis [GO:0035912]; endocardial cushion morphogenesis [GO:0003203]; epithelial to mesenchymal transition [GO:0001837]; epithelial to mesenchymal transition involved in endocardial cushion formation [GO:0003198]; extracellular matrix constituent secretion [GO:0070278]; extracellular matrix disassembly [GO:0022617]; heart looping [GO:0001947]; negative regulation of cell migration [GO:0030336]; negative regulation of endothelial cell proliferation [GO:0001937]; negative regulation of gene expression [GO:0010629]; negative regulation of nitric-oxide synthase activity [GO:0051001]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; outflow tract septum morphogenesis [GO:0003148]; positive regulation of angiogenesis [GO:0045766]; positive regulation of BMP signaling pathway [GO:0030513]; positive regulation of collagen biosynthetic process [GO:0032967]; positive regulation of epithelial to mesenchymal transition involved in endocardial cushion formation [GO:1905007]; positive regulation of gene expression [GO:0010628]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of systemic arterial blood pressure [GO:0003084]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular associated smooth muscle cell differentiation [GO:1905065]; regulation of cell adhesion [GO:0030155]; regulation of cell population proliferation [GO:0042127]; regulation of DNA-templated transcription [GO:0006355]; regulation of phosphorylation [GO:0042325]; regulation of transforming growth factor beta receptor signaling pathway [GO:0017015]; response to hypoxia [GO:0001666]; response to xenobiotic stimulus [GO:0009410]; smooth muscle tissue development [GO:0048745]; transforming growth factor beta receptor signaling pathway [GO:0007179]; vascular associated smooth muscle cell development [GO:0097084]; vasculogenesis [GO:0001570]; venous blood vessel morphogenesis [GO:0048845]; ventricular trabecula myocardium morphogenesis [GO:0003222]; wound healing [GO:0042060] -P17861 reviewed XBP1_HUMAN X-box-binding protein 1 (XBP-1) (Tax-responsive element-binding protein 5) (TREB-5) [Cleaved into: X-box-binding protein 1, cytoplasmic form; X-box-binding protein 1, luminal form] XBP1 TREB5 XBP2 adipose tissue development [GO:0060612]; angiogenesis [GO:0001525]; apoptotic process [GO:0006915]; ATF6-mediated unfolded protein response [GO:0036500]; autophagy [GO:0006914]; cellular response to amino acid stimulus [GO:0071230]; cellular response to fluid shear stress [GO:0071498]; cellular response to fructose stimulus [GO:0071332]; cellular response to glucose starvation [GO:0042149]; cellular response to glucose stimulus [GO:0071333]; cellular response to insulin stimulus [GO:0032869]; cellular response to interleukin-4 [GO:0071353]; cellular response to laminar fluid shear stress [GO:0071499]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to nutrient [GO:0031670]; cellular response to oxidative stress [GO:0034599]; cellular response to peptide hormone stimulus [GO:0071375]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; cholesterol homeostasis [GO:0042632]; endoplasmic reticulum unfolded protein response [GO:0030968]; endothelial cell proliferation [GO:0001935]; ERAD pathway [GO:0036503]; fatty acid biosynthetic process [GO:0006633]; fatty acid homeostasis [GO:0055089]; immune response [GO:0006955]; intracellular triglyceride homeostasis [GO:0035356]; IRE1-mediated unfolded protein response [GO:0036498]; liver development [GO:0001889]; muscle organ development [GO:0007517]; negative regulation of apoptotic process [GO:0043066]; negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway [GO:1902236]; negative regulation of endoplasmic reticulum unfolded protein response [GO:1900102]; negative regulation of ERK1 and ERK2 cascade [GO:0070373]; negative regulation of myotube differentiation [GO:0010832]; negative regulation of SMAD protein signal transduction [GO:0060392]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; neuron development [GO:0048666]; organelle organization [GO:0006996]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; positive regulation of angiogenesis [GO:0045766]; positive regulation of autophagy [GO:0010508]; positive regulation of B cell differentiation [GO:0045579]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of endoplasmic reticulum unfolded protein response [GO:1900103]; positive regulation of endothelial cell apoptotic process [GO:2000353]; positive regulation of ERAD pathway [GO:1904294]; positive regulation of fat cell differentiation [GO:0045600]; positive regulation of hepatocyte proliferation [GO:2000347]; positive regulation of immunoglobulin production [GO:0002639]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of lactation [GO:1903489]; positive regulation of MHC class II biosynthetic process [GO:0045348]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of phospholipid biosynthetic process [GO:0071073]; positive regulation of plasma cell differentiation [GO:1900100]; positive regulation of protein acetylation [GO:1901985]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of T cell differentiation [GO:0045582]; positive regulation of TOR signaling [GO:0032008]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular associated smooth muscle cell migration [GO:1904754]; positive regulation of vascular associated smooth muscle cell proliferation [GO:1904707]; positive regulation of vascular wound healing [GO:0035470]; protein destabilization [GO:0031648]; protein transport [GO:0015031]; regulation of cell growth [GO:0001558]; regulation of protein stability [GO:0031647]; regulation of transcription by RNA polymerase II [GO:0006357]; response to endoplasmic reticulum stress [GO:0034976]; response to insulin-like growth factor stimulus [GO:1990418]; sterol homeostasis [GO:0055092]; transcription by RNA polymerase II [GO:0006366]; ubiquitin-dependent protein catabolic process [GO:0006511]; vascular endothelial growth factor receptor signaling pathway [GO:0048010] -P17947 reviewed SPI1_HUMAN Transcription factor PU.1 (31 kDa-transforming protein) SPI1 defense response to tumor cell [GO:0002357]; endothelial to hematopoietic transition [GO:0098508]; interleukin-6-mediated signaling pathway [GO:0070102]; myeloid leukocyte differentiation [GO:0002573]; negative regulation of adipose tissue development [GO:1904178]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of gene expression [GO:0010629]; negative regulation of neutrophil degranulation [GO:0043314]; negative regulation of NF-kappaB transcription factor activity [GO:0032088]; negative regulation of non-canonical NF-kappaB signal transduction [GO:1901223]; negative regulation of protein localization to chromatin [GO:0120186]; negative regulation of transcription by RNA polymerase II [GO:0000122]; oncogene-induced cell senescence [GO:0090402]; pericyte cell differentiation [GO:1904238]; positive regulation of antifungal innate immune response [GO:1905036]; positive regulation of B cell differentiation [GO:0045579]; positive regulation of microglial cell mediated cytotoxicity [GO:1904151]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of p38MAPK cascade [GO:1900745]; positive regulation of transcription by RNA polymerase II [GO:0045944]; pro-T cell differentiation [GO:0002572]; regulation of DNA-binding transcription factor activity [GO:0051090]; regulation of DNA-templated transcription [GO:0006355]; regulation of erythrocyte differentiation [GO:0045646]; regulation of myeloid progenitor cell differentiation [GO:1905453]; regulation of transcription by RNA polymerase II [GO:0006357]; TRAIL-activated apoptotic signaling pathway [GO:0036462]; transcription initiation-coupled chromatin remodeling [GO:0045815] -P17980 reviewed PRS6A_HUMAN 26S proteasome regulatory subunit 6A (26S proteasome AAA-ATPase subunit RPT5) (Proteasome 26S subunit ATPase 3) (Proteasome subunit P50) (Tat-binding protein 1) (TBP-1) PSMC3 TBP1 modulation by host of viral transcription [GO:0043921]; positive regulation of proteasomal protein catabolic process [GO:1901800]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161] -P18075 reviewed BMP7_HUMAN Bone morphogenetic protein 7 (BMP-7) (Osteogenic protein 1) (OP-1) (Eptotermin alfa) BMP7 OP1 allantois development [GO:1905069]; ameloblast differentiation [GO:0036305]; axon guidance [GO:0007411]; BMP signaling pathway [GO:0030509]; branching involved in salivary gland morphogenesis [GO:0060445]; branching morphogenesis of an epithelial tube [GO:0048754]; cardiac muscle tissue development [GO:0048738]; cardiac septum morphogenesis [GO:0060411]; cartilage development [GO:0051216]; cellular response to BMP stimulus [GO:0071773]; cellular response to hypoxia [GO:0071456]; chorio-allantoic fusion [GO:0060710]; dendrite development [GO:0016358]; embryonic camera-type eye morphogenesis [GO:0048596]; embryonic limb morphogenesis [GO:0030326]; embryonic pattern specification [GO:0009880]; embryonic skeletal joint morphogenesis [GO:0060272]; endocardial cushion formation [GO:0003272]; epithelial to mesenchymal transition [GO:0001837]; heart trabecula morphogenesis [GO:0061384]; hindbrain development [GO:0030902]; mesenchymal cell apoptotic process involved in nephron morphogenesis [GO:1901145]; mesenchymal cell differentiation [GO:0048762]; mesenchyme development [GO:0060485]; mesoderm formation [GO:0001707]; mesonephros development [GO:0001823]; metanephric mesenchymal cell proliferation involved in metanephros development [GO:0072136]; metanephric mesenchyme morphogenesis [GO:0072133]; metanephros development [GO:0001656]; monocyte aggregation [GO:0070487]; negative regulation of cell cycle [GO:0045786]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of glomerular mesangial cell proliferation [GO:0072125]; negative regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis [GO:0072040]; negative regulation of mitotic nuclear division [GO:0045839]; negative regulation of neurogenesis [GO:0050768]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of NF-kappaB transcription factor activity [GO:0032088]; negative regulation of non-canonical NF-kappaB signal transduction [GO:1901223]; negative regulation of Notch signaling pathway [GO:0045746]; negative regulation of prostatic bud formation [GO:0060686]; negative regulation of striated muscle cell apoptotic process [GO:0010664]; nephrogenic mesenchyme morphogenesis [GO:0072134]; neural fold elevation formation [GO:0021502]; neuron projection morphogenesis [GO:0048812]; odontogenesis of dentin-containing tooth [GO:0042475]; ossification [GO:0001503]; pericardium morphogenesis [GO:0003344]; pharyngeal system development [GO:0060037]; positive regulation of apoptotic process [GO:0043065]; positive regulation of bone mineralization [GO:0030501]; positive regulation of brown fat cell differentiation [GO:0090336]; positive regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis [GO:1905312]; positive regulation of dendrite development [GO:1900006]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial cell differentiation [GO:0030858]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of gene expression [GO:0010628]; positive regulation of heterotypic cell-cell adhesion [GO:0034116]; positive regulation of hyaluranon cable assembly [GO:1900106]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of branching involved in prostate gland morphogenesis [GO:0060687]; regulation of phosphorylation [GO:0042325]; regulation of removal of superoxide radicals [GO:2000121]; response to estradiol [GO:0032355]; response to peptide hormone [GO:0043434]; response to vitamin D [GO:0033280]; skeletal system development [GO:0001501]; ureteric bud development [GO:0001657] -P18085 reviewed ARF4_HUMAN ADP-ribosylation factor 4 ARF4 ARF2 apical protein localization [GO:0045176]; cell migration [GO:0016477]; cilium assembly [GO:0060271]; dendritic spine development [GO:0060996]; endoplasmic reticulum to Golgi vesicle-mediated transport [GO:0006888]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; intracellular protein transport [GO:0006886]; learning [GO:0007612]; negative regulation of apoptotic process [GO:0043066]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to cilium [GO:0061512]; regulation of cilium assembly [GO:1902017]; regulation of postsynapse organization [GO:0099175]; regulation of reactive oxygen species metabolic process [GO:2000377]; retrograde vesicle-mediated transport, Golgi to endoplasmic reticulum [GO:0006890]; vesicle-mediated transport [GO:0016192] -P18146 reviewed EGR1_HUMAN Early growth response protein 1 (EGR-1) (AT225) (Nerve growth factor-induced protein A) (NGFI-A) (Transcription factor ETR103) (Transcription factor Zif268) (Zinc finger protein 225) (Zinc finger protein Krox-24) EGR1 KROX24 ZNF225 BMP signaling pathway [GO:0030509]; cellular response to gamma radiation [GO:0071480]; cellular response to heparin [GO:0071504]; cellular response to interleukin-8 [GO:0098759]; cellular response to mycophenolic acid [GO:0071506]; circadian regulation of gene expression [GO:0032922]; circadian temperature homeostasis [GO:0060086]; estrous cycle [GO:0044849]; glomerular mesangial cell proliferation [GO:0072110]; interleukin-1-mediated signaling pathway [GO:0070498]; locomotor rhythm [GO:0045475]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of chemokine production [GO:0032722]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of gene expression via chromosomal CpG island demethylation [GO:0044029]; positive regulation of glomerular metanephric mesangial cell proliferation [GO:0072303]; positive regulation of hormone biosynthetic process [GO:0046886]; positive regulation of interleukin-1 beta production [GO:0032731]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of post-translational protein modification [GO:1901875]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of neuron apoptotic process [GO:0043523]; regulation of progesterone biosynthetic process [GO:2000182]; regulation of protein sumoylation [GO:0033233]; regulation of transcription by RNA polymerase II [GO:0006357]; response to glucose [GO:0009749]; response to hypoxia [GO:0001666]; response to insulin [GO:0032868]; response to ischemia [GO:0002931]; skeletal muscle cell differentiation [GO:0035914]; T cell differentiation [GO:0030217] -P18509 reviewed PACA_HUMAN Pituitary adenylate cyclase-activating polypeptide (PACAP) [Cleaved into: PACAP-related peptide (PRP-48); Pituitary adenylate cyclase-activating polypeptide 27 (PACAP-27) (PACAP27); Pituitary adenylate cyclase-activating polypeptide 38 (PACAP-38) (PACAP38)] ADCYAP1 activation of adenylate cyclase activity [GO:0007190]; adenylate cyclase-activating G protein-coupled receptor signaling pathway [GO:0007189]; cAMP-mediated signaling [GO:0019933]; cell-cell signaling [GO:0007267]; female pregnancy [GO:0007565]; insulin secretion [GO:0030073]; negative regulation of cell cycle [GO:0045786]; neuron projection development [GO:0031175]; neuropeptide signaling pathway [GO:0007218]; positive regulation of chemokine (C-C motif) ligand 5 production [GO:0071651]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of growth hormone secretion [GO:0060124]; positive regulation of GTPase activity [GO:0043547]; positive regulation of protein kinase activity [GO:0045860]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of G protein-coupled receptor signaling pathway [GO:0008277]; regulation of protein localization [GO:0032880] -P18615 reviewed NELFE_HUMAN Negative elongation factor E (NELF-E) (RNA-binding protein RD) NELFE RD RDBP negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transcription elongation by RNA polymerase II [GO:0034244]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of protein modification process [GO:0031401]; positive regulation of transcription by RNA polymerase II [GO:0045944] -P18846 reviewed ATF1_HUMAN Cyclic AMP-dependent transcription factor ATF-1 (cAMP-dependent transcription factor ATF-1) (Activating transcription factor 1) (Protein TREB36) ATF1 cAMP-mediated signaling [GO:0019933]; positive regulation of DNA replication [GO:0045740]; positive regulation of neuron projection development [GO:0010976]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein-containing complex assembly [GO:0065003]; regulation of transcription by RNA polymerase II [GO:0006357]; response to cobalt ion [GO:0032025]; response to purine-containing compound [GO:0014074] -P18847 reviewed ATF3_HUMAN Cyclic AMP-dependent transcription factor ATF-3 (cAMP-dependent transcription factor ATF-3) (Activating transcription factor 3) ATF3 cellular response to amino acid starvation [GO:0034198]; endoplasmic reticulum unfolded protein response [GO:0030968]; gluconeogenesis [GO:0006094]; negative regulation of ERK1 and ERK2 cascade [GO:0070373]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of gene expression [GO:0010628]; positive regulation of TRAIL-activated apoptotic signaling pathway [GO:1903984]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; response to endoplasmic reticulum stress [GO:0034976]; skeletal muscle cell differentiation [GO:0035914] -P18848 reviewed ATF4_HUMAN Cyclic AMP-dependent transcription factor ATF-4 (cAMP-dependent transcription factor ATF-4) (Activating transcription factor 4) (Cyclic AMP-responsive element-binding protein 2) (CREB-2) (cAMP-responsive element-binding protein 2) (Tax-responsive enhancer element-binding protein 67) (TaxREB67) ATF4 CREB2 TXREB bone mineralization [GO:0030282]; cellular response to amino acid starvation [GO:0034198]; cellular response to glucose starvation [GO:0042149]; cellular response to hypoxia [GO:0071456]; cellular response to leucine starvation [GO:1990253]; cellular response to oxidative stress [GO:0034599]; cellular response to UV [GO:0034644]; circadian regulation of gene expression [GO:0032922]; embryonic hemopoiesis [GO:0035162]; endoplasmic reticulum unfolded protein response [GO:0030968]; gamma-aminobutyric acid signaling pathway [GO:0007214]; gluconeogenesis [GO:0006094]; HRI-mediated signaling [GO:0140468]; integrated stress response signaling [GO:0140467]; intracellular calcium ion homeostasis [GO:0006874]; intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress [GO:0070059]; L-asparagine metabolic process [GO:0070982]; lens fiber cell morphogenesis [GO:0070309]; mRNA transcription by RNA polymerase II [GO:0042789]; negative regulation of cold-induced thermogenesis [GO:0120163]; negative regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway [GO:1903377]; negative regulation of potassium ion transport [GO:0043267]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of translational initiation in response to stress [GO:0032057]; neuron differentiation [GO:0030182]; PERK-mediated unfolded protein response [GO:0036499]; positive regulation of apoptotic process [GO:0043065]; positive regulation of biomineral tissue development [GO:0070169]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of sodium-dependent phosphate transport [GO:2000120]; positive regulation of transcription by RNA polymerase I [GO:0045943]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular associated smooth muscle cell apoptotic process [GO:1905461]; positive regulation of vascular endothelial growth factor production [GO:0010575]; regulation of DNA-templated transcription [GO:0006355]; regulation of osteoblast differentiation [GO:0045667]; regulation of synaptic plasticity [GO:0048167]; regulation of transcription by RNA polymerase II [GO:0006357]; response to endoplasmic reticulum stress [GO:0034976]; response to manganese-induced endoplasmic reticulum stress [GO:1990737]; response to nutrient levels [GO:0031667]; response to toxic substance [GO:0009636]; transcription by RNA polymerase II [GO:0006366] -P18850 reviewed ATF6A_HUMAN Cyclic AMP-dependent transcription factor ATF-6 alpha (cAMP-dependent transcription factor ATF-6 alpha) (Activating transcription factor 6 alpha) (ATF6-alpha) [Cleaved into: Processed cyclic AMP-dependent transcription factor ATF-6 alpha] ATF6 ATF6-mediated unfolded protein response [GO:0036500]; endoplasmic reticulum unfolded protein response [GO:0030968]; ERAD pathway [GO:0036503]; eye development [GO:0001654]; positive regulation of apoptotic process [GO:0043065]; positive regulation of ATF6-mediated unfolded protein response [GO:1903893]; positive regulation of autophagy [GO:0010508]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein folding [GO:0006457]; regulation of transcription by RNA polymerase II [GO:0006357]; response to endoplasmic reticulum stress [GO:0034976]; signal transduction [GO:0007165]; visual perception [GO:0007601] -P19338 reviewed NUCL_HUMAN Nucleolin (Protein C23) NCL angiogenesis [GO:0001525]; cellular response to epidermal growth factor stimulus [GO:0071364]; cellular response to leukemia inhibitory factor [GO:1990830]; negative regulation of insulin receptor signaling pathway [GO:0046627]; negative regulation of translation [GO:0017148]; positive regulation of mRNA splicing, via spliceosome [GO:0048026]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription of nucleolar large rRNA by RNA polymerase I [GO:1901838]; regulation of peptidyl-tyrosine phosphorylation [GO:0050730] -P19419 reviewed ELK1_HUMAN ETS domain-containing protein Elk-1 ELK1 cellular response to gamma radiation [GO:0071480]; cellular response to testosterone stimulus [GO:0071394]; gene expression [GO:0010467]; hippocampal neuron apoptotic process [GO:0110088]; liver development [GO:0001889]; lung development [GO:0030324]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; response to ethanol [GO:0045471]; response to fibroblast growth factor [GO:0071774]; response to light stimulus [GO:0009416] -P19438 reviewed TNR1A_HUMAN Tumor necrosis factor receptor superfamily member 1A (Tumor necrosis factor receptor 1) (TNF-R1) (Tumor necrosis factor receptor type I) (TNF-RI) (TNFR-I) (p55) (p60) (CD antigen CD120a) [Cleaved into: Tumor necrosis factor receptor superfamily member 1A, membrane form; Tumor necrosis factor-binding protein 1 (TBPI)] TNFRSF1A TNFAR TNFR1 aortic valve development [GO:0003176]; cellular response to mechanical stimulus [GO:0071260]; cytokine-mediated signaling pathway [GO:0019221]; defense response to bacterium [GO:0042742]; extrinsic apoptotic signaling pathway via death domain receptors [GO:0008625]; inflammatory response [GO:0006954]; intrinsic apoptotic signaling pathway in response to DNA damage [GO:0008630]; negative regulation of cardiac muscle hypertrophy [GO:0010614]; negative regulation of extracellular matrix constituent secretion [GO:0003332]; negative regulation of inflammatory response [GO:0050728]; positive regulation of amide metabolic process [GO:0034250]; positive regulation of apoptotic process involved in morphogenesis [GO:1902339]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of execution phase of apoptosis [GO:1900119]; positive regulation of inflammatory response [GO:0050729]; positive regulation of lipid metabolic process [GO:0045834]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; prostaglandin metabolic process [GO:0006693]; protein localization to plasma membrane [GO:0072659]; pulmonary valve development [GO:0003177]; regulation of establishment of endothelial barrier [GO:1903140]; regulation of membrane lipid metabolic process [GO:1905038]; regulation of tumor necrosis factor-mediated signaling pathway [GO:0010803]; transcription by RNA polymerase II [GO:0006366]; tumor necrosis factor-mediated signaling pathway [GO:0033209] -P19484 reviewed TFEB_HUMAN Transcription factor EB (Class E basic helix-loop-helix protein 35) (bHLHe35) TFEB BHLHE35 adaptive immune response [GO:0002250]; antibacterial innate immune response [GO:0140367]; autophagy [GO:0006914]; cellular response to amino acid starvation [GO:0034198]; cellular response to starvation [GO:0009267]; embryonic placenta development [GO:0001892]; humoral immune response [GO:0006959]; lysosome localization [GO:0032418]; lysosome organization [GO:0007040]; positive regulation of autophagy [GO:0010508]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357] -P19532 reviewed TFE3_HUMAN Transcription factor E3 (Class E basic helix-loop-helix protein 33) (bHLHe33) TFE3 BHLHE33 adaptive immune response [GO:0002250]; humoral immune response [GO:0006959]; lysosome organization [GO:0007040]; negative regulation of cold-induced thermogenesis [GO:0120163]; positive regulation of brown fat cell differentiation [GO:0090336]; positive regulation of cell adhesion [GO:0045785]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of osteoclast differentiation [GO:0045670]; regulation of transcription by RNA polymerase II [GO:0006357] -P19544 reviewed WT1_HUMAN Wilms tumor protein (WT33) WT1 adrenal cortex formation [GO:0035802]; adrenal gland development [GO:0030325]; branching involved in ureteric bud morphogenesis [GO:0001658]; camera-type eye development [GO:0043010]; cardiac muscle cell fate commitment [GO:0060923]; cellular response to cAMP [GO:0071320]; cellular response to gonadotropin stimulus [GO:0071371]; diaphragm development [GO:0060539]; epithelial cell differentiation [GO:0030855]; germ cell development [GO:0007281]; glomerular basement membrane development [GO:0032836]; glomerulus development [GO:0032835]; gonad development [GO:0008406]; heart development [GO:0007507]; kidney development [GO:0001822]; male genitalia development [GO:0030539]; male gonad development [GO:0008584]; mesenchymal to epithelial transition [GO:0060231]; metanephric epithelium development [GO:0072207]; metanephric mesenchyme development [GO:0072075]; metanephric S-shaped body morphogenesis [GO:0072284]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cell growth [GO:0030308]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of female gonad development [GO:2000195]; negative regulation of gene expression via chromosomal CpG island methylation [GO:0044027]; negative regulation of metanephric glomerular mesangial cell proliferation [GO:0072302]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of translation [GO:0017148]; podocyte differentiation [GO:0072112]; positive regulation of apoptotic process [GO:0043065]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of heart growth [GO:0060421]; positive regulation of male gonad development [GO:2000020]; positive regulation of metanephric ureteric bud development [GO:2001076]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of transcription by RNA polymerase II [GO:0045944]; posterior mesonephric tubule development [GO:0072166]; regulation of animal organ formation [GO:0003156]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA splicing [GO:0008380]; sex determination [GO:0007530]; thorax and anterior abdomen determination [GO:0007356]; tissue development [GO:0009888]; ureteric bud development [GO:0001657]; vasculogenesis [GO:0001570]; visceral serous pericardium development [GO:0061032] -P19622 reviewed HME2_HUMAN Homeobox protein engrailed-2 (Homeobox protein en-2) (Hu-En-2) EN2 dopaminergic neuron differentiation [GO:0071542]; embryonic brain development [GO:1990403]; hindbrain development [GO:0030902]; midbrain development [GO:0030901]; negative regulation of neuron apoptotic process [GO:0043524]; neuron development [GO:0048666]; neuron differentiation [GO:0030182]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -P19634 reviewed SL9A1_HUMAN Sodium/hydrogen exchanger 1 (APNH) (Na(+)/H(+) antiporter, amiloride-sensitive) (Na(+)/H(+) exchanger 1) (NHE-1) (Solute carrier family 9 member 1) SLC9A1 APNH1 NHE1 cardiac muscle cell contraction [GO:0086003]; cardiac muscle cell differentiation [GO:0055007]; cell migration [GO:0016477]; cellular response to acidic pH [GO:0071468]; cellular response to antibiotic [GO:0071236]; cellular response to cold [GO:0070417]; cellular response to electrical stimulus [GO:0071257]; cellular response to epinephrine stimulus [GO:0071872]; cellular response to hypoxia [GO:0071456]; cellular response to insulin stimulus [GO:0032869]; cellular response to mechanical stimulus [GO:0071260]; cellular response to organic cyclic compound [GO:0071407]; intracellular sodium ion homeostasis [GO:0006883]; maintenance of cell polarity [GO:0030011]; monoatomic ion transport [GO:0006811]; negative regulation of apoptotic process [GO:0043066]; positive regulation of action potential [GO:0045760]; positive regulation of apoptotic process [GO:0043065]; positive regulation of calcineurin-NFAT signaling cascade [GO:0070886]; positive regulation of calcium:sodium antiporter activity [GO:1903281]; positive regulation of cardiac muscle hypertrophy [GO:0010613]; positive regulation of cell growth [GO:0030307]; positive regulation of mitochondrial membrane permeability [GO:0035794]; positive regulation of the force of heart contraction [GO:0098735]; positive regulation of transcription by RNA polymerase II [GO:0045944]; potassium ion transmembrane transport [GO:0071805]; protein complex oligomerization [GO:0051259]; proton transmembrane transport [GO:1902600]; regulation of cardiac muscle cell membrane potential [GO:0086036]; regulation of cardiac muscle contraction by calcium ion signaling [GO:0010882]; regulation of focal adhesion assembly [GO:0051893]; regulation of intracellular pH [GO:0051453]; regulation of pH [GO:0006885]; regulation of stress fiber assembly [GO:0051492]; regulation of the force of heart contraction by cardiac conduction [GO:0086092]; response to acidic pH [GO:0010447]; response to muscle stretch [GO:0035994]; sodium ion export across plasma membrane [GO:0036376]; sodium ion import across plasma membrane [GO:0098719]; stem cell differentiation [GO:0048863] -P19793 reviewed RXRA_HUMAN Retinoic acid receptor RXR-alpha (Nuclear receptor subfamily 2 group B member 1) (Retinoid X receptor alpha) RXRA NR2B1 cell differentiation [GO:0030154]; hormone-mediated signaling pathway [GO:0009755]; mRNA transcription by RNA polymerase II [GO:0042789]; negative regulation of transcription by RNA polymerase II [GO:0000122]; peroxisome proliferator activated receptor signaling pathway [GO:0035357]; positive regulation of bone mineralization [GO:0030501]; positive regulation of cholesterol efflux [GO:0010875]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of thyroid hormone mediated signaling pathway [GO:0002157]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transporter activity [GO:0032411]; positive regulation of vitamin D receptor signaling pathway [GO:0070564]; response to retinoic acid [GO:0032526]; retinoic acid receptor signaling pathway [GO:0048384] -P19838 reviewed NFKB1_HUMAN Nuclear factor NF-kappa-B p105 subunit (DNA-binding factor KBF1) (EBP-1) (Nuclear factor of kappa light polypeptide gene enhancer in B-cells 1) [Cleaved into: Nuclear factor NF-kappa-B p50 subunit] NFKB1 antibacterial innate immune response [GO:0140367]; apoptotic process [GO:0006915]; B cell receptor signaling pathway [GO:0050853]; canonical NF-kappaB signal transduction [GO:0007249]; cellular response to angiotensin [GO:1904385]; cellular response to dsRNA [GO:0071359]; cellular response to interleukin-1 [GO:0071347]; cellular response to interleukin-17 [GO:0097398]; cellular response to interleukin-6 [GO:0071354]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to mechanical stimulus [GO:0071260]; cellular response to nicotine [GO:0071316]; cellular response to tumor necrosis factor [GO:0071356]; cellular response to virus [GO:0098586]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; JNK cascade [GO:0007254]; mammary gland involution [GO:0060056]; negative regulation of apoptotic process [GO:0043066]; negative regulation of calcidiol 1-monooxygenase activity [GO:0010956]; negative regulation of cholesterol transport [GO:0032375]; negative regulation of gene expression [GO:0010629]; negative regulation of inflammatory response [GO:0050728]; negative regulation of interleukin-12 production [GO:0032695]; negative regulation of protein metabolic process [GO:0051248]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of vitamin D biosynthetic process [GO:0010957]; non-canonical NF-kappaB signal transduction [GO:0038061]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of hyaluronan biosynthetic process [GO:1900127]; positive regulation of lipid storage [GO:0010884]; positive regulation of macrophage derived foam cell differentiation [GO:0010744]; positive regulation of miRNA metabolic process [GO:2000630]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; regulation of transcription by RNA polymerase II [GO:0006357]; response to cytokine [GO:0034097]; response to muscle stretch [GO:0035994]; transcription by RNA polymerase II [GO:0006366] -P20226 reviewed TBP_HUMAN TATA-box-binding protein (TATA sequence-binding protein) (TATA-binding factor) (TATA-box factor) (Transcription initiation factor TFIID TBP subunit) TBP GTF2D1 TF2D TFIID DNA-templated transcription initiation [GO:0006352]; mRNA transcription by RNA polymerase II [GO:0042789]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; RNA polymerase II preinitiation complex assembly [GO:0051123]; spermatogenesis [GO:0007283]; transcription by RNA polymerase II [GO:0006366]; transcription by RNA polymerase III [GO:0006383]; transcription initiation at RNA polymerase II promoter [GO:0006367] -P20264 reviewed PO3F3_HUMAN POU domain, class 3, transcription factor 3 (Brain-specific homeobox/POU domain protein 1) (Brain-1) (Brn-1) (Octamer-binding protein 8) (Oct-8) (Octamer-binding transcription factor 8) (OTF-8) POU3F3 BRN1 OTF8 central nervous system development [GO:0007417]; cerebral cortex radially oriented cell migration [GO:0021799]; chemical homeostasis [GO:0048878]; forebrain ventricular zone progenitor cell division [GO:0021869]; metanephric ascending thin limb development [GO:0072218]; metanephric DCT cell differentiation [GO:0072240]; metanephric loop of Henle development [GO:0072236]; metanephric macula densa development [GO:0072227]; metanephric thick ascending limb development [GO:0072233]; negative regulation of apoptotic process [GO:0043066]; negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; urea transmembrane transport [GO:0071918] -P20265 reviewed PO3F2_HUMAN POU domain, class 3, transcription factor 2 (Brain-specific homeobox/POU domain protein 2) (Brain-2) (Brn-2) (Nervous system-specific octamer-binding transcription factor N-Oct-3) (Octamer-binding protein 7) (Oct-7) (Octamer-binding transcription factor 7) (OTF-7) POU3F2 BRN2 OCT7 OTF7 cellular response to organic substance [GO:0071310]; cerebral cortex radially oriented cell migration [GO:0021799]; epidermis development [GO:0008544]; forebrain astrocyte development [GO:0021897]; forebrain ventricular zone progenitor cell division [GO:0021869]; hypothalamus cell differentiation [GO:0021979]; myelination in peripheral nervous system [GO:0022011]; negative regulation of gene expression [GO:0010629]; nervous system development [GO:0007399]; neuroendocrine cell differentiation [GO:0061101]; neurohypophysis development [GO:0021985]; neuron development [GO:0048666]; neuron differentiation [GO:0030182]; neuron fate commitment [GO:0048663]; neuron fate specification [GO:0048665]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of multicellular organism growth [GO:0040018]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of axonogenesis [GO:0050770]; regulation of cell differentiation [GO:0045595]; regulation of transcription by RNA polymerase II [GO:0006357] -P20393 reviewed NR1D1_HUMAN Nuclear receptor subfamily 1 group D member 1 (Rev-erbA-alpha) (V-erbA-related protein 1) (EAR-1) NR1D1 EAR1 HREV THRAL cell differentiation [GO:0030154]; cellular response to interleukin-1 [GO:0071347]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to tumor necrosis factor [GO:0071356]; cholesterol homeostasis [GO:0042632]; circadian regulation of gene expression [GO:0032922]; circadian temperature homeostasis [GO:0060086]; glycogen biosynthetic process [GO:0005978]; hormone-mediated signaling pathway [GO:0009755]; intracellular glucose homeostasis [GO:0001678]; negative regulation of astrocyte activation [GO:0061889]; negative regulation of canonical NF-kappaB signal transduction [GO:0043124]; negative regulation of cold-induced thermogenesis [GO:0120163]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of inflammatory response [GO:0050728]; negative regulation of microglial cell activation [GO:1903979]; negative regulation of neuroinflammatory response [GO:0150079]; negative regulation of toll-like receptor 4 signaling pathway [GO:0034144]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of bile acid biosynthetic process [GO:0070859]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proteasomal protein catabolic process [GO:0010498]; protein destabilization [GO:0031648]; regulation of circadian rhythm [GO:0042752]; regulation of circadian sleep/wake cycle [GO:0042749]; regulation of fat cell differentiation [GO:0045598]; regulation of insulin secretion involved in cellular response to glucose stimulus [GO:0061178]; regulation of lipid metabolic process [GO:0019216]; regulation of type B pancreatic cell proliferation [GO:0061469]; response to leptin [GO:0044321] -P20719 reviewed HXA5_HUMAN Homeobox protein Hox-A5 (Homeobox protein Hox-1C) HOXA5 HOX1C anterior/posterior pattern specification [GO:0009952]; bronchiole development [GO:0060435]; cell migration [GO:0016477]; cell-cell signaling involved in mammary gland development [GO:0060764]; embryonic skeletal system morphogenesis [GO:0048704]; epithelial tube branching involved in lung morphogenesis [GO:0060441]; intestinal epithelial cell maturation [GO:0060574]; lung alveolus development [GO:0048286]; lung goblet cell differentiation [GO:0060480]; lung-associated mesenchyme development [GO:0060484]; mammary gland alveolus development [GO:0060749]; mammary gland epithelial cell differentiation [GO:0060644]; mesenchymal-epithelial cell signaling [GO:0060638]; multicellular organism growth [GO:0035264]; negative regulation of angiogenesis [GO:0016525]; negative regulation of erythrocyte differentiation [GO:0045647]; positive regulation of apoptotic process [GO:0043065]; positive regulation of gene expression [GO:0010628]; positive regulation of myeloid cell differentiation [GO:0045639]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of mammary gland epithelial cell proliferation [GO:0033599]; regulation of transcription by RNA polymerase II [GO:0006357]; respiratory system process [GO:0003016]; thyroid gland development [GO:0030878]; trachea cartilage morphogenesis [GO:0060535] -P20749 reviewed BCL3_HUMAN B-cell lymphoma 3 protein (BCL-3) (Proto-oncogene BCL3) BCL3 BCL4 D19S37 antimicrobial humoral response [GO:0019730]; canonical NF-kappaB signal transduction [GO:0007249]; defense response to bacterium [GO:0042742]; defense response to protozoan [GO:0042832]; DNA damage response [GO:0006974]; DNA damage response, signal transduction by p53 class mediator [GO:0030330]; extracellular matrix organization [GO:0030198]; follicular dendritic cell differentiation [GO:0002268]; germinal center formation [GO:0002467]; humoral immune response mediated by circulating immunoglobulin [GO:0002455]; intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:0042771]; marginal zone B cell differentiation [GO:0002315]; negative regulation of apoptotic process [GO:0043066]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of interleukin-8 production [GO:0032717]; negative regulation of NF-kappaB transcription factor activity [GO:0032088]; negative regulation of receptor signaling pathway via JAK-STAT [GO:0046426]; negative regulation of T cell apoptotic process [GO:0070233]; negative regulation of tumor necrosis factor production [GO:0032720]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of interleukin-10 production [GO:0032733]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of translation [GO:0045727]; positive regulation of type II interferon production [GO:0032729]; protein import into nucleus [GO:0006606]; regulation of apoptotic process [GO:0042981]; regulation of DNA binding [GO:0051101]; regulation of non-canonical NF-kappaB signal transduction [GO:1901222]; response to UV-C [GO:0010225]; response to virus [GO:0009615]; spleen development [GO:0048536]; T cell apoptotic process [GO:0070231]; T-helper 1 type immune response [GO:0042088]; T-helper 2 cell differentiation [GO:0045064] -P20809 reviewed IL11_HUMAN Interleukin-11 (IL-11) (Adipogenesis inhibitory factor) (AGIF) (Oprelvekin) IL11 B cell differentiation [GO:0030183]; cell population proliferation [GO:0008283]; fat cell differentiation [GO:0045444]; interleukin-11-mediated signaling pathway [GO:0038154]; megakaryocyte differentiation [GO:0030219]; negative regulation of hormone secretion [GO:0046888]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of transcription by RNA polymerase II [GO:0045944] -P20823 reviewed HNF1A_HUMAN Hepatocyte nuclear factor 1-alpha (HNF-1-alpha) (HNF-1A) (Liver-specific transcription factor LF-B1) (LFB1) (Transcription factor 1) (TCF-1) HNF1A TCF1 glucose homeostasis [GO:0042593]; glucose import [GO:0046323]; insulin secretion [GO:0030073]; liver development [GO:0001889]; pancreas development [GO:0031016]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; regulation of transcription by RNA polymerase II [GO:0006357]; renal glucose absorption [GO:0035623] -P21453 reviewed S1PR1_HUMAN Sphingosine 1-phosphate receptor 1 (S1P receptor 1) (S1P1) (Endothelial differentiation G-protein coupled receptor 1) (Sphingosine 1-phosphate receptor Edg-1) (S1P receptor Edg-1) (CD antigen CD363) S1PR1 CHEDG1 EDG1 actin cytoskeleton organization [GO:0030036]; adenylate cyclase-activating G protein-coupled receptor signaling pathway [GO:0007189]; adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway [GO:0007193]; angiogenesis [GO:0001525]; blood vessel maturation [GO:0001955]; brain development [GO:0007420]; cardiac muscle tissue growth involved in heart morphogenesis [GO:0003245]; cell adhesion [GO:0007155]; cell migration [GO:0016477]; cell population proliferation [GO:0008283]; chemotaxis [GO:0006935]; endothelial cell differentiation [GO:0045446]; G protein-coupled receptor signaling pathway [GO:0007186]; heart trabecula morphogenesis [GO:0061384]; lamellipodium assembly [GO:0030032]; leukocyte chemotaxis [GO:0030595]; negative regulation of stress fiber assembly [GO:0051497]; neuron differentiation [GO:0030182]; phospholipase C-activating G protein-coupled receptor signaling pathway [GO:0007200]; positive regulation of cell migration [GO:0030335]; positive regulation of positive chemotaxis [GO:0050927]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of bone mineralization [GO:0030500]; regulation of bone resorption [GO:0045124]; regulation of cell adhesion [GO:0030155]; regulation of metabolic process [GO:0019222]; sphingosine-1-phosphate receptor signaling pathway [GO:0003376]; T cell migration [GO:0072678]; transmission of nerve impulse [GO:0019226] -P21675 reviewed TAF1_HUMAN Transcription initiation factor TFIID subunit 1 (EC 2.3.1.48) (EC 2.7.11.1) (Cell cycle gene 1 protein) (TBP-associated factor 250 kDa) (p250) (Transcription initiation factor TFIID 250 kDa subunit) (TAF(II)250) (TAFII-250) (TAFII250) TAF1 BA2R CCG1 CCGS TAF2A cellular response to ATP [GO:0071318]; cellular response to UV [GO:0034644]; DNA damage response [GO:0006974]; midbrain development [GO:0030901]; mRNA transcription by RNA polymerase II [GO:0042789]; negative regulation of gene expression [GO:0010629]; negative regulation of protein autoubiquitination [GO:1905524]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of ubiquitin-dependent protein catabolic process [GO:2000059]; peptidyl-serine phosphorylation [GO:0018105]; peptidyl-threonine phosphorylation [GO:0018107]; positive regulation of androgen receptor activity [GO:2000825]; positive regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032436]; positive regulation of protein binding [GO:0032092]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; protein autophosphorylation [GO:0046777]; protein phosphorylation [GO:0006468]; protein polyubiquitination [GO:0000209]; protein stabilization [GO:0050821]; regulation of cell cycle G1/S phase transition [GO:1902806]; regulation of signal transduction by p53 class mediator [GO:1901796]; RNA polymerase II preinitiation complex assembly [GO:0051123]; transcription by RNA polymerase II [GO:0006366]; transcription initiation at RNA polymerase I promoter [GO:0006361]; transcription initiation at RNA polymerase II promoter [GO:0006367]; ubiquitin-dependent protein catabolic process [GO:0006511] -P21802 reviewed FGFR2_HUMAN Fibroblast growth factor receptor 2 (FGFR-2) (EC 2.7.10.1) (K-sam) (KGFR) (Keratinocyte growth factor receptor) (CD antigen CD332) FGFR2 BEK KGFR KSAM angiogenesis [GO:0001525]; animal organ morphogenesis [GO:0009887]; apoptotic process [GO:0006915]; axonogenesis [GO:0007409]; bone development [GO:0060348]; bone mineralization [GO:0030282]; bone morphogenesis [GO:0060349]; branch elongation involved in salivary gland morphogenesis [GO:0060667]; branching involved in labyrinthine layer morphogenesis [GO:0060670]; branching involved in prostate gland morphogenesis [GO:0060442]; branching involved in salivary gland morphogenesis [GO:0060445]; branching morphogenesis of a nerve [GO:0048755]; bud elongation involved in lung branching [GO:0060449]; cell fate commitment [GO:0045165]; cell-cell signaling [GO:0007267]; cellular response to hypoxia [GO:0071456]; cellular response to retinoic acid [GO:0071300]; cellular response to transforming growth factor beta stimulus [GO:0071560]; digestive tract development [GO:0048565]; embryonic cranial skeleton morphogenesis [GO:0048701]; embryonic digestive tract morphogenesis [GO:0048557]; embryonic organ development [GO:0048568]; embryonic organ morphogenesis [GO:0048562]; embryonic pattern specification [GO:0009880]; endochondral bone growth [GO:0003416]; epidermis morphogenesis [GO:0048730]; epithelial cell differentiation [GO:0030855]; epithelial cell proliferation involved in salivary gland morphogenesis [GO:0060664]; epithelial to mesenchymal transition [GO:0001837]; fibroblast growth factor receptor signaling pathway [GO:0008543]; fibroblast growth factor receptor signaling pathway involved in hemopoiesis [GO:0035603]; fibroblast growth factor receptor signaling pathway involved in mammary gland specification [GO:0060595]; fibroblast growth factor receptor signaling pathway involved in negative regulation of apoptotic process in bone marrow cell [GO:0035602]; fibroblast growth factor receptor signaling pathway involved in orbitofrontal cortex development [GO:0035607]; fibroblast growth factor receptor signaling pathway involved in positive regulation of cell proliferation in bone marrow [GO:0035604]; gland morphogenesis [GO:0022612]; hair follicle morphogenesis [GO:0031069]; in utero embryonic development [GO:0001701]; inner ear morphogenesis [GO:0042472]; lacrimal gland development [GO:0032808]; lateral sprouting from an epithelium [GO:0060601]; limb bud formation [GO:0060174]; lung alveolus development [GO:0048286]; lung development [GO:0030324]; lung lobe morphogenesis [GO:0060463]; lung-associated mesenchyme development [GO:0060484]; mammary gland bud formation [GO:0060615]; membranous septum morphogenesis [GO:0003149]; mesenchymal cell differentiation [GO:0048762]; mesenchymal cell differentiation involved in lung development [GO:0060915]; mesenchymal cell proliferation involved in lung development [GO:0060916]; mesodermal cell differentiation [GO:0048333]; midbrain development [GO:0030901]; morphogenesis of embryonic epithelium [GO:0016331]; negative regulation of keratinocyte proliferation [GO:0010839]; negative regulation of transcription by RNA polymerase II [GO:0000122]; odontogenesis [GO:0042476]; orbitofrontal cortex development [GO:0021769]; organ growth [GO:0035265]; otic vesicle formation [GO:0030916]; outflow tract septum morphogenesis [GO:0003148]; peptidyl-tyrosine phosphorylation [GO:0018108]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of cardiac muscle cell proliferation [GO:0060045]; positive regulation of cell cycle [GO:0045787]; positive regulation of cell division [GO:0051781]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of epithelial cell proliferation involved in lung morphogenesis [GO:0060501]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of mesenchymal cell proliferation [GO:0002053]; positive regulation of phospholipase activity [GO:0010518]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular associated smooth muscle cell proliferation [GO:1904707]; positive regulation of Wnt signaling pathway [GO:0030177]; post-embryonic development [GO:0009791]; prostate epithelial cord arborization involved in prostate glandular acinus morphogenesis [GO:0060527]; prostate epithelial cord elongation [GO:0060523]; prostate gland morphogenesis [GO:0060512]; protein autophosphorylation [GO:0046777]; pyramidal neuron development [GO:0021860]; regulation of ERK1 and ERK2 cascade [GO:0070372]; regulation of morphogenesis of a branching structure [GO:0060688]; regulation of osteoblast differentiation [GO:0045667]; regulation of osteoblast proliferation [GO:0033688]; regulation of smooth muscle cell differentiation [GO:0051150]; regulation of smoothened signaling pathway [GO:0008589]; reproductive structure development [GO:0048608]; response to ethanol [GO:0045471]; response to lipopolysaccharide [GO:0032496]; skeletal system morphogenesis [GO:0048705]; squamous basal epithelial stem cell differentiation involved in prostate gland acinus development [GO:0060529]; ureteric bud development [GO:0001657]; ventricular cardiac muscle tissue morphogenesis [GO:0055010]; ventricular zone neuroblast division [GO:0021847] -P22003 reviewed BMP5_HUMAN Bone morphogenetic protein 5 (BMP-5) BMP5 allantois development [GO:1905069]; anterior head development [GO:0097065]; BMP signaling pathway [GO:0030509]; cardiac muscle tissue development [GO:0048738]; cardiac septum morphogenesis [GO:0060411]; cartilage development [GO:0051216]; chorio-allantoic fusion [GO:0060710]; ear development [GO:0043583]; endocardial cushion formation [GO:0003272]; heart trabecula morphogenesis [GO:0061384]; hindbrain development [GO:0030902]; male genitalia development [GO:0030539]; negative regulation of aldosterone biosynthetic process [GO:0032348]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of cortisol biosynthetic process [GO:2000065]; negative regulation of epithelial to mesenchymal transition [GO:0010719]; negative regulation of extrinsic apoptotic signaling pathway via death domain receptors [GO:1902042]; negative regulation of insulin-like growth factor receptor signaling pathway [GO:0043569]; negative regulation of mononuclear cell migration [GO:0071676]; negative regulation of steroid biosynthetic process [GO:0010894]; neural fold elevation formation [GO:0021502]; ossification [GO:0001503]; pattern specification process [GO:0007389]; pericardium morphogenesis [GO:0003344]; pharyngeal system development [GO:0060037]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of dendrite development [GO:1900006]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of transcription by RNA polymerase II [GO:0045944]; skeletal system development [GO:0001501]; type B pancreatic cell development [GO:0003323] -P22004 reviewed BMP6_HUMAN Bone morphogenetic protein 6 (BMP-6) (VG-1-related protein) (VG-1-R) (VGR-1) BMP6 VGR BMP signaling pathway [GO:0030509]; bone development [GO:0060348]; cartilage development [GO:0051216]; cellular response to BMP stimulus [GO:0071773]; cellular response to iron ion [GO:0071281]; cellular response to mechanical stimulus [GO:0071260]; endochondral ossification [GO:0001958]; eye development [GO:0001654]; immune response [GO:0006955]; inflammatory response [GO:0006954]; intracellular iron ion homeostasis [GO:0006879]; kidney development [GO:0001822]; male genitalia development [GO:0030539]; multicellular organismal-level iron ion homeostasis [GO:0060586]; negative regulation of adherens junction organization [GO:1903392]; negative regulation of cell-cell adhesion mediated by cadherin [GO:2000048]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron differentiation [GO:0030182]; osteoblast differentiation [GO:0001649]; positive regulation of aldosterone biosynthetic process [GO:0032349]; positive regulation of aldosterone secretion [GO:2000860]; positive regulation of bone mineralization [GO:0030501]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of chondrocyte differentiation [GO:0032332]; positive regulation of endothelial cell differentiation [GO:0045603]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of gene expression [GO:0010628]; positive regulation of lipopolysaccharide-mediated signaling pathway [GO:0031666]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of protein secretion [GO:0050714]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular permeability [GO:0043117]; response to activity [GO:0014823]; response to glucocorticoid [GO:0051384]; response to magnesium ion [GO:0032026]; response to retinoic acid [GO:0032526]; skeletal system development [GO:0001501]; type B pancreatic cell development [GO:0003323] -P22301 reviewed IL10_HUMAN Interleukin-10 (IL-10) (Cytokine synthesis inhibitory factor) (CSIF) IL10 B cell differentiation [GO:0030183]; B cell proliferation [GO:0042100]; branching involved in labyrinthine layer morphogenesis [GO:0060670]; cellular response to estradiol stimulus [GO:0071392]; cellular response to hepatocyte growth factor stimulus [GO:0035729]; cellular response to lipopolysaccharide [GO:0071222]; chronic inflammatory response to antigenic stimulus [GO:0002439]; cytoplasmic sequestering of NF-kappaB [GO:0007253]; defense response to bacterium [GO:0042742]; defense response to protozoan [GO:0042832]; endothelial cell apoptotic process [GO:0072577]; hemopoiesis [GO:0030097]; interleukin-10-mediated signaling pathway [GO:0140105]; leukocyte chemotaxis [GO:0030595]; liver regeneration [GO:0097421]; negative regulation of apoptotic process [GO:0043066]; negative regulation of autophagy [GO:0010507]; negative regulation of B cell proliferation [GO:0030889]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of chemokine (C-C motif) ligand 5 production [GO:0071650]; negative regulation of chronic inflammatory response to antigenic stimulus [GO:0002875]; negative regulation of cytokine activity [GO:0060302]; negative regulation of cytokine production [GO:0001818]; negative regulation of cytokine production involved in immune response [GO:0002719]; negative regulation of heterotypic cell-cell adhesion [GO:0034115]; negative regulation of inflammatory response [GO:0050728]; negative regulation of interferon-alpha production [GO:0032687]; negative regulation of interleukin-1 production [GO:0032692]; negative regulation of interleukin-12 production [GO:0032695]; negative regulation of interleukin-18 production [GO:0032701]; negative regulation of interleukin-6 production [GO:0032715]; negative regulation of interleukin-8 production [GO:0032717]; negative regulation of membrane protein ectodomain proteolysis [GO:0051045]; negative regulation of MHC class II biosynthetic process [GO:0045347]; negative regulation of mitotic cell cycle [GO:0045930]; negative regulation of myeloid dendritic cell activation [GO:0030886]; negative regulation of nitric oxide biosynthetic process [GO:0045019]; negative regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway [GO:1903377]; negative regulation of T cell proliferation [GO:0042130]; negative regulation of tumor necrosis factor production [GO:0032720]; negative regulation of type II interferon production [GO:0032689]; negative regulation of vascular associated smooth muscle cell proliferation [GO:1904706]; positive regulation of B cell apoptotic process [GO:0002904]; positive regulation of cell cycle [GO:0045787]; positive regulation of cytokine production [GO:0001819]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of heterotypic cell-cell adhesion [GO:0034116]; positive regulation of immunoglobulin production [GO:0002639]; positive regulation of macrophage activation [GO:0043032]; positive regulation of MHC class II biosynthetic process [GO:0045348]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of plasma cell differentiation [GO:1900100]; positive regulation of receptor signaling pathway via JAK-STAT [GO:0046427]; positive regulation of signaling receptor activity [GO:2000273]; positive regulation of sprouting angiogenesis [GO:1903672]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular associated smooth muscle cell proliferation [GO:1904707]; regulation of gene expression [GO:0010468]; regulation of isotype switching [GO:0045191]; regulation of response to wounding [GO:1903034]; regulation of synapse organization [GO:0050807]; response to activity [GO:0014823]; response to carbon monoxide [GO:0034465]; response to glucocorticoid [GO:0051384]; response to inactivity [GO:0014854]; response to insulin [GO:0032868]; response to molecule of bacterial origin [GO:0002237]; response to xenobiotic stimulus [GO:0009410]; type 2 immune response [GO:0042092] -P22392 reviewed NDKB_HUMAN Nucleoside diphosphate kinase B (NDK B) (NDP kinase B) (EC 2.7.4.6) (C-myc purine-binding transcription factor PUF) (Histidine protein kinase NDKB) (EC 2.7.13.3) (nm23-H2) NME2 NM23B cell adhesion [GO:0007155]; CTP biosynthetic process [GO:0006241]; GTP biosynthetic process [GO:0006183]; integrin-mediated signaling pathway [GO:0007229]; negative regulation of apoptotic process [GO:0043066]; nucleoside triphosphate biosynthetic process [GO:0009142]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of keratinocyte differentiation [GO:0045618]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of apoptotic process [GO:0042981]; regulation of epidermis development [GO:0045682]; UTP biosynthetic process [GO:0006228] -P22415 reviewed USF1_HUMAN Upstream stimulatory factor 1 (Class B basic helix-loop-helix protein 11) (bHLHb11) (Major late transcription factor 1) USF1 BHLHB11 USF carbon catabolite regulation of transcription [GO:0045990]; cellular response to insulin stimulus [GO:0032869]; glucose homeostasis [GO:0042593]; late viral transcription [GO:0019086]; lipid homeostasis [GO:0055088]; negative regulation of fibrinolysis [GO:0051918]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription from RNA polymerase II promoter by glucose [GO:0000432]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of transcription from RNA polymerase II promoter by glucose [GO:0000430]; response to hypoxia [GO:0001666]; response to UV [GO:0009411] -P22466 reviewed GALA_HUMAN Galanin peptides [Cleaved into: Galanin; Galanin message-associated peptide (GMAP)] GAL GAL1 GALN GLNN cAMP-mediated signaling [GO:0019933]; feeding behavior [GO:0007631]; insulin secretion [GO:0030073]; negative regulation of lymphocyte proliferation [GO:0050672]; neuropeptide signaling pathway [GO:0007218]; positive regulation of apoptotic process [GO:0043065]; positive regulation of cortisol secretion [GO:0051464]; positive regulation of large conductance calcium-activated potassium channel activity [GO:1902608]; positive regulation of timing of catagen [GO:0051795]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein kinase A signaling [GO:0010737]; regulation of glucocorticoid metabolic process [GO:0031943]; response to estrogen [GO:0043627]; response to immobilization stress [GO:0035902]; response to insulin [GO:0032868]; response to xenobiotic stimulus [GO:0009410] -P22736 reviewed NR4A1_HUMAN Nuclear receptor subfamily 4immunitygroup A member 1 (Early response protein NAK1) (Nuclear hormone receptor NUR/77) (Nur77) (Orphan nuclear receptor HMR) (Orphan nuclear receptor TR3) (ST-59) (Testicular receptor 3) NR4A1 GFRP1 HMR NAK1 apoptotic process [GO:0006915]; cell migration involved in sprouting angiogenesis [GO:0002042]; cellular response to corticotropin-releasing hormone stimulus [GO:0071376]; cellular response to fibroblast growth factor stimulus [GO:0044344]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; detection of lipopolysaccharide [GO:0032497]; endothelial cell chemotaxis [GO:0035767]; fat cell differentiation [GO:0045444]; inflammatory response [GO:0006954]; negative regulation of cell cycle [GO:0045786]; neurotransmitter secretion involved in regulation of skeletal muscle contraction [GO:0014860]; non-canonical inflammasome complex assembly [GO:0160075]; positive regulation of apoptotic process [GO:0043065]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of type B pancreatic cell proliferation [GO:0061469]; response to amphetamine [GO:0001975]; response to electrical stimulus [GO:0051602]; signal transduction [GO:0007165]; skeletal muscle cell differentiation [GO:0035914]; transcription by RNA polymerase II [GO:0006366] -P23193 reviewed TCEA1_HUMAN Transcription elongation factor A protein 1 (Transcription elongation factor S-II protein 1) (Transcription elongation factor TFIIS.o) TCEA1 GTF2S TFIIS DNA-templated transcription [GO:0006351]; positive regulation of transcription by RNA polymerase II [GO:0045944]; transcription by RNA polymerase II [GO:0006366]; transcription elongation by RNA polymerase II [GO:0006368] -P23229 reviewed ITA6_HUMAN Integrin alpha-6 (CD49 antigen-like family member F) (VLA-6) (CD antigen CD49f) [Cleaved into: Integrin alpha-6 heavy chain; Integrin alpha-6 light chain; Processed integrin alpha-6 (Alpha6p)] ITGA6 cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; cell-substrate adhesion [GO:0031589]; cell-substrate junction assembly [GO:0007044]; cellular response to organic cyclic compound [GO:0071407]; ectodermal cell differentiation [GO:0010668]; integrin-mediated signaling pathway [GO:0007229]; leukocyte migration [GO:0050900]; nail development [GO:0035878]; negative regulation of extrinsic apoptotic signaling pathway [GO:2001237]; positive regulation of apoptotic process [GO:0043065]; positive regulation of cell migration [GO:0030335]; positive regulation of cell-substrate adhesion [GO:0010811]; positive regulation of GTPase activity [GO:0043547]; positive regulation of neuron projection development [GO:0010976]; positive regulation of phosphorylation [GO:0042327]; positive regulation of transcription by RNA polymerase II [GO:0045944]; skin morphogenesis [GO:0043589] -P23246 reviewed SFPQ_HUMAN Splicing factor, proline- and glutamine-rich (100 kDa DNA-pairing protein) (hPOMp100) (DNA-binding p52/p100 complex, 100 kDa subunit) (Polypyrimidine tract-binding protein-associated-splicing factor) (PSF) (PTB-associated-splicing factor) SFPQ PSF activation of innate immune response [GO:0002218]; alternative mRNA splicing, via spliceosome [GO:0000380]; chromatin remodeling [GO:0006338]; double-strand break repair via homologous recombination [GO:0000724]; innate immune response [GO:0045087]; mRNA processing [GO:0006397]; negative regulation of circadian rhythm [GO:0042754]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of oxidative stress-induced intrinsic apoptotic signaling pathway [GO:1902177]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of circadian rhythm [GO:0042752]; regulation of DNA-templated transcription [GO:0006355]; rhythmic process [GO:0048511]; RNA splicing [GO:0008380] -P23409 reviewed MYF6_HUMAN Myogenic factor 6 (Myf-6) (Class C basic helix-loop-helix protein 4) (bHLHc4) (Muscle-specific regulatory factor 4) MYF6 BHLHC4 MRF4 muscle cell fate commitment [GO:0042693]; muscle tissue morphogenesis [GO:0060415]; negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of myoblast differentiation [GO:0045663]; positive regulation of skeletal muscle fiber development [GO:0048743]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; skeletal muscle cell differentiation [GO:0035914]; skeletal muscle tissue development [GO:0007519]; somitogenesis [GO:0001756] -P23497 reviewed SP100_HUMAN Nuclear autoantigen Sp-100 (Nuclear dot-associated Sp100 protein) (Speckled 100 kDa) SP100 DNA damage response, signal transduction by p53 class mediator [GO:0030330]; maintenance of protein location [GO:0045185]; negative regulation of DNA binding [GO:0043392]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of endothelial cell migration [GO:0010596]; negative regulation of protein export from nucleus [GO:0046826]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of viral transcription [GO:0032897]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of angiogenesis [GO:0045765]; regulation of extrinsic apoptotic signaling pathway via death domain receptors [GO:1902041]; regulation of Fas signaling pathway [GO:1902044]; regulation of transcription by RNA polymerase II [GO:0006357]; response to cytokine [GO:0034097]; response to retinoic acid [GO:0032526]; response to type I interferon [GO:0034340]; response to type II interferon [GO:0034341]; retinoic acid receptor signaling pathway [GO:0048384]; telomere maintenance [GO:0000723]; type I interferon-mediated signaling pathway [GO:0060337]; type II interferon-mediated signaling pathway [GO:0060333] -P23511 reviewed NFYA_HUMAN Nuclear transcription factor Y subunit alpha (CAAT box DNA-binding protein subunit A) (Nuclear transcription factor Y subunit A) (NF-YA) NFYA positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; rhythmic process [GO:0048511]; transcription by RNA polymerase II [GO:0006366] -P23760 reviewed PAX3_HUMAN Paired box protein Pax-3 (HuP2) PAX3 HUP2 animal organ morphogenesis [GO:0009887]; apoptotic process [GO:0006915]; muscle organ development [GO:0007517]; nervous system development [GO:0007399]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; sensory perception of sound [GO:0007605] -P23769 reviewed GATA2_HUMAN Endothelial transcription factor GATA-2 (GATA-binding protein 2) GATA2 brown fat cell differentiation [GO:0050873]; cell differentiation in hindbrain [GO:0021533]; cell fate commitment [GO:0045165]; cell fate determination [GO:0001709]; central nervous system neuron development [GO:0021954]; cochlea development [GO:0090102]; commitment of neuronal cell to specific neuron type in forebrain [GO:0021902]; definitive hemopoiesis [GO:0060216]; embryonic placenta development [GO:0001892]; eosinophil fate commitment [GO:0035854]; fat cell differentiation [GO:0045444]; GABAergic neuron differentiation [GO:0097154]; glandular epithelial cell maturation [GO:0002071]; hematopoietic progenitor cell differentiation [GO:0002244]; hematopoietic stem cell homeostasis [GO:0061484]; homeostasis of number of cells within a tissue [GO:0048873]; inner ear morphogenesis [GO:0042472]; negative regulation of brown fat cell differentiation [GO:1903444]; negative regulation of endothelial cell apoptotic process [GO:2000352]; negative regulation of gene expression [GO:0010629]; negative regulation of hematopoietic progenitor cell differentiation [GO:1901533]; negative regulation of macrophage differentiation [GO:0045650]; negative regulation of neural precursor cell proliferation [GO:2000178]; negative regulation of neuroblast proliferation [GO:0007406]; negative regulation of Notch signaling pathway [GO:0045746]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuroblast proliferation [GO:0007405]; neuron maturation [GO:0042551]; neuron migration [GO:0001764]; phagocytosis [GO:0006909]; positive regulation of angiogenesis [GO:0045766]; positive regulation of blood vessel endothelial cell migration [GO:0043536]; positive regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis [GO:1903589]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of erythrocyte differentiation [GO:0045648]; positive regulation of gene expression [GO:0010628]; positive regulation of mast cell degranulation [GO:0043306]; positive regulation of megakaryocyte differentiation [GO:0045654]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of phagocytosis [GO:0050766]; positive regulation of phagocytosis, engulfment [GO:0060100]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of forebrain neuron differentiation [GO:2000977]; regulation of primitive erythrocyte differentiation [GO:0010725]; response to lipid [GO:0033993]; semicircular canal development [GO:0060872]; somatic stem cell population maintenance [GO:0035019]; thyroid-stimulating hormone-secreting cell differentiation [GO:0060129]; transcription by RNA polymerase II [GO:0006366]; urogenital system development [GO:0001655]; vascular wound healing [GO:0061042]; ventral spinal cord interneuron differentiation [GO:0021514] -P23771 reviewed GATA3_HUMAN Trans-acting T-cell-specific transcription factor GATA-3 (GATA-binding factor 3) GATA3 anatomical structure formation involved in morphogenesis [GO:0048646]; anatomical structure morphogenesis [GO:0009653]; aortic valve morphogenesis [GO:0003180]; axon guidance [GO:0007411]; canonical Wnt signaling pathway [GO:0060070]; cardiac right ventricle morphogenesis [GO:0003215]; cartilage development [GO:0051216]; cell fate commitment [GO:0045165]; cell fate determination [GO:0001709]; cell maturation [GO:0048469]; cell population proliferation [GO:0008283]; cellular response to BMP stimulus [GO:0071773]; cellular response to interferon-alpha [GO:0035457]; cellular response to interleukin-4 [GO:0071353]; cellular response to tumor necrosis factor [GO:0071356]; chromatin remodeling [GO:0006338]; defense response [GO:0006952]; developmental growth [GO:0048589]; ear development [GO:0043583]; embryonic hemopoiesis [GO:0035162]; embryonic organ development [GO:0048568]; erythrocyte differentiation [GO:0030218]; humoral immune response [GO:0006959]; immune system development [GO:0002520]; in utero embryonic development [GO:0001701]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; inner ear morphogenesis [GO:0042472]; kidney development [GO:0001822]; lens development in camera-type eye [GO:0002088]; lymphocyte migration [GO:0072676]; macrophage differentiation [GO:0030225]; male gonad development [GO:0008584]; mast cell differentiation [GO:0060374]; mesenchymal to epithelial transition [GO:0060231]; mesonephros development [GO:0001823]; negative regulation of cell cycle [GO:0045786]; negative regulation of cell motility [GO:2000146]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of cell proliferation involved in mesonephros development [GO:2000607]; negative regulation of DNA demethylation [GO:1901536]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of endothelial cell apoptotic process [GO:2000352]; negative regulation of epithelial to mesenchymal transition [GO:0010719]; negative regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation [GO:2000703]; negative regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation [GO:2000734]; negative regulation of inflammatory response [GO:0050728]; negative regulation of interleukin-2 production [GO:0032703]; negative regulation of mammary gland epithelial cell proliferation [GO:0033600]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of type II interferon production [GO:0032689]; nephric duct formation [GO:0072179]; nephric duct morphogenesis [GO:0072178]; neuron migration [GO:0001764]; norepinephrine biosynthetic process [GO:0042421]; otic vesicle development [GO:0071599]; parathyroid gland development [GO:0060017]; parathyroid hormone secretion [GO:0035898]; pharyngeal system development [GO:0060037]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of interleukin-13 production [GO:0032736]; positive regulation of interleukin-4 production [GO:0032753]; positive regulation of interleukin-5 production [GO:0032754]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of signal transduction [GO:0009967]; positive regulation of T cell differentiation [GO:0045582]; positive regulation of T-helper 2 cell cytokine production [GO:2000553]; positive regulation of thyroid hormone generation [GO:2000611]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription regulatory region DNA binding [GO:2000679]; positive regulation of ureteric bud formation [GO:0072107]; post-embryonic development [GO:0009791]; pro-T cell differentiation [GO:0002572]; regulation of cellular response to X-ray [GO:2000683]; regulation of cytokine production [GO:0001817]; regulation of epithelial cell differentiation [GO:0030856]; regulation of establishment of cell polarity [GO:2000114]; regulation of nephron tubule epithelial cell differentiation [GO:0072182]; regulation of neuron apoptotic process [GO:0043523]; regulation of neuron projection development [GO:0010975]; regulation of T-helper cell differentiation [GO:0045622]; response to estrogen [GO:0043627]; response to virus [GO:0009615]; signal transduction [GO:0007165]; sympathetic nervous system development [GO:0048485]; T cell differentiation [GO:0030217]; T cell receptor signaling pathway [GO:0050852]; T-helper 2 cell differentiation [GO:0045064]; thymic T cell selection [GO:0045061]; thymus development [GO:0048538]; TOR signaling [GO:0031929]; transcription by RNA polymerase II [GO:0006366]; ureter maturation [GO:0035799]; ureter morphogenesis [GO:0072197]; ureteric bud formation [GO:0060676]; uterus development [GO:0060065]; ventricular septum development [GO:0003281] -P24468 reviewed COT2_HUMAN COUP transcription factor 2 (COUP-TF2) (Apolipoprotein A-I regulatory protein 1) (ARP-1) (COUP transcription factor II) (COUP-TF II) (Nuclear receptor subfamily 2 group F member 2) NR2F2 ARP1 TFCOUP2 anterior/posterior pattern specification [GO:0009952]; blood vessel morphogenesis [GO:0048514]; cell differentiation [GO:0030154]; female gonad development [GO:0008585]; fertilization [GO:0009566]; forebrain development [GO:0030900]; interneuron migration [GO:1904936]; lymphatic endothelial cell fate commitment [GO:0060838]; maternal placenta development [GO:0001893]; negative regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0045736]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of endothelial cell migration [GO:0010596]; negative regulation of endothelial cell proliferation [GO:0001937]; negative regulation of transcription by RNA polymerase II [GO:0000122]; placenta blood vessel development [GO:0060674]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of systemic arterial blood pressure [GO:0003084]; positive regulation of transcription by RNA polymerase II [GO:0045944]; radial pattern formation [GO:0009956]; regulation of transcription by RNA polymerase II [GO:0006357]; response to estradiol [GO:0032355]; skeletal muscle tissue development [GO:0007519]; trophoblast giant cell differentiation [GO:0060707] -P24863 reviewed CCNC_HUMAN Cyclin-C (SRB11 homolog) (hSRB11) CCNC G0 to G1 transition [GO:0045023]; negative regulation of Notch signaling pathway [GO:0045746]; positive regulation of transcription by RNA polymerase II [GO:0045944] -P25208 reviewed NFYB_HUMAN Nuclear transcription factor Y subunit beta (CAAT box DNA-binding protein subunit B) (Nuclear transcription factor Y subunit B) (NF-YB) NFYB HAP3 cellular response to leukemia inhibitory factor [GO:1990830]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357] -P25490 reviewed TYY1_HUMAN Transcriptional repressor protein YY1 (Delta transcription factor) (INO80 complex subunit S) (NF-E1) (Yin and yang 1) (YY-1) YY1 INO80S anterior/posterior pattern specification [GO:0009952]; B cell differentiation [GO:0030183]; camera-type eye morphogenesis [GO:0048593]; cellular response to interleukin-1 [GO:0071347]; cellular response to UV [GO:0034644]; chromatin remodeling [GO:0006338]; DNA damage response [GO:0006974]; double-strand break repair via homologous recombination [GO:0000724]; immunoglobulin heavy chain V-D-J recombination [GO:0071707]; negative regulation of cell growth involved in cardiac muscle cell development [GO:0061052]; negative regulation of gene expression [GO:0010629]; negative regulation of interferon-beta production [GO:0032688]; negative regulation of miRNA transcription [GO:1902894]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of DNA repair [GO:0045739]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of telomere maintenance in response to DNA damage [GO:1904507]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell cycle [GO:0051726]; regulation of chromosome organization [GO:0033044]; regulation of DNA repair [GO:0006282]; regulation of DNA replication [GO:0006275]; regulation of DNA strand elongation [GO:0060382]; regulation of embryonic development [GO:0045995]; regulation of transcription by RNA polymerase II [GO:0006357]; response to prostaglandin F [GO:0034696]; response to UV-C [GO:0010225]; RNA localization [GO:0006403]; spermatogenesis [GO:0007283]; telomere maintenance [GO:0000723] -P25791 reviewed RBTN2_HUMAN Rhombotin-2 (Cysteine-rich protein TTG-2) (LIM domain only protein 2) (LMO-2) (T-cell translocation protein 2) LMO2 RBTN2 RBTNL1 RHOM2 TTG2 positive regulation of transcription by RNA polymerase II [GO:0045944] -P25800 reviewed RBTN1_HUMAN Rhombotin-1 (Cysteine-rich protein TTG-1) (LIM domain only protein 1) (LMO-1) (T-cell translocation protein 1) LMO1 RBTN1 RHOM1 TTG1 negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of T cell homeostatic proliferation [GO:0046013] -P25942 reviewed TNR5_HUMAN Tumor necrosis factor receptor superfamily member 5 (B-cell surface antigen CD40) (Bp50) (CD40L receptor) (CDw40) (CD antigen CD40) CD40 TNFRSF5 B cell activation [GO:0042113]; B cell mediated immunity [GO:0019724]; B cell proliferation [GO:0042100]; CD40 signaling pathway [GO:0023035]; cellular response to erythropoietin [GO:0036018]; cellular response to interleukin-1 [GO:0071347]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to mechanical stimulus [GO:0071260]; cellular response to tumor necrosis factor [GO:0071356]; defense response to protozoan [GO:0042832]; defense response to virus [GO:0051607]; immune response-regulating cell surface receptor signaling pathway [GO:0002768]; inflammatory response [GO:0006954]; intracellular calcium ion homeostasis [GO:0006874]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; platelet activation [GO:0030168]; positive regulation of angiogenesis [GO:0045766]; positive regulation of B cell proliferation [GO:0030890]; positive regulation of blood vessel endothelial cell migration [GO:0043536]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of endothelial cell apoptotic process [GO:2000353]; positive regulation of GTPase activity [GO:0043547]; positive regulation of interleukin-12 production [GO:0032735]; positive regulation of isotype switching to IgG isotypes [GO:0048304]; positive regulation of MAP kinase activity [GO:0043406]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of protein kinase C signaling [GO:0090037]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; protein-containing complex assembly [GO:0065003]; response to cobalamin [GO:0033590]; response to peptide [GO:1901652]; response to type II interferon [GO:0034341] -P25963 reviewed IKBA_HUMAN NF-kappa-B inhibitor alpha (I-kappa-B-alpha) (IkB-alpha) (IkappaBalpha) (Major histocompatibility complex enhancer-binding protein MAD3) NFKBIA IKBA MAD3 NFKBI B cell receptor signaling pathway [GO:0050853]; canonical NF-kappaB signal transduction [GO:0007249]; cellular response to cold [GO:0070417]; cellular response to tumor necrosis factor [GO:0071356]; cytoplasmic sequestering of NF-kappaB [GO:0007253]; interleukin-1-mediated signaling pathway [GO:0070498]; lipopolysaccharide-mediated signaling pathway [GO:0031663]; negative regulation of canonical NF-kappaB signal transduction [GO:0043124]; negative regulation of lipid storage [GO:0010888]; negative regulation of macrophage derived foam cell differentiation [GO:0010745]; negative regulation of myeloid cell differentiation [GO:0045638]; negative regulation of NF-kappaB transcription factor activity [GO:0032088]; negative regulation of Notch signaling pathway [GO:0045746]; non-canonical NF-kappaB signal transduction [GO:0038061]; Notch signaling pathway [GO:0007219]; nucleotide-binding oligomerization domain containing 1 signaling pathway [GO:0070427]; nucleotide-binding oligomerization domain containing 2 signaling pathway [GO:0070431]; positive regulation of cholesterol efflux [GO:0010875]; positive regulation of inflammatory response [GO:0050729]; positive regulation of protein metabolic process [GO:0051247]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; protein import into nucleus [GO:0006606]; regulation of cell population proliferation [GO:0042127]; response to exogenous dsRNA [GO:0043330]; response to muramyl dipeptide [GO:0032495]; response to muscle stretch [GO:0035994]; toll-like receptor 4 signaling pathway [GO:0034142]; tumor necrosis factor-mediated signaling pathway [GO:0033209] -P26367 reviewed PAX6_HUMAN Paired box protein Pax-6 (Aniridia type II protein) (Oculorhombin) PAX6 AN2 animal organ morphogenesis [GO:0009887]; astrocyte differentiation [GO:0048708]; axon guidance [GO:0007411]; blood vessel development [GO:0001568]; cell fate determination [GO:0001709]; cellular response to fibroblast growth factor stimulus [GO:0044344]; cellular response to glucose stimulus [GO:0071333]; cellular response to insulin stimulus [GO:0032869]; cellular response to leukemia inhibitory factor [GO:1990830]; cellular response to prostaglandin E stimulus [GO:0071380]; cellular response to xenobiotic stimulus [GO:0071466]; central nervous system development [GO:0007417]; cerebellum development [GO:0021549]; cerebral cortex regionalization [GO:0021796]; chromatin remodeling [GO:0006338]; commitment of neuronal cell to specific neuron type in forebrain [GO:0021902]; cornea development in camera-type eye [GO:0061303]; DNA demethylation [GO:0080111]; dorsal/ventral axis specification [GO:0009950]; embryonic camera-type eye morphogenesis [GO:0048596]; establishment of mitotic spindle orientation [GO:0000132]; eye development [GO:0001654]; eye photoreceptor cell development [GO:0042462]; forebrain dorsal/ventral pattern formation [GO:0021798]; forebrain-midbrain boundary formation [GO:0021905]; glucose homeostasis [GO:0042593]; habenula development [GO:0021986]; insulin metabolic process [GO:1901142]; interkinetic nuclear migration [GO:0022027]; iris morphogenesis [GO:0061072]; keratinocyte differentiation [GO:0030216]; lacrimal gland development [GO:0032808]; learned vocalization behavior or vocal learning [GO:0098598]; lens development in camera-type eye [GO:0002088]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of neuroblast proliferation [GO:0007406]; negative regulation of neurogenesis [GO:0050768]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of protein phosphorylation [GO:0001933]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system development [GO:0007399]; neural crest cell migration [GO:0001755]; neuroblast proliferation [GO:0007405]; neuron fate commitment [GO:0048663]; olfactory bulb mitral cell layer development [GO:0061034]; oligodendrocyte cell fate specification [GO:0021778]; pancreatic A cell development [GO:0003322]; pituitary gland development [GO:0021983]; positive regulation of cell fate specification [GO:0042660]; positive regulation of core promoter binding [GO:1904798]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial cell differentiation [GO:0030858]; positive regulation of gene expression [GO:0010628]; positive regulation of glutamatergic neuron differentiation [GO:0120008]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of neuron migration [GO:2001224]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to organelle [GO:0033365]; regulation of asymmetric cell division [GO:0009786]; regulation of neuron projection development [GO:0010975]; regulation of timing of cell differentiation [GO:0048505]; regulation of transcription by RNA polymerase II [GO:0006357]; response to ethanol [GO:0045471]; response to wounding [GO:0009611]; retina development in camera-type eye [GO:0060041]; rhombomere morphogenesis [GO:0021593]; salivary gland morphogenesis [GO:0007435]; sensory neuron migration [GO:1904937]; signal transduction involved in regulation of gene expression [GO:0023019]; smoothened signaling pathway [GO:0007224]; transcription by RNA polymerase II [GO:0006366]; type B pancreatic cell differentiation [GO:0003309]; ventral spinal cord development [GO:0021517]; visual perception [GO:0007601] -P26583 reviewed HMGB2_HUMAN High mobility group protein B2 (High mobility group protein 2) (HMG-2) HMGB2 HMG2 cell chemotaxis [GO:0060326]; cellular response to lipopolysaccharide [GO:0071222]; chromatin organization [GO:0006325]; defense response to Gram-negative bacterium [GO:0050829]; defense response to Gram-positive bacterium [GO:0050830]; DNA geometric change [GO:0032392]; DNA topological change [GO:0006265]; double-strand break repair via nonhomologous end joining [GO:0006303]; extrinsic apoptotic signaling pathway via death domain receptors [GO:0008625]; inflammatory response to antigenic stimulus [GO:0002437]; innate immune response [GO:0045087]; male gonad development [GO:0008584]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of extrinsic apoptotic signaling pathway via death domain receptors [GO:1902042]; negative regulation of gene expression [GO:0010629]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nucleosome assembly [GO:0006334]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of erythrocyte differentiation [GO:0045648]; positive regulation of innate immune response [GO:0045089]; positive regulation of interferon-beta production [GO:0032728]; positive regulation of megakaryocyte differentiation [GO:0045654]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of neurogenesis [GO:0050767]; regulation of stem cell proliferation [GO:0072091]; regulation of transcription by RNA polymerase II [GO:0006357]; response to lipopolysaccharide [GO:0032496]; response to steroid hormone [GO:0048545]; spermatid nucleus differentiation [GO:0007289]; V(D)J recombination [GO:0033151] -P27037 reviewed AVR2A_HUMAN Activin receptor type-2A (EC 2.7.11.30) (Activin receptor type IIA) (ACTR-IIA) (ACTRIIA) ACVR2A ACVR2 activin receptor signaling pathway [GO:0032924]; anterior/posterior pattern specification [GO:0009952]; BMP signaling pathway [GO:0030509]; cell surface receptor protein serine/threonine kinase signaling pathway [GO:0007178]; cellular response to BMP stimulus [GO:0071773]; cellular response to growth factor stimulus [GO:0071363]; determination of left/right symmetry [GO:0007368]; embryonic skeletal system development [GO:0048706]; gastrulation with mouth forming second [GO:0001702]; mesoderm development [GO:0007498]; odontogenesis of dentin-containing tooth [GO:0042475]; penile erection [GO:0043084]; positive regulation of activin receptor signaling pathway [GO:0032927]; positive regulation of bone mineralization [GO:0030501]; positive regulation of erythrocyte differentiation [GO:0045648]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of nitric oxide biosynthetic process [GO:0045428]; Sertoli cell proliferation [GO:0060011]; sperm ejaculation [GO:0042713]; spermatogenesis [GO:0007283] -P27361 reviewed MK03_HUMAN Mitogen-activated protein kinase 3 (MAP kinase 3) (MAPK 3) (EC 2.7.11.24) (ERT2) (Extracellular signal-regulated kinase 1) (ERK-1) (Insulin-stimulated MAP2 kinase) (MAP kinase isoform p44) (p44-MAPK) (Microtubule-associated protein 2 kinase) (p44-ERK1) MAPK3 ERK1 PRKM3 apoptotic process [GO:0006915]; Bergmann glial cell differentiation [GO:0060020]; BMP signaling pathway [GO:0030509]; cardiac neural crest cell development involved in heart development [GO:0061308]; cartilage development [GO:0051216]; caveolin-mediated endocytosis [GO:0072584]; cellular response to amino acid starvation [GO:0034198]; cellular response to cadmium ion [GO:0071276]; cellular response to mechanical stimulus [GO:0071260]; cellular response to reactive oxygen species [GO:0034614]; cellular response to tumor necrosis factor [GO:0071356]; DNA-templated transcription [GO:0006351]; ERBB2-ERBB3 signaling pathway [GO:0038133]; ERK1 and ERK2 cascade [GO:0070371]; face development [GO:0060324]; insulin receptor signaling pathway [GO:0008286]; insulin-like growth factor receptor signaling pathway [GO:0048009]; interleukin-1-mediated signaling pathway [GO:0070498]; intracellular signal transduction [GO:0035556]; lipopolysaccharide-mediated signaling pathway [GO:0031663]; lung morphogenesis [GO:0060425]; MAPK cascade [GO:0000165]; modulation of chemical synaptic transmission [GO:0050804]; myelination [GO:0042552]; negative regulation of TORC1 signaling [GO:1904262]; outer ear morphogenesis [GO:0042473]; peptidyl-tyrosine autophosphorylation [GO:0038083]; phosphorylation [GO:0016310]; positive regulation of cyclase activity [GO:0031281]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of macrophage chemotaxis [GO:0010759]; positive regulation of macrophage proliferation [GO:0120041]; positive regulation of telomerase activity [GO:0051973]; positive regulation of telomere capping [GO:1904355]; positive regulation of telomere maintenance via telomerase [GO:0032212]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of xenophagy [GO:1904417]; protein phosphorylation [GO:0006468]; regulation of cellular pH [GO:0030641]; regulation of cytoskeleton organization [GO:0051493]; regulation of early endosome to late endosome transport [GO:2000641]; regulation of Golgi inheritance [GO:0090170]; regulation of ossification [GO:0030278]; regulation of stress-activated MAPK cascade [GO:0032872]; response to epidermal growth factor [GO:0070849]; response to exogenous dsRNA [GO:0043330]; Schwann cell development [GO:0014044]; sensory perception of pain [GO:0019233]; signal transduction in response to DNA damage [GO:0042770]; stress-activated MAPK cascade [GO:0051403]; thymus development [GO:0048538]; thyroid gland development [GO:0030878]; trachea formation [GO:0060440]; xenophagy [GO:0098792] -P27540 reviewed ARNT_HUMAN Aryl hydrocarbon receptor nuclear translocator (ARNT protein) (Class E basic helix-loop-helix protein 2) (bHLHe2) (Dioxin receptor, nuclear translocator) (Hypoxia-inducible factor 1-beta) (HIF-1-beta) (HIF1-beta) ARNT BHLHE2 cell differentiation [GO:0030154]; cellular response to oxidative stress [GO:0034599]; embryonic placenta development [GO:0001892]; negative regulation of inflammatory response [GO:0050728]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of erythrocyte differentiation [GO:0045648]; positive regulation of glycolytic process [GO:0045821]; positive regulation of hormone biosynthetic process [GO:0046886]; positive regulation of protein sumoylation [GO:0033235]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular endothelial growth factor production [GO:0010575]; positive regulation of vascular endothelial growth factor receptor signaling pathway [GO:0030949]; regulation of transcription by RNA polymerase II [GO:0006357]; response to hypoxia [GO:0001666] -P27695 reviewed APEX1_HUMAN DNA repair nuclease/redox regulator APEX1 (EC 3.1.11.2) (EC 3.1.21.-) (APEX nuclease) (APEN) (Apurinic-apyrimidinic endonuclease 1) (AP endonuclease 1) (APE-1) (DNA-(apurinic or apyrimidinic site) endonuclease) (Redox factor-1) (REF-1) [Cleaved into: DNA repair nuclease/redox regulator APEX1, mitochondrial] APEX1 APE APE1 APEX APX HAP1 REF1 base-excision repair [GO:0006284]; base-excision repair, gap-filling [GO:0006287]; cell redox homeostasis [GO:0045454]; DNA catabolic process [GO:0006308]; DNA recombination [GO:0006310]; DNA repair [GO:0006281]; positive regulation of gene expression via chromosomal CpG island demethylation [GO:0044029]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of apoptotic process [GO:0042981]; regulation of mRNA stability [GO:0043488]; telomere maintenance [GO:0000723]; telomere maintenance via base-excision repair [GO:0097698] -P27986 reviewed P85A_HUMAN Phosphatidylinositol 3-kinase regulatory subunit alpha (PI3-kinase regulatory subunit alpha) (PI3K regulatory subunit alpha) (PtdIns-3-kinase regulatory subunit alpha) (Phosphatidylinositol 3-kinase 85 kDa regulatory subunit alpha) (PI3-kinase subunit p85-alpha) (PtdIns-3-kinase regulatory subunit p85-alpha) PIK3R1 GRB1 B cell differentiation [GO:0030183]; cellular response to insulin stimulus [GO:0032869]; cellular response to UV [GO:0034644]; cytokine-mediated signaling pathway [GO:0019221]; extrinsic apoptotic signaling pathway via death domain receptors [GO:0008625]; growth hormone receptor signaling pathway [GO:0060396]; immune response [GO:0006955]; insulin receptor signaling pathway [GO:0008286]; insulin-like growth factor receptor signaling pathway [GO:0048009]; interleukin-18-mediated signaling pathway [GO:0035655]; intracellular glucose homeostasis [GO:0001678]; intrinsic apoptotic signaling pathway in response to DNA damage [GO:0008630]; myeloid leukocyte migration [GO:0097529]; natural killer cell mediated cytotoxicity [GO:0042267]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cell-matrix adhesion [GO:0001953]; negative regulation of osteoclast differentiation [GO:0045671]; negative regulation of stress fiber assembly [GO:0051497]; osteoclast differentiation [GO:0030316]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; phosphatidylinositol phosphate biosynthetic process [GO:0046854]; positive regulation of endoplasmic reticulum unfolded protein response [GO:1900103]; positive regulation of filopodium assembly [GO:0051491]; positive regulation of focal adhesion disassembly [GO:0120183]; positive regulation of glucose import [GO:0046326]; positive regulation of lamellipodium assembly [GO:0010592]; positive regulation of leukocyte migration [GO:0002687]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of protein localization to plasma membrane [GO:1903078]; positive regulation of RNA splicing [GO:0033120]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; protein import into nucleus [GO:0006606]; protein stabilization [GO:0050821]; regulation of toll-like receptor 4 signaling pathway [GO:0034143]; response to endoplasmic reticulum stress [GO:0034976]; substrate adhesion-dependent cell spreading [GO:0034446]; T cell differentiation [GO:0030217]; transcription by RNA polymerase II [GO:0006366] -P28069 reviewed PIT1_HUMAN Pituitary-specific positive transcription factor 1 (PIT-1) (Growth hormone factor 1) (GHF-1) POU1F1 GHF1 PIT1 adenohypophysis development [GO:0021984]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357] -P28324 reviewed ELK4_HUMAN ETS domain-containing protein Elk-4 (Serum response factor accessory protein 1) (SAP-1) (SRF accessory protein 1) ELK4 SAP1 negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -P28347 reviewed TEAD1_HUMAN Transcriptional enhancer factor TEF-1 (NTEF-1) (Protein GT-IIC) (TEA domain family member 1) (TEAD-1) (Transcription factor 13) (TCF-13) TEAD1 TCF13 TEF1 embryonic organ development [GO:0048568]; hippo signaling [GO:0035329]; positive regulation of cell growth [GO:0030307]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein-containing complex assembly [GO:0065003]; regulation of transcription by RNA polymerase II [GO:0006357] -P28356 reviewed HXD9_HUMAN Homeobox protein Hox-D9 (Homeobox protein Hox-4C) (Homeobox protein Hox-5.2) HOXD9 HOX4C adult locomotory behavior [GO:0008344]; anterior/posterior pattern specification [GO:0009952]; DNA-templated transcription [GO:0006351]; embryonic forelimb morphogenesis [GO:0035115]; embryonic skeletal system morphogenesis [GO:0048704]; hindlimb morphogenesis [GO:0035137]; mammary gland development [GO:0030879]; negative regulation of transcription by RNA polymerase II [GO:0000122]; peripheral nervous system neuron development [GO:0048935]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proximal/distal pattern formation [GO:0009954]; regulation of transcription by RNA polymerase II [GO:0006357]; single fertilization [GO:0007338]; skeletal muscle tissue development [GO:0007519] -P28358 reviewed HXD10_HUMAN Homeobox protein Hox-D10 (Homeobox protein Hox-4D) (Homeobox protein Hox-4E) HOXD10 HOX4D HOX4E adult locomotory behavior [GO:0008344]; anterior/posterior pattern specification [GO:0009952]; embryonic limb morphogenesis [GO:0030326]; embryonic skeletal system morphogenesis [GO:0048704]; forelimb morphogenesis [GO:0035136]; hindlimb morphogenesis [GO:0035137]; negative regulation of cell cycle [GO:0045786]; neuromuscular process [GO:0050905]; peripheral nervous system neuron development [GO:0048935]; proximal/distal pattern formation [GO:0009954]; regulation of transcription by RNA polymerase II [GO:0006357]; single fertilization [GO:0007338]; skeletal muscle tissue development [GO:0007519]; spinal cord motor neuron cell fate specification [GO:0021520] -P28360 reviewed MSX1_HUMAN Homeobox protein MSX-1 (Homeobox protein Hox-7) (Msh homeobox 1-like protein) MSX1 HOX7 activation of meiosis [GO:0090427]; anterior/posterior pattern specification [GO:0009952]; BMP signaling pathway [GO:0030509]; bone morphogenesis [GO:0060349]; cardiac conduction system development [GO:0003161]; cartilage morphogenesis [GO:0060536]; cell morphogenesis [GO:0000902]; cell surface receptor signaling pathway involved in heart development [GO:0061311]; embryonic forelimb morphogenesis [GO:0035115]; embryonic hindlimb morphogenesis [GO:0035116]; embryonic morphogenesis [GO:0048598]; embryonic nail plate morphogenesis [GO:0035880]; epithelial to mesenchymal transition involved in endocardial cushion formation [GO:0003198]; face morphogenesis [GO:0060325]; forebrain development [GO:0030900]; in utero embryonic development [GO:0001701]; inner ear development [GO:0048839]; mammary gland epithelium development [GO:0061180]; mesenchymal cell apoptotic process [GO:0097152]; mesenchymal cell proliferation [GO:0010463]; midbrain development [GO:0030901]; middle ear morphogenesis [GO:0042474]; muscle organ development [GO:0007517]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cell growth [GO:0030308]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of gene expression [GO:0010629]; negative regulation of odontoblast differentiation [GO:1901330]; negative regulation of striated muscle cell differentiation [GO:0051154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nose development [GO:0043584]; odontogenesis of dentin-containing tooth [GO:0042475]; positive regulation of BMP signaling pathway [GO:0030513]; positive regulation of cell cycle [GO:0045787]; positive regulation of DNA damage response, signal transduction by p53 class mediator [GO:0043517]; positive regulation of intrinsic apoptotic signaling pathway by p53 class mediator [GO:1902255]; positive regulation of mesenchymal cell apoptotic process [GO:2001055]; positive regulation of odontogenesis [GO:0042482]; protein localization to nucleus [GO:0034504]; protein stabilization [GO:0050821]; regulation of odontogenesis [GO:0042481]; regulation of transcription by RNA polymerase II [GO:0006357]; roof of mouth development [GO:0060021]; signal transduction involved in regulation of gene expression [GO:0023019]; stem cell differentiation [GO:0048863]; transcription by RNA polymerase II [GO:0006366] -P28370 reviewed SMCA1_HUMAN Probable global transcription activator SNF2L1 (EC 3.6.4.-) (ATP-dependent helicase SMARCA1) (Nucleosome-remodeling factor subunit SNF2L) (SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily A member 1) SMARCA1 SNF2L SNF2L1 brain development [GO:0007420]; chromatin remodeling [GO:0006338]; neuron differentiation [GO:0030182]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355] -P28698 reviewed MZF1_HUMAN Myeloid zinc finger 1 (MZF-1) (Zinc finger and SCAN domain-containing protein 6) (Zinc finger protein 42) MZF1 MZF ZNF42 ZSCAN6 negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355] -P28702 reviewed RXRB_HUMAN Retinoic acid receptor RXR-beta (Nuclear receptor subfamily 2 group B member 2) (Retinoid X receptor beta) RXRB NR2B2 cell differentiation [GO:0030154]; hormone-mediated signaling pathway [GO:0009755]; mRNA transcription by RNA polymerase II [GO:0042789]; positive regulation of bone mineralization [GO:0030501]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vitamin D receptor signaling pathway [GO:0070564]; response to retinoic acid [GO:0032526]; retinoic acid receptor signaling pathway [GO:0048384] -P29374 reviewed ARI4A_HUMAN AT-rich interactive domain-containing protein 4A (ARID domain-containing protein 4A) (Retinoblastoma-binding protein 1) (RBBP-1) ARID4A RBBP1 RBP1 erythrocyte development [GO:0048821]; establishment of Sertoli cell barrier [GO:0097368]; genomic imprinting [GO:0071514]; negative regulation of cell migration [GO:0030336]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of stem cell population maintenance [GO:1902455]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; positive regulation of stem cell population maintenance [GO:1902459]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; spermatogenesis [GO:0007283]; transcription by RNA polymerase II [GO:0006366] -P29475 reviewed NOS1_HUMAN Nitric oxide synthase 1 (EC 1.14.13.39) (Constitutive NOS) (NC-NOS) (NOS type I) (Neuronal NOS) (N-NOS) (nNOS) (Nitric oxide synthase, brain) (bNOS) (Peptidyl-cysteine S-nitrosylase NOS1) NOS1 arginine catabolic process [GO:0006527]; cell redox homeostasis [GO:0045454]; cellular response to growth factor stimulus [GO:0071363]; multicellular organismal response to stress [GO:0033555]; myoblast fusion [GO:0007520]; negative regulation of blood pressure [GO:0045776]; negative regulation of calcium ion transport [GO:0051926]; negative regulation of calcium ion transport into cytosol [GO:0010523]; negative regulation of hydrolase activity [GO:0051346]; negative regulation of potassium ion transport [GO:0043267]; negative regulation of serotonin uptake [GO:0051612]; nitric oxide biosynthetic process [GO:0006809]; nitric oxide mediated signal transduction [GO:0007263]; peptidyl-cysteine S-nitrosylation [GO:0018119]; positive regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway [GO:0106071]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of membrane repolarization during ventricular cardiac muscle cell action potential [GO:1905026]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of sodium ion transmembrane transport [GO:1902307]; positive regulation of the force of heart contraction [GO:0098735]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of calcium ion transmembrane transport via high voltage-gated calcium channel [GO:1902514]; regulation of cardiac muscle contraction [GO:0055117]; regulation of cardiac muscle contraction by calcium ion signaling [GO:0010882]; regulation of ryanodine-sensitive calcium-release channel activity [GO:0060314]; regulation of sodium ion transport [GO:0002028]; response to heat [GO:0009408]; response to hormone [GO:0009725]; response to hypoxia [GO:0001666]; response to lipopolysaccharide [GO:0032496]; striated muscle contraction [GO:0006941]; vasodilation [GO:0042311]; xenobiotic catabolic process [GO:0042178] -P29692 reviewed EF1D_HUMAN Elongation factor 1-delta (EF-1-delta) (Antigen NY-CO-4) EEF1D EF1D cellular response to heat [GO:0034605]; cellular response to ionizing radiation [GO:0071479]; cytoplasmic translational elongation [GO:0002182]; positive regulation of transcription by RNA polymerase II [GO:0045944]; translational elongation [GO:0006414] -P31249 reviewed HXD3_HUMAN Homeobox protein Hox-D3 (Homeobox protein Hox-4A) HOXD3 HOX1D HOX4A anterior/posterior pattern specification [GO:0009952]; cartilage development [GO:0051216]; cell-matrix adhesion [GO:0007160]; DNA-templated transcription [GO:0006351]; embryonic skeletal system morphogenesis [GO:0048704]; glossopharyngeal nerve morphogenesis [GO:0021615]; Notch signaling pathway [GO:0007219]; positive regulation of gene expression [GO:0010628]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; thyroid gland development [GO:0030878] -P31260 reviewed HXA10_HUMAN Homeobox protein Hox-A10 (Homeobox protein Hox-1.8) (Homeobox protein Hox-1H) (PL) HOXA10 HOX1H anterior/posterior pattern specification [GO:0009952]; embryonic limb morphogenesis [GO:0030326]; male gonad development [GO:0008584]; positive regulation of transcription by RNA polymerase II [GO:0045944]; prostate gland development [GO:0030850]; proximal/distal pattern formation [GO:0009954]; regulation of transcription by RNA polymerase II [GO:0006357]; response to estrogen [GO:0043627]; response to testosterone [GO:0033574]; single fertilization [GO:0007338]; skeletal system development [GO:0001501]; spermatogenesis [GO:0007283]; uterus development [GO:0060065] -P31268 reviewed HXA7_HUMAN Homeobox protein Hox-A7 (Homeobox protein Hox 1.1) (Homeobox protein Hox-1A) HOXA7 HOX1A angiogenesis [GO:0001525]; anterior/posterior pattern specification [GO:0009952]; embryonic skeletal system morphogenesis [GO:0048704]; negative regulation of cell-matrix adhesion [GO:0001953]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of keratinocyte differentiation [GO:0045617]; negative regulation of leukocyte migration [GO:0002686]; negative regulation of monocyte differentiation [GO:0045656]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; stem cell differentiation [GO:0048863] -P31269 reviewed HXA9_HUMAN Homeobox protein Hox-A9 (Homeobox protein Hox-1G) HOXA9 HOX1G anterior/posterior pattern specification [GO:0009952]; definitive hemopoiesis [GO:0060216]; DNA-templated transcription [GO:0006351]; embryonic forelimb morphogenesis [GO:0035115]; embryonic skeletal system morphogenesis [GO:0048704]; endothelial cell activation [GO:0042118]; male gonad development [GO:0008584]; mammary gland development [GO:0030879]; negative regulation of myeloid cell differentiation [GO:0045638]; prostate gland development [GO:0030850]; proximal/distal pattern formation [GO:0009954]; regulation of transcription by RNA polymerase II [GO:0006357]; response to testosterone [GO:0033574]; single fertilization [GO:0007338]; spermatogenesis [GO:0007283]; uterus development [GO:0060065] -P31271 reviewed HXA13_HUMAN Homeobox protein Hox-A13 (Homeobox protein Hox-1J) HOXA13 HOX1J artery morphogenesis [GO:0048844]; branching involved in prostate gland morphogenesis [GO:0060442]; embryonic forelimb morphogenesis [GO:0035115]; embryonic hindgut morphogenesis [GO:0048619]; endothelial cell fate specification [GO:0060847]; endothelial cell morphogenesis [GO:0001886]; inner ear development [GO:0048839]; male genitalia development [GO:0030539]; mesenchymal cell apoptotic process [GO:0097152]; mitotic nuclear division [GO:0140014]; positive regulation of mesenchymal cell apoptotic process [GO:2001055]; positive regulation of mitotic nuclear division [GO:0045840]; regulation of BMP signaling pathway [GO:0030510]; regulation of transcription by RNA polymerase II [GO:0006357]; response to testosterone [GO:0033574]; skeletal system development [GO:0001501]; tissue homeostasis [GO:0001894]; transcription by RNA polymerase II [GO:0006366]; vasculogenesis [GO:0001570]; ventricular septum development [GO:0003281] -P31276 reviewed HXC13_HUMAN Homeobox protein Hox-C13 (Homeobox protein Hox-3G) HOXC13 HOX3G anatomical structure morphogenesis [GO:0009653]; anterior/posterior pattern specification [GO:0009952]; hair follicle development [GO:0001942]; nail development [GO:0035878]; positive regulation of DNA-templated transcription [GO:0045893]; regulation of transcription by RNA polymerase II [GO:0006357]; tongue morphogenesis [GO:0043587] -P31314 reviewed TLX1_HUMAN T-cell leukemia homeobox protein 1 (Homeobox protein Hox-11) (Proto-oncogene TCL-3) (T-cell leukemia/lymphoma protein 3) TLX1 HOX11 TCL3 animal organ development [GO:0048513]; regulation of transcription by RNA polymerase II [GO:0006357] -P31749 reviewed AKT1_HUMAN RAC-alpha serine/threonine-protein kinase (EC 2.7.11.1) (Protein kinase B) (PKB) (Protein kinase B alpha) (PKB alpha) (Proto-oncogene c-Akt) (RAC-PK-alpha) AKT1 PKB RAC activation-induced cell death of T cells [GO:0006924]; anoikis [GO:0043276]; apoptotic mitochondrial changes [GO:0008637]; behavioral response to pain [GO:0048266]; canonical NF-kappaB signal transduction [GO:0007249]; cell differentiation [GO:0030154]; cell migration involved in sprouting angiogenesis [GO:0002042]; cell population proliferation [GO:0008283]; cellular response to cadmium ion [GO:0071276]; cellular response to decreased oxygen levels [GO:0036294]; cellular response to epidermal growth factor stimulus [GO:0071364]; cellular response to granulocyte macrophage colony-stimulating factor stimulus [GO:0097011]; cellular response to insulin stimulus [GO:0032869]; cellular response to nerve growth factor stimulus [GO:1990090]; cellular response to oxidised low-density lipoprotein particle stimulus [GO:0140052]; cellular response to peptide [GO:1901653]; cellular response to prostaglandin E stimulus [GO:0071380]; cellular response to reactive oxygen species [GO:0034614]; cellular response to tumor necrosis factor [GO:0071356]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; cytokine-mediated signaling pathway [GO:0019221]; epidermal growth factor receptor signaling pathway [GO:0007173]; establishment of protein localization to mitochondrion [GO:0072655]; excitatory postsynaptic potential [GO:0060079]; execution phase of apoptosis [GO:0097194]; fibroblast migration [GO:0010761]; G protein-coupled receptor signaling pathway [GO:0007186]; gene expression [GO:0010467]; glucose homeostasis [GO:0042593]; glucose metabolic process [GO:0006006]; glycogen biosynthetic process [GO:0005978]; glycogen cell differentiation involved in embryonic placenta development [GO:0060709]; inflammatory response [GO:0006954]; insulin receptor signaling pathway [GO:0008286]; insulin-like growth factor receptor signaling pathway [GO:0048009]; interleukin-18-mediated signaling pathway [GO:0035655]; intracellular signal transduction [GO:0035556]; labyrinthine layer blood vessel development [GO:0060716]; lipopolysaccharide-mediated signaling pathway [GO:0031663]; maintenance of protein location in mitochondrion [GO:0072656]; mammalian oogenesis stage [GO:0022605]; mammary gland epithelial cell differentiation [GO:0060644]; maternal placenta development [GO:0001893]; negative regulation of apoptotic process [GO:0043066]; negative regulation of autophagy [GO:0010507]; negative regulation of cGAS/STING signaling pathway [GO:0160049]; negative regulation of cilium assembly [GO:1902018]; negative regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043154]; negative regulation of endopeptidase activity [GO:0010951]; negative regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001240]; negative regulation of fatty acid beta-oxidation [GO:0031999]; negative regulation of gene expression [GO:0010629]; negative regulation of leukocyte cell-cell adhesion [GO:1903038]; negative regulation of long-chain fatty acid import across plasma membrane [GO:0010748]; negative regulation of lymphocyte migration [GO:2000402]; negative regulation of macroautophagy [GO:0016242]; negative regulation of Notch signaling pathway [GO:0045746]; negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway [GO:1902176]; negative regulation of protein binding [GO:0032091]; negative regulation of protein kinase activity [GO:0006469]; negative regulation of protein localization to lysosome [GO:0150033]; negative regulation of protein serine/threonine kinase activity [GO:0071901]; negative regulation of protein ubiquitination [GO:0031397]; negative regulation of proteolysis [GO:0045861]; negative regulation of release of cytochrome c from mitochondria [GO:0090201]; nitric oxide biosynthetic process [GO:0006809]; non-canonical NF-kappaB signal transduction [GO:0038061]; osteoblast differentiation [GO:0001649]; peptidyl-serine phosphorylation [GO:0018105]; peptidyl-threonine phosphorylation [GO:0018107]; peripheral nervous system myelin maintenance [GO:0032287]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; phosphorylation [GO:0016310]; positive regulation of blood vessel endothelial cell migration [GO:0043536]; positive regulation of cell growth [GO:0030307]; positive regulation of cell migration [GO:0030335]; positive regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0045737]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of endodeoxyribonuclease activity [GO:0032079]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of fat cell differentiation [GO:0045600]; positive regulation of fibroblast migration [GO:0010763]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of gene expression [GO:0010628]; positive regulation of glucose import [GO:0046326]; positive regulation of glucose metabolic process [GO:0010907]; positive regulation of glycogen biosynthetic process [GO:0045725]; positive regulation of I-kappaB phosphorylation [GO:1903721]; positive regulation of lipid biosynthetic process [GO:0046889]; positive regulation of nitric oxide biosynthetic process [GO:0045429]; positive regulation of nitric-oxide synthase activity [GO:0051000]; positive regulation of organ growth [GO:0046622]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032436]; positive regulation of protein localization to cell surface [GO:2000010]; positive regulation of protein localization to endoplasmic reticulum [GO:1905552]; positive regulation of protein localization to nucleus [GO:1900182]; positive regulation of protein localization to plasma membrane [GO:1903078]; positive regulation of protein metabolic process [GO:0051247]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of sodium ion transport [GO:0010765]; positive regulation of TORC1 signaling [GO:1904263]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; protein autophosphorylation [GO:0046777]; protein import into nucleus [GO:0006606]; protein phosphorylation [GO:0006468]; protein ubiquitination [GO:0016567]; regulation of apoptotic process [GO:0042981]; regulation of cell migration [GO:0030334]; regulation of glycogen biosynthetic process [GO:0005979]; regulation of mRNA stability [GO:0043488]; regulation of myelination [GO:0031641]; regulation of neuron projection development [GO:0010975]; regulation of postsynapse organization [GO:0099175]; regulation of signal transduction by p53 class mediator [GO:1901796]; regulation of translation [GO:0006417]; regulation of tRNA methylation [GO:0110002]; regulation of type B pancreatic cell development [GO:2000074]; response to fluid shear stress [GO:0034405]; response to food [GO:0032094]; response to growth factor [GO:0070848]; response to growth hormone [GO:0060416]; response to heat [GO:0009408]; response to insulin-like growth factor stimulus [GO:1990418]; response to oxidative stress [GO:0006979]; response to UV-A [GO:0070141]; signal transduction [GO:0007165]; sphingosine-1-phosphate receptor signaling pathway [GO:0003376]; striated muscle cell differentiation [GO:0051146]; T cell costimulation [GO:0031295]; TOR signaling [GO:0031929]; virus-mediated perturbation of host defense response [GO:0019049] -P32242 reviewed OTX1_HUMAN Homeobox protein OTX1 (Orthodenticle homolog 1) OTX1 anterior/posterior pattern specification [GO:0009952]; diencephalon morphogenesis [GO:0048852]; inner ear morphogenesis [GO:0042472]; metencephalon development [GO:0022037]; midbrain development [GO:0030901]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -P32243 reviewed OTX2_HUMAN Homeobox protein OTX2 (Orthodenticle homolog 2) OTX2 axon guidance [GO:0007411]; dopaminergic neuron differentiation [GO:0071542]; forebrain development [GO:0030900]; midbrain development [GO:0030901]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of embryonic development [GO:0040019]; positive regulation of gastrulation [GO:2000543]; positive regulation of transcription by RNA polymerase II [GO:0045944]; primitive streak formation [GO:0090009]; protein-containing complex assembly [GO:0065003]; regulation of fibroblast growth factor receptor signaling pathway [GO:0040036]; regulation of smoothened signaling pathway [GO:0008589]; regulation of transcription by RNA polymerase II [GO:0006357] -P32519 reviewed ELF1_HUMAN ETS-related transcription factor Elf-1 (E74-like factor 1) ELF1 negative regulation of T cell receptor signaling pathway [GO:0050860]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cytokine production [GO:0001817]; regulation of transcription by RNA polymerase II [GO:0006357] -P32971 reviewed TNFL8_HUMAN Tumor necrosis factor ligand superfamily member 8 (CD30 ligand) (CD30-L) (CD antigen CD153) TNFSF8 CD30L CD30LG CD8-positive, alpha-beta T cell differentiation [GO:0043374]; cell-cell signaling [GO:0007267]; defense response to Gram-positive bacterium [GO:0050830]; immune response [GO:0006955]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of T cell proliferation [GO:0042129] -P33076 reviewed C2TA_HUMAN MHC class II transactivator (CIITA) (EC 2.3.1.-) (EC 2.7.11.1) CIITA MHC2TA immune response [GO:0006955]; negative regulation of collagen biosynthetic process [GO:0032966]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of viral entry into host cell [GO:0046597]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of MHC class I biosynthetic process [GO:0045345]; positive regulation of MHC class II biosynthetic process [GO:0045348]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to antibiotic [GO:0046677]; response to type II interferon [GO:0034341] -P35222 reviewed CTNB1_HUMAN Catenin beta-1 (Beta-catenin) CTNNB1 CTNNB OK/SW-cl.35 PRO2286 acinar cell differentiation [GO:0090425]; adherens junction assembly [GO:0034333]; anterior/posterior axis specification [GO:0009948]; apoptotic signaling pathway [GO:0097190]; astrocyte-dopaminergic neuron signaling [GO:0036520]; bone resorption [GO:0045453]; branching involved in blood vessel morphogenesis [GO:0001569]; branching involved in ureteric bud morphogenesis [GO:0001658]; canonical Wnt signaling pathway [GO:0060070]; canonical Wnt signaling pathway involved in mesenchymal stem cell differentiation [GO:0044338]; cell adhesion [GO:0007155]; cell fate specification [GO:0001708]; cell maturation [GO:0048469]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; cellular response to growth factor stimulus [GO:0071363]; cellular response to indole-3-methanol [GO:0071681]; central nervous system vasculogenesis [GO:0022009]; chemical synaptic transmission [GO:0007268]; chondrocyte differentiation [GO:0002062]; cranial ganglion development [GO:0061550]; cranial skeletal system development [GO:1904888]; detection of muscle stretch [GO:0035995]; dorsal root ganglion development [GO:1990791]; dorsal/ventral axis specification [GO:0009950]; ectoderm development [GO:0007398]; embryonic axis specification [GO:0000578]; embryonic brain development [GO:1990403]; embryonic digit morphogenesis [GO:0042733]; embryonic foregut morphogenesis [GO:0048617]; embryonic forelimb morphogenesis [GO:0035115]; embryonic heart tube development [GO:0035050]; embryonic hindlimb morphogenesis [GO:0035116]; embryonic skeletal limb joint morphogenesis [GO:0036023]; endodermal cell fate commitment [GO:0001711]; endothelial tube morphogenesis [GO:0061154]; epithelial cell differentiation involved in prostate gland development [GO:0060742]; epithelial cell proliferation involved in prostate gland development [GO:0060767]; epithelial to mesenchymal transition [GO:0001837]; epithelial tube branching involved in lung morphogenesis [GO:0060441]; establishment of blood-brain barrier [GO:0060856]; establishment of blood-retinal barrier [GO:1990963]; fibroblast growth factor receptor signaling pathway [GO:0008543]; fungiform papilla formation [GO:0061198]; gastrulation with mouth forming second [GO:0001702]; genitalia morphogenesis [GO:0035112]; glial cell fate determination [GO:0007403]; hair cell differentiation [GO:0035315]; hair follicle morphogenesis [GO:0031069]; hair follicle placode formation [GO:0060789]; hindbrain development [GO:0030902]; hypothalamus development [GO:0021854]; in utero embryonic development [GO:0001701]; layer formation in cerebral cortex [GO:0021819]; lens morphogenesis in camera-type eye [GO:0002089]; lung epithelial cell differentiation [GO:0060487]; lung induction [GO:0060492]; lung-associated mesenchyme development [GO:0060484]; male genitalia development [GO:0030539]; MAPK cascade [GO:0000165]; mesenchymal cell proliferation involved in lung development [GO:0060916]; mesenchymal stem cell differentiation [GO:0072497]; metanephros morphogenesis [GO:0003338]; midbrain dopaminergic neuron differentiation [GO:1904948]; myoblast proliferation [GO:0051450]; negative regulation of angiogenesis [GO:0016525]; negative regulation of apoptotic process [GO:0043066]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of chondrocyte differentiation [GO:0032331]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of gene expression [GO:0010629]; negative regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis [GO:0003340]; negative regulation of mitotic cell cycle, embryonic [GO:0045976]; negative regulation of oligodendrocyte differentiation [GO:0048715]; negative regulation of osteoclast differentiation [GO:0045671]; negative regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway [GO:1903377]; negative regulation of protein sumoylation [GO:0033234]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nephron tubule formation [GO:0072079]; neural plate development [GO:0001840]; neuroblast proliferation [GO:0007405]; neuron fate determination [GO:0048664]; neuron migration [GO:0001764]; neuron projection extension [GO:1990138]; odontogenesis of dentin-containing tooth [GO:0042475]; oligodendrocyte differentiation [GO:0048709]; oocyte development [GO:0048599]; osteoblast differentiation [GO:0001649]; osteoclast differentiation [GO:0030316]; outflow tract morphogenesis [GO:0003151]; oviduct development [GO:0060066]; pancreas development [GO:0031016]; positive regulation of apoptotic process [GO:0043065]; positive regulation of branching involved in lung morphogenesis [GO:0061047]; positive regulation of cell differentiation [GO:0045597]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of determination of dorsal identity [GO:2000017]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of endothelial cell differentiation [GO:0045603]; positive regulation of epithelial cell proliferation involved in prostate gland development [GO:0060769]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of fibroblast growth factor receptor signaling pathway [GO:0045743]; positive regulation of gene expression [GO:0010628]; positive regulation of heparan sulfate proteoglycan biosynthetic process [GO:0010909]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of mesenchymal cell proliferation [GO:0002053]; positive regulation of myoblast proliferation [GO:2000288]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of odontoblast differentiation [GO:1901331]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of skeletal muscle tissue development [GO:0048643]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of telomere maintenance via telomerase [GO:0032212]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; protein localization to cell surface [GO:0034394]; protein polyubiquitination [GO:0000209]; proximal/distal pattern formation [GO:0009954]; regulation of angiogenesis [GO:0045765]; regulation of calcium ion import [GO:0090279]; regulation of centriole-centriole cohesion [GO:0030997]; regulation of centromeric sister chromatid cohesion [GO:0070602]; regulation of fibroblast proliferation [GO:0048145]; regulation of myelination [GO:0031641]; regulation of nephron tubule epithelial cell differentiation [GO:0072182]; regulation of neurogenesis [GO:0050767]; regulation of protein localization to cell surface [GO:2000008]; regulation of protein ubiquitination [GO:0031396]; regulation of secondary heart field cardioblast proliferation [GO:0003266]; regulation of smooth muscle cell proliferation [GO:0048660]; regulation of synapse assembly [GO:0051963]; regulation of T cell proliferation [GO:0042129]; regulation of timing of anagen [GO:0051884]; renal inner medulla development [GO:0072053]; renal outer medulla development [GO:0072054]; renal vesicle formation [GO:0072033]; response to estradiol [GO:0032355]; response to xenobiotic stimulus [GO:0009410]; smooth muscle cell differentiation [GO:0051145]; stem cell population maintenance [GO:0019827]; stem cell proliferation [GO:0072089]; sympathetic ganglion development [GO:0061549]; synapse organization [GO:0050808]; synaptic vesicle clustering [GO:0097091]; synaptic vesicle transport [GO:0048489]; T cell differentiation in thymus [GO:0033077]; thymus development [GO:0048538]; trachea formation [GO:0060440]; transcription by RNA polymerase II [GO:0006366] -P35269 reviewed T2FA_HUMAN General transcription factor IIF subunit 1 (General transcription factor IIF 74 kDa subunit) (Transcription initiation factor IIF subunit alpha) (TFIIF-alpha) (Transcription initiation factor RAP74) GTF2F1 RAP74 negative regulation of protein binding [GO:0032091]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; response to virus [GO:0009615]; transcription by RNA polymerase II [GO:0006366]; transcription elongation by RNA polymerase II [GO:0006368]; transcription initiation at RNA polymerase II promoter [GO:0006367] -P35398 reviewed RORA_HUMAN Nuclear receptor ROR-alpha (Nuclear receptor RZR-alpha) (Nuclear receptor subfamily 1 group F member 1) (RAR-related orphan receptor A) (Retinoid-related orphan receptor-alpha) RORA NR1F1 RZRA angiogenesis [GO:0001525]; cellular response to hypoxia [GO:0071456]; cellular response to interleukin-1 [GO:0071347]; cellular response to sterol [GO:0036315]; cellular response to tumor necrosis factor [GO:0071356]; cerebellar granule cell precursor proliferation [GO:0021930]; cerebellar Purkinje cell differentiation [GO:0021702]; cGMP metabolic process [GO:0046068]; cholesterol homeostasis [GO:0042632]; circadian regulation of gene expression [GO:0032922]; intracellular receptor signaling pathway [GO:0030522]; muscle cell differentiation [GO:0042692]; negative regulation of canonical NF-kappaB signal transduction [GO:0043124]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of inflammatory response [GO:0050728]; nitric oxide biosynthetic process [GO:0006809]; positive regulation of circadian rhythm [GO:0042753]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular endothelial growth factor production [GO:0010575]; regulation of DNA-templated transcription [GO:0006355]; regulation of glucose metabolic process [GO:0010906]; regulation of macrophage activation [GO:0043030]; regulation of smoothened signaling pathway [GO:0008589]; regulation of steroid metabolic process [GO:0019218]; regulation of transcription by RNA polymerase II [GO:0006357]; T-helper 17 cell differentiation [GO:0072539]; triglyceride homeostasis [GO:0070328]; xenobiotic metabolic process [GO:0006805] -P35453 reviewed HXD13_HUMAN Homeobox protein Hox-D13 (Homeobox protein Hox-4I) HOXD13 HOX4I anterior/posterior pattern specification [GO:0009952]; branch elongation of an epithelium [GO:0060602]; embryonic digit morphogenesis [GO:0042733]; embryonic hindgut morphogenesis [GO:0048619]; male genitalia development [GO:0030539]; morphogenesis of an epithelial fold [GO:0060571]; positive regulation of transcription by RNA polymerase II [GO:0045944]; prostate epithelial cord arborization involved in prostate glandular acinus morphogenesis [GO:0060527]; regulation of branching involved in prostate gland morphogenesis [GO:0060687]; regulation of cell population proliferation [GO:0042127]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; response to testosterone [GO:0033574]; skeletal system development [GO:0001501]; transcription by RNA polymerase II [GO:0006366] -P35558 reviewed PCKGC_HUMAN Phosphoenolpyruvate carboxykinase, cytosolic [GTP] (PEPCK-C) (EC 4.1.1.32) (Serine-protein kinase PCK1) (EC 2.7.11.-) PCK1 PEPCK1 cellular hyperosmotic salinity response [GO:0071475]; cellular hypotonic salinity response [GO:0071477]; cellular response to cAMP [GO:0071320]; cellular response to dexamethasone stimulus [GO:0071549]; cellular response to fructose stimulus [GO:0071332]; cellular response to glucagon stimulus [GO:0071377]; cellular response to glucose stimulus [GO:0071333]; cellular response to hypoxia [GO:0071456]; cellular response to insulin stimulus [GO:0032869]; cellular response to interleukin-1 [GO:0071347]; cellular response to phorbol 13-acetate 12-myristate [GO:1904628]; cellular response to potassium ion starvation [GO:0051365]; cellular response to raffinose [GO:0097403]; cellular response to retinoic acid [GO:0071300]; cellular response to tumor necrosis factor [GO:0071356]; gluconeogenesis [GO:0006094]; glucose homeostasis [GO:0042593]; glucose metabolic process [GO:0006006]; glyceraldehyde-3-phosphate biosynthetic process [GO:0046166]; glycerol biosynthetic process from pyruvate [GO:0046327]; hepatocyte differentiation [GO:0070365]; oxaloacetate metabolic process [GO:0006107]; peptidyl-serine phosphorylation [GO:0018105]; positive regulation of lipid biosynthetic process [GO:0046889]; positive regulation of memory T cell differentiation [GO:0043382]; positive regulation of transcription by RNA polymerase II [GO:0045944]; propionate catabolic process [GO:0019543]; regulation of lipid biosynthetic process [GO:0046890]; response to activity [GO:0014823]; response to insulin [GO:0032868]; response to interleukin-6 [GO:0070741]; response to lipopolysaccharide [GO:0032496]; response to methionine [GO:1904640]; response to starvation [GO:0042594]; tricarboxylic acid metabolic process [GO:0072350] -P35638 reviewed DDIT3_HUMAN DNA damage-inducible transcript 3 protein (DDIT-3) (C/EBP zeta) (C/EBP-homologous protein) (CHOP) (C/EBP-homologous protein 10) (CHOP-10) (CCAAT/enhancer-binding protein homologous protein) (Growth arrest and DNA damage-inducible protein GADD153) DDIT3 CHOP CHOP10 GADD153 anterior/posterior axis specification [GO:0009948]; artery development [GO:0060840]; ATF6-mediated unfolded protein response [GO:0036500]; blood vessel maturation [GO:0001955]; cell redox homeostasis [GO:0045454]; DNA damage response [GO:0006974]; endoplasmic reticulum unfolded protein response [GO:0030968]; ER overload response [GO:0006983]; establishment of protein localization to mitochondrion [GO:0072655]; gene expression [GO:0010467]; integrated stress response signaling [GO:0140467]; intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress [GO:0070059]; intrinsic apoptotic signaling pathway in response to nitrosative stress [GO:1990442]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cold-induced thermogenesis [GO:0120163]; negative regulation of determination of dorsal identity [GO:2000016]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of interleukin-17 production [GO:0032700]; negative regulation of interleukin-4 production [GO:0032713]; negative regulation of myoblast differentiation [GO:0045662]; negative regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051898]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of type II interferon production [GO:0032689]; PERK-mediated unfolded protein response [GO:0036499]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway [GO:1902237]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of intrinsic apoptotic signaling pathway [GO:2001244]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; regulation of autophagy [GO:0010506]; regulation of cell cycle [GO:0051726]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; release of sequestered calcium ion into cytosol [GO:0051209]; response to endoplasmic reticulum stress [GO:0034976]; response to platelet-derived growth factor [GO:0036119]; response to starvation [GO:0042594]; response to unfolded protein [GO:0006986]; response to wounding [GO:0009611]; sensory perception of sound [GO:0007605]; vascular associated smooth muscle cell migration [GO:1904738]; vascular associated smooth muscle cell proliferation [GO:1990874]; Wnt signaling pathway [GO:0016055] -P35659 reviewed DEK_HUMAN Protein DEK DEK chromatin remodeling [GO:0006338]; positive regulation of transcription by RNA polymerase I [GO:0045943]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription by RNA polymerase III [GO:0045945]; regulation of double-strand break repair [GO:2000779]; regulation of double-strand break repair via nonhomologous end joining [GO:2001032]; regulation of transcription by RNA polymerase II [GO:0006357]; signal transduction [GO:0007165]; transcription by RNA polymerase II [GO:0006366]; viral genome replication [GO:0019079] -P35680 reviewed HNF1B_HUMAN Hepatocyte nuclear factor 1-beta (HNF-1-beta) (HNF-1B) (Homeoprotein LFB3) (Transcription factor 2) (TCF-2) (Variant hepatic nuclear factor 1) (vHNF1) HNF1B TCF2 anterior/posterior pattern specification [GO:0009952]; branching morphogenesis of an epithelial tube [GO:0048754]; embryonic digestive tract morphogenesis [GO:0048557]; endocrine pancreas development [GO:0031018]; endodermal cell fate specification [GO:0001714]; epithelial cell proliferation [GO:0050673]; genitalia development [GO:0048806]; hepatoblast differentiation [GO:0061017]; hindbrain development [GO:0030902]; inner cell mass cell differentiation [GO:0001826]; insulin secretion [GO:0030073]; kidney development [GO:0001822]; mesenchymal cell apoptotic process involved in metanephros development [GO:1900200]; mesonephric duct formation [GO:0072181]; negative regulation of mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis [GO:0061296]; negative regulation of mesenchymal cell apoptotic process involved in metanephros development [GO:1900212]; negative regulation of transcription by RNA polymerase II [GO:0000122]; Notch signaling pathway [GO:0007219]; pancreas development [GO:0031016]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; pronephric nephron tubule development [GO:0039020]; pronephros development [GO:0048793]; regulation of branch elongation involved in ureteric bud branching [GO:0072095]; regulation of pronephros size [GO:0035565]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of Wnt signaling pathway [GO:0030111]; response to glucose [GO:0009749]; ureteric bud elongation [GO:0060677] -P35713 reviewed SOX18_HUMAN Transcription factor SOX-18 SOX18 angiogenesis [GO:0001525]; blood vessel endothelial cell migration [GO:0043534]; cell maturation [GO:0048469]; embryonic heart tube development [GO:0035050]; endocardial cell differentiation [GO:0060956]; endocardium formation [GO:0060214]; establishment of endothelial barrier [GO:0061028]; hair cycle process [GO:0022405]; hair follicle development [GO:0001942]; heart looping [GO:0001947]; in utero embryonic development [GO:0001701]; lymphangiogenesis [GO:0001946]; lymphatic endothelial cell differentiation [GO:0060836]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; outflow tract morphogenesis [GO:0003151]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of stem cell proliferation [GO:0072091]; stem cell fate specification [GO:0048866]; vasculature development [GO:0001944]; vasculogenesis [GO:0001570] -P35716 reviewed SOX11_HUMAN Transcription factor SOX-11 SOX11 brain development [GO:0007420]; camera-type eye morphogenesis [GO:0048593]; closure of optic fissure [GO:0061386]; cornea development in camera-type eye [GO:0061303]; embryonic digestive tract morphogenesis [GO:0048557]; embryonic skeletal system morphogenesis [GO:0048704]; eyelid development in camera-type eye [GO:0061029]; glial cell proliferation [GO:0014009]; hard palate development [GO:0060022]; kidney development [GO:0001822]; lens morphogenesis in camera-type eye [GO:0002089]; lung morphogenesis [GO:0060425]; negative regulation of gene expression [GO:0010629]; negative regulation of glial cell proliferation [GO:0060253]; negative regulation of lymphocyte proliferation [GO:0050672]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transcription regulatory region DNA binding [GO:2000678]; nervous system development [GO:0007399]; neuroepithelial cell differentiation [GO:0060563]; neuron differentiation [GO:0030182]; noradrenergic neuron differentiation [GO:0003357]; oligodendrocyte development [GO:0014003]; outflow tract morphogenesis [GO:0003151]; positive regulation of BMP signaling pathway [GO:0030513]; positive regulation of gene expression [GO:0010628]; positive regulation of hippo signaling [GO:0035332]; positive regulation of hormone secretion [GO:0046887]; positive regulation of lens epithelial cell proliferation [GO:2001111]; positive regulation of neurogenesis [GO:0050769]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of ossification [GO:0045778]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transforming growth factor beta receptor signaling pathway [GO:0017015]; skeletal muscle cell differentiation [GO:0035914]; soft palate development [GO:0060023]; spinal cord development [GO:0021510]; sympathetic nervous system development [GO:0048485]; ventricular septum morphogenesis [GO:0060412] -P35869 reviewed AHR_HUMAN Aryl hydrocarbon receptor (Ah receptor) (AhR) (Class E basic helix-loop-helix protein 76) (bHLHe76) AHR BHLHE76 apoptotic process [GO:0006915]; blood vessel development [GO:0001568]; cAMP-mediated signaling [GO:0019933]; cellular response to 2,3,7,8-tetrachlorodibenzodioxine [GO:1904613]; cellular response to cAMP [GO:0071320]; cellular response to forskolin [GO:1904322]; cellular response to molecule of bacterial origin [GO:0071219]; circadian regulation of gene expression [GO:0032922]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of inflammatory response [GO:0050728]; negative regulation of T cell mediated immune response to tumor cell [GO:0002841]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of adaptive immune response [GO:0002819]; regulation of B cell proliferation [GO:0030888]; regulation of DNA-templated transcription [GO:0006355]; regulation of gene expression [GO:0010468]; regulation of transcription by RNA polymerase II [GO:0006357]; response to toxic substance [GO:0009636]; response to xenobiotic stimulus [GO:0009410]; xenobiotic metabolic process [GO:0006805] -P36508 reviewed ZNF76_HUMAN Zinc finger protein 76 (Zinc finger protein 523) ZNF76 D6S229E ZNF523 central nervous system development [GO:0007417]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of transcription by RNA polymerase III [GO:0006359] -P36894 reviewed BMR1A_HUMAN Bone morphogenetic protein receptor type-1A (BMP type-1A receptor) (BMPR-1A) (EC 2.7.11.30) (Activin receptor-like kinase 3) (ALK-3) (Serine/threonine-protein kinase receptor R5) (SKR5) (CD antigen CD292) BMPR1A ACVRLK3 ALK3 angiogenesis [GO:0001525]; atrioventricular node cell development [GO:0060928]; atrioventricular valve development [GO:0003171]; BMP signaling pathway [GO:0030509]; cardiac conduction system development [GO:0003161]; cardiac right ventricle morphogenesis [GO:0003215]; cellular response to BMP stimulus [GO:0071773]; cellular response to growth factor stimulus [GO:0071363]; central nervous system neuron differentiation [GO:0021953]; chondrocyte differentiation [GO:0002062]; developmental growth [GO:0048589]; dorsal aorta morphogenesis [GO:0035912]; dorsal/ventral axis specification [GO:0009950]; dorsal/ventral pattern formation [GO:0009953]; ectoderm development [GO:0007398]; embryonic digit morphogenesis [GO:0042733]; embryonic organ development [GO:0048568]; endocardial cushion formation [GO:0003272]; endocardial cushion morphogenesis [GO:0003203]; epithelial cell proliferation [GO:0050673]; fibrous ring of heart morphogenesis [GO:1905285]; heart formation [GO:0060914]; hindlimb morphogenesis [GO:0035137]; immune response [GO:0006955]; in utero embryonic development [GO:0001701]; lateral mesoderm development [GO:0048368]; lung development [GO:0030324]; mesendoderm development [GO:0048382]; mesoderm formation [GO:0001707]; mitral valve morphogenesis [GO:0003183]; Mullerian duct regression [GO:0001880]; negative regulation of gene expression [GO:0010629]; negative regulation of muscle cell differentiation [GO:0051148]; negative regulation of neurogenesis [GO:0050768]; negative regulation of smooth muscle cell migration [GO:0014912]; neural crest cell development [GO:0014032]; neural plate mediolateral regionalization [GO:0021998]; odontogenesis of dentin-containing tooth [GO:0042475]; osteoblast differentiation [GO:0001649]; outflow tract morphogenesis [GO:0003151]; outflow tract septum morphogenesis [GO:0003148]; paraxial mesoderm structural organization [GO:0048352]; pharyngeal arch artery morphogenesis [GO:0061626]; pituitary gland development [GO:0021983]; positive regulation of bone mineralization [GO:0030501]; positive regulation of cardiac muscle cell proliferation [GO:0060045]; positive regulation of cardiac ventricle development [GO:1904414]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of gene expression [GO:0010628]; positive regulation of mesenchymal cell proliferation [GO:0002053]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta2 production [GO:0032915]; positive regulation of vascular associated smooth muscle cell proliferation [GO:1904707]; regulation of cardiac muscle cell proliferation [GO:0060043]; regulation of cellular senescence [GO:2000772]; regulation of lateral mesodermal cell fate specification [GO:0048378]; roof of mouth development [GO:0060021]; somatic stem cell population maintenance [GO:0035019]; somitogenesis [GO:0001756]; transforming growth factor beta receptor signaling pathway [GO:0007179]; tricuspid valve morphogenesis [GO:0003186]; ventricular compact myocardium morphogenesis [GO:0003223]; ventricular septum morphogenesis [GO:0060412]; ventricular trabecula myocardium morphogenesis [GO:0003222] -P36956 reviewed SRBP1_HUMAN Sterol regulatory element-binding protein 1 (SREBP-1) (Class D basic helix-loop-helix protein 1) (bHLHd1) (Sterol regulatory element-binding transcription factor 1) [Cleaved into: Processed sterol regulatory element-binding protein 1 (Transcription factor SREBF1)] SREBF1 BHLHD1 SREBP1 cellular response to fatty acid [GO:0071398]; cellular response to starvation [GO:0009267]; cholesterol biosynthetic process [GO:0006695]; circadian rhythm [GO:0007623]; fat cell differentiation [GO:0045444]; insulin receptor signaling pathway [GO:0008286]; insulin secretion [GO:0030073]; lipid biosynthetic process [GO:0008610]; lipid metabolic process [GO:0006629]; lung development [GO:0030324]; mRNA transcription by RNA polymerase II [GO:0042789]; negative regulation of insulin secretion [GO:0046676]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of triglyceride metabolic process [GO:0090209]; positive regulation of cholesterol biosynthetic process [GO:0045542]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of triglyceride biosynthetic process [GO:0010867]; regulation of fatty acid metabolic process [GO:0019217]; regulation of heart rate by chemical signal [GO:0003062]; regulation of lipid storage [GO:0010883]; regulation of mitophagy [GO:1901524]; regulation of protein stability [GO:0031647]; regulation of protein targeting to mitochondrion [GO:1903214]; regulation of transcription by RNA polymerase II [GO:0006357]; response to cAMP [GO:0051591]; response to ethanol [GO:0045471]; response to food [GO:0032094]; response to fructose [GO:0009750]; response to glucagon [GO:0033762]; response to glucose [GO:0009749]; response to nutrient [GO:0007584]; response to progesterone [GO:0032570]; response to retinoic acid [GO:0032526]; response to xenobiotic stimulus [GO:0009410]; SREBP signaling pathway [GO:0032933] -P37023 reviewed ACVL1_HUMAN Serine/threonine-protein kinase receptor R3 (SKR3) (EC 2.7.11.30) (Activin receptor-like kinase 1) (ALK-1) (TGF-B superfamily receptor type I) (TSR-I) ACVRL1 ACVRLK1 ALK1 angiogenesis [GO:0001525]; artery development [GO:0060840]; blood circulation [GO:0008015]; blood vessel endothelial cell proliferation involved in sprouting angiogenesis [GO:0002043]; blood vessel maturation [GO:0001955]; blood vessel remodeling [GO:0001974]; BMP signaling pathway [GO:0030509]; cellular response to BMP stimulus [GO:0071773]; cellular response to growth factor stimulus [GO:0071363]; cellular response to transforming growth factor beta stimulus [GO:0071560]; dorsal aorta morphogenesis [GO:0035912]; dorsal/ventral pattern formation [GO:0009953]; endocardial cushion morphogenesis [GO:0003203]; endothelial tube morphogenesis [GO:0061154]; heart development [GO:0007507]; in utero embryonic development [GO:0001701]; lymphangiogenesis [GO:0001946]; lymphatic endothelial cell differentiation [GO:0060836]; negative regulation of blood vessel endothelial cell migration [GO:0043537]; negative regulation of cell adhesion [GO:0007162]; negative regulation of cell growth [GO:0030308]; negative regulation of cell migration [GO:0030336]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of endothelial cell differentiation [GO:0045602]; negative regulation of endothelial cell migration [GO:0010596]; negative regulation of endothelial cell proliferation [GO:0001937]; negative regulation of focal adhesion assembly [GO:0051895]; negative regulation of gene expression [GO:0010629]; positive regulation of angiogenesis [GO:0045766]; positive regulation of bicellular tight junction assembly [GO:1903348]; positive regulation of BMP signaling pathway [GO:0030513]; positive regulation of chondrocyte differentiation [GO:0032332]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of endothelial cell differentiation [GO:0045603]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of epithelial cell differentiation [GO:0030858]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of blood pressure [GO:0008217]; regulation of blood vessel endothelial cell migration [GO:0043535]; regulation of DNA replication [GO:0006275]; regulation of DNA-templated transcription [GO:0006355]; regulation of endothelial cell proliferation [GO:0001936]; response to hypoxia [GO:0001666]; retina vasculature development in camera-type eye [GO:0061298]; signal transduction [GO:0007165]; transforming growth factor beta receptor signaling pathway [GO:0007179]; venous blood vessel development [GO:0060841]; wound healing, spreading of epidermal cells [GO:0035313] -P37231 reviewed PPARG_HUMAN Peroxisome proliferator-activated receptor gamma (PPAR-gamma) (Nuclear receptor subfamily 1 group C member 3) PPARG NR1C3 activation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0006919]; BMP signaling pathway [GO:0030509]; cell differentiation [GO:0030154]; cell fate commitment [GO:0045165]; cell maturation [GO:0048469]; cellular response to hypoxia [GO:0071456]; cellular response to insulin stimulus [GO:0032869]; cellular response to low-density lipoprotein particle stimulus [GO:0071404]; epithelial cell differentiation [GO:0030855]; fatty acid metabolic process [GO:0006631]; glucose homeostasis [GO:0042593]; hormone-mediated signaling pathway [GO:0009755]; innate immune response [GO:0045087]; lipid homeostasis [GO:0055088]; lipid metabolic process [GO:0006629]; lipoprotein transport [GO:0042953]; long-chain fatty acid transport [GO:0015909]; macrophage derived foam cell differentiation [GO:0010742]; monocyte differentiation [GO:0030224]; mRNA transcription by RNA polymerase II [GO:0042789]; negative regulation of angiogenesis [GO:0016525]; negative regulation of blood vessel endothelial cell migration [GO:0043537]; negative regulation of BMP signaling pathway [GO:0030514]; negative regulation of cardiac muscle hypertrophy in response to stress [GO:1903243]; negative regulation of cellular response to transforming growth factor beta stimulus [GO:1903845]; negative regulation of cholesterol storage [GO:0010887]; negative regulation of connective tissue replacement involved in inflammatory response wound healing [GO:1904597]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of extracellular matrix assembly [GO:1901202]; negative regulation of gene expression [GO:0010629]; negative regulation of inflammatory response [GO:0050728]; negative regulation of lipid storage [GO:0010888]; negative regulation of macrophage derived foam cell differentiation [GO:0010745]; negative regulation of MAP kinase activity [GO:0043407]; negative regulation of miRNA transcription [GO:1902894]; negative regulation of mitochondrial fission [GO:0090258]; negative regulation of osteoblast differentiation [GO:0045668]; negative regulation of receptor signaling pathway via STAT [GO:1904893]; negative regulation of sequestering of triglyceride [GO:0010891]; negative regulation of signaling receptor activity [GO:2000272]; negative regulation of SMAD protein signal transduction [GO:0060392]; negative regulation of smooth muscle cell proliferation [GO:0048662]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; negative regulation of type II interferon-mediated signaling pathway [GO:0060336]; negative regulation of vascular associated smooth muscle cell proliferation [GO:1904706]; negative regulation of vascular endothelial cell proliferation [GO:1905563]; peroxisome proliferator activated receptor signaling pathway [GO:0035357]; placenta development [GO:0001890]; positive regulation of adiponectin secretion [GO:0070165]; positive regulation of adipose tissue development [GO:1904179]; positive regulation of cholesterol efflux [GO:0010875]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of fat cell differentiation [GO:0045600]; positive regulation of fatty acid metabolic process [GO:0045923]; positive regulation of gene expression [GO:0010628]; positive regulation of low-density lipoprotein receptor activity [GO:1905599]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular associated smooth muscle cell apoptotic process [GO:1905461]; regulation of blood pressure [GO:0008217]; regulation of cellular response to insulin stimulus [GO:1900076]; regulation of cholesterol transporter activity [GO:0060694]; regulation of circadian rhythm [GO:0042752]; regulation of transcription by RNA polymerase II [GO:0006357]; response to lipid [GO:0033993]; response to nutrient [GO:0007584]; retinoic acid receptor signaling pathway [GO:0048384]; rhythmic process [GO:0048511]; signal transduction [GO:0007165]; white fat cell differentiation [GO:0050872] -P37275 reviewed ZEB1_HUMAN Zinc finger E-box-binding homeobox 1 (NIL-2-A zinc finger protein) (Negative regulator of IL2) (Transcription factor 8) (TCF-8) ZEB1 AREB6 TCF8 cartilage development [GO:0051216]; cell differentiation [GO:0030154]; cellular response to amino acid stimulus [GO:0071230]; cellular response to transforming growth factor beta stimulus [GO:0071560]; cochlea morphogenesis [GO:0090103]; embryonic camera-type eye morphogenesis [GO:0048596]; embryonic skeletal system morphogenesis [GO:0048704]; forebrain development [GO:0030900]; keratinocyte proliferation [GO:0043616]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of endothelial cell differentiation [GO:0045602]; negative regulation of keratinocyte proliferation [GO:0010839]; negative regulation of transcription by RNA polymerase II [GO:0000122]; pattern specification process [GO:0007389]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of mesenchymal cell proliferation [GO:0010464]; regulation of smooth muscle cell differentiation [GO:0051150]; regulation of T cell differentiation in thymus [GO:0033081]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of transforming growth factor beta receptor signaling pathway [GO:0017015]; response to activity [GO:0014823]; response to nutrient levels [GO:0031667]; semicircular canal morphogenesis [GO:0048752] -P38159 reviewed RBMX_HUMAN RNA-binding motif protein, X chromosome (Glycoprotein p43) (Heterogeneous nuclear ribonucleoprotein G) (hnRNP G) [Cleaved into: RNA-binding motif protein, X chromosome, N-terminally processed] RBMX HNRPG RBMXP1 cellular response to interleukin-1 [GO:0071347]; membrane protein ectodomain proteolysis [GO:0006509]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of mRNA splicing, via spliceosome [GO:0048025]; osteoblast differentiation [GO:0001649]; positive regulation of mRNA splicing, via spliceosome [GO:0048026]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein homooligomerization [GO:0051260]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; transcription by RNA polymerase II [GO:0006366] -P38398 reviewed BRCA1_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) (RING finger protein 53) (RING-type E3 ubiquitin transferase BRCA1) BRCA1 RNF53 cellular response to indole-3-methanol [GO:0071681]; cellular response to ionizing radiation [GO:0071479]; cellular response to tumor necrosis factor [GO:0071356]; centrosome cycle [GO:0007098]; chordate embryonic development [GO:0043009]; chromosome segregation [GO:0007059]; DNA damage response [GO:0006974]; DNA repair [GO:0006281]; DNA strand resection involved in replication fork processing [GO:0110025]; double-strand break repair [GO:0006302]; double-strand break repair via homologous recombination [GO:0000724]; fatty acid biosynthetic process [GO:0006633]; homologous recombination [GO:0035825]; intrinsic apoptotic signaling pathway in response to DNA damage [GO:0008630]; mitotic G2 DNA damage checkpoint signaling [GO:0007095]; mitotic G2/M transition checkpoint [GO:0044818]; negative regulation of cell cycle [GO:0045786]; negative regulation of cell growth [GO:0030308]; negative regulation of centriole replication [GO:0046600]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of extrinsic apoptotic signaling pathway via death domain receptors [GO:1902042]; negative regulation of fatty acid biosynthetic process [GO:0045717]; negative regulation of gene expression via chromosomal CpG island methylation [GO:0044027]; negative regulation of intracellular estrogen receptor signaling pathway [GO:0033147]; negative regulation of reactive oxygen species metabolic process [GO:2000378]; positive regulation of angiogenesis [GO:0045766]; positive regulation of DNA repair [GO:0045739]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular endothelial growth factor production [GO:0010575]; postreplication repair [GO:0006301]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020]; protein ubiquitination [GO:0016567]; random inactivation of X chromosome [GO:0060816]; regulation of cell cycle [GO:0051726]; regulation of DNA damage checkpoint [GO:2000001]; regulation of DNA repair [GO:0006282]; regulation of transcription by RNA polymerase II [GO:0006357]; response to ionizing radiation [GO:0010212]; sex-chromosome dosage compensation [GO:0007549] -P39900 reviewed MMP12_HUMAN Macrophage metalloelastase (MME) (EC 3.4.24.65) (Macrophage elastase) (ME) (hME) (Matrix metalloproteinase-12) (MMP-12) MMP12 HME bronchiole development [GO:0060435]; cellular response to virus [GO:0098586]; collagen catabolic process [GO:0030574]; elastin catabolic process [GO:0060309]; extracellular matrix disassembly [GO:0022617]; extracellular matrix organization [GO:0030198]; lung alveolus development [GO:0048286]; negative regulation of endothelial cell-matrix adhesion via fibronectin [GO:1904905]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of type I interferon-mediated signaling pathway [GO:0060339]; positive regulation of epithelial cell proliferation involved in wound healing [GO:0060054]; positive regulation of interferon-alpha production [GO:0032727]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type I interferon-mediated signaling pathway [GO:0060340]; protein import into nucleus [GO:0006606]; proteolysis [GO:0006508]; regulation of defense response to virus by host [GO:0050691]; response to amyloid-beta [GO:1904645]; wound healing, spreading of epidermal cells [GO:0035313] -P39905 reviewed GDNF_HUMAN Glial cell line-derived neurotrophic factor (hGDNF) (Astrocyte-derived trophic factor) (ATF) GDNF adult locomotory behavior [GO:0008344]; branching involved in ureteric bud morphogenesis [GO:0001658]; commissural neuron axon guidance [GO:0071679]; dorsal spinal cord development [GO:0021516]; embryonic organ development [GO:0048568]; enteric nervous system development [GO:0048484]; glial cell-derived neurotrophic factor receptor signaling pathway [GO:0035860]; mesenchymal to epithelial transition involved in metanephros morphogenesis [GO:0003337]; metanephros development [GO:0001656]; mRNA stabilization [GO:0048255]; negative regulation of apoptotic process [GO:0043066]; negative regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001240]; negative regulation of neuron apoptotic process [GO:0043524]; nervous system development [GO:0007399]; neural crest cell migration [GO:0001755]; neuron projection development [GO:0031175]; organ induction [GO:0001759]; peripheral nervous system development [GO:0007422]; peristalsis [GO:0030432]; positive regulation of branching involved in ureteric bud morphogenesis [GO:0090190]; positive regulation of cell differentiation [GO:0045597]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of dopamine secretion [GO:0033603]; positive regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis [GO:0072108]; positive regulation of monooxygenase activity [GO:0032770]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of ureteric bud formation [GO:0072107]; postganglionic parasympathetic fiber development [GO:0021784]; postsynaptic membrane organization [GO:0001941]; regulation of dopamine uptake involved in synaptic transmission [GO:0051584]; regulation of gene expression [GO:0010468]; regulation of morphogenesis of a branching structure [GO:0060688]; regulation of semaphorin-plexin signaling pathway [GO:2001260]; regulation of stem cell differentiation [GO:2000736]; signal transduction [GO:0007165]; sympathetic nervous system development [GO:0048485]; ureteric bud formation [GO:0060676] -P40424 reviewed PBX1_HUMAN Pre-B-cell leukemia transcription factor 1 (Homeobox protein PBX1) (Homeobox protein PRL) PBX1 PRL adrenal gland development [GO:0030325]; animal organ morphogenesis [GO:0009887]; anterior/posterior pattern specification [GO:0009952]; brain development [GO:0007420]; branching involved in ureteric bud morphogenesis [GO:0001658]; embryonic hemopoiesis [GO:0035162]; embryonic limb morphogenesis [GO:0030326]; embryonic organ development [GO:0048568]; embryonic skeletal system development [GO:0048706]; eye development [GO:0001654]; G2/M transition of mitotic cell cycle [GO:0000086]; natural killer cell differentiation [GO:0001779]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of neuron differentiation [GO:0045665]; neuron development [GO:0048666]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proximal/distal pattern formation [GO:0009954]; regulation of ossification [GO:0030278]; regulation of transcription by RNA polymerase II [GO:0006357]; sex differentiation [GO:0007548]; spleen development [GO:0048536]; stem cell proliferation [GO:0072089]; steroid biosynthetic process [GO:0006694]; thymus development [GO:0048538]; urogenital system development [GO:0001655] -P40425 reviewed PBX2_HUMAN Pre-B-cell leukemia transcription factor 2 (Homeobox protein PBX2) (Protein G17) PBX2 G17 animal organ morphogenesis [GO:0009887]; brain development [GO:0007420]; embryonic limb morphogenesis [GO:0030326]; embryonic organ development [GO:0048568]; eye development [GO:0001654]; neuron development [GO:0048666]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proximal/distal pattern formation [GO:0009954]; regulation of transcription by RNA polymerase II [GO:0006357] -P40426 reviewed PBX3_HUMAN Pre-B-cell leukemia transcription factor 3 (Homeobox protein PBX3) PBX3 adult locomotory behavior [GO:0008344]; animal organ morphogenesis [GO:0009887]; anterior compartment pattern formation [GO:0007387]; brain development [GO:0007420]; dorsal spinal cord development [GO:0021516]; embryonic organ development [GO:0048568]; eye development [GO:0001654]; neuron development [GO:0048666]; posterior compartment specification [GO:0007388]; regulation of respiratory gaseous exchange by nervous system process [GO:0002087]; regulation of transcription by RNA polymerase II [GO:0006357]; respiratory gaseous exchange by respiratory system [GO:0007585] -P40763 reviewed STAT3_HUMAN Signal transducer and activator of transcription 3 (Acute-phase response factor) STAT3 APRF astrocyte differentiation [GO:0048708]; cell differentiation [GO:0030154]; cell population proliferation [GO:0008283]; cell surface receptor signaling pathway via JAK-STAT [GO:0007259]; cell surface receptor signaling pathway via STAT [GO:0097696]; cellular response to hormone stimulus [GO:0032870]; cellular response to interleukin-17 [GO:0097398]; cellular response to leptin stimulus [GO:0044320]; cytokine-mediated signaling pathway [GO:0019221]; defense response [GO:0006952]; eating behavior [GO:0042755]; energy homeostasis [GO:0097009]; eye photoreceptor cell differentiation [GO:0001754]; glucose homeostasis [GO:0042593]; growth hormone receptor signaling pathway [GO:0060396]; growth hormone receptor signaling pathway via JAK-STAT [GO:0060397]; inflammatory response [GO:0006954]; interleukin-10-mediated signaling pathway [GO:0140105]; interleukin-11-mediated signaling pathway [GO:0038154]; interleukin-15-mediated signaling pathway [GO:0035723]; interleukin-2-mediated signaling pathway [GO:0038110]; interleukin-6-mediated signaling pathway [GO:0070102]; interleukin-9-mediated signaling pathway [GO:0038113]; intracellular receptor signaling pathway [GO:0030522]; leptin-mediated signaling pathway [GO:0033210]; mRNA transcription by RNA polymerase II [GO:0042789]; negative regulation of autophagy [GO:0010507]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of gene expression [GO:0010629]; negative regulation of glycolytic process [GO:0045820]; negative regulation of inflammatory response [GO:0050728]; negative regulation of inflammatory response to wounding [GO:0106015]; negative regulation of neuron migration [GO:2001223]; negative regulation of primary miRNA processing [GO:2000635]; negative regulation of stem cell differentiation [GO:2000737]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system development [GO:0007399]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; phosphorylation [GO:0016310]; positive regulation of angiogenesis [GO:0045766]; positive regulation of cell migration [GO:0030335]; positive regulation of cytokine production involved in inflammatory response [GO:1900017]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of erythrocyte differentiation [GO:0045648]; positive regulation of gene expression [GO:0010628]; positive regulation of interleukin-1 beta production [GO:0032731]; positive regulation of interleukin-10 production [GO:0032733]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of metalloendopeptidase activity [GO:1904685]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of vascular endothelial cell proliferation [GO:1905564]; positive regulation of vascular endothelial growth factor production [GO:0010575]; protein import into nucleus [GO:0006606]; radial glial cell differentiation [GO:0060019]; regulation of cell cycle [GO:0051726]; regulation of cell population proliferation [GO:0042127]; regulation of DNA-templated transcription [GO:0006355]; regulation of feeding behavior [GO:0060259]; regulation of multicellular organism growth [GO:0040014]; regulation of transcription by RNA polymerase II [GO:0006357]; response to estradiol [GO:0032355]; response to leptin [GO:0044321]; response to peptide hormone [GO:0043434]; retinal rod cell differentiation [GO:0060221]; sexual reproduction [GO:0019953]; signal transduction [GO:0007165]; somatic stem cell population maintenance [GO:0035019]; T-helper 17 cell lineage commitment [GO:0072540]; T-helper 17 type immune response [GO:0072538]; temperature homeostasis [GO:0001659]; transforming growth factor beta receptor signaling pathway [GO:0007179] -P41161 reviewed ETV5_HUMAN ETS translocation variant 5 (Ets-related protein ERM) ETV5 ERM cellular response to oxidative stress [GO:0034599]; male germ-line stem cell asymmetric division [GO:0048133]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of glial cell proliferation [GO:0060252]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -P41212 reviewed ETV6_HUMAN Transcription factor ETV6 (ETS translocation variant 6) (ETS-related protein Tel1) (Tel) ETV6 TEL TEL1 hematopoietic stem cell proliferation [GO:0071425]; mesenchymal cell apoptotic process [GO:0097152]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neurogenesis [GO:0022008]; regulation of transcription by RNA polymerase II [GO:0006357]; vitellogenesis [GO:0007296] -P41221 reviewed WNT5A_HUMAN Protein Wnt-5a WNT5A activation of protein kinase B activity [GO:0032148]; anterior/posterior axis specification, embryo [GO:0008595]; atrial septum development [GO:0003283]; axon extension involved in axon guidance [GO:0048846]; axon guidance [GO:0007411]; BMP signaling pathway [GO:0030509]; canonical Wnt signaling pathway [GO:0060070]; cartilage development [GO:0051216]; cell fate commitment [GO:0045165]; cellular response to calcium ion [GO:0071277]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to retinoic acid [GO:0071300]; cellular response to transforming growth factor beta stimulus [GO:0071560]; cellular response to type II interferon [GO:0071346]; cervix development [GO:0060067]; chemoattraction of serotonergic neuron axon [GO:0036517]; chemorepulsion of dopaminergic neuron axon [GO:0036518]; cochlea morphogenesis [GO:0090103]; convergent extension involved in axis elongation [GO:0060028]; convergent extension involved in organogenesis [GO:0060029]; embryonic digit morphogenesis [GO:0042733]; embryonic skeletal system development [GO:0048706]; epithelial cell migration [GO:0010631]; epithelial cell proliferation involved in mammary gland duct elongation [GO:0060750]; epithelial to mesenchymal transition [GO:0001837]; establishment of epithelial cell apical/basal polarity [GO:0045198]; establishment of planar polarity [GO:0001736]; excitatory synapse assembly [GO:1904861]; face development [GO:0060324]; fibroblast growth factor receptor signaling pathway [GO:0008543]; genitalia development [GO:0048806]; heart looping [GO:0001947]; hematopoietic stem cell proliferation [GO:0071425]; hindgut morphogenesis [GO:0007442]; hypophysis morphogenesis [GO:0048850]; inflammatory response [GO:0006954]; inhibitory synapse assembly [GO:1904862]; JNK cascade [GO:0007254]; keratinocyte differentiation [GO:0030216]; kidney development [GO:0001822]; lateral sprouting involved in mammary gland duct morphogenesis [GO:0060599]; lens development in camera-type eye [GO:0002088]; lung development [GO:0030324]; macrophage derived foam cell differentiation [GO:0010742]; male gonad development [GO:0008584]; mammary gland branching involved in thelarche [GO:0060744]; meiotic nuclear division [GO:0140013]; melanocyte proliferation [GO:0097325]; mesenchymal cell proliferation [GO:0010463]; mesenchymal-epithelial cell signaling [GO:0060638]; mesodermal to mesenchymal transition involved in gastrulation [GO:0060809]; midbrain dopaminergic neuron differentiation [GO:1904948]; midgut development [GO:0007494]; negative regulation of apoptotic process [GO:0043066]; negative regulation of axon extension involved in axon guidance [GO:0048843]; negative regulation of BMP signaling pathway [GO:0030514]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cell proliferation in midbrain [GO:1904934]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of fibroblast growth factor receptor signaling pathway [GO:0040037]; negative regulation of melanin biosynthetic process [GO:0048022]; negative regulation of mesenchymal cell proliferation [GO:0072201]; negative regulation of prostatic bud formation [GO:0060686]; negative regulation of synapse assembly [GO:0051964]; neuron differentiation [GO:0030182]; non-canonical Wnt signaling pathway [GO:0035567]; notochord morphogenesis [GO:0048570]; olfactory bulb interneuron development [GO:0021891]; optic cup formation involved in camera-type eye development [GO:0003408]; paraxial mesoderm formation [GO:0048341]; planar cell polarity pathway involved in axis elongation [GO:0003402]; planar cell polarity pathway involved in cardiac muscle tissue morphogenesis [GO:0061350]; planar cell polarity pathway involved in cardiac right atrium morphogenesis [GO:0061349]; planar cell polarity pathway involved in gastrula mediolateral intercalation [GO:0060775]; planar cell polarity pathway involved in neural tube closure [GO:0090179]; planar cell polarity pathway involved in outflow tract morphogenesis [GO:0061347]; planar cell polarity pathway involved in pericardium morphogenesis [GO:0061354]; planar cell polarity pathway involved in ventricular septum morphogenesis [GO:0061348]; positive regulation of angiogenesis [GO:0045766]; positive regulation of apoptotic signaling pathway [GO:2001235]; positive regulation of cartilage development [GO:0061036]; positive regulation of cell-cell adhesion mediated by cadherin [GO:2000049]; positive regulation of chemokine production [GO:0032722]; positive regulation of cytokine production involved in immune response [GO:0002720]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of endocytosis [GO:0045807]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of gene expression [GO:0010628]; positive regulation of hematopoietic stem cell proliferation [GO:1902035]; positive regulation of inflammatory response [GO:0050729]; positive regulation of interleukin-1 beta production [GO:0032731]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of JNK cascade [GO:0046330]; positive regulation of JUN kinase activity [GO:0043507]; positive regulation of macrophage activation [GO:0043032]; positive regulation of macrophage cytokine production [GO:0060907]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of meiotic nuclear division [GO:0045836]; positive regulation of mesenchymal cell proliferation [GO:0002053]; positive regulation of neuron projection arborization [GO:0150012]; positive regulation of neuron projection development [GO:0010976]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of non-canonical Wnt signaling pathway [GO:2000052]; positive regulation of ossification [GO:0045778]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of peptidyl-threonine phosphorylation [GO:0010800]; positive regulation of protein catabolic process [GO:0045732]; positive regulation of protein kinase C activity [GO:1900020]; positive regulation of protein kinase C signaling [GO:0090037]; positive regulation of protein localization to synapse [GO:1902474]; positive regulation of response to cytokine stimulus [GO:0060760]; positive regulation of T cell chemotaxis [GO:0010820]; positive regulation of thymocyte apoptotic process [GO:0070245]; positive regulation of timing of anagen [GO:0051885]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of type I interferon-mediated signaling pathway [GO:0060340]; positive regulation of type II interferon production [GO:0032729]; post-anal tail morphogenesis [GO:0036342]; postsynapse assembly [GO:0099068]; postsynaptic modulation of chemical synaptic transmission [GO:0099170]; presynapse assembly [GO:0099054]; primary heart field specification [GO:0003138]; primitive streak formation [GO:0090009]; protein localization [GO:0008104]; regulation of branching involved in mammary gland duct morphogenesis [GO:0060762]; regulation of canonical NF-kappaB signal transduction [GO:0043122]; regulation of inflammatory response [GO:0050727]; regulation of postsynapse organization [GO:0099175]; regulation of postsynaptic cytosolic calcium ion concentration [GO:0099566]; regulation of synapse organization [GO:0050807]; response to organic substance [GO:0010033]; secondary heart field specification [GO:0003139]; secondary palate development [GO:0062009]; somitogenesis [GO:0001756]; thymocyte apoptotic process [GO:0070242]; type B pancreatic cell development [GO:0003323]; urinary bladder development [GO:0060157]; uterus development [GO:0060065]; vagina development [GO:0060068]; Wnt signaling pathway [GO:0016055]; Wnt signaling pathway, calcium modulating pathway [GO:0007223]; Wnt signaling pathway, planar cell polarity pathway [GO:0060071]; wound healing [GO:0042060] -P41225 reviewed SOX3_HUMAN Transcription factor SOX-3 SOX3 brain development [GO:0007420]; central nervous system development [GO:0007417]; face development [GO:0060324]; hypothalamus development [GO:0021854]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron differentiation [GO:0030182]; pituitary gland development [GO:0021983]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sensory organ development [GO:0007423]; sex determination [GO:0007530] -P41235 reviewed HNF4A_HUMAN Hepatocyte nuclear factor 4-alpha (HNF-4-alpha) (Nuclear receptor subfamily 2 group A member 1) (Transcription factor 14) (TCF-14) (Transcription factor HNF-4) HNF4A HNF4 NR2A1 TCF14 blood coagulation [GO:0007596]; cell differentiation [GO:0030154]; cholesterol homeostasis [GO:0042632]; glucose homeostasis [GO:0042593]; lipid homeostasis [GO:0055088]; lipid metabolic process [GO:0006629]; negative regulation of cell growth [GO:0030308]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of DNA-templated transcription [GO:0045892]; ornithine metabolic process [GO:0006591]; phospholipid homeostasis [GO:0055091]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of circadian rhythm [GO:0042752]; regulation of gastrulation [GO:0010470]; regulation of growth hormone receptor signaling pathway [GO:0060398]; regulation of insulin secretion [GO:0050796]; regulation of lipid metabolic process [GO:0019216]; regulation of transcription by RNA polymerase II [GO:0006357]; response to glucose [GO:0009749]; rhythmic process [GO:0048511]; sex differentiation [GO:0007548]; signal transduction involved in regulation of gene expression [GO:0023019]; transcription by RNA polymerase II [GO:0006366]; triglyceride homeostasis [GO:0070328]; xenobiotic metabolic process [GO:0006805] -P41970 reviewed ELK3_HUMAN ETS domain-containing protein Elk-3 (ETS-related protein ERP) (ETS-related protein NET) (Serum response factor accessory protein 2) (SAP-2) (SRF accessory protein 2) ELK3 NET SAP2 angiogenesis [GO:0001525]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; signal transduction [GO:0007165]; wound healing [GO:0042060] -P42224 reviewed STAT1_HUMAN Signal transducer and activator of transcription 1-alpha/beta (Transcription factor ISGF-3 components p91/p84) STAT1 blood circulation [GO:0008015]; cell surface receptor signaling pathway via JAK-STAT [GO:0007259]; cellular response to insulin stimulus [GO:0032869]; cellular response to interferon-beta [GO:0035458]; cellular response to organic cyclic compound [GO:0071407]; cellular response to type II interferon [GO:0071346]; defense response [GO:0006952]; defense response to virus [GO:0051607]; interleukin-27-mediated signaling pathway [GO:0070106]; interleukin-9-mediated signaling pathway [GO:0038113]; macrophage derived foam cell differentiation [GO:0010742]; metanephric mesenchymal cell differentiation [GO:0072162]; metanephric mesenchymal cell proliferation involved in metanephros development [GO:0072136]; negative regulation by virus of viral protein levels in host cell [GO:0046725]; negative regulation of angiogenesis [GO:0016525]; negative regulation of canonical NF-kappaB signal transduction [GO:0043124]; negative regulation of endothelial cell proliferation [GO:0001937]; negative regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis [GO:0003340]; negative regulation of metanephric nephron tubule epithelial cell differentiation [GO:0072308]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of defense response to virus by host [GO:0002230]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of erythrocyte differentiation [GO:0045648]; positive regulation of interferon-alpha production [GO:0032727]; positive regulation of mesenchymal cell proliferation [GO:0002053]; positive regulation of nitric-oxide synthase biosynthetic process [GO:0051770]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of apoptotic process [GO:0042981]; regulation of cell population proliferation [GO:0042127]; regulation of transcription by RNA polymerase II [GO:0006357]; renal tubule development [GO:0061326]; response to cAMP [GO:0051591]; response to cytokine [GO:0034097]; response to hydrogen peroxide [GO:0042542]; response to interferon-beta [GO:0035456]; response to mechanical stimulus [GO:0009612]; response to nutrient [GO:0007584]; response to peptide hormone [GO:0043434]; response to type II interferon [GO:0034341]; response to xenobiotic stimulus [GO:0009410]; tumor necrosis factor-mediated signaling pathway [GO:0033209]; type I interferon-mediated signaling pathway [GO:0060337]; type II interferon-mediated signaling pathway [GO:0060333] -P42226 reviewed STAT6_HUMAN Signal transducer and activator of transcription 6 (IL-4 Stat) STAT6 cell surface receptor signaling pathway via JAK-STAT [GO:0007259]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to reactive nitrogen species [GO:1902170]; cytokine-mediated signaling pathway [GO:0019221]; defense response [GO:0006952]; growth hormone receptor signaling pathway via JAK-STAT [GO:0060397]; interleukin-4-mediated signaling pathway [GO:0035771]; isotype switching to IgE isotypes [GO:0048289]; mammary gland epithelial cell proliferation [GO:0033598]; mammary gland morphogenesis [GO:0060443]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of type 2 immune response [GO:0002829]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of isotype switching to IgE isotypes [GO:0048295]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell population proliferation [GO:0042127]; regulation of mast cell proliferation [GO:0070666]; regulation of transcription by RNA polymerase II [GO:0006357]; response to peptide hormone [GO:0043434]; signal transduction [GO:0007165]; T-helper 1 cell lineage commitment [GO:0002296] -P42229 reviewed STA5A_HUMAN Signal transducer and activator of transcription 5A STAT5A STAT5 cell surface receptor signaling pathway via JAK-STAT [GO:0007259]; cytokine-mediated signaling pathway [GO:0019221]; defense response [GO:0006952]; eosinophil differentiation [GO:0030222]; growth hormone receptor signaling pathway via JAK-STAT [GO:0060397]; interleukin-15-mediated signaling pathway [GO:0035723]; interleukin-2-mediated signaling pathway [GO:0038110]; interleukin-3-mediated signaling pathway [GO:0038156]; interleukin-4-mediated signaling pathway [GO:0035771]; interleukin-5-mediated signaling pathway [GO:0038043]; interleukin-9-mediated signaling pathway [GO:0038113]; lactation [GO:0007595]; positive regulation of blood vessel endothelial cell migration [GO:0043536]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of transcription by RNA polymerase II [GO:0045944]; reelin-mediated signaling pathway [GO:0038026]; regulation of cell population proliferation [GO:0042127]; regulation of multicellular organism growth [GO:0040014]; regulation of transcription by RNA polymerase II [GO:0006357]; response to peptide hormone [GO:0043434]; taurine metabolic process [GO:0019530] -P42681 reviewed TXK_HUMAN Tyrosine-protein kinase TXK (EC 2.7.10.2) (Protein-tyrosine kinase 4) (Resting lymphocyte kinase) TXK PTK4 RLK activation of phospholipase C activity [GO:0007202]; adaptive immune response [GO:0002250]; positive regulation of cytokine production [GO:0001819]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type II interferon production [GO:0032729]; positive regulation of type II interferon-mediated signaling pathway [GO:0060335]; protein autophosphorylation [GO:0046777]; protein phosphorylation [GO:0006468]; regulation of gene expression [GO:0010468]; T cell receptor signaling pathway [GO:0050852] -P42768 reviewed WASP_HUMAN Actin nucleation-promoting factor WAS (Wiskott-Aldrich syndrome protein) (WASp) WAS IMD2 actin filament polymerization [GO:0030041]; actin filament-based movement [GO:0030048]; actin polymerization or depolymerization [GO:0008154]; blood coagulation [GO:0007596]; Cdc42 protein signal transduction [GO:0032488]; cellular response to type II interferon [GO:0071346]; defense response [GO:0006952]; endosomal transport [GO:0016197]; epidermis development [GO:0008544]; immune response [GO:0006955]; negative regulation of cell motility [GO:2000146]; negative regulation of stress fiber assembly [GO:0051497]; positive regulation of double-strand break repair via homologous recombination [GO:1905168]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein-containing complex assembly [GO:0065003]; regulation of actin polymerization or depolymerization [GO:0008064]; regulation of lamellipodium assembly [GO:0010591]; regulation of stress fiber assembly [GO:0051492]; regulation of T cell antigen processing and presentation [GO:0002625]; T cell activation [GO:0042110] -P43268 reviewed ETV4_HUMAN ETS translocation variant 4 (Adenovirus E1A enhancer-binding protein) (E1A-F) (Polyomavirus enhancer activator 3 homolog) (Protein PEA3) ETV4 E1AF PEA3 positive regulation of keratinocyte differentiation [GO:0045618]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -P43354 reviewed NR4A2_HUMAN Nuclear receptor subfamily 4 group A member 2 (Immediate-early response protein NOT) (Orphan nuclear receptor NURR1) (Transcriptionally-inducible nuclear receptor) NR4A2 NOT NURR1 TINUR adult locomotory behavior [GO:0008344]; canonical Wnt signaling pathway [GO:0060070]; cellular response to corticotropin-releasing hormone stimulus [GO:0071376]; cellular response to extracellular stimulus [GO:0031668]; cellular response to oxidative stress [GO:0034599]; central nervous system neuron differentiation [GO:0021953]; central nervous system projection neuron axonogenesis [GO:0021952]; DNA-templated transcription [GO:0006351]; dopamine biosynthetic process [GO:0042416]; dopaminergic neuron differentiation [GO:0071542]; fat cell differentiation [GO:0045444]; general adaptation syndrome [GO:0051866]; habenula development [GO:0021986]; midbrain dopaminergic neuron differentiation [GO:1904948]; negative regulation of apoptotic signaling pathway [GO:2001234]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron apoptotic process [GO:0051402]; neuron maturation [GO:0042551]; neuron migration [GO:0001764]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-embryonic development [GO:0009791]; regulation of dopamine metabolic process [GO:0042053]; regulation of respiratory gaseous exchange [GO:0043576]; regulation of transcription by RNA polymerase II [GO:0006357]; response to amphetamine [GO:0001975]; response to hypoxia [GO:0001666]; transcription by RNA polymerase II [GO:0006366] -P43490 reviewed NAMPT_HUMAN Nicotinamide phosphoribosyltransferase (NAmPRTase) (Nampt) (EC 2.4.2.12) (Pre-B-cell colony-enhancing factor 1) (Pre-B cell-enhancing factor) (Visfatin) NAMPT PBEF PBEF1 cell-cell signaling [GO:0007267]; circadian regulation of gene expression [GO:0032922]; NAD biosynthesis via nicotinamide riboside salvage pathway [GO:0034356]; NAD biosynthetic process [GO:0009435]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of nitric-oxide synthase biosynthetic process [GO:0051770]; positive regulation of transcription by RNA polymerase II [GO:0045944]; signal transduction [GO:0007165] -P43694 reviewed GATA4_HUMAN Transcription factor GATA-4 (GATA-binding factor 4) GATA4 aortic valve morphogenesis [GO:0003180]; atrial septum morphogenesis [GO:0060413]; atrial septum primum morphogenesis [GO:0003289]; atrial septum secundum morphogenesis [GO:0003290]; atrioventricular canal development [GO:0036302]; atrioventricular node development [GO:0003162]; atrioventricular valve formation [GO:0003190]; cardiac muscle tissue regeneration [GO:0061026]; cardiac right ventricle morphogenesis [GO:0003215]; cardiac ventricle morphogenesis [GO:0003208]; cell fate commitment [GO:0045165]; cell growth involved in cardiac muscle cell development [GO:0061049]; cell-cell signaling [GO:0007267]; cellular response to glucose stimulus [GO:0071333]; embryonic foregut morphogenesis [GO:0048617]; embryonic heart tube anterior/posterior pattern specification [GO:0035054]; endocardial cushion development [GO:0003197]; endoderm development [GO:0007492]; heart looping [GO:0001947]; intestinal epithelial cell differentiation [GO:0060575]; male gonad development [GO:0008584]; negative regulation of apoptotic signaling pathway [GO:2001234]; negative regulation of autophagy [GO:0010507]; negative regulation of cardiac muscle cell apoptotic process [GO:0010667]; negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway [GO:1902176]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of angiogenesis [GO:0045766]; positive regulation of BMP signaling pathway [GO:0030513]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular endothelial growth factor production [GO:0010575]; regulation of cardiac muscle cell contraction [GO:0086004]; regulation of DNA-templated transcription [GO:0006355]; response to mechanical stimulus [GO:0009612]; response to vitamin A [GO:0033189]; response to xenobiotic stimulus [GO:0009410]; transdifferentiation [GO:0060290]; ventricular septum development [GO:0003281]; wound healing [GO:0042060] -P43699 reviewed NKX21_HUMAN Homeobox protein Nkx-2.1 (Homeobox protein NK-2 homolog A) (Thyroid nuclear factor 1) (Thyroid transcription factor 1) (TTF-1) (Thyroid-specific enhancer-binding protein) (T/EBP) NKX2-1 NKX2A TITF1 TTF1 anatomical structure formation involved in morphogenesis [GO:0048646]; axon guidance [GO:0007411]; brain development [GO:0007420]; cell differentiation [GO:0030154]; cerebral cortex cell migration [GO:0021795]; cerebral cortex GABAergic interneuron differentiation [GO:0021892]; club cell differentiation [GO:0060486]; developmental induction [GO:0031128]; endoderm development [GO:0007492]; epithelial tube branching involved in lung morphogenesis [GO:0060441]; forebrain development [GO:0030900]; forebrain dorsal/ventral pattern formation [GO:0021798]; forebrain neuron fate commitment [GO:0021877]; gene expression [GO:0010467]; globus pallidus development [GO:0021759]; hippocampus development [GO:0021766]; hypothalamus development [GO:0021854]; interneuron migration [GO:1904936]; Leydig cell differentiation [GO:0033327]; locomotory behavior [GO:0007626]; lung development [GO:0030324]; lung saccule development [GO:0060430]; negative regulation of cell migration [GO:0030336]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of epithelial to mesenchymal transition [GO:0010719]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; oligodendrocyte differentiation [GO:0048709]; phospholipid metabolic process [GO:0006644]; pituitary gland development [GO:0021983]; positive regulation of circadian rhythm [GO:0042753]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; response to hormone [GO:0009725]; rhythmic process [GO:0048511]; thyroid gland development [GO:0030878]; type II pneumocyte differentiation [GO:0060510] -P46100 reviewed ATRX_HUMAN Transcriptional regulator ATRX (EC 3.6.4.12) (ATP-dependent helicase ATRX) (X-linked helicase II) (X-linked nuclear protein) (XNP) (Znf-HX) ATRX RAD54L XH2 cellular response to hydroxyurea [GO:0072711]; chromatin organization [GO:0006325]; chromatin remodeling [GO:0006338]; chromosome organization involved in meiotic cell cycle [GO:0070192]; DNA damage response, signal transduction by p53 class mediator [GO:0030330]; DNA repair [GO:0006281]; forebrain development [GO:0030900]; meiotic spindle organization [GO:0000212]; multicellular organism growth [GO:0035264]; negative regulation of maintenance of mitotic sister chromatid cohesion, telomeric [GO:1904908]; nucleosome assembly [GO:0006334]; positive regulation of nuclear cell cycle DNA replication [GO:0010571]; positive regulation of telomere maintenance [GO:0032206]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-embryonic forelimb morphogenesis [GO:0035128]; protein localization to chromosome, telomeric region [GO:0070198]; regulation of DNA-templated transcription [GO:0006355]; replication fork processing [GO:0031297]; seminiferous tubule development [GO:0072520]; Sertoli cell development [GO:0060009]; spermatogenesis [GO:0007283]; subtelomeric heterochromatin formation [GO:0031509]; transcription by RNA polymerase II [GO:0006366] -P46531 reviewed NOTC1_HUMAN Neurogenic locus notch homolog protein 1 (Notch 1) (hN1) (Translocation-associated notch protein TAN-1) [Cleaved into: Notch 1 extracellular truncation (NEXT); Notch 1 intracellular domain (NICD)] NOTCH1 TAN1 animal organ regeneration [GO:0031100]; aortic valve morphogenesis [GO:0003180]; apoptotic process involved in embryonic digit morphogenesis [GO:1902263]; arterial endothelial cell differentiation [GO:0060842]; astrocyte differentiation [GO:0048708]; atrioventricular node development [GO:0003162]; atrioventricular valve morphogenesis [GO:0003181]; auditory receptor cell fate commitment [GO:0009912]; axon guidance [GO:0007411]; branching morphogenesis of an epithelial tube [GO:0048754]; calcium-ion regulated exocytosis [GO:0017156]; cardiac atrium morphogenesis [GO:0003209]; cardiac chamber formation [GO:0003207]; cardiac epithelial to mesenchymal transition [GO:0060317]; cardiac left ventricle morphogenesis [GO:0003214]; cardiac muscle cell myoblast differentiation [GO:0060379]; cardiac muscle cell proliferation [GO:0060038]; cardiac muscle tissue morphogenesis [GO:0055008]; cardiac right atrium morphogenesis [GO:0003213]; cardiac right ventricle formation [GO:0003219]; cardiac septum morphogenesis [GO:0060411]; cardiac vascular smooth muscle cell development [GO:0060948]; cardiac ventricle morphogenesis [GO:0003208]; cell differentiation in spinal cord [GO:0021515]; cell migration involved in endocardial cushion formation [GO:0003273]; cellular response to follicle-stimulating hormone stimulus [GO:0071372]; cellular response to hypoxia [GO:0071456]; cellular response to tumor cell [GO:0071228]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; cilium assembly [GO:0060271]; collecting duct development [GO:0072044]; compartment pattern specification [GO:0007386]; coronary artery morphogenesis [GO:0060982]; coronary sinus valve morphogenesis [GO:0003182]; coronary vein morphogenesis [GO:0003169]; determination of left/right symmetry [GO:0007368]; distal tubule development [GO:0072017]; embryonic hindlimb morphogenesis [GO:0035116]; endocardial cell differentiation [GO:0060956]; endocardial cushion morphogenesis [GO:0003203]; endocardium development [GO:0003157]; endocardium morphogenesis [GO:0003160]; endoderm development [GO:0007492]; epidermal cell fate specification [GO:0009957]; epithelial cell fate commitment [GO:0072148]; epithelial cell proliferation [GO:0050673]; epithelial to mesenchymal transition [GO:0001837]; epithelial to mesenchymal transition involved in endocardial cushion formation [GO:0003198]; forebrain development [GO:0030900]; foregut morphogenesis [GO:0007440]; glomerular mesangial cell development [GO:0072144]; growth involved in heart morphogenesis [GO:0003241]; hair follicle morphogenesis [GO:0031069]; heart development [GO:0007507]; heart looping [GO:0001947]; heart trabecula morphogenesis [GO:0061384]; homeostasis of number of cells within a tissue [GO:0048873]; humoral immune response [GO:0006959]; immune response [GO:0006955]; in utero embryonic development [GO:0001701]; inflammatory response to antigenic stimulus [GO:0002437]; inhibition of neuroepithelial cell differentiation [GO:0002085]; interleukin-17-mediated signaling pathway [GO:0097400]; keratinocyte differentiation [GO:0030216]; left/right axis specification [GO:0070986]; liver development [GO:0001889]; lung development [GO:0030324]; luteolysis [GO:0001554]; mesenchymal cell development [GO:0014031]; mitral valve formation [GO:0003192]; negative regulation of anoikis [GO:2000811]; negative regulation of biomineral tissue development [GO:0070168]; negative regulation of BMP signaling pathway [GO:0030514]; negative regulation of calcium ion-dependent exocytosis [GO:0045955]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cardiac muscle hypertrophy [GO:0010614]; negative regulation of catalytic activity [GO:0043086]; negative regulation of cell adhesion molecule production [GO:0060354]; negative regulation of cell migration involved in sprouting angiogenesis [GO:0090051]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of cell proliferation involved in heart valve morphogenesis [GO:0003252]; negative regulation of cell-cell adhesion mediated by cadherin [GO:2000048]; negative regulation of cell-substrate adhesion [GO:0010812]; negative regulation of cold-induced thermogenesis [GO:0120163]; negative regulation of collagen biosynthetic process [GO:0032966]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of endothelial cell chemotaxis [GO:2001027]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of extracellular matrix constituent secretion [GO:0003332]; negative regulation of gene expression [GO:0010629]; negative regulation of glial cell proliferation [GO:0060253]; negative regulation of inner ear auditory receptor cell differentiation [GO:0045608]; negative regulation of myoblast differentiation [GO:0045662]; negative regulation of myotube differentiation [GO:0010832]; negative regulation of neurogenesis [GO:0050768]; negative regulation of oligodendrocyte differentiation [GO:0048715]; negative regulation of ossification [GO:0030279]; negative regulation of osteoblast differentiation [GO:0045668]; negative regulation of photoreceptor cell differentiation [GO:0046533]; negative regulation of pro-B cell differentiation [GO:2000974]; negative regulation of stem cell differentiation [GO:2000737]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural tube development [GO:0021915]; neuroendocrine cell differentiation [GO:0061101]; neuronal stem cell population maintenance [GO:0097150]; Notch signaling pathway [GO:0007219]; Notch signaling pathway involved in regulation of secondary heart field cardioblast proliferation [GO:0003270]; oligodendrocyte differentiation [GO:0048709]; outflow tract morphogenesis [GO:0003151]; pericardium morphogenesis [GO:0003344]; positive regulation of aorta morphogenesis [GO:1903849]; positive regulation of apoptotic process involved in morphogenesis [GO:1902339]; positive regulation of astrocyte differentiation [GO:0048711]; positive regulation of BMP signaling pathway [GO:0030513]; positive regulation of cardiac epithelial to mesenchymal transition [GO:0062043]; positive regulation of cardiac muscle cell proliferation [GO:0060045]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of endothelial cell differentiation [GO:0045603]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of gene expression [GO:0010628]; positive regulation of keratinocyte differentiation [GO:0045618]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of Ras protein signal transduction [GO:0046579]; positive regulation of receptor signaling pathway via JAK-STAT [GO:0046427]; positive regulation of smooth muscle cell differentiation [GO:0051152]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription of Notch receptor target [GO:0007221]; positive regulation of viral genome replication [GO:0045070]; prostate gland epithelium morphogenesis [GO:0060740]; protein catabolic process [GO:0030163]; protein import into nucleus [GO:0006606]; pulmonary valve morphogenesis [GO:0003184]; regulation of cell adhesion involved in heart morphogenesis [GO:0061344]; regulation of DNA-templated transcription [GO:0006355]; regulation of epithelial cell proliferation involved in prostate gland development [GO:0060768]; regulation of extracellular matrix assembly [GO:1901201]; regulation of somitogenesis [GO:0014807]; regulation of stem cell proliferation [GO:0072091]; regulation of transcription by RNA polymerase II [GO:0006357]; response to lipopolysaccharide [GO:0032496]; response to muramyl dipeptide [GO:0032495]; retinal cone cell differentiation [GO:0042670]; secretory columnal luminar epithelial cell differentiation involved in prostate glandular acinus development [GO:0060528]; skeletal muscle cell differentiation [GO:0035914]; somatic stem cell division [GO:0048103]; spermatogenesis [GO:0007283]; sprouting angiogenesis [GO:0002040]; T-helper 17 type immune response [GO:0072538]; tissue regeneration [GO:0042246]; transcription by RNA polymerase II [GO:0006366]; tube formation [GO:0035148]; vasculogenesis involved in coronary vascular morphogenesis [GO:0060979]; venous endothelial cell differentiation [GO:0060843]; ventricular septum morphogenesis [GO:0060412]; ventricular trabecula myocardium morphogenesis [GO:0003222] -P46937 reviewed YAP1_HUMAN Transcriptional coactivator YAP1 (Yes-associated protein 1) (Protein yorkie homolog) (Yes-associated protein YAP65 homolog) YAP1 YAP65 bud elongation involved in lung branching [GO:0060449]; canonical Wnt signaling pathway [GO:0060070]; cardiac muscle tissue regeneration [GO:0061026]; cell morphogenesis [GO:0000902]; cellular response to gamma radiation [GO:0071480]; cellular response to retinoic acid [GO:0071300]; DNA damage response [GO:0006974]; embryonic heart tube morphogenesis [GO:0003143]; enterocyte differentiation [GO:1903703]; epithelial cell proliferation [GO:0050673]; extrinsic apoptotic signaling pathway [GO:0097191]; glandular epithelial cell differentiation [GO:0002067]; heart process [GO:0003015]; hippo signaling [GO:0035329]; interleukin-6-mediated signaling pathway [GO:0070102]; intestinal epithelial cell development [GO:0060576]; keratinocyte differentiation [GO:0030216]; lateral mesoderm development [GO:0048368]; lung epithelial cell differentiation [GO:0060487]; negative regulation of cilium assembly [GO:1902018]; negative regulation of epithelial cell apoptotic process [GO:1904036]; negative regulation of epithelial cell differentiation [GO:0030857]; negative regulation of extrinsic apoptotic signaling pathway [GO:2001237]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of gene expression [GO:0010629]; negative regulation of stem cell differentiation [GO:2000737]; negative regulation of transcription by RNA polymerase II [GO:0000122]; notochord development [GO:0030903]; organ growth [GO:0035265]; paraxial mesoderm development [GO:0048339]; polarized epithelial cell differentiation [GO:0030859]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of cardiac muscle cell proliferation [GO:0060045]; positive regulation of cell growth [GO:0030307]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of gene expression [GO:0010628]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of protein localization to nucleus [GO:1900182]; positive regulation of stem cell population maintenance [GO:1902459]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein-containing complex assembly [GO:0065003]; regulation of keratinocyte proliferation [GO:0010837]; regulation of metanephric nephron tubule epithelial cell differentiation [GO:0072307]; regulation of neurogenesis [GO:0050767]; regulation of stem cell proliferation [GO:0072091]; response to progesterone [GO:0032570]; somatic stem cell population maintenance [GO:0035019]; tissue homeostasis [GO:0001894]; trophectodermal cell differentiation [GO:0001829]; vasculogenesis [GO:0001570]; wound healing [GO:0042060] -P47211 reviewed GALR1_HUMAN Galanin receptor type 1 (GAL1-R) (GALR-1) GALR1 GALNR GALNR1 adenylate cyclase-activating G protein-coupled receptor signaling pathway [GO:0007189]; negative regulation of adenylate cyclase activity [GO:0007194]; neuropeptide signaling pathway [GO:0007218]; positive regulation of cortisol secretion [GO:0051464]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of transcription by RNA polymerase II [GO:0045944] -P47900 reviewed P2RY1_HUMAN P2Y purinoceptor 1 (P2Y1) (ADP receptor) (Purinergic receptor) P2RY1 adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway [GO:0007193]; blood vessel diameter maintenance [GO:0097746]; cell surface receptor signaling pathway [GO:0007166]; cellular response to ATP [GO:0071318]; cellular response to purine-containing compound [GO:0071415]; eating behavior [GO:0042755]; establishment of localization in cell [GO:0051649]; G protein-coupled adenosine receptor signaling pathway [GO:0001973]; G protein-coupled receptor signaling pathway [GO:0007186]; glial cell migration [GO:0008347]; monoatomic ion transport [GO:0006811]; negative regulation of norepinephrine secretion [GO:0010700]; phospholipase C-activating G protein-coupled receptor signaling pathway [GO:0007200]; platelet activation [GO:0030168]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of hormone secretion [GO:0046887]; positive regulation of inositol trisphosphate biosynthetic process [GO:0032962]; positive regulation of monoatomic ion transport [GO:0043270]; positive regulation of penile erection [GO:0060406]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to plasma membrane [GO:0072659]; regulation of cell shape [GO:0008360]; regulation of presynaptic cytosolic calcium ion concentration [GO:0099509]; regulation of synaptic vesicle exocytosis [GO:2000300]; relaxation of muscle [GO:0090075]; response to growth factor [GO:0070848]; response to mechanical stimulus [GO:0009612]; signal transduction involved in regulation of gene expression [GO:0023019] -P47902 reviewed CDX1_HUMAN Homeobox protein CDX-1 (Caudal-type homeobox protein 1) CDX1 animal organ morphogenesis [GO:0009887]; anterior/posterior axis specification [GO:0009948]; bone morphogenesis [GO:0060349]; cell differentiation [GO:0030154]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of somitogenesis [GO:0014807]; regulation of transcription by RNA polymerase II [GO:0006357] -P47928 reviewed ID4_HUMAN DNA-binding protein inhibitor ID-4 (Class B basic helix-loop-helix protein 27) (bHLHb27) (Inhibitor of DNA binding 4) (Inhibitor of differentiation 4) ID4 BHLHB27 astrocyte differentiation [GO:0048708]; cell differentiation [GO:0030154]; central nervous system myelination [GO:0022010]; cerebral cortex neuron differentiation [GO:0021895]; circadian regulation of gene expression [GO:0032922]; fat cell differentiation [GO:0045444]; G1/S transition of mitotic cell cycle [GO:0000082]; hippocampus development [GO:0021766]; negative regulation of astrocyte differentiation [GO:0048712]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of oligodendrocyte differentiation [GO:0048715]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuroblast proliferation [GO:0007405]; osteoblast differentiation [GO:0001649]; positive regulation of gene expression [GO:0010628]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of transcription by RNA polymerase II [GO:0045944]; prostate gland epithelium morphogenesis [GO:0060740]; prostate gland stromal morphogenesis [GO:0060741]; protein localization [GO:0008104]; seminal vesicle morphogenesis [GO:0061682] -P48378 reviewed RFX2_HUMAN DNA-binding protein RFX2 (Regulatory factor X 2) RFX2 acrosome assembly [GO:0001675]; cellular response to leukemia inhibitory factor [GO:1990830]; cilium assembly [GO:0060271]; regulation of transcription by RNA polymerase II [GO:0006357]; spermatid development [GO:0007286] -P48380 reviewed RFX3_HUMAN Transcription factor RFX3 (Regulatory factor X 3) RFX3 cell maturation [GO:0048469]; cilium assembly [GO:0060271]; cilium-dependent cell motility [GO:0060285]; DNA-templated transcription [GO:0006351]; endocrine pancreas development [GO:0031018]; epithelial cilium movement involved in determination of left/right asymmetry [GO:0060287]; negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type B pancreatic cell development [GO:2000078]; regulation of DNA-templated transcription [GO:0006355]; regulation of insulin secretion [GO:0050796]; regulation of transcription by RNA polymerase II [GO:0006357]; type B pancreatic cell maturation [GO:0072560] -P48382 reviewed RFX5_HUMAN DNA-binding protein RFX5 (Regulatory factor X 5) RFX5 negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of MHC class II biosynthetic process [GO:0045348]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -P48431 reviewed SOX2_HUMAN Transcription factor SOX-2 SOX2 adenohypophysis development [GO:0021984]; brain development [GO:0007420]; chromatin organization [GO:0006325]; endodermal cell fate specification [GO:0001714]; eye development [GO:0001654]; forebrain development [GO:0030900]; glial cell fate commitment [GO:0021781]; inner ear development [GO:0048839]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cell cycle G1/S phase transition [GO:1902807]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron differentiation [GO:0030182]; neuronal stem cell population maintenance [GO:0097150]; osteoblast differentiation [GO:0001649]; pituitary gland development [GO:0021983]; positive regulation of cell differentiation [GO:0045597]; positive regulation of cell-cell adhesion [GO:0022409]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043281]; regulation of DNA-templated transcription [GO:0006355]; regulation of gene expression [GO:0010468]; regulation of myofibroblast cell apoptotic process [GO:1904520]; response to growth factor [GO:0070848]; response to oxygen-glucose deprivation [GO:0090649]; response to wounding [GO:0009611]; somatic stem cell population maintenance [GO:0035019]; tissue regeneration [GO:0042246] -P48436 reviewed SOX9_HUMAN Transcription factor SOX-9 SOX9 anterior head development [GO:0097065]; aortic valve morphogenesis [GO:0003180]; astrocyte fate commitment [GO:0060018]; bone mineralization [GO:0030282]; branching involved in ureteric bud morphogenesis [GO:0001658]; bronchus cartilage development [GO:0060532]; cAMP-mediated signaling [GO:0019933]; canonical Wnt signaling pathway [GO:0060070]; cartilage condensation [GO:0001502]; cartilage development [GO:0051216]; cell fate specification [GO:0001708]; cell proliferation involved in heart morphogenesis [GO:0061323]; cell-cell adhesion [GO:0098609]; cellular response to BMP stimulus [GO:0071773]; cellular response to epidermal growth factor stimulus [GO:0071364]; cellular response to heparin [GO:0071504]; cellular response to interleukin-1 [GO:0071347]; cellular response to mechanical stimulus [GO:0071260]; cellular response to retinoic acid [GO:0071300]; cellular response to transforming growth factor beta stimulus [GO:0071560]; chondrocyte differentiation [GO:0002062]; chondrocyte differentiation involved in endochondral bone morphogenesis [GO:0003413]; chondrocyte hypertrophy [GO:0003415]; chromatin remodeling [GO:0006338]; cochlea morphogenesis [GO:0090103]; cytoskeleton organization [GO:0007010]; endocardial cushion morphogenesis [GO:0003203]; endocrine pancreas development [GO:0031018]; epidermal growth factor receptor signaling pathway [GO:0007173]; epithelial cell proliferation involved in prostatic bud elongation [GO:0060517]; epithelial to mesenchymal transition [GO:0001837]; epithelial tube branching involved in lung morphogenesis [GO:0060441]; ERK1 and ERK2 cascade [GO:0070371]; extracellular matrix assembly [GO:0085029]; glandular epithelial cell differentiation [GO:0002067]; glial cell fate specification [GO:0021780]; growth plate cartilage chondrocyte growth [GO:0003430]; hair follicle development [GO:0001942]; Harderian gland development [GO:0070384]; heart development [GO:0007507]; heart valve development [GO:0003170]; heart valve formation [GO:0003188]; heart valve morphogenesis [GO:0003179]; intestinal epithelial cell differentiation [GO:0060575]; intestinal epithelial structure maintenance [GO:0060729]; intrahepatic bile duct development [GO:0035622]; lacrimal gland development [GO:0032808]; limb bud formation [GO:0060174]; lung smooth muscle development [GO:0061145]; male germ-line sex determination [GO:0019100]; male gonad development [GO:0008584]; mammary gland development [GO:0030879]; mesenchymal cell apoptotic process [GO:0097152]; mesenchymal cell proliferation [GO:0010463]; metanephric nephron tubule formation [GO:0072289]; morphogenesis of a branching epithelium [GO:0061138]; morphogenesis of an epithelium [GO:0002009]; negative regulation of apoptotic process [GO:0043066]; negative regulation of beta-catenin-TCF complex assembly [GO:1904864]; negative regulation of biomineral tissue development [GO:0070168]; negative regulation of bone mineralization [GO:0030502]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of chondrocyte differentiation [GO:0032331]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of epithelial cell differentiation [GO:0030857]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of fatty acid oxidation [GO:0046322]; negative regulation of gene expression [GO:0010629]; negative regulation of immune system process [GO:0002683]; negative regulation of mesenchymal cell apoptotic process [GO:2001054]; negative regulation of miRNA transcription [GO:1902894]; negative regulation of myoblast differentiation [GO:0045662]; negative regulation of ossification [GO:0030279]; negative regulation of osteoblast differentiation [GO:0045668]; negative regulation of photoreceptor cell differentiation [GO:0046533]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural crest cell development [GO:0014032]; neural crest cell fate specification [GO:0014036]; neuron fate specification [GO:0048665]; Notch signaling pathway [GO:0007219]; notochord development [GO:0030903]; nucleosome assembly [GO:0006334]; oligodendrocyte differentiation [GO:0048709]; otic vesicle formation [GO:0030916]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; positive regulation of branching involved in ureteric bud morphogenesis [GO:0090190]; positive regulation of cartilage development [GO:0061036]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cell proliferation involved in heart morphogenesis [GO:2000138]; positive regulation of chondrocyte differentiation [GO:0032332]; positive regulation of chondrocyte proliferation [GO:1902732]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial cell differentiation [GO:0030858]; positive regulation of epithelial cell migration [GO:0010634]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of extracellular matrix assembly [GO:1901203]; positive regulation of gene expression [GO:0010628]; positive regulation of kidney development [GO:0090184]; positive regulation of male gonad development [GO:2000020]; positive regulation of mesenchymal cell proliferation [GO:0002053]; positive regulation of mesenchymal stem cell differentiation [GO:2000741]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of protein catabolic process [GO:0045732]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; prostate gland development [GO:0030850]; protein localization to nucleus [GO:0034504]; protein-containing complex assembly [GO:0065003]; regulation of apoptotic process [GO:0042981]; regulation of branching involved in lung morphogenesis [GO:0061046]; regulation of cell adhesion [GO:0030155]; regulation of cell cycle process [GO:0010564]; regulation of cell population proliferation [GO:0042127]; regulation of cell proliferation involved in tissue homeostasis [GO:0060784]; regulation of epithelial cell proliferation involved in lung morphogenesis [GO:2000794]; renal vesicle induction [GO:0072034]; response to fatty acid [GO:0070542]; response to organic cyclic compound [GO:0014070]; retina development in camera-type eye [GO:0060041]; retinal rod cell differentiation [GO:0060221]; Sertoli cell development [GO:0060009]; Sertoli cell differentiation [GO:0060008]; signal transduction [GO:0007165]; skeletal system development [GO:0001501]; somatic stem cell population maintenance [GO:0035019]; spermatogenesis [GO:0007283]; stem cell proliferation [GO:0072089]; tissue homeostasis [GO:0001894]; trachea cartilage development [GO:0060534]; transcription by RNA polymerase II [GO:0006366]; type I pneumocyte differentiation [GO:0060509]; ureter morphogenesis [GO:0072197]; ureter smooth muscle cell differentiation [GO:0072193]; ureter urothelium development [GO:0072190] -P48443 reviewed RXRG_HUMAN Retinoic acid receptor RXR-gamma (Nuclear receptor subfamily 2 group B member 3) (Retinoid X receptor gamma) RXRG NR2B3 cell differentiation [GO:0030154]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to retinoic acid [GO:0032526]; retinoic acid receptor signaling pathway [GO:0048384] -P48552 reviewed NRIP1_HUMAN Nuclear receptor-interacting protein 1 (Nuclear factor RIP140) (Receptor-interacting protein 140) NRIP1 cellular response to estradiol stimulus [GO:0071392]; circadian regulation of gene expression [GO:0032922]; circadian rhythm [GO:0007623]; lipid storage [GO:0019915]; negative regulation of transcription by RNA polymerase II [GO:0000122]; ovarian follicle rupture [GO:0001543]; positive regulation of transcription by RNA polymerase II [GO:0045944] -P49116 reviewed NR2C2_HUMAN Nuclear receptor subfamily 2 group C member 2 (Orphan nuclear receptor TAK1) (Orphan nuclear receptor TR4) (Testicular receptor 4) NR2C2 TAK1 TR4 cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system development [GO:0007399]; positive regulation of embryonic development [GO:0040019]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; spermatogenesis [GO:0007283] -P49279 reviewed NRAM1_HUMAN Natural resistance-associated macrophage protein 1 (NRAMP 1) (Solute carrier family 11 member 1) SLC11A1 LSH NRAMP NRAMP1 activation of protein kinase activity [GO:0032147]; antigen processing and presentation of peptide antigen [GO:0048002]; antimicrobial humoral response [GO:0019730]; cadmium ion transmembrane transport [GO:0070574]; cell redox homeostasis [GO:0045454]; cellular detoxification of cadmium ion [GO:0098849]; defense response to bacterium [GO:0042742]; defense response to Gram-negative bacterium [GO:0050829]; defense response to protozoan [GO:0042832]; establishment of localization in cell [GO:0051649]; inflammatory response [GO:0006954]; intracellular iron ion homeostasis [GO:0006879]; iron ion transmembrane transport [GO:0034755]; iron ion transport [GO:0006826]; L-arginine transmembrane transport [GO:1903826]; macrophage activation [GO:0042116]; manganese ion transport [GO:0006828]; metal ion transport [GO:0030001]; MHC class II biosynthetic process [GO:0045342]; mRNA stabilization [GO:0048255]; multicellular organismal-level iron ion homeostasis [GO:0060586]; negative regulation of cytokine production [GO:0001818]; nitrite transport [GO:0015707]; phagocytosis [GO:0006909]; positive regulation of cytokine production [GO:0001819]; positive regulation of dendritic cell antigen processing and presentation [GO:0002606]; positive regulation of gene expression [GO:0010628]; positive regulation of phagocytosis [GO:0050766]; positive regulation of T-helper 1 type immune response [GO:0002827]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type II interferon production [GO:0032729]; respiratory burst [GO:0045730]; response to bacterium [GO:0009617]; response to lipopolysaccharide [GO:0032496]; response to type II interferon [GO:0034341]; T cell proliferation involved in immune response [GO:0002309]; vacuolar acidification [GO:0007035]; wound healing [GO:0042060] -P49336 reviewed CDK8_HUMAN Cyclin-dependent kinase 8 (EC 2.7.11.22) (EC 2.7.11.23) (Cell division protein kinase 8) (Mediator complex subunit CDK8) (Mediator of RNA polymerase II transcription subunit CDK8) (Protein kinase K35) CDK8 negative regulation of triglyceride metabolic process [GO:0090209]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein ubiquitination [GO:0016567] -P49407 reviewed ARRB1_HUMAN Beta-arrestin-1 (Arrestin beta-1) (Non-visual arrestin-2) ARRB1 ARR1 G protein-coupled receptor internalization [GO:0002031]; negative regulation of interleukin-6 production [GO:0032715]; negative regulation of interleukin-8 production [GO:0032717]; negative regulation of NF-kappaB transcription factor activity [GO:0032088]; negative regulation of Notch signaling pathway [GO:0045746]; negative regulation of protein ubiquitination [GO:0031397]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of receptor internalization [GO:0002092]; positive regulation of Rho protein signal transduction [GO:0035025]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; protein transport [GO:0015031]; protein ubiquitination [GO:0016567]; regulation of transcription by RNA polymerase II [GO:0006357]; signal transduction [GO:0007165]; stress fiber assembly [GO:0043149]; ubiquitin-dependent protein catabolic process [GO:0006511]; visual perception [GO:0007601] -P49639 reviewed HXA1_HUMAN Homeobox protein Hox-A1 (Homeobox protein Hox-1F) HOXA1 HOX1F abducens nerve formation [GO:0021599]; anatomical structure morphogenesis [GO:0009653]; artery development [GO:0060840]; artery morphogenesis [GO:0048844]; cochlea development [GO:0090102]; cochlea morphogenesis [GO:0090103]; cognition [GO:0050890]; embryonic neurocranium morphogenesis [GO:0048702]; inner ear development [GO:0048839]; neuromuscular process [GO:0050905]; optokinetic behavior [GO:0007634]; outer ear morphogenesis [GO:0042473]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of behavior [GO:0050795]; regulation of transcription by RNA polymerase II [GO:0006357]; semicircular canal formation [GO:0060876]; sensory perception of sound [GO:0007605] -P49640 reviewed EVX1_HUMAN Homeobox even-skipped homolog protein 1 (EVX-1) EVX1 embryo development ending in birth or egg hatching [GO:0009792]; interneuron migration [GO:1904936]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; spinal cord interneuron axon guidance [GO:0097377] -P49682 reviewed CXCR3_HUMAN C-X-C chemokine receptor type 3 (CXC-R3) (CXCR-3) (CKR-L2) (G protein-coupled receptor 9) (Interferon-inducible protein 10 receptor) (IP-10 receptor) (CD antigen CD183) CXCR3 GPR9 adenylate cyclase-activating G protein-coupled receptor signaling pathway [GO:0007189]; angiogenesis [GO:0001525]; apoptotic process [GO:0006915]; calcium-mediated signaling [GO:0019722]; cell adhesion [GO:0007155]; cell chemotaxis [GO:0060326]; cell surface receptor signaling pathway [GO:0007166]; chemotaxis [GO:0006935]; G protein-coupled receptor signaling pathway [GO:0007186]; immune response [GO:0006955]; inflammatory response [GO:0006954]; negative regulation of angiogenesis [GO:0016525]; negative regulation of endothelial cell proliferation [GO:0001937]; negative regulation of execution phase of apoptosis [GO:1900118]; positive regulation of angiogenesis [GO:0045766]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of chemotaxis [GO:0050921]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of execution phase of apoptosis [GO:1900119]; positive regulation of release of sequestered calcium ion into cytosol [GO:0051281]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell adhesion [GO:0030155]; regulation of leukocyte migration [GO:0002685] -P49711 reviewed CTCF_HUMAN Transcriptional repressor CTCF (11-zinc finger protein) (CCCTC-binding factor) (CTCFL paralog) CTCF chromatin looping [GO:0140588]; chromosome segregation [GO:0007059]; epigenetic regulation of gene expression [GO:0040029]; genomic imprinting [GO:0071514]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of gene expression via chromosomal CpG island methylation [GO:0044027]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to chromosome, centromeric region [GO:0071459]; regulation of centromeric sister chromatid cohesion [GO:0070602] -P49715 reviewed CEBPA_HUMAN CCAAT/enhancer-binding protein alpha (C/EBP alpha) CEBPA CEBP brown fat cell differentiation [GO:0050873]; cellular response to lithium ion [GO:0071285]; cellular response to organic cyclic compound [GO:0071407]; cellular response to tumor necrosis factor [GO:0071356]; cholesterol metabolic process [GO:0008203]; cytokine-mediated signaling pathway [GO:0019221]; DNA-templated transcription [GO:0006351]; embryonic placenta development [GO:0001892]; energy homeostasis [GO:0097009]; epithelial cell maturation [GO:0002070]; fat cell differentiation [GO:0045444]; generation of precursor metabolites and energy [GO:0006091]; glucose homeostasis [GO:0042593]; granulocyte differentiation [GO:0030851]; hematopoietic stem cell proliferation [GO:0071425]; inner ear development [GO:0048839]; integrated stress response signaling [GO:0140467]; interleukin-6-mediated signaling pathway [GO:0070102]; lipid homeostasis [GO:0055088]; liver development [GO:0001889]; lung development [GO:0030324]; macrophage differentiation [GO:0030225]; mitochondrion organization [GO:0007005]; myeloid cell differentiation [GO:0030099]; negative regulation of cell cycle [GO:0045786]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of hematopoietic stem cell proliferation [GO:1902034]; negative regulation of transcription by RNA polymerase II [GO:0000122]; Notch signaling pathway [GO:0007219]; positive regulation of DNA-templated transcription initiation [GO:2000144]; positive regulation of fat cell differentiation [GO:0045600]; positive regulation of gene expression [GO:0010628]; positive regulation of inflammatory response [GO:0050729]; positive regulation of macrophage activation [GO:0043032]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032436]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell cycle [GO:0051726]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription by RNA polymerase I [GO:0006360]; urea cycle [GO:0000050]; white fat cell differentiation [GO:0050872] -P49716 reviewed CEBPD_HUMAN CCAAT/enhancer-binding protein delta (C/EBP delta) (Nuclear factor NF-IL6-beta) (NF-IL6-beta) CEBPD fat cell differentiation [GO:0045444]; hematopoietic progenitor cell differentiation [GO:0002244]; inner ear development [GO:0048839]; integrated stress response signaling [GO:0140467]; negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of osteoblast differentiation [GO:0045669]; regulation of cell differentiation [GO:0045595]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription by RNA polymerase II [GO:0006366] -P49840 reviewed GSK3A_HUMAN Glycogen synthase kinase-3 alpha (GSK-3 alpha) (EC 2.7.11.26) (Serine/threonine-protein kinase GSK3A) (EC 2.7.11.1) GSK3A autosome genomic imprinting [GO:0141068]; cardiac left ventricle morphogenesis [GO:0003214]; cell differentiation [GO:0030154]; cell migration [GO:0016477]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to insulin stimulus [GO:0032869]; cellular response to interleukin-3 [GO:0036016]; cellular response to lithium ion [GO:0071285]; dopamine receptor signaling pathway [GO:0007212]; excitatory postsynaptic potential [GO:0060079]; extrinsic apoptotic signaling pathway [GO:0097191]; extrinsic apoptotic signaling pathway in absence of ligand [GO:0097192]; glycogen metabolic process [GO:0005977]; insulin receptor signaling pathway [GO:0008286]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cell growth involved in cardiac muscle cell development [GO:0061052]; negative regulation of glucose import [GO:0046325]; negative regulation of glycogen (starch) synthase activity [GO:2000466]; negative regulation of glycogen biosynthetic process [GO:0045719]; negative regulation of glycogen synthase activity, transferring glucose-1-phosphate [GO:1904227]; negative regulation of insulin receptor signaling pathway [GO:0046627]; negative regulation of TOR signaling [GO:0032007]; negative regulation of type B pancreatic cell development [GO:2000077]; negative regulation of UDP-glucose catabolic process [GO:0010905]; nervous system development [GO:0007399]; peptidyl-threonine phosphorylation [GO:0018107]; positive regulation of adenylate cyclase-activating adrenergic receptor signaling pathway [GO:0071879]; positive regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway [GO:0106071]; positive regulation of amyloid-beta formation [GO:1902004]; positive regulation of autophagy [GO:0010508]; positive regulation of gene expression [GO:0010628]; positive regulation of glycogen (starch) synthase activity [GO:2000467]; positive regulation of heart contraction [GO:0045823]; positive regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway [GO:1901030]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of peptidyl-threonine phosphorylation [GO:0010800]; positive regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032436]; positive regulation of protein catabolic process [GO:0045732]; positive regulation of protein targeting to mitochondrion [GO:1903955]; positive regulation of protein ubiquitination [GO:0031398]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; protein phosphorylation [GO:0006468]; regulation of microtubule cytoskeleton organization [GO:0070507]; regulation of mitophagy [GO:1901524]; regulation of neuron projection development [GO:0010975]; regulation of systemic arterial blood pressure [GO:0003073]; viral protein processing [GO:0019082]; Wnt signaling pathway [GO:0016055] -P49848 reviewed TAF6_HUMAN Transcription initiation factor TFIID subunit 6 (RNA polymerase II TBP-associated factor subunit E) (Transcription initiation factor TFIID 70 kDa subunit) (TAF(II)70) (TAFII-70) (TAFII70) (Transcription initiation factor TFIID 80 kDa subunit) (TAF(II)80) (TAFII-80) (TAFII80) TAF6 TAF2E TAFII70 apoptotic process [GO:0006915]; DNA-templated transcription initiation [GO:0006352]; mRNA transcription by RNA polymerase II [GO:0042789]; negative regulation of cell cycle [GO:0045786]; negative regulation of cell population proliferation [GO:0008285]; positive regulation of apoptotic process [GO:0043065]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of intrinsic apoptotic signaling pathway [GO:2001244]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; regulation of DNA repair [GO:0006282]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA polymerase II preinitiation complex assembly [GO:0051123]; transcription by RNA polymerase II [GO:0006366]; transcription initiation at RNA polymerase II promoter [GO:0006367] -P50221 reviewed MEOX1_HUMAN Homeobox protein MOX-1 (Mesenchyme homeobox 1) MEOX1 MOX1 hematopoietic stem cell differentiation [GO:0060218]; regulation of transcription by RNA polymerase II [GO:0006357]; sclerotome development [GO:0061056]; somite development [GO:0061053]; somite specification [GO:0001757] -P50222 reviewed MEOX2_HUMAN Homeobox protein MOX-2 (Growth arrest-specific homeobox) (Mesenchyme homeobox 2) MEOX2 GAX MOX2 angiogenesis [GO:0001525]; limb development [GO:0060173]; negative regulation of cell migration involved in sprouting angiogenesis [GO:0090051]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; roof of mouth development [GO:0060021]; skeletal muscle tissue development [GO:0007519]; somite development [GO:0061053]; somite specification [GO:0001757] -P50458 reviewed LHX2_HUMAN LIM/homeobox protein Lhx2 (Homeobox protein LH-2) (LIM homeobox protein 2) LHX2 LH2 axon extension [GO:0048675]; axon guidance [GO:0007411]; cerebral cortex development [GO:0021987]; dorsal/ventral pattern formation [GO:0009953]; hair follicle development [GO:0001942]; maintenance of epithelial cell apical/basal polarity [GO:0045199]; mesoderm development [GO:0007498]; negative regulation of gene expression, epigenetic [GO:0045814]; negative regulation of neurogenesis [GO:0050768]; neural tube closure [GO:0001843]; neuron differentiation [GO:0030182]; olfactory bulb development [GO:0021772]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of neural precursor cell proliferation [GO:2000179]; regulation of transcription by RNA polymerase II [GO:0006357]; retina development in camera-type eye [GO:0060041]; telencephalon regionalization [GO:0021978] -P50461 reviewed CSRP3_HUMAN Cysteine and glycine-rich protein 3 (Cardiac LIM protein) (Cysteine-rich protein 3) (CRP3) (LIM domain protein, cardiac) (Muscle LIM protein) CSRP3 CLP MLP cardiac muscle contraction [GO:0060048]; cardiac muscle hypertrophy [GO:0003300]; cardiac muscle tissue development [GO:0048738]; cardiac myofibril assembly [GO:0055003]; detection of muscle stretch [GO:0035995]; glucose homeostasis [GO:0042593]; inflammatory response [GO:0006954]; insulin receptor signaling pathway [GO:0008286]; intracellular calcium ion homeostasis [GO:0006874]; muscle cell cellular homeostasis [GO:0046716]; muscle tissue development [GO:0060537]; negative regulation of actin filament severing [GO:1903919]; negative regulation of myoblast differentiation [GO:0045662]; positive regulation of actin filament severing [GO:1903920]; positive regulation of myoblast differentiation [GO:0045663]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein kinase C signaling [GO:0070528]; protein localization to organelle [GO:0033365]; regulation of protein localization to plasma membrane [GO:1903076]; regulation of the force of heart contraction [GO:0002026]; sarcomere organization [GO:0045214]; skeletal muscle tissue development [GO:0007519]; T-tubule organization [GO:0033292] -P50549 reviewed ETV1_HUMAN ETS translocation variant 1 (Ets-related protein 81) ETV1 ER81 axon guidance [GO:0007411]; mechanosensory behavior [GO:0007638]; muscle organ development [GO:0007517]; peripheral nervous system neuron development [GO:0048935]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription by RNA polymerase II [GO:0006366] -P50553 reviewed ASCL1_HUMAN Achaete-scute homolog 1 (ASH-1) (hASH1) (Class A basic helix-loop-helix protein 46) (bHLHa46) ASCL1 ASH1 BHLHA46 HASH1 adrenal chromaffin cell differentiation [GO:0061104]; carotid body glomus cell differentiation [GO:0061103]; cell maturation [GO:0048469]; cellular response to magnetism [GO:0071259]; central nervous system neuron development [GO:0021954]; cerebral cortex development [GO:0021987]; cerebral cortex GABAergic interneuron differentiation [GO:0021892]; commitment of neuronal cell to specific neuron type in forebrain [GO:0021902]; heart development [GO:0007507]; lung epithelial cell differentiation [GO:0060487]; lung neuroendocrine cell differentiation [GO:0061100]; motor neuron migration [GO:0097475]; musculoskeletal movement, spinal reflex action [GO:0050883]; negative regulation of apoptotic process [GO:0043066]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuroblast fate determination [GO:0007400]; neuroblast proliferation [GO:0007405]; neurogenesis [GO:0022008]; neuron development [GO:0048666]; neuron differentiation [GO:0030182]; neuron fate commitment [GO:0048663]; neuron fate specification [GO:0048665]; noradrenergic neuron development [GO:0003358]; noradrenergic neuron fate commitment [GO:0003359]; Notch signaling pathway [GO:0007219]; olfactory pit development [GO:0060166]; oligodendrocyte development [GO:0014003]; peripheral nervous system neuron development [GO:0048935]; positive regulation of cell cycle [GO:0045787]; positive regulation of neural precursor cell proliferation [GO:2000179]; positive regulation of neurogenesis [GO:0050769]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of epithelial cell differentiation [GO:0030856]; regulation of gene expression [GO:0010468]; regulation of mitotic cell cycle [GO:0007346]; regulation of neurogenesis [GO:0050767]; regulation of timing of subpallium neuron differentiation [GO:0060165]; response to epidermal growth factor [GO:0070849]; response to folic acid [GO:0051593]; response to retinoic acid [GO:0032526]; sensory organ development [GO:0007423]; spinal cord association neuron differentiation [GO:0021527]; spinal cord oligodendrocyte cell fate specification [GO:0021530]; stomach neuroendocrine cell differentiation [GO:0061102]; subpallium neuron fate commitment [GO:0060163]; sympathetic ganglion development [GO:0061549]; sympathetic nervous system development [GO:0048485]; ventral spinal cord interneuron fate commitment [GO:0060579]; vestibular nucleus development [GO:0021750] -P50613 reviewed CDK7_HUMAN Cyclin-dependent kinase 7 (EC 2.7.11.22) (EC 2.7.11.23) (39 kDa protein kinase) (p39 Mo15) (CDK-activating kinase 1) (Cell division protein kinase 7) (Serine/threonine-protein kinase 1) (TFIIH basal transcription factor complex kinase subunit) CDK7 CAK CAK1 CDKN7 MO15 STK1 cell division [GO:0051301]; DNA repair [GO:0006281]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein stabilization [GO:0050821]; regulation of cell cycle [GO:0051726]; regulation of G1/S transition of mitotic cell cycle [GO:2000045]; snRNA transcription by RNA polymerase II [GO:0042795]; transcription by RNA polymerase II [GO:0006366]; transcription initiation at RNA polymerase II promoter [GO:0006367] -P50750 reviewed CDK9_HUMAN Cyclin-dependent kinase 9 (EC 2.7.11.22) (EC 2.7.11.23) (C-2K) (Cell division cycle 2-like protein kinase 4) (Cell division protein kinase 9) (Serine/threonine-protein kinase PITALRE) (Tat-associated kinase complex catalytic subunit) CDK9 CDC2L4 TAK cell population proliferation [GO:0008283]; cellular response to cytokine stimulus [GO:0071345]; DNA repair [GO:0006281]; negative regulation of protein localization to chromatin [GO:0120186]; nucleus localization [GO:0051647]; positive regulation by host of viral transcription [GO:0043923]; positive regulation of protein localization to chromatin [GO:0120187]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; protein phosphorylation [GO:0006468]; regulation of cell cycle [GO:0051726]; regulation of DNA repair [GO:0006282]; regulation of mRNA 3'-end processing [GO:0031440]; regulation of muscle cell differentiation [GO:0051147]; replication fork processing [GO:0031297]; transcription by RNA polymerase II [GO:0006366]; transcription elongation by RNA polymerase II [GO:0006368]; transcription elongation-coupled chromatin remodeling [GO:0140673]; transcription initiation at RNA polymerase II promoter [GO:0006367] -P51531 reviewed SMCA2_HUMAN Probable global transcription activator SNF2L2 (EC 3.6.4.-) (ATP-dependent helicase SMARCA2) (BRG1-associated factor 190B) (BAF190B) (Protein brahma homolog) (hBRM) (SNF2-alpha) (SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily A member 2) SMARCA2 BAF190B BRM SNF2A SNF2L2 chromatin remodeling [GO:0006338]; negative regulation of cell differentiation [GO:0045596]; negative regulation of cell growth [GO:0030308]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system development [GO:0007399]; positive regulation of cell differentiation [GO:0045597]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of double-strand break repair [GO:2000781]; positive regulation of myoblast differentiation [GO:0045663]; positive regulation of stem cell population maintenance [GO:1902459]; positive regulation of T cell differentiation [GO:0045582]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of G0 to G1 transition [GO:0070316]; regulation of G1/S transition of mitotic cell cycle [GO:2000045]; regulation of mitotic metaphase/anaphase transition [GO:0030071]; regulation of nucleotide-excision repair [GO:2000819]; regulation of transcription by RNA polymerase II [GO:0006357]; spermatid development [GO:0007286] -P51532 reviewed SMCA4_HUMAN Transcription activator BRG1 (EC 3.6.4.-) (ATP-dependent helicase SMARCA4) (BRG1-associated factor 190A) (BAF190A) (Mitotic growth and transcription activator) (Protein BRG-1) (Protein brahma homolog 1) (SNF2-beta) (SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily A member 4) SMARCA4 BAF190A BRG1 SNF2B SNF2L4 chromatin remodeling [GO:0006338]; negative regulation of androgen receptor signaling pathway [GO:0060766]; negative regulation of cell differentiation [GO:0045596]; negative regulation of cell growth [GO:0030308]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system development [GO:0007399]; neural retina development [GO:0003407]; nucleosome disassembly [GO:0006337]; positive regulation by host of viral transcription [GO:0043923]; positive regulation of cell differentiation [GO:0045597]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of double-strand break repair [GO:2000781]; positive regulation of glucose mediated signaling pathway [GO:1902661]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of myoblast differentiation [GO:0045663]; positive regulation of stem cell population maintenance [GO:1902459]; positive regulation of T cell differentiation [GO:0045582]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription of nucleolar large rRNA by RNA polymerase I [GO:1901838]; positive regulation of Wnt signaling pathway [GO:0030177]; regulation of G0 to G1 transition [GO:0070316]; regulation of G1/S transition of mitotic cell cycle [GO:2000045]; regulation of mitotic metaphase/anaphase transition [GO:0030071]; regulation of nucleotide-excision repair [GO:2000819]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA polymerase I preinitiation complex assembly [GO:0001188]; transcription initiation-coupled chromatin remodeling [GO:0045815] -P51608 reviewed MECP2_HUMAN Methyl-CpG-binding protein 2 (MeCp-2 protein) (MeCp2) MECP2 adult locomotory behavior [GO:0008344]; behavioral fear response [GO:0001662]; biogenic amine metabolic process [GO:0006576]; cardiolipin metabolic process [GO:0032048]; catecholamine secretion [GO:0050432]; cellular response to isoquinoline alkaloid [GO:0071317]; cellular response to potassium ion [GO:0035865]; cerebellum development [GO:0021549]; cerebral cortex development [GO:0021987]; dendrite development [GO:0016358]; excitatory postsynaptic potential [GO:0060079]; gene expression [GO:0010467]; genomic imprinting [GO:0071514]; glial cell proliferation [GO:0014009]; glucocorticoid metabolic process [GO:0008211]; glutamine metabolic process [GO:0006541]; heterochromatin formation [GO:0031507]; hippocampus development [GO:0021766]; inositol metabolic process [GO:0006020]; long-term memory [GO:0007616]; long-term synaptic potentiation [GO:0060291]; lung alveolus development [GO:0048286]; negative regulation of angiogenesis [GO:0016525]; negative regulation of astrocyte differentiation [GO:0048712]; negative regulation of blood vessel endothelial cell migration [GO:0043537]; negative regulation of dendrite extension [GO:1903860]; negative regulation of dendritic spine development [GO:0061000]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of gene expression [GO:0010629]; negative regulation of gene expression via chromosomal CpG island methylation [GO:0044027]; negative regulation of locomotion involved in locomotory behavior [GO:0090327]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of primary miRNA processing [GO:2000635]; negative regulation of respiratory gaseous exchange [GO:1903941]; negative regulation of smooth muscle cell differentiation [GO:0051151]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system process involved in regulation of systemic arterial blood pressure [GO:0001976]; neuron maturation [GO:0042551]; Notch signaling pathway [GO:0007219]; olfactory bulb development [GO:0021772]; oligodendrocyte development [GO:0014003]; phosphatidylcholine metabolic process [GO:0046470]; positive regulation of anterograde dense core granule transport [GO:1901953]; positive regulation of branching morphogenesis of a nerve [GO:1905492]; positive regulation of dendrite extension [GO:1903861]; positive regulation of dendritic spine development [GO:0060999]; positive regulation of glial cell proliferation [GO:0060252]; positive regulation of microtubule nucleation [GO:0090063]; positive regulation of retrograde dense core granule transport [GO:1901956]; positive regulation of synaptic plasticity [GO:0031915]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-embryonic development [GO:0009791]; principal sensory nucleus of trigeminal nerve development [GO:0021740]; proprioception [GO:0019230]; protein localization [GO:0008104]; regulation of action potential firing threshold [GO:0099611]; regulation of respiratory gaseous exchange by nervous system process [GO:0002087]; regulation of synapse organization [GO:0050807]; respiratory gaseous exchange by respiratory system [GO:0007585]; response to cocaine [GO:0042220]; response to estradiol [GO:0032355]; response to hypoxia [GO:0001666]; response to ionizing radiation [GO:0010212]; response to lead ion [GO:0010288]; response to other organism [GO:0051707]; sensory perception of pain [GO:0019233]; social behavior [GO:0035176]; spinal cord development [GO:0021510]; startle response [GO:0001964]; striatum development [GO:0021756]; synapse assembly [GO:0007416]; thalamus development [GO:0021794]; trans-synaptic signaling by BDNF [GO:0099191]; ventricular cardiac muscle tissue development [GO:0003229]; ventricular system development [GO:0021591]; visual learning [GO:0008542] -P51610 reviewed HCFC1_HUMAN Host cell factor 1 (HCF) (HCF-1) (C1 factor) (CFF) (VCAF) (VP16 accessory protein) [Cleaved into: HCF N-terminal chain 1; HCF N-terminal chain 2; HCF N-terminal chain 3; HCF N-terminal chain 4; HCF N-terminal chain 5; HCF N-terminal chain 6; HCF C-terminal chain 1; HCF C-terminal chain 2; HCF C-terminal chain 3; HCF C-terminal chain 4; HCF C-terminal chain 5; HCF C-terminal chain 6] HCFC1 HCF1 HFC1 chromatin remodeling [GO:0006338]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of cell cycle [GO:0045787]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein stabilization [GO:0050821]; regulation of DNA-templated transcription [GO:0006355]; regulation of protein-containing complex assembly [GO:0043254]; release from viral latency [GO:0019046] -P51692 reviewed STA5B_HUMAN Signal transducer and activator of transcription 5B STAT5B activated T cell proliferation [GO:0050798]; B cell differentiation [GO:0030183]; cell surface receptor signaling pathway via JAK-STAT [GO:0007259]; cellular response to epidermal growth factor stimulus [GO:0071364]; cellular response to growth factor stimulus [GO:0071363]; cellular response to hormone stimulus [GO:0032870]; cytokine-mediated signaling pathway [GO:0019221]; defense response [GO:0006952]; development of secondary female sexual characteristics [GO:0046543]; development of secondary male sexual characteristics [GO:0046544]; erythrocyte differentiation [GO:0030218]; female pregnancy [GO:0007565]; gamma-delta T cell differentiation [GO:0042492]; growth hormone receptor signaling pathway via JAK-STAT [GO:0060397]; lactation [GO:0007595]; lipid storage [GO:0019915]; luteinization [GO:0001553]; mast cell migration [GO:0097531]; mitotic cell cycle [GO:0000278]; myeloid cell apoptotic process [GO:0033028]; natural killer cell differentiation [GO:0001779]; natural killer cell mediated cytotoxicity [GO:0042267]; natural killer cell proliferation [GO:0001787]; negative regulation of erythrocyte differentiation [GO:0045647]; negative regulation of myeloid cell apoptotic process [GO:0033033]; Peyer's patch development [GO:0048541]; positive regulation of activated T cell proliferation [GO:0042104]; positive regulation of B cell differentiation [GO:0045579]; positive regulation of erythrocyte differentiation [GO:0045648]; positive regulation of gamma-delta T cell differentiation [GO:0045588]; positive regulation of inflammatory response [GO:0050729]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of mitotic cell cycle [GO:0045931]; positive regulation of multicellular organism growth [GO:0040018]; positive regulation of natural killer cell differentiation [GO:0032825]; positive regulation of natural killer cell mediated cytotoxicity [GO:0045954]; positive regulation of natural killer cell proliferation [GO:0032819]; positive regulation of transcription by RNA polymerase II [GO:0045944]; progesterone metabolic process [GO:0042448]; regulation of cell population proliferation [GO:0042127]; regulation of epithelial cell differentiation [GO:0030856]; regulation of multicellular organism growth [GO:0040014]; regulation of steroid metabolic process [GO:0019218]; regulation of transcription by RNA polymerase II [GO:0006357]; response to estradiol [GO:0032355]; response to interleukin-15 [GO:0070672]; response to interleukin-2 [GO:0070669]; response to interleukin-4 [GO:0070670]; response to peptide hormone [GO:0043434]; T cell differentiation in thymus [GO:0033077]; T cell homeostasis [GO:0043029]; taurine metabolic process [GO:0019530]; transcription by RNA polymerase II [GO:0006366] -P51812 reviewed KS6A3_HUMAN Ribosomal protein S6 kinase alpha-3 (S6K-alpha-3) (EC 2.7.11.1) (90 kDa ribosomal protein S6 kinase 3) (p90-RSK 3) (p90RSK3) (Insulin-stimulated protein kinase 1) (ISPK-1) (MAP kinase-activated protein kinase 1b) (MAPK-activated protein kinase 1b) (MAPKAP kinase 1b) (MAPKAPK-1b) (Ribosomal S6 kinase 2) (RSK-2) (pp90RSK2) RPS6KA3 ISPK1 MAPKAPK1B RSK2 central nervous system development [GO:0007417]; chemical synaptic transmission [GO:0007268]; intracellular signal transduction [GO:0035556]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043154]; peptidyl-serine phosphorylation [GO:0018105]; positive regulation of cell differentiation [GO:0045597]; positive regulation of cell growth [GO:0030307]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of translation in response to stress [GO:0043555]; response to lipopolysaccharide [GO:0032496]; signal transduction [GO:0007165]; skeletal system development [GO:0001501]; toll-like receptor signaling pathway [GO:0002224] -P51858 reviewed HDGF_HUMAN Hepatoma-derived growth factor (HDGF) (High mobility group protein 1-like 2) (HMG-1L2) HDGF HMG1L2 chromatin remodeling [GO:0006338]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of cell division [GO:0051781]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to nucleus [GO:0034504]; signal transduction [GO:0007165] -P51884 reviewed LUM_HUMAN Lumican (Keratan sulfate proteoglycan lumican) (KSPG lumican) LUM LDC SLRR2D collagen fibril organization [GO:0030199]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta1 production [GO:0032914]; visual perception [GO:0007601] -P51965 reviewed UB2E1_HUMAN Ubiquitin-conjugating enzyme E2 E1 (EC 2.3.2.23) ((E3-independent) E2 ubiquitin-conjugating enzyme E1) (EC 2.3.2.24) (E2 ubiquitin-conjugating enzyme E1) (UbcH6) (Ubiquitin carrier protein E1) (Ubiquitin-protein ligase E1) UBE2E1 UBCH6 ISG15-protein conjugation [GO:0032020]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein K48-linked ubiquitination [GO:0070936]; protein polyubiquitination [GO:0000209]; protein ubiquitination [GO:0016567]; ubiquitin-dependent protein catabolic process [GO:0006511] -P52298 reviewed NCBP2_HUMAN Nuclear cap-binding protein subunit 2 (20 kDa nuclear cap-binding protein) (Cell proliferation-inducing gene 55 protein) (NCBP 20 kDa subunit) (CBP20) (NCBP-interacting protein 1) (NIP1) NCBP2 CBP20 PIG55 alternative mRNA splicing, via spliceosome [GO:0000380]; cap-dependent translational initiation [GO:0002191]; histone mRNA metabolic process [GO:0008334]; miRNA-mediated post-transcriptional gene silencing [GO:0035195]; mRNA 3'-end processing [GO:0031124]; mRNA cis splicing, via spliceosome [GO:0045292]; mRNA export from nucleus [GO:0006406]; mRNA metabolic process [GO:0016071]; mRNA splicing, via spliceosome [GO:0000398]; mRNA transcription by RNA polymerase II [GO:0042789]; nuclear-transcribed mRNA catabolic process, nonsense-mediated decay [GO:0000184]; positive regulation of mRNA 3'-end processing [GO:0031442]; positive regulation of RNA export from nucleus [GO:0046833]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; primary miRNA processing [GO:0031053]; regulation of translational initiation [GO:0006446]; regulatory ncRNA-mediated post-transcriptional gene silencing [GO:0035194]; RNA splicing [GO:0008380]; snRNA export from nucleus [GO:0006408] -P52630 reviewed STAT2_HUMAN Signal transducer and activator of transcription 2 (p113) STAT2 cell surface receptor signaling pathway via JAK-STAT [GO:0007259]; defense response [GO:0006952]; defense response to virus [GO:0051607]; negative regulation of type I interferon-mediated signaling pathway [GO:0060339]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell population proliferation [GO:0042127]; regulation of mitochondrial fission [GO:0090140]; regulation of protein phosphorylation [GO:0001932]; regulation of transcription by RNA polymerase II [GO:0006357]; response to peptide hormone [GO:0043434]; type I interferon-mediated signaling pathway [GO:0060337] -P52655 reviewed TF2AA_HUMAN Transcription initiation factor IIA subunit 1 (General transcription factor IIA subunit 1) (TFIIAL) (Transcription initiation factor TFIIA 42 kDa subunit) (TFIIA-42) [Cleaved into: Transcription initiation factor IIA alpha chain (TFIIA p35 subunit); Transcription initiation factor IIA beta chain (TFIIA p19 subunit)] GTF2A1 TF2A1 positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; RNA polymerase II preinitiation complex assembly [GO:0051123]; transcription by RNA polymerase II [GO:0006366] -P52657 reviewed T2AG_HUMAN Transcription initiation factor IIA subunit 2 (General transcription factor IIA subunit 2) (TFIIA p12 subunit) (TFIIA-12) (TFIIAS) (Transcription initiation factor IIA gamma chain) (TFIIA-gamma) GTF2A2 TF2A2 positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; RNA polymerase II preinitiation complex assembly [GO:0051123]; transcription by RNA polymerase II [GO:0006366]; transcription initiation at RNA polymerase II promoter [GO:0006367] -P52739 reviewed ZN131_HUMAN Zinc finger protein 131 ZNF131 negative regulation of transcription by RNA polymerase II [GO:0000122]; regulation of cytokine production [GO:0001817]; regulation of immune system process [GO:0002682] -P52747 reviewed ZN143_HUMAN Zinc finger protein 143 (SPH-binding factor) (Selenocysteine tRNA gene transcription-activating factor) (hStaf) ZNF143 SBF STAF positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of snRNA transcription by RNA polymerase II [GO:1905382]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription by RNA polymerase III [GO:0045945]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of transcription by RNA polymerase III [GO:0006359] -P52926 reviewed HMGA2_HUMAN High mobility group protein HMGI-C (High mobility group AT-hook protein 2) HMGA2 HMGIC base-excision repair [GO:0006284]; cell division [GO:0051301]; chondrocyte differentiation [GO:0002062]; chondrocyte proliferation [GO:0035988]; chromatin organization [GO:0006325]; chromosome condensation [GO:0030261]; endodermal cell differentiation [GO:0035987]; epithelial to mesenchymal transition [GO:0001837]; fat cell differentiation [GO:0045444]; heterochromatin formation [GO:0031507]; intracellular signal transduction [GO:0035556]; mesenchymal cell differentiation [GO:0048762]; mesodermal cell differentiation [GO:0048333]; mesodermal-endodermal cell signaling [GO:0003131]; negative regulation by host of viral transcription [GO:0043922]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cellular senescence [GO:2000773]; negative regulation of DNA binding [GO:0043392]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of double-strand break repair via nonhomologous end joining [GO:2001033]; negative regulation of single stranded viral RNA replication via double stranded DNA intermediate [GO:0045869]; negative regulation of transcription by RNA polymerase II [GO:0000122]; oncogene-induced cell senescence [GO:0090402]; positive regulation of angiogenesis [GO:0045766]; positive regulation of cell proliferation in bone marrow [GO:0071864]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of protein serine/threonine kinase activity [GO:0071902]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell cycle process [GO:0010564]; regulation of DNA-templated transcription [GO:0006355]; regulation of stem cell population maintenance [GO:2000036]; response to virus [GO:0009615]; stem cell differentiation [GO:0048863] -P52945 reviewed PDX1_HUMAN Pancreas/duodenum homeobox protein 1 (PDX-1) (Glucose-sensitive factor) (GSF) (Insulin promoter factor 1) (IPF-1) (Insulin upstream factor 1) (IUF-1) (Islet/duodenum homeobox-1) (IDX-1) (Somatostatin-transactivating factor 1) (STF-1) PDX1 IPF1 STF1 animal organ morphogenesis [GO:0009887]; animal organ regeneration [GO:0031100]; digestive tract development [GO:0048565]; exocrine pancreas development [GO:0031017]; generation of precursor metabolites and energy [GO:0006091]; glucose mediated signaling pathway [GO:0010255]; glucose metabolic process [GO:0006006]; insulin secretion [GO:0030073]; intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress [GO:0070059]; liver development [GO:0001889]; morphogenesis of embryonic epithelium [GO:0016331]; negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway [GO:1902236]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of type B pancreatic cell apoptotic process [GO:2000675]; positive regulation of insulin secretion [GO:0032024]; positive regulation of insulin secretion involved in cellular response to glucose stimulus [GO:0035774]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type B pancreatic cell proliferation [GO:1904692]; regulation of transcription by RNA polymerase II [GO:0006357]; response to alkaloid [GO:0043279]; response to chlorate [GO:0010157]; response to cytokine [GO:0034097]; response to fatty acid [GO:0070542]; response to glucocorticoid [GO:0051384]; response to iron(II) ion [GO:0010040]; response to L-leucine [GO:0043201]; response to nicotine [GO:0035094]; response to vitamin [GO:0033273]; response to xenobiotic stimulus [GO:0009410]; smoothened signaling pathway [GO:0007224]; stem cell differentiation [GO:0048863]; transcription by RNA polymerase II [GO:0006366]; transdifferentiation [GO:0060290]; type B pancreatic cell apoptotic process [GO:0097050]; type B pancreatic cell differentiation [GO:0003309]; type B pancreatic cell proliferation [GO:0044342] -P52951 reviewed GBX2_HUMAN Homeobox protein GBX-2 (Gastrulation and brain-specific homeobox protein 2) GBX2 autonomic nervous system development [GO:0048483]; axon guidance [GO:0007411]; branching involved in blood vessel morphogenesis [GO:0001569]; cerebellar granule cell precursor proliferation [GO:0021930]; cerebellum development [GO:0021549]; forebrain neuron development [GO:0021884]; inner ear morphogenesis [GO:0042472]; midbrain-hindbrain boundary morphogenesis [GO:0021555]; nervous system development [GO:0007399]; neural crest cell migration [GO:0001755]; regulation of nervous system development [GO:0051960]; regulation of transcription by RNA polymerase II [GO:0006357]; rhombomere 2 development [GO:0021568]; thalamus development [GO:0021794] -P52952 reviewed NKX25_HUMAN Homeobox protein Nkx-2.5 (Cardiac-specific homeobox) (Homeobox protein CSX) (Homeobox protein NK-2 homolog E) NKX2-5 CSX NKX2.5 NKX2E adult heart development [GO:0007512]; aortic valve morphogenesis [GO:0003180]; apoptotic process involved in heart morphogenesis [GO:0003278]; atrial cardiac muscle cell development [GO:0055014]; atrial cardiac muscle tissue development [GO:0003228]; atrial septum morphogenesis [GO:0060413]; atrioventricular node cell development [GO:0060928]; atrioventricular node cell fate commitment [GO:0060929]; atrioventricular node development [GO:0003162]; bundle of His development [GO:0003166]; cardiac conduction system development [GO:0003161]; cardiac muscle cell development [GO:0055013]; cardiac muscle cell proliferation [GO:0060038]; cardiac muscle contraction [GO:0060048]; cardiac muscle tissue morphogenesis [GO:0055008]; cardiac septum morphogenesis [GO:0060411]; cardiac ventricle formation [GO:0003211]; cell differentiation [GO:0030154]; embryonic heart tube development [GO:0035050]; embryonic heart tube left/right pattern formation [GO:0060971]; epithelial cell apoptotic process [GO:1904019]; epithelial cell differentiation [GO:0030855]; epithelial cell proliferation [GO:0050673]; heart development [GO:0007507]; heart looping [GO:0001947]; heart morphogenesis [GO:0003007]; heart trabecula formation [GO:0060347]; hemopoiesis [GO:0030097]; negative regulation of apoptotic process [GO:0043066]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cardiac muscle cell apoptotic process [GO:0010667]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of epithelial cell apoptotic process [GO:1904036]; negative regulation of myotube differentiation [GO:0010832]; negative regulation of transcription by RNA polymerase II [GO:0000122]; outflow tract septum morphogenesis [GO:0003148]; pharyngeal system development [GO:0060037]; positive regulation of cardioblast differentiation [GO:0051891]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of gene expression [GO:0010628]; positive regulation of heart contraction [GO:0045823]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of sodium ion transport [GO:0010765]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; proepicardium development [GO:0003342]; pulmonary myocardium development [GO:0003350]; Purkinje myocyte differentiation [GO:0003168]; regulation of cardiac conduction [GO:1903779]; regulation of cardiac muscle cell proliferation [GO:0060043]; regulation of cardiac muscle contraction [GO:0055117]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; right ventricular cardiac muscle tissue morphogenesis [GO:0003221]; septum secundum development [GO:0003285]; spleen development [GO:0048536]; thyroid gland development [GO:0030878]; transcription by RNA polymerase II [GO:0006366]; vasculogenesis [GO:0001570]; ventricular cardiac muscle cell development [GO:0055015]; ventricular cardiac myofibril assembly [GO:0055005]; ventricular septum morphogenesis [GO:0060412]; ventricular trabecula myocardium morphogenesis [GO:0003222] -P53539 reviewed FOSB_HUMAN Protein FosB (FosB proto-oncogene, AP-1 transcription factor subunit) (G0/G1 switch regulatory protein 3) (Transcription factor AP-1 subunit FosB) FOSB G0S3 behavioral response to cocaine [GO:0048148]; cellular response to calcium ion [GO:0071277]; cellular response to hormone stimulus [GO:0032870]; female pregnancy [GO:0007565]; negative regulation of transcription by RNA polymerase II [GO:0000122]; regulation of transcription by RNA polymerase II [GO:0006357]; response to amphetamine [GO:0001975]; response to cAMP [GO:0051591]; response to corticosterone [GO:0051412]; response to ethanol [GO:0045471]; response to mechanical stimulus [GO:0009612]; response to morphine [GO:0043278]; response to progesterone [GO:0032570]; response to xenobiotic stimulus [GO:0009410]; transcription by RNA polymerase II [GO:0006366] -P53567 reviewed CEBPG_HUMAN CCAAT/enhancer-binding protein gamma (C/EBP gamma) CEBPG B cell differentiation [GO:0030183]; DNA-templated transcription [GO:0006351]; enucleate erythrocyte differentiation [GO:0043353]; immune response [GO:0006955]; integrated stress response signaling [GO:0140467]; liver development [GO:0001889]; mRNA metabolic process [GO:0016071]; natural killer cell mediated cytotoxicity [GO:0042267]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; positive regulation of DNA binding [GO:0043388]; positive regulation of DNA repair [GO:0045739]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type II interferon production [GO:0032729]; regulation of transcription by RNA polymerase II [GO:0006357] -P53708 reviewed ITA8_HUMAN Integrin alpha-8 [Cleaved into: Integrin alpha-8 heavy chain; Integrin alpha-8 light chain] ITGA8 cell adhesion mediated by integrin [GO:0033627]; cell projection organization [GO:0030030]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; establishment of protein localization [GO:0045184]; extracellular matrix organization [GO:0030198]; inner ear morphogenesis [GO:0042472]; integrin-mediated signaling pathway [GO:0007229]; kidney development [GO:0001822]; memory [GO:0007613]; mesodermal cell differentiation [GO:0048333]; metanephros development [GO:0001656]; nervous system development [GO:0007399]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta receptor signaling pathway [GO:0030511]; smooth muscle cell differentiation [GO:0051145]; smooth muscle tissue development [GO:0048745]; substrate adhesion-dependent cell spreading [GO:0034446]; transforming growth factor beta receptor signaling pathway [GO:0007179] -P53999 reviewed TCP4_HUMAN Activated RNA polymerase II transcriptional coactivator p15 (Positive cofactor 4) (PC4) (SUB1 homolog) (p14) SUB1 PC4 RPO2TC1 negative regulation of DNA duplex unwinding [GO:1905463]; negative regulation of DNA metabolic process [GO:0051053]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA polymerase II promoter clearance [GO:0001111] -P54821 reviewed PRRX1_HUMAN Paired mesoderm homeobox protein 1 (Homeobox protein PHOX1) (Paired-related homeobox protein 1) (PRX-1) PRRX1 PMX1 artery morphogenesis [GO:0048844]; cartilage development [GO:0051216]; embryonic cranial skeleton morphogenesis [GO:0048701]; embryonic limb morphogenesis [GO:0030326]; inner ear morphogenesis [GO:0042472]; mesenchymal cell proliferation [GO:0010463]; middle ear morphogenesis [GO:0042474]; neuron fate determination [GO:0048664]; neuronal stem cell population maintenance [GO:0097150]; positive regulation of mesenchymal cell proliferation [GO:0002053]; positive regulation of smoothened signaling pathway [GO:0045880]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of neuron projection regeneration [GO:0070570]; regulation of transcription by RNA polymerase II [GO:0006357]; roof of mouth development [GO:0060021]; smoothened signaling pathway [GO:0007224]; stem cell proliferation [GO:0072089] -P54845 reviewed NRL_HUMAN Neural retina-specific leucine zipper protein (NRL) NRL D14S46E positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; retinal rod cell development [GO:0046548]; visual perception [GO:0007601] -P55055 reviewed NR1H2_HUMAN Oxysterols receptor LXR-beta (Liver X receptor beta) (Nuclear receptor NER) (Nuclear receptor subfamily 1 group H member 2) (Ubiquitously-expressed nuclear receptor) NR1H2 LXRB NER UNR cell differentiation [GO:0030154]; cholesterol homeostasis [GO:0042632]; hormone-mediated signaling pathway [GO:0009755]; mRNA transcription by RNA polymerase II [GO:0042789]; negative regulation of cholesterol storage [GO:0010887]; negative regulation of cold-induced thermogenesis [GO:0120163]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of lipid transport [GO:0032369]; negative regulation of macrophage derived foam cell differentiation [GO:0010745]; negative regulation of pinocytosis [GO:0048550]; negative regulation of proteolysis [GO:0045861]; negative regulation of response to endoplasmic reticulum stress [GO:1903573]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of type II interferon-mediated signaling pathway [GO:0060336]; phosphatidylcholine acyl-chain remodeling [GO:0036151]; positive regulation of cholesterol efflux [GO:0010875]; positive regulation of cholesterol transport [GO:0032376]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of fatty acid biosynthetic process [GO:0045723]; positive regulation of high-density lipoprotein particle assembly [GO:0090108]; positive regulation of lipid storage [GO:0010884]; positive regulation of lipoprotein lipase activity [GO:0051006]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of pancreatic juice secretion [GO:0090187]; positive regulation of protein metabolic process [GO:0051247]; positive regulation of secretion of lysosomal enzymes [GO:0090340]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of triglyceride biosynthetic process [GO:0010867] -P55085 reviewed PAR2_HUMAN Proteinase-activated receptor 2 (PAR-2) (Coagulation factor II receptor-like 1) (G-protein coupled receptor 11) (Thrombin receptor-like 1) [Cleaved into: Proteinase-activated receptor 2, alternate cleaved 1; Proteinase-activated receptor 2, alternate cleaved 2] F2RL1 GPR11 PAR2 blood coagulation [GO:0007596]; cell-cell junction maintenance [GO:0045217]; defense response to virus [GO:0051607]; establishment of endothelial barrier [GO:0061028]; G protein-coupled receptor signaling pathway [GO:0007186]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; leukocyte migration [GO:0050900]; leukocyte proliferation [GO:0070661]; mature conventional dendritic cell differentiation [GO:0097029]; negative regulation of chemokine production [GO:0032682]; negative regulation of insulin secretion [GO:0046676]; negative regulation of JNK cascade [GO:0046329]; negative regulation of toll-like receptor 3 signaling pathway [GO:0034140]; negative regulation of tumor necrosis factor-mediated signaling pathway [GO:0010804]; neutrophil activation [GO:0042119]; phospholipase C-activating G protein-coupled receptor signaling pathway [GO:0007200]; positive regulation of actin filament depolymerization [GO:0030836]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cell migration [GO:0030335]; positive regulation of chemokine production [GO:0032722]; positive regulation of chemotaxis [GO:0050921]; positive regulation of cytokine production involved in immune response [GO:0002720]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of eosinophil degranulation [GO:0043311]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of glomerular filtration [GO:0003104]; positive regulation of GTPase activity [GO:0043547]; positive regulation of interleukin-1 beta production [GO:0032731]; positive regulation of interleukin-10 production [GO:0032733]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of JNK cascade [GO:0046330]; positive regulation of leukocyte chemotaxis [GO:0002690]; positive regulation of neutrophil mediated killing of gram-negative bacterium [GO:0070963]; positive regulation of phagocytosis, engulfment [GO:0060100]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of positive chemotaxis [GO:0050927]; positive regulation of pseudopodium assembly [GO:0031274]; positive regulation of renin secretion into blood stream [GO:1900135]; positive regulation of Rho protein signal transduction [GO:0035025]; positive regulation of superoxide anion generation [GO:0032930]; positive regulation of toll-like receptor 2 signaling pathway [GO:0034137]; positive regulation of toll-like receptor 3 signaling pathway [GO:0034141]; positive regulation of toll-like receptor 4 signaling pathway [GO:0034145]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type II interferon production [GO:0032729]; potassium channel activating, G protein-coupled receptor signaling pathway [GO:0099109]; regulation of blood coagulation [GO:0030193]; regulation of canonical NF-kappaB signal transduction [GO:0043122]; regulation of chemokine (C-X-C motif) ligand 2 production [GO:2000341]; regulation of JNK cascade [GO:0046328]; T cell activation involved in immune response [GO:0002286]; vasodilation [GO:0042311] -P55089 reviewed UCN1_HUMAN Urocortin UCN aerobic respiration [GO:0009060]; associative learning [GO:0008306]; drinking behavior [GO:0042756]; female pregnancy [GO:0007565]; G protein-coupled receptor signaling pathway [GO:0007186]; negative regulation of appetite [GO:0032099]; negative regulation of blood pressure [GO:0045776]; negative regulation of cell size [GO:0045792]; negative regulation of feeding behavior [GO:2000252]; negative regulation of gene expression [GO:0010629]; negative regulation of hormone secretion [GO:0046888]; negative regulation of neuron apoptotic process [GO:0043524]; neuron projection development [GO:0031175]; neuropeptide signaling pathway [GO:0007218]; positive regulation of behavioral fear response [GO:2000987]; positive regulation of calcium ion import [GO:0090280]; positive regulation of cAMP-mediated signaling [GO:0043950]; positive regulation of cardiac muscle contraction [GO:0060452]; positive regulation of cell growth [GO:0030307]; positive regulation of collagen biosynthetic process [GO:0032967]; positive regulation of corticotropin secretion [GO:0051461]; positive regulation of DNA replication [GO:0045740]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of translation [GO:0045727]; positive regulation of vascular permeability [GO:0043117]; regulation of synaptic transmission, glutamatergic [GO:0051966]; response to auditory stimulus [GO:0010996]; response to estradiol [GO:0032355]; response to glucocorticoid [GO:0051384]; response to oxidative stress [GO:0006979]; response to pain [GO:0048265]; sensory perception of sound [GO:0007605]; social behavior [GO:0035176]; startle response [GO:0001964]; vasodilation [GO:0042311] -P55197 reviewed AF10_HUMAN Protein AF-10 (ALL1-fused gene from chromosome 10 protein) MLLT10 AF10 positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -P55198 reviewed AF17_HUMAN Protein AF-17 (ALL1-fused gene from chromosome 17 protein) MLLT6 AF17 chromatin organization [GO:0006325]; negative regulation of urine volume [GO:0035811]; positive regulation of sodium ion transport [GO:0010765]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; renal potassium excretion [GO:0036359]; renal sodium excretion [GO:0035812]; renal water absorption [GO:0070295] -P55199 reviewed ELL_HUMAN RNA polymerase II elongation factor ELL (Eleven-nineteen lysine-rich leukemia protein) ELL C19orf17 in utero embryonic development [GO:0001701]; positive regulation of DNA-templated transcription, elongation [GO:0032786]; positive regulation of transcription by RNA polymerase III [GO:0045945]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; snRNA transcription by RNA polymerase II [GO:0042795]; snRNA transcription by RNA polymerase III [GO:0042796]; transcription elongation by RNA polymerase II [GO:0006368] -P55290 reviewed CAD13_HUMAN Cadherin-13 (Heart cadherin) (H-cadherin) (P105) (Truncated cadherin) (T-cad) (T-cadherin) CDH13 CDHH adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell migration [GO:0016477]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; endothelial cell migration [GO:0043542]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; keratinocyte proliferation [GO:0043616]; lamellipodium assembly [GO:0030032]; localization within membrane [GO:0051668]; low-density lipoprotein particle mediated signaling [GO:0055096]; negative regulation of cell adhesion [GO:0007162]; negative regulation of cell population proliferation [GO:0008285]; positive regulation of calcium-mediated signaling [GO:0050850]; positive regulation of cell migration [GO:0030335]; positive regulation of cell-matrix adhesion [GO:0001954]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of positive chemotaxis [GO:0050927]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of transcription by RNA polymerase II [GO:0045944]; Rac protein signal transduction [GO:0016601]; regulation of endocytosis [GO:0030100]; regulation of epidermal growth factor receptor signaling pathway [GO:0042058]; Rho protein signal transduction [GO:0007266]; sprouting angiogenesis [GO:0002040] -P55317 reviewed FOXA1_HUMAN Hepatocyte nuclear factor 3-alpha (HNF-3-alpha) (HNF-3A) (Forkhead box protein A1) (Transcription factor 3A) (TCF-3A) FOXA1 HNF3A TCF3A alveolar secondary septum development [GO:0061144]; anatomical structure formation involved in morphogenesis [GO:0048646]; anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; chromatin remodeling [GO:0006338]; dopaminergic neuron differentiation [GO:0071542]; dorsal/ventral neural tube patterning [GO:0021904]; epithelial cell maturation involved in prostate gland development [GO:0060743]; epithelial tube branching involved in lung morphogenesis [GO:0060441]; glucose homeostasis [GO:0042593]; hormone metabolic process [GO:0042445]; lung epithelial cell differentiation [GO:0060487]; mesenchymal-epithelial cell signaling involved in prostate gland development [GO:0060739]; negative regulation of epithelial to mesenchymal transition [GO:0010719]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron fate specification [GO:0048665]; Notch signaling pathway [GO:0007219]; positive regulation of apoptotic process [GO:0043065]; positive regulation of cell-cell adhesion mediated by cadherin [GO:2000049]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of dopaminergic neuron differentiation [GO:1904340]; positive regulation of intracellular estrogen receptor signaling pathway [GO:0033148]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of mitotic cell cycle [GO:0045931]; positive regulation of smoothened signaling pathway [GO:0045880]; positive regulation of transcription by RNA polymerase II [GO:0045944]; prostate gland epithelium morphogenesis [GO:0060740]; prostate gland stromal morphogenesis [GO:0060741]; regulation of transcription by RNA polymerase II [GO:0006357]; respiratory basal cell differentiation [GO:1902691]; response to estradiol [GO:0032355]; secretory columnal luminar epithelial cell differentiation involved in prostate glandular acinus development [GO:0060528]; smoothened signaling pathway [GO:0007224] -P55318 reviewed FOXA3_HUMAN Hepatocyte nuclear factor 3-gamma (HNF-3-gamma) (HNF-3G) (Fork head-related protein FKH H3) (Forkhead box protein A3) (Transcription factor 3G) (TCF-3G) FOXA3 HNF3G TCF3G anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; cellular response to starvation [GO:0009267]; chromatin organization [GO:0006325]; hematopoietic stem cell homeostasis [GO:0061484]; intracellular glucose homeostasis [GO:0001678]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; spermatogenesis [GO:0007283]; transcription by RNA polymerase II [GO:0006366] -P55347 reviewed PKNX1_HUMAN Homeobox protein PKNOX1 (Homeobox protein PREP-1) (PBX/knotted homeobox 1) PKNOX1 PREP1 angiogenesis [GO:0001525]; camera-type eye development [GO:0043010]; erythrocyte differentiation [GO:0030218]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; T cell differentiation [GO:0030217]; transcription by RNA polymerase II [GO:0006366] -P55771 reviewed PAX9_HUMAN Paired box protein Pax-9 PAX9 cellular response to growth factor stimulus [GO:0071363]; endoderm development [GO:0007492]; face morphogenesis [GO:0060325]; negative regulation of DNA-templated transcription [GO:0045892]; odontogenesis [GO:0042476]; regulation of odontogenesis [GO:0042481]; regulation of transcription by RNA polymerase II [GO:0006357] -P56177 reviewed DLX1_HUMAN Homeobox protein DLX-1 DLX1 cell differentiation [GO:0030154]; cellular response to BMP stimulus [GO:0071773]; cellular response to transforming growth factor beta stimulus [GO:0071560]; cerebral cortex GABAergic interneuron fate commitment [GO:0021893]; embryonic skeletal system development [GO:0048706]; forebrain neuron differentiation [GO:0021879]; hippocampus development [GO:0021766]; negative regulation of BMP signaling pathway [GO:0030514]; negative regulation of cellular response to transforming growth factor beta stimulus [GO:1903845]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of Notch signaling pathway [GO:0045746]; negative regulation of oligodendrocyte differentiation [GO:0048715]; negative regulation of photoreceptor cell differentiation [GO:0046533]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuroblast differentiation [GO:0014016]; neuron apoptotic process [GO:0051402]; Notch signaling pathway [GO:0007219]; odontogenesis of dentin-containing tooth [GO:0042475]; oligodendrocyte differentiation [GO:0048709]; positive regulation of amacrine cell differentiation [GO:1902871]; positive regulation of cell differentiation [GO:0045597]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proximal/distal pattern formation [GO:0009954]; subpallium development [GO:0021544] -P56178 reviewed DLX5_HUMAN Homeobox protein DLX-5 DLX5 anatomical structure formation involved in morphogenesis [GO:0048646]; BMP signaling pathway [GO:0030509]; cell differentiation [GO:0030154]; cell population proliferation [GO:0008283]; embryonic limb morphogenesis [GO:0030326]; endochondral ossification [GO:0001958]; epithelial cell differentiation [GO:0030855]; face morphogenesis [GO:0060325]; inner ear morphogenesis [GO:0042472]; interneuron axon guidance [GO:0097376]; nervous system development [GO:0007399]; olfactory bulb interneuron differentiation [GO:0021889]; olfactory pit development [GO:0060166]; osteoblast differentiation [GO:0001649]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; roof of mouth development [GO:0060021]; skeletal system development [GO:0001501] -P56524 reviewed HDAC4_HUMAN Histone deacetylase 4 (HD4) (EC 3.5.1.98) HDAC4 KIAA0288 B cell activation [GO:0042113]; B cell differentiation [GO:0030183]; cardiac muscle hypertrophy in response to stress [GO:0014898]; chromatin remodeling [GO:0006338]; inflammatory response [GO:0006954]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of gene expression, epigenetic [GO:0045814]; negative regulation of glycolytic process [GO:0045820]; negative regulation of myotube differentiation [GO:0010832]; negative regulation of transcription by competitive promoter binding [GO:0010944]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system development [GO:0007399]; peptidyl-lysine deacetylation [GO:0034983]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of protein sumoylation [GO:0033235]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein deacetylation [GO:0006476]; protein sumoylation [GO:0016925]; regulation of protein binding [GO:0043393]; response to denervation involved in regulation of muscle adaptation [GO:0014894]; response to interleukin-1 [GO:0070555]; type I interferon-mediated signaling pathway [GO:0060337] -P56545 reviewed CTBP2_HUMAN C-terminal-binding protein 2 (CtBP2) CTBP2 negative regulation of cell population proliferation [GO:0008285]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of retinoic acid receptor signaling pathway [GO:0048386]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; viral genome replication [GO:0019079]; white fat cell differentiation [GO:0050872] -P56693 reviewed SOX10_HUMAN Transcription factor SOX-10 SOX10 anatomical structure morphogenesis [GO:0009653]; cell maturation [GO:0048469]; cellular response to progesterone stimulus [GO:0071393]; cellular response to xenobiotic stimulus [GO:0071466]; central nervous system myelination [GO:0022010]; developmental growth [GO:0048589]; digestive tract morphogenesis [GO:0048546]; enteric nervous system development [GO:0048484]; in utero embryonic development [GO:0001701]; lacrimal gland development [GO:0032808]; melanocyte differentiation [GO:0030318]; morphogenesis of a branching epithelium [GO:0061138]; morphogenesis of an epithelium [GO:0002009]; negative regulation of apoptotic process [GO:0043066]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of Schwann cell proliferation [GO:0010626]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural crest cell migration [GO:0001755]; neuroblast proliferation [GO:0007405]; oligodendrocyte development [GO:0014003]; oligodendrocyte differentiation [GO:0048709]; peripheral nervous system development [GO:0007422]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of gliogenesis [GO:0014015]; positive regulation of myelination [GO:0031643]; positive regulation of neuroblast proliferation [GO:0002052]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription elongation by RNA polymerase II [GO:0006368] -P56704 reviewed WNT3A_HUMAN Protein Wnt-3a WNT3A axis elongation involved in somitogenesis [GO:0090245]; axon guidance [GO:0007411]; B cell proliferation [GO:0042100]; calcium ion transmembrane transport via low voltage-gated calcium channel [GO:0090676]; canonical Wnt signaling pathway [GO:0060070]; cardiac muscle cell fate commitment [GO:0060923]; cell fate commitment [GO:0045165]; cell population proliferation [GO:0008283]; cell proliferation in forebrain [GO:0021846]; cell proliferation in midbrain [GO:0033278]; cellular response to retinoic acid [GO:0071300]; COP9 signalosome assembly [GO:0010387]; dorsal/ventral neural tube patterning [GO:0021904]; extracellular matrix organization [GO:0030198]; fat cell differentiation [GO:0045444]; heart development [GO:0007507]; heart looping [GO:0001947]; hemopoiesis [GO:0030097]; hippocampus development [GO:0021766]; in utero embryonic development [GO:0001701]; inner ear morphogenesis [GO:0042472]; mammary gland development [GO:0030879]; midbrain dopaminergic neuron differentiation [GO:1904948]; modulation of chemical synaptic transmission [GO:0050804]; myoblast differentiation [GO:0045445]; negative regulation of axon extension involved in axon guidance [GO:0048843]; negative regulation of dopaminergic neuron differentiation [GO:1904339]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of neurogenesis [GO:0050768]; negative regulation of neuron projection development [GO:0010977]; neuron differentiation [GO:0030182]; non-canonical Wnt signaling pathway [GO:0035567]; osteoblast differentiation [GO:0001649]; paraxial mesodermal cell fate commitment [GO:0048343]; platelet aggregation [GO:0070527]; positive regulation of B cell proliferation [GO:0030890]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of cardiac muscle cell differentiation [GO:2000727]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cell-cell adhesion mediated by cadherin [GO:2000049]; positive regulation of collateral sprouting in absence of injury [GO:0048697]; positive regulation of cytokine production [GO:0001819]; positive regulation of dermatome development [GO:0061184]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of hepatocyte proliferation [GO:2000347]; positive regulation of mesodermal cell fate specification [GO:0048337]; positive regulation of neural precursor cell proliferation [GO:2000179]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of protein localization to plasma membrane [GO:1903078]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of receptor internalization [GO:0002092]; positive regulation of skeletal muscle tissue development [GO:0048643]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-anal tail morphogenesis [GO:0036342]; presynapse assembly [GO:0099054]; protein localization [GO:0008104]; regulation of microtubule cytoskeleton organization [GO:0070507]; regulation of postsynapse to nucleus signaling pathway [GO:1905539]; regulation of presynapse assembly [GO:1905606]; regulation of synapse organization [GO:0050807]; secondary palate development [GO:0062009]; skeletal muscle cell differentiation [GO:0035914]; somatic stem cell division [GO:0048103]; spinal cord association neuron differentiation [GO:0021527]; synaptic vesicle recycling [GO:0036465]; transcription by RNA polymerase II [GO:0006366]; Wnt signaling pathway involved in forebrain neuroblast division [GO:0021874] -P57071 reviewed PRD15_HUMAN PR domain zinc finger protein 15 (EC 2.1.1.-) (PR domain-containing protein 15) (Zinc finger protein 298) PRDM15 C21orf83 ZNF298 methylation [GO:0032259]; negative regulation of MAPK cascade [GO:0043409]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of stem cell division [GO:2000035]; regulation of transcription by RNA polymerase II [GO:0006357] -P57073 reviewed SOX8_HUMAN Transcription factor SOX-8 SOX8 adipose tissue development [GO:0060612]; astrocyte fate commitment [GO:0060018]; cell fate commitment [GO:0045165]; cell maturation [GO:0048469]; enteric nervous system development [GO:0048484]; fat cell differentiation [GO:0045444]; in utero embryonic development [GO:0001701]; male gonad development [GO:0008584]; metanephric nephron tubule formation [GO:0072289]; morphogenesis of a branching epithelium [GO:0061138]; morphogenesis of an epithelium [GO:0002009]; negative regulation of apoptotic process [GO:0043066]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of myoblast differentiation [GO:0045662]; negative regulation of photoreceptor cell differentiation [GO:0046533]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural crest cell development [GO:0014032]; neural crest cell migration [GO:0001755]; oligodendrocyte differentiation [GO:0048709]; osteoblast differentiation [GO:0001649]; peripheral nervous system development [GO:0007422]; positive regulation of branching involved in ureteric bud morphogenesis [GO:0090190]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of gliogenesis [GO:0014015]; positive regulation of kidney development [GO:0090184]; positive regulation of osteoblast proliferation [GO:0033690]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of hormone levels [GO:0010817]; renal vesicle induction [GO:0072034]; retina development in camera-type eye [GO:0060041]; retinal rod cell differentiation [GO:0060221]; Sertoli cell development [GO:0060009]; signal transduction [GO:0007165]; skeletal muscle cell differentiation [GO:0035914]; spermatogenesis [GO:0007283]; ureter morphogenesis [GO:0072197] -P58012 reviewed FOXL2_HUMAN Forkhead box protein L2 FOXL2 anatomical structure morphogenesis [GO:0009653]; apoptotic DNA fragmentation [GO:0006309]; cell differentiation [GO:0030154]; embryonic eye morphogenesis [GO:0048048]; extraocular skeletal muscle development [GO:0002074]; female somatic sex determination [GO:0019101]; granulosa cell differentiation [GO:0060014]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; oocyte growth [GO:0001555]; ovarian follicle development [GO:0001541]; positive regulation of apoptotic process [GO:0043065]; positive regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043280]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of follicle-stimulating hormone secretion [GO:0046881]; positive regulation of luteinizing hormone secretion [GO:0033686]; regulation of transcription by RNA polymerase II [GO:0006357]; single fertilization [GO:0007338]; uterus development [GO:0060065] -P59923 reviewed ZN445_HUMAN Zinc finger protein 445 (ZFP445) (Zinc finger protein 168) (Zinc finger protein with KRAB and SCAN domains 15) ZNF445 ZFP445 ZKSCAN15 ZNF168 epigenetic programing of female pronucleus [GO:0044726]; negative regulation of gene expression via chromosomal CpG island methylation [GO:0044027]; regulation of transcription by RNA polymerase II [GO:0006357] -P60033 reviewed CD81_HUMAN CD81 antigen (26 kDa cell surface protein TAPA-1) (Target of the antiproliferative antibody 1) (Tetraspanin-28) (Tspan-28) (CD antigen CD81) CD81 TAPA1 TSPAN28 CD4-positive, alpha-beta T cell costimulation [GO:0035783]; cellular response to low-density lipoprotein particle stimulus [GO:0071404]; humoral immune response mediated by circulating immunoglobulin [GO:0002455]; immunological synapse formation [GO:0001771]; macrophage fusion [GO:0034238]; myoblast fusion involved in skeletal muscle regeneration [GO:0014905]; osteoclast fusion [GO:0072675]; positive regulation of adaptive immune memory response [GO:1905676]; positive regulation of B cell proliferation [GO:0030890]; positive regulation of B cell receptor signaling pathway [GO:0050861]; positive regulation of CD4-positive, alpha-beta T cell proliferation [GO:2000563]; positive regulation of inflammatory response to antigenic stimulus [GO:0002863]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of protein catabolic process in the vacuole [GO:1904352]; positive regulation of protein exit from endoplasmic reticulum [GO:0070863]; positive regulation of receptor clustering [GO:1903911]; positive regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell [GO:2001190]; positive regulation of T cell receptor signaling pathway [GO:0050862]; positive regulation of T-helper 2 cell cytokine production [GO:2000553]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to lysosome [GO:0061462]; protein localization to plasma membrane [GO:0072659]; receptor internalization [GO:0031623]; regulation of macrophage migration [GO:1905521]; regulation of protein stability [GO:0031647] -P60568 reviewed IL2_HUMAN Interleukin-2 (IL-2) (T-cell growth factor) (TCGF) (Aldesleukin) IL2 activated T cell proliferation [GO:0050798]; adaptive immune response [GO:0002250]; cell adhesion [GO:0007155]; cell-cell signaling [GO:0007267]; extrinsic apoptotic signaling pathway in absence of ligand [GO:0097192]; immune response [GO:0006955]; interleukin-2-mediated signaling pathway [GO:0038110]; leukocyte activation involved in immune response [GO:0002366]; natural killer cell activation [GO:0030101]; negative regulation of apoptotic process [GO:0043066]; negative regulation of B cell apoptotic process [GO:0002903]; negative regulation of inflammatory response [GO:0050728]; negative regulation of lymphocyte proliferation [GO:0050672]; negative regulation of protein phosphorylation [GO:0001933]; negative regulation of T-helper 17 cell differentiation [GO:2000320]; positive regulation of activated T cell proliferation [GO:0042104]; positive regulation of B cell proliferation [GO:0030890]; positive regulation of cell growth [GO:0030307]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of dendritic spine development [GO:0060999]; positive regulation of immunoglobulin production [GO:0002639]; positive regulation of inflammatory response [GO:0050729]; positive regulation of interleukin-17 production [GO:0032740]; positive regulation of isotype switching to IgG isotypes [GO:0048304]; positive regulation of plasma cell differentiation [GO:1900100]; positive regulation of regulatory T cell differentiation [GO:0045591]; positive regulation of tissue remodeling [GO:0034105]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type II interferon production [GO:0032729]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; protein kinase C-activating G protein-coupled receptor signaling pathway [GO:0007205]; regulation of CD4-positive, alpha-beta T cell proliferation [GO:2000561]; regulation of T cell homeostatic proliferation [GO:0046013]; response to ethanol [GO:0045471]; response to tacrolimus [GO:1901327]; T cell differentiation [GO:0030217]; transcription by RNA polymerase II [GO:0006366] -P60903 reviewed S10AA_HUMAN Protein S100-A10 (Calpactin I light chain) (Calpactin-1 light chain) (Cellular ligand of annexin II) (S100 calcium-binding protein A10) (p10 protein) (p11) S100A10 ANX2LG CAL1L CLP11 membrane raft assembly [GO:0001765]; mRNA transcription by RNA polymerase II [GO:0042789]; positive regulation of exocytosis [GO:0045921]; positive regulation of focal adhesion assembly [GO:0051894]; positive regulation of GTPase activity [GO:0043547]; positive regulation of plasma membrane repair [GO:1905686]; positive regulation of plasminogen activation [GO:0010756]; positive regulation of stress fiber assembly [GO:0051496]; positive regulation of substrate adhesion-dependent cell spreading [GO:1900026]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to plasma membrane [GO:0072659]; regulation of neurogenesis [GO:0050767]; vesicle budding from membrane [GO:0006900] -P61158 reviewed ARP3_HUMAN Actin-related protein 3 (Actin-like protein 3) ACTR3 ARP3 actin polymerization-dependent cell motility [GO:0070358]; Arp2/3 complex-mediated actin nucleation [GO:0034314]; asymmetric cell division [GO:0008356]; cellular response to type II interferon [GO:0071346]; cilium assembly [GO:0060271]; establishment or maintenance of cell polarity [GO:0007163]; meiotic chromosome movement towards spindle pole [GO:0016344]; meiotic cytokinesis [GO:0033206]; positive regulation of lamellipodium assembly [GO:0010592]; positive regulation of transcription by RNA polymerase II [GO:0045944]; spindle localization [GO:0051653] -P61160 reviewed ARP2_HUMAN Actin-related protein 2 (Actin-like protein 2) ACTR2 ARP2 Arp2/3 complex-mediated actin nucleation [GO:0034314]; asymmetric cell division [GO:0008356]; cellular response to type II interferon [GO:0071346]; cilium assembly [GO:0060271]; cytosolic transport [GO:0016482]; establishment or maintenance of cell polarity [GO:0007163]; meiotic chromosome movement towards spindle pole [GO:0016344]; meiotic cytokinesis [GO:0033206]; positive regulation of double-strand break repair via homologous recombination [GO:1905168]; positive regulation of lamellipodium assembly [GO:0010592]; positive regulation of transcription by RNA polymerase II [GO:0045944]; spindle localization [GO:0051653] -P61244 reviewed MAX_HUMAN Protein max (Class D basic helix-loop-helix protein 4) (bHLHd4) (Myc-associated factor X) MAX BHLHD4 negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -P61296 reviewed HAND2_HUMAN Heart- and neural crest derivatives-expressed protein 2 (Class A basic helix-loop-helix protein 26) (bHLHa26) (Deciduum, heart, autonomic nervous system and neural crest derivatives-expressed protein 2) (dHAND) HAND2 BHLHA26 DHAND adult heart development [GO:0007512]; angiogenesis [GO:0001525]; apoptotic process involved in heart morphogenesis [GO:0003278]; cardiac neural crest cell development involved in outflow tract morphogenesis [GO:0061309]; cardiac neural crest cell migration involved in outflow tract morphogenesis [GO:0003253]; cardiac right ventricle formation [GO:0003219]; cartilage morphogenesis [GO:0060536]; cell proliferation involved in outflow tract morphogenesis [GO:0061325]; cellular response to organic cyclic compound [GO:0071407]; cellular response to retinoic acid [GO:0071300]; coronary artery morphogenesis [GO:0060982]; embryonic digit morphogenesis [GO:0042733]; embryonic skeletal system development [GO:0048706]; epithelial cell apoptotic process [GO:1904019]; heart development [GO:0007507]; heart looping [GO:0001947]; in utero embryonic development [GO:0001701]; mesenchymal cell proliferation [GO:0010463]; negative regulation of cardiac muscle cell apoptotic process [GO:0010667]; negative regulation of epithelial cell apoptotic process [GO:1904036]; negative regulation of gene expression [GO:0010629]; negative regulation of osteoblast differentiation [GO:0045668]; noradrenergic neuron differentiation [GO:0003357]; norepinephrine biosynthetic process [GO:0042421]; odontogenesis of dentin-containing tooth [GO:0042475]; osteoblast differentiation [GO:0001649]; outflow tract morphogenesis [GO:0003151]; peripheral nervous system neuron development [GO:0048935]; positive regulation of cardiac muscle hypertrophy [GO:0010613]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of gene expression [GO:0010628]; positive regulation of p38MAPK cascade [GO:1900745]; positive regulation of semaphorin-plexin signaling pathway [GO:2001262]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription regulatory region DNA binding [GO:2000679]; primary palate development [GO:1903929]; regulation of secondary heart field cardioblast proliferation [GO:0003266]; regulation of tissue remodeling [GO:0034103]; regulation of transcription by RNA polymerase II [GO:0006357]; suckling behavior [GO:0001967]; sympathetic nervous system development [GO:0048485]; thymus development [GO:0048538]; tongue development [GO:0043586]; visceral serous pericardium development [GO:0061032] -P61371 reviewed ISL1_HUMAN Insulin gene enhancer protein ISL-1 (Islet-1) ISL1 atrial septum morphogenesis [GO:0060413]; axonogenesis [GO:0007409]; canonical Wnt signaling pathway [GO:0060070]; cardiac cell fate determination [GO:0060913]; cardiac muscle cell myoblast differentiation [GO:0060379]; cardiac right ventricle morphogenesis [GO:0003215]; cell population proliferation [GO:0008283]; cellular response to glucocorticoid stimulus [GO:0071385]; endocardial cushion morphogenesis [GO:0003203]; heart development [GO:0007507]; innervation [GO:0060384]; mesenchymal cell differentiation [GO:0048762]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of inflammatory response [GO:0050728]; negative regulation of intracellular estrogen receptor signaling pathway [GO:0033147]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of protein-containing complex assembly [GO:0031333]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural crest cell migration [GO:0001755]; neuron fate specification [GO:0048665]; outflow tract morphogenesis [GO:0003151]; outflow tract septum morphogenesis [GO:0003148]; pancreas development [GO:0031016]; peripheral nervous system neuron axonogenesis [GO:0048936]; pharyngeal system development [GO:0060037]; pituitary gland development [GO:0021983]; positive regulation of angiogenesis [GO:0045766]; positive regulation of cell differentiation [GO:0045597]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of granulocyte colony-stimulating factor production [GO:0071657]; positive regulation of granulocyte macrophage colony-stimulating factor production [GO:0032725]; positive regulation of insulin secretion [GO:0032024]; positive regulation of interleukin-1 alpha production [GO:0032730]; positive regulation of interleukin-1 beta production [GO:0032731]; positive regulation of interleukin-12 production [GO:0032735]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of macrophage colony-stimulating factor production [GO:1901258]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of type II interferon production [GO:0032729]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; positive regulation of vascular endothelial growth factor production [GO:0010575]; regulation of heart rate by cardiac conduction [GO:0086091]; regulation of secondary heart field cardioblast proliferation [GO:0003266]; retinal ganglion cell axon guidance [GO:0031290]; secondary heart field specification [GO:0003139]; sensory system development [GO:0048880]; sinoatrial node cell development [GO:0060931]; spinal cord motor neuron cell fate specification [GO:0021520]; spinal cord motor neuron differentiation [GO:0021522]; transcription by RNA polymerase II [GO:0006366]; trigeminal nerve development [GO:0021559]; ventricular cardiac muscle tissue morphogenesis [GO:0055010]; visceral motor neuron differentiation [GO:0021524] -P61968 reviewed LMO4_HUMAN LIM domain transcription factor LMO4 (Breast tumor autoantigen) (LIM domain only protein 4) (LMO-4) LMO4 motor neuron axon guidance [GO:0008045]; negative regulation of protein-containing complex assembly [GO:0031333]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural tube closure [GO:0001843]; positive regulation of kinase activity [GO:0033674]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell activation [GO:0050865]; regulation of cell fate specification [GO:0042659]; regulation of cell migration [GO:0030334]; spinal cord association neuron differentiation [GO:0021527]; spinal cord motor neuron cell fate specification [GO:0021520]; thymus development [GO:0048538]; ventral spinal cord interneuron differentiation [GO:0021514]; ventricular septum development [GO:0003281] -P61978 reviewed HNRPK_HUMAN Heterogeneous nuclear ribonucleoprotein K (hnRNP K) (Transformation up-regulated nuclear protein) (TUNP) HNRNPK HNRPK mRNA splicing, via spliceosome [GO:0000398]; negative regulation of apoptotic process [GO:0043066]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of mRNA splicing, via spliceosome [GO:0048025]; positive regulation of low-density lipoprotein receptor activity [GO:1905599]; positive regulation of receptor-mediated endocytosis [GO:0048260]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:1902165]; regulation of low-density lipoprotein particle clearance [GO:0010988]; regulation of mRNA splicing, via spliceosome [GO:0048024]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA processing [GO:0006396]; signal transduction [GO:0007165] -P62333 reviewed PRS10_HUMAN 26S proteasome regulatory subunit 10B (26S proteasome AAA-ATPase subunit RPT4) (Proteasome 26S subunit ATPase 6) (Proteasome subunit p42) PSMC6 SUG2 ERAD pathway [GO:0036503]; positive regulation of inclusion body assembly [GO:0090261]; positive regulation of proteasomal protein catabolic process [GO:1901800]; positive regulation of RNA polymerase II transcription preinitiation complex assembly [GO:0045899]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161] -P62508 reviewed ERR3_HUMAN Estrogen-related receptor gamma (ERR gamma-2) (Estrogen receptor-related protein 3) (Nuclear receptor subfamily 3 group B member 3) ESRRG ERR3 ERRG2 KIAA0832 NR3B3 intracellular steroid hormone receptor signaling pathway [GO:0030518]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; retinoic acid receptor signaling pathway [GO:0048384] -P62633 reviewed CNBP_HUMAN CCHC-type zinc finger nucleic acid binding protein (Cellular nucleic acid-binding protein) (CNBP) (Zinc finger protein 9) CNBP RNF163 ZNF9 cholesterol homeostasis [GO:0042632]; G-quadruplex DNA formation [GO:0071919]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cytoplasmic translation [GO:2000767]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355] -P63098 reviewed CANB1_HUMAN Calcineurin subunit B type 1 (Protein phosphatase 2B regulatory subunit 1) (Protein phosphatase 3 regulatory subunit B alpha isoform 1) PPP3R1 CNA2 CNB branching involved in blood vessel morphogenesis [GO:0001569]; calcineurin-mediated signaling [GO:0097720]; calcineurin-NFAT signaling cascade [GO:0033173]; epithelial to mesenchymal transition [GO:0001837]; heart development [GO:0007507]; lung epithelial cell differentiation [GO:0060487]; myelination in peripheral nervous system [GO:0022011]; negative regulation of calcium ion import across plasma membrane [GO:1905949]; positive regulation of calcineurin-NFAT signaling cascade [GO:0070886]; positive regulation of calcium ion import across plasma membrane [GO:1905665]; positive regulation of transcription by RNA polymerase II [GO:0045944]; postsynaptic modulation of chemical synaptic transmission [GO:0099170]; protein import into nucleus [GO:0006606]; regulation of postsynaptic neurotransmitter receptor internalization [GO:0099149]; regulation of synaptic vesicle cycle [GO:0098693] -P63241 reviewed IF5A1_HUMAN Eukaryotic translation initiation factor 5A-1 (eIF-5A-1) (eIF-5A1) (Eukaryotic initiation factor 5A isoform 1) (eIF-5A) (Rev-binding factor) (eIF-4D) EIF5A cellular response to virus [GO:0098586]; positive regulation of intrinsic apoptotic signaling pathway by p53 class mediator [GO:1902255]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of translational elongation [GO:0045901]; positive regulation of translational termination [GO:0045905]; translational elongation [GO:0006414]; tumor necrosis factor-mediated signaling pathway [GO:0033209] -P63272 reviewed SPT4H_HUMAN Transcription elongation factor SPT4 (hSPT4) (DRB sensitivity-inducing factor 14 kDa subunit) (DSIF p14) (DRB sensitivity-inducing factor small subunit) (DSIF small subunit) SUPT4H1 SPT4H SUPT4H negative regulation of DNA-templated transcription, elongation [GO:0032785]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transcription elongation by RNA polymerase II [GO:0034244]; positive regulation of DNA-templated transcription, elongation [GO:0032786]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription elongation by RNA polymerase II [GO:0034243]; transcription elongation by RNA polymerase II [GO:0006368]; transcription elongation-coupled chromatin remodeling [GO:0140673] -P67809 reviewed YBOX1_HUMAN Y-box-binding protein 1 (YB-1) (CCAAT-binding transcription factor I subunit A) (CBF-A) (DNA-binding protein B) (DBPB) (Enhancer factor I subunit A) (EFI-A) (Nuclease-sensitive element-binding protein 1) (Y-box transcription factor) YBX1 NSEP1 YB1 cellular response to interleukin-7 [GO:0098761]; CRD-mediated mRNA stabilization [GO:0070934]; embryonic morphogenesis [GO:0048598]; epidermis development [GO:0008544]; in utero embryonic development [GO:0001701]; miRNA transport [GO:1990428]; mRNA processing [GO:0006397]; mRNA stabilization [GO:0048255]; negative regulation of cellular senescence [GO:2000773]; negative regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay [GO:1900152]; negative regulation of striated muscle cell differentiation [GO:0051154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of translation [GO:0017148]; positive regulation of cell division [GO:0051781]; positive regulation of cytoplasmic translation [GO:2000767]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to cytoplasmic stress granule [GO:1903608]; regulation of DNA-templated transcription [GO:0006355]; regulation of gene expression [GO:0010468]; RNA splicing [GO:0008380]; RNA transport [GO:0050658]; tRNA transport [GO:0051031] -P78317 reviewed RNF4_HUMAN E3 ubiquitin-protein ligase RNF4 (EC 2.3.2.27) (RING finger protein 4) (Small nuclear ring finger protein) (Protein SNURF) RNF4 SNURF RES4-26 negative regulation of protein localization to chromatin [GO:0120186]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; protein autoubiquitination [GO:0051865]; protein K11-linked ubiquitination [GO:0070979]; protein K48-linked ubiquitination [GO:0070936]; protein K6-linked ubiquitination [GO:0085020]; protein K63-linked ubiquitination [GO:0070534]; regulation of kinetochore assembly [GO:0090234]; regulation of spindle assembly [GO:0090169]; response to arsenic-containing substance [GO:0046685] -P78337 reviewed PITX1_HUMAN Pituitary homeobox 1 (Hindlimb-expressed homeobox protein backfoot) (Homeobox protein PITX1) (Paired-like homeodomain transcription factor 1) PITX1 BFT PTX1 anatomical structure morphogenesis [GO:0009653]; branchiomeric skeletal muscle development [GO:0014707]; cartilage development [GO:0051216]; embryonic hindlimb morphogenesis [GO:0035116]; myoblast fate commitment [GO:0048625]; negative regulation of DNA-templated transcription [GO:0045892]; pituitary gland development [GO:0021983]; regulation of transcription by RNA polymerase II [GO:0006357]; skeletal system development [GO:0001501] -P78347 reviewed GTF2I_HUMAN General transcription factor II-I (GTFII-I) (TFII-I) (Bruton tyrosine kinase-associated protein 135) (BAP-135) (BTK-associated protein 135) (SRF-Phox1-interacting protein) (SPIN) (Williams-Beuren syndrome chromosomal region 6 protein) GTF2I BAP135 WBSCR6 negative regulation of angiogenesis [GO:0016525]; positive regulation of transcription by RNA polymerase II [GO:0045944]; transcription by RNA polymerase II [GO:0006366] -P78412 reviewed IRX6_HUMAN Iroquois-class homeodomain protein IRX-6 (Homeodomain protein IRXB3) (Iroquois homeobox protein 6) IRX6 IRX7 IRXB3 cell development [GO:0048468]; neuron differentiation [GO:0030182]; positive regulation of DNA-templated transcription [GO:0045893]; regulation of transcription by RNA polymerase II [GO:0006357] -P78415 reviewed IRX3_HUMAN Iroquois-class homeodomain protein IRX-3 (Homeodomain protein IRXB1) (Iroquois homeobox protein 3) IRX3 IRXB1 atrioventricular bundle cell differentiation [GO:0003167]; cell development [GO:0048468]; energy homeostasis [GO:0097009]; His-Purkinje system cell differentiation [GO:0060932]; mesoderm development [GO:0007498]; metanephros development [GO:0001656]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron differentiation [GO:0030182]; positive regulation of gap junction assembly [GO:1903598]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of transcription by RNA polymerase II [GO:0045944]; Purkinje myocyte development [GO:0003165]; regulation of cell communication by electrical coupling involved in cardiac conduction [GO:1901844]; regulation of transcription by RNA polymerase II [GO:0006357]; specification of loop of Henle identity [GO:0072086] -P78423 reviewed X3CL1_HUMAN Fractalkine (C-X3-C motif chemokine 1) (CX3C membrane-anchored chemokine) (Neurotactin) (Small-inducible cytokine D1) [Cleaved into: Processed fractalkine] CX3CL1 FKN NTT SCYD1 A-152E5.2 angiogenesis involved in wound healing [GO:0060055]; antimicrobial humoral immune response mediated by antimicrobial peptide [GO:0061844]; autocrine signaling [GO:0035425]; cell adhesion [GO:0007155]; cell chemotaxis [GO:0060326]; cell-cell adhesion [GO:0098609]; cell-cell signaling [GO:0007267]; chemokine-mediated signaling pathway [GO:0070098]; chemotaxis [GO:0006935]; cytokine-mediated signaling pathway [GO:0019221]; defense response [GO:0006952]; eosinophil chemotaxis [GO:0048245]; extrinsic apoptotic signaling pathway in absence of ligand [GO:0097192]; G protein-coupled receptor signaling pathway [GO:0007186]; immune response [GO:0006955]; inflammatory response [GO:0006954]; integrin activation [GO:0033622]; leukocyte adhesive activation [GO:0050902]; leukocyte chemotaxis [GO:0030595]; leukocyte migration involved in inflammatory response [GO:0002523]; lymphocyte chemotaxis [GO:0048247]; microglial cell activation [GO:0001774]; microglial cell proliferation [GO:0061518]; negative regulation of apoptotic process [GO:0043066]; negative regulation of apoptotic signaling pathway [GO:2001234]; negative regulation of cell migration [GO:0030336]; negative regulation of cell-substrate adhesion [GO:0010812]; negative regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001240]; negative regulation of glutamate receptor signaling pathway [GO:1900450]; negative regulation of hippocampal neuron apoptotic process [GO:0110091]; negative regulation of interleukin-1 alpha production [GO:0032690]; negative regulation of interleukin-1 beta production [GO:0032691]; negative regulation of interleukin-6 production [GO:0032715]; negative regulation of microglial cell activation [GO:1903979]; negative regulation of neuron migration [GO:2001223]; negative regulation of tumor necrosis factor production [GO:0032720]; neuron cellular homeostasis [GO:0070050]; neuron remodeling [GO:0016322]; neutrophil chemotaxis [GO:0030593]; positive chemotaxis [GO:0050918]; positive regulation of actin filament bundle assembly [GO:0032233]; positive regulation of calcium-independent cell-cell adhesion [GO:0051041]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cell-matrix adhesion [GO:0001954]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of I-kappaB phosphorylation [GO:1903721]; positive regulation of inflammatory response [GO:0050729]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of microglial cell migration [GO:1904141]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of neuron projection development [GO:0010976]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of release of sequestered calcium ion into cytosol [GO:0051281]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta1 production [GO:0032914]; regulation of lipopolysaccharide-mediated signaling pathway [GO:0031664]; regulation of neurogenesis [GO:0050767]; regulation of synaptic plasticity [GO:0048167]; response to ischemia [GO:0002931]; synapse pruning [GO:0098883] -P78426 reviewed NKX61_HUMAN Homeobox protein Nkx-6.1 (Homeobox protein NK-6 homolog A) NKX6-1 NKX6A animal organ morphogenesis [GO:0009887]; cell differentiation [GO:0030154]; cellular response to cytokine stimulus [GO:0071345]; cellular response to peptide hormone stimulus [GO:0071375]; central nervous system neuron differentiation [GO:0021953]; glucose mediated signaling pathway [GO:0010255]; negative regulation of oligodendrocyte differentiation [GO:0048715]; negative regulation of transcription by RNA polymerase II [GO:0000122]; oligodendrocyte differentiation [GO:0048709]; pancreas development [GO:0031016]; pancreatic A cell differentiation [GO:0003310]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of insulin secretion [GO:0032024]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of oligodendrocyte differentiation [GO:0048714]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type B pancreatic cell development [GO:2000078]; regulation of axon extension [GO:0030516]; regulation of neuron migration [GO:2001222]; regulation of transcription by RNA polymerase II [GO:0006357]; response to nicotine [GO:0035094]; response to xenobiotic stimulus [GO:0009410]; smoothened signaling pathway [GO:0007224]; transcription by RNA polymerase II [GO:0006366]; type B pancreatic cell maturation [GO:0072560]; type B pancreatic cell proliferation [GO:0044342] -P78504 reviewed JAG1_HUMAN Protein jagged-1 (Jagged1) (hJ1) (CD antigen CD339) JAG1 JAGL1 angiogenesis [GO:0001525]; aorta morphogenesis [GO:0035909]; aortic valve morphogenesis [GO:0003180]; blood vessel remodeling [GO:0001974]; cardiac neural crest cell development involved in outflow tract morphogenesis [GO:0061309]; cardiac right ventricle morphogenesis [GO:0003215]; cardiac septum morphogenesis [GO:0060411]; cell fate determination [GO:0001709]; ciliary body morphogenesis [GO:0061073]; distal tubule development [GO:0072017]; endocardial cushion cell development [GO:0061444]; endothelial cell differentiation [GO:0045446]; hemopoiesis [GO:0030097]; inhibition of neuroepithelial cell differentiation [GO:0002085]; inner ear auditory receptor cell differentiation [GO:0042491]; keratinocyte differentiation [GO:0030216]; loop of Henle development [GO:0072070]; morphogenesis of an epithelial sheet [GO:0002011]; myoblast differentiation [GO:0045445]; negative regulation of cell migration [GO:0030336]; negative regulation of cell-cell adhesion [GO:0022408]; negative regulation of cell-matrix adhesion [GO:0001953]; negative regulation of endothelial cell differentiation [GO:0045602]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of stem cell differentiation [GO:2000737]; nephron development [GO:0072006]; nervous system development [GO:0007399]; neuroendocrine cell differentiation [GO:0061101]; neuronal stem cell population maintenance [GO:0097150]; Notch signaling pathway [GO:0007219]; podocyte development [GO:0072015]; positive regulation of cardiac epithelial to mesenchymal transition [GO:0062043]; positive regulation of myeloid cell differentiation [GO:0045639]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of transcription by RNA polymerase II [GO:0045944]; pulmonary artery morphogenesis [GO:0061156]; pulmonary valve morphogenesis [GO:0003184]; regulation of cell population proliferation [GO:0042127]; regulation of epithelial cell proliferation [GO:0050678]; regulation of reproductive process [GO:2000241]; response to muramyl dipeptide [GO:0032495]; T cell mediated immunity [GO:0002456] -P78527 reviewed PRKDC_HUMAN DNA-dependent protein kinase catalytic subunit (DNA-PK catalytic subunit) (DNA-PKcs) (EC 2.7.11.1) (DNPK1) (p460) PRKDC HYRC HYRC1 activation of innate immune response [GO:0002218]; B cell lineage commitment [GO:0002326]; brain development [GO:0007420]; cellular response to insulin stimulus [GO:0032869]; DNA damage response [GO:0006974]; double-strand break repair [GO:0006302]; double-strand break repair via alternative nonhomologous end joining [GO:0097681]; double-strand break repair via nonhomologous end joining [GO:0006303]; ectopic germ cell programmed cell death [GO:0035234]; heart development [GO:0007507]; immature B cell differentiation [GO:0002327]; immunoglobulin V(D)J recombination [GO:0033152]; innate immune response [GO:0045087]; intrinsic apoptotic signaling pathway in response to DNA damage [GO:0008630]; maturation of 5.8S rRNA [GO:0000460]; mitotic G1 DNA damage checkpoint signaling [GO:0031571]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cGAS/STING signaling pathway [GO:0160049]; negative regulation of protein phosphorylation [GO:0001933]; peptidyl-serine phosphorylation [GO:0018105]; peptidyl-threonine phosphorylation [GO:0018107]; positive regulation of apoptotic process [GO:0043065]; positive regulation of double-strand break repair via nonhomologous end joining [GO:2001034]; positive regulation of erythrocyte differentiation [GO:0045648]; positive regulation of lymphocyte differentiation [GO:0045621]; positive regulation of platelet formation [GO:1905221]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of translation [GO:0045727]; pro-B cell differentiation [GO:0002328]; protein destabilization [GO:0031648]; protein modification process [GO:0036211]; protein phosphorylation [GO:0006468]; regulation of circadian rhythm [GO:0042752]; regulation of epithelial cell proliferation [GO:0050678]; regulation of hematopoietic stem cell differentiation [GO:1902036]; regulation of smooth muscle cell proliferation [GO:0048660]; response to gamma radiation [GO:0010332]; rhythmic process [GO:0048511]; small-subunit processome assembly [GO:0034462]; somitogenesis [GO:0001756]; T cell differentiation in thymus [GO:0033077]; T cell lineage commitment [GO:0002360]; T cell receptor V(D)J recombination [GO:0033153]; telomere capping [GO:0016233]; telomere maintenance [GO:0000723] -P78545 reviewed ELF3_HUMAN ETS-related transcription factor Elf-3 (E74-like factor 3) (Epithelial-restricted with serine box) (Epithelium-restricted Ets protein ESX) (Epithelium-specific Ets transcription factor 1) (ESE-1) ELF3 ERT ESX JEN blastocyst development [GO:0001824]; cell differentiation [GO:0030154]; extracellular matrix organization [GO:0030198]; inflammatory response [GO:0006954]; mammary gland involution [GO:0060056]; negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -P81172 reviewed HEPC_HUMAN Hepcidin (Liver-expressed antimicrobial peptide 1) (LEAP-1) (Putative liver tumor regressor) (PLTR) [Cleaved into: Hepcidin-25 (Hepc25); Hepcidin-20 (Hepc20)] HAMP HEPC LEAP1 UNQ487/PRO1003 cell surface receptor signaling pathway via JAK-STAT [GO:0007259]; defense response to bacterium [GO:0042742]; defense response to fungus [GO:0050832]; establishment of localization in cell [GO:0051649]; immune response [GO:0006955]; inflammatory response [GO:0006954]; intracellular iron ion homeostasis [GO:0006879]; iron ion transmembrane transport [GO:0034755]; killing of cells of another organism [GO:0031640]; macrophage activation [GO:0042116]; multicellular organismal-level iron ion homeostasis [GO:0060586]; myeloid cell homeostasis [GO:0002262]; negative regulation of bone resorption [GO:0045779]; negative regulation of inflammatory response [GO:0050728]; negative regulation of intestinal absorption [GO:1904479]; negative regulation of iron ion transmembrane transport [GO:0034760]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of macrophage activation [GO:0043032]; positive regulation of protein catabolic process [GO:0045732]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein catabolic process [GO:0030163]; response to iron ion [GO:0010039]; transcription by RNA polymerase II [GO:0006366] -P82094 reviewed TMF1_HUMAN TATA element modulatory factor (TMF) (Androgen receptor coactivator 160 kDa protein) (Androgen receptor-associated protein of 160 kDa) TMF1 ARA160 acrosome assembly [GO:0001675]; androgen receptor signaling pathway [GO:0030521]; defense response to bacterium [GO:0042742]; epithelial cell apoptotic process [GO:1904019]; flagellated sperm motility [GO:0030317]; Leydig cell differentiation [GO:0033327]; luteinizing hormone secretion [GO:0032275]; negative regulation of epithelial cell apoptotic process [GO:1904036]; negative regulation of gene expression [GO:0010629]; positive regulation of cytokine production [GO:0001819]; positive regulation of testosterone secretion [GO:2000845]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of proteasomal protein catabolic process [GO:0061136]; spermatid nucleus differentiation [GO:0007289] -P84022 reviewed SMAD3_HUMAN Mothers against decapentaplegic homolog 3 (MAD homolog 3) (Mad3) (Mothers against DPP homolog 3) (hMAD-3) (JV15-2) (SMAD family member 3) (SMAD 3) (Smad3) (hSMAD3) SMAD3 MADH3 activation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0006919]; activin receptor signaling pathway [GO:0032924]; adrenal gland development [GO:0030325]; anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; cell population proliferation [GO:0008283]; cell-cell junction organization [GO:0045216]; cellular response to glucose stimulus [GO:0071333]; cellular response to transforming growth factor beta stimulus [GO:0071560]; cellular response to virus [GO:0098586]; developmental growth [GO:0048589]; embryonic cranial skeleton morphogenesis [GO:0048701]; embryonic foregut morphogenesis [GO:0048617]; embryonic pattern specification [GO:0009880]; endoderm development [GO:0007492]; extrinsic apoptotic signaling pathway [GO:0097191]; heart looping [GO:0001947]; immune response [GO:0006955]; immune system development [GO:0002520]; in utero embryonic development [GO:0001701]; JNK cascade [GO:0007254]; lens fiber cell differentiation [GO:0070306]; liver development [GO:0001889]; mesoderm formation [GO:0001707]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cardiac muscle hypertrophy in response to stress [GO:1903243]; negative regulation of cell growth [GO:0030308]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of cytosolic calcium ion concentration [GO:0051481]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of gene expression [GO:0010629]; negative regulation of inflammatory response [GO:0050728]; negative regulation of lung blood pressure [GO:0061767]; negative regulation of miRNA transcription [GO:1902894]; negative regulation of osteoblast differentiation [GO:0045668]; negative regulation of osteoblast proliferation [GO:0033689]; negative regulation of protein catabolic process [GO:0042177]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of wound healing [GO:0061045]; nodal signaling pathway [GO:0038092]; osteoblast development [GO:0002076]; paraxial mesoderm morphogenesis [GO:0048340]; pericardium development [GO:0060039]; positive regulation of bone mineralization [GO:0030501]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of cell migration [GO:0030335]; positive regulation of chondrocyte differentiation [GO:0032332]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of extracellular matrix assembly [GO:1901203]; positive regulation of focal adhesion assembly [GO:0051894]; positive regulation of gene expression [GO:0010628]; positive regulation of interleukin-1 beta production [GO:0032731]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of nitric oxide biosynthetic process [GO:0045429]; positive regulation of positive chemotaxis [GO:0050927]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of stress fiber assembly [GO:0051496]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta3 production [GO:0032916]; primary miRNA processing [GO:0031053]; protein stabilization [GO:0050821]; regulation of DNA-templated transcription [GO:0006355]; regulation of epithelial cell proliferation [GO:0050678]; regulation of immune response [GO:0050776]; regulation of miRNA transcription [GO:1902893]; regulation of striated muscle tissue development [GO:0016202]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of transforming growth factor beta receptor signaling pathway [GO:0017015]; regulation of transforming growth factor beta2 production [GO:0032909]; response to angiotensin [GO:1990776]; response to hypoxia [GO:0001666]; signal transduction involved in regulation of gene expression [GO:0023019]; SMAD protein signal transduction [GO:0060395]; somitogenesis [GO:0001756]; T cell activation [GO:0042110]; thyroid gland development [GO:0030878]; transdifferentiation [GO:0060290]; transforming growth factor beta receptor signaling pathway [GO:0007179]; ureteric bud development [GO:0001657]; wound healing [GO:0042060] -P98082 reviewed DAB2_HUMAN Disabled homolog 2 (Adaptor molecule disabled-2) (Differentially expressed in ovarian carcinoma 2) (DOC-2) (Differentially-expressed protein 2) DAB2 DOC2 apoptotic process [GO:0006915]; cellular response to epidermal growth factor stimulus [GO:0071364]; clathrin coat assembly [GO:0048268]; leading edge cell differentiation [GO:0035026]; negative regulation of androgen receptor signaling pathway [GO:0060766]; negative regulation of apoptotic process [GO:0043066]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cell growth [GO:0030308]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of ERK1 and ERK2 cascade [GO:0070373]; negative regulation of neuron projection development [GO:0010977]; negative regulation of protein binding [GO:0032091]; negative regulation of protein localization to plasma membrane [GO:1903077]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of aldosterone biosynthetic process [GO:0032349]; positive regulation of aldosterone secretion [GO:2000860]; positive regulation of cell migration [GO:0030335]; positive regulation of clathrin-dependent endocytosis [GO:2000370]; positive regulation of early endosome to late endosome transport [GO:2000643]; positive regulation of endocytosis [GO:0045807]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032436]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of substrate adhesion-dependent cell spreading [GO:1900026]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of Wnt signaling pathway, planar cell polarity pathway [GO:2000096]; protein transport [GO:0015031]; receptor-mediated endocytosis [GO:0006898]; response to salt [GO:1902074]; response to steroid hormone [GO:0048545]; transforming growth factor beta receptor signaling pathway [GO:0007179]; Wnt signaling pathway [GO:0016055] -P98161 reviewed PKD1_HUMAN Polycystin-1 (PC1) (Autosomal dominant polycystic kidney disease 1 protein) PKD1 anatomical structure morphogenesis [GO:0009653]; branching morphogenesis of an epithelial tube [GO:0048754]; calcium ion transmembrane transport [GO:0070588]; calcium ion transport [GO:0006816]; calcium-independent cell-matrix adhesion [GO:0007161]; cartilage condensation [GO:0001502]; cartilage development [GO:0051216]; cell surface receptor signaling pathway [GO:0007166]; cell surface receptor signaling pathway via JAK-STAT [GO:0007259]; cell-matrix adhesion [GO:0007160]; detection of mechanical stimulus [GO:0050982]; digestive tract development [GO:0048565]; embryonic placenta development [GO:0001892]; establishment of epithelial cell polarity [GO:0090162]; genitalia development [GO:0048806]; heart development [GO:0007507]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; in utero embryonic development [GO:0001701]; kidney development [GO:0001822]; liver development [GO:0001889]; lung epithelium development [GO:0060428]; lymph vessel morphogenesis [GO:0036303]; mesonephric duct development [GO:0072177]; mesonephric tubule development [GO:0072164]; metanephric ascending thin limb development [GO:0072218]; metanephric collecting duct development [GO:0072205]; metanephric distal tubule morphogenesis [GO:0072287]; metanephric proximal tubule development [GO:0072237]; mitocytosis [GO:0160040]; neural tube development [GO:0021915]; peptidyl-serine phosphorylation [GO:0018105]; placenta blood vessel development [GO:0060674]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein export from nucleus [GO:0006611]; protein heterotetramerization [GO:0051290]; regulation of cell adhesion [GO:0030155]; regulation of cell cycle [GO:0051726]; regulation of G1/S transition of mitotic cell cycle [GO:2000045]; regulation of mitotic spindle organization [GO:0060236]; regulation of proteasomal protein catabolic process [GO:0061136]; response to fluid shear stress [GO:0034405]; skin development [GO:0043588]; spinal cord development [GO:0021510] -P98177 reviewed FOXO4_HUMAN Forkhead box protein O4 (Fork head domain transcription factor AFX1) FOXO4 AFX AFX1 MLLT7 insulin receptor signaling pathway [GO:0008286]; mitotic G2 DNA damage checkpoint signaling [GO:0007095]; muscle organ development [GO:0007517]; negative regulation of angiogenesis [GO:0016525]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of G0 to G1 transition [GO:0070317]; negative regulation of smooth muscle cell differentiation [GO:0051151]; positive regulation of smooth muscle cell migration [GO:0014911]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; response to nutrient levels [GO:0031667]; response to oxidative stress [GO:0006979]; response to water-immersion restraint stress [GO:1990785]; stem cell differentiation [GO:0048863] -Q00056 reviewed HXA4_HUMAN Homeobox protein Hox-A4 (Homeobox protein Hox-1.4) (Homeobox protein Hox-1D) HOXA4 HOX1D anatomical structure morphogenesis [GO:0009653]; anterior/posterior pattern specification [GO:0009952]; embryonic skeletal system morphogenesis [GO:0048704]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q00613 reviewed HSF1_HUMAN Heat shock factor protein 1 (HSF 1) (Heat shock transcription factor 1) (HSTF 1) HSF1 HSTF1 cellular response to angiotensin [GO:1904385]; cellular response to cadmium ion [GO:0071276]; cellular response to copper ion [GO:0071280]; cellular response to diamide [GO:0072738]; cellular response to estradiol stimulus [GO:0071392]; cellular response to gamma radiation [GO:0071480]; cellular response to heat [GO:0034605]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to L-glutamine [GO:1904845]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to nitroglycerin [GO:1904843]; cellular response to potassium ion [GO:0035865]; cellular response to sodium arsenite [GO:1903936]; cellular response to unfolded protein [GO:0034620]; cellular response to xenobiotic stimulus [GO:0071466]; defense response [GO:0006952]; DNA repair [GO:0006281]; MAPK cascade [GO:0000165]; mRNA processing [GO:0006397]; mRNA transport [GO:0051028]; negative regulation of cardiac muscle cell apoptotic process [GO:0010667]; negative regulation of double-strand break repair via nonhomologous end joining [GO:2001033]; negative regulation of gene expression [GO:0010629]; negative regulation of inclusion body assembly [GO:0090084]; negative regulation of protein-containing complex assembly [GO:0031333]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of apoptotic DNA fragmentation [GO:1902512]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of gene expression [GO:0010628]; positive regulation of inclusion body assembly [GO:0090261]; positive regulation of macrophage differentiation [GO:0045651]; positive regulation of mitotic cell cycle [GO:0045931]; positive regulation of stress granule assembly [GO:0062029]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; protein-containing complex assembly [GO:0065003]; regulation of cellular response to heat [GO:1900034]; regulation of transcription by RNA polymerase II [GO:0006357]; response to activity [GO:0014823]; response to hypobaric hypoxia [GO:1990910]; response to nutrient [GO:0007584]; response to peptide [GO:1901652]; response to psychosocial stress [GO:1990911]; response to testosterone [GO:0033574] -Q00653 reviewed NFKB2_HUMAN Nuclear factor NF-kappa-B p100 subunit (DNA-binding factor KBF2) (H2TF1) (Lymphocyte translocation chromosome 10 protein) (Nuclear factor of kappa light polypeptide gene enhancer in B-cells 2) (Oncogene Lyt-10) (Lyt10) [Cleaved into: Nuclear factor NF-kappa-B p52 subunit] NFKB2 LYT10 canonical NF-kappaB signal transduction [GO:0007249]; extracellular matrix organization [GO:0030198]; follicular dendritic cell differentiation [GO:0002268]; germinal center formation [GO:0002467]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; non-canonical NF-kappaB signal transduction [GO:0038061]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; response to cytokine [GO:0034097]; response to lipopolysaccharide [GO:0032496]; rhythmic process [GO:0048511]; spleen development [GO:0048536] -Q00839 reviewed HNRPU_HUMAN Heterogeneous nuclear ribonucleoprotein U (hnRNP U) (GRIP120) (Nuclear p120 ribonucleoprotein) (Scaffold-attachment factor A) (SAF-A) (p120) (pp120) HNRNPU C1orf199 HNRPU SAFA U21.1 adaptive thermogenesis [GO:1990845]; cardiac muscle cell development [GO:0055013]; cell division [GO:0051301]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to leukemia inhibitory factor [GO:1990830]; chromatin organization [GO:0006325]; circadian regulation of gene expression [GO:0032922]; CRD-mediated mRNA stabilization [GO:0070934]; dendritic transport of messenger ribonucleoprotein complex [GO:0098963]; dosage compensation by inactivation of X chromosome [GO:0009048]; maintenance of protein location in nucleus [GO:0051457]; mRNA splicing, via spliceosome [GO:0000398]; mRNA stabilization [GO:0048255]; negative regulation of kinase activity [GO:0033673]; negative regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay [GO:1900152]; negative regulation of stem cell differentiation [GO:2000737]; negative regulation of telomere maintenance via telomerase [GO:0032211]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transcription elongation by RNA polymerase II [GO:0034244]; osteoblast differentiation [GO:0001649]; positive regulation of attachment of mitotic spindle microtubules to kinetochore [GO:1902425]; positive regulation of brown fat cell differentiation [GO:0090336]; positive regulation of cytoplasmic translation [GO:2000767]; positive regulation of DNA topoisomerase (ATP-hydrolyzing) activity [GO:2000373]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to spindle microtubule [GO:1902889]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; regulation of chromatin organization [GO:1902275]; regulation of mitotic cell cycle [GO:0007346]; regulation of mitotic spindle assembly [GO:1901673]; RNA localization to chromatin [GO:1990280]; RNA processing [GO:0006396] -Q00978 reviewed IRF9_HUMAN Interferon regulatory factor 9 (IRF-9) (IFN-alpha-responsive transcription factor subunit) (ISGF3 p48 subunit) (Interferon-stimulated gene factor 3 gamma) (ISGF-3 gamma) (Transcriptional regulator ISGF3 subunit gamma) IRF9 ISGF3G cell surface receptor signaling pathway [GO:0007166]; defense response to virus [GO:0051607]; immune system process [GO:0002376]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription by RNA polymerase II [GO:0006366] -Q01094 reviewed E2F1_HUMAN Transcription factor E2F1 (E2F-1) (PBR3) (Retinoblastoma-associated protein 1) (RBAP-1) (Retinoblastoma-binding protein 3) (RBBP-3) (pRB-binding protein E2F-1) E2F1 RBBP3 anoikis [GO:0043276]; cellular response to xenobiotic stimulus [GO:0071466]; DNA damage checkpoint signaling [GO:0000077]; DNA-templated transcription [GO:0006351]; forebrain development [GO:0030900]; intrinsic apoptotic signaling pathway by p53 class mediator [GO:0072332]; intrinsic apoptotic signaling pathway in response to DNA damage [GO:0008630]; lens fiber cell apoptotic process [GO:1990086]; mRNA stabilization [GO:0048255]; negative regulation of DNA binding [GO:0043392]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of fat cell proliferation [GO:0070345]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of apoptotic process [GO:0043065]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of G1/S transition of mitotic cell cycle [GO:2000045]; regulation of transcription by RNA polymerase II [GO:0006357] -Q01167 reviewed FOXK2_HUMAN Forkhead box protein K2 (G/T-mismatch specific binding protein) (nGTBP) (Interleukin enhancer-binding factor 1) FOXK2 ILF ILF1 canonical glycolysis [GO:0061621]; intracellular glucose homeostasis [GO:0001678]; negative regulation of autophagy [GO:0010507]; negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of glucose metabolic process [GO:0010906]; regulation of transcription by RNA polymerase II [GO:0006357]; response to starvation [GO:0042594] -Q01196 reviewed RUNX1_HUMAN Runt-related transcription factor 1 (Acute myeloid leukemia 1 protein) (Core-binding factor subunit alpha-2) (CBF-alpha-2) (Oncogene AML-1) (Polyomavirus enhancer-binding protein 2 alpha B subunit) (PEA2-alpha B) (PEBP2-alpha B) (SL3-3 enhancer factor 1 alpha B subunit) (SL3/AKV core-binding factor alpha B subunit) RUNX1 AML1 CBFA2 cardiac muscle tissue regeneration [GO:0061026]; chondrocyte differentiation [GO:0002062]; hematopoietic stem cell proliferation [GO:0071425]; hemopoiesis [GO:0030097]; myeloid cell differentiation [GO:0030099]; myeloid leukocyte differentiation [GO:0002573]; negative regulation of CD4-positive, alpha-beta T cell differentiation [GO:0043371]; negative regulation of granulocyte differentiation [GO:0030853]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron differentiation [GO:0030182]; ossification [GO:0001503]; peripheral nervous system neuron development [GO:0048935]; positive regulation of angiogenesis [GO:0045766]; positive regulation of CD8-positive, alpha-beta T cell differentiation [GO:0043378]; positive regulation of collagen biosynthetic process [GO:0032967]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of extracellular matrix organization [GO:1903055]; positive regulation of granulocyte differentiation [GO:0030854]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cardiac muscle cell proliferation [GO:0060043]; regulation of cell differentiation [GO:0045595]; regulation of connective tissue replacement [GO:1905203]; regulation of plasminogen activation [GO:0010755]; regulation of transcription by RNA polymerase II [GO:0006357] -Q01201 reviewed RELB_HUMAN Transcription factor RelB (I-Rel) RELB antigen processing and presentation [GO:0019882]; canonical NF-kappaB signal transduction [GO:0007249]; cellular response to osmotic stress [GO:0071470]; circadian regulation of gene expression [GO:0032922]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; lymphocyte differentiation [GO:0030098]; myeloid dendritic cell differentiation [GO:0043011]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of interferon-beta production [GO:0032688]; non-canonical NF-kappaB signal transduction [GO:0038061]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to cytokine [GO:0034097]; T-helper 1 cell differentiation [GO:0045063] -Q01543 reviewed FLI1_HUMAN Friend leukemia integration 1 transcription factor (Proto-oncogene Fli-1) (Transcription factor ERGB) FLI1 animal organ morphogenesis [GO:0009887]; blood circulation [GO:0008015]; hemostasis [GO:0007599]; megakaryocyte development [GO:0035855]; positive regulation of DNA-templated transcription [GO:0045893]; regulation of transcription by RNA polymerase II [GO:0006357] -Q01664 reviewed TFAP4_HUMAN Transcription factor AP-4 (Activating enhancer-binding protein 4) (Class C basic helix-loop-helix protein 41) (bHLHc41) TFAP4 BHLHC41 cellular response to dexamethasone stimulus [GO:0071549]; DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator [GO:0006978]; negative regulation by host of viral transcription [GO:0043922]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0045736]; negative regulation of DNA binding [GO:0043392]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of gene expression [GO:0010629]; positive regulation by host of viral transcription [GO:0043923]; positive regulation of apoptotic process [GO:0043065]; positive regulation of DNA-templated transcription [GO:0045893]; protein-containing complex assembly [GO:0065003]; regulation of mitotic cell cycle phase transition [GO:1901990]; regulation of transcription by RNA polymerase II [GO:0006357] -Q01726 reviewed MSHR_HUMAN Melanocyte-stimulating hormone receptor (MSH-R) (Melanocortin receptor 1) (MC1-R) MC1R MSHR adenylate cyclase-activating G protein-coupled receptor signaling pathway [GO:0007189]; G protein-coupled receptor signaling pathway, coupled to cyclic nucleotide second messenger [GO:0007187]; intracellular signal transduction [GO:0035556]; melanin biosynthetic process [GO:0042438]; negative regulation of tumor necrosis factor production [GO:0032720]; pigmentation [GO:0043473]; positive regulation of feeding behavior [GO:2000253]; positive regulation of protein kinase A signaling [GO:0010739]; positive regulation of protein kinase C signaling [GO:0090037]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of metabolic process [GO:0019222]; sensory perception of pain [GO:0019233]; UV protection [GO:0009650]; UV-damage excision repair [GO:0070914] -Q01851 reviewed PO4F1_HUMAN POU domain, class 4, transcription factor 1 (Brain-specific homeobox/POU domain protein 3A) (Brain-3A) (Brn-3A) (Homeobox/POU domain protein RDC-1) (Oct-T1) POU4F1 BRN3A RDC1 axonogenesis [GO:0007409]; cell migration in hindbrain [GO:0021535]; cellular response to cytokine stimulus [GO:0071345]; cellular response to estradiol stimulus [GO:0071392]; central nervous system neuron differentiation [GO:0021953]; habenula development [GO:0021986]; heart development [GO:0007507]; innervation [GO:0060384]; intrinsic apoptotic signaling pathway by p53 class mediator [GO:0072332]; mesoderm development [GO:0007498]; negative regulation of apoptotic process [GO:0043066]; negative regulation of gene expression [GO:0010629]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of programmed cell death [GO:0043069]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron apoptotic process [GO:0051402]; neuron fate specification [GO:0048665]; neuron migration [GO:0001764]; neuron projection development [GO:0031175]; peripheral nervous system neuron development [GO:0048935]; positive regulation of gene expression [GO:0010628]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of osteoclast differentiation [GO:0045672]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription regulatory region DNA binding [GO:2000679]; proprioception involved in equilibrioception [GO:0051355]; regulation of cell cycle [GO:0051726]; regulation of DNA-binding transcription factor activity [GO:0051090]; regulation of neurogenesis [GO:0050767]; regulation of transcription by RNA polymerase II [GO:0006357]; sensory system development [GO:0048880]; suckling behavior [GO:0001967]; synapse assembly [GO:0007416]; trigeminal nerve development [GO:0021559]; ventricular compact myocardium morphogenesis [GO:0003223] -Q01860 reviewed PO5F1_HUMAN POU domain, class 5, transcription factor 1 (Octamer-binding protein 3) (Oct-3) (Octamer-binding protein 4) (Oct-4) (Octamer-binding transcription factor 3) (OTF-3) POU5F1 OCT3 OCT4 OTF3 anatomical structure morphogenesis [GO:0009653]; blastocyst development [GO:0001824]; BMP signaling pathway [GO:0030509]; cardiac cell fate determination [GO:0060913]; cell fate commitment involved in formation of primary germ layer [GO:0060795]; endodermal cell fate specification [GO:0001714]; endodermal-mesodermal cell signaling [GO:0003133]; heart induction [GO:0003129]; negative regulation of miRNA transcription [GO:1902894]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of asymmetric cell division [GO:0009786]; regulation of DNA-templated transcription [GO:0006355]; regulation of gene expression [GO:0010468]; regulation of transcription by RNA polymerase II [GO:0006357]; response to wounding [GO:0009611]; somatic stem cell population maintenance [GO:0035019] -Q01892 reviewed SPIB_HUMAN Transcription factor Spi-B SPIB positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q02078 reviewed MEF2A_HUMAN Myocyte-specific enhancer factor 2A (Serum response factor-like protein 1) MEF2A MEF2 apoptotic process [GO:0006915]; cardiac conduction [GO:0061337]; cell differentiation [GO:0030154]; cellular response to calcium ion [GO:0071277]; dendrite morphogenesis [GO:0048813]; DNA-templated transcription [GO:0006351]; ERK5 cascade [GO:0070375]; heart development [GO:0007507]; MAPK cascade [GO:0000165]; mitochondrial genome maintenance [GO:0000002]; mitochondrion distribution [GO:0048311]; muscle organ development [GO:0007517]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of cardiac muscle hypertrophy [GO:0010613]; positive regulation of gene expression [GO:0010628]; positive regulation of glucose import [GO:0046326]; positive regulation of transcription by RNA polymerase II [GO:0045944]; ventricular cardiac myofibril assembly [GO:0055005] -Q02080 reviewed MEF2B_HUMAN Myocyte-specific enhancer factor 2B (RSRFR2) (Serum response factor-like protein 2) MEF2B XMEF2 cell differentiation [GO:0030154]; heart development [GO:0007507]; muscle organ development [GO:0007517]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q02447 reviewed SP3_HUMAN Transcription factor Sp3 (SPR-2) SP3 B cell differentiation [GO:0030183]; definitive hemopoiesis [GO:0060216]; embryonic camera-type eye morphogenesis [GO:0048596]; embryonic placenta development [GO:0001892]; embryonic process involved in female pregnancy [GO:0060136]; embryonic skeletal system development [GO:0048706]; enucleate erythrocyte differentiation [GO:0043353]; granulocyte differentiation [GO:0030851]; liver development [GO:0001889]; lung development [GO:0030324]; megakaryocyte differentiation [GO:0030219]; monocyte differentiation [GO:0030224]; myeloid progenitor cell differentiation [GO:0002318]; natural killer cell differentiation [GO:0001779]; negative regulation of DNA-templated transcription [GO:0045892]; ossification [GO:0001503]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; T cell differentiation [GO:0030217]; trophectodermal cell differentiation [GO:0001829] -Q02548 reviewed PAX5_HUMAN Paired box protein Pax-5 (B-cell-specific transcription factor) (BSAP) PAX5 adult behavior [GO:0030534]; B cell differentiation [GO:0030183]; cerebral cortex development [GO:0021987]; embryonic cranial skeleton morphogenesis [GO:0048701]; lateral ventricle development [GO:0021670]; negative regulation of transcription by RNA polymerase II [GO:0000122]; regulation of transcription by RNA polymerase II [GO:0006357]; skeletal muscle cell differentiation [GO:0035914]; spermatogenesis [GO:0007283]; transcription by RNA polymerase II [GO:0006366] -Q02556 reviewed IRF8_HUMAN Interferon regulatory factor 8 (IRF-8) (Interferon consensus sequence-binding protein) (H-ICSBP) (ICSBP) IRF8 ICSBP1 autophagy [GO:0006914]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to type II interferon [GO:0071346]; defense response to bacterium [GO:0042742]; defense response to protozoan [GO:0042832]; dendritic cell differentiation [GO:0097028]; follicular B cell differentiation [GO:0002316]; germinal center B cell differentiation [GO:0002314]; immune response [GO:0006955]; immune system process [GO:0002376]; myeloid cell differentiation [GO:0030099]; negative regulation of transcription by RNA polymerase II [GO:0000122]; phagocytosis [GO:0006909]; plasmacytoid dendritic cell differentiation [GO:0002273]; positive regulation of apoptotic process [GO:0043065]; positive regulation of interleukin-12 production [GO:0032735]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type II interferon production [GO:0032729]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of type I interferon production [GO:0032479] -Q02575 reviewed HEN1_HUMAN Helix-loop-helix protein 1 (HEN-1) (Class A basic helix-loop-helix protein 35) (bHLHa35) (Nescient helix loop helix 1) (NSCL-1) NHLH1 BHLHA35 HEN1 cell differentiation [GO:0030154]; central nervous system development [GO:0007417]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q02577 reviewed HEN2_HUMAN Helix-loop-helix protein 2 (HEN-2) (Class A basic helix-loop-helix protein 34) (bHLHa34) (Nescient helix loop helix 2) (NSCL-2) NHLH2 BHLHA34 HEN2 KIAA0490 apoptotic process [GO:0006915]; cell migration in hindbrain [GO:0021535]; central nervous system development [GO:0007417]; hypothalamus gonadotrophin-releasing hormone neuron development [GO:0021888]; male gonad development [GO:0008584]; male mating behavior [GO:0060179]; ovulation cycle [GO:0042698]; peripheral nervous system development [GO:0007422]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q02962 reviewed PAX2_HUMAN Paired box protein Pax-2 PAX2 axonogenesis [GO:0007409]; brain morphogenesis [GO:0048854]; branching involved in ureteric bud morphogenesis [GO:0001658]; camera-type eye development [GO:0043010]; cell fate determination [GO:0001709]; cellular response to epidermal growth factor stimulus [GO:0071364]; cellular response to glucose stimulus [GO:0071333]; cellular response to retinoic acid [GO:0071300]; cochlea development [GO:0090102]; cochlea morphogenesis [GO:0090103]; glial cell differentiation [GO:0010001]; inner ear morphogenesis [GO:0042472]; mesenchymal to epithelial transition [GO:0060231]; mesenchymal to epithelial transition involved in metanephros morphogenesis [GO:0003337]; mesodermal cell fate specification [GO:0007501]; mesonephros development [GO:0001823]; metanephric collecting duct development [GO:0072205]; metanephric distal convoluted tubule development [GO:0072221]; metanephric epithelium development [GO:0072207]; metanephric mesenchymal cell differentiation [GO:0072162]; metanephric mesenchyme development [GO:0072075]; metanephric nephron tubule formation [GO:0072289]; negative regulation of apoptotic process [GO:0043066]; negative regulation of apoptotic process involved in metanephric collecting duct development [GO:1900215]; negative regulation of apoptotic process involved in metanephric nephron tubule development [GO:1900218]; negative regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043154]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis [GO:0072305]; negative regulation of mesenchymal cell apoptotic process involved in metanephros development [GO:1900212]; negative regulation of programmed cell death [GO:0043069]; negative regulation of reactive oxygen species metabolic process [GO:2000378]; nephric duct formation [GO:0072179]; neural tube closure [GO:0001843]; optic chiasma development [GO:0061360]; optic cup morphogenesis involved in camera-type eye development [GO:0002072]; optic nerve development [GO:0021554]; optic nerve morphogenesis [GO:0021631]; optic nerve structural organization [GO:0021633]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis [GO:0072108]; positive regulation of metanephric DCT cell differentiation [GO:2000594]; positive regulation of metanephric glomerulus development [GO:0072300]; positive regulation of optic nerve formation [GO:2000597]; positive regulation of transcription by RNA polymerase II [GO:0045944]; pronephric field specification [GO:0039003]; pronephros development [GO:0048793]; regulation of metanephric nephron tubule epithelial cell differentiation [GO:0072307]; regulation of metanephros size [GO:0035566]; regulation of transcription by RNA polymerase II [GO:0006357]; response to nutrient levels [GO:0031667]; retinal pigment epithelium development [GO:0003406]; stem cell differentiation [GO:0048863]; ureter development [GO:0072189]; ureter maturation [GO:0035799]; urogenital system development [GO:0001655]; vestibulocochlear nerve formation [GO:0021650]; visual perception [GO:0007601] -Q03014 reviewed HHEX_HUMAN Hematopoietically-expressed homeobox protein HHEX (Homeobox protein HEX) (Homeobox protein PRH) (Proline-rich homeodomain protein) HHEX HEX PRH PRHX anterior/posterior pattern specification [GO:0009952]; B cell differentiation [GO:0030183]; cell differentiation [GO:0030154]; DNA conformation change [GO:0071103]; mRNA export from nucleus [GO:0006406]; negative regulation of angiogenesis [GO:0016525]; negative regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0045736]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by competitive promoter binding [GO:0010944]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transcription by transcription factor localization [GO:0010621]; negative regulation of vascular endothelial growth factor receptor signaling pathway [GO:0030948]; poly(A)+ mRNA export from nucleus [GO:0016973]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of Wnt signaling pathway [GO:0030177]; protein localization to nucleus [GO:0034504]; regulation of leukocyte proliferation [GO:0070663]; regulation of transcription by RNA polymerase II [GO:0006357]; Wnt signaling pathway [GO:0016055] -Q03060 reviewed CREM_HUMAN cAMP-responsive element modulator (Inducible cAMP early repressor) (ICER) CREM cell differentiation [GO:0030154]; glycosphingolipid metabolic process [GO:0006687]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; rhythmic process [GO:0048511]; signal transduction [GO:0007165]; spermatogenesis [GO:0007283] -Q03112 reviewed MECOM_HUMAN Histone-lysine N-methyltransferase MECOM (EC 2.1.1.367) (Ecotropic virus integration site 1 protein homolog) (EVI-1) (MDS1 and EVI1 complex locus protein) (Myelodysplasia syndrome 1 protein) (Myelodysplasia syndrome-associated protein 1) MECOM EVI1 MDS1 PRDM3 apoptotic process [GO:0006915]; hematopoietic stem cell proliferation [GO:0071425]; heterochromatin organization [GO:0070828]; methylation [GO:0032259]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of JNK cascade [GO:0046329]; negative regulation of programmed cell death [GO:0043069]; positive regulation of DNA-templated transcription [GO:0045893]; regulation of cell cycle [GO:0051726]; regulation of transcription by RNA polymerase II [GO:0006357] -Q03164 reviewed KMT2A_HUMAN Histone-lysine N-methyltransferase 2A (Lysine N-methyltransferase 2A) (EC 2.1.1.364) (ALL-1) (CXXC-type zinc finger protein 7) (Cysteine methyltransferase KMT2A) (EC 2.1.1.-) (Myeloid/lymphoid or mixed-lineage leukemia) (Myeloid/lymphoid or mixed-lineage leukemia protein 1) (Trithorax-like protein) (Zinc finger protein HRX) [Cleaved into: MLL cleavage product N320 (N-terminal cleavage product of 320 kDa) (p320); MLL cleavage product C180 (C-terminal cleavage product of 180 kDa) (p180)] KMT2A ALL1 CXXC7 HRX HTRX MLL MLL1 TRX1 anterior/posterior pattern specification [GO:0009952]; apoptotic process [GO:0006915]; cellular response to transforming growth factor beta stimulus [GO:0071560]; circadian regulation of gene expression [GO:0032922]; definitive hemopoiesis [GO:0060216]; embryonic hemopoiesis [GO:0035162]; exploration behavior [GO:0035640]; fibroblast proliferation [GO:0048144]; homeostasis of number of cells within a tissue [GO:0048873]; membrane depolarization [GO:0051899]; methylation [GO:0032259]; negative regulation of DNA methylation-dependent heterochromatin formation [GO:0090310]; negative regulation of fibroblast proliferation [GO:0048147]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-embryonic development [GO:0009791]; protein modification process [GO:0036211]; protein-containing complex assembly [GO:0065003]; regulation of short-term neuronal synaptic plasticity [GO:0048172]; response to potassium ion [GO:0035864]; spleen development [GO:0048536]; T-helper 2 cell differentiation [GO:0045064]; transcription initiation-coupled chromatin remodeling [GO:0045815]; visual learning [GO:0008542] -Q03181 reviewed PPARD_HUMAN Peroxisome proliferator-activated receptor delta (PPAR-delta) (NUCI) (Nuclear hormone receptor 1) (NUC1) (Nuclear receptor subfamily 1 group C member 2) (Peroxisome proliferator-activated receptor beta) (PPAR-beta) PPARD NR1C2 PPARB adipose tissue development [GO:0060612]; apoptotic process [GO:0006915]; apoptotic signaling pathway [GO:0097190]; axon ensheathment [GO:0008366]; cell differentiation [GO:0030154]; cell population proliferation [GO:0008283]; cell-substrate adhesion [GO:0031589]; cellular response to hypoxia [GO:0071456]; cellular response to nutrient levels [GO:0031669]; cholesterol metabolic process [GO:0008203]; decidualization [GO:0046697]; embryo implantation [GO:0007566]; energy homeostasis [GO:0097009]; fat cell proliferation [GO:0070341]; fatty acid beta-oxidation [GO:0006635]; fatty acid catabolic process [GO:0009062]; fatty acid metabolic process [GO:0006631]; fatty acid transport [GO:0015908]; generation of precursor metabolites and energy [GO:0006091]; glucose metabolic process [GO:0006006]; glucose transmembrane transport [GO:1904659]; hormone-mediated signaling pathway [GO:0009755]; keratinocyte migration [GO:0051546]; keratinocyte proliferation [GO:0043616]; lipid metabolic process [GO:0006629]; negative regulation of cholesterol storage [GO:0010887]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of inflammatory response [GO:0050728]; negative regulation of miRNA transcription [GO:1902894]; negative regulation of myoblast differentiation [GO:0045662]; negative regulation of transcription by RNA polymerase II [GO:0000122]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of fat cell differentiation [GO:0045600]; positive regulation of fat cell proliferation [GO:0070346]; positive regulation of fatty acid metabolic process [GO:0045923]; positive regulation of gene expression [GO:0010628]; positive regulation of myoblast proliferation [GO:2000288]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of skeletal muscle tissue regeneration [GO:0043415]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of skeletal muscle satellite cell proliferation [GO:0014842]; regulation of transcription by RNA polymerase II [GO:0006357]; wound healing [GO:0042060] -Q03468 reviewed ERCC6_HUMAN DNA excision repair protein ERCC-6 (EC 3.6.4.-) (ATP-dependent helicase ERCC6) (Cockayne syndrome protein CSB) ERCC6 CSB base-excision repair [GO:0006284]; chromatin remodeling [GO:0006338]; DNA damage checkpoint signaling [GO:0000077]; DNA protection [GO:0042262]; DNA repair [GO:0006281]; double-strand break repair via classical nonhomologous end joining [GO:0097680]; intrinsic apoptotic signaling pathway in response to DNA damage [GO:0008630]; JNK cascade [GO:0007254]; multicellular organism growth [GO:0035264]; negative regulation of double-strand break repair via nonhomologous end joining [GO:2001033]; neurogenesis [GO:0022008]; neuron differentiation [GO:0030182]; neuron projection development [GO:0031175]; photoreceptor cell maintenance [GO:0045494]; positive regulation of DNA repair [GO:0045739]; positive regulation of DNA-templated transcription, elongation [GO:0032786]; positive regulation of double-strand break repair via homologous recombination [GO:1905168]; positive regulation of transcription by RNA polymerase I [GO:0045943]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription by RNA polymerase III [GO:0045945]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; pyrimidine dimer repair [GO:0006290]; regulation of DNA-templated transcription elongation [GO:0032784]; regulation of transcription elongation by RNA polymerase II [GO:0034243]; response to gamma radiation [GO:0010332]; response to oxidative stress [GO:0006979]; response to superoxide [GO:0000303]; response to toxic substance [GO:0009636]; response to UV-B [GO:0010224]; response to X-ray [GO:0010165]; single strand break repair [GO:0000012]; transcription by RNA polymerase II [GO:0006366]; transcription elongation by RNA polymerase I [GO:0006362]; transcription-coupled nucleotide-excision repair [GO:0006283] -Q03933 reviewed HSF2_HUMAN Heat shock factor protein 2 (HSF 2) (Heat shock transcription factor 2) (HSTF 2) HSF2 HSTF2 positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; spermatogenesis [GO:0007283] -Q03989 reviewed ARI5A_HUMAN AT-rich interactive domain-containing protein 5A (ARID domain-containing protein 5A) (Modulator recognition factor 1) (MRF-1) ARID5A MRF1 cellular response to estrogen stimulus [GO:0071391]; cellular response to lipopolysaccharide [GO:0071222]; chondrocyte differentiation [GO:0002062]; innate immune response [GO:0045087]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of interleukin-17 production [GO:0032740]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of protein acetylation [GO:1901985]; positive regulation of T-helper 1 cell cytokine production [GO:2000556]; positive regulation of T-helper 17 type immune response [GO:2000318]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of type II interferon production [GO:0032729]; regulation of transcription by RNA polymerase II [GO:0006357] -Q04206 reviewed TF65_HUMAN Transcription factor p65 (Nuclear factor NF-kappa-B p65 subunit) (Nuclear factor of kappa light polypeptide gene enhancer in B-cells 3) RELA NFKB3 acetaldehyde metabolic process [GO:0006117]; animal organ morphogenesis [GO:0009887]; antiviral innate immune response [GO:0140374]; canonical NF-kappaB signal transduction [GO:0007249]; cellular defense response [GO:0006968]; cellular response to angiotensin [GO:1904385]; cellular response to hepatocyte growth factor stimulus [GO:0035729]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to interleukin-1 [GO:0071347]; cellular response to interleukin-6 [GO:0071354]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to lipoteichoic acid [GO:0071223]; cellular response to nicotine [GO:0071316]; cellular response to peptidoglycan [GO:0071224]; cellular response to tumor necrosis factor [GO:0071356]; chromatin organization [GO:0006325]; cytokine-mediated signaling pathway [GO:0019221]; defense response to tumor cell [GO:0002357]; defense response to virus [GO:0051607]; DNA-templated transcription [GO:0006351]; hair follicle development [GO:0001942]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; interleukin-1-mediated signaling pathway [GO:0070498]; intracellular signal transduction [GO:0035556]; liver development [GO:0001889]; negative regulation of angiogenesis [GO:0016525]; negative regulation of apoptotic process [GO:0043066]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of extrinsic apoptotic signaling pathway [GO:2001237]; negative regulation of insulin receptor signaling pathway [GO:0046627]; negative regulation of miRNA transcription [GO:1902894]; negative regulation of non-canonical NF-kappaB signal transduction [GO:1901223]; negative regulation of protein catabolic process [GO:0042177]; negative regulation of protein sumoylation [GO:0033234]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuropeptide signaling pathway [GO:0007218]; non-canonical NF-kappaB signal transduction [GO:0038061]; nucleotide-binding oligomerization domain containing 2 signaling pathway [GO:0070431]; positive regulation of amyloid-beta formation [GO:1902004]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of interleukin-1 beta production [GO:0032731]; positive regulation of interleukin-12 production [GO:0032735]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of leukocyte adhesion to vascular endothelial cell [GO:1904996]; positive regulation of miRNA metabolic process [GO:2000630]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of Schwann cell differentiation [GO:0014040]; positive regulation of T cell receptor signaling pathway [GO:0050862]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular endothelial growth factor production [GO:0010575]; postsynapse to nucleus signaling pathway [GO:0099527]; prolactin signaling pathway [GO:0038161]; protein catabolic process [GO:0030163]; regulation of DNA-templated transcription [GO:0006355]; regulation of inflammatory response [GO:0050727]; regulation of transcription by RNA polymerase II [GO:0006357]; response to amino acid [GO:0043200]; response to cAMP [GO:0051591]; response to cobalamin [GO:0033590]; response to cytokine [GO:0034097]; response to insulin [GO:0032868]; response to interleukin-1 [GO:0070555]; response to ischemia [GO:0002931]; response to muramyl dipeptide [GO:0032495]; response to muscle stretch [GO:0035994]; response to progesterone [GO:0032570]; response to UV-B [GO:0010224]; response to xenobiotic stimulus [GO:0009410]; toll-like receptor 4 signaling pathway [GO:0034142]; tumor necrosis factor-mediated signaling pathway [GO:0033209]; vascular endothelial growth factor signaling pathway [GO:0038084] -Q04721 reviewed NOTC2_HUMAN Neurogenic locus notch homolog protein 2 (Notch 2) (hN2) [Cleaved into: Notch 2 extracellular truncation (N2ECD); Notch 2 intracellular domain (N2ICD)] NOTCH2 animal organ morphogenesis [GO:0009887]; apoptotic process [GO:0006915]; atrial septum morphogenesis [GO:0060413]; atrioventricular node development [GO:0003162]; axon guidance [GO:0007411]; BMP signaling pathway [GO:0030509]; bone remodeling [GO:0046849]; cell fate determination [GO:0001709]; cellular response to tumor cell [GO:0071228]; cholangiocyte proliferation [GO:1990705]; ciliary body morphogenesis [GO:0061073]; defense response to bacterium [GO:0042742]; embryonic limb morphogenesis [GO:0030326]; glomerular capillary formation [GO:0072104]; heart looping [GO:0001947]; hemopoiesis [GO:0030097]; hepatocyte proliferation [GO:0072574]; humoral immune response [GO:0006959]; in utero embryonic development [GO:0001701]; inflammatory response to antigenic stimulus [GO:0002437]; intracellular signal transduction [GO:0035556]; intrahepatic bile duct development [GO:0035622]; left/right axis specification [GO:0070986]; marginal zone B cell differentiation [GO:0002315]; morphogenesis of an epithelial sheet [GO:0002011]; multicellular organism growth [GO:0035264]; myeloid dendritic cell differentiation [GO:0043011]; negative regulation of apoptotic process [GO:0043066]; negative regulation of gene expression [GO:0010629]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system development [GO:0007399]; Notch signaling pathway [GO:0007219]; placenta blood vessel development [GO:0060674]; podocyte development [GO:0072015]; positive regulation of apoptotic process [GO:0043065]; positive regulation of BMP signaling pathway [GO:0030513]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of keratinocyte proliferation [GO:0010838]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of osteoclast differentiation [GO:0045672]; positive regulation of Ras protein signal transduction [GO:0046579]; positive regulation of smooth muscle cell differentiation [GO:0051152]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proximal tubule development [GO:0072014]; pulmonary valve morphogenesis [GO:0003184]; regulation of osteoclast development [GO:2001204]; wound healing [GO:0042060] -Q04771 reviewed ACVR1_HUMAN Activin receptor type-1 (EC 2.7.11.30) (Activin receptor type I) (ACTR-I) (Activin receptor-like kinase 2) (ALK-2) (Serine/threonine-protein kinase receptor R1) (SKR1) (TGF-B superfamily receptor type I) (TSR-I) ACVR1 ACVRLK2 activin receptor signaling pathway [GO:0032924]; acute inflammatory response [GO:0002526]; atrial septum primum morphogenesis [GO:0003289]; atrioventricular valve morphogenesis [GO:0003181]; BMP signaling pathway [GO:0030509]; branching involved in blood vessel morphogenesis [GO:0001569]; cardiac muscle cell fate commitment [GO:0060923]; cellular response to BMP stimulus [GO:0071773]; cellular response to growth factor stimulus [GO:0071363]; determination of left/right symmetry [GO:0007368]; dorsal/ventral pattern formation [GO:0009953]; embryonic heart tube morphogenesis [GO:0003143]; endocardial cushion cell fate commitment [GO:0061445]; endocardial cushion formation [GO:0003272]; endocardial cushion fusion [GO:0003274]; gastrulation with mouth forming second [GO:0001702]; germ cell development [GO:0007281]; heart development [GO:0007507]; in utero embryonic development [GO:0001701]; mesoderm formation [GO:0001707]; mitral valve morphogenesis [GO:0003183]; negative regulation of activin receptor signaling pathway [GO:0032926]; negative regulation of extrinsic apoptotic signaling pathway [GO:2001237]; negative regulation of G1/S transition of mitotic cell cycle [GO:2000134]; negative regulation of signal transduction [GO:0009968]; neural crest cell migration [GO:0001755]; pharyngeal system development [GO:0060037]; positive regulation of bone mineralization [GO:0030501]; positive regulation of cardiac epithelial to mesenchymal transition [GO:0062043]; positive regulation of cell migration [GO:0030335]; positive regulation of determination of dorsal identity [GO:2000017]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of ossification [GO:0030278]; smooth muscle cell differentiation [GO:0051145]; transforming growth factor beta receptor signaling pathway [GO:0007179]; ventricular septum morphogenesis [GO:0060412] -Q04864 reviewed REL_HUMAN Proto-oncogene c-Rel REL canonical NF-kappaB signal transduction [GO:0007249]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; negative regulation of gene expression [GO:0010629]; negative regulation of interferon-beta production [GO:0032688]; non-canonical NF-kappaB signal transduction [GO:0038061]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to cytokine [GO:0034097] -Q05066 reviewed SRY_HUMAN Sex-determining region Y protein (Testis-determining factor) SRY TDF brain development [GO:0007420]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron differentiation [GO:0030182]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of male gonad development [GO:2000020]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -Q05086 reviewed UBE3A_HUMAN Ubiquitin-protein ligase E3A (EC 2.3.2.26) (E6AP ubiquitin-protein ligase) (HECT-type ubiquitin transferase E3A) (Human papillomavirus E6-associated protein) (Oncogenic protein-associated protein E6-AP) (Renal carcinoma antigen NY-REN-54) UBE3A E6AP EPVE6AP HPVE6A androgen receptor signaling pathway [GO:0030521]; brain development [GO:0007420]; cellular response to brain-derived neurotrophic factor stimulus [GO:1990416]; locomotory exploration behavior [GO:0035641]; motor learning [GO:0061743]; negative regulation of dendritic spine morphogenesis [GO:0061002]; negative regulation of TORC1 signaling [GO:1904262]; ovarian follicle development [GO:0001541]; positive regulation of Golgi lumen acidification [GO:1905528]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of protein ubiquitination [GO:0031398]; positive regulation of transcription by RNA polymerase II [GO:0045944]; progesterone receptor signaling pathway [GO:0050847]; prostate gland growth [GO:0060736]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; protein autoubiquitination [GO:0051865]; protein K48-linked ubiquitination [GO:0070936]; protein polyubiquitination [GO:0000209]; proteolysis [GO:0006508]; regulation of circadian rhythm [GO:0042752]; regulation of synaptic plasticity [GO:0048167]; regulation of ubiquitin-dependent protein catabolic process [GO:2000058]; response to cocaine [GO:0042220]; response to hydrogen peroxide [GO:0042542]; response to progesterone [GO:0032570]; rhythmic process [GO:0048511]; sperm entry [GO:0035037]; ubiquitin-dependent protein catabolic process [GO:0006511] -Q05215 reviewed EGR4_HUMAN Early growth response protein 4 (EGR-4) (AT133) EGR4 positive regulation of cell population proliferation [GO:0008284]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q05481 reviewed ZNF91_HUMAN Zinc finger protein 91 (Zinc finger protein HPF7) (Zinc finger protein HTF10) ZNF91 regulation of transcription by RNA polymerase II [GO:0006357]; retrotransposon silencing [GO:0010526] -Q05516 reviewed ZBT16_HUMAN Zinc finger and BTB domain-containing protein 16 (Promyelocytic leukemia zinc finger protein) (Zinc finger protein 145) (Zinc finger protein PLZF) ZBTB16 PLZF ZNF145 anterior/posterior pattern specification [GO:0009952]; apoptotic process [GO:0006915]; cartilage development [GO:0051216]; cell population proliferation [GO:0008283]; central nervous system development [GO:0007417]; embryonic digit morphogenesis [GO:0042733]; embryonic hindlimb morphogenesis [GO:0035116]; embryonic pattern specification [GO:0009880]; forelimb morphogenesis [GO:0035136]; hemopoiesis [GO:0030097]; male germ-line stem cell asymmetric division [GO:0048133]; mesonephros development [GO:0001823]; myeloid cell differentiation [GO:0030099]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of myeloid cell differentiation [GO:0045638]; negative regulation of transcription by RNA polymerase II [GO:0000122]; ossification involved in bone maturation [GO:0043931]; positive regulation of apoptotic process [GO:0043065]; positive regulation of cartilage development [GO:0061036]; positive regulation of chondrocyte differentiation [GO:0032332]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of fat cell differentiation [GO:0045600]; positive regulation of NK T cell differentiation [GO:0051138]; positive regulation of ossification [GO:0045778]; protein localization to nucleus [GO:0034504]; protein ubiquitination [GO:0016567]; regulation of transcription by RNA polymerase II [GO:0006357] -Q05586 reviewed NMDZ1_HUMAN Glutamate receptor ionotropic, NMDA 1 (GluN1) (Glutamate [NMDA] receptor subunit zeta-1) (N-methyl-D-aspartate receptor subunit NR1) (NMD-R1) GRIN1 NMDAR1 brain development [GO:0007420]; calcium ion homeostasis [GO:0055074]; calcium ion transmembrane import into cytosol [GO:0097553]; chemical synaptic transmission [GO:0007268]; excitatory chemical synaptic transmission [GO:0098976]; excitatory postsynaptic potential [GO:0060079]; ionotropic glutamate receptor signaling pathway [GO:0035235]; monoatomic cation transmembrane transport [GO:0098655]; monoatomic cation transport [GO:0006812]; positive regulation of calcium ion transport into cytosol [GO:0010524]; positive regulation of excitatory postsynaptic potential [GO:2000463]; positive regulation of reactive oxygen species biosynthetic process [GO:1903428]; positive regulation of synaptic transmission, glutamatergic [GO:0051968]; positive regulation of transcription by RNA polymerase II [GO:0045944]; propylene metabolic process [GO:0018964]; protein heterotetramerization [GO:0051290]; regulation of membrane potential [GO:0042391]; regulation of monoatomic cation transmembrane transport [GO:1904062]; regulation of neuronal synaptic plasticity [GO:0048168]; regulation of synaptic plasticity [GO:0048167]; response to ethanol [GO:0045471]; response to glycine [GO:1905429]; visual learning [GO:0008542] -Q05823 reviewed RN5A_HUMAN 2-5A-dependent ribonuclease (2-5A-dependent RNase) (EC 3.1.26.-) (Ribonuclease 4) (Ribonuclease L) (RNase L) RNASEL RNS4 defense response to virus [GO:0051607]; fat cell differentiation [GO:0045444]; mRNA processing [GO:0006397]; negative regulation of viral genome replication [GO:0045071]; positive regulation of glucose import [GO:0046326]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein phosphorylation [GO:0006468]; regulation of mRNA stability [GO:0043488]; RNA processing [GO:0006396]; rRNA processing [GO:0006364] -Q05925 reviewed HME1_HUMAN Homeobox protein engrailed-1 (Homeobox protein en-1) (Hu-En-1) EN1 adult locomotory behavior [GO:0008344]; anatomical structure morphogenesis [GO:0009653]; cerebellum development [GO:0021549]; dopaminergic neuron differentiation [GO:0071542]; dorsal/ventral pattern formation [GO:0009953]; drinking behavior [GO:0042756]; embryonic brain development [GO:1990403]; embryonic forelimb morphogenesis [GO:0035115]; midbrain development [GO:0030901]; midbrain-hindbrain boundary development [GO:0030917]; motor learning [GO:0061743]; multicellular organism growth [GO:0035264]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron development [GO:0048666]; neuron differentiation [GO:0030182]; pigmentation [GO:0043473]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proximal/distal pattern formation [GO:0009954]; regulation of transcription by RNA polymerase II [GO:0006357]; response to cocaine [GO:0042220]; skeletal system development [GO:0001501]; social behavior [GO:0035176] -Q06265 reviewed EXOS9_HUMAN Exosome complex component RRP45 (Autoantigen PM/Scl 1) (Exosome component 9) (P75 polymyositis-scleroderma overlap syndrome-associated autoantigen) (Polymyositis/scleroderma autoantigen 1) (Polymyositis/scleroderma autoantigen 75 kDa) (PM/Scl-75) EXOSC9 PMSCL1 exonucleolytic trimming to generate mature 3'-end of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA) [GO:0000467]; immune response [GO:0006955]; mRNA catabolic process [GO:0006402]; nuclear mRNA surveillance [GO:0071028]; nuclear polyadenylation-dependent rRNA catabolic process [GO:0071035]; nuclear-transcribed mRNA catabolic process [GO:0000956]; nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay [GO:0000288]; positive regulation of cell growth [GO:0030307]; positive regulation of transcription by RNA polymerase II [GO:0045944]; RNA catabolic process [GO:0006401]; RNA processing [GO:0006396]; rRNA processing [GO:0006364]; TRAMP-dependent tRNA surveillance pathway [GO:0071038]; U1 snRNA 3'-end processing [GO:0034473]; U4 snRNA 3'-end processing [GO:0034475]; U5 snRNA 3'-end processing [GO:0034476] -Q06330 reviewed SUH_HUMAN Recombining binding protein suppressor of hairless (CBF-1) (J kappa-recombination signal-binding protein) (RBP-J kappa) (RBP-J) (RBP-JK) (Renal carcinoma antigen NY-REN-30) RBPJ IGKJRB IGKJRB1 RBPJK RBPSUH angiogenesis [GO:0001525]; aortic valve development [GO:0003176]; arterial endothelial cell fate commitment [GO:0060844]; atrioventricular canal development [GO:0036302]; auditory receptor cell fate commitment [GO:0009912]; B cell differentiation [GO:0030183]; blood vessel endothelial cell fate specification [GO:0097101]; blood vessel lumenization [GO:0072554]; blood vessel remodeling [GO:0001974]; cardiac left ventricle morphogenesis [GO:0003214]; cardiac muscle cell myoblast differentiation [GO:0060379]; club cell differentiation [GO:0060486]; defense response to bacterium [GO:0042742]; dorsal aorta morphogenesis [GO:0035912]; endocardium morphogenesis [GO:0003160]; epidermal cell fate specification [GO:0009957]; epithelial cell proliferation [GO:0050673]; epithelial to mesenchymal transition [GO:0001837]; epithelial to mesenchymal transition involved in endocardial cushion formation [GO:0003198]; hair follicle maturation [GO:0048820]; heart development [GO:0007507]; humoral immune response [GO:0006959]; inflammatory response to antigenic stimulus [GO:0002437]; keratinocyte differentiation [GO:0030216]; labyrinthine layer blood vessel development [GO:0060716]; myeloid dendritic cell differentiation [GO:0043011]; negative regulation of cell differentiation [GO:0045596]; negative regulation of cold-induced thermogenesis [GO:0120163]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of ossification [GO:0030279]; negative regulation of stem cell proliferation [GO:2000647]; negative regulation of transcription by RNA polymerase II [GO:0000122]; Notch signaling pathway [GO:0007219]; outflow tract morphogenesis [GO:0003151]; pituitary gland development [GO:0021983]; positive regulation of BMP signaling pathway [GO:0030513]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of cardiac muscle cell proliferation [GO:0060045]; positive regulation of cell proliferation involved in heart morphogenesis [GO:2000138]; positive regulation of ephrin receptor signaling pathway [GO:1901189]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of ERBB signaling pathway [GO:1901186]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription of Notch receptor target [GO:0007221]; pulmonary valve development [GO:0003177]; regulation of cell adhesion involved in heart morphogenesis [GO:0061344]; regulation of generation of precursor metabolites and energy [GO:0043467]; regulation of reproductive process [GO:2000241]; regulation of timing of cell differentiation [GO:0048505]; regulation of transcription by RNA polymerase II [GO:0006357]; sebaceous gland development [GO:0048733]; secondary heart field specification [GO:0003139]; somatic stem cell population maintenance [GO:0035019]; somitogenesis [GO:0001756]; stem cell proliferation [GO:0072089]; ventricular septum morphogenesis [GO:0060412]; ventricular trabecula myocardium morphogenesis [GO:0003222] -Q06413 reviewed MEF2C_HUMAN Myocyte-specific enhancer factor 2C (Myocyte enhancer factor 2C) MEF2C AMPA selective glutamate receptor signaling pathway [GO:0098990]; apoptotic process [GO:0006915]; B cell homeostasis [GO:0001782]; B cell proliferation [GO:0042100]; B cell receptor signaling pathway [GO:0050853]; blood vessel development [GO:0001568]; blood vessel remodeling [GO:0001974]; cardiac ventricle formation [GO:0003211]; cell differentiation [GO:0030154]; cell morphogenesis involved in neuron differentiation [GO:0048667]; cellular response to calcium ion [GO:0071277]; cellular response to fluid shear stress [GO:0071498]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to parathyroid hormone stimulus [GO:0071374]; cellular response to transforming growth factor beta stimulus [GO:0071560]; cellular response to trichostatin A [GO:0035984]; cellular response to xenobiotic stimulus [GO:0071466]; chondrocyte differentiation [GO:0002062]; endochondral ossification [GO:0001958]; epithelial cell proliferation involved in renal tubule morphogenesis [GO:2001013]; excitatory postsynaptic potential [GO:0060079]; germinal center formation [GO:0002467]; glomerulus morphogenesis [GO:0072102]; heart development [GO:0007507]; heart looping [GO:0001947]; humoral immune response [GO:0006959]; learning or memory [GO:0007611]; MAPK cascade [GO:0000165]; melanocyte differentiation [GO:0030318]; muscle cell fate determination [GO:0007521]; muscle organ development [GO:0007517]; myotube differentiation [GO:0014902]; negative regulation of blood vessel endothelial cell migration [GO:0043537]; negative regulation of gene expression [GO:0010629]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of ossification [GO:0030279]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of vascular associated smooth muscle cell migration [GO:1904753]; negative regulation of vascular associated smooth muscle cell proliferation [GO:1904706]; negative regulation of vascular endothelial cell proliferation [GO:1905563]; nephron tubule epithelial cell differentiation [GO:0072160]; nervous system development [GO:0007399]; neural crest cell differentiation [GO:0014033]; neuron development [GO:0048666]; neuron differentiation [GO:0030182]; neuron migration [GO:0001764]; NMDA selective glutamate receptor signaling pathway [GO:0098989]; osteoblast differentiation [GO:0001649]; outflow tract morphogenesis [GO:0003151]; platelet formation [GO:0030220]; positive regulation of alkaline phosphatase activity [GO:0010694]; positive regulation of B cell proliferation [GO:0030890]; positive regulation of behavioral fear response [GO:2000987]; positive regulation of bone mineralization [GO:0030501]; positive regulation of cardiac muscle cell differentiation [GO:2000727]; positive regulation of cardiac muscle cell proliferation [GO:0060045]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of macrophage apoptotic process [GO:2000111]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of myoblast differentiation [GO:0045663]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of skeletal muscle cell differentiation [GO:2001016]; positive regulation of skeletal muscle tissue development [GO:0048643]; positive regulation of transcription by RNA polymerase II [GO:0045944]; primary heart field specification [GO:0003138]; regulation of dendritic spine development [GO:0060998]; regulation of DNA-templated transcription [GO:0006355]; regulation of germinal center formation [GO:0002634]; regulation of megakaryocyte differentiation [GO:0045652]; regulation of neuron apoptotic process [GO:0043523]; regulation of neurotransmitter secretion [GO:0046928]; regulation of synapse assembly [GO:0051963]; regulation of synaptic activity [GO:0060025]; regulation of synaptic plasticity [GO:0048167]; regulation of synaptic transmission, glutamatergic [GO:0051966]; renal tubule morphogenesis [GO:0061333]; response to ischemia [GO:0002931]; secondary heart field specification [GO:0003139]; sinoatrial valve morphogenesis [GO:0003185]; skeletal muscle tissue development [GO:0007519]; smooth muscle cell differentiation [GO:0051145]; ventricular cardiac muscle cell differentiation [GO:0055012] -Q06546 reviewed GABPA_HUMAN GA-binding protein alpha chain (GABP subunit alpha) (Nuclear respiratory factor 2 subunit alpha) (Transcription factor E4TF1-60) GABPA E4TF1A blastocyst formation [GO:0001825]; negative regulation of megakaryocyte differentiation [GO:0045653]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q06547 reviewed GABP1_HUMAN GA-binding protein subunit beta-1 (GABP subunit beta-1) (GABPB-1) (GABP subunit beta-2) (GABPB-2) (Nuclear respiratory factor 2) (Transcription factor E4TF1-47) (Transcription factor E4TF1-53) GABPB1 E4TF1B GABPB GABPB2 mitochondrion organization [GO:0007005]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q06710 reviewed PAX8_HUMAN Paired box protein Pax-8 PAX8 anatomical structure morphogenesis [GO:0009653]; branching involved in ureteric bud morphogenesis [GO:0001658]; cellular response to gonadotropin stimulus [GO:0071371]; central nervous system development [GO:0007417]; DNA-templated transcription [GO:0006351]; inner ear morphogenesis [GO:0042472]; kidney development [GO:0001822]; mesenchymal to epithelial transition involved in metanephros morphogenesis [GO:0003337]; mesonephros development [GO:0001823]; metanephric comma-shaped body morphogenesis [GO:0072278]; metanephric distal convoluted tubule development [GO:0072221]; metanephric epithelium development [GO:0072207]; metanephric nephron tubule formation [GO:0072289]; metanephric S-shaped body morphogenesis [GO:0072284]; negative regulation of apoptotic process involved in metanephric collecting duct development [GO:1900215]; negative regulation of apoptotic process involved in metanephric nephron tubule development [GO:1900218]; negative regulation of cardiac muscle cell apoptotic process [GO:0010667]; negative regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis [GO:0072305]; negative regulation of mesenchymal cell apoptotic process involved in metanephros development [GO:1900212]; otic vesicle development [GO:0071599]; positive regulation of branching involved in ureteric bud morphogenesis [GO:0090190]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis [GO:0072108]; positive regulation of metanephric DCT cell differentiation [GO:2000594]; positive regulation of thyroid hormone generation [GO:2000611]; positive regulation of transcription by RNA polymerase II [GO:0045944]; pronephric field specification [GO:0039003]; pronephros development [GO:0048793]; regulation of apoptotic process [GO:0042981]; regulation of metanephric nephron tubule epithelial cell differentiation [GO:0072307]; regulation of thyroid-stimulating hormone secretion [GO:2000612]; regulation of transcription by RNA polymerase II [GO:0006357]; sulfur compound metabolic process [GO:0006790]; thyroid gland development [GO:0030878]; urogenital system development [GO:0001655]; ventricular septum development [GO:0003281] -Q06730 reviewed ZN33A_HUMAN Zinc finger protein 33A (Zinc finger and ZAK-associated protein with KRAB domain) (ZZaPK) (Zinc finger protein 11A) (Zinc finger protein KOX31) ZNF33A KIAA0065 KOX31 ZNF11 ZNF11A ZNF33 regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357] -Q06889 reviewed EGR3_HUMAN Early growth response protein 3 (EGR-3) (Zinc finger protein pilot) EGR3 PILOT cell migration involved in sprouting angiogenesis [GO:0002042]; cellular response to fibroblast growth factor stimulus [GO:0044344]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; circadian rhythm [GO:0007623]; endothelial cell chemotaxis [GO:0035767]; muscle organ development [GO:0007517]; negative regulation of apoptotic process [GO:0043066]; neuromuscular synaptic transmission [GO:0007274]; peripheral nervous system development [GO:0007422]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of T cell differentiation in thymus [GO:0033089]; regulation of gamma-delta T cell differentiation [GO:0045586]; regulation of transcription by RNA polymerase II [GO:0006357] -Q06945 reviewed SOX4_HUMAN Transcription factor SOX-4 SOX4 ascending aorta morphogenesis [GO:0035910]; atrial septum primum morphogenesis [GO:0003289]; brain development [GO:0007420]; camera-type eye morphogenesis [GO:0048593]; cardiac right ventricle morphogenesis [GO:0003215]; cellular response to glucose stimulus [GO:0071333]; endocrine pancreas development [GO:0031018]; gene expression [GO:0010467]; glial cell development [GO:0021782]; glial cell proliferation [GO:0014009]; glucose homeostasis [GO:0042593]; heart development [GO:0007507]; hematopoietic stem cell homeostasis [GO:0061484]; kidney morphogenesis [GO:0060993]; mesenchyme development [GO:0060485]; mitral valve morphogenesis [GO:0003183]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of myoblast differentiation [GO:0045662]; negative regulation of protein ubiquitination [GO:0031397]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system development [GO:0007399]; neuroepithelial cell differentiation [GO:0060563]; neuron differentiation [GO:0030182]; noradrenergic neuron differentiation [GO:0003357]; positive regulation of apoptotic process [GO:0043065]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gamma-delta T cell differentiation [GO:0045588]; positive regulation of insulin secretion [GO:0032024]; positive regulation of myoblast differentiation [GO:0045663]; positive regulation of N-terminal peptidyl-lysine acetylation [GO:2000761]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of translation [GO:0045727]; pro-B cell differentiation [GO:0002328]; protein stabilization [GO:0050821]; regulation of DNA damage response, signal transduction by p53 class mediator [GO:0043516]; regulation of DNA-templated transcription [GO:0006355]; regulation of protein stability [GO:0031647]; response to hypoxia [GO:0001666]; somatic stem cell population maintenance [GO:0035019]; spinal cord development [GO:0021510]; sympathetic nervous system development [GO:0048485]; T cell differentiation [GO:0030217]; ventricular septum morphogenesis [GO:0060412] -Q07687 reviewed DLX2_HUMAN Homeobox protein DLX-2 DLX2 brain development [GO:0007420]; branching morphogenesis of a nerve [GO:0048755]; cartilage development [GO:0051216]; cell differentiation [GO:0030154]; cerebral cortex GABAergic interneuron fate commitment [GO:0021893]; embryonic cranial skeleton morphogenesis [GO:0048701]; forebrain neuron differentiation [GO:0021879]; hippocampus development [GO:0021766]; negative regulation of Notch signaling pathway [GO:0045746]; negative regulation of oligodendrocyte differentiation [GO:0048715]; negative regulation of photoreceptor cell differentiation [GO:0046533]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuroblast differentiation [GO:0014016]; Notch signaling pathway [GO:0007219]; odontogenesis of dentin-containing tooth [GO:0042475]; olfactory bulb development [GO:0021772]; oligodendrocyte differentiation [GO:0048709]; positive regulation of amacrine cell differentiation [GO:1902871]; positive regulation of cell differentiation [GO:0045597]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proximal/distal pattern formation [GO:0009954]; subpallium development [GO:0021544] -Q07869 reviewed PPARA_HUMAN Peroxisome proliferator-activated receptor alpha (PPAR-alpha) (Nuclear receptor subfamily 1 group C member 1) PPARA NR1C1 PPAR behavioral response to nicotine [GO:0035095]; cell differentiation [GO:0030154]; cellular response to fructose stimulus [GO:0071332]; cellular response to starvation [GO:0009267]; circadian regulation of gene expression [GO:0032922]; enamel mineralization [GO:0070166]; epidermis development [GO:0008544]; fatty acid metabolic process [GO:0006631]; gluconeogenesis [GO:0006094]; heart development [GO:0007507]; hormone-mediated signaling pathway [GO:0009755]; lipoprotein metabolic process [GO:0042157]; negative regulation of appetite [GO:0032099]; negative regulation of blood pressure [GO:0045776]; negative regulation of cell growth involved in cardiac muscle cell development [GO:0061052]; negative regulation of cholesterol storage [GO:0010887]; negative regulation of cytokine production involved in inflammatory response [GO:1900016]; negative regulation of glycolytic process [GO:0045820]; negative regulation of hepatocyte apoptotic process [GO:1903944]; negative regulation of inflammatory response [GO:0050728]; negative regulation of leukocyte cell-cell adhesion [GO:1903038]; negative regulation of macrophage derived foam cell differentiation [GO:0010745]; negative regulation of miRNA transcription [GO:1902894]; negative regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051898]; negative regulation of reactive oxygen species biosynthetic process [GO:1903427]; negative regulation of sequestering of triglyceride [GO:0010891]; negative regulation of signaling receptor activity [GO:2000272]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; nitric oxide metabolic process [GO:0046209]; positive regulation of ATP biosynthetic process [GO:2001171]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of fatty acid beta-oxidation [GO:0032000]; positive regulation of fatty acid metabolic process [GO:0045923]; positive regulation of fatty acid oxidation [GO:0046321]; positive regulation of gluconeogenesis [GO:0045722]; positive regulation of lipid biosynthetic process [GO:0046889]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transformation of host cell by virus [GO:1904189]; regulation of cellular ketone metabolic process [GO:0010565]; regulation of circadian rhythm [GO:0042752]; regulation of fatty acid metabolic process [GO:0019217]; regulation of fatty acid transport [GO:2000191]; response to ethanol [GO:0045471]; response to hypoxia [GO:0001666]; response to insulin [GO:0032868]; response to nutrient [GO:0007584]; wound healing [GO:0042060] -Q08050 reviewed FOXM1_HUMAN Forkhead box protein M1 (Forkhead-related protein FKHL16) (Hepatocyte nuclear factor 3 forkhead homolog 11) (HFH-11) (HNF-3/fork-head homolog 11) (M-phase phosphoprotein 2) (MPM-2 reactive phosphoprotein 2) (Transcription factor Trident) (Winged-helix factor from INS-1 cells) FOXM1 FKHL16 HFH11 MPP2 WIN DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator [GO:0006978]; DNA repair [GO:0006281]; G2/M transition of mitotic cell cycle [GO:0000086]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of stress-activated MAPK cascade [GO:0032873]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of double-strand break repair [GO:2000781]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell cycle [GO:0051726]; regulation of cell population proliferation [GO:0042127]; regulation of Ras protein signal transduction [GO:0046578]; regulation of reactive oxygen species metabolic process [GO:2000377]; regulation of transcription by RNA polymerase II [GO:0006357] -Q08209 reviewed PP2BA_HUMAN Protein phosphatase 3 catalytic subunit alpha (EC 3.1.3.16) (CAM-PRP catalytic subunit) (Calcineurin A alpha) (Calmodulin-dependent calcineurin A subunit alpha isoform) (CNA alpha) (Serine/threonine-protein phosphatase 2B catalytic subunit alpha isoform) PPP3CA CALNA CNA calcineurin-mediated signaling [GO:0097720]; calcineurin-NFAT signaling cascade [GO:0033173]; calcium ion transport [GO:0006816]; cardiac muscle hypertrophy in response to stress [GO:0014898]; cellular response to glucose stimulus [GO:0071333]; dendrite morphogenesis [GO:0048813]; dephosphorylation [GO:0016311]; epidermis development [GO:0008544]; excitatory postsynaptic potential [GO:0060079]; G1/S transition of mitotic cell cycle [GO:0000082]; keratinocyte differentiation [GO:0030216]; modulation of chemical synaptic transmission [GO:0050804]; multicellular organismal response to stress [GO:0033555]; negative regulation of angiotensin-activated signaling pathway [GO:0110062]; negative regulation of calcium ion import across plasma membrane [GO:1905949]; negative regulation of dendrite morphogenesis [GO:0050774]; negative regulation of gene expression [GO:0010629]; negative regulation of insulin secretion [GO:0046676]; negative regulation of signaling [GO:0023057]; peptidyl-serine dephosphorylation [GO:0070262]; positive regulation of activated T cell proliferation [GO:0042104]; positive regulation of calcineurin-NFAT signaling cascade [GO:0070886]; positive regulation of calcium ion import across plasma membrane [GO:1905665]; positive regulation of cardiac muscle hypertrophy in response to stress [GO:1903244]; positive regulation of cell adhesion [GO:0045785]; positive regulation of cell migration [GO:0030335]; positive regulation of connective tissue replacement [GO:1905205]; positive regulation of endocytosis [GO:0045807]; positive regulation of gene expression [GO:0010628]; positive regulation of glomerulus development [GO:0090193]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of osteoclast differentiation [GO:0045672]; positive regulation of saliva secretion [GO:0046878]; positive regulation of transcription by RNA polymerase II [GO:0045944]; postsynaptic modulation of chemical synaptic transmission [GO:0099170]; protein dephosphorylation [GO:0006470]; protein import into nucleus [GO:0006606]; regulation of cell proliferation involved in kidney morphogenesis [GO:0061006]; renal filtration [GO:0097205]; response to amphetamine [GO:0001975]; response to calcium ion [GO:0051592]; skeletal muscle fiber development [GO:0048741]; skeletal muscle tissue regeneration [GO:0043403]; T cell activation [GO:0042110]; transition between fast and slow fiber [GO:0014883]; wound healing [GO:0042060] -Q08211 reviewed DHX9_HUMAN ATP-dependent RNA helicase A (EC 3.6.4.13) (DEAH box protein 9) (DExH-box helicase 9) (Leukophysin) (LKP) (Nuclear DNA helicase II) (NDH II) (RNA helicase A) DHX9 DDX9 LKP NDH2 alternative mRNA splicing, via spliceosome [GO:0000380]; cellular response to exogenous dsRNA [GO:0071360]; cellular response to tumor necrosis factor [GO:0071356]; CRD-mediated mRNA stabilization [GO:0070934]; DNA duplex unwinding [GO:0032508]; DNA replication [GO:0006260]; DNA-templated transcription termination [GO:0006353]; DNA-templated viral transcription [GO:0039695]; G-quadruplex DNA unwinding [GO:0044806]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; miRNA-mediated post-transcriptional gene silencing [GO:0035195]; mRNA transport [GO:0051028]; negative regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay [GO:1900152]; osteoblast differentiation [GO:0001649]; positive regulation of cytoplasmic translation [GO:2000767]; positive regulation of DNA repair [GO:0045739]; positive regulation of DNA replication [GO:0045740]; positive regulation of DNA topoisomerase (ATP-hydrolyzing) activity [GO:2000373]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of inflammatory response [GO:0050729]; positive regulation of innate immune response [GO:0045089]; positive regulation of interferon-alpha production [GO:0032727]; positive regulation of interferon-beta production [GO:0032728]; positive regulation of interleukin-18 production [GO:0032741]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of response to cytokine stimulus [GO:0060760]; positive regulation of RNA export from nucleus [GO:0046833]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of viral transcription [GO:0050434]; protein localization to cytoplasmic stress granule [GO:1903608]; protein-containing complex assembly [GO:0065003]; pyroptosis [GO:0070269]; regulation of cytoplasmic translation [GO:2000765]; regulation of defense response to virus by host [GO:0050691]; regulation of mRNA processing [GO:0050684]; regulation of transcription by RNA polymerase II [GO:0006357]; rhythmic process [GO:0048511]; RISC complex assembly [GO:0070922]; RNA secondary structure unwinding [GO:0010501] -Q09161 reviewed NCBP1_HUMAN Nuclear cap-binding protein subunit 1 (80 kDa nuclear cap-binding protein) (CBP80) (NCBP 80 kDa subunit) NCBP1 CBP80 NCBP 7-methylguanosine mRNA capping [GO:0006370]; alternative mRNA splicing, via spliceosome [GO:0000380]; cap-dependent translational initiation [GO:0002191]; defense response to virus [GO:0051607]; histone mRNA metabolic process [GO:0008334]; miRNA-mediated post-transcriptional gene silencing [GO:0035195]; mRNA 3'-end processing [GO:0031124]; mRNA export from nucleus [GO:0006406]; mRNA metabolic process [GO:0016071]; mRNA splicing, via spliceosome [GO:0000398]; mRNA transcription by RNA polymerase II [GO:0042789]; nuclear-transcribed mRNA catabolic process, nonsense-mediated decay [GO:0000184]; positive regulation of cell growth [GO:0030307]; positive regulation of mRNA 3'-end processing [GO:0031442]; positive regulation of mRNA splicing, via spliceosome [GO:0048026]; positive regulation of RNA binding [GO:1905216]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; primary miRNA processing [GO:0031053]; regulation of mRNA processing [GO:0050684]; regulation of translational initiation [GO:0006446]; regulatory ncRNA-mediated post-transcriptional gene silencing [GO:0035194]; RNA catabolic process [GO:0006401]; RNA splicing [GO:0008380]; snRNA export from nucleus [GO:0006408]; spliceosomal complex assembly [GO:0000245] -Q09472 reviewed EP300_HUMAN Histone acetyltransferase p300 (p300 HAT) (EC 2.3.1.48) (E1A-associated protein p300) (Histone butyryltransferase p300) (EC 2.3.1.-) (Histone crotonyltransferase p300) (EC 2.3.1.-) (Protein 2-hydroxyisobutyryltransferase p300) (EC 2.3.1.-) (Protein lactyltransferas p300) (EC 2.3.1.-) (Protein propionyltransferase p300) (EC 2.3.1.-) EP300 P300 animal organ morphogenesis [GO:0009887]; apoptotic process [GO:0006915]; B cell differentiation [GO:0030183]; behavioral defense response [GO:0002209]; canonical NF-kappaB signal transduction [GO:0007249]; cellular response to L-leucine [GO:0071233]; cellular response to nutrient levels [GO:0031669]; cellular response to UV [GO:0034644]; circadian rhythm [GO:0007623]; face morphogenesis [GO:0060325]; fat cell differentiation [GO:0045444]; heart development [GO:0007507]; internal peptidyl-lysine acetylation [GO:0018393]; internal protein amino acid acetylation [GO:0006475]; intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:0042771]; learning or memory [GO:0007611]; lung development [GO:0030324]; macrophage derived foam cell differentiation [GO:0010742]; megakaryocyte development [GO:0035855]; multicellular organism growth [GO:0035264]; N-terminal peptidyl-lysine acetylation [GO:0018076]; negative regulation of autophagy [GO:0010507]; negative regulation of gluconeogenesis [GO:0045721]; negative regulation of protein-containing complex assembly [GO:0031333]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system development [GO:0007399]; peptidyl-lysine acetylation [GO:0018394]; peptidyl-lysine butyrylation [GO:0140067]; peptidyl-lysine crotonylation [GO:0140066]; peptidyl-lysine propionylation [GO:0061921]; platelet formation [GO:0030220]; positive regulation by host of viral transcription [GO:0043923]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of neuron projection development [GO:0010976]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of receptor signaling pathway via JAK-STAT [GO:0046427]; positive regulation of T-helper 17 cell lineage commitment [GO:2000330]; positive regulation of TORC1 signaling [GO:1904263]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta receptor signaling pathway [GO:0030511]; protein acetylation [GO:0006473]; protein destabilization [GO:0031648]; protein stabilization [GO:0050821]; regulation of androgen receptor signaling pathway [GO:0060765]; regulation of autophagy [GO:0010506]; regulation of cellular response to heat [GO:1900034]; regulation of glycolytic process [GO:0006110]; regulation of mitochondrion organization [GO:0010821]; regulation of signal transduction by p53 class mediator [GO:1901796]; regulation of tubulin deacetylation [GO:0090043]; response to estrogen [GO:0043627]; response to hypoxia [GO:0001666]; skeletal muscle tissue development [GO:0007519]; somitogenesis [GO:0001756]; stimulatory C-type lectin receptor signaling pathway [GO:0002223]; swimming [GO:0036268]; thigmotaxis [GO:0001966]; transcription initiation-coupled chromatin remodeling [GO:0045815] -Q10586 reviewed DBP_HUMAN D site-binding protein (Albumin D box-binding protein) (Albumin D-element-binding protein) (Tax-responsive enhancer element-binding protein 302) (TaxREB302) DBP positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; rhythmic process [GO:0048511] -Q10587 reviewed TEF_HUMAN Thyrotroph embryonic factor TEF KIAA1655 regulation of transcription by RNA polymerase II [GO:0006357]; rhythmic process [GO:0048511] -Q12772 reviewed SRBP2_HUMAN Sterol regulatory element-binding protein 2 (SREBP-2) (Class D basic helix-loop-helix protein 2) (bHLHd2) (Sterol regulatory element-binding transcription factor 2) [Cleaved into: Processed sterol regulatory element-binding protein 2 (Transcription factor SREBF2)] SREBF2 BHLHD2 SREBP2 cellular response to laminar fluid shear stress [GO:0071499]; cellular response to low-density lipoprotein particle stimulus [GO:0071404]; cellular response to starvation [GO:0009267]; cholesterol homeostasis [GO:0042632]; cholesterol metabolic process [GO:0008203]; lipid metabolic process [GO:0006629]; negative regulation of cholesterol efflux [GO:0090370]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of cholesterol biosynthetic process [GO:0045542]; positive regulation of cholesterol storage [GO:0010886]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of protein targeting to mitochondrion [GO:1903955]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of mitophagy [GO:1901524]; regulation of Notch signaling pathway [GO:0008593]; SREBP signaling pathway [GO:0032933] -Q12778 reviewed FOXO1_HUMAN Forkhead box protein O1 (Forkhead box protein O1A) (Forkhead in rhabdomyosarcoma) FOXO1 FKHR FOXO1A apoptotic process [GO:0006915]; autophagy [GO:0006914]; blood vessel development [GO:0001568]; canonical Wnt signaling pathway [GO:0060070]; cellular response to cold [GO:0070417]; cellular response to hyperoxia [GO:0071455]; cellular response to insulin stimulus [GO:0032869]; cellular response to nitric oxide [GO:0071732]; cellular response to oxidative stress [GO:0034599]; cellular response to starvation [GO:0009267]; DNA damage response [GO:0006974]; energy homeostasis [GO:0097009]; fat cell differentiation [GO:0045444]; gene expression [GO:0010467]; insulin receptor signaling pathway [GO:0008286]; intracellular glucose homeostasis [GO:0001678]; negative regulation of apoptotic process [GO:0043066]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cardiac muscle hypertrophy in response to stress [GO:1903243]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of insulin secretion [GO:0046676]; negative regulation of stress-activated MAPK cascade [GO:0032873]; neuronal stem cell population maintenance [GO:0097150]; positive regulation of apoptotic process [GO:0043065]; positive regulation of autophagy [GO:0010508]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gluconeogenesis [GO:0045722]; positive regulation of protein catabolic process [GO:0045732]; positive regulation of smooth muscle cell apoptotic process [GO:0034393]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein acetylation [GO:0006473]; regulation of neural precursor cell proliferation [GO:2000177]; regulation of reactive oxygen species metabolic process [GO:2000377]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of transcription initiation by RNA polymerase II [GO:0060260]; response to fatty acid [GO:0070542]; temperature homeostasis [GO:0001659] -Q12800 reviewed TFCP2_HUMAN Alpha-globin transcription factor CP2 (SAA3 enhancer factor) (Transcription factor LSF) TFCP2 LSF SEF mRNA transcription by RNA polymerase II [GO:0042789]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q12824 reviewed SNF5_HUMAN SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily B member 1 (BRG1-associated factor 47) (BAF47) (Integrase interactor 1 protein) (SNF5 homolog) (hSNF5) SMARCB1 BAF47 INI1 SNF5L1 blastocyst hatching [GO:0001835]; chromatin remodeling [GO:0006338]; DNA integration [GO:0015074]; hepatocyte differentiation [GO:0070365]; negative regulation of cell population proliferation [GO:0008285]; nervous system development [GO:0007399]; nucleosome disassembly [GO:0006337]; positive regulation by host of viral transcription [GO:0043923]; positive regulation of cell differentiation [GO:0045597]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of double-strand break repair [GO:2000781]; positive regulation of glucose mediated signaling pathway [GO:1902661]; positive regulation of myoblast differentiation [GO:0045663]; positive regulation of stem cell population maintenance [GO:1902459]; positive regulation of T cell differentiation [GO:0045582]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription of nucleolar large rRNA by RNA polymerase I [GO:1901838]; regulation of G0 to G1 transition [GO:0070316]; regulation of G1/S transition of mitotic cell cycle [GO:2000045]; regulation of mitotic metaphase/anaphase transition [GO:0030071]; regulation of nucleotide-excision repair [GO:2000819]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA polymerase I preinitiation complex assembly [GO:0001188]; single stranded viral RNA replication via double stranded DNA intermediate [GO:0039692]; transcription initiation-coupled chromatin remodeling [GO:0045815] -Q12830 reviewed BPTF_HUMAN Nucleosome-remodeling factor subunit BPTF (Bromodomain and PHD finger-containing transcription factor) (Fetal Alz-50 clone 1 protein) (Fetal Alzheimer antigen) BPTF FAC1 FALZ anterior/posterior pattern specification [GO:0009952]; brain development [GO:0007420]; cellular response to nerve growth factor stimulus [GO:1990090]; chromatin remodeling [GO:0006338]; embryonic placenta development [GO:0001892]; endoderm development [GO:0007492]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357] -Q12837 reviewed PO4F2_HUMAN POU domain, class 4, transcription factor 2 (Brain-specific homeobox/POU domain protein 3B) (Brain-3B) (Brn-3B) POU4F2 BRN3B axon extension [GO:0048675]; axon guidance [GO:0007411]; cellular response to cytokine stimulus [GO:0071345]; cellular response to estradiol stimulus [GO:0071392]; cellular response to insulin stimulus [GO:0032869]; dorsal root ganglion development [GO:1990791]; heart development [GO:0007507]; intracellular estrogen receptor signaling pathway [GO:0030520]; intrinsic apoptotic signaling pathway by p53 class mediator [GO:0072332]; MAPK cascade [GO:0000165]; negative regulation of adipose tissue development [GO:1904178]; negative regulation of amacrine cell differentiation [GO:1902870]; negative regulation of cell differentiation [GO:0045596]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuromuscular process controlling balance [GO:0050885]; neuron differentiation [GO:0030182]; positive regulation of axon extension [GO:0045773]; positive regulation of cell differentiation [GO:0045597]; positive regulation of glucose import [GO:0046326]; positive regulation of osteoclast differentiation [GO:0045672]; positive regulation of programmed cell death [GO:0043068]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription regulatory region DNA binding [GO:2000679]; regulation of DNA-binding transcription factor activity [GO:0051090]; regulation of retinal ganglion cell axon guidance [GO:0090259]; regulation of transcription by RNA polymerase II [GO:0006357]; retina development in camera-type eye [GO:0060041]; retinal ganglion cell axon guidance [GO:0031290]; sensory perception of sound [GO:0007605] -Q12857 reviewed NFIA_HUMAN Nuclear factor 1 A-type (NF1-A) (Nuclear factor 1/A) (CCAAT-box-binding transcription factor) (CTF) (Nuclear factor I/A) (NF-I/A) (NFI-A) (TGGCA-binding protein) NFIA KIAA1439 BMP signaling pathway [GO:0030509]; cartilage development [GO:0051216]; cell morphogenesis [GO:0000902]; DNA replication [GO:0006260]; exit from mitosis [GO:0010458]; gene expression [GO:0010467]; glial cell fate specification [GO:0021780]; glial cell proliferation [GO:0014009]; limb morphogenesis [GO:0035108]; neural precursor cell proliferation [GO:0061351]; neuron fate specification [GO:0048665]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; response to wounding [GO:0009611]; retina development in camera-type eye [GO:0060041]; synapse maturation [GO:0060074]; ureter development [GO:0072189]; viral genome replication [GO:0019079] -Q12870 reviewed TCF15_HUMAN Transcription factor 15 (TCF-15) (Class A basic helix-loop-helix protein 40) (bHLHa40) (Paraxis) (Protein bHLH-EC2) TCF15 BHLHA40 BHLHEC2 developmental process [GO:0032502]; ear development [GO:0043583]; establishment of epithelial cell apical/basal polarity [GO:0045198]; mesenchymal to epithelial transition [GO:0060231]; mesoderm development [GO:0007498]; muscle organ morphogenesis [GO:0048644]; negative regulation of hematopoietic stem cell differentiation [GO:1902037]; neuromuscular process controlling posture [GO:0050884]; paraxial mesoderm development [GO:0048339]; positive regulation of stem cell differentiation [GO:2000738]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-anal tail morphogenesis [GO:0036342]; regulation of extracellular matrix organization [GO:1903053]; regulation of transcription by RNA polymerase II [GO:0006357]; respiratory system process [GO:0003016]; skeletal system morphogenesis [GO:0048705]; somitogenesis [GO:0001756]; stem cell population maintenance [GO:0019827] -Q12888 reviewed TP53B_HUMAN TP53-binding protein 1 (53BP1) (p53-binding protein 1) (p53BP1) TP53BP1 cellular response to X-ray [GO:0071481]; DNA damage checkpoint signaling [GO:0000077]; DNA damage response [GO:0006974]; double-strand break repair via classical nonhomologous end joining [GO:0097680]; double-strand break repair via nonhomologous end joining [GO:0006303]; negative regulation of double-strand break repair via homologous recombination [GO:2000042]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of isotype switching [GO:0045830]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein homooligomerization [GO:0051260]; protein localization to site of double-strand break [GO:1990166] -Q12891 reviewed HYAL2_HUMAN Hyaluronidase-2 (Hyal-2) (EC 3.2.1.35) (Hyaluronoglucosaminidase-2) (Lung carcinoma protein 2) (LuCa-2) HYAL2 LUCA2 carbohydrate metabolic process [GO:0005975]; cartilage development [GO:0051216]; cellular response to fibroblast growth factor stimulus [GO:0044344]; cellular response to interleukin-1 [GO:0071347]; cellular response to transforming growth factor beta stimulus [GO:0071560]; cellular response to tumor necrosis factor [GO:0071356]; cellular response to UV-B [GO:0071493]; defense response to virus [GO:0051607]; fusion of virus membrane with host plasma membrane [GO:0019064]; glycosaminoglycan catabolic process [GO:0006027]; hematopoietic progenitor cell differentiation [GO:0002244]; hyaluronan catabolic process [GO:0030214]; kidney development [GO:0001822]; monocyte activation [GO:0042117]; multicellular organismal-level iron ion homeostasis [GO:0060586]; negative regulation of cell growth [GO:0030308]; negative regulation of fibroblast migration [GO:0010764]; negative regulation of MAP kinase activity [GO:0043407]; negative regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051898]; negative regulation of protein tyrosine kinase activity [GO:0061099]; positive regulation of extrinsic apoptotic signaling pathway [GO:2001238]; positive regulation of inflammatory response [GO:0050729]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of urine volume [GO:0035810]; renal water absorption [GO:0070295]; response to antibiotic [GO:0046677]; response to reactive oxygen species [GO:0000302]; response to virus [GO:0009615]; skeletal system morphogenesis [GO:0048705]; symbiont entry into host cell [GO:0046718] -Q12946 reviewed FOXF1_HUMAN Forkhead box protein F1 (Forkhead-related activator 1) (FREAC-1) (Forkhead-related protein FKHL5) (Forkhead-related transcription factor 1) FOXF1 FKHL5 FREAC1 animal organ morphogenesis [GO:0009887]; blood vessel development [GO:0001568]; cardiac left ventricle morphogenesis [GO:0003214]; cell-cell adhesion [GO:0098609]; cellular response to cytokine stimulus [GO:0071345]; cellular response to organic cyclic compound [GO:0071407]; detection of wounding [GO:0014822]; determination of left/right symmetry [GO:0007368]; digestive tract development [GO:0048565]; ductus arteriosus closure [GO:0097070]; embryonic digestive tract morphogenesis [GO:0048557]; embryonic ectodermal digestive tract morphogenesis [GO:0048613]; embryonic foregut morphogenesis [GO:0048617]; endocardial cushion development [GO:0003197]; epithelial cell differentiation involved in mammary gland alveolus development [GO:0061030]; epithelial tube branching involved in lung morphogenesis [GO:0060441]; establishment of epithelial cell apical/basal polarity [GO:0045198]; extracellular matrix organization [GO:0030198]; heart development [GO:0007507]; in utero embryonic development [GO:0001701]; lateral mesodermal cell differentiation [GO:0048371]; lung alveolus development [GO:0048286]; lung development [GO:0030324]; lung lobe morphogenesis [GO:0060463]; lung vasculature development [GO:0060426]; mesenchyme migration [GO:0090131]; midgut development [GO:0007494]; morphogenesis of a branching structure [GO:0001763]; negative regulation of inflammatory response [GO:0050728]; negative regulation of mast cell degranulation [GO:0043305]; negative regulation of transcription by RNA polymerase II [GO:0000122]; pancreas development [GO:0031016]; positive regulation of cell migration [GO:0030335]; positive regulation of cell-substrate adhesion [GO:0010811]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of mesenchymal cell proliferation [GO:0002053]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; respiratory tube development [GO:0030323]; right lung morphogenesis [GO:0060461]; smooth muscle cell differentiation [GO:0051145]; smoothened signaling pathway [GO:0007224]; somitogenesis [GO:0001756]; trachea development [GO:0060438]; ureter development [GO:0072189]; vasculogenesis [GO:0001570]; venous blood vessel development [GO:0060841] -Q12947 reviewed FOXF2_HUMAN Forkhead box protein F2 (Forkhead-related activator 2) (FREAC-2) (Forkhead-related protein FKHL6) (Forkhead-related transcription factor 2) FOXF2 FKHL6 FREAC2 animal organ morphogenesis [GO:0009887]; embryonic camera-type eye morphogenesis [GO:0048596]; embryonic digestive tract development [GO:0048566]; epithelial to mesenchymal transition [GO:0001837]; establishment of planar polarity of embryonic epithelium [GO:0042249]; extracellular matrix organization [GO:0030198]; genitalia development [GO:0048806]; negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032434]; regulation of protein polyubiquitination [GO:1902914]; regulation of transcription by RNA polymerase II [GO:0006357]; roof of mouth development [GO:0060021] -Q12948 reviewed FOXC1_HUMAN Forkhead box protein C1 (Forkhead-related protein FKHL7) (Forkhead-related transcription factor 3) (FREAC-3) FOXC1 FKHL7 FREAC3 anatomical structure morphogenesis [GO:0009653]; angiogenesis [GO:0001525]; apoptotic process involved in outflow tract morphogenesis [GO:0003275]; artery morphogenesis [GO:0048844]; blood vessel diameter maintenance [GO:0097746]; blood vessel remodeling [GO:0001974]; camera-type eye development [GO:0043010]; cardiac muscle cell proliferation [GO:0060038]; cell differentiation [GO:0030154]; cell migration [GO:0016477]; cell population proliferation [GO:0008283]; cellular response to chemokine [GO:1990869]; cellular response to epidermal growth factor stimulus [GO:0071364]; cerebellum development [GO:0021549]; chemokine-mediated signaling pathway [GO:0070098]; collagen fibril organization [GO:0030199]; embryonic heart tube development [GO:0035050]; endochondral ossification [GO:0001958]; eye development [GO:0001654]; germ cell migration [GO:0008354]; glomerular epithelium development [GO:0072010]; glycosaminoglycan metabolic process [GO:0030203]; heart development [GO:0007507]; in utero embryonic development [GO:0001701]; kidney development [GO:0001822]; lacrimal gland development [GO:0032808]; lymph vessel development [GO:0001945]; maintenance of lens transparency [GO:0036438]; mesenchymal cell development [GO:0014031]; negative regulation of angiogenesis [GO:0016525]; negative regulation of apoptotic process involved in outflow tract morphogenesis [GO:1902257]; negative regulation of lymphangiogenesis [GO:1901491]; negative regulation of mitotic cell cycle [GO:0045930]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural crest cell development [GO:0014032]; Notch signaling pathway [GO:0007219]; odontogenesis of dentin-containing tooth [GO:0042475]; ovarian follicle development [GO:0001541]; paraxial mesoderm formation [GO:0048341]; positive regulation of core promoter binding [GO:1904798]; positive regulation of DNA binding [GO:0043388]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of gene expression [GO:0010628]; positive regulation of hematopoietic progenitor cell differentiation [GO:1901534]; positive regulation of hematopoietic stem cell differentiation [GO:1902038]; positive regulation of keratinocyte differentiation [GO:0045618]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of organ growth [GO:0046620]; regulation of transcription by RNA polymerase II [GO:0006357]; somitogenesis [GO:0001756]; ureteric bud development [GO:0001657]; vascular endothelial growth factor receptor signaling pathway [GO:0048010]; vascular endothelial growth factor signaling pathway [GO:0038084]; ventricular cardiac muscle tissue morphogenesis [GO:0055010] -Q12951 reviewed FOXI1_HUMAN Forkhead box protein I1 (Forkhead-related protein FKHL10) (Forkhead-related transcription factor 6) (FREAC-6) (Hepatocyte nuclear factor 3 forkhead homolog 3) (HFH-3) (HNF-3/fork-head homolog 3) FOXI1 FKHL10 FREAC6 anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; embryo development ending in birth or egg hatching [GO:0009792]; inner ear morphogenesis [GO:0042472]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q12962 reviewed TAF10_HUMAN Transcription initiation factor TFIID subunit 10 (STAF28) (Transcription initiation factor TFIID 30 kDa subunit) (TAF(II)30) (TAFII-30) (TAFII30) TAF10 TAF2A TAF2H TAFII30 allantois development [GO:1905069]; apoptotic process [GO:0006915]; chromatin remodeling [GO:0006338]; DNA-templated transcription initiation [GO:0006352]; embryonic placenta development [GO:0001892]; G1/S transition of mitotic cell cycle [GO:0000082]; hepatocyte differentiation [GO:0070365]; lateral mesodermal cell differentiation [GO:0048371]; limb development [GO:0060173]; mRNA transcription by RNA polymerase II [GO:0042789]; multicellular organism growth [GO:0035264]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; regulation of DNA repair [GO:0006282]; regulation of DNA-templated transcription [GO:0006355]; regulation of RNA splicing [GO:0043484]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA polymerase II preinitiation complex assembly [GO:0051123]; SAGA complex assembly [GO:0036285]; somitogenesis [GO:0001756]; transcription by RNA polymerase II [GO:0006366]; transcription initiation at RNA polymerase II promoter [GO:0006367] -Q12968 reviewed NFAC3_HUMAN Nuclear factor of activated T-cells, cytoplasmic 3 (NF-ATc3) (NFATc3) (NFATx) (T-cell transcription factor NFAT4) (NF-AT4) (NF-AT4c) NFATC3 NFAT4 calcineurin-NFAT signaling cascade [GO:0033173]; DN4 thymocyte differentiation [GO:1904157]; inflammatory response [GO:0006954]; negative regulation of miRNA transcription [GO:1902894]; negative regulation of vascular associated smooth muscle cell differentiation [GO:1905064]; positive regulation of apoptotic process [GO:0043065]; positive regulation of artery morphogenesis [GO:1905653]; positive regulation of cardiac muscle hypertrophy [GO:0010613]; positive regulation of nitric oxide biosynthetic process [GO:0045429]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive thymic T cell selection [GO:0045059]; protein import into nucleus [GO:0006606]; regulation of transcription by RNA polymerase II [GO:0006357] -Q13029 reviewed PRDM2_HUMAN PR domain zinc finger protein 2 (EC 2.1.1.355) (GATA-3-binding protein G3B) (Lysine N-methyltransferase 8) (MTB-ZF) (MTE-binding protein) (PR domain-containing protein 2) (Retinoblastoma protein-interacting zinc finger protein) (Zinc finger protein RIZ) PRDM2 KMT8 RIZ determination of adult lifespan [GO:0008340]; methylation [GO:0032259]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357] -Q13033 reviewed STRN3_HUMAN Striatin-3 (Cell cycle autoantigen SG2NA) (S/G2 antigen) STRN3 GS2NA SG2NA negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of hippo signaling [GO:0035331]; negative regulation of intracellular estrogen receptor signaling pathway [GO:0033147]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to estradiol [GO:0032355] -Q13105 reviewed ZBT17_HUMAN Zinc finger and BTB domain-containing protein 17 (Myc-interacting zinc finger protein 1) (Miz-1) (Zinc finger protein 151) (Zinc finger protein 60) ZBTB17 MIZ1 ZNF151 ZNF60 ectoderm development [GO:0007398]; G1 to G0 transition [GO:0070314]; gastrulation with mouth forming second [GO:0001702]; negative regulation of cell cycle [GO:0045786]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cytokine production [GO:0001817]; regulation of immune system process [GO:0002682] -Q13118 reviewed KLF10_HUMAN Krueppel-like factor 10 (EGR-alpha) (Transforming growth factor-beta-inducible early growth response protein 1) (TGFB-inducible early growth response protein 1) (TIEG-1) KLF10 TIEG TIEG1 bone mineralization [GO:0030282]; cell-cell signaling [GO:0007267]; cellular response to starvation [GO:0009267]; circadian rhythm [GO:0007623]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of osteoclast differentiation [GO:0045672]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of circadian rhythm [GO:0042752]; regulation of transcription by RNA polymerase II [GO:0006357]; somatic stem cell population maintenance [GO:0035019] -Q13127 reviewed REST_HUMAN RE1-silencing transcription factor (Neural-restrictive silencer factor) (X2 box repressor) REST NRSF XBR auditory receptor cell stereocilium organization [GO:0060088]; cardiac muscle cell myoblast differentiation [GO:0060379]; cellular response to electrical stimulus [GO:0071257]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to xenobiotic stimulus [GO:0071466]; chromatin remodeling [GO:0006338]; detection of mechanical stimulus involved in sensory perception of sound [GO:0050910]; hematopoietic progenitor cell differentiation [GO:0002244]; modification of synaptic structure [GO:0099563]; negative regulation by host of viral transcription [GO:0043922]; negative regulation of aldosterone biosynthetic process [GO:0032348]; negative regulation of amniotic stem cell differentiation [GO:2000798]; negative regulation of calcium ion-dependent exocytosis [GO:0045955]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of cortisol biosynthetic process [GO:2000065]; negative regulation of dense core granule biogenesis [GO:2000706]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of gene expression [GO:0010629]; negative regulation of insulin secretion [GO:0046676]; negative regulation of mesenchymal stem cell differentiation [GO:2000740]; negative regulation of miRNA transcription [GO:1902894]; negative regulation of neurogenesis [GO:0050768]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transcription regulatory region DNA binding [GO:2000678]; nervous system process [GO:0050877]; neuromuscular process controlling balance [GO:0050885]; neuronal stem cell population maintenance [GO:0097150]; positive regulation of apoptotic process [GO:0043065]; positive regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043280]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of programmed cell death [GO:0043068]; positive regulation of stem cell population maintenance [GO:1902459]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; regulation of DNA-templated transcription [GO:0006355]; regulation of osteoblast differentiation [GO:0045667]; response to hypoxia [GO:0001666]; response to ischemia [GO:0002931]; somatic stem cell population maintenance [GO:0035019] -Q13129 reviewed RLF_HUMAN Zinc finger protein Rlf (Rearranged L-myc fusion gene protein) (Zn-15-related protein) RLF positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q13133 reviewed NR1H3_HUMAN Oxysterols receptor LXR-alpha (Liver X receptor alpha) (Nuclear receptor subfamily 1 group H member 3) NR1H3 LXRA apoptotic cell clearance [GO:0043277]; cell differentiation [GO:0030154]; cellular response to lipopolysaccharide [GO:0071222]; cholesterol homeostasis [GO:0042632]; hormone-mediated signaling pathway [GO:0009755]; lipid homeostasis [GO:0055088]; mRNA transcription by RNA polymerase II [GO:0042789]; negative regulation of cholesterol storage [GO:0010887]; negative regulation of cold-induced thermogenesis [GO:0120163]; negative regulation of inflammatory response [GO:0050728]; negative regulation of lipid transport [GO:0032369]; negative regulation of macrophage activation [GO:0043031]; negative regulation of macrophage derived foam cell differentiation [GO:0010745]; negative regulation of pancreatic juice secretion [GO:0090188]; negative regulation of pinocytosis [GO:0048550]; negative regulation of proteolysis [GO:0045861]; negative regulation of response to endoplasmic reticulum stress [GO:1903573]; negative regulation of secretion of lysosomal enzymes [GO:0090341]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of type II interferon-mediated signaling pathway [GO:0060336]; phosphatidylcholine acyl-chain remodeling [GO:0036151]; positive regulation of cholesterol efflux [GO:0010875]; positive regulation of cholesterol transport [GO:0032376]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of fatty acid biosynthetic process [GO:0045723]; positive regulation of lipid biosynthetic process [GO:0046889]; positive regulation of lipoprotein lipase activity [GO:0051006]; positive regulation of protein metabolic process [GO:0051247]; positive regulation of toll-like receptor 4 signaling pathway [GO:0034145]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transporter activity [GO:0032411]; positive regulation of triglyceride biosynthetic process [GO:0010867]; regulation of circadian rhythm [GO:0042752]; response to progesterone [GO:0032570]; sterol homeostasis [GO:0055092]; triglyceride homeostasis [GO:0070328] -Q13158 reviewed FADD_HUMAN FAS-associated death domain protein (FAS-associating death domain-containing protein) (Growth-inhibiting gene 3 protein) (Mediator of receptor induced toxicity) FADD MORT1 GIG3 activation of cysteine-type endopeptidase activity [GO:0097202]; apoptotic process [GO:0006915]; apoptotic signaling pathway [GO:0097190]; behavioral response to cocaine [GO:0048148]; cellular response to mechanical stimulus [GO:0071260]; death-inducing signaling complex assembly [GO:0071550]; defense response to virus [GO:0051607]; extrinsic apoptotic signaling pathway [GO:0097191]; extrinsic apoptotic signaling pathway in absence of ligand [GO:0097192]; extrinsic apoptotic signaling pathway via death domain receptors [GO:0008625]; innate immune response [GO:0045087]; kidney development [GO:0001822]; lymph node development [GO:0048535]; motor neuron apoptotic process [GO:0097049]; necroptotic signaling pathway [GO:0097527]; negative regulation of activation-induced cell death of T cells [GO:0070236]; negative regulation of necroptotic process [GO:0060546]; positive regulation of activated T cell proliferation [GO:0042104]; positive regulation of adaptive immune response [GO:0002821]; positive regulation of apoptotic process [GO:0043065]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation [GO:2000454]; positive regulation of execution phase of apoptosis [GO:1900119]; positive regulation of extrinsic apoptotic signaling pathway [GO:2001238]; positive regulation of innate immune response [GO:0045089]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of macrophage differentiation [GO:0045651]; positive regulation of proteolysis [GO:0045862]; positive regulation of T cell mediated cytotoxicity [GO:0001916]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of type I interferon-mediated signaling pathway [GO:0060340]; positive regulation of type II interferon production [GO:0032729]; spleen development [GO:0048536]; T cell differentiation in thymus [GO:0033077]; T cell homeostasis [GO:0043029]; thymus development [GO:0048538]; TRAIL-activated apoptotic signaling pathway [GO:0036462] -Q13163 reviewed MP2K5_HUMAN Dual specificity mitogen-activated protein kinase kinase 5 (MAP kinase kinase 5) (MAPKK 5) (EC 2.7.12.2) (MAPK/ERK kinase 5) (MEK 5) MAP2K5 MEK5 MKK5 PRKMK5 cellular response to growth factor stimulus [GO:0071363]; cellular response to laminar fluid shear stress [GO:0071499]; ERK5 cascade [GO:0070375]; heart development [GO:0007507]; insulin-like growth factor receptor signaling pathway [GO:0048009]; MAPK cascade [GO:0000165]; negative regulation of cell migration involved in sprouting angiogenesis [GO:0090051]; negative regulation of chemokine (C-X-C motif) ligand 2 production [GO:2000342]; negative regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043154]; negative regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001240]; negative regulation of heterotypic cell-cell adhesion [GO:0034115]; negative regulation of interleukin-8 production [GO:0032717]; negative regulation of NF-kappaB transcription factor activity [GO:0032088]; negative regulation of response to cytokine stimulus [GO:0060761]; negative regulation of smooth muscle cell apoptotic process [GO:0034392]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of cell growth [GO:0030307]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of MAP kinase activity [GO:0043406]; positive regulation of protein metabolic process [GO:0051247]; positive regulation of transcription by RNA polymerase II [GO:0045944]; signal transduction [GO:0007165] -Q13164 reviewed MK07_HUMAN Mitogen-activated protein kinase 7 (MAP kinase 7) (MAPK 7) (EC 2.7.11.24) (Big MAP kinase 1) (BMK-1) (Extracellular signal-regulated kinase 5) (ERK-5) MAPK7 BMK1 ERK5 PRKM7 adenylate cyclase-activating G protein-coupled receptor signaling pathway [GO:0007189]; calcineurin-NFAT signaling cascade [GO:0033173]; cell differentiation [GO:0030154]; cellular response to growth factor stimulus [GO:0071363]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to laminar fluid shear stress [GO:0071499]; cellular response to transforming growth factor beta stimulus [GO:0071560]; intracellular signal transduction [GO:0035556]; MAPK cascade [GO:0000165]; negative regulation of calcineurin-NFAT signaling cascade [GO:0070885]; negative regulation of endothelial cell apoptotic process [GO:2000352]; negative regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001240]; negative regulation of heterotypic cell-cell adhesion [GO:0034115]; negative regulation of inflammatory response [GO:0050728]; negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway [GO:1902176]; negative regulation of response to cytokine stimulus [GO:0060761]; negative regulation of smooth muscle cell apoptotic process [GO:0034392]; positive regulation of protein metabolic process [GO:0051247]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of angiogenesis [GO:0045765]; signal transduction [GO:0007165] -Q13207 reviewed TBX2_HUMAN T-box transcription factor TBX2 (T-box protein 2) TBX2 aorta morphogenesis [GO:0035909]; apoptotic process [GO:0006915]; atrioventricular canal development [GO:0036302]; atrioventricular canal morphogenesis [GO:1905222]; cardiac jelly development [GO:1905072]; cardiac muscle cell myoblast differentiation [GO:0060379]; cardiac muscle tissue development [GO:0048738]; cell fate specification [GO:0001708]; cellular response to dexamethasone stimulus [GO:0071549]; cellular senescence [GO:0090398]; cochlea morphogenesis [GO:0090103]; developmental growth involved in morphogenesis [GO:0060560]; embryonic camera-type eye morphogenesis [GO:0048596]; embryonic digit morphogenesis [GO:0042733]; embryonic heart tube development [GO:0035050]; endocardial cushion formation [GO:0003272]; endocardial cushion morphogenesis [GO:0003203]; epithelial tube branching involved in lung morphogenesis [GO:0060441]; fibroblast growth factor receptor signaling pathway [GO:0008543]; heart looping [GO:0001947]; mammary placode formation [GO:0060596]; melanocyte proliferation [GO:0097325]; mesenchymal cell proliferation involved in lung development [GO:0060916]; muscle cell fate determination [GO:0007521]; negative regulation of cardiac chamber formation [GO:1901211]; negative regulation of cellular senescence [GO:2000773]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of heart looping [GO:1901208]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neurogenesis [GO:0022008]; Notch signaling pathway [GO:0007219]; outflow tract morphogenesis [GO:0003151]; outflow tract septum morphogenesis [GO:0003148]; pharyngeal system development [GO:0060037]; pigment metabolic process involved in pigmentation [GO:0043474]; positive regulation of cardiac muscle cell proliferation [GO:0060045]; positive regulation of cell cycle G1/S phase transition [GO:1902808]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of heart contraction [GO:0008016]; regulation of transcription by RNA polymerase II [GO:0006357]; response to retinoic acid [GO:0032526]; roof of mouth development [GO:0060021]; smooth muscle cell differentiation [GO:0051145]; ureteric peristalsis [GO:0072105] -Q13227 reviewed GPS2_HUMAN G protein pathway suppressor 2 (GPS-2) GPS2 B cell differentiation [GO:0030183]; JNK cascade [GO:0007254]; negative regulation of B cell receptor signaling pathway [GO:0050859]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of inflammatory response [GO:0050728]; negative regulation of JNK cascade [GO:0046329]; negative regulation of protein K63-linked ubiquitination [GO:1900045]; negative regulation of toll-like receptor signaling pathway [GO:0034122]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of tumor necrosis factor-mediated signaling pathway [GO:0010804]; positive regulation of cholesterol efflux [GO:0010875]; positive regulation of peroxisome proliferator activated receptor signaling pathway [GO:0035360]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of fat cell differentiation [GO:0045598]; regulation of lipid metabolic process [GO:0019216]; regulation of transcription by RNA polymerase II [GO:0006357]; response to mitochondrial depolarisation [GO:0098780] -Q13253 reviewed NOGG_HUMAN Noggin NOG atrial cardiac muscle tissue morphogenesis [GO:0055009]; axial mesoderm development [GO:0048318]; BMP signaling pathway [GO:0030509]; cartilage development [GO:0051216]; cell differentiation in hindbrain [GO:0021533]; cranial skeletal system development [GO:1904888]; dorsal/ventral pattern formation [GO:0009953]; embryonic digit morphogenesis [GO:0042733]; embryonic skeletal joint morphogenesis [GO:0060272]; embryonic skeletal system development [GO:0048706]; endocardial cushion formation [GO:0003272]; endoderm formation [GO:0001706]; epithelial cell proliferation [GO:0050673]; epithelial to mesenchymal transition [GO:0001837]; exploration behavior [GO:0035640]; face morphogenesis [GO:0060325]; fibroblast growth factor receptor signaling pathway [GO:0008543]; heart trabecula morphogenesis [GO:0061384]; in utero embryonic development [GO:0001701]; limb development [GO:0060173]; long-term synaptic potentiation [GO:0060291]; lung morphogenesis [GO:0060425]; membranous septum morphogenesis [GO:0003149]; mesoderm formation [GO:0001707]; middle ear morphogenesis [GO:0042474]; motor neuron axon guidance [GO:0008045]; negative regulation of apoptotic signaling pathway [GO:2001234]; negative regulation of astrocyte differentiation [GO:0048712]; negative regulation of BMP signaling pathway [GO:0030514]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cardiac epithelial to mesenchymal transition [GO:0062044]; negative regulation of cardiac muscle cell proliferation [GO:0060044]; negative regulation of cartilage development [GO:0061037]; negative regulation of cell migration [GO:0030336]; negative regulation of cytokine activity [GO:0060302]; negative regulation of gene expression [GO:0010629]; negative regulation of osteoblast differentiation [GO:0045668]; negative regulation of SMAD protein signal transduction [GO:0060392]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system development [GO:0007399]; neural plate anterior/posterior regionalization [GO:0021999]; neural plate morphogenesis [GO:0001839]; neural tube closure [GO:0001843]; nodal signaling pathway [GO:0038092]; notochord morphogenesis [GO:0048570]; osteoblast differentiation [GO:0001649]; outflow tract morphogenesis [GO:0003151]; pharyngeal arch artery morphogenesis [GO:0061626]; pituitary gland development [GO:0021983]; positive regulation of branching involved in ureteric bud morphogenesis [GO:0090190]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of gene expression [GO:0010628]; positive regulation of glomerulus development [GO:0090193]; positive regulation of transcription by RNA polymerase II [GO:0045944]; presynaptic modulation of chemical synaptic transmission [GO:0099171]; prostatic bud formation [GO:0060513]; regulation of fibroblast growth factor receptor signaling pathway [GO:0040036]; regulation of neuronal synaptic plasticity [GO:0048168]; short-term synaptic potentiation [GO:1990926]; skeletal system development [GO:0001501]; smoothened signaling pathway [GO:0007224]; somatic stem cell population maintenance [GO:0035019]; somite development [GO:0061053]; spinal cord development [GO:0021510]; stem cell differentiation [GO:0048863]; ureteric bud formation [GO:0060676]; ventricular compact myocardium morphogenesis [GO:0003223]; ventricular septum morphogenesis [GO:0060412]; visual learning [GO:0008542]; wound healing [GO:0042060] -Q13285 reviewed STF1_HUMAN Steroidogenic factor 1 (SF-1) (STF-1) (hSF-1) (Adrenal 4-binding protein) (Fushi tarazu factor homolog 1) (Nuclear receptor subfamily 5 group A member 1) (Steroid hormone receptor Ad4BP) NR5A1 AD4BP FTZF1 SF1 adrenal gland development [GO:0030325]; female gonad development [GO:0008585]; hormone metabolic process [GO:0042445]; hormone-mediated signaling pathway [GO:0009755]; Leydig cell differentiation [GO:0033327]; luteinization [GO:0001553]; maintenance of protein location in nucleus [GO:0051457]; male gonad development [GO:0008584]; male sex determination [GO:0030238]; negative regulation of female gonad development [GO:2000195]; positive regulation of gene expression [GO:0010628]; positive regulation of male gonad development [GO:2000020]; positive regulation of transcription by RNA polymerase II [GO:0045944]; primary sex determination [GO:0007538]; regulation of steroid biosynthetic process [GO:0050810]; regulation of transcription by RNA polymerase II [GO:0006357]; Sertoli cell differentiation [GO:0060008]; sex determination [GO:0007530]; tissue development [GO:0009888] -Q13315 reviewed ATM_HUMAN Serine-protein kinase ATM (EC 2.7.11.1) (Ataxia telangiectasia mutated) (A-T mutated) ATM brain development [GO:0007420]; cellular response to gamma radiation [GO:0071480]; cellular response to nitrosative stress [GO:0071500]; cellular response to reactive oxygen species [GO:0034614]; cellular response to retinoic acid [GO:0071300]; cellular response to X-ray [GO:0071481]; cellular senescence [GO:0090398]; determination of adult lifespan [GO:0008340]; DNA damage checkpoint signaling [GO:0000077]; DNA damage response [GO:0006974]; DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest [GO:0006977]; DNA double-strand break processing [GO:0000729]; double-strand break repair [GO:0006302]; double-strand break repair via homologous recombination [GO:0000724]; double-strand break repair via nonhomologous end joining [GO:0006303]; establishment of protein-containing complex localization to telomere [GO:0097695]; establishment of RNA localization to telomere [GO:0097694]; female meiotic nuclear division [GO:0007143]; heart development [GO:0007507]; histone mRNA catabolic process [GO:0071044]; intrinsic apoptotic signaling pathway in response to DNA damage [GO:0008630]; lipoprotein catabolic process [GO:0042159]; male meiotic nuclear division [GO:0007140]; meiotic telomere clustering [GO:0045141]; mitotic G2 DNA damage checkpoint signaling [GO:0007095]; mitotic spindle assembly checkpoint signaling [GO:0007094]; multicellular organism growth [GO:0035264]; negative regulation of B cell proliferation [GO:0030889]; negative regulation of telomere capping [GO:1904354]; negative regulation of TORC1 signaling [GO:1904262]; neuron apoptotic process [GO:0051402]; oocyte development [GO:0048599]; ovarian follicle development [GO:0001541]; peptidyl-serine autophosphorylation [GO:0036289]; peptidyl-serine phosphorylation [GO:0018105]; pexophagy [GO:0000425]; positive regulation of apoptotic process [GO:0043065]; positive regulation of cell adhesion [GO:0045785]; positive regulation of cell migration [GO:0030335]; positive regulation of DNA catabolic process [GO:1903626]; positive regulation of DNA damage response, signal transduction by p53 class mediator [GO:0043517]; positive regulation of gene expression [GO:0010628]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of telomerase catalytic core complex assembly [GO:1904884]; positive regulation of telomere maintenance via telomerase [GO:0032212]; positive regulation of telomere maintenance via telomere lengthening [GO:1904358]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-embryonic development [GO:0009791]; pre-B cell allelic exclusion [GO:0002331]; protein autophosphorylation [GO:0046777]; protein phosphorylation [GO:0006468]; reciprocal meiotic recombination [GO:0007131]; regulation of apoptotic process [GO:0042981]; regulation of autophagosome assembly [GO:2000785]; regulation of autophagy [GO:0010506]; regulation of cell cycle [GO:0051726]; regulation of cellular response to heat [GO:1900034]; regulation of microglial cell activation [GO:1903978]; regulation of signal transduction by p53 class mediator [GO:1901796]; regulation of telomere maintenance via telomerase [GO:0032210]; replicative senescence [GO:0090399]; response to hypoxia [GO:0001666]; response to ionizing radiation [GO:0010212]; signal transduction [GO:0007165]; signal transduction in response to DNA damage [GO:0042770]; somitogenesis [GO:0001756]; telomere maintenance [GO:0000723]; thymus development [GO:0048538]; V(D)J recombination [GO:0033151] -Q13467 reviewed FZD5_HUMAN Frizzled-5 (Fz-5) (hFz5) (FzE5) FZD5 C2orf31 angiogenesis [GO:0001525]; anterior/posterior axis specification, embryo [GO:0008595]; apoptotic process involved in morphogenesis [GO:0060561]; branching involved in labyrinthine layer morphogenesis [GO:0060670]; canonical Wnt signaling pathway [GO:0060070]; cellular response to molecule of bacterial origin [GO:0071219]; chorionic trophoblast cell differentiation [GO:0060718]; embryonic axis specification [GO:0000578]; embryonic camera-type eye morphogenesis [GO:0048596]; glandular epithelial cell maturation [GO:0002071]; intestinal epithelial cell maturation [GO:0060574]; labyrinthine layer blood vessel development [GO:0060716]; negative regulation of cell population proliferation [GO:0008285]; neuron differentiation [GO:0030182]; non-canonical Wnt signaling pathway [GO:0035567]; positive regulation of interleukin-1 beta production [GO:0032731]; positive regulation of protein targeting to mitochondrion [GO:1903955]; positive regulation of T cell cytokine production [GO:0002726]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of type II interferon production [GO:0032729]; post-embryonic camera-type eye development [GO:0031077]; regulation of bicellular tight junction assembly [GO:2000810]; regulation of chorionic trophoblast cell proliferation [GO:1901382]; regulation of mitophagy [GO:1901524]; Spemann organizer formation [GO:0060061]; synapse assembly [GO:0007416]; syncytiotrophoblast cell differentiation involved in labyrinthine layer development [GO:0060715]; T cell differentiation in thymus [GO:0033077] -Q13469 reviewed NFAC2_HUMAN Nuclear factor of activated T-cells, cytoplasmic 2 (NF-ATc2) (NFATc2) (NFAT pre-existing subunit) (NF-ATp) (T-cell transcription factor NFAT1) NFATC2 NFAT1 NFATP B cell receptor signaling pathway [GO:0050853]; calcineurin-NFAT signaling cascade [GO:0033173]; cartilage development [GO:0051216]; cell migration [GO:0016477]; cellular response to calcium ion [GO:0071277]; DNA damage response [GO:0006974]; myotube cell development [GO:0014904]; negative regulation of vascular associated smooth muscle cell differentiation [GO:1905064]; positive regulation of B cell proliferation [GO:0030890]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of myoblast fusion [GO:1901741]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; response to xenobiotic stimulus [GO:0009410]; transcription by RNA polymerase II [GO:0006366] -Q13485 reviewed SMAD4_HUMAN Mothers against decapentaplegic homolog 4 (MAD homolog 4) (Mothers against DPP homolog 4) (Deletion target in pancreatic carcinoma 4) (SMAD family member 4) (SMAD 4) (Smad4) (hSMAD4) SMAD4 DPC4 MADH4 activin receptor signaling pathway [GO:0032924]; adrenal gland development [GO:0030325]; anatomical structure morphogenesis [GO:0009653]; atrioventricular canal development [GO:0036302]; atrioventricular valve formation [GO:0003190]; axon guidance [GO:0007411]; BMP signaling pathway [GO:0030509]; brainstem development [GO:0003360]; branching involved in ureteric bud morphogenesis [GO:0001658]; cardiac conduction system development [GO:0003161]; cardiac muscle hypertrophy in response to stress [GO:0014898]; cell differentiation [GO:0030154]; cell population proliferation [GO:0008283]; cellular response to BMP stimulus [GO:0071773]; cellular response to glucose stimulus [GO:0071333]; cellular response to transforming growth factor beta stimulus [GO:0071560]; developmental growth [GO:0048589]; DNA-templated transcription [GO:0006351]; embryonic digit morphogenesis [GO:0042733]; endocardial cell differentiation [GO:0060956]; endothelial cell activation [GO:0042118]; epithelial cell migration [GO:0010631]; epithelial to mesenchymal transition [GO:0001837]; epithelial to mesenchymal transition involved in endocardial cushion formation [GO:0003198]; ERK1 and ERK2 cascade [GO:0070371]; extrinsic apoptotic signaling pathway [GO:0097191]; female gonad morphogenesis [GO:0061040]; formation of anatomical boundary [GO:0048859]; gastrulation with mouth forming second [GO:0001702]; in utero embryonic development [GO:0001701]; interleukin-6-mediated signaling pathway [GO:0070102]; intracellular iron ion homeostasis [GO:0006879]; intracellular signal transduction [GO:0035556]; left ventricular cardiac muscle tissue morphogenesis [GO:0003220]; mesendoderm development [GO:0048382]; metanephric mesenchyme morphogenesis [GO:0072133]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cardiac muscle hypertrophy [GO:0010614]; negative regulation of cardiac myofibril assembly [GO:1905305]; negative regulation of cell growth [GO:0030308]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of ERK1 and ERK2 cascade [GO:0070373]; negative regulation of protein catabolic process [GO:0042177]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nephrogenic mesenchyme morphogenesis [GO:0072134]; neural crest cell differentiation [GO:0014033]; neuron fate specification [GO:0048665]; osteoblast differentiation [GO:0001649]; outflow tract septum morphogenesis [GO:0003148]; ovarian follicle development [GO:0001541]; positive regulation of cardiac muscle cell apoptotic process [GO:0010666]; positive regulation of cell proliferation involved in heart valve morphogenesis [GO:0003251]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of extracellular matrix assembly [GO:1901203]; positive regulation of follicle-stimulating hormone secretion [GO:0046881]; positive regulation of gene expression [GO:0010628]; positive regulation of luteinizing hormone secretion [GO:0033686]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta receptor signaling pathway [GO:0030511]; regulation of DNA-templated transcription [GO:0006355]; regulation of hair follicle development [GO:0051797]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of transforming growth factor beta2 production [GO:0032909]; response to hypoxia [GO:0001666]; response to transforming growth factor beta [GO:0071559]; sebaceous gland development [GO:0048733]; secondary palate development [GO:0062009]; seminiferous tubule development [GO:0072520]; single fertilization [GO:0007338]; SMAD protein signal transduction [GO:0060395]; somite rostral/caudal axis specification [GO:0032525]; spermatogenesis [GO:0007283]; transcription by RNA polymerase II [GO:0006366]; transforming growth factor beta receptor signaling pathway [GO:0007179]; uterus development [GO:0060065]; ventricular septum morphogenesis [GO:0060412] -Q13501 reviewed SQSTM_HUMAN Sequestosome-1 (EBI3-associated protein of 60 kDa) (EBIAP) (p60) (Phosphotyrosine-independent ligand for the Lck SH2 domain of 62 kDa) (Ubiquitin-binding protein p62) SQSTM1 ORCA OSIL aggrephagy [GO:0035973]; apoptotic process [GO:0006915]; autophagy [GO:0006914]; autophagy of mitochondrion [GO:0000422]; brown fat cell proliferation [GO:0070342]; cell differentiation [GO:0030154]; endosomal transport [GO:0016197]; endosome organization [GO:0007032]; energy homeostasis [GO:0097009]; immune system process [GO:0002376]; intracellular signal transduction [GO:0035556]; macroautophagy [GO:0016236]; mitophagy [GO:0000423]; negative regulation of ferroptosis [GO:0110076]; negative regulation of protein ubiquitination [GO:0031397]; negative regulation of toll-like receptor 4 signaling pathway [GO:0034144]; negative regulation of transcription by RNA polymerase II [GO:0000122]; non-membrane-bounded organelle assembly [GO:0140694]; pexophagy [GO:0000425]; positive regulation of apoptotic process [GO:0043065]; positive regulation of autophagy [GO:0010508]; positive regulation of long-term synaptic potentiation [GO:1900273]; positive regulation of protein localization to plasma membrane [GO:1903078]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein catabolic process [GO:0030163]; protein import into nucleus [GO:0006606]; protein localization [GO:0008104]; protein localization to perinuclear region of cytoplasm [GO:1905719]; protein targeting to vacuole involved in autophagy [GO:0071211]; regulation of canonical NF-kappaB signal transduction [GO:0043122]; regulation of mitochondrion organization [GO:0010821]; regulation of protein complex stability [GO:0061635]; regulation of Ras protein signal transduction [GO:0046578]; response to ischemia [GO:0002931]; response to mitochondrial depolarisation [GO:0098780]; temperature homeostasis [GO:0001659]; transcription by RNA polymerase II [GO:0006366]; ubiquitin-dependent protein catabolic process [GO:0006511] -Q13503 reviewed MED21_HUMAN Mediator of RNA polymerase II transcription subunit 21 (Mediator complex subunit 21) (RNA polymerase II holoenzyme component SRB7) (RNAPII complex component SRB7) (hSrb7) MED21 SRB7 SURB7 blastocyst development [GO:0001824]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; protein ubiquitination [GO:0016567]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA polymerase II preinitiation complex assembly [GO:0051123]; somatic stem cell population maintenance [GO:0035019] -Q13516 reviewed OLIG2_HUMAN Oligodendrocyte transcription factor 2 (Oligo2) (Class B basic helix-loop-helix protein 1) (bHLHb1) (Class E basic helix-loop-helix protein 19) (bHLHe19) (Protein kinase C-binding protein 2) (Protein kinase C-binding protein RACK17) OLIG2 BHLHB1 BHLHE19 PRKCBP2 RACK17 axon development [GO:0061564]; myelination [GO:0042552]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron fate commitment [GO:0048663]; positive regulation of oligodendrocyte differentiation [GO:0048714]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sensory organ development [GO:0007423]; spinal cord motor neuron differentiation [GO:0021522]; spinal cord oligodendrocyte cell fate specification [GO:0021530]; thalamus development [GO:0021794] -Q13526 reviewed PIN1_HUMAN Peptidyl-prolyl cis-trans isomerase NIMA-interacting 1 (EC 5.2.1.8) (Peptidyl-prolyl cis-trans isomerase Pin1) (PPIase Pin1) (Rotamase Pin1) PIN1 negative regulation of amyloid-beta formation [GO:1902430]; negative regulation of cell motility [GO:2000146]; negative regulation of ERK1 and ERK2 cascade [GO:0070373]; negative regulation of protein binding [GO:0032091]; negative regulation of protein catabolic process [GO:0042177]; negative regulation of SMAD protein signal transduction [GO:0060392]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; neuron differentiation [GO:0030182]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of GTPase activity [GO:0043547]; positive regulation of protein binding [GO:0032092]; positive regulation of protein dephosphorylation [GO:0035307]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein peptidyl-prolyl isomerization [GO:0000413]; protein stabilization [GO:0050821]; regulation of cytokinesis [GO:0032465]; regulation of gene expression [GO:0010468]; regulation of mitotic nuclear division [GO:0007088]; regulation of protein localization to nucleus [GO:1900180]; regulation of protein phosphorylation [GO:0001932]; regulation of protein stability [GO:0031647]; response to hypoxia [GO:0001666]; synapse organization [GO:0050808] -Q13546 reviewed RIPK1_HUMAN Receptor-interacting serine/threonine-protein kinase 1 (EC 2.7.11.1) (Cell death protein RIP) (Receptor-interacting protein 1) (RIP-1) RIPK1 RIP RIP1 amyloid fibril formation [GO:1990000]; apoptotic process [GO:0006915]; cellular response to growth factor stimulus [GO:0071363]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to tumor necrosis factor [GO:0071356]; extrinsic apoptotic signaling pathway [GO:0097191]; inflammatory response [GO:0006954]; intracellular signal transduction [GO:0035556]; necroptotic process [GO:0070266]; necroptotic signaling pathway [GO:0097527]; negative regulation of apoptotic process [GO:0043066]; negative regulation of canonical NF-kappaB signal transduction [GO:0043124]; negative regulation of extrinsic apoptotic signaling pathway [GO:2001237]; negative regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001240]; negative regulation of necroptotic process [GO:0060546]; peptidyl-serine autophosphorylation [GO:0036289]; positive regulation of apoptotic process [GO:0043065]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of execution phase of apoptosis [GO:1900119]; positive regulation of extrinsic apoptotic signaling pathway [GO:2001238]; positive regulation of gene expression [GO:0010628]; positive regulation of inflammatory response [GO:0050729]; positive regulation of interleukin-6-mediated signaling pathway [GO:0070105]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of JNK cascade [GO:0046330]; positive regulation of macrophage differentiation [GO:0045651]; positive regulation of miRNA processing [GO:1903800]; positive regulation of necroptotic process [GO:0060545]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of programmed cell death [GO:0043068]; positive regulation of programmed necrotic cell death [GO:0062100]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of reactive oxygen species metabolic process [GO:2000379]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of tumor necrosis factor-mediated signaling pathway [GO:1903265]; programmed necrotic cell death [GO:0097300]; protein autophosphorylation [GO:0046777]; protein catabolic process [GO:0030163]; regulation of ATP:ADP antiporter activity [GO:0070926]; response to oxidative stress [GO:0006979]; response to tumor necrosis factor [GO:0034612]; ripoptosome assembly [GO:0097343]; ripoptosome assembly involved in necroptotic process [GO:1901026]; T cell apoptotic process [GO:0070231]; tumor necrosis factor-mediated signaling pathway [GO:0033209] -Q13547 reviewed HDAC1_HUMAN Histone deacetylase 1 (HD1) (EC 3.5.1.98) (Protein deacetylase HDAC1) (EC 3.5.1.-) (Protein decrotonylase HDAC1) (EC 3.5.1.-) HDAC1 RPD3L1 cellular response to platelet-derived growth factor stimulus [GO:0036120]; chromatin organization [GO:0006325]; chromatin remodeling [GO:0006338]; circadian regulation of gene expression [GO:0032922]; DNA methylation-dependent heterochromatin formation [GO:0006346]; embryonic digit morphogenesis [GO:0042733]; endoderm development [GO:0007492]; epidermal cell differentiation [GO:0009913]; eyelid development in camera-type eye [GO:0061029]; fungiform papilla formation [GO:0061198]; hair follicle placode formation [GO:0060789]; heterochromatin formation [GO:0031507]; hippocampus development [GO:0021766]; negative regulation by host of viral transcription [GO:0043922]; negative regulation of androgen receptor signaling pathway [GO:0060766]; negative regulation of apoptotic process [GO:0043066]; negative regulation of canonical NF-kappaB signal transduction [GO:0043124]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cell migration [GO:0030336]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of gene expression [GO:0010629]; negative regulation of gene expression, epigenetic [GO:0045814]; negative regulation of intrinsic apoptotic signaling pathway [GO:2001243]; negative regulation of stem cell population maintenance [GO:1902455]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; neuron differentiation [GO:0030182]; odontogenesis of dentin-containing tooth [GO:0042475]; oligodendrocyte differentiation [GO:0048709]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of oligodendrocyte differentiation [GO:0048714]; positive regulation of signaling receptor activity [GO:2000273]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of stem cell population maintenance [GO:1902459]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein deacetylation [GO:0006476]; regulation of cell fate specification [GO:0042659]; regulation of stem cell differentiation [GO:2000736]; regulation of transcription by RNA polymerase II [GO:0006357] -Q13562 reviewed NDF1_HUMAN Neurogenic differentiation factor 1 (NeuroD) (NeuroD1) (Class A basic helix-loop-helix protein 3) (bHLHa3) NEUROD1 BHLHA3 NEUROD amacrine cell differentiation [GO:0035881]; anterior/posterior pattern specification [GO:0009952]; axon development [GO:0061564]; cell surface receptor signaling pathway via JAK-STAT [GO:0007259]; cellular response to glucose stimulus [GO:0071333]; cerebellum development [GO:0021549]; dentate gyrus development [GO:0021542]; embryonic organ morphogenesis [GO:0048562]; endocrine pancreas development [GO:0031018]; enteroendocrine cell differentiation [GO:0035883]; glucose homeostasis [GO:0042593]; inner ear development [GO:0048839]; insulin secretion [GO:0030073]; negative regulation of receptor signaling pathway via JAK-STAT [GO:0046426]; negative regulation of type B pancreatic cell apoptotic process [GO:2000675]; neurogenesis [GO:0022008]; nucleocytoplasmic transport [GO:0006913]; pancreatic A cell fate commitment [GO:0003326]; pancreatic PP cell fate commitment [GO:0003329]; positive regulation of apoptotic process [GO:0043065]; positive regulation of cell differentiation [GO:0045597]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription regulatory region DNA binding [GO:2000679]; regulation of insulin secretion [GO:0050796]; regulation of intestinal epithelial structure maintenance [GO:0060730]; response to glucose [GO:0009749]; response to xenobiotic stimulus [GO:0009410]; sensory organ development [GO:0007423]; signal transduction involved in regulation of gene expression [GO:0023019]; transcription by RNA polymerase II [GO:0006366] -Q13563 reviewed PKD2_HUMAN Polycystin-2 (PC2) (Autosomal dominant polycystic kidney disease type II protein) (Polycystic kidney disease 2 protein) (Polycystwin) (R48321) (Transient receptor potential cation channel subfamily P member 2) PKD2 TRPP2 aorta development [GO:0035904]; branching involved in ureteric bud morphogenesis [GO:0001658]; calcium ion transmembrane transport [GO:0070588]; calcium ion transport [GO:0006816]; cell surface receptor signaling pathway [GO:0007166]; cell surface receptor signaling pathway via JAK-STAT [GO:0007259]; cellular response to calcium ion [GO:0071277]; cellular response to cAMP [GO:0071320]; cellular response to fluid shear stress [GO:0071498]; cellular response to hydrostatic pressure [GO:0071464]; cellular response to osmotic stress [GO:0071470]; cellular response to reactive oxygen species [GO:0034614]; centrosome duplication [GO:0051298]; cilium organization [GO:0044782]; detection of mechanical stimulus [GO:0050982]; detection of nodal flow [GO:0003127]; determination of left/right symmetry [GO:0007368]; determination of liver left/right asymmetry [GO:0071910]; embryonic placenta development [GO:0001892]; establishment of localization in cell [GO:0051649]; heart development [GO:0007507]; heart looping [GO:0001947]; inorganic cation transmembrane transport [GO:0098662]; intracellular calcium ion homeostasis [GO:0006874]; liver development [GO:0001889]; mesonephric duct development [GO:0072177]; mesonephric tubule development [GO:0072164]; metanephric ascending thin limb development [GO:0072218]; metanephric cortex development [GO:0072214]; metanephric cortical collecting duct development [GO:0072219]; metanephric distal tubule development [GO:0072235]; metanephric mesenchyme development [GO:0072075]; metanephric part of ureteric bud development [GO:0035502]; metanephric S-shaped body morphogenesis [GO:0072284]; metanephric smooth muscle tissue development [GO:0072208]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of G1/S transition of mitotic cell cycle [GO:2000134]; negative regulation of ryanodine-sensitive calcium-release channel activity [GO:0060315]; neural tube development [GO:0021915]; placenta blood vessel development [GO:0060674]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of gene expression [GO:0010628]; positive regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity [GO:0031587]; positive regulation of nitric oxide biosynthetic process [GO:0045429]; positive regulation of transcription by RNA polymerase II [GO:0045944]; potassium ion transmembrane transport [GO:0071805]; protein heterotetramerization [GO:0051290]; protein homotetramerization [GO:0051289]; protein tetramerization [GO:0051262]; regulation of calcium ion import [GO:0090279]; regulation of cell cycle [GO:0051726]; regulation of cell population proliferation [GO:0042127]; release of sequestered calcium ion into cytosol [GO:0051209]; renal artery morphogenesis [GO:0061441]; renal tubule morphogenesis [GO:0061333]; sodium ion transmembrane transport [GO:0035725]; spinal cord development [GO:0021510]; Wnt signaling pathway [GO:0016055] -Q13568 reviewed IRF5_HUMAN Interferon regulatory factor 5 (IRF-5) IRF5 cellular response to virus [GO:0098586]; cytokine-mediated signaling pathway [GO:0019221]; defense response to virus [GO:0051607]; immune system process [GO:0002376]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; positive regulation of apoptotic process [GO:0043065]; positive regulation of cytokine production involved in immune response [GO:0002720]; positive regulation of interferon-alpha production [GO:0032727]; positive regulation of interferon-beta production [GO:0032728]; positive regulation of interleukin-12 production [GO:0032735]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type I interferon production [GO:0032481]; regulation of transcription by RNA polymerase II [GO:0006357]; response to muramyl dipeptide [GO:0032495]; response to peptidoglycan [GO:0032494] -Q13573 reviewed SNW1_HUMAN SNW domain-containing protein 1 (Nuclear protein SkiP) (Nuclear receptor coactivator NCoA-62) (Ski-interacting protein) SNW1 SKIIP SKIP cellular response to retinoic acid [GO:0071300]; intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:0042771]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation by host of viral transcription [GO:0043923]; positive regulation of mRNA splicing, via spliceosome [GO:0048026]; positive regulation of neurogenesis [GO:0050769]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta receptor signaling pathway [GO:0030511]; positive regulation of vitamin D receptor signaling pathway [GO:0070564]; regulation of retinoic acid receptor signaling pathway [GO:0048385]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of vitamin D receptor signaling pathway [GO:0070562]; retinoic acid receptor signaling pathway [GO:0048384] -Q13765 reviewed NACA_HUMAN Nascent polypeptide-associated complex subunit alpha (NAC-alpha) (Alpha-NAC) (allergen Hom s 2) NACA HSD48 cardiac ventricle development [GO:0003231]; heart trabecula morphogenesis [GO:0061384]; negative regulation of protein localization to endoplasmic reticulum [GO:1905551]; negative regulation of striated muscle cell apoptotic process [GO:0010664]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of cell proliferation involved in heart morphogenesis [GO:2000138]; positive regulation of skeletal muscle tissue growth [GO:0048633]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein transport [GO:0015031]; regulation of skeletal muscle fiber development [GO:0048742]; skeletal muscle tissue regeneration [GO:0043403]; translation [GO:0006412]; wound healing [GO:0042060] -Q13873 reviewed BMPR2_HUMAN Bone morphogenetic protein receptor type-2 (BMP type-2 receptor) (BMPR-2) (EC 2.7.11.30) (Bone morphogenetic protein receptor type II) (BMP type II receptor) (BMPR-II) BMPR2 PPH1 anterior/posterior pattern specification [GO:0009952]; aortic valve development [GO:0003176]; artery development [GO:0060840]; atrial septum morphogenesis [GO:0060413]; blood vessel development [GO:0001568]; blood vessel remodeling [GO:0001974]; BMP signaling pathway [GO:0030509]; cell surface receptor protein serine/threonine kinase signaling pathway [GO:0007178]; cellular response to BMP stimulus [GO:0071773]; cellular response to growth factor stimulus [GO:0071363]; cellular response to starvation [GO:0009267]; chondrocyte development [GO:0002063]; endocardial cushion development [GO:0003197]; endochondral bone morphogenesis [GO:0060350]; endothelial cell apoptotic process [GO:0072577]; endothelial cell proliferation [GO:0001935]; limb development [GO:0060173]; lung alveolus development [GO:0048286]; lung vasculature development [GO:0060426]; lymphangiogenesis [GO:0001946]; lymphatic endothelial cell differentiation [GO:0060836]; maternal placenta development [GO:0001893]; mesoderm formation [GO:0001707]; mitral valve morphogenesis [GO:0003183]; negative regulation of cell growth [GO:0030308]; negative regulation of cell proliferation involved in heart valve morphogenesis [GO:0003252]; negative regulation of chondrocyte proliferation [GO:1902731]; negative regulation of muscle cell differentiation [GO:0051148]; negative regulation of smooth muscle cell proliferation [GO:0048662]; negative regulation of systemic arterial blood pressure [GO:0003085]; negative regulation of vasoconstriction [GO:0045906]; osteoblast differentiation [GO:0001649]; outflow tract morphogenesis [GO:0003151]; positive regulation of axon extension involved in axon guidance [GO:0048842]; positive regulation of bone mineralization [GO:0030501]; positive regulation of cartilage development [GO:0061036]; positive regulation of epithelial cell migration [GO:0010634]; positive regulation of gene expression [GO:0010628]; positive regulation of ossification [GO:0045778]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proteoglycan biosynthetic process [GO:0030166]; pulmonary valve development [GO:0003177]; regulation of cell population proliferation [GO:0042127]; regulation of lung blood pressure [GO:0014916]; retina vasculature development in camera-type eye [GO:0061298]; semi-lunar valve development [GO:1905314]; tricuspid valve morphogenesis [GO:0003186]; venous blood vessel development [GO:0060841]; ventricular septum morphogenesis [GO:0060412] -Q13887 reviewed KLF5_HUMAN Krueppel-like factor 5 (Basic transcription element-binding protein 2) (BTE-binding protein 2) (Colon krueppel-like factor) (GC-box-binding protein 2) (Intestinal-enriched krueppel-like factor) (Transcription factor BTEB2) KLF5 BTEB2 CKLF IKLF angiogenesis [GO:0001525]; cell-cell signaling via exosome [GO:0099156]; cellular response to leukemia inhibitory factor [GO:1990830]; intestinal epithelial cell development [GO:0060576]; microvillus assembly [GO:0030033]; myotube differentiation involved in skeletal muscle regeneration [GO:0014908]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of fat cell differentiation [GO:0045600]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription by transcription factor localization [GO:0061586]; regulation of microvillus assembly [GO:0032534]; regulation of transcription by RNA polymerase II [GO:0006357]; satellite cell activation involved in skeletal muscle regeneration [GO:0014901]; skeletal muscle satellite cell differentiation [GO:0014816] -Q13950 reviewed RUNX2_HUMAN Runt-related transcription factor 2 (Acute myeloid leukemia 3 protein) (Core-binding factor subunit alpha-1) (CBF-alpha-1) (Oncogene AML-3) (Osteoblast-specific transcription factor 2) (OSF-2) (Polyomavirus enhancer-binding protein 2 alpha A subunit) (PEA2-alpha A) (PEBP2-alpha A) (SL3-3 enhancer factor 1 alpha A subunit) (SL3/AKV core-binding factor alpha A subunit) RUNX2 AML3 CBFA1 OSF2 PEBP2A BMP signaling pathway [GO:0030509]; bone mineralization [GO:0030282]; cell maturation [GO:0048469]; chondrocyte development [GO:0002063]; chondrocyte differentiation [GO:0002062]; embryonic cranial skeleton morphogenesis [GO:0048701]; embryonic forelimb morphogenesis [GO:0035115]; endochondral ossification [GO:0001958]; epithelial cell proliferation [GO:0050673]; gene expression [GO:0010467]; hemopoiesis [GO:0030097]; ligamentous ossification [GO:0036076]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of smoothened signaling pathway [GO:0045879]; neuron differentiation [GO:0030182]; odontogenesis of dentin-containing tooth [GO:0042475]; ossification [GO:0001503]; osteoblast development [GO:0002076]; osteoblast differentiation [GO:0001649]; osteoblast fate commitment [GO:0002051]; positive regulation of chondrocyte differentiation [GO:0032332]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of gene expression [GO:0010628]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell differentiation [GO:0045595]; regulation of fibroblast growth factor receptor signaling pathway [GO:0040036]; regulation of odontogenesis of dentin-containing tooth [GO:0042487]; regulation of ossification [GO:0030278]; regulation of transcription by RNA polymerase II [GO:0006357]; response to sodium phosphate [GO:1904383]; SMAD protein signal transduction [GO:0060395]; smoothened signaling pathway [GO:0007224]; stem cell differentiation [GO:0048863]; stem cell proliferation [GO:0072089]; T cell differentiation [GO:0030217] -Q13951 reviewed PEBB_HUMAN Core-binding factor subunit beta (CBF-beta) (Polyomavirus enhancer-binding protein 2 beta subunit) (PEA2-beta) (PEBP2-beta) (SL3-3 enhancer factor 1 subunit beta) (SL3/AKV core-binding factor beta subunit) CBFB cell maturation [GO:0048469]; definitive hemopoiesis [GO:0060216]; lymphocyte differentiation [GO:0030098]; myeloid cell differentiation [GO:0030099]; negative regulation of CD4-positive, alpha-beta T cell differentiation [GO:0043371]; negative regulation of transcription by RNA polymerase II [GO:0000122]; osteoblast differentiation [GO:0001649]; positive regulation of CD8-positive, alpha-beta T cell differentiation [GO:0043378]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein polyubiquitination [GO:0000209]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription by RNA polymerase II [GO:0006366] -Q13952 reviewed NFYC_HUMAN Nuclear transcription factor Y subunit gamma (CAAT box DNA-binding protein subunit C) (Nuclear transcription factor Y subunit C) (NF-YC) (Transactivator HSM-1/2) NFYC positive regulation of transcription by RNA polymerase II [GO:0045944]; protein folding [GO:0006457]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357] -Q14004 reviewed CDK13_HUMAN Cyclin-dependent kinase 13 (EC 2.7.11.22) (EC 2.7.11.23) (CDC2-related protein kinase 5) (Cell division cycle 2-like protein kinase 5) (Cell division protein kinase 13) (hCDK13) (Cholinesterase-related cell division controller) CDK13 CDC2L CDC2L5 CHED KIAA1791 alternative mRNA splicing, via spliceosome [GO:0000380]; hemopoiesis [GO:0030097]; negative regulation of stem cell differentiation [GO:2000737]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; regulation of signal transduction [GO:0009966] -Q14012 reviewed KCC1A_HUMAN Calcium/calmodulin-dependent protein kinase type 1 (EC 2.7.11.17) (CaM kinase I) (CaM-KI) (CaM kinase I alpha) (CaMKI-alpha) CAMK1 cell differentiation [GO:0030154]; intracellular signal transduction [GO:0035556]; negative regulation of protein binding [GO:0032091]; nervous system development [GO:0007399]; nucleocytoplasmic transport [GO:0006913]; positive regulation of dendritic spine development [GO:0060999]; positive regulation of muscle cell differentiation [GO:0051149]; positive regulation of neuron projection development [GO:0010976]; positive regulation of protein export from nucleus [GO:0046827]; positive regulation of protein serine/threonine kinase activity [GO:0071902]; positive regulation of synapse structural plasticity [GO:0051835]; positive regulation of syncytium formation by plasma membrane fusion [GO:0060143]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein phosphorylation [GO:0006468]; regulation of muscle cell differentiation [GO:0051147]; regulation of protein binding [GO:0043393]; regulation of protein localization [GO:0032880]; signal transduction [GO:0007165] -Q14103 reviewed HNRPD_HUMAN Heterogeneous nuclear ribonucleoprotein D0 (hnRNP D0) (AU-rich element RNA-binding protein 1) HNRNPD AUF1 HNRPD 3'-UTR-mediated mRNA destabilization [GO:0061158]; cellular response to amino acid stimulus [GO:0071230]; cellular response to estradiol stimulus [GO:0071392]; cellular response to nitric oxide [GO:0071732]; cellular response to putrescine [GO:1904586]; cerebellum development [GO:0021549]; circadian regulation of translation [GO:0097167]; CRD-mediated mRNA stabilization [GO:0070934]; hepatocyte dedifferentiation [GO:1990828]; liver development [GO:0001889]; mRNA transcription by RNA polymerase II [GO:0042789]; negative regulation of gene expression [GO:0010629]; negative regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay [GO:1900152]; positive regulation of cytoplasmic translation [GO:2000767]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of telomerase RNA reverse transcriptase activity [GO:1905663]; positive regulation of telomere capping [GO:1904355]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of translation [GO:0045727]; regulation of circadian rhythm [GO:0042752]; regulation of DNA-templated transcription [GO:0006355]; regulation of gene expression [GO:0010468]; regulation of telomere maintenance [GO:0032204]; response to calcium ion [GO:0051592]; response to electrical stimulus [GO:0051602]; response to rapamycin [GO:1901355]; response to sodium phosphate [GO:1904383]; RNA catabolic process [GO:0006401]; RNA processing [GO:0006396] -Q14116 reviewed IL18_HUMAN Interleukin-18 (IL-18) (Iboctadekin) (Interferon gamma-inducing factor) (IFN-gamma-inducing factor) (Interleukin-1 gamma) (IL-1 gamma) IL18 IGIF IL1F4 angiogenesis [GO:0001525]; cell population proliferation [GO:0008283]; cell-cell signaling [GO:0007267]; cholesterol homeostasis [GO:0042632]; defense response to Gram-positive bacterium [GO:0050830]; establishment of skin barrier [GO:0061436]; inflammatory response [GO:0006954]; interleukin-18-mediated signaling pathway [GO:0035655]; natural killer cell activation [GO:0030101]; natural killer cell mediated cytotoxicity [GO:0042267]; negative regulation of myoblast differentiation [GO:0045662]; neutrophil activation [GO:0042119]; positive regulation of activated T cell proliferation [GO:0042104]; positive regulation of chemokine production [GO:0032722]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of granulocyte macrophage colony-stimulating factor production [GO:0032725]; positive regulation of inflammatory response [GO:0050729]; positive regulation of interleukin-13 production [GO:0032736]; positive regulation of interleukin-17 production [GO:0032740]; positive regulation of macrophage derived foam cell differentiation [GO:0010744]; positive regulation of natural killer cell proliferation [GO:0032819]; positive regulation of neuroinflammatory response [GO:0150078]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of NK T cell proliferation [GO:0051142]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of T-helper 1 cell cytokine production [GO:2000556]; positive regulation of T-helper 2 cell differentiation [GO:0045630]; positive regulation of tissue remodeling [GO:0034105]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type II interferon production [GO:0032729]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; regulation of cell adhesion [GO:0030155]; sleep [GO:0030431]; T-helper 1 type immune response [GO:0042088]; triglyceride homeostasis [GO:0070328]; type 2 immune response [GO:0042092] -Q14119 reviewed VEZF1_HUMAN Vascular endothelial zinc finger 1 (Putative transcription factor DB1) (Zinc finger protein 161) VEZF1 DB1 ZNF161 angiogenesis [GO:0001525]; cellular defense response [GO:0006968]; endothelial cell development [GO:0001885]; positive regulation of endothelial cell differentiation [GO:0045603]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q14186 reviewed TFDP1_HUMAN Transcription factor Dp-1 (DRTF1-polypeptide 1) (DRTF1) (E2F dimerization partner 1) TFDP1 DP1 anoikis [GO:0043276]; epidermis development [GO:0008544]; negative regulation of fat cell proliferation [GO:0070345]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA biosynthetic process [GO:2000278]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription by RNA polymerase II [GO:0006366] -Q14188 reviewed TFDP2_HUMAN Transcription factor Dp-2 (E2F dimerization partner 2) TFDP2 DP2 heart development [GO:0007507]; negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell cycle [GO:0051726]; regulation of transcription by RNA polymerase II [GO:0006357] -Q14207 reviewed NPAT_HUMAN Protein NPAT (Nuclear protein of the ataxia telangiectasia mutated locus) (Nuclear protein of the ATM locus) (p220) NPAT CAND3 E14 cell cycle G1/S phase transition [GO:0044843]; in utero embryonic development [GO:0001701]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q14209 reviewed E2F2_HUMAN Transcription factor E2F2 (E2F-2) E2F2 intrinsic apoptotic signaling pathway by p53 class mediator [GO:0072332]; lens fiber cell apoptotic process [GO:1990086]; negative regulation of sprouting angiogenesis [GO:1903671]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell cycle [GO:0051726]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription initiation at RNA polymerase II promoter [GO:0006367] -Q14469 reviewed HES1_HUMAN Transcription factor HES-1 (Class B basic helix-loop-helix protein 39) (bHLHb39) (Hairy and enhancer of split 1) (Hairy homolog) (Hairy-like protein) (hHL) HES1 BHLHB39 HL HRY adenohypophysis development [GO:0021984]; amacrine cell differentiation [GO:0035881]; anterior/posterior pattern specification [GO:0009952]; artery morphogenesis [GO:0048844]; ascending aorta morphogenesis [GO:0035910]; BMP signaling pathway [GO:0030509]; Cajal-Retzius cell differentiation [GO:0021870]; cardiac neural crest cell development involved in outflow tract morphogenesis [GO:0061309]; cell adhesion [GO:0007155]; cell fate determination [GO:0001709]; cell maturation [GO:0048469]; cell migration [GO:0016477]; cell morphogenesis involved in neuron differentiation [GO:0048667]; cellular response to fatty acid [GO:0071398]; cellular response to interleukin-1 [GO:0071347]; cellular response to nerve growth factor stimulus [GO:1990090]; cellular response to tumor necrosis factor [GO:0071356]; cochlea development [GO:0090102]; comma-shaped body morphogenesis [GO:0072049]; common bile duct development [GO:0061009]; embryonic heart tube morphogenesis [GO:0003143]; establishment of epithelial cell polarity [GO:0090162]; forebrain radial glial cell differentiation [GO:0021861]; glomerulus vasculature development [GO:0072012]; hindbrain morphogenesis [GO:0021575]; inner ear auditory receptor cell differentiation [GO:0042491]; inner ear receptor cell stereocilium organization [GO:0060122]; labyrinthine layer blood vessel development [GO:0060716]; lateral inhibition [GO:0046331]; liver development [GO:0001889]; lung development [GO:0030324]; metanephric nephron tubule morphogenesis [GO:0072282]; midbrain development [GO:0030901]; midbrain-hindbrain boundary morphogenesis [GO:0021555]; negative regulation of amacrine cell differentiation [GO:1902870]; negative regulation of calcium ion import [GO:0090281]; negative regulation of cell fate determination [GO:1905934]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of forebrain neuron differentiation [GO:2000978]; negative regulation of gene expression [GO:0010629]; negative regulation of glial cell proliferation [GO:0060253]; negative regulation of inner ear auditory receptor cell differentiation [GO:0045608]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of neuron projection development [GO:0010977]; negative regulation of oligodendrocyte differentiation [GO:0048715]; negative regulation of pancreatic A cell differentiation [GO:2000227]; negative regulation of pro-B cell differentiation [GO:2000974]; negative regulation of stem cell differentiation [GO:2000737]; negative regulation of stomach neuroendocrine cell differentiation [GO:0061106]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system development [GO:0007399]; neuronal stem cell population maintenance [GO:0097150]; Notch signaling pathway [GO:0007219]; oculomotor nerve development [GO:0021557]; outflow tract morphogenesis [GO:0003151]; pancreatic A cell differentiation [GO:0003310]; pharyngeal arch artery morphogenesis [GO:0061626]; positive regulation of astrocyte differentiation [GO:0048711]; positive regulation of BMP signaling pathway [GO:0030513]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA binding [GO:0043388]; positive regulation of gene expression [GO:0010628]; positive regulation of mitotic cell cycle, embryonic [GO:0045977]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of receptor signaling pathway via JAK-STAT [GO:0046427]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; protein-containing complex assembly [GO:0065003]; regulation of epithelial cell proliferation [GO:0050678]; regulation of fat cell differentiation [GO:0045598]; regulation of neurogenesis [GO:0050767]; regulation of protein-containing complex assembly [GO:0043254]; regulation of receptor signaling pathway via JAK-STAT [GO:0046425]; regulation of secondary heart field cardioblast proliferation [GO:0003266]; regulation of timing of neuron differentiation [GO:0060164]; regulation of transcription by RNA polymerase II [GO:0006357]; renal interstitial fibroblast development [GO:0072141]; response to alkaloid [GO:0043279]; response to organic cyclic compound [GO:0014070]; response to thyroid hormone [GO:0097066]; S-shaped body morphogenesis [GO:0072050]; smoothened signaling pathway [GO:0007224]; somatic stem cell population maintenance [GO:0035019]; stomach neuroendocrine cell differentiation [GO:0061102]; T cell proliferation [GO:0042098]; telencephalon development [GO:0021537]; thymus development [GO:0048538]; trochlear nerve development [GO:0021558]; ureteric bud morphogenesis [GO:0060675]; vascular associated smooth muscle cell development [GO:0097084]; ventricular septum development [GO:0003281]; ventricular septum morphogenesis [GO:0060412] -Q14527 reviewed HLTF_HUMAN Helicase-like transcription factor (EC 2.3.2.27) (EC 3.6.4.-) (DNA-binding protein/plasminogen activator inhibitor 1 regulator) (HIP116) (RING finger protein 80) (RING-type E3 ubiquitin transferase HLTF) (SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily A member 3) (Sucrose nonfermenting protein 2-like 3) HLTF HIP116A RNF80 SMARCA3 SNF2L3 ZBU1 DNA repair [GO:0006281]; mRNA transcription by RNA polymerase II [GO:0042789]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein ubiquitination [GO:0016567]; regulation of neurogenesis [GO:0050767] -Q14541 reviewed HNF4G_HUMAN Hepatocyte nuclear factor 4-gamma (HNF-4-gamma) (Nuclear receptor subfamily 2 group A member 2) HNF4G NR2A2 cell differentiation [GO:0030154]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q14585 reviewed ZN345_HUMAN Zinc finger protein 345 (Zinc finger protein HZF10) ZNF345 negative regulation of transcription by RNA polymerase II [GO:0000122]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of transcription by RNA polymerase III [GO:0006359]; transcription by RNA polymerase II [GO:0006366]; transcription by RNA polymerase III [GO:0006383] -Q14587 reviewed ZN268_HUMAN Zinc finger protein 268 (Zinc finger protein HZF3) ZNF268 cell differentiation [GO:0030154]; cellular response to tumor necrosis factor [GO:0071356]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of apoptotic process [GO:0043065]; positive regulation of cell differentiation [GO:0045597]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of protein catabolic process [GO:0045732]; positive regulation of protein homodimerization activity [GO:0090073]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell cycle [GO:0051726]; regulation of DNA-templated transcription [GO:0006355]; regulation of mitotic cell cycle [GO:0007346]; regulation of protein heterodimerization activity [GO:0043497]; regulation of transcription by RNA polymerase II [GO:0006357] -Q14623 reviewed IHH_HUMAN Indian hedgehog protein (IHH) (EC 3.1.-.-) (HHG-2) [Cleaved into: Indian hedgehog protein N-product] IHH bone resorption [GO:0045453]; branching involved in blood vessel morphogenesis [GO:0001569]; camera-type eye photoreceptor cell fate commitment [GO:0060220]; cell fate specification [GO:0001708]; cell maturation [GO:0048469]; cell-cell signaling [GO:0007267]; chondrocyte differentiation involved in endochondral bone morphogenesis [GO:0003413]; chondrocyte proliferation [GO:0035988]; embryonic camera-type eye morphogenesis [GO:0048596]; embryonic digestive tract morphogenesis [GO:0048557]; embryonic digit morphogenesis [GO:0042733]; embryonic pattern specification [GO:0009880]; embryonic skeletal joint development [GO:0072498]; epithelial cell morphogenesis [GO:0003382]; epithelial cell-cell adhesion [GO:0090136]; head morphogenesis [GO:0060323]; heart looping [GO:0001947]; in utero embryonic development [GO:0001701]; intein-mediated protein splicing [GO:0016539]; liver regeneration [GO:0097421]; maternal process involved in female pregnancy [GO:0060135]; multicellular organism growth [GO:0035264]; negative regulation of alpha-beta T cell differentiation [GO:0046639]; negative regulation of apoptotic process [GO:0043066]; negative regulation of chondrocyte differentiation [GO:0032331]; negative regulation of eye pigmentation [GO:0048074]; negative regulation of immature T cell proliferation in thymus [GO:0033088]; negative regulation of T cell differentiation in thymus [GO:0033085]; neuron development [GO:0048666]; osteoblast differentiation [GO:0001649]; pancreas development [GO:0031016]; positive regulation of alpha-beta T cell differentiation [GO:0046638]; positive regulation of collagen biosynthetic process [GO:0032967]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of mesenchymal cell proliferation [GO:0002053]; positive regulation of smoothened signaling pathway [GO:0045880]; positive regulation of T cell differentiation in thymus [GO:0033089]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoprocessing [GO:0016540]; proteoglycan metabolic process [GO:0006029]; regulation of gene expression [GO:0010468]; regulation of growth [GO:0040008]; response to estradiol [GO:0032355]; response to mechanical stimulus [GO:0009612]; retinal pigment epithelium development [GO:0003406]; self proteolysis [GO:0097264]; skeletal system development [GO:0001501]; smooth muscle tissue development [GO:0048745]; smoothened signaling pathway [GO:0007224]; somite development [GO:0061053]; vitelline membrane formation [GO:0030704] -Q14653 reviewed IRF3_HUMAN Interferon regulatory factor 3 (IRF-3) IRF3 antiviral innate immune response [GO:0140374]; apoptotic process [GO:0006915]; cellular response to exogenous dsRNA [GO:0071360]; cellular response to virus [GO:0098586]; cGAS/STING signaling pathway [GO:0140896]; cytoplasmic pattern recognition receptor signaling pathway [GO:0002753]; defense response to virus [GO:0051607]; DNA damage response [GO:0006974]; immune system process [GO:0002376]; innate immune response [GO:0045087]; lipopolysaccharide-mediated signaling pathway [GO:0031663]; macrophage apoptotic process [GO:0071888]; MDA-5 signaling pathway [GO:0039530]; mRNA transcription [GO:0009299]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cytokine production involved in inflammatory response [GO:1900017]; positive regulation of interferon-alpha production [GO:0032727]; positive regulation of interferon-beta production [GO:0032728]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type I interferon production [GO:0032481]; positive regulation of type I interferon-mediated signaling pathway [GO:0060340]; programmed necrotic cell death [GO:0097300]; regulation of apoptotic process [GO:0042981]; regulation of inflammatory response [GO:0050727]; regulation of transcription by RNA polymerase II [GO:0006357]; signal transduction involved in regulation of gene expression [GO:0023019]; toll-like receptor 4 signaling pathway [GO:0034142]; TRIF-dependent toll-like receptor signaling pathway [GO:0035666]; type I interferon-mediated signaling pathway [GO:0060337] -Q14676 reviewed MDC1_HUMAN Mediator of DNA damage checkpoint protein 1 (Nuclear factor with BRCT domains 1) MDC1 KIAA0170 NFBD1 DNA damage response [GO:0006974]; DNA repair [GO:0006281]; DNA replication checkpoint signaling [GO:0000076]; mitotic intra-S DNA damage checkpoint signaling [GO:0031573]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; protein localization to site of double-strand break [GO:1990166] -Q14684 reviewed RRP1B_HUMAN Ribosomal RNA processing protein 1 homolog B (RRP1-like protein B) RRP1B KIAA0179 apoptotic process [GO:0006915]; cellular response to virus [GO:0098586]; mRNA processing [GO:0006397]; negative regulation of GTPase activity [GO:0034260]; positive regulation by host of viral transcription [GO:0043923]; positive regulation of apoptotic process [GO:0043065]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of RNA splicing [GO:0043484]; RNA splicing [GO:0008380]; rRNA processing [GO:0006364] -Q14686 reviewed NCOA6_HUMAN Nuclear receptor coactivator 6 (Activating signal cointegrator 2) (ASC-2) (Amplified in breast cancer protein 3) (Cancer-amplified transcriptional coactivator ASC-2) (Nuclear receptor coactivator RAP250) (NRC RAP250) (Nuclear receptor-activating protein, 250 kDa) (Peroxisome proliferator-activated receptor-interacting protein) (PPAR-interacting protein) (PRIP) (Thyroid hormone receptor-binding protein) NCOA6 AIB3 KIAA0181 RAP250 TRBP brain development [GO:0007420]; DNA damage response [GO:0006974]; DNA-templated transcription initiation [GO:0006352]; heart development [GO:0007507]; myeloid cell differentiation [GO:0030099]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to hormone [GO:0009725] -Q14693 reviewed LPIN1_HUMAN Phosphatidate phosphatase LPIN1 (EC 3.1.3.4) (Lipin-1) LPIN1 KIAA0188 animal organ regeneration [GO:0031100]; cellular response to insulin stimulus [GO:0032869]; fatty acid catabolic process [GO:0009062]; mitotic nuclear membrane disassembly [GO:0007077]; negative regulation of myelination [GO:0031642]; phosphatidic acid biosynthetic process [GO:0006654]; phosphatidic acid metabolic process [GO:0046473]; phosphatidylethanolamine metabolic process [GO:0046337]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of DNA replication [GO:0045740]; positive regulation of transcription by RNA polymerase II [GO:0045944]; triglyceride biosynthetic process [GO:0019432]; triglyceride mobilization [GO:0006642] -Q14765 reviewed STAT4_HUMAN Signal transducer and activator of transcription 4 STAT4 cell surface receptor signaling pathway via JAK-STAT [GO:0007259]; cytokine-mediated signaling pathway [GO:0019221]; defense response [GO:0006952]; interleukin-12-mediated signaling pathway [GO:0035722]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell population proliferation [GO:0042127]; regulation of transcription by RNA polymerase II [GO:0006357]; response to interleukin-6 [GO:0070741]; response to peptide hormone [GO:0043434]; T-helper 1 cell differentiation [GO:0045063] -Q14814 reviewed MEF2D_HUMAN Myocyte-specific enhancer factor 2D MEF2D adult heart development [GO:0007512]; apoptotic process [GO:0006915]; cell differentiation [GO:0030154]; chondrocyte differentiation [GO:0002062]; endochondral ossification [GO:0001958]; muscle organ development [GO:0007517]; nervous system development [GO:0007399]; osteoblast differentiation [GO:0001649]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular associated smooth muscle cell proliferation [GO:1904707]; skeletal muscle cell differentiation [GO:0035914] -Q14872 reviewed MTF1_HUMAN Metal regulatory transcription factor 1 (MRE-binding transcription factor) (Transcription factor MTF-1) MTF1 cartilage homeostasis [GO:1990079]; cellular response to zinc ion [GO:0071294]; central nervous system development [GO:0007417]; DNA-templated transcription [GO:0006351]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; response to cadmium ion [GO:0046686]; response to metal ion [GO:0010038]; response to oxidative stress [GO:0006979] -Q14934 reviewed NFAC4_HUMAN Nuclear factor of activated T-cells, cytoplasmic 4 (NF-ATc4) (NFATc4) (T-cell transcription factor NFAT3) (NF-AT3) NFATC4 NFAT3 brain-derived neurotrophic factor receptor signaling pathway [GO:0031547]; branching involved in blood vessel morphogenesis [GO:0001569]; calcineurin-NFAT signaling cascade [GO:0033173]; cellular respiration [GO:0045333]; cellular response to lithium ion [GO:0071285]; cellular response to UV [GO:0034644]; dendrite morphogenesis [GO:0048813]; heart development [GO:0007507]; inflammatory response [GO:0006954]; intrinsic apoptotic signaling pathway in response to DNA damage [GO:0008630]; long-term memory [GO:0007616]; long-term synaptic potentiation [GO:0060291]; negative regulation of dendrite morphogenesis [GO:0050774]; negative regulation of miRNA transcription [GO:1902894]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of synapse maturation [GO:2000297]; negative regulation of Wnt signaling pathway [GO:0030178]; neuron apoptotic process [GO:0051402]; positive regulation of apoptotic signaling pathway [GO:2001235]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; regulation of transcription by RNA polymerase II [GO:0006357]; synapse maturation [GO:0060074]; transcription by RNA polymerase II [GO:0006366]; vascular associated smooth muscle cell development [GO:0097084] -Q14938 reviewed NFIX_HUMAN Nuclear factor 1 X-type (NF1-X) (Nuclear factor 1/X) (CCAAT-box-binding transcription factor) (CTF) (Nuclear factor I/X) (NF-I/X) (NFI-X) (TGGCA-binding protein) NFIX DNA replication [GO:0006260]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription by RNA polymerase II [GO:0006366] -Q14994 reviewed NR1I3_HUMAN Nuclear receptor subfamily 1 group I member 3 (Constitutive activator of retinoid response) (Constitutive active response) (Constitutive androstane receptor) (CAR) (Orphan nuclear receptor MB67) NR1I3 CAR cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; osteoblast differentiation [GO:0001649]; positive regulation of transcription by RNA polymerase II [GO:0045944]; signal transduction [GO:0007165] -Q14995 reviewed NR1D2_HUMAN Nuclear receptor subfamily 1 group D member 2 (Orphan nuclear hormone receptor BD73) (Rev-erb alpha-related receptor) (RVR) (Rev-erb-beta) (V-erbA-related protein 1-related) (EAR-1R) NR1D2 cell differentiation [GO:0030154]; circadian behavior [GO:0048512]; energy homeostasis [GO:0097009]; hormone-mediated signaling pathway [GO:0009755]; lipid homeostasis [GO:0055088]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of inflammatory response [GO:0050728]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of circadian rhythm [GO:0042752]; regulation of DNA-templated transcription [GO:0006355]; regulation of inflammatory response [GO:0050727]; regulation of lipid metabolic process [GO:0019216]; regulation of skeletal muscle cell differentiation [GO:2001014] -Q15025 reviewed TNIP1_HUMAN TNFAIP3-interacting protein 1 (A20-binding inhibitor of NF-kappa-B activation 1) (ABIN-1) (HIV-1 Nef-interacting protein) (Nef-associated factor 1) (Naf1) (Nip40-1) (Virion-associated nuclear shuttling protein) (VAN) (hVAN) TNIP1 KIAA0113 NAF1 cellular response to lipopolysaccharide [GO:0071222]; defense response [GO:0006952]; glycoprotein biosynthetic process [GO:0009101]; inflammatory response [GO:0006954]; leukocyte cell-cell adhesion [GO:0007159]; MyD88-dependent toll-like receptor signaling pathway [GO:0002755]; negative regulation of canonical NF-kappaB signal transduction [GO:0043124]; negative regulation of ERK1 and ERK2 cascade [GO:0070373]; negative regulation of viral genome replication [GO:0045071]; positive regulation of inflammatory response [GO:0050729]; positive regulation of protein deubiquitination [GO:1903003]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; translation [GO:0006412] -Q15059 reviewed BRD3_HUMAN Bromodomain-containing protein 3 (RING3-like protein) BRD3 KIAA0043 RING3L chromatin organization [GO:0006325]; endodermal cell differentiation [GO:0035987]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to chromatin [GO:0071168]; regulation of transcription by RNA polymerase II [GO:0006357] -Q15139 reviewed KPCD1_HUMAN Serine/threonine-protein kinase D1 (EC 2.7.11.13) (Protein kinase C mu type) (Protein kinase D) (nPKC-D1) (nPKC-mu) PRKD1 PKD PKD1 PRKCM angiogenesis [GO:0001525]; apoptotic process [GO:0006915]; cell differentiation [GO:0030154]; cellular response to amino acid starvation [GO:0034198]; cellular response to angiotensin [GO:1904385]; cellular response to endothelin [GO:1990859]; cellular response to hydroperoxide [GO:0071447]; cellular response to norepinephrine stimulus [GO:0071874]; cellular response to oxidative stress [GO:0034599]; cellular response to phorbol 13-acetate 12-myristate [GO:1904628]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; defense response to Gram-negative bacterium [GO:0050829]; Golgi organization [GO:0007030]; Golgi vesicle transport [GO:0048193]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; integrin-mediated signaling pathway [GO:0007229]; intracellular signal transduction [GO:0035556]; negative regulation of endocytosis [GO:0045806]; nervous system development [GO:0007399]; peptidyl-serine phosphorylation [GO:0018105]; peptidyl-threonine phosphorylation [GO:0018107]; phospholipase C-activating G protein-coupled receptor signaling pathway [GO:0007200]; positive regulation of angiogenesis [GO:0045766]; positive regulation of autophagy [GO:0010508]; positive regulation of blood vessel endothelial cell migration [GO:0043536]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cell size [GO:0045793]; positive regulation of endothelial cell chemotaxis [GO:2001028]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of gene expression [GO:0010628]; positive regulation of neuron projection development [GO:0010976]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of NLRP3 inflammasome complex assembly [GO:1900227]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of peptide hormone secretion [GO:0090277]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of protein export from nucleus [GO:0046827]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of sarcomere organization [GO:0060298]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autophosphorylation [GO:0046777]; regulation of integrin-mediated signaling pathway [GO:2001044]; regulation of keratinocyte proliferation [GO:0010837]; regulation of release of sequestered calcium ion into cytosol [GO:0051279]; regulation of skeletal muscle contraction by modulation of calcium ion sensitivity of myofibril [GO:0014723]; signal transduction [GO:0007165]; sphingolipid biosynthetic process [GO:0030148]; vascular endothelial growth factor receptor signaling pathway [GO:0048010] -Q15173 reviewed 2A5B_HUMAN Serine/threonine-protein phosphatase 2A 56 kDa regulatory subunit beta isoform (PP2A B subunit isoform B'-beta) (PP2A B subunit isoform B56-beta) (PP2A B subunit isoform PR61-beta) (PP2A B subunit isoform R5-beta) PPP2R5B cellular response to growth factor stimulus [GO:0071363]; negative regulation of G0 to G1 transition [GO:0070317]; positive regulation of neuron projection development [GO:0010976]; positive regulation of neurotrophin TRK receptor signaling pathway [GO:0051388]; positive regulation of protein-containing complex assembly [GO:0031334]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of peptidyl-tyrosine phosphorylation [GO:0050730]; regulation of protein autophosphorylation [GO:0031952]; signal transduction [GO:0007165] -Q15306 reviewed IRF4_HUMAN Interferon regulatory factor 4 (IRF-4) (Lymphocyte-specific interferon regulatory factor) (LSIRF) (Multiple myeloma oncogene 1) (NF-EM5) IRF4 MUM1 chromatin remodeling [GO:0006338]; defense response to protozoan [GO:0042832]; immune system process [GO:0002376]; myeloid dendritic cell differentiation [GO:0043011]; negative regulation of toll-like receptor signaling pathway [GO:0034122]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of interleukin-10 production [GO:0032733]; positive regulation of interleukin-13 production [GO:0032736]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of interleukin-4 production [GO:0032753]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of T-helper cell differentiation [GO:0045622]; regulation of transcription by RNA polymerase II [GO:0006357]; T cell activation [GO:0042110]; T-helper 17 cell lineage commitment [GO:0072540] -Q15319 reviewed PO4F3_HUMAN POU domain, class 4, transcription factor 3 (Brain-specific homeobox/POU domain protein 3C) (Brain-3C) (Brn-3C) POU4F3 BRN3C axon extension [GO:0048675]; inner ear auditory receptor cell differentiation [GO:0042491]; inner ear morphogenesis [GO:0042472]; neuromuscular process controlling balance [GO:0050885]; neuron apoptotic process [GO:0051402]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; retinal ganglion cell axon guidance [GO:0031290]; sensory perception of sound [GO:0007605]; vestibulocochlear nerve development [GO:0021562]; visual perception [GO:0007601] -Q15365 reviewed PCBP1_HUMAN Poly(rC)-binding protein 1 (Alpha-CP1) (Heterogeneous nuclear ribonucleoprotein E1) (hnRNP E1) (Nucleic acid-binding protein SUB2.3) PCBP1 positive regulation of transcription by RNA polymerase II [GO:0045944]; viral RNA genome replication [GO:0039694] -Q15406 reviewed NR6A1_HUMAN Nuclear receptor subfamily 6 group A member 1 (Germ cell nuclear factor) (GCNF) (hGCNF) (Retinoid receptor-related testis-specific receptor) (RTR) (hRTR) NR6A1 GCNF gamete generation [GO:0007276]; negative regulation of transcription by RNA polymerase II [GO:0000122]; regulation of transcription by RNA polymerase II [GO:0006357] -Q15418 reviewed KS6A1_HUMAN Ribosomal protein S6 kinase alpha-1 (S6K-alpha-1) (EC 2.7.11.1) (90 kDa ribosomal protein S6 kinase 1) (p90-RSK 1) (p90RSK1) (p90S6K) (MAP kinase-activated protein kinase 1a) (MAPK-activated protein kinase 1a) (MAPKAP kinase 1a) (MAPKAPK-1a) (Ribosomal S6 kinase 1) (RSK-1) RPS6KA1 MAPKAPK1A RSK1 chemical synaptic transmission [GO:0007268]; hepatocyte proliferation [GO:0072574]; intracellular signal transduction [GO:0035556]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043154]; negative regulation of TOR signaling [GO:0032007]; positive regulation of cell differentiation [GO:0045597]; positive regulation of cell growth [GO:0030307]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of hepatic stellate cell activation [GO:2000491]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein phosphorylation [GO:0006468]; regulation of translation in response to stress [GO:0043555]; signal transduction [GO:0007165] -Q15465 reviewed SHH_HUMAN Sonic hedgehog protein (SHH) (EC 3.1.-.-) (HHG-1) (Shh unprocessed N-terminal signaling and C-terminal autoprocessing domains) (ShhNC) [Cleaved into: Sonic hedgehog protein N-product (ShhN) (Shh N-terminal processed signaling domains) (ShhNp)] SHH alpha-beta T cell differentiation [GO:0046632]; androgen metabolic process [GO:0008209]; animal organ formation [GO:0048645]; apoptotic signaling pathway [GO:0097190]; artery development [GO:0060840]; axon guidance [GO:0007411]; Bergmann glial cell differentiation [GO:0060020]; blood coagulation [GO:0007596]; branching involved in blood vessel morphogenesis [GO:0001569]; branching involved in salivary gland morphogenesis [GO:0060445]; branching involved in ureteric bud morphogenesis [GO:0001658]; branching morphogenesis of an epithelial tube [GO:0048754]; bud outgrowth involved in lung branching [GO:0060447]; camera-type eye development [GO:0043010]; canonical Wnt signaling pathway [GO:0060070]; CD4-positive or CD8-positive, alpha-beta T cell lineage commitment [GO:0043369]; cell development [GO:0048468]; cell fate specification [GO:0001708]; cell-cell signaling [GO:0007267]; cellular response to lithium ion [GO:0071285]; central nervous system development [GO:0007417]; cerebellar granule cell precursor proliferation [GO:0021930]; determination of left/right asymmetry in lateral mesoderm [GO:0003140]; dopaminergic neuron differentiation [GO:0071542]; dorsal/ventral neural tube patterning [GO:0021904]; dorsal/ventral pattern formation [GO:0009953]; ectoderm development [GO:0007398]; embryonic digestive tract morphogenesis [GO:0048557]; embryonic digit morphogenesis [GO:0042733]; embryonic foregut morphogenesis [GO:0048617]; embryonic forelimb morphogenesis [GO:0035115]; embryonic hindlimb morphogenesis [GO:0035116]; embryonic limb morphogenesis [GO:0030326]; embryonic pattern specification [GO:0009880]; embryonic skeletal system development [GO:0048706]; endocytosis [GO:0006897]; epithelial cell proliferation involved in prostate gland development [GO:0060767]; epithelial cell proliferation involved in salivary gland morphogenesis [GO:0060664]; epithelial-mesenchymal cell signaling [GO:0060684]; establishment of epithelial cell polarity [GO:0090162]; forebrain development [GO:0030900]; formation of anatomical boundary [GO:0048859]; hair follicle morphogenesis [GO:0031069]; heart development [GO:0007507]; heart looping [GO:0001947]; hindbrain development [GO:0030902]; hindgut morphogenesis [GO:0007442]; inner ear development [GO:0048839]; intein-mediated protein splicing [GO:0016539]; intermediate filament organization [GO:0045109]; left lung development [GO:0060459]; limb bud formation [GO:0060174]; lung development [GO:0030324]; lung epithelium development [GO:0060428]; lung lobe morphogenesis [GO:0060463]; lung-associated mesenchyme development [GO:0060484]; lymphoid progenitor cell differentiation [GO:0002320]; male genitalia development [GO:0030539]; mesenchymal cell apoptotic process [GO:0097152]; mesenchymal cell proliferation involved in lung development [GO:0060916]; mesenchymal smoothened signaling pathway involved in prostate gland development [GO:0060783]; metanephric collecting duct development [GO:0072205]; metanephric mesenchymal cell proliferation involved in metanephros development [GO:0072136]; metanephros development [GO:0001656]; midbrain development [GO:0030901]; myoblast differentiation [GO:0045445]; negative regulation of alpha-beta T cell differentiation [GO:0046639]; negative regulation of apoptotic process [GO:0043066]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cell differentiation [GO:0045596]; negative regulation of cell migration [GO:0030336]; negative regulation of cholesterol efflux [GO:0090370]; negative regulation of dopaminergic neuron differentiation [GO:1904339]; negative regulation of gene expression [GO:0010629]; negative regulation of kidney smooth muscle cell differentiation [GO:2000357]; negative regulation of mesenchymal cell apoptotic process [GO:2001054]; negative regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032435]; negative regulation of T cell differentiation in thymus [GO:0033085]; negative regulation of T cell proliferation [GO:0042130]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transcription elongation by RNA polymerase II [GO:0034244]; negative regulation of ureter smooth muscle cell differentiation [GO:2000062]; negative thymic T cell selection [GO:0045060]; neural crest cell migration [GO:0001755]; neuroblast proliferation [GO:0007405]; neuron fate commitment [GO:0048663]; odontogenesis of dentin-containing tooth [GO:0042475]; oligodendrocyte development [GO:0014003]; oligodendrocyte differentiation [GO:0048709]; osteoblast development [GO:0002076]; pancreas development [GO:0031016]; pattern specification process [GO:0007389]; polarity specification of anterior/posterior axis [GO:0009949]; positive regulation of alpha-beta T cell differentiation [GO:0046638]; positive regulation of astrocyte differentiation [GO:0048711]; positive regulation of cell division [GO:0051781]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cerebellar granule cell precursor proliferation [GO:0021940]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial cell proliferation involved in prostate gland development [GO:0060769]; positive regulation of gene expression [GO:0010628]; positive regulation of immature T cell proliferation in thymus [GO:0033092]; positive regulation of kidney smooth muscle cell differentiation [GO:2000358]; positive regulation of mesenchymal cell proliferation involved in ureter development [GO:2000729]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of oligodendrocyte differentiation [GO:0048714]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of sclerotome development [GO:0061189]; positive regulation of skeletal muscle cell proliferation [GO:0014858]; positive regulation of skeletal muscle tissue development [GO:0048643]; positive regulation of smoothened signaling pathway [GO:0045880]; positive regulation of striated muscle cell differentiation [GO:0051155]; positive regulation of T cell differentiation in thymus [GO:0033089]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of ureter smooth muscle cell differentiation [GO:2000063]; positive regulation of Wnt signaling pathway [GO:0030177]; positive thymic T cell selection [GO:0045059]; primary prostatic bud elongation [GO:0060516]; prostate epithelial cord elongation [GO:0060523]; prostate gland development [GO:0030850]; protein autoprocessing [GO:0016540]; protein import into nucleus [GO:0006606]; regulation of cell population proliferation [GO:0042127]; regulation of gene expression [GO:0010468]; regulation of glial cell proliferation [GO:0060251]; regulation of mesenchymal cell proliferation involved in prostate gland development [GO:0060782]; regulation of odontogenesis [GO:0042481]; regulation of prostatic bud formation [GO:0060685]; regulation of protein localization to nucleus [GO:1900180]; regulation of proteolysis [GO:0030162]; regulation of stem cell proliferation [GO:0072091]; right lung development [GO:0060458]; roof of mouth development [GO:0060021]; salivary gland cavitation [GO:0060662]; self proteolysis [GO:0097264]; skeletal muscle cell proliferation [GO:0014856]; skeletal muscle fiber differentiation [GO:0098528]; smooth muscle tissue development [GO:0048745]; smoothened signaling pathway [GO:0007224]; somite development [GO:0061053]; spinal cord dorsal/ventral patterning [GO:0021513]; spinal cord motor neuron differentiation [GO:0021522]; stem cell development [GO:0048864]; stem cell proliferation [GO:0072089]; striated muscle tissue development [GO:0014706]; T cell differentiation in thymus [GO:0033077]; T cell proliferation [GO:0042098]; telencephalon regionalization [GO:0021978]; thalamus development [GO:0021794]; thymus development [GO:0048538]; thyroid gland development [GO:0030878]; trachea morphogenesis [GO:0060439]; tracheoesophageal septum formation [GO:1905327]; trunk neural crest cell migration [GO:0036484]; vasculogenesis [GO:0001570]; ventral midline development [GO:0007418] -Q15475 reviewed SIX1_HUMAN Homeobox protein SIX1 (Sine oculis homeobox homolog 1) SIX1 aorta morphogenesis [GO:0035909]; apoptotic process [GO:0006915]; branching involved in ureteric bud morphogenesis [GO:0001658]; cellular response to 3,3',5-triiodo-L-thyronine [GO:1905243]; cochlea morphogenesis [GO:0090103]; embryonic cranial skeleton morphogenesis [GO:0048701]; embryonic skeletal system morphogenesis [GO:0048704]; endothelin receptor signaling pathway [GO:0086100]; epithelial cell differentiation [GO:0030855]; facial nerve morphogenesis [GO:0021610]; fungiform papilla morphogenesis [GO:0061197]; gene expression [GO:0010467]; generation of neurons [GO:0048699]; inner ear development [GO:0048839]; inner ear morphogenesis [GO:0042472]; kidney development [GO:0001822]; mesenchymal cell proliferation involved in ureter development [GO:0072198]; mesonephric tubule formation [GO:0072172]; metanephric mesenchyme development [GO:0072075]; middle ear morphogenesis [GO:0042474]; myoblast migration [GO:0051451]; myoblast proliferation [GO:0051450]; myotome development [GO:0061055]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural crest cell differentiation [GO:0014033]; neuron fate specification [GO:0048665]; Notch signaling pathway [GO:0007219]; olfactory placode formation [GO:0030910]; organ induction [GO:0001759]; otic vesicle development [GO:0071599]; outflow tract morphogenesis [GO:0003151]; pattern specification process [GO:0007389]; pharyngeal system development [GO:0060037]; positive regulation of branching involved in ureteric bud morphogenesis [GO:0090190]; positive regulation of brown fat cell differentiation [GO:0090336]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of mesenchymal cell proliferation involved in ureter development [GO:2000729]; positive regulation of myoblast proliferation [GO:2000288]; positive regulation of secondary heart field cardioblast proliferation [GO:0072513]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of ureteric bud formation [GO:0072107]; protein localization to nucleus [GO:0034504]; regulation of branch elongation involved in ureteric bud branching [GO:0072095]; regulation of DNA-templated transcription [GO:0006355]; regulation of epithelial cell proliferation [GO:0050678]; regulation of neuron differentiation [GO:0045664]; regulation of protein localization [GO:0032880]; regulation of skeletal muscle cell differentiation [GO:2001014]; regulation of skeletal muscle cell proliferation [GO:0014857]; regulation of skeletal muscle satellite cell proliferation [GO:0014842]; regulation of synaptic assembly at neuromuscular junction [GO:0008582]; regulation of transcription by RNA polymerase II [GO:0006357]; sensory perception of sound [GO:0007605]; skeletal muscle fiber development [GO:0048741]; skeletal muscle tissue development [GO:0007519]; thymus development [GO:0048538]; thyroid gland development [GO:0030878]; trigeminal ganglion development [GO:0061551]; ureter smooth muscle cell differentiation [GO:0072193]; ureteric bud development [GO:0001657] -Q15528 reviewed MED22_HUMAN Mediator of RNA polymerase II transcription subunit 22 (Mediator complex subunit 22) (Surfeit locus protein 5) (Surf-5) MED22 SURF5 positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; RNA polymerase II preinitiation complex assembly [GO:0051123] -Q15532 reviewed SSXT_HUMAN Protein SSXT (Protein SYT) (Synovial sarcoma translocated to X chromosome protein) SS18 SSXT SYT cell morphogenesis [GO:0000902]; chromatin remodeling [GO:0006338]; ephrin receptor signaling pathway [GO:0048013]; intracellular signal transduction [GO:0035556]; microtubule cytoskeleton organization [GO:0000226]; negative regulation of cell differentiation [GO:0045596]; neuronal stem cell population maintenance [GO:0097150]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of stem cell population maintenance [GO:1902459]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; response to xenobiotic stimulus [GO:0009410] -Q15542 reviewed TAF5_HUMAN Transcription initiation factor TFIID subunit 5 (Transcription initiation factor TFIID 100 kDa subunit) (TAF(II)100) (TAFII-100) (TAFII100) TAF5 TAF2D DNA-templated transcription initiation [GO:0006352]; mRNA transcription by RNA polymerase II [GO:0042789]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; regulation of DNA repair [GO:0006282]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA polymerase II preinitiation complex assembly [GO:0051123]; transcription initiation at RNA polymerase II promoter [GO:0006367] -Q15543 reviewed TAF13_HUMAN Transcription initiation factor TFIID subunit 13 (Transcription initiation factor TFIID 18 kDa subunit) (TAF(II)18) (TAFII-18) (TAFII18) TAF13 TAF2K TAFII18 DNA-templated transcription initiation [GO:0006352]; mRNA transcription by RNA polymerase II [GO:0042789]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; RNA polymerase II preinitiation complex assembly [GO:0051123]; transcription by RNA polymerase II [GO:0006366]; transcription initiation at RNA polymerase II promoter [GO:0006367] -Q15544 reviewed TAF11_HUMAN Transcription initiation factor TFIID subunit 11 (TFIID subunit p30-beta) (Transcription initiation factor TFIID 28 kDa subunit) (TAF(II)28) (TAFII-28) (TAFII28) TAF11 TAF2I PRO2134 mRNA transcription by RNA polymerase II [GO:0042789]; positive regulation by host of viral transcription [GO:0043923]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; RNA polymerase II preinitiation complex assembly [GO:0051123]; transcription by RNA polymerase II [GO:0006366]; transcription initiation at RNA polymerase II promoter [GO:0006367] -Q15545 reviewed TAF7_HUMAN Transcription initiation factor TFIID subunit 7 (RNA polymerase II TBP-associated factor subunit F) (Transcription initiation factor TFIID 55 kDa subunit) (TAF(II)55) (TAFII-55) (TAFII55) TAF7 TAF2F TAFII55 DNA-templated transcription initiation [GO:0006352]; intracellular estrogen receptor signaling pathway [GO:0030520]; mRNA transcription by RNA polymerase II [GO:0042789]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of MHC class I biosynthetic process [GO:0045344]; negative regulation of MHC class II biosynthetic process [GO:0045347]; negative regulation of protein kinase activity [GO:0006469]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; regulation of DNA repair [GO:0006282]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA polymerase II preinitiation complex assembly [GO:0051123]; spermine transport [GO:0000296]; transcription by RNA polymerase II [GO:0006366]; transcription initiation at RNA polymerase II promoter [GO:0006367] -Q15561 reviewed TEAD4_HUMAN Transcriptional enhancer factor TEF-3 (TEA domain family member 4) (TEAD-4) (Transcription factor 13-like 1) (Transcription factor RTEF-1) TEAD4 RTEF1 TCF13L1 TEF3 cell fate specification [GO:0001708]; DNA-templated transcription [GO:0006351]; embryo implantation [GO:0007566]; embryonic organ development [GO:0048568]; hippo signaling [GO:0035329]; muscle organ development [GO:0007517]; positive regulation of stem cell population maintenance [GO:1902459]; regulation of transcription by RNA polymerase II [GO:0006357]; skeletal system development [GO:0001501]; trophectodermal cell fate commitment [GO:0001830] -Q15562 reviewed TEAD2_HUMAN Transcriptional enhancer factor TEF-4 (TEA domain family member 2) (TEAD-2) TEAD2 TEF4 cellular response to retinoic acid [GO:0071300]; embryonic heart tube morphogenesis [GO:0003143]; embryonic organ development [GO:0048568]; hippo signaling [GO:0035329]; lateral mesoderm development [GO:0048368]; neural tube closure [GO:0001843]; notochord development [GO:0030903]; paraxial mesoderm development [GO:0048339]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein-containing complex assembly [GO:0065003]; regulation of DNA-templated transcription [GO:0006355]; regulation of stem cell differentiation [GO:2000736]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription by RNA polymerase II [GO:0006366]; vasculogenesis [GO:0001570] -Q15596 reviewed NCOA2_HUMAN Nuclear receptor coactivator 2 (NCoA-2) (Class E basic helix-loop-helix protein 75) (bHLHe75) (Transcriptional intermediary factor 2) (hTIF2) NCOA2 BHLHE75 SRC2 TIF2 cellular response to hormone stimulus [GO:0032870]; cellular response to Thyroglobulin triiodothyronine [GO:1904017]; circadian regulation of gene expression [GO:0032922]; locomotor rhythm [GO:0045475]; mRNA transcription by RNA polymerase II [GO:0042789]; negative regulation of transcription by RNA polymerase II [GO:0000122]; peroxisome proliferator activated receptor signaling pathway [GO:0035357]; positive regulation of adipose tissue development [GO:1904179]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cellular response to insulin stimulus [GO:1900076]; regulation of DNA-templated transcription [GO:0006355]; regulation of glucose metabolic process [GO:0010906]; regulation of lipid metabolic process [GO:0019216]; response to progesterone [GO:0032570] -Q15648 reviewed MED1_HUMAN Mediator of RNA polymerase II transcription subunit 1 (Activator-recruited cofactor 205 kDa component) (ARC205) (Mediator complex subunit 1) (Peroxisome proliferator-activated receptor-binding protein) (PBP) (PPAR-binding protein) (Thyroid hormone receptor-associated protein complex 220 kDa component) (Trap220) (Thyroid receptor-interacting protein 2) (TR-interacting protein 2) (TRIP-2) (Vitamin D receptor-interacting protein complex component DRIP205) (p53 regulatory protein RB18A) MED1 ARC205 CRSP1 CRSP200 DRIP205 DRIP230 PBP PPARBP PPARGBP RB18A TRAP220 TRIP2 androgen biosynthetic process [GO:0006702]; angiogenesis [GO:0001525]; animal organ regeneration [GO:0031100]; brain development [GO:0007420]; cell morphogenesis [GO:0000902]; cellular response to epidermal growth factor stimulus [GO:0071364]; cellular response to hepatocyte growth factor stimulus [GO:0035729]; cellular response to steroid hormone stimulus [GO:0071383]; cellular response to thyroid hormone stimulus [GO:0097067]; embryonic heart tube development [GO:0035050]; embryonic hemopoiesis [GO:0035162]; embryonic hindlimb morphogenesis [GO:0035116]; embryonic placenta development [GO:0001892]; enucleate erythrocyte development [GO:0048822]; epithelial cell proliferation involved in mammary gland duct elongation [GO:0060750]; erythrocyte development [GO:0048821]; fat cell differentiation [GO:0045444]; G0 to G1 transition [GO:0045023]; hematopoietic stem cell differentiation [GO:0060218]; intracellular steroid hormone receptor signaling pathway [GO:0030518]; keratinocyte differentiation [GO:0030216]; lactation [GO:0007595]; lens development in camera-type eye [GO:0002088]; liver development [GO:0001889]; mammary gland branching involved in pregnancy [GO:0060745]; mammary gland branching involved in thelarche [GO:0060744]; megakaryocyte development [GO:0035855]; monocyte differentiation [GO:0030224]; mRNA transcription by RNA polymerase II [GO:0042789]; negative regulation of apoptotic process [GO:0043066]; negative regulation of keratinocyte proliferation [GO:0010839]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of transcription by RNA polymerase II [GO:0000122]; peroxisome proliferator activated receptor signaling pathway [GO:0035357]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of erythrocyte differentiation [GO:0045648]; positive regulation of G0 to G1 transition [GO:0070318]; positive regulation of gene expression [GO:0010628]; positive regulation of hepatocyte proliferation [GO:2000347]; positive regulation of intracellular estrogen receptor signaling pathway [GO:0033148]; positive regulation of keratinocyte differentiation [GO:0045618]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; positive regulation of type II interferon-mediated signaling pathway [GO:0060335]; protein import into nucleus [GO:0006606]; protein ubiquitination [GO:0016567]; regulation of RNA biosynthetic process [GO:2001141]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of vitamin D receptor signaling pathway [GO:0070562]; retinal pigment epithelium development [GO:0003406]; RNA polymerase II preinitiation complex assembly [GO:0051123]; thyroid hormone generation [GO:0006590]; thyroid hormone mediated signaling pathway [GO:0002154]; ventricular trabecula myocardium morphogenesis [GO:0003222] -Q15672 reviewed TWST1_HUMAN Twist-related protein 1 (Class A basic helix-loop-helix protein 38) (bHLHa38) (H-twist) TWIST1 BHLHA38 TWIST aortic valve morphogenesis [GO:0003180]; cardiac neural crest cell migration involved in outflow tract morphogenesis [GO:0003253]; cell proliferation involved in heart valve development [GO:2000793]; cellular response to growth factor stimulus [GO:0071363]; cellular response to hypoxia [GO:0071456]; cranial suture morphogenesis [GO:0060363]; developmental process [GO:0032502]; embryonic camera-type eye formation [GO:0060900]; embryonic cranial skeleton morphogenesis [GO:0048701]; embryonic digit morphogenesis [GO:0042733]; embryonic forelimb morphogenesis [GO:0035115]; embryonic hindlimb morphogenesis [GO:0035116]; endocardial cushion morphogenesis [GO:0003203]; energy homeostasis [GO:0097009]; eyelid development in camera-type eye [GO:0061029]; in utero embryonic development [GO:0001701]; mitral valve morphogenesis [GO:0003183]; muscle organ development [GO:0007517]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cellular senescence [GO:2000773]; negative regulation of DNA damage response, signal transduction by p53 class mediator [GO:0043518]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of double-strand break repair [GO:2000780]; negative regulation of macrophage cytokine production [GO:0010936]; negative regulation of miRNA transcription [GO:1902894]; negative regulation of osteoblast differentiation [GO:0045668]; negative regulation of peroxisome proliferator activated receptor signaling pathway [GO:0035359]; negative regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051898]; negative regulation of skeletal muscle tissue development [GO:0048642]; negative regulation of striated muscle tissue development [GO:0045843]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of tumor necrosis factor production [GO:0032720]; neural tube closure [GO:0001843]; neuron migration [GO:0001764]; ossification [GO:0001503]; osteoblast differentiation [GO:0001649]; outer ear morphogenesis [GO:0042473]; positive regulation of angiogenesis [GO:0045766]; positive regulation of cell migration [GO:0030335]; positive regulation of cell motility [GO:2000147]; positive regulation of DNA-templated transcription initiation [GO:2000144]; positive regulation of endocardial cushion to mesenchymal transition involved in heart valve formation [GO:2000802]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of fatty acid beta-oxidation [GO:0032000]; positive regulation of gene expression [GO:0010628]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of monocyte chemotactic protein-1 production [GO:0071639]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription regulatory region DNA binding [GO:2000679]; positive regulation of tumor necrosis factor production [GO:0032760]; regulation of bone mineralization [GO:0030500]; regulation of transcription by RNA polymerase II [GO:0006357]; rhythmic process [GO:0048511]; roof of mouth development [GO:0060021] -Q15699 reviewed ALX1_HUMAN ALX homeobox protein 1 (Cartilage homeoprotein 1) (CART-1) ALX1 CART1 embryonic skeletal system morphogenesis [GO:0048704]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q15744 reviewed CEBPE_HUMAN CCAAT/enhancer-binding protein epsilon (C/EBP epsilon) CEBPE cellular response to lipopolysaccharide [GO:0071222]; defense response [GO:0006952]; DNA-templated transcription [GO:0006351]; granulocyte differentiation [GO:0030851]; integrated stress response signaling [GO:0140467]; macrophage differentiation [GO:0030225]; myeloid cell differentiation [GO:0030099]; phagocytosis [GO:0006909]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q15784 reviewed NDF2_HUMAN Neurogenic differentiation factor 2 (NeuroD2) (Class A basic helix-loop-helix protein 1) (bHLHa1) (NeuroD-related factor) (NDRF) NEUROD2 BHLHA1 NDRF associative learning [GO:0008306]; axon development [GO:0061564]; behavioral fear response [GO:0001662]; cellular response to calcium ion [GO:0071277]; cellular response to electrical stimulus [GO:0071257]; cerebellar cortex development [GO:0021695]; negative regulation of synapse maturation [GO:2000297]; nervous system development [GO:0007399]; positive regulation of calcium-mediated signaling [GO:0050850]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of synapse maturation [GO:0090129]; positive regulation of synaptic plasticity [GO:0031915]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein ubiquitination [GO:0016567]; regulation of transcription by RNA polymerase II [GO:0006357]; sensory organ development [GO:0007423] -Q15788 reviewed NCOA1_HUMAN Nuclear receptor coactivator 1 (NCoA-1) (EC 2.3.1.48) (Class E basic helix-loop-helix protein 74) (bHLHe74) (Protein Hin-2) (RIP160) (Renal carcinoma antigen NY-REN-52) (Steroid receptor coactivator 1) (SRC-1) NCOA1 BHLHE74 SRC1 cellular response to hormone stimulus [GO:0032870]; cellular response to Thyroglobulin triiodothyronine [GO:1904017]; cerebellum development [GO:0021549]; cerebral cortex development [GO:0021987]; estrous cycle [GO:0044849]; hippocampus development [GO:0021766]; hypothalamus development [GO:0021854]; labyrinthine layer morphogenesis [GO:0060713]; lactation [GO:0007595]; male gonad development [GO:0008584]; male mating behavior [GO:0060179]; mRNA transcription by RNA polymerase II [GO:0042789]; peroxisome proliferator activated receptor signaling pathway [GO:0035357]; positive regulation of adipose tissue development [GO:1904179]; positive regulation of apoptotic process [GO:0043065]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of female receptivity [GO:0045925]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription from RNA polymerase II promoter by galactose [GO:0000435]; regulation of cellular response to insulin stimulus [GO:1900076]; regulation of thyroid hormone mediated signaling pathway [GO:0002155]; response to estradiol [GO:0032355]; response to progesterone [GO:0032570]; response to retinoic acid [GO:0032526] -Q15796 reviewed SMAD2_HUMAN Mothers against decapentaplegic homolog 2 (MAD homolog 2) (Mothers against DPP homolog 2) (JV18-1) (Mad-related protein 2) (hMAD-2) (SMAD family member 2) (SMAD 2) (Smad2) (hSMAD2) SMAD2 MADH2 MADR2 activin receptor signaling pathway [GO:0032924]; adrenal gland development [GO:0030325]; anatomical structure morphogenesis [GO:0009653]; anterior/posterior pattern specification [GO:0009952]; aortic valve morphogenesis [GO:0003180]; cell differentiation [GO:0030154]; cell fate commitment [GO:0045165]; cell population proliferation [GO:0008283]; cellular response to glucose stimulus [GO:0071333]; determination of left/right asymmetry in lateral mesoderm [GO:0003140]; DNA-templated transcription [GO:0006351]; embryonic cranial skeleton morphogenesis [GO:0048701]; embryonic foregut morphogenesis [GO:0048617]; endocardial cushion morphogenesis [GO:0003203]; endoderm formation [GO:0001706]; gastrulation [GO:0007369]; in utero embryonic development [GO:0001701]; insulin secretion [GO:0030073]; intracellular signal transduction [GO:0035556]; lung development [GO:0030324]; mesoderm formation [GO:0001707]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of DNA-templated transcription [GO:0045892]; nodal signaling pathway [GO:0038092]; odontoblast differentiation [GO:0071895]; organ growth [GO:0035265]; pancreas development [GO:0031016]; paraxial mesoderm morphogenesis [GO:0048340]; pericardium development [GO:0060039]; positive regulation of BMP signaling pathway [GO:0030513]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-embryonic development [GO:0009791]; primary miRNA processing [GO:0031053]; pulmonary valve morphogenesis [GO:0003184]; regulation of binding [GO:0051098]; regulation of DNA-templated transcription [GO:0006355]; regulation of transforming growth factor beta receptor signaling pathway [GO:0017015]; response to cholesterol [GO:0070723]; secondary palate development [GO:0062009]; signal transduction involved in regulation of gene expression [GO:0023019]; SMAD protein signal transduction [GO:0060395]; transforming growth factor beta receptor signaling pathway [GO:0007179]; ureteric bud development [GO:0001657]; zygotic specification of dorsal/ventral axis [GO:0007352] -Q15797 reviewed SMAD1_HUMAN Mothers against decapentaplegic homolog 1 (MAD homolog 1) (Mothers against DPP homolog 1) (JV4-1) (Mad-related protein 1) (SMAD family member 1) (SMAD 1) (Smad1) (hSMAD1) (Transforming growth factor-beta-signaling protein 1) (BSP-1) SMAD1 BSP1 MADH1 MADR1 anatomical structure morphogenesis [GO:0009653]; BMP signaling pathway [GO:0030509]; bone development [GO:0060348]; cardiac conduction system development [GO:0003161]; cardiac muscle cell proliferation [GO:0060038]; cartilage development [GO:0051216]; cell differentiation [GO:0030154]; cellular response to organic cyclic compound [GO:0071407]; DNA-templated transcription [GO:0006351]; embryonic pattern specification [GO:0009880]; gamete generation [GO:0007276]; hindbrain development [GO:0030902]; homeostatic process [GO:0042592]; inflammatory response [GO:0006954]; MAPK cascade [GO:0000165]; mesodermal cell fate commitment [GO:0001710]; midbrain development [GO:0030901]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of muscle cell differentiation [GO:0051148]; ossification [GO:0001503]; osteoblast fate commitment [GO:0002051]; positive regulation of cartilage development [GO:0061036]; positive regulation of gene expression [GO:0010628]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of sprouting angiogenesis [GO:1903672]; positive regulation of transcription by RNA polymerase II [GO:0045944]; primary miRNA processing [GO:0031053]; regulation of transcription by RNA polymerase II [GO:0006357]; signal transduction [GO:0007165]; SMAD protein signal transduction [GO:0060395]; transcription by RNA polymerase II [GO:0006366]; transforming growth factor beta receptor signaling pathway [GO:0007179]; ureteric bud development [GO:0001657] -Q15853 reviewed USF2_HUMAN Upstream stimulatory factor 2 (Class B basic helix-loop-helix protein 12) (bHLHb12) (FOS-interacting protein) (FIP) (Major late transcription factor 2) (Upstream transcription factor 2) USF2 BHLHB12 lactation [GO:0007595]; late viral transcription [GO:0019086]; lipid homeostasis [GO:0055088]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription from RNA polymerase II promoter by glucose [GO:0000432]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of transcription from RNA polymerase II promoter by glucose [GO:0000430] -Q15911 reviewed ZFHX3_HUMAN Zinc finger homeobox protein 3 (AT motif-binding factor 1) (AT-binding transcription factor 1) (Alpha-fetoprotein enhancer-binding protein) (Zinc finger homeodomain protein 3) (ZFH-3) ZFHX3 ATBF1 C16orf47 circadian regulation of gene expression [GO:0032922]; muscle organ development [GO:0007517]; negative regulation of myoblast differentiation [GO:0045662]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of cell adhesion [GO:0045785]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of myoblast differentiation [GO:0045663]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of locomotor rhythm [GO:1904059]; regulation of neuron differentiation [GO:0045664]; regulation of transcription by RNA polymerase II [GO:0006357]; response to transforming growth factor beta [GO:0071559] -Q15915 reviewed ZIC1_HUMAN Zinc finger protein ZIC 1 (Zinc finger protein 201) (Zinc finger protein of the cerebellum 1) ZIC1 ZIC ZNF201 adult walking behavior [GO:0007628]; brain development [GO:0007420]; cell differentiation [GO:0030154]; central nervous system development [GO:0007417]; gene expression [GO:0010467]; hippocampus development [GO:0021766]; inner ear morphogenesis [GO:0042472]; maintenance of cell number [GO:0098727]; olfactory bulb development [GO:0021772]; pattern specification process [GO:0007389]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of protein import into nucleus [GO:0042307]; regulation of smoothened signaling pathway [GO:0008589]; regulation of transcription by RNA polymerase II [GO:0006357]; spinal cord development [GO:0021510] -Q16236 reviewed NF2L2_HUMAN Nuclear factor erythroid 2-related factor 2 (NF-E2-related factor 2) (NFE2-related factor 2) (Nrf-2) (Nuclear factor, erythroid derived 2, like 2) NFE2L2 NRF2 aflatoxin catabolic process [GO:0046223]; cell redox homeostasis [GO:0045454]; cellular response to angiotensin [GO:1904385]; cellular response to copper ion [GO:0071280]; cellular response to fluid shear stress [GO:0071498]; cellular response to glucose starvation [GO:0042149]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to hypoxia [GO:0071456]; cellular response to laminar fluid shear stress [GO:0071499]; cellular response to oxidative stress [GO:0034599]; cellular response to tumor necrosis factor [GO:0071356]; cellular response to xenobiotic stimulus [GO:0071466]; endoplasmic reticulum unfolded protein response [GO:0030968]; inflammatory response [GO:0006954]; integrated stress response signaling [GO:0140467]; negative regulation of cardiac muscle cell apoptotic process [GO:0010667]; negative regulation of cellular response to hypoxia [GO:1900038]; negative regulation of endothelial cell apoptotic process [GO:2000352]; negative regulation of ferroptosis [GO:0110076]; negative regulation of hematopoietic stem cell differentiation [GO:1902037]; negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway [GO:1902176]; negative regulation of vascular associated smooth muscle cell migration [GO:1904753]; PERK-mediated unfolded protein response [GO:0036499]; positive regulation of angiogenesis [GO:0045766]; positive regulation of blood coagulation [GO:0030194]; positive regulation of blood vessel endothelial cell migration [GO:0043536]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of ERAD pathway [GO:1904294]; positive regulation of gene expression [GO:0010628]; positive regulation of glucose import [GO:0046326]; positive regulation of glutathione biosynthetic process [GO:1903788]; positive regulation of neuron projection development [GO:0010976]; positive regulation of reactive oxygen species metabolic process [GO:2000379]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of ubiquitin-dependent protein catabolic process [GO:2000060]; proteasomal ubiquitin-independent protein catabolic process [GO:0010499]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; protein ubiquitination [GO:0016567]; regulation of cellular response to oxidative stress [GO:1900407]; regulation of embryonic development [GO:0045995]; regulation of innate immune response [GO:0045088]; regulation of removal of superoxide radicals [GO:2000121]; regulation of transcription by RNA polymerase II [GO:0006357]; response to ischemia [GO:0002931]; response to oxidative stress [GO:0006979] -Q16254 reviewed E2F4_HUMAN Transcription factor E2F4 (E2F-4) E2F4 animal organ morphogenesis [GO:0009887]; blood circulation [GO:0008015]; cell volume homeostasis [GO:0006884]; centriole assembly [GO:0098534]; epithelial cell development [GO:0002064]; motile cilium assembly [GO:0044458]; multi-ciliated epithelial cell differentiation [GO:1903251]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell population proliferation [GO:0042127]; regulation of transcription by RNA polymerase II [GO:0006357] -Q16514 reviewed TAF12_HUMAN Transcription initiation factor TFIID subunit 12 (Transcription initiation factor TFIID 20/15 kDa subunits) (TAFII-20/TAFII-15) (TAFII20/TAFII15) TAF12 TAF15 TAF2J TAFII20 DNA-templated transcription initiation [GO:0006352]; mRNA transcription by RNA polymerase II [GO:0042789]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; regulation of DNA repair [GO:0006282]; regulation of DNA-templated transcription [GO:0006355]; regulation of RNA splicing [GO:0043484]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA polymerase II preinitiation complex assembly [GO:0051123]; transcription by RNA polymerase II [GO:0006366]; transcription initiation at RNA polymerase II promoter [GO:0006367] -Q16520 reviewed BATF_HUMAN Basic leucine zipper transcriptional factor ATF-like (B-cell-activating transcription factor) (B-ATF) (SF-HT-activated gene 2 protein) (SFA-2) BATF defense response to protozoan [GO:0042832]; DNA damage response [GO:0006974]; DNA damage response, signal transduction by p53 class mediator [GO:0030330]; hematopoietic stem cell differentiation [GO:0060218]; integrated stress response signaling [GO:0140467]; isotype switching [GO:0045190]; lymphoid progenitor cell differentiation [GO:0002320]; myeloid dendritic cell differentiation [GO:0043011]; positive regulation of cytokine production [GO:0001819]; regulation of T-helper 17 cell differentiation [GO:2000319]; regulation of transcription by RNA polymerase II [GO:0006357]; T-helper 17 cell differentiation [GO:0072539]; T-helper 17 cell lineage commitment [GO:0072540]; T-helper 2 cell differentiation [GO:0045064] -Q16534 reviewed HLF_HUMAN Hepatic leukemia factor HLF positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; rhythmic process [GO:0048511]; skeletal muscle cell differentiation [GO:0035914] -Q16539 reviewed MK14_HUMAN Mitogen-activated protein kinase 14 (MAP kinase 14) (MAPK 14) (EC 2.7.11.24) (Cytokine suppressive anti-inflammatory drug-binding protein) (CSAID-binding protein) (CSBP) (MAP kinase MXI2) (MAX-interacting protein 2) (Mitogen-activated protein kinase p38 alpha) (MAP kinase p38 alpha) (Stress-activated protein kinase 2a) (SAPK2a) MAPK14 CSBP CSBP1 CSBP2 CSPB1 MXI2 SAPK2A 3'-UTR-mediated mRNA stabilization [GO:0070935]; angiogenesis [GO:0001525]; apoptotic process [GO:0006915]; bone development [GO:0060348]; cartilage condensation [GO:0001502]; cell morphogenesis [GO:0000902]; cell surface receptor protein serine/threonine kinase signaling pathway [GO:0007178]; cell surface receptor signaling pathway [GO:0007166]; cellular response to ionizing radiation [GO:0071479]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to lipoteichoic acid [GO:0071223]; cellular response to tumor necrosis factor [GO:0071356]; cellular response to UV-B [GO:0071493]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; cellular response to virus [GO:0098586]; cellular senescence [GO:0090398]; chemotaxis [GO:0006935]; chondrocyte differentiation [GO:0002062]; DNA damage checkpoint signaling [GO:0000077]; fatty acid oxidation [GO:0019395]; glucose import [GO:0046323]; glucose metabolic process [GO:0006006]; intracellular signal transduction [GO:0035556]; lipopolysaccharide-mediated signaling pathway [GO:0031663]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of hippo signaling [GO:0035331]; negative regulation of inflammatory response to antigenic stimulus [GO:0002862]; osteoblast differentiation [GO:0001649]; osteoclast differentiation [GO:0030316]; p38MAPK cascade [GO:0038066]; peptidyl-serine phosphorylation [GO:0018105]; placenta development [GO:0001890]; platelet activation [GO:0030168]; positive regulation of brown fat cell differentiation [GO:0090336]; positive regulation of cardiac muscle cell proliferation [GO:0060045]; positive regulation of cyclase activity [GO:0031281]; positive regulation of erythrocyte differentiation [GO:0045648]; positive regulation of gene expression [GO:0010628]; positive regulation of glucose import [GO:0046326]; positive regulation of interleukin-12 production [GO:0032735]; positive regulation of muscle cell differentiation [GO:0051149]; positive regulation of myoblast differentiation [GO:0045663]; positive regulation of myoblast fusion [GO:1901741]; positive regulation of myotube differentiation [GO:0010831]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of reactive oxygen species metabolic process [GO:2000379]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cytokine production involved in inflammatory response [GO:1900015]; regulation of ossification [GO:0030278]; regulation of synaptic membrane adhesion [GO:0099179]; regulation of transcription by RNA polymerase II [GO:0006357]; response to dietary excess [GO:0002021]; response to insulin [GO:0032868]; response to muramyl dipeptide [GO:0032495]; response to muscle stretch [GO:0035994]; signal transduction [GO:0007165]; signal transduction in response to DNA damage [GO:0042770]; skeletal muscle tissue development [GO:0007519]; stem cell differentiation [GO:0048863]; stress-activated MAPK cascade [GO:0051403]; stress-activated protein kinase signaling cascade [GO:0031098]; stress-induced premature senescence [GO:0090400]; striated muscle cell differentiation [GO:0051146]; transcription by RNA polymerase II [GO:0006366]; vascular endothelial growth factor receptor signaling pathway [GO:0048010] -Q16552 reviewed IL17_HUMAN Interleukin-17A (IL-17) (IL-17A) (Cytotoxic T-lymphocyte-associated antigen 8) (CTLA-8) IL17A CTLA8 IL17 adaptive immune response [GO:0002250]; apoptotic process [GO:0006915]; cell death [GO:0008219]; cell-cell signaling [GO:0007267]; cellular response to interleukin-1 [GO:0071347]; defense response to fungus [GO:0050832]; defense response to Gram-negative bacterium [GO:0050829]; defense response to Gram-positive bacterium [GO:0050830]; fibroblast activation [GO:0072537]; gene expression [GO:0010467]; granulocyte migration [GO:0097530]; immune response [GO:0006955]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; interleukin-17-mediated signaling pathway [GO:0097400]; interleukin-17A-mediated signaling pathway [GO:0038173]; intestinal epithelial structure maintenance [GO:0060729]; keratinocyte differentiation [GO:0030216]; keratinocyte proliferation [GO:0043616]; negative regulation of inflammatory response to wounding [GO:0106015]; Notch signaling pathway [GO:0007219]; positive regulation of antimicrobial peptide production [GO:0002225]; positive regulation of bicellular tight junction assembly [GO:1903348]; positive regulation of chemokine (C-X-C motif) ligand 1 production [GO:2000340]; positive regulation of cytokine production involved in inflammatory response [GO:1900017]; positive regulation of interleukin-1 beta production [GO:0032731]; positive regulation of interleukin-12 production [GO:0032735]; positive regulation of interleukin-16 production [GO:0032739]; positive regulation of interleukin-23 production [GO:0032747]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of osteoclast differentiation [GO:0045672]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; response to wounding [GO:0009611] -Q16594 reviewed TAF9_HUMAN Transcription initiation factor TFIID subunit 9 (RNA polymerase II TBP-associated factor subunit G) (STAF31/32) (Transcription initiation factor TFIID 31 kDa subunit) (TAFII-31) (TAFII31) (Transcription initiation factor TFIID 32 kDa subunit) (TAFII-32) (TAFII32) TAF9 TAF2G TAFII31 box C/D snoRNP assembly [GO:0000492]; chromatin remodeling [GO:0006338]; DNA damage response [GO:0006974]; mRNA transcription by RNA polymerase II [GO:0042789]; negative regulation of apoptotic process [GO:0043066]; negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:1902166]; negative regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032435]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of response to cytokine stimulus [GO:0060760]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; protein stabilization [GO:0050821]; regulation of DNA repair [GO:0006282]; regulation of DNA-templated transcription [GO:0006355]; regulation of RNA splicing [GO:0043484]; regulation of transcription by RNA polymerase II [GO:0006357]; response to interleukin-1 [GO:0070555]; response to L-glutamate [GO:1902065]; RNA polymerase II preinitiation complex assembly [GO:0051123] -Q16633 reviewed OBF1_HUMAN POU domain class 2-associating factor 1 (B-cell-specific coactivator OBF-1) (BOB-1) (OCA-B) (OCT-binding factor 1) POU2AF1 BOB1 OBF1 cellular response to virus [GO:0098586]; germinal center B cell differentiation [GO:0002314]; humoral immune response [GO:0006959]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q16650 reviewed TBR1_HUMAN T-box brain protein 1 (T-brain-1) (TBR-1) (TES-56) TBR1 amygdala development [GO:0021764]; brain development [GO:0007420]; cell fate specification [GO:0001708]; cerebral cortex development [GO:0021987]; chromatin remodeling [GO:0006338]; commitment of neuronal cell to specific neuron type in forebrain [GO:0021902]; conditioned taste aversion [GO:0001661]; gene expression [GO:0010467]; hindbrain development [GO:0030902]; negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of axon guidance [GO:1902667]; regulation of neuron projection development [GO:0010975]; regulation of transcription by RNA polymerase II [GO:0006357]; specification of animal organ identity [GO:0010092] -Q16656 reviewed NRF1_HUMAN Nuclear respiratory factor 1 (NRF-1) (Alpha palindromic-binding protein) (Alpha-pal) NRF1 positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q16665 reviewed HIF1A_HUMAN Hypoxia-inducible factor 1-alpha (HIF-1-alpha) (HIF1-alpha) (ARNT-interacting protein) (Basic-helix-loop-helix-PAS protein MOP1) (Class E basic helix-loop-helix protein 78) (bHLHe78) (Member of PAS protein 1) (PAS domain-containing protein 8) HIF1A BHLHE78 MOP1 PASD8 angiogenesis [GO:0001525]; axonal transport of mitochondrion [GO:0019896]; B-1 B cell homeostasis [GO:0001922]; bone mineralization [GO:0030282]; cardiac ventricle morphogenesis [GO:0003208]; cellular response to hypoxia [GO:0071456]; cellular response to interleukin-1 [GO:0071347]; cellular response to oxidative stress [GO:0034599]; cellular response to virus [GO:0098586]; cerebral cortex development [GO:0021987]; chondrocyte differentiation [GO:0002062]; collagen metabolic process [GO:0032963]; connective tissue replacement involved in inflammatory response wound healing [GO:0002248]; digestive tract morphogenesis [GO:0048546]; dopaminergic neuron differentiation [GO:0071542]; elastin metabolic process [GO:0051541]; embryonic hemopoiesis [GO:0035162]; embryonic placenta development [GO:0001892]; epithelial cell differentiation involved in mammary gland alveolus development [GO:0061030]; epithelial to mesenchymal transition [GO:0001837]; glandular epithelial cell maturation [GO:0002071]; heart looping [GO:0001947]; hemoglobin biosynthetic process [GO:0042541]; hypoxia-inducible factor-1alpha signaling pathway [GO:0097411]; insulin secretion involved in cellular response to glucose stimulus [GO:0035773]; intestinal epithelial cell maturation [GO:0060574]; intracellular glucose homeostasis [GO:0001678]; intracellular iron ion homeostasis [GO:0006879]; intracellular oxygen homeostasis [GO:0032364]; iris morphogenesis [GO:0061072]; lactate metabolic process [GO:0006089]; lactation [GO:0007595]; mesenchymal cell apoptotic process [GO:0097152]; muscle cell cellular homeostasis [GO:0046716]; negative regulation of bone mineralization [GO:0030502]; negative regulation of gene expression [GO:0010629]; negative regulation of growth [GO:0045926]; negative regulation of mesenchymal cell apoptotic process [GO:2001054]; negative regulation of miRNA transcription [GO:1902894]; negative regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway [GO:1903377]; negative regulation of reactive oxygen species metabolic process [GO:2000378]; negative regulation of thymocyte apoptotic process [GO:0070244]; negative regulation of TOR signaling [GO:0032007]; neural crest cell migration [GO:0001755]; neural fold elevation formation [GO:0021502]; neuroblast proliferation [GO:0007405]; neuron apoptotic process [GO:0051402]; outflow tract morphogenesis [GO:0003151]; positive regulation of angiogenesis [GO:0045766]; positive regulation of blood vessel endothelial cell migration [GO:0043536]; positive regulation of chemokine production [GO:0032722]; positive regulation of chemokine-mediated signaling pathway [GO:0070101]; positive regulation of cytokine production involved in inflammatory response [GO:1900017]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of epithelial cell migration [GO:0010634]; positive regulation of erythrocyte differentiation [GO:0045648]; positive regulation of gene expression [GO:0010628]; positive regulation of glycolytic process [GO:0045821]; positive regulation of hormone biosynthetic process [GO:0046886]; positive regulation of insulin secretion involved in cellular response to glucose stimulus [GO:0035774]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of mitophagy [GO:1901526]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of nitric-oxide synthase activity [GO:0051000]; positive regulation of signaling receptor activity [GO:2000273]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular endothelial growth factor production [GO:0010575]; positive regulation of vascular endothelial growth factor receptor signaling pathway [GO:0030949]; regulation of aerobic respiration [GO:1903715]; regulation of DNA-templated transcription [GO:0006355]; regulation of gene expression [GO:0010468]; regulation of glycolytic process [GO:0006110]; regulation of protein neddylation [GO:2000434]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of transforming growth factor beta2 production [GO:0032909]; response to hypoxia [GO:0001666]; response to iron ion [GO:0010039]; response to muscle activity [GO:0014850]; response to reactive oxygen species [GO:0000302]; retina vasculature development in camera-type eye [GO:0061298]; signal transduction [GO:0007165]; TOR signaling [GO:0031929]; vascular endothelial growth factor production [GO:0010573]; visual learning [GO:0008542] -Q16666 reviewed IF16_HUMAN Gamma-interferon-inducible protein 16 (Ifi-16) (Interferon-inducible myeloid differentiation transcriptional activator) IFI16 IFNGIP1 activation of cysteine-type endopeptidase activity [GO:0097202]; activation of innate immune response [GO:0002218]; autophagy [GO:0006914]; cellular response to glucose starvation [GO:0042149]; cellular response to interferon-beta [GO:0035458]; cellular response to ionizing radiation [GO:0071479]; defense response to virus [GO:0051607]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; intrinsic apoptotic signaling pathway by p53 class mediator [GO:0072332]; intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:0042771]; monocyte differentiation [GO:0030224]; myeloid cell differentiation [GO:0030099]; negative regulation of AIM2 inflammasome complex assembly [GO:0140972]; negative regulation of cysteine-type endopeptidase activity [GO:2000117]; negative regulation of DNA binding [GO:0043392]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of gene expression, epigenetic [GO:0045814]; negative regulation of innate immune response [GO:0045824]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of viral genome replication [GO:0045071]; positive regulation of cytokine production [GO:0001819]; positive regulation of interleukin-1 beta production [GO:0032731]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of autophagy [GO:0010506] -Q16676 reviewed FOXD1_HUMAN Forkhead box protein D1 (Forkhead-related protein FKHL8) (Forkhead-related transcription factor 4) (FREAC-4) FOXD1 FKHL8 FREAC4 anatomical structure morphogenesis [GO:0009653]; axon guidance [GO:0007411]; canonical Wnt signaling pathway [GO:0060070]; cell differentiation [GO:0030154]; dichotomous subdivision of terminal units involved in ureteric bud branching [GO:0060678]; luteinizing hormone secretion [GO:0032275]; metanephric capsule development [GO:0072213]; metanephric capsule specification [GO:0072267]; metanephric nephron development [GO:0072210]; negative regulation of DNA-templated transcription [GO:0045892]; nephrogenic mesenchyme development [GO:0072076]; positive regulation of BMP signaling pathway [GO:0030513]; positive regulation of gene expression [GO:0010628]; positive regulation of kidney development [GO:0090184]; regulation of transcription by RNA polymerase II [GO:0006357] -Q16849 reviewed PTPRN_HUMAN Receptor-type tyrosine-protein phosphatase-like N (R-PTP-N) (Islet cell antigen 512) (ICA 512) (Islet cell autoantigen 3) (PTP IA-2) [Cleaved into: ICA512-N-terminal fragment (ICA512-NTF); ICA512-transmembrane fragment (ICA512-TMF); ICA512-cleaved cytosolic fragment (ICA512-CCF)] PTPRN ICA3 ICA512 dense core granule maturation [GO:1990502]; insulin secretion [GO:0030073]; insulin secretion involved in cellular response to glucose stimulus [GO:0035773]; luteinization [GO:0001553]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type B pancreatic cell proliferation [GO:1904692]; regulation of secretion [GO:0051046]; response to reactive oxygen species [GO:0000302] -Q17R98 reviewed ZN827_HUMAN Zinc finger protein 827 ZNF827 chromatin remodeling [GO:0006338]; establishment of protein localization to telomere [GO:0070200]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of shelterin complex assembly [GO:1904791]; positive regulation of transcription by RNA polymerase II [GO:0045944]; telomere maintenance [GO:0000723] -Q2KHR2 reviewed RFX7_HUMAN DNA-binding protein RFX7 (Regulatory factor X 7) (Regulatory factor X domain-containing protein 2) RFX7 RFXDC2 positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q32MQ0 reviewed ZN750_HUMAN Zinc finger protein 750 ZNF750 cell differentiation [GO:0030154]; epidermis development [GO:0008544]; establishment of skin barrier [GO:0061436]; membrane biogenesis [GO:0044091]; negative regulation of epithelial to mesenchymal transition [GO:0010719]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of ceramide biosynthetic process [GO:2000304]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q33E94 reviewed RFX4_HUMAN Transcription factor RFX4 (Regulatory factor X 4) (Testis development protein NYD-SP10) RFX4 cilium assembly [GO:0060271]; negative regulation of smoothened signaling pathway [GO:0045879]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of protein processing [GO:0070613]; regulation of transcription by RNA polymerase II [GO:0006357]; telencephalon development [GO:0021537] -Q4G0J3 reviewed LARP7_HUMAN La-related protein 7 (La ribonucleoprotein domain family member 7) (hLARP7) (P-TEFb-interaction protein for 7SK stability) (PIP7S) LARP7 HDCMA18P box C/D sno(s)RNA 3'-end processing [GO:0000494]; cell differentiation [GO:0030154]; mRNA processing [GO:0006397]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transcription elongation by RNA polymerase II [GO:0034244]; negative regulation of viral transcription [GO:0032897]; positive regulation of protein localization to Cajal body [GO:1904871]; positive regulation of snRNA transcription by RNA polymerase II [GO:1905382]; regulation of mRNA splicing, via spliceosome [GO:0048024]; RNA splicing [GO:0008380]; spermatogenesis [GO:0007283]; U6 2'-O-snRNA methylation [GO:1990438] -Q4KMG0 reviewed CDON_HUMAN Cell adhesion molecule-related/down-regulated by oncogenes CDON CDO anterior/posterior pattern specification [GO:0009952]; cell adhesion [GO:0007155]; cell fate specification [GO:0001708]; cell-cell adhesion [GO:0098609]; cerebral cortex development [GO:0021987]; embryonic body morphogenesis [GO:0010172]; embryonic retina morphogenesis in camera-type eye [GO:0060059]; lens development in camera-type eye [GO:0002088]; myoblast fusion [GO:0007520]; nervous system development [GO:0007399]; neuroblast proliferation [GO:0007405]; neuron differentiation [GO:0030182]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of skeletal muscle tissue development [GO:0048643]; positive regulation of small GTPase mediated signal transduction [GO:0051057]; positive regulation of transcription by RNA polymerase II [GO:0045944]; skeletal muscle satellite cell differentiation [GO:0014816]; smoothened signaling pathway [GO:0007224] -Q4LE39 reviewed ARI4B_HUMAN AT-rich interactive domain-containing protein 4B (ARID domain-containing protein 4B) (180 kDa Sin3-associated polypeptide) (Sin3-associated polypeptide p180) (Breast cancer-associated antigen BRCAA1) (Histone deacetylase complex subunit SAP180) (Retinoblastoma-binding protein 1-like 1) ARID4B BRCAA1 RBBP1L1 RBP1L1 SAP180 establishment of Sertoli cell barrier [GO:0097368]; genomic imprinting [GO:0071514]; negative regulation of cell migration [GO:0030336]; negative regulation of stem cell population maintenance [GO:1902455]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; positive regulation of stem cell population maintenance [GO:1902459]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; spermatogenesis [GO:0007283]; transcription by RNA polymerase II [GO:0006366] -Q53ET0 reviewed CRTC2_HUMAN CREB-regulated transcription coactivator 2 (Transducer of regulated cAMP response element-binding protein 2) (TORC-2) (Transducer of CREB protein 2) CRTC2 TORC2 gluconeogenesis [GO:0006094]; glucose homeostasis [GO:0042593]; positive regulation of CREB transcription factor activity [GO:0032793]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein homotetramerization [GO:0051289] -Q53H80 reviewed AKIR2_HUMAN Akirin-2 AKIRIN2 C6orf166 adaptive immune response [GO:0002250]; cerebral cortex development [GO:0021987]; defense response to bacterium [GO:0042742]; embryo development ending in birth or egg hatching [GO:0009792]; innate immune response [GO:0045087]; negative regulation of gene expression [GO:0010629]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nuclear protein quality control by the ubiquitin-proteasome system [GO:0071630]; positive regulation of adaptive immune response [GO:0002821]; positive regulation of B cell activation [GO:0050871]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of innate immune response [GO:0045089]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proteasome localization [GO:0031144]; protein import into nucleus [GO:0006606]; regulation of muscle cell differentiation [GO:0051147]; response to lipopolysaccharide [GO:0032496] -Q53XC5 unreviewed Q53XC5_HUMAN Bone morphogenetic protein 4 BMP4 hCG_20967 ameloblast differentiation [GO:0036305]; anterior/posterior axis specification [GO:0009948]; aortic valve morphogenesis [GO:0003180]; BMP signaling pathway [GO:0030509]; branching involved in prostate gland morphogenesis [GO:0060442]; branching involved in ureteric bud morphogenesis [GO:0001658]; bud elongation involved in lung branching [GO:0060449]; cardiac muscle cell differentiation [GO:0055007]; chondrocyte differentiation [GO:0002062]; coronary vasculature development [GO:0060976]; cranial suture morphogenesis [GO:0060363]; deltoid tuberosity development [GO:0035993]; dorsal/ventral neural tube patterning [GO:0021904]; embryonic cranial skeleton morphogenesis [GO:0048701]; embryonic digit morphogenesis [GO:0042733]; embryonic hindlimb morphogenesis [GO:0035116]; embryonic skeletal joint morphogenesis [GO:0060272]; endocardial cushion development [GO:0003197]; endochondral ossification [GO:0001958]; endoderm development [GO:0007492]; epithelial cell proliferation [GO:0050673]; epithelial-mesenchymal cell signaling [GO:0060684]; erythrocyte differentiation [GO:0030218]; germ cell development [GO:0007281]; glomerular capillary formation [GO:0072104]; hematopoietic progenitor cell differentiation [GO:0002244]; inner ear auditory receptor cell differentiation [GO:0042491]; lens induction in camera-type eye [GO:0060235]; mammary gland formation [GO:0060592]; membranous septum morphogenesis [GO:0003149]; mesodermal cell fate determination [GO:0007500]; metanephros development [GO:0001656]; negative regulation of branching involved in ureteric bud morphogenesis [GO:0090191]; negative regulation of chondrocyte differentiation [GO:0032331]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of extrinsic apoptotic signaling pathway [GO:2001237]; negative regulation of gene expression [GO:0010629]; negative regulation of prostatic bud formation [GO:0060686]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural tube closure [GO:0001843]; neuron fate commitment [GO:0048663]; odontogenesis of dentin-containing tooth [GO:0042475]; organ induction [GO:0001759]; osteoblast differentiation [GO:0001649]; outflow tract septum morphogenesis [GO:0003148]; pericyte cell differentiation [GO:1904238]; pharyngeal arch artery morphogenesis [GO:0061626]; pituitary gland development [GO:0021983]; positive regulation of BMP signaling pathway [GO:0030513]; positive regulation of branching involved in lung morphogenesis [GO:0061047]; positive regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis [GO:1905312]; positive regulation of endothelial cell differentiation [GO:0045603]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of gene expression [GO:0010628]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of odontoblast differentiation [GO:1901331]; positive regulation of ossification [GO:0045778]; positive regulation of protein localization to nucleus [GO:1900182]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-embryonic development [GO:0009791]; prostatic bud formation [GO:0060513]; pulmonary valve morphogenesis [GO:0003184]; regulation of branching involved in prostate gland morphogenesis [GO:0060687]; regulation of mesodermal cell differentiation [GO:1905770]; regulation of odontogenesis of dentin-containing tooth [GO:0042487]; regulation of smooth muscle cell differentiation [GO:0051150]; regulation of smooth muscle cell proliferation [GO:0048660]; renal system process [GO:0003014]; smooth muscle cell differentiation [GO:0051145]; smooth muscle tissue development [GO:0048745]; specification of animal organ position [GO:0010159]; telencephalon regionalization [GO:0021978]; tendon cell differentiation [GO:0035990]; trachea formation [GO:0060440]; transcription by RNA polymerase II [GO:0006366]; ureter morphogenesis [GO:0072197] -Q53XR6 unreviewed Q53XR6_HUMAN Mothers against decapentaplegic homolog (MAD homolog) (Mothers against DPP homolog) (SMAD family member) SMAD2 hCG_22544 activin receptor signaling pathway [GO:0032924]; adrenal gland development [GO:0030325]; anterior/posterior pattern specification [GO:0009952]; aortic valve morphogenesis [GO:0003180]; cell fate commitment [GO:0045165]; cell population proliferation [GO:0008283]; cellular response to glucose stimulus [GO:0071333]; embryonic cranial skeleton morphogenesis [GO:0048701]; embryonic foregut morphogenesis [GO:0048617]; embryonic pattern specification [GO:0009880]; endocardial cushion morphogenesis [GO:0003203]; endoderm formation [GO:0001706]; in utero embryonic development [GO:0001701]; insulin secretion [GO:0030073]; intracellular signal transduction [GO:0035556]; lung development [GO:0030324]; mesoderm formation [GO:0001707]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of gene expression [GO:0010629]; odontoblast differentiation [GO:0071895]; organ growth [GO:0035265]; pancreas development [GO:0031016]; paraxial mesoderm morphogenesis [GO:0048340]; pericardium development [GO:0060039]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-embryonic development [GO:0009791]; pulmonary valve morphogenesis [GO:0003184]; regulation of binding [GO:0051098]; secondary palate development [GO:0062009]; signal transduction involved in regulation of gene expression [GO:0023019]; SMAD protein signal transduction [GO:0060395]; transforming growth factor beta receptor signaling pathway [GO:0007179]; ureteric bud development [GO:0001657] -Q53YD1 unreviewed Q53YD1_HUMAN DNA damage-inducible transcript 3 protein (DDIT-3) (C/EBP zeta) (C/EBP-homologous protein) (C/EBP-homologous protein 10) (CCAAT/enhancer-binding protein homologous protein) (Growth arrest and DNA-damage-inducible protein GADD153) DDIT3 hCG_39661 anterior/posterior axis specification [GO:0009948]; artery development [GO:0060840]; blood vessel maturation [GO:0001955]; endoplasmic reticulum unfolded protein response [GO:0030968]; ER overload response [GO:0006983]; establishment of protein localization to mitochondrion [GO:0072655]; gene expression [GO:0010467]; intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress [GO:0070059]; intrinsic apoptotic signaling pathway in response to nitrosative stress [GO:1990442]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cold-induced thermogenesis [GO:0120163]; negative regulation of determination of dorsal identity [GO:2000016]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of myoblast differentiation [GO:0045662]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of intrinsic apoptotic signaling pathway [GO:2001244]; positive regulation of neuron apoptotic process [GO:0043525]; regulation of cell cycle [GO:0051726]; release of sequestered calcium ion into cytosol [GO:0051209]; response to platelet-derived growth factor [GO:0036119]; response to starvation [GO:0042594]; response to wounding [GO:0009611]; sensory perception of sound [GO:0007605]; vascular associated smooth muscle cell migration [GO:1904738]; vascular associated smooth muscle cell proliferation [GO:1990874]; Wnt signaling pathway [GO:0016055] -Q56P03 reviewed EAPP_HUMAN E2F-associated phosphoprotein (EAPP) EAPP C14orf11 BM-036 negative regulation of transcription elongation by RNA polymerase II [GO:0034244]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968] -Q58WW2 reviewed DCAF6_HUMAN DDB1- and CUL4-associated factor 6 (Androgen receptor complex-associated protein) (ARCAP) (IQ motif and WD repeat-containing protein 1) (Nuclear receptor interaction protein) (NRIP) DCAF6 IQWD1 MSTP055 positive regulation of transcription by RNA polymerase II [GO:0045944]; protein ubiquitination [GO:0016567] -Q5BKX8 reviewed CAVN4_HUMAN Caveolae-associated protein 4 (Muscle-related coiled-coil protein) (Muscle-restricted coiled-coil protein) CAVIN4 MURC cell differentiation [GO:0030154]; muscle organ development [GO:0007517]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of gene expression [GO:0010468] -Q5D1E8 reviewed ZC12A_HUMAN Endoribonuclease ZC3H12A (EC 3.1.-.-) (Monocyte chemotactic protein-induced protein 1) (MCP-induced protein 1) (MCPIP-1) (Regnase-1) (Reg1) (Zinc finger CCCH domain-containing protein 12A) ZC3H12A MCPIP MCPIP1 3'-UTR-mediated mRNA destabilization [GO:0061158]; angiogenesis [GO:0001525]; apoptotic process [GO:0006915]; cell differentiation [GO:0030154]; cellular response to chemokine [GO:1990869]; cellular response to glucose starvation [GO:0042149]; cellular response to interleukin-1 [GO:0071347]; cellular response to ionomycin [GO:1904637]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to oxidative stress [GO:0034599]; cellular response to sodium arsenite [GO:1903936]; cellular response to tumor necrosis factor [GO:0071356]; cellular response to virus [GO:0098586]; defense response to virus [GO:0051607]; DNA damage response [GO:0006974]; immune response-activating signaling pathway [GO:0002757]; inflammatory response [GO:0006954]; miRNA catabolic process [GO:0010587]; negative regulation by host of viral genome replication [GO:0044828]; negative regulation of canonical NF-kappaB signal transduction [GO:0043124]; negative regulation of cardiac muscle contraction [GO:0055118]; negative regulation of cytokine production involved in inflammatory response [GO:1900016]; negative regulation of gene expression [GO:0010629]; negative regulation of interleukin-1 beta production [GO:0032691]; negative regulation of interleukin-6 production [GO:0032715]; negative regulation of macrophage activation [GO:0043031]; negative regulation of muscle cell apoptotic process [GO:0010656]; negative regulation of NF-kappaB transcription factor activity [GO:0032088]; negative regulation of nitric oxide biosynthetic process [GO:0045019]; negative regulation of non-canonical NF-kappaB signal transduction [GO:1901223]; negative regulation of protein phosphorylation [GO:0001933]; negative regulation of T-helper 17 cell differentiation [GO:2000320]; negative regulation of tumor necrosis factor production [GO:0032720]; negative regulation of type II interferon production [GO:0032689]; nervous system development [GO:0007399]; nuclear-transcribed mRNA catabolic process, nonsense-mediated decay [GO:0000184]; positive regulation of angiogenesis [GO:0045766]; positive regulation of autophagy [GO:0010508]; positive regulation of defense response to virus by host [GO:0002230]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of execution phase of apoptosis [GO:1900119]; positive regulation of fat cell differentiation [GO:0045600]; positive regulation of gene expression [GO:0010628]; positive regulation of lipid storage [GO:0010884]; positive regulation of miRNA catabolic process [GO:2000627]; positive regulation of mRNA catabolic process [GO:0061014]; positive regulation of p38MAPK cascade [GO:1900745]; positive regulation of protein deubiquitination [GO:1903003]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of reactive oxygen species metabolic process [GO:2000379]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein complex oligomerization [GO:0051259]; protein deubiquitination [GO:0016579]; regulation of gene expression [GO:0010468]; T cell receptor signaling pathway [GO:0050852] -Q5STB3 unreviewed Q5STB3_HUMAN Tumor necrosis factor (TNF-a) (Cachectin) (TNF-alpha) (Tumor necrosis factor ligand superfamily member 2) [Cleaved into: Intracellular domain 1 (ICD1); Intracellular domain 2 (ICD2); C-domain 1; C-domain 2; Tumor necrosis factor, soluble form] TNF TNF-alpha TNFA TNLG1F hCG_43716 calcium-mediated signaling [GO:0019722]; cellular extravasation [GO:0045123]; cellular response to amino acid stimulus [GO:0071230]; cellular response to amyloid-beta [GO:1904646]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to retinoic acid [GO:0071300]; cellular response to toxic substance [GO:0097237]; cellular response to type II interferon [GO:0071346]; circadian rhythm [GO:0007623]; defense response to Gram-positive bacterium [GO:0050830]; detection of mechanical stimulus involved in sensory perception of pain [GO:0050966]; endothelial cell apoptotic process [GO:0072577]; epithelial cell proliferation involved in salivary gland morphogenesis [GO:0060664]; extracellular matrix organization [GO:0030198]; extrinsic apoptotic signaling pathway via death domain receptors [GO:0008625]; glucose metabolic process [GO:0006006]; humoral immune response [GO:0006959]; inflammatory response to wounding [GO:0090594]; intrinsic apoptotic signaling pathway in response to DNA damage [GO:0008630]; JNK cascade [GO:0007254]; leukocyte migration involved in inflammatory response [GO:0002523]; liver regeneration [GO:0097421]; macrophage activation involved in immune response [GO:0002281]; microglial cell activation [GO:0001774]; necroptotic signaling pathway [GO:0097527]; negative regulation of amyloid-beta clearance [GO:1900222]; negative regulation of apoptotic process [GO:0043066]; negative regulation of bile acid secretion [GO:0120190]; negative regulation of endothelial cell proliferation [GO:0001937]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of gene expression [GO:0010629]; negative regulation of glucose import [GO:0046325]; negative regulation of heart rate [GO:0010459]; negative regulation of L-glutamate import across plasma membrane [GO:0002037]; negative regulation of mitotic cell cycle [GO:0045930]; negative regulation of myelination [GO:0031642]; negative regulation of myoblast differentiation [GO:0045662]; negative regulation of osteoblast differentiation [GO:0045668]; negative regulation of oxidative phosphorylation [GO:0090324]; negative regulation of systemic arterial blood pressure [GO:0003085]; negative regulation of transcription by RNA polymerase II [GO:0000122]; osteoclast differentiation [GO:0030316]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; positive regulation of action potential [GO:0045760]; positive regulation of amyloid-beta formation [GO:1902004]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of chronic inflammatory response to antigenic stimulus [GO:0002876]; positive regulation of DNA biosynthetic process [GO:2000573]; positive regulation of fever generation [GO:0031622]; positive regulation of fractalkine production [GO:0032724]; positive regulation of hair follicle development [GO:0051798]; positive regulation of hepatocyte proliferation [GO:2000347]; positive regulation of heterotypic cell-cell adhesion [GO:0034116]; positive regulation of humoral immune response mediated by circulating immunoglobulin [GO:0002925]; positive regulation of interleukin-18 production [GO:0032741]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of JNK cascade [GO:0046330]; positive regulation of lipid metabolic process [GO:0045834]; positive regulation of mitotic nuclear division [GO:0045840]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of neutrophil activation [GO:1902565]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of protein localization to plasma membrane [GO:1903078]; positive regulation of protein transport [GO:0051222]; positive regulation of receptor signaling pathway via JAK-STAT [GO:0046427]; positive regulation of synaptic transmission [GO:0050806]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of translational initiation by iron [GO:0045994]; positive regulation of type II interferon production [GO:0032729]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; positive regulation of vascular associated smooth muscle cell proliferation [GO:1904707]; regulation of branching involved in salivary gland morphogenesis [GO:0060693]; regulation of immunoglobulin production [GO:0002637]; regulation of membrane lipid metabolic process [GO:1905038]; regulation of osteoclast differentiation [GO:0045670]; regulation of protein secretion [GO:0050708]; regulation of reactive oxygen species metabolic process [GO:2000377]; regulation of synapse organization [GO:0050807]; response to 3,3',5-triiodo-L-thyronine [GO:1905242]; response to activity [GO:0014823]; response to ethanol [GO:0045471]; response to fructose [GO:0009750]; response to gold nanoparticle [GO:1990268]; response to Gram-negative bacterium [GO:0140460]; response to hypoxia [GO:0001666]; response to isolation stress [GO:0035900]; response to L-glutamate [GO:1902065]; response to macrophage colony-stimulating factor [GO:0036005]; response to nutrient levels [GO:0031667]; response to xenobiotic stimulus [GO:0009410]; skeletal muscle contraction [GO:0003009]; toll-like receptor 3 signaling pathway [GO:0034138]; tumor necrosis factor-mediated signaling pathway [GO:0033209]; vascular endothelial growth factor production [GO:0010573]; vasodilation [GO:0042311] -Q5T230 reviewed UTF1_HUMAN Undifferentiated embryonic cell transcription factor 1 UTF1 male gonad development [GO:0008584]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q5TA89 reviewed HES5_HUMAN Transcription factor HES-5 (Class B basic helix-loop-helix protein 38) (bHLHb38) (Hairy and enhancer of split 5) HES5 BHLHB38 anterior/posterior pattern specification [GO:0009952]; astrocyte differentiation [GO:0048708]; BMP signaling pathway [GO:0030509]; brain development [GO:0007420]; camera-type eye development [GO:0043010]; cartilage development [GO:0051216]; cell adhesion [GO:0007155]; cell maturation [GO:0048469]; central nervous system myelination [GO:0022010]; comma-shaped body morphogenesis [GO:0072049]; establishment of epithelial cell polarity [GO:0090162]; forebrain radial glial cell differentiation [GO:0021861]; glial cell fate commitment [GO:0021781]; inner ear auditory receptor cell differentiation [GO:0042491]; inner ear receptor cell stereocilium organization [GO:0060122]; metanephric nephron tubule morphogenesis [GO:0072282]; negative regulation of astrocyte differentiation [GO:0048712]; negative regulation of forebrain neuron differentiation [GO:2000978]; negative regulation of inner ear auditory receptor cell differentiation [GO:0045608]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of oligodendrocyte differentiation [GO:0048715]; negative regulation of pro-B cell differentiation [GO:2000974]; negative regulation of stem cell differentiation [GO:2000737]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural tube development [GO:0021915]; neuronal stem cell population maintenance [GO:0097150]; Notch signaling pathway [GO:0007219]; oligodendrocyte development [GO:0014003]; positive regulation of BMP signaling pathway [GO:0030513]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of receptor signaling pathway via JAK-STAT [GO:0046427]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; protein-containing complex assembly [GO:0065003]; regulation of cell differentiation [GO:0045595]; regulation of epithelial cell proliferation [GO:0050678]; regulation of myelination [GO:0031641]; regulation of neurogenesis [GO:0050767]; regulation of transcription by RNA polymerase II [GO:0006357]; S-shaped body morphogenesis [GO:0072050]; smoothened signaling pathway [GO:0007224]; specification of loop of Henle identity [GO:0072086]; telencephalon development [GO:0021537] -Q5TD97 reviewed FHL5_HUMAN Four and a half LIM domains protein 5 (FHL-5) (Activator of cAMP-responsive element modulator in testis) (Activator of CREM in testis) FHL5 ACT positive regulation of transcription by RNA polymerase II [GO:0045944] -Q5VTD9 reviewed GFI1B_HUMAN Zinc finger protein Gfi-1b (Growth factor independent protein 1B) (Potential regulator of CDKN1A translocated in CML) GFI1B chromatin organization [GO:0006325]; negative regulation of G1/S transition of mitotic cell cycle [GO:2000134]; negative regulation of transcription by RNA polymerase II [GO:0000122]; regulation of hemopoiesis [GO:1903706]; regulation of transcription by RNA polymerase II [GO:0006357] -Q5VTR2 reviewed BRE1A_HUMAN E3 ubiquitin-protein ligase BRE1A (BRE1-A) (hBRE1) (EC 2.3.2.27) (RING finger protein 20) (RING-type E3 ubiquitin transferase BRE1A) RNF20 BRE1A negative regulation of cell migration [GO:0030336]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein polyubiquitination [GO:0000209]; regulation of DNA-templated transcription [GO:0006355]; ubiquitin-dependent protein catabolic process [GO:0006511] -Q5VV67 reviewed PPRC1_HUMAN Peroxisome proliferator-activated receptor gamma coactivator-related protein 1 (PGC-1-related coactivator) (PRC) PPRC1 KIAA0595 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q5VVJ2 reviewed MYSM1_HUMAN Deubiquitinase MYSM1 (2A-DUB) (EC 3.4.19.-) (Myb-like, SWIRM and MPN domain-containing protein 1) MYSM1 KIAA1915 chromatin remodeling [GO:0006338]; immune system process [GO:0002376]; pigmentation [GO:0043473]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proteolysis [GO:0006508]; regulation of cell migration [GO:0030334]; regulation of hair follicle development [GO:0051797]; regulation of hemopoiesis [GO:1903706] -Q5VWG9 reviewed TAF3_HUMAN Transcription initiation factor TFIID subunit 3 (140 kDa TATA box-binding protein-associated factor) (TBP-associated factor 3) (Transcription initiation factor TFIID 140 kDa subunit) (TAF(II)140) (TAF140) (TAFII-140) (TAFII140) TAF3 maintenance of protein location in nucleus [GO:0051457]; mRNA transcription by RNA polymerase II [GO:0042789]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; RNA polymerase II preinitiation complex assembly [GO:0051123] -Q5VWP3 reviewed MLIP_HUMAN Muscular LMNA-interacting protein (Cardiac Isl1-interacting protein) (CIP) (Muscular-enriched A-type laminin-interacting protein) MLIP C6orf142 Cip negative regulation of cardiac muscle hypertrophy [GO:0010614]; negative regulation of cardiac muscle hypertrophy in response to stress [GO:1903243]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; transcription by RNA polymerase II [GO:0006366] -Q5VWQ8 reviewed DAB2P_HUMAN Disabled homolog 2-interacting protein (DAB2 interaction protein) (DAB2-interacting protein) (ASK-interacting protein 1) (AIP-1) (DOC-2/DAB-2 interactive protein) DAB2IP AF9Q34 AIP1 KIAA1743 angiogenesis [GO:0001525]; cell motility involved in cerebral cortex radial glia guided migration [GO:0021814]; cellular response to epidermal growth factor stimulus [GO:0071364]; cellular response to interleukin-1 [GO:0071347]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to tumor necrosis factor [GO:0071356]; cellular response to unfolded protein [GO:0034620]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; endothelial cell apoptotic process [GO:0072577]; extrinsic apoptotic signaling pathway via death domain receptors [GO:0008625]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; intracellular signal transduction [GO:0035556]; intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress [GO:0070059]; layer formation in cerebral cortex [GO:0021819]; negative regulation of angiogenesis [GO:0016525]; negative regulation of canonical NF-kappaB signal transduction [GO:0043124]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of endothelial cell migration [GO:0010596]; negative regulation of epidermal growth factor receptor signaling pathway [GO:0042059]; negative regulation of epithelial cell migration [GO:0010633]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of epithelial to mesenchymal transition [GO:0010719]; negative regulation of ERK1 and ERK2 cascade [GO:0070373]; negative regulation of fibroblast proliferation [GO:0048147]; negative regulation of G0 to G1 transition [GO:0070317]; negative regulation of GTPase activity [GO:0034260]; negative regulation of MAP kinase activity [GO:0043407]; negative regulation of NF-kappaB transcription factor activity [GO:0032088]; negative regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051898]; negative regulation of protein catabolic process [GO:0042177]; negative regulation of protein serine/threonine kinase activity [GO:0071901]; negative regulation of Ras protein signal transduction [GO:0046580]; negative regulation of toll-like receptor 4 signaling pathway [GO:0034144]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of vascular endothelial growth factor receptor signaling pathway [GO:0030948]; negative regulation of vascular endothelial growth factor signaling pathway [GO:1900747]; neuron projection morphogenesis [GO:0048812]; positive regulation of apoptotic process [GO:0043065]; positive regulation of apoptotic signaling pathway [GO:2001235]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of dendrite development [GO:1900006]; positive regulation of IRE1-mediated unfolded protein response [GO:1903896]; positive regulation of JNK cascade [GO:0046330]; positive regulation of JUN kinase activity [GO:0043507]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of neuron migration [GO:2001224]; positive regulation of neuron projection development [GO:0010976]; positive regulation of proteasomal protein catabolic process [GO:1901800]; positive regulation of protein catabolic process [GO:0045732]; positive regulation of protein serine/threonine kinase activity [GO:0071902]; positive regulation of protein-containing complex assembly [GO:0031334]; positive regulation of synapse maturation [GO:0090129]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein catabolic process [GO:0030163]; regulation of canonical NF-kappaB signal transduction [GO:0043122]; regulation of cell cycle [GO:0051726]; regulation of GTPase activity [GO:0043087]; regulation of p38MAPK cascade [GO:1900744]; regulation of protein-containing complex assembly [GO:0043254]; tube formation [GO:0035148]; vascular endothelial growth factor receptor-2 signaling pathway [GO:0036324] -Q5VY09 reviewed IER5_HUMAN Immediate early response gene 5 protein IER5 PP4583 SBBI48 cellular response to heat [GO:0034605]; positive regulation of cellular response to heat [GO:1900036]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell population proliferation [GO:0042127] -Q66K89 reviewed E4F1_HUMAN Transcription factor E4F1 (EC 2.3.2.27) (E4F transcription factor 1) (Putative E3 ubiquitin-protein ligase E4F1) (RING-type E3 ubiquitin transferase E4F1) (Transcription factor E4F) (p120E4F) (p50E4F) E4F1 E4F cell division [GO:0051301]; DNA replication [GO:0006260]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein ubiquitination [GO:0016567]; regulation of cell cycle [GO:0051726]; regulation of cell cycle process [GO:0010564]; regulation of mitotic cell cycle, embryonic [GO:0009794]; regulation of transcription by RNA polymerase II [GO:0006357] -Q68CJ9 reviewed CR3L3_HUMAN Cyclic AMP-responsive element-binding protein 3-like protein 3 (cAMP-responsive element-binding protein 3-like protein 3) (Transcription factor CREB-H) [Cleaved into: Processed cyclic AMP-responsive element-binding protein 3-like protein 3] CREB3L3 CREBH HYST1481 positive regulation of acute inflammatory response [GO:0002675]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; response to endoplasmic reticulum stress [GO:0034976]; response to unfolded protein [GO:0006986] -Q68DE3 reviewed USF3_HUMAN Basic helix-loop-helix domain-containing protein USF3 (Upstream transcription factor 3) USF3 KIAA2018 negative regulation of epithelial to mesenchymal transition [GO:0010719]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q6DJT9 reviewed PLAG1_HUMAN Zinc finger protein PLAG1 (Pleiomorphic adenoma gene 1 protein) PLAG1 gland morphogenesis [GO:0022612]; multicellular organism growth [GO:0035264]; negative regulation of gene expression [GO:0010629]; positive regulation of gene expression [GO:0010628]; positive regulation of glial cell proliferation [GO:0060252]; positive regulation of transcription by RNA polymerase II [GO:0045944]; prostate gland growth [GO:0060736]; regulation of DNA-templated transcription [GO:0006355] -Q6FG41 unreviewed Q6FG41_HUMAN Protein c-Fos (Cellular oncogene fos) FOS hCG_22355 cellular response to calcium ion [GO:0071277]; cellular response to epidermal growth factor stimulus [GO:0071364]; cellular response to hypoxia [GO:0071456]; cellular response to parathyroid hormone stimulus [GO:0071374]; cellular response to phorbol 13-acetate 12-myristate [GO:1904628]; cellular response to prolactin [GO:1990646]; cellular response to transforming growth factor beta stimulus [GO:0071560]; cellular response to tumor necrosis factor [GO:0071356]; cellular response to zinc ion starvation [GO:0034224]; conditioned taste aversion [GO:0001661]; female pregnancy [GO:0007565]; mononuclear cell differentiation [GO:1903131]; myoblast proliferation [GO:0051450]; nervous system development [GO:0007399]; osteoclast differentiation [GO:0030316]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of osteoclast differentiation [GO:0045672]; response to activity [GO:0014823]; response to cAMP [GO:0051591]; response to corticosterone [GO:0051412]; response to ethanol [GO:0045471]; response to gravity [GO:0009629]; response to immobilization stress [GO:0035902]; response to insulin [GO:0032868]; response to light stimulus [GO:0009416]; response to lipopolysaccharide [GO:0032496]; response to muscle stretch [GO:0035994]; response to progesterone [GO:0032570]; response to toxic substance [GO:0009636]; response to xenobiotic stimulus [GO:0009410]; skeletal muscle cell differentiation [GO:0035914]; skeletal muscle cell proliferation [GO:0014856]; transcription by RNA polymerase II [GO:0006366] -Q6FGW4 unreviewed Q6FGW4_HUMAN Interleukin family protein IL10 IF2A hCG_22208 branching involved in labyrinthine layer morphogenesis [GO:0060670]; cellular response to estradiol stimulus [GO:0071392]; cellular response to hepatocyte growth factor stimulus [GO:0035729]; cellular response to lipopolysaccharide [GO:0071222]; chronic inflammatory response to antigenic stimulus [GO:0002439]; defense response to bacterium [GO:0042742]; defense response to protozoan [GO:0042832]; liver regeneration [GO:0097421]; negative regulation of chemokine (C-C motif) ligand 5 production [GO:0071650]; negative regulation of chronic inflammatory response to antigenic stimulus [GO:0002875]; negative regulation of endothelial cell apoptotic process [GO:2000352]; negative regulation of heterotypic cell-cell adhesion [GO:0034115]; negative regulation of interleukin-1 production [GO:0032692]; negative regulation of interleukin-12 production [GO:0032695]; negative regulation of interleukin-18 production [GO:0032701]; negative regulation of interleukin-6 production [GO:0032715]; negative regulation of interleukin-8 production [GO:0032717]; negative regulation of myeloid dendritic cell activation [GO:0030886]; negative regulation of nitric oxide biosynthetic process [GO:0045019]; negative regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway [GO:1903377]; negative regulation of tumor necrosis factor production [GO:0032720]; negative regulation of type II interferon production [GO:0032689]; negative regulation of vascular associated smooth muscle cell proliferation [GO:1904706]; positive regulation of cell cycle [GO:0045787]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of macrophage activation [GO:0043032]; positive regulation of MHC class II biosynthetic process [GO:0045348]; positive regulation of sprouting angiogenesis [GO:1903672]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of response to wounding [GO:1903034]; regulation of synapse organization [GO:0050807]; response to activity [GO:0014823]; response to carbon monoxide [GO:0034465]; response to glucocorticoid [GO:0051384]; response to inactivity [GO:0014854]; response to insulin [GO:0032868]; response to xenobiotic stimulus [GO:0009410] -Q6FH53 unreviewed Q6FH53_HUMAN Endothelin-1 EDN1 hCG_37405 adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway [GO:0007193]; artery smooth muscle contraction [GO:0014824]; axon extension [GO:0048675]; axonogenesis involved in innervation [GO:0060385]; body fluid secretion [GO:0007589]; branching involved in blood vessel morphogenesis [GO:0001569]; calcium ion transmembrane transport [GO:0070588]; canonical Wnt signaling pathway [GO:0060070]; cardiac neural crest cell migration involved in outflow tract morphogenesis [GO:0003253]; cartilage development [GO:0051216]; cellular response to calcium ion [GO:0071277]; cellular response to fatty acid [GO:0071398]; cellular response to follicle-stimulating hormone stimulus [GO:0071372]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to human chorionic gonadotropin stimulus [GO:0044751]; cellular response to hypoxia [GO:0071456]; cellular response to interleukin-1 [GO:0071347]; cellular response to luteinizing hormone stimulus [GO:0071373]; cellular response to mineralocorticoid stimulus [GO:0071389]; cellular response to transforming growth factor beta stimulus [GO:0071560]; cellular response to tumor necrosis factor [GO:0071356]; cellular response to type II interferon [GO:0071346]; cellular response to xenobiotic stimulus [GO:0071466]; dorsal/ventral pattern formation [GO:0009953]; embryonic heart tube development [GO:0035050]; endothelin receptor signaling pathway involved in heart process [GO:0086101]; epithelial fluid transport [GO:0042045]; ERK1 and ERK2 cascade [GO:0070371]; glomerular endothelium development [GO:0072011]; glomerular filtration [GO:0003094]; histamine secretion [GO:0001821]; in utero embryonic development [GO:0001701]; intracellular calcium ion homeostasis [GO:0006874]; maternal process involved in parturition [GO:0060137]; meiotic cell cycle process involved in oocyte maturation [GO:1903537]; membrane depolarization [GO:0051899]; middle ear morphogenesis [GO:0042474]; mitochondrion organization [GO:0007005]; negative regulation of gene expression [GO:0010629]; negative regulation of hormone secretion [GO:0046888]; negative regulation of smooth muscle cell apoptotic process [GO:0034392]; neural crest cell fate commitment [GO:0014034]; noradrenergic neuron differentiation [GO:0003357]; pharyngeal arch artery morphogenesis [GO:0061626]; phospholipase C-activating G protein-coupled receptor signaling pathway [GO:0007200]; phospholipase D-activating G protein-coupled receptor signaling pathway [GO:0031583]; podocyte differentiation [GO:0072112]; positive regulation of artery morphogenesis [GO:1905653]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of neutrophil chemotaxis [GO:0090023]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of odontogenesis [GO:0042482]; positive regulation of prostaglandin secretion [GO:0032308]; positive regulation of protein localization to nucleus [GO:1900182]; positive regulation of renal sodium excretion [GO:0035815]; positive regulation of smooth muscle contraction [GO:0045987]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of urine volume [GO:0035810]; positive regulation of vascular associated smooth muscle cell proliferation [GO:1904707]; protein kinase C-activating G protein-coupled receptor signaling pathway [GO:0007205]; regulation of glucose transmembrane transport [GO:0010827]; regulation of pH [GO:0006885]; regulation of systemic arterial blood pressure by endothelin [GO:0003100]; regulation of vasoconstriction [GO:0019229]; renal sodium ion absorption [GO:0070294]; respiratory gaseous exchange by respiratory system [GO:0007585]; response to activity [GO:0014823]; response to amino acid [GO:0043200]; response to amphetamine [GO:0001975]; response to dexamethasone [GO:0071548]; response to leptin [GO:0044321]; response to lipopolysaccharide [GO:0032496]; response to muscle stretch [GO:0035994]; response to nicotine [GO:0035094]; response to ozone [GO:0010193]; response to prostaglandin F [GO:0034696]; response to salt [GO:1902074]; response to testosterone [GO:0033574]; rhythmic excitation [GO:0043179]; semaphorin-plexin signaling pathway involved in axon guidance [GO:1902287]; superoxide anion generation [GO:0042554]; sympathetic neuron axon guidance [GO:0097492]; thyroid gland development [GO:0030878]; transcription by RNA polymerase II [GO:0006366]; vein smooth muscle contraction [GO:0014826] -Q6FHW6 unreviewed Q6FHW6_HUMAN Hepatocyte nuclear factor 1-beta (Transcription factor 2) TCF2 hCG_27684 anterior/posterior pattern specification [GO:0009952]; branching morphogenesis of an epithelial tube [GO:0048754]; embryonic digestive tract morphogenesis [GO:0048557]; endodermal cell fate specification [GO:0001714]; epithelial cell proliferation [GO:0050673]; hepatoblast differentiation [GO:0061017]; hindbrain development [GO:0030902]; inner cell mass cell differentiation [GO:0001826]; insulin secretion [GO:0030073]; mesenchymal cell apoptotic process involved in metanephros development [GO:1900200]; mesonephric duct formation [GO:0072181]; negative regulation of mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis [GO:0061296]; negative regulation of mesenchymal cell apoptotic process involved in metanephros development [GO:1900212]; negative regulation of transcription by RNA polymerase II [GO:0000122]; Notch signaling pathway [GO:0007219]; pancreas development [GO:0031016]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of branch elongation involved in ureteric bud branching [GO:0072095]; regulation of Wnt signaling pathway [GO:0030111]; response to glucose [GO:0009749]; ureteric bud elongation [GO:0060677] -Q6FHY5 unreviewed Q6FHY5_HUMAN MEOX2 protein MEOX2 positive regulation of transcription by RNA polymerase II [GO:0045944]; somite development [GO:0061053] -Q6I9R7 unreviewed Q6I9R7_HUMAN RARA protein (Retinoic acid nuclear receptor alpha variant 1) (Retinoic acid receptor, alpha, isoform CRA_c) (cDNA, FLJ92939, Homo sapiens retinoic acid receptor, alpha (RARA), mRNA) RARA NR1B1 hCG_2007196 cellular response to corticotropin-releasing hormone stimulus [GO:0071376]; cellular response to lipopolysaccharide [GO:0071222]; chondroblast differentiation [GO:0060591]; embryonic camera-type eye development [GO:0031076]; face development [GO:0060324]; female pregnancy [GO:0007565]; germ cell development [GO:0007281]; glandular epithelial cell development [GO:0002068]; growth plate cartilage development [GO:0003417]; hippocampus development [GO:0021766]; limb development [GO:0060173]; liver development [GO:0001889]; multicellular organism growth [GO:0035264]; negative regulation of cartilage development [GO:0061037]; negative regulation of cell differentiation [GO:0045596]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural tube closure [GO:0001843]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of gene expression [GO:0010628]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of transcription by RNA polymerase II [GO:0045944]; prostate gland development [GO:0030850]; regulation of apoptotic process [GO:0042981]; regulation of granulocyte differentiation [GO:0030852]; regulation of hematopoietic progenitor cell differentiation [GO:1901532]; regulation of myelination [GO:0031641]; regulation of synaptic plasticity [GO:0048167]; response to cytokine [GO:0034097]; response to estradiol [GO:0032355]; response to ethanol [GO:0045471]; response to retinoic acid [GO:0032526]; response to vitamin A [GO:0033189]; retinoic acid receptor signaling pathway [GO:0048384]; Sertoli cell fate commitment [GO:0060010]; trachea cartilage development [GO:0060534]; ureteric bud development [GO:0001657]; ventricular cardiac muscle cell differentiation [GO:0055012] -Q6IBA2 unreviewed Q6IBA2_HUMAN Activated RNA polymerase II transcriptional coactivator p15 (SUB1 homolog) PC4 SUB1 hCG_1781938 DNA duplex unwinding [GO:0032508]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; protein homooligomerization [GO:0051260] -Q6IMN6 reviewed CAPR2_HUMAN Caprin-2 (C1q domain-containing protein 1) (Cytoplasmic activation/proliferation-associated protein 2) (Gastric cancer multidrug resistance-associated protein) (Protein EEG-1) (RNA granule protein 140) CAPRIN2 C1QDC1 EEG1 KIAA1873 RNG140 cell differentiation [GO:0030154]; dorsal/ventral axis specification [GO:0009950]; negative regulation of cell growth [GO:0030308]; negative regulation of translation [GO:0017148]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of dendrite morphogenesis [GO:0050775]; positive regulation of dendritic spine morphogenesis [GO:0061003]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q6ISB3 reviewed GRHL2_HUMAN Grainyhead-like protein 2 homolog (Brother of mammalian grainyhead) (Transcription factor CP2-like 3) GRHL2 BOM TFCP2L3 anterior neural tube closure [GO:0061713]; bicellular tight junction assembly [GO:0070830]; brain development [GO:0007420]; camera-type eye development [GO:0043010]; cardiac ventricle morphogenesis [GO:0003208]; cell adhesion [GO:0007155]; cell junction assembly [GO:0034329]; embryonic cranial skeleton morphogenesis [GO:0048701]; embryonic digit morphogenesis [GO:0042733]; epithelial cell morphogenesis [GO:0003382]; epithelial cell morphogenesis involved in placental branching [GO:0060672]; epithelium migration [GO:0090132]; face development [GO:0060324]; keratinocyte differentiation [GO:0030216]; lung epithelial cell differentiation [GO:0060487]; lung lobe morphogenesis [GO:0060463]; multicellular organism growth [GO:0035264]; neural tube closure [GO:0001843]; neural tube development [GO:0021915]; positive regulation of telomerase activity [GO:0051973]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q6KC79 reviewed NIPBL_HUMAN Nipped-B-like protein (Delangin) (SCC2 homolog) NIPBL IDN3 SCC2 brain development [GO:0007420]; cellular response to X-ray [GO:0071481]; chromatin remodeling [GO:0006338]; cognition [GO:0050890]; developmental growth [GO:0048589]; digestive tract development [GO:0048565]; DNA damage response [GO:0006974]; ear morphogenesis [GO:0042471]; embryonic digestive tract morphogenesis [GO:0048557]; embryonic forelimb morphogenesis [GO:0035115]; embryonic viscerocranium morphogenesis [GO:0048703]; establishment of mitotic sister chromatid cohesion [GO:0034087]; establishment of protein localization to chromatin [GO:0071169]; external genitalia morphogenesis [GO:0035261]; eye morphogenesis [GO:0048592]; face morphogenesis [GO:0060325]; fat cell differentiation [GO:0045444]; forelimb morphogenesis [GO:0035136]; gallbladder development [GO:0061010]; heart morphogenesis [GO:0003007]; maintenance of mitotic sister chromatid cohesion [GO:0034088]; metanephros development [GO:0001656]; mitotic cohesin loading [GO:0061780]; mitotic sister chromatid cohesion [GO:0007064]; mitotic sister chromatid segregation [GO:0000070]; negative regulation of transcription by RNA polymerase II [GO:0000122]; outflow tract morphogenesis [GO:0003151]; positive regulation of multicellular organism growth [GO:0040018]; positive regulation of neuron migration [GO:2001224]; positive regulation of ossification [GO:0045778]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization [GO:0008104]; regulation of developmental growth [GO:0048638]; regulation of embryonic development [GO:0045995]; regulation of hair cycle [GO:0042634]; replication-born double-strand break repair via sister chromatid exchange [GO:1990414]; sensory perception of sound [GO:0007605]; somatic stem cell population maintenance [GO:0035019]; uterus morphogenesis [GO:0061038] -Q6N021 reviewed TET2_HUMAN Methylcytosine dioxygenase TET2 (EC 1.14.11.80) TET2 KIAA1546 Nbla00191 5-methylcytosine catabolic process [GO:0006211]; DNA demethylation [GO:0080111]; leukocyte differentiation [GO:0002521]; myeloid cell differentiation [GO:0030099]; positive regulation of gene expression via chromosomal CpG island demethylation [GO:0044029]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein O-linked glycosylation [GO:0006493]; response to organic cyclic compound [GO:0014070] -Q6NUJ5 reviewed PWP2B_HUMAN PWWP domain-containing protein 2B PWWP2B PWWP2 chromatin remodeling [GO:0006338]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; regulation of cold-induced thermogenesis [GO:0120161] -Q6NUN9 reviewed ZN746_HUMAN Zinc finger protein 746 (Parkin-interacting substrate) (PARIS) ZNF746 PARIS negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein heterooligomerization [GO:0051291]; protein homooligomerization [GO:0051260] -Q6NYC1 reviewed JMJD6_HUMAN Bifunctional arginine demethylase and lysyl-hydroxylase JMJD6 (EC 1.14.11.-) (Histone arginine demethylase JMJD6) (JmjC domain-containing protein 6) (Jumonji domain-containing protein 6) (Lysyl-hydroxylase JMJD6) (Peptide-lysine 5-dioxygenase JMJD6) (Phosphatidylserine receptor) (Protein PTDSR) JMJD6 KIAA0585 PSR PTDSR cell surface receptor signaling pathway [GO:0007166]; chromatin remodeling [GO:0006338]; erythrocyte development [GO:0048821]; heart development [GO:0007507]; kidney development [GO:0001822]; lung development [GO:0030324]; macrophage activation [GO:0042116]; mRNA processing [GO:0006397]; negative regulation of protein homooligomerization [GO:0032463]; non-membrane-bounded organelle assembly [GO:0140694]; oxidative RNA demethylation [GO:0035513]; peptidyl-lysine hydroxylation to 5-hydroxy-L-lysine [GO:0018395]; phagocytosis [GO:0006909]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein homooligomerization [GO:0051260]; recognition of apoptotic cell [GO:0043654]; regulation of mRNA splicing, via spliceosome [GO:0048024]; retina development in camera-type eye [GO:0060041]; RNA splicing [GO:0008380]; sprouting angiogenesis [GO:0002040]; T cell differentiation in thymus [GO:0033077] -Q6P1J9 reviewed CDC73_HUMAN Parafibromin (Cell division cycle protein 73 homolog) (Hyperparathyroidism 2 protein) CDC73 C1orf28 HRPT2 cellular response to lipopolysaccharide [GO:0071222]; endodermal cell fate commitment [GO:0001711]; mRNA 3'-end processing [GO:0031124]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of fibroblast proliferation [GO:0048147]; negative regulation of G1/S transition of mitotic cell cycle [GO:2000134]; negative regulation of myeloid cell differentiation [GO:0045638]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of cell cycle G1/S phase transition [GO:1902808]; positive regulation of mRNA 3'-end processing [GO:0031442]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of Wnt signaling pathway [GO:0030177]; protein destabilization [GO:0031648]; regulation of cell growth [GO:0001558]; stem cell population maintenance [GO:0019827]; transcription elongation by RNA polymerase II [GO:0006368]; Wnt signaling pathway [GO:0016055] -Q6P1X5 reviewed TAF2_HUMAN Transcription initiation factor TFIID subunit 2 (150 kDa cofactor of initiator function) (RNA polymerase II TBP-associated factor subunit B) (TBP-associated factor 150 kDa) (Transcription initiation factor TFIID 150 kDa subunit) (TAF(II)150) (TAFII-150) (TAFII150) TAF2 CIF150 TAF2B G2/M transition of mitotic cell cycle [GO:0000086]; mRNA transcription by RNA polymerase II [GO:0042789]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; regulation of DNA repair [GO:0006282]; regulation of transcription by RNA polymerase II [GO:0006357]; response to organic cyclic compound [GO:0014070]; RNA polymerase II preinitiation complex assembly [GO:0051123]; transcription initiation at RNA polymerase II promoter [GO:0006367] -Q6P2C8 reviewed MED27_HUMAN Mediator of RNA polymerase II transcription subunit 27 (Cofactor required for Sp1 transcriptional activation subunit 8) (CRSP complex subunit 8) (Mediator complex subunit 27) (P37 TRAP/SMCC/PC2 subunit) (Transcriptional coactivator CRSP34) MED27 CRSP34 CRSP8 positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; protein ubiquitination [GO:0016567]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA polymerase II preinitiation complex assembly [GO:0051123]; somatic stem cell population maintenance [GO:0035019]; transcription initiation at RNA polymerase II promoter [GO:0006367] -Q6P9F0 reviewed CCD62_HUMAN Coiled-coil domain-containing protein 62 (Protein TSP-NY) (Protein aaa) CCDC62 blastocyst hatching [GO:0001835]; cellular response to estradiol stimulus [GO:0071392]; positive regulation of transcription by RNA polymerase II [GO:0045944]; spermatid development [GO:0007286] -Q6PD62 reviewed CTR9_HUMAN RNA polymerase-associated protein CTR9 homolog (SH2 domain-binding protein 1) CTR9 KIAA0155 SH2BP1 blastocyst growth [GO:0001832]; blastocyst hatching [GO:0001835]; cell surface receptor signaling pathway via JAK-STAT [GO:0007259]; cellular response to lipopolysaccharide [GO:0071222]; endodermal cell fate commitment [GO:0001711]; inner cell mass cell differentiation [GO:0001826]; interleukin-6-mediated signaling pathway [GO:0070102]; negative regulation of gene expression, epigenetic [GO:0045814]; negative regulation of myeloid cell differentiation [GO:0045638]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; stem cell population maintenance [GO:0019827]; transcription elongation by RNA polymerase II [GO:0006368]; trophectodermal cell differentiation [GO:0001829]; Wnt signaling pathway [GO:0016055] -Q6PIV2 reviewed FOXR1_HUMAN Forkhead box protein R1 (Forkhead box protein N5) FOXR1 FOXN5 DLNB13 brain development [GO:0007420]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q6PML9 reviewed ZNT9_HUMAN Proton-coupled zinc antiporter SLC30A9, mitochondrial (Human embryonic lung protein) (HuEL) (Solute carrier family 30 member 9) (Zinc transporter 9) (ZnT-9) SLC30A9 C4orf1 HUEL intracellular zinc ion homeostasis [GO:0006882]; nucleotide-excision repair [GO:0006289]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of mitochondrion organization [GO:0010821]; zinc ion transport [GO:0006829] -Q6QHK4 reviewed FIGLA_HUMAN Factor in the germline alpha (FIGalpha) (Class C basic helix-loop-helix protein 8) (bHLHc8) (Folliculogenesis-specific basic helix-loop-helix protein) (Transcription factor FIGa) FIGLA BHLHC8 developmental process [GO:0032502]; oocyte development [GO:0048599]; regulation of transcription by RNA polymerase II [GO:0006357] -Q6RFH8 reviewed DUX4C_HUMAN Double homeobox protein 4C (Double homeobox protein 4, centromeric) (DUX4c) (Double homeobox protein 4-like protein 9) DUX4L9 DUX4C cell population proliferation [GO:0008283]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of gene expression [GO:0010468]; regulation of transcription by RNA polymerase II [GO:0006357] -Q6UUV7 reviewed CRTC3_HUMAN CREB-regulated transcription coactivator 3 (Transducer of regulated cAMP response element-binding protein 3) (TORC-3) (Transducer of CREB protein 3) CRTC3 TORC3 energy homeostasis [GO:0097009]; lipid catabolic process [GO:0016042]; macrophage activation [GO:0042116]; negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway [GO:0071878]; negative regulation of lipid catabolic process [GO:0050995]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein homotetramerization [GO:0051289] -Q6UUV9 reviewed CRTC1_HUMAN CREB-regulated transcription coactivator 1 (Mucoepidermoid carcinoma translocated protein 1) (Transducer of regulated cAMP response element-binding protein 1) (TORC-1) (Transducer of CREB protein 1) CRTC1 KIAA0616 MECT1 TORC1 WAMTP1 energy homeostasis [GO:0097009]; entrainment of circadian clock by photoperiod [GO:0043153]; memory [GO:0007613]; negative regulation of membrane hyperpolarization [GO:1902631]; positive regulation of CREB transcription factor activity [GO:0032793]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein homotetramerization [GO:0051289]; rhythmic process [GO:0048511] -Q6UXI9 reviewed NPNT_HUMAN Nephronectin (Preosteoblast EGF-like repeat protein with MAM domain) (Protein EGFL6-like) NPNT EGFL6L POEM UNQ295/PRO334 branching involved in ureteric bud morphogenesis [GO:0001658]; cell-cell adhesion mediated by integrin [GO:0033631]; cell-matrix adhesion [GO:0007160]; cellular response to tumor necrosis factor [GO:0071356]; establishment of protein localization [GO:0045184]; extracellular matrix organization [GO:0030198]; pilomotor reflex [GO:0097195]; positive regulation of cell-substrate adhesion [GO:0010811]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of smooth muscle contraction [GO:0045987]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta receptor signaling pathway [GO:0030511]; smooth muscle cell differentiation [GO:0051145]; transforming growth factor beta receptor signaling pathway [GO:0007179]; ureteric bud development [GO:0001657] -Q6ZN55 reviewed ZN574_HUMAN Zinc finger protein 574 ZNF574 regulation of transcription by RNA polymerase II [GO:0006357] -Q6ZSB9 reviewed ZBT49_HUMAN Zinc finger and BTB domain-containing protein 49 (Zinc finger protein 509) ZBTB49 ZNF509 negative regulation of cell population proliferation [GO:0008285]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell cycle [GO:0051726]; regulation of cytokine production [GO:0001817]; regulation of immune system process [GO:0002682] -Q6ZVN8 reviewed RGMC_HUMAN Hemojuvelin (Hemochromatosis type 2 protein) (Hemojuvelin BMP coreceptor) (RGM domain family member C) HJV HFE2 RGMC activin receptor signaling pathway [GO:0032924]; BMP signaling pathway [GO:0030509]; cellular response to BMP stimulus [GO:0071773]; intracellular iron ion homeostasis [GO:0006879]; multicellular organismal-level iron ion homeostasis [GO:0060586]; negative regulation of BMP signaling pathway [GO:0030514]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoprocessing [GO:0016540]; transcription by RNA polymerase II [GO:0006366] -Q6ZW49 reviewed PAXI1_HUMAN PAX-interacting protein 1 (PAX transactivation activation domain-interacting protein) PAXIP1 PAXIP1L PTIP CAGF28 adipose tissue development [GO:0060612]; chorion development [GO:0060717]; chromatin remodeling [GO:0006338]; DNA damage response, signal transduction by p53 class mediator [GO:0030330]; DNA recombination [GO:0006310]; DNA repair [GO:0006281]; endothelial cell migration [GO:0043542]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; positive regulation of isotype switching [GO:0045830]; positive regulation of isotype switching to IgG isotypes [GO:0048304]; positive regulation of protein ubiquitination [GO:0031398]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; regulation of cell cycle G2/M phase transition [GO:1902749]; response to ionizing radiation [GO:0010212]; vasculogenesis [GO:0001570] -Q70SY1 reviewed CR3L2_HUMAN Cyclic AMP-responsive element-binding protein 3-like protein 2 (cAMP-responsive element-binding protein 3-like protein 2) (BBF2 human homolog on chromosome 7) [Cleaved into: Processed cyclic AMP-responsive element-binding protein 3-like protein 2] CREB3L2 BBF2H7 cartilage development [GO:0051216]; chondrocyte differentiation [GO:0002062]; endoplasmic reticulum to Golgi vesicle-mediated transport [GO:0006888]; positive regulation of DNA-templated transcription [GO:0045893]; regulation of transcription by RNA polymerase II [GO:0006357]; response to endoplasmic reticulum stress [GO:0034976]; response to unfolded protein [GO:0006986] -Q71SY5 reviewed MED25_HUMAN Mediator of RNA polymerase II transcription subunit 25 (Activator interaction domain-containing protein 1) (Activator-recruited cofactor 92 kDa component) (ARC92) (Mediator complex subunit 25) (p78) MED25 ACID1 ARC92 PTOV2 TCBAP0758 negative regulation of fibroblast proliferation [GO:0048147]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of chromatin binding [GO:0035563]; positive regulation of mediator complex assembly [GO:2001178]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; RNA polymerase II preinitiation complex assembly [GO:0051123] -Q76L83 reviewed ASXL2_HUMAN Putative Polycomb group protein ASXL2 (Additional sex combs-like protein 2) ASXL2 ASXH2 KIAA1685 animal organ morphogenesis [GO:0009887]; positive regulation of fat cell differentiation [GO:0045600]; positive regulation of peroxisome proliferator activated receptor signaling pathway [GO:0035360]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q7KZ85 reviewed SPT6H_HUMAN Transcription elongation factor SPT6 (hSPT6) (Histone chaperone suppressor of Ty6) (Tat-cotransactivator 2 protein) (Tat-CT2 protein) SUPT6H KIAA0162 SPT6H blastocyst formation [GO:0001825]; mRNA processing [GO:0006397]; mRNA transport [GO:0051028]; nucleosome organization [GO:0034728]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; regulation of isotype switching [GO:0045191]; regulation of mRNA export from nucleus [GO:0010793]; regulation of mRNA processing [GO:0050684]; regulation of muscle cell differentiation [GO:0051147]; RNA splicing [GO:0008380]; transcription elongation by RNA polymerase II [GO:0006368]; transcription elongation-coupled chromatin remodeling [GO:0140673] -Q7L2J0 reviewed MEPCE_HUMAN 7SK snRNA methylphosphate capping enzyme (MePCE) (EC 2.1.1.-) (Bicoid-interacting protein 3 homolog) (Bin3 homolog) MEPCE BCDIN3 negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of protein localization to Cajal body [GO:1904871]; positive regulation of snRNA transcription by RNA polymerase II [GO:1905382]; RNA methylation [GO:0001510]; snRNA metabolic process [GO:0016073]; snRNA modification [GO:0040031] -Q7RTS1 reviewed BHA15_HUMAN Class A basic helix-loop-helix protein 15 (bHLHa15) (Class B basic helix-loop-helix protein 8) (bHLHb8) (Muscle, intestine and stomach expression 1) (MIST-1) BHLHA15 BHLHB8 MIST1 axon development [GO:0061564]; calcium-mediated signaling [GO:0019722]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction organization [GO:0045216]; cell-cell signaling [GO:0007267]; cellular response to glucose starvation [GO:0042149]; endoplasmic reticulum unfolded protein response [GO:0030968]; establishment of localization in cell [GO:0051649]; G protein-coupled receptor signaling pathway [GO:0007186]; glucose homeostasis [GO:0042593]; Golgi organization [GO:0007030]; intracellular distribution of mitochondria [GO:0048312]; localization of cell [GO:0051674]; mitochondrial calcium ion transmembrane transport [GO:0006851]; negative regulation of myotube differentiation [GO:0010832]; neuron fate commitment [GO:0048663]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sensory organ development [GO:0007423]; type B pancreatic cell maturation [GO:0072560] -Q7RTS3 reviewed PTF1A_HUMAN Pancreas transcription factor 1 subunit alpha (Class A basic helix-loop-helix protein 29) (bHLHa29) (Pancreas-specific transcription factor 1a) (bHLH transcription factor p48) (p48 DNA-binding subunit of transcription factor PTF1) (PTF1-p48) PTF1A BHLHA29 PTF1P48 amacrine cell differentiation [GO:0035881]; cerebellum development [GO:0021549]; developmental process [GO:0032502]; exocrine pancreas development [GO:0031017]; neuron fate commitment [GO:0048663]; pancreas development [GO:0031016]; regulation of DNA-templated transcription [GO:0006355]; regulation of neural retina development [GO:0061074]; regulation of transcription by RNA polymerase II [GO:0006357]; retina layer formation [GO:0010842]; retinoic acid receptor signaling pathway [GO:0048384]; tissue development [GO:0009888]; transcription by RNA polymerase II [GO:0006366] -Q7RTU3 reviewed OLIG3_HUMAN Oligodendrocyte transcription factor 3 (Oligo3) (Class B basic helix-loop-helix protein 7) (bHLHb7) (Class E basic helix-loop-helix protein 20) (bHLHe20) OLIG3 BHLHB7 BHLHE20 axon development [GO:0061564]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sensory organ development [GO:0007423]; spinal cord motor neuron cell fate specification [GO:0021520]; spinal cord motor neuron migration [GO:0097476] -Q7RTU7 reviewed SCX_HUMAN Basic helix-loop-helix transcription factor scleraxis (Class A basic helix-loop-helix protein 41) (bHLHa41) (Class A basic helix-loop-helix protein 48) (bHLHa48) SCX BHLHA41 BHLHA48 SCXA SCXB BMP signaling pathway [GO:0030509]; cell differentiation [GO:0030154]; cellular response to mechanical stimulus [GO:0071260]; cellular response to transforming growth factor beta stimulus [GO:0071560]; chondrocyte differentiation [GO:0002062]; collagen fibril organization [GO:0030199]; deltoid tuberosity development [GO:0035993]; developmental process [GO:0032502]; DNA-templated transcription [GO:0006351]; embryonic skeletal system development [GO:0048706]; endochondral ossification [GO:0001958]; face morphogenesis [GO:0060325]; heart valve formation [GO:0003188]; heart valve morphogenesis [GO:0003179]; mesoderm formation [GO:0001707]; negative regulation of apoptotic process [GO:0043066]; negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of cartilage development [GO:0061036]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of collagen biosynthetic process [GO:0032967]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gastrulation [GO:2000543]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cartilage development [GO:0061035]; regulation of transcription by RNA polymerase II [GO:0006357]; sclerotome development [GO:0061056]; Sertoli cell differentiation [GO:0060008]; skeletal muscle cell differentiation [GO:0035914]; tendon cell differentiation [GO:0035990]; tendon development [GO:0035989]; tendon formation [GO:0035992]; tissue homeostasis [GO:0001894] -Q7Z2X4 reviewed PCLI1_HUMAN PTB-containing, cubilin and LRP1-interacting protein (P-CLI1) (Phosphotyrosine interaction domain-containing protein 1) (Protein NYGGF4) PID1 NYGGF4 PCLI1 HMFN2073 cellular response to cytokine stimulus [GO:0071345]; cellular response to fatty acid [GO:0071398]; cellular response to interleukin-6 [GO:0071354]; cellular response to leptin stimulus [GO:0044320]; cellular response to tumor necrosis factor [GO:0071356]; energy reserve metabolic process [GO:0006112]; mitochondrion organization [GO:0007005]; negative regulation of ATP biosynthetic process [GO:2001170]; negative regulation of glucose import [GO:0046325]; negative regulation of insulin receptor signaling pathway [GO:0046627]; negative regulation of protein localization to plasma membrane [GO:1903077]; negative regulation of protein phosphorylation [GO:0001933]; positive regulation of ATP biosynthetic process [GO:2001171]; positive regulation of fat cell proliferation [GO:0070346]; positive regulation of gene expression [GO:0010628]; positive regulation of reactive oxygen species metabolic process [GO:2000379]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of mitochondrial fusion [GO:0010635]; regulation of mitochondrial membrane potential [GO:0051881]; regulation of reactive oxygen species metabolic process [GO:2000377] -Q7Z333 reviewed SETX_HUMAN Probable helicase senataxin (EC 3.6.4.-) (Amyotrophic lateral sclerosis 4 protein) (SEN1 homolog) (Senataxin) SETX ALS4 KIAA0625 SCAR1 cell differentiation [GO:0030154]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to oxidative stress [GO:0034599]; circadian rhythm [GO:0007623]; DNA damage response [GO:0006974]; DNA recombination [GO:0006310]; DNA-templated transcription termination [GO:0006353]; double-strand break repair [GO:0006302]; mRNA splice site recognition [GO:0006376]; nervous system development [GO:0007399]; positive regulation of DNA-templated transcription initiation [GO:2000144]; positive regulation of neuron projection development [GO:0010976]; positive regulation of RNA splicing [GO:0033120]; positive regulation of termination of DNA-templated transcription [GO:0060566]; positive regulation of termination of RNA polymerase II transcription, poly(A)-coupled [GO:2000806]; positive regulation of transcription by RNA polymerase II [GO:0045944]; RNA processing [GO:0006396]; spermatogenesis [GO:0007283]; termination of RNA polymerase II transcription [GO:0006369] -Q7Z3K3 reviewed POGZ_HUMAN Pogo transposable element with ZNF domain (Suppressor of hairy wing homolog 5) (Zinc finger protein 280E) (Zinc finger protein 635) POGZ KIAA0461 SUHW5 ZNF280E ZNF635 Nbla00003 cell division [GO:0051301]; double-strand break repair via homologous recombination [GO:0000724]; kinetochore assembly [GO:0051382]; mitotic sister chromatid cohesion [GO:0007064]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q7Z434 reviewed MAVS_HUMAN Mitochondrial antiviral-signaling protein (MAVS) (CARD adapter inducing interferon beta) (Cardif) (Interferon beta promoter stimulator protein 1) (IPS-1) (Putative NF-kappa-B-activating protein 031N) (Virus-induced-signaling adapter) (VISA) MAVS IPS1 KIAA1271 VISA activation of innate immune response [GO:0002218]; antiviral innate immune response [GO:0140374]; cellular response to exogenous dsRNA [GO:0071360]; cytoplasmic pattern recognition receptor signaling pathway [GO:0002753]; defense response to bacterium [GO:0042742]; defense response to virus [GO:0051607]; innate immune response [GO:0045087]; negative regulation of type I interferon-mediated signaling pathway [GO:0060339]; negative regulation of viral genome replication [GO:0045071]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of chemokine (C-C motif) ligand 5 production [GO:0071651]; positive regulation of defense response to virus by host [GO:0002230]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of interferon-alpha production [GO:0032727]; positive regulation of interferon-beta production [GO:0032728]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of IP-10 production [GO:0071660]; positive regulation of myeloid dendritic cell cytokine production [GO:0002735]; positive regulation of NLRP3 inflammasome complex assembly [GO:1900227]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of response to cytokine stimulus [GO:0060760]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of type I interferon production [GO:0032481]; positive regulation of type I interferon-mediated signaling pathway [GO:0060340]; protein localization to mitochondrion [GO:0070585]; regulation of peroxisome organization [GO:1900063]; signal transduction [GO:0007165]; type I interferon-mediated signaling pathway [GO:0060337] -Q7Z591 reviewed AKNA_HUMAN Microtubule organization protein AKNA (AT-hook-containing transcription factor) AKNA KIAA1968 delamination [GO:0060232]; epithelial to mesenchymal transition [GO:0001837]; neuroblast delamination [GO:0060234]; neuroblast division in subventricular zone [GO:0021849]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of inflammatory response [GO:0050727] -Q7Z6R9 reviewed AP2D_HUMAN Transcription factor AP-2-delta (AP2-delta) (Activating enhancer-binding protein 2-delta) (Transcription factor AP-2-beta-like 1) TFAP2D TFAP2BL1 inferior colliculus development [GO:0061379]; negative regulation of neuron apoptotic process [GO:0043524]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell population proliferation [GO:0042127]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription by RNA polymerase II [GO:0006366] -Q7Z7C8 reviewed TAF8_HUMAN Transcription initiation factor TFIID subunit 8 (Protein taube nuss) (TBP-associated factor 43 kDa) (TBP-associated factor 8) (Transcription initiation factor TFIID 43 kDa subunit) (TAFII-43) (TAFII43) (hTAFII43) TAF8 TAFII43 TBN cell differentiation [GO:0030154]; DNA-templated transcription open complex formation [GO:0001112]; inner cell mass cell proliferation [GO:0001833]; maintenance of protein location in nucleus [GO:0051457]; mRNA transcription by RNA polymerase II [GO:0042789]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; regulation of fat cell differentiation [GO:0045598]; RNA polymerase II preinitiation complex assembly [GO:0051123]; transcription initiation at RNA polymerase II promoter [GO:0006367] -Q86SE9 reviewed PCGF5_HUMAN Polycomb group RING finger protein 5 (RING finger protein 159) PCGF5 RNF159 positive regulation of transcription by RNA polymerase II [GO:0045944]; random inactivation of X chromosome [GO:0060816]; regulation of transcription by RNA polymerase II [GO:0006357] -Q86SG2 reviewed ANR23_HUMAN Ankyrin repeat domain-containing protein 23 (Diabetes-related ankyrin repeat protein) (Muscle ankyrin repeat protein 3) ANKRD23 DARP fatty acid metabolic process [GO:0006631]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of sarcomere organization [GO:0060297]; response to muscle stretch [GO:0035994] -Q86TU7 reviewed SETD3_HUMAN Actin-histidine N-methyltransferase (EC 2.1.1.85) (Protein-L-histidine N-tele-methyltransferase) (SET domain-containing protein 3) (hSETD3) SETD3 C14orf154 actin modification [GO:0030047]; peptidyl-histidine methylation [GO:0018021]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of muscle cell differentiation [GO:0051149]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of uterine smooth muscle contraction [GO:0070472] -Q86U70 reviewed LDB1_HUMAN LIM domain-binding protein 1 (LDB-1) (Carboxyl-terminal LIM domain-binding protein 2) (CLIM-2) (LIM domain-binding factor CLIM2) (hLdb1) (Nuclear LIM interactor) LDB1 CLIM2 anterior/posterior axis specification [GO:0009948]; cell adhesion [GO:0007155]; cellular component assembly [GO:0022607]; cerebellar Purkinje cell differentiation [GO:0021702]; epithelial structure maintenance [GO:0010669]; gastrulation with mouth forming second [GO:0001702]; hair follicle development [GO:0001942]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of erythrocyte differentiation [GO:0045647]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system development [GO:0007399]; neuron differentiation [GO:0030182]; positive regulation of cell adhesion [GO:0045785]; positive regulation of hemoglobin biosynthetic process [GO:0046985]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; regulation of cell migration [GO:0030334]; regulation of focal adhesion assembly [GO:0051893]; regulation of kinase activity [GO:0043549]; somatic stem cell population maintenance [GO:0035019]; transcription by RNA polymerase II [GO:0006366]; transcription-dependent tethering of RNA polymerase II gene DNA at nuclear periphery [GO:0000972]; Wnt signaling pathway [GO:0016055] -Q86UQ8 reviewed NFE4_HUMAN Transcription factor NF-E4 NFE4 positive regulation of transcription by RNA polymerase II [GO:0045944]; protein-containing complex assembly [GO:0065003]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357] -Q86UU0 reviewed BCL9L_HUMAN B-cell CLL/lymphoma 9-like protein (B-cell lymphoma 9-like protein) (BCL9-like protein) (Protein BCL9-2) BCL9L DLNB11 canonical Wnt signaling pathway [GO:0060070]; myoblast differentiation [GO:0045445]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell morphogenesis [GO:0022604]; skeletal muscle cell differentiation [GO:0035914]; somatic stem cell population maintenance [GO:0035019]; transcription by RNA polymerase II [GO:0006366] -Q86V15 reviewed CASZ1_HUMAN Zinc finger protein castor homolog 1 (Castor-related protein) (Putative survival-related protein) (Zinc finger protein 693) CASZ1 CST SRG ZNF693 positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of neuron differentiation [GO:0045664] -Q86VK4 reviewed ZN410_HUMAN Zinc finger protein 410 (Another partner for ARF 1) ZNF410 APA1 negative regulation of gene expression [GO:0010629]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q86VP6 reviewed CAND1_HUMAN Cullin-associated NEDD8-dissociated protein 1 (Cullin-associated and neddylation-dissociated protein 1) (TBP-interacting protein of 120 kDa A) (TBP-interacting protein 120A) (p120 CAND1) CAND1 KIAA0829 TIP120 TIP120A cell differentiation [GO:0030154]; negative regulation of catalytic activity [GO:0043086]; positive regulation of RNA polymerase II transcription preinitiation complex assembly [GO:0045899]; protein ubiquitination [GO:0016567]; SCF complex assembly [GO:0010265] -Q86WI3 reviewed NLRC5_HUMAN Protein NLRC5 (Caterpiller protein 16.1) (CLR16.1) (Nucleotide-binding oligomerization domain protein 27) (Nucleotide-binding oligomerization domain protein 4) NLRC5 NOD27 NOD4 defense response to virus [GO:0051607]; innate immune response [GO:0045087]; intracellular signal transduction [GO:0035556]; negative regulation of NF-kappaB transcription factor activity [GO:0032088]; negative regulation of type I interferon-mediated signaling pathway [GO:0060339]; positive regulation of MHC class I biosynthetic process [GO:0045345]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type I interferon-mediated signaling pathway [GO:0060340]; positive regulation of type II interferon-mediated signaling pathway [GO:0060335]; regulation of kinase activity [GO:0043549]; response to bacterium [GO:0009617] -Q86WP2 reviewed GPBP1_HUMAN Vasculin (GC-rich promoter-binding protein 1) (Vascular wall-linked protein) GPBP1 GPBP SSH6 DNA-templated transcription [GO:0006351]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355] -Q86WV1 reviewed SKAP1_HUMAN Src kinase-associated phosphoprotein 1 (Src family-associated phosphoprotein 1) (Src kinase-associated phosphoprotein of 55 kDa) (SKAP-55) (pp55) SKAP1 SCAP1 SKAP55 adaptive immune response [GO:0002250]; positive regulation of adaptive immune response [GO:0002821]; positive regulation of cell-cell adhesion mediated by integrin [GO:0033634]; positive regulation of cell-matrix adhesion [GO:0001954]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of heterotypic cell-cell adhesion [GO:0034116]; positive regulation of integrin activation [GO:0033625]; positive regulation of leukocyte cell-cell adhesion [GO:1903039]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to plasma membrane [GO:0072659]; T cell receptor signaling pathway [GO:0050852] -Q86WV6 reviewed STING_HUMAN Stimulator of interferon genes protein (hSTING) (Endoplasmic reticulum interferon stimulator) (ERIS) (Mediator of IRF3 activation) (hMITA) (Transmembrane protein 173) STING1 ERIS MITA STING TMEM173 activation of innate immune response [GO:0002218]; antiviral innate immune response [GO:0140374]; autophagosome assembly [GO:0000045]; cellular response to exogenous dsRNA [GO:0071360]; cellular response to interferon-beta [GO:0035458]; cellular response to organic cyclic compound [GO:0071407]; cGAS/STING signaling pathway [GO:0140896]; cytoplasmic pattern recognition receptor signaling pathway [GO:0002753]; defense response to virus [GO:0051607]; innate immune response [GO:0045087]; pattern recognition receptor signaling pathway [GO:0002221]; positive regulation of defense response to virus by host [GO:0002230]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of interferon-beta production [GO:0032728]; positive regulation of macroautophagy [GO:0016239]; positive regulation of protein binding [GO:0032092]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type I interferon production [GO:0032481]; positive regulation of type I interferon-mediated signaling pathway [GO:0060340]; protein complex oligomerization [GO:0051259]; protein localization to endoplasmic reticulum [GO:0070972]; regulation of inflammatory response [GO:0050727]; reticulophagy [GO:0061709] -Q86XA0 reviewed MET23_HUMAN Histone-arginine methyltransferase METTL23 (EC 2.1.1.319) (Methyltransferase-like protein 23) METTL23 C17orf95 cognition [GO:0050890]; epigenetic programing of male pronucleus [GO:0044727]; epigenetic programming in the zygotic pronuclei [GO:0044725]; methylation [GO:0032259]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q86YD1 reviewed PTOV1_HUMAN Prostate tumor-overexpressed gene 1 protein (PTOV-1) (Activator interaction domain-containing protein 2) PTOV1 ACID2 PP642 UNQ6127/PRO20092 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q86YN6 reviewed PRGC2_HUMAN Peroxisome proliferator-activated receptor gamma coactivator 1-beta (PGC-1-beta) (PPAR-gamma coactivator 1-beta) (PPARGC-1-beta) (PGC-1-related estrogen receptor alpha coactivator) PPARGC1B PERC PGC1 PGC1B PPARGC1 actin filament organization [GO:0007015]; bone trabecula formation [GO:0060346]; cellular response to reactive oxygen species [GO:0034614]; intracellular estrogen receptor signaling pathway [GO:0030520]; mitochondrial transcription [GO:0006390]; negative regulation of DNA-templated transcription [GO:0045892]; ossification [GO:0001503]; positive regulation of bone resorption [GO:0045780]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of osteoclast differentiation [GO:0045672]; positive regulation of phosphorylation [GO:0042327]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355] -Q86YW9 reviewed MD12L_HUMAN Mediator of RNA polymerase II transcription subunit 12-like protein (Mediator complex subunit 12-like protein) (Thyroid hormone receptor-associated-like protein) (Trinucleotide repeat-containing gene 11 protein-like) MED12L KIAA1635 TNRC11L TRALP TRALPUSH PRO0314 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q8HWS3 reviewed RFX6_HUMAN DNA-binding protein RFX6 (Regulatory factor X 6) (Regulatory factor X domain-containing protein 1) RFX6 RFXDC1 endocrine pancreas development [GO:0031018]; glucose homeostasis [GO:0042593]; pancreatic A cell differentiation [GO:0003310]; pancreatic D cell differentiation [GO:0003311]; pancreatic epsilon cell differentiation [GO:0090104]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of insulin secretion involved in cellular response to glucose stimulus [GO:0035774]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of insulin secretion [GO:0050796]; regulation of transcription by RNA polymerase II [GO:0006357]; type B pancreatic cell differentiation [GO:0003309] -Q8IU80 reviewed TMPS6_HUMAN Transmembrane protease serine 6 (EC 3.4.21.-) (Matriptase-2) TMPRSS6 UNQ354/PRO618 BMP signaling pathway [GO:0030509]; collagen catabolic process [GO:0030574]; extracellular matrix disassembly [GO:0022617]; intracellular iron ion homeostasis [GO:0006879]; membrane protein proteolysis [GO:0033619]; multicellular organismal-level iron ion homeostasis [GO:0060586]; negative regulation of BMP signaling pathway [GO:0030514]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; self proteolysis [GO:0097264] -Q8IUI8 reviewed CRLF3_HUMAN Cytokine receptor-like factor 3 (Cytokine receptor-like molecule 9) (CREME-9) (Cytokine receptor-related protein 4) (Type I cytokine receptor-like factor p48) CRLF3 CREME9 CRLM9 CYTOR4 P48 negative regulation of cell growth [GO:0030308]; negative regulation of G1/S transition of mitotic cell cycle [GO:2000134]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of receptor signaling pathway via JAK-STAT [GO:0046427]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q8IUM7 reviewed NPAS4_HUMAN Neuronal PAS domain-containing protein 4 (Neuronal PAS4) (Class E basic helix-loop-helix protein 79) (bHLHe79) (HLH-PAS transcription factor NXF) (PAS domain-containing protein 10) NPAS4 BHLHE79 NXF PASD10 cell differentiation [GO:0030154]; cellular response to corticosterone stimulus [GO:0071386]; excitatory postsynaptic potential [GO:0060079]; inhibitory postsynaptic potential [GO:0060080]; inhibitory synapse assembly [GO:1904862]; learning [GO:0007612]; long-term memory [GO:0007616]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of synaptic plasticity [GO:0048167]; regulation of synaptic transmission, GABAergic [GO:0032228]; regulation of transcription by RNA polymerase II [GO:0006357]; short-term memory [GO:0007614]; social behavior [GO:0035176] -Q8IUR6 reviewed CRERF_HUMAN CREB3 regulatory factor (Luman recruitment factor) (LRF) CREBRF C5orf41 negative regulation of endoplasmic reticulum unfolded protein response [GO:1900102]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of protein catabolic process [GO:0045732]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; response to endoplasmic reticulum stress [GO:0034976]; response to unfolded protein [GO:0006986] -Q8IVW6 reviewed ARI3B_HUMAN AT-rich interactive domain-containing protein 3B (ARID domain-containing protein 3B) (Bright and dead ringer protein) (Bright-like protein) ARID3B BDP DRIL2 positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q8IX07 reviewed FOG1_HUMAN Zinc finger protein ZFPM1 (Friend of GATA protein 1) (FOG-1) (Friend of GATA 1) (Zinc finger protein 89A) (Zinc finger protein multitype 1) ZFPM1 FOG1 ZFN89A atrial septum morphogenesis [GO:0060413]; atrioventricular valve morphogenesis [GO:0003181]; cardiac muscle tissue morphogenesis [GO:0055008]; definitive erythrocyte differentiation [GO:0060318]; embryonic hemopoiesis [GO:0035162]; erythrocyte differentiation [GO:0030218]; granulocyte differentiation [GO:0030851]; heart development [GO:0007507]; megakaryocyte development [GO:0035855]; megakaryocyte differentiation [GO:0030219]; mitral valve formation [GO:0003192]; negative regulation of interleukin-4 production [GO:0032713]; negative regulation of mast cell differentiation [GO:0060377]; negative regulation of protein binding [GO:0032091]; negative regulation of transcription by RNA polymerase II [GO:0000122]; outflow tract morphogenesis [GO:0003151]; platelet formation [GO:0030220]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type II interferon production [GO:0032729]; primitive erythrocyte differentiation [GO:0060319]; regulation of chemokine production [GO:0032642]; regulation of definitive erythrocyte differentiation [GO:0010724]; T-helper cell lineage commitment [GO:0002295]; tricuspid valve formation [GO:0003195]; ventricular septum morphogenesis [GO:0060412] -Q8IXJ6 reviewed SIR2_HUMAN NAD-dependent protein deacetylase sirtuin-2 (EC 2.3.1.286) (NAD-dependent protein defatty-acylase sirtuin-2) (EC 2.3.1.-) (Regulatory protein SIR2 homolog 2) (SIR2-like protein 2) SIRT2 SIR2L SIR2L2 autophagy [GO:0006914]; cell division [GO:0051301]; cellular lipid catabolic process [GO:0044242]; cellular response to caloric restriction [GO:0061433]; cellular response to epinephrine stimulus [GO:0071872]; cellular response to hypoxia [GO:0071456]; cellular response to oxidative stress [GO:0034599]; epigenetic regulation of gene expression [GO:0040029]; heterochromatin formation [GO:0031507]; innate immune response [GO:0045087]; meiotic cell cycle [GO:0051321]; mitotic nuclear membrane reassembly [GO:0007084]; myelination in peripheral nervous system [GO:0022011]; negative regulation of autophagy [GO:0010507]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of NLRP3 inflammasome complex assembly [GO:1900226]; negative regulation of oligodendrocyte progenitor proliferation [GO:0070446]; negative regulation of peptidyl-threonine phosphorylation [GO:0010801]; negative regulation of protein catabolic process [GO:0042177]; negative regulation of reactive oxygen species metabolic process [GO:2000378]; negative regulation of satellite cell differentiation [GO:1902725]; negative regulation of striated muscle tissue development [GO:0045843]; negative regulation of transcription by RNA polymerase II [GO:0000122]; NLRP3 inflammasome complex assembly [GO:0044546]; peptidyl-lysine deacetylation [GO:0034983]; positive regulation of attachment of spindle microtubules to kinetochore [GO:0051987]; positive regulation of cell division [GO:0051781]; positive regulation of DNA binding [GO:0043388]; positive regulation of execution phase of apoptosis [GO:1900119]; positive regulation of fatty acid biosynthetic process [GO:0045723]; positive regulation of meiotic nuclear division [GO:0045836]; positive regulation of oocyte maturation [GO:1900195]; positive regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032436]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; protein deacetylation [GO:0006476]; rDNA heterochromatin formation [GO:0000183]; regulation of cell cycle [GO:0051726]; regulation of exit from mitosis [GO:0007096]; regulation of myelination [GO:0031641]; regulation of phosphorylation [GO:0042325]; response to redox state [GO:0051775]; substantia nigra development [GO:0021762]; subtelomeric heterochromatin formation [GO:0031509]; tubulin deacetylation [GO:0090042] -Q8IXJ9 reviewed ASXL1_HUMAN Polycomb group protein ASXL1 (Additional sex combs-like protein 1) ASXL1 KIAA0978 animal organ morphogenesis [GO:0009887]; bone marrow development [GO:0048539]; cell morphogenesis [GO:0000902]; chromatin organization [GO:0006325]; heart morphogenesis [GO:0003007]; hemopoiesis [GO:0030097]; homeostasis of number of cells [GO:0048872]; lung saccule development [GO:0060430]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of peroxisome proliferator activated receptor signaling pathway [GO:0035359]; podocyte development [GO:0072015]; positive regulation of retinoic acid receptor signaling pathway [GO:0048386]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of kidney size [GO:0035564]; response to retinoic acid [GO:0032526]; thymus development [GO:0048538] -Q8IZL2 reviewed MAML2_HUMAN Mastermind-like protein 2 (Mam-2) MAML2 KIAA1819 Notch signaling pathway [GO:0007219]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription of Notch receptor target [GO:0007221] -Q8IZL8 reviewed PELP1_HUMAN Proline-, glutamic acid- and leucine-rich protein 1 (Modulator of non-genomic activity of estrogen receptor) (Transcription factor HMX3) PELP1 HMX3 MNAR cellular response to estrogen stimulus [GO:0071391]; positive regulation of transcription by RNA polymerase II [GO:0045944]; rRNA processing [GO:0006364] -Q8IZQ8 reviewed MYCD_HUMAN Myocardin MYOCD MYCD cardiac muscle cell apoptotic process [GO:0010659]; cardiac muscle cell differentiation [GO:0055007]; cardiac muscle cell myoblast differentiation [GO:0060379]; cardiac vascular smooth muscle cell differentiation [GO:0060947]; cardiac ventricle development [GO:0003231]; cardiocyte differentiation [GO:0035051]; cellular component maintenance [GO:0043954]; digestive tract development [GO:0048565]; ductus arteriosus closure [GO:0097070]; lung alveolus development [GO:0048286]; negative regulation of amyloid-beta clearance [GO:1900222]; negative regulation of cardiac muscle cell apoptotic process [GO:0010667]; negative regulation of cell adhesion molecule production [GO:0060354]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0045736]; negative regulation of myotube differentiation [GO:0010832]; negative regulation of platelet-derived growth factor receptor-beta signaling pathway [GO:2000587]; negative regulation of skeletal muscle cell differentiation [GO:2001015]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of vascular associated smooth muscle cell migration [GO:1904753]; negative regulation of vascular associated smooth muscle cell proliferation [GO:1904706]; positive regulation of cardiac muscle cell differentiation [GO:2000727]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of smooth muscle cell differentiation [GO:0051152]; positive regulation of smooth muscle contraction [GO:0045987]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta receptor signaling pathway [GO:0030511]; regulation of cell growth by extracellular stimulus [GO:0001560]; regulation of myoblast differentiation [GO:0045661]; regulation of phenotypic switching [GO:1900239]; regulation of smooth muscle cell differentiation [GO:0051150]; response to hypoxia [GO:0001666]; smooth muscle cell differentiation [GO:0051145]; transcription initiation-coupled chromatin remodeling [GO:0045815]; urinary bladder development [GO:0060157]; uterus development [GO:0060065]; vasculogenesis [GO:0001570]; ventricular cardiac muscle cell differentiation [GO:0055012] -Q8N0Z6 reviewed TTC5_HUMAN Tetratricopeptide repeat protein 5 (TPR repeat protein 5) (Stress-responsive activator of p300) (Protein Strap) TTC5 cellular response to starvation [GO:0009267]; DNA damage response [GO:0006974]; DNA repair [GO:0006281]; positive regulation of mRNA catabolic process [GO:0061014]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q8N100 reviewed ATOH7_HUMAN Transcription factor ATOH7 (Atonal bHLH transcription factor 7) (Class A basic helix-loop-helix protein 13) (bHLHa13) (Protein atonal homolog 7) ATOH7 ATH5 BHLHA13 axon development [GO:0061564]; circadian rhythm [GO:0007623]; entrainment of circadian clock by photoperiod [GO:0043153]; neural retina development [GO:0003407]; neuron fate commitment [GO:0048663]; optic nerve development [GO:0021554]; positive regulation of retinal ganglion cell axon guidance [GO:1902336]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; response to auditory stimulus [GO:0010996]; sensory organ development [GO:0007423] -Q8N157 reviewed AHI1_HUMAN Jouberin (Abelson helper integration site 1 protein homolog) (AHI-1) AHI1 cell surface receptor protein tyrosine kinase signaling pathway [GO:0007169]; central nervous system development [GO:0007417]; cilium assembly [GO:0060271]; cloaca development [GO:0035844]; heart looping [GO:0001947]; hindbrain development [GO:0030902]; Kupffer's vesicle development [GO:0070121]; left/right axis specification [GO:0070986]; morphogenesis of a polarized epithelium [GO:0001738]; motile cilium assembly [GO:0044458]; negative regulation of apoptotic process [GO:0043066]; otic vesicle development [GO:0071599]; photoreceptor cell outer segment organization [GO:0035845]; positive regulation of polarized epithelial cell differentiation [GO:0030862]; positive regulation of receptor internalization [GO:0002092]; positive regulation of transcription by RNA polymerase II [GO:0045944]; pronephric duct morphogenesis [GO:0039023]; pronephric nephron tubule morphogenesis [GO:0039008]; protein localization [GO:0008104]; regulation of behavior [GO:0050795]; retina layer formation [GO:0010842]; specification of axis polarity [GO:0065001]; vesicle-mediated transport [GO:0016192] -Q8N187 reviewed CARTF_HUMAN Calcium-responsive transcription factor (Amyotrophic lateral sclerosis 2 chromosomal region candidate gene 8 protein) (Calcium-response factor) (CaRF) (Testis development protein NYD-SP24) CARF ALS2CR8 cellular response to calcium ion [GO:0071277]; regulation of transcription by RNA polymerase II [GO:0006357] -Q8N196 reviewed SIX5_HUMAN Homeobox protein SIX5 (DM locus-associated homeodomain protein) (Sine oculis homeobox homolog 5) SIX5 DMAHP lens development in camera-type eye [GO:0002088]; Leydig cell proliferation [GO:0160024]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of skeletal muscle satellite cell proliferation [GO:1902723]; regulation of transcription by RNA polymerase II [GO:0006357]; spermatid development [GO:0007286] -Q8N2R0 reviewed OSR2_HUMAN Protein odd-skipped-related 2 OSR2 bone morphogenesis [GO:0060349]; cell differentiation [GO:0030154]; chondrocyte differentiation [GO:0002062]; embryo development ending in birth or egg hatching [GO:0009792]; embryonic digit morphogenesis [GO:0042733]; embryonic forelimb morphogenesis [GO:0035115]; embryonic hindlimb morphogenesis [GO:0035116]; embryonic skeletal joint development [GO:0072498]; embryonic skeletal joint morphogenesis [GO:0060272]; embryonic skeletal limb joint morphogenesis [GO:0036023]; embryonic skeletal system morphogenesis [GO:0048704]; eyelid development in camera-type eye [GO:0061029]; head development [GO:0060322]; mesonephros development [GO:0001823]; metanephros development [GO:0001656]; middle ear morphogenesis [GO:0042474]; negative regulation of transcription by RNA polymerase II [GO:0000122]; odontogenesis [GO:0042476]; osteoblast proliferation [GO:0033687]; positive regulation of bone mineralization [GO:0030501]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of gene expression [GO:0010628]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; roof of mouth development [GO:0060021]; stem cell proliferation [GO:0072089]; urogenital system development [GO:0001655] -Q8N393 reviewed ZN786_HUMAN Zinc finger protein 786 ZNF786 regulation of transcription by RNA polymerase II [GO:0006357] -Q8N4W9 reviewed ZN808_HUMAN Zinc finger protein 808 ZNF808 cell differentiation [GO:0030154]; negative regulation of gene expression [GO:0010629]; pancreas development [GO:0031016]; regulation of transcription by RNA polymerase II [GO:0006357] -Q8N5U6 reviewed RNF10_HUMAN E3 ubiquitin-protein ligase RNF10 (EC 2.3.2.27) (RING finger protein 10) RNF10 KIAA0262 RIE2 negative regulation of Schwann cell proliferation [GO:0010626]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of myelination [GO:0031643]; positive regulation of transcription by RNA polymerase II [GO:0045944]; postsynapse to nucleus signaling pathway [GO:0099527]; protein autoubiquitination [GO:0051865]; protein monoubiquitination [GO:0006513]; ribosome-associated ubiquitin-dependent protein catabolic process [GO:1990116] -Q8N726 reviewed ARF_HUMAN Tumor suppressor ARF (Alternative reading frame) (ARF) (Cyclin-dependent kinase inhibitor 2A) (p14ARF) CDKN2A CDKN2 MLM activation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0006919]; amyloid fibril formation [GO:1990000]; apoptotic mitochondrial changes [GO:0008637]; autophagy of mitochondrion [GO:0000422]; cellular senescence [GO:0090398]; mitochondrial depolarization [GO:0051882]; negative regulation of B cell proliferation [GO:0030889]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of immature T cell proliferation in thymus [GO:0033088]; negative regulation of protein neddylation [GO:2000435]; negative regulation of proteolysis involved in protein catabolic process [GO:1903051]; negative regulation of ubiquitin protein ligase activity [GO:1904667]; negative regulation of ubiquitin-dependent protein catabolic process [GO:2000059]; negative regulation of ubiquitin-protein transferase activity [GO:0051444]; nuclear body organization [GO:0030575]; positive regulation of apoptotic process [GO:0043065]; positive regulation of DNA damage response, signal transduction by p53 class mediator [GO:0043517]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of protein localization to nucleus [GO:1900182]; positive regulation of protein sumoylation [GO:0033235]; positive regulation of signal transduction by p53 class mediator [GO:1901798]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein destabilization [GO:0031648]; protein K63-linked ubiquitination [GO:0070534]; protein localization to nucleolus [GO:1902570]; protein localization to nucleus [GO:0034504]; protein polyubiquitination [GO:0000209]; protein stabilization [GO:0050821]; protein sumoylation [GO:0016925]; regulation of apoptotic DNA fragmentation [GO:1902510]; regulation of cell cycle [GO:0051726]; regulation of protein export from nucleus [GO:0046825]; regulation of protein stability [GO:0031647]; regulation of protein targeting to mitochondrion [GO:1903214]; rRNA processing [GO:0006364]; somatic stem cell division [GO:0048103] -Q8N7H5 reviewed PAF1_HUMAN RNA polymerase II-associated factor 1 homolog (hPAF1) (Pancreatic differentiation protein 2) PAF1 PD2 cellular response to lipopolysaccharide [GO:0071222]; endodermal cell fate commitment [GO:0001711]; mRNA 3'-end processing [GO:0031124]; negative regulation of myeloid cell differentiation [GO:0045638]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of cell cycle G1/S phase transition [GO:1902808]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to nucleus [GO:0034504]; stem cell population maintenance [GO:0019827]; transcription elongation by RNA polymerase II [GO:0006368]; Wnt signaling pathway [GO:0016055] -Q8N8E2 reviewed ZN513_HUMAN Zinc finger protein 513 ZNF513 positive regulation of transcription by RNA polymerase II [GO:0045944]; retina development in camera-type eye [GO:0060041]; visual perception [GO:0007601] -Q8NAP3 reviewed ZBT38_HUMAN Zinc finger and BTB domain-containing protein 38 ZBTB38 DNA damage response [GO:0006974]; negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA replication [GO:0006275]; regulation of DNA-templated transcription [GO:0006355] -Q8NBF1 reviewed GLIS1_HUMAN Zinc finger protein GLIS1 (GLI-similar 1) GLIS1 cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q8NCF5 reviewed NF2IP_HUMAN NFATC2-interacting protein (45 kDa NF-AT-interacting protein) (45 kDa NFAT-interacting protein) (Nuclear factor of activated T-cells, cytoplasmic 2-interacting protein) NFATC2IP NIP45 positive regulation of transcription by RNA polymerase II [GO:0045944]; protein sumoylation [GO:0016925] -Q8NEA6 reviewed GLIS3_HUMAN Zinc finger protein GLIS3 (GLI-similar 3) (Zinc finger protein 515) GLIS3 ZNF515 negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription by RNA polymerase II [GO:0006366] -Q8NEZ4 reviewed KMT2C_HUMAN Histone-lysine N-methyltransferase 2C (Lysine N-methyltransferase 2C) (EC 2.1.1.364) (Homologous to ALR protein) (Myeloid/lymphoid or mixed-lineage leukemia protein 3) KMT2C HALR KIAA1506 MLL3 methylation [GO:0032259]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to electrical stimulus [GO:0051602] -Q8NF64 reviewed ZMIZ2_HUMAN Zinc finger MIZ domain-containing protein 2 (PIAS-like protein Zimp7) ZMIZ2 KIAA1886 ZIMP7 HRIHFB2007 positive regulation of transcription by RNA polymerase II [GO:0045944]; protein sumoylation [GO:0016925]; regulation of transcription by RNA polymerase II [GO:0006357] -Q8NFU3 reviewed TSTD1_HUMAN Thiosulfate:glutathione sulfurtransferase (TST) (EC 2.8.1.3) TSTD1 KAT glucose metabolic process [GO:0006006]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sulfide oxidation, using sulfide:quinone oxidoreductase [GO:0070221] -Q8NFU7 reviewed TET1_HUMAN Methylcytosine dioxygenase TET1 (EC 1.14.11.80) (CXXC-type zinc finger protein 6) (Leukemia-associated protein with a CXXC domain) (Ten-eleven translocation 1 gene protein) TET1 CXXC6 KIAA1676 LCX 5-methylcytosine catabolic process [GO:0006211]; cellular response to reactive oxygen species [GO:0034614]; chromatin remodeling [GO:0006338]; dendrite morphogenesis [GO:0048813]; DNA demethylation [GO:0080111]; epigenetic programing of male pronucleus [GO:0044727]; inner cell mass cell differentiation [GO:0001826]; negative regulation of cell migration [GO:0030336]; negative regulation of stem cell population maintenance [GO:1902455]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; positive regulation of gene expression via chromosomal CpG island demethylation [GO:0044029]; positive regulation of stem cell population maintenance [GO:1902459]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein O-linked glycosylation [GO:0006493]; stem cell population maintenance [GO:0019827] -Q8NFZ5 reviewed TNIP2_HUMAN TNFAIP3-interacting protein 2 (A20-binding inhibitor of NF-kappa-B activation 2) (ABIN-2) (Fetal liver LKB1-interacting protein) TNIP2 ABIN2 FLIP1 apoptotic process [GO:0006915]; CD40 signaling pathway [GO:0023035]; cellular response to lipopolysaccharide [GO:0071222]; inflammatory response [GO:0006954]; interleukin-1-mediated signaling pathway [GO:0070498]; negative regulation of endothelial cell apoptotic process [GO:2000352]; positive regulation of B cell activation [GO:0050871]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of macrophage activation [GO:0043032]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein stabilization [GO:0050821]; regulation of transcription by RNA polymerase II [GO:0006357]; toll-like receptor 2 signaling pathway [GO:0034134]; toll-like receptor 3 signaling pathway [GO:0034138]; toll-like receptor 9 signaling pathway [GO:0034162] -Q8NHL6 reviewed LIRB1_HUMAN Leukocyte immunoglobulin-like receptor subfamily B member 1 (LIR-1) (Leukocyte immunoglobulin-like receptor 1) (CD85 antigen-like family member J) (Immunoglobulin-like transcript 2) (ILT-2) (Monocyte/macrophage immunoglobulin-like receptor 7) (MIR-7) (CD antigen CD85j) LILRB1 ILT2 LIR1 MIR7 adaptive immune response [GO:0002250]; cellular response to lipopolysaccharide [GO:0071222]; defense response to virus [GO:0051607]; dendritic cell differentiation [GO:0097028]; Fc receptor mediated inhibitory signaling pathway [GO:0002774]; immune response-inhibiting cell surface receptor signaling pathway [GO:0002767]; immune response-regulating signaling pathway [GO:0002764]; interleukin-10-mediated signaling pathway [GO:0140105]; negative regulation of alpha-beta T cell activation [GO:0046636]; negative regulation of calcium ion transport [GO:0051926]; negative regulation of CD8-positive, alpha-beta T cell activation [GO:2001186]; negative regulation of cell cycle [GO:0045786]; negative regulation of cytokine production involved in immune response [GO:0002719]; negative regulation of dendritic cell apoptotic process [GO:2000669]; negative regulation of dendritic cell differentiation [GO:2001199]; negative regulation of endocytosis [GO:0045806]; negative regulation of interferon-beta production [GO:0032688]; negative regulation of interleukin-10 production [GO:0032693]; negative regulation of interleukin-12 production [GO:0032695]; negative regulation of mononuclear cell proliferation [GO:0032945]; negative regulation of natural killer cell mediated cytotoxicity [GO:0045953]; negative regulation of osteoclast development [GO:2001205]; negative regulation of serotonin secretion [GO:0014063]; negative regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell [GO:2001189]; negative regulation of T cell mediated cytotoxicity [GO:0001915]; negative regulation of T cell proliferation [GO:0042130]; negative regulation of transforming growth factor beta production [GO:0071635]; negative regulation of tumor necrosis factor production [GO:0032720]; negative regulation of type II interferon production [GO:0032689]; positive regulation of apoptotic process [GO:0043065]; positive regulation of defense response to virus by host [GO:0002230]; positive regulation of gamma-delta T cell activation involved in immune response [GO:2001193]; positive regulation of gene expression [GO:0010628]; positive regulation of macrophage cytokine production [GO:0060907]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type II interferon production [GO:0032729]; receptor internalization [GO:0031623]; response to virus [GO:0009615]; signal transduction [GO:0007165]; T cell proliferation involved in immune response [GO:0002309] -Q8NHW3 reviewed MAFA_HUMAN Transcription factor MafA (Pancreatic beta-cell-specific transcriptional activator) (RIPE3b1 factor) (V-maf musculoaponeurotic fibrosarcoma oncogene homolog A) MAFA insulin secretion [GO:0030073]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; response to glucose [GO:0009749] -Q8NI08 reviewed NCOA7_HUMAN Nuclear receptor coactivator 7 (140 kDa estrogen receptor-associated protein) (Estrogen nuclear receptor coactivator 1) NCOA7 ERAP140 ESNA1 Nbla00052 Nbla10993 negative regulation of cellular response to oxidative stress [GO:1900408]; negative regulation of peptidyl-cysteine S-nitrosylation [GO:1902083]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; response to oxidative stress [GO:0006979] -Q8NI51 reviewed CTCFL_HUMAN Transcriptional repressor CTCFL (Brother of the regulator of imprinted sites) (CCCTC-binding factor) (CTCF paralog) (CTCF-like protein) (Cancer/testis antigen 27) (CT27) (Zinc finger protein CTCF-T) CTCFL BORIS establishment of protein localization to chromatin [GO:0071169]; genomic imprinting [GO:0071514]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription initiation-coupled chromatin remodeling [GO:0045815] -Q8TAK6 reviewed OLIG1_HUMAN Oligodendrocyte transcription factor 1 (Oligo1) (Class B basic helix-loop-helix protein 6) (bHLHb6) (Class E basic helix-loop-helix protein 21) (bHLHe21) OLIG1 BHLHB6 BHLHE21 axon development [GO:0061564]; neuron fate commitment [GO:0048663]; oligodendrocyte development [GO:0014003]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sensory organ development [GO:0007423] -Q8TAU0 reviewed NKX23_HUMAN Homeobox protein Nkx-2.3 (Homeobox protein NK-2 homolog C) NKX2-3 NKX23 NKX2C CD4-positive, alpha-beta T cell differentiation [GO:0043367]; cell differentiation [GO:0030154]; gland morphogenesis [GO:0022612]; leukocyte homeostasis [GO:0001776]; leukocyte migration [GO:0050900]; lymph node development [GO:0048535]; macrophage differentiation [GO:0030225]; odontogenesis of dentin-containing tooth [GO:0042475]; Peyer's patch development [GO:0048541]; plasma cell differentiation [GO:0002317]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-embryonic digestive tract morphogenesis [GO:0048621]; regulation of epithelial cell proliferation [GO:0050678]; regulation of transcription by RNA polymerase II [GO:0006357]; spleen development [GO:0048536]; transcription by RNA polymerase II [GO:0006366]; triglyceride metabolic process [GO:0006641] -Q8TAX0 reviewed OSR1_HUMAN Protein odd-skipped-related 1 OSR1 ODD cell differentiation [GO:0030154]; cell proliferation involved in kidney development [GO:0072111]; cellular response to retinoic acid [GO:0071300]; chondrocyte differentiation [GO:0002062]; embryonic digit morphogenesis [GO:0042733]; embryonic forelimb morphogenesis [GO:0035115]; embryonic hindlimb morphogenesis [GO:0035116]; embryonic skeletal joint development [GO:0072498]; embryonic skeletal joint morphogenesis [GO:0060272]; embryonic skeletal limb joint morphogenesis [GO:0036023]; gonad development [GO:0008406]; heart development [GO:0007507]; intermediate mesoderm development [GO:0048389]; mesangial cell development [GO:0072143]; mesonephric duct morphogenesis [GO:0072180]; mesonephros development [GO:0001823]; metanephric cap mesenchymal cell proliferation involved in metanephros development [GO:0090094]; metanephric epithelium development [GO:0072207]; metanephric glomerulus vasculature development [GO:0072239]; metanephric interstitial fibroblast development [GO:0072259]; metanephric mesenchymal cell differentiation [GO:0072162]; metanephric mesenchyme development [GO:0072075]; metanephric mesenchyme morphogenesis [GO:0072133]; metanephric nephron tubule development [GO:0072234]; metanephric smooth muscle tissue development [GO:0072208]; middle ear morphogenesis [GO:0042474]; negative regulation of apoptotic process [GO:0043066]; negative regulation of creatine transmembrane transporter activity [GO:1905408]; negative regulation of epithelial cell differentiation [GO:0030857]; negative regulation of nephron tubule epithelial cell differentiation [GO:0072183]; negative regulation of sodium ion transmembrane transporter activity [GO:2000650]; negative regulation of transcription by RNA polymerase II [GO:0000122]; odontogenesis [GO:0042476]; pattern specification involved in metanephros development [GO:0072268]; positive regulation of bone mineralization [GO:0030501]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of gastrulation [GO:2000543]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; posterior mesonephric tubule development [GO:0072166]; pronephros development [GO:0048793]; regulation of transcription by RNA polymerase II [GO:0006357]; renal vesicle progenitor cell differentiation [GO:0072184]; roof of mouth development [GO:0060021]; sodium ion transmembrane transport [GO:0035725]; specification of anterior mesonephric tubule identity [GO:0072168]; specification of posterior mesonephric tubule identity [GO:0072169]; stem cell differentiation [GO:0048863]; ureter urothelium development [GO:0072190]; ureteric bud development [GO:0001657]; urogenital system development [GO:0001655] -Q8TBJ5 reviewed FEZF2_HUMAN Fez family zinc finger protein 2 (Forebrain embryonic zinc finger-like protein 2) (Zinc finger protein 312) (Zinc finger protein Fez-like) FEZF2 FEZL ZNF312 FKSG36 axonal fasciculation [GO:0007413]; cell dedifferentiation [GO:0043697]; cerebral cortex GABAergic interneuron migration [GO:0021853]; commitment of neuronal cell to specific neuron type in forebrain [GO:0021902]; dendrite development [GO:0016358]; dentate gyrus development [GO:0021542]; forebrain anterior/posterior pattern specification [GO:0021797]; locomotory behavior [GO:0007626]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of neuron differentiation [GO:0045665]; neuron fate determination [GO:0048664]; positive regulation of neuron differentiation [GO:0045666]; regulation of axon guidance [GO:1902667]; regulation of gene expression [GO:0010468]; regulation of neurogenesis [GO:0050767] -Q8TD26 reviewed CHD6_HUMAN Chromodomain-helicase-DNA-binding protein 6 (CHD-6) (EC 3.6.4.12) (ATP-dependent helicase CHD6) (Radiation-induced gene B protein) CHD6 CHD5 KIAA1335 RIGB cell redox homeostasis [GO:0045454]; chromatin remodeling [GO:0006338]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of gene expression [GO:0010468] -Q8TDD2 reviewed SP7_HUMAN Transcription factor Sp7 (Zinc finger protein osterix) SP7 OSX cellular response to zinc ion starvation [GO:0034224]; cementum mineralization [GO:0071529]; diphosphate metabolic process [GO:0071344]; gene expression [GO:0010467]; hematopoietic stem cell differentiation [GO:0060218]; osteoblast differentiation [GO:0001649]; positive regulation of stem cell differentiation [GO:2000738]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; response to insulin [GO:0032868]; response to organic cyclic compound [GO:0014070] -Q8TE12 reviewed LMX1A_HUMAN LIM homeobox transcription factor 1-alpha (LIM/homeobox protein 1.1) (LMX-1.1) (LIM/homeobox protein LMX1A) LMX1A axon guidance [GO:0007411]; central nervous system neuron differentiation [GO:0021953]; cerebellum development [GO:0021549]; dentate gyrus development [GO:0021542]; dopaminergic neuron differentiation [GO:0071542]; locomotory behavior [GO:0007626]; memory [GO:0007613]; midbrain dopaminergic neuron differentiation [GO:1904948]; negative regulation of neuron differentiation [GO:0045665]; neuron differentiation [GO:0030182]; olfactory behavior [GO:0042048]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell growth [GO:0001558]; regulation of transcription by RNA polymerase II [GO:0006357]; synapse organization [GO:0050808] -Q8TE85 reviewed GRHL3_HUMAN Grainyhead-like protein 3 homolog (Sister of mammalian grainyhead) (Transcription factor CP2-like 4) GRHL3 SOM TFCP2L4 central nervous system development [GO:0007417]; cochlea morphogenesis [GO:0090103]; ectoderm development [GO:0007398]; epidermis development [GO:0008544]; establishment of planar polarity [GO:0001736]; establishment of skin barrier [GO:0061436]; eyelid development in camera-type eye [GO:0061029]; neural tube closure [GO:0001843]; pattern specification process [GO:0007389]; planar cell polarity pathway involved in neural tube closure [GO:0090179]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription by RNA polymerase II [GO:0006366]; wound healing [GO:0042060] -Q8TEK3 reviewed DOT1L_HUMAN Histone-lysine N-methyltransferase, H3 lysine-79 specific (EC 2.1.1.360) (DOT1-like protein) (Histone H3-K79 methyltransferase) (H3-K79-HMTase) (Lysine N-methyltransferase 4) DOT1L KIAA1814 KMT4 DNA damage checkpoint signaling [GO:0000077]; DNA repair [GO:0006281]; gene expression [GO:0010467]; heterochromatin formation [GO:0031507]; methylation [GO:0032259]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of receptor signaling pathway via JAK-STAT [GO:0046425]; regulation of transcription regulatory region DNA binding [GO:2000677]; telomere organization [GO:0032200] -Q8TEY5 reviewed CR3L4_HUMAN Cyclic AMP-responsive element-binding protein 3-like protein 4 (cAMP-responsive element-binding protein 3-like protein 4) (Androgen-induced basic leucine zipper protein) (AIbZIP) (Attaching to CRE-like 1) (ATCE1) (Cyclic AMP-responsive element-binding protein 4) (CREB-4) (cAMP-responsive element-binding protein 4) (Transcript induced in spermiogenesis protein 40) (Tisp40) (hJAL) [Cleaved into: Processed cyclic AMP-responsive element-binding protein 3-like protein 4] CREB3L4 AIBZIP CREB4 JAL positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; response to unfolded protein [GO:0006986]; spermatogenesis [GO:0007283] -Q8WTR7 reviewed ZN473_HUMAN Zinc finger protein 473 (Zinc finger protein 100 homolog) (Zfp-100) ZNF473 KIAA1141 ZFP100 mRNA 3'-end processing by stem-loop binding and cleavage [GO:0006398]; regulation of transcription by RNA polymerase II [GO:0006357] -Q8WTV1 reviewed THAP3_HUMAN THAP domain-containing protein 3 THAP3 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q8WVC0 reviewed LEO1_HUMAN RNA polymerase-associated protein LEO1 (Replicative senescence down-regulated leo1-like protein) LEO1 RDL endodermal cell fate commitment [GO:0001711]; mRNA 3'-end processing [GO:0031124]; negative regulation of myeloid cell differentiation [GO:0045638]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; stem cell population maintenance [GO:0019827]; transcription elongation by RNA polymerase II [GO:0006368]; Wnt signaling pathway [GO:0016055] -Q8WW38 reviewed FOG2_HUMAN Zinc finger protein ZFPM2 (Friend of GATA protein 2) (FOG-2) (Friend of GATA 2) (hFOG-2) (Zinc finger protein 89B) (Zinc finger protein multitype 2) ZFPM2 FOG2 ZNF89B cell differentiation [GO:0030154]; embryonic organ development [GO:0048568]; fat cell differentiation [GO:0045444]; gonadal mesoderm development [GO:0007506]; heart development [GO:0007507]; in utero embryonic development [GO:0001701]; lung development [GO:0030324]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of female gonad development [GO:2000195]; negative regulation of transcription by RNA polymerase II [GO:0000122]; outflow tract septum morphogenesis [GO:0003148]; positive regulation of cardiac muscle cell proliferation [GO:0060045]; positive regulation of male gonad development [GO:2000020]; positive regulation of transcription by RNA polymerase II [GO:0045944]; right ventricular cardiac muscle tissue morphogenesis [GO:0003221]; vasculogenesis [GO:0001570]; ventricular septum morphogenesis [GO:0060412] -Q8WWB7 reviewed GLMP_HUMAN Glycosylated lysosomal membrane protein (Lysosomal protein NCU-G1) GLMP C1orf85 PSEC0030 UNQ2553/PRO6182 positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to lysosome [GO:0061462]; protein stabilization [GO:0050821] -Q8WWI1 reviewed LMO7_HUMAN LIM domain only protein 7 (LMO-7) (F-box only protein 20) (LOMP) LMO7 FBX20 FBXO20 KIAA0858 positive regulation of transcription by RNA polymerase II [GO:0045944]; protein ubiquitination [GO:0016567]; regulation of cell adhesion [GO:0030155]; regulation of signaling [GO:0023051] -Q8WWK9 reviewed CKAP2_HUMAN Cytoskeleton-associated protein 2 (CTCL tumor antigen se20-10) (Tumor- and microtubule-associated protein) CKAP2 LB1 TMAP apoptotic process [GO:0006915]; mitotic cytokinesis [GO:0000281]; negative regulation of microtubule depolymerization [GO:0007026]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q8WWQ0 reviewed PHIP_HUMAN PH-interacting protein (PHIP) (DDB1- and CUL4-associated factor 14) (IRS-1 PH domain-binding protein) (WD repeat-containing protein 11) PHIP DCAF14 WDR11 cytoskeleton organization [GO:0007010]; insulin receptor signaling pathway [GO:0008286]; negative regulation of apoptotic process [GO:0043066]; negative regulation of extrinsic apoptotic signaling pathway [GO:2001237]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of insulin-like growth factor receptor signaling pathway [GO:0043568]; positive regulation of mitotic nuclear division [GO:0045840]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell morphogenesis [GO:0022604]; regulation of cell shape [GO:0008360]; regulation of protein phosphorylation [GO:0001932]; regulation of transcription by RNA polymerase II [GO:0006357] -Q8WXX7 reviewed AUTS2_HUMAN Autism susceptibility gene 2 protein AUTS2 KIAA0442 actin cytoskeleton organization [GO:0030036]; axon extension [GO:0048675]; dendrite extension [GO:0097484]; neuron migration [GO:0001764]; positive regulation of lamellipodium assembly [GO:0010592]; positive regulation of Rac protein signal transduction [GO:0035022]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q8WYA1 reviewed BMAL2_HUMAN Basic helix-loop-helix ARNT-like protein 2 (Aryl hydrocarbon receptor nuclear translocator-like protein 2) (Basic-helix-loop-helix-PAS protein MOP9) (Brain and muscle ARNT-like 2) (CYCLE-like factor) (CLIF) (Class E basic helix-loop-helix protein 6) (bHLHe6) (Member of PAS protein 9) (PAS domain-containing protein 9) BMAL2 ARNTL2 BHLHE6 CLIF MOP9 PASD9 circadian regulation of gene expression [GO:0032922]; circadian rhythm [GO:0007623]; entrainment of circadian clock [GO:0009649]; positive regulation of circadian rhythm [GO:0042753]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357] -Q8WYB5 reviewed KAT6B_HUMAN Histone acetyltransferase KAT6B (EC 2.3.1.48) (Histone acetyltransferase MOZ2) (MOZ, YBF2/SAS3, SAS2 and TIP60 protein 4) (MYST-4) (Monocytic leukemia zinc finger protein-related factor) KAT6B KIAA0383 MORF MOZ2 MYST4 negative regulation of DNA-templated transcription [GO:0045892]; nucleosome assembly [GO:0006334]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of developmental process [GO:0050793]; regulation of DNA-templated transcription [GO:0006355]; regulation of hemopoiesis [GO:1903706]; regulation of transcription by RNA polymerase II [GO:0006357] -Q92481 reviewed AP2B_HUMAN Transcription factor AP-2-beta (AP2-beta) (Activating enhancer-binding protein 2-beta) TFAP2B aorta morphogenesis [GO:0035909]; collecting duct development [GO:0072044]; distal tubule development [GO:0072017]; ductus arteriosus closure [GO:0097070]; fat cell differentiation [GO:0045444]; forelimb morphogenesis [GO:0035136]; glucose metabolic process [GO:0006006]; hindlimb morphogenesis [GO:0035137]; kidney development [GO:0001822]; metanephric nephron development [GO:0072210]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron apoptotic process [GO:0051402]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of BMP signaling pathway [GO:0030510]; regulation of cell differentiation [GO:0045595]; regulation of cell population proliferation [GO:0042127]; regulation of insulin secretion [GO:0050796]; regulation of transcription by RNA polymerase II [GO:0006357]; response to xenobiotic stimulus [GO:0009410]; retina layer formation [GO:0010842]; skin development [GO:0043588]; smooth muscle tissue development [GO:0048745]; sympathetic nervous system development [GO:0048485]; transcription by RNA polymerase II [GO:0006366] -Q92539 reviewed LPIN2_HUMAN Phosphatidate phosphatase LPIN2 (EC 3.1.3.4) (Lipin-2) LPIN2 KIAA0249 cellular response to insulin stimulus [GO:0032869]; fatty acid catabolic process [GO:0009062]; lipid metabolic process [GO:0006629]; positive regulation of transcription by RNA polymerase II [GO:0045944]; triglyceride biosynthetic process [GO:0019432] -Q92570 reviewed NR4A3_HUMAN Nuclear receptor subfamily 4 group A member 3 (Mitogen-induced nuclear orphan receptor) (Neuron-derived orphan receptor 1) (Nuclear hormone receptor NOR-1) NR4A3 CHN CSMF MINOR NOR1 TEC animal organ regeneration [GO:0031100]; cellular respiration [GO:0045333]; cellular response to catecholamine stimulus [GO:0071870]; cellular response to corticotropin-releasing hormone stimulus [GO:0071376]; cellular response to leptin stimulus [GO:0044320]; common myeloid progenitor cell proliferation [GO:0035726]; energy homeostasis [GO:0097009]; fat cell differentiation [GO:0045444]; gastrulation [GO:0007369]; intracellular signal transduction [GO:0035556]; mast cell degranulation [GO:0043303]; negative regulation of transcription by RNA polymerase II [GO:0000122]; platelet-derived growth factor receptor signaling pathway [GO:0048008]; positive regulation of cardiac muscle hypertrophy [GO:0010613]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of feeding behavior [GO:2000253]; positive regulation of glucose transmembrane transport [GO:0010828]; positive regulation of mast cell activation by Fc-epsilon receptor signaling pathway [GO:0038097]; positive regulation of mast cell cytokine production [GO:0032765]; positive regulation of monocyte aggregation [GO:1900625]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular associated smooth muscle cell migration [GO:1904754]; positive regulation of vascular associated smooth muscle cell proliferation [GO:1904707]; regulation of smooth muscle cell proliferation [GO:0048660]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of type B pancreatic cell proliferation [GO:0061469] -Q92585 reviewed MAML1_HUMAN Mastermind-like protein 1 (Mam-1) MAML1 KIAA0200 atrioventricular node cell development [GO:0060928]; atrioventricular node development [GO:0003162]; myoblast differentiation [GO:0045445]; Notch signaling pathway [GO:0007219]; positive regulation of myotube differentiation [GO:0010831]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription of Notch receptor target [GO:0007221]; protein phosphorylation [GO:0006468] -Q92731 reviewed ESR2_HUMAN Estrogen receptor beta (ER-beta) (Nuclear receptor subfamily 3 group A member 2) ESR2 ESTRB NR3A2 cell-cell signaling [GO:0007267]; cellular response to estradiol stimulus [GO:0071392]; cellular response to estrogen stimulus [GO:0071391]; intracellular estrogen receptor signaling pathway [GO:0030520]; negative regulation of cell growth [GO:0030308]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; signal transduction [GO:0007165] -Q92750 reviewed TAF4B_HUMAN Transcription initiation factor TFIID subunit 4B (Transcription initiation factor TFIID 105 kDa subunit) (TAF(II)105) (TAFII-105) (TAFII105) TAF4B TAF2C2 TAFII105 mRNA transcription by RNA polymerase II [GO:0042789]; oogenesis [GO:0048477]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; RNA polymerase II preinitiation complex assembly [GO:0051123]; spermatogenesis [GO:0007283]; transcription initiation at RNA polymerase II promoter [GO:0006367] -Q92753 reviewed RORB_HUMAN Nuclear receptor ROR-beta (Nuclear receptor RZR-beta) (Nuclear receptor subfamily 1 group F member 2) (Retinoid-related orphan receptor-beta) RORB NR1F2 RZRB amacrine cell differentiation [GO:0035881]; cellular response to retinoic acid [GO:0071300]; eye photoreceptor cell development [GO:0042462]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of osteoblast differentiation [GO:0045668]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of circadian rhythm [GO:0042752]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; retina development in camera-type eye [GO:0060041]; retinal cone cell development [GO:0046549]; retinal rod cell development [GO:0046548]; rhythmic process [GO:0048511]; visual perception [GO:0007601] -Q92754 reviewed AP2C_HUMAN Transcription factor AP-2 gamma (AP2-gamma) (Activating enhancer-binding protein 2 gamma) (Transcription factor ERF-1) TFAP2C cell-cell signaling [GO:0007267]; male gonad development [GO:0008584]; negative regulation of gene expression, epigenetic [GO:0045814]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell population proliferation [GO:0042127]; regulation of transcription by RNA polymerase II [GO:0006357] -Q92766 reviewed RREB1_HUMAN Ras-responsive element-binding protein 1 (RREB-1) (Finger protein in nuclear bodies) (Raf-responsive zinc finger protein LZ321) (Zinc finger motif enhancer-binding protein 1) (Zep-1) RREB1 FINB negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of brown fat cell differentiation [GO:0090336]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial cell migration [GO:0010634]; positive regulation of lamellipodium morphogenesis [GO:2000394]; positive regulation of mammary gland epithelial cell proliferation [GO:0033601]; positive regulation of substrate adhesion-dependent cell spreading [GO:1900026]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of wound healing, spreading of epidermal cells [GO:1903691]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription by RNA polymerase II [GO:0006366] -Q92769 reviewed HDAC2_HUMAN Histone deacetylase 2 (HD2) (EC 3.5.1.98) (Protein deacylase HDAC2) (EC 3.5.1.-) HDAC2 behavioral response to ethanol [GO:0048149]; cardiac muscle hypertrophy [GO:0003300]; cellular response to dopamine [GO:1903351]; cellular response to heat [GO:0034605]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to retinoic acid [GO:0071300]; cellular response to transforming growth factor beta stimulus [GO:0071560]; chromatin remodeling [GO:0006338]; circadian regulation of gene expression [GO:0032922]; dendrite development [GO:0016358]; embryonic digit morphogenesis [GO:0042733]; epidermal cell differentiation [GO:0009913]; eyelid development in camera-type eye [GO:0061029]; fungiform papilla formation [GO:0061198]; hair follicle placode formation [GO:0060789]; heterochromatin formation [GO:0031507]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cell migration [GO:0030336]; negative regulation of dendritic spine development [GO:0061000]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of MHC class II biosynthetic process [GO:0045347]; negative regulation of neuron projection development [GO:0010977]; negative regulation of peptidyl-lysine acetylation [GO:2000757]; negative regulation of stem cell population maintenance [GO:1902455]; negative regulation of transcription by competitive promoter binding [GO:0010944]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; odontogenesis of dentin-containing tooth [GO:0042475]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of collagen biosynthetic process [GO:0032967]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of interleukin-1 production [GO:0032732]; positive regulation of male mating behavior [GO:1902437]; positive regulation of oligodendrocyte differentiation [GO:0048714]; positive regulation of proteolysis [GO:0045862]; positive regulation of signaling receptor activity [GO:2000273]; positive regulation of stem cell population maintenance [GO:1902459]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; protein modification process [GO:0036211]; regulation of cell fate specification [GO:0042659]; regulation of stem cell differentiation [GO:2000736]; response to amphetamine [GO:0001975]; response to amyloid-beta [GO:1904645]; response to caffeine [GO:0031000]; response to cocaine [GO:0042220]; response to hyperoxia [GO:0055093]; response to lipopolysaccharide [GO:0032496]; response to nicotine [GO:0035094]; response to xenobiotic stimulus [GO:0009410] -Q92786 reviewed PROX1_HUMAN Prospero homeobox protein 1 (Homeobox prospero-like protein PROX1) (PROX-1) PROX1 acinar cell differentiation [GO:0090425]; aorta smooth muscle tissue morphogenesis [GO:0060414]; atrial cardiac muscle tissue morphogenesis [GO:0055009]; blood vessel endothelial cell differentiation [GO:0060837]; brain development [GO:0007420]; branching involved in pancreas morphogenesis [GO:0061114]; cerebellar granule cell differentiation [GO:0021707]; circadian rhythm [GO:0007623]; dentate gyrus development [GO:0021542]; dorsal spinal cord development [GO:0021516]; embryonic retina morphogenesis in camera-type eye [GO:0060059]; endocardium formation [GO:0060214]; epithelial cell migration [GO:0010631]; hepatocyte cell migration [GO:0002194]; hepatocyte differentiation [GO:0070365]; hepatocyte proliferation [GO:0072574]; kidney development [GO:0001822]; lens development in camera-type eye [GO:0002088]; lens fiber cell morphogenesis [GO:0070309]; lens placode formation involved in camera-type eye formation [GO:0046619]; liver development [GO:0001889]; lung development [GO:0030324]; lymphangiogenesis [GO:0001946]; lymphatic endothelial cell differentiation [GO:0060836]; lymphatic endothelial cell fate commitment [GO:0060838]; negative regulation of bile acid biosynthetic process [GO:0070858]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of neuroblast proliferation [GO:0007406]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of viral genome replication [GO:0045071]; neural tube development [GO:0021915]; neuroblast proliferation [GO:0007405]; neuron fate determination [GO:0048664]; neuronal stem cell population maintenance [GO:0097150]; olfactory placode formation [GO:0030910]; otic placode formation [GO:0043049]; pancreas development [GO:0031016]; positive regulation of cell cycle [GO:0045787]; positive regulation of cell cycle checkpoint [GO:1901978]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0045737]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of forebrain neuron differentiation [GO:2000979]; positive regulation of heart growth [GO:0060421]; positive regulation of neural precursor cell proliferation [GO:2000179]; positive regulation of sarcomere organization [GO:0060298]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of circadian rhythm [GO:0042752]; regulation of gene expression [GO:0010468]; regulation of transcription by RNA polymerase II [GO:0006357]; response to nutrient levels [GO:0031667]; retina morphogenesis in camera-type eye [GO:0060042]; skeletal muscle thin filament assembly [GO:0030240]; transcription by RNA polymerase II [GO:0006366]; venous blood vessel morphogenesis [GO:0048845]; ventricular cardiac muscle tissue morphogenesis [GO:0055010]; ventricular cardiac myofibril assembly [GO:0055005]; ventricular septum morphogenesis [GO:0060412] -Q92793 reviewed CBP_HUMAN CREB-binding protein (Histone lysine acetyltransferase CREBBP) (EC 2.3.1.48) (Protein lactyltransferas CREBBP) (EC 2.3.1.-) (Protein-lysine acetyltransferase CREBBP) (EC 2.3.1.-) CREBBP CBP canonical NF-kappaB signal transduction [GO:0007249]; cellular response to nutrient levels [GO:0031669]; cellular response to UV [GO:0034644]; embryonic digit morphogenesis [GO:0042733]; homeostatic process [GO:0042592]; N-terminal peptidyl-lysine acetylation [GO:0018076]; negative regulation of transcription by RNA polymerase I [GO:0016479]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of double-strand break repair via homologous recombination [GO:1905168]; positive regulation of protein localization to nucleus [GO:1900182]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta receptor signaling pathway [GO:0030511]; protein acetylation [GO:0006473]; protein destabilization [GO:0031648]; protein-containing complex assembly [GO:0065003]; regulation of cellular response to heat [GO:1900034]; regulation of DNA-templated transcription [GO:0006355]; regulation of smoothened signaling pathway [GO:0008589]; response to hypoxia [GO:0001666]; rhythmic process [GO:0048511]; signal transduction [GO:0007165]; stimulatory C-type lectin receptor signaling pathway [GO:0002223] -Q92800 reviewed EZH1_HUMAN Histone-lysine N-methyltransferase EZH1 (EC 2.1.1.356) (ENX-2) (Enhancer of zeste homolog 1) EZH1 KIAA0388 anatomical structure morphogenesis [GO:0009653]; chromatin remodeling [GO:0006338]; heterochromatin formation [GO:0031507]; hippocampus development [GO:0021766]; methylation [GO:0032259]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; subtelomeric heterochromatin formation [GO:0031509] -Q92830 reviewed KAT2A_HUMAN Histone acetyltransferase KAT2A (EC 2.3.1.48) (General control of amino acid synthesis protein 5-like 2) (Histone acetyltransferase GCN5) (hGCN5) (Histone glutaryltransferase KAT2A) (EC 2.3.1.-) (Histone succinyltransferase KAT2A) (EC 2.3.1.-) (Lysine acetyltransferase 2A) (STAF97) KAT2A GCN5 GCN5L2 cellular response to nerve growth factor stimulus [GO:1990090]; cellular response to tumor necrosis factor [GO:0071356]; chromatin remodeling [GO:0006338]; fibroblast proliferation [GO:0048144]; gluconeogenesis [GO:0006094]; heart development [GO:0007507]; in utero embryonic development [GO:0001701]; internal peptidyl-lysine acetylation [GO:0018393]; intracellular distribution of mitochondria [GO:0048312]; limb development [GO:0060173]; long-term memory [GO:0007616]; metencephalon development [GO:0022037]; midbrain development [GO:0030901]; multicellular organism growth [GO:0035264]; negative regulation of centriole replication [GO:0046600]; negative regulation of gluconeogenesis [GO:0045721]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural tube closure [GO:0001843]; peptidyl-lysine glutarylation [GO:0106227]; positive regulation of cardiac muscle cell differentiation [GO:2000727]; positive regulation of cell projection organization [GO:0031346]; positive regulation of cytokine production [GO:0001819]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gluconeogenesis [GO:0045722]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of bone development [GO:1903010]; regulation of cartilage development [GO:0061035]; regulation of cell cycle [GO:0051726]; regulation of cell division [GO:0051302]; regulation of DNA repair [GO:0006282]; regulation of DNA-templated transcription [GO:0006355]; regulation of embryonic development [GO:0045995]; regulation of protein stability [GO:0031647]; regulation of regulatory T cell differentiation [GO:0045589]; regulation of RNA splicing [GO:0043484]; regulation of stem cell population maintenance [GO:2000036]; regulation of synaptic plasticity [GO:0048167]; regulation of T cell activation [GO:0050863]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of tubulin deacetylation [GO:0090043]; response to nutrient levels [GO:0031667]; response to organic cyclic compound [GO:0014070]; somitogenesis [GO:0001756]; telencephalon development [GO:0021537] -Q92831 reviewed KAT2B_HUMAN Histone acetyltransferase KAT2B (EC 2.3.1.48) (Histone acetyltransferase PCAF) (Histone acetylase PCAF) (Lysine acetyltransferase 2B) (P300/CBP-associated factor) (P/CAF) (Spermidine acetyltransferase KAT2B) (EC 2.3.1.57) KAT2B PCAF cellular response to insulin stimulus [GO:0032869]; cellular response to oxidative stress [GO:0034599]; cellular response to parathyroid hormone stimulus [GO:0071374]; chromatin remodeling [GO:0006338]; gluconeogenesis [GO:0006094]; heart development [GO:0007507]; internal peptidyl-lysine acetylation [GO:0018393]; limb development [GO:0060173]; memory [GO:0007613]; N-terminal peptidyl-lysine acetylation [GO:0018076]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of centriole replication [GO:0046600]; negative regulation of rRNA processing [GO:2000233]; negative regulation of transcription by RNA polymerase II [GO:0000122]; peptidyl-lysine acetylation [GO:0018394]; positive regulation of attachment of mitotic spindle microtubules to kinetochore [GO:1902425]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of fatty acid biosynthetic process [GO:0045723]; positive regulation of gluconeogenesis [GO:0045722]; positive regulation of glycolytic process [GO:0045821]; positive regulation of neuron projection development [GO:0010976]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription from RNA polymerase II promoter by glucose [GO:0000432]; protein acetylation [GO:0006473]; regulation of cell cycle [GO:0051726]; regulation of cell division [GO:0051302]; regulation of DNA repair [GO:0006282]; regulation of DNA-templated transcription [GO:0006355]; regulation of embryonic development [GO:0045995]; regulation of protein ADP-ribosylation [GO:0010835]; regulation of RNA splicing [GO:0043484]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of tubulin deacetylation [GO:0090043]; rhythmic process [GO:0048511]; transcription initiation-coupled chromatin remodeling [GO:0045815]; vasodilation [GO:0042311] -Q92841 reviewed DDX17_HUMAN Probable ATP-dependent RNA helicase DDX17 (EC 3.6.4.13) (DEAD box protein 17) (DEAD box protein p72) (DEAD box protein p82) (RNA-dependent helicase p72) DDX17 alternative mRNA splicing, via spliceosome [GO:0000380]; androgen receptor signaling pathway [GO:0030521]; defense response to virus [GO:0051607]; epithelial to mesenchymal transition [GO:0001837]; immune system process [GO:0002376]; intracellular estrogen receptor signaling pathway [GO:0030520]; miRNA metabolic process [GO:0010586]; myoblast differentiation [GO:0045445]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; regulation of skeletal muscle cell differentiation [GO:2001014]; regulation of transcription by RNA polymerase II [GO:0006357]; regulatory ncRNA-mediated gene silencing [GO:0031047]; RNA processing [GO:0006396]; rRNA processing [GO:0006364] -Q92858 reviewed ATOH1_HUMAN Transcription factor ATOH1 (Atonal bHLH transcription factor 1) (Class A basic helix-loop-helix protein 14) (bHLHa14) (Helix-loop-helix protein hATH-1) (hATH1) (Protein atonal homolog 1) ATOH1 ATH1 BHLHA14 auditory receptor cell fate determination [GO:0042668]; auditory receptor cell fate specification [GO:0042667]; axon development [GO:0061564]; axon guidance [GO:0007411]; central nervous system development [GO:0007417]; cerebral cortex development [GO:0021987]; epithelial cell apoptotic process [GO:1904019]; inner ear morphogenesis [GO:0042472]; negative regulation of epithelial cell apoptotic process [GO:1904036]; negative regulation of gliogenesis [GO:0014014]; neuroblast migration [GO:0097402]; neuron fate commitment [GO:0048663]; neuron migration [GO:0001764]; Notch signaling pathway [GO:0007219]; positive regulation of inner ear auditory receptor cell differentiation [GO:0045609]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sensory organ development [GO:0007423]; transcription by RNA polymerase II [GO:0006366] -Q92870 reviewed APBB2_HUMAN Amyloid beta precursor protein binding family B member 2 (Amyloid-beta (A4) precursor protein-binding family B member 2) (Protein Fe65-like 1) APBB2 FE65L FE65L1 axon guidance [GO:0007411]; extracellular matrix organization [GO:0030198]; intracellular signal transduction [GO:0035556]; maintenance of lens transparency [GO:0036438]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cell cycle phase transition [GO:1901988]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron migration [GO:0001764]; positive regulation of apoptotic process [GO:0043065]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; smooth muscle contraction [GO:0006939]; synapse organization [GO:0050808] -Q92886 reviewed NGN1_HUMAN Neurogenin-1 (NGN-1) (Class A basic helix-loop-helix protein 6) (bHLHa6) (Neurogenic basic-helix-loop-helix protein) (Neurogenic differentiation factor 3) (NeuroD3) NEUROG1 BHLHA6 NEUROD3 NGN NGN1 auditory behavior [GO:0031223]; axon development [GO:0061564]; cell fate commitment [GO:0045165]; cochlea development [GO:0090102]; cochlea morphogenesis [GO:0090103]; craniofacial suture morphogenesis [GO:0097094]; exit from mitosis [GO:0010458]; forebrain development [GO:0030900]; genitalia development [GO:0048806]; genitalia morphogenesis [GO:0035112]; hard palate morphogenesis [GO:1905748]; inner ear development [GO:0048839]; inner ear morphogenesis [GO:0042472]; learned vocalization behavior [GO:0098583]; mastication [GO:0071626]; negative regulation of relaxation of muscle [GO:1901078]; negative regulation of saliva secretion [GO:1905747]; nervous system development [GO:0007399]; neuromuscular process controlling balance [GO:0050885]; peristalsis [GO:0030432]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of exit from mitosis [GO:0031536]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of muscle organ development [GO:0048634]; regulation of transcription by RNA polymerase II [GO:0006357]; sensory organ development [GO:0007423]; thorax and anterior abdomen determination [GO:0007356]; trigeminal nerve development [GO:0021559]; vestibulocochlear nerve formation [GO:0021650] -Q92905 reviewed CSN5_HUMAN COP9 signalosome complex subunit 5 (SGN5) (Signalosome subunit 5) (EC 3.4.-.-) (Jun activation domain-binding protein 1) COPS5 CSN5 JAB1 exosomal secretion [GO:1990182]; negative regulation of apoptotic process [GO:0043066]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-translational protein modification [GO:0043687]; protein deneddylation [GO:0000338]; protein neddylation [GO:0045116]; proteolysis [GO:0006508]; regulation of cell cycle [GO:0051726]; regulation of IRE1-mediated unfolded protein response [GO:1903894]; regulation of JNK cascade [GO:0046328]; regulation of protein neddylation [GO:2000434]; translation [GO:0006412] -Q92908 reviewed GATA6_HUMAN Transcription factor GATA-6 (GATA-binding factor 6) GATA6 animal organ formation [GO:0048645]; atrioventricular canal development [GO:0036302]; atrioventricular node development [GO:0003162]; cardiac muscle cell differentiation [GO:0055007]; cardiac muscle cell proliferation [GO:0060038]; cardiac muscle hypertrophy in response to stress [GO:0014898]; cardiac vascular smooth muscle cell differentiation [GO:0060947]; cell fate commitment [GO:0045165]; cellular response to BMP stimulus [GO:0071773]; cellular response to gonadotropin stimulus [GO:0071371]; cellular response to hypoxia [GO:0071456]; club cell differentiation [GO:0060486]; endodermal cell fate determination [GO:0007493]; epithelial cell differentiation [GO:0030855]; G1 to G0 transition involved in cell differentiation [GO:0070315]; gene expression [GO:0010467]; heart contraction [GO:0060047]; in utero embryonic development [GO:0001701]; intestinal epithelial cell differentiation [GO:0060575]; liver development [GO:0001889]; lung saccule development [GO:0060430]; male gonad development [GO:0008584]; negative regulation of apoptotic process [GO:0043066]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of miRNA transcription [GO:1902894]; negative regulation of sebum secreting cell proliferation [GO:1904003]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transforming growth factor beta1 production [GO:0032911]; negative regulation of transforming growth factor beta2 production [GO:0032912]; odontogenesis of dentin-containing tooth [GO:0042475]; outflow tract septum morphogenesis [GO:0003148]; pancreatic A cell differentiation [GO:0003310]; phospholipid metabolic process [GO:0006644]; positive regulation of angiogenesis [GO:0045766]; positive regulation of BMP signaling pathway [GO:0030513]; positive regulation of cardiac muscle cell apoptotic process [GO:0010666]; positive regulation of cardiac muscle cell proliferation [GO:0060045]; positive regulation of cardiac muscle myoblast proliferation [GO:0110024]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of antimicrobial humoral response [GO:0002759]; response to cAMP [GO:0051591]; response to estrogen [GO:0043627]; response to growth factor [GO:0070848]; response to retinoic acid [GO:0032526]; response to toxic substance [GO:0009636]; response to xenobiotic stimulus [GO:0009410]; sebaceous gland cell differentiation [GO:0001949]; sinoatrial node development [GO:0003163]; skin epidermis development [GO:0098773]; smooth muscle cell differentiation [GO:0051145]; stem cell differentiation [GO:0048863]; tube morphogenesis [GO:0035239]; type B pancreatic cell differentiation [GO:0003309]; type II pneumocyte differentiation [GO:0060510] -Q92922 reviewed SMRC1_HUMAN SWI/SNF complex subunit SMARCC1 (BRG1-associated factor 155) (BAF155) (SWI/SNF complex 155 kDa subunit) (SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily C member 1) SMARCC1 BAF155 animal organ morphogenesis [GO:0009887]; chromatin remodeling [GO:0006338]; insulin receptor signaling pathway [GO:0008286]; negative regulation of cell differentiation [GO:0045596]; negative regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032435]; nervous system development [GO:0007399]; nucleosome disassembly [GO:0006337]; positive regulation of cell differentiation [GO:0045597]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of double-strand break repair [GO:2000781]; positive regulation of myoblast differentiation [GO:0045663]; positive regulation of stem cell population maintenance [GO:1902459]; positive regulation of T cell differentiation [GO:0045582]; positive regulation of transcription by RNA polymerase II [GO:0045944]; prostate gland development [GO:0030850]; regulation of G0 to G1 transition [GO:0070316]; regulation of G1/S transition of mitotic cell cycle [GO:2000045]; regulation of mitotic metaphase/anaphase transition [GO:0030071]; regulation of nucleotide-excision repair [GO:2000819]; regulation of transcription by RNA polymerase II [GO:0006357] -Q92949 reviewed FOXJ1_HUMAN Forkhead box protein J1 (Forkhead-related protein FKHL13) (Hepatocyte nuclear factor 3 forkhead homolog 4) (HFH-4) FOXJ1 FKHL13 HFH4 actin cytoskeleton organization [GO:0030036]; activation of GTPase activity [GO:0090630]; axoneme assembly [GO:0035082]; brain development [GO:0007420]; cell maturation [GO:0048469]; central tolerance induction [GO:0002508]; ciliary basal body organization [GO:0032053]; cilium assembly [GO:0060271]; determination of left/right symmetry [GO:0007368]; epithelium development [GO:0060429]; establishment of apical/basal cell polarity [GO:0035089]; glomerular parietal epithelial cell development [GO:0072016]; heart development [GO:0007507]; humoral immune response [GO:0006959]; leukocyte migration [GO:0050900]; lung epithelium development [GO:0060428]; metanephric part of ureteric bud development [GO:0035502]; motile cilium assembly [GO:0044458]; negative regulation of B cell activation [GO:0050869]; negative regulation of germinal center formation [GO:0002635]; negative regulation of humoral immune response mediated by circulating immunoglobulin [GO:0002924]; negative regulation of interleukin-6 production [GO:0032715]; negative regulation of NF-kappaB transcription factor activity [GO:0032088]; negative regulation of T cell differentiation in thymus [GO:0033085]; negative regulation of T cell proliferation [GO:0042130]; negative regulation of transcription by RNA polymerase II [GO:0000122]; pattern specification process [GO:0007389]; positive regulation of central B cell tolerance induction [GO:0002897]; positive regulation of lung ciliated cell differentiation [GO:1901248]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization [GO:0008104]; regulation of transcription by RNA polymerase II [GO:0006357]; spermatogenesis [GO:0007283] -Q92974 reviewed ARHG2_HUMAN Rho guanine nucleotide exchange factor 2 (Guanine nucleotide exchange factor H1) (GEF-H1) (Microtubule-regulated Rho-GEF) (Proliferating cell nucleolar antigen p40) ARHGEF2 KIAA0651 LFP40 actin filament organization [GO:0007015]; asymmetric neuroblast division [GO:0055059]; cell morphogenesis [GO:0000902]; cellular hyperosmotic response [GO:0071474]; cellular response to muramyl dipeptide [GO:0071225]; cellular response to tumor necrosis factor [GO:0071356]; innate immune response [GO:0045087]; intracellular protein transport [GO:0006886]; negative regulation of extrinsic apoptotic signaling pathway via death domain receptors [GO:1902042]; negative regulation of intrinsic apoptotic signaling pathway in response to osmotic stress [GO:1902219]; negative regulation of microtubule depolymerization [GO:0007026]; negative regulation of necroptotic process [GO:0060546]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of neuron migration [GO:2001224]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; regulation of cell population proliferation [GO:0042127]; regulation of Rho protein signal transduction [GO:0035023]; regulation of small GTPase mediated signal transduction [GO:0051056] -Q92985 reviewed IRF7_HUMAN Interferon regulatory factor 7 (IRF-7) IRF7 cytoplasmic pattern recognition receptor signaling pathway [GO:0002753]; defense response to virus [GO:0051607]; DNA damage response [GO:0006974]; establishment of viral latency [GO:0019043]; immune system process [GO:0002376]; immunoglobulin mediated immune response [GO:0016064]; innate immune response [GO:0045087]; MDA-5 signaling pathway [GO:0039530]; negative regulation of macrophage apoptotic process [GO:2000110]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of interferon-alpha production [GO:0032727]; positive regulation of interferon-beta production [GO:0032728]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type I interferon production [GO:0032481]; positive regulation of type I interferon-mediated signaling pathway [GO:0060340]; regulation of adaptive immune response [GO:0002819]; regulation of immune response [GO:0050776]; regulation of monocyte differentiation [GO:0045655]; regulation of MyD88-dependent toll-like receptor signaling pathway [GO:0034124]; regulation of MyD88-independent toll-like receptor signaling pathway [GO:0034127]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of type I interferon production [GO:0032479]; response to virus [GO:0009615]; type I interferon-mediated signaling pathway [GO:0060337] -Q92993 reviewed KAT5_HUMAN Histone acetyltransferase KAT5 (EC 2.3.1.48) (60 kDa Tat-interactive protein) (Tip60) (Histone acetyltransferase HTATIP) (HIV-1 Tat interactive protein) (Lysine acetyltransferase 5) (Protein 2-hydroxyisobutyryltransferase KAT5) (EC 2.3.1.-) (Protein acetyltransferase KAT5) (EC 2.3.1.-) (Protein crotonyltransferase KAT5) (EC 2.3.1.-) (cPLA(2)-interacting protein) KAT5 HTATIP TIP60 apoptotic process [GO:0006915]; cellular response to estradiol stimulus [GO:0071392]; cellular response to glucose starvation [GO:0042149]; cellular response to glucose stimulus [GO:0071333]; cellular senescence [GO:0090398]; DNA damage response [GO:0006974]; DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator [GO:0006978]; DNA repair-dependent chromatin remodeling [GO:0140861]; double-strand break repair [GO:0006302]; double-strand break repair via homologous recombination [GO:0000724]; establishment of mitotic spindle orientation [GO:0000132]; innate immune response [GO:0045087]; lipid droplet disassembly [GO:1905691]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of double-strand break repair via homologous recombination [GO:2000042]; negative regulation of interleukin-2 production [GO:0032703]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural tube development [GO:0021915]; neurogenesis [GO:0022008]; nucleotide-excision repair [GO:0006289]; peptidyl-lysine acetylation [GO:0018394]; positive regulation of aggrephagy [GO:1905337]; positive regulation of attachment of mitotic spindle microtubules to kinetochore [GO:1902425]; positive regulation of autophagy [GO:0010508]; positive regulation of circadian rhythm [GO:0042753]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of double-strand break repair via homologous recombination [GO:1905168]; positive regulation of innate immune response [GO:0045089]; positive regulation of mitotic sister chromatid segregation [GO:0062033]; positive regulation of myoblast differentiation [GO:0045663]; positive regulation of protein acetylation [GO:1901985]; positive regulation of regulatory T cell differentiation [GO:0045591]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of triglyceride biosynthetic process [GO:0010867]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; regulation of apoptotic process [GO:0042981]; regulation of cell cycle [GO:0051726]; regulation of double-strand break repair [GO:2000779]; regulation of hematopoietic stem cell differentiation [GO:1902036]; regulation of transcription by RNA polymerase II [GO:0006357]; response to ionizing radiation [GO:0010212]; sperm DNA condensation [GO:0035092]; spermatid development [GO:0007286] -Q92997 reviewed DVL3_HUMAN Segment polarity protein dishevelled homolog DVL-3 (Dishevelled-3) (DSH homolog 3) DVL3 KIAA0208 canonical Wnt signaling pathway [GO:0060070]; intracellular signal transduction [GO:0035556]; non-canonical Wnt signaling pathway [GO:0035567]; planar cell polarity pathway involved in neural tube closure [GO:0090179]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of GTPase activity [GO:0043547]; positive regulation of JNK cascade [GO:0046330]; positive regulation of neuron projection arborization [GO:0150012]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein stabilization [GO:0050821]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of protein localization [GO:0032880]; response to xenobiotic stimulus [GO:0009410]; Wnt signaling pathway, planar cell polarity pathway [GO:0060071] -Q93074 reviewed MED12_HUMAN Mediator of RNA polymerase II transcription subunit 12 (Activator-recruited cofactor 240 kDa component) (ARC240) (CAG repeat protein 45) (Mediator complex subunit 12) (OPA-containing protein) (Thyroid hormone receptor-associated protein complex 230 kDa component) (Trap230) (Trinucleotide repeat-containing gene 11 protein) MED12 ARC240 CAGH45 HOPA KIAA0192 TNRC11 TRAP230 axis elongation involved in somitogenesis [GO:0090245]; embryonic brain development [GO:1990403]; embryonic neurocranium morphogenesis [GO:0048702]; endoderm development [GO:0007492]; heart development [GO:0007507]; neural tube closure [GO:0001843]; oligodendrocyte development [GO:0014003]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; post-anal tail morphogenesis [GO:0036342]; protein ubiquitination [GO:0016567]; Schwann cell development [GO:0014044]; somatic stem cell population maintenance [GO:0035019]; spinal cord development [GO:0021510]; Wnt signaling pathway, planar cell polarity pathway [GO:0060071] -Q969G2 reviewed LHX4_HUMAN LIM/homeobox protein Lhx4 (LIM homeobox protein 4) LHX4 animal organ morphogenesis [GO:0009887]; apoptotic process [GO:0006915]; medial motor column neuron differentiation [GO:0021526]; motor neuron axon guidance [GO:0008045]; negative regulation of apoptotic process [GO:0043066]; neuron differentiation [GO:0030182]; placenta development [GO:0001890]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q969H8 reviewed MYDGF_HUMAN Myeloid-derived growth factor (MYDGF) MYDGF C19orf10 angiogenesis [GO:0001525]; apoptotic process [GO:0006915]; negative regulation of apoptotic process [GO:0043066]; positive regulation of angiogenesis [GO:0045766]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q969T9 reviewed WBP2_HUMAN WW domain-binding protein 2 (WBP-2) WBP2 cellular response to estrogen stimulus [GO:0071391]; establishment of protein localization to chromatin [GO:0071169]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of intracellular estrogen receptor signaling pathway [GO:0033148]; positive regulation of transcription by RNA polymerase II [GO:0045944]; progesterone receptor signaling pathway [GO:0050847]; response to estrogen [GO:0043627]; response to progesterone [GO:0032570]; transcription initiation-coupled chromatin remodeling [GO:0045815] -Q969V6 reviewed MRTFA_HUMAN Myocardin-related transcription factor A (MRTF-A) (MKL/myocardin-like protein 1) (Megakaryoblastic leukemia 1 protein) (Megakaryocytic acute leukemia protein) MRTFA KIAA1438 MAL MKL1 actin cytoskeleton organization [GO:0030036]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of transcription by RNA polymerase II [GO:0045944]; smooth muscle cell differentiation [GO:0051145]; wound healing, spreading of cells [GO:0044319] -Q96AV8 reviewed E2F7_HUMAN Transcription factor E2F7 (E2F-7) E2F7 chorionic trophoblast cell differentiation [GO:0060718]; DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest [GO:0006977]; hepatocyte differentiation [GO:0070365]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of cytokinesis [GO:0032466]; negative regulation of G1/S transition of mitotic cell cycle [GO:2000134]; negative regulation of transcription by RNA polymerase II [GO:0000122]; placenta development [GO:0001890]; positive regulation of DNA endoreduplication [GO:0032877]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; sprouting angiogenesis [GO:0002040]; trophoblast giant cell differentiation [GO:0060707] -Q96B86 reviewed RGMA_HUMAN Repulsive guidance molecule A (RGM domain family member A) RGMA RGM BMP signaling pathway [GO:0030509]; membrane protein ectodomain proteolysis [GO:0006509]; negative regulation of axon regeneration [GO:0048681]; negative regulation of collateral sprouting [GO:0048671]; neural tube closure [GO:0001843]; neuron projection development [GO:0031175]; positive regulation of membrane protein ectodomain proteolysis [GO:0051044]; positive regulation of neuron projection development [GO:0010976]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of BMP signaling pathway [GO:0030510] -Q96BA8 reviewed CR3L1_HUMAN Cyclic AMP-responsive element-binding protein 3-like protein 1 (cAMP-responsive element-binding protein 3-like protein 1) (Old astrocyte specifically-induced substance) (OASIS) [Cleaved into: Processed cyclic AMP-responsive element-binding protein 3-like protein 1] CREB3L1 OASIS PSEC0238 endoplasmic reticulum unfolded protein response [GO:0030968]; extracellular matrix constituent secretion [GO:0070278]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway [GO:1902236]; negative regulation of fibroblast growth factor receptor signaling pathway [GO:0040037]; negative regulation of gene expression [GO:0010629]; negative regulation of sprouting angiogenesis [GO:1903671]; osteoblast differentiation [GO:0001649]; positive regulation of collagen biosynthetic process [GO:0032967]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; response to endoplasmic reticulum stress [GO:0034976] -Q96CJ1 reviewed EAF2_HUMAN ELL-associated factor 2 (Testosterone-regulated apoptosis inducer and tumor suppressor protein) EAF2 TRAITS BM-040 apoptotic process [GO:0006915]; epithelial cell proliferation involved in prostate gland development [GO:0060767]; negative regulation of cell growth [GO:0030308]; negative regulation of epithelial cell proliferation involved in prostate gland development [GO:0060770]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription elongation by RNA polymerase II [GO:0034243]; transcription elongation by RNA polymerase II [GO:0006368] -Q96EB6 reviewed SIR1_HUMAN NAD-dependent protein deacetylase sirtuin-1 (hSIRT1) (EC 2.3.1.286) (NAD-dependent protein deacylase sirtuin-1) (EC 2.3.1.-) (Regulatory protein SIR2 homolog 1) (SIR2-like protein 1) (hSIR2) [Cleaved into: SirtT1 75 kDa fragment (75SirT1)] SIRT1 SIR2L1 angiogenesis [GO:0001525]; behavioral response to starvation [GO:0042595]; cellular response to glucose starvation [GO:0042149]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to hypoxia [GO:0071456]; cellular response to ionizing radiation [GO:0071479]; cellular response to leukemia inhibitory factor [GO:1990830]; cellular response to starvation [GO:0009267]; cellular response to tumor necrosis factor [GO:0071356]; cholesterol homeostasis [GO:0042632]; chromatin organization [GO:0006325]; circadian regulation of gene expression [GO:0032922]; DNA damage response [GO:0006974]; DNA methylation-dependent heterochromatin formation [GO:0006346]; DNA repair-dependent chromatin remodeling [GO:0140861]; DNA synthesis involved in DNA repair [GO:0000731]; energy homeostasis [GO:0097009]; fatty acid homeostasis [GO:0055089]; heterochromatin formation [GO:0031507]; intracellular glucose homeostasis [GO:0001678]; intracellular triglyceride homeostasis [GO:0035356]; intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:0042771]; leptin-mediated signaling pathway [GO:0033210]; macrophage differentiation [GO:0030225]; maintenance of nucleus location [GO:0051658]; muscle organ development [GO:0007517]; negative regulation of androgen receptor signaling pathway [GO:0060766]; negative regulation of apoptotic process [GO:0043066]; negative regulation of attachment of mitotic spindle microtubules to kinetochore [GO:1902424]; negative regulation of cAMP-dependent protein kinase activity [GO:2000480]; negative regulation of canonical NF-kappaB signal transduction [GO:0043124]; negative regulation of cell cycle [GO:0045786]; negative regulation of cellular response to testosterone stimulus [GO:2000655]; negative regulation of cellular senescence [GO:2000773]; negative regulation of DNA damage response, signal transduction by p53 class mediator [GO:0043518]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of gene expression [GO:0010629]; negative regulation of helicase activity [GO:0051097]; negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:1902166]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of NF-kappaB transcription factor activity [GO:0032088]; negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway [GO:1902176]; negative regulation of peptidyl-lysine acetylation [GO:2000757]; negative regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051898]; negative regulation of phosphorylation [GO:0042326]; negative regulation of prostaglandin biosynthetic process [GO:0031393]; negative regulation of protein acetylation [GO:1901984]; negative regulation of signal transduction by p53 class mediator [GO:1901797]; negative regulation of TOR signaling [GO:0032007]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; negative regulation of triglyceride biosynthetic process [GO:0010868]; ovulation from ovarian follicle [GO:0001542]; peptidyl-lysine acetylation [GO:0018394]; positive regulation of adaptive immune response [GO:0002821]; positive regulation of adipose tissue development [GO:1904179]; positive regulation of angiogenesis [GO:0045766]; positive regulation of apoptotic process [GO:0043065]; positive regulation of blood vessel endothelial cell migration [GO:0043536]; positive regulation of cAMP-dependent protein kinase activity [GO:2000481]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cellular senescence [GO:2000774]; positive regulation of cholesterol efflux [GO:0010875]; positive regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043280]; positive regulation of DNA repair [GO:0045739]; positive regulation of double-strand break repair [GO:2000781]; positive regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway [GO:1902237]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of gluconeogenesis [GO:0045722]; positive regulation of insulin receptor signaling pathway [GO:0046628]; positive regulation of macroautophagy [GO:0016239]; positive regulation of macrophage apoptotic process [GO:2000111]; positive regulation of macrophage cytokine production [GO:0060907]; positive regulation of MHC class II biosynthetic process [GO:0045348]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of smooth muscle cell differentiation [GO:0051152]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; protein deacetylation [GO:0006476]; protein depropionylation [GO:0106230]; protein destabilization [GO:0031648]; protein ubiquitination [GO:0016567]; pyrimidine dimer repair by nucleotide-excision repair [GO:0000720]; rDNA heterochromatin formation [GO:0000183]; regulation of apoptotic process [GO:0042981]; regulation of bile acid biosynthetic process [GO:0070857]; regulation of brown fat cell differentiation [GO:0090335]; regulation of cell population proliferation [GO:0042127]; regulation of cellular response to heat [GO:1900034]; regulation of centrosome duplication [GO:0010824]; regulation of endodeoxyribonuclease activity [GO:0032071]; regulation of glucose metabolic process [GO:0010906]; regulation of lipid storage [GO:0010883]; regulation of mitotic cell cycle [GO:0007346]; regulation of peroxisome proliferator activated receptor signaling pathway [GO:0035358]; regulation of protein serine/threonine kinase activity [GO:0071900]; regulation of smooth muscle cell apoptotic process [GO:0034391]; regulation of transcription by glucose [GO:0046015]; response to hydrogen peroxide [GO:0042542]; response to insulin [GO:0032868]; response to leptin [GO:0044321]; response to oxidative stress [GO:0006979]; single strand break repair [GO:0000012]; spermatogenesis [GO:0007283]; stress-induced premature senescence [GO:0090400]; transforming growth factor beta receptor signaling pathway [GO:0007179]; triglyceride mobilization [GO:0006642]; UV-damage excision repair [GO:0070914]; white fat cell differentiation [GO:0050872] -Q96EK4 reviewed THA11_HUMAN THAP domain-containing protein 11 THAP11 HRIHFB2206 cell population proliferation [GO:0008283]; electron transport chain [GO:0022900]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron differentiation [GO:0030182]; regulation of mitochondrial transcription [GO:1903108]; regulation of transcription by RNA polymerase II [GO:0006357] -Q96EZ8 reviewed MCRS1_HUMAN Microspherule protein 1 (58 kDa microspherule protein) (Cell cycle-regulated factor p78) (INO80 complex subunit J) (MCRS2) MCRS1 INO80Q MSP58 chromatin remodeling [GO:0006338]; DNA recombination [GO:0006310]; DNA repair [GO:0006281]; negative regulation of telomerase activity [GO:0051974]; negative regulation of telomere maintenance via telomere lengthening [GO:1904357]; positive regulation of DNA repair [GO:0045739]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of protein localization to nucleolus [GO:1904751]; positive regulation of telomere maintenance in response to DNA damage [GO:1904507]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein modification process [GO:0036211]; regulation of cell cycle [GO:0051726]; regulation of chromosome organization [GO:0033044]; regulation of DNA repair [GO:0006282]; regulation of DNA replication [GO:0006275]; regulation of DNA strand elongation [GO:0060382]; regulation of embryonic development [GO:0045995]; telomere maintenance [GO:0000723] -Q96G25 reviewed MED8_HUMAN Mediator of RNA polymerase II transcription subunit 8 (Activator-recruited cofactor 32 kDa component) (ARC32) (Mediator complex subunit 8) MED8 positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; protein ubiquitination [GO:0016567]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA polymerase II preinitiation complex assembly [GO:0051123] -Q96HF1 reviewed SFRP2_HUMAN Secreted frizzled-related protein 2 (FRP-2) (sFRP-2) (Secreted apoptosis-related protein 1) (SARP-1) SFRP2 FRP2 SARP1 FKSG12 UNQ361/PRO697 BMP signaling pathway [GO:0030509]; branching involved in blood vessel morphogenesis [GO:0001569]; canonical Wnt signaling pathway [GO:0060070]; cardiac left ventricle morphogenesis [GO:0003214]; cardiac muscle cell apoptotic process [GO:0010659]; cell-cell signaling [GO:0007267]; cellular response to extracellular stimulus [GO:0031668]; cellular response to X-ray [GO:0071481]; chondrocyte development [GO:0002063]; collagen fibril organization [GO:0030199]; convergent extension involved in axis elongation [GO:0060028]; digestive tract morphogenesis [GO:0048546]; embryonic digit morphogenesis [GO:0042733]; hematopoietic stem cell proliferation [GO:0071425]; male gonad development [GO:0008584]; mesodermal cell fate specification [GO:0007501]; negative regulation of BMP signaling pathway [GO:0030514]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cardiac muscle cell apoptotic process [GO:0010667]; negative regulation of cell growth [GO:0030308]; negative regulation of cell migration [GO:0030336]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of dermatome development [GO:0061185]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of epithelial to mesenchymal transition [GO:0010719]; negative regulation of extrinsic apoptotic signaling pathway via death domain receptors [GO:1902042]; negative regulation of gene expression [GO:0010629]; negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage [GO:1902230]; negative regulation of mesodermal cell fate specification [GO:0042662]; negative regulation of peptidyl-tyrosine phosphorylation [GO:0050732]; negative regulation of planar cell polarity pathway involved in axis elongation [GO:2000041]; negative regulation of Wnt signaling pathway [GO:0030178]; non-canonical Wnt signaling pathway [GO:0035567]; outflow tract morphogenesis [GO:0003151]; planar cell polarity pathway involved in axis elongation [GO:0003402]; planar cell polarity pathway involved in neural tube closure [GO:0090179]; positive regulation of angiogenesis [GO:0045766]; positive regulation of apoptotic process [GO:0043065]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of cell adhesion mediated by integrin [GO:0033630]; positive regulation of cell growth [GO:0030307]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of fat cell differentiation [GO:0045600]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-anal tail morphogenesis [GO:0036342]; regulation of midbrain dopaminergic neuron differentiation [GO:1904956]; regulation of neuron projection development [GO:0010975]; regulation of stem cell division [GO:2000035]; response to nutrient [GO:0007584]; response to xenobiotic stimulus [GO:0009410]; sclerotome development [GO:0061056]; stem cell fate specification [GO:0048866]; Wnt signaling pathway involved in somitogenesis [GO:0090244] -Q96HR3 reviewed MED30_HUMAN Mediator of RNA polymerase II transcription subunit 30 (Mediator complex subunit 30) (TRAP/Mediator complex component TRAP25) (Thyroid hormone receptor-associated protein 6) (Thyroid hormone receptor-associated protein complex 25 kDa component) (Trap25) MED30 THRAP6 TRAP25 positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; protein ubiquitination [GO:0016567]; RNA polymerase II preinitiation complex assembly [GO:0051123]; somatic stem cell population maintenance [GO:0035019] -Q96HY6 reviewed DDRGK_HUMAN DDRGK domain-containing protein 1 (Dashurin) (UFM1-binding and PCI domain-containing protein 1) DDRGK1 C20orf116 UFBP1 cartilage development [GO:0051216]; negative regulation of apoptotic process [GO:0043066]; negative regulation of gene expression [GO:0010629]; negative regulation of IRE1-mediated unfolded protein response [GO:1903895]; negative regulation of PERK-mediated unfolded protein response [GO:1903898]; negative regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032435]; positive regulation of cell cycle G1/S phase transition [GO:1902808]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of gene expression [GO:0010628]; positive regulation of I-kappaB phosphorylation [GO:1903721]; positive regulation of metallopeptidase activity [GO:1905050]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of plasma cell differentiation [GO:1900100]; positive regulation of proteasomal protein catabolic process [GO:1901800]; positive regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032436]; positive regulation of protein localization to endoplasmic reticulum [GO:1905552]; positive regulation of reticulophagy [GO:0140501]; positive regulation of RNA polymerase II regulatory region sequence-specific DNA binding [GO:1905636]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein K69-linked ufmylation [GO:1990592]; protein localization to endoplasmic reticulum [GO:0070972]; protein ufmylation [GO:0071569]; regulation of intracellular estrogen receptor signaling pathway [GO:0033146]; regulation of protein stability [GO:0031647]; rescue of stalled ribosome [GO:0072344]; response to endoplasmic reticulum stress [GO:0034976]; reticulophagy [GO:0061709]; ribosome disassembly [GO:0032790] -Q96I24 reviewed FUBP3_HUMAN Far upstream element-binding protein 3 (FUSE-binding protein 3) FUBP3 FBP3 DNA-templated transcription [GO:0006351]; intracellular mRNA localization [GO:0008298]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q96IS3 reviewed RAX2_HUMAN Retina and anterior neural fold homeobox protein 2 (Q50-type retinal homeobox protein) (Retina and anterior neural fold homeobox-like protein 1) RAX2 QRX RAXL1 positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; visual perception [GO:0007601] -Q96IU2 reviewed ZBED3_HUMAN Zinc finger BED domain-containing protein 3 (Axin-interacting protein) ZBED3 actin filament organization [GO:0007015]; endoplasmic reticulum localization [GO:0051643]; establishment of spindle localization [GO:0051293]; mitochondrion localization [GO:0051646]; negative regulation of protein phosphorylation [GO:0001933]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of embryonic development [GO:0040019]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein stabilization [GO:0050821]; regulation of transcription by RNA polymerase II [GO:0006357]; response to glucose [GO:0009749]; response to insulin [GO:0032868]; Wnt signaling pathway [GO:0016055] -Q96IU4 reviewed ABHEB_HUMAN Putative protein-lysine deacylase ABHD14B (EC 2.3.1.-) (Alpha/beta hydrolase domain-containing protein 14B) (Abhydrolase domain-containing protein 14B) (CCG1-interacting factor B) ABHD14B CIB 3'-phosphoadenosine 5'-phosphosulfate metabolic process [GO:0050427]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q96JB5 reviewed CK5P3_HUMAN CDK5 regulatory subunit-associated protein 3 (CDK5 activator-binding protein C53) (LXXLL/leucine-zipper-containing ARF-binding protein) (Protein HSF-27) CDK5RAP3 IC53 LZAP MSTP016 OK/SW-cl.114 PP1553 apoptotic nuclear changes [GO:0030262]; brain development [GO:0007420]; cell population proliferation [GO:0008283]; definitive erythrocyte differentiation [GO:0060318]; endoplasmic reticulum unfolded protein response [GO:0030968]; liver development [GO:0001889]; mitotic G2 DNA damage checkpoint signaling [GO:0007095]; mitotic G2/M transition checkpoint [GO:0044818]; negative regulation of MAP kinase activity [GO:0043407]; negative regulation of NF-kappaB transcription factor activity [GO:0032088]; negative regulation of protein catabolic process [GO:0042177]; negative regulation of protein kinase activity by regulation of protein phosphorylation [GO:0044387]; negative regulation of protein phosphorylation [GO:0001933]; negative regulation of protein serine/threonine kinase activity [GO:0071901]; positive regulation of protein localization to nucleus [GO:1900182]; positive regulation of protein ubiquitination [GO:0031398]; positive regulation of reticulophagy [GO:0140501]; positive regulation of signal transduction by p53 class mediator [GO:1901798]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein ufmylation [GO:0071569]; regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0000079]; regulation of mitotic cell cycle [GO:0007346]; regulation of neuron differentiation [GO:0045664]; regulation of phosphatase activity [GO:0010921]; rescue of stalled ribosome [GO:0072344]; response to endoplasmic reticulum stress [GO:0034976]; ribosome disassembly [GO:0032790] -Q96JK9 reviewed MAML3_HUMAN Mastermind-like protein 3 (Mam-3) MAML3 KIAA1816 Notch signaling pathway [GO:0007219]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription of Notch receptor target [GO:0007221] -Q96JM2 reviewed ZN462_HUMAN Zinc finger protein 462 (Zinc finger PBX1-interacting protein) (ZFPIP) ZNF462 KIAA1803 chromatin organization [GO:0006325]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q96K58 reviewed ZN668_HUMAN Zinc finger protein 668 ZNF668 DNA repair [GO:0006281]; regulation of transcription by RNA polymerase II [GO:0006357] -Q96K83 reviewed ZN521_HUMAN Zinc finger protein 521 (Early hematopoietic zinc finger protein) (LYST-interacting protein 3) ZNF521 EHZF LIP3 neuron fate commitment [GO:0048663]; regulation of transcription by RNA polymerase II [GO:0006357] -Q96LB3 reviewed IFT74_HUMAN Intraflagellar transport protein 74 homolog (Capillary morphogenesis gene 1 protein) (CMG-1) (Coiled-coil domain-containing protein 2) IFT74 CCDC2 CMG1 cilium assembly [GO:0060271]; determination of left/right symmetry [GO:0007368]; heart development [GO:0007507]; intraciliary anterograde transport [GO:0035720]; intraciliary transport involved in cilium assembly [GO:0035735]; keratinocyte development [GO:0003334]; keratinocyte proliferation [GO:0043616]; negative regulation of keratinocyte proliferation [GO:0010839]; non-motile cilium assembly [GO:1905515]; Notch signaling pathway [GO:0007219]; positive regulation of cell adhesion mediated by integrin [GO:0033630]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q96LX8 reviewed ZN597_HUMAN Zinc finger protein 597 ZNF597 regulation of transcription by RNA polymerase II [GO:0006357] -Q96MX3 reviewed ZNF48_HUMAN Zinc finger protein 48 (Zinc finger protein 553) ZNF48 ZNF553 regulation of transcription by RNA polymerase II [GO:0006357] -Q96N64 reviewed PWP2A_HUMAN PWWP domain-containing protein 2A PWWP2A KIAA1935 MST101 chromatin remodeling [GO:0006338]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; regulation of transcriptional start site selection at RNA polymerase II promoter [GO:0001178] -Q96NM4 reviewed TOX2_HUMAN TOX high mobility group box family member 2 (Granulosa cell HMG box protein 1) (GCX-1) TOX2 C20orf100 GCX1 positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q96NZ1 reviewed FOXN4_HUMAN Forkhead box protein N4 FOXN4 amacrine cell differentiation [GO:0035881]; atrioventricular canal development [GO:0036302]; heart looping [GO:0001947]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of heart contraction [GO:0008016]; retina layer formation [GO:0010842]; ventral spinal cord interneuron differentiation [GO:0021514]; ventral spinal cord interneuron fate commitment [GO:0060579] -Q96P20 reviewed NLRP3_HUMAN NACHT, LRR and PYD domains-containing protein 3 (EC 3.6.4.-) (Angiotensin/vasopressin receptor AII/AVP-like) (Caterpiller protein 1.1) (CLR1.1) (Cold-induced autoinflammatory syndrome 1 protein) (Cryopyrin) (PYRIN-containing APAF1-like protein 1) NLRP3 C1orf7 CIAS1 NALP3 PYPAF1 apoptotic process [GO:0006915]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to virus [GO:0098586]; defense response [GO:0006952]; detection of biotic stimulus [GO:0009595]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; negative regulation of acute inflammatory response [GO:0002674]; negative regulation of inflammatory response [GO:0050728]; negative regulation of interleukin-1 beta production [GO:0032691]; negative regulation of non-canonical NF-kappaB signal transduction [GO:1901223]; NLRP3 inflammasome complex assembly [GO:0044546]; osmosensory signaling pathway [GO:0007231]; pattern recognition receptor signaling pathway [GO:0002221]; positive regulation of inflammatory response [GO:0050729]; positive regulation of interleukin-1 beta production [GO:0032731]; positive regulation of interleukin-4 production [GO:0032753]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of T-helper 2 cell cytokine production [GO:2000553]; positive regulation of T-helper 2 cell differentiation [GO:0045630]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type 2 immune response [GO:0002830]; protein homooligomerization [GO:0051260]; protein maturation [GO:0051604]; pyroptosis [GO:0070269]; signal transduction [GO:0007165] -Q96PD4 reviewed IL17F_HUMAN Interleukin-17F (IL-17F) (Cytokine ML-1) IL17F adaptive immune response [GO:0002250]; cartilage development [GO:0051216]; defense response to Gram-negative bacterium [GO:0050829]; defense response to Gram-positive bacterium [GO:0050830]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; interleukin-17-mediated signaling pathway [GO:0097400]; negative regulation of angiogenesis [GO:0016525]; positive regulation of antimicrobial peptide production [GO:0002225]; positive regulation of chemokine (C-X-C motif) ligand 1 production [GO:2000340]; positive regulation of cytokine production [GO:0001819]; positive regulation of cytokine production involved in inflammatory response [GO:1900017]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of lymphotoxin A production [GO:0032761]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of granulocyte macrophage colony-stimulating factor production [GO:0032645]; regulation of interleukin-2 production [GO:0032663]; regulation of interleukin-6 production [GO:0032675]; regulation of interleukin-8 production [GO:0032677]; regulation of transforming growth factor beta receptor signaling pathway [GO:0017015] -Q96PK6 reviewed RBM14_HUMAN RNA-binding protein 14 (Paraspeckle protein 2) (PSP2) (RNA-binding motif protein 14) (RRM-containing coactivator activator/modulator) (Synaptotagmin-interacting protein) (SYT-interacting protein) RBM14 SIP activation of innate immune response [GO:0002218]; apoptotic process [GO:0006915]; centriole assembly [GO:0098534]; gastrulation [GO:0007369]; innate immune response [GO:0045087]; mRNA splicing, via spliceosome [GO:0000398]; negative regulation of centriole replication [GO:0046600]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of response to DNA integrity checkpoint signaling [GO:1902151]; response to hormone [GO:0009725]; transcription initiation-coupled chromatin remodeling [GO:0045815] -Q96PN7 reviewed TREF1_HUMAN Transcriptional-regulating factor 1 (Breast cancer anti-estrogen resistance 2) (Transcriptional-regulating protein 132) (Zinc finger protein rapa) (Zinc finger transcription factor TReP-132) TRERF1 BCAR2 RAPA TREP132 cellular response to progesterone stimulus [GO:0071393]; negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; progesterone receptor signaling pathway [GO:0050847]; regulation of transcription by RNA polymerase II [GO:0006357] -Q96QR8 reviewed PURB_HUMAN Transcriptional regulator protein Pur-beta (Purine-rich element-binding protein B) PURB negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of myeloid cell differentiation [GO:0045637]; regulation of transcription by RNA polymerase II [GO:0006357] -Q96QS3 reviewed ARX_HUMAN Homeobox protein ARX (Aristaless-related homeobox) ARX axon guidance [GO:0007411]; cell proliferation in forebrain [GO:0021846]; cerebral cortex GABAergic interneuron migration [GO:0021853]; cerebral cortex tangential migration [GO:0021800]; embryonic olfactory bulb interneuron precursor migration [GO:0021831]; epithelial cell fate commitment [GO:0072148]; globus pallidus development [GO:0021759]; lipid digestion [GO:0044241]; negative regulation of transcription by RNA polymerase II [GO:0000122]; organ growth [GO:0035265]; positive regulation of gene expression [GO:0010628]; positive regulation of organ growth [GO:0046622]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of epithelial cell proliferation [GO:0050678]; regulation of transcription by RNA polymerase II [GO:0006357] -Q96RE9 reviewed ZN300_HUMAN Zinc finger protein 300 ZNF300 positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q96RI1 reviewed NR1H4_HUMAN Bile acid receptor (Farnesoid X-activated receptor) (Farnesol receptor HRR-1) (Nuclear receptor subfamily 1 group H member 4) (Retinoid X receptor-interacting protein 14) (RXR-interacting protein 14) NR1H4 BAR FXR HRR1 RIP14 bile acid metabolic process [GO:0008206]; bile acid signaling pathway [GO:0038183]; cell differentiation [GO:0030154]; cell-cell junction assembly [GO:0007043]; cellular response to bile acid [GO:1903413]; cellular response to fatty acid [GO:0071398]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to organonitrogen compound [GO:0071417]; cholesterol homeostasis [GO:0042632]; defense response to bacterium [GO:0042742]; fatty acid homeostasis [GO:0055089]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; intracellular bile acid receptor signaling pathway [GO:0038185]; intracellular glucose homeostasis [GO:0001678]; intracellular receptor signaling pathway [GO:0030522]; intracellular triglyceride homeostasis [GO:0035356]; negative regulation of apoptotic process [GO:0043066]; negative regulation of canonical NF-kappaB signal transduction [GO:0043124]; negative regulation of inflammatory response [GO:0050728]; negative regulation of interleukin-1 production [GO:0032692]; negative regulation of interleukin-2 production [GO:0032703]; negative regulation of interleukin-6 production [GO:0032715]; negative regulation of monocyte chemotactic protein-1 production [GO:0071638]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of tumor necrosis factor production [GO:0032720]; negative regulation of tumor necrosis factor-mediated signaling pathway [GO:0010804]; negative regulation of type II interferon production [GO:0032689]; negative regulation of very-low-density lipoprotein particle remodeling [GO:0010903]; nitrogen catabolite activation of transcription from RNA polymerase II promoter [GO:0001080]; Notch signaling pathway [GO:0007219]; positive regulation of adipose tissue development [GO:1904179]; positive regulation of ammonia assimilation cycle [GO:2001250]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of glutamate metabolic process [GO:2000213]; positive regulation of insulin receptor signaling pathway [GO:0046628]; positive regulation of insulin secretion involved in cellular response to glucose stimulus [GO:0035774]; positive regulation of interleukin-17 production [GO:0032740]; positive regulation of phosphatidic acid biosynthetic process [GO:1905695]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of bile acid biosynthetic process [GO:0070857]; regulation of cholesterol metabolic process [GO:0090181]; regulation of DNA-templated transcription [GO:0006355]; regulation of insulin secretion involved in cellular response to glucose stimulus [GO:0061178]; regulation of low-density lipoprotein particle clearance [GO:0010988]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of urea metabolic process [GO:0034255]; toll-like receptor 9 signaling pathway [GO:0034162]; transcription by RNA polymerase II [GO:0006366] -Q96RN5 reviewed MED15_HUMAN Mediator of RNA polymerase II transcription subunit 15 (Activator-recruited cofactor 105 kDa component) (ARC105) (CTG repeat protein 7a) (Mediator complex subunit 15) (Positive cofactor 2 glutamine/Q-rich-associated protein) (PC2 glutamine/Q-rich-associated protein) (TPA-inducible gene 1 protein) (TIG-1) (Trinucleotide repeat-containing gene 7 protein) MED15 ARC105 CTG7A PCQAP TIG1 TNRC7 positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; RNA polymerase II preinitiation complex assembly [GO:0051123]; somatic stem cell population maintenance [GO:0035019] -Q96RQ9 reviewed OXLA_HUMAN L-amino-acid oxidase (LAAO) (LAO) (EC 1.4.3.2) (EC 1.4.3.25) (Interleukin-4-induced protein 1) (IL4-induced protein 1) (hIL4I1) (Protein Fig-1) (hFIG1) IL4I1 FIG1 UNQ636/PRO1265 adaptive immune response [GO:0002250]; amino acid catabolic process [GO:0009063]; L-phenylalanine catabolic process [GO:0006559]; negative regulation of T cell activation [GO:0050868]; negative regulation of T cell mediated immune response to tumor cell [GO:0002841]; negative regulation of T cell proliferation [GO:0042130]; positive regulation of regulatory T cell differentiation [GO:0045591]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of adaptive immune response [GO:0002819]; regulation of B cell differentiation [GO:0045577]; tryptophan catabolic process [GO:0006569]; tryptophan catabolic process to indole-3-acetate [GO:0019440]; tyrosine catabolic process [GO:0006572] -Q96S42 reviewed NODAL_HUMAN Nodal homolog NODAL axial mesodermal cell fate specification [GO:0048327]; brain development [GO:0007420]; cell migration involved in gastrulation [GO:0042074]; cell population proliferation [GO:0008283]; determination of left/right asymmetry in lateral mesoderm [GO:0003140]; digestive tract morphogenesis [GO:0048546]; embryonic cranial skeleton morphogenesis [GO:0048701]; embryonic pattern specification [GO:0009880]; embryonic placenta development [GO:0001892]; embryonic process involved in female pregnancy [GO:0060136]; endodermal cell differentiation [GO:0035987]; epiblast cell-extraembryonic ectoderm cell signaling involved in anterior/posterior axis specification [GO:0060802]; floor plate morphogenesis [GO:0033505]; formation of anatomical boundary [GO:0048859]; germ cell development [GO:0007281]; heart looping [GO:0001947]; inhibition of neuroepithelial cell differentiation [GO:0002085]; left lung morphogenesis [GO:0060460]; liver development [GO:0001889]; maternal placenta development [GO:0001893]; maternal process involved in parturition [GO:0060137]; mesendoderm development [GO:0048382]; negative regulation of androgen receptor signaling pathway [GO:0060766]; negative regulation of cell development [GO:0010721]; negative regulation of chorionic trophoblast cell proliferation [GO:1901383]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of trophoblast cell migration [GO:1901164]; neural fold formation [GO:0001842]; nodal signaling pathway [GO:0038092]; placenta development [GO:0001890]; polarity specification of proximal/distal axis [GO:0010085]; positive regulation of activin receptor signaling pathway [GO:0032927]; positive regulation of angiogenesis [GO:0045766]; positive regulation of cell-cell adhesion [GO:0022409]; positive regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043280]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular endothelial growth factor production [GO:0010575]; primitive streak formation [GO:0090009]; regulation of gastrulation [GO:0010470]; regulation of stem cell population maintenance [GO:2000036]; somatic stem cell population maintenance [GO:0035019]; transforming growth factor beta receptor signaling pathway [GO:0007179]; trophectodermal cellular morphogenesis [GO:0001831]; vasculature development [GO:0001944] -Q96S65 reviewed CSRN1_HUMAN Cysteine/serine-rich nuclear protein 1 (CSRNP-1) (Axin-1 up-regulated gene 1 protein) (Protein URAX1) (TGF-beta-induced apoptosis protein 3) (TAIP-3) CSRNP1 AXUD1 TAIP3 apoptotic process [GO:0006915]; face morphogenesis [GO:0060325]; platelet-derived growth factor receptor signaling pathway [GO:0048008]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-embryonic development [GO:0009791]; regulation of transcription by RNA polymerase II [GO:0006357]; roof of mouth development [GO:0060021]; skeletal system morphogenesis [GO:0048705] -Q96SQ7 reviewed ATOH8_HUMAN Transcription factor ATOH8 (Class A basic helix-loop-helix protein 21) (bHLHa21) (Helix-loop-helix protein hATH-6) (hATH6) (Protein atonal homolog 8) ATOH8 ATH6 BHLHA21 anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; formation of primary germ layer [GO:0001704]; myoblast proliferation [GO:0051450]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of endothelial cell proliferation [GO:0001937]; negative regulation of gene expression [GO:0010629]; nervous system development [GO:0007399]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of endothelial cell differentiation [GO:0045603]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of transcription by RNA polymerase II [GO:0045944]; tube formation [GO:0035148] -Q96T37 reviewed RBM15_HUMAN RNA-binding protein 15 (One-twenty two protein 1) (RNA-binding motif protein 15) RBM15 OTT OTT1 branching involved in blood vessel morphogenesis [GO:0001569]; dosage compensation by inactivation of X chromosome [GO:0009048]; negative regulation of myeloid cell differentiation [GO:0045638]; placenta blood vessel development [GO:0060674]; positive regulation of transcription of Notch receptor target [GO:0007221]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; regulation of megakaryocyte differentiation [GO:0045652]; RNA methylation [GO:0001510]; spleen development [GO:0048536]; thrombopoietin-mediated signaling pathway [GO:0038163]; ventricular septum morphogenesis [GO:0060412] -Q96T88 reviewed UHRF1_HUMAN E3 ubiquitin-protein ligase UHRF1 (EC 2.3.2.27) (Inverted CCAAT box-binding protein of 90 kDa) (Nuclear protein 95) (Nuclear zinc finger protein Np95) (HuNp95) (hNp95) (RING finger protein 106) (RING-type E3 ubiquitin transferase UHRF1) (Transcription factor ICBP90) (Ubiquitin-like PHD and RING finger domain-containing protein 1) (hUHRF1) (Ubiquitin-like-containing PHD and RING finger domains protein 1) UHRF1 ICBP90 NP95 RNF106 DNA damage response [GO:0006974]; double-strand break repair via homologous recombination [GO:0000724]; epigenetic regulation of gene expression [GO:0040029]; heterochromatin formation [GO:0031507]; homologous recombination [GO:0035825]; mitotic spindle assembly [GO:0090307]; negative regulation of gene expression via chromosomal CpG island methylation [GO:0044027]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of DNA topoisomerase (ATP-hydrolyzing) activity [GO:2000373]; positive regulation of protein metabolic process [GO:0051247]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein ubiquitination [GO:0016567]; regulation of epithelial cell proliferation [GO:0050678]; ubiquitin-dependent protein catabolic process [GO:0006511] -Q99081 reviewed HTF4_HUMAN Transcription factor 12 (TCF-12) (Class B basic helix-loop-helix protein 20) (bHLHb20) (DNA-binding protein HTF4) (E-box-binding protein) (Transcription factor HTF-4) TCF12 BHLHB20 HEB HTF4 cell differentiation [GO:0030154]; gene expression [GO:0010467]; immune response [GO:0006955]; muscle organ development [GO:0007517]; nervous system development [GO:0007399]; positive regulation of gene expression [GO:0010628]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; response to gonadotropin-releasing hormone [GO:0097210] -Q99453 reviewed PHX2B_HUMAN Paired mesoderm homeobox protein 2B (Neuroblastoma Phox) (NBPhox) (PHOX2B homeodomain protein) (Paired-like homeobox 2B) PHOX2B PMX2B autonomic nervous system development [GO:0048483]; brainstem development [GO:0003360]; cell differentiation in hindbrain [GO:0021533]; cellular response to BMP stimulus [GO:0071773]; cellular response to carbon dioxide [GO:0071244]; dopaminergic neuron differentiation [GO:0071542]; efferent axon development in a lateral line nerve [GO:0048894]; enteric nervous system development [GO:0048484]; glial cell differentiation [GO:0010001]; hindbrain tangential cell migration [GO:0021934]; inner ear development [GO:0048839]; medullary reticular formation development [GO:0021723]; membrane depolarization [GO:0051899]; motor neuron migration [GO:0097475]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of type B pancreatic cell proliferation [GO:1904691]; neural crest cell migration involved in autonomic nervous system development [GO:1901166]; neuron migration [GO:0001764]; noradrenergic neuron development [GO:0003358]; noradrenergic neuron differentiation [GO:0003357]; parasympathetic nervous system development [GO:0048486]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of gene expression [GO:0010468]; regulation of respiratory gaseous exchange by nervous system process [GO:0002087]; regulation of transcription by RNA polymerase II [GO:0006357]; respiratory system development [GO:0060541]; response to activity [GO:0014823]; retrotrapezoid nucleus neuron differentiation [GO:0061452]; skeletal muscle cell differentiation [GO:0035914]; sympathetic ganglion development [GO:0061549]; sympathetic nervous system development [GO:0048485]; type B pancreatic cell proliferation [GO:0044342] -Q99459 reviewed CDC5L_HUMAN Cell division cycle 5-like protein (Cdc5-like protein) (Pombe cdc5-related protein) CDC5L KIAA0432 PCDC5RP DNA damage checkpoint signaling [GO:0000077]; DNA repair [GO:0006281]; mRNA splicing, via spliceosome [GO:0000398]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q99466 reviewed NOTC4_HUMAN Neurogenic locus notch homolog protein 4 (Notch 4) (hNotch4) [Cleaved into: Notch 4 extracellular truncation; Notch 4 intracellular domain] NOTCH4 INT3 branching involved in blood vessel morphogenesis [GO:0001569]; cell differentiation [GO:0030154]; cell fate determination [GO:0001709]; epithelial to mesenchymal transition [GO:0001837]; hemopoiesis [GO:0030097]; mammary gland development [GO:0030879]; morphogenesis of a branching structure [GO:0001763]; negative regulation of cell adhesion molecule production [GO:0060354]; negative regulation of cell differentiation [GO:0045596]; negative regulation of cell-cell adhesion mediated by cadherin [GO:2000048]; negative regulation of endothelial cell differentiation [GO:0045602]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of smooth muscle cell differentiation [GO:0051152]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription of Notch receptor target [GO:0007221]; vasculature development [GO:0001944]; wound healing [GO:0042060] -Q99497 reviewed PARK7_HUMAN Parkinson disease protein 7 (Maillard deglycase) (Oncogene DJ1) (Parkinsonism-associated deglycase) (Protein DJ-1) (DJ-1) (Protein/nucleic acid deglycase DJ-1) (EC 3.1.2.-, EC 3.5.1.-, EC 3.5.1.124) PARK7 activation of protein kinase B activity [GO:0032148]; adult locomotory behavior [GO:0008344]; autophagy [GO:0006914]; cellular detoxification of aldehyde [GO:0110095]; cellular detoxification of methylglyoxal [GO:0140041]; cellular response to glyoxal [GO:0036471]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to oxidative stress [GO:0034599]; detection of oxidative stress [GO:0070994]; detoxification of copper ion [GO:0010273]; detoxification of hydrogen peroxide [GO:0061691]; detoxification of mercury ion [GO:0050787]; DNA repair [GO:0006281]; dopamine uptake involved in synaptic transmission [GO:0051583]; glucose homeostasis [GO:0042593]; glutathione deglycation [GO:0036531]; glycolate biosynthetic process [GO:0046295]; glyoxal metabolic process [GO:1903189]; guanine deglycation [GO:0106044]; guanine deglycation, glyoxal removal [GO:0106046]; guanine deglycation, methylglyoxal removal [GO:0106045]; hydrogen peroxide metabolic process [GO:0042743]; inflammatory response [GO:0006954]; insulin secretion [GO:0030073]; lactate biosynthetic process [GO:0019249]; membrane depolarization [GO:0051899]; membrane hyperpolarization [GO:0060081]; methylglyoxal catabolic process to lactate [GO:0061727]; methylglyoxal metabolic process [GO:0009438]; mitochondrion organization [GO:0007005]; negative regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway [GO:2001268]; negative regulation of death-inducing signaling complex assembly [GO:1903073]; negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway [GO:1902236]; negative regulation of extrinsic apoptotic signaling pathway [GO:2001237]; negative regulation of gene expression [GO:0010629]; negative regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway [GO:1903384]; negative regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide [GO:1903751]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway [GO:1905259]; negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway [GO:1902176]; negative regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway [GO:1903377]; negative regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032435]; negative regulation of protein acetylation [GO:1901984]; negative regulation of protein binding [GO:0032091]; negative regulation of protein export from nucleus [GO:0046826]; negative regulation of protein K48-linked deubiquitination [GO:1903094]; negative regulation of protein kinase activity [GO:0006469]; negative regulation of protein phosphorylation [GO:0001933]; negative regulation of protein sumoylation [GO:0033234]; negative regulation of protein ubiquitination [GO:0031397]; negative regulation of reactive oxygen species biosynthetic process [GO:1903427]; negative regulation of TRAIL-activated apoptotic signaling pathway [GO:1903122]; negative regulation of ubiquitin-protein transferase activity [GO:0051444]; negative regulation of ubiquitin-specific protease activity [GO:2000157]; peptidyl-arginine deglycation [GO:0036527]; peptidyl-cysteine deglycation [GO:0036526]; peptidyl-lysine deglycation [GO:0036528]; positive regulation of acute inflammatory response to antigenic stimulus [GO:0002866]; positive regulation of androgen receptor activity [GO:2000825]; positive regulation of autophagy of mitochondrion [GO:1903599]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of dopamine biosynthetic process [GO:1903181]; positive regulation of gene expression [GO:0010628]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of L-dopa biosynthetic process [GO:1903197]; positive regulation of L-dopa decarboxylase activity [GO:1903200]; positive regulation of mitochondrial electron transport, NADH to ubiquinone [GO:1902958]; positive regulation of NAD(P)H oxidase activity [GO:0033864]; positive regulation of oxidative stress-induced intrinsic apoptotic signaling pathway [GO:1902177]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of protein localization to nucleus [GO:1900182]; positive regulation of protein-containing complex assembly [GO:0031334]; positive regulation of pyrroline-5-carboxylate reductase activity [GO:1903168]; positive regulation of reactive oxygen species biosynthetic process [GO:1903428]; positive regulation of reactive oxygen species metabolic process [GO:2000379]; positive regulation of superoxide dismutase activity [GO:1901671]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription regulatory region DNA binding [GO:2000679]; positive regulation of tyrosine 3-monooxygenase activity [GO:1903178]; protein deglycation, glyoxal removal [GO:0036529]; protein deglycation, methylglyoxal removal [GO:0036530]; protein deglycosylation [GO:0006517]; protein stabilization [GO:0050821]; proteolysis [GO:0006508]; Ras protein signal transduction [GO:0007265]; regulation of androgen receptor signaling pathway [GO:0060765]; regulation of inflammatory response [GO:0050727]; regulation of mitochondrial membrane potential [GO:0051881]; regulation of neuron apoptotic process [GO:0043523]; regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway [GO:1903376]; regulation of supramolecular fiber organization [GO:1902903]; response to oxidative stress [GO:0006979]; single fertilization [GO:0007338] -Q99502 reviewed EYA1_HUMAN Eyes absent homolog 1 (EC 3.1.3.16) (EC 3.1.3.48) EYA1 anatomical structure morphogenesis [GO:0009653]; aorta morphogenesis [GO:0035909]; branching involved in ureteric bud morphogenesis [GO:0001658]; cell differentiation [GO:0030154]; cochlea morphogenesis [GO:0090103]; double-strand break repair [GO:0006302]; embryonic skeletal system morphogenesis [GO:0048704]; epithelial cell proliferation [GO:0050673]; extrinsic apoptotic signaling pathway in absence of ligand [GO:0097192]; mesodermal cell fate specification [GO:0007501]; metanephros development [GO:0001656]; middle ear morphogenesis [GO:0042474]; negative regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001240]; neuron fate specification [GO:0048665]; otic vesicle morphogenesis [GO:0071600]; outer ear morphogenesis [GO:0042473]; outflow tract morphogenesis [GO:0003151]; pattern specification process [GO:0007389]; pharyngeal system development [GO:0060037]; positive regulation of DNA repair [GO:0045739]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of secondary heart field cardioblast proliferation [GO:0072513]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein sumoylation [GO:0016925]; regulation of neuron differentiation [GO:0045664]; response to ionizing radiation [GO:0010212]; semicircular canal morphogenesis [GO:0048752]; sensory perception of sound [GO:0007605]; striated muscle tissue development [GO:0014706] -Q99527 reviewed GPER1_HUMAN G-protein coupled estrogen receptor 1 (Chemoattractant receptor-like 2) (Flow-induced endothelial G-protein coupled receptor 1) (FEG-1) (G protein-coupled estrogen receptor 1) (G-protein coupled receptor 30) (GPCR-Br) (IL8-related receptor DRY12) (Lymphocyte-derived G-protein coupled receptor) (LYGPR) (Membrane estrogen receptor) (mER) GPER1 CEPR CMKRL2 DRY12 GPER GPR30 adenylate cyclase-activating G protein-coupled receptor signaling pathway [GO:0007189]; apoptotic chromosome condensation [GO:0030263]; cell differentiation [GO:0030154]; cellular response to estradiol stimulus [GO:0071392]; cellular response to glucose stimulus [GO:0071333]; cellular response to mineralocorticoid stimulus [GO:0071389]; cellular response to peptide hormone stimulus [GO:0071375]; cellular response to tumor necrosis factor [GO:0071356]; G protein-coupled receptor signaling pathway [GO:0007186]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; intracellular steroid hormone receptor signaling pathway [GO:0030518]; negative regulation of cell cycle process [GO:0010948]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of ERK1 and ERK2 cascade [GO:0070373]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of gene expression [GO:0010629]; negative regulation of inflammatory response [GO:0050728]; negative regulation of leukocyte activation [GO:0002695]; negative regulation of lipid biosynthetic process [GO:0051055]; negative regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051898]; negative regulation of vascular associated smooth muscle cell proliferation [GO:1904706]; nervous system development [GO:0007399]; neuronal action potential [GO:0019228]; nuclear fragmentation involved in apoptotic nuclear change [GO:0030264]; positive regulation of apoptotic process [GO:0043065]; positive regulation of cardiac vascular smooth muscle cell differentiation [GO:2000724]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043280]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of endothelial cell apoptotic process [GO:2000353]; positive regulation of epidermal growth factor receptor signaling pathway [GO:0045742]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of extrinsic apoptotic signaling pathway [GO:2001238]; positive regulation of G protein-coupled receptor signaling pathway [GO:0045745]; positive regulation of gene expression [GO:0010628]; positive regulation of inositol trisphosphate biosynthetic process [GO:0032962]; positive regulation of insulin secretion [GO:0032024]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of neurogenesis [GO:0050769]; positive regulation of neurotransmitter secretion [GO:0001956]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of protein localization to plasma membrane [GO:1903078]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of release of cytochrome c from mitochondria [GO:0090200]; positive regulation of release of sequestered calcium ion into cytosol [GO:0051281]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of uterine smooth muscle contraction [GO:0070474]; regulation of cell cycle [GO:0051726]; regulation of cytosolic calcium ion concentration [GO:0051480]; steroid hormone mediated signaling pathway [GO:0043401]; vasodilation [GO:0042311] -Q99578 reviewed RIT2_HUMAN GTP-binding protein Rit2 (EC 3.6.5.2) (Ras-like protein expressed in neurons) (Ras-like without CAAX protein 2) RIT2 RIN ROC2 adenylate cyclase-activating G protein-coupled receptor signaling pathway [GO:0007189]; chemical synaptic transmission [GO:0007268]; intracellular signal transduction [GO:0035556]; maintenance of protein location in cell [GO:0032507]; negative regulation of neuron projection development [GO:0010977]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of neuron projection development [GO:0010976]; positive regulation of transcription by RNA polymerase II [GO:0045944]; Ras protein signal transduction [GO:0007265]; regulation of calcium-mediated signaling [GO:0050848]; regulation of Cdc42 protein signal transduction [GO:0032489]; regulation of endocytosis [GO:0030100]; regulation of protein phosphorylation [GO:0001932]; small GTPase-mediated signal transduction [GO:0007264] -Q99581 reviewed FEV_HUMAN Protein FEV (Fifth Ewing variant protein) (PC12 ETS domain-containing transcription factor 1) (PC12 ETS factor 1) (Pet-1) FEV PET1 maternal behavior [GO:0042711]; neuron fate specification [GO:0048665]; neuron maturation [GO:0042551]; positive regulation of gene expression [GO:0010628]; regulation of transcription by RNA polymerase II [GO:0006357] -Q99592 reviewed ZBT18_HUMAN Zinc finger and BTB domain-containing protein 18 (58 kDa repressor protein) (Transcriptional repressor RP58) (Translin-associated zinc finger protein 1) (TAZ-1) (Zinc finger protein 238) (Zinc finger protein C2H2-171) ZBTB18 RP58 TAZ1 ZNF238 negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; skeletal muscle tissue development [GO:0007519] -Q99593 reviewed TBX5_HUMAN T-box transcription factor TBX5 (T-box protein 5) TBX5 atrial septum morphogenesis [GO:0060413]; atrioventricular bundle cell differentiation [GO:0003167]; atrioventricular node cell development [GO:0060928]; atrioventricular node cell fate commitment [GO:0060929]; atrioventricular valve morphogenesis [GO:0003181]; bundle of His cell to Purkinje myocyte communication by electrical coupling [GO:0086054]; bundle of His development [GO:0003166]; cardiac left ventricle formation [GO:0003218]; cardiac muscle cell proliferation [GO:0060038]; cell fate specification [GO:0001708]; cell migration involved in coronary vasculogenesis [GO:0060980]; cell-cell signaling [GO:0007267]; cell-cell signaling involved in cardiac conduction [GO:0086019]; embryonic forelimb morphogenesis [GO:0035115]; embryonic limb morphogenesis [GO:0030326]; endocardial cushion development [GO:0003197]; forelimb morphogenesis [GO:0035136]; heart development [GO:0007507]; lung development [GO:0030324]; morphogenesis of an epithelium [GO:0002009]; negative regulation of cardiac muscle cell proliferation [GO:0060044]; negative regulation of cell migration [GO:0030336]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of epithelial to mesenchymal transition [GO:0010719]; pattern specification process [GO:0007389]; pericardium development [GO:0060039]; positive regulation of cardiac conduction [GO:1903781]; positive regulation of cardiac muscle cell proliferation [GO:0060045]; positive regulation of cardioblast differentiation [GO:0051891]; positive regulation of cell communication by electrical coupling involved in cardiac conduction [GO:1901846]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gap junction assembly [GO:1903598]; positive regulation of secondary heart field cardioblast proliferation [GO:0072513]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of atrial cardiac muscle cell membrane depolarization [GO:0060371]; regulation of transcription by RNA polymerase II [GO:0006357]; sinoatrial node development [GO:0003163]; transcription by RNA polymerase II [GO:0006366]; ventricular septum development [GO:0003281] -Q99594 reviewed TEAD3_HUMAN Transcriptional enhancer factor TEF-5 (DTEF-1) (TEA domain family member 3) (TEAD-3) TEAD3 TEAD5 TEF5 asymmetric neuroblast division [GO:0055059]; embryonic organ development [GO:0048568]; female pregnancy [GO:0007565]; hippo signaling [GO:0035329]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q99607 reviewed ELF4_HUMAN ETS-related transcription factor Elf-4 (E74-like factor 4) (Myeloid Elf-1-like factor) ELF4 ELFR MEF natural killer cell proliferation [GO:0001787]; negative regulation of inflammatory response [GO:0050728]; negative regulation of interleukin-1 beta production [GO:0032691]; negative regulation of interleukin-6 production [GO:0032715]; negative regulation of tumor necrosis factor production [GO:0032720]; NK T cell proliferation [GO:0001866]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q99608 reviewed NECD_HUMAN Necdin NDN axon extension [GO:0048675]; axonal fasciculation [GO:0007413]; central nervous system development [GO:0007417]; genomic imprinting [GO:0071514]; glial cell migration [GO:0008347]; multicellular organismal-level homeostasis [GO:0048871]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron migration [GO:0001764]; neurotrophin TRK receptor signaling pathway [GO:0048011]; positive regulation of protein deacetylation [GO:0090312]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-embryonic development [GO:0009791]; respiratory system process [GO:0003016]; sensory perception of pain [GO:0019233] -Q99612 reviewed KLF6_HUMAN Krueppel-like factor 6 (B-cell-derived protein 1) (Core promoter element-binding protein) (GC-rich sites-binding factor GBF) (Proto-oncogene BCD1) (Suppressor of tumorigenicity 12 protein) (Transcription factor Zf9) KLF6 BCD1 COPEB CPBP ST12 B cell differentiation [GO:0030183]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q99624 reviewed S38A3_HUMAN Sodium-coupled neutral amino acid transporter 3 (N-system amino acid transporter 1) (Na(+)-coupled neutral amino acid transporter 3) (Solute carrier family 38 member 3) (System N amino acid transporter 1) SLC38A3 G17 NAT1 SN1 SNAT3 amino acid transmembrane transport [GO:0003333]; amino acid transport [GO:0006865]; asparagine transport [GO:0006867]; cellular response to potassium ion starvation [GO:0051365]; female pregnancy [GO:0007565]; glutamine secretion [GO:0010585]; glutamine transport [GO:0006868]; histidine transport [GO:0015817]; intracellular amino acid homeostasis [GO:0080144]; L-alanine transport [GO:0015808]; L-asparagine import across plasma membrane [GO:1903811]; L-glutamine import across plasma membrane [GO:1903803]; L-histidine import across plasma membrane [GO:1903810]; L-histidine transport [GO:1902024]; positive regulation of glutamine transport [GO:2000487]; positive regulation of transcription by RNA polymerase II [GO:0045944]; transport across blood-brain barrier [GO:0150104] -Q99626 reviewed CDX2_HUMAN Homeobox protein CDX-2 (CDX-3) (Caudal-type homeobox protein 2) CDX2 CDX3 animal organ morphogenesis [GO:0009887]; anterior/posterior axis specification [GO:0009948]; blood vessel development [GO:0001568]; cell differentiation [GO:0030154]; endosome to lysosome transport [GO:0008333]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; intestinal epithelial cell differentiation [GO:0060575]; labyrinthine layer development [GO:0060711]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of cell differentiation [GO:0045597]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of somitogenesis [GO:0014807]; regulation of transcription by RNA polymerase II [GO:0006357]; somatic stem cell population maintenance [GO:0035019]; stem cell differentiation [GO:0048863]; trophectodermal cell differentiation [GO:0001829] -Q99687 reviewed MEIS3_HUMAN Homeobox protein Meis3 (Meis1-related protein 2) MEIS3 MRG2 animal organ morphogenesis [GO:0009887]; brain development [GO:0007420]; embryonic pattern specification [GO:0009880]; eye development [GO:0001654]; negative regulation of apoptotic signaling pathway [GO:2001234]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q99697 reviewed PITX2_HUMAN Pituitary homeobox 2 (ALL1-responsive protein ARP1) (Homeobox protein PITX2) (Paired-like homeodomain transcription factor 2) (RIEG bicoid-related homeobox transcription factor) (Solurshin) PITX2 ARP1 RGS RIEG RIEG1 anatomical structure morphogenesis [GO:0009653]; camera-type eye development [GO:0043010]; cardiac neural crest cell migration involved in outflow tract morphogenesis [GO:0003253]; deltoid tuberosity development [GO:0035993]; determination of left/right symmetry [GO:0007368]; embryonic heart tube left/right pattern formation [GO:0060971]; hair cell differentiation [GO:0035315]; iris morphogenesis [GO:0061072]; left/right axis specification [GO:0070986]; negative regulation of transcription by RNA polymerase II [GO:0000122]; odontogenesis [GO:0042476]; outflow tract morphogenesis [GO:0003151]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of transcription by RNA polymerase II [GO:0045944]; prolactin secreting cell differentiation [GO:0060127]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; somatotropin secreting cell differentiation [GO:0060126]; spleen development [GO:0048536] -Q99717 reviewed SMAD5_HUMAN Mothers against decapentaplegic homolog 5 (MAD homolog 5) (Mothers against DPP homolog 5) (JV5-1) (SMAD family member 5) (SMAD 5) (Smad5) (hSmad5) SMAD5 MADH5 anatomical structure morphogenesis [GO:0009653]; BMP signaling pathway [GO:0030509]; bone development [GO:0060348]; cardiac conduction system development [GO:0003161]; cardiac muscle contraction [GO:0060048]; cartilage development [GO:0051216]; cell differentiation [GO:0030154]; cellular response to organic cyclic compound [GO:0071407]; embryonic pattern specification [GO:0009880]; erythrocyte differentiation [GO:0030218]; germ cell development [GO:0007281]; Mullerian duct regression [GO:0001880]; negative regulation of apoptotic process [GO:0043066]; negative regulation of Fas signaling pathway [GO:1902045]; negative regulation of gene expression [GO:0010629]; osteoblast differentiation [GO:0001649]; osteoblast fate commitment [GO:0002051]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; signal transduction [GO:0007165]; SMAD protein signal transduction [GO:0060395]; transforming growth factor beta receptor signaling pathway [GO:0007179]; ureteric bud development [GO:0001657] -Q99732 reviewed LITAF_HUMAN Lipopolysaccharide-induced tumor necrosis factor-alpha factor (LPS-induced TNF-alpha factor) (Small integral membrane protein of lysosome/late endosome) (p53-induced gene 7 protein) LITAF PIG7 SIMPLE cellular response to lipopolysaccharide [GO:0071222]; negative regulation of non-canonical NF-kappaB signal transduction [GO:1901223]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cytokine production [GO:0001817]; regulation of macrophage cytokine production [GO:0010935] -Q99801 reviewed NKX31_HUMAN Homeobox protein Nkx-3.1 (Homeobox protein NK-3 homolog A) NKX3-1 NKX3.1 NKX3A activation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0006919]; androgen receptor signaling pathway [GO:0030521]; branching involved in prostate gland morphogenesis [GO:0060442]; branching morphogenesis of an epithelial tube [GO:0048754]; cell differentiation [GO:0030154]; cellular response to hypoxia [GO:0071456]; cellular response to interleukin-1 [GO:0071347]; cellular response to steroid hormone stimulus [GO:0071383]; cellular response to tumor necrosis factor [GO:0071356]; cellular response to xenobiotic stimulus [GO:0071466]; DNA damage response [GO:0006974]; dorsal aorta development [GO:0035907]; epithelial cell proliferation involved in prostate gland development [GO:0060767]; epithelial cell proliferation involved in salivary gland morphogenesis [GO:0060664]; heart development [GO:0007507]; male gonad development [GO:0008584]; metanephros development [GO:0001656]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of epithelial cell proliferation involved in prostate gland development [GO:0060770]; negative regulation of gene expression [GO:0010629]; negative regulation of insulin-like growth factor receptor signaling pathway [GO:0043569]; negative regulation of transcription by RNA polymerase II [GO:0000122]; pharyngeal system development [GO:0060037]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; positive regulation of androgen secretion [GO:2000836]; positive regulation of apoptotic signaling pathway [GO:2001235]; positive regulation of cell division [GO:0051781]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043280]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of intrinsic apoptotic signaling pathway [GO:2001244]; positive regulation of mitotic cell cycle [GO:0045931]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of protein localization [GO:0032880]; regulation of transcription by RNA polymerase II [GO:0006357]; response to testosterone [GO:0033574]; salivary gland development [GO:0007431]; somitogenesis [GO:0001756] -Q99807 reviewed COQ7_HUMAN 5-demethoxyubiquinone hydroxylase, mitochondrial (DMQ hydroxylase) (EC 1.14.99.60) (Timing protein clk-1 homolog) (Ubiquinone biosynthesis monooxygenase COQ7) COQ7 determination of adult lifespan [GO:0008340]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of gene expression [GO:0010468]; regulation of reactive oxygen species metabolic process [GO:2000377]; ubiquinone biosynthetic process [GO:0006744] -Q99814 reviewed EPAS1_HUMAN Endothelial PAS domain-containing protein 1 (EPAS-1) (Basic-helix-loop-helix-PAS protein MOP2) (Class E basic helix-loop-helix protein 73) (bHLHe73) (HIF-1-alpha-like factor) (HLF) (Hypoxia-inducible factor 2-alpha) (HIF-2-alpha) (HIF2-alpha) (Member of PAS protein 2) (PAS domain-containing protein 2) EPAS1 BHLHE73 HIF2A MOP2 PASD2 angiogenesis [GO:0001525]; blood vessel remodeling [GO:0001974]; cellular response to hypoxia [GO:0071456]; embryonic placenta development [GO:0001892]; epithelial cell maturation [GO:0002070]; erythrocyte differentiation [GO:0030218]; lung development [GO:0030324]; mitochondrion organization [GO:0007005]; mRNA transcription by RNA polymerase II [GO:0042789]; multicellular organismal-level iron ion homeostasis [GO:0060586]; myoblast fate commitment [GO:0048625]; norepinephrine metabolic process [GO:0042415]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of heart rate [GO:0002027]; regulation of protein neddylation [GO:2000434]; regulation of transcription by RNA polymerase II [GO:0006357]; response to hypoxia [GO:0001666]; response to oxidative stress [GO:0006979]; signal transduction [GO:0007165]; surfactant homeostasis [GO:0043129]; visual perception [GO:0007601] -Q99835 reviewed SMO_HUMAN Protein smoothened (Protein Gx) SMO SMOH anterior/posterior pattern specification [GO:0009952]; apoptotic process [GO:0006915]; astrocyte activation [GO:0048143]; atrial septum morphogenesis [GO:0060413]; cell fate specification [GO:0001708]; cellular response to cholesterol [GO:0071397]; central nervous system development [GO:0007417]; central nervous system neuron differentiation [GO:0021953]; cerebellar cortex morphogenesis [GO:0021696]; cerebral cortex development [GO:0021987]; commissural neuron axon guidance [GO:0071679]; contact inhibition [GO:0060242]; dentate gyrus development [GO:0021542]; determination of left/right asymmetry in lateral mesoderm [GO:0003140]; dopaminergic neuron differentiation [GO:0071542]; dorsal/ventral neural tube patterning [GO:0021904]; epithelial cell proliferation [GO:0050673]; epithelial-mesenchymal cell signaling [GO:0060684]; forebrain morphogenesis [GO:0048853]; gene expression [GO:0010467]; hair follicle morphogenesis [GO:0031069]; heart looping [GO:0001947]; homeostasis of number of cells within a tissue [GO:0048873]; in utero embryonic development [GO:0001701]; left/right axis specification [GO:0070986]; mammary gland epithelial cell differentiation [GO:0060644]; mesenchymal to epithelial transition involved in metanephric renal vesicle formation [GO:0072285]; midgut development [GO:0007494]; multicellular organism growth [GO:0035264]; myoblast migration [GO:0051451]; negative regulation of apoptotic process [GO:0043066]; negative regulation of DNA binding [GO:0043392]; negative regulation of epithelial cell differentiation [GO:0030857]; negative regulation of gene expression [GO:0010629]; negative regulation of hair follicle development [GO:0051799]; negative regulation of protein phosphorylation [GO:0001933]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural crest cell migration [GO:0001755]; neuroblast proliferation [GO:0007405]; odontogenesis of dentin-containing tooth [GO:0042475]; osteoblast differentiation [GO:0001649]; pancreas morphogenesis [GO:0061113]; pattern specification process [GO:0007389]; positive regulation of branching involved in ureteric bud morphogenesis [GO:0090190]; positive regulation of cell migration [GO:0030335]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of gene expression [GO:0010628]; positive regulation of mesenchymal cell proliferation [GO:0002053]; positive regulation of multicellular organism growth [GO:0040018]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of organ growth [GO:0046622]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of smoothened signaling pathway [GO:0045880]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein import into nucleus [GO:0006606]; protein stabilization [GO:0050821]; regulation of heart morphogenesis [GO:2000826]; regulation of somatic stem cell population maintenance [GO:1904672]; skeletal muscle fiber development [GO:0048741]; smooth muscle tissue development [GO:0048745]; smoothened signaling pathway [GO:0007224]; somite development [GO:0061053]; spinal cord dorsal/ventral patterning [GO:0021513]; thalamus development [GO:0021794]; type B pancreatic cell development [GO:0003323]; vasculogenesis [GO:0001570]; ventral midline determination [GO:0007371] -Q99836 reviewed MYD88_HUMAN Myeloid differentiation primary response protein MyD88 MYD88 3'-UTR-mediated mRNA stabilization [GO:0070935]; apoptotic process [GO:0006915]; cell surface receptor signaling pathway [GO:0007166]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to mechanical stimulus [GO:0071260]; cellular response to oxidised low-density lipoprotein particle stimulus [GO:0140052]; defense response to bacterium [GO:0042742]; defense response to Gram-positive bacterium [GO:0050830]; defense response to protozoan [GO:0042832]; defense response to virus [GO:0051607]; establishment of endothelial intestinal barrier [GO:0090557]; gene expression [GO:0010467]; immunoglobulin mediated immune response [GO:0016064]; induced systemic resistance [GO:0009682]; innate immune response [GO:0045087]; interleukin-1-mediated signaling pathway [GO:0070498]; interleukin-33-mediated signaling pathway [GO:0038172]; JNK cascade [GO:0007254]; leukocyte activation involved in inflammatory response [GO:0002269]; lipopolysaccharide-mediated signaling pathway [GO:0031663]; microglia differentiation [GO:0014004]; MyD88-dependent toll-like receptor signaling pathway [GO:0002755]; neutrophil activation involved in immune response [GO:0002283]; neutrophil-mediated killing of bacterium [GO:0070944]; phagocytosis [GO:0006909]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of chemokine production [GO:0032722]; positive regulation of cytokine production involved in inflammatory response [GO:1900017]; positive regulation of gene expression [GO:0010628]; positive regulation of interleukin-1 beta production [GO:0032731]; positive regulation of interleukin-17 production [GO:0032740]; positive regulation of interleukin-23 production [GO:0032747]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of JNK cascade [GO:0046330]; positive regulation of lymphocyte proliferation [GO:0050671]; positive regulation of macrophage cytokine production [GO:0060907]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of NLRP3 inflammasome complex assembly [GO:1900227]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of type I interferon production [GO:0032481]; regulation of chemokine (C-X-C motif) ligand 1 production [GO:2000338]; regulation of chemokine (C-X-C motif) ligand 2 production [GO:2000341]; regulation of inflammatory response [GO:0050727]; regulation of neutrophil migration [GO:1902622]; response to amine [GO:0014075]; response to amino acid [GO:0043200]; response to ethanol [GO:0045471]; response to interleukin-1 [GO:0070555]; response to molecule of fungal origin [GO:0002238]; response to organic cyclic compound [GO:0014070]; response to peptidoglycan [GO:0032494]; signal transduction [GO:0007165]; skin development [GO:0043588]; Toll signaling pathway [GO:0008063]; toll-like receptor 4 signaling pathway [GO:0034142]; toll-like receptor 8 signaling pathway [GO:0034158]; type I interferon-mediated signaling pathway [GO:0060337] -Q99856 reviewed ARI3A_HUMAN AT-rich interactive domain-containing protein 3A (ARID domain-containing protein 3A) (B-cell regulator of IgH transcription) (Bright) (Dead ringer-like protein 1) (E2F-binding protein 1) ARID3A DRIL1 DRIL3 DRX E2FBP1 positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q99929 reviewed ASCL2_HUMAN Achaete-scute homolog 2 (ASH-2) (hASH2) (Class A basic helix-loop-helix protein 45) (bHLHa45) (Mash2) ASCL2 BHLHA45 HASH2 chorionic trophoblast cell development [GO:0060719]; negative regulation of Schwann cell proliferation [GO:0010626]; negative regulation of T-helper 1 cell differentiation [GO:0045626]; negative regulation of T-helper 17 cell differentiation [GO:2000320]; negative regulation of T-helper 2 cell differentiation [GO:0045629]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron differentiation [GO:0030182]; placenta development [GO:0001890]; positive regulation of T cell migration [GO:2000406]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of neurogenesis [GO:0050767]; response to hypoxia [GO:0001666]; sensory organ development [GO:0007423]; somatic stem cell population maintenance [GO:0035019]; spongiotrophoblast differentiation [GO:0060708]; spongiotrophoblast layer development [GO:0060712]; T follicular helper cell differentiation [GO:0061470] -Q99932 reviewed SPAG8_HUMAN Sperm-associated antigen 8 (HSD-1) (Sperm membrane protein 1) (SMP-1) (Sperm membrane protein BS-84) SPAG8 cell differentiation [GO:0030154]; positive regulation of transcription by RNA polymerase II [GO:0045944]; single fertilization [GO:0007338]; spermatogenesis [GO:0007283] -Q99941 reviewed ATF6B_HUMAN Cyclic AMP-dependent transcription factor ATF-6 beta (cAMP-dependent transcription factor ATF-6 beta) (Activating transcription factor 6 beta) (ATF6-beta) (Protein G13) (cAMP response element-binding protein-related protein) (Creb-rp) (cAMP-responsive element-binding protein-like 1) [Cleaved into: Processed cyclic AMP-dependent transcription factor ATF-6 beta] ATF6B CREBL1 G13 ATF6-mediated unfolded protein response [GO:0036500]; endoplasmic reticulum unfolded protein response [GO:0030968]; negative regulation of ATF6-mediated unfolded protein response [GO:1903892]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; response to endoplasmic reticulum stress [GO:0034976]; signal transduction [GO:0007165] -Q99958 reviewed FOXC2_HUMAN Forkhead box protein C2 (Forkhead-related protein FKHL14) (Mesenchyme fork head protein 1) (MFH-1 protein) (Transcription factor FKH-14) FOXC2 FKHL14 MFH1 anatomical structure morphogenesis [GO:0009653]; apoptotic process involved in outflow tract morphogenesis [GO:0003275]; artery morphogenesis [GO:0048844]; blood vessel diameter maintenance [GO:0097746]; blood vessel remodeling [GO:0001974]; branching involved in blood vessel morphogenesis [GO:0001569]; camera-type eye development [GO:0043010]; cardiac muscle cell proliferation [GO:0060038]; cell differentiation [GO:0030154]; collagen fibril organization [GO:0030199]; embryonic heart tube development [GO:0035050]; embryonic viscerocranium morphogenesis [GO:0048703]; glomerular endothelium development [GO:0072011]; glomerular mesangial cell development [GO:0072144]; heart development [GO:0007507]; insulin receptor signaling pathway [GO:0008286]; lymphangiogenesis [GO:0001946]; mesoderm development [GO:0007498]; metanephros development [GO:0001656]; negative regulation of apoptotic process involved in outflow tract morphogenesis [GO:1902257]; negative regulation of cold-induced thermogenesis [GO:0120163]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural crest cell development [GO:0014032]; Notch signaling pathway [GO:0007219]; ossification [GO:0001503]; paraxial mesodermal cell fate commitment [GO:0048343]; podocyte differentiation [GO:0072112]; positive regulation of cell adhesion mediated by integrin [GO:0033630]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular wound healing [GO:0035470]; regulation of organ growth [GO:0046620]; regulation of transcription by RNA polymerase II [GO:0006357]; response to hormone [GO:0009725]; somitogenesis [GO:0001756]; ureteric bud development [GO:0001657]; vascular endothelial growth factor receptor signaling pathway [GO:0048010]; ventricular cardiac muscle tissue morphogenesis [GO:0055010] -Q99966 reviewed CITE1_HUMAN Cbp/p300-interacting transactivator 1 (Melanocyte-specific protein 1) CITED1 MSG1 apoptotic process [GO:0006915]; brain development [GO:0007420]; branching involved in ureteric bud morphogenesis [GO:0001658]; labyrinthine layer development [GO:0060711]; melanin biosynthetic process [GO:0042438]; melanocyte differentiation [GO:0030318]; mesenchymal to epithelial transition [GO:0060231]; metanephros development [GO:0001656]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of osteoblast differentiation [GO:0045668]; negative regulation of Wnt signaling pathway [GO:0030178]; nucleocytoplasmic transport [GO:0006913]; pigmentation [GO:0043473]; placenta development [GO:0001890]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of mesenchymal stem cell proliferation [GO:1902462]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta receptor signaling pathway [GO:0030511]; regulation of apoptotic process [GO:0042981]; regulation of transcription by RNA polymerase II [GO:0006357]; response to cAMP [GO:0051591]; response to cytokine [GO:0034097]; response to estrogen [GO:0043627]; response to insulin [GO:0032868]; response to interleukin-1 [GO:0070555]; response to interleukin-11 [GO:0071105]; response to interleukin-2 [GO:0070669]; response to interleukin-4 [GO:0070670]; response to interleukin-6 [GO:0070741]; response to interleukin-9 [GO:0071104]; response to lipopolysaccharide [GO:0032496]; response to parathyroid hormone [GO:0071107]; response to transforming growth factor beta [GO:0071559]; response to type II interferon [GO:0034341]; SMAD protein signal transduction [GO:0060395]; spongiotrophoblast layer development [GO:0060712]; transforming growth factor beta receptor signaling pathway [GO:0007179]; vasculogenesis [GO:0001570] -Q99967 reviewed CITE2_HUMAN Cbp/p300-interacting transactivator 2 (MSG-related protein 1) (MRG-1) (P35srj) CITED2 MRG1 adrenal cortex formation [GO:0035802]; bone morphogenesis [GO:0060349]; cardiac neural crest cell development involved in heart development [GO:0061308]; cell population proliferation [GO:0008283]; cellular response to hypoxia [GO:0071456]; cellular senescence [GO:0090398]; central nervous system development [GO:0007417]; cranial nerve morphogenesis [GO:0021602]; decidualization [GO:0046697]; determination of left/right asymmetry in lateral mesoderm [GO:0003140]; determination of left/right symmetry [GO:0007368]; embryonic camera-type eye morphogenesis [GO:0048596]; embryonic heart tube left/right pattern formation [GO:0060971]; embryonic placenta development [GO:0001892]; embryonic process involved in female pregnancy [GO:0060136]; endocardial cushion development [GO:0003197]; erythrocyte development [GO:0048821]; granulocyte differentiation [GO:0030851]; heart development [GO:0007507]; heart looping [GO:0001947]; hematopoietic progenitor cell differentiation [GO:0002244]; left/right axis specification [GO:0070986]; left/right pattern formation [GO:0060972]; lens morphogenesis in camera-type eye [GO:0002089]; liver development [GO:0001889]; male gonad development [GO:0008584]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cardiac muscle cell proliferation [GO:0060044]; negative regulation of cell migration [GO:0030336]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of gene expression [GO:0010629]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural tube closure [GO:0001843]; nodal signaling pathway [GO:0038092]; outflow tract morphogenesis [GO:0003151]; peripheral nervous system development [GO:0007422]; positive regulation of cell cycle [GO:0045787]; positive regulation of cell-cell adhesion [GO:0022409]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of male gonad development [GO:2000020]; positive regulation of peroxisome proliferator activated receptor signaling pathway [GO:0035360]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta receptor signaling pathway [GO:0030511]; pulmonary artery morphogenesis [GO:0061156]; regulation of animal organ formation [GO:0003156]; response to estrogen [GO:0043627]; response to fluid shear stress [GO:0034405]; response to hypoxia [GO:0001666]; response to mechanical stimulus [GO:0009612]; sex determination [GO:0007530]; skeletal muscle cell differentiation [GO:0035914]; spleen development [GO:0048536]; thymus development [GO:0048538]; transforming growth factor beta receptor signaling pathway [GO:0007179]; trophectodermal cell differentiation [GO:0001829]; uterus development [GO:0060065]; vasculogenesis [GO:0001570]; ventricular septum morphogenesis [GO:0060412] -Q9BQ87 reviewed TBL1Y_HUMAN F-box-like/WD repeat-containing protein TBL1Y (Transducin beta-like protein 1Y) (Transducin-beta-like protein 1, Y-linked) TBL1Y TBL1 fat cell differentiation [GO:0045444]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; protein stabilization [GO:0050821]; regulation of transcription by RNA polymerase II [GO:0006357]; response to estrogen [GO:0043627]; response to steroid hormone [GO:0048545] -Q9BQA5 reviewed HINFP_HUMAN Histone H4 transcription factor (Histone nuclear factor P) (HiNF-P) (MBD2-interacting zinc finger protein) (Methyl-CpG-binding protein 2-interacting zinc finger protein) HINFP MIZF ZNF743 cell cycle G1/S phase transition [GO:0044843]; DNA damage checkpoint signaling [GO:0000077]; DNA repair [GO:0006281]; DNA-templated transcription [GO:0006351]; establishment of protein localization [GO:0045184]; G1/S transition of mitotic cell cycle [GO:0000082]; in utero embryonic development [GO:0001701]; myoblast differentiation [GO:0045445]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of gene expression [GO:0010629]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9BQG0 reviewed MBB1A_HUMAN Myb-binding protein 1A MYBBP1A P160 cellular response to glucose starvation [GO:0042149]; chromatin remodeling [GO:0006338]; circadian regulation of gene expression [GO:0032922]; intrinsic apoptotic signaling pathway by p53 class mediator [GO:0072332]; negative regulation of DNA-templated transcription [GO:0045892]; osteoblast differentiation [GO:0001649]; positive regulation of anoikis [GO:2000210]; positive regulation of transcription by RNA polymerase I [GO:0045943]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription by RNA polymerase III [GO:0045945]; regulation of DNA-templated transcription [GO:0006355]; regulation of G1 to G0 transition [GO:1903450]; respiratory electron transport chain [GO:0022904]; ribosome biogenesis [GO:0042254] -Q9BQK8 reviewed LPIN3_HUMAN Phosphatidate phosphatase LPIN3 (EC 3.1.3.4) (Lipin-3) (Lipin-3-like) LPIN3 LIPN3L cellular response to insulin stimulus [GO:0032869]; fatty acid catabolic process [GO:0009062]; positive regulation of transcription by RNA polymerase II [GO:0045944]; triglyceride biosynthetic process [GO:0019432] -Q9BQW3 reviewed COE4_HUMAN Transcription factor COE4 (Early B-cell factor 4) (EBF-4) (Olf-1/EBF-like 4) (O/E-4) (OE-4) EBF4 COE4 KIAA1442 positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; T cell apoptotic process [GO:0070231] -Q9BRJ9 reviewed MESP1_HUMAN Mesoderm posterior protein 1 (Class C basic helix-loop-helix protein 5) (bHLHc5) MESP1 BHLHC5 cardiac atrium formation [GO:0003210]; cardiac cell fate determination [GO:0060913]; cardiac muscle cell differentiation [GO:0055007]; cardiac vascular smooth muscle cell differentiation [GO:0060947]; cardiac ventricle formation [GO:0003211]; cardioblast anterior-lateral migration [GO:0003259]; cardioblast migration to the midline involved in heart field formation [GO:0060975]; embryonic heart tube morphogenesis [GO:0003143]; endothelial cell differentiation [GO:0045446]; gastrulation [GO:0007369]; gene expression [GO:0010467]; growth involved in heart morphogenesis [GO:0003241]; heart induction [GO:0003129]; heart looping [GO:0001947]; heart morphogenesis [GO:0003007]; lateral mesoderm development [GO:0048368]; mesoderm formation [GO:0001707]; mesodermal cell migration [GO:0008078]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of endodermal cell fate specification [GO:0042664]; negative regulation of mesodermal cell fate specification [GO:0042662]; neurogenesis [GO:0022008]; Notch signaling pathway [GO:0007219]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of hepatocyte differentiation [GO:0070368]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of striated muscle cell differentiation [GO:0051155]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; secondary heart field specification [GO:0003139]; signal transduction involved in regulation of gene expression [GO:0023019]; sinoatrial node cell differentiation [GO:0060921]; sinus venosus morphogenesis [GO:0003236]; somite rostral/caudal axis specification [GO:0032525] -Q9BRP0 reviewed OVOL2_HUMAN Transcription factor Ovo-like 2 (hOvo2) (Zinc finger protein 339) OVOL2 ZNF339 angiogenesis [GO:0001525]; cell population proliferation [GO:0008283]; dorsal/ventral pattern formation [GO:0009953]; embryonic digestive tract morphogenesis [GO:0048557]; endocardium formation [GO:0060214]; epidermal cell differentiation [GO:0009913]; heart looping [GO:0001947]; heart trabecula formation [GO:0060347]; labyrinthine layer blood vessel development [GO:0060716]; negative regulation of epithelial to mesenchymal transition [GO:0010719]; negative regulation of gene expression [GO:0010629]; negative regulation of keratinocyte differentiation [GO:0045617]; negative regulation of Notch signaling pathway [GO:0045746]; negative regulation of SMAD protein signal transduction [GO:0060392]; negative regulation of stem cell proliferation [GO:2000647]; negative regulation of transcription by competitive promoter binding [GO:0010944]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; neural crest cell migration [GO:0001755]; neural fold formation [GO:0001842]; positive regulation of gene expression [GO:0010628]; positive regulation of keratinocyte differentiation [GO:0045618]; regulation of cell cycle [GO:0051726]; regulation of keratinocyte proliferation [GO:0010837]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9BT81 reviewed SOX7_HUMAN Transcription factor SOX-7 SOX7 cell differentiation [GO:0030154]; endoderm formation [GO:0001706]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043280]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of canonical Wnt signaling pathway [GO:0060828] -Q9BTK6 reviewed PAGR1_HUMAN PAXIP1-associated glutamate-rich protein 1 (Glutamate-rich coactivator interacting with SRC1) (GAS) (PAXIP1-associated protein 1) (PTIP-associated protein 1) PAGR1 C16orf53 PA1 DNA recombination [GO:0006310]; DNA repair [GO:0006281]; positive regulation of cell cycle G1/S phase transition [GO:1902808]; positive regulation of intracellular estrogen receptor signaling pathway [GO:0033148]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9BTL4 reviewed IER2_HUMAN Immediate early response gene 2 protein (Protein ETR101) IER2 ETR101 PIP92 cell motility [GO:0048870]; neuron differentiation [GO:0030182]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to fibroblast growth factor [GO:0071774] -Q9BTT4 reviewed MED10_HUMAN Mediator of RNA polymerase II transcription subunit 10 (Mediator complex subunit 10) (Transformation-related gene 17 protein) (TRG-17) (Transformation-related gene 20 protein) (TRG-20) MED10 L6 TRG17 TRG20 positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; protein ubiquitination [GO:0016567]; RNA polymerase II preinitiation complex assembly [GO:0051123] -Q9BUE0 reviewed MED18_HUMAN Mediator of RNA polymerase II transcription subunit 18 (Mediator complex subunit 18) (p28b) MED18 positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; protein ubiquitination [GO:0016567]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA polymerase II preinitiation complex assembly [GO:0051123]; termination of RNA polymerase II transcription [GO:0006369] -Q9BUP3 reviewed HTAI2_HUMAN Oxidoreductase HTATIP2 (EC 1.1.1.-) (30 kDa HIV-1 TAT-interacting protein) (HIV-1 TAT-interactive protein 2) HTATIP2 CC3 TIP30 angiogenesis [GO:0001525]; apoptotic process [GO:0006915]; cell differentiation [GO:0030154]; import into nucleus [GO:0051170]; negative regulation of apoptotic process [GO:0043066]; positive regulation of programmed cell death [GO:0043068]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autophosphorylation [GO:0046777]; regulation of angiogenesis [GO:0045765]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9BWW4 reviewed SSBP3_HUMAN Single-stranded DNA-binding protein 3 (Sequence-specific single-stranded-DNA-binding protein) SSBP3 SSDP SSDP1 head morphogenesis [GO:0060323]; hematopoietic progenitor cell differentiation [GO:0002244]; mesendoderm development [GO:0048382]; midbrain-hindbrain boundary initiation [GO:0021547]; positive regulation of anterior head development [GO:2000744]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of transcription by RNA polymerase II [GO:0045944]; prechordal plate formation [GO:0021501]; protein-containing complex assembly [GO:0065003] -Q9BWX5 reviewed GATA5_HUMAN Transcription factor GATA-5 (GATA-binding factor 5) GATA5 aortic valve morphogenesis [GO:0003180]; cardiac muscle tissue development [GO:0048738]; cell fate commitment [GO:0045165]; cellular response to BMP stimulus [GO:0071773]; endocardial cushion fusion [GO:0003274]; heart induction [GO:0003129]; intestinal epithelial cell differentiation [GO:0060575]; negative regulation of cardiac muscle hypertrophy [GO:0010614]; negative regulation of gene expression [GO:0010629]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of cardiac endothelial to mesenchymal transition [GO:0062000]; positive regulation of gene expression [GO:0010628]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9BYH8 reviewed IKBZ_HUMAN NF-kappa-B inhibitor zeta (I-kappa-B-zeta) (IkB-zeta) (IkappaBzeta) (IL-1 inducible nuclear ankyrin-repeat protein) (INAP) (Molecule possessing ankyrin repeats induced by lipopolysaccharide) (MAIL) NFKBIZ IKBZ INAP MAIL B cell proliferation [GO:0042100]; B cell receptor apoptotic signaling pathway [GO:1990117]; cellular response to interleukin-17 [GO:0097398]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to transforming growth factor beta stimulus [GO:0071560]; chromatin remodeling [GO:0006338]; chronic inflammatory response [GO:0002544]; cytokine-mediated signaling pathway [GO:0019221]; defense response to Gram-negative bacterium [GO:0050829]; epithelial cell apoptotic process [GO:1904019]; establishment of skin barrier [GO:0061436]; execution phase of apoptosis [GO:0097194]; homeostasis of number of cells within a tissue [GO:0048873]; inflammatory response to wounding [GO:0090594]; isotype switching [GO:0045190]; keratinocyte activation [GO:0032980]; keratinocyte differentiation [GO:0030216]; keratinocyte proliferation [GO:0043616]; mRNA transcription by RNA polymerase II [GO:0042789]; plasma cell differentiation [GO:0002317]; positive regulation of inflammatory response [GO:0050729]; positive regulation of T-helper 17 cell differentiation [GO:2000321]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of gene expression [GO:0010468]; response to cisplatin [GO:0072718]; response to folic acid [GO:0051593]; response to Gram-positive bacterium [GO:0140459]; response to xenobiotic stimulus [GO:0009410]; spleen development [GO:0048536]; T cell mediated immunity [GO:0002456]; T cell receptor signaling pathway [GO:0050852]; T-helper 1 cell differentiation [GO:0045063]; T-helper 17 cell differentiation [GO:0072539]; toll-like receptor signaling pathway [GO:0002224]; transcription preinitiation complex assembly [GO:0070897] -Q9BYK8 reviewed HELZ2_HUMAN 3'-5' exoribonuclease HELZ2 (EC 3.1.13.1) (ATP-dependent RNA helicase PRIC285) (EC 3.6.4.13) (Helicase with zinc finger 2, transcriptional coactivator) (Helicase with zinc finger domain 2) (PPAR-alpha-interacting complex protein 285) (PPAR-gamma DNA-binding domain-interacting protein 1) (PDIP1) (PPAR-gamma DBD-interacting protein 1) (Peroxisomal proliferator-activated receptor A-interacting complex 285 kDa protein) HELZ2 KIAA1769 PRIC285 positive regulation of transcription by RNA polymerase II [GO:0045944]; regulatory ncRNA-mediated post-transcriptional gene silencing [GO:0035194] -Q9BZE0 reviewed GLIS2_HUMAN Zinc finger protein GLIS2 (GLI-similar 2) (Neuronal Krueppel-like protein) GLIS2 NKL cell differentiation involved in kidney development [GO:0061005]; central nervous system development [GO:0007417]; hematopoietic stem cell homeostasis [GO:0061484]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of smoothened signaling pathway [GO:0045879]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of protein localization to nucleus [GO:1900182]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9BZK7 reviewed TBL1R_HUMAN F-box-like/WD repeat-containing protein TBL1XR1 (Nuclear receptor corepressor/HDAC3 complex subunit TBLR1) (TBL1-related protein 1) (Transducin beta-like 1X-related protein 1) TBL1XR1 IRA1 TBLR1 blastocyst hatching [GO:0001835]; chromatin organization [GO:0006325]; fat pad development [GO:0060613]; lipid catabolic process [GO:0016042]; multicellular organism growth [GO:0035264]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of triglyceride metabolic process [GO:0090207]; response to dietary excess [GO:0002021]; white fat cell differentiation [GO:0050872] -Q9BZL6 reviewed KPCD2_HUMAN Serine/threonine-protein kinase D2 (EC 2.7.11.13) (nPKC-D2) PRKD2 PKD2 HSPC187 adaptive immune response [GO:0002250]; angiogenesis [GO:0001525]; cell adhesion [GO:0007155]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; endothelial tube morphogenesis [GO:0061154]; intracellular signal transduction [GO:0035556]; peptidyl-serine phosphorylation [GO:0018105]; peptidyl-threonine phosphorylation [GO:0018107]; phospholipase C-activating G protein-coupled receptor signaling pathway [GO:0007200]; positive regulation of angiogenesis [GO:0045766]; positive regulation of blood vessel endothelial cell migration [GO:0043536]; positive regulation of cell adhesion [GO:0045785]; positive regulation of DNA biosynthetic process [GO:2000573]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of endothelial cell chemotaxis [GO:2001028]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of fibroblast growth factor receptor signaling pathway [GO:0045743]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of T cell receptor signaling pathway [GO:0050862]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular endothelial growth factor receptor signaling pathway [GO:0030949]; protein autophosphorylation [GO:0046777]; protein phosphorylation [GO:0006468]; regulation of T cell apoptotic process [GO:0070232]; sphingolipid biosynthetic process [GO:0030148]; T cell receptor signaling pathway [GO:0050852]; vascular endothelial growth factor receptor signaling pathway [GO:0048010] -Q9BZS1 reviewed FOXP3_HUMAN Forkhead box protein P3 (Scurfin) [Cleaved into: Forkhead box protein P3, C-terminally processed; Forkhead box protein P3 41 kDa form] FOXP3 IPEX JM2 B cell homeostasis [GO:0001782]; CD4-positive, alpha-beta T cell proliferation [GO:0035739]; CD4-positive, CD25-positive, alpha-beta regulatory T cell lineage commitment [GO:0002362]; chromatin remodeling [GO:0006338]; establishment of endothelial blood-brain barrier [GO:0014045]; immature T cell proliferation in thymus [GO:0033080]; inflammatory response [GO:0006954]; isotype switching to IgE isotypes [GO:0048289]; myeloid cell homeostasis [GO:0002262]; negative regulation of activated T cell proliferation [GO:0046007]; negative regulation of CD4-positive, alpha-beta T cell proliferation [GO:2000562]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of chronic inflammatory response [GO:0002677]; negative regulation of CREB transcription factor activity [GO:0032792]; negative regulation of cytokine production [GO:0001818]; negative regulation of defense response to virus [GO:0050687]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of immune response [GO:0050777]; negative regulation of interleukin-10 production [GO:0032693]; negative regulation of interleukin-17 production [GO:0032700]; negative regulation of interleukin-2 production [GO:0032703]; negative regulation of interleukin-4 production [GO:0032713]; negative regulation of interleukin-5 production [GO:0032714]; negative regulation of interleukin-6 production [GO:0032715]; negative regulation of isotype switching to IgE isotypes [GO:0048294]; negative regulation of NF-kappaB transcription factor activity [GO:0032088]; negative regulation of T cell cytokine production [GO:0002725]; negative regulation of T cell proliferation [GO:0042130]; negative regulation of T-helper 17 cell differentiation [GO:2000320]; negative regulation of tumor necrosis factor production [GO:0032720]; negative regulation of type II interferon production [GO:0032689]; positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation [GO:0032831]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of immature T cell proliferation in thymus [GO:0033092]; positive regulation of interleukin-4 production [GO:0032753]; positive regulation of peripheral T cell tolerance induction [GO:0002851]; positive regulation of regulatory T cell differentiation [GO:0045591]; positive regulation of T cell anergy [GO:0002669]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta1 production [GO:0032914]; regulation of DNA-templated transcription [GO:0006355]; regulation of isotype switching to IgG isotypes [GO:0048302]; regulation of T cell anergy [GO:0002667]; regulation of transcription by RNA polymerase II [GO:0006357]; regulatory T cell differentiation [GO:0045066]; response to lipopolysaccharide [GO:0032496]; response to rapamycin [GO:1901355]; response to virus [GO:0009615]; T cell activation [GO:0042110]; T cell anergy [GO:0002870]; T cell homeostasis [GO:0043029]; T cell mediated immunity [GO:0002456]; T cell receptor signaling pathway [GO:0050852]; tolerance induction to self antigen [GO:0002513]; transcription by RNA polymerase II [GO:0006366]; transforming growth factor beta1 production [GO:0032905] -Q9C0F0 reviewed ASXL3_HUMAN Putative Polycomb group protein ASXL3 (Additional sex combs-like protein 3) ASXL3 KIAA1713 animal organ morphogenesis [GO:0009887]; negative regulation of lipid biosynthetic process [GO:0051055]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9C0G0 reviewed ZN407_HUMAN Zinc finger protein 407 ZNF407 KIAA1703 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9C0K0 reviewed BC11B_HUMAN B-cell lymphoma/leukemia 11B (BCL-11B) (B-cell CLL/lymphoma 11B) (COUP-TF-interacting protein 2) (Radiation-induced tumor suppressor gene 1 protein) (hRit1) BCL11B CTIP2 RIT1 alpha-beta T cell differentiation [GO:0046632]; commitment of neuronal cell to specific neuron type in forebrain [GO:0021902]; epithelial cell morphogenesis [GO:0003382]; hematopoietic stem cell migration [GO:0035701]; keratinocyte development [GO:0003334]; lymphoid lineage cell migration into thymus [GO:0097535]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of thymocyte apoptotic process [GO:0070244]; odontogenesis of dentin-containing tooth [GO:0042475]; olfactory bulb axon guidance [GO:0071678]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive T cell selection [GO:0043368]; post-embryonic camera-type eye development [GO:0031077]; regulation of keratinocyte proliferation [GO:0010837]; regulation of lipid metabolic process [GO:0019216]; regulation of neuron differentiation [GO:0045664]; striatal medium spiny neuron differentiation [GO:0021773]; T cell differentiation in thymus [GO:0033077]; T cell receptor V(D)J recombination [GO:0033153]; thymocyte apoptotic process [GO:0070242]; thymus development [GO:0048538]; transcription by RNA polymerase II [GO:0006366] -Q9GZT9 reviewed EGLN1_HUMAN Egl nine homolog 1 (EC 1.14.11.29) (Hypoxia-inducible factor prolyl hydroxylase 2) (HIF-PH2) (HIF-prolyl hydroxylase 2) (HPH-2) (Prolyl hydroxylase domain-containing protein 2) (PHD2) (SM-20) EGLN1 C1orf12 PNAS-118 PNAS-137 cardiac muscle tissue morphogenesis [GO:0055008]; cellular response to hypoxia [GO:0071456]; heart trabecula formation [GO:0060347]; intracellular iron ion homeostasis [GO:0006879]; intracellular oxygen homeostasis [GO:0032364]; labyrinthine layer development [GO:0060711]; negative regulation of cyclic-nucleotide phosphodiesterase activity [GO:0051344]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of angiogenesis [GO:0045765]; regulation of modification of postsynaptic structure [GO:0099159]; regulation protein catabolic process at postsynapse [GO:0140252]; response to hypoxia [GO:0001666]; response to nitric oxide [GO:0071731]; ventricular septum morphogenesis [GO:0060412] -Q9GZU2 reviewed PEG3_HUMAN Paternally-expressed gene 3 protein (Zinc finger and SCAN domain-containing protein 24) PEG3 KIAA0287 ZSCAN24 apoptotic process [GO:0006915]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of gene expression [GO:0010468]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9GZV5 reviewed WWTR1_HUMAN WW domain-containing transcription regulator protein 1 (Transcriptional coactivator with PDZ-binding motif) WWTR1 TAZ cilium assembly [GO:0060271]; glomerulus development [GO:0032835]; heart process [GO:0003015]; hippo signaling [GO:0035329]; kidney morphogenesis [GO:0060993]; mesenchymal cell differentiation [GO:0048762]; multicellular organism growth [GO:0035264]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of protein kinase activity [GO:0006469]; negative regulation of protein phosphorylation [GO:0001933]; negative regulation of transcription by RNA polymerase II [GO:0000122]; osteoblast differentiation [GO:0001649]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of protein localization to nucleus [GO:1900182]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein ubiquitination [GO:0016567]; regulation of DNA-templated transcription [GO:0006355]; regulation of metanephric nephron tubule epithelial cell differentiation [GO:0072307]; SCF-dependent proteasomal ubiquitin-dependent protein catabolic process [GO:0031146]; SMAD protein signal transduction [GO:0060395]; stem cell division [GO:0017145]; tissue homeostasis [GO:0001894] -Q9H000 reviewed MKRN2_HUMAN E3 ubiquitin-protein ligase makorin-2 (EC 2.3.2.27) (RING finger protein 62) (RING-type E3 ubiquitin transferase makorin-2) MKRN2 RNF62 HSPC070 cell differentiation [GO:0030154]; DNA-templated transcription [GO:0006351]; negative regulation of inflammatory response to antigenic stimulus [GO:0002862]; negative regulation of non-canonical NF-kappaB signal transduction [GO:1901223]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein polyubiquitination [GO:0000209]; protein ubiquitination [GO:0016567]; spermatogenesis [GO:0007283]; ubiquitin-dependent protein catabolic process [GO:0006511] -Q9H0E9 reviewed BRD8_HUMAN Bromodomain-containing protein 8 (Skeletal muscle abundant protein) (Skeletal muscle abundant protein 2) (Thyroid hormone receptor coactivating protein of 120 kDa) (TrCP120) (p120) BRD8 SMAP SMAP2 cell surface receptor signaling pathway [GO:0007166]; cellular response to thyroid hormone stimulus [GO:0097067]; chromatin organization [GO:0006325]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of double-strand break repair via homologous recombination [GO:1905168]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of apoptotic process [GO:0042981]; regulation of cell cycle [GO:0051726]; regulation of double-strand break repair [GO:2000779] -Q9H161 reviewed ALX4_HUMAN Homeobox protein aristaless-like 4 ALX4 KIAA1788 anterior/posterior pattern specification [GO:0009952]; digestive tract development [GO:0048565]; embryonic digit morphogenesis [GO:0042733]; embryonic forelimb morphogenesis [GO:0035115]; embryonic hindlimb morphogenesis [GO:0035116]; embryonic skeletal system morphogenesis [GO:0048704]; hair follicle development [GO:0001942]; muscle organ development [GO:0007517]; post-embryonic development [GO:0009791]; regulation of apoptotic process [GO:0042981]; regulation of transcription by RNA polymerase II [GO:0006357]; roof of mouth development [GO:0060021]; skeletal system development [GO:0001501] -Q9H165 reviewed BC11A_HUMAN B-cell lymphoma/leukemia 11A (BCL-11A) (B-cell CLL/lymphoma 11A) (COUP-TF-interacting protein 1) (Ecotropic viral integration site 9 protein homolog) (EVI-9) (Zinc finger protein 856) BCL11A CTIP1 EVI9 KIAA1809 ZNF856 cellular response to L-glutamate [GO:1905232]; negative regulation of axon extension [GO:0030517]; negative regulation of branching morphogenesis of a nerve [GO:2000173]; negative regulation of collateral sprouting [GO:0048671]; negative regulation of dendrite development [GO:2000171]; negative regulation of dendrite extension [GO:1903860]; negative regulation of neuron projection development [GO:0010977]; negative regulation of neuron remodeling [GO:1904800]; negative regulation of protein homooligomerization [GO:0032463]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of collateral sprouting [GO:0048672]; positive regulation of gene expression [GO:0010628]; positive regulation of neuron projection development [GO:0010976]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein sumoylation [GO:0016925]; regulation of dendrite development [GO:0050773]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9H1B7 reviewed I2BPL_HUMAN Probable E3 ubiquitin-protein ligase IRF2BPL (EC 2.3.2.27) (Enhanced at puberty protein 1) (Interferon regulatory factor 2-binding protein-like) IRF2BPL C14orf4 EAP1 KIAA1865 My039 development of secondary female sexual characteristics [GO:0046543]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system development [GO:0007399]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein ubiquitination [GO:0016567] -Q9H1E3 reviewed NUCKS_HUMAN Nuclear ubiquitous casein and cyclin-dependent kinase substrate 1 (P1) NUCKS1 NUCKS JC7 cellular response to X-ray [GO:0071481]; chromatin organization [GO:0006325]; double-strand break repair via homologous recombination [GO:0000724]; gene conversion [GO:0035822]; interstrand cross-link repair [GO:0036297]; intracellular glucose homeostasis [GO:0001678]; modulation by host of RNA binding by virus [GO:1990968]; modulation by host of viral genome replication [GO:0044827]; modulation by host of viral RNA-binding transcription factor activity [GO:1990969]; positive regulation by host of viral genome replication [GO:0044829]; positive regulation by host of viral transcription [GO:0043923]; positive regulation of insulin receptor signaling pathway [GO:0046628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA replication [GO:0006275]; regulation of DNA strand elongation [GO:0060382]; regulation of insulin receptor signaling pathway [GO:0046626]; replication fork processing [GO:0031297] -Q9H1J5 reviewed WNT8A_HUMAN Protein Wnt-8a (Protein Wnt-8d) WNT8A WNT8D anterior/posterior axis specification [GO:0009948]; canonical Wnt signaling pathway [GO:0060070]; cell fate commitment [GO:0045165]; dorsal/ventral axis specification [GO:0009950]; neural crest cell fate commitment [GO:0014034]; neuron differentiation [GO:0030182]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to retinoic acid [GO:0032526]; secondary palate development [GO:0062009] -Q9H204 reviewed MED28_HUMAN Mediator of RNA polymerase II transcription subunit 28 (Endothelial-derived protein 1) (Mediator complex subunit 28) (Merlin and Grb2-interacting cytoskeletal protein) (Magicin) (Tumor angiogenesis marker EG-1) MED28 EG1 FKSG20 negative regulation of smooth muscle cell differentiation [GO:0051151]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; RNA polymerase II preinitiation complex assembly [GO:0051123]; somatic stem cell population maintenance [GO:0035019] -Q9H293 reviewed IL25_HUMAN Interleukin-25 (IL-25) (Interleukin-17E) (IL-17E) IL25 IL17E UNQ3120/PRO10272 eosinophil differentiation [GO:0030222]; inflammatory response to antigenic stimulus [GO:0002437]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to fungus [GO:0009620]; response to nematode [GO:0009624] -Q9H2F5 reviewed EPC1_HUMAN Enhancer of polycomb homolog 1 EPC1 DNA-templated transcription [GO:0006351]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of gene expression, epigenetic [GO:0045814]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of double-strand break repair via homologous recombination [GO:1905168]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of apoptotic process [GO:0042981]; regulation of cell cycle [GO:0051726]; regulation of double-strand break repair [GO:2000779]; regulation of transcription by RNA polymerase II [GO:0006357]; sperm DNA condensation [GO:0035092]; spermatid development [GO:0007286] -Q9H2S9 reviewed IKZF4_HUMAN Zinc finger protein Eos (Ikaros family zinc finger protein 4) IKZF4 KIAA1782 ZNFN1A4 negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein homooligomerization [GO:0051260]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9H2U1 reviewed DHX36_HUMAN ATP-dependent DNA/RNA helicase DHX36 (EC 3.6.4.12) (EC 3.6.4.13) (DEAD/H box polypeptide 36) (DEAH-box protein 36) (G4-resolvase-1) (G4R1) (MLE-like protein 1) (RNA helicase associated with AU-rich element protein) DHX36 DDX36 KIAA1488 MLEL1 RHAU 3'-UTR-mediated mRNA destabilization [GO:0061158]; cell differentiation [GO:0030154]; cellular response to arsenite ion [GO:1903843]; cellular response to heat [GO:0034605]; cellular response to UV [GO:0034644]; defense response to virus [GO:0051607]; G-quadruplex DNA unwinding [GO:0044806]; innate immune response [GO:0045087]; negative regulation of translation [GO:0017148]; ossification [GO:0001503]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cardioblast differentiation [GO:0051891]; positive regulation of cytoplasmic translation [GO:2000767]; positive regulation of dendritic spine morphogenesis [GO:0061003]; positive regulation of gene expression [GO:0010628]; positive regulation of hematopoietic progenitor cell differentiation [GO:1901534]; positive regulation of interferon-alpha production [GO:0032727]; positive regulation of intracellular mRNA localization [GO:1904582]; positive regulation of mRNA 3'-end processing [GO:0031442]; positive regulation of myeloid dendritic cell cytokine production [GO:0002735]; positive regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay [GO:1900153]; positive regulation of telomere maintenance [GO:0032206]; positive regulation of telomere maintenance via telomere lengthening [GO:1904358]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; regulation of embryonic development [GO:0045995]; regulation of mRNA stability [GO:0043488]; regulation of transcription by RNA polymerase III [GO:0006359]; response to exogenous dsRNA [GO:0043330]; RNA secondary structure unwinding [GO:0010501]; spermatogenesis [GO:0007283]; telomerase RNA stabilization [GO:0090669] -Q9H2W2 reviewed MIXL1_HUMAN Homeobox protein MIXL1 (Homeodomain protein MIX) (hMix) (MIX1 homeobox-like protein 1) (Mix.1 homeobox-like protein) MIXL1 MIXL cell migration involved in gastrulation [GO:0042074]; digestive tract development [GO:0048565]; endoderm development [GO:0007492]; endoderm formation [GO:0001706]; endodermal cell differentiation [GO:0035987]; gastrulation [GO:0007369]; heart development [GO:0007507]; hematopoietic progenitor cell differentiation [GO:0002244]; negative regulation of hematopoietic progenitor cell differentiation [GO:1901533]; positive regulation of mesoderm development [GO:2000382]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9H2X6 reviewed HIPK2_HUMAN Homeodomain-interacting protein kinase 2 (hHIPk2) (EC 2.7.11.1) HIPK2 adult walking behavior [GO:0007628]; anterior/posterior pattern specification [GO:0009952]; cell population proliferation [GO:0008283]; cellular response to hypoxia [GO:0071456]; DNA damage response, signal transduction by p53 class mediator [GO:0030330]; embryonic camera-type eye morphogenesis [GO:0048596]; embryonic retina morphogenesis in camera-type eye [GO:0060059]; epigenetic regulation of gene expression [GO:0040029]; erythrocyte differentiation [GO:0030218]; eye development [GO:0001654]; gene expression [GO:0010467]; intrinsic apoptotic signaling pathway [GO:0097193]; intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:0042771]; iris morphogenesis [GO:0061072]; lens induction in camera-type eye [GO:0060235]; lung morphogenesis [GO:0060425]; negative regulation of BMP signaling pathway [GO:0030514]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of ubiquitin-dependent protein catabolic process [GO:2000059]; neuron apoptotic process [GO:0051402]; neuron differentiation [GO:0030182]; peptidyl-serine phosphorylation [GO:0018105]; peptidyl-threonine phosphorylation [GO:0018107]; PML body organization [GO:0030578]; positive regulation of angiogenesis [GO:0045766]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of JNK cascade [GO:0046330]; positive regulation of protein binding [GO:0032092]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta receptor signaling pathway [GO:0030511]; protein phosphorylation [GO:0006468]; regulation of cell cycle [GO:0051726]; regulation of signal transduction by p53 class mediator [GO:1901796]; respiratory system process [GO:0003016]; retina layer formation [GO:0010842]; SMAD protein signal transduction [GO:0060395]; smoothened signaling pathway [GO:0007224]; thyroid gland development [GO:0030878]; transforming growth factor beta receptor signaling pathway [GO:0007179]; voluntary musculoskeletal movement [GO:0050882] -Q9H3D4 reviewed P63_HUMAN Tumor protein 63 (p63) (Chronic ulcerative stomatitis protein) (CUSP) (Keratinocyte transcription factor KET) (Transformation-related protein 63) (TP63) (Tumor protein p73-like) (p73L) (p40) (p51) TP63 KET P63 P73H P73L TP73L apoptotic process [GO:0006915]; cellular senescence [GO:0090398]; chromatin remodeling [GO:0006338]; cloacal septation [GO:0060197]; cranial skeletal system development [GO:1904888]; determination of adult lifespan [GO:0008340]; DNA damage response [GO:0006974]; ectoderm and mesoderm interaction [GO:0007499]; embryonic forelimb morphogenesis [GO:0035115]; embryonic hindlimb morphogenesis [GO:0035116]; epidermal cell division [GO:0010481]; epithelial cell development [GO:0002064]; establishment of planar polarity [GO:0001736]; establishment of skin barrier [GO:0061436]; female genitalia morphogenesis [GO:0048807]; hair follicle morphogenesis [GO:0031069]; intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:0042771]; keratinocyte differentiation [GO:0030216]; keratinocyte proliferation [GO:0043616]; negative regulation of cellular senescence [GO:2000773]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of intracellular estrogen receptor signaling pathway [GO:0033147]; negative regulation of keratinocyte differentiation [GO:0045617]; negative regulation of mesoderm development [GO:2000381]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron apoptotic process [GO:0051402]; Notch signaling pathway [GO:0007219]; odontogenesis of dentin-containing tooth [GO:0042475]; polarized epithelial cell differentiation [GO:0030859]; positive regulation of apoptotic signaling pathway [GO:2001235]; positive regulation of cell cycle G1/S phase transition [GO:1902808]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of fibroblast apoptotic process [GO:2000271]; positive regulation of keratinocyte proliferation [GO:0010838]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of somatic stem cell population maintenance [GO:1904674]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-anal tail morphogenesis [GO:0036342]; prostatic bud formation [GO:0060513]; protein tetramerization [GO:0051262]; proximal/distal pattern formation [GO:0009954]; regulation of epidermal cell division [GO:0010482]; regulation of transcription by RNA polymerase II [GO:0006357]; skeletal system development [GO:0001501]; skin morphogenesis [GO:0043589]; spermatogenesis [GO:0007283]; squamous basal epithelial stem cell differentiation involved in prostate gland acinus development [GO:0060529]; stem cell proliferation [GO:0072089]; sympathetic nervous system development [GO:0048485]; transcription by RNA polymerase II [GO:0006366] -Q9H3P2 reviewed NELFA_HUMAN Negative elongation factor A (NELF-A) (Wolf-Hirschhorn syndrome candidate 2 protein) NELFA WHSC2 P/OKcl.15 negative regulation of transcription elongation by RNA polymerase II [GO:0034244]; positive regulation of protein modification process [GO:0031401]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9H3R0 reviewed KDM4C_HUMAN Lysine-specific demethylase 4C (EC 1.14.11.66) (Gene amplified in squamous cell carcinoma 1 protein) (GASC-1 protein) (JmjC domain-containing histone demethylation protein 3C) (Jumonji domain-containing protein 2C) ([histone H3]-trimethyl-L-lysine(9) demethylase 4C) KDM4C GASC1 JHDM3C JMJD2C KIAA0780 androgen receptor signaling pathway [GO:0030521]; blastocyst formation [GO:0001825]; chromatin remodeling [GO:0006338]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of androgen receptor signaling pathway [GO:0060765]; regulation of gene expression [GO:0010468]; regulation of stem cell differentiation [GO:2000736]; stem cell population maintenance [GO:0019827] -Q9H4S2 reviewed GSX1_HUMAN GS homeobox 1 (Homeobox protein GSH-1) GSX1 GSH1 adenohypophysis development [GO:0021984]; central nervous system development [GO:0007417]; hypothalamus development [GO:0021854]; neuron differentiation [GO:0030182]; neuron fate commitment [GO:0048663]; positive regulation of transcription by RNA polymerase II [GO:0045944]; spinal cord association neuron differentiation [GO:0021527]; transcription by RNA polymerase II [GO:0006366] -Q9H4X1 reviewed RGCC_HUMAN Regulator of cell cycle RGCC (Response gene to complement 32 protein) (RGC-32) RGCC C13orf15 RGC32 cellular response to hypoxia [GO:0071456]; complement activation [GO:0006956]; fibroblast activation [GO:0072537]; negative regulation of angiogenesis [GO:0016525]; negative regulation of blood vessel endothelial cell migration [GO:0043537]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of cell-cell adhesion mediated by cadherin [GO:2000048]; negative regulation of cytokine production [GO:0001818]; negative regulation of endothelial cell proliferation [GO:0001937]; negative regulation of exit from mitosis [GO:0001100]; negative regulation of fibroblast growth factor production [GO:0090272]; negative regulation of mitotic cell cycle phase transition [GO:1901991]; positive regulation of collagen biosynthetic process [GO:0032967]; positive regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0045737]; positive regulation of cytokine production [GO:0001819]; positive regulation of DNA biosynthetic process [GO:2000573]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of endothelial cell apoptotic process [GO:2000353]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of extracellular matrix assembly [GO:1901203]; positive regulation of extracellular matrix constituent secretion [GO:0003331]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of gene expression [GO:0010628]; positive regulation of mitotic nuclear division [GO:0045840]; positive regulation of stress fiber assembly [GO:0051496]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9H4Z2 reviewed ZN335_HUMAN Zinc finger protein 335 (NRC-interacting factor 1) (NIF-1) ZNF335 brain development [GO:0007420]; brain morphogenesis [GO:0048854]; cerebral cortex neuron differentiation [GO:0021895]; epigenetic regulation of gene expression [GO:0040029]; in utero embryonic development [GO:0001701]; neuron projection morphogenesis [GO:0048812]; positive regulation of lymphocyte proliferation [GO:0050671]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of neurogenesis [GO:0050769]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9H6I2 reviewed SOX17_HUMAN Transcription factor SOX-17 SOX17 angiogenesis [GO:0001525]; cardiac cell fate determination [GO:0060913]; cardiogenic plate morphogenesis [GO:0003142]; cell migration involved in gastrulation [GO:0042074]; cellular response to leukemia inhibitory factor [GO:1990830]; common bile duct development [GO:0061009]; embryonic foregut morphogenesis [GO:0048617]; embryonic heart tube development [GO:0035050]; embryonic heart tube morphogenesis [GO:0003143]; endocardial cell differentiation [GO:0060956]; endocardium formation [GO:0060214]; endoderm formation [GO:0001706]; endodermal cell fate determination [GO:0007493]; endodermal cell fate specification [GO:0001714]; endodermal digestive tract morphogenesis [GO:0061031]; gallbladder development [GO:0061010]; gene expression [GO:0010467]; heart development [GO:0007507]; heart formation [GO:0060914]; heart looping [GO:0001947]; inner cell mass cellular morphogenesis [GO:0001828]; metanephros development [GO:0001656]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cell growth [GO:0030308]; outflow tract morphogenesis [GO:0003151]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of endodermal cell differentiation [GO:1903226]; positive regulation of gene expression [GO:0010628]; positive regulation of protein catabolic process [GO:0045732]; positive regulation of stem cell differentiation [GO:2000738]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein destabilization [GO:0031648]; protein stabilization [GO:0050821]; regulation of cardiac cell fate specification [GO:2000043]; regulation of DNA-templated transcription [GO:0006355]; regulation of embryonic development [GO:0045995]; regulation of stem cell division [GO:2000035]; regulation of stem cell proliferation [GO:0072091]; regulation of transcription by RNA polymerase II [GO:0006357]; rostrocaudal neural tube patterning [GO:0021903]; signal transduction involved in regulation of gene expression [GO:0023019]; spermatogenesis [GO:0007283]; stem cell fate specification [GO:0048866]; ureter development [GO:0072189]; vasculogenesis [GO:0001570]; Wnt signaling pathway [GO:0016055] -Q9H6U6 reviewed BCAS3_HUMAN BCAS3 microtubule associated cell migration factor (Breast carcinoma-amplified sequence 3) (GAOB1) BCAS3 angiogenesis [GO:0001525]; autophagy [GO:0006914]; cell-cell signaling [GO:0007267]; cellular response to estrogen stimulus [GO:0071391]; positive regulation of catalytic activity [GO:0043085]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of actin cytoskeleton organization [GO:0032956]; response to estrogen [GO:0043627]; response to starvation [GO:0042594] -Q9H7B4 reviewed SMYD3_HUMAN Histone-lysine N-methyltransferase SMYD3 (EC 2.1.1.354) (SET and MYND domain-containing protein 3) (Zinc finger MYND domain-containing protein 1) SMYD3 ZMYND1 ZNFN3A1 cellular response to dexamethasone stimulus [GO:0071549]; establishment of protein localization [GO:0045184]; methylation [GO:0032259]; myotube cell development [GO:0014904]; nucleosome assembly [GO:0006334]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9H7Z6 reviewed KAT8_HUMAN Histone acetyltransferase KAT8 (EC 2.3.1.48) (Lysine acetyltransferase 8) (MOZ, YBF2/SAS3, SAS2 and TIP60 protein 1) (MYST-1) (Males-absent on the first protein homolog) (hMOF) (Protein acetyltransferase KAT8) (EC 2.3.1.-) (Protein propionyltransferase KAT8) (EC 2.3.1.-) KAT8 MOF MYST1 PP7073 myeloid cell differentiation [GO:0030099]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of epithelial to mesenchymal transition [GO:0010719]; negative regulation of type I interferon production [GO:0032480]; neurogenesis [GO:0022008]; oogenesis [GO:0048477]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of skeletal muscle satellite cell differentiation [GO:1902726]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; post-embryonic hemopoiesis [GO:0035166]; regulation of autophagy [GO:0010506]; regulation of mitochondrial transcription [GO:1903108]; regulation of mRNA processing [GO:0050684]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription initiation-coupled chromatin remodeling [GO:0045815] -Q9H8N7 reviewed ZN395_HUMAN Zinc finger protein 395 (HD-regulating factor 2) (HDRF-2) (Huntington disease gene regulatory region-binding protein 2) (HD gene regulatory region-binding protein 2) (HDBP-2) (Papillomavirus regulatory factor 1) (PRF-1) (Papillomavirus-binding factor) ZNF395 HDBP2 PBF positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9H944 reviewed MED20_HUMAN Mediator of RNA polymerase II transcription subunit 20 (Mediator complex subunit 20) (TRF-proximal protein homolog) (hTRFP) MED20 TRFP DNA-templated transcription [GO:0006351]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA polymerase II preinitiation complex assembly [GO:0051123]; skeletal muscle cell differentiation [GO:0035914]; transcription by RNA polymerase II [GO:0006366] -Q9H9L7 reviewed AKIR1_HUMAN Akirin-1 AKIRIN1 C1orf108 myoblast migration involved in skeletal muscle regeneration [GO:0014839]; negative regulation of satellite cell differentiation [GO:1902725]; negative regulation of skeletal muscle satellite cell proliferation [GO:1902723]; positive regulation of lamellipodium assembly [GO:0010592]; positive regulation of macrophage chemotaxis [GO:0010759]; positive regulation of myoblast differentiation [GO:0045663]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9H9S0 reviewed NANOG_HUMAN Homeobox protein NANOG (Homeobox transcription factor Nanog) (hNanog) NANOG cell differentiation [GO:0030154]; endodermal cell fate specification [GO:0001714]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell differentiation [GO:0045595]; regulation of DNA-templated transcription [GO:0006355]; regulation of gene expression [GO:0010468]; regulation of transcription by RNA polymerase II [GO:0006357]; somatic stem cell population maintenance [GO:0035019]; stem cell population maintenance [GO:0019827] -Q9HAK2 reviewed COE2_HUMAN Transcription factor COE2 (Early B-cell factor 2) (EBF-2) EBF2 COE2 adipose tissue development [GO:0060612]; brown fat cell differentiation [GO:0050873]; cell fate determination [GO:0001709]; positive regulation of cold-induced thermogenesis [GO:0120162]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9HAP2 reviewed MLXIP_HUMAN MLX-interacting protein (Class E basic helix-loop-helix protein 36) (bHLHe36) (Transcriptional activator MondoA) MLXIP BHLHE36 KIAA0867 MIR MONDOA positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9HAZ2 reviewed PRD16_HUMAN Histone-lysine N-methyltransferase PRDM16 (EC 2.1.1.367) (PR domain zinc finger protein 16) (PR domain-containing protein 16) (Transcription factor MEL1) (MDS1/EVI1-like gene 1) PRDM16 KIAA1675 MEL1 PFM13 brown fat cell differentiation [GO:0050873]; heterochromatin organization [GO:0070828]; methylation [GO:0032259]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of granulocyte differentiation [GO:0030853]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of DNA-templated transcription [GO:0045893]; regulation of cellular respiration [GO:0043457]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9HB65 reviewed ELL3_HUMAN RNA polymerase II elongation factor ELL3 ELL3 DNA-templated transcription elongation [GO:0006354]; intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:0042771]; negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:1902166]; neural precursor cell proliferation [GO:0061351]; positive regulation of DNA-templated transcription, elongation [GO:0032786]; positive regulation of neural precursor cell proliferation [GO:2000179]; positive regulation of neurogenesis [GO:0050769]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; regulation of epithelial to mesenchymal transition [GO:0010717]; snRNA transcription by RNA polymerase II [GO:0042795]; spermatogenesis [GO:0007283]; stem cell differentiation [GO:0048863]; stem cell proliferation [GO:0072089]; transcription by RNA polymerase II [GO:0006366]; transcription elongation by RNA polymerase II [GO:0006368] -Q9HBH7 reviewed BEX1_HUMAN Protein BEX1 (Brain-expressed X-linked protein 1) BEX1 cell differentiation [GO:0030154]; negative regulation of protein ubiquitination [GO:0031397]; nervous system development [GO:0007399]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of transcription by RNA polymerase II [GO:0045944]; signal transduction [GO:0007165] -Q9HBZ2 reviewed ARNT2_HUMAN Aryl hydrocarbon receptor nuclear translocator 2 (ARNT protein 2) (Class E basic helix-loop-helix protein 1) (bHLHe1) ARNT2 BHLHE1 KIAA0307 brain development [GO:0007420]; central nervous system development [GO:0007417]; in utero embryonic development [GO:0001701]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; response to hypoxia [GO:0001666] -Q9HC29 reviewed NOD2_HUMAN Nucleotide-binding oligomerization domain-containing protein 2 (Caspase recruitment domain-containing protein 15) (Inflammatory bowel disease protein 1) NOD2 CARD15 adaptive immune response [GO:0002250]; antibacterial innate immune response [GO:0140367]; biosynthetic process of antibacterial peptides active against Gram-positive bacteria [GO:0002815]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to muramyl dipeptide [GO:0071225]; cellular response to organic cyclic compound [GO:0071407]; cellular response to peptidoglycan [GO:0071224]; defense response [GO:0006952]; defense response to bacterium [GO:0042742]; detection of bacterium [GO:0016045]; detection of biotic stimulus [GO:0009595]; detection of muramyl dipeptide [GO:0032498]; ERK1 and ERK2 cascade [GO:0070371]; establishment of localization in cell [GO:0051649]; host-mediated regulation of intestinal microbiota composition [GO:0048874]; innate immune response [GO:0045087]; innate immune response in mucosa [GO:0002227]; intestinal stem cell homeostasis [GO:0036335]; intracellular signal transduction [GO:0035556]; JNK cascade [GO:0007254]; maintenance of gastrointestinal epithelium [GO:0030277]; negative regulation of inflammatory response to antigenic stimulus [GO:0002862]; negative regulation of interleukin-12 production [GO:0032695]; negative regulation of interleukin-18 production [GO:0032701]; negative regulation of interleukin-2 production [GO:0032703]; negative regulation of macrophage apoptotic process [GO:2000110]; negative regulation of macrophage cytokine production [GO:0010936]; negative regulation of T cell mediated immunity [GO:0002710]; negative regulation of toll-like receptor 2 signaling pathway [GO:0034136]; negative regulation of tumor necrosis factor production [GO:0032720]; negative regulation of type II interferon production [GO:0032689]; nucleotide-binding oligomerization domain containing 2 signaling pathway [GO:0070431]; pattern recognition receptor signaling pathway [GO:0002221]; phagocytosis [GO:0006909]; positive regulation of B cell activation [GO:0050871]; positive regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria [GO:0006965]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cytokine production involved in immune response [GO:0002720]; positive regulation of cytokine production involved in inflammatory response [GO:1900017]; positive regulation of dendritic cell antigen processing and presentation [GO:0002606]; positive regulation of dendritic cell cytokine production [GO:0002732]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of gamma-delta T cell activation [GO:0046645]; positive regulation of humoral immune response mediated by circulating immunoglobulin [GO:0002925]; positive regulation of interleukin-1 beta production [GO:0032731]; positive regulation of interleukin-10 production [GO:0032733]; positive regulation of interleukin-12 production [GO:0032735]; positive regulation of interleukin-17 production [GO:0032740]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of JNK cascade [GO:0046330]; positive regulation of macrophage cytokine production [GO:0060907]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of mitophagy [GO:1901526]; positive regulation of monocyte chemotactic protein-1 production [GO:0071639]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of nitric-oxide synthase biosynthetic process [GO:0051770]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of phagocytosis [GO:0050766]; positive regulation of protein K63-linked ubiquitination [GO:1902523]; positive regulation of stress-activated MAPK cascade [GO:0032874]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of type 2 immune response [GO:0002830]; positive regulation of xenophagy [GO:1904417]; regulation of appetite [GO:0032098]; regulation of inflammatory response [GO:0050727]; regulation of neutrophil chemotaxis [GO:0090022]; response to endoplasmic reticulum stress [GO:0034976]; response to exogenous dsRNA [GO:0043330]; response to muramyl dipeptide [GO:0032495]; response to nutrient [GO:0007584]; stress-activated MAPK cascade [GO:0051403]; temperature homeostasis [GO:0001659]; toll-like receptor 2 signaling pathway [GO:0034134]; xenophagy [GO:0098792] -Q9HCK8 reviewed CHD8_HUMAN Chromodomain-helicase-DNA-binding protein 8 (CHD-8) (EC 3.6.4.12) (ATP-dependent helicase CHD8) (Helicase with SNF2 domain 1) CHD8 HELSNF1 KIAA1564 brain development [GO:0007420]; chromatin remodeling [GO:0006338]; digestive tract development [GO:0048565]; in utero embryonic development [GO:0001701]; mRNA processing [GO:0006397]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of fibroblast apoptotic process [GO:2000270]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription by RNA polymerase III [GO:0045945]; prepulse inhibition [GO:0060134]; social behavior [GO:0035176]; Wnt signaling pathway [GO:0016055] -Q9HCX3 reviewed ZN304_HUMAN Zinc finger protein 304 (KRAB-containing zinc finger protein) ZNF304 angiogenesis [GO:0001525]; chromatin organization [GO:0006325]; integrin-mediated signaling pathway [GO:0007229]; negative regulation of anoikis [GO:2000811]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of angiogenesis [GO:0045766]; positive regulation of cell migration [GO:0030335]; positive regulation of DNA methylation-dependent heterochromatin formation [GO:0090309]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9HD90 reviewed NDF4_HUMAN Neurogenic differentiation factor 4 (NeuroD4) (Class A basic helix-loop-helix protein 4) (bHLHa4) (Protein atonal homolog 3) (ATH-3) (Atoh3) NEUROD4 ATH3 ATOH3 BHLHA4 amacrine cell differentiation [GO:0035881]; axon development [GO:0061564]; camera-type eye development [GO:0043010]; cell fate commitment [GO:0045165]; motor neuron migration [GO:0097475]; neuroblast proliferation [GO:0007405]; Notch signaling pathway [GO:0007219]; oligodendrocyte differentiation [GO:0048709]; positive regulation of cell differentiation [GO:0045597]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9NP59 reviewed S40A1_HUMAN Ferroportin (Ferroportin-1) (Iron-regulated transporter 1) (Solute carrier family 40 member 1) SLC40A1 FPN FPN1 IREG1 SLC11A3 MSTP079 apoptotic process [GO:0006915]; endothelium development [GO:0003158]; establishment of localization in cell [GO:0051649]; intracellular iron ion homeostasis [GO:0006879]; iron ion export across plasma membrane [GO:1903988]; iron ion transmembrane transport [GO:0034755]; lymphocyte homeostasis [GO:0002260]; multicellular organismal-level iron ion homeostasis [GO:0060586]; negative regulation of apoptotic process [GO:0043066]; positive regulation of transcription by RNA polymerase II [GO:0045944]; spleen trabecula formation [GO:0060345]; transcription by RNA polymerase II [GO:0006366] -Q9NP62 reviewed GCM1_HUMAN Chorion-specific transcription factor GCMa (hGCMa) (GCM motif protein 1) (Glial cells missing homolog 1) GCM1 GCMA anatomical structure morphogenesis [GO:0009653]; astrocyte fate commitment [GO:0060018]; branching involved in labyrinthine layer morphogenesis [GO:0060670]; cell differentiation involved in embryonic placenta development [GO:0060706]; gliogenesis [GO:0042063]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of syncytium formation by plasma membrane fusion [GO:0060143]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell differentiation involved in embryonic placenta development [GO:0060800]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; syncytium formation by plasma membrane fusion [GO:0000768]; transcription by RNA polymerase II [GO:0006366] -Q9NP71 reviewed MLXPL_HUMAN Carbohydrate-responsive element-binding protein (ChREBP) (Class D basic helix-loop-helix protein 14) (bHLHd14) (MLX interactor) (MLX-interacting protein-like) (WS basic-helix-loop-helix leucine zipper protein) (WS-bHLH) (Williams-Beuren syndrome chromosomal region 14 protein) MLXIPL BHLHD14 MIO WBSCR14 anatomical structure morphogenesis [GO:0009653]; energy homeostasis [GO:0097009]; fatty acid homeostasis [GO:0055089]; glucose homeostasis [GO:0042593]; glucose mediated signaling pathway [GO:0010255]; lipid biosynthetic process [GO:0008610]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of oxidative phosphorylation [GO:0090324]; negative regulation of peptidyl-serine phosphorylation [GO:0033137]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of fatty acid biosynthetic process [GO:0045723]; positive regulation of glycolytic process [GO:0045821]; positive regulation of lipid biosynthetic process [GO:0046889]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription from RNA polymerase II promoter by glucose [GO:0000432]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; triglyceride homeostasis [GO:0070328] -Q9NPC8 reviewed SIX2_HUMAN Homeobox protein SIX2 (Sine oculis homeobox homolog 2) SIX2 anatomical structure morphogenesis [GO:0009653]; anterior/posterior axis specification [GO:0009948]; cell migration [GO:0016477]; cell population proliferation [GO:0008283]; chondrocyte differentiation [GO:0002062]; condensed mesenchymal cell proliferation [GO:0072137]; embryonic cranial skeleton morphogenesis [GO:0048701]; embryonic digestive tract morphogenesis [GO:0048557]; kidney development [GO:0001822]; mesenchymal cell differentiation involved in kidney development [GO:0072161]; mesenchymal stem cell maintenance involved in nephron morphogenesis [GO:0072038]; mesenchymal stem cell proliferation [GO:0097168]; mesenchymal to epithelial transition involved in metanephros morphogenesis [GO:0003337]; mesodermal cell fate specification [GO:0007501]; middle ear morphogenesis [GO:0042474]; negative regulation of epithelial cell differentiation [GO:0030857]; nephron development [GO:0072006]; nephron morphogenesis [GO:0072028]; positive regulation of chondrocyte proliferation [GO:1902732]; protein import into nucleus [GO:0006606]; regulation of branching involved in ureteric bud morphogenesis [GO:0090189]; regulation of chondrocyte differentiation [GO:0032330]; regulation of ossification [GO:0030278]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9NPF7 reviewed IL23A_HUMAN Interleukin-23 subunit alpha (IL-23 subunit alpha) (IL-23-A) (Interleukin-23 subunit p19) (IL-23p19) IL23A SGRF UNQ2498/PRO5798 defense response to Gram-negative bacterium [GO:0050829]; defense response to virus [GO:0051607]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; negative regulation of interleukin-10 production [GO:0032693]; positive regulation of activated T cell proliferation [GO:0042104]; positive regulation of activation of Janus kinase activity [GO:0010536]; positive regulation of defense response to virus by host [GO:0002230]; positive regulation of granulocyte macrophage colony-stimulating factor production [GO:0032725]; positive regulation of inflammatory response [GO:0050729]; positive regulation of interleukin-10 production [GO:0032733]; positive regulation of interleukin-12 production [GO:0032735]; positive regulation of interleukin-17 production [GO:0032740]; positive regulation of memory T cell differentiation [GO:0043382]; positive regulation of natural killer cell activation [GO:0032816]; positive regulation of natural killer cell proliferation [GO:0032819]; positive regulation of neutrophil chemotaxis [GO:0090023]; positive regulation of NK T cell activation [GO:0051135]; positive regulation of NK T cell proliferation [GO:0051142]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of osteoclast differentiation [GO:0045672]; positive regulation of T cell mediated cytotoxicity [GO:0001916]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 type immune response [GO:0002827]; positive regulation of T-helper 17 cell lineage commitment [GO:2000330]; positive regulation of T-helper 17 type immune response [GO:2000318]; positive regulation of tissue remodeling [GO:0034105]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of type II interferon production [GO:0032729]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; regulation of tyrosine phosphorylation of STAT protein [GO:0042509]; T cell proliferation [GO:0042098]; tissue remodeling [GO:0048771] -Q9NPH9 reviewed IL26_HUMAN Interleukin-26 (IL-26) (Protein AK155) IL26 AK155 cell-cell signaling [GO:0007267]; negative regulation of epithelial cell proliferation [GO:0050680]; positive regulation of cytokine production [GO:0001819]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of receptor signaling pathway via JAK-STAT [GO:0046427]; positive regulation of stress-activated MAPK cascade [GO:0032874]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9NPJ6 reviewed MED4_HUMAN Mediator of RNA polymerase II transcription subunit 4 (Activator-recruited cofactor 36 kDa component) (ARC36) (Mediator complex subunit 4) (TRAP/SMCC/PC2 subunit p36 subunit) (Vitamin D3 receptor-interacting protein complex 36 kDa component) (DRIP36) MED4 ARC36 DRIP36 VDRIP HSPC126 positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA polymerase II preinitiation complex assembly [GO:0051123]; transcription by RNA polymerase II [GO:0006366] -Q9NQ33 reviewed ASCL3_HUMAN Achaete-scute homolog 3 (ASH-3) (hASH3) (Class A basic helix-loop-helix protein 42) (bHLHa42) (bHLH transcriptional regulator Sgn-1) ASCL3 BHLHA42 HASH3 SGN1 positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; salivary gland development [GO:0007431]; sensory epithelium regeneration [GO:0070654]; tissue homeostasis [GO:0001894] -Q9NQ87 reviewed HEYL_HUMAN Hairy/enhancer-of-split related with YRPW motif-like protein (hHeyL) (Class B basic helix-loop-helix protein 33) (bHLHb33) (Hairy-related transcription factor 3) (HRT-3) (hHRT3) HEYL BHLHB33 HRT3 anterior/posterior pattern specification [GO:0009952]; aortic valve morphogenesis [GO:0003180]; atrioventricular valve morphogenesis [GO:0003181]; cardiac epithelial to mesenchymal transition [GO:0060317]; cardiac ventricle morphogenesis [GO:0003208]; cellular response to BMP stimulus [GO:0071773]; circulatory system development [GO:0072359]; endocardial cushion morphogenesis [GO:0003203]; epithelial to mesenchymal transition involved in endocardial cushion formation [GO:0003198]; glomerulus development [GO:0032835]; mesenchymal cell development [GO:0014031]; negative regulation of androgen receptor signaling pathway [GO:0060766]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of gene expression [GO:0010629]; Notch signaling pathway [GO:0007219]; outflow tract morphogenesis [GO:0003151]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proximal tubule development [GO:0072014]; pulmonary valve morphogenesis [GO:0003184]; regulation of neurogenesis [GO:0050767]; regulation of transcription by RNA polymerase II [GO:0006357]; skeletal muscle cell differentiation [GO:0035914]; ventricular septum morphogenesis [GO:0060412] -Q9NQB0 reviewed TF7L2_HUMAN Transcription factor 7-like 2 (HMG box transcription factor 4) (T-cell-specific transcription factor 4) (T-cell factor 4) (TCF-4) (hTCF-4) TCF7L2 TCF4 blood vessel development [GO:0001568]; canonical Wnt signaling pathway [GO:0060070]; fat cell differentiation [GO:0045444]; glucose homeostasis [GO:0042593]; maintenance of DNA repeat elements [GO:0043570]; myoblast fate commitment [GO:0048625]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of extrinsic apoptotic signaling pathway [GO:2001237]; negative regulation of gluconeogenesis [GO:0045721]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of type B pancreatic cell apoptotic process [GO:2000675]; pancreas development [GO:0031016]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of heparan sulfate proteoglycan biosynthetic process [GO:0010909]; positive regulation of insulin secretion [GO:0032024]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of protein binding [GO:0032092]; positive regulation of protein localization to nucleus [GO:1900182]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of hormone metabolic process [GO:0032350]; regulation of smooth muscle cell proliferation [GO:0048660]; regulation of transcription by RNA polymerase II [GO:0006357]; response to glucose [GO:0009749] -Q9NQG5 reviewed RPR1B_HUMAN Regulation of nuclear pre-mRNA domain-containing protein 1B (Cell cycle-related and expression-elevated protein in tumor) RPRD1B C20orf77 CREPT mRNA 3'-end processing [GO:0031124]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell cycle process [GO:0010564]; RNA polymerase II promoter clearance [GO:0001111] -Q9NQV6 reviewed PRD10_HUMAN PR domain zinc finger protein 10 (EC 2.1.1.-) (PR domain-containing protein 10) (Tristanin) PRDM10 KIAA1231 PFM7 TRIS methylation [GO:0032259]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9NQX1 reviewed PRDM5_HUMAN PR domain zinc finger protein 5 (EC 2.1.1.-) (PR domain-containing protein 5) PRDM5 PFM2 cellular response to leukemia inhibitory factor [GO:1990830]; chromatin organization [GO:0006325]; methylation [GO:0032259]; mitotic cell cycle [GO:0000278]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of extracellular matrix organization [GO:1903053] -Q9NQZ8 reviewed ZNF71_HUMAN Endothelial zinc finger protein induced by tumor necrosis factor alpha (Zinc finger protein 71) ZNF71 EZFIT regulation of transcription by RNA polymerase II [GO:0006357] -Q9NR30 reviewed DDX21_HUMAN Nucleolar RNA helicase 2 (EC 3.6.4.13) (DEAD box protein 21) (Gu-alpha) (Nucleolar RNA helicase Gu) (Nucleolar RNA helicase II) (RH II/Gu) DDX21 chromatin remodeling [GO:0006338]; defense response to virus [GO:0051607]; innate immune response [GO:0045087]; negative regulation of transcription by RNA polymerase I [GO:0016479]; osteoblast differentiation [GO:0001649]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of myeloid dendritic cell cytokine production [GO:0002735]; positive regulation of transcription by RNA polymerase I [GO:0045943]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription by RNA polymerase III [GO:0045945]; R-loop processing [GO:0062176]; response to exogenous dsRNA [GO:0043330]; rRNA processing [GO:0006364]; transcription by RNA polymerase II [GO:0006366] -Q9NR48 reviewed ASH1L_HUMAN Histone-lysine N-methyltransferase ASH1L (EC 2.1.1.359) (EC 2.1.1.367) (ASH1-like protein) (huASH1) (Absent small and homeotic disks protein 1 homolog) (Lysine N-methyltransferase 2H) ASH1L KIAA1420 KMT2H decidualization [GO:0046697]; flagellated sperm motility [GO:0030317]; inflammatory response [GO:0006954]; MAPK cascade [GO:0000165]; methylation [GO:0032259]; negative regulation of acute inflammatory response [GO:0002674]; negative regulation of MAPK cascade [GO:0043409]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-embryonic development [GO:0009791]; regulation of DNA-templated transcription [GO:0006355]; single fertilization [GO:0007338]; skeletal system development [GO:0001501]; tarsal gland development [GO:1903699]; transcription by RNA polymerase II [GO:0006366]; uterine gland development [GO:1903709]; uterus morphogenesis [GO:0061038] -Q9NR96 reviewed TLR9_HUMAN Toll-like receptor 9 (CD antigen CD289) TLR9 UNQ5798/PRO19605 canonical NF-kappaB signal transduction [GO:0007249]; cellular response to chloroquine [GO:1902350]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to metal ion [GO:0071248]; defense response to bacterium [GO:0042742]; defense response to Gram-negative bacterium [GO:0050829]; defense response to virus [GO:0051607]; detection of molecule of bacterial origin [GO:0032490]; innate immune response [GO:0045087]; maintenance of gastrointestinal epithelium [GO:0030277]; male gonad development [GO:0008584]; microglial cell activation [GO:0001774]; MyD88-dependent toll-like receptor signaling pathway [GO:0002755]; negative regulation of ATPase-coupled calcium transmembrane transporter activity [GO:1901895]; negative regulation of ERK1 and ERK2 cascade [GO:0070373]; positive regulation of autophagy [GO:0010508]; positive regulation of B cell activation [GO:0050871]; positive regulation of B cell proliferation [GO:0030890]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of chemokine production [GO:0032722]; positive regulation of gene expression [GO:0010628]; positive regulation of granulocyte macrophage colony-stimulating factor production [GO:0032725]; positive regulation of immunoglobulin production [GO:0002639]; positive regulation of inflammatory response [GO:0050729]; positive regulation of interferon-alpha production [GO:0032727]; positive regulation of interferon-beta production [GO:0032728]; positive regulation of interleukin-10 production [GO:0032733]; positive regulation of interleukin-12 production [GO:0032735]; positive regulation of interleukin-18 production [GO:0032741]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of intestinal epithelial cell development [GO:1905300]; positive regulation of JNK cascade [GO:0046330]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of toll-like receptor 9 signaling pathway [GO:0034165]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of type II interferon production [GO:0032729]; regulation of B cell differentiation [GO:0045577]; regulation of dendritic cell cytokine production [GO:0002730]; regulation of protein phosphorylation [GO:0001932]; regulation of toll-like receptor 9 signaling pathway [GO:0034163]; toll-like receptor 9 signaling pathway [GO:0034162]; toll-like receptor signaling pathway [GO:0002224] -Q9NS37 reviewed ZHANG_HUMAN CREB/ATF bZIP transcription factor (Host cell factor-binding transcription factor Zhangfei) (HCF-binding transcription factor Zhangfei) CREBZF ZF ATF6-mediated unfolded protein response [GO:0036500]; integrated stress response signaling [GO:0140467]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of gene expression, epigenetic [GO:0045814]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-binding transcription factor activity [GO:0051090]; regulation of transcription by RNA polymerase II [GO:0006357]; response to virus [GO:0009615] -Q9NSC2 reviewed SALL1_HUMAN Sal-like protein 1 (Spalt-like transcription factor 1) (Zinc finger protein 794) (Zinc finger protein SALL1) (Zinc finger protein Spalt-1) (HSal1) (Sal-1) SALL1 SAL1 ZNF794 adrenal gland development [GO:0030325]; branching involved in ureteric bud morphogenesis [GO:0001658]; embryonic digestive tract development [GO:0048566]; embryonic digit morphogenesis [GO:0042733]; gonad development [GO:0008406]; heart development [GO:0007507]; inductive cell-cell signaling [GO:0031129]; kidney development [GO:0001822]; kidney epithelium development [GO:0072073]; limb development [GO:0060173]; mesenchymal to epithelial transition involved in metanephros morphogenesis [GO:0003337]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; olfactory bulb interneuron differentiation [GO:0021889]; olfactory bulb mitral cell layer development [GO:0061034]; olfactory nerve development [GO:0021553]; pituitary gland development [GO:0021983]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of Wnt signaling pathway [GO:0030177]; regulation of transcription by RNA polymerase II [GO:0006357]; ureteric bud development [GO:0001657]; ureteric bud invasion [GO:0072092]; ventricular septum development [GO:0003281] -Q9NTW7 reviewed ZF64B_HUMAN Zinc finger protein 64 (Zfp-64) (Zinc finger protein 338) ZFP64 ZNF338 mesenchymal cell differentiation [GO:0048762]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9NVC6 reviewed MED17_HUMAN Mediator of RNA polymerase II transcription subunit 17 (Activator-recruited cofactor 77 kDa component) (ARC77) (Cofactor required for Sp1 transcriptional activation subunit 6) (CRSP complex subunit 6) (Mediator complex subunit 17) (Thyroid hormone receptor-associated protein complex 80 kDa component) (Trap80) (Transcriptional coactivator CRSP77) (Vitamin D3 receptor-interacting protein complex 80 kDa component) (DRIP80) MED17 ARC77 CRSP6 DRIP77 DRIP80 TRAP80 positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; protein ubiquitination [GO:0016567]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA polymerase II preinitiation complex assembly [GO:0051123]; somatic stem cell population maintenance [GO:0035019]; transcription initiation at RNA polymerase II promoter [GO:0006367] -Q9NVD3 reviewed SETD4_HUMAN SET domain-containing protein 4 (EC 2.1.1.-) (EC 2.1.1.364) SETD4 C21orf18 C21orf27 chromatin remodeling [GO:0006338]; inflammatory response [GO:0006954]; methylation [GO:0032259]; positive regulation of inflammatory response [GO:0050729]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; regulation of cell proliferation in bone marrow [GO:0071863] -Q9NX70 reviewed MED29_HUMAN Mediator of RNA polymerase II transcription subunit 29 (Intersex-like protein) (Mediator complex subunit 29) MED29 IXL positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA polymerase II preinitiation complex assembly [GO:0051123] -Q9NXR8 reviewed ING3_HUMAN Inhibitor of growth protein 3 (p47ING3) ING3 HSPC301 positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of double-strand break repair via homologous recombination [GO:1905168]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of apoptotic process [GO:0042981]; regulation of cell cycle [GO:0051726]; regulation of DNA-templated transcription [GO:0006355]; regulation of double-strand break repair [GO:2000779] -Q9NYD6 reviewed HXC10_HUMAN Homeobox protein Hox-C10 (Homeobox protein Hox-3I) HOXC10 HOX3I anterior/posterior pattern specification [GO:0009952]; embryonic limb morphogenesis [GO:0030326]; negative regulation of cold-induced thermogenesis [GO:0120163]; neuromuscular process [GO:0050905]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proximal/distal pattern formation [GO:0009954]; regulation of transcription by RNA polymerase II [GO:0006357]; skeletal system development [GO:0001501]; spinal cord motor neuron cell fate specification [GO:0021520] -Q9NYF8 reviewed BCLF1_HUMAN Bcl-2-associated transcription factor 1 (Btf) (BCLAF1 and THRAP3 family member 1) BCLAF1 BTF KIAA0164 apoptotic process [GO:0006915]; cellular response to leukemia inhibitory factor [GO:1990830]; DNA damage response [GO:0006974]; negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of apoptotic process [GO:0043065]; positive regulation of DNA-templated transcription initiation [GO:2000144]; positive regulation of intrinsic apoptotic signaling pathway [GO:2001244]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9NYK1 reviewed TLR7_HUMAN Toll-like receptor 7 TLR7 UNQ248/PRO285 canonical NF-kappaB signal transduction [GO:0007249]; cellular response to mechanical stimulus [GO:0071260]; cellular response to virus [GO:0098586]; defense response to virus [GO:0051607]; I-kappaB phosphorylation [GO:0007252]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; JNK cascade [GO:0007254]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of chemokine production [GO:0032722]; positive regulation of inflammatory response [GO:0050729]; positive regulation of interferon-alpha production [GO:0032727]; positive regulation of interferon-beta production [GO:0032728]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of macrophage cytokine production [GO:0060907]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type II interferon production [GO:0032729]; regulation of protein phosphorylation [GO:0001932]; response to cGMP [GO:0070305]; toll-like receptor 7 signaling pathway [GO:0034154]; toll-like receptor signaling pathway [GO:0002224] -Q9NYV4 reviewed CDK12_HUMAN Cyclin-dependent kinase 12 (EC 2.7.11.22) (EC 2.7.11.23) (Cdc2-related kinase, arginine/serine-rich) (CrkRS) (Cell division cycle 2-related protein kinase 7) (CDC2-related protein kinase 7) (Cell division protein kinase 12) (hCDK12) CDK12 CRK7 CRKRS KIAA0904 mRNA processing [GO:0006397]; negative regulation of stem cell differentiation [GO:2000737]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; protein autophosphorylation [GO:0046777]; regulation of MAP kinase activity [GO:0043405]; RNA splicing [GO:0008380]; transcription by RNA polymerase II [GO:0006366] -Q9NZC4 reviewed EHF_HUMAN ETS homologous factor (hEHF) (ETS domain-containing transcription factor) (Epithelium-specific Ets transcription factor 3) (ESE-3) EHF ESE3 ESE3B ESEJ epithelial cell differentiation [GO:0030855]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9NZC7 reviewed WWOX_HUMAN WW domain-containing oxidoreductase (EC 1.1.1.-) (Fragile site FRA16D oxidoreductase) (Short chain dehydrogenase/reductase family 41C member 1) WWOX FOR SDR41C1 WOX1 cellular response to transforming growth factor beta stimulus [GO:0071560]; extrinsic apoptotic signaling pathway [GO:0097191]; intrinsic apoptotic signaling pathway by p53 class mediator [GO:0072332]; negative regulation of Wnt signaling pathway [GO:0030178]; osteoblast differentiation [GO:0001649]; positive regulation of extrinsic apoptotic signaling pathway [GO:2001238]; positive regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001241]; positive regulation of transcription by RNA polymerase II [GO:0045944]; skeletal system morphogenesis [GO:0048705]; Wnt signaling pathway [GO:0016055] -Q9NZI5 reviewed GRHL1_HUMAN Grainyhead-like protein 1 homolog (Mammalian grainyhead) (NH32) (Transcription factor CP2-like 2) (Transcription factor LBP-32) GRHL1 LBP32 MGR TFCP2L2 desmosome organization [GO:0002934]; epidermis development [GO:0008544]; establishment of skin barrier [GO:0061436]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of keratinocyte differentiation [GO:0045616]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9NZI6 reviewed TF2L1_HUMAN Transcription factor CP2-like protein 1 (CP2-related transcriptional repressor 1) (CRTR-1) (Transcription factor LBP-9) TFCP2L1 CRTR1 LBP9 cell morphogenesis [GO:0000902]; cytoplasm organization [GO:0007028]; determination of adult lifespan [GO:0008340]; epithelial cell maturation [GO:0002070]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of growth [GO:0045927]; regulation of transcription by RNA polymerase II [GO:0006357]; salivary gland development [GO:0007431] -Q9NZI7 reviewed UBIP1_HUMAN Upstream-binding protein 1 (Transcription factor LBP-1) UBP1 LBP1 angiogenesis [GO:0001525]; negative regulation of viral transcription [GO:0032897]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9NZL3 reviewed ZN224_HUMAN Zinc finger protein 224 (Bone marrow zinc finger 2) (BMZF-2) (Zinc finger protein 233) (Zinc finger protein 255) (Zinc finger protein 27) (Zinc finger protein KOX22) ZNF224 BMZF2 KOX22 ZNF233 ZNF255 ZNF27 negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9P086 reviewed MED11_HUMAN Mediator of RNA polymerase II transcription subunit 11 (Mediator complex subunit 11) MED11 HSPC296 positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; protein ubiquitination [GO:0016567]; RNA polymerase II preinitiation complex assembly [GO:0051123] -Q9P0K8 reviewed FOXJ2_HUMAN Forkhead box protein J2 (Fork head homologous X) FOXJ2 FHX cell differentiation [GO:0030154]; male meiosis I [GO:0007141]; negative regulation of angiogenesis [GO:0016525]; negative regulation of blood vessel endothelial cell differentiation [GO:0110059]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular associated smooth muscle cell proliferation [GO:1904707]; regulation of transcription by RNA polymerase II [GO:0006357]; spermatogenesis [GO:0007283] -Q9P0U3 reviewed SENP1_HUMAN Sentrin-specific protease 1 (EC 3.4.22.-) (Sentrin/SUMO-specific protease SENP1) SENP1 activation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0006919]; apoptotic signaling pathway [GO:0097190]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein desumoylation [GO:0016926]; protein sumoylation [GO:0016925]; proteolysis [GO:0006508]; regulation of mRNA stability [GO:0043488] -Q9P1Z2 reviewed CACO1_HUMAN Calcium-binding and coiled-coil domain-containing protein 1 (Calphoglin) (Coiled-coil coactivator protein) (Sarcoma antigen NY-SAR-3) CALCOCO1 KIAA1536 PP13275 UNQ2436/PRO4996 intracellular steroid hormone receptor signaling pathway [GO:0030518]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; signal transduction [GO:0007165]; Wnt signaling pathway [GO:0016055] -Q9P243 reviewed ZFAT_HUMAN Zinc finger protein ZFAT (Zinc finger gene in AITD susceptibility region) (Zinc finger protein 406) ZFAT KIAA1485 ZFAT1 ZNF406 hematopoietic progenitor cell differentiation [GO:0002244]; regulation of DNA-templated transcription [GO:0006355]; spongiotrophoblast layer development [GO:0060712] -Q9P2D1 reviewed CHD7_HUMAN Chromodomain-helicase-DNA-binding protein 7 (CHD-7) (EC 3.6.4.12) (ATP-dependent helicase CHD7) CHD7 KIAA1416 adult heart development [GO:0007512]; adult walking behavior [GO:0007628]; aorta morphogenesis [GO:0035909]; atrioventricular canal development [GO:0036302]; blood circulation [GO:0008015]; blood vessel remodeling [GO:0001974]; cardiac septum morphogenesis [GO:0060411]; central nervous system development [GO:0007417]; chordate embryonic development [GO:0043009]; chromatin remodeling [GO:0006338]; cognition [GO:0050890]; cranial nerve development [GO:0021545]; embryonic hindlimb morphogenesis [GO:0035116]; epithelium development [GO:0060429]; face development [GO:0060324]; female genitalia development [GO:0030540]; genitalia development [GO:0048806]; heart morphogenesis [GO:0003007]; in utero embryonic development [GO:0001701]; inner ear morphogenesis [GO:0042472]; innervation [GO:0060384]; limb development [GO:0060173]; nose development [GO:0043584]; olfactory behavior [GO:0042048]; olfactory bulb development [GO:0021772]; olfactory nerve development [GO:0021553]; positive regulation of multicellular organism growth [GO:0040018]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of gene expression [GO:0010468]; regulation of growth hormone secretion [GO:0060123]; regulation of neurogenesis [GO:0050767]; regulation of release of sequestered calcium ion into cytosol by sarcoplasmic reticulum [GO:0010880]; response to bacterium [GO:0009617]; retina development in camera-type eye [GO:0060041]; right ventricular compact myocardium morphogenesis [GO:0003226]; rRNA processing [GO:0006364]; secondary palate development [GO:0062009]; semicircular canal morphogenesis [GO:0048752]; sensory perception of sound [GO:0007605]; skeletal system development [GO:0001501]; T cell differentiation [GO:0030217]; transcription by RNA polymerase II [GO:0006366]; ventricular trabecula myocardium morphogenesis [GO:0003222] -Q9P2F9 reviewed ZN319_HUMAN Zinc finger protein 319 ZNF319 KIAA1388 regulation of transcription by RNA polymerase II [GO:0006357] -Q9P2N6 reviewed KANL3_HUMAN KAT8 regulatory NSL complex subunit 3 (NSL complex protein NSL3) (Non-specific lethal 3 homolog) (Serum inhibited-related protein) (Testis development protein PRTD) KANSL3 KIAA1310 NSL3 PRTD SI1 chromatin organization [GO:0006325]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of mitochondrial transcription [GO:1903108] -Q9P2Y4 reviewed ZN219_HUMAN Zinc finger protein 219 ZNF219 limb bud formation [GO:0060174]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of chondrocyte differentiation [GO:0032332]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355] -Q9UBC0 reviewed HNF6_HUMAN Hepatocyte nuclear factor 6 (HNF-6) (One cut domain family member 1) (One cut homeobox 1) ONECUT1 HNF6 HNF6A anatomical structure morphogenesis [GO:0009653]; B cell differentiation [GO:0030183]; cell fate commitment [GO:0045165]; cell migration [GO:0016477]; cilium assembly [GO:0060271]; endoderm development [GO:0007492]; epithelial cell development [GO:0002064]; glucose metabolic process [GO:0006006]; liver development [GO:0001889]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; Notch signaling pathway [GO:0007219]; pancreatic A cell differentiation [GO:0003310]; pancreatic D cell differentiation [GO:0003311]; positive regulation of cell migration [GO:0030335]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell-matrix adhesion [GO:0001952]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; spleen development [GO:0048536]; transforming growth factor beta receptor signaling pathway [GO:0007179]; type B pancreatic cell differentiation [GO:0003309] -Q9UBK2 reviewed PRGC1_HUMAN Peroxisome proliferator-activated receptor gamma coactivator 1-alpha (PGC-1-alpha) (PPAR-gamma coactivator 1-alpha) (PPARGC-1-alpha) (Ligand effect modulator 6) PPARGC1A LEM6 PGC1 PGC1A PPARGC1 adipose tissue development [GO:0060612]; brown fat cell differentiation [GO:0050873]; cellular respiration [GO:0045333]; cellular response to oxidative stress [GO:0034599]; circadian regulation of gene expression [GO:0032922]; digestion [GO:0007586]; energy homeostasis [GO:0097009]; fatty acid oxidation [GO:0019395]; gluconeogenesis [GO:0006094]; intracellular glucose homeostasis [GO:0001678]; mitochondrion organization [GO:0007005]; mRNA processing [GO:0006397]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of smooth muscle cell proliferation [GO:0048662]; neuron apoptotic process [GO:0051402]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of fatty acid oxidation [GO:0046321]; positive regulation of gene expression [GO:0010628]; positive regulation of gluconeogenesis [GO:0045722]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein stabilization [GO:0050821]; protein-containing complex assembly [GO:0065003]; regulation of circadian rhythm [GO:0042752]; regulation of DNA-templated transcription [GO:0006355]; respiratory electron transport chain [GO:0022904]; response to dietary excess [GO:0002021]; response to muscle activity [GO:0014850]; response to starvation [GO:0042594]; RNA splicing [GO:0008380]; temperature homeostasis [GO:0001659]; transcription initiation at RNA polymerase II promoter [GO:0006367] -Q9UBL3 reviewed ASH2L_HUMAN Set1/Ash2 histone methyltransferase complex subunit ASH2 (ASH2-like protein) ASH2L ASH2L1 DNA damage response [GO:0006974]; hemopoiesis [GO:0030097]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to estrogen [GO:0043627]; transcription initiation-coupled chromatin remodeling [GO:0045815] -Q9UBP5 reviewed HEY2_HUMAN Hairy/enhancer-of-split related with YRPW motif protein 2 (Cardiovascular helix-loop-helix factor 1) (hCHF1) (Class B basic helix-loop-helix protein 32) (bHLHb32) (HES-related repressor protein 2) (Hairy and enhancer of split-related protein 2) (HESR-2) (Hairy-related transcription factor 2) (HRT-2) (hHRT2) (Protein gridlock homolog) HEY2 BHLHB32 CHF1 GRL HERP HERP1 HRT2 anterior/posterior axis specification [GO:0009948]; anterior/posterior pattern specification [GO:0009952]; aortic valve morphogenesis [GO:0003180]; arterial endothelial cell differentiation [GO:0060842]; ascending aorta morphogenesis [GO:0035910]; atrial septum morphogenesis [GO:0060413]; cardiac conduction system development [GO:0003161]; cardiac epithelial to mesenchymal transition [GO:0060317]; cardiac left ventricle morphogenesis [GO:0003214]; cardiac muscle cell apoptotic process [GO:0010659]; cardiac muscle cell proliferation [GO:0060038]; cardiac muscle hypertrophy in response to stress [GO:0014898]; cardiac right ventricle morphogenesis [GO:0003215]; cardiac septum morphogenesis [GO:0060411]; cardiac vascular smooth muscle cell development [GO:0060948]; cardiac ventricle morphogenesis [GO:0003208]; cell fate commitment [GO:0045165]; circulatory system development [GO:0072359]; cochlea development [GO:0090102]; coronary vasculature morphogenesis [GO:0060977]; dorsal aorta morphogenesis [GO:0035912]; endocardial cushion to mesenchymal transition involved in heart valve formation [GO:0003199]; epithelial to mesenchymal transition involved in endocardial cushion formation [GO:0003198]; heart trabecula formation [GO:0060347]; labyrinthine layer blood vessel development [GO:0060716]; mesenchymal cell development [GO:0014031]; muscular septum morphogenesis [GO:0003150]; negative regulation of biomineral tissue development [GO:0070168]; negative regulation of cardiac muscle cell apoptotic process [GO:0010667]; negative regulation of cardiac vascular smooth muscle cell differentiation [GO:2000723]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of gene expression [GO:0010629]; negative regulation of Notch signaling pathway [GO:0045746]; negative regulation of smooth muscle cell differentiation [GO:0051151]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transcription initiation by RNA polymerase II [GO:0060633]; negative regulation of transcription regulatory region DNA binding [GO:2000678]; Notch signaling pathway [GO:0007219]; outflow tract morphogenesis [GO:0003151]; positive regulation of cardiac muscle cell proliferation [GO:0060045]; positive regulation of heart rate [GO:0010460]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein-DNA complex assembly [GO:0065004]; pulmonary artery morphogenesis [GO:0061156]; pulmonary valve morphogenesis [GO:0003184]; regulation of inner ear auditory receptor cell differentiation [GO:0045607]; regulation of neurogenesis [GO:0050767]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of vasculogenesis [GO:2001212]; smooth muscle cell differentiation [GO:0051145]; tricuspid valve formation [GO:0003195]; tricuspid valve morphogenesis [GO:0003186]; umbilical cord morphogenesis [GO:0036304]; vascular associated smooth muscle cell development [GO:0097084]; vasculogenesis [GO:0001570]; ventricular cardiac muscle cell development [GO:0055015]; ventricular septum morphogenesis [GO:0060412]; ventricular trabecula myocardium morphogenesis [GO:0003222] -Q9UBR4 reviewed LHX3_HUMAN LIM/homeobox protein Lhx3 (LIM homeobox protein 3) LHX3 animal organ morphogenesis [GO:0009887]; apoptotic process [GO:0006915]; inner ear development [GO:0048839]; lung development [GO:0030324]; medial motor column neuron differentiation [GO:0021526]; motor neuron axon guidance [GO:0008045]; negative regulation of apoptotic process [GO:0043066]; neuron differentiation [GO:0030182]; placenta development [GO:0001890]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; prolactin secreting cell differentiation [GO:0060127]; regulation of transcription by RNA polymerase II [GO:0006357]; somatotropin secreting cell differentiation [GO:0060126]; spinal cord association neuron differentiation [GO:0021527]; spinal cord motor neuron cell fate specification [GO:0021520]; thyroid-stimulating hormone-secreting cell differentiation [GO:0060129]; ventral spinal cord interneuron specification [GO:0021521] -Q9UBX2 reviewed DUX4_HUMAN Double homeobox protein 4 (Double homeobox protein 10) DUX4 DUX10 apoptotic process [GO:0006915]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of G0 to G1 transition [GO:0070317]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9UDV6 reviewed ZN212_HUMAN Zinc finger protein 212 (Zinc finger protein C2H2-150) ZNF212 ZNFC150 dendrite development [GO:0016358]; general adaptation syndrome, behavioral process [GO:0051867]; neuromuscular process controlling balance [GO:0050885]; neuron apoptotic process [GO:0051402]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; response to alcohol [GO:0097305]; walking behavior [GO:0090659] -Q9UEG4 reviewed ZN629_HUMAN Zinc finger protein 629 (Zinc finger protein 65) ZNF629 KIAA0326 ZNF65 regulation of transcription by RNA polymerase II [GO:0006357] -Q9UGU0 reviewed TCF20_HUMAN Transcription factor 20 (TCF-20) (Nuclear factor SPBP) (Protein AR1) (Stromelysin-1 PDGF-responsive element-binding protein) (SPRE-binding protein) TCF20 KIAA0292 SPBP positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9UH92 reviewed MLX_HUMAN Max-like protein X (Class D basic helix-loop-helix protein 13) (bHLHd13) (Max-like bHLHZip protein) (Protein BigMax) (Transcription factor-like protein 4) MLX BHLHD13 TCFL4 negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9UHD2 reviewed TBK1_HUMAN Serine/threonine-protein kinase TBK1 (EC 2.7.11.1) (NF-kappa-B-activating kinase) (T2K) (TANK-binding kinase 1) TBK1 NAK activation of innate immune response [GO:0002218]; antiviral innate immune response [GO:0140374]; canonical NF-kappaB signal transduction [GO:0007249]; cGAS/STING signaling pathway [GO:0140896]; cytoplasmic pattern recognition receptor signaling pathway [GO:0002753]; defense response to Gram-positive bacterium [GO:0050830]; defense response to virus [GO:0051607]; dendritic cell proliferation [GO:0044565]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; negative regulation of gene expression [GO:0010629]; negative regulation of TORC1 signaling [GO:1904262]; peptidyl-serine phosphorylation [GO:0018105]; peptidyl-threonine phosphorylation [GO:0018107]; positive regulation of autophagy [GO:0010508]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of interferon-alpha production [GO:0032727]; positive regulation of interferon-beta production [GO:0032728]; positive regulation of macroautophagy [GO:0016239]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of TORC1 signaling [GO:1904263]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type I interferon production [GO:0032481]; positive regulation of type I interferon-mediated signaling pathway [GO:0060340]; positive regulation of xenophagy [GO:1904417]; protein phosphorylation [GO:0006468]; regulation of type I interferon production [GO:0032479]; response to virus [GO:0009615]; toll-like receptor 4 signaling pathway [GO:0034142]; type I interferon-mediated signaling pathway [GO:0060337] -Q9UHK0 reviewed NUFP1_HUMAN FMR1-interacting protein NUFIP1 (Nuclear FMR1-interacting protein 1) (Nuclear FMRP-interacting protein 1) NUFIP1 box C/D snoRNP assembly [GO:0000492]; positive regulation of transcription by RNA polymerase II [GO:0045944]; RNA processing [GO:0006396] -Q9UHV2 reviewed SRTD1_HUMAN SERTA domain-containing protein 1 (CDK4-binding protein p34SEI1) (SEI-1) (p34(SEI-1)) (Transcriptional regulator interacting with the PHD-bromodomain 1) (TRIP-Br1) SERTAD1 SEI1 TRIPBR1 positive regulation of cell population proliferation [GO:0008284]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0000079] -Q9UHV7 reviewed MED13_HUMAN Mediator of RNA polymerase II transcription subunit 13 (Activator-recruited cofactor 250 kDa component) (ARC250) (Mediator complex subunit 13) (Thyroid hormone receptor-associated protein 1) (Thyroid hormone receptor-associated protein complex 240 kDa component) (Trap240) (Vitamin D3 receptor-interacting protein complex component DRIP250) (DRIP250) MED13 ARC250 KIAA0593 THRAP1 TRAP240 cholesterol homeostasis [GO:0042632]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; triglyceride homeostasis [GO:0070328] -Q9UID6 reviewed ZN639_HUMAN Zinc finger protein 639 (Zinc finger protein ANC_2H01) (Zinc finger protein ZASC1) ZNF639 ZASC1 negative regulation by host of viral transcription [GO:0043922]; negative regulation of DNA-templated transcription [GO:0045892]; positive regulation by host of viral transcription [GO:0043923]; positive regulation of cell growth [GO:0030307]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; symbiont entry into host cell [GO:0046718] -Q9UIG0 reviewed BAZ1B_HUMAN Tyrosine-protein kinase BAZ1B (EC 2.7.10.2) (Bromodomain adjacent to zinc finger domain protein 1B) (Williams syndrome transcription factor) (Williams-Beuren syndrome chromosomal region 10 protein) (Williams-Beuren syndrome chromosomal region 9 protein) (hWALp2) BAZ1B WBSC10 WBSCR10 WBSCR9 WSTF chromatin remodeling [GO:0006338]; DNA damage response [GO:0006974]; negative regulation of mitotic chromosome condensation [GO:1905213]; positive regulation of transcription by RNA polymerase I [GO:0045943]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription by RNA polymerase III [GO:0045945]; post-translational protein modification [GO:0043687]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9UIH9 reviewed KLF15_HUMAN Krueppel-like factor 15 (Kidney-enriched krueppel-like factor) KLF15 KKLF cardiac muscle hypertrophy in response to stress [GO:0014898]; cellular response to peptide [GO:1901653]; glial cell differentiation [GO:0010001]; intracellular glucose homeostasis [GO:0001678]; negative regulation of peptidyl-lysine acetylation [GO:2000757]; podocyte differentiation [GO:0072112]; positive regulation of glucose import [GO:0046326]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of Wnt signaling pathway [GO:0030111]; response to insulin [GO:0032868] -Q9UIU6 reviewed SIX4_HUMAN Homeobox protein SIX4 (Sine oculis homeobox homolog 4) SIX4 anatomical structure morphogenesis [GO:0009653]; embryonic cranial skeleton morphogenesis [GO:0048701]; fungiform papilla morphogenesis [GO:0061197]; generation of neurons [GO:0048699]; inner ear morphogenesis [GO:0042472]; male gonad development [GO:0008584]; male sex determination [GO:0030238]; male sex differentiation [GO:0046661]; metanephric mesenchyme development [GO:0072075]; myoblast migration [GO:0051451]; myotome development [GO:0061055]; negative regulation of apoptotic process [GO:0043066]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of satellite cell differentiation [GO:1902725]; olfactory placode formation [GO:0030910]; pharyngeal system development [GO:0060037]; positive regulation of branching involved in ureteric bud morphogenesis [GO:0090190]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of ureteric bud formation [GO:0072107]; protein localization to nucleus [GO:0034504]; regulation of branch elongation involved in ureteric bud branching [GO:0072095]; regulation of epithelial cell proliferation [GO:0050678]; regulation of protein localization [GO:0032880]; regulation of synaptic assembly at neuromuscular junction [GO:0008582]; regulation of transcription by RNA polymerase II [GO:0006357]; sarcomere organization [GO:0045214]; skeletal muscle fiber differentiation [GO:0098528]; skeletal muscle tissue development [GO:0007519]; thymus development [GO:0048538]; tongue development [GO:0043586]; trigeminal ganglion development [GO:0061551] -Q9UIV1 reviewed CNOT7_HUMAN CCR4-NOT transcription complex subunit 7 (EC 3.1.13.4) (BTG1-binding factor 1) (CCR4-associated factor 1) (CAF-1) (Caf1a) CNOT7 CAF1 deadenylation-dependent decapping of nuclear-transcribed mRNA [GO:0000290]; defense response to virus [GO:0051607]; miRNA-mediated gene silencing by mRNA destabilization [GO:0035279]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of gene expression [GO:0010629]; negative regulation of type I interferon-mediated signaling pathway [GO:0060339]; nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay [GO:0000288]; nuclear-transcribed mRNA poly(A) tail shortening [GO:0000289]; P-body assembly [GO:0033962]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of mRNA catabolic process [GO:0061014]; positive regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay [GO:1900153]; positive regulation of nuclear-transcribed mRNA poly(A) tail shortening [GO:0060213]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of viral genome replication [GO:0045070]; regulation of translation [GO:0006417]; regulation of tyrosine phosphorylation of STAT protein [GO:0042509]; regulatory ncRNA-mediated gene silencing [GO:0031047] -Q9UJQ4 reviewed SALL4_HUMAN Sal-like protein 4 (Zinc finger protein 797) (Zinc finger protein SALL4) SALL4 ZNF797 embryonic limb morphogenesis [GO:0030326]; inner cell mass cell proliferation [GO:0001833]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural tube closure [GO:0001843]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; somatic stem cell population maintenance [GO:0035019]; ventricular septum development [GO:0003281] -Q9UJU2 reviewed LEF1_HUMAN Lymphoid enhancer-binding factor 1 (LEF-1) (T cell-specific transcription factor 1-alpha) (TCF1-alpha) LEF1 anatomical structure regression [GO:0060033]; apoptotic process involved in blood vessel morphogenesis [GO:1902262]; B cell proliferation [GO:0042100]; BMP signaling pathway [GO:0030509]; branching involved in blood vessel morphogenesis [GO:0001569]; canonical Wnt signaling pathway [GO:0060070]; cell chemotaxis [GO:0060326]; cellular response to cytokine stimulus [GO:0071345]; cellular response to interleukin-4 [GO:0071353]; chorio-allantoic fusion [GO:0060710]; dentate gyrus development [GO:0021542]; embryonic limb morphogenesis [GO:0030326]; epithelial cell apoptotic process [GO:1904019]; epithelial to mesenchymal transition [GO:0001837]; face morphogenesis [GO:0060325]; forebrain neuroblast division [GO:0021873]; forebrain radial glial cell differentiation [GO:0021861]; formation of radial glial scaffolds [GO:0021943]; mammary gland development [GO:0030879]; negative regulation of apoptotic process [GO:0043066]; negative regulation of apoptotic process in bone marrow cell [GO:0071866]; negative regulation of DNA binding [GO:0043392]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of interleukin-13 production [GO:0032696]; negative regulation of interleukin-4 production [GO:0032713]; negative regulation of interleukin-5 production [GO:0032714]; negative regulation of striated muscle tissue development [GO:0045843]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neutrophil differentiation [GO:0030223]; odontogenesis of dentin-containing tooth [GO:0042475]; osteoblast differentiation [GO:0001649]; paraxial mesoderm formation [GO:0048341]; positive regulation by host of viral transcription [GO:0043923]; positive regulation of cell cycle process [GO:0090068]; positive regulation of cell differentiation [GO:0045597]; positive regulation of cell migration [GO:0030335]; positive regulation of cell proliferation in bone marrow [GO:0071864]; positive regulation of chondrocyte proliferation [GO:1902732]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of gamma-delta T cell differentiation [GO:0045588]; positive regulation of gene expression [GO:0010628]; positive regulation of granulocyte differentiation [GO:0030854]; positive regulation of odontoblast differentiation [GO:1901331]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of Wnt signaling pathway [GO:0030177]; protein localization to chromatin [GO:0071168]; regulation of neurogenesis [GO:0050767]; regulation of transcription by RNA polymerase II [GO:0006357]; secondary palate development [GO:0062009]; sensory perception of taste [GO:0050909]; somitogenesis [GO:0001756]; sprouting angiogenesis [GO:0002040]; T cell receptor V(D)J recombination [GO:0033153]; T-helper 1 cell differentiation [GO:0045063]; tongue development [GO:0043586]; trachea gland development [GO:0061153]; transcription by RNA polymerase II [GO:0006366] -Q9UJU5 reviewed FOXD3_HUMAN Forkhead box protein D3 (HNF3/FH transcription factor genesis) FOXD3 HFH2 anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; in utero embryonic development [GO:0001701]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9UK05 reviewed GDF2_HUMAN Growth/differentiation factor 2 (GDF-2) (Bone morphogenetic protein 9) (BMP-9) GDF2 BMP9 activin receptor signaling pathway [GO:0032924]; angiogenesis [GO:0001525]; blood vessel morphogenesis [GO:0048514]; BMP signaling pathway [GO:0030509]; branching involved in blood vessel morphogenesis [GO:0001569]; cartilage development [GO:0051216]; cellular response to BMP stimulus [GO:0071773]; intracellular iron ion homeostasis [GO:0006879]; negative regulation of angiogenesis [GO:0016525]; negative regulation of blood vessel endothelial cell migration [GO:0043537]; negative regulation of cell growth [GO:0030308]; negative regulation of DNA replication [GO:0008156]; negative regulation of endothelial cell migration [GO:0010596]; negative regulation of endothelial cell proliferation [GO:0001937]; ossification [GO:0001503]; osteoblast differentiation [GO:0001649]; positive regulation of angiogenesis [GO:0045766]; positive regulation of bicellular tight junction assembly [GO:1903348]; positive regulation of BMP signaling pathway [GO:0030513]; positive regulation of cartilage development [GO:0061036]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of endothelial cell differentiation [GO:0045603]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of epithelial cell differentiation [GO:0030858]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of transcription by RNA polymerase II [GO:0045944]; transcription by RNA polymerase II [GO:0006366]; vasculogenesis [GO:0001570] -Q9UK33 reviewed ZN580_HUMAN Zinc finger protein 580 (LDL-induced EC protein) ZNF580 cellular response to hydrogen peroxide [GO:0070301]; chemotaxis [GO:0006935]; inflammatory response [GO:0006954]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of gene expression [GO:0010628]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of leukocyte chemotaxis [GO:0002690]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9UKI9 reviewed PO2F3_HUMAN POU domain, class 2, transcription factor 3 (Octamer-binding protein 11) (Oct-11) (Octamer-binding transcription factor 11) (OTF-11) (Transcription factor PLA-1) (Transcription factor Skn-1) POU2F3 OTF11 PLA1 epidermis development [GO:0008544]; keratinocyte differentiation [GO:0030216]; negative regulation by host of viral transcription [GO:0043922]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; wound healing [GO:0042060] -Q9UKN5 reviewed PRDM4_HUMAN PR domain zinc finger protein 4 (EC 2.1.1.-) (PR domain-containing protein 4) PRDM4 PFM1 cell fate commitment [GO:0045165]; methylation [GO:0032259]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription by RNA polymerase II [GO:0006366] -Q9UKT9 reviewed IKZF3_HUMAN Zinc finger protein Aiolos (Ikaros family zinc finger protein 3) IKZF3 ZNFN1A3 B cell differentiation [GO:0030183]; mesoderm development [GO:0007498]; regulation of apoptotic process [GO:0042981]; regulation of B cell differentiation [GO:0045577]; regulation of B cell proliferation [GO:0030888]; regulation of lymphocyte differentiation [GO:0045619]; regulation of transcription by RNA polymerase II [GO:0006357]; response to bacterium [GO:0009617]; T cell differentiation [GO:0030217] -Q9UKV8 reviewed AGO2_HUMAN Protein argonaute-2 (Argonaute2) (hAgo2) (EC 3.1.26.n2) (Argonaute RISC catalytic component 2) (Eukaryotic translation initiation factor 2C 2) (eIF-2C 2) (eIF2C 2) (PAZ Piwi domain protein) (PPD) (Protein slicer) AGO2 EIF2C2 miRNA metabolic process [GO:0010586]; miRNA processing [GO:0035196]; miRNA-mediated gene silencing by inhibition of translation [GO:0035278]; miRNA-mediated gene silencing by mRNA destabilization [GO:0035279]; negative regulation of amyloid precursor protein biosynthetic process [GO:0042985]; negative regulation of translational initiation [GO:0045947]; P-body assembly [GO:0033962]; positive regulation of angiogenesis [GO:0045766]; positive regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay [GO:1900153]; positive regulation of nuclear-transcribed mRNA poly(A) tail shortening [GO:0060213]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of translation [GO:0045727]; positive regulation of trophoblast cell migration [GO:1901165]; post-embryonic development [GO:0009791]; pre-miRNA processing [GO:0031054]; regulation of synapse maturation [GO:0090128]; regulatory ncRNA-mediated gene silencing [GO:0031047]; regulatory ncRNA-mediated post-transcriptional gene silencing [GO:0035194]; RISC complex assembly [GO:0070922]; RNA secondary structure unwinding [GO:0010501]; siRNA processing [GO:0030422]; siRNA-mediated gene silencing by mRNA destabilization [GO:0090625]; translation [GO:0006412] -Q9UL17 reviewed TBX21_HUMAN T-box transcription factor TBX21 (T-box protein 21) (T-cell-specific T-box transcription factor T-bet) (Transcription factor TBLYM) TBX21 TBET TBLYM cell fate specification [GO:0001708]; cellular response to organic substance [GO:0071310]; lymphocyte migration [GO:0072676]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of interleukin-2 production [GO:0032703]; negative regulation of T-helper 17 cell differentiation [GO:2000320]; negative regulation of T-helper 17 cell lineage commitment [GO:2000329]; negative regulation of T-helper 2 cell cytokine production [GO:2000552]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of isotype switching to IgG isotypes [GO:0048304]; positive regulation of T-helper 1 cell cytokine production [GO:2000556]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; regulation of T cell differentiation [GO:0045580]; regulation of transcription by RNA polymerase II [GO:0006357]; response to virus [GO:0009615]; T-helper 1 cell lineage commitment [GO:0002296] -Q9UL18 reviewed AGO1_HUMAN Protein argonaute-1 (Argonaute1) (hAgo1) (Argonaute RISC catalytic component 1) (Eukaryotic translation initiation factor 2C 1) (eIF-2C 1) (eIF2C 1) (Putative RNA-binding protein Q99) AGO1 EIF2C1 miRNA processing [GO:0035196]; miRNA-mediated gene silencing by inhibition of translation [GO:0035278]; negative regulation of angiogenesis [GO:0016525]; nuclear-transcribed mRNA catabolic process [GO:0000956]; positive regulation of transcription by RNA polymerase II [GO:0045944]; pre-miRNA processing [GO:0031054]; regulation of mRNA stability [GO:0043488]; regulatory ncRNA-mediated post-transcriptional gene silencing [GO:0035194]; RISC complex assembly [GO:0070922]; RNA secondary structure unwinding [GO:0010501] -Q9ULG1 reviewed INO80_HUMAN Chromatin-remodeling ATPase INO80 (hINO80) (EC 3.6.4.-) (DNA helicase-related INO80 complex homolog 1) (DNA helicase-related protein INO80) (INO80 complex subunit A) INO80 INO80A INOC1 KIAA1259 cell division [GO:0051301]; cellular response to ionizing radiation [GO:0071479]; cellular response to UV [GO:0034644]; chromatin remodeling [GO:0006338]; DNA repair [GO:0006281]; DNA-templated transcription [GO:0006351]; double-strand break repair [GO:0006302]; double-strand break repair via homologous recombination [GO:0000724]; mitotic sister chromatid segregation [GO:0000070]; positive regulation of cell growth [GO:0030307]; positive regulation of DNA repair [GO:0045739]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of nuclear cell cycle DNA replication [GO:0010571]; positive regulation of telomere maintenance in response to DNA damage [GO:1904507]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell cycle [GO:0051726]; regulation of chromosome organization [GO:0033044]; regulation of DNA repair [GO:0006282]; regulation of DNA replication [GO:0006275]; regulation of DNA strand elongation [GO:0060382]; regulation of embryonic development [GO:0045995]; regulation of G1/S transition of mitotic cell cycle [GO:2000045]; spindle assembly [GO:0051225]; telomere maintenance [GO:0000723]; UV-damage excision repair [GO:0070914] -Q9ULG6 reviewed CCPG1_HUMAN Cell cycle progression protein 1 (Cell cycle progression restoration protein 8) CCPG1 CCP8 CPR8 KIAA1254 positive regulation of cell cycle [GO:0045787]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9ULH7 reviewed MRTFB_HUMAN Myocardin-related transcription factor B (MRTF-B) (MKL/myocardin-like protein 2) (Megakaryoblastic leukemia 2) MRTFB KIAA1243 MKL2 muscle organ development [GO:0007517]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of striated muscle tissue development [GO:0045844]; positive regulation of transcription by RNA polymerase II [GO:0045944]; smooth muscle cell differentiation [GO:0051145] -Q9ULJ6 reviewed ZMIZ1_HUMAN Zinc finger MIZ domain-containing protein 1 (PIAS-like protein Zimp10) (Retinoic acid-induced protein 17) ZMIZ1 KIAA1224 RAI17 ZIMP10 androgen receptor signaling pathway [GO:0030521]; artery morphogenesis [GO:0048844]; cellular senescence [GO:0090398]; developmental growth [GO:0048589]; heart morphogenesis [GO:0003007]; in utero embryonic development [GO:0001701]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of T cell differentiation [GO:0045582]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein sumoylation [GO:0016925]; pyramidal neuron migration to cerebral cortex [GO:0021852]; regulation of transcription by RNA polymerase II [GO:0006357]; SMAD protein signal transduction [GO:0060395]; transforming growth factor beta receptor signaling pathway [GO:0007179]; vasculogenesis [GO:0001570]; vitellogenesis [GO:0007296] -Q9ULK4 reviewed MED23_HUMAN Mediator of RNA polymerase II transcription subunit 23 (Activator-recruited cofactor 130 kDa component) (ARC130) (Cofactor required for Sp1 transcriptional activation subunit 3) (CRSP complex subunit 3) (Mediator complex subunit 23) (Protein sur-2 homolog) (hSur-2) (Transcriptional coactivator CRSP130) (Vitamin D3 receptor-interacting protein complex 130 kDa component) (DRIP130) MED23 ARC130 CRSP3 DRIP130 KIAA1216 SUR2 positive regulation of gene expression [GO:0010628]; positive regulation of T cell extravasation [GO:2000409]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA polymerase II preinitiation complex assembly [GO:0051123]; transcription initiation at RNA polymerase II promoter [GO:0006367] -Q9ULU4 reviewed ZMYD8_HUMAN MYND-type zinc finger-containing chromatin reader ZMYND8 (Cutaneous T-cell lymphoma-associated antigen se14-3) (CTCL-associated antigen se14-3) (Protein kinase C-binding protein 1) (Rack7) (Transcription coregulator ZMYND8) (Zinc finger MYND domain-containing protein 8) ZMYND8 KIAA1125 PRKCBP1 RACK7 chromatin organization [GO:0006325]; double-strand break repair via homologous recombination [GO:0000724]; modulation of excitatory postsynaptic potential [GO:0098815]; negative regulation of cell migration [GO:0030336]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system development [GO:0007399]; positive regulation of dendritic spine development [GO:0060999]; positive regulation of dendritic spine maintenance [GO:1902952]; positive regulation of filopodium assembly [GO:0051491]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; protein localization to chromatin [GO:0071168]; regulation of postsynaptic density protein 95 clustering [GO:1902897] -Q9ULX6 reviewed AKP8L_HUMAN A-kinase anchor protein 8-like (AKAP8-like protein) (Helicase A-binding protein 95) (HAP95) (Homologous to AKAP95 protein) (HA95) (Neighbor of A-kinase-anchoring protein 95) (Neighbor of AKAP95) AKAP8L NAKAP NAKAP95 HRIHFB2018 cell cycle G2/M phase transition [GO:0044839]; mitotic chromosome condensation [GO:0007076]; mRNA processing [GO:0006397]; nuclear membrane disassembly [GO:0051081]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of mRNA export from nucleus [GO:0010793]; RNA splicing [GO:0008380] -Q9ULX9 reviewed MAFF_HUMAN Transcription factor MafF (U-Maf) (V-maf musculoaponeurotic fibrosarcoma oncogene homolog F) MAFF in utero embryonic development [GO:0001701]; negative regulation of transcription by RNA polymerase II [GO:0000122]; parturition [GO:0007567]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of epidermal cell differentiation [GO:0045604]; regulation of transcription by RNA polymerase II [GO:0006357]; skeletal muscle cell differentiation [GO:0035914] -Q9UM47 reviewed NOTC3_HUMAN Neurogenic locus notch homolog protein 3 (Notch 3) [Cleaved into: Notch 3 extracellular truncation; Notch 3 intracellular domain] NOTCH3 artery morphogenesis [GO:0048844]; axon guidance [GO:0007411]; forebrain development [GO:0030900]; glomerular capillary formation [GO:0072104]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuroblast differentiation [GO:0014016]; neuron fate commitment [GO:0048663]; Notch signaling pathway [GO:0007219]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9UM63 reviewed PLAL1_HUMAN Zinc finger protein PLAGL1 (Lost on transformation 1) (LOT-1) (Pleiomorphic adenoma-like protein 1) (Tumor suppressor ZAC) PLAGL1 LOT1 ZAC apoptotic process [GO:0006915]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell cycle [GO:0051726]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9UMQ3 reviewed BARX2_HUMAN Homeobox protein BarH-like 2 BARX2 cartilage condensation [GO:0001502]; myotube differentiation [GO:0014902]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; skeletal muscle cell differentiation [GO:0035914]; transcription by RNA polymerase II [GO:0006366] -Q9UMR3 reviewed TBX20_HUMAN T-box transcription factor TBX20 (T-box protein 20) TBX20 aortic valve morphogenesis [GO:0003180]; atrial septum morphogenesis [GO:0060413]; atrioventricular canal development [GO:0036302]; atrioventricular valve development [GO:0003171]; blood circulation [GO:0008015]; branching involved in blood vessel morphogenesis [GO:0001569]; cardiac chamber formation [GO:0003207]; cardiac muscle tissue morphogenesis [GO:0055008]; cardiac right ventricle morphogenesis [GO:0003215]; cardiac septum development [GO:0003279]; cell fate specification [GO:0001708]; cell population proliferation [GO:0008283]; dorsal/ventral pattern formation [GO:0009953]; embryonic heart tube elongation [GO:0036306]; embryonic heart tube morphogenesis [GO:0003143]; endocardial cushion formation [GO:0003272]; endocardial cushion morphogenesis [GO:0003203]; endoderm formation [GO:0001706]; foramen ovale closure [GO:0035922]; heart looping [GO:0001947]; lateral mesoderm formation [GO:0048370]; mesenchymal cell development [GO:0014031]; motor neuron migration [GO:0097475]; muscle contraction [GO:0006936]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of SMAD protein signal transduction [GO:0060392]; negative regulation of transcription by RNA polymerase II [GO:0000122]; outflow tract septum morphogenesis [GO:0003148]; pericardium morphogenesis [GO:0003344]; positive regulation of apoptotic process [GO:0043065]; positive regulation of BMP signaling pathway [GO:0030513]; positive regulation of cardiac muscle cell proliferation [GO:0060045]; positive regulation of cell cycle process [GO:0090068]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; pulmonary valve formation [GO:0003193]; pulmonary vein morphogenesis [GO:0060577]; regulation of transcription by RNA polymerase II [GO:0006357]; tricuspid valve development [GO:0003175]; vasculogenesis [GO:0001570]; visceral motor neuron differentiation [GO:0021524] -Q9UNI1 reviewed CELA1_HUMAN Chymotrypsin-like elastase family member 1 (EC 3.4.21.36) (Elastase-1) (Pancreatic elastase 1) CELA1 ELA1 elastin catabolic process [GO:0060309]; exocrine pancreas development [GO:0031017]; inflammatory response [GO:0006954]; multicellular organism growth [GO:0035264]; negative regulation of transcription by RNA polymerase II [GO:0000122]; pancreas morphogenesis [GO:0061113]; positive regulation of angiogenesis [GO:0045766]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-embryonic development [GO:0009791]; proteolysis [GO:0006508]; regulation of cell differentiation [GO:0045595]; regulation of cell population proliferation [GO:0042127]; tissue remodeling [GO:0048771]; transcription by RNA polymerase II [GO:0006366]; Wnt signaling pathway [GO:0016055] -Q9UP52 reviewed TFR2_HUMAN Transferrin receptor protein 2 (TfR2) TFR2 acute-phase response [GO:0006953]; cellular response to iron ion [GO:0071281]; endocytic iron import into cell [GO:0140298]; intracellular iron ion homeostasis [GO:0006879]; iron ion transport [GO:0006826]; multicellular organismal-level iron ion homeostasis [GO:0060586]; positive regulation of endocytosis [GO:0045807]; positive regulation of peptide hormone secretion [GO:0090277]; positive regulation of protein maturation [GO:1903319]; positive regulation of transcription by RNA polymerase II [GO:0045944]; receptor-mediated endocytosis [GO:0006898]; regulation of postsynaptic membrane neurotransmitter receptor levels [GO:0099072]; response to iron ion [GO:0010039]; transferrin transport [GO:0033572] -Q9UPG8 reviewed PLAL2_HUMAN Zinc finger protein PLAGL2 (Pleiomorphic adenoma-like protein 2) PLAGL2 KIAA0198 chylomicron assembly [GO:0034378]; lipid metabolic process [GO:0006629]; positive regulation of intrinsic apoptotic signaling pathway [GO:2001244]; post-embryonic development [GO:0009791]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9UPP1 reviewed PHF8_HUMAN Histone lysine demethylase PHF8 (EC 1.14.11.27) (EC 1.14.11.65) (PHD finger protein 8) ([histone H3]-dimethyl-L-lysine(36) demethylase PHF8) ([histone H3]-dimethyl-L-lysine(9) demethylase PHF8) PHF8 KIAA1111 ZNF422 brain development [GO:0007420]; G1/S transition of mitotic cell cycle [GO:0000082]; negative regulation of rDNA heterochromatin formation [GO:0061188]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase I [GO:0045943]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9UPW0 reviewed FOXJ3_HUMAN Forkhead box protein J3 FOXJ3 KIAA1041 cell differentiation [GO:0030154]; male meiosis I [GO:0007141]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; spermatogenesis [GO:0007283] -Q9UPW6 reviewed SATB2_HUMAN DNA-binding protein SATB2 (Special AT-rich sequence-binding protein 2) SATB2 KIAA1034 cartilage development [GO:0051216]; cellular response to organic substance [GO:0071310]; chromatin remodeling [GO:0006338]; embryonic pattern specification [GO:0009880]; embryonic skeletal system morphogenesis [GO:0048704]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron migration [GO:0001764]; osteoblast development [GO:0002076]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; roof of mouth development [GO:0060021] -Q9UQL6 reviewed HDAC5_HUMAN Histone deacetylase 5 (HD5) (EC 3.5.1.98) (Antigen NY-CO-9) HDAC5 KIAA0600 B cell activation [GO:0042113]; B cell differentiation [GO:0030183]; cellular response to insulin stimulus [GO:0032869]; cellular response to lipopolysaccharide [GO:0071222]; inflammatory response [GO:0006954]; negative regulation of cell migration involved in sprouting angiogenesis [GO:0090051]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of gene expression, epigenetic [GO:0045814]; negative regulation of myotube differentiation [GO:0010832]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron differentiation [GO:0030182]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of myotube differentiation [GO:0010830]; regulation of protein binding [GO:0043393]; response to activity [GO:0014823]; response to cocaine [GO:0042220]; response to xenobiotic stimulus [GO:0009410] -Q9UQR1 reviewed ZN148_HUMAN Zinc finger protein 148 (Transcription factor ZBP-89) (Zinc finger DNA-binding protein 89) ZNF148 ZBP89 cellular defense response [GO:0006968]; gamete generation [GO:0007276]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of gene expression [GO:0010629]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; substantia nigra development [GO:0021762] -Q9Y224 reviewed RTRAF_HUMAN RNA transcription, translation and transport factor protein (CLE7 homolog) (CLE) (hCLE) RTRAF C14orf166 CGI-99 negative regulation of protein kinase activity [GO:0006469]; positive regulation of transcription by RNA polymerase II [GO:0045944]; RNA transport [GO:0050658]; tRNA splicing, via endonucleolytic cleavage and ligation [GO:0006388] -Q9Y230 reviewed RUVB2_HUMAN RuvB-like 2 (EC 3.6.4.12) (48 kDa TATA box-binding protein-interacting protein) (48 kDa TBP-interacting protein) (51 kDa erythrocyte cytosolic protein) (ECP-51) (INO80 complex subunit J) (Repressing pontin 52) (Reptin 52) (TIP49b) (TIP60-associated protein 54-beta) (TAP54-beta) RUVBL2 INO80J TIP48 TIP49B CGI-46 box C/D snoRNP assembly [GO:0000492]; cellular response to estradiol stimulus [GO:0071392]; cellular response to UV [GO:0034644]; chromatin remodeling [GO:0006338]; DNA recombination [GO:0006310]; DNA repair [GO:0006281]; establishment of protein localization to chromatin [GO:0071169]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; positive regulation of DNA repair [GO:0045739]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of double-strand break repair via homologous recombination [GO:1905168]; positive regulation of telomerase RNA localization to Cajal body [GO:1904874]; positive regulation of telomere maintenance in response to DNA damage [GO:1904507]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein folding [GO:0006457]; protein stabilization [GO:0050821]; regulation of apoptotic process [GO:0042981]; regulation of cell cycle [GO:0051726]; regulation of chromosome organization [GO:0033044]; regulation of DNA repair [GO:0006282]; regulation of DNA replication [GO:0006275]; regulation of DNA strand elongation [GO:0060382]; regulation of DNA-templated transcription [GO:0006355]; regulation of double-strand break repair [GO:2000779]; regulation of embryonic development [GO:0045995]; regulation of transcription by RNA polymerase II [GO:0006357]; telomere maintenance [GO:0000723] -Q9Y261 reviewed FOXA2_HUMAN Hepatocyte nuclear factor 3-beta (HNF-3-beta) (HNF-3B) (Forkhead box protein A2) (Transcription factor 3B) (TCF-3B) FOXA2 HNF3B TCF3B adult locomotory behavior [GO:0008344]; anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; cell fate specification [GO:0001708]; chromatin organization [GO:0006325]; dopaminergic neuron differentiation [GO:0071542]; endocrine pancreas development [GO:0031018]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of epithelial to mesenchymal transition [GO:0010719]; negative regulation of glucokinase activity [GO:0033132]; negative regulation of transcription from RNA polymerase II promoter by glucose [GO:0061987]; positive regulation of cell-cell adhesion mediated by cadherin [GO:2000049]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of embryonic development [GO:0040019]; positive regulation of gastrulation [GO:2000543]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription from RNA polymerase II promoter by glucose [GO:0000432]; primitive streak formation [GO:0090009]; regulation of blood coagulation [GO:0030193]; regulation of insulin secretion involved in cellular response to glucose stimulus [GO:0061178]; regulation of transcription by RNA polymerase II [GO:0006357]; response to interleukin-6 [GO:0070741] -Q9Y2D1 reviewed ATF5_HUMAN Cyclic AMP-dependent transcription factor ATF-5 (cAMP-dependent transcription factor ATF-5) (Activating transcription factor 5) (Transcription factor ATFx) ATF5 ATFX cerebellar granule cell precursor proliferation [GO:0021930]; circadian rhythm [GO:0007623]; fat cell differentiation [GO:0045444]; multicellular organism growth [GO:0035264]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cell cycle G2/M phase transition [GO:1902750]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of DNA-templated transcription [GO:0045892]; olfactory bulb interneuron development [GO:0021891]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-embryonic development [GO:0009791]; regulation of centrosome cycle [GO:0046605]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9Y2G9 reviewed SBNO2_HUMAN Protein strawberry notch homolog 2 SBNO2 KIAA0963 bone mineralization [GO:0030282]; bone trabecula morphogenesis [GO:0061430]; cellular response to interleukin-11 [GO:0071348]; cellular response to interleukin-6 [GO:0071354]; cellular response to leukemia inhibitory factor [GO:1990830]; cellular response to lipopolysaccharide [GO:0071222]; macrophage activation involved in immune response [GO:0002281]; negative regulation of DNA-templated transcription [GO:0045892]; osteoclast differentiation [GO:0030316]; osteoclast fusion [GO:0072675]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of inflammatory response [GO:0050727] -Q9Y2V3 reviewed RX_HUMAN Retinal homeobox protein Rx (Retina and anterior neural fold homeobox protein) RAX RX camera-type eye development [GO:0043010]; hypothalamus development [GO:0021854]; limb development [GO:0060173]; pattern specification process [GO:0007389]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; visual perception [GO:0007601] -Q9Y2W1 reviewed TR150_HUMAN Thyroid hormone receptor-associated protein 3 (BCLAF1 and THRAP3 family member 2) (Thyroid hormone receptor-associated protein complex 150 kDa component) (Trap150) THRAP3 BCLAF2 TRAP150 circadian rhythm [GO:0007623]; mRNA processing [GO:0006397]; mRNA stabilization [GO:0048255]; nuclear-transcribed mRNA catabolic process [GO:0000956]; positive regulation of circadian rhythm [GO:0042753]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of mRNA splicing, via spliceosome [GO:0048026]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; RNA splicing [GO:0008380] -Q9Y2X0 reviewed MED16_HUMAN Mediator of RNA polymerase II transcription subunit 16 (Mediator complex subunit 16) (Thyroid hormone receptor-associated protein 5) (Thyroid hormone receptor-associated protein complex 95 kDa component) (Trap95) (Vitamin D3 receptor-interacting protein complex 92 kDa component) (DRIP92) MED16 DRIP92 THRAP5 positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA polymerase II preinitiation complex assembly [GO:0051123]; transcription by RNA polymerase II [GO:0006366] -Q9Y2Y9 reviewed KLF13_HUMAN Krueppel-like factor 13 (Basic transcription element-binding protein 3) (BTE-binding protein 3) (Novel Sp1-like zinc finger transcription factor 1) (RANTES factor of late activated T-lymphocytes 1) (RFLAT-1) (Transcription factor BTEB3) (Transcription factor NSLP1) KLF13 BTEB3 NSLP1 negative regulation of cell population proliferation [GO:0008285]; negative regulation of erythrocyte differentiation [GO:0045647]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription by RNA polymerase II [GO:0006366] -Q9Y3C7 reviewed MED31_HUMAN Mediator of RNA polymerase II transcription subunit 31 (Mediator complex subunit 31) (Mediator complex subunit SOH1) (hSOH1) MED31 SOH1 CGI-125 limb development [GO:0060173]; negative regulation of fibroblast proliferation [GO:0048147]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; protein ubiquitination [GO:0016567]; regulation of transcription by RNA polymerase II [GO:0006357]; RNA polymerase II preinitiation complex assembly [GO:0051123] -Q9Y3Y4 reviewed PYGO1_HUMAN Pygopus homolog 1 PYGO1 canonical Wnt signaling pathway [GO:0060070]; hematopoietic progenitor cell differentiation [GO:0002244]; kidney development [GO:0001822]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to nucleus [GO:0034504]; spermatid nucleus differentiation [GO:0007289] -Q9Y462 reviewed ZN711_HUMAN Zinc finger protein 711 (Zinc finger protein 6) ZNF711 CMPX1 ZNF6 positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of gene expression [GO:0010468]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9Y466 reviewed NR2E1_HUMAN Nuclear receptor subfamily 2 group E member 1 (Nuclear receptor TLX) (Protein tailless homolog) (Tll) (hTll) NR2E1 TLX aggressive behavior [GO:0002118]; amygdala development [GO:0021764]; angiogenesis [GO:0001525]; anterior commissure morphogenesis [GO:0021960]; apoptotic process [GO:0006915]; astrocyte cell migration [GO:0043615]; astrocyte differentiation [GO:0048708]; behavioral fear response [GO:0001662]; cell differentiation [GO:0030154]; cell fate commitment [GO:0045165]; cerebral cortex neuron differentiation [GO:0021895]; dentate gyrus development [GO:0021542]; extracellular matrix organization [GO:0030198]; forebrain generation of neurons [GO:0021872]; layer formation in cerebral cortex [GO:0021819]; long-term synaptic potentiation [GO:0060291]; negative regulation of apoptotic process [GO:0043066]; negative regulation of astrocyte differentiation [GO:0048712]; negative regulation of neural precursor cell proliferation [GO:2000178]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system development [GO:0007399]; neuroblast proliferation [GO:0007405]; olfactory bulb development [GO:0021772]; positive regulation of angiogenesis [GO:0045766]; positive regulation of cell cycle [GO:0045787]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of stem cell proliferation [GO:2000648]; regulation of cell migration involved in sprouting angiogenesis [GO:0090049]; regulation of dendrite morphogenesis [GO:0048814]; regulation of timing of neuron differentiation [GO:0060164]; retina development in camera-type eye [GO:0060041]; social behavior [GO:0035176]; somatic stem cell population maintenance [GO:0035019]; visual perception [GO:0007601] -Q9Y467 reviewed SALL2_HUMAN Sal-like protein 2 (Zinc finger protein 795) (Zinc finger protein SALL2) (Zinc finger protein Spalt-2) (Sal-2) (hSal2) SALL2 KIAA0360 SAL2 ZNF795 eye development [GO:0001654]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9Y473 reviewed ZN175_HUMAN Zinc finger protein 175 (Zinc finger protein OTK18) ZNF175 defense response to virus [GO:0051607]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9Y4C1 reviewed KDM3A_HUMAN Lysine-specific demethylase 3A (EC 1.14.11.65) (JmjC domain-containing histone demethylation protein 2A) (Jumonji domain-containing protein 1A) ([histone H3]-dimethyl-L-lysine(9) demethylase 3A) KDM3A JHDM2A JMJD1 JMJD1A KIAA0742 TSGA androgen receptor signaling pathway [GO:0030521]; cellular response to leukemia inhibitory factor [GO:1990830]; formaldehyde biosynthetic process [GO:0046293]; hormone-mediated signaling pathway [GO:0009755]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of stem cell differentiation [GO:2000736]; regulation of stem cell population maintenance [GO:2000036]; regulation of transcription by RNA polymerase II [GO:0006357]; spermatid nucleus elongation [GO:0007290] -Q9Y4K3 reviewed TRAF6_HUMAN TNF receptor-associated factor 6 (EC 2.3.2.27) (E3 ubiquitin-protein ligase TRAF6) (Interleukin-1 signal transducer) (RING finger protein 85) (RING-type E3 ubiquitin transferase TRAF6) TRAF6 RNF85 activation of protein kinase activity [GO:0032147]; antigen processing and presentation of exogenous peptide antigen via MHC class II [GO:0019886]; antiviral innate immune response [GO:0140374]; autophagosome assembly [GO:0000045]; bone resorption [GO:0045453]; canonical NF-kappaB signal transduction [GO:0007249]; cellular response to cytokine stimulus [GO:0071345]; cellular response to lipopolysaccharide [GO:0071222]; cytoplasmic pattern recognition receptor signaling pathway [GO:0002753]; DNA damage response [GO:0006974]; Fc-epsilon receptor signaling pathway [GO:0038095]; in utero embryonic development [GO:0001701]; innate immune response [GO:0045087]; interleukin-1-mediated signaling pathway [GO:0070498]; interleukin-17-mediated signaling pathway [GO:0097400]; interleukin-17A-mediated signaling pathway [GO:0038173]; interleukin-33-mediated signaling pathway [GO:0038172]; lipopolysaccharide-mediated signaling pathway [GO:0031663]; MyD88-dependent toll-like receptor signaling pathway [GO:0002755]; myeloid dendritic cell differentiation [GO:0043011]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural tube closure [GO:0001843]; non-canonical NF-kappaB signal transduction [GO:0038061]; odontogenesis of dentin-containing tooth [GO:0042475]; ossification [GO:0001503]; osteoclast differentiation [GO:0030316]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of interleukin-12 production [GO:0032735]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of JUN kinase activity [GO:0043507]; positive regulation of leukocyte adhesion to vascular endothelial cell [GO:1904996]; positive regulation of lipopolysaccharide-mediated signaling pathway [GO:0031666]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of osteoclast differentiation [GO:0045672]; positive regulation of protein ubiquitination [GO:0031398]; positive regulation of T cell cytokine production [GO:0002726]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription regulatory region DNA binding [GO:2000679]; positive regulation of type I interferon production [GO:0032481]; protein autoubiquitination [GO:0051865]; protein K63-linked ubiquitination [GO:0070534]; protein polyubiquitination [GO:0000209]; regulation of apoptotic process [GO:0042981]; regulation of canonical NF-kappaB signal transduction [GO:0043122]; regulation of immunoglobulin production [GO:0002637]; response to interleukin-1 [GO:0070555]; stimulatory C-type lectin receptor signaling pathway [GO:0002223]; T cell receptor signaling pathway [GO:0050852]; T-helper 1 type immune response [GO:0042088]; toll-like receptor 3 signaling pathway [GO:0034138]; toll-like receptor 4 signaling pathway [GO:0034142]; TRIF-dependent toll-like receptor signaling pathway [GO:0035666]; tumor necrosis factor-mediated signaling pathway [GO:0033209] -Q9Y4X4 reviewed KLF12_HUMAN Krueppel-like factor 12 (Transcriptional repressor AP-2rep) KLF12 AP2REP HSPC122 negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9Y4Z2 reviewed NGN3_HUMAN Neurogenin-3 (NGN-3) (Class A basic helix-loop-helix protein 7) (bHLHa7) (Protein atonal homolog 5) NEUROG3 ATOH5 BHLHA7 NGN3 axon development [GO:0061564]; central nervous system development [GO:0007417]; epithelial cell differentiation [GO:0030855]; forebrain development [GO:0030900]; hindbrain development [GO:0030902]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system development [GO:0007399]; peripheral nervous system development [GO:0007422]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of dendrite morphogenesis [GO:0048814]; sensory organ development [GO:0007423]; spinal cord development [GO:0021510]; transdifferentiation [GO:0060290] -Q9Y5A6 reviewed ZSC21_HUMAN Zinc finger and SCAN domain-containing protein 21 (Renal carcinoma antigen NY-REN-21) (Zinc finger protein 38 homolog) (Zfp-38) ZSCAN21 ZFP38 ZNF38 cell differentiation [GO:0030154]; male meiosis I [GO:0007141]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; spermatogenesis [GO:0007283] -Q9Y5B6 reviewed PAXB1_HUMAN PAX3- and PAX7-binding protein 1 (GC-rich sequence DNA-binding factor 1) PAXBP1 C21orf66 GCFC GCFC1 mRNA splicing, via spliceosome [GO:0000398]; muscle organ development [GO:0007517]; positive regulation of myoblast proliferation [GO:2000288]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of skeletal muscle satellite cell proliferation [GO:0014842]; transcription by RNA polymerase II [GO:0006366] -Q9Y5J3 reviewed HEY1_HUMAN Hairy/enhancer-of-split related with YRPW motif protein 1 (Cardiovascular helix-loop-helix factor 2) (CHF-2) (Class B basic helix-loop-helix protein 31) (bHLHb31) (HES-related repressor protein 1) (Hairy and enhancer of split-related protein 1) (HESR-1) (Hairy-related transcription factor 1) (HRT-1) (hHRT1) HEY1 BHLHB31 CHF2 HERP2 HESR1 HRT1 angiogenesis [GO:0001525]; anterior/posterior pattern specification [GO:0009952]; aortic valve morphogenesis [GO:0003180]; arterial endothelial cell differentiation [GO:0060842]; atrioventricular valve formation [GO:0003190]; cardiac conduction system development [GO:0003161]; cardiac epithelial to mesenchymal transition [GO:0060317]; cardiac septum morphogenesis [GO:0060411]; cardiac ventricle morphogenesis [GO:0003208]; circulatory system development [GO:0072359]; dorsal aorta morphogenesis [GO:0035912]; endocardial cushion morphogenesis [GO:0003203]; heart trabecula formation [GO:0060347]; labyrinthine layer blood vessel development [GO:0060716]; negative regulation of biomineral tissue development [GO:0070168]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of Notch signaling pathway [GO:0045746]; negative regulation of smooth muscle cell differentiation [GO:0051151]; negative regulation of transcription by RNA polymerase II [GO:0000122]; Notch signaling pathway [GO:0007219]; positive regulation of transcription by RNA polymerase II [GO:0045944]; pulmonary valve morphogenesis [GO:0003184]; regulation of neurogenesis [GO:0050767]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of vasculogenesis [GO:2001212]; umbilical cord morphogenesis [GO:0036304]; ventricular septum morphogenesis [GO:0060412] -Q9Y5Q3 reviewed MAFB_HUMAN Transcription factor MafB (Maf-B) (V-maf musculoaponeurotic fibrosarcoma oncogene homolog B) MAFB KRML abducens nerve formation [GO:0021599]; brain segmentation [GO:0035284]; cornified envelope assembly [GO:1903575]; fat cell differentiation [GO:0045444]; inner ear morphogenesis [GO:0042472]; integrated stress response signaling [GO:0140467]; keratinocyte differentiation [GO:0030216]; negative regulation of erythrocyte differentiation [GO:0045647]; negative regulation of osteoclast differentiation [GO:0045671]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of DNA-templated transcription [GO:0045893]; protein processing [GO:0016485]; regulation of DNA-templated transcription [GO:0006355]; regulation of myeloid cell differentiation [GO:0045637]; regulation of transcription by RNA polymerase II [GO:0006357]; respiratory gaseous exchange by respiratory system [GO:0007585]; rhombomere 5 development [GO:0021571]; rhombomere 6 development [GO:0021572]; segment specification [GO:0007379]; sensory organ development [GO:0007423]; T cell differentiation in thymus [GO:0033077]; thymus development [GO:0048538] -Q9Y5R5 reviewed DMRT2_HUMAN Doublesex- and mab-3-related transcription factor 2 (Doublesex-like 2 protein) (DSXL-2) DMRT2 DSXL2 embryonic skeletal system development [GO:0048706]; myotome development [GO:0061055]; positive regulation of myotome development [GO:2000287]; regulation of somitogenesis [GO:0014807]; regulation of transcription by RNA polymerase II [GO:0006357]; sex differentiation [GO:0007548] -Q9Y5R6 reviewed DMRT1_HUMAN Doublesex- and mab-3-related transcription factor 1 (DM domain expressed in testis protein 1) DMRT1 DMT1 cell morphogenesis [GO:0000902]; germ cell migration [GO:0008354]; intracellular signal transduction [GO:0035556]; male germ cell proliferation [GO:0002176]; male sex determination [GO:0030238]; male sex differentiation [GO:0046661]; meiosis I [GO:0007127]; negative regulation of meiotic nuclear division [GO:0045835]; negative regulation of transcription by RNA polymerase II [GO:0000122]; oocyte development [GO:0048599]; positive regulation of male gonad development [GO:2000020]; positive regulation of meiosis I [GO:0060903]; positive regulation of mitotic nuclear division [GO:0045840]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of nodal signaling pathway [GO:1900107]; regulation of transcription by RNA polymerase II [GO:0006357]; Sertoli cell development [GO:0060009]; Sertoli cell differentiation [GO:0060008]; sex differentiation [GO:0007548]; spermatogenesis [GO:0007283] -Q9Y5T5 reviewed UBP16_HUMAN Ubiquitin carboxyl-terminal hydrolase 16 (EC 3.4.19.12) (Deubiquitinating enzyme 16) (Ubiquitin thioesterase 16) (Ubiquitin-processing protease UBP-M) (Ubiquitin-specific-processing protease 16) USP16 MSTP039 cell division [GO:0051301]; DNA damage response [GO:0006974]; mitotic nuclear division [GO:0140014]; monoubiquitinated protein deubiquitination [GO:0035520]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of ribosome biogenesis [GO:0090070]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of translational elongation [GO:0045901]; protein homotetramerization [GO:0051289]; proteolysis [GO:0006508]; regulation of cell cycle [GO:0051726]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9Y5W3 reviewed KLF2_HUMAN Krueppel-like factor 2 (Lung krueppel-like factor) KLF2 LKLF cell morphogenesis [GO:0000902]; cellular response to cycloheximide [GO:0071409]; cellular response to fluid shear stress [GO:0071498]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to interleukin-1 [GO:0071347]; cellular response to laminar fluid shear stress [GO:0071499]; cellular response to peptide [GO:1901653]; cellular response to tumor necrosis factor [GO:0071356]; cellular stress response to acid chemical [GO:0097533]; epigenetic regulation of gene expression [GO:0040029]; erythrocyte maturation [GO:0043249]; in utero embryonic development [GO:0001701]; multicellular organism growth [GO:0035264]; negative regulation of interleukin-6 production [GO:0032715]; negative regulation of sprouting angiogenesis [GO:1903671]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of nitric oxide biosynthetic process [GO:0045429]; positive regulation of protein metabolic process [GO:0051247]; positive regulation of retinoic acid receptor signaling pathway [GO:0048386]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; type I pneumocyte differentiation [GO:0060509]; vasodilation [GO:0042311] -Q9Y5X4 reviewed NR2E3_HUMAN Photoreceptor-specific nuclear receptor (Nuclear receptor subfamily 2 group E member 3) (Retina-specific nuclear receptor) NR2E3 PNR RNR cell differentiation [GO:0030154]; cell population proliferation [GO:0008283]; eye photoreceptor cell development [GO:0042462]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of transcription by RNA polymerase II [GO:0000122]; phototransduction [GO:0007602]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; retina development in camera-type eye [GO:0060041]; signal transduction [GO:0007165]; visual perception [GO:0007601] -Q9Y613 reviewed FHOD1_HUMAN FH1/FH2 domain-containing protein 1 (Formin homolog overexpressed in spleen 1) (FHOS) (Formin homology 2 domain-containing protein 1) FHOD1 FHOS FHOS1 cortical actin cytoskeleton organization [GO:0030866]; establishment of centrosome localization [GO:0051660]; nuclear migration [GO:0007097]; positive regulation of stress fiber assembly [GO:0051496]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of stress fiber assembly [GO:0051492] -Q9Y692 reviewed GMEB1_HUMAN Glucocorticoid modulatory element-binding protein 1 (GMEB-1) (DNA-binding protein p96PIF) (Parvovirus initiation factor p96) (PIF p96) GMEB1 regulation of transcription by RNA polymerase II [GO:0006357] -Q9Y6H1 reviewed CHCH2_HUMAN Coiled-coil-helix-coiled-coil-helix domain-containing protein 2 (Aging-associated gene 10 protein) (HCV NS2 trans-regulated protein) (NS2TP) CHCHD2 C7orf17 AAG10 cellular response to oxidative stress [GO:0034599]; mitochondrion organization [GO:0007005]; positive regulation of mitochondrial ATP synthesis coupled electron transport [GO:1905448]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cellular response to hypoxia [GO:1900037]; regulation of generation of precursor metabolites and energy [GO:0043467] -Q9Y6K9 reviewed NEMO_HUMAN NF-kappa-B essential modulator (NEMO) (FIP-3) (IkB kinase-associated protein 1) (IKKAP1) (Inhibitor of nuclear factor kappa-B kinase subunit gamma) (I-kappa-B kinase subunit gamma) (IKK-gamma) (IKKG) (IkB kinase subunit gamma) (NF-kappa-B essential modifier) IKBKG FIP3 NEMO anoikis [GO:0043276]; apoptotic process [GO:0006915]; canonical NF-kappaB signal transduction [GO:0007249]; defense response to bacterium [GO:0042742]; DNA damage response [GO:0006974]; establishment of vesicle localization [GO:0051650]; immune response [GO:0006955]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of macroautophagy [GO:0016239]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of T cell receptor signaling pathway [GO:0050862]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of ubiquitin-dependent protein catabolic process [GO:2000060]; protein-containing complex assembly [GO:0065003]; response to virus [GO:0009615]; T cell receptor signaling pathway [GO:0050852] -Q9Y6Q9 reviewed NCOA3_HUMAN Nuclear receptor coactivator 3 (NCoA-3) (EC 2.3.1.48) (ACTR) (Amplified in breast cancer 1 protein) (AIB-1) (CBP-interacting protein) (pCIP) (Class E basic helix-loop-helix protein 42) (bHLHe42) (Receptor-associated coactivator 3) (RAC-3) (Steroid receptor coactivator protein 3) (SRC-3) (Thyroid hormone receptor activator molecule 1) (TRAM-1) NCOA3 AIB1 BHLHE42 RAC3 TRAM1 cell dedifferentiation [GO:0043697]; cellular response to estradiol stimulus [GO:0071392]; cellular response to hormone stimulus [GO:0032870]; positive regulation of keratinocyte differentiation [GO:0045618]; positive regulation of stem cell population maintenance [GO:1902459]; positive regulation of transcription by RNA polymerase II [GO:0045944]; receptor transactivation [GO:0035624]; regulation of stem cell division [GO:2000035] -Q9Y6Y1 reviewed CMTA1_HUMAN Calmodulin-binding transcription activator 1 CAMTA1 KIAA0833 MSTP023 neuromuscular process controlling balance [GO:0050885]; positive regulation of calcineurin-NFAT signaling cascade [GO:0070886]; positive regulation of protein dephosphorylation [GO:0035307]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -V9HWC2 unreviewed V9HWC2_HUMAN protein deglycase (EC 3.5.1.124) (Maillard deglycase) (Parkinsonism-associated deglycase) (Protein DJ-1) (Protein/nucleic acid deglycase DJ-1) HEL-S-67p adult locomotory behavior [GO:0008344]; autophagy [GO:0006914]; cellular response to glyoxal [GO:0036471]; cellular response to reactive oxygen species [GO:0034614]; detection of oxidative stress [GO:0070994]; detoxification of copper ion [GO:0010273]; detoxification of mercury ion [GO:0050787]; dopamine uptake involved in synaptic transmission [GO:0051583]; glucose homeostasis [GO:0042593]; glycolate biosynthetic process [GO:0046295]; glyoxal metabolic process [GO:1903189]; hydrogen peroxide metabolic process [GO:0042743]; inflammatory response [GO:0006954]; insulin secretion [GO:0030073]; membrane depolarization [GO:0051899]; membrane hyperpolarization [GO:0060081]; mitochondrion organization [GO:0007005]; negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway [GO:1902236]; negative regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway [GO:1903384]; negative regulation of protein catabolic process [GO:0042177]; negative regulation of protein ubiquitination [GO:0031397]; negative regulation of reactive oxygen species biosynthetic process [GO:1903427]; positive regulation of acute inflammatory response to antigenic stimulus [GO:0002866]; positive regulation of gene expression [GO:0010628]; positive regulation of mitochondrial electron transport, NADH to ubiquinone [GO:1902958]; positive regulation of oxidative stress-induced intrinsic apoptotic signaling pathway [GO:1902177]; positive regulation of reactive oxygen species biosynthetic process [GO:1903428]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein stabilization [GO:0050821]; response to hydrogen peroxide [GO:0042542]; single fertilization [GO:0007338] -W6CJ52 unreviewed W6CJ52_HUMAN Forkhead box C1 FOXC1 hCG_21926 apoptotic process involved in outflow tract morphogenesis [GO:0003275]; artery morphogenesis [GO:0048844]; blood vessel diameter maintenance [GO:0097746]; blood vessel remodeling [GO:0001974]; camera-type eye development [GO:0043010]; cardiac muscle cell proliferation [GO:0060038]; cerebellum development [GO:0021549]; chemokine-mediated signaling pathway [GO:0070098]; collagen fibril organization [GO:0030199]; embryonic heart tube development [GO:0035050]; endochondral ossification [GO:0001958]; germ cell migration [GO:0008354]; glomerular epithelium development [GO:0072010]; glycosaminoglycan metabolic process [GO:0030203]; in utero embryonic development [GO:0001701]; lacrimal gland development [GO:0032808]; lymph vessel development [GO:0001945]; maintenance of lens transparency [GO:0036438]; mesenchymal cell development [GO:0014031]; negative regulation of angiogenesis [GO:0016525]; negative regulation of apoptotic process involved in outflow tract morphogenesis [GO:1902257]; negative regulation of lymphangiogenesis [GO:1901491]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural crest cell development [GO:0014032]; Notch signaling pathway [GO:0007219]; ovarian follicle development [GO:0001541]; paraxial mesoderm formation [GO:0048341]; positive regulation of gene expression [GO:0010628]; positive regulation of hematopoietic stem cell differentiation [GO:1902038]; regulation of organ growth [GO:0046620]; somitogenesis [GO:0001756]; ureteric bud development [GO:0001657]; vascular endothelial growth factor receptor signaling pathway [GO:0048010]; vascular endothelial growth factor signaling pathway [GO:0038084]; ventricular cardiac muscle tissue morphogenesis [GO:0055010] -X5DQM5 unreviewed X5DQM5_HUMAN Beta-2 adrenergic receptor (Beta-2 adrenoceptor) (Beta-2 adrenoreceptor) ADRB2 adenylate cyclase-activating adrenergic receptor signaling pathway [GO:0071880]; bone resorption [GO:0045453]; brown fat cell differentiation [GO:0050873]; cellular response to amyloid-beta [GO:1904646]; diet induced thermogenesis [GO:0002024]; heat generation [GO:0031649]; negative regulation of multicellular organism growth [GO:0040015]; negative regulation of smooth muscle contraction [GO:0045986]; norepinephrine-epinephrine-mediated vasodilation involved in regulation of systemic arterial blood pressure [GO:0002025]; positive regulation of bone mineralization [GO:0030501]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of mini excitatory postsynaptic potential [GO:0061885]; positive regulation of protein kinase A signaling [GO:0010739]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of sodium ion transport [GO:0002028]; response to cold [GO:0009409]; smooth muscle contraction [GO:0006939]; transcription by RNA polymerase II [GO:0006366] -A0A087X0R0 unreviewed A0A087X0R0_HUMAN [histone H3]-trimethyl-L-lysine(27) demethylase (EC 1.14.11.68) KDM6A cellular response to angiotensin [GO:1904385]; cellular response to endothelin [GO:1990859]; cellular response to hypoxia [GO:0071456]; cellular response to transforming growth factor beta stimulus [GO:0071560]; cellular response to vitamin D [GO:0071305]; heart morphogenesis [GO:0003007]; in utero embryonic development [GO:0001701]; mesodermal cell differentiation [GO:0048333]; multicellular organism growth [GO:0035264]; negative regulation of hypoxia-induced intrinsic apoptotic signaling pathway [GO:1903298]; neural tube closure [GO:0001843]; notochord morphogenesis [GO:0048570]; positive regulation of cell size [GO:0045793]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein modification process [GO:0036211]; respiratory system process [GO:0003016]; somite rostral/caudal axis specification [GO:0032525] -A0A0S2Z349 unreviewed A0A0S2Z349_HUMAN CD40 molecule TNF receptor superfamily member 5 isoform 3 CD40 B cell activation [GO:0042113]; CD40 signaling pathway [GO:0023035]; cellular response to interleukin-1 [GO:0071347]; cellular response to tumor necrosis factor [GO:0071356]; defense response to protozoan [GO:0042832]; defense response to virus [GO:0051607]; immune response-regulating cell surface receptor signaling pathway [GO:0002768]; positive regulation of angiogenesis [GO:0045766]; positive regulation of B cell proliferation [GO:0030890]; positive regulation of blood vessel endothelial cell migration [GO:0043536]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of endothelial cell apoptotic process [GO:2000353]; positive regulation of interleukin-12 production [GO:0032735]; positive regulation of isotype switching to IgG isotypes [GO:0048304]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; response to type II interferon [GO:0034341]; TRIF-dependent toll-like receptor signaling pathway [GO:0035666] -A0A0S2Z493 unreviewed A0A0S2Z493_HUMAN Neurogenic differentiation factor 1 NEUROD1 amacrine cell differentiation [GO:0035881]; anterior/posterior pattern specification [GO:0009952]; axon development [GO:0061564]; cell surface receptor signaling pathway via JAK-STAT [GO:0007259]; cellular response to glucose stimulus [GO:0071333]; cerebellum development [GO:0021549]; dentate gyrus development [GO:0021542]; embryonic organ morphogenesis [GO:0048562]; inner ear development [GO:0048839]; negative regulation of receptor signaling pathway via JAK-STAT [GO:0046426]; negative regulation of type B pancreatic cell apoptotic process [GO:2000675]; nucleocytoplasmic transport [GO:0006913]; pancreatic A cell fate commitment [GO:0003326]; pancreatic PP cell fate commitment [GO:0003329]; positive regulation of apoptotic process [GO:0043065]; positive regulation of neuron differentiation [GO:0045666]; regulation of intestinal epithelial structure maintenance [GO:0060730]; response to xenobiotic stimulus [GO:0009410]; signal transduction involved in regulation of gene expression [GO:0023019]; transcription by RNA polymerase II [GO:0006366] -A0A0S2Z595 unreviewed A0A0S2Z595_HUMAN FOS-like antigen 1 isoform 1 FOSL1 cellular response to extracellular stimulus [GO:0031668]; cytokine-mediated signaling pathway [GO:0019221]; female pregnancy [GO:0007565]; gene expression [GO:0010467]; in utero embryonic development [GO:0001701]; inflammatory response [GO:0006954]; learning [GO:0007612]; negative regulation of cell population proliferation [GO:0008285]; placenta blood vessel development [GO:0060674]; positive regulation of apoptotic process [GO:0043065]; positive regulation of cell cycle [GO:0045787]; response to cAMP [GO:0051591]; response to corticosterone [GO:0051412]; response to gravity [GO:0009629]; response to hydrogen peroxide [GO:0042542]; response to mechanical stimulus [GO:0009612]; response to progesterone [GO:0032570]; response to wounding [GO:0009611]; response to xenobiotic stimulus [GO:0009410]; toll-like receptor signaling pathway [GO:0002224]; vitellogenesis [GO:0007296] -A0A1U9X8M9 unreviewed A0A1U9X8M9_HUMAN Tumor necrosis factor (TNF-a) (Cachectin) (TNF-alpha) (Tumor necrosis factor ligand superfamily member 2) [Cleaved into: Intracellular domain 1 (ICD1); Intracellular domain 2 (ICD2); C-domain 1; C-domain 2; Tumor necrosis factor, soluble form] extrinsic apoptotic signaling pathway via death domain receptors [GO:0008625]; immune response [GO:0006955]; necroptotic signaling pathway [GO:0097527]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of biological quality [GO:0065008]; regulation of developmental process [GO:0050793]; regulation of multicellular organismal process [GO:0051239]; regulation of secretion [GO:0051046]; tumor necrosis factor-mediated signaling pathway [GO:0033209]; vascular endothelial growth factor production [GO:0010573] -A0A386IN41 unreviewed A0A386IN41_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; fatty acid biosynthetic process [GO:0006633]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A386IN52 unreviewed A0A386IN52_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; fatty acid biosynthetic process [GO:0006633]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A386IN60 unreviewed A0A386IN60_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; fatty acid biosynthetic process [GO:0006633]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A386INP3 unreviewed A0A386INP3_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; fatty acid biosynthetic process [GO:0006633]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A386INQ5 unreviewed A0A386INQ5_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; fatty acid biosynthetic process [GO:0006633]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A386IPK6 unreviewed A0A386IPK6_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; fatty acid biosynthetic process [GO:0006633]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A386IPW2 unreviewed A0A386IPW2_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; fatty acid biosynthetic process [GO:0006633]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A386IQ66 unreviewed A0A386IQ66_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; fatty acid biosynthetic process [GO:0006633]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A7U3JVZ2 unreviewed A0A7U3JVZ2_HUMAN Multifunctional fusion protein [Includes: Fibroblast growth factor 1 (Acidic fibroblast growth factor) (Heparin-binding growth factor 1); Fibroblast growth factor (FGF)] FGF2B angiogenesis [GO:0001525]; animal organ morphogenesis [GO:0009887]; cell differentiation [GO:0030154]; epithelial cell proliferation [GO:0050673]; fibroblast growth factor receptor signaling pathway [GO:0008543]; lung development [GO:0030324]; organ induction [GO:0001759]; positive regulation of cell division [GO:0051781]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of gene expression [GO:0010628]; positive regulation of hepatocyte proliferation [GO:2000347]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of transcription by RNA polymerase II [GO:0045944]; wound healing [GO:0042060] -A0A7U3JW12 unreviewed A0A7U3JW12_HUMAN Fibroblast growth factor (FGF) FGF7A FGF4 hCG_27984 apoptotic process involved in morphogenesis [GO:0060561]; cartilage condensation [GO:0001502]; cell differentiation [GO:0030154]; cellular response to leukemia inhibitory factor [GO:1990830]; cranial suture morphogenesis [GO:0060363]; embryonic hindlimb morphogenesis [GO:0035116]; epithelial cell apoptotic process [GO:1904019]; fibroblast growth factor receptor signaling pathway [GO:0008543]; negative regulation of apoptotic process [GO:0043066]; odontogenesis of dentin-containing tooth [GO:0042475]; positive regulation of cell division [GO:0051781]; positive regulation of gene expression [GO:0010628]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell migration [GO:0030334]; somatic stem cell population maintenance [GO:0035019]; stem cell proliferation [GO:0072089] -A0A977WMN2 unreviewed A0A977WMN2_HUMAN Tumor necrosis factor (TNF-a) (Cachectin) (TNF-alpha) (Tumor necrosis factor ligand superfamily member 2) [Cleaved into: Intracellular domain 1 (ICD1); Intracellular domain 2 (ICD2); C-domain 1; C-domain 2; Tumor necrosis factor, soluble form] TNF extrinsic apoptotic signaling pathway via death domain receptors [GO:0008625]; immune response [GO:0006955]; necroptotic signaling pathway [GO:0097527]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of biological quality [GO:0065008]; regulation of developmental process [GO:0050793]; regulation of multicellular organismal process [GO:0051239]; regulation of secretion [GO:0051046]; tumor necrosis factor-mediated signaling pathway [GO:0033209]; vascular endothelial growth factor production [GO:0010573] -A0A9E8Z2K8 unreviewed A0A9E8Z2K8_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; fatty acid biosynthetic process [GO:0006633]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A9Y1QPR4 unreviewed A0A9Y1QPR4_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A9Y1QPY6 unreviewed A0A9Y1QPY6_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; fatty acid biosynthetic process [GO:0006633]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A9Y1QQD3 unreviewed A0A9Y1QQD3_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A9Y1QQF1 unreviewed A0A9Y1QQF1_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A9Y1QQJ6 unreviewed A0A9Y1QQJ6_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; fatty acid biosynthetic process [GO:0006633]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A9Y1QQK3 unreviewed A0A9Y1QQK3_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A9Y1QQK5 unreviewed A0A9Y1QQK5_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A9Y1QQK7 unreviewed A0A9Y1QQK7_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A9Y1QQL7 unreviewed A0A9Y1QQL7_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A9Y1VR53 unreviewed A0A9Y1VR53_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A9Y1VUM8 unreviewed A0A9Y1VUM8_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A9Y1VVD0 unreviewed A0A9Y1VVD0_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A9Y1VVE2 unreviewed A0A9Y1VVE2_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A1YPR0 reviewed ZBT7C_HUMAN Zinc finger and BTB domain-containing protein 7C (Affected by papillomavirus DNA integration in ME180 cells protein 1) (APM-1) (Zinc finger and BTB domain-containing protein 36) (Zinc finger protein 857C) ZBTB7C APM1 ZBTB36 ZNF857C negative regulation of cell population proliferation [GO:0008285]; positive regulation of fat cell differentiation [GO:0045600]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -A6NFD8 reviewed HELT_HUMAN Hairy and enhancer of split-related protein HELT (HES/HEY-like transcription factor) HELT anterior/posterior pattern specification [GO:0009952]; central nervous system development [GO:0007417]; GABAergic neuron differentiation in basal ganglia [GO:0021858]; multicellular organism growth [GO:0035264]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-embryonic development [GO:0009791]; regulation of neurogenesis [GO:0050767]; regulation of transcription by RNA polymerase II [GO:0006357]; suckling behavior [GO:0001967]; transcription by RNA polymerase II [GO:0006366] -A6XAA7 unreviewed A6XAA7_HUMAN Gremlin GREM1 hCG_1811964 cardiac muscle cell differentiation [GO:0055007]; cardiac muscle cell myoblast differentiation [GO:0060379]; cell migration involved in sprouting angiogenesis [GO:0002042]; cell-cell signaling [GO:0007267]; embryonic limb morphogenesis [GO:0030326]; mesenchymal to epithelial transition involved in metanephros morphogenesis [GO:0003337]; negative regulation of cell growth [GO:0030308]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of monocyte chemotaxis [GO:0090027]; negative regulation of osteoblast differentiation [GO:0045668]; positive regulation of angiogenesis [GO:0045766]; positive regulation of branching involved in ureteric bud morphogenesis [GO:0090190]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of peptidyl-tyrosine autophosphorylation [GO:1900086]; positive regulation of receptor internalization [GO:0002092]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proximal/distal pattern formation [GO:0009954]; regulation of focal adhesion assembly [GO:0051893]; sequestering of BMP from receptor via BMP binding [GO:0038098]; ureteric bud formation [GO:0060676] -A8K855 reviewed EFCB7_HUMAN EF-hand calcium-binding domain-containing protein 7 EFCAB7 KIAA1799 positive regulation of protein import into nucleus [GO:0042307]; positive regulation of protein localization to ciliary membrane [GO:1903569]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to motile cilium [GO:0120229]; regulation of smoothened signaling pathway [GO:0008589] -B3KX72 unreviewed B3KX72_HUMAN cDNA FLJ44920 fis, clone BRAMY3011501, highly similar to Heterogeneous nuclear ribonucleoprotein U CRD-mediated mRNA stabilization [GO:0070934]; negative regulation of telomere maintenance via telomerase [GO:0032211]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of attachment of mitotic spindle microtubules to kinetochore [GO:1902425]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; regulation of chromatin organization [GO:1902275]; regulation of mitotic spindle assembly [GO:1901673]; RNA localization to chromatin [GO:1990280] -B4DLR3 unreviewed B4DLR3_HUMAN cDNA FLJ54020, highly similar to Heterogeneous nuclear ribonucleoprotein U CRD-mediated mRNA stabilization [GO:0070934]; negative regulation of telomere maintenance via telomerase [GO:0032211]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of attachment of mitotic spindle microtubules to kinetochore [GO:1902425]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; regulation of chromatin organization [GO:1902275]; regulation of mitotic spindle assembly [GO:1901673]; RNA localization to chromatin [GO:1990280] -B5BUQ6 unreviewed B5BUQ6_HUMAN Tumor necrosis factor (TNF-a) (Cachectin) (TNF-alpha) (Tumor necrosis factor ligand superfamily member 2) [Cleaved into: Intracellular domain 1 (ICD1); Intracellular domain 2 (ICD2); C-domain 1; C-domain 2; Tumor necrosis factor, soluble form] TNF extrinsic apoptotic signaling pathway via death domain receptors [GO:0008625]; immune response [GO:0006955]; necroptotic signaling pathway [GO:0097527]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of biological quality [GO:0065008]; regulation of developmental process [GO:0050793]; regulation of multicellular organismal process [GO:0051239]; regulation of secretion [GO:0051046]; tumor necrosis factor-mediated signaling pathway [GO:0033209]; vascular endothelial growth factor production [GO:0010573] -C1K3N5 unreviewed C1K3N5_HUMAN Tumor necrosis factor (TNF-a) (Cachectin) (TNF-alpha) (Tumor necrosis factor ligand superfamily member 2) [Cleaved into: Intracellular domain 1 (ICD1); Intracellular domain 2 (ICD2); C-domain 1; C-domain 2; Tumor necrosis factor, soluble form] TNF extrinsic apoptotic signaling pathway via death domain receptors [GO:0008625]; immune response [GO:0006955]; necroptotic signaling pathway [GO:0097527]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to plasma membrane [GO:0072659]; regulation of biological quality [GO:0065008]; regulation of developmental process [GO:0050793]; regulation of multicellular organismal process [GO:0051239]; regulation of secretion [GO:0051046]; tumor necrosis factor-mediated signaling pathway [GO:0033209]; vascular endothelial growth factor production [GO:0010573] -F1D8N1 unreviewed F1D8N1_HUMAN Liver X nuclear receptor alpha variant 1 NR1H3 cell differentiation [GO:0030154]; cellular response to lipopolysaccharide [GO:0071222]; cholesterol homeostasis [GO:0042632]; negative regulation of cholesterol storage [GO:0010887]; negative regulation of cold-induced thermogenesis [GO:0120163]; negative regulation of inflammatory response [GO:0050728]; negative regulation of macrophage activation [GO:0043031]; negative regulation of pancreatic juice secretion [GO:0090188]; negative regulation of proteolysis [GO:0045861]; negative regulation of response to endoplasmic reticulum stress [GO:1903573]; negative regulation of secretion of lysosomal enzymes [GO:0090341]; negative regulation of transcription by RNA polymerase II [GO:0000122]; phosphatidylcholine acyl-chain remodeling [GO:0036151]; positive regulation of cholesterol efflux [GO:0010875]; triglyceride homeostasis [GO:0070328] -F1D8R8 unreviewed F1D8R8_HUMAN Steroidogenic factor 1 (Nuclear receptor subfamily 5 group A member 1) NR5A1 adrenal gland development [GO:0030325]; hormone metabolic process [GO:0042445]; hormone-mediated signaling pathway [GO:0009755]; Leydig cell differentiation [GO:0033327]; luteinization [GO:0001553]; maintenance of protein location in nucleus [GO:0051457]; negative regulation of female gonad development [GO:2000195]; positive regulation of male gonad development [GO:2000020]; positive regulation of transcription by RNA polymerase II [GO:0045944]; Sertoli cell differentiation [GO:0060008] -F6TDF5 unreviewed F6TDF5_HUMAN Zinc finger E-box-binding homeobox 1 ZEB1 cartilage development [GO:0051216]; cellular response to amino acid stimulus [GO:0071230]; cellular response to transforming growth factor beta stimulus [GO:0071560]; cochlea morphogenesis [GO:0090103]; embryonic camera-type eye morphogenesis [GO:0048596]; embryonic skeletal system morphogenesis [GO:0048704]; forebrain development [GO:0030900]; keratinocyte proliferation [GO:0043616]; negative regulation of epithelial cell differentiation [GO:0030857]; negative regulation of keratinocyte proliferation [GO:0010839]; pattern specification process [GO:0007389]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of mesenchymal cell proliferation [GO:0010464]; regulation of smooth muscle cell differentiation [GO:0051150]; regulation of T cell differentiation in thymus [GO:0033081]; regulation of transforming growth factor beta receptor signaling pathway [GO:0017015]; response to activity [GO:0014823]; response to nutrient levels [GO:0031667]; semicircular canal morphogenesis [GO:0048752] -G8I0D8 unreviewed G8I0D8_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; fatty acid biosynthetic process [GO:0006633]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -J3KP65 unreviewed J3KP65_HUMAN T-box transcription factor T (Brachyury protein) (Protein T) TBXT bone morphogenesis [GO:0060349]; cardiac muscle cell myoblast differentiation [GO:0060379]; cell population proliferation [GO:0008283]; cellular response to retinoic acid [GO:0071300]; determination of heart left/right asymmetry [GO:0061371]; embryonic skeletal system development [GO:0048706]; mesoderm migration involved in gastrulation [GO:0007509]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural plate morphogenesis [GO:0001839]; neural tube closure [GO:0001843]; notochord formation [GO:0014028]; penetration of zona pellucida [GO:0007341]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-anal tail morphogenesis [GO:0036342]; signal transduction involved in regulation of gene expression [GO:0023019]; somitogenesis [GO:0001756]; transcription by RNA polymerase II [GO:0006366]; vasculogenesis [GO:0001570] -L8B7P7 unreviewed L8B7P7_HUMAN ATL1-alpha zinc finger protein (B-cell CLL/lymphoma 11B (Zinc finger protein), isoform CRA_b) ATL1-alpha BCL11B hCG_1657560 alpha-beta T cell differentiation [GO:0046632]; commitment of neuronal cell to specific neuron type in forebrain [GO:0021902]; epithelial cell morphogenesis [GO:0003382]; keratinocyte development [GO:0003334]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of thymocyte apoptotic process [GO:0070244]; odontogenesis of dentin-containing tooth [GO:0042475]; olfactory bulb axon guidance [GO:0071678]; positive T cell selection [GO:0043368]; post-embryonic camera-type eye development [GO:0031077]; regulation of keratinocyte proliferation [GO:0010837]; regulation of lipid metabolic process [GO:0019216]; regulation of neuron differentiation [GO:0045664]; striatal medium spiny neuron differentiation [GO:0021773]; T cell differentiation in thymus [GO:0033077]; T cell receptor V(D)J recombination [GO:0033153]; thymocyte apoptotic process [GO:0070242]; thymus development [GO:0048538]; transcription by RNA polymerase II [GO:0006366] -O00321 reviewed ETV2_HUMAN ETS translocation variant 2 (Ets-related protein 71) ETV2 ER71 ETSRP71 blastocyst development [GO:0001824]; blood vessel morphogenesis [GO:0048514]; BMP signaling pathway [GO:0030509]; erythrocyte differentiation [GO:0030218]; mesoderm formation [GO:0001707]; Notch signaling pathway [GO:0007219]; placenta development [GO:0001890]; positive regulation of endothelial cell differentiation [GO:0045603]; positive regulation of gene expression [GO:0010628]; positive regulation of mesoderm development [GO:2000382]; regulation of transcription by RNA polymerase II [GO:0006357]; Wnt signaling pathway [GO:0016055] -O00570 reviewed SOX1_HUMAN Transcription factor SOX-1 SOX1 brain development [GO:0007420]; cellular response to leukemia inhibitory factor [GO:1990830]; chromatin organization [GO:0006325]; forebrain neuron development [GO:0021884]; interneuron migration [GO:1904936]; lens morphogenesis in camera-type eye [GO:0002089]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron differentiation [GO:0030182]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of oligodendrocyte differentiation [GO:0048713]; ventral spinal cord interneuron specification [GO:0021521] -O14709 reviewed ZN197_HUMAN Zinc finger protein 197 (Zinc finger protein with KRAB and SCAN domains 9) (ZnF20) (pVHL-associated KRAB domain-containing protein) ZNF197 ZKSCAN9 ZNF166 regulation of transcription by RNA polymerase II [GO:0006357] -O15370 reviewed SOX12_HUMAN Transcription factor SOX-12 (Protein SOX-22) SOX12 SOX22 brain development [GO:0007420]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron differentiation [GO:0030182]; positive regulation of regulatory T cell differentiation [GO:0045591]; positive regulation of transcription by RNA polymerase II [GO:0045944]; spinal cord development [GO:0021510] -O43345 reviewed ZN208_HUMAN Zinc finger protein 208 (Zinc finger protein 91-like) ZNF208 ZNF91L regulation of transcription by RNA polymerase II [GO:0006357] -O43812 reviewed DUX1_HUMAN Double homeobox protein 1 DUX1 positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -O60422 reviewed ONEC3_HUMAN One cut domain family member 3 (One cut homeobox 3) (Transcription factor ONECUT-3) (OC-3) ONECUT3 regulation of transcription by RNA polymerase II [GO:0006357] -P17038 reviewed ZNF43_HUMAN Zinc finger protein 43 (Zinc finger protein 39) (Zinc finger protein HTF6) (Zinc finger protein KOX27) ZNF43 KOX27 ZNF39 ZNF39L1 regulation of transcription by RNA polymerase II [GO:0006357] -P81877 reviewed SSBP2_HUMAN Single-stranded DNA-binding protein 2 (Sequence-specific single-stranded-DNA-binding protein 2) SSBP2 SSDP2 positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355] -Q03701 reviewed CEBPZ_HUMAN CCAAT/enhancer-binding protein zeta (CCAAT-box-binding transcription factor) (CBF) (CCAAT-binding factor) CEBPZ CBF2 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q06732 reviewed ZN33B_HUMAN Zinc finger protein 33B (Zinc finger protein 11B) (Zinc finger protein KOX2) ZNF33B KOX2 ZNF11B regulation of transcription by RNA polymerase II [GO:0006357] -Q0GK43 unreviewed Q0GK43_HUMAN Interleukin-2 (IL-2) IL2 hCG_38828 activated T cell proliferation [GO:0050798]; adaptive immune response [GO:0002250]; extrinsic apoptotic signaling pathway in absence of ligand [GO:0097192]; negative regulation of inflammatory response [GO:0050728]; negative regulation of lymphocyte proliferation [GO:0050672]; negative regulation of protein phosphorylation [GO:0001933]; negative regulation of T-helper 17 cell differentiation [GO:2000320]; positive regulation of activated T cell proliferation [GO:0042104]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of dendritic spine development [GO:0060999]; positive regulation of isotype switching to IgG isotypes [GO:0048304]; positive regulation of regulatory T cell differentiation [GO:0045591]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type II interferon production [GO:0032729]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; protein kinase C-activating G protein-coupled receptor signaling pathway [GO:0007205]; regulation of CD4-positive, alpha-beta T cell proliferation [GO:2000561]; regulation of T cell homeostatic proliferation [GO:0046013]; response to ethanol [GO:0045471]; response to tacrolimus [GO:1901327]; transcription by RNA polymerase II [GO:0006366] -Q15847 reviewed ADIRF_HUMAN Adipogenesis regulatory factor (Adipogenesis factor rich in obesity) (Adipose most abundant gene transcript 2 protein) (Adipose-specific protein 2) (apM-2) ADIRF AFRO APM2 C10orf116 cell differentiation [GO:0030154]; positive regulation of fat cell differentiation [GO:0045600]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q53QU7 unreviewed Q53QU7_HUMAN Distal-less homeobox 2 (cDNA FLJ75693, highly similar to Homo sapiens distal-less homeo box 2 (DLX2), mRNA) DLX2 hCG_16788 branching morphogenesis of a nerve [GO:0048755]; cartilage development [GO:0051216]; cerebral cortex GABAergic interneuron fate commitment [GO:0021893]; embryonic cranial skeleton morphogenesis [GO:0048701]; forebrain neuron differentiation [GO:0021879]; hippocampus development [GO:0021766]; negative regulation of Notch signaling pathway [GO:0045746]; negative regulation of oligodendrocyte differentiation [GO:0048715]; negative regulation of photoreceptor cell differentiation [GO:0046533]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuroblast differentiation [GO:0014016]; Notch signaling pathway [GO:0007219]; odontogenesis of dentin-containing tooth [GO:0042475]; olfactory bulb development [GO:0021772]; oligodendrocyte differentiation [GO:0048709]; positive regulation of amacrine cell differentiation [GO:1902871]; proximal/distal pattern formation [GO:0009954]; subpallium development [GO:0021544] -Q53X93 unreviewed Q53X93_HUMAN CREB1 protein (cAMP responsive element binding protein 1) (cDNA, FLJ96224, Homo sapiens cAMP responsive element binding protein 1 (CREB1),transcript variant A, mRNA) CREB1 hCG_15208 axonogenesis [GO:0007409]; cellular response to hepatocyte growth factor stimulus [GO:0035729]; cellular response to leukemia inhibitory factor [GO:1990830]; cellular response to retinoic acid [GO:0071300]; cellular response to zinc ion [GO:0071294]; circadian rhythm [GO:0007623]; hormone secretion [GO:0046879]; lactation [GO:0007595]; lung saccule development [GO:0060430]; memory [GO:0007613]; negative regulation of apoptotic process [GO:0043066]; osteoclast differentiation [GO:0030316]; pituitary gland development [GO:0021983]; positive regulation of cardiac muscle tissue development [GO:0055025]; positive regulation of fat cell differentiation [GO:0045600]; positive regulation of hormone secretion [GO:0046887]; positive regulation of lipid biosynthetic process [GO:0046889]; positive regulation of multicellular organism growth [GO:0040018]; positive regulation of osteoclast differentiation [GO:0045672]; protein stabilization [GO:0050821]; regulation of cell size [GO:0008361]; regulation of testosterone biosynthetic process [GO:2000224]; response to glucagon [GO:0033762]; response to xenobiotic stimulus [GO:0009410]; secretory granule organization [GO:0033363]; type I pneumocyte differentiation [GO:0060509] -Q546S1 unreviewed Q546S1_HUMAN Early growth response protein EGR1 hCG_18777 BMP signaling pathway [GO:0030509]; cellular response to gamma radiation [GO:0071480]; cellular response to organic substance [GO:0071310]; circadian regulation of gene expression [GO:0032922]; circadian temperature homeostasis [GO:0060086]; estrous cycle [GO:0044849]; locomotor rhythm [GO:0045475]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of chemokine production [GO:0032722]; positive regulation of gene expression via chromosomal CpG island demethylation [GO:0044029]; positive regulation of hormone biosynthetic process [GO:0046886]; positive regulation of interleukin-1 beta production [GO:0032731]; regulation of neuron apoptotic process [GO:0043523]; regulation of progesterone biosynthetic process [GO:2000182]; response to glucose [GO:0009749]; response to hypoxia [GO:0001666]; response to insulin [GO:0032868]; response to ischemia [GO:0002931]; skeletal muscle cell differentiation [GO:0035914]; T cell differentiation [GO:0030217] -Q5TYW1 reviewed ZN658_HUMAN Zinc finger protein 658 ZNF658 cellular response to zinc ion [GO:0071294]; negative regulation of DNA-templated transcription [GO:0045892]; regulation of transcription by RNA polymerase II [GO:0006357]; ribosome biogenesis [GO:0042254] -Q68DB7 unreviewed Q68DB7_HUMAN Mothers against decapentaplegic homolog (MAD homolog) (Mothers against DPP homolog) (SMAD family member) DKFZp781O1323 DKFZp781C1895 SMAD5 hCG_41402 BMP signaling pathway [GO:0030509]; bone development [GO:0060348]; cardiac muscle contraction [GO:0060048]; cartilage development [GO:0051216]; cellular response to organic cyclic compound [GO:0071407]; erythrocyte differentiation [GO:0030218]; germ cell development [GO:0007281]; Mullerian duct regression [GO:0001880]; osteoblast fate commitment [GO:0002051]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of transcription by RNA polymerase II [GO:0045944]; SMAD protein signal transduction [GO:0060395]; transforming growth factor beta receptor signaling pathway [GO:0007179]; ureteric bud development [GO:0001657] -Q6FH41 unreviewed Q6FH41_HUMAN Thyroid hormone receptor alpha (Nuclear receptor subfamily 1 group A member 1) THRA NR1A1 hCG_1749555 cartilage condensation [GO:0001502]; erythrocyte differentiation [GO:0030218]; female courtship behavior [GO:0008050]; learning or memory [GO:0007611]; negative regulation of transcription by RNA polymerase II [GO:0000122]; ossification [GO:0001503]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of female receptivity [GO:0045925]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of heart contraction [GO:0008016]; regulation of lipid catabolic process [GO:0050994]; regulation of myeloid cell apoptotic process [GO:0033032]; regulation of thyroid hormone mediated signaling pathway [GO:0002155]; response to cold [GO:0009409]; retinoic acid receptor signaling pathway [GO:0048384]; thyroid gland development [GO:0030878]; thyroid hormone mediated signaling pathway [GO:0002154]; type I pneumocyte differentiation [GO:0060509] -Q6P2H9 unreviewed Q6P2H9_HUMAN CD40 protein CD40 B cell activation [GO:0042113]; CD40 signaling pathway [GO:0023035]; cellular response to interleukin-1 [GO:0071347]; cellular response to tumor necrosis factor [GO:0071356]; defense response to protozoan [GO:0042832]; defense response to virus [GO:0051607]; immune response-regulating cell surface receptor signaling pathway [GO:0002768]; positive regulation of angiogenesis [GO:0045766]; positive regulation of B cell proliferation [GO:0030890]; positive regulation of blood vessel endothelial cell migration [GO:0043536]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of endothelial cell apoptotic process [GO:2000353]; positive regulation of interleukin-12 production [GO:0032735]; positive regulation of isotype switching to IgG isotypes [GO:0048304]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; response to type II interferon [GO:0034341]; TRIF-dependent toll-like receptor signaling pathway [GO:0035666] -Q6VUC0 reviewed AP2E_HUMAN Transcription factor AP-2-epsilon (AP2-epsilon) (Activating enhancer-binding protein 2-epsilon) TFAP2E regulation of cell population proliferation [GO:0042127]; regulation of transcription by RNA polymerase II [GO:0006357] -Q6ZN28 reviewed MACC1_HUMAN Metastasis-associated in colon cancer protein 1 (SH3 domain-containing protein 7a5) MACC1 positive regulation of cell division [GO:0051781]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q6ZR52 reviewed ZN493_HUMAN Zinc finger protein 493 ZNF493 regulation of transcription by RNA polymerase II [GO:0006357] -Q7Z4Q5 unreviewed Q7Z4Q5_HUMAN Heterogeneous nuclear ribonucleoprotein U (Scaffold attachment factor A), isoform CRA_a HNRPU hCG_22289 CRD-mediated mRNA stabilization [GO:0070934]; negative regulation of telomere maintenance via telomerase [GO:0032211]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of attachment of mitotic spindle microtubules to kinetochore [GO:1902425]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; regulation of chromatin organization [GO:1902275]; regulation of mitotic spindle assembly [GO:1901673]; RNA localization to chromatin [GO:1990280] -Q8N8G2 reviewed VGLL2_HUMAN Transcription cofactor vestigial-like protein 2 (Vgl-2) (Protein VITO1) VGLL2 VITO1 positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; skeletal muscle tissue development [GO:0007519] -Q8N8J6 reviewed ZN615_HUMAN Zinc finger protein 615 ZNF615 regulation of transcription by RNA polymerase II [GO:0006357] -Q8NCA9 reviewed ZN784_HUMAN Zinc finger protein 784 ZNF784 hematopoietic progenitor cell differentiation [GO:0002244]; regulation of transcription by RNA polymerase II [GO:0006357] -Q8NCK3 reviewed ZN485_HUMAN Zinc finger protein 485 ZNF485 regulation of transcription by RNA polymerase II [GO:0006357] -Q8NFJ8 reviewed BHE22_HUMAN Class E basic helix-loop-helix protein 22 (bHLHe22) (Class B basic helix-loop-helix protein 5) (bHLHb5) (Trinucleotide repeat-containing gene 20 protein) BHLHE22 BHLHB5 TNRC20 axon development [GO:0061564]; neuron fate commitment [GO:0048663]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sensory organ development [GO:0007423] -Q8TAK5 reviewed GABP2_HUMAN GA-binding protein subunit beta-2 (GABP subunit beta-2) (GABPB-2) GABPB2 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q8TD94 reviewed KLF14_HUMAN Krueppel-like factor 14 (Basic transcription element-binding protein 5) (BTE-binding protein 5) (Transcription factor BTEB5) KLF14 BTEB5 positive regulation of sphingolipid mediated signaling pathway [GO:1902070]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q8TF68 reviewed ZN384_HUMAN Zinc finger protein 384 (CAG repeat protein 1) (CAS-interacting zinc finger protein) (Nuclear matrix transcription factor 4) (Nuclear matrix protein 4) (Trinucleotide repeat-containing gene 1 protein) ZNF384 CAGH1 CIZ NMP4 TNRC1 regulation of transcription by RNA polymerase II [GO:0006357] -Q8WXB4 reviewed ZN606_HUMAN Zinc finger protein 606 (Zinc finger protein 328) ZNF606 KIAA1852 ZNF328 regulation of transcription by RNA polymerase II [GO:0006357] -Q8WYN3 reviewed CSRN3_HUMAN Cysteine/serine-rich nuclear protein 3 (CSRNP-3) (Protein FAM130A2) (TGF-beta-induced apoptosis protein 2) (TAIP-2) CSRNP3 FAM130A2 TAIP2 apoptotic process [GO:0006915]; positive regulation of apoptotic process [GO:0043065]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q96A47 reviewed ISL2_HUMAN Insulin gene enhancer protein ISL-2 (Islet-2) ISL2 axonogenesis [GO:0007409]; negative regulation of neuron differentiation [GO:0045665]; neuron development [GO:0048666]; neuron fate specification [GO:0048665]; peripheral nervous system neuron development [GO:0048935]; positive regulation of transcription by RNA polymerase II [GO:0045944]; retinal ganglion cell axon guidance [GO:0031290]; spinal cord motor neuron cell fate specification [GO:0021520]; visceral motor neuron differentiation [GO:0021524] -Q96BA7 unreviewed Q96BA7_HUMAN HNRPU protein CRD-mediated mRNA stabilization [GO:0070934]; negative regulation of telomere maintenance via telomerase [GO:0032211]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of attachment of mitotic spindle microtubules to kinetochore [GO:1902425]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; regulation of chromatin organization [GO:1902275]; regulation of mitotic spindle assembly [GO:1901673]; RNA localization to chromatin [GO:1990280] -Q96EJ4 unreviewed Q96EJ4_HUMAN PLAC8 protein positive regulation of transcription by RNA polymerase II [GO:0045944] -Q96SL8 reviewed FIZ1_HUMAN Flt3-interacting zinc finger protein 1 (Zinc finger protein 798) FIZ1 ZNF798 positive regulation of protein phosphorylation [GO:0001934]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9BTI9 unreviewed Q9BTI9_HUMAN Nucleophosmin NPM1 cellular senescence [GO:0090398]; centrosome cycle [GO:0007098]; chromatin remodeling [GO:0006338]; negative regulation of cell population proliferation [GO:0008285]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of centrosome duplication [GO:0010824]; ribosomal large subunit biogenesis [GO:0042273]; ribosomal large subunit export from nucleus [GO:0000055]; ribosomal small subunit biogenesis [GO:0042274]; ribosomal small subunit export from nucleus [GO:0000056] -Q9H175 reviewed CSRN2_HUMAN Cysteine/serine-rich nuclear protein 2 (CSRNP-2) (Protein FAM130A1) (TGF-beta-induced apoptosis protein 12) (TAIP-12) CSRNP2 C12orf22 FAM130A1 TAIP12 apoptotic process [GO:0006915]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9H2A3 reviewed NGN2_HUMAN Neurogenin-2 (NGN-2) (Class A basic helix-loop-helix protein 8) (bHLHa8) (Protein atonal homolog 4) NEUROG2 ATOH4 BHLHA8 NGN2 axon development [GO:0061564]; forebrain development [GO:0030900]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sensory organ development [GO:0007423] -Q9HB09 reviewed B2L12_HUMAN Bcl-2-like protein 12 (Bcl2-L-12) (Bcl-2-related proline-rich protein) BCL2L12 BPR apoptotic process [GO:0006915]; inhibition of cysteine-type endopeptidase activity involved in apoptotic process [GO:1990001]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of extrinsic apoptotic signaling pathway [GO:2001236] -Q9NRR1 reviewed CYTL1_HUMAN Cytokine-like protein 1 (Protein C17) CYTL1 C4orf4 UNQ1942/PRO4425 cartilage homeostasis [GO:1990079]; chondrocyte differentiation [GO:0002062]; chondroitin sulfate proteoglycan biosynthetic process [GO:0050650]; inner ear development [GO:0048839]; positive regulation of transcription by RNA polymerase II [GO:0045944]; signal transduction [GO:0007165]; transcription by RNA polymerase II [GO:0006366] -Q9NWA0 reviewed MED9_HUMAN Mediator of RNA polymerase II transcription subunit 9 (Mediator complex subunit 9) MED9 MED25 positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; RNA polymerase II preinitiation complex assembly [GO:0051123] -Q9NY43 reviewed BARH2_HUMAN BarH-like 2 homeobox protein BARHL2 amacrine cell differentiation [GO:0035881]; cell fate determination [GO:0001709]; neuron migration [GO:0001764]; positive regulation of translation [GO:0045727]; regulation of axon extension [GO:0030516]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9UBG7 reviewed RBPJL_HUMAN Recombining binding protein suppressor of hairless-like protein (Transcription factor RBP-L) RBPJL RBPL RBPSUHL signal transduction [GO:0007165] -Q9UH62 reviewed ARMX3_HUMAN Armadillo repeat-containing X-linked protein 3 (ARM protein lost in epithelial cancers on chromosome X 3) (Protein ALEX3) ARMCX3 ALEX3 BM-017 UNQ2517/PRO6007 axonal transport of mitochondrion [GO:0019896]; mitochondrion organization [GO:0007005]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization [GO:0008104] -Q9UJG1 reviewed MSPD1_HUMAN Motile sperm domain-containing protein 1 MOSPD1 cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9UJU3 reviewed ZN112_HUMAN Zinc finger protein 112 (Zfp-112) (Zinc finger protein 228) ZNF112 ZFP112 ZNF228 regulation of transcription by RNA polymerase II [GO:0006357] -Q9UJW7 reviewed ZN229_HUMAN Zinc finger protein 229 ZNF229 regulation of transcription by RNA polymerase II [GO:0006357] -Q9Y651 reviewed SOX21_HUMAN Transcription factor SOX-21 (SOX-A) SOX21 SOX25 SOXA brain development [GO:0007420]; hair follicle development [GO:0001942]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron differentiation [GO:0030182]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of transcription by RNA polymerase II [GO:0006357]; stem cell differentiation [GO:0048863] -R4SCQ0 unreviewed R4SCQ0_HUMAN hypoxia-inducible factor-proline dioxygenase (EC 1.14.11.29) EGLN1 hCG_1810777 cardiac muscle tissue morphogenesis [GO:0055008]; cellular response to hypoxia [GO:0071456]; heart trabecula formation [GO:0060347]; intracellular iron ion homeostasis [GO:0006879]; labyrinthine layer development [GO:0060711]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of angiogenesis [GO:0045765]; regulation of modification of postsynaptic structure [GO:0099159]; regulation protein catabolic process at postsynapse [GO:0140252]; ventricular septum morphogenesis [GO:0060412] -R9W7C9 unreviewed R9W7C9_HUMAN Paired box protein Pax-8 PAX8 central nervous system development [GO:0007417]; epithelial cell differentiation [GO:0030855]; inner ear morphogenesis [GO:0042472]; mesonephric tubule development [GO:0072164]; metanephric distal convoluted tubule development [GO:0072221]; metanephric nephron tubule formation [GO:0072289]; negative regulation of apoptotic process involved in metanephric collecting duct development [GO:1900215]; negative regulation of apoptotic process involved in metanephric nephron tubule development [GO:1900218]; negative regulation of cardiac muscle cell apoptotic process [GO:0010667]; negative regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis [GO:0072305]; positive regulation of branching involved in ureteric bud morphogenesis [GO:0090190]; positive regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis [GO:0072108]; positive regulation of metanephric DCT cell differentiation [GO:2000594]; positive regulation of thyroid hormone generation [GO:2000611]; pronephric field specification [GO:0039003]; regulation of metanephric nephron tubule epithelial cell differentiation [GO:0072307]; S-shaped body morphogenesis [GO:0072050]; sulfur compound metabolic process [GO:0006790]; thyroid gland development [GO:0030878]; urogenital system development [GO:0001655]; ventricular septum development [GO:0003281] -X5D2F9 unreviewed X5D2F9_HUMAN Distal-less homeobox 1 isoform A DLX1 cerebral cortex GABAergic interneuron fate commitment [GO:0021893]; embryonic skeletal system development [GO:0048706]; forebrain neuron differentiation [GO:0021879]; hippocampus development [GO:0021766]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of Notch signaling pathway [GO:0045746]; negative regulation of oligodendrocyte differentiation [GO:0048715]; negative regulation of photoreceptor cell differentiation [GO:0046533]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuroblast differentiation [GO:0014016]; neuron apoptotic process [GO:0051402]; Notch signaling pathway [GO:0007219]; odontogenesis of dentin-containing tooth [GO:0042475]; oligodendrocyte differentiation [GO:0048709]; positive regulation of amacrine cell differentiation [GO:1902871]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proximal/distal pattern formation [GO:0009954]; subpallium development [GO:0021544] -X5D7D8 unreviewed X5D7D8_HUMAN Distal-less homeobox 2 isoform A DLX2 branching morphogenesis of a nerve [GO:0048755]; cartilage development [GO:0051216]; cerebral cortex GABAergic interneuron fate commitment [GO:0021893]; embryonic cranial skeleton morphogenesis [GO:0048701]; forebrain neuron differentiation [GO:0021879]; hippocampus development [GO:0021766]; negative regulation of Notch signaling pathway [GO:0045746]; negative regulation of oligodendrocyte differentiation [GO:0048715]; negative regulation of photoreceptor cell differentiation [GO:0046533]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuroblast differentiation [GO:0014016]; Notch signaling pathway [GO:0007219]; odontogenesis of dentin-containing tooth [GO:0042475]; olfactory bulb development [GO:0021772]; oligodendrocyte differentiation [GO:0048709]; positive regulation of amacrine cell differentiation [GO:1902871]; proximal/distal pattern formation [GO:0009954]; subpallium development [GO:0021544] -A0A024R2I8 unreviewed A0A024R2I8_HUMAN Thyroid hormone nuclear receptor beta variant 1 NR1A2 female courtship behavior [GO:0008050]; negative regulation of female receptivity [GO:0007621]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of heart contraction [GO:0008016]; retinal cone cell apoptotic process [GO:0097474]; retinal cone cell development [GO:0046549]; retinoic acid receptor signaling pathway [GO:0048384]; sensory perception of sound [GO:0007605]; thyroid hormone mediated signaling pathway [GO:0002154]; type I pneumocyte differentiation [GO:0060509] -A0A024RCR3 unreviewed A0A024RCR3_HUMAN PBX2 animal organ morphogenesis [GO:0009887]; brain development [GO:0007420]; embryonic limb morphogenesis [GO:0030326]; embryonic organ development [GO:0048568]; eye development [GO:0001654]; neuron development [GO:0048666]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proximal/distal pattern formation [GO:0009954] -A0A0S2Z3F9 unreviewed A0A0S2Z3F9_HUMAN Cyclin-dependent kinase 7 (EC 2.7.11.23) (Cell division protein kinase 7) CDK7 hCG_1988840 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A0S2Z487 unreviewed A0A0S2Z487_HUMAN Junction plakoglobin JUP canonical Wnt signaling pathway [GO:0060070]; cell-cell adhesion [GO:0098609]; desmosome assembly [GO:0002159]; positive regulation of transcription by RNA polymerase II [GO:0045944]; skin development [GO:0043588] -A0A0S2Z491 unreviewed A0A0S2Z491_HUMAN Nucleophosmin NPM1 chromatin remodeling [GO:0006338]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of centrosome duplication [GO:0010824]; ribosomal large subunit biogenesis [GO:0042273]; ribosomal large subunit export from nucleus [GO:0000055]; ribosomal small subunit biogenesis [GO:0042274]; ribosomal small subunit export from nucleus [GO:0000056] -A0A0S2Z495 unreviewed A0A0S2Z495_HUMAN Junction plakoglobin JUP canonical Wnt signaling pathway [GO:0060070]; cell-cell adhesion [GO:0098609]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A0S2Z4G7 unreviewed A0A0S2Z4G7_HUMAN Nucleophosmin NPM1 hCG_1979311 chromatin remodeling [GO:0006338]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of centrosome duplication [GO:0010824]; ribosomal large subunit biogenesis [GO:0042273]; ribosomal large subunit export from nucleus [GO:0000055]; ribosomal small subunit biogenesis [GO:0042274]; ribosomal small subunit export from nucleus [GO:0000056] -A0A0S2Z4K5 unreviewed A0A0S2Z4K5_HUMAN Peroxisome proliferator-activated receptor gamma (PPAR-gamma) (Nuclear receptor subfamily 1 group C member 3) PPARG cell differentiation [GO:0030154]; fatty acid metabolic process [GO:0006631]; hormone-mediated signaling pathway [GO:0009755]; negative regulation of cholesterol storage [GO:0010887]; negative regulation of inflammatory response [GO:0050728]; positive regulation of fatty acid metabolic process [GO:0045923]; positive regulation of transcription by RNA polymerase II [GO:0045944]; rhythmic process [GO:0048511] -A0A0S2Z4N0 unreviewed A0A0S2Z4N0_HUMAN MADS box transcription enhancer factor 2, polypeptide A (Myocyte enhancer factor 2A), isoform CRA_d (Myocyte enhancer factor 2A isoform 3) MEF2A hCG_1993173 cardiac conduction [GO:0061337]; mitochondrial genome maintenance [GO:0000002]; mitochondrion distribution [GO:0048311]; positive regulation of gene expression [GO:0010628]; positive regulation of glucose import [GO:0046326]; ventricular cardiac myofibril assembly [GO:0055005] -A0A0S2Z514 unreviewed A0A0S2Z514_HUMAN Proton-coupled zinc antiporter SLC30A9, mitochondrial (Solute carrier family 30 member 9) (Zinc transporter 9) SLC30A9 intracellular zinc ion homeostasis [GO:0006882]; positive regulation of transcription by RNA polymerase II [GO:0045944]; zinc ion transmembrane transport [GO:0071577] -A0A140VJQ2 unreviewed A0A140VJQ2_HUMAN Nucleophosmin chromatin remodeling [GO:0006338]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of centrosome duplication [GO:0010824]; ribosomal large subunit biogenesis [GO:0042273]; ribosomal large subunit export from nucleus [GO:0000055]; ribosomal small subunit biogenesis [GO:0042274]; ribosomal small subunit export from nucleus [GO:0000056] -A0A140VKG3 unreviewed A0A140VKG3_HUMAN Testis tissue sperm-binding protein Li 80P axonal fasciculation [GO:0007413]; cell dedifferentiation [GO:0043697]; cerebral cortex GABAergic interneuron migration [GO:0021853]; commitment of neuronal cell to specific neuron type in forebrain [GO:0021902]; dendrite development [GO:0016358]; dentate gyrus development [GO:0021542]; forebrain anterior/posterior pattern specification [GO:0021797]; locomotory behavior [GO:0007626]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of neuron differentiation [GO:0045665]; neuron fate determination [GO:0048664]; positive regulation of neuron differentiation [GO:0045666]; regulation of axon guidance [GO:1902667]; regulation of neurogenesis [GO:0050767] -A0A158SIU0 unreviewed A0A158SIU0_HUMAN Methylcytosine dioxygenase TET (EC 1.14.11.80) TET2 5-methylcytosine catabolic process [GO:0006211]; DNA demethylation [GO:0080111]; myeloid cell differentiation [GO:0030099]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to organic cyclic compound [GO:0014070] -A0A1U9X830 unreviewed A0A1U9X830_HUMAN Negative elongation factor E negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transcription elongation by RNA polymerase II [GO:0034244]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of protein modification process [GO:0031401]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A384MDX3 unreviewed A0A384MDX3_HUMAN Protein Wnt atrial cardiac muscle tissue morphogenesis [GO:0055009]; canonical Wnt signaling pathway [GO:0060070]; cardiac epithelial to mesenchymal transition [GO:0060317]; cardiac muscle cell proliferation [GO:0060038]; cell fate commitment [GO:0045165]; cell proliferation in midbrain [GO:0033278]; epithelial cell proliferation involved in lung morphogenesis [GO:0060502]; labyrinthine layer blood vessel development [GO:0060716]; lung induction [GO:0060492]; mesenchymal cell proliferation [GO:0010463]; neuron differentiation [GO:0030182]; positive regulation of cardiac muscle cell proliferation [GO:0060045]; positive regulation of epithelial cell proliferation involved in lung morphogenesis [GO:0060501]; positive regulation of mesenchymal cell proliferation [GO:0002053]; positive regulation of neurogenesis [GO:0050769]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A386IN53 unreviewed A0A386IN53_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A386INJ5 unreviewed A0A386INJ5_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A386INP8 unreviewed A0A386INP8_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A386IPB0 unreviewed A0A386IPB0_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A386IPL0 unreviewed A0A386IPL0_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A386IPW4 unreviewed A0A386IPW4_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A386IPY7 unreviewed A0A386IPY7_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A386IQ64 unreviewed A0A386IQ64_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A3G1CIM0 unreviewed A0A3G1CIM0_HUMAN RING-type E3 ubiquitin transferase BRCA1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A411ELD0 unreviewed A0A411ELD0_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -A0A411ELD1 unreviewed A0A411ELD1_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -A0A411ELD8 unreviewed A0A411ELD8_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -A0A411ELE5 unreviewed A0A411ELE5_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -A0A411ELF4 unreviewed A0A411ELF4_HUMAN Sex-determining region Y protein (Testis-determining factor) SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -A0A411ELH3 unreviewed A0A411ELH3_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -A0A411ELN9 unreviewed A0A411ELN9_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -A0A411ELP6 unreviewed A0A411ELP6_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -A0A411ELP9 unreviewed A0A411ELP9_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -A0A411ELQ6 unreviewed A0A411ELQ6_HUMAN Sex-determining region Y protein (Testis-determining factor) SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -A0A411ELR1 unreviewed A0A411ELR1_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -A0A411ELS2 unreviewed A0A411ELS2_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -A0A411HBC7 unreviewed A0A411HBC7_HUMAN WW domain-containing oxidoreductase WWOX cellular response to transforming growth factor beta stimulus [GO:0071560]; extrinsic apoptotic signaling pathway [GO:0097191]; intrinsic apoptotic signaling pathway by p53 class mediator [GO:0072332]; osteoblast differentiation [GO:0001649]; positive regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001241]; positive regulation of transcription by RNA polymerase II [GO:0045944]; skeletal system morphogenesis [GO:0048705]; Wnt signaling pathway [GO:0016055] -A0A494C1F9 unreviewed A0A494C1F9_HUMAN Peroxisome proliferator-activated receptor gamma (PPAR-gamma) (Nuclear receptor subfamily 1 group C member 3) PPARG1D5 PPARG PPARG3D5 cell differentiation [GO:0030154]; fatty acid metabolic process [GO:0006631]; hormone-mediated signaling pathway [GO:0009755]; negative regulation of cholesterol storage [GO:0010887]; negative regulation of inflammatory response [GO:0050728]; positive regulation of fatty acid metabolic process [GO:0045923]; positive regulation of transcription by RNA polymerase II [GO:0045944]; rhythmic process [GO:0048511] -A0A4P8DLA0 unreviewed A0A4P8DLA0_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A649U8H0 unreviewed A0A649U8H0_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A669KB12 unreviewed A0A669KB12_HUMAN histone acetyltransferase (EC 2.3.1.48) EP300 positive regulation of transcription by RNA polymerase II [GO:0045944]; rhythmic process [GO:0048511] -A0A6G8IU30 unreviewed A0A6G8IU30_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A6G8IU58 unreviewed A0A6G8IU58_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A7G8KP80 unreviewed A0A7G8KP80_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A8I5KYI8 unreviewed A0A8I5KYI8_HUMAN POU domain protein POU2F2 cell maturation [GO:0048469]; cellular response to virus [GO:0098586]; mature B cell differentiation [GO:0002335]; positive regulation of interleukin-6 production [GO:0032755] -A0A9Y1QPQ7 unreviewed A0A9Y1QPQ7_HUMAN RING-type E3 ubiquitin transferase BRCA1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A9Y1QQ02 unreviewed A0A9Y1QQ02_HUMAN RING-type E3 ubiquitin transferase BRCA1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A9Y1QQ22 unreviewed A0A9Y1QQ22_HUMAN RING-type E3 ubiquitin transferase BRCA1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A9Y1QQ47 unreviewed A0A9Y1QQ47_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0A9Y1QQF4 unreviewed A0A9Y1QQF4_HUMAN RING-type E3 ubiquitin transferase BRCA1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A9Y1VVF5 unreviewed A0A9Y1VVF5_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0AA49K9A1 unreviewed A0AA49K9A1_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0AA49K9A2 unreviewed A0AA49K9A2_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0AA49K9C3 unreviewed A0AA49K9C3_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0AA49K9I7 unreviewed A0AA49K9I7_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A0AA49K9S0 unreviewed A0AA49K9S0_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -A2AJT9 reviewed BCLA3_HUMAN BCLAF1 and THRAP3 family member 3 BCLAF3 CXorf23 positive regulation of transcription by RNA polymerase II [GO:0045944] -A4ZU86 unreviewed A4ZU86_HUMAN Nucleophosmin NPM1 chromatin remodeling [GO:0006338]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of centrosome duplication [GO:0010824]; ribosomal large subunit biogenesis [GO:0042273]; ribosomal large subunit export from nucleus [GO:0000055]; ribosomal small subunit biogenesis [GO:0042274]; ribosomal small subunit export from nucleus [GO:0000056] -A5PKX7 unreviewed A5PKX7_HUMAN Histone acetyltransferase (EC 2.3.1.48) MYST3 negative regulation of DNA-templated transcription [GO:0045892]; nucleosome assembly [GO:0006334]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A6NDR6 reviewed ME3L1_HUMAN Putative homeobox protein Meis3-like 1 MEIS3P1 animal organ morphogenesis [GO:0009887]; brain development [GO:0007420]; embryonic pattern specification [GO:0009880]; eye development [GO:0001654]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A6NDX5 reviewed ZN840_HUMAN Putative zinc finger protein 840 (Zinc finger protein 840 pseudogene) ZNF840P C20orf157 ZNF840 regulation of transcription by RNA polymerase II [GO:0006357] -A6NKF2 reviewed ARI3C_HUMAN AT-rich interactive domain-containing protein 3C (ARID domain-containing protein 3C) ARID3C positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -A6NN14 reviewed ZN729_HUMAN Zinc finger protein 729 ZNF729 regulation of transcription by RNA polymerase II [GO:0006357] -A7E237 unreviewed A7E237_HUMAN Methylcytosine dioxygenase TET (EC 1.14.11.80) TET2 5-methylcytosine catabolic process [GO:0006211]; DNA demethylation [GO:0080111]; myeloid cell differentiation [GO:0030099]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A7E2B6 unreviewed A7E2B6_HUMAN histone acetyltransferase (EC 2.3.1.48) MYST4 negative regulation of DNA-templated transcription [GO:0045892]; nucleosome assembly [GO:0006334]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A7E2E1 unreviewed A7E2E1_HUMAN SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 4 (cDNA FLJ77531, highly similar to Homo sapiens SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 4 (SMARCA4), mRNA) SMARCA4 hCG_29955 positive regulation of transcription by RNA polymerase II [GO:0045944] -A7WPU7 unreviewed A7WPU7_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -A7WPU8 unreviewed A7WPU8_HUMAN Sex-determining region Y protein SRY hCG_1733150 anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -A7WPU9 unreviewed A7WPU9_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -A7WPV0 unreviewed A7WPV0_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -A7WPV2 unreviewed A7WPV2_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -A8K0S8 reviewed ME3L2_HUMAN Putative homeobox protein Meis3-like 2 MEIS3P2 animal organ morphogenesis [GO:0009887]; brain development [GO:0007420]; embryonic pattern specification [GO:0009880]; eye development [GO:0001654]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A8K147 unreviewed A8K147_HUMAN Multifunctional fusion protein [Includes: Fibroblast growth factor 1 (Acidic fibroblast growth factor) (Heparin-binding growth factor 1); Fibroblast growth factor (FGF)] angiogenesis [GO:0001525]; animal organ morphogenesis [GO:0009887]; cell differentiation [GO:0030154]; fibroblast growth factor receptor signaling pathway [GO:0008543]; lung development [GO:0030324]; positive regulation of cell division [GO:0051781]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; wound healing [GO:0042060] -A8K2R3 unreviewed A8K2R3_HUMAN cDNA FLJ75083, highly similar to Homo sapiens amine oxidase (flavin containing) domain 2 (AOF2),mRNA negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A8K6C9 unreviewed A8K6C9_HUMAN Insulin-like growth factor II glucose metabolic process [GO:0006006]; ossification [GO:0001503]; positive regulation of activated T cell proliferation [GO:0042104]; positive regulation of insulin receptor signaling pathway [GO:0046628]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular endothelial cell proliferation [GO:1905564]; regulation of muscle cell differentiation [GO:0051147] -A8MXY4 reviewed ZNF99_HUMAN Zinc finger protein 99 ZNF99 C19orf9 regulation of transcription by RNA polymerase II [GO:0006357] -B2MUX6 unreviewed B2MUX6_HUMAN Insulin-like growth factor II IGF2 glucose metabolic process [GO:0006006]; ossification [GO:0001503]; positive regulation of activated T cell proliferation [GO:0042104]; positive regulation of insulin receptor signaling pathway [GO:0046628]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular endothelial cell proliferation [GO:1905564]; regulation of muscle cell differentiation [GO:0051147] -B2R9N9 unreviewed B2R9N9_HUMAN TLR7 (Toll-like receptor 7) TLR7 hCG_1646600 canonical NF-kappaB signal transduction [GO:0007249]; cellular response to virus [GO:0098586]; defense response to virus [GO:0051607]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; JNK cascade [GO:0007254]; positive regulation of interferon-alpha production [GO:0032727]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of macrophage cytokine production [GO:0060907]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of protein phosphorylation [GO:0001932]; toll-like receptor 7 signaling pathway [GO:0034154]; toll-like receptor signaling pathway [GO:0002224] -B2RWN8 unreviewed B2RWN8_HUMAN histone acetyltransferase (EC 2.3.1.48) MYST4 negative regulation of DNA-templated transcription [GO:0045892]; nucleosome assembly [GO:0006334]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B2RXH4 reviewed BTBDI_HUMAN BTB/POZ domain-containing protein 18 BTBD18 cell differentiation [GO:0030154]; male meiosis I [GO:0007141]; piRNA transcription [GO:0140541]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; retrotransposon silencing [GO:0010526]; spermatogenesis [GO:0007283] -B3W6H5 unreviewed B3W6H5_HUMAN Methylcytosine dioxygenase TET (EC 1.14.11.80) MLL-TET1 5-methylcytosine catabolic process [GO:0006211]; DNA demethylation [GO:0080111]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DE59 unreviewed B4DE59_HUMAN Junction plakoglobin canonical Wnt signaling pathway [GO:0060070]; cell-cell adhesion [GO:0098609]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DES0 unreviewed B4DES0_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -B4DL06 unreviewed B4DL06_HUMAN Catenin beta-1 (Beta-catenin) canonical Wnt signaling pathway [GO:0060070]; cell-cell adhesion [GO:0098609]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DSW9 unreviewed B4DSW9_HUMAN Catenin beta-1 (Beta-catenin) canonical Wnt signaling pathway [GO:0060070]; cell-cell adhesion [GO:0098609]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B5BU28 unreviewed B5BU28_HUMAN Catenin beta-1 (Beta-catenin) CTNNB1 canonical Wnt signaling pathway [GO:0060070]; cell-cell adhesion [GO:0098609]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B6ZGR6 unreviewed B6ZGR6_HUMAN Thyroid hormone receptor alpha (Nuclear receptor subfamily 1 group A member 1) NR1A1 cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; retinoic acid receptor signaling pathway [GO:0048384]; thyroid hormone mediated signaling pathway [GO:0002154] -B6ZGS2 unreviewed B6ZGS2_HUMAN Peroxisome proliferator-activated receptor gamma (PPAR-gamma) (Nuclear receptor subfamily 1 group C member 3) NR1C3 PPARG cell differentiation [GO:0030154]; fatty acid metabolic process [GO:0006631]; hormone-mediated signaling pathway [GO:0009755]; negative regulation of cholesterol storage [GO:0010887]; negative regulation of inflammatory response [GO:0050728]; positive regulation of fatty acid metabolic process [GO:0045923]; positive regulation of transcription by RNA polymerase II [GO:0045944]; rhythmic process [GO:0048511] -B7Z222 unreviewed B7Z222_HUMAN Pituitary adenylate cyclase-activating polypeptide adenylate cyclase-activating G protein-coupled receptor signaling pathway [GO:0007189]; neuron projection development [GO:0031175]; neuropeptide signaling pathway [GO:0007218]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of protein localization [GO:0032880] -D1H0M5 unreviewed D1H0M5_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -D2KUA6 unreviewed D2KUA6_HUMAN Peroxisome proliferator-activated receptor gamma (PPAR-gamma) (Nuclear receptor subfamily 1 group C member 3) PPARG NR1C3 PPAR gamma hCG_26772 cell differentiation [GO:0030154]; fatty acid metabolic process [GO:0006631]; hormone-mediated signaling pathway [GO:0009755]; negative regulation of cholesterol storage [GO:0010887]; negative regulation of inflammatory response [GO:0050728]; positive regulation of fatty acid metabolic process [GO:0045923]; positive regulation of transcription by RNA polymerase II [GO:0045944]; rhythmic process [GO:0048511] -D9J0B8 unreviewed D9J0B8_HUMAN Sex-determining region Y protein (Testis-determining factor) anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -D9J0B9 unreviewed D9J0B9_HUMAN Sex-determining region Y protein (Testis-determining factor) anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -D9J0C1 unreviewed D9J0C1_HUMAN Sex-determining region Y protein (Testis-determining factor) anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -D9J0C2 unreviewed D9J0C2_HUMAN Sex-determining region Y protein (Testis-determining factor) anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -D9J0C3 unreviewed D9J0C3_HUMAN Sex-determining region Y protein (Testis-determining factor) anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -D9J0C4 unreviewed D9J0C4_HUMAN Sex-determining region Y protein (Testis-determining factor) anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -D9J0C5 unreviewed D9J0C5_HUMAN Sex-determining region Y protein (Testis-determining factor) anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -D9J0C7 unreviewed D9J0C7_HUMAN Sex-determining region Y protein (Testis-determining factor) anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -D9J0C8 unreviewed D9J0C8_HUMAN Sex-determining region Y protein (Testis-determining factor) anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -D9J2M0 unreviewed D9J2M0_HUMAN Sex-determining region Y protein (Testis-determining factor) SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -D9J2M1 unreviewed D9J2M1_HUMAN Sex-determining region Y protein (Testis-determining factor) SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -D9J2M2 unreviewed D9J2M2_HUMAN Sex-determining region Y protein (Testis-determining factor) SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -D9J2M3 unreviewed D9J2M3_HUMAN Sex-determining region Y protein (Testis-determining factor) SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -D9J2M4 unreviewed D9J2M4_HUMAN Sex-determining region Y protein (Testis-determining factor) SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -E3UN46 unreviewed E3UN46_HUMAN Insulin-like growth factor II IGF2 glucose metabolic process [GO:0006006]; ossification [GO:0001503]; positive regulation of activated T cell proliferation [GO:0042104]; positive regulation of insulin receptor signaling pathway [GO:0046628]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular endothelial cell proliferation [GO:1905564]; regulation of muscle cell differentiation [GO:0051147] -E9PN78 unreviewed E9PN78_HUMAN Cell adhesion molecule-related/down-regulated by oncogenes CDON anterior/posterior pattern specification [GO:0009952]; cell fate specification [GO:0001708]; cerebral cortex development [GO:0021987]; embryonic body morphogenesis [GO:0010172]; embryonic retina morphogenesis in camera-type eye [GO:0060059]; lens development in camera-type eye [GO:0002088]; myoblast fusion [GO:0007520]; neuroblast proliferation [GO:0007405]; neuron differentiation [GO:0030182]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of skeletal muscle tissue development [GO:0048643]; positive regulation of small GTPase mediated signal transduction [GO:0051057]; positive regulation of transcription by RNA polymerase II [GO:0045944]; skeletal muscle satellite cell differentiation [GO:0014816]; smoothened signaling pathway [GO:0007224] -F1D8P2 unreviewed F1D8P2_HUMAN Nuclear receptor Rev-ErbA beta variant 1 NR1D2 cell differentiation [GO:0030154]; circadian behavior [GO:0048512]; energy homeostasis [GO:0097009]; hormone-mediated signaling pathway [GO:0009755]; lipid homeostasis [GO:0055088]; negative regulation of inflammatory response [GO:0050728]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of circadian rhythm [GO:0042752]; regulation of lipid metabolic process [GO:0019216]; regulation of skeletal muscle cell differentiation [GO:2001014] -F1D8P7 unreviewed F1D8P7_HUMAN Liver X nuclear receptor beta (Nuclear receptor subfamily 1, group H, member 2, isoform CRA_c) NR1H2 hCG_22944 cell differentiation [GO:0030154]; lipid metabolic process [GO:0006629]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -F1D8P8 unreviewed F1D8P8_HUMAN Vitamin D3 receptor (1,25-dihydroxyvitamin D3 receptor) (Nuclear receptor subfamily 1 group I member 1) NR1i1 apoptotic process involved in mammary gland involution [GO:0060057]; calcium ion transport [GO:0006816]; cell differentiation [GO:0030154]; intestinal absorption [GO:0050892]; intracellular calcium ion homeostasis [GO:0006874]; lactation [GO:0007595]; mammary gland branching involved in pregnancy [GO:0060745]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of apoptotic process involved in mammary gland involution [GO:0060058]; positive regulation of transcription by RNA polymerase II [GO:0045944]; skeletal system development [GO:0001501] -F1D8Q4 unreviewed F1D8Q4_HUMAN Hepatocyte nuclear factor 4 gamma NR2A2 cell differentiation [GO:0030154]; positive regulation of transcription by RNA polymerase II [GO:0045944] -F1D8Q7 unreviewed F1D8Q7_HUMAN Retinoic acid receptor RXR (Nuclear receptor subfamily 2 group B member) NR2B3 RXRG cell differentiation [GO:0030154]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to retinoic acid [GO:0032526]; retinoic acid receptor signaling pathway [GO:0048384] -F1D8T0 unreviewed F1D8T0_HUMAN Hepatocyte nuclear factor 4 4 alpha variant 4 (Hepatocyte nuclear factor 4, alpha, isoform CRA_a) NR2A1 HNF4A hCG_38107 cell differentiation [GO:0030154]; cholesterol homeostasis [GO:0042632]; glucose homeostasis [GO:0042593]; lipid metabolic process [GO:0006629]; phospholipid homeostasis [GO:0055091]; regulation of circadian rhythm [GO:0042752]; regulation of gastrulation [GO:0010470]; regulation of insulin secretion [GO:0050796]; response to glucose [GO:0009749]; sex differentiation [GO:0007548]; signal transduction involved in regulation of gene expression [GO:0023019]; transcription by RNA polymerase II [GO:0006366]; triglyceride homeostasis [GO:0070328] -F1T0D5 unreviewed F1T0D5_HUMAN LIM/homeobox protein Lhx3 LHX3 apoptotic process [GO:0006915]; lung development [GO:0030324]; medial motor column neuron differentiation [GO:0021526]; motor neuron axon guidance [GO:0008045]; negative regulation of apoptotic process [GO:0043066]; placenta development [GO:0001890]; prolactin secreting cell differentiation [GO:0060127]; somatotropin secreting cell differentiation [GO:0060126]; spinal cord association neuron differentiation [GO:0021527]; spinal cord motor neuron cell fate specification [GO:0021520]; thyroid-stimulating hormone-secreting cell differentiation [GO:0060129]; ventral spinal cord interneuron specification [GO:0021521] -F8VSL3 unreviewed F8VSL3_HUMAN Nuclear transcription factor Y subunit beta (CAAT box DNA-binding protein subunit B) (Nuclear transcription factor Y subunit B) NFYB hCG_1811685 -G0Z067 unreviewed G0Z067_HUMAN Sex-determining region Y protein anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -G0Z068 unreviewed G0Z068_HUMAN Sex-determining region Y protein anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -G0Z069 unreviewed G0Z069_HUMAN Sex-determining region Y protein anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -G0Z070 unreviewed G0Z070_HUMAN Sex-determining region Y protein anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -G0Z071 unreviewed G0Z071_HUMAN Sex-determining region Y protein anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -H0Y956 unreviewed H0Y956_HUMAN Interferon regulatory factor IRF2 positive regulation of transcription by RNA polymerase II [GO:0045944] -H9KVB1 unreviewed H9KVB1_HUMAN Runt-related transcription factor RUNX1 positive regulation of developmental process [GO:0051094]; positive regulation of transcription by RNA polymerase II [GO:0045944] -H9U921 unreviewed H9U921_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -H9U923 unreviewed H9U923_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -H9U933 unreviewed H9U933_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -M0QXD6 unreviewed M0QXD6_HUMAN Transcription initiation factor IIF subunit alpha GTF2F1 positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; transcription initiation at RNA polymerase II promoter [GO:0006367] -O14956 unreviewed O14956_HUMAN Thyroid transcriptional factor-1 truncated form locomotory behavior [GO:0007626]; lung development [GO:0030324]; positive regulation of transcription by RNA polymerase II [GO:0045944]; thyroid gland development [GO:0030878] -O60424 unreviewed O60424_HUMAN histone acetyltransferase (EC 2.3.1.48) CBP positive regulation of transcription by RNA polymerase II [GO:0045944]; rhythmic process [GO:0048511] -P0C6A0 reviewed ZGLP1_HUMAN GATA-type zinc finger protein 1 (GATA-like protein 1) (GLP-1) ZGLP1 GLP1 negative regulation of transcription by RNA polymerase II [GO:0000122]; oocyte development [GO:0048599]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; spermatogenesis [GO:0007283] -P20962 reviewed PTMS_HUMAN Parathymosin PTMS DNA replication [GO:0006260]; immune system process [GO:0002376]; negative regulation of apoptotic process [GO:0043066]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q09LL4 unreviewed Q09LL4_HUMAN CD40 B cell activation [GO:0042113]; CD40 signaling pathway [GO:0023035]; cellular response to interleukin-1 [GO:0071347]; cellular response to tumor necrosis factor [GO:0071356]; defense response to protozoan [GO:0042832]; defense response to virus [GO:0051607]; immune response-regulating cell surface receptor signaling pathway [GO:0002768]; positive regulation of angiogenesis [GO:0045766]; positive regulation of B cell proliferation [GO:0030890]; positive regulation of blood vessel endothelial cell migration [GO:0043536]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of endothelial cell apoptotic process [GO:2000353]; positive regulation of interleukin-12 production [GO:0032735]; positive regulation of isotype switching to IgG isotypes [GO:0048304]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; response to type II interferon [GO:0034341]; TRIF-dependent toll-like receptor signaling pathway [GO:0035666] -Q13536 reviewed CROC4_HUMAN Protein CROC-4 (Contingent replication of cDNA 4) (MIR9-1 host gene) MIR9-1HG C1orf61 CROC4 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q13771 unreviewed Q13771_HUMAN Androgen receptor (Dihydrotestosterone receptor) (Nuclear receptor subfamily 3 group C member 4) AR androgen receptor signaling pathway [GO:0030521]; male gonad development [GO:0008584]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q14586 reviewed ZN267_HUMAN Zinc finger protein 267 (Zinc finger protein HZF2) ZNF267 regulation of transcription by RNA polymerase II [GO:0006357] -Q16365 unreviewed Q16365_HUMAN Transcription factor GATA-4 (GATA-binding factor 4) anatomical structure morphogenesis [GO:0009653]; cell fate commitment [GO:0045165]; DNA-templated transcription [GO:0006351]; heart development [GO:0007507]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; tissue development [GO:0009888] -Q1JUL4 unreviewed Q1JUL4_HUMAN Melanocyte-stimulating hormone receptor (MSH-R) (Melanocortin receptor 1) MC1R hCG_2039647 adenylate cyclase-activating G protein-coupled receptor signaling pathway [GO:0007189]; intracellular signal transduction [GO:0035556]; melanin biosynthetic process [GO:0042438]; positive regulation of feeding behavior [GO:2000253]; positive regulation of protein kinase A signaling [GO:0010739]; positive regulation of protein kinase C signaling [GO:0090037]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sensory perception of pain [GO:0019233] -Q2L4T1 unreviewed Q2L4T1_HUMAN Paired box protein Pax-9 Pax9 PAX9 hCG_20991 cellular response to growth factor stimulus [GO:0071363]; endoderm development [GO:0007492]; face morphogenesis [GO:0060325]; odontogenesis [GO:0042476]; regulation of odontogenesis [GO:0042481] -Q3C1V8 reviewed BSH_HUMAN Brain-specific homeobox protein homolog BSX BSX1 eating behavior [GO:0042755]; locomotory behavior [GO:0007626]; mammary gland involution [GO:0060056]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q3LRH8 unreviewed Q3LRH8_HUMAN RING-type E3 ubiquitin transferase (EC 2.3.2.27) (RING-type E3 ubiquitin transferase BRCA1) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; fatty acid biosynthetic process [GO:0006633]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q4JI39 unreviewed Q4JI39_HUMAN Sex-determining region Y protein (Testis-determining factor) anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -Q4W4C6 unreviewed Q4W4C6_HUMAN Peroxisome proliferator-activated receptor gamma (PPAR-gamma) (Nuclear receptor subfamily 1 group C member 3) PPARG cell differentiation [GO:0030154]; fatty acid metabolic process [GO:0006631]; hormone-mediated signaling pathway [GO:0009755]; negative regulation of cholesterol storage [GO:0010887]; negative regulation of inflammatory response [GO:0050728]; positive regulation of fatty acid metabolic process [GO:0045923]; positive regulation of transcription by RNA polymerase II [GO:0045944]; rhythmic process [GO:0048511] -Q4W4C7 unreviewed Q4W4C7_HUMAN Peroxisome proliferator-activated receptor gamma (PPAR-gamma) (Nuclear receptor subfamily 1 group C member 3) PPARG cell differentiation [GO:0030154]; fatty acid metabolic process [GO:0006631]; hormone-mediated signaling pathway [GO:0009755]; negative regulation of cholesterol storage [GO:0010887]; negative regulation of inflammatory response [GO:0050728]; positive regulation of fatty acid metabolic process [GO:0045923]; positive regulation of transcription by RNA polymerase II [GO:0045944]; rhythmic process [GO:0048511] -Q52M93 reviewed Z585B_HUMAN Zinc finger protein 585B (zinc finger protein 41-like protein) ZNF585B regulation of transcription by RNA polymerase II [GO:0006357] -Q52MX7 unreviewed Q52MX7_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -Q52MX8 unreviewed Q52MX8_HUMAN Sex-determining region Y protein (Testis-determining factor) SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -Q52MX9 unreviewed Q52MX9_HUMAN Sex-determining region Y protein (Testis-determining factor) SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -Q52MY0 unreviewed Q52MY0_HUMAN Sex-determining region Y protein (Testis-determining factor) SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -Q52MY3 unreviewed Q52MY3_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -Q53BH1 unreviewed Q53BH1_HUMAN Pituitary adenylate cyclase-activating polypeptide ADCYAP1 adenylate cyclase-activating G protein-coupled receptor signaling pathway [GO:0007189]; neuron projection development [GO:0031175]; neuropeptide signaling pathway [GO:0007218]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of protein localization [GO:0032880] -Q53EW1 unreviewed Q53EW1_HUMAN Peroxisome proliferator-activated receptor gamma (PPAR-gamma) (Nuclear receptor subfamily 1 group C member 3) PPARG cell differentiation [GO:0030154]; fatty acid metabolic process [GO:0006631]; hormone-mediated signaling pathway [GO:0009755]; negative regulation of cholesterol storage [GO:0010887]; negative regulation of inflammatory response [GO:0050728]; positive regulation of fatty acid metabolic process [GO:0045923]; positive regulation of transcription by RNA polymerase II [GO:0045944]; rhythmic process [GO:0048511] -Q53GC0 unreviewed Q53GC0_HUMAN SERTA domain containing 1 variant (SERTA domain containing 1, isoform CRA_a) (cDNA FLJ90171 fis, clone MAMMA1000403, highly similar to SERTA domain-containing protein 1) SERTAD1 hCG_1777718 negative regulation of cell growth [GO:0030308]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q53GI4 unreviewed Q53GI4_HUMAN TEA domain family member 4 isoform 1 variant (Transcriptional enhancer factor TEF-3) TEAD4 cell fate specification [GO:0001708]; DNA-templated transcription [GO:0006351]; embryo implantation [GO:0007566]; hippo signaling [GO:0035329]; positive regulation of stem cell population maintenance [GO:1902459]; trophectodermal cell fate commitment [GO:0001830] -Q53S24 unreviewed Q53S24_HUMAN Prothymosin alpha PTMAP7 PTMA negative regulation of apoptotic process [GO:0043066]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q53Y73 unreviewed Q53Y73_HUMAN Distal-less homeo box 5 (Distal-less homeobox 5) DLX5 hCG_40634 tcag7.302 anatomical structure formation involved in morphogenesis [GO:0048646]; BMP signaling pathway [GO:0030509]; embryonic limb morphogenesis [GO:0030326]; endochondral ossification [GO:0001958]; epithelial cell differentiation [GO:0030855]; face morphogenesis [GO:0060325]; inner ear morphogenesis [GO:0042472]; interneuron axon guidance [GO:0097376]; olfactory bulb interneuron differentiation [GO:0021889]; olfactory pit development [GO:0060166]; osteoblast differentiation [GO:0001649]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of gene expression [GO:0010628]; roof of mouth development [GO:0060021] -Q53ZD3 unreviewed Q53ZD3_HUMAN Forkhead box protein L2 FOXL2 embryonic eye morphogenesis [GO:0048048]; female somatic sex determination [GO:0019101]; granulosa cell differentiation [GO:0060014]; negative regulation of transcription by RNA polymerase II [GO:0000122]; oocyte growth [GO:0001555]; ovarian follicle development [GO:0001541]; positive regulation of follicle-stimulating hormone secretion [GO:0046881]; positive regulation of luteinizing hormone secretion [GO:0033686]; single fertilization [GO:0007338]; uterus development [GO:0060065] -Q5JVG2 reviewed ZN484_HUMAN Zinc finger protein 484 ZNF484 regulation of transcription by RNA polymerase II [GO:0006357] -Q5T1J5 reviewed CHCH9_HUMAN Putative coiled-coil-helix-coiled-coil-helix domain-containing protein CHCHD2P9, mitochondrial (Coiled-coil-helix-coiled-coil-helix domain-containing 2 pseudogene 9) CHCHD2P9 C9orf49 CHCHD9 mitochondrion organization [GO:0007005]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q5T6X2 unreviewed Q5T6X2_HUMAN Epididymis secretory sperm binding protein (Kruppel-like factor 5 (Intestinal)) KLF5 hCG_32789 angiogenesis [GO:0001525]; cellular response to leukemia inhibitory factor [GO:1990830]; intestinal epithelial cell development [GO:0060576]; microvillus assembly [GO:0030033]; myotube differentiation involved in skeletal muscle regeneration [GO:0014908]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of fat cell differentiation [GO:0045600]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription by transcription factor localization [GO:0061586]; regulation of microvillus assembly [GO:0032534]; satellite cell activation involved in skeletal muscle regeneration [GO:0014901]; skeletal muscle satellite cell differentiation [GO:0014816] -Q5U079 unreviewed Q5U079_HUMAN Transcription factor JunB (Transcription factor AP-1 subunit JunB) JUNB hCG_172481 cellular response to calcium ion [GO:0071277]; decidualization [GO:0046697]; embryonic process involved in female pregnancy [GO:0060136]; labyrinthine layer blood vessel development [GO:0060716]; osteoblast differentiation [GO:0001649]; osteoblast proliferation [GO:0033687]; osteoclast differentiation [GO:0030316]; osteoclast proliferation [GO:0002158]; positive regulation of cell differentiation [GO:0045597]; regulation of cell cycle [GO:0051726]; regulation of cell population proliferation [GO:0042127]; trophectodermal cell differentiation [GO:0001829]; vasculogenesis [GO:0001570] -Q5U3B7 unreviewed Q5U3B7_HUMAN RING-type E3 ubiquitin transferase BRCA1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q5XLT4 unreviewed Q5XLT4_HUMAN RING-type E3 ubiquitin transferase (EC 2.3.2.27) (RING-type E3 ubiquitin transferase BRCA1) BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; fatty acid biosynthetic process [GO:0006633]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q5YLB2 unreviewed Q5YLB2_HUMAN Breast cancer type 1 susceptibility protein (EC 2.3.2.27) chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoubiquitination [GO:0051865]; protein K6-linked ubiquitination [GO:0085020] -Q6FHN8 unreviewed Q6FHN8_HUMAN Interferon regulatory factor 1 IRF1 hCG_24115 CD8-positive, alpha-beta T cell differentiation [GO:0043374]; defense response to virus [GO:0051607]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of regulatory T cell differentiation [GO:0045590]; positive regulation of interleukin-12 production [GO:0032735]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type I interferon production [GO:0032481]; regulation of CD8-positive, alpha-beta T cell proliferation [GO:2000564]; regulation of MyD88-dependent toll-like receptor signaling pathway [GO:0034124]; transcription by RNA polymerase II [GO:0006366]; type II interferon-mediated signaling pathway [GO:0060333] -Q6IQ21 reviewed ZN770_HUMAN Zinc finger protein 770 ZNF770 regulation of transcription by RNA polymerase II [GO:0006357] -Q6J0W4 unreviewed Q6J0W4_HUMAN Sex-determining region Y protein (Testis-determining factor) SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -Q6J0W5 unreviewed Q6J0W5_HUMAN Sex-determining region Y protein (Testis-determining factor) SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -Q6J4I5 unreviewed Q6J4I5_HUMAN Sex-determining region Y protein (Testis-determining factor) SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -Q6J4J1 unreviewed Q6J4J1_HUMAN Sex-determining region Y protein (Testis-determining factor) SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -Q6LBM3 unreviewed Q6LBM3_HUMAN Fibroblast growth factor 1 (Acidic fibroblast growth factor) (Heparin-binding growth factor 1) fgf gene angiogenesis [GO:0001525]; animal organ morphogenesis [GO:0009887]; cell differentiation [GO:0030154]; fibroblast growth factor receptor signaling pathway [GO:0008543]; lung development [GO:0030324]; positive regulation of cell division [GO:0051781]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; wound healing [GO:0042060] -Q6NX49 reviewed ZN544_HUMAN Zinc finger protein 544 ZNF544 regulation of transcription by RNA polymerase II [GO:0006357] -Q6P3V2 reviewed Z585A_HUMAN Zinc finger protein 585A ZNF585A regulation of transcription by RNA polymerase II [GO:0006357] -Q6PHZ7 unreviewed Q6PHZ7_HUMAN NR2C2 protein NR2C2 cell differentiation [GO:0030154]; positive regulation of embryonic development [GO:0040019]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q6PWT1 unreviewed Q6PWT1_HUMAN Sex-determining region Y protein (Testis-determining factor) SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -Q6ZMW2 reviewed ZN782_HUMAN Zinc finger protein 782 ZNF782 regulation of transcription by RNA polymerase II [GO:0006357] -Q6ZN01 reviewed MASTR_HUMAN MEF2-activating motif and SAP domain-containing transcriptional regulator (MEF2-activating SAP transcriptional regulatory protein) MAMSTR MASTR positive regulation of myotube differentiation [GO:0010831]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q6ZN19 reviewed ZN841_HUMAN Zinc finger protein 841 ZNF841 regulation of transcription by RNA polymerase II [GO:0006357] -Q6ZNA1 reviewed ZN836_HUMAN Zinc finger protein 836 ZNF836 regulation of transcription by RNA polymerase II [GO:0006357] -Q6ZNG1 reviewed ZN600_HUMAN Zinc finger protein 600 ZNF600 regulation of transcription by RNA polymerase II [GO:0006357] -Q7KZ86 unreviewed Q7KZ86_HUMAN Junction plakoglobin canonical Wnt signaling pathway [GO:0060070]; cell-cell adhesion [GO:0098609]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q86WD1 unreviewed Q86WD1_HUMAN Peroxisome proliferator-activated receptor gamma (PPAR-gamma) (Nuclear receptor subfamily 1 group C member 3) PPARG cell differentiation [GO:0030154]; fatty acid metabolic process [GO:0006631]; hormone-mediated signaling pathway [GO:0009755]; negative regulation of cholesterol storage [GO:0010887]; negative regulation of inflammatory response [GO:0050728]; positive regulation of fatty acid metabolic process [GO:0045923]; positive regulation of transcription by RNA polymerase II [GO:0045944]; rhythmic process [GO:0048511] -Q86WZ6 reviewed ZN227_HUMAN Zinc finger protein 227 ZNF227 regulation of transcription by RNA polymerase II [GO:0006357] -Q8N0Z2 reviewed ABRA_HUMAN Actin-binding Rho-activating protein (Striated muscle activator of Rho-dependent signaling) (STARS) ABRA actin cytoskeleton organization [GO:0030036]; positive regulation of Rho protein signal transduction [GO:0035025]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein import into nucleus [GO:0006606]; transcription by RNA polymerase II [GO:0006366] -Q8N5J4 reviewed SPIC_HUMAN Transcription factor Spi-C SPIC blastocyst development [GO:0001824]; regulation of transcription by RNA polymerase II [GO:0006357] -Q8NB50 reviewed ZFP62_HUMAN Zinc finger protein 62 homolog (Zfp-62) ZFP62 regulation of transcription by RNA polymerase II [GO:0006357] -Q8NDY6 reviewed BHE23_HUMAN Class E basic helix-loop-helix protein 23 (bHLHe23) (Class B basic helix-loop-helix protein 4) (bHLHb4) BHLHE23 BHLHB4 axon development [GO:0061564]; neuron fate commitment [GO:0048663]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sensory organ development [GO:0007423] -Q8TCN5 reviewed ZN507_HUMAN Zinc finger protein 507 ZNF507 KIAA1084 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q8TF20 reviewed ZN721_HUMAN Zinc finger protein 721 ZNF721 KIAA1982 regulation of transcription by RNA polymerase II [GO:0006357] -Q8WZ47 unreviewed Q8WZ47_HUMAN Sex-determining region Y protein (Testis-determining factor) SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -Q96CP1 unreviewed Q96CP1_HUMAN RELA protein RELA canonical NF-kappaB signal transduction [GO:0007249]; cellular response to lipopolysaccharide [GO:0071222]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; non-canonical NF-kappaB signal transduction [GO:0038061]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to cytokine [GO:0034097] -Q96I87 unreviewed Q96I87_HUMAN Homeobox-containing protein PKNOX1 (PBX/knotted 1 homeobox 1) PKNOX1 hCG_2043122 angiogenesis [GO:0001525]; camera-type eye development [GO:0043010]; erythrocyte differentiation [GO:0030218]; positive regulation of transcription by RNA polymerase II [GO:0045944]; T cell differentiation [GO:0030217] -Q96JF6 reviewed ZN594_HUMAN Zinc finger protein 594 (Zinc finger protein HZF18) ZNF594 KIAA1871 regulation of transcription by RNA polymerase II [GO:0006357] -Q96NK8 reviewed NDF6_HUMAN Neurogenic differentiation factor 6 (NeuroD6) (Class A basic helix-loop-helix protein 2) (bHLHa2) (Protein atonal homolog 2) NEUROD6 ATOH2 BHLHA2 My051 axon development [GO:0061564]; dentate gyrus development [GO:0021542]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sensory organ development [GO:0007423] -Q9BWG4 reviewed SSBP4_HUMAN Single-stranded DNA-binding protein 4 SSBP4 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9BY31 reviewed ZN717_HUMAN Zinc finger protein 717 (Krueppel-like factor X17) ZNF717 regulation of transcription by RNA polymerase II [GO:0006357] -Q9BZE3 reviewed BARH1_HUMAN BarH-like 1 homeobox protein BARHL1 FKSG31 midbrain development [GO:0030901]; negative regulation of outer hair cell apoptotic process [GO:1905586]; neuron migration [GO:0001764]; outer hair cell apoptotic process [GO:1905584]; regulation of transcription by RNA polymerase II [GO:0006357]; sensory perception of sound [GO:0007605] -Q9NX34 unreviewed Q9NX34_HUMAN Nucleophosmin chromatin remodeling [GO:0006338]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of centrosome duplication [GO:0010824]; ribosomal large subunit biogenesis [GO:0042273]; ribosomal large subunit export from nucleus [GO:0000055]; ribosomal small subunit biogenesis [GO:0042274]; ribosomal small subunit export from nucleus [GO:0000056] -Q9NYT6 reviewed ZN226_HUMAN Zinc finger protein 226 ZNF226 regulation of transcription by RNA polymerase II [GO:0006357] -Q9NZF1 reviewed PLAC8_HUMAN Placenta-specific gene 8 protein (Protein C15) PLAC8 BM-004 brown fat cell differentiation [GO:0050873]; defense response to bacterium [GO:0042742]; negative regulation of apoptotic process [GO:0043066]; negative regulation of multicellular organism growth [GO:0040015]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to cold [GO:0009409]; transcription by RNA polymerase II [GO:0006366] -Q9UII5 reviewed ZN107_HUMAN Zinc finger protein 107 (Zinc finger protein 588) (Zinc finger protein ZFD25) ZNF107 ZFD25 ZNF588 regulation of transcription by RNA polymerase II [GO:0006357] -Q9UK10 reviewed ZN225_HUMAN Zinc finger protein 225 ZNF225 regulation of transcription by RNA polymerase II [GO:0006357] -Q9Y6R6 reviewed Z780B_HUMAN Zinc finger protein 780B (Zinc finger protein 779) ZNF780B ZNF779 regulation of transcription by RNA polymerase II [GO:0006357] -U5XK60 unreviewed U5XK60_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -U5XK65 unreviewed U5XK65_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -U5XKX7 unreviewed U5XKX7_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -U5XKY1 unreviewed U5XKY1_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -U5XMN5 unreviewed U5XMN5_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -U5XN77 unreviewed U5XN77_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -U5XN82 unreviewed U5XN82_HUMAN Sex-determining region Y protein SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; male sex determination [GO:0030238]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -V9HVU7 unreviewed V9HVU7_HUMAN Alternative protein CLEC2D CLEC2D chromatin remodeling [GO:0006338]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of centrosome duplication [GO:0010824]; ribosomal large subunit biogenesis [GO:0042273]; ribosomal large subunit export from nucleus [GO:0000055]; ribosomal small subunit biogenesis [GO:0042274]; ribosomal small subunit export from nucleus [GO:0000056] -V9HW87 unreviewed V9HW87_HUMAN Putative protein-lysine deacylase ABHD14B (Alpha/beta hydrolase domain-containing protein 14B) HEL-S-299 ABHD14B hCG_42593 positive regulation of transcription by RNA polymerase II [GO:0045944] -V9HWA7 unreviewed V9HWA7_HUMAN ALX homeobox protein 1 (Cartilage homeoprotein 1) HEL23 CART1 hCG_26534 embryonic skeletal system morphogenesis [GO:0048704]; negative regulation of DNA-templated transcription [GO:0045892] -X5D982 unreviewed X5D982_HUMAN Necdin isoform A (Necdin-like protein isoform 1) NDN axon extension [GO:0048675]; axonal fasciculation [GO:0007413]; central nervous system development [GO:0007417]; genomic imprinting [GO:0071514]; glial cell migration [GO:0008347]; multicellular organismal-level homeostasis [GO:0048871]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron migration [GO:0001764]; neurotrophin TRK receptor signaling pathway [GO:0048011]; positive regulation of protein deacetylation [GO:0090312]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-embryonic development [GO:0009791]; respiratory system process [GO:0003016]; sensory perception of pain [GO:0019233] -X5D9A5 unreviewed X5D9A5_HUMAN Pituitary homeobox 1 (Homeobox protein PITX1) (Paired-like homeodomain transcription factor 1) PITX1 branchiomeric skeletal muscle development [GO:0014707]; cartilage development [GO:0051216]; embryonic hindlimb morphogenesis [GO:0035116]; myoblast fate commitment [GO:0048625]; negative regulation of DNA-templated transcription [GO:0045892]; pituitary gland development [GO:0021983] -A0A024RBP0 unreviewed A0A024RBP0_HUMAN E3 ubiquitin-protein ligase RNF10 (RING finger protein 10) RNF10 hCG_27770 negative regulation of Schwann cell proliferation [GO:0010626]; positive regulation of myelination [GO:0031643]; positive regulation of transcription by RNA polymerase II [GO:0045944]; postsynapse to nucleus signaling pathway [GO:0099527] -A0A068BDV0 unreviewed A0A068BDV0_HUMAN Truncated breast and ovarian cancer susceptibility protein 1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A087WU73 unreviewed A0A087WU73_HUMAN Myocardin related transcription factor A MRTFA positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A087WVT6 unreviewed A0A087WVT6_HUMAN Single-stranded DNA-binding protein 3 SSBP3 head morphogenesis [GO:0060323]; hematopoietic progenitor cell differentiation [GO:0002244]; mesendoderm development [GO:0048382]; midbrain-hindbrain boundary initiation [GO:0021547]; positive regulation of anterior head development [GO:2000744]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of transcription by RNA polymerase II [GO:0045944]; prechordal plate formation [GO:0021501]; protein-containing complex assembly [GO:0065003] -A0A087WXG3 unreviewed A0A087WXG3_HUMAN Basic helix-loop-helix family member e23 BHLHE23 negative regulation of retinal cell programmed cell death [GO:0046671]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-embryonic eye morphogenesis [GO:0048050]; retinal cell programmed cell death [GO:0046666]; retinal rod cell development [GO:0046548] -A0A087WXV5 unreviewed A0A087WXV5_HUMAN Paired box 1 PAX1 bone morphogenesis [GO:0060349]; CD4-positive, alpha-beta T cell differentiation [GO:0043367]; CD8-positive, alpha-beta T cell differentiation [GO:0043374]; cell population proliferation [GO:0008283]; parathyroid gland development [GO:0060017]; sclerotome development [GO:0061056]; somitogenesis [GO:0001756]; thymus development [GO:0048538] -A0A087WZ09 unreviewed A0A087WZ09_HUMAN Transcription factor GATA-4 (GATA-binding factor 4) GATA4 anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; heart development [GO:0007507]; positive regulation of transcription by RNA polymerase II [GO:0045944]; tissue development [GO:0009888] -A0A087X287 unreviewed A0A087X287_HUMAN Myocardin related transcription factor A MRTFA positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A090N7T3 unreviewed A0A090N7T3_HUMAN Neurogenic differentiation factor NEUROD6 tcag7.685 axon development [GO:0061564]; dentate gyrus development [GO:0021542]; sensory organ development [GO:0007423] -A0A090N8N3 unreviewed A0A090N8N3_HUMAN Zinc finger protein 212 ZNF212 tcag7.490 dendrite development [GO:0016358]; general adaptation syndrome, behavioral process [GO:0051867]; neuromuscular process controlling balance [GO:0050885]; neuron apoptotic process [GO:0051402]; response to alcohol [GO:0097305]; walking behavior [GO:0090659] -A0A0B4J1S1 unreviewed A0A0B4J1S1_HUMAN Class II major histocompatibility complex transactivator CIITA cellular response to electrical stimulus [GO:0071257]; cellular response to exogenous dsRNA [GO:0071360]; cellular response to type II interferon [GO:0071346]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of MHC class II biosynthetic process [GO:0045348]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A0B5HFB3 unreviewed A0A0B5HFB3_HUMAN Sex determining region Y-box 2 SOX2 anatomical structure morphogenesis [GO:0009653]; cell fate commitment [GO:0045165]; forebrain development [GO:0030900]; inner ear development [GO:0048839]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A0B5HLA0 unreviewed A0A0B5HLA0_HUMAN Sex determining region Y-box 2 SOX2 anatomical structure morphogenesis [GO:0009653]; cell fate commitment [GO:0045165]; forebrain development [GO:0030900]; inner ear development [GO:0048839]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A0B5HP19 unreviewed A0A0B5HP19_HUMAN Sex determining region Y-box 2 SOX2 anatomical structure morphogenesis [GO:0009653]; cell fate commitment [GO:0045165]; forebrain development [GO:0030900]; inner ear development [GO:0048839]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A0D9SEN7 unreviewed A0A0D9SEN7_HUMAN Runt-related transcription factor RUNX2 positive regulation of developmental process [GO:0051094]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A0D9SEX9 unreviewed A0A0D9SEX9_HUMAN GLIS family zinc finger 1 GLIS1 fat cell differentiation [GO:0045444]; negative regulation of cell fate commitment [GO:0010454]; osteoblast differentiation [GO:0001649] -A0A0D9SFD0 unreviewed A0A0D9SFD0_HUMAN Myocyte enhancer factor 2C MEF2C hCG_36839 animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A0D9SGI5 unreviewed A0A0D9SGI5_HUMAN Myocyte enhancer factor 2C MEF2C animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A0F6T557 unreviewed A0A0F6T557_HUMAN Nuclear receptor subfamily 2 group E member 3 protein cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A0F7G9Q0 unreviewed A0A0F7G9Q0_HUMAN RING-type E3 ubiquitin transferase BRCA1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A0F7G9S0 unreviewed A0A0F7G9S0_HUMAN Truncated breast and ovarian cancer susceptibility protein 1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A0R4J2G5 unreviewed A0A0R4J2G5_HUMAN Myocyte enhancer factor 2C MEF2C animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A0R5RI31 unreviewed A0A0R5RI31_HUMAN Thyroid hormone receptor alpha (Nuclear receptor subfamily 1 group A member 1) THRA cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; retinoic acid receptor signaling pathway [GO:0048384]; thyroid hormone mediated signaling pathway [GO:0002154] -A0A0R5RI36 unreviewed A0A0R5RI36_HUMAN Thyroid hormone receptor alpha (Nuclear receptor subfamily 1 group A member 1) THRA cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; retinoic acid receptor signaling pathway [GO:0048384]; thyroid hormone mediated signaling pathway [GO:0002154] -A0A0R5RI44 unreviewed A0A0R5RI44_HUMAN Thyroid hormone receptor alpha (Nuclear receptor subfamily 1 group A member 1) THRA cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; retinoic acid receptor signaling pathway [GO:0048384]; thyroid hormone mediated signaling pathway [GO:0002154] -A0A0R5RI47 unreviewed A0A0R5RI47_HUMAN Thyroid hormone receptor alpha (Nuclear receptor subfamily 1 group A member 1) THRA cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; retinoic acid receptor signaling pathway [GO:0048384]; thyroid hormone mediated signaling pathway [GO:0002154] -A0A0R5RI63 unreviewed A0A0R5RI63_HUMAN Thyroid hormone receptor alpha (Nuclear receptor subfamily 1 group A member 1) THRA cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; retinoic acid receptor signaling pathway [GO:0048384]; thyroid hormone mediated signaling pathway [GO:0002154] -A0A0R5RI99 unreviewed A0A0R5RI99_HUMAN Thyroid hormone receptor beta 1 THRB cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; retinoic acid receptor signaling pathway [GO:0048384]; thyroid hormone mediated signaling pathway [GO:0002154] -A0A0R5RIB5 unreviewed A0A0R5RIB5_HUMAN Thyroid hormone receptor beta 1 THRB cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; retinoic acid receptor signaling pathway [GO:0048384]; thyroid hormone mediated signaling pathway [GO:0002154] -A0A0S2Z3C9 unreviewed A0A0S2Z3C9_HUMAN Ets variant 6 isoform 1 ETV6 mesenchymal cell apoptotic process [GO:0097152]; neurogenesis [GO:0022008]; vitellogenesis [GO:0007296] -A0A0S2Z417 unreviewed A0A0S2Z417_HUMAN Myocyte enhancer factor 2A isoform 4 MEF2A animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A0S2Z453 unreviewed A0A0S2Z453_HUMAN MADS box transcription enhancer factor 2, polypeptide A (Myocyte enhancer factor 2A), isoform CRA_a (Myocyte enhancer factor 2A isoform 2) MEF2A hCG_1993173 animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A0S2Z454 unreviewed A0A0S2Z454_HUMAN MADS box transcription enhancer factor 2, polypeptide A (Myocyte enhancer factor 2A), isoform CRA_b (Myocyte enhancer factor 2A isoform 1) MEF2A hCG_1993173 animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A0S2Z4K2 unreviewed A0A0S2Z4K2_HUMAN CCHC-type zinc finger nucleic acid binding protein (Cellular nucleic acid-binding protein) (Zinc finger protein 9) CNBP positive regulation of cell population proliferation [GO:0008284]; positive regulation of cytoplasmic translation [GO:2000767]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A0S2Z4U5 unreviewed A0A0S2Z4U5_HUMAN Upstream stimulatory factor 1 USF1 lipid homeostasis [GO:0055088]; positive regulation of transcription from RNA polymerase II promoter by glucose [GO:0000432]; response to UV [GO:0009411] -A0A0S2Z5M9 unreviewed A0A0S2Z5M9_HUMAN Cell division cycle 73 Paf1/RNA polymerase II complex component-like protein isoform 1 CDC73 cell division [GO:0051301]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; transcription elongation by RNA polymerase II [GO:0006368] -A0A0U3FYV6 unreviewed A0A0U3FYV6_HUMAN SRY (Sex determining region Y)-box 2 (Transcription factor SOX-2) SOX2 hCG_2021649 adenohypophysis development [GO:0021984]; anatomical structure morphogenesis [GO:0009653]; cell fate commitment [GO:0045165]; inner ear development [GO:0048839]; positive regulation of cell differentiation [GO:0045597]; positive regulation of cell-cell adhesion [GO:0022409]; regulation of myofibroblast cell apoptotic process [GO:1904520]; response to oxygen-glucose deprivation [GO:0090649]; tissue regeneration [GO:0042246] -A0A127AXB3 unreviewed A0A127AXB3_HUMAN Retinal homeobox protein Rx RAX positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A127AXH5 unreviewed A0A127AXH5_HUMAN Retinal homeobox protein Rx RAX positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A1B0GTW4 unreviewed A0A1B0GTW4_HUMAN Myocyte enhancer factor 2C MEF2C animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A1B0GV32 unreviewed A0A1B0GV32_HUMAN Myocyte enhancer factor 2C MEF2C animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A1B1RS94 unreviewed A0A1B1RS94_HUMAN Interferon regulatory factor 1 IRF1 immune system process [GO:0002376]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A1B3TN82 unreviewed A0A1B3TN82_HUMAN Histone methyl transferase (EC 2.1.1.43) PRDM9 methylation [GO:0032259]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A1P8NQD1 unreviewed A0A1P8NQD1_HUMAN Low-density lipoprotein receptor-related protein 5 LRP5 adipose tissue development [GO:0060612]; anterior/posterior pattern specification [GO:0009952]; bone marrow development [GO:0048539]; bone morphogenesis [GO:0060349]; bone remodeling [GO:0046849]; branching involved in mammary gland duct morphogenesis [GO:0060444]; canonical Wnt signaling pathway [GO:0060070]; cholesterol homeostasis [GO:0042632]; gastrulation with mouth forming second [GO:0001702]; osteoblast development [GO:0002076]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of insulin secretion involved in cellular response to glucose stimulus [GO:0061178]; retinal blood vessel morphogenesis [GO:0061304] -A0A1X7SBS4 unreviewed A0A1X7SBS4_HUMAN Transcriptional enhancer factor TEF-5 TEAD3 hippo signaling [GO:0035329]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A1Z3FT70 unreviewed A0A1Z3FT70_HUMAN Sex-determining region Y protein (Testis-determining factor) SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -A0A223ZRY6 unreviewed A0A223ZRY6_HUMAN Vitamin D3 receptor (1,25-dihydroxyvitamin D3 receptor) (Nuclear receptor subfamily 1 group I member 1) VDR cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A224A4N4 unreviewed A0A224A4N4_HUMAN Vitamin D receptor VDR cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A2Z2E6H7 unreviewed A0A2Z2E6H7_HUMAN PR domain zinc finger protein 10 (PR domain-containing protein 10) PRDM10 methylation [GO:0032259]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A384MTX4 unreviewed A0A384MTX4_HUMAN Transcription elongation factor positive regulation of transcription by RNA polymerase II [GO:0045944]; transcription elongation by RNA polymerase II [GO:0006368] -A0A384N669 unreviewed A0A384N669_HUMAN Lumican positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta1 production [GO:0032914] -A0A384NPW1 unreviewed A0A384NPW1_HUMAN Epididymis secretory sperm binding protein positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to nucleus [GO:0034504] -A0A386IN34 unreviewed A0A386IN34_HUMAN Truncated breast and ovarian cancer susceptibility protein 1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A386IN42 unreviewed A0A386IN42_HUMAN Truncated breast and ovarian cancer susceptibility protein 1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A386INH9 unreviewed A0A386INH9_HUMAN Truncated breast and ovarian cancer susceptibility protein 1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A386INN6 unreviewed A0A386INN6_HUMAN Truncated breast and ovarian cancer susceptibility protein 1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A386IPA8 unreviewed A0A386IPA8_HUMAN Truncated breast and ovarian cancer susceptibility protein 1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A386IPW1 unreviewed A0A386IPW1_HUMAN Truncated breast and ovarian cancer susceptibility protein 1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A386IPW3 unreviewed A0A386IPW3_HUMAN Truncated breast and ovarian cancer susceptibility protein 1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A386IPW7 unreviewed A0A386IPW7_HUMAN Truncated breast and ovarian cancer susceptibility protein 1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A386IPY5 unreviewed A0A386IPY5_HUMAN Truncated breast and ovarian cancer susceptibility protein 1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A3G1CIL2 unreviewed A0A3G1CIL2_HUMAN RING-type E3 ubiquitin transferase BRCA1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A411HBD8 unreviewed A0A411HBD8_HUMAN WW domain-containing oxidoreductase WWOX apoptotic process [GO:0006915]; hippo signaling [GO:0035329]; positive regulation of transcription by RNA polymerase II [GO:0045944]; Wnt signaling pathway [GO:0016055] -A0A411HBF5 unreviewed A0A411HBF5_HUMAN WW domain-containing oxidoreductase WWOX apoptotic process [GO:0006915]; hippo signaling [GO:0035329]; positive regulation of transcription by RNA polymerase II [GO:0045944]; Wnt signaling pathway [GO:0016055] -A0A411HBH2 unreviewed A0A411HBH2_HUMAN WWOX isoform 3 WWOX hippo signaling [GO:0035329]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A494BZX7 unreviewed A0A494BZX7_HUMAN Myocardin related transcription factor A MRTFA positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A499FIJ6 unreviewed A0A499FIJ6_HUMAN Myocardin related transcription factor A MRTFA positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A4P8DKQ8 unreviewed A0A4P8DKQ8_HUMAN Truncated breast and ovarian cancer susceptibility protein 1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A4P8L6U7 unreviewed A0A4P8L6U7_HUMAN Vitamin D receptor VDR cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A590UJF1 unreviewed A0A590UJF1_HUMAN Stimulated by retinoic acid 8 STRA8 activation of meiosis [GO:0090427]; cellular response to retinoic acid [GO:0071300]; male germ-line stem cell asymmetric division [GO:0048133]; meiotic cell cycle [GO:0051321]; oogenesis [GO:0048477]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A649UB25 unreviewed A0A649UB25_HUMAN Truncated breast and ovarian cancer susceptibility protein 1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A6G8IUS2 unreviewed A0A6G8IUS2_HUMAN Truncated breast and ovarian cancer susceptibility protein 1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A7G8KP79 unreviewed A0A7G8KP79_HUMAN Truncated breast and ovarian cancer susceptibility protein 1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A7G8KP81 unreviewed A0A7G8KP81_HUMAN Truncated breast and ovarian cancer susceptibility protein 1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A7P0SNI2 unreviewed A0A7P0SNI2_HUMAN Transcriptional enhancer factor TEF-5 TEAD3 hippo signaling [GO:0035329]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A7P0T947 unreviewed A0A7P0T947_HUMAN Recombination signal binding protein for immunoglobulin kappa J region RBPJ Notch signaling pathway [GO:0007219] -A0A7P0T9Y9 unreviewed A0A7P0T9Y9_HUMAN Recombination signal binding protein for immunoglobulin kappa J region RBPJ Notch signaling pathway [GO:0007219] -A0A7P0TAL6 unreviewed A0A7P0TAL6_HUMAN Interferon regulatory factor IRF1 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A7P0Z4N7 unreviewed A0A7P0Z4N7_HUMAN Recombination signal binding protein for immunoglobulin kappa J region RBPJ Notch signaling pathway [GO:0007219] -A0A8F2F4Q1 unreviewed A0A8F2F4Q1_HUMAN Truncated breast and ovarian cancer susceptibility protein 1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A8F2JD03 unreviewed A0A8F2JD03_HUMAN Truncated breast and ovarian cancer susceptibility protein 1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A8I5KPE6 unreviewed A0A8I5KPE6_HUMAN Myocyte enhancer factor 2A MEF2A animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A8I5KVQ4 unreviewed A0A8I5KVQ4_HUMAN Myocyte enhancer factor 2A MEF2A animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A9Y1VVF6 unreviewed A0A9Y1VVF6_HUMAN RING-type E3 ubiquitin transferase BRCA1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0AA49K9C2 unreviewed A0AA49K9C2_HUMAN Truncated BRCA1 DNA repair associated BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0PJ83 unreviewed A0PJ83_HUMAN REST protein REST negative regulation of neuron differentiation [GO:0045665]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A1L0T6 unreviewed A1L0T6_HUMAN HOXA4 protein HOXA4 anterior/posterior pattern specification [GO:0009952]; embryonic skeletal system morphogenesis [GO:0048704]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A1L159 unreviewed A1L159_HUMAN IKBKB protein IKBKB positive regulation of transcription by RNA polymerase II [GO:0045944]; tumor necrosis factor-mediated signaling pathway [GO:0033209] -A1L1A9 unreviewed A1L1A9_HUMAN Phosphatase and actin regulator MKL2 positive regulation of transcription by RNA polymerase II [GO:0045944]; smooth muscle cell differentiation [GO:0051145] -A4D1R9 unreviewed A4D1R9_HUMAN Homeodomain interacting protein kinase 2 HIPK2 tcag7.426 intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:0042771]; positive regulation of transcription by RNA polymerase II [GO:0045944]; smoothened signaling pathway [GO:0007224] -A5D6X0 unreviewed A5D6X0_HUMAN SMARCA4 protein SMARCA4 positive regulation of transcription by RNA polymerase II [GO:0045944] -A7MBM6 unreviewed A7MBM6_HUMAN MLL3 protein MLL3 positive regulation of transcription by RNA polymerase II [GO:0045944] -A8K0W8 unreviewed A8K0W8_HUMAN Nuclear receptor coactivator cellular response to hormone stimulus [GO:0032870]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A8K171 unreviewed A8K171_HUMAN cDNA FLJ77253, highly similar to Homo sapiens nuclear receptor interacting protein 1 (NRIP1), mRNA cellular response to estradiol stimulus [GO:0071392]; circadian regulation of gene expression [GO:0032922]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A8K1V4 unreviewed A8K1V4_HUMAN Nuclear receptor coactivator cellular response to hormone stimulus [GO:0032870]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A8K206 unreviewed A8K206_HUMAN Thyroid hormone receptor alpha (Nuclear receptor subfamily 1 group A member 1) cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; retinoic acid receptor signaling pathway [GO:0048384]; thyroid hormone mediated signaling pathway [GO:0002154] -A8K3H9 unreviewed A8K3H9_HUMAN cDNA FLJ75649, highly similar to Homo sapiens v-rel reticuloendotheliosis viral oncogene homolog B, nuclear factor of kappa light polypeptide gene enhancer in B-cells 3 (avian) (RELB), mRNA canonical NF-kappaB signal transduction [GO:0007249]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; non-canonical NF-kappaB signal transduction [GO:0038061]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to cytokine [GO:0034097] -A8K3X7 unreviewed A8K3X7_HUMAN Insulin gene enhancer protein ISL-1 axonogenesis [GO:0007409]; neuron fate specification [GO:0048665]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A8K4I7 unreviewed A8K4I7_HUMAN IkappaB kinase (EC 2.7.11.10) positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of phosphorylation [GO:0042325]; regulation of protein modification process [GO:0031399]; tumor necrosis factor-mediated signaling pathway [GO:0033209] -A8K799 unreviewed A8K799_HUMAN Cyclin-C positive regulation of transcription by RNA polymerase II [GO:0045944] -A8KAP0 unreviewed A8KAP0_HUMAN cDNA FLJ75279, highly similar to Homo sapiens elongation factor RNA polymerase II (ELL), mRNA positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; snRNA transcription by RNA polymerase II [GO:0042795]; transcription elongation by RNA polymerase II [GO:0006368] -A8MQ14 reviewed ZN850_HUMAN Zinc finger protein 850 ZNF850 regulation of transcription by RNA polymerase II [GO:0006357] -B0AZU3 unreviewed B0AZU3_HUMAN cDNA, FLJ79533, highly similar to Bcl-2-associated transcription factor 1 mRNA processing [GO:0006397]; mRNA transport [GO:0051028]; nuclear-transcribed mRNA catabolic process, nonsense-mediated decay [GO:0000184]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of translation [GO:0006417]; RNA splicing [GO:0008380] -B0QY83 unreviewed B0QY83_HUMAN Myocardin related transcription factor A MRTFA positive regulation of transcription by RNA polymerase II [GO:0045944] -B1AT47 unreviewed B1AT47_HUMAN Glucocorticoid modulatory element binding protein 1, isoform CRA_a (cDNA, FLJ96492, Homo sapiens glucocorticoid modulatory element binding protein 1(GMEB1), transcript variant 2, mRNA) GMEB1 hCG_1787575 -B2R681 unreviewed B2R681_HUMAN cDNA, FLJ92829, highly similar to Homo sapiens MADS box transcription enhancer factor 2, polypeptide C (myocyte enhancer factor 2C) (MEF2C), mRNA cell differentiation [GO:0030154]; heart development [GO:0007507]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B2R6J0 unreviewed B2R6J0_HUMAN cDNA, FLJ92971, highly similar to Homo sapiens SRY (sex determining region Y)-box 2 (SOX2), mRNA anatomical structure morphogenesis [GO:0009653]; cell fate commitment [GO:0045165]; forebrain development [GO:0030900]; inner ear development [GO:0048839]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B2R7F1 unreviewed B2R7F1_HUMAN cDNA, FLJ93416, highly similar to Homo sapiens nuclear receptor subfamily 1, group H, member 4 (NR1H4), mRNA cell differentiation [GO:0030154]; negative regulation of inflammatory response [GO:0050728]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B2R8A7 unreviewed B2R8A7_HUMAN Histone acetyltransferase (EC 2.3.1.48) DNA repair [GO:0006281]; negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B2R8B9 unreviewed B2R8B9_HUMAN cDNA, FLJ93824, highly similar to Homo sapiens nuclear receptor subfamily 1, group H, member 3 (NR1H3), mRNA cell differentiation [GO:0030154]; lipid metabolic process [GO:0006629]; negative regulation of inflammatory response [GO:0050728]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B2R9L6 unreviewed B2R9L6_HUMAN cDNA, FLJ94450, highly similar to Homo sapiens cyclin-dependent kinase 9 (CDC2-related kinase) (CDK9), mRNA positive regulation of transcription elongation by RNA polymerase II [GO:0032968] -B2RC57 unreviewed B2RC57_HUMAN cDNA, FLJ95861, highly similar to Homo sapiens Meis1, myeloid ecotropic viral integration site 1homolog (mouse) (MEIS1), mRNA angiogenesis [GO:0001525]; animal organ morphogenesis [GO:0009887]; brain development [GO:0007420]; embryonic pattern specification [GO:0009880]; eye development [GO:0001654]; hemopoiesis [GO:0030097]; positive regulation of cell population proliferation [GO:0008284] -B2RD90 unreviewed B2RD90_HUMAN cDNA, FLJ96507 negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; transcription by RNA polymerase II [GO:0006366] -B2RDI7 unreviewed B2RDI7_HUMAN E3 ubiquitin-protein ligase RNF10 (RING finger protein 10) positive regulation of myelination [GO:0031643]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B3KNW7 unreviewed B3KNW7_HUMAN cDNA FLJ30606 fis, clone CTONG2000330, highly similar to Probable global transcription activator SNF2L4 positive regulation of transcription by RNA polymerase II [GO:0045944] -B3KNX6 unreviewed B3KNX6_HUMAN Neurogenic differentiation factor axon development [GO:0061564]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sensory organ development [GO:0007423] -B3KP71 unreviewed B3KP71_HUMAN Mediator of RNA polymerase II transcription subunit 25 positive regulation of transcription by RNA polymerase II [GO:0045944] -B3KP81 unreviewed B3KP81_HUMAN Meis1, myeloid ecotropic viral integration site 1 homolog 2 (Mouse), isoform CRA_f (cDNA FLJ31374 fis, clone NB9N42000430, highly similar to HOMEOBOX PROTEIN MEIS2) MEIS2 hCG_39301 animal organ morphogenesis [GO:0009887]; brain development [GO:0007420]; embryonic pattern specification [GO:0009880]; eye development [GO:0001654]; positive regulation of cell population proliferation [GO:0008284] -B3KPD8 unreviewed B3KPD8_HUMAN cDNA FLJ31654 fis, clone NT2RI2004230, highly similar to Homeobox protein Meis2 animal organ morphogenesis [GO:0009887]; brain development [GO:0007420]; embryonic pattern specification [GO:0009880]; eye development [GO:0001654]; positive regulation of cell population proliferation [GO:0008284] -B3KQ23 unreviewed B3KQ23_HUMAN Myocyte enhancer factor 2B (cDNA FLJ32648 fis, clone SYNOV2001451, highly similar to MYOCYTE-SPECIFIC ENHANCER FACTOR 2B) MEF2B animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B3KRB7 unreviewed B3KRB7_HUMAN Inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase beta, isoform CRA_a (cDNA FLJ33978 fis, clone DFNES2004354, highly similar to Inhibitor of nuclear factor kappa B kinase subunit beta) IKBKB hCG_17395 positive regulation of transcription by RNA polymerase II [GO:0045944]; tumor necrosis factor-mediated signaling pathway [GO:0033209] -B3KRG6 unreviewed B3KRG6_HUMAN cDNA FLJ34216 fis, clone FCBBF3022005, highly similar to OXYSTEROLS RECEPTOR LXR-BETA cell differentiation [GO:0030154]; lipid metabolic process [GO:0006629]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B3KS47 unreviewed B3KS47_HUMAN Calcium-binding and coiled-coil domain-containing protein 1 positive regulation of transcription by RNA polymerase II [GO:0045944]; Wnt signaling pathway [GO:0016055] -B3KSN5 unreviewed B3KSN5_HUMAN E3 ubiquitin-protein ligase RNF10 (RING finger protein 10) positive regulation of myelination [GO:0031643]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B3KU66 unreviewed B3KU66_HUMAN cDNA FLJ39263 fis, clone OCBBF2009571, highly similar to ATP-dependent RNA helicase A positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of mRNA processing [GO:0050684] -B3KUR9 unreviewed B3KUR9_HUMAN E3 ubiquitin-protein ligase RNF10 (RING finger protein 10) positive regulation of myelination [GO:0031643]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B3KUX4 unreviewed B3KUX4_HUMAN cDNA FLJ40855 fis, clone TRACH2016317, highly similar to HOMEOBOX PROTEIN MEIS1 angiogenesis [GO:0001525]; animal organ morphogenesis [GO:0009887]; brain development [GO:0007420]; embryonic pattern specification [GO:0009880]; eye development [GO:0001654]; hemopoiesis [GO:0030097]; positive regulation of cell population proliferation [GO:0008284] -B3KV37 unreviewed B3KV37_HUMAN cDNA FLJ16096 fis, clone SPLEN2006232, highly similar to OXYSTEROLS RECEPTOR LXR-ALPHA cell differentiation [GO:0030154]; lipid metabolic process [GO:0006629]; negative regulation of inflammatory response [GO:0050728]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B3KVI8 unreviewed B3KVI8_HUMAN cDNA FLJ16604 fis, clone TESTI4008097, highly similar to Polycomb group protein ASXL1 animal organ morphogenesis [GO:0009887]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B3KVJ2 unreviewed B3KVJ2_HUMAN histone acetyltransferase (EC 2.3.1.48) negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B3KWY9 unreviewed B3KWY9_HUMAN E3 ubiquitin-protein ligase RNF10 (RING finger protein 10) positive regulation of myelination [GO:0031643]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B3W6H6 unreviewed B3W6H6_HUMAN Methylcytosine dioxygenase TET (EC 1.14.11.80) TET1-MLL 5-methylcytosine catabolic process [GO:0006211]; DNA demethylation [GO:0080111]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DDB5 unreviewed B4DDB5_HUMAN Transcription initiation factor IIF subunit alpha positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; transcription initiation at RNA polymerase II promoter [GO:0006367] -B4DDP1 unreviewed B4DDP1_HUMAN cDNA FLJ52620, highly similar to Orphan nuclear receptor NR1D2 cell differentiation [GO:0030154]; hormone-mediated signaling pathway [GO:0009755]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DF88 unreviewed B4DF88_HUMAN Class E basic helix-loop-helix protein 22 (Class B basic helix-loop-helix protein 5) axon development [GO:0061564]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sensory organ development [GO:0007423] -B4DG17 unreviewed B4DG17_HUMAN Prostate tumor-overexpressed gene 1 protein PTOV1 hCG_2039824 positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DG18 unreviewed B4DG18_HUMAN histone acetyltransferase (EC 2.3.1.48) negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DJ40 unreviewed B4DJ40_HUMAN histone acetyltransferase (EC 2.3.1.48) negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DK35 unreviewed B4DK35_HUMAN cDNA FLJ61591, highly similar to Probable global transcription activator SNF2L2 positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DL53 unreviewed B4DL53_HUMAN cDNA FLJ60290, highly similar to Mus musculus strawberry notch homolog 2, mRNA cellular response to interleukin-6 [GO:0071354]; macrophage activation involved in immune response [GO:0002281]; negative regulation of DNA-templated transcription [GO:0045892]; osteoclast differentiation [GO:0030316]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of inflammatory response [GO:0050727] -B4DLH3 unreviewed B4DLH3_HUMAN cDNA FLJ55306, highly similar to Zinc finger protein ZFPM2 anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; heart development [GO:0007507]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DNM0 unreviewed B4DNM0_HUMAN RNA polymerase-associated protein LEO1 positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; transcription elongation by RNA polymerase II [GO:0006368] -B4DNR3 unreviewed B4DNR3_HUMAN Putative protein-lysine deacylase ABHD14B (Alpha/beta hydrolase domain-containing protein 14B) positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DNX8 unreviewed B4DNX8_HUMAN cDNA FLJ60744, moderately similar to B-cell lymphoma 9 protein canonical Wnt signaling pathway [GO:0060070]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DP95 unreviewed B4DP95_HUMAN IkappaB kinase (EC 2.7.11.10) positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of phosphorylation [GO:0042325]; regulation of protein modification process [GO:0031399]; tumor necrosis factor-mediated signaling pathway [GO:0033209] -B4DQP6 unreviewed B4DQP6_HUMAN Mediator of RNA polymerase II transcription subunit 25 positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DRV7 unreviewed B4DRV7_HUMAN Vitamin D3 receptor (1,25-dihydroxyvitamin D3 receptor) (Nuclear receptor subfamily 1 group I member 1) cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DS85 unreviewed B4DS85_HUMAN cDNA FLJ56829, highly similar to Neurogenic differentiation factor 6 axon development [GO:0061564]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sensory organ development [GO:0007423] -B4DSC8 unreviewed B4DSC8_HUMAN cDNA FLJ53181, highly similar to Probable global transcription activator SNF2L2 positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DSI8 unreviewed B4DSI8_HUMAN cDNA FLJ60344, highly similar to Probable global transcription activator SNF2L4 positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DSK7 unreviewed B4DSK7_HUMAN Mediator of RNA polymerase II transcription subunit 1 (Mediator complex subunit 1) cellular response to thyroid hormone stimulus [GO:0097067]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DSU0 unreviewed B4DSU0_HUMAN Sterol regulatory element-binding protein 2 (Sterol regulatory element-binding transcription factor 2) lipid metabolic process [GO:0006629]; positive regulation of cholesterol storage [GO:0010886]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DTC7 unreviewed B4DTC7_HUMAN cDNA FLJ52239, highly similar to Orphan nuclear receptor NR1D1 cell differentiation [GO:0030154]; hormone-mediated signaling pathway [GO:0009755]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to leptin [GO:0044321] -B4DV91 unreviewed B4DV91_HUMAN cDNA FLJ56643, highly similar to Mus musculus strawberry notch homolog 2, mRNA cellular response to interleukin-6 [GO:0071354]; macrophage activation involved in immune response [GO:0002281]; negative regulation of DNA-templated transcription [GO:0045892]; osteoclast differentiation [GO:0030316]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of inflammatory response [GO:0050727] -B4DWN2 unreviewed B4DWN2_HUMAN E3 ubiquitin-protein ligase RNF10 (RING finger protein 10) positive regulation of myelination [GO:0031643]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DXD3 unreviewed B4DXD3_HUMAN Nuclear receptor Rev-ErbA beta variant 2 (Nuclear receptor subfamily 1, group D, member 2, isoform CRA_b) (cDNA FLJ51368, highly similar to Orphan nuclear receptor NR1D2) NR1D2 hCG_1778084 cell differentiation [GO:0030154]; hormone-mediated signaling pathway [GO:0009755]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DXY2 unreviewed B4DXY2_HUMAN Transcription initiation factor IIF subunit alpha positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; transcription initiation at RNA polymerase II promoter [GO:0006367] -B4DZR3 unreviewed B4DZR3_HUMAN cDNA FLJ59826, highly similar to Zinc finger protein ZFPM2 anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; heart development [GO:0007507]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4E082 unreviewed B4E082_HUMAN cDNA FLJ57698, highly similar to Transcription factor p65 canonical NF-kappaB signal transduction [GO:0007249]; cellular response to lipopolysaccharide [GO:0071222]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; non-canonical NF-kappaB signal transduction [GO:0038061]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to cytokine [GO:0034097] -B4E0A7 unreviewed B4E0A7_HUMAN IkappaB kinase (EC 2.7.11.10) positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of phosphorylation [GO:0042325]; regulation of protein modification process [GO:0031399]; tumor necrosis factor-mediated signaling pathway [GO:0033209] -B4E0F1 unreviewed B4E0F1_HUMAN cDNA FLJ60382, highly similar to Probable global transcription activator SNF2L4 positive regulation of transcription by RNA polymerase II [GO:0045944] -B4E0K3 unreviewed B4E0K3_HUMAN Protein max (Myc-associated factor X) positive regulation of transcription by RNA polymerase II [GO:0045944] -B4E1P2 unreviewed B4E1P2_HUMAN cDNA FLJ59223, highly similar to C-Rel proto-oncogene protein canonical NF-kappaB signal transduction [GO:0007249]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; non-canonical NF-kappaB signal transduction [GO:0038061]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to cytokine [GO:0034097] -B4E2Y1 unreviewed B4E2Y1_HUMAN cDNA FLJ52879, highly similar to Peroxisome proliferator-activated receptordelta cell differentiation [GO:0030154]; fatty acid metabolic process [GO:0006631]; hormone-mediated signaling pathway [GO:0009755]; negative regulation of cholesterol storage [GO:0010887]; negative regulation of inflammatory response [GO:0050728]; positive regulation of fatty acid metabolic process [GO:0045923]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4E2Y3 unreviewed B4E2Y3_HUMAN cDNA FLJ51192, highly similar to 65 kDa Yes-associated protein hippo signaling [GO:0035329]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4E3L4 unreviewed B4E3L4_HUMAN histone acetyltransferase (EC 2.3.1.48) positive regulation of transcription by RNA polymerase II [GO:0045944] -B5A211 unreviewed B5A211_HUMAN histone acetyltransferase (EC 2.3.1.48) CREBBP positive regulation of transcription by RNA polymerase II [GO:0045944] -B5A212 unreviewed B5A212_HUMAN histone acetyltransferase (EC 2.3.1.48) CREBBP positive regulation of transcription by RNA polymerase II [GO:0045944] -B5A213 unreviewed B5A213_HUMAN histone acetyltransferase (EC 2.3.1.48) CREBBP positive regulation of transcription by RNA polymerase II [GO:0045944] -B5A216 unreviewed B5A216_HUMAN histone acetyltransferase (EC 2.3.1.48) CREBBP positive regulation of transcription by RNA polymerase II [GO:0045944] -B5A219 unreviewed B5A219_HUMAN histone acetyltransferase (EC 2.3.1.48) CREBBP positive regulation of transcription by RNA polymerase II [GO:0045944] -B5A222 unreviewed B5A222_HUMAN histone acetyltransferase (EC 2.3.1.48) CREBBP positive regulation of transcription by RNA polymerase II [GO:0045944] -B5A223 unreviewed B5A223_HUMAN histone acetyltransferase (EC 2.3.1.48) CREBBP positive regulation of transcription by RNA polymerase II [GO:0045944] -B5A224 unreviewed B5A224_HUMAN histone acetyltransferase (EC 2.3.1.48) CREBBP positive regulation of transcription by RNA polymerase II [GO:0045944] -B5A225 unreviewed B5A225_HUMAN histone acetyltransferase (EC 2.3.1.48) CREBBP positive regulation of transcription by RNA polymerase II [GO:0045944] -B5A226 unreviewed B5A226_HUMAN histone acetyltransferase (EC 2.3.1.48) CREBBP positive regulation of transcription by RNA polymerase II [GO:0045944] -B5A227 unreviewed B5A227_HUMAN histone acetyltransferase (EC 2.3.1.48) CREBBP positive regulation of transcription by RNA polymerase II [GO:0045944] -B5A228 unreviewed B5A228_HUMAN histone acetyltransferase (EC 2.3.1.48) CREBBP positive regulation of transcription by RNA polymerase II [GO:0045944] -B5A229 unreviewed B5A229_HUMAN histone acetyltransferase (EC 2.3.1.48) CREBBP positive regulation of transcription by RNA polymerase II [GO:0045944] -B5A231 unreviewed B5A231_HUMAN histone acetyltransferase (EC 2.3.1.48) CREBBP positive regulation of transcription by RNA polymerase II [GO:0045944] -B5A232 unreviewed B5A232_HUMAN histone acetyltransferase (EC 2.3.1.48) CREBBP positive regulation of transcription by RNA polymerase II [GO:0045944] -B5A233 unreviewed B5A233_HUMAN histone acetyltransferase (EC 2.3.1.48) CREBBP positive regulation of transcription by RNA polymerase II [GO:0045944] -B5A234 unreviewed B5A234_HUMAN histone acetyltransferase (EC 2.3.1.48) CREBBP positive regulation of transcription by RNA polymerase II [GO:0045944] -B5A235 unreviewed B5A235_HUMAN histone acetyltransferase (EC 2.3.1.48) CREBBP positive regulation of transcription by RNA polymerase II [GO:0045944] -B5A239 unreviewed B5A239_HUMAN histone acetyltransferase (EC 2.3.1.48) CREBBP positive regulation of transcription by RNA polymerase II [GO:0045944] -B5A243 unreviewed B5A243_HUMAN histone acetyltransferase (EC 2.3.1.48) CREBBP positive regulation of transcription by RNA polymerase II [GO:0045944] -B5A244 unreviewed B5A244_HUMAN histone acetyltransferase (EC 2.3.1.48) CREBBP positive regulation of transcription by RNA polymerase II [GO:0045944] -B5A248 unreviewed B5A248_HUMAN histone acetyltransferase (EC 2.3.1.48) CREBBP positive regulation of transcription by RNA polymerase II [GO:0045944] -B5B2S1 unreviewed B5B2S1_HUMAN Nuclear factor of activated T-cells c3 isoform IB-deltaXa (Nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 3, isoform CRA_b) NFATC3 hCG_28103 calcineurin-NFAT signaling cascade [GO:0033173]; positive regulation of apoptotic process [GO:0043065]; positive regulation of cardiac muscle hypertrophy [GO:0010613]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein import into nucleus [GO:0006606] -B5BU53 unreviewed B5BU53_HUMAN Cyclin-dependent kinase 9 CDK9 positive regulation of transcription elongation by RNA polymerase II [GO:0032968] -B5MCN7 unreviewed B5MCN7_HUMAN Nuclear receptor coactivator 1 NCOA1 positive regulation of transcription by RNA polymerase II [GO:0045944] -B6ZGR7 unreviewed B6ZGR7_HUMAN Thyroid hormone receptor beta isoform NR1A2 cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; retinoic acid receptor signaling pathway [GO:0048384]; thyroid hormone mediated signaling pathway [GO:0002154] -B6ZGS3 unreviewed B6ZGS3_HUMAN Nuclear receptor subfamily 1, group D, member 2 NR1D2 cell differentiation [GO:0030154]; hormone-mediated signaling pathway [GO:0009755]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B6ZGS7 unreviewed B6ZGS7_HUMAN Liver X receptor beta NR1H2 cell differentiation [GO:0030154]; lipid metabolic process [GO:0006629]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B6ZGS8 unreviewed B6ZGS8_HUMAN Liver X receptor alpha NR1H3 cell differentiation [GO:0030154]; lipid metabolic process [GO:0006629]; negative regulation of inflammatory response [GO:0050728]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B6ZGS9 unreviewed B6ZGS9_HUMAN Farnesoid X receptor (Nuclear receptor subfamily 1, group H, member 4, isoform CRA_a) NR1H4 hCG_20893 cell differentiation [GO:0030154]; negative regulation of inflammatory response [GO:0050728]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B6ZGT0 unreviewed B6ZGT0_HUMAN Vitamin D3 receptor (1,25-dihydroxyvitamin D3 receptor) (Nuclear receptor subfamily 1 group I member 1) NR1I1 cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B6ZGT1 unreviewed B6ZGT1_HUMAN Orphan nuclear receptor PXR NR1I2 cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B6ZGT2 unreviewed B6ZGT2_HUMAN Nuclear receptor subfamily 1 group I member 3 (Constitutive androstane receptor) NR1I3 cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B6ZGT3 unreviewed B6ZGT3_HUMAN Hepatocyte nuclear factor 4, alpha NR2A1 cell differentiation [GO:0030154]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B6ZGT4 unreviewed B6ZGT4_HUMAN Hepatocyte nuclear factor 4, gamma NR2A3 cell differentiation [GO:0030154]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B7Z1Z0 unreviewed B7Z1Z0_HUMAN Activated RNA polymerase II transcriptional coactivator p15 (SUB1 homolog) positive regulation of transcription initiation by RNA polymerase II [GO:0060261] -B7Z272 unreviewed B7Z272_HUMAN cDNA FLJ55195, highly similar to Homeobox protein Meis2 animal organ morphogenesis [GO:0009887]; brain development [GO:0007420]; embryonic pattern specification [GO:0009880]; eye development [GO:0001654]; positive regulation of cell population proliferation [GO:0008284] -B7Z2Y7 unreviewed B7Z2Y7_HUMAN cDNA FLJ59521, moderately similar to Zinc finger and SCAN domain-containing protein 2 negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; transcription by RNA polymerase II [GO:0006366] -B7Z423 unreviewed B7Z423_HUMAN cDNA FLJ50792, highly similar to Bile acid receptor cell differentiation [GO:0030154]; negative regulation of inflammatory response [GO:0050728]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B7Z4B3 unreviewed B7Z4B3_HUMAN cDNA FLJ54698, highly similar to Homeobox protein Meis1 angiogenesis [GO:0001525]; animal organ morphogenesis [GO:0009887]; brain development [GO:0007420]; embryonic pattern specification [GO:0009880]; eye development [GO:0001654]; hemopoiesis [GO:0030097]; positive regulation of cell population proliferation [GO:0008284] -B7Z4D9 unreviewed B7Z4D9_HUMAN histone acetyltransferase (EC 2.3.1.48) negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B7Z4W0 unreviewed B7Z4W0_HUMAN Transcription elongation factor positive regulation of transcription by RNA polymerase II [GO:0045944]; transcription elongation by RNA polymerase II [GO:0006368] -B7Z6D0 unreviewed B7Z6D0_HUMAN cDNA FLJ60147, highly similar to LIM domain-binding protein 2 negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system development [GO:0007399]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B7Z6F6 unreviewed B7Z6F6_HUMAN cDNA FLJ58324, highly similar to Homeobox protein Meis2 animal organ morphogenesis [GO:0009887]; brain development [GO:0007420]; embryonic pattern specification [GO:0009880]; eye development [GO:0001654]; positive regulation of cell population proliferation [GO:0008284] -B7Z6K7 reviewed ZN814_HUMAN Zinc finger protein 814 ZNF814 regulation of transcription by RNA polymerase II [GO:0006357] -B7Z725 unreviewed B7Z725_HUMAN cDNA FLJ56254, highly similar to Mothers against decapentaplegic homolog 3 (SMAD3) activin receptor signaling pathway [GO:0032924]; anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; positive regulation of transcription by RNA polymerase II [GO:0045944]; SMAD protein signal transduction [GO:0060395]; transforming growth factor beta receptor signaling pathway [GO:0007179] -B7Z8Q3 unreviewed B7Z8Q3_HUMAN Nuclear receptor subfamily 1 group I member 3 (Constitutive androstane receptor) cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B7ZA85 unreviewed B7ZA85_HUMAN RING-type E3 ubiquitin transferase BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B7ZAW1 unreviewed B7ZAW1_HUMAN cDNA, FLJ79325, highly similar to Zinc finger protein ZFPM2 anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; heart development [GO:0007507]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B7ZL21 unreviewed B7ZL21_HUMAN MAML2 protein MAML2 positive regulation of transcription of Notch receptor target [GO:0007221] -B7ZL72 unreviewed B7ZL72_HUMAN PR domain zinc finger protein 10 (PR domain-containing protein 10) PRDM10 methylation [GO:0032259]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B8XCX8 unreviewed B8XCX8_HUMAN EPC1/ASXL2b fusion protein animal organ morphogenesis [GO:0009887]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B8ZZJ5 unreviewed B8ZZJ5_HUMAN Myocyte enhancer factor 2B MEF2B animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B9EGQ8 unreviewed B9EGQ8_HUMAN SMARCA4 protein SMARCA4 positive regulation of transcription by RNA polymerase II [GO:0045944] -B9TX31 unreviewed B9TX31_HUMAN Mediator of RNA polymerase II transcription subunit 25 MED25 positive regulation of transcription by RNA polymerase II [GO:0045944] -B9TX32 unreviewed B9TX32_HUMAN Mediator of RNA polymerase II transcription subunit 25 MED25 positive regulation of transcription by RNA polymerase II [GO:0045944] -B9TX33 unreviewed B9TX33_HUMAN Mediator of RNA polymerase II transcription subunit 25 MED25 positive regulation of transcription by RNA polymerase II [GO:0045944] -B9TX34 unreviewed B9TX34_HUMAN Mediator of RNA polymerase II transcription subunit 25 MED25 positive regulation of transcription by RNA polymerase II [GO:0045944] -B9TX35 unreviewed B9TX35_HUMAN Mediator of RNA polymerase II transcription subunit 25 MED25 positive regulation of transcription by RNA polymerase II [GO:0045944] -B9TX36 unreviewed B9TX36_HUMAN Mediator of RNA polymerase II transcription subunit 25 MED25 positive regulation of transcription by RNA polymerase II [GO:0045944] -B9TX37 unreviewed B9TX37_HUMAN Mediator of RNA polymerase II transcription subunit 25 MED25 positive regulation of transcription by RNA polymerase II [GO:0045944] -B9TX39 unreviewed B9TX39_HUMAN Mediator of RNA polymerase II transcription subunit 25 MED25 positive regulation of transcription by RNA polymerase II [GO:0045944] -B9TX40 unreviewed B9TX40_HUMAN Mediator of RNA polymerase II transcription subunit 25 MED25 positive regulation of transcription by RNA polymerase II [GO:0045944] -B9TX41 unreviewed B9TX41_HUMAN Mediator of RNA polymerase II transcription subunit 25 MED25 positive regulation of transcription by RNA polymerase II [GO:0045944] -B9TX42 unreviewed B9TX42_HUMAN Mediator of RNA polymerase II transcription subunit 25 MED25 positive regulation of transcription by RNA polymerase II [GO:0045944] -B9TX45 unreviewed B9TX45_HUMAN Mediator of RNA polymerase II transcription subunit 25 MED25 positive regulation of transcription by RNA polymerase II [GO:0045944] -B9TX46 unreviewed B9TX46_HUMAN Mediator of RNA polymerase II transcription subunit 25 MED25 positive regulation of transcription by RNA polymerase II [GO:0045944] -C0JKD5 unreviewed C0JKD5_HUMAN Androgen receptor splice variant 4b AR androgen receptor signaling pathway [GO:0030521]; male gonad development [GO:0008584]; positive regulation of transcription by RNA polymerase II [GO:0045944] -C0JKD6 unreviewed C0JKD6_HUMAN Androgen receptor splice variant 5 AR androgen receptor signaling pathway [GO:0030521]; male gonad development [GO:0008584]; positive regulation of transcription by RNA polymerase II [GO:0045944] -C0JKD7 unreviewed C0JKD7_HUMAN Androgen receptor splice variant 6 AR androgen receptor signaling pathway [GO:0030521]; male gonad development [GO:0008584]; positive regulation of transcription by RNA polymerase II [GO:0045944] -C6YB46 unreviewed C6YB46_HUMAN RING-type E3 ubiquitin transferase BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -C6YB47 unreviewed C6YB47_HUMAN RING-type E3 ubiquitin transferase BRCA1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -C9J4J4 unreviewed C9J4J4_HUMAN Myocyte enhancer factor 2B MEF2B animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -C9JMH6 unreviewed C9JMH6_HUMAN Alpha-2-antiplasmin SERPINF2 blood vessel morphogenesis [GO:0048514]; collagen fibril organization [GO:0030199]; maintenance of blood vessel diameter homeostasis by renin-angiotensin [GO:0002034]; negative regulation of fibrinolysis [GO:0051918]; positive regulation of cell differentiation [GO:0045597]; positive regulation of collagen biosynthetic process [GO:0032967]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta production [GO:0071636]; response to organic substance [GO:0010033] -D2KF13 unreviewed D2KF13_HUMAN Androgen receptor variant 5,6,7es AR androgen receptor signaling pathway [GO:0030521]; male gonad development [GO:0008584]; positive regulation of transcription by RNA polymerase II [GO:0045944] -D2Y6K2 unreviewed D2Y6K2_HUMAN Androgen receptor (Dihydrotestosterone receptor) (Nuclear receptor subfamily 3 group C member 4) AR androgen receptor signaling pathway [GO:0030521]; male gonad development [GO:0008584]; positive regulation of transcription by RNA polymerase II [GO:0045944] -D3YPP9 unreviewed D3YPP9_HUMAN Androgen receptor (Dihydrotestosterone receptor) (Nuclear receptor subfamily 3 group C member 4) AR androgen receptor signaling pathway [GO:0030521]; male gonad development [GO:0008584]; positive regulation of transcription by RNA polymerase II [GO:0045944] -D3YPQ0 unreviewed D3YPQ0_HUMAN Androgen receptor (Dihydrotestosterone receptor) (Nuclear receptor subfamily 3 group C member 4) AR androgen receptor signaling pathway [GO:0030521]; male gonad development [GO:0008584]; positive regulation of transcription by RNA polymerase II [GO:0045944] -D3YPQ1 unreviewed D3YPQ1_HUMAN Androgen receptor (Dihydrotestosterone receptor) (Nuclear receptor subfamily 3 group C member 4) AR androgen receptor signaling pathway [GO:0030521]; male gonad development [GO:0008584]; positive regulation of transcription by RNA polymerase II [GO:0045944] -D3YPQ2 unreviewed D3YPQ2_HUMAN Androgen receptor (Dihydrotestosterone receptor) (Nuclear receptor subfamily 3 group C member 4) AR androgen receptor signaling pathway [GO:0030521]; male gonad development [GO:0008584]; positive regulation of transcription by RNA polymerase II [GO:0045944] -D3YPQ3 unreviewed D3YPQ3_HUMAN Androgen receptor (Dihydrotestosterone receptor) (Nuclear receptor subfamily 3 group C member 4) AR androgen receptor signaling pathway [GO:0030521]; male gonad development [GO:0008584]; positive regulation of transcription by RNA polymerase II [GO:0045944] -D5M8Q2 unreviewed D5M8Q2_HUMAN Mutant androgen receptor isoform 1 transcript variant 1 AR androgen receptor signaling pathway [GO:0030521]; male gonad development [GO:0008584]; positive regulation of transcription by RNA polymerase II [GO:0045944] -D6R942 unreviewed D6R942_HUMAN Myocyte enhancer factor 2C MEF2C animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -D6RB08 unreviewed D6RB08_HUMAN Interferon regulatory factor 2 IRF2 positive regulation of transcription by RNA polymerase II [GO:0045944] -D6RBJ1 unreviewed D6RBJ1_HUMAN Insulin gene enhancer protein ISL-1 ISL1 neuron fate specification [GO:0048665]; positive regulation of transcription by RNA polymerase II [GO:0045944] -D6RC63 unreviewed D6RC63_HUMAN Myocyte enhancer factor 2C MEF2C animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -D6RCM6 unreviewed D6RCM6_HUMAN Myocyte enhancer factor 2C MEF2C animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -D6RF98 unreviewed D6RF98_HUMAN Recombination signal binding protein for immunoglobulin kappa J region RBPJ -D6RG21 unreviewed D6RG21_HUMAN Myocyte enhancer factor 2C MEF2C animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -D6RJA7 unreviewed D6RJA7_HUMAN Myocyte enhancer factor 2C MEF2C animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -D6RJG6 unreviewed D6RJG6_HUMAN Myocyte enhancer factor 2C MEF2C animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -D7EZH4 unreviewed D7EZH4_HUMAN SNF2LT positive regulation of transcription by RNA polymerase II [GO:0045944] -D8L7E9 unreviewed D8L7E9_HUMAN Myocyte enhancer factor 2C MEF2C animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -E0XEN6 unreviewed E0XEN6_HUMAN Forkhead box I1 FOXI1 hCG_36987 cell differentiation [GO:0030154]; inner ear morphogenesis [GO:0042472] -F1D8N5 unreviewed F1D8N5_HUMAN Androgen nuclear receptor variant 2 NR3C4 intracellular steroid hormone receptor signaling pathway [GO:0030518]; male gonad development [GO:0008584]; positive regulation of transcription by RNA polymerase II [GO:0045944] -F1D8P9 unreviewed F1D8P9_HUMAN Nuclear receptor subfamily 1, group I, member 2, isoform CRA_b (Pregnane X nuclear receptor variant 2) NR1i2 NR1I2 hCG_21777 cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -F1D8Q9 unreviewed F1D8Q9_HUMAN Nuclear receptor subfamily 2, group E, member 3, isoform CRA_b (Photoreceptor cell-specific nuclear receptor variant 1) NR2E3 hCG_38793 cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -F1D8R5 unreviewed F1D8R5_HUMAN Estrogen-related nuclear receptor gamma variant 1 NR3B3 intracellular steroid hormone receptor signaling pathway [GO:0030518]; positive regulation of cold-induced thermogenesis [GO:0120162]; retinoic acid receptor signaling pathway [GO:0048384] -F1D8S0 unreviewed F1D8S0_HUMAN Germ cell nuclear factor variant 1 (Nuclear receptor subfamily 6, group A, member 1, isoform CRA_b) NR6A1 hCG_29220 gamete generation [GO:0007276]; negative regulation of transcription by RNA polymerase II [GO:0000122] -F1D8S2 unreviewed F1D8S2_HUMAN Hepatocyte nuclear factor 4 4 alpha variant 1 NR2A1 cell differentiation [GO:0030154]; positive regulation of transcription by RNA polymerase II [GO:0045944] -F1D8S7 unreviewed F1D8S7_HUMAN Peroxisome proliferative activated receptor, delta, isoform CRA_b (Peroxisome proliferator-activated nuclear receptor beta/delta variant 2) NR1C2 PPARD hCG_17666 cell differentiation [GO:0030154]; fatty acid metabolic process [GO:0006631]; hormone-mediated signaling pathway [GO:0009755]; negative regulation of cholesterol storage [GO:0010887]; negative regulation of inflammatory response [GO:0050728]; positive regulation of fatty acid metabolic process [GO:0045923]; positive regulation of transcription by RNA polymerase II [GO:0045944] -F1D8T1 unreviewed F1D8T1_HUMAN Hepatocyte nuclear factor 4 4 alpha variant 2 NR2A1 cell differentiation [GO:0030154]; positive regulation of transcription by RNA polymerase II [GO:0045944] -F1DAL3 unreviewed F1DAL3_HUMAN Pregnane X nuclear receptor NR1I2 cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -F1DAL4 unreviewed F1DAL4_HUMAN Nuclear receptor subfamily 1 group I member 3 (Constitutive androstane receptor) NR1I3 cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -F1DAL6 unreviewed F1DAL6_HUMAN Ovalbumin upstream promoter-transcription factor I NR2F1 cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -F1DAL8 unreviewed F1DAL8_HUMAN Ovalbumin upstream promoter-transcription factor I NR2F1 cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -F1T0H3 unreviewed F1T0H3_HUMAN Neurogenin-1 NEUROG1 axon development [GO:0061564]; cell fate commitment [GO:0045165]; exit from mitosis [GO:0010458]; forebrain development [GO:0030900]; inner ear morphogenesis [GO:0042472]; positive regulation of exit from mitosis [GO:0031536]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of transcription by RNA polymerase II [GO:0045944] -F1T0H4 unreviewed F1T0H4_HUMAN HCG1795924 (Protein atonal homolog 7) ATOH7 hCG_1795924 axon development [GO:0061564]; circadian rhythm [GO:0007623]; entrainment of circadian clock by photoperiod [GO:0043153]; neural retina development [GO:0003407]; positive regulation of retinal ganglion cell axon guidance [GO:1902336]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to auditory stimulus [GO:0010996] -F2YGU2 unreviewed F2YGU2_HUMAN Nuclear receptor subfamily 2, group C, member 2, isoform CRA_a (Testicular nuclear receptor 4) NR2C2 hCG_27821 cell differentiation [GO:0030154]; positive regulation of embryonic development [GO:0040019]; positive regulation of transcription by RNA polymerase II [GO:0045944] -F8VWL0 unreviewed F8VWL0_HUMAN Transcription factor CP2 TFCP2 -F8WD26 unreviewed F8WD26_HUMAN LIM domain 7 LMO7 positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell adhesion [GO:0030155]; regulation of signaling [GO:0023051] -G0Z349 unreviewed G0Z349_HUMAN Interferon regulatory factor 6 IRF6 cell development [GO:0048468]; cranial skeletal system development [GO:1904888]; immune system process [GO:0002376]; keratinocyte differentiation [GO:0030216]; keratinocyte proliferation [GO:0043616]; limb development [GO:0060173]; mammary gland epithelial cell differentiation [GO:0060644]; negative regulation of keratinocyte proliferation [GO:0010839]; negative regulation of stem cell proliferation [GO:2000647]; roof of mouth development [GO:0060021]; stem cell proliferation [GO:0072089] -G4VV16 unreviewed G4VV16_HUMAN Androgen receptor isoform 8 AR8 androgen receptor signaling pathway [GO:0030521]; positive regulation of transcription by RNA polymerase II [GO:0045944] -H0YBB6 unreviewed H0YBB6_HUMAN Nuclear receptor coactivator 2 NCOA2 positive regulation of transcription by RNA polymerase II [GO:0045944] -H0YN25 unreviewed H0YN25_HUMAN ISL LIM homeobox 2 ISL2 neuron fate specification [GO:0048665]; positive regulation of transcription by RNA polymerase II [GO:0045944] -H0YNP4 unreviewed H0YNP4_HUMAN Interferon regulatory factor 9 IRF9 positive regulation of transcription by RNA polymerase II [GO:0045944] -H3BNR1 unreviewed H3BNR1_HUMAN BORCS8-MEF2B readthrough BORCS8-MEF2B animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -I0J7B9 unreviewed I0J7B9_HUMAN Mediator of RNA polymerase II transcription subunit 19 (Mediator complex subunit 19) MED19AS MED19 positive regulation of transcription by RNA polymerase II [GO:0045944] -K0KVU2 unreviewed K0KVU2_HUMAN Yes-associated protein isoform 9 YAP1 hippo signaling [GO:0035329]; positive regulation of transcription by RNA polymerase II [GO:0045944] -K4DIA4 unreviewed K4DIA4_HUMAN Interferon regulatory factor 2 IRF2 positive regulation of transcription by RNA polymerase II [GO:0045944] -K4DIA5 unreviewed K4DIA5_HUMAN Interferon regulatory factor 2 IRF2 positive regulation of transcription by RNA polymerase II [GO:0045944] -L0B1R1 unreviewed L0B1R1_HUMAN RE1-silencing transcription factor variant E1b/E2c/E2j/E3/E4 REST negative regulation of neuron differentiation [GO:0045665]; positive regulation of transcription by RNA polymerase II [GO:0045944] -L0B1U4 unreviewed L0B1U4_HUMAN RE1-silencing transcription factor variant E1a/E2/E4 REST negative regulation of neuron differentiation [GO:0045665]; positive regulation of transcription by RNA polymerase II [GO:0045944] -L0B2U7 unreviewed L0B2U7_HUMAN RE1-silencing transcription factor variant E1a/E2/E3/E4c REST negative regulation of neuron differentiation [GO:0045665]; positive regulation of transcription by RNA polymerase II [GO:0045944] -L0B2V3 unreviewed L0B2V3_HUMAN RE1-silencing transcription factor variant E1c/E2g/E3/E4 REST negative regulation of neuron differentiation [GO:0045665]; positive regulation of transcription by RNA polymerase II [GO:0045944] -L0B3N3 unreviewed L0B3N3_HUMAN RE1-silencing transcription factor variant E1a/E2a/E2k (RE1-silencing transcription factor variant E1b/E2a/E2k) (RE1-silencing transcription factor variant E1c/E2a/E2k) REST negative regulation of neuron differentiation [GO:0045665]; positive regulation of transcription by RNA polymerase II [GO:0045944] -L0B3Y5 unreviewed L0B3Y5_HUMAN RE1-silencing transcription factor variant E1a/E2/E3/N3c/E4 (RE1-silencing transcription factor variant E1b/E2/E3/N3c/E4) REST negative regulation of neuron differentiation [GO:0045665]; positive regulation of transcription by RNA polymerase II [GO:0045944] -L0B3Z2 unreviewed L0B3Z2_HUMAN RE1-silencing transcription factor variant E1a/E2/E3/N3a/E4i REST negative regulation of neuron differentiation [GO:0045665]; positive regulation of transcription by RNA polymerase II [GO:0045944] -L8B567 unreviewed L8B567_HUMAN ATL1-gamma zinc finger protein (B-cell CLL/lymphoma 11B (Zinc finger protein), isoform CRA_a) ATL1-gamma BCL11B hCG_1657560 positive regulation of transcription by RNA polymerase II [GO:0045944] -L8B8F6 unreviewed L8B8F6_HUMAN ATL1 zinc finger protein (ATL1-beta zinc finger protein) ATL1 ATL1-beta positive regulation of transcription by RNA polymerase II [GO:0045944] -M0QYX3 unreviewed M0QYX3_HUMAN Interferon regulatory factor 3 IRF3 positive regulation of transcription by RNA polymerase II [GO:0045944] -M0QZB7 unreviewed M0QZB7_HUMAN Interferon regulatory factor 3 IRF3 positive regulation of transcription by RNA polymerase II [GO:0045944] -M0R0R9 unreviewed M0R0R9_HUMAN Transcription initiation factor IIF subunit alpha GTF2F1 positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; transcription initiation at RNA polymerase II promoter [GO:0006367] -M0R0Z3 unreviewed M0R0Z3_HUMAN Transcription initiation factor IIF subunit alpha GTF2F1 positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; transcription initiation at RNA polymerase II promoter [GO:0006367] -M0R205 unreviewed M0R205_HUMAN Interferon regulatory factor 3 IRF3 positive regulation of transcription by RNA polymerase II [GO:0045944] -M0R2M9 unreviewed M0R2M9_HUMAN Achaete-scute family bHLH transcription factor 5 ASCL5 ameloblast differentiation [GO:0036305]; amelogenesis [GO:0097186] -M0R3C2 unreviewed M0R3C2_HUMAN Interferon regulatory factor 3 IRF3 positive regulation of transcription by RNA polymerase II [GO:0045944] -M0R3E9 unreviewed M0R3E9_HUMAN Interferon regulatory factor 3 IRF3 positive regulation of transcription by RNA polymerase II [GO:0045944] -M9RSF4 unreviewed M9RSF4_HUMAN Interferon regulatory factor 7 IRF7 positive regulation of transcription by RNA polymerase II [GO:0045944] -N0GW17 unreviewed N0GW17_HUMAN Nuclear receptor interacting protein 1 NRIP1_var2 cellular response to estradiol stimulus [GO:0071392]; circadian regulation of gene expression [GO:0032922]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -N0GWB6 unreviewed N0GWB6_HUMAN Nuclear receptor interacting protein 1 NRIP1_var1 cellular response to estradiol stimulus [GO:0071392]; circadian regulation of gene expression [GO:0032922]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -O75780 unreviewed O75780_HUMAN Peroxisome proliferator-activated receptor alpha cell differentiation [GO:0030154]; fatty acid metabolic process [GO:0006631]; hormone-mediated signaling pathway [GO:0009755]; negative regulation of cholesterol storage [GO:0010887]; negative regulation of inflammatory response [GO:0050728]; positive regulation of fatty acid metabolic process [GO:0045923]; positive regulation of transcription by RNA polymerase II [GO:0045944] -O95129 unreviewed O95129_HUMAN SOX-25 protein SOX25 anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -O95130 unreviewed O95130_HUMAN SOX-26 protein SOX26 anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355] -O95131 unreviewed O95131_HUMAN SOX-27 protein SOX27 anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q05BP1 unreviewed Q05BP1_HUMAN Phosphatase and actin regulator MKL2 positive regulation of transcription by RNA polymerase II [GO:0045944]; smooth muscle cell differentiation [GO:0051145] -Q05BZ9 unreviewed Q05BZ9_HUMAN BRCA1 protein BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q05CF7 unreviewed Q05CF7_HUMAN Cyclin-C CCNC positive regulation of transcription by RNA polymerase II [GO:0045944] -Q05CH0 unreviewed Q05CH0_HUMAN SOX11 protein SOX11 anatomical structure morphogenesis [GO:0009653]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron differentiation [GO:0030182] -Q0IIN7 unreviewed Q0IIN7_HUMAN Nuclear receptor coactivator NCOA3 cellular response to hormone stimulus [GO:0032870]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q14663 unreviewed Q14663_HUMAN H-2K binding factor-2 KBF2 pKBF-2 Notch signaling pathway [GO:0007219] -Q15200 unreviewed Q15200_HUMAN Prothymosin alpha negative regulation of apoptotic process [GO:0043066]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q15202 unreviewed Q15202_HUMAN Prothymosin alpha negative regulation of apoptotic process [GO:0043066]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q15203 unreviewed Q15203_HUMAN Prothymosin alpha negative regulation of apoptotic process [GO:0043066]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q15204 unreviewed Q15204_HUMAN Prothymosin alpha negative regulation of apoptotic process [GO:0043066]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q15254 unreviewed Q15254_HUMAN Prothymosin alpha PTMA negative regulation of apoptotic process [GO:0043066]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q15505 unreviewed Q15505_HUMAN SoxB protein soxB anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q1JQ81 unreviewed Q1JQ81_HUMAN B-cell CLL/lymphoma 9 BCL9 canonical Wnt signaling pathway [GO:0060070]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q2T9L5 unreviewed Q2T9L5_HUMAN SOX17 protein SOX17 angiogenesis [GO:0001525]; heart development [GO:0007507]; vasculogenesis [GO:0001570] -Q32MA5 unreviewed Q32MA5_HUMAN Zinc finger protein, multitype 2 ZFPM2 anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; heart development [GO:0007507]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q32ND9 unreviewed Q32ND9_HUMAN IkappaB kinase (EC 2.7.11.10) IKBKB positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of phosphorylation [GO:0042325]; regulation of protein modification process [GO:0031399]; tumor necrosis factor-mediated signaling pathway [GO:0033209] -Q4LE66 unreviewed Q4LE66_HUMAN MEF2D variant protein MEF2D variant protein animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q4V348 reviewed Z658B_HUMAN Zinc finger protein 658B ZNF658B regulation of transcription by RNA polymerase II [GO:0006357] -Q52M88 unreviewed Q52M88_HUMAN Tumor necrosis factor (Ligand) superfamily, member 8 (Tumor necrosis factor ligand 3A) (cDNA, FLJ94189, Homo sapiens tumor necrosis factor (ligand) superfamily, member 8(TNFSF8), mRNA) TNFSF8 TNLG3A hCG_29853 CD8-positive, alpha-beta T cell differentiation [GO:0043374]; defense response to Gram-positive bacterium [GO:0050830]; immune response [GO:0006955]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q52MY1 unreviewed Q52MY1_HUMAN Sex-determining region Y protein (Testis-determining factor) SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -Q52MY2 unreviewed Q52MY2_HUMAN Sex-determining region Y protein (Testis-determining factor) SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -Q53EU2 unreviewed Q53EU2_HUMAN GATA binding protein 6 variant anatomical structure morphogenesis [GO:0009653]; cell fate commitment [GO:0045165]; epithelial cell differentiation [GO:0030855]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; system development [GO:0048731] -Q53SS8 unreviewed Q53SS8_HUMAN Epididymis secretory protein Li 85 (Poly(RC) binding protein 1) PCBP1 HEL-S-85 hCG_1776997 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q562E6 unreviewed Q562E6_HUMAN Inhibitor of nuclear factor kappa-B kinase subunit alpha (EC 2.7.11.10) (Nuclear factor NF-kappa-B inhibitor kinase alpha) CHUK positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; tumor necrosis factor-mediated signaling pathway [GO:0033209] -Q569F6 unreviewed Q569F6_HUMAN Nuclear receptor coactivator NCOA3 cellular response to hormone stimulus [GO:0032870]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q569J4 unreviewed Q569J4_HUMAN NCOA2 protein NCOA2 cellular response to hormone stimulus [GO:0032870]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q58EY0 unreviewed Q58EY0_HUMAN RAR related orphan receptor B isoform 1 (RAR-related orphan receptor B) (cDNA, FLJ93970, Homo sapiens RAR-related orphan receptor B (RORB), mRNA) RORB NR1F2 ROR-BETA RZRB hCG_27313 negative regulation of osteoblast differentiation [GO:0045668]; regulation of circadian rhythm [GO:0042752]; retinal cone cell development [GO:0046549]; retinal rod cell development [GO:0046548] -Q58F26 unreviewed Q58F26_HUMAN DHX9 protein DHX9 positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of mRNA processing [GO:0050684] -Q59EE8 unreviewed Q59EE8_HUMAN Nuclear receptor coactivator 3 isoform a variant cellular response to hormone stimulus [GO:0032870]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q59EJ8 unreviewed Q59EJ8_HUMAN Histone acetyltransferase (EC 2.3.1.48) DNA repair [GO:0006281]; negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q59EM0 unreviewed Q59EM0_HUMAN Oligodendrocyte transcription factor 1 variant axon development [GO:0061564]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sensory organ development [GO:0007423] -Q59F45 unreviewed Q59F45_HUMAN Mothers against decapentaplegic homolog (MAD homolog) (Mothers against DPP homolog) (SMAD family member) activin receptor signaling pathway [GO:0032924]; anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; positive regulation of transcription by RNA polymerase II [GO:0045944]; SMAD protein signal transduction [GO:0060395]; transforming growth factor beta receptor signaling pathway [GO:0007179] -Q59FG6 unreviewed Q59FG6_HUMAN [histone H3]-lysine(4) N-methyltransferase (EC 2.1.1.364) positive regulation of transcription by RNA polymerase II [GO:0045944] -Q59FK5 unreviewed Q59FK5_HUMAN Homeobox protein Meis3 variant animal organ morphogenesis [GO:0009887]; brain development [GO:0007420]; embryonic pattern specification [GO:0009880]; eye development [GO:0001654]; positive regulation of cell population proliferation [GO:0008284] -Q59FW3 unreviewed Q59FW3_HUMAN Thyroid hormone receptor alpha (Nuclear receptor subfamily 1 group A member 1) cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; retinoic acid receptor signaling pathway [GO:0048384]; thyroid hormone mediated signaling pathway [GO:0002154] -Q59FW6 unreviewed Q59FW6_HUMAN Elongation factor, RNA polymerase II, 2 variant positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; snRNA transcription by RNA polymerase II [GO:0042795]; transcription elongation by RNA polymerase II [GO:0006368] -Q59FZ6 unreviewed Q59FZ6_HUMAN SWI/SNF-related matrix-associated actin-dependent regulator of chromatin a4 variant positive regulation of transcription by RNA polymerase II [GO:0045944] -Q59G24 unreviewed Q59G24_HUMAN Activated RNA polymerase II transcriptional coactivator p15 (SUB1 homolog) positive regulation of transcription initiation by RNA polymerase II [GO:0060261] -Q59GL8 unreviewed Q59GL8_HUMAN Orphan nuclear receptor NR1D2 variant cell differentiation [GO:0030154]; hormone-mediated signaling pathway [GO:0009755]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q59GL9 unreviewed Q59GL9_HUMAN IkappaB kinase (EC 2.7.11.10) positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of phosphorylation [GO:0042325]; regulation of protein modification process [GO:0031399]; tumor necrosis factor-mediated signaling pathway [GO:0033209] -Q59GT1 unreviewed Q59GT1_HUMAN Inhibitor of nuclear factor kappa-B kinase subunit alpha (EC 2.7.11.10) (Nuclear factor NF-kappa-B inhibitor kinase alpha) positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; tumor necrosis factor-mediated signaling pathway [GO:0033209] -Q59HG4 unreviewed Q59HG4_HUMAN Elongation factor RNA polymerase II variant positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; snRNA transcription by RNA polymerase II [GO:0042795]; transcription elongation by RNA polymerase II [GO:0006368] -Q5FBX3 unreviewed Q5FBX3_HUMAN Interferon regulatory factor 1 IRF1 immune system process [GO:0002376]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q5IRN4 unreviewed Q5IRN4_HUMAN Myocyte enhancer factor 2D/deleted in azoospermia associated protein 1 fusion protein MEF2D/DAZAP1 fusion cell differentiation [GO:0030154]; heart development [GO:0007507]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q5U0N9 unreviewed Q5U0N9_HUMAN Nuclear receptor subfamily 1, group H, member 3 cell differentiation [GO:0030154]; lipid metabolic process [GO:0006629]; negative regulation of inflammatory response [GO:0050728]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q5U0R0 unreviewed Q5U0R0_HUMAN Neurogenic differentiation factor axon development [GO:0061564]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sensory organ development [GO:0007423] -Q5XLQ3 unreviewed Q5XLQ3_HUMAN NEDD4-2 minus WW2,3 variant NEDD4L hippo signaling [GO:0035329]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q68CS2 unreviewed Q68CS2_HUMAN Uncharacterized protein DKFZp781P1796 DKFZp781P1796 cellular response to insulin stimulus [GO:0032869]; fatty acid catabolic process [GO:0009062]; positive regulation of transcription by RNA polymerase II [GO:0045944]; triglyceride biosynthetic process [GO:0019432] -Q68CY8 unreviewed Q68CY8_HUMAN Uncharacterized protein DKFZp686D1580 DKFZp686D1580 cell differentiation [GO:0030154]; lipid metabolic process [GO:0006629]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q68DS8 unreviewed Q68DS8_HUMAN Uncharacterized protein DKFZp686J10186 DKFZp686J10186 activin receptor signaling pathway [GO:0032924]; anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; positive regulation of transcription by RNA polymerase II [GO:0045944]; SMAD protein signal transduction [GO:0060395]; transforming growth factor beta receptor signaling pathway [GO:0007179] -Q6E433 unreviewed Q6E433_HUMAN Activated RNA polymerase II transcriptional coactivator p15 (SUB1 homolog) positive regulation of transcription initiation by RNA polymerase II [GO:0060261] -Q6GZ75 unreviewed Q6GZ75_HUMAN Nuclear receptor subfamily 1 group I member 3 (Constitutive androstane receptor) NR1I3 cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q6I9S1 unreviewed Q6I9S1_HUMAN NR1D2 protein NR1D2 cell differentiation [GO:0030154]; hormone-mediated signaling pathway [GO:0009755]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q6IA19 unreviewed Q6IA19_HUMAN Ankyrin repeat and SOCS box protein 8 ASB8 intracellular signal transduction [GO:0035556]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein ubiquitination [GO:0016567] -Q6IBK5 unreviewed Q6IBK5_HUMAN Transcription initiation factor IIF subunit alpha GTF2F1 positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; transcription initiation at RNA polymerase II promoter [GO:0006367] -Q6IBU6 unreviewed Q6IBU6_HUMAN NR1H2 protein NR1H2 cell differentiation [GO:0030154]; lipid metabolic process [GO:0006629]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q6ICP0 unreviewed Q6ICP0_HUMAN Cyclic AMP-dependent transcription factor ATF-4 (Activating transcription factor 4) ATF4 regulation of apoptotic process [GO:0042981] -Q6IPQ7 unreviewed Q6IPQ7_HUMAN NR1H4 protein NR1H4 cell differentiation [GO:0030154]; negative regulation of inflammatory response [GO:0050728]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q6ISE7 unreviewed Q6ISE7_HUMAN ATOH1 protein ATOH1 axon development [GO:0061564]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sensory organ development [GO:0007423] -Q6LDR0 unreviewed Q6LDR0_HUMAN Thyroid hormone receptor alpha (Nuclear receptor subfamily 1 group A member 1) cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; retinoic acid receptor signaling pathway [GO:0048384]; thyroid hormone mediated signaling pathway [GO:0002154] -Q6P0Y2 unreviewed Q6P0Y2_HUMAN FOXH1 protein FOXH1 transforming growth factor beta receptor signaling pathway [GO:0007179] -Q6PIA1 unreviewed Q6PIA1_HUMAN [histone H3]-lysine(4) N-methyltransferase (EC 2.1.1.364) MLL2 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q6PJ73 unreviewed Q6PJ73_HUMAN DPF1 protein DPF1 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q6PJK6 unreviewed Q6PJK6_HUMAN DHX9 protein DHX9 positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of mRNA processing [GO:0050684] -Q71MG4 unreviewed Q71MG4_HUMAN Prostate tumor-overexpressed gene 1 protein FP3184 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q71U35 unreviewed Q71U35_HUMAN Transcriptional enhancer factor TEF-5 embryonic organ development [GO:0048568]; hippo signaling [GO:0035329]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q75MN6 unreviewed Q75MN6_HUMAN Uncharacterized protein MLL3 MLL3 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q75MY6 unreviewed Q75MY6_HUMAN histone acetyltransferase (EC 2.3.1.48) CREB-binding protein positive regulation of transcription by RNA polymerase II [GO:0045944] -Q7KYU6 unreviewed Q7KYU6_HUMAN RING-type E3 ubiquitin transferase BRCA1 BRCA1 chordate embryonic development [GO:0043009]; dosage compensation by inactivation of X chromosome [GO:0009048]; double-strand break repair via homologous recombination [GO:0000724]; negative regulation of fatty acid biosynthetic process [GO:0045717]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q7KZ52 unreviewed Q7KZ52_HUMAN Prothymosin alpha PTMA negative regulation of apoptotic process [GO:0043066]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q7Z2W0 unreviewed Q7Z2W0_HUMAN Uncharacterized protein DKFZp686P04237 DKFZp686P04237 cell differentiation [GO:0030154]; negative regulation of inflammatory response [GO:0050728]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q7Z4L3 unreviewed Q7Z4L3_HUMAN Cyclin-C CCNC hCG_1757197 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q7Z4R6 unreviewed Q7Z4R6_HUMAN Prothymosin alpha negative regulation of apoptotic process [GO:0043066]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q7Z4W9 unreviewed Q7Z4W9_HUMAN Neurogenic differentiation factor axon development [GO:0061564]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sensory organ development [GO:0007423] -Q7Z5C4 unreviewed Q7Z5C4_HUMAN Sex-determining region Y protein (Testis-determining factor) SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -Q7Z5C5 unreviewed Q7Z5C5_HUMAN Sex-determining region Y protein (Testis-determining factor) SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -Q7Z5C6 unreviewed Q7Z5C6_HUMAN Sex-determining region Y protein (Testis-determining factor) SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -Q7Z5C8 unreviewed Q7Z5C8_HUMAN Sex-determining region Y protein (Testis-determining factor) SRY anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sex differentiation [GO:0007548] -Q7Z6C1 unreviewed Q7Z6C1_HUMAN histone acetyltransferase (EC 2.3.1.48) EP300 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q86T74 unreviewed Q86T74_HUMAN Uncharacterized protein DKFZp451O0517 DKFZp451O0517 hippo signaling [GO:0035329]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q86TF7 unreviewed Q86TF7_HUMAN Homeobox C4 HOXC4 anterior/posterior pattern specification [GO:0009952]; embryonic skeletal system morphogenesis [GO:0048704]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q86YS2 unreviewed Q86YS2_HUMAN Prothymosin alpha negative regulation of apoptotic process [GO:0043066]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q8IW09 unreviewed Q8IW09_HUMAN ZNF335 protein ZNF335 brain development [GO:0007420]; positive regulation of neurogenesis [GO:0050769]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q8IYC6 unreviewed Q8IYC6_HUMAN Protein max (Myc-associated factor X) MAX positive regulation of transcription by RNA polymerase II [GO:0045944] -Q8IYR9 unreviewed Q8IYR9_HUMAN Neurogenic differentiation factor NEUROD6 axon development [GO:0061564]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sensory organ development [GO:0007423] -Q8IZZ2 unreviewed Q8IZZ2_HUMAN Leukemogenic homolog protein WUGSC:H_NH0444B04.1 angiogenesis [GO:0001525]; animal organ morphogenesis [GO:0009887]; brain development [GO:0007420]; embryonic pattern specification [GO:0009880]; eye development [GO:0001654]; hemopoiesis [GO:0030097]; positive regulation of cell population proliferation [GO:0008284] -Q8TAL0 unreviewed Q8TAL0_HUMAN PPARGC1B protein PPARGC1B intracellular estrogen receptor signaling pathway [GO:0030520]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q8TAX8 unreviewed Q8TAX8_HUMAN Protein max (Myc-associated factor X) MAX positive regulation of transcription by RNA polymerase II [GO:0045944] -Q8TBK9 unreviewed Q8TBK9_HUMAN Prothymosin alpha PTMA negative regulation of apoptotic process [GO:0043066]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q8TCW1 unreviewed Q8TCW1_HUMAN MEIS1-related protein 2 MEIS3 animal organ morphogenesis [GO:0009887]; brain development [GO:0007420]; embryonic pattern specification [GO:0009880]; eye development [GO:0001654]; positive regulation of cell population proliferation [GO:0008284] -Q96F54 unreviewed Q96F54_HUMAN RELA protein RELA canonical NF-kappaB signal transduction [GO:0007249]; cellular response to lipopolysaccharide [GO:0071222]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; non-canonical NF-kappaB signal transduction [GO:0038061]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to cytokine [GO:0034097] -Q96G15 unreviewed Q96G15_HUMAN TEAD3 protein TEAD3 embryonic organ development [GO:0048568]; hippo signaling [GO:0035329]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q96IR2 reviewed ZN845_HUMAN Zinc finger protein 845 ZNF845 regulation of transcription by RNA polymerase II [GO:0006357] -Q99419 unreviewed Q99419_HUMAN ICSAT transcription factor immune system process [GO:0002376]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of interleukin-10 production [GO:0032733]; positive regulation of interleukin-13 production [GO:0032736]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of interleukin-4 production [GO:0032753]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355] -Q9H836 unreviewed Q9H836_HUMAN SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily B member 1 chromatin remodeling [GO:0006338]; positive regulation of pseudohyphal growth by positive regulation of transcription from RNA polymerase II promoter [GO:1900461] -Q9HB64 unreviewed Q9HB64_HUMAN Interferon regulatory factor-7H immune system process [GO:0002376]; inflammatory response [GO:0006954]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to virus [GO:0009615]; transcription initiation at RNA polymerase II promoter [GO:0006367] -Q9HCA4 unreviewed Q9HCA4_HUMAN Myogenin MYF4 positive regulation of myoblast differentiation [GO:0045663]; positive regulation of skeletal muscle fiber development [GO:0048743]; positive regulation of transcription by RNA polymerase II [GO:0045944]; skeletal muscle cell differentiation [GO:0035914] -Q9NPQ0 unreviewed Q9NPQ0_HUMAN FOG2, frind of GATA2 anatomical structure morphogenesis [GO:0009653]; cell differentiation [GO:0030154]; heart development [GO:0007507]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9NW35 unreviewed Q9NW35_HUMAN Akirin-2 positive regulation of innate immune response [GO:0045089]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein transport [GO:0015031] -Q9NYD3 unreviewed Q9NYD3_HUMAN Prothymosin alpha PTMA negative regulation of apoptotic process [GO:0043066]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9UMZ1 unreviewed Q9UMZ1_HUMAN Prothymosin alpha negative regulation of apoptotic process [GO:0043066]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9UN21 unreviewed Q9UN21_HUMAN Androgen receptor (Dihydrotestosterone receptor) (Nuclear receptor subfamily 3 group C member 4) androgen receptor signaling pathway [GO:0030521]; male gonad development [GO:0008584]; positive regulation of transcription by RNA polymerase II [GO:0045944] -R9UV10 unreviewed R9UV10_HUMAN GATA-1 anatomical structure morphogenesis [GO:0009653]; cell fate commitment [GO:0045165]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; system development [GO:0048731] -T1WRW3 unreviewed T1WRW3_HUMAN Vitamin D receptor VDR cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -T1WSH6 unreviewed T1WSH6_HUMAN Vitamin D receptor VDR cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -T1WSQ6 unreviewed T1WSQ6_HUMAN Vitamin D receptor VDR cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -U5XMJ5 unreviewed U5XMJ5_HUMAN REST/EAPP fusion protein negative regulation of neuron differentiation [GO:0045665]; positive regulation of transcription by RNA polymerase II [GO:0045944] -V9H027 unreviewed V9H027_HUMAN MEN protein MEN positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; snRNA transcription by RNA polymerase II [GO:0042795]; transcription elongation by RNA polymerase II [GO:0006368] -V9HVW6 unreviewed V9HVW6_HUMAN Prothymosin alpha negative regulation of apoptotic process [GO:0043066]; positive regulation of transcription by RNA polymerase II [GO:0045944] -V9HVW7 unreviewed V9HVW7_HUMAN Prothymosin alpha negative regulation of apoptotic process [GO:0043066]; positive regulation of transcription by RNA polymerase II [GO:0045944] -V9HW24 unreviewed V9HW24_HUMAN Epididymis secretory protein Li 73 HEL-S-73 positive regulation of RNA polymerase II transcription preinitiation complex assembly [GO:0045899]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161] -W0Z7M9 unreviewed W0Z7M9_HUMAN Mkl1 variant 1 Mkl1_S (Myocardin related transcription factor A) MRTFA mkl1 positive regulation of transcription by RNA polymerase II [GO:0045944] -W6JGS6 unreviewed W6JGS6_HUMAN Thyroid hormone receptor beta THRB cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; retinoic acid receptor signaling pathway [GO:0048384]; thyroid hormone mediated signaling pathway [GO:0002154] -X2BQ60 unreviewed X2BQ60_HUMAN Down-regulated in gastrointestinal cancer protein DGIC brown fat cell differentiation [GO:0050873]; defense response to bacterium [GO:0042742]; negative regulation of apoptotic process [GO:0043066]; negative regulation of multicellular organism growth [GO:0040015]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of transcription by RNA polymerase II [GO:0045944]; response to cold [GO:0009409]; transcription by RNA polymerase II [GO:0006366] -X5CHT4 unreviewed X5CHT4_HUMAN Interferon regulatory factor IRF-1 immune system process [GO:0002376]; positive regulation of transcription by RNA polymerase II [GO:0045944] -X5D3F6 unreviewed X5D3F6_HUMAN Interferon regulatory factor IRF1 IRF-1 positive regulation of transcription by RNA polymerase II [GO:0045944] -X5DNC5 unreviewed X5DNC5_HUMAN Androgen receptor (Dihydrotestosterone receptor) (Nuclear receptor subfamily 3 group C member 4) AR androgen receptor signaling pathway [GO:0030521]; male gonad development [GO:0008584]; positive regulation of transcription by RNA polymerase II [GO:0045944] -X5DQN9 unreviewed X5DQN9_HUMAN Aryl-hydrocarbon receptor nuclear translocator 2 isoform D ARNT2 central nervous system development [GO:0007417]; in utero embryonic development [GO:0001701] -X6RED3 unreviewed X6RED3_HUMAN Four and a half LIM domains protein 5 FHL5 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A087X185 unreviewed A0A087X185_HUMAN Recombination signal binding protein for immunoglobulin kappa J region like RBPJL -A0A0A1HAV8 unreviewed A0A0A1HAV8_HUMAN A-myb protein A-myb mitotic cell cycle [GO:0000278]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A0D9SET2 unreviewed A0A0D9SET2_HUMAN Myocyte enhancer factor 2C MEF2C animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A0G2USB5 unreviewed A0A0G2USB5_HUMAN Interferon regulatory factor 5 IRF5 immune system process [GO:0002376]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A0G2UUJ1 unreviewed A0A0G2UUJ1_HUMAN Interferon regulatory factor 5 IRF5 immune system process [GO:0002376]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A0S2Z5N1 unreviewed A0A0S2Z5N1_HUMAN Cell division cycle 73 Paf1/RNA polymerase II complex component-like protein isoform 2 CDC73 cell division [GO:0051301]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; transcription elongation by RNA polymerase II [GO:0006368] -A0A127AXF0 unreviewed A0A127AXF0_HUMAN Retinal homeobox protein Rx RAX positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A140VJV0 unreviewed A0A140VJV0_HUMAN Testicular tissue protein Li 177 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A158RFU3 unreviewed A0A158RFU3_HUMAN Parathymosin PTMS hCG_25932 negative regulation of apoptotic process [GO:0043066]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A1P8DYP2 unreviewed A0A1P8DYP2_HUMAN Interferon regulatory factor 7G isoform immune system process [GO:0002376]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A2R8YHF3 unreviewed A0A2R8YHF3_HUMAN Interferon regulatory factor 6 IRF6 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A345GP07 unreviewed A0A345GP07_HUMAN Vitamin D receptor cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A3B3ISC0 unreviewed A0A3B3ISC0_HUMAN Interferon regulatory factor 7 IRF7 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A3B3ISS4 unreviewed A0A3B3ISS4_HUMAN Interferon regulatory factor 7 IRF7 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A3S6YZ73 unreviewed A0A3S6YZ73_HUMAN KMT2A/MAML2 fusion protein KMT2A MAML2 fusion positive regulation of transcription of Notch receptor target [GO:0007221] -A0A411HBF4 unreviewed A0A411HBF4_HUMAN WWOX isoform 5 WWOX hippo signaling [GO:0035329]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A411HBG3 unreviewed A0A411HBG3_HUMAN WWOX isoform 4 WWOX hippo signaling [GO:0035329]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A411HBG5 unreviewed A0A411HBG5_HUMAN WWOX isoform 8 WWOX hippo signaling [GO:0035329]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A7P0T7Z3 unreviewed A0A7P0T7Z3_HUMAN Recombination signal binding protein for immunoglobulin kappa J region RBPJ -A0A7P0T821 unreviewed A0A7P0T821_HUMAN Recombination signal binding protein for immunoglobulin kappa J region RBPJ -A0A7P0T848 unreviewed A0A7P0T848_HUMAN Recombination signal binding protein for immunoglobulin kappa J region RBPJ -A0A7P0T964 unreviewed A0A7P0T964_HUMAN Recombination signal binding protein for immunoglobulin kappa J region RBPJ -A0A7P0T9W9 unreviewed A0A7P0T9W9_HUMAN Recombination signal binding protein for immunoglobulin kappa J region RBPJ -A0A7P0TA33 unreviewed A0A7P0TA33_HUMAN Recombination signal binding protein for immunoglobulin kappa J region RBPJ -A0A7P0TAN4 unreviewed A0A7P0TAN4_HUMAN Uncharacterized protein LOC122539214 regulation of transcription by RNA polymerase II [GO:0006357] -A0A7P0TBJ4 unreviewed A0A7P0TBJ4_HUMAN Recombination signal binding protein for immunoglobulin kappa J region RBPJ Notch signaling pathway [GO:0007219] -A0A8Q3SIZ2 unreviewed A0A8Q3SIZ2_HUMAN Interferon regulatory factor 2 IRF2 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A8Q3SIZ8 unreviewed A0A8Q3SIZ8_HUMAN Interferon regulatory factor 2 IRF2 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A8Q3SJ00 unreviewed A0A8Q3SJ00_HUMAN Interferon regulatory factor 8 IRF8 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A8Q3SJ30 unreviewed A0A8Q3SJ30_HUMAN Interferon regulatory factor 2 IRF2 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A8Q3SJ42 unreviewed A0A8Q3SJ42_HUMAN Interferon regulatory factor 8 IRF8 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A8Q3SJ75 unreviewed A0A8Q3SJ75_HUMAN IRF tryptophan pentad repeat domain-containing protein positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A8Q3WL17 unreviewed A0A8Q3WL17_HUMAN Interferon regulatory factor 6 IRF6 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A8Q3WLL3 unreviewed A0A8Q3WLL3_HUMAN Interferon regulatory factor 4 IRF4 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A8V8TMJ8 unreviewed A0A8V8TMJ8_HUMAN Interferon regulatory factor 9 IRF9 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A8V8TMK5 unreviewed A0A8V8TMK5_HUMAN Interferon regulatory factor 9 IRF9 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A8V8TMN7 unreviewed A0A8V8TMN7_HUMAN Interferon regulatory factor 9 IRF9 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A8V8TMP0 unreviewed A0A8V8TMP0_HUMAN Interferon regulatory factor 9 IRF9 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A8V8TMP1 unreviewed A0A8V8TMP1_HUMAN Interferon regulatory factor 9 IRF9 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A8V8TMP6 unreviewed A0A8V8TMP6_HUMAN Interferon regulatory factor 9 IRF9 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A8V8TMQ7 unreviewed A0A8V8TMQ7_HUMAN Interferon regulatory factor 9 IRF9 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A8V8TN13 unreviewed A0A8V8TN13_HUMAN Interferon regulatory factor 9 IRF9 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A8V8TN47 unreviewed A0A8V8TN47_HUMAN Interferon regulatory factor 9 IRF9 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A8V8TP35 unreviewed A0A8V8TP35_HUMAN Interferon regulatory factor 9 IRF9 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A8V8TP43 unreviewed A0A8V8TP43_HUMAN Interferon regulatory factor 9 IRF9 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A8V8TP83 unreviewed A0A8V8TP83_HUMAN Interferon regulatory factor 9 IRF9 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A8V8TPD7 unreviewed A0A8V8TPD7_HUMAN Interferon regulatory factor 9 IRF9 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A8V8TPF1 unreviewed A0A8V8TPF1_HUMAN Interferon regulatory factor 9 IRF9 positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A8V8TPF5 unreviewed A0A8V8TPF5_HUMAN Interferon regulatory factor 9 IRF9 positive regulation of transcription by RNA polymerase II [GO:0045944] -A1L192 unreviewed A1L192_HUMAN Uncharacterized protein positive regulation of transcription by RNA polymerase II [GO:0045944] -A2NFR4 unreviewed A2NFR4_HUMAN Hin-2 protein Hin-2 cellular response to hormone stimulus [GO:0032870]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A2VCM6 unreviewed A2VCM6_HUMAN PTMS protein PTMS negative regulation of apoptotic process [GO:0043066]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A3FFT2 unreviewed A3FFT2_HUMAN MYST3/NCOA2 fusion protein MYST3/NCOA2 fusion cellular response to hormone stimulus [GO:0032870]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A4D1V8 unreviewed A4D1V8_HUMAN Similar to sequence-specific single-stranded-DNA-binding protein LOC401327 tcag7.1045 positive regulation of transcription by RNA polymerase II [GO:0045944] -A5H1S5 unreviewed A5H1S5_HUMAN MLL/MAML2 fusion protein MAML2 fusion MLL positive regulation of transcription of Notch receptor target [GO:0007221] -A5H1S6 unreviewed A5H1S6_HUMAN MLL/MAML2 fusion protein MAML2 fusion MLL positive regulation of transcription of Notch receptor target [GO:0007221] -A7LNP1 unreviewed A7LNP1_HUMAN CRTC3/MAML2 fusion protein CRTC3/MAML2 fusion positive regulation of transcription by RNA polymerase II [GO:0045944]; protein homotetramerization [GO:0051289] -A8K3H7 unreviewed A8K3H7_HUMAN cDNA FLJ77831, highly similar to Homo sapiens leucine-zipper protein regulation of apoptotic process [GO:0042981] -A8K720 unreviewed A8K720_HUMAN cDNA FLJ75040, highly similar to Homo sapiens serum response factor-related protein, RSRFC9 animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A8K9Y8 unreviewed A8K9Y8_HUMAN cDNA FLJ77442, highly similar to Homo sapiens grainyhead-like 2 (Drosophila), mRNA brain development [GO:0007420]; neural tube development [GO:0021915] -A8KA50 unreviewed A8KA50_HUMAN cDNA FLJ78617 DNA damage checkpoint signaling [GO:0000077]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A8KAN5 unreviewed A8KAN5_HUMAN cDNA FLJ75097, highly similar to Homo sapiens upstream binding protein 1 (LBP-1a) (UBP1), mRNA -A9LSF4 unreviewed A9LSF4_HUMAN IRF-5 variant 12 immune system process [GO:0002376]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A9LSF6 unreviewed A9LSF6_HUMAN IRF-5 variant 12 immune system process [GO:0002376]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B1AJU4 unreviewed B1AJU4_HUMAN Interferon regulatory factor 6 IRF6 positive regulation of transcription by RNA polymerase II [GO:0045944] -B2R631 unreviewed B2R631_HUMAN LIM domain only protein 3 positive regulation of transcription by RNA polymerase II [GO:0045944] -B2R762 unreviewed B2R762_HUMAN cDNA, FLJ93300, highly similar to Homo sapiens interferon regulatory factor 6 (IRF6), mRNA immune system process [GO:0002376]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B2R8V7 unreviewed B2R8V7_HUMAN cDNA, FLJ94082, highly similar to Homo sapiens interferon consensus sequence binding protein 1(ICSBP1), mRNA immune system process [GO:0002376]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B2R924 unreviewed B2R924_HUMAN cDNA, FLJ94175 positive regulation of transcription by RNA polymerase II [GO:0045944] -B2RAP3 unreviewed B2RAP3_HUMAN cDNA, FLJ95034, highly similar to Homo sapiens neurogenin 1 (NEUROG1), mRNA axon development [GO:0061564]; forebrain development [GO:0030900]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sensory organ development [GO:0007423] -B2RAV0 unreviewed B2RAV0_HUMAN cDNA, FLJ95135 positive regulation of transcription by RNA polymerase II [GO:0045944] -B2RBQ4 unreviewed B2RBQ4_HUMAN cDNA, FLJ95632, Homo sapiens ankyrin repeat domain 2 (stretch responsive muscle)(ANKRD2), mRNA positive regulation of transcription by RNA polymerase II [GO:0045944] -B2RG49 unreviewed B2RG49_HUMAN Zinc finger and BTB domain containing 7C ZBTB7C positive regulation of fat cell differentiation [GO:0045600]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B3KN18 unreviewed B3KN18_HUMAN cDNA FLJ13216 fis, clone NT2RP4001529, highly similar to Upstream-binding protein 1 -B3KPL9 unreviewed B3KPL9_HUMAN cDNA FLJ31930 fis, clone NT2RP7006162, weakly similar to ZINC FINGER PROTEIN MFG-3 positive regulation of transcription by RNA polymerase II [GO:0045944] -B3KQX0 unreviewed B3KQX0_HUMAN cDNA FLJ33228 fis, clone ASTRO2001122, highly similar to Zinc finger protein 64, isoforms 1 and 2 positive regulation of transcription by RNA polymerase II [GO:0045944] -B3KR69 unreviewed B3KR69_HUMAN cDNA FLJ33762 fis, clone BRCOC2000152, highly similar to Diacylglycerol kinase iota positive regulation of transcription by RNA polymerase II [GO:0045944] -B3KRV8 unreviewed B3KRV8_HUMAN cDNA FLJ34970 fis, clone NTONG2005363, highly similar to Castor homolog 1 zinc finger protein positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of neuron differentiation [GO:0045664] -B3KSC0 unreviewed B3KSC0_HUMAN cDNA FLJ35972 fis, clone TESTI2013264, highly similar to GC-RICH SEQUENCE DNA-BINDING FACTOR HOMOLOG mRNA splicing, via spliceosome [GO:0000398]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B3KSR1 unreviewed B3KSR1_HUMAN cDNA FLJ36817 fis, clone ASTRO2004032 positive regulation of transcription by RNA polymerase II [GO:0045944] -B3KU15 unreviewed B3KU15_HUMAN cDNA FLJ39063 fis, clone NT2RP7014348, highly similar to Homo sapiens transducer of regulated cAMP response element-binding protein (CREB) 2 (TORC2), mRNA positive regulation of transcription by RNA polymerase II [GO:0045944] -B3KVM5 unreviewed B3KVM5_HUMAN cDNA FLJ16751 fis, clone BEAST2001444, highly similar to Orphan nuclear receptor PXR cell differentiation [GO:0030154]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B3KVT9 unreviewed B3KVT9_HUMAN cDNA FLJ41424 fis, clone BRHIP2003748, highly similar to Tumor suppressor p53-binding protein 1 DNA damage checkpoint signaling [GO:0000077]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B3KWS5 unreviewed B3KWS5_HUMAN cDNA FLJ43730 fis, clone TESTI1000390 positive regulation of transcription by RNA polymerase II [GO:0045944] -B3KX43 unreviewed B3KX43_HUMAN PAX-interacting protein 1 (PAX transactivation activation domain-interacting protein) positive regulation of transcription initiation by RNA polymerase II [GO:0060261] -B3KXK5 unreviewed B3KXK5_HUMAN cDNA FLJ45623 fis, clone BRTHA3027957, highly similar to MKL/myocardin-like protein 2 positive regulation of transcription by RNA polymerase II [GO:0045944]; smooth muscle cell differentiation [GO:0051145] -B3KY25 unreviewed B3KY25_HUMAN cDNA FLJ46670 fis, clone TRACH3008508, highly similar to GC-rich sequence DNA-binding factor homolog mRNA splicing, via spliceosome [GO:0000398]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DEQ6 unreviewed B4DEQ6_HUMAN PAX-interacting protein 1 (PAX transactivation activation domain-interacting protein) positive regulation of transcription initiation by RNA polymerase II [GO:0060261] -B4DG60 unreviewed B4DG60_HUMAN cDNA FLJ59620, highly similar to Homo sapiens calcium binding and coiled-coil domain 1 (CALCOCO1), mRNA positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DGL5 unreviewed B4DGL5_HUMAN LIM domain only protein 3 positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DI86 unreviewed B4DI86_HUMAN cDNA FLJ61271, highly similar to Transcriptional regulator ISGF3 subunit gamma immune system process [GO:0002376]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DKB9 unreviewed B4DKB9_HUMAN cDNA FLJ54085, highly similar to Homo sapiens calcium binding and coiled-coil domain 1 (CALCOCO1), mRNA positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DKK0 unreviewed B4DKK0_HUMAN cDNA FLJ52511, highly similar to Abhydrolase domain-containing protein 14B positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DL21 unreviewed B4DL21_HUMAN cDNA FLJ51630, highly similar to Nuclear receptor coactivator 3 cellular response to hormone stimulus [GO:0032870]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DL28 unreviewed B4DL28_HUMAN cDNA FLJ53801, highly similar to Grainyhead-like protein 2 brain development [GO:0007420]; neural tube development [GO:0021915] -B4DL71 unreviewed B4DL71_HUMAN cDNA FLJ51233, highly similar to RNA polymerase II elongation factor ELL2 positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; snRNA transcription by RNA polymerase II [GO:0042795] -B4DL88 unreviewed B4DL88_HUMAN cDNA FLJ52323, highly similar to Mastermind-like protein 3 (Mam-3) positive regulation of transcription of Notch receptor target [GO:0007221] -B4DLG1 unreviewed B4DLG1_HUMAN cDNA FLJ58376, highly similar to Grainyhead-like protein 1 -B4DLN8 unreviewed B4DLN8_HUMAN cDNA FLJ60671, highly similar to Interferon regulatory factor 5 immune system process [GO:0002376]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DPW8 unreviewed B4DPW8_HUMAN cDNA FLJ51272, highly similar to Nuclear receptor coactivator 2 cellular response to hormone stimulus [GO:0032870]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DR91 unreviewed B4DR91_HUMAN cDNA FLJ57570, highly similar to 26S protease regulatory subunit S10B positive regulation of RNA polymerase II transcription preinitiation complex assembly [GO:0045899]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161] -B4DSS0 unreviewed B4DSS0_HUMAN cDNA FLJ59300, highly similar to Homo sapiens peroxisome proliferative activated receptor, gamma, coactivator-related 1, mRNA positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DTQ1 unreviewed B4DTQ1_HUMAN cDNA FLJ52633, highly similar to RNA polymerase II elongation factor ELL2 positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; snRNA transcription by RNA polymerase II [GO:0042795] -B4DV47 unreviewed B4DV47_HUMAN cDNA FLJ57893, highly similar to Parafibromin positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; transcription elongation by RNA polymerase II [GO:0006368] -B4DWV0 unreviewed B4DWV0_HUMAN cDNA FLJ51362, highly similar to Protein ZNF750 epidermis development [GO:0008544] -B4DXA3 unreviewed B4DXA3_HUMAN cDNA FLJ53938 positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DXJ8 unreviewed B4DXJ8_HUMAN cDNA FLJ54970, highly similar to Zinc finger protein 462 positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DYS9 unreviewed B4DYS9_HUMAN cDNA FLJ52175, highly similar to Nuclear receptor coactivator 3 cellular response to hormone stimulus [GO:0032870]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DYT5 unreviewed B4DYT5_HUMAN cDNA FLJ53590, highly similar to Nuclear receptor coactivator 3 cellular response to hormone stimulus [GO:0032870]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DYX5 unreviewed B4DYX5_HUMAN cDNA FLJ53250 positive regulation of transcription by RNA polymerase II [GO:0045944] -B4E1W4 unreviewed B4E1W4_HUMAN cDNA FLJ55383 positive regulation of transcription by RNA polymerase II [GO:0045944] -B4E3P6 unreviewed B4E3P6_HUMAN cDNA FLJ61089, highly similar to Zinc finger protein 646 -B7Z1M2 unreviewed B7Z1M2_HUMAN cDNA FLJ53720, highly similar to Interferon regulatory factor 5 immune system process [GO:0002376]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B7Z1S3 unreviewed B7Z1S3_HUMAN cDNA FLJ56058, highly similar to Castor homolog 1 zinc finger protein positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of neuron differentiation [GO:0045664] -B7Z2D3 unreviewed B7Z2D3_HUMAN cDNA FLJ52487, highly similar to LIM domain-binding protein 2 negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system development [GO:0007399]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B7Z3E7 unreviewed B7Z3E7_HUMAN cDNA FLJ56510, highly similar to Tumor suppressor p53-binding protein 1 DNA damage checkpoint signaling [GO:0000077]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B7Z3N9 unreviewed B7Z3N9_HUMAN cDNA FLJ51484, highly similar to B-cell lymphoma 3-encoded protein positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of apoptotic process [GO:0042981] -B7Z4K7 unreviewed B7Z4K7_HUMAN cDNA FLJ52868, highly similar to Single-stranded DNA-binding protein 2 positive regulation of transcription by RNA polymerase II [GO:0045944] -B7Z726 unreviewed B7Z726_HUMAN cDNA FLJ60177, highly similar to GA-binding protein beta chain positive regulation of transcription by RNA polymerase II [GO:0045944] -B7Z741 unreviewed B7Z741_HUMAN cDNA FLJ50712, highly similar to Zinc finger protein 406 positive regulation of transcription by RNA polymerase II [GO:0045944] -B7Z7E0 unreviewed B7Z7E0_HUMAN cDNA FLJ52961, highly similar to Peroxisome proliferator-activated receptorgamma coactivator 1-alpha positive regulation of transcription by RNA polymerase II [GO:0045944] -B7Z8D8 unreviewed B7Z8D8_HUMAN cDNA FLJ56276, highly similar to Recombining binding protein suppressor of hairless Notch signaling pathway [GO:0007219] -B7Z8J9 unreviewed B7Z8J9_HUMAN cDNA FLJ52040, highly similar to Mus musculus BCL2-associated transcription factor 1 (Bclaf1), transcript variant 3, mRNA positive regulation of transcription by RNA polymerase II [GO:0045944] -B7Z8U2 unreviewed B7Z8U2_HUMAN cDNA FLJ57282, highly similar to GA-binding protein beta chain positive regulation of transcription by RNA polymerase II [GO:0045944] -B7Z8Y9 unreviewed B7Z8Y9_HUMAN cDNA FLJ57775, highly similar to Homo sapiens nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 2 interacting protein, mRNA positive regulation of transcription by RNA polymerase II [GO:0045944] -B7Z987 unreviewed B7Z987_HUMAN NFATC2-interacting protein (Nuclear factor of activated T-cells, cytoplasmic 2-interacting protein) positive regulation of transcription by RNA polymerase II [GO:0045944]; protein sumoylation [GO:0016925] -B7ZLM9 unreviewed B7ZLM9_HUMAN CXorf23 protein CXorf23 positive regulation of transcription by RNA polymerase II [GO:0045944] -B7ZM40 unreviewed B7ZM40_HUMAN PPARGC1B protein PPARGC1B positive regulation of transcription by RNA polymerase II [GO:0045944] -C5HU01 unreviewed C5HU01_HUMAN Williams-Beuren syndrome chromosome region 14 protein 2 MLXIPL positive regulation of transcription by RNA polymerase II [GO:0045944] -C9J7M2 unreviewed C9J7M2_HUMAN Interferon regulatory factor 5 IRF5 positive regulation of transcription by RNA polymerase II [GO:0045944] -C9J9C5 unreviewed C9J9C5_HUMAN Interferon regulatory factor 1 IRF1 positive regulation of transcription by RNA polymerase II [GO:0045944] -C9JD95 unreviewed C9JD95_HUMAN Interferon regulatory factor 1 IRF1 positive regulation of transcription by RNA polymerase II [GO:0045944] -C9JYP7 unreviewed C9JYP7_HUMAN Interferon regulatory factor 5 IRF5 positive regulation of transcription by RNA polymerase II [GO:0045944] -D3GDV5 unreviewed D3GDV5_HUMAN Glial cells missing 2 GCM2 gliogenesis [GO:0042063] -D3K0R4 unreviewed D3K0R4_HUMAN MLL/BTBD18 fusion protein isoform 1 MLL/BTBD18 fusion positive regulation of transcription elongation by RNA polymerase II [GO:0032968] -D6R927 unreviewed D6R927_HUMAN Recombination signal binding protein for immunoglobulin kappa J region RBPJ -D6R946 unreviewed D6R946_HUMAN Recombining-binding protein suppressor of hairless RBPJ -D6R9K5 unreviewed D6R9K5_HUMAN Recombination signal binding protein for immunoglobulin kappa J region RBPJ -D6R9N5 unreviewed D6R9N5_HUMAN Interferon regulatory factor 2 IRF2 positive regulation of transcription by RNA polymerase II [GO:0045944] -D6R9X3 unreviewed D6R9X3_HUMAN Recombination signal binding protein for immunoglobulin kappa J region RBPJ -D6RA45 unreviewed D6RA45_HUMAN Recombination signal binding protein for immunoglobulin kappa J region RBPJ -D6RAT2 unreviewed D6RAT2_HUMAN Recombination signal binding protein for immunoglobulin kappa J region RBPJ -D6RB37 unreviewed D6RB37_HUMAN Recombination signal binding protein for immunoglobulin kappa J region RBPJ -D6RB91 unreviewed D6RB91_HUMAN Myocyte enhancer factor 2C MEF2C animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -D6RBQ8 unreviewed D6RBQ8_HUMAN Recombination signal binding protein for immunoglobulin kappa J region RBPJ -D6RCM1 unreviewed D6RCM1_HUMAN Recombination signal binding protein for immunoglobulin kappa J region RBPJ -D6REC2 unreviewed D6REC2_HUMAN Recombination signal binding protein for immunoglobulin kappa J region RBPJ -D6RG14 unreviewed D6RG14_HUMAN Myocyte enhancer factor 2C MEF2C animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -D6RIV8 unreviewed D6RIV8_HUMAN Recombination signal binding protein for immunoglobulin kappa J region RBPJ -D6RIZ8 unreviewed D6RIZ8_HUMAN Recombination signal binding protein for immunoglobulin kappa J region RBPJ -E2GIM9 unreviewed E2GIM9_HUMAN Interferon regulatory factor 3e IRF3 immune system process [GO:0002376]; positive regulation of transcription by RNA polymerase II [GO:0045944] -E9PIA7 unreviewed E9PIA7_HUMAN Interferon regulatory factor 7 IRF7 positive regulation of transcription by RNA polymerase II [GO:0045944] -E9PRF5 unreviewed E9PRF5_HUMAN BTB/POZ domain-containing protein 18 BTBD18 positive regulation of transcription elongation by RNA polymerase II [GO:0032968] -F1T0J9 unreviewed F1T0J9_HUMAN Insulin gene enhancer protein ISL-2 ISL2 axonogenesis [GO:0007409]; neuron fate specification [GO:0048665]; positive regulation of transcription by RNA polymerase II [GO:0045944] -F2Z3D5 unreviewed F2Z3D5_HUMAN Interferon regulatory factor 4 IRF4 hCG_20902 positive regulation of transcription by RNA polymerase II [GO:0045944] -F6M2K3 unreviewed F6M2K3_HUMAN Nuclear receptor coactivator-6 gamma NCOA6 positive regulation of transcription by RNA polymerase II [GO:0045944] -H0Y3W9 unreviewed H0Y3W9_HUMAN EBF transcription factor 3 EBF3 -H0Y8R3 unreviewed H0Y8R3_HUMAN Recombining-binding protein suppressor of hairless RBPJ -H0Y920 unreviewed H0Y920_HUMAN Mastermind like transcriptional coactivator 3 MAML3 positive regulation of transcription of Notch receptor target [GO:0007221] -H0YKY6 unreviewed H0YKY6_HUMAN Myocyte enhancer factor 2A MEF2A animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -H0YM62 unreviewed H0YM62_HUMAN Myocyte enhancer factor 2A MEF2A animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -H3BNX4 unreviewed H3BNX4_HUMAN Interferon regulatory factor 8 IRF8 positive regulation of transcription by RNA polymerase II [GO:0045944] -H3BQH6 unreviewed H3BQH6_HUMAN Interferon regulatory factor 8 IRF8 positive regulation of transcription by RNA polymerase II [GO:0045944] -H3BT31 unreviewed H3BT31_HUMAN Interferon regulatory factor 8 IRF8 positive regulation of transcription by RNA polymerase II [GO:0045944] -H3BVC2 unreviewed H3BVC2_HUMAN Interferon regulatory factor 8 IRF8 positive regulation of transcription by RNA polymerase II [GO:0045944] -H7BXP4 unreviewed H7BXP4_HUMAN Interferon regulatory factor 9 IRF9 positive regulation of transcription by RNA polymerase II [GO:0045944] -L8B862 unreviewed L8B862_HUMAN ATL1-delta zinc finger protein ATL1-delta positive regulation of transcription by RNA polymerase II [GO:0045944] -M0QZB8 unreviewed M0QZB8_HUMAN Interferon regulatory factor 3 IRF3 positive regulation of transcription by RNA polymerase II [GO:0045944] -M0R007 unreviewed M0R007_HUMAN Interferon regulatory factor 3 IRF3 positive regulation of transcription by RNA polymerase II [GO:0045944] -O14945 unreviewed O14945_HUMAN Zinc regulatory factor -O15415 unreviewed O15415_HUMAN CAGH3 CAGH3 positive regulation of transcription of Notch receptor target [GO:0007221] -Q05BX2 unreviewed Q05BX2_HUMAN MEF2D protein (Myocyte enhancer factor 2D) MEF2D animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q05D20 unreviewed Q05D20_HUMAN THRAP3 protein THRAP3 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q0VGM1 unreviewed Q0VGM1_HUMAN TAF3 protein TAF3 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q108H6 unreviewed Q108H6_HUMAN MLL-MAML2 fusion protein MLL/MAML2 fusion positive regulation of transcription of Notch receptor target [GO:0007221] -Q1HA41 unreviewed Q1HA41_HUMAN MLL-MAML2 protein MLL-MAML2 positive regulation of transcription of Notch receptor target [GO:0007221] -Q1RMZ3 unreviewed Q1RMZ3_HUMAN NCOA6 protein NCOA6 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q29R68 unreviewed Q29R68_HUMAN MKL1 protein MKL1 positive regulation of transcription by RNA polymerase II [GO:0045944]; smooth muscle cell differentiation [GO:0051145] -Q4VBC4 unreviewed Q4VBC4_HUMAN LMO1 protein LMO1 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q4W5G3 unreviewed Q4W5G3_HUMAN Uncharacterized protein SMARCA5 SMARCA5 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q59GH4 unreviewed Q59GH4_HUMAN Mastermind-like 1 variant positive regulation of transcription of Notch receptor target [GO:0007221] -Q59GI1 unreviewed Q59GI1_HUMAN Serum response factor (C-fos serum response element-binding transcription factor) variant animal organ development [GO:0048513]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q5JV87 unreviewed Q5JV87_HUMAN Uncharacterized protein DKFZp564C0164 DKFZp564C0164 -Q5QPV1 unreviewed Q5QPV1_HUMAN Recombination signal binding protein for immunoglobulin kappa J region like (Recombining binding protein suppressor of hairless (Drosophila)-like, isoform CRA_a) RBPJL RBPSUHL hCG_38385 -Q5XGA1 unreviewed Q5XGA1_HUMAN C21orf66 protein C21orf66 mRNA splicing, via spliceosome [GO:0000398]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q63HJ5 unreviewed Q63HJ5_HUMAN Uncharacterized protein DKFZp686L2367 DKFZp686L2367 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q64GA8 unreviewed Q64GA8_HUMAN Interferon regulatory factor 5 variant 9 IRF5 immune system process [GO:0002376]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q65ZG9 unreviewed Q65ZG9_HUMAN CAGH16 CAGH16 cellular response to hormone stimulus [GO:0032870]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q66X48 unreviewed Q66X48_HUMAN CIITA IV MHC2TA positive regulation of MHC class I biosynthetic process [GO:0045345]; positive regulation of MHC class II biosynthetic process [GO:0045348]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q68CP0 unreviewed Q68CP0_HUMAN Uncharacterized protein DKFZp686B2325 DKFZp686B2325 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q69YR9 unreviewed Q69YR9_HUMAN Uncharacterized protein DKFZp313G1618 DKFZp313G1618 negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q6DCA8 unreviewed Q6DCA8_HUMAN BCLAF1 protein BCLAF1 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q6FGL6 unreviewed Q6FGL6_HUMAN HNF4G protein HNF4G cell differentiation [GO:0030154]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q6MZW3 unreviewed Q6MZW3_HUMAN Uncharacterized protein DKFZp686O13216 DKFZp686O13216 negative regulation of type I interferon-mediated signaling pathway [GO:0060339]; positive regulation of MHC class I biosynthetic process [GO:0045345]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q6N019 unreviewed Q6N019_HUMAN Uncharacterized protein DKFZp686C08112 DKFZp686C08112 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q6P0P7 unreviewed Q6P0P7_HUMAN THRAP3 protein THRAP3 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q6PJV4 unreviewed Q6PJV4_HUMAN THRAP3 protein THRAP3 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q6ZS14 unreviewed Q6ZS14_HUMAN cDNA FLJ45904 fis, clone OCBBF3026361 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q708E2 unreviewed Q708E2_HUMAN C-myb v-myb myeloblastosis viral oncogene homologue (avian), exon 1 and joined CDS mitotic cell cycle [GO:0000278]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q708E5 unreviewed Q708E5_HUMAN V-myb myeloblastosis viral oncogene homologue (Avian) (V-myb myeloblastosis viral oncogene homolog (Avian), isoform CRA_l) MYB c-myb hCG_32380 mitotic cell cycle [GO:0000278]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q75MS0 unreviewed Q75MS0_HUMAN ELL_HUMAN ELL positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; snRNA transcription by RNA polymerase II [GO:0042795]; transcription elongation by RNA polymerase II [GO:0006368] -Q7Z313 unreviewed Q7Z313_HUMAN Calcium-binding and coiled-coil domain-containing protein 1 DKFZp686A11272 positive regulation of transcription by RNA polymerase II [GO:0045944]; Wnt signaling pathway [GO:0016055] -Q7Z5U1 unreviewed Q7Z5U1_HUMAN THRAP3 protein THRAP3 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q7Z5U9 unreviewed Q7Z5U9_HUMAN HNF4G protein HNF4G cell differentiation [GO:0030154]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q7Z656 unreviewed Q7Z656_HUMAN Uncharacterized protein DKFZp779C185 DKFZp779C185 positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; snRNA transcription by RNA polymerase II [GO:0042795] -Q8IW56 unreviewed Q8IW56_HUMAN NEUROD4 protein axon development [GO:0061564]; camera-type eye development [GO:0043010]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q8N2J1 unreviewed Q8N2J1_HUMAN cDNA FLJ90561 fis, clone OVARC1001132, weakly similar to GC-RICH SEQUENCE DNA-BINDING FACTOR (GCF) mRNA splicing, via spliceosome [GO:0000398]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q8N6E6 unreviewed Q8N6E6_HUMAN C21orf66 protein C21orf66 mRNA splicing, via spliceosome [GO:0000398]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q8NCY3 unreviewed Q8NCY3_HUMAN Uncharacterized protein DKFZp434N1610 DKFZp434N1610 positive regulation of cholesterol storage [GO:0010886]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q8SNB7 unreviewed Q8SNB7_HUMAN MHC class II transactivator CIITAlo positive regulation of MHC class I biosynthetic process [GO:0045345]; positive regulation of MHC class II biosynthetic process [GO:0045348]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q8TEF4 unreviewed Q8TEF4_HUMAN FLJ00243 protein FLJ00243 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q8WZ18 unreviewed Q8WZ18_HUMAN Transducer of regulated CREB activity C-terminal domain-containing protein positive regulation of transcription by RNA polymerase II [GO:0045944] -Q96GL3 unreviewed Q96GL3_HUMAN IRF3 protein (Interferon regulatory factor 3, isoform CRA_b) IRF3 hCG_21108 immune system process [GO:0002376]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9BT57 unreviewed Q9BT57_HUMAN SSBP3 protein SSBP3 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9BVE2 unreviewed Q9BVE2_HUMAN CDC2L5 protein positive regulation of transcription elongation by RNA polymerase II [GO:0032968] -Q9BZI2 unreviewed Q9BZI2_HUMAN Iroquois-related homeobox transcription factor cell development [GO:0048468]; neuron differentiation [GO:0030182] -Q9H6Y0 unreviewed Q9H6Y0_HUMAN cDNA: FLJ21709 fis, clone COL10077 negative regulation of type I interferon-mediated signaling pathway [GO:0060339]; positive regulation of MHC class I biosynthetic process [GO:0045345]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9NPV6 unreviewed Q9NPV6_HUMAN Uncharacterized protein DKFZp762E1511 DKFZp762E1511 positive regulation of transcription of Notch receptor target [GO:0007221] -Q9NST3 unreviewed Q9NST3_HUMAN Grainyhead-like protein 3 homolog -Q9NYC6 unreviewed Q9NYC6_HUMAN LIM domain only protein 3 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9NZD7 unreviewed Q9NZD7_HUMAN BM-020 mRNA splicing, via spliceosome [GO:0000398]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9P038 unreviewed Q9P038_HUMAN HSPC116 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9P0U0 unreviewed Q9P0U0_HUMAN PC326 protein PC326 positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9UBK3 unreviewed Q9UBK3_HUMAN EVI1 EVI1 -R4GNI0 unreviewed R4GNI0_HUMAN Interferon regulatory factor 1 IRF1 positive regulation of transcription by RNA polymerase II [GO:0045944] -S5LSP3 unreviewed S5LSP3_HUMAN MLX interacting-like protein MLXIPL positive regulation of transcription by RNA polymerase II [GO:0045944] -S5LVX6 unreviewed S5LVX6_HUMAN MLX interacting-like protein MLXIPL positive regulation of transcription by RNA polymerase II [GO:0045944] -S5M7A5 unreviewed S5M7A5_HUMAN MLX interacting-like protein MLXIPL positive regulation of transcription by RNA polymerase II [GO:0045944] -V9P8K4 unreviewed V9P8K4_HUMAN Interferon regulatory factor 1 isoform I4 IRF1 immune system process [GO:0002376]; positive regulation of transcription by RNA polymerase II [GO:0045944] -V9P921 unreviewed V9P921_HUMAN Interferon regulatory factor 1 IRF1 positive regulation of transcription by RNA polymerase II [GO:0045944] -V9TLK5 unreviewed V9TLK5_HUMAN Androgen receptor AR intracellular steroid hormone receptor signaling pathway [GO:0030518]; male gonad development [GO:0008584]; positive regulation of transcription by RNA polymerase II [GO:0045944] -X5CN11 unreviewed X5CN11_HUMAN Interferon regulatory factor 1 isoform delta4 IRF-1 immune system process [GO:0002376]; positive regulation of transcription by RNA polymerase II [GO:0045944] -X5DNR2 unreviewed X5DNR2_HUMAN Kruppel-like factor 13 KLF13 hCG_38887 negative regulation of cell population proliferation [GO:0008285]; negative regulation of erythrocyte differentiation [GO:0045647] diff --git a/hiv-benchmarking/hiv_raw_data/uniprotkb_go_0051301_AND_taxonomy_id_96_2024_07_29.tsv b/hiv-benchmarking/hiv_raw_data/uniprotkb_go_0051301_AND_taxonomy_id_96_2024_07_29.tsv deleted file mode 100644 index 043d03e..0000000 --- a/hiv-benchmarking/hiv_raw_data/uniprotkb_go_0051301_AND_taxonomy_id_96_2024_07_29.tsv +++ /dev/null @@ -1,1065 +0,0 @@ -Entry Reviewed Entry Name Protein names Gene Names Gene Ontology (biological process) -A0A024R1X5 unreviewed A0A024R1X5_HUMAN Beclin-1 BECN1 hCG_16958 amyloid-beta metabolic process [GO:0050435]; apoptotic process [GO:0006915]; autophagosome assembly [GO:0000045]; cell division [GO:0051301]; cellular response to aluminum ion [GO:0071275]; cellular response to amino acid starvation [GO:0034198]; cellular response to copper ion [GO:0071280]; cellular response to epidermal growth factor stimulus [GO:0071364]; cellular response to glucose starvation [GO:0042149]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to nitrogen starvation [GO:0006995]; cellular response to oxygen-glucose deprivation [GO:0090650]; defense response to virus [GO:0051607]; early endosome to late endosome transport [GO:0045022]; engulfment of apoptotic cell [GO:0043652]; JNK cascade [GO:0007254]; late endosome to vacuole transport [GO:0045324]; lysosome organization [GO:0007040]; mitophagy [GO:0000423]; negative regulation of apoptotic process [GO:0043066]; negative regulation of autophagosome assembly [GO:1902902]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of lysosome organization [GO:1905672]; negative regulation of reactive oxygen species metabolic process [GO:2000378]; neuron development [GO:0048666]; p38MAPK cascade [GO:0038066]; positive regulation of autophagosome assembly [GO:2000786]; positive regulation of cardiac muscle hypertrophy [GO:0010613]; positive regulation of intrinsic apoptotic signaling pathway [GO:2001244]; positive regulation of stress granule assembly [GO:0062029]; response to hypoxia [GO:0001666]; response to iron(II) ion [GO:0010040]; response to lead ion [GO:0010288]; response to vitamin E [GO:0033197]; response to xenobiotic stimulus [GO:0009410]; SMAD protein signal transduction [GO:0060395] -A0A0S2Z4N5 unreviewed A0A0S2Z4N5_HUMAN Tumor protein 63 (p63) TP63 TP73L hCG_16028 cellular senescence [GO:0090398]; chromatin remodeling [GO:0006338]; cloacal septation [GO:0060197]; cranial skeletal system development [GO:1904888]; determination of adult lifespan [GO:0008340]; ectoderm and mesoderm interaction [GO:0007499]; embryonic forelimb morphogenesis [GO:0035115]; embryonic hindlimb morphogenesis [GO:0035116]; epidermal cell division [GO:0010481]; epithelial cell development [GO:0002064]; establishment of planar polarity [GO:0001736]; establishment of skin barrier [GO:0061436]; female genitalia morphogenesis [GO:0048807]; hair follicle morphogenesis [GO:0031069]; intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:0042771]; keratinocyte differentiation [GO:0030216]; keratinocyte proliferation [GO:0043616]; negative regulation of intracellular estrogen receptor signaling pathway [GO:0033147]; negative regulation of keratinocyte differentiation [GO:0045617]; negative regulation of mesoderm development [GO:2000381]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron apoptotic process [GO:0051402]; Notch signaling pathway [GO:0007219]; odontogenesis of dentin-containing tooth [GO:0042475]; polarized epithelial cell differentiation [GO:0030859]; positive regulation of apoptotic signaling pathway [GO:2001235]; positive regulation of keratinocyte proliferation [GO:0010838]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of somatic stem cell population maintenance [GO:1904674]; positive regulation of stem cell proliferation [GO:2000648]; post-anal tail morphogenesis [GO:0036342]; prostatic bud formation [GO:0060513]; protein tetramerization [GO:0051262]; proximal/distal pattern formation [GO:0009954]; regulation of epidermal cell division [GO:0010482]; skeletal system development [GO:0001501]; skin morphogenesis [GO:0043589]; spermatogenesis [GO:0007283]; squamous basal epithelial stem cell differentiation involved in prostate gland acinus development [GO:0060529]; stem cell proliferation [GO:0072089]; sympathetic nervous system development [GO:0048485]; transcription by RNA polymerase II [GO:0006366] -A0A140VK09 unreviewed A0A140VK09_HUMAN Calcium and integrin-binding protein 1 (Calmyrin) angiogenesis [GO:0001525]; apoptotic process [GO:0006915]; cell adhesion [GO:0007155]; cell division [GO:0051301]; cellular response to growth factor stimulus [GO:0071363]; negative regulation of apoptotic process [GO:0043066]; negative regulation of megakaryocyte differentiation [GO:0045653]; negative regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051898]; negative regulation of protein phosphorylation [GO:0001933]; platelet formation [GO:0030220]; positive regulation of calcineurin-NFAT signaling cascade [GO:0070886]; positive regulation of cell growth [GO:0030307]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of cell-matrix adhesion [GO:0001954]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of male germ cell proliferation [GO:2000256]; positive regulation of protein localization to plasma membrane [GO:1903078]; positive regulation of protein phosphorylation [GO:0001934]; response to ischemia [GO:0002931]; spermatid development [GO:0007286]; thrombopoietin-mediated signaling pathway [GO:0038163] -A0A2P9DU05 unreviewed A0A2P9DU05_HUMAN Rho-associated protein kinase (EC 2.7.11.1) ROCK2 actomyosin structure organization [GO:0031032]; cortical actin cytoskeleton organization [GO:0030866]; embryonic morphogenesis [GO:0048598]; mitotic cytokinesis [GO:0000281]; positive regulation of centrosome duplication [GO:0010825]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of cell junction assembly [GO:1901888]; Rho protein signal transduction [GO:0007266]; rhythmic process [GO:0048511]; smooth muscle contraction [GO:0006939] -A0A2R8Y4I8 unreviewed A0A2R8Y4I8_HUMAN Spastin (EC 5.6.1.1) SPAST SPG4 axonogenesis [GO:0007409]; cytokinetic process [GO:0032506]; endoplasmic reticulum to Golgi vesicle-mediated transport [GO:0006888]; microtubule severing [GO:0051013]; positive regulation of microtubule depolymerization [GO:0031117]; protein hexamerization [GO:0034214] -A0A2U3TZR0 unreviewed A0A2U3TZR0_HUMAN Spastin (EC 5.6.1.1) SPAST SPG4 axonogenesis [GO:0007409]; cytokinetic process [GO:0032506]; endoplasmic reticulum to Golgi vesicle-mediated transport [GO:0006888]; microtubule severing [GO:0051013]; positive regulation of microtubule depolymerization [GO:0031117]; protein hexamerization [GO:0034214] -A1L190 reviewed SYCE3_HUMAN Synaptonemal complex central element protein 3 (Testis highly expressed gene 2 protein) (THEG-2) SYCE3 C22orf41 THEG2 apoptotic process [GO:0006915]; cell division [GO:0051301]; ectopic germ cell programmed cell death [GO:0035234]; positive regulation of apoptotic process [GO:0043065]; positive regulation of developmental process [GO:0051094]; positive regulation of reproductive process [GO:2000243]; reciprocal meiotic recombination [GO:0007131]; spermatogenesis [GO:0007283]; synaptonemal complex assembly [GO:0007130] -A8MT69 reviewed CENPX_HUMAN Centromere protein X (CENP-X) (FANCM-associated histone fold protein 2) (FANCM-interacting histone fold protein 2) (Fanconi anemia-associated polypeptide of 10 kDa) (Retinoic acid-inducible gene D9 protein homolog) (Stimulated by retinoic acid gene 13 protein homolog) CENPX FAAP10 MHF2 STRA13 cell division [GO:0051301]; chromosome segregation [GO:0007059]; interstrand cross-link repair [GO:0036297]; kinetochore assembly [GO:0051382]; positive regulation of protein ubiquitination [GO:0031398]; replication fork processing [GO:0031297]; resolution of meiotic recombination intermediates [GO:0000712] -A8MVW5 reviewed HECA2_HUMAN HEPACAM family member 2 (Mitotic kinetics regulator) HEPACAM2 MIKI UNQ305/PRO346 cell division [GO:0051301]; centrosome cycle [GO:0007098] -B2RDY3 unreviewed B2RDY3_HUMAN Multifunctional fusion protein [Includes: Katanin p60 ATPase-containing subunit A1 (Katanin p60 subunit A1) (EC 5.6.1.1) (p60 katanin); Katanin p60 ATPase-containing subunit A-like 1 (Katanin p60 subunit A-like 1) (p60 katanin-like 1)] KATNAL1 KATNA1 cell division [GO:0051301]; microtubule severing [GO:0051013]; spermatogenesis [GO:0007283] -B3KUK7 unreviewed B3KUK7_HUMAN Multifunctional fusion protein [Includes: Katanin p60 ATPase-containing subunit A1 (Katanin p60 subunit A1) (EC 5.6.1.1) (p60 katanin); Katanin p60 ATPase-containing subunit A-like 1 (Katanin p60 subunit A-like 1) (p60 katanin-like 1)] KATNA1 KATNAL1 cell division [GO:0051301]; microtubule severing [GO:0051013]; spermatogenesis [GO:0007283] -D9ZGF8 unreviewed D9ZGF8_HUMAN Rho-associated protein kinase (EC 2.7.11.1) ROCK1 actomyosin structure organization [GO:0031032]; cortical actin cytoskeleton organization [GO:0030866]; embryonic morphogenesis [GO:0048598]; mitotic cytokinesis [GO:0000281]; regulation of cell junction assembly [GO:1901888]; Rho protein signal transduction [GO:0007266] -E5KRP5 unreviewed E5KRP5_HUMAN Spastin (EC 5.6.1.1) SPAST SPG4 hCG_23080 anterograde axonal transport [GO:0008089]; axonal transport of mitochondrion [GO:0019896]; axonogenesis [GO:0007409]; cytokinetic process [GO:0032506]; endoplasmic reticulum to Golgi vesicle-mediated transport [GO:0006888]; microtubule severing [GO:0051013]; positive regulation of microtubule depolymerization [GO:0031117]; protein hexamerization [GO:0034214] -E5KRP6 unreviewed E5KRP6_HUMAN Spastin (EC 5.6.1.1) SPAST SPG4 axonogenesis [GO:0007409]; cytokinetic process [GO:0032506]; endoplasmic reticulum to Golgi vesicle-mediated transport [GO:0006888]; microtubule severing [GO:0051013]; positive regulation of microtubule depolymerization [GO:0031117]; protein hexamerization [GO:0034214] -H0YL14 reviewed TM250_HUMAN Transmembrane protein 250 (Herpes virus UL25-binding protein) TMEM250 C9orf69 cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of viral process [GO:0048524]; protein localization [GO:0008104] -L7RTI5 unreviewed L7RTI5_HUMAN Protein kinase C epsilon type (EC 2.7.11.13) (nPKC-epsilon) PRKCE cell division [GO:0051301]; cell-substrate adhesion [GO:0031589]; cellular response to ethanol [GO:0071361]; cellular response to hypoxia [GO:0071456]; cellular response to prostaglandin E stimulus [GO:0071380]; establishment of localization in cell [GO:0051649]; insulin secretion [GO:0030073]; lipopolysaccharide-mediated signaling pathway [GO:0031663]; locomotory exploration behavior [GO:0035641]; macrophage activation involved in immune response [GO:0002281]; MAPK cascade [GO:0000165]; mucus secretion [GO:0070254]; negative regulation of protein ubiquitination [GO:0031397]; positive regulation of actin filament polymerization [GO:0030838]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cell-substrate adhesion [GO:0010811]; positive regulation of fibroblast migration [GO:0010763]; positive regulation of insulin secretion [GO:0032024]; positive regulation of lipid catabolic process [GO:0050996]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of mucus secretion [GO:0070257]; positive regulation of synaptic transmission, GABAergic [GO:0032230]; regulation of insulin secretion involved in cellular response to glucose stimulus [GO:0061178]; regulation of peptidyl-tyrosine phosphorylation [GO:0050730]; regulation of release of sequestered calcium ion into cytosol [GO:0051279]; response to morphine [GO:0043278]; synaptic transmission, GABAergic [GO:0051932]; TRAM-dependent toll-like receptor 4 signaling pathway [GO:0035669] -M0R2J8 reviewed DCDC1_HUMAN Doublecortin domain-containing protein 1 (Doublecortin domain-containing 5 protein) DCDC1 DCDC5 KIAA1493 cell division [GO:0051301]; intracellular signal transduction [GO:0035556]; regulation of mitotic cytokinesis [GO:1902412] -O00139 reviewed KIF2A_HUMAN Kinesin-like protein KIF2A (Kinesin-2) (hK2) KIF2A KIF2 KNS2 cell differentiation [GO:0030154]; cell division [GO:0051301]; microtubule cytoskeleton organization [GO:0000226]; microtubule depolymerization [GO:0007019]; microtubule-based movement [GO:0007018]; mitotic spindle assembly [GO:0090307]; mitotic spindle organization [GO:0007052]; nervous system development [GO:0007399]; regulation of cell migration [GO:0030334] -O00311 reviewed CDC7_HUMAN Cell division cycle 7-related protein kinase (CDC7-related kinase) (HsCdc7) (huCdc7) (EC 2.7.11.1) CDC7 CDC7L1 cell cycle phase transition [GO:0044770]; cell division [GO:0051301]; double-strand break repair via break-induced replication [GO:0000727]; G1/S transition of mitotic cell cycle [GO:0000082]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; positive regulation of nuclear cell cycle DNA replication [GO:0010571]; signal transduction [GO:0007165] -O00401 reviewed WASL_HUMAN Actin nucleation-promoting factor WASL (Neural Wiskott-Aldrich syndrome protein) (N-WASP) WASL actin filament polymerization [GO:0030041]; actin polymerization or depolymerization [GO:0008154]; cell division [GO:0051301]; dendritic spine morphogenesis [GO:0060997]; negative regulation of lymphocyte migration [GO:2000402]; negative regulation of membrane tubulation [GO:1903526]; positive regulation of clathrin-dependent endocytosis [GO:2000370]; positive regulation of filopodium assembly [GO:0051491]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein-containing complex assembly [GO:0065003]; protein-containing complex localization [GO:0031503]; regulation of postsynapse organization [GO:0099175]; regulation of protein localization [GO:0032880]; response to bacterium [GO:0009617]; spindle localization [GO:0051653]; vesicle budding from membrane [GO:0006900]; vesicle organization [GO:0016050]; vesicle transport along actin filament [GO:0030050] -O00471 reviewed EXOC5_HUMAN Exocyst complex component 5 (Exocyst complex component Sec10) (hSec10) EXOC5 SEC10 SEC10L1 epithelial cell apoptotic process [GO:1904019]; establishment of planar polarity [GO:0001736]; exocytosis [GO:0006887]; Golgi to plasma membrane transport [GO:0006893]; membrane fission [GO:0090148]; mitotic cytokinesis [GO:0000281]; non-motile cilium assembly [GO:1905515]; post-Golgi vesicle-mediated transport [GO:0006892]; protein localization to plasma membrane [GO:0072659]; protein transport [GO:0015031]; vesicle docking involved in exocytosis [GO:0006904]; vesicle tethering involved in exocytosis [GO:0090522] -O00755 reviewed WNT7A_HUMAN Protein Wnt-7a WNT7A angiogenesis [GO:0001525]; apoptotic process [GO:0006915]; asymmetric protein localization involved in cell fate determination [GO:0045167]; axonogenesis [GO:0007409]; canonical Wnt signaling pathway [GO:0060070]; cartilage condensation [GO:0001502]; cell fate commitment [GO:0045165]; cell proliferation in forebrain [GO:0021846]; cellular response to transforming growth factor beta stimulus [GO:0071560]; central nervous system vasculogenesis [GO:0022009]; cerebellar granule cell differentiation [GO:0021707]; chondrocyte differentiation [GO:0002062]; dendritic spine morphogenesis [GO:0060997]; dorsal/ventral pattern formation [GO:0009953]; embryonic axis specification [GO:0000578]; embryonic digit morphogenesis [GO:0042733]; embryonic forelimb morphogenesis [GO:0035115]; embryonic hindlimb morphogenesis [GO:0035116]; establishment of blood-brain barrier [GO:0060856]; establishment of cell polarity [GO:0030010]; excitatory synapse assembly [GO:1904861]; lens fiber cell development [GO:0070307]; negative regulation of apoptotic process [GO:0043066]; negative regulation of neurogenesis [GO:0050768]; neuron differentiation [GO:0030182]; neurotransmitter secretion [GO:0007269]; oviduct development [GO:0060066]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of epithelial cell proliferation involved in wound healing [GO:0060054]; positive regulation of excitatory postsynaptic potential [GO:2000463]; positive regulation of excitatory synapse assembly [GO:1904891]; positive regulation of gene expression [GO:0010628]; positive regulation of JNK cascade [GO:0046330]; positive regulation of protein localization to presynapse [GO:1905386]; positive regulation of protein metabolic process [GO:0051247]; positive regulation of synapse assembly [GO:0051965]; positive regulation of transcription by RNA polymerase II [GO:0045944]; postsynapse assembly [GO:0099068]; presynapse assembly [GO:0099054]; regulation of axon diameter [GO:0031133]; regulation of postsynapse organization [GO:0099175]; regulation of presynapse assembly [GO:1905606]; regulation of synaptic vesicle exocytosis [GO:2000300]; response to estradiol [GO:0032355]; response to estrogen [GO:0043627]; secondary palate development [GO:0062009]; sex differentiation [GO:0007548]; skeletal muscle satellite cell activation [GO:0014719]; skeletal muscle satellite cell maintenance involved in skeletal muscle regeneration [GO:0014834]; somatic stem cell division [GO:0048103]; somatic stem cell population maintenance [GO:0035019]; stem cell development [GO:0048864]; synaptic vesicle recycling [GO:0036465]; uterus morphogenesis [GO:0061038]; Wnt signaling pathway, planar cell polarity pathway [GO:0060071]; wound healing, spreading of epidermal cells [GO:0035313] -O00762 reviewed UBE2C_HUMAN Ubiquitin-conjugating enzyme E2 C (EC 2.3.2.23) ((E3-independent) E2 ubiquitin-conjugating enzyme C) (EC 2.3.2.24) (E2 ubiquitin-conjugating enzyme C) (UbcH10) (Ubiquitin carrier protein C) (Ubiquitin-protein ligase C) UBE2C UBCH10 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; exit from mitosis [GO:0010458]; free ubiquitin chain polymerization [GO:0010994]; positive regulation of exit from mitosis [GO:0031536]; positive regulation of mitotic metaphase/anaphase transition [GO:0045842]; positive regulation of ubiquitin protein ligase activity [GO:1904668]; protein K11-linked ubiquitination [GO:0070979]; protein K48-linked ubiquitination [GO:0070936]; protein polyubiquitination [GO:0000209]; protein ubiquitination [GO:0016567]; regulation of mitotic metaphase/anaphase transition [GO:0030071]; ubiquitin-dependent protein catabolic process [GO:0006511] -O14578 reviewed CTRO_HUMAN Citron Rho-interacting kinase (CRIK) (EC 2.7.11.1) (Serine/threonine-protein kinase 21) CIT CRIK KIAA0949 STK21 generation of neurons [GO:0048699]; mitotic cell cycle [GO:0000278]; mitotic cytokinesis [GO:0000281]; negative regulation of hippo signaling [GO:0035331]; neuron apoptotic process [GO:0051402]; positive regulation of cytokinesis [GO:0032467] -O14777 reviewed NDC80_HUMAN Kinetochore protein NDC80 homolog (Highly expressed in cancer protein) (Kinetochore protein Hec1) (HsHec1) (Kinetochore-associated protein 2) (Retinoblastoma-associated protein HEC) NDC80 HEC HEC1 KNTC2 attachment of mitotic spindle microtubules to kinetochore [GO:0051315]; attachment of spindle microtubules to kinetochore [GO:0008608]; cell division [GO:0051301]; centrosome duplication [GO:0051298]; chromosome segregation [GO:0007059]; establishment of mitotic spindle orientation [GO:0000132]; G2/MI transition of meiotic cell cycle [GO:0008315]; kinetochore organization [GO:0051383]; metaphase chromosome alignment [GO:0051310]; mitotic cell cycle [GO:0000278]; mitotic sister chromatid segregation [GO:0000070]; mitotic spindle assembly checkpoint signaling [GO:0007094]; mitotic spindle organization [GO:0007052]; positive regulation of mitotic cell cycle spindle assembly checkpoint [GO:0090267]; regulation of protein stability [GO:0031647]; skeletal muscle satellite cell proliferation [GO:0014841]; spindle assembly involved in female meiosis I [GO:0007057] -O14965 reviewed AURKA_HUMAN Aurora kinase A (EC 2.7.11.1) (Aurora 2) (Aurora/IPL1-related kinase 1) (ARK-1) (Aurora-related kinase 1) (Breast tumor-amplified kinase) (Ipl1- and aurora-related kinase 1) (Serine/threonine-protein kinase 15) (Serine/threonine-protein kinase 6) (Serine/threonine-protein kinase Ayk1) (Serine/threonine-protein kinase aurora-A) AURKA AIK AIRK1 ARK1 AURA AYK1 BTAK IAK1 STK15 STK6 anterior/posterior axis specification [GO:0009948]; apoptotic process [GO:0006915]; cell division [GO:0051301]; centrosome localization [GO:0051642]; cilium disassembly [GO:0061523]; G2/M transition of mitotic cell cycle [GO:0000086]; liver regeneration [GO:0097421]; mitotic cell cycle [GO:0000278]; mitotic centrosome separation [GO:0007100]; mitotic spindle organization [GO:0007052]; negative regulation of apoptotic process [GO:0043066]; negative regulation of gene expression [GO:0010629]; negative regulation of protein binding [GO:0032091]; neuron projection extension [GO:1990138]; peptidyl-serine phosphorylation [GO:0018105]; positive regulation of mitochondrial fission [GO:0090141]; positive regulation of mitotic cell cycle [GO:0045931]; positive regulation of mitotic nuclear division [GO:0045840]; positive regulation of oocyte maturation [GO:1900195]; positive regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032436]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; protein autophosphorylation [GO:0046777]; protein localization to centrosome [GO:0071539]; protein phosphorylation [GO:0006468]; regulation of centrosome cycle [GO:0046605]; regulation of cytokinesis [GO:0032465]; regulation of G2/M transition of mitotic cell cycle [GO:0010389]; regulation of protein stability [GO:0031647]; regulation of signal transduction by p53 class mediator [GO:1901796]; response to wounding [GO:0009611]; spindle assembly involved in female meiosis I [GO:0007057]; spindle organization [GO:0007051] -O15182 reviewed CETN3_HUMAN Centrin-3 CETN3 CEN3 cell division [GO:0051301]; centrosome cycle [GO:0007098]; microtubule cytoskeleton organization [GO:0000226]; mRNA transport [GO:0051028]; protein transport [GO:0015031] -O15392 reviewed BIRC5_HUMAN Baculoviral IAP repeat-containing protein 5 (Apoptosis inhibitor 4) (Apoptosis inhibitor survivin) BIRC5 API4 IAP4 apoptotic process [GO:0006915]; cell division [GO:0051301]; establishment of chromosome localization [GO:0051303]; G2/M transition of mitotic cell cycle [GO:0000086]; mitotic cell cycle [GO:0000278]; mitotic cytokinesis [GO:0000281]; mitotic spindle assembly [GO:0090307]; mitotic spindle assembly checkpoint signaling [GO:0007094]; mitotic spindle midzone assembly [GO:0051256]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043154]; negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of attachment of mitotic spindle microtubules to kinetochore [GO:1902425]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of exit from mitosis [GO:0031536]; positive regulation of mitotic cell cycle [GO:0045931]; positive regulation of mitotic cell cycle spindle assembly checkpoint [GO:0090267]; positive regulation of mitotic cytokinesis [GO:1903490]; positive regulation of mitotic sister chromatid separation [GO:1901970]; protein phosphorylation [GO:0006468]; protein-containing complex localization [GO:0031503]; sensory perception of sound [GO:0007605] -O43236 reviewed SEPT4_HUMAN Septin-4 (Bradeion beta) (Brain protein H5) (CE5B3 beta) (Cell division control-related protein 2) (hCDCREL-2) (Peanut-like protein 2) SEPTIN4 C17orf47 PNUTL2 SEP4 SEPT4 hucep-7 apoptotic process [GO:0006915]; cytoskeleton-dependent cytokinesis [GO:0061640]; flagellated sperm motility [GO:0030317]; hematopoietic stem cell homeostasis [GO:0061484]; neuron migration [GO:0001764]; positive regulation of apoptotic process [GO:0043065]; positive regulation of intrinsic apoptotic signaling pathway [GO:2001244]; positive regulation of protein ubiquitination [GO:0031398]; protein localization [GO:0008104]; regulation of apoptotic process [GO:0042981]; regulation of exocytosis [GO:0017157]; spermatid differentiation [GO:0048515] -O43264 reviewed ZW10_HUMAN Centromere/kinetochore protein zw10 homolog ZW10 cell division [GO:0051301]; endoplasmic reticulum to Golgi vesicle-mediated transport [GO:0006888]; establishment of mitotic spindle orientation [GO:0000132]; Golgi organization [GO:0007030]; meiotic cell cycle [GO:0051321]; mitotic metaphase chromosome alignment [GO:0007080]; mitotic sister chromatid segregation [GO:0000070]; mitotic spindle assembly checkpoint signaling [GO:0007094]; protein localization to kinetochore [GO:0034501]; protein transport [GO:0015031]; protein-containing complex assembly [GO:0065003]; regulation of attachment of spindle microtubules to kinetochore [GO:0051988]; regulation of exit from mitosis [GO:0007096]; retrograde vesicle-mediated transport, Golgi to endoplasmic reticulum [GO:0006890] -O43482 reviewed MS18B_HUMAN Protein Mis18-beta (Cancer/testis antigen 86) (CT86) (Opa-interacting protein 5) (OIP-5) OIP5 MIS18B cell communication [GO:0007154]; cell division [GO:0051301]; CENP-A containing chromatin assembly [GO:0034080]; chromosome segregation [GO:0007059] -O43491 reviewed E41L2_HUMAN Band 4.1-like protein 2 (Erythrocyte membrane protein band 4.1-like 2) (Generally expressed protein 4.1) (4.1G) EPB41L2 actomyosin structure organization [GO:0031032]; cell division [GO:0051301]; cortical actin cytoskeleton organization [GO:0030866]; positive regulation of protein localization to cell cortex [GO:1904778] -O43566 reviewed RGS14_HUMAN Regulator of G-protein signaling 14 (RGS14) RGS14 cell division [GO:0051301]; chromosome segregation [GO:0007059]; G protein-coupled receptor signaling pathway [GO:0007186]; learning [GO:0007612]; long-term memory [GO:0007616]; long-term synaptic potentiation [GO:0060291]; mitotic cell cycle [GO:0000278]; negative regulation of ERK1 and ERK2 cascade [GO:0070373]; negative regulation of G protein-coupled receptor signaling pathway [GO:0045744]; negative regulation of MAP kinase activity [GO:0043407]; negative regulation of synaptic plasticity [GO:0031914]; nucleocytoplasmic transport [GO:0006913]; platelet-derived growth factor receptor signaling pathway [GO:0048008]; positive regulation of neurogenesis [GO:0050769]; regulation of G protein-coupled receptor signaling pathway [GO:0008277]; response to oxidative stress [GO:0006979]; spindle organization [GO:0007051]; visual learning [GO:0008542]; zygote asymmetric cell division [GO:0010070] -O43633 reviewed CHM2A_HUMAN Charged multivesicular body protein 2a (Chromatin-modifying protein 2a) (CHMP2a) (Putative breast adenocarcinoma marker BC-2) (Vacuolar protein sorting-associated protein 2-1) (Vps2-1) (hVps2-1) CHMP2A BC2 CHMP2 autophagosome maturation [GO:0097352]; autophagy [GO:0006914]; endosome transport via multivesicular body sorting pathway [GO:0032509]; ESCRT III complex disassembly [GO:1904903]; establishment of protein localization [GO:0045184]; exit from mitosis [GO:0010458]; late endosome to lysosome transport [GO:1902774]; late endosome to vacuole transport [GO:0045324]; macroautophagy [GO:0016236]; membrane fission [GO:0090148]; membrane invagination [GO:0010324]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body assembly [GO:0036258]; multivesicular body sorting pathway [GO:0071985]; multivesicular body-lysosome fusion [GO:0061763]; negative regulation of centriole elongation [GO:1903723]; nuclear membrane reassembly [GO:0031468]; nucleus organization [GO:0006997]; plasma membrane repair [GO:0001778]; positive regulation of exosomal secretion [GO:1903543]; protein homooligomerization [GO:0051260]; protein polymerization [GO:0051258]; protein transport [GO:0015031]; regulation of centrosome duplication [GO:0010824]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; vesicle fusion with vacuole [GO:0051469]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702]; viral release from host cell [GO:0019076] -O43663 reviewed PRC1_HUMAN Protein regulator of cytokinesis 1 PRC1 cell division [GO:0051301]; microtubule cytoskeleton organization [GO:0000226]; mitotic spindle elongation [GO:0000022]; mitotic spindle midzone assembly [GO:0051256]; positive regulation of cell population proliferation [GO:0008284]; regulation of cytokinesis [GO:0032465] -O43670 reviewed ZN207_HUMAN BUB3-interacting and GLEBS motif-containing protein ZNF207 (BuGZ) (hBuGZ) (Zinc finger protein 207) ZNF207 BUGZ attachment of spindle microtubules to kinetochore [GO:0008608]; cell division [GO:0051301]; microtubule bundle formation [GO:0001578]; microtubule polymerization [GO:0046785]; mitotic sister chromatid segregation [GO:0000070]; mitotic spindle assembly [GO:0090307]; mitotic spindle assembly checkpoint signaling [GO:0007094]; protein stabilization [GO:0050821]; regulation of chromosome segregation [GO:0051983] -O43683 reviewed BUB1_HUMAN Mitotic checkpoint serine/threonine-protein kinase BUB1 (hBUB1) (EC 2.7.11.1) (BUB1A) BUB1 BUB1L apoptotic process [GO:0006915]; cell division [GO:0051301]; chromosome segregation [GO:0007059]; meiotic sister chromatid cohesion, centromeric [GO:0051754]; mitotic spindle assembly checkpoint signaling [GO:0007094]; positive regulation of maintenance of mitotic sister chromatid cohesion, centromeric [GO:2000720]; regulation of chromosome segregation [GO:0051983]; regulation of sister chromatid cohesion [GO:0007063] -O43684 reviewed BUB3_HUMAN Mitotic checkpoint protein BUB3 BUB3 attachment of spindle microtubules to kinetochore [GO:0008608]; cell division [GO:0051301]; meiotic cell cycle [GO:0051321]; mitotic spindle assembly checkpoint signaling [GO:0007094]; protein localization to kinetochore [GO:0034501] -O43768 reviewed ENSA_HUMAN Alpha-endosulfine (ARPP-19e) ENSA cell division [GO:0051301]; G2/M transition of mitotic cell cycle [GO:0000086]; mitotic cell cycle [GO:0000278]; negative regulation of protein dephosphorylation [GO:0035308]; regulation of insulin secretion [GO:0050796]; response to nutrient [GO:0007584] -O43781 reviewed DYRK3_HUMAN Dual specificity tyrosine-phosphorylation-regulated kinase 3 (EC 2.7.12.1) (Regulatory erythroid kinase) (REDK) DYRK3 cell division [GO:0051301]; erythrocyte differentiation [GO:0030218]; negative regulation of apoptotic process [GO:0043066]; negative regulation of DNA damage response, signal transduction by p53 class mediator [GO:0043518]; nuclear speck organization [GO:0035063]; organelle disassembly [GO:1903008]; positive regulation of cell cycle G2/M phase transition [GO:1902751]; protein phosphorylation [GO:0006468]; regulation of cellular response to stress [GO:0080135]; regulation of TORC1 signaling [GO:1903432]; stress granule disassembly [GO:0035617] -O43805 reviewed SSNA1_HUMAN Microtubule nucleation factor SSNA1 (Nuclear autoantigen of 14 kDa) (Sjoegren syndrome nuclear autoantigen 1) SSNA1 NA14 axon arborization [GO:0140060]; axon extension [GO:0048675]; axonogenesis [GO:0007409]; cell division [GO:0051301]; intraciliary transport [GO:0042073]; microtubule cytoskeleton organization [GO:0000226]; microtubule nucleation [GO:0007020]; receptor clustering [GO:0043113] -O43929 reviewed ORC4_HUMAN Origin recognition complex subunit 4 ORC4 ORC4L DNA replication initiation [GO:0006270]; polar body extrusion after meiotic divisions [GO:0040038]; protein polymerization [GO:0051258] -O60216 reviewed RAD21_HUMAN Double-strand-break repair protein rad21 homolog (hHR21) (Nuclear matrix protein 1) (NXP-1) (SCC1 homolog) [Cleaved into: 64-kDa C-terminal product (64-kDa carboxy-terminal product) (65-kDa carboxy-terminal product)] RAD21 HR21 KIAA0078 NXP1 SCC1 apoptotic process [GO:0006915]; cell division [GO:0051301]; chromatin looping [GO:0140588]; chromosome segregation [GO:0007059]; DNA recombination [GO:0006310]; double-strand break repair [GO:0006302]; establishment of meiotic sister chromatid cohesion [GO:0034089]; establishment of mitotic sister chromatid cohesion [GO:0034087]; negative regulation of G2/M transition of mitotic cell cycle [GO:0010972]; negative regulation of glial cell apoptotic process [GO:0034351]; negative regulation of interleukin-1 beta production [GO:0032691]; negative regulation of mitotic metaphase/anaphase transition [GO:0045841]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of tumor necrosis factor production [GO:0032720]; positive regulation of interleukin-10 production [GO:0032733]; positive regulation of sister chromatid cohesion [GO:0045876]; protein localization to chromatin [GO:0071168]; reciprocal meiotic recombination [GO:0007131]; regulation of transcription by RNA polymerase II [GO:0006357]; replication-born double-strand break repair via sister chromatid exchange [GO:1990414]; response to hypoxia [GO:0001666]; sister chromatid cohesion [GO:0007062] -O60232 reviewed ZNRD2_HUMAN Protein ZNRD2 (Autoantigen p27) (Sjoegren syndrome/scleroderma autoantigen 1) (Zinc ribbon domain-containing protein 2) ZNRD2 SSSCA1 cell division [GO:0051301]; mitotic cell cycle [GO:0000278] -O60447 reviewed EVI5_HUMAN Ecotropic viral integration site 5 protein homolog (EVI-5) (Neuroblastoma stage 4S gene protein) EVI5 NB4S cell division [GO:0051301]; positive regulation of GTPase activity [GO:0043547]; retrograde transport, endosome to Golgi [GO:0042147] -O60563 reviewed CCNT1_HUMAN Cyclin-T1 (CycT1) (Cyclin-T) CCNT1 cell division [GO:0051301]; positive regulation by host of viral transcription [GO:0043923]; positive regulation of DNA-templated transcription, elongation [GO:0032786]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0000079]; regulation of transcription by RNA polymerase II [GO:0006357]; response to xenobiotic stimulus [GO:0009410]; transcription by RNA polymerase II [GO:0006366] -O60566 reviewed BUB1B_HUMAN Mitotic checkpoint serine/threonine-protein kinase BUB1 beta (EC 2.7.11.1) (MAD3/BUB1-related protein kinase) (hBUBR1) (Mitotic checkpoint kinase MAD3L) (Protein SSK1) BUB1B BUBR1 MAD3L SSK1 apoptotic process [GO:0006915]; cell division [GO:0051301]; meiotic sister chromatid cohesion, centromeric [GO:0051754]; metaphase/anaphase transition of mitotic cell cycle [GO:0007091]; mitotic spindle assembly checkpoint signaling [GO:0007094]; protein localization to chromosome, centromeric region [GO:0071459] -O60583 reviewed CCNT2_HUMAN Cyclin-T2 (CycT2) CCNT2 cell division [GO:0051301]; early viral transcription [GO:0019085]; late viral transcription [GO:0019086]; positive regulation by host of viral transcription [GO:0043923]; positive regulation of DNA-templated transcription, elongation [GO:0032786]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0000079]; regulation of muscle cell differentiation [GO:0051147]; regulation of transcription by RNA polymerase II [GO:0006357]; skeletal muscle tissue development [GO:0007519]; transcription by RNA polymerase II [GO:0006366] -O60645 reviewed EXOC3_HUMAN Exocyst complex component 3 (Exocyst complex component Sec6) EXOC3 SEC6 SEC6L1 exocyst localization [GO:0051601]; exocytosis [GO:0006887]; membrane fission [GO:0090148]; mitotic cytokinesis [GO:0000281]; protein transport [GO:0015031]; vesicle docking involved in exocytosis [GO:0006904]; vesicle tethering involved in exocytosis [GO:0090522] -O75084 reviewed FZD7_HUMAN Frizzled-7 (Fz-7) (hFz7) (FzE3) FZD7 canonical Wnt signaling pathway [GO:0060070]; cellular response to retinoic acid [GO:0071300]; mesenchymal to epithelial transition [GO:0060231]; negative regulation of cardiac muscle cell differentiation [GO:2000726]; negative regulation of cell-substrate adhesion [GO:0010812]; negative regulation of ectodermal cell fate specification [GO:0042666]; neuron differentiation [GO:0030182]; non-canonical Wnt signaling pathway [GO:0035567]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial cell proliferation involved in wound healing [GO:0060054]; positive regulation of JNK cascade [GO:0046330]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of phosphorylation [GO:0042327]; regulation of canonical Wnt signaling pathway [GO:0060828]; regulation of DNA-templated transcription [GO:0006355]; skeletal muscle satellite cell maintenance involved in skeletal muscle regeneration [GO:0014834]; somatic stem cell division [GO:0048103]; stem cell population maintenance [GO:0019827]; substrate adhesion-dependent cell spreading [GO:0034446]; T cell differentiation in thymus [GO:0033077]; Wnt signaling pathway, planar cell polarity pathway [GO:0060071] -O75116 reviewed ROCK2_HUMAN Rho-associated protein kinase 2 (EC 2.7.11.1) (Rho kinase 2) (Rho-associated, coiled-coil-containing protein kinase 2) (Rho-associated, coiled-coil-containing protein kinase II) (ROCK-II) (p164 ROCK-2) ROCK2 KIAA0619 actin cytoskeleton organization [GO:0030036]; actomyosin structure organization [GO:0031032]; aortic valve morphogenesis [GO:0003180]; blood vessel diameter maintenance [GO:0097746]; canonical NF-kappaB signal transduction [GO:0007249]; cellular response to acetylcholine [GO:1905145]; cellular response to testosterone stimulus [GO:0071394]; centrosome duplication [GO:0051298]; cortical actin cytoskeleton organization [GO:0030866]; embryonic morphogenesis [GO:0048598]; epithelial to mesenchymal transition [GO:0001837]; mitotic cytokinesis [GO:0000281]; modulation by host of viral process [GO:0044788]; mRNA destabilization [GO:0061157]; negative regulation of angiogenesis [GO:0016525]; negative regulation of bicellular tight junction assembly [GO:1903347]; negative regulation of biomineral tissue development [GO:0070168]; negative regulation of gene expression [GO:0010629]; negative regulation of myosin-light-chain-phosphatase activity [GO:0035509]; negative regulation of nitric oxide biosynthetic process [GO:0045019]; negative regulation of protein localization to lysosome [GO:0150033]; positive regulation of amyloid precursor protein catabolic process [GO:1902993]; positive regulation of amyloid-beta formation [GO:1902004]; positive regulation of cardiac muscle hypertrophy [GO:0010613]; positive regulation of cell migration [GO:0030335]; positive regulation of centrosome duplication [GO:0010825]; positive regulation of connective tissue growth factor production [GO:0032723]; positive regulation of connective tissue replacement [GO:1905205]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of fibroblast growth factor production [GO:0090271]; positive regulation of gene expression [GO:0010628]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of protein localization to early endosome [GO:1902966]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of stress fiber assembly [GO:0051496]; protein localization to plasma membrane [GO:0072659]; protein phosphorylation [GO:0006468]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of angiotensin-activated signaling pathway [GO:0110061]; regulation of cell adhesion [GO:0030155]; regulation of cell junction assembly [GO:1901888]; regulation of cell motility [GO:2000145]; regulation of cellular response to hypoxia [GO:1900037]; regulation of circadian rhythm [GO:0042752]; regulation of establishment of cell polarity [GO:2000114]; regulation of establishment of endothelial barrier [GO:1903140]; regulation of focal adhesion assembly [GO:0051893]; regulation of keratinocyte differentiation [GO:0045616]; regulation of nervous system process [GO:0031644]; regulation of stress fiber assembly [GO:0051492]; response to angiotensin [GO:1990776]; response to ischemia [GO:0002931]; response to transforming growth factor beta [GO:0071559]; Rho protein signal transduction [GO:0007266]; rhythmic process [GO:0048511]; smooth muscle contraction [GO:0006939] -O75122 reviewed CLAP2_HUMAN CLIP-associating protein 2 (Cytoplasmic linker-associated protein 2) (Protein Orbit homolog 2) (hOrbit2) CLASP2 KIAA0627 cell division [GO:0051301]; establishment of mitotic spindle localization [GO:0040001]; establishment or maintenance of cell polarity [GO:0007163]; exit from mitosis [GO:0010458]; Golgi organization [GO:0007030]; microtubule anchoring [GO:0034453]; microtubule cytoskeleton organization [GO:0000226]; microtubule nucleation [GO:0007020]; microtubule organizing center organization [GO:0031023]; mitotic spindle assembly [GO:0090307]; mitotic spindle organization [GO:0007052]; negative regulation of focal adhesion assembly [GO:0051895]; negative regulation of microtubule depolymerization [GO:0007026]; negative regulation of stress fiber assembly [GO:0051497]; negative regulation of wound healing, spreading of epidermal cells [GO:1903690]; platelet-derived growth factor receptor-beta signaling pathway [GO:0035791]; positive regulation of basement membrane assembly involved in embryonic body morphogenesis [GO:1904261]; positive regulation of epithelial cell migration [GO:0010634]; positive regulation of exocytosis [GO:0045921]; positive regulation of extracellular matrix disassembly [GO:0090091]; presynaptic cytoskeleton organization [GO:0099187]; protein localization to plasma membrane [GO:0072659]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of axon extension [GO:0030516]; regulation of epithelial to mesenchymal transition [GO:0010717]; regulation of gastrulation [GO:0010470]; regulation of microtubule polymerization [GO:0031113]; regulation of microtubule polymerization or depolymerization [GO:0031110]; regulation of microtubule-based process [GO:0032886]; vesicle targeting [GO:0006903] -O75154 reviewed RFIP3_HUMAN Rab11 family-interacting protein 3 (FIP3) (FIP3-Rab11) (Rab11-FIP3) (Arfophilin-1) (EF hands-containing Rab-interacting protein) (Eferin) (MU-MB-17.148) RAB11FIP3 ARFO1 KIAA0665 cell division [GO:0051301]; early endosome to recycling endosome transport [GO:0061502]; endocytic recycling [GO:0032456]; Golgi to plasma membrane protein transport [GO:0043001]; negative regulation of adiponectin secretion [GO:0070164]; positive regulation of cilium assembly [GO:0045724]; positive regulation of mitotic cytokinetic process [GO:1903438]; protein localization to cilium [GO:0061512]; protein localization to cleavage furrow [GO:1905345]; regulation of cilium assembly [GO:1902017]; regulation of cytokinesis [GO:0032465]; regulation of early endosome to recycling endosome transport [GO:1902954]; regulation of endocytic recycling [GO:2001135]; regulation of protein localization to centrosome [GO:1904779]; regulation of vesicle-mediated transport [GO:0060627]; vesicle-mediated transport [GO:0016192] -O75351 reviewed VPS4B_HUMAN Vacuolar protein sorting-associated protein 4B (EC 3.6.4.6) (Cell migration-inducing gene 1 protein) (Suppressor of K(+) transport growth defect 1) (Protein SKD1) VPS4B SKD1 VPS42 MIG1 angiogenesis [GO:0001525]; autophagosome maturation [GO:0097352]; autophagy [GO:0006914]; canonical Wnt signaling pathway [GO:0060070]; cholesterol transport [GO:0030301]; endosomal transport [GO:0016197]; endosome to lysosome transport via multivesicular body sorting pathway [GO:0032510]; ESCRT III complex disassembly [GO:1904903]; establishment of blood-brain barrier [GO:0060856]; late endosomal microautophagy [GO:0061738]; late endosome to lysosome transport via multivesicular body sorting pathway [GO:0061764]; macroautophagy [GO:0016236]; membrane fission [GO:0090148]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body assembly [GO:0036258]; multivesicular body sorting pathway [GO:0071985]; negative regulation of exosomal secretion [GO:1903542]; nuclear membrane reassembly [GO:0031468]; nucleus organization [GO:0006997]; plasma membrane repair [GO:0001778]; positive regulation of centriole elongation [GO:1903724]; positive regulation of exosomal secretion [GO:1903543]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; potassium ion transport [GO:0006813]; protein depolymerization [GO:0051261]; protein transport [GO:0015031]; regulation of centrosome duplication [GO:0010824]; regulation of mitotic spindle assembly [GO:1901673]; response to lipid [GO:0033993]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; ubiquitin-independent protein catabolic process via the multivesicular body sorting pathway [GO:0090611]; vacuole organization [GO:0007033]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -O75400 reviewed PR40A_HUMAN Pre-mRNA-processing factor 40 homolog A (Fas ligand-associated factor 1) (Formin-binding protein 11) (Formin-binding protein 3) (Huntingtin yeast partner A) (Huntingtin-interacting protein 10) (HIP-10) (Huntingtin-interacting protein A) (Renal carcinoma antigen NY-REN-6) PRPF40A FBP11 FLAF1 FNBP3 HIP10 HYPA HSPC225 cell division [GO:0051301]; cell migration [GO:0016477]; cytoskeleton organization [GO:0007010]; mRNA cis splicing, via spliceosome [GO:0045292]; mRNA splicing, via spliceosome [GO:0000398]; regulation of cell shape [GO:0008360]; regulation of cytokinesis [GO:0032465] -O75410 reviewed TACC1_HUMAN Transforming acidic coiled-coil-containing protein 1 (Gastric cancer antigen Ga55) (Taxin-1) TACC1 KIAA1103 cell division [GO:0051301]; cell population proliferation [GO:0008283]; cerebral cortex development [GO:0021987]; microtubule cytoskeleton organization [GO:0000226]; mitotic spindle organization [GO:0007052] -O75449 reviewed KTNA1_HUMAN Katanin p60 ATPase-containing subunit A1 (Katanin p60 subunit A1) (EC 5.6.1.1) (p60 katanin) KATNA1 cell division [GO:0051301]; cytoplasmic microtubule organization [GO:0031122]; microtubule severing [GO:0051013] -O75909 reviewed CCNK_HUMAN Cyclin-K CCNK CPR4 cell division [GO:0051301]; DNA damage response [GO:0006974]; negative regulation by host of viral genome replication [GO:0044828]; positive regulation of DNA-templated transcription, elongation [GO:0032786]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0000079]; regulation of signal transduction [GO:0009966]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription by RNA polymerase II [GO:0006366] -O75935 reviewed DCTN3_HUMAN Dynactin subunit 3 (Dynactin complex subunit 22 kDa subunit) (p22) DCTN3 DCTN22 cytoskeleton-dependent cytokinesis [GO:0061640]; microtubule-based process [GO:0007017]; mitotic cell cycle [GO:0000278] -O76064 reviewed RNF8_HUMAN E3 ubiquitin-protein ligase RNF8 (hRNF8) (EC 2.3.2.27) (RING finger protein 8) (RING-type E3 ubiquitin transferase RNF8) RNF8 KIAA0646 cell division [GO:0051301]; DNA damage response [GO:0006974]; DNA repair-dependent chromatin remodeling [GO:0140861]; double-strand break repair [GO:0006302]; double-strand break repair via nonhomologous end joining [GO:0006303]; epigenetic regulation of gene expression [GO:0040029]; interstrand cross-link repair [GO:0036297]; isotype switching [GO:0045190]; negative regulation of transcription elongation by RNA polymerase II [GO:0034244]; positive regulation of DNA repair [GO:0045739]; positive regulation of double-strand break repair via homologous recombination [GO:1905168]; protein autoubiquitination [GO:0051865]; protein K48-linked ubiquitination [GO:0070936]; protein K6-linked ubiquitination [GO:0085020]; protein K63-linked ubiquitination [GO:0070534]; response to ionizing radiation [GO:0010212]; signal transduction in response to DNA damage [GO:0042770]; sperm DNA condensation [GO:0035092]; ubiquitin-dependent protein catabolic process [GO:0006511] -O76095 reviewed JTB_HUMAN Protein JTB (Jumping translocation breakpoint protein) (Prostate androgen-regulated protein) (PAR protein) JTB HSPC222 apoptotic mitochondrial changes [GO:0008637]; mitotic cell cycle [GO:0000278]; mitotic cytokinesis [GO:0000281]; positive regulation of protein kinase activity [GO:0045860]; regulation of cell population proliferation [GO:0042127] -O94762 reviewed RECQ5_HUMAN ATP-dependent DNA helicase Q5 (EC 5.6.2.4) (DNA 3'-5' helicase RecQ5) (DNA helicase, RecQ-like type 5) (RecQ5) (RecQ protein-like 5) RECQL5 RECQ5 cell division [GO:0051301]; cellular response to camptothecin [GO:0072757]; cellular response to xenobiotic stimulus [GO:0071466]; chromosome separation [GO:0051304]; DNA metabolic process [GO:0006259]; DNA repair [GO:0006281]; DNA replication [GO:0006260]; DNA unwinding involved in DNA replication [GO:0006268]; double-strand break repair via homologous recombination [GO:0000724]; mitotic cell cycle [GO:0000278]; mitotic DNA-templated DNA replication [GO:1990506]; negative regulation of double-strand break repair via homologous recombination [GO:2000042]; negative regulation of transcription elongation by RNA polymerase II [GO:0034244]; replication-born double-strand break repair via sister chromatid exchange [GO:1990414] -O94811 reviewed TPPP_HUMAN Tubulin polymerization-promoting protein (TPPP) (EC 3.6.5.-) (25 kDa brain-specific protein) (TPPP/p25) (p24) (p25-alpha) TPPP TPPP1 astral microtubule organization [GO:0030953]; cell division [GO:0051301]; microtubule bundle formation [GO:0001578]; microtubule nucleation by microtubule organizing center [GO:0051418]; microtubule polymerization [GO:0046785]; myelin assembly [GO:0032288]; negative regulation of tubulin deacetylation [GO:1904428]; oligodendrocyte development [GO:0014003]; oligodendrocyte differentiation [GO:0048709]; positive regulation of myelination [GO:0031643]; positive regulation of protein polymerization [GO:0032273]; positive regulation of protein-containing complex assembly [GO:0031334]; regulation of microtubule cytoskeleton organization [GO:0070507] -O94921 reviewed CDK14_HUMAN Cyclin-dependent kinase 14 (EC 2.7.11.22) (Cell division protein kinase 14) (Serine/threonine-protein kinase PFTAIRE-1) (hPFTAIRE1) CDK14 KIAA0834 PFTK1 cell division [GO:0051301]; G2/M transition of mitotic cell cycle [GO:0000086]; regulation of canonical Wnt signaling pathway [GO:0060828]; Wnt signaling pathway [GO:0016055] -O94927 reviewed HAUS5_HUMAN HAUS augmin-like complex subunit 5 HAUS5 KIAA0841 cell division [GO:0051301]; centrosome cycle [GO:0007098]; regulation of microtubule nucleation [GO:0010968]; spindle assembly [GO:0051225] -O94964 reviewed MTCL2_HUMAN Microtubule cross-linking factor 2 (SOGA family member 1) (Suppressor of glucose by autophagy) (Suppressor of glucose, autophagy-associated protein 1) [Cleaved into: N-terminal form; C-terminal 80 kDa form (80-kDa SOGA fragment)] MTCL2 C20orf117 KIAA0889 SOGA SOGA1 cell division [GO:0051301]; chromosome segregation [GO:0007059]; insulin receptor signaling pathway [GO:0008286]; negative regulation of gluconeogenesis [GO:0045721]; regulation of autophagy [GO:0010506] -O95067 reviewed CCNB2_HUMAN G2/mitotic-specific cyclin-B2 CCNB2 cell division [GO:0051301]; G2/MI transition of meiotic cell cycle [GO:0008315]; in utero embryonic development [GO:0001701]; mitotic cell cycle phase transition [GO:0044772]; regulation of growth [GO:0040008]; spindle assembly involved in female meiosis I [GO:0007057]; T cell homeostasis [GO:0043029]; thymus development [GO:0048538] -O95229 reviewed ZWINT_HUMAN ZW10 interactor (ZW10-interacting protein 1) (Zwint-1) ZWINT cell division [GO:0051301]; establishment of localization in cell [GO:0051649]; homologous chromosome orientation in meiotic metaphase I [GO:0031619]; mitotic sister chromatid segregation [GO:0000070]; mitotic spindle assembly checkpoint signaling [GO:0007094]; regulation of meiosis I spindle assembly checkpoint [GO:1905325] -O95235 reviewed KI20A_HUMAN Kinesin-like protein KIF20A (GG10_2) (Mitotic kinesin-like protein 2) (MKlp2) (Rab6-interacting kinesin-like protein) (Rabkinesin-6) KIF20A MKLP2 RAB6KIFL microtubule bundle formation [GO:0001578]; microtubule-based movement [GO:0007018]; midbody abscission [GO:0061952]; mitotic cytokinesis [GO:0000281]; protein transport [GO:0015031]; regulation of cytokinesis [GO:0032465] -O95239 reviewed KIF4A_HUMAN Chromosome-associated kinesin KIF4A (Chromokinesin-A) KIF4A KIF4 anterograde axonal transport [GO:0008089]; mitotic cytokinesis [GO:0000281]; mitotic spindle midzone assembly [GO:0051256]; mitotic spindle organization [GO:0007052]; organelle organization [GO:0006996]; spindle elongation [GO:0051231] -O95271 reviewed TNKS1_HUMAN Poly [ADP-ribose] polymerase tankyrase-1 (EC 2.4.2.30) (ADP-ribosyltransferase diphtheria toxin-like 5) (ARTD5) (Poly [ADP-ribose] polymerase 5A) (Protein poly-ADP-ribosyltransferase tankyrase-1) (EC 2.4.2.-) (TNKS-1) (TRF1-interacting ankyrin-related ADP-ribose polymerase) (Tankyrase I) (Tankyrase-1) (TANK1) TNKS PARP5A PARPL TIN1 TINF1 TNKS1 cell division [GO:0051301]; mitotic spindle organization [GO:0007052]; mRNA transport [GO:0051028]; negative regulation of maintenance of mitotic sister chromatid cohesion, telomeric [GO:1904908]; negative regulation of telomere maintenance via telomere lengthening [GO:1904357]; negative regulation of telomeric DNA binding [GO:1904743]; peptidyl-serine phosphorylation [GO:0018105]; peptidyl-threonine phosphorylation [GO:0018107]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of telomerase activity [GO:0051973]; positive regulation of telomere capping [GO:1904355]; positive regulation of telomere maintenance via telomerase [GO:0032212]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein auto-ADP-ribosylation [GO:0070213]; protein localization to chromosome, telomeric region [GO:0070198]; protein poly-ADP-ribosylation [GO:0070212]; protein polyubiquitination [GO:0000209]; protein transport [GO:0015031]; regulation of telomere maintenance via telomerase [GO:0032210]; spindle assembly [GO:0051225]; Wnt signaling pathway [GO:0016055] -O95347 reviewed SMC2_HUMAN Structural maintenance of chromosomes protein 2 (SMC protein 2) (SMC-2) (Chromosome-associated protein E) (hCAP-E) (XCAP-E homolog) SMC2 CAPE SMC2L1 PRO0324 cell division [GO:0051301]; kinetochore organization [GO:0051383]; meiotic chromosome condensation [GO:0010032]; meiotic chromosome segregation [GO:0045132]; mitotic chromosome condensation [GO:0007076]; positive regulation of chromosome condensation [GO:1905821]; positive regulation of chromosome segregation [GO:0051984]; positive regulation of chromosome separation [GO:1905820] -O95630 reviewed STABP_HUMAN STAM-binding protein (EC 3.4.19.-) (Associated molecule with the SH3 domain of STAM) (Endosome-associated ubiquitin isopeptidase) STAMBP AMSH cell surface receptor signaling pathway via JAK-STAT [GO:0007259]; hippocampal neuron apoptotic process [GO:0110088]; mitotic cytokinesis [GO:0000281]; negative regulation of hippocampal neuron apoptotic process [GO:0110091]; negative regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051898]; negative regulation of Ras protein signal transduction [GO:0046580]; positive regulation of cell population proliferation [GO:0008284]; protein deubiquitination [GO:0016579]; proteolysis [GO:0006508] -O95718 reviewed ERR2_HUMAN Steroid hormone receptor ERR2 (ERR beta-2) (Estrogen receptor-like 2) (Estrogen-related receptor beta) (ERR-beta) (Nuclear receptor subfamily 3 group B member 2) ESRRB ERRB2 ESRL2 NR3B2 cell dedifferentiation [GO:0043697]; cell population proliferation [GO:0008283]; inner ear development [GO:0048839]; intracellular steroid hormone receptor signaling pathway [GO:0030518]; negative regulation of stem cell differentiation [GO:2000737]; photoreceptor cell maintenance [GO:0045494]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of stem cell population maintenance [GO:1902459]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of stem cell division [GO:2000035]; regulation of transcription by RNA polymerase II [GO:0006357]; stem cell division [GO:0017145]; stem cell population maintenance [GO:0019827] -O95835 reviewed LATS1_HUMAN Serine/threonine-protein kinase LATS1 (EC 2.7.11.1) (Large tumor suppressor homolog 1) (WARTS protein kinase) (h-warts) LATS1 WARTS cell division [GO:0051301]; cytoplasmic sequestering of protein [GO:0051220]; G1/S transition of mitotic cell cycle [GO:0000082]; G2/M transition of mitotic cell cycle [GO:0000086]; hippo signaling [GO:0035329]; hormone-mediated signaling pathway [GO:0009755]; inner cell mass cell fate commitment [GO:0001827]; inner cell mass cellular morphogenesis [GO:0001828]; keratinocyte differentiation [GO:0030216]; mammary gland epithelial cell differentiation [GO:0060644]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0045736]; negative regulation of protein localization to nucleus [GO:1900181]; positive regulation of apoptotic process [GO:0043065]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; protein phosphorylation [GO:0006468]; regulation of actin filament polymerization [GO:0030833]; regulation of intracellular estrogen receptor signaling pathway [GO:0033146]; regulation of organ growth [GO:0046620]; regulation of protein-containing complex assembly [GO:0043254]; regulation of transforming growth factor beta receptor signaling pathway [GO:0017015]; regulation of ubiquitin-dependent protein catabolic process [GO:2000058]; sister chromatid segregation [GO:0000819] -O95997 reviewed PTTG1_HUMAN Securin (Esp1-associated protein) (Pituitary tumor-transforming gene 1 protein) (Tumor-transforming protein 1) (hPTTG) PTTG1 EAP1 PTTG TUTR1 cell division [GO:0051301]; chromosome organization [GO:0051276]; DNA repair [GO:0006281]; homologous chromosome segregation [GO:0045143]; spermatogenesis [GO:0007283] -O96017 reviewed CHK2_HUMAN Serine/threonine-protein kinase Chk2 (EC 2.7.11.1) (CHK2 checkpoint homolog) (Cds1 homolog) (Hucds1) (hCds1) (Checkpoint kinase 2) CHEK2 CDS1 CHK2 RAD53 cell division [GO:0051301]; cellular response to gamma radiation [GO:0071480]; DNA damage checkpoint signaling [GO:0000077]; DNA damage response [GO:0006974]; DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest [GO:0006977]; DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator [GO:0006978]; double-strand break repair [GO:0006302]; G2/M transition of mitotic cell cycle [GO:0000086]; intrinsic apoptotic signaling pathway in response to DNA damage [GO:0008630]; intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:0042771]; mitotic DNA damage checkpoint signaling [GO:0044773]; mitotic intra-S DNA damage checkpoint signaling [GO:0031573]; mitotic spindle assembly [GO:0090307]; positive regulation of DNA-templated transcription [GO:0045893]; protein autophosphorylation [GO:0046777]; protein catabolic process [GO:0030163]; protein phosphorylation [GO:0006468]; protein stabilization [GO:0050821]; regulation of autophagosome assembly [GO:2000785]; regulation of DNA-templated transcription [GO:0006355]; regulation of protein catabolic process [GO:0042176]; regulation of signal transduction by p53 class mediator [GO:1901796]; replicative senescence [GO:0090399]; signal transduction in response to DNA damage [GO:0042770]; thymocyte apoptotic process [GO:0070242] -O96020 reviewed CCNE2_HUMAN G1/S-specific cyclin-E2 CCNE2 cell division [GO:0051301]; DNA replication initiation [GO:0006270]; G1/S transition of mitotic cell cycle [GO:0000082]; homologous chromosome pairing at meiosis [GO:0007129]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0000079]; regulation of protein localization [GO:0032880]; telomere maintenance [GO:0000723] -P04150 reviewed GCR_HUMAN Glucocorticoid receptor (GR) (Nuclear receptor subfamily 3 group C member 1) NR3C1 GRL adrenal gland development [GO:0030325]; apoptotic process [GO:0006915]; astrocyte differentiation [GO:0048708]; cell division [GO:0051301]; cellular response to dexamethasone stimulus [GO:0071549]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to steroid hormone stimulus [GO:0071383]; cellular response to transforming growth factor beta stimulus [GO:0071560]; chromatin organization [GO:0006325]; chromosome segregation [GO:0007059]; gene expression [GO:0010467]; glucocorticoid metabolic process [GO:0008211]; intracellular steroid hormone receptor signaling pathway [GO:0030518]; mammary gland duct morphogenesis [GO:0060603]; maternal behavior [GO:0042711]; microglia differentiation [GO:0014004]; motor behavior [GO:0061744]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuroinflammatory response [GO:0150076]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of DNA-templated transcription [GO:0006355]; regulation of glucocorticoid biosynthetic process [GO:0031946]; regulation of gluconeogenesis [GO:0006111]; regulation of transcription by RNA polymerase II [GO:0006357]; signal transduction [GO:0007165]; synaptic transmission, glutamatergic [GO:0035249] -P04899 reviewed GNAI2_HUMAN Guanine nucleotide-binding protein G(i) subunit alpha-2 (Adenylate cyclase-inhibiting G alpha protein) GNAI2 GNAI2B adenylate cyclase-activating G protein-coupled receptor signaling pathway [GO:0007189]; adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway [GO:0007193]; cell division [GO:0051301]; cell population proliferation [GO:0008283]; G protein-coupled acetylcholine receptor signaling pathway [GO:0007213]; G protein-coupled adenosine receptor signaling pathway [GO:0001973]; G protein-coupled receptor signaling pathway [GO:0007186]; gamma-aminobutyric acid signaling pathway [GO:0007214]; negative regulation of adenylate cyclase activity [GO:0007194]; negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process [GO:0140199]; negative regulation of apoptotic signaling pathway [GO:2001234]; negative regulation of calcium ion-dependent exocytosis [GO:0045955]; negative regulation of synaptic transmission [GO:0050805]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of insulin receptor signaling pathway [GO:0046628]; positive regulation of neural precursor cell proliferation [GO:2000179]; positive regulation of superoxide anion generation [GO:0032930]; positive regulation of urine volume [GO:0035810]; positive regulation of vascular associated smooth muscle cell proliferation [GO:1904707]; regulation of calcium ion transport [GO:0051924]; response to nutrient [GO:0007584]; signal transduction [GO:0007165] -P06400 reviewed RB_HUMAN Retinoblastoma-associated protein (p105-Rb) (p110-RB1) (pRb) (Rb) (pp110) RB1 aortic valve morphogenesis [GO:0003180]; cell differentiation [GO:0030154]; cell division [GO:0051301]; cell morphogenesis involved in neuron differentiation [GO:0048667]; cellular response to insulin stimulus [GO:0032869]; cellular response to xenobiotic stimulus [GO:0071466]; chondrocyte differentiation [GO:0002062]; chromatin remodeling [GO:0006338]; chromosome organization [GO:0051276]; digestive tract development [GO:0048565]; enucleate erythrocyte differentiation [GO:0043353]; epithelial cell proliferation [GO:0050673]; G1/S transition of mitotic cell cycle [GO:0000082]; glial cell apoptotic process [GO:0034349]; glial cell proliferation [GO:0014009]; hepatocyte apoptotic process [GO:0097284]; heterochromatin formation [GO:0031507]; maintenance of mitotic sister chromatid cohesion [GO:0034088]; myoblast differentiation [GO:0045445]; negative regulation of apoptotic signaling pathway [GO:2001234]; negative regulation of cell cycle [GO:0045786]; negative regulation of cell growth [GO:0030308]; negative regulation of cold-induced thermogenesis [GO:0120163]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of G1/S transition of mitotic cell cycle [GO:2000134]; negative regulation of gene expression [GO:0010629]; negative regulation of glial cell proliferation [GO:0060253]; negative regulation of hepatocyte apoptotic process [GO:1903944]; negative regulation of inflammatory response [GO:0050728]; negative regulation of myofibroblast differentiation [GO:1904761]; negative regulation of protein kinase activity [GO:0006469]; negative regulation of protein serine/threonine kinase activity [GO:0071901]; negative regulation of smoothened signaling pathway [GO:0045879]; negative regulation of tau-protein kinase activity [GO:1902948]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron apoptotic process [GO:0051402]; neuron maturation [GO:0042551]; neuron projection development [GO:0031175]; positive regulation of collagen fibril organization [GO:1904028]; positive regulation of extracellular matrix organization [GO:1903055]; positive regulation of macrophage differentiation [GO:0045651]; positive regulation of mitotic metaphase/anaphase transition [GO:0045842]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription regulatory region DNA binding [GO:2000679]; protein localization to chromosome, centromeric region [GO:0071459]; Ras protein signal transduction [GO:0007265]; regulation of cell cycle [GO:0051726]; regulation of centromere complex assembly [GO:0090230]; regulation of DNA-templated transcription [GO:0006355]; regulation of lipid kinase activity [GO:0043550]; regulation of mitotic cell cycle [GO:0007346]; sister chromatid biorientation [GO:0031134]; skeletal muscle cell differentiation [GO:0035914]; smoothened signaling pathway [GO:0007224]; spermatogenesis [GO:0007283]; striated muscle cell differentiation [GO:0051146]; tissue homeostasis [GO:0001894]; transcription by RNA polymerase II [GO:0006366] -P06493 reviewed CDK1_HUMAN Cyclin-dependent kinase 1 (CDK1) (EC 2.7.11.22) (EC 2.7.11.23) (Cell division control protein 2 homolog) (Cell division protein kinase 1) (p34 protein kinase) CDK1 CDC2 CDC28A CDKN1 P34CDC2 animal organ regeneration [GO:0031100]; apoptotic process [GO:0006915]; cell division [GO:0051301]; cell migration [GO:0016477]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to organic cyclic compound [GO:0071407]; centrosome cycle [GO:0007098]; chromosome condensation [GO:0030261]; DNA damage response [GO:0006974]; DNA repair [GO:0006281]; DNA replication [GO:0006260]; epithelial cell differentiation [GO:0030855]; ERK1 and ERK2 cascade [GO:0070371]; fibroblast proliferation [GO:0048144]; G1/S transition of mitotic cell cycle [GO:0000082]; G2/M transition of mitotic cell cycle [GO:0000086]; Golgi disassembly [GO:0090166]; microtubule cytoskeleton organization [GO:0000226]; microtubule cytoskeleton organization involved in mitosis [GO:1902850]; mitotic G2 DNA damage checkpoint signaling [GO:0007095]; mitotic nuclear membrane disassembly [GO:0007077]; negative regulation of apoptotic process [GO:0043066]; negative regulation of gene expression [GO:0010629]; peptidyl-serine phosphorylation [GO:0018105]; peptidyl-threonine phosphorylation [GO:0018107]; positive regulation of cardiac muscle cell proliferation [GO:0060045]; positive regulation of DNA replication [GO:0045740]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; positive regulation of gene expression [GO:0010628]; positive regulation of mitochondrial ATP synthesis coupled electron transport [GO:1905448]; positive regulation of mitotic sister chromatid segregation [GO:0062033]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of protein localization to nucleus [GO:1900182]; pronuclear fusion [GO:0007344]; protein localization to kinetochore [GO:0034501]; protein phosphorylation [GO:0006468]; protein-containing complex assembly [GO:0065003]; regulation of attachment of mitotic spindle microtubules to kinetochore [GO:1902423]; regulation of circadian rhythm [GO:0042752]; regulation of embryonic development [GO:0045995]; regulation of Schwann cell differentiation [GO:0014038]; response to activity [GO:0014823]; response to amine [GO:0014075]; response to axon injury [GO:0048678]; response to cadmium ion [GO:0046686]; response to copper ion [GO:0046688]; response to ethanol [GO:0045471]; response to toxic substance [GO:0009636]; response to xenobiotic stimulus [GO:0009410]; rhythmic process [GO:0048511]; ventricular cardiac muscle cell development [GO:0055015] -P07437 reviewed TBB5_HUMAN Tubulin beta chain (Tubulin beta-5 chain) TUBB TUBB5 OK/SW-cl.56 cell division [GO:0051301]; cytoskeleton-dependent intracellular transport [GO:0030705]; microtubule cytoskeleton organization [GO:0000226]; microtubule-based process [GO:0007017]; mitotic cell cycle [GO:0000278]; natural killer cell mediated cytotoxicity [GO:0042267]; odontoblast differentiation [GO:0071895]; regulation of synapse organization [GO:0050807]; spindle assembly [GO:0051225] -P08134 reviewed RHOC_HUMAN Rho-related GTP-binding protein RhoC (Rho cDNA clone 9) (h9) RHOC ARH9 ARHC actin filament organization [GO:0007015]; apical junction assembly [GO:0043297]; mitotic cytokinesis [GO:0000281]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cell migration [GO:0030335]; positive regulation of lipase activity [GO:0060193]; positive regulation of protein-containing complex assembly [GO:0031334]; positive regulation of stress fiber assembly [GO:0051496]; regulation of actin cytoskeleton organization [GO:0032956]; signal transduction [GO:0007165]; skeletal muscle satellite cell migration [GO:1902766]; small GTPase-mediated signal transduction [GO:0007264]; wound healing, spreading of cells [GO:0044319] -P08754 reviewed GNAI3_HUMAN Guanine nucleotide-binding protein G(i) subunit alpha-3 (G(i) alpha-3) GNAI3 adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway [GO:0007193]; adenylate cyclase-modulating G protein-coupled receptor signaling pathway [GO:0007188]; cell division [GO:0051301]; dopamine receptor signaling pathway [GO:0007212]; GTP metabolic process [GO:0046039]; negative regulation of adenylate cyclase activity [GO:0007194]; positive regulation of macroautophagy [GO:0016239] -P09496 reviewed CLCA_HUMAN Clathrin light chain A (Lca) CLTA cell division [GO:0051301]; clathrin coat assembly [GO:0048268]; clathrin-dependent endocytosis [GO:0072583]; intracellular protein transport [GO:0006886] -P11171 reviewed EPB41_HUMAN Protein 4.1 (P4.1) (4.1R) (Band 4.1) (EPB4.1) (Erythrocyte membrane protein band 4.1) EPB41 E41P actin cytoskeleton organization [GO:0030036]; actomyosin structure organization [GO:0031032]; cell division [GO:0051301]; cortical actin cytoskeleton organization [GO:0030866]; positive regulation of protein binding [GO:0032092]; positive regulation of protein localization to cell cortex [GO:1904778]; protein-containing complex assembly [GO:0065003]; regulation of calcium ion transport [GO:0051924]; regulation of intestinal absorption [GO:1904478] -P11233 reviewed RALA_HUMAN Ras-related protein Ral-A (EC 3.6.5.2) RALA RAL cell division [GO:0051301]; chemotaxis [GO:0006935]; establishment of protein localization to mitochondrion [GO:0072655]; exocytosis [GO:0006887]; membrane raft localization [GO:0051665]; neural tube closure [GO:0001843]; positive regulation of epidermal growth factor receptor signaling pathway [GO:0045742]; positive regulation of filopodium assembly [GO:0051491]; positive regulation of mitochondrial fission [GO:0090141]; Ras protein signal transduction [GO:0007265]; receptor internalization [GO:0031623]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of exocytosis [GO:0017157]; regulation of postsynaptic neurotransmitter receptor internalization [GO:0099149]; signal transduction [GO:0007165] -P11234 reviewed RALB_HUMAN Ras-related protein Ral-B (EC 3.6.5.2) RALB apoptotic process [GO:0006915]; cell division [GO:0051301]; cellular response to exogenous dsRNA [GO:0071360]; cellular response to starvation [GO:0009267]; negative regulation of protein binding [GO:0032091]; positive regulation of autophagosome assembly [GO:2000786]; positive regulation of epidermal growth factor receptor signaling pathway [GO:0045742]; positive regulation of protein binding [GO:0032092]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of protein serine/threonine kinase activity [GO:0071902]; Ras protein signal transduction [GO:0007265]; receptor internalization [GO:0031623]; regulation of exocyst assembly [GO:0001928]; regulation of exocyst localization [GO:0060178]; signal transduction [GO:0007165] -P11362 reviewed FGFR1_HUMAN Fibroblast growth factor receptor 1 (FGFR-1) (EC 2.7.10.1) (Basic fibroblast growth factor receptor 1) (BFGFR) (bFGF-R-1) (Fms-like tyrosine kinase 2) (FLT-2) (N-sam) (Proto-oncogene c-Fgr) (CD antigen CD331) FGFR1 BFGFR CEK FGFBR FLG FLT2 HBGFR angiogenesis [GO:0001525]; auditory receptor cell development [GO:0060117]; branching involved in salivary gland morphogenesis [GO:0060445]; calcium ion homeostasis [GO:0055074]; cardiac muscle cell proliferation [GO:0060038]; cell maturation [GO:0048469]; cell migration [GO:0016477]; cell projection assembly [GO:0030031]; cellular response to fibroblast growth factor stimulus [GO:0044344]; cementum mineralization [GO:0071529]; chondrocyte differentiation [GO:0002062]; chordate embryonic development [GO:0043009]; diphosphate metabolic process [GO:0071344]; embryonic limb morphogenesis [GO:0030326]; epithelial to mesenchymal transition [GO:0001837]; fibroblast growth factor receptor signaling pathway [GO:0008543]; fibroblast growth factor receptor signaling pathway involved in orbitofrontal cortex development [GO:0035607]; gene expression [GO:0010467]; in utero embryonic development [GO:0001701]; inner ear morphogenesis [GO:0042472]; lung-associated mesenchyme development [GO:0060484]; MAPK cascade [GO:0000165]; mesenchymal cell proliferation [GO:0010463]; midbrain development [GO:0030901]; middle ear morphogenesis [GO:0042474]; negative regulation of fibroblast growth factor production [GO:0090272]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron migration [GO:0001764]; neuron projection development [GO:0031175]; organ induction [GO:0001759]; outer ear morphogenesis [GO:0042473]; paraxial mesoderm development [GO:0048339]; peptidyl-tyrosine phosphorylation [GO:0018108]; phosphatidylinositol-mediated signaling [GO:0048015]; positive regulation of blood vessel endothelial cell migration [GO:0043536]; positive regulation of cardiac muscle cell proliferation [GO:0060045]; positive regulation of cell differentiation [GO:0045597]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of endothelial cell chemotaxis [GO:2001028]; positive regulation of MAP kinase activity [GO:0043406]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of MAPKKK cascade by fibroblast growth factor receptor signaling pathway [GO:0090080]; positive regulation of mesenchymal cell proliferation [GO:0002053]; positive regulation of mitotic cell cycle DNA replication [GO:1903465]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of neuron projection development [GO:0010976]; positive regulation of parathyroid hormone secretion [GO:2000830]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of phospholipase activity [GO:0010518]; positive regulation of phospholipase C activity [GO:0010863]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of vascular endothelial cell proliferation [GO:1905564]; protein autophosphorylation [GO:0046777]; protein phosphorylation [GO:0006468]; regulation of branching involved in salivary gland morphogenesis by mesenchymal-epithelial signaling [GO:0060665]; regulation of cell differentiation [GO:0045595]; regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001239]; regulation of lateral mesodermal cell fate specification [GO:0048378]; regulation of phosphate transport [GO:0010966]; response to sodium phosphate [GO:1904383]; sensory perception of sound [GO:0007605]; skeletal system development [GO:0001501]; skeletal system morphogenesis [GO:0048705]; stem cell differentiation [GO:0048863]; stem cell proliferation [GO:0072089]; ureteric bud development [GO:0001657]; ventricular zone neuroblast division [GO:0021847]; vitamin D3 metabolic process [GO:0070640] -P11387 reviewed TOP1_HUMAN DNA topoisomerase 1 (EC 5.6.2.1) (DNA topoisomerase I) TOP1 chromatin remodeling [GO:0006338]; chromosome segregation [GO:0007059]; circadian regulation of gene expression [GO:0032922]; circadian rhythm [GO:0007623]; DNA replication [GO:0006260]; DNA topological change [GO:0006265]; embryonic cleavage [GO:0040016]; peptidyl-serine phosphorylation [GO:0018105]; phosphorylation [GO:0016310]; programmed cell death [GO:0012501]; response to xenobiotic stimulus [GO:0009410] -P11388 reviewed TOP2A_HUMAN DNA topoisomerase 2-alpha (EC 5.6.2.2) (DNA topoisomerase II, alpha isozyme) TOP2A TOP2 apoptotic chromosome condensation [GO:0030263]; chromosome segregation [GO:0007059]; DNA damage response [GO:0006974]; DNA ligation [GO:0006266]; DNA topological change [GO:0006265]; embryonic cleavage [GO:0040016]; female meiotic nuclear division [GO:0007143]; hematopoietic progenitor cell differentiation [GO:0002244]; negative regulation of DNA duplex unwinding [GO:1905463]; positive regulation of apoptotic process [GO:0043065]; positive regulation of single stranded viral RNA replication via double stranded DNA intermediate [GO:0045870]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of circadian rhythm [GO:0042752]; resolution of meiotic recombination intermediates [GO:0000712]; rhythmic process [GO:0048511]; sister chromatid segregation [GO:0000819] -P11802 reviewed CDK4_HUMAN Cyclin-dependent kinase 4 (EC 2.7.11.22) (Cell division protein kinase 4) (PSK-J3) CDK4 cell division [GO:0051301]; cellular response to interleukin-4 [GO:0071353]; cellular response to ionomycin [GO:1904637]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to phorbol 13-acetate 12-myristate [GO:1904628]; G1/S transition of mitotic cell cycle [GO:0000082]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; protein phosphorylation [GO:0006468]; regulation of cell cycle [GO:0051726]; regulation of G2/M transition of mitotic cell cycle [GO:0010389]; regulation of gene expression [GO:0010468]; regulation of transcription initiation by RNA polymerase II [GO:0060260]; regulation of type B pancreatic cell proliferation [GO:0061469]; response to organic substance [GO:0010033]; response to xenobiotic stimulus [GO:0009410]; signal transduction [GO:0007165] -P12270 reviewed TPR_HUMAN Nucleoprotein TPR (Megator) (NPC-associated intranuclear protein) (Translocated promoter region protein) TPR cell division [GO:0051301]; cellular response to heat [GO:0034605]; cellular response to interferon-alpha [GO:0035457]; mitotic spindle assembly checkpoint signaling [GO:0007094]; mRNA export from nucleus [GO:0006406]; mRNA export from nucleus in response to heat stress [GO:0031990]; negative regulation of RNA export from nucleus [GO:0046832]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of translational initiation [GO:0045947]; nuclear pore organization [GO:0006999]; nucleocytoplasmic transport [GO:0006913]; positive regulation of heterochromatin formation [GO:0031453]; positive regulation of intracellular protein transport [GO:0090316]; positive regulation of mitotic cell cycle spindle assembly checkpoint [GO:0090267]; positive regulation of protein export from nucleus [GO:0046827]; positive regulation of protein import into nucleus [GO:0042307]; protein import into nucleus [GO:0006606]; regulation of mitotic sister chromatid separation [GO:0010965]; regulation of mitotic spindle assembly [GO:1901673]; regulation of protein localization [GO:0032880]; response to epidermal growth factor [GO:0070849]; RNA export from nucleus [GO:0006405]; RNA import into nucleus [GO:0006404] -P14635 reviewed CCNB1_HUMAN G2/mitotic-specific cyclin-B1 CCNB1 CCNB cell division [GO:0051301]; G2/M transition of mitotic cell cycle [GO:0000086]; in utero embryonic development [GO:0001701]; mitotic cell cycle phase transition [GO:0044772]; mitotic metaphase chromosome alignment [GO:0007080]; mitotic spindle organization [GO:0007052]; positive regulation of attachment of spindle microtubules to kinetochore [GO:0051987]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; positive regulation of mitochondrial ATP synthesis coupled electron transport [GO:1905448]; positive regulation of mitotic cell cycle [GO:0045931]; regulation of mitotic cell cycle spindle assembly checkpoint [GO:0090266] -P16949 reviewed STMN1_HUMAN Stathmin (Leukemia-associated phosphoprotein p18) (Metablastin) (Oncoprotein 18) (Op18) (Phosphoprotein p19) (pp19) (Prosolin) (Protein Pr22) (pp17) STMN1 C1orf215 LAP18 OP18 axonogenesis [GO:0007409]; establishment of skin barrier [GO:0061436]; hepatocyte growth factor receptor signaling pathway [GO:0048012]; intracellular signal transduction [GO:0035556]; microtubule depolymerization [GO:0007019]; mitotic cytokinesis [GO:0000281]; mitotic spindle organization [GO:0007052]; negative regulation of guanyl-nucleotide exchange factor activity [GO:1905098]; negative regulation of microtubule polymerization [GO:0031115]; negative regulation of Rho protein signal transduction [GO:0035024]; negative regulation of stress fiber assembly [GO:0051497]; negative regulation of thrombin-activated receptor signaling pathway [GO:0070495]; neuron projection development [GO:0031175]; regulation of cell migration [GO:0030334]; regulation of microtubule polymerization or depolymerization [GO:0031110]; response to virus [GO:0009615]; signal transduction [GO:0007165] -P17020 reviewed ZNF16_HUMAN Zinc finger protein 16 (Zinc finger protein KOX9) ZNF16 HZF1 KOX9 cell division [GO:0051301]; cellular response to sodium dodecyl sulfate [GO:0072707]; negative regulation of apoptotic process [GO:0043066]; positive regulation of cell cycle phase transition [GO:1901989]; positive regulation of cell division [GO:0051781]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of erythrocyte differentiation [GO:0045648]; positive regulation of kinase activity [GO:0033674]; positive regulation of megakaryocyte differentiation [GO:0045654]; regulation of transcription by RNA polymerase II [GO:0006357] -P17483 reviewed HXB4_HUMAN Homeobox protein Hox-B4 (Homeobox protein Hox-2.6) (Homeobox protein Hox-2F) HOXB4 HOX2F anterior/posterior pattern specification [GO:0009952]; bone marrow development [GO:0048539]; definitive hemopoiesis [GO:0060216]; embryonic skeletal system morphogenesis [GO:0048704]; hematopoietic stem cell differentiation [GO:0060218]; hematopoietic stem cell proliferation [GO:0071425]; morphogenesis of an epithelial sheet [GO:0002011]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of stem cell differentiation [GO:2000738]; positive regulation of transcription by RNA polymerase II [GO:0045944]; somatic stem cell division [GO:0048103]; spleen development [GO:0048536] -P18074 reviewed ERCC2_HUMAN General transcription and DNA repair factor IIH helicase subunit XPD (TFIIH subunit XPD) (EC 5.6.2.3) (Basic transcription factor 2 80 kDa subunit) (BTF2 p80) (CXPD) (DNA 5'-3' helicase XPD) (DNA excision repair protein ERCC-2) (DNA repair protein complementing XP-D cells) (TFIIH basal transcription factor complex 80 kDa subunit) (TFIIH 80 kDa subunit) (TFIIH p80) (Xeroderma pigmentosum group D-complementing protein) ERCC2 XPD XPDC apoptotic process [GO:0006915]; bone mineralization [GO:0030282]; central nervous system myelin formation [GO:0032289]; chromosome segregation [GO:0007059]; determination of adult lifespan [GO:0008340]; embryonic cleavage [GO:0040016]; embryonic organ development [GO:0048568]; erythrocyte maturation [GO:0043249]; extracellular matrix organization [GO:0030198]; hair cell differentiation [GO:0035315]; hair follicle maturation [GO:0048820]; hematopoietic stem cell differentiation [GO:0060218]; hematopoietic stem cell proliferation [GO:0071425]; in utero embryonic development [GO:0001701]; insulin-like growth factor receptor signaling pathway [GO:0048009]; intrinsic apoptotic signaling pathway by p53 class mediator [GO:0072332]; maturation of SSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA) [GO:0000462]; multicellular organism growth [GO:0035264]; nucleotide-excision repair [GO:0006289]; positive regulation of mitotic recombination [GO:0045951]; post-embryonic development [GO:0009791]; regulation of mitotic cell cycle phase transition [GO:1901990]; regulation of transcription by RNA polymerase II [GO:0006357]; response to hypoxia [GO:0001666]; response to oxidative stress [GO:0006979]; spinal cord development [GO:0021510]; transcription by RNA polymerase II [GO:0006366]; transcription elongation by RNA polymerase I [GO:0006362]; transcription initiation at RNA polymerase II promoter [GO:0006367]; transcription-coupled nucleotide-excision repair [GO:0006283]; UV protection [GO:0009650] -P18583 reviewed SON_HUMAN Protein SON (Bax antagonist selected in saccharomyces 1) (BASS1) (Negative regulatory element-binding protein) (NRE-binding protein) (Protein DBP-5) (SON3) SON C21orf50 DBP5 KIAA1019 NREBP HSPC310 HSPC312 microtubule cytoskeleton organization [GO:0000226]; mitotic cytokinesis [GO:0000281]; mRNA processing [GO:0006397]; negative regulation of apoptotic process [GO:0043066]; regulation of cell cycle [GO:0051726]; regulation of mRNA splicing, via spliceosome [GO:0048024]; regulation of RNA splicing [GO:0043484]; RNA splicing [GO:0008380] -P18754 reviewed RCC1_HUMAN Regulator of chromosome condensation (Cell cycle regulatory protein) (Chromosome condensation protein 1) RCC1 CHC1 cell division [GO:0051301]; chromosome segregation [GO:0007059]; G1/S transition of mitotic cell cycle [GO:0000082]; mitotic nuclear membrane reassembly [GO:0007084]; mitotic spindle organization [GO:0007052]; regulation of mitotic nuclear division [GO:0007088]; spindle assembly [GO:0051225]; viral process [GO:0016032] -P18858 reviewed DNLI1_HUMAN DNA ligase 1 (EC 6.5.1.1) (DNA ligase I) (Polydeoxyribonucleotide synthase [ATP] 1) LIG1 anatomical structure morphogenesis [GO:0009653]; base-excision repair [GO:0006284]; base-excision repair, gap-filling [GO:0006287]; cell division [GO:0051301]; DNA biosynthetic process [GO:0071897]; DNA ligation [GO:0006266]; DNA recombination [GO:0006310]; DNA repair [GO:0006281]; lagging strand elongation [GO:0006273]; mismatch repair [GO:0006298]; Okazaki fragment processing involved in mitotic DNA replication [GO:1903461] -P20248 reviewed CCNA2_HUMAN Cyclin-A2 (Cyclin-A) (Cyclin A) CCNA2 CCN1 CCNA animal organ regeneration [GO:0031100]; cell cycle G1/S phase transition [GO:0044843]; cell division [GO:0051301]; cellular response to cocaine [GO:0071314]; cellular response to estradiol stimulus [GO:0071392]; cellular response to hypoxia [GO:0071456]; cellular response to insulin-like growth factor stimulus [GO:1990314]; cellular response to leptin stimulus [GO:0044320]; cellular response to luteinizing hormone stimulus [GO:0071373]; cellular response to nitric oxide [GO:0071732]; cellular response to platelet-derived growth factor stimulus [GO:0036120]; cochlea development [GO:0090102]; DNA-templated transcription [GO:0006351]; G1/S transition of mitotic cell cycle [GO:0000082]; G2/M transition of mitotic cell cycle [GO:0000086]; mitotic cell cycle phase transition [GO:0044772]; positive regulation of DNA biosynthetic process [GO:2000573]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of fibroblast proliferation [GO:0048146]; post-translational protein modification [GO:0043687]; Ras protein signal transduction [GO:0007265]; regulation of DNA replication [GO:0006275]; response to glucagon [GO:0033762] -P20264 reviewed PO3F3_HUMAN POU domain, class 3, transcription factor 3 (Brain-specific homeobox/POU domain protein 1) (Brain-1) (Brn-1) (Octamer-binding protein 8) (Oct-8) (Octamer-binding transcription factor 8) (OTF-8) POU3F3 BRN1 OTF8 central nervous system development [GO:0007417]; cerebral cortex radially oriented cell migration [GO:0021799]; chemical homeostasis [GO:0048878]; forebrain ventricular zone progenitor cell division [GO:0021869]; metanephric ascending thin limb development [GO:0072218]; metanephric DCT cell differentiation [GO:0072240]; metanephric loop of Henle development [GO:0072236]; metanephric macula densa development [GO:0072227]; metanephric thick ascending limb development [GO:0072233]; negative regulation of apoptotic process [GO:0043066]; negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; urea transmembrane transport [GO:0071918] -P20265 reviewed PO3F2_HUMAN POU domain, class 3, transcription factor 2 (Brain-specific homeobox/POU domain protein 2) (Brain-2) (Brn-2) (Nervous system-specific octamer-binding transcription factor N-Oct-3) (Octamer-binding protein 7) (Oct-7) (Octamer-binding transcription factor 7) (OTF-7) POU3F2 BRN2 OCT7 OTF7 cellular response to organic substance [GO:0071310]; cerebral cortex radially oriented cell migration [GO:0021799]; epidermis development [GO:0008544]; forebrain astrocyte development [GO:0021897]; forebrain ventricular zone progenitor cell division [GO:0021869]; hypothalamus cell differentiation [GO:0021979]; myelination in peripheral nervous system [GO:0022011]; negative regulation of gene expression [GO:0010629]; nervous system development [GO:0007399]; neuroendocrine cell differentiation [GO:0061101]; neurohypophysis development [GO:0021985]; neuron development [GO:0048666]; neuron differentiation [GO:0030182]; neuron fate commitment [GO:0048663]; neuron fate specification [GO:0048665]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of multicellular organism growth [GO:0040018]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of axonogenesis [GO:0050770]; regulation of cell differentiation [GO:0045595]; regulation of transcription by RNA polymerase II [GO:0006357] -P20936 reviewed RASA1_HUMAN Ras GTPase-activating protein 1 (GAP) (GTPase-activating protein) (RasGAP) (Ras p21 protein activator) (p120GAP) RASA1 GAP RASA blood vessel morphogenesis [GO:0048514]; ephrin receptor signaling pathway [GO:0048013]; intracellular signal transduction [GO:0035556]; mitotic cytokinesis [GO:0000281]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cell adhesion [GO:0007162]; negative regulation of cell-matrix adhesion [GO:0001953]; negative regulation of neuron apoptotic process [GO:0043524]; regulation of actin filament polymerization [GO:0030833]; regulation of cell shape [GO:0008360]; regulation of RNA metabolic process [GO:0051252]; signal transduction [GO:0007165]; vasculogenesis [GO:0001570] -P21802 reviewed FGFR2_HUMAN Fibroblast growth factor receptor 2 (FGFR-2) (EC 2.7.10.1) (K-sam) (KGFR) (Keratinocyte growth factor receptor) (CD antigen CD332) FGFR2 BEK KGFR KSAM angiogenesis [GO:0001525]; animal organ morphogenesis [GO:0009887]; apoptotic process [GO:0006915]; axonogenesis [GO:0007409]; bone development [GO:0060348]; bone mineralization [GO:0030282]; bone morphogenesis [GO:0060349]; branch elongation involved in salivary gland morphogenesis [GO:0060667]; branching involved in labyrinthine layer morphogenesis [GO:0060670]; branching involved in prostate gland morphogenesis [GO:0060442]; branching involved in salivary gland morphogenesis [GO:0060445]; branching morphogenesis of a nerve [GO:0048755]; bud elongation involved in lung branching [GO:0060449]; cell fate commitment [GO:0045165]; cell-cell signaling [GO:0007267]; cellular response to hypoxia [GO:0071456]; cellular response to retinoic acid [GO:0071300]; cellular response to transforming growth factor beta stimulus [GO:0071560]; digestive tract development [GO:0048565]; embryonic cranial skeleton morphogenesis [GO:0048701]; embryonic digestive tract morphogenesis [GO:0048557]; embryonic organ development [GO:0048568]; embryonic organ morphogenesis [GO:0048562]; embryonic pattern specification [GO:0009880]; endochondral bone growth [GO:0003416]; epidermis morphogenesis [GO:0048730]; epithelial cell differentiation [GO:0030855]; epithelial cell proliferation involved in salivary gland morphogenesis [GO:0060664]; epithelial to mesenchymal transition [GO:0001837]; fibroblast growth factor receptor signaling pathway [GO:0008543]; fibroblast growth factor receptor signaling pathway involved in hemopoiesis [GO:0035603]; fibroblast growth factor receptor signaling pathway involved in mammary gland specification [GO:0060595]; fibroblast growth factor receptor signaling pathway involved in negative regulation of apoptotic process in bone marrow cell [GO:0035602]; fibroblast growth factor receptor signaling pathway involved in orbitofrontal cortex development [GO:0035607]; fibroblast growth factor receptor signaling pathway involved in positive regulation of cell proliferation in bone marrow [GO:0035604]; gland morphogenesis [GO:0022612]; hair follicle morphogenesis [GO:0031069]; in utero embryonic development [GO:0001701]; inner ear morphogenesis [GO:0042472]; lacrimal gland development [GO:0032808]; lateral sprouting from an epithelium [GO:0060601]; limb bud formation [GO:0060174]; lung alveolus development [GO:0048286]; lung development [GO:0030324]; lung lobe morphogenesis [GO:0060463]; lung-associated mesenchyme development [GO:0060484]; mammary gland bud formation [GO:0060615]; membranous septum morphogenesis [GO:0003149]; mesenchymal cell differentiation [GO:0048762]; mesenchymal cell differentiation involved in lung development [GO:0060915]; mesenchymal cell proliferation involved in lung development [GO:0060916]; mesodermal cell differentiation [GO:0048333]; midbrain development [GO:0030901]; morphogenesis of embryonic epithelium [GO:0016331]; negative regulation of keratinocyte proliferation [GO:0010839]; negative regulation of transcription by RNA polymerase II [GO:0000122]; odontogenesis [GO:0042476]; orbitofrontal cortex development [GO:0021769]; organ growth [GO:0035265]; otic vesicle formation [GO:0030916]; outflow tract septum morphogenesis [GO:0003148]; peptidyl-tyrosine phosphorylation [GO:0018108]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of cardiac muscle cell proliferation [GO:0060045]; positive regulation of cell cycle [GO:0045787]; positive regulation of cell division [GO:0051781]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of epithelial cell proliferation involved in lung morphogenesis [GO:0060501]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of mesenchymal cell proliferation [GO:0002053]; positive regulation of phospholipase activity [GO:0010518]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vascular associated smooth muscle cell proliferation [GO:1904707]; positive regulation of Wnt signaling pathway [GO:0030177]; post-embryonic development [GO:0009791]; prostate epithelial cord arborization involved in prostate glandular acinus morphogenesis [GO:0060527]; prostate epithelial cord elongation [GO:0060523]; prostate gland morphogenesis [GO:0060512]; protein autophosphorylation [GO:0046777]; pyramidal neuron development [GO:0021860]; regulation of ERK1 and ERK2 cascade [GO:0070372]; regulation of morphogenesis of a branching structure [GO:0060688]; regulation of osteoblast differentiation [GO:0045667]; regulation of osteoblast proliferation [GO:0033688]; regulation of smooth muscle cell differentiation [GO:0051150]; regulation of smoothened signaling pathway [GO:0008589]; reproductive structure development [GO:0048608]; response to ethanol [GO:0045471]; response to lipopolysaccharide [GO:0032496]; skeletal system morphogenesis [GO:0048705]; squamous basal epithelial stem cell differentiation involved in prostate gland acinus development [GO:0060529]; ureteric bud development [GO:0001657]; ventricular cardiac muscle tissue morphogenesis [GO:0055010]; ventricular zone neuroblast division [GO:0021847] -P22674 reviewed CCNO_HUMAN Cyclin-O CCNO cell division [GO:0051301]; cilium assembly [GO:0060271]; mitotic cell cycle [GO:0000278]; mitotic cell cycle phase transition [GO:0044772]; multi-ciliated epithelial cell differentiation [GO:1903251]; response to xenobiotic stimulus [GO:0009410] -P23396 reviewed RS3_HUMAN Small ribosomal subunit protein uS3 (40S ribosomal protein S3) (EC 4.2.99.18) RPS3 OK/SW-cl.26 apoptotic process [GO:0006915]; base-excision repair [GO:0006284]; cell division [GO:0051301]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to reactive oxygen species [GO:0034614]; cellular response to tumor necrosis factor [GO:0071356]; chromosome segregation [GO:0007059]; cytoplasmic translation [GO:0002181]; DNA damage response [GO:0006974]; DNA repair [GO:0006281]; negative regulation of DNA repair [GO:0045738]; negative regulation of protein ubiquitination [GO:0031397]; negative regulation of translation [GO:0017148]; positive regulation of activated T cell proliferation [GO:0042104]; positive regulation of apoptotic signaling pathway [GO:2001235]; positive regulation of base-excision repair [GO:1905053]; positive regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis [GO:2001272]; positive regulation of DNA repair [GO:0045739]; positive regulation of endodeoxyribonuclease activity [GO:0032079]; positive regulation of gene expression [GO:0010628]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage [GO:1902231]; positive regulation of JUN kinase activity [GO:0043507]; positive regulation of microtubule polymerization [GO:0031116]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of protein-containing complex assembly [GO:0031334]; positive regulation of T cell receptor signaling pathway [GO:0050862]; regulation of apoptotic process [GO:0042981]; response to TNF agonist [GO:0061481]; spindle assembly [GO:0051225]; translation [GO:0006412]; translational initiation [GO:0006413] -P23528 reviewed COF1_HUMAN Cofilin-1 (18 kDa phosphoprotein) (p18) (Cofilin, non-muscle isoform) CFL1 CFL actin cytoskeleton organization [GO:0030036]; actin filament depolymerization [GO:0030042]; actin filament fragmentation [GO:0030043]; actin filament severing [GO:0051014]; cytoskeleton organization [GO:0007010]; establishment of spindle localization [GO:0051293]; mitotic cytokinesis [GO:0000281]; negative regulation of apoptotic process [GO:0043066]; positive regulation by host of viral process [GO:0044794]; positive regulation of embryonic development [GO:0040019]; regulation of cell morphogenesis [GO:0022604]; regulation of dendritic spine morphogenesis [GO:0061001]; response to virus [GO:0009615]; Rho protein signal transduction [GO:0007266] -P24385 reviewed CCND1_HUMAN G1/S-specific cyclin-D1 (B-cell lymphoma 1 protein) (BCL-1) (BCL-1 oncogene) (PRAD1 oncogene) CCND1 BCL1 PRAD1 cell division [GO:0051301]; DNA damage response [GO:0006974]; endoplasmic reticulum unfolded protein response [GO:0030968]; fat cell differentiation [GO:0045444]; G1/S transition of mitotic cell cycle [GO:0000082]; lactation [GO:0007595]; liver regeneration [GO:0097421]; mammary gland alveolus development [GO:0060749]; mammary gland epithelial cell proliferation [GO:0033598]; mitotic G1 DNA damage checkpoint signaling [GO:0031571]; negative regulation of epithelial cell differentiation [GO:0030857]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron differentiation [GO:0030182]; positive regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0045737]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; positive regulation of mammary gland epithelial cell proliferation [GO:0033601]; positive regulation of protein phosphorylation [GO:0001934]; re-entry into mitotic cell cycle [GO:0000320]; response to leptin [GO:0044321]; response to UV-A [GO:0070141]; response to xenobiotic stimulus [GO:0009410]; Wnt signaling pathway [GO:0016055] -P24864 reviewed CCNE1_HUMAN G1/S-specific cyclin-E1 CCNE1 CCNE cell division [GO:0051301]; DNA replication initiation [GO:0006270]; G1/S transition of mitotic cell cycle [GO:0000082]; homologous chromosome pairing at meiosis [GO:0007129]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of mesenchymal stem cell proliferation [GO:1902462]; protein phosphorylation [GO:0006468]; regulation of protein localization [GO:0032880]; telomere maintenance [GO:0000723]; Wnt signaling pathway [GO:0016055] -P24941 reviewed CDK2_HUMAN Cyclin-dependent kinase 2 (EC 2.7.11.22) (Cell division protein kinase 2) (p33 protein kinase) CDK2 CDKN2 cell division [GO:0051301]; cellular response to nitric oxide [GO:0071732]; cellular senescence [GO:0090398]; centriole replication [GO:0007099]; centrosome duplication [GO:0051298]; chromatin remodeling [GO:0006338]; DNA repair [GO:0006281]; DNA replication [GO:0006260]; DNA-templated transcription [GO:0006351]; G1/S transition of mitotic cell cycle [GO:0000082]; G2/M transition of mitotic cell cycle [GO:0000086]; meiotic cell cycle [GO:0051321]; mitotic G1 DNA damage checkpoint signaling [GO:0031571]; negative regulation of transcription by RNA polymerase II [GO:0000122]; peptidyl-serine phosphorylation [GO:0018105]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA replication [GO:0045740]; positive regulation of DNA-templated DNA replication initiation [GO:0032298]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of heterochromatin formation [GO:0031453]; post-translational protein modification [GO:0043687]; potassium ion transport [GO:0006813]; protein phosphorylation [GO:0006468]; Ras protein signal transduction [GO:0007265]; regulation of anaphase-promoting complex-dependent catabolic process [GO:1905784]; regulation of G2/M transition of mitotic cell cycle [GO:0010389]; regulation of gene expression [GO:0010468]; regulation of mitotic cell cycle [GO:0007346]; response to organic substance [GO:0010033]; signal transduction [GO:0007165]; telomere maintenance in response to DNA damage [GO:0043247] -P25054 reviewed APC_HUMAN Adenomatous polyposis coli protein (Protein APC) (Deleted in polyposis 2.5) APC DP2.5 bicellular tight junction assembly [GO:0070830]; cell adhesion [GO:0007155]; cell fate specification [GO:0001708]; cell migration [GO:0016477]; DNA damage response [GO:0006974]; endocardial cushion morphogenesis [GO:0003203]; heart valve development [GO:0003170]; insulin receptor signaling pathway [GO:0008286]; mitotic cytokinesis [GO:0000281]; mitotic spindle assembly checkpoint signaling [GO:0007094]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cell cycle G1/S phase transition [GO:1902807]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0045736]; negative regulation of G1/S transition of mitotic cell cycle [GO:2000134]; negative regulation of microtubule depolymerization [GO:0007026]; nervous system development [GO:0007399]; pattern specification process [GO:0007389]; positive regulation of apoptotic process [GO:0043065]; positive regulation of cell migration [GO:0030335]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of protein catabolic process [GO:0045732]; positive regulation of protein localization to centrosome [GO:1904781]; positive regulation of pseudopodium assembly [GO:0031274]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; protein-containing complex assembly [GO:0065003]; regulation of attachment of spindle microtubules to kinetochore [GO:0051988]; regulation of microtubule-based movement [GO:0060632]; regulation of microtubule-based process [GO:0032886]; Wnt signaling pathway [GO:0016055] -P27816 reviewed MAP4_HUMAN Microtubule-associated protein 4 (MAP-4) MAP4 cell division [GO:0051301]; cilium disassembly [GO:0061523]; establishment of spindle orientation [GO:0051294]; microtubule cytoskeleton organization [GO:0000226]; microtubule polymerization [GO:0046785]; microtubule sliding [GO:0051012]; mitotic spindle organization [GO:0007052]; negative regulation of non-motile cilium assembly [GO:1902856]; neuron projection development [GO:0031175] -P30260 reviewed CDC27_HUMAN Cell division cycle protein 27 homolog (Anaphase-promoting complex subunit 3) (APC3) (CDC27 homolog) (CDC27Hs) (H-NUC) CDC27 ANAPC3 D0S1430E D17S978E anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; metaphase/anaphase transition of mitotic cell cycle [GO:0007091]; protein K11-linked ubiquitination [GO:0070979]; protein K48-linked ubiquitination [GO:0070936]; protein ubiquitination [GO:0016567]; regulation of meiotic cell cycle [GO:0051445]; regulation of mitotic cell cycle [GO:0007346] -P30279 reviewed CCND2_HUMAN G1/S-specific cyclin-D2 CCND2 adult locomotory behavior [GO:0008344]; cell division [GO:0051301]; cellular response to X-ray [GO:0071481]; G1/S transition of mitotic cell cycle [GO:0000082]; long-term memory [GO:0007616]; negative regulation of apoptotic process [GO:0043066]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0045737]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of protein phosphorylation [GO:0001934] -P30281 reviewed CCND3_HUMAN G1/S-specific cyclin-D3 CCND3 cell division [GO:0051301]; G1/S transition of mitotic cell cycle [GO:0000082]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0045737]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of protein phosphorylation [GO:0001934]; regulation of cell population proliferation [GO:0042127]; signal transduction [GO:0007165]; T cell proliferation [GO:0042098] -P30291 reviewed WEE1_HUMAN Wee1-like protein kinase (WEE1hu) (EC 2.7.10.2) (Wee1A kinase) WEE1 cell division [GO:0051301]; establishment of cell polarity [GO:0030010]; G2/M transition of mitotic cell cycle [GO:0000086]; microtubule cytoskeleton organization [GO:0000226]; negative regulation of G1/S transition of mitotic cell cycle [GO:2000134]; negative regulation of G2/M transition of mitotic cell cycle [GO:0010972]; neuron projection morphogenesis [GO:0048812]; positive regulation of DNA replication [GO:0045740] -P30304 reviewed MPIP1_HUMAN M-phase inducer phosphatase 1 (EC 3.1.3.48) (Dual specificity phosphatase Cdc25A) CDC25A cell division [GO:0051301]; cell population proliferation [GO:0008283]; cellular response to UV [GO:0034644]; G1/S transition of mitotic cell cycle [GO:0000082]; G2/M transition of mitotic cell cycle [GO:0000086]; positive regulation of DNA replication [GO:0045740]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; positive regulation of G2/MI transition of meiotic cell cycle [GO:0110032]; regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0000079]; response to radiation [GO:0009314] -P30305 reviewed MPIP2_HUMAN M-phase inducer phosphatase 2 (EC 3.1.3.48) (Dual specificity phosphatase Cdc25B) CDC25B CDC25HU2 cell division [GO:0051301]; female meiosis I [GO:0007144]; G2/M transition of mitotic cell cycle [GO:0000086]; mitotic cell cycle [GO:0000278]; oocyte maturation [GO:0001556]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cytokinesis [GO:0032467]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; positive regulation of G2/MI transition of meiotic cell cycle [GO:0110032]; positive regulation of mitotic cell cycle [GO:0045931]; protein phosphorylation [GO:0006468] -P30307 reviewed MPIP3_HUMAN M-phase inducer phosphatase 3 (EC 3.1.3.48) (Dual specificity phosphatase Cdc25C) CDC25C cell division [GO:0051301]; cell population proliferation [GO:0008283]; G2/M transition of mitotic cell cycle [GO:0000086]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; positive regulation of G2/MI transition of meiotic cell cycle [GO:0110032]; regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0000079]; regulation of mitotic nuclear division [GO:0007088]; spermatogenesis [GO:0007283] -P35226 reviewed BMI1_HUMAN Polycomb complex protein BMI-1 (Polycomb group RING finger protein 4) (RING finger protein 51) BMI1 PCGF4 RNF51 apoptotic signaling pathway [GO:0097190]; brain development [GO:0007420]; chromatin remodeling [GO:0006338]; embryonic skeletal system morphogenesis [GO:0048704]; hemopoiesis [GO:0030097]; humoral immune response [GO:0006959]; in utero embryonic development [GO:0001701]; negative regulation of apoptotic signaling pathway [GO:2001234]; negative regulation of gene expression, epigenetic [GO:0045814]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of B cell proliferation [GO:0030890]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of immature T cell proliferation in thymus [GO:0033092]; positive regulation of ubiquitin-protein transferase activity [GO:0051443]; regulation of adaxial/abaxial pattern formation [GO:2000011]; regulation of gene expression [GO:0010468]; rostrocaudal neural tube patterning [GO:0021903]; segment specification [GO:0007379]; somatic stem cell division [GO:0048103] -P35579 reviewed MYH9_HUMAN Myosin-9 (Cellular myosin heavy chain, type A) (Myosin heavy chain 9) (Myosin heavy chain, non-muscle IIa) (Non-muscle myosin heavy chain A) (NMMHC-A) (Non-muscle myosin heavy chain IIa) (NMMHC II-a) (NMMHC-IIA) MYH9 actin cytoskeleton organization [GO:0030036]; actin filament-based movement [GO:0030048]; actomyosin structure organization [GO:0031032]; angiogenesis [GO:0001525]; blood vessel endothelial cell migration [GO:0043534]; cortical granule exocytosis [GO:0060471]; cytokinetic process [GO:0032506]; endodermal cell differentiation [GO:0035987]; establishment of meiotic spindle localization [GO:0051295]; establishment of T cell polarity [GO:0001768]; in utero embryonic development [GO:0001701]; integrin-mediated signaling pathway [GO:0007229]; leukocyte migration [GO:0050900]; lysosome localization [GO:0032418]; meiotic spindle organization [GO:0000212]; membrane protein ectodomain proteolysis [GO:0006509]; monocyte differentiation [GO:0030224]; myoblast fusion [GO:0007520]; negative regulation of actin filament severing [GO:1903919]; phagocytosis, engulfment [GO:0006911]; plasma membrane repair [GO:0001778]; platelet aggregation [GO:0070527]; platelet formation [GO:0030220]; positive regulation of protein processing in phagocytic vesicle [GO:1903923]; protein transport [GO:0015031]; regulated exocytosis [GO:0045055]; regulation of cell shape [GO:0008360]; regulation of plasma membrane repair [GO:1905684]; uropod organization [GO:0032796] -P35580 reviewed MYH10_HUMAN Myosin-10 (Cellular myosin heavy chain, type B) (Myosin heavy chain 10) (Myosin heavy chain, non-muscle IIb) (Non-muscle myosin heavy chain B) (NMMHC-B) (Non-muscle myosin heavy chain IIb) (NMMHC II-b) (NMMHC-IIB) MYH10 actin filament-based movement [GO:0030048]; actomyosin structure organization [GO:0031032]; cell adhesion [GO:0007155]; mitotic cytokinesis [GO:0000281]; positive regulation of protein secretion [GO:0050714]; regulation of cell shape [GO:0008360] -P35711 reviewed SOX5_HUMAN Transcription factor SOX-5 SOX5 asymmetric neuroblast division [GO:0055059]; cartilage condensation [GO:0001502]; cartilage development [GO:0051216]; cell fate commitment [GO:0045165]; cellular response to transforming growth factor beta stimulus [GO:0071560]; chondrocyte differentiation [GO:0002062]; positive regulation of cartilage development [GO:0061036]; positive regulation of chondrocyte differentiation [GO:0032332]; positive regulation of mesenchymal stem cell differentiation [GO:2000741]; regulation of transcription by RNA polymerase II [GO:0006357]; transcription by RNA polymerase II [GO:0006366] -P36405 reviewed ARL3_HUMAN ADP-ribosylation factor-like protein 3 ARL3 ARFL3 cilium assembly [GO:0060271]; Golgi to plasma membrane transport [GO:0006893]; intraciliary transport [GO:0042073]; kidney development [GO:0001822]; mitotic cytokinesis [GO:0000281]; photoreceptor cell development [GO:0042461]; post-Golgi vesicle-mediated transport [GO:0006892]; protein localization to ciliary membrane [GO:1903441]; protein localization to cilium [GO:0061512]; protein transport [GO:0015031]; small GTPase-mediated signal transduction [GO:0007264]; smoothened signaling pathway [GO:0007224] -P36873 reviewed PP1G_HUMAN Serine/threonine-protein phosphatase PP1-gamma catalytic subunit (PP-1G) (EC 3.1.3.16) (Protein phosphatase 1C catalytic subunit) PPP1CC blastocyst development [GO:0001824]; cell division [GO:0051301]; circadian regulation of gene expression [GO:0032922]; entrainment of circadian clock by photoperiod [GO:0043153]; glycogen metabolic process [GO:0005977]; MAPK cascade [GO:0000165]; neuron differentiation [GO:0030182]; positive regulation of glial cell proliferation [GO:0060252]; protein dephosphorylation [GO:0006470]; regulation of circadian rhythm [GO:0042752]; regulation of nucleocytoplasmic transport [GO:0046822]; spermatogenesis [GO:0007283] -P40126 reviewed TYRP2_HUMAN L-dopachrome tautomerase (DCT) (DT) (EC 5.3.3.12) (L-dopachrome Delta-isomerase) (Tyrosinase-related protein 2) (TRP-2) (TRP2) DCT TYRP2 cell development [GO:0048468]; developmental pigmentation [GO:0048066]; epidermis development [GO:0008544]; melanin biosynthetic process from tyrosine [GO:0006583]; positive regulation of neuroblast proliferation [GO:0002052]; response to blue light [GO:0009637]; ventricular zone neuroblast division [GO:0021847] -P40818 reviewed UBP8_HUMAN Ubiquitin carboxyl-terminal hydrolase 8 (EC 3.4.19.12) (Deubiquitinating enzyme 8) (Ubiquitin isopeptidase Y) (hUBPy) (Ubiquitin thioesterase 8) (Ubiquitin-specific-processing protease 8) USP8 KIAA0055 UBPY cellular response to dexamethasone stimulus [GO:0071549]; cellular response to nerve growth factor stimulus [GO:1990090]; endosome organization [GO:0007032]; mitotic cytokinesis [GO:0000281]; negative regulation of lysosomal protein catabolic process [GO:1905166]; positive regulation of amyloid fibril formation [GO:1905908]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; protein deubiquitination [GO:0016579]; protein K48-linked deubiquitination [GO:0071108]; protein K63-linked deubiquitination [GO:0070536]; proteolysis [GO:0006508]; Ras protein signal transduction [GO:0007265]; regulation of protein catabolic process at postsynapse, modulating synaptic transmission [GO:0099576]; regulation of protein localization [GO:0032880]; regulation of protein stability [GO:0031647] -P41002 reviewed CCNF_HUMAN Cyclin-F (F-box only protein 1) CCNF FBX1 FBXO1 cell division [GO:0051301]; mitotic cell cycle phase transition [GO:0044772]; negative regulation of centrosome duplication [GO:0010826]; placenta development [GO:0001890]; protein ubiquitination [GO:0016567]; re-entry into mitotic cell cycle [GO:0000320]; regulation of cell cycle [GO:0051726]; SCF-dependent proteasomal ubiquitin-dependent protein catabolic process [GO:0031146] -P41161 reviewed ETV5_HUMAN ETS translocation variant 5 (Ets-related protein ERM) ETV5 ERM cellular response to oxidative stress [GO:0034599]; male germ-line stem cell asymmetric division [GO:0048133]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of glial cell proliferation [GO:0060252]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -P41208 reviewed CETN2_HUMAN Centrin-2 (Caltractin isoform 1) CETN2 CALT CEN2 cell division [GO:0051301]; centriole replication [GO:0007099]; mitotic cell cycle [GO:0000278]; mRNA transport [GO:0051028]; nucleotide-excision repair [GO:0006289]; protein transport [GO:0015031]; regulation of cytokinesis [GO:0032465]; spermatogenesis [GO:0007283] -P42338 reviewed PK3CB_HUMAN Phosphatidylinositol 4,5-bisphosphate 3-kinase catalytic subunit beta isoform (PI3-kinase subunit beta) (PI3K-beta) (PI3Kbeta) (PtdIns-3-kinase subunit beta) (EC 2.7.1.153) (Phosphatidylinositol 4,5-bisphosphate 3-kinase 110 kDa catalytic subunit beta) (PtdIns-3-kinase subunit p110-beta) (p110beta) (Serine/threonine protein kinase PIK3CB) (EC 2.7.11.1) PIK3CB PIK3C1 angiogenesis involved in wound healing [GO:0060055]; autophagy [GO:0006914]; cell migration [GO:0016477]; cell surface receptor protein tyrosine kinase signaling pathway [GO:0007169]; chemotaxis [GO:0006935]; embryonic cleavage [GO:0040016]; endocytosis [GO:0006897]; endothelial cell proliferation [GO:0001935]; G protein-coupled receptor signaling pathway [GO:0007186]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; intracellular calcium ion homeostasis [GO:0006874]; negative regulation of hypoxia-induced intrinsic apoptotic signaling pathway [GO:1903298]; negative regulation of MAPK cascade [GO:0043409]; negative regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051898]; negative regulation of sprouting angiogenesis [GO:1903671]; negative regulation of vascular endothelial growth factor signaling pathway [GO:1900747]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; phosphatidylinositol phosphate biosynthetic process [GO:0046854]; phosphatidylinositol-3-phosphate biosynthetic process [GO:0036092]; phosphatidylinositol-mediated signaling [GO:0048015]; phosphorylation [GO:0016310]; platelet activation [GO:0030168]; platelet aggregation [GO:0070527]; positive regulation of autophagy [GO:0010508]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of gene expression [GO:0010628]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of nitric oxide biosynthetic process [GO:0045429]; positive regulation of Rac protein signal transduction [GO:0035022]; regulation of cell-matrix adhesion [GO:0001952]; regulation of clathrin-dependent endocytosis [GO:2000369]; response to ischemia [GO:0002931]; signal transduction [GO:0007165]; sphingosine-1-phosphate receptor signaling pathway [GO:0003376] -P42695 reviewed CNDD3_HUMAN Condensin-2 complex subunit D3 (Non-SMC condensin II complex subunit D3) (hCAP-D3) NCAPD3 CAPD3 KIAA0056 cell division [GO:0051301]; meiotic chromosome condensation [GO:0010032]; mitotic chromosome condensation [GO:0007076]; positive regulation of chromosome condensation [GO:1905821]; positive regulation of chromosome segregation [GO:0051984]; positive regulation of chromosome separation [GO:1905820] -P43034 reviewed LIS1_HUMAN Platelet-activating factor acetylhydrolase IB subunit beta (Lissencephaly-1 protein) (LIS-1) (PAF acetylhydrolase 45 kDa subunit) (PAF-AH 45 kDa subunit) (PAF-AH alpha) (PAFAH alpha) PAFAH1B1 LIS1 MDCR MDS PAFAHA acrosome assembly [GO:0001675]; actin cytoskeleton organization [GO:0030036]; adult locomotory behavior [GO:0008344]; ameboidal-type cell migration [GO:0001667]; auditory receptor cell development [GO:0060117]; brain morphogenesis [GO:0048854]; cerebral cortex development [GO:0021987]; cerebral cortex neuron differentiation [GO:0021895]; chemical synaptic transmission [GO:0007268]; cochlea development [GO:0090102]; corpus callosum morphogenesis [GO:0021540]; cortical microtubule organization [GO:0043622]; establishment of centrosome localization [GO:0051660]; establishment of mitotic spindle orientation [GO:0000132]; establishment of planar polarity of embryonic epithelium [GO:0042249]; germ cell development [GO:0007281]; hippocampus development [GO:0021766]; interneuron migration [GO:1904936]; JNK cascade [GO:0007254]; layer formation in cerebral cortex [GO:0021819]; learning or memory [GO:0007611]; lipid catabolic process [GO:0016042]; maintenance of centrosome location [GO:0051661]; microtubule cytoskeleton organization [GO:0000226]; microtubule cytoskeleton organization involved in establishment of planar polarity [GO:0090176]; microtubule organizing center organization [GO:0031023]; microtubule sliding [GO:0051012]; microtubule-based process [GO:0007017]; modulation of chemical synaptic transmission [GO:0050804]; myeloid leukocyte migration [GO:0097529]; negative regulation of JNK cascade [GO:0046329]; negative regulation of neuron projection development [GO:0010977]; neuroblast proliferation [GO:0007405]; neuromuscular process controlling balance [GO:0050885]; neuron migration [GO:0001764]; nuclear membrane disassembly [GO:0051081]; nuclear migration [GO:0007097]; osteoclast development [GO:0036035]; platelet activating factor metabolic process [GO:0046469]; positive regulation of axon extension [GO:0045773]; positive regulation of cytokine-mediated signaling pathway [GO:0001961]; positive regulation of dendritic spine morphogenesis [GO:0061003]; positive regulation of embryonic development [GO:0040019]; positive regulation of mitotic cell cycle [GO:0045931]; protein secretion [GO:0009306]; radial glia-guided pyramidal neuron migration [GO:0140650]; reelin-mediated signaling pathway [GO:0038026]; regulation of microtubule cytoskeleton organization [GO:0070507]; retrograde axonal transport [GO:0008090]; stem cell division [GO:0017145]; transmission of nerve impulse [GO:0019226]; vesicle transport along microtubule [GO:0047496] -P46531 reviewed NOTC1_HUMAN Neurogenic locus notch homolog protein 1 (Notch 1) (hN1) (Translocation-associated notch protein TAN-1) [Cleaved into: Notch 1 extracellular truncation (NEXT); Notch 1 intracellular domain (NICD)] NOTCH1 TAN1 animal organ regeneration [GO:0031100]; aortic valve morphogenesis [GO:0003180]; apoptotic process involved in embryonic digit morphogenesis [GO:1902263]; arterial endothelial cell differentiation [GO:0060842]; astrocyte differentiation [GO:0048708]; atrioventricular node development [GO:0003162]; atrioventricular valve morphogenesis [GO:0003181]; auditory receptor cell fate commitment [GO:0009912]; axon guidance [GO:0007411]; branching morphogenesis of an epithelial tube [GO:0048754]; calcium-ion regulated exocytosis [GO:0017156]; cardiac atrium morphogenesis [GO:0003209]; cardiac chamber formation [GO:0003207]; cardiac epithelial to mesenchymal transition [GO:0060317]; cardiac left ventricle morphogenesis [GO:0003214]; cardiac muscle cell myoblast differentiation [GO:0060379]; cardiac muscle cell proliferation [GO:0060038]; cardiac muscle tissue morphogenesis [GO:0055008]; cardiac right atrium morphogenesis [GO:0003213]; cardiac right ventricle formation [GO:0003219]; cardiac septum morphogenesis [GO:0060411]; cardiac vascular smooth muscle cell development [GO:0060948]; cardiac ventricle morphogenesis [GO:0003208]; cell differentiation in spinal cord [GO:0021515]; cell migration involved in endocardial cushion formation [GO:0003273]; cellular response to follicle-stimulating hormone stimulus [GO:0071372]; cellular response to hypoxia [GO:0071456]; cellular response to tumor cell [GO:0071228]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; cilium assembly [GO:0060271]; collecting duct development [GO:0072044]; compartment pattern specification [GO:0007386]; coronary artery morphogenesis [GO:0060982]; coronary sinus valve morphogenesis [GO:0003182]; coronary vein morphogenesis [GO:0003169]; determination of left/right symmetry [GO:0007368]; distal tubule development [GO:0072017]; embryonic hindlimb morphogenesis [GO:0035116]; endocardial cell differentiation [GO:0060956]; endocardial cushion morphogenesis [GO:0003203]; endocardium development [GO:0003157]; endocardium morphogenesis [GO:0003160]; endoderm development [GO:0007492]; epidermal cell fate specification [GO:0009957]; epithelial cell fate commitment [GO:0072148]; epithelial cell proliferation [GO:0050673]; epithelial to mesenchymal transition [GO:0001837]; epithelial to mesenchymal transition involved in endocardial cushion formation [GO:0003198]; forebrain development [GO:0030900]; foregut morphogenesis [GO:0007440]; glomerular mesangial cell development [GO:0072144]; growth involved in heart morphogenesis [GO:0003241]; hair follicle morphogenesis [GO:0031069]; heart development [GO:0007507]; heart looping [GO:0001947]; heart trabecula morphogenesis [GO:0061384]; homeostasis of number of cells within a tissue [GO:0048873]; humoral immune response [GO:0006959]; immune response [GO:0006955]; in utero embryonic development [GO:0001701]; inflammatory response to antigenic stimulus [GO:0002437]; inhibition of neuroepithelial cell differentiation [GO:0002085]; interleukin-17-mediated signaling pathway [GO:0097400]; keratinocyte differentiation [GO:0030216]; left/right axis specification [GO:0070986]; liver development [GO:0001889]; lung development [GO:0030324]; luteolysis [GO:0001554]; mesenchymal cell development [GO:0014031]; mitral valve formation [GO:0003192]; negative regulation of anoikis [GO:2000811]; negative regulation of biomineral tissue development [GO:0070168]; negative regulation of BMP signaling pathway [GO:0030514]; negative regulation of calcium ion-dependent exocytosis [GO:0045955]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cardiac muscle hypertrophy [GO:0010614]; negative regulation of catalytic activity [GO:0043086]; negative regulation of cell adhesion molecule production [GO:0060354]; negative regulation of cell migration involved in sprouting angiogenesis [GO:0090051]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of cell proliferation involved in heart valve morphogenesis [GO:0003252]; negative regulation of cell-cell adhesion mediated by cadherin [GO:2000048]; negative regulation of cell-substrate adhesion [GO:0010812]; negative regulation of cold-induced thermogenesis [GO:0120163]; negative regulation of collagen biosynthetic process [GO:0032966]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of endothelial cell chemotaxis [GO:2001027]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of extracellular matrix constituent secretion [GO:0003332]; negative regulation of gene expression [GO:0010629]; negative regulation of glial cell proliferation [GO:0060253]; negative regulation of inner ear auditory receptor cell differentiation [GO:0045608]; negative regulation of myoblast differentiation [GO:0045662]; negative regulation of myotube differentiation [GO:0010832]; negative regulation of neurogenesis [GO:0050768]; negative regulation of oligodendrocyte differentiation [GO:0048715]; negative regulation of ossification [GO:0030279]; negative regulation of osteoblast differentiation [GO:0045668]; negative regulation of photoreceptor cell differentiation [GO:0046533]; negative regulation of pro-B cell differentiation [GO:2000974]; negative regulation of stem cell differentiation [GO:2000737]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural tube development [GO:0021915]; neuroendocrine cell differentiation [GO:0061101]; neuronal stem cell population maintenance [GO:0097150]; Notch signaling pathway [GO:0007219]; Notch signaling pathway involved in regulation of secondary heart field cardioblast proliferation [GO:0003270]; oligodendrocyte differentiation [GO:0048709]; outflow tract morphogenesis [GO:0003151]; pericardium morphogenesis [GO:0003344]; positive regulation of aorta morphogenesis [GO:1903849]; positive regulation of apoptotic process involved in morphogenesis [GO:1902339]; positive regulation of astrocyte differentiation [GO:0048711]; positive regulation of BMP signaling pathway [GO:0030513]; positive regulation of cardiac epithelial to mesenchymal transition [GO:0062043]; positive regulation of cardiac muscle cell proliferation [GO:0060045]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of endothelial cell differentiation [GO:0045603]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of gene expression [GO:0010628]; positive regulation of keratinocyte differentiation [GO:0045618]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of Ras protein signal transduction [GO:0046579]; positive regulation of receptor signaling pathway via JAK-STAT [GO:0046427]; positive regulation of smooth muscle cell differentiation [GO:0051152]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription of Notch receptor target [GO:0007221]; positive regulation of viral genome replication [GO:0045070]; prostate gland epithelium morphogenesis [GO:0060740]; protein catabolic process [GO:0030163]; protein import into nucleus [GO:0006606]; pulmonary valve morphogenesis [GO:0003184]; regulation of cell adhesion involved in heart morphogenesis [GO:0061344]; regulation of DNA-templated transcription [GO:0006355]; regulation of epithelial cell proliferation involved in prostate gland development [GO:0060768]; regulation of extracellular matrix assembly [GO:1901201]; regulation of somitogenesis [GO:0014807]; regulation of stem cell proliferation [GO:0072091]; regulation of transcription by RNA polymerase II [GO:0006357]; response to lipopolysaccharide [GO:0032496]; response to muramyl dipeptide [GO:0032495]; retinal cone cell differentiation [GO:0042670]; secretory columnal luminar epithelial cell differentiation involved in prostate glandular acinus development [GO:0060528]; skeletal muscle cell differentiation [GO:0035914]; somatic stem cell division [GO:0048103]; spermatogenesis [GO:0007283]; sprouting angiogenesis [GO:0002040]; T-helper 17 type immune response [GO:0072538]; tissue regeneration [GO:0042246]; transcription by RNA polymerase II [GO:0006366]; tube formation [GO:0035148]; vasculogenesis involved in coronary vascular morphogenesis [GO:0060979]; venous endothelial cell differentiation [GO:0060843]; ventricular septum morphogenesis [GO:0060412]; ventricular trabecula myocardium morphogenesis [GO:0003222] -P46736 reviewed BRCC3_HUMAN Lys-63-specific deubiquitinase BRCC36 (EC 3.4.19.-) (BRCA1-A complex subunit BRCC36) (BRCA1/BRCA2-containing complex subunit 3) (BRCA1/BRCA2-containing complex subunit 36) (BRISC complex subunit BRCC36) BRCC3 BRCC36 C6.1A CXorf53 cell division [GO:0051301]; cellular response to ionizing radiation [GO:0071479]; DNA repair-dependent chromatin remodeling [GO:0140861]; double-strand break repair [GO:0006302]; mitotic G2 DNA damage checkpoint signaling [GO:0007095]; mitotic G2/M transition checkpoint [GO:0044818]; positive regulation of DNA repair [GO:0045739]; positive regulation of NLRP3 inflammasome complex assembly [GO:1900227]; protein K63-linked deubiquitination [GO:0070536]; proteolysis [GO:0006508]; regulation of DNA damage checkpoint [GO:2000001]; regulation of DNA repair [GO:0006282]; response to ionizing radiation [GO:0010212]; response to X-ray [GO:0010165] -P46940 reviewed IQGA1_HUMAN Ras GTPase-activating-like protein IQGAP1 (p195) IQGAP1 KIAA0051 cell migration [GO:0016477]; cellular response to calcium ion [GO:0071277]; cellular response to epidermal growth factor stimulus [GO:0071364]; cellular response to platelet-derived growth factor stimulus [GO:0036120]; epidermal growth factor receptor signaling pathway [GO:0007173]; fibroblast growth factor receptor signaling pathway [GO:0008543]; fibroblast migration [GO:0010761]; mitotic actomyosin contractile ring assembly actin filament organization [GO:1903479]; negative regulation of dephosphorylation [GO:0035305]; neuron projection extension [GO:1990138]; platelet-derived growth factor receptor signaling pathway [GO:0048008]; podocyte development [GO:0072015]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of protein kinase activity [GO:0045860]; regulation of cytokine production [GO:0001817]; regulation of mitotic cell cycle [GO:0007346]; signal transduction [GO:0007165] -P47974 reviewed TISD_HUMAN mRNA decay activator protein ZFP36L2 (Butyrate response factor 2) (EGF-response factor 2) (ERF-2) (TPA-induced sequence 11d) (Zinc finger protein 36, C3H1 type-like 2) (ZFP36-like 2) ZFP36L2 ERF2 RNF162C TIS11D 3'-UTR-mediated mRNA destabilization [GO:0061158]; cellular response to epidermal growth factor stimulus [GO:0071364]; cellular response to fibroblast growth factor stimulus [GO:0044344]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to granulocyte macrophage colony-stimulating factor stimulus [GO:0097011]; cellular response to transforming growth factor beta stimulus [GO:0071560]; cellular response to tumor necrosis factor [GO:0071356]; definitive hemopoiesis [GO:0060216]; ERK1 and ERK2 cascade [GO:0070371]; hemopoiesis [GO:0030097]; mRNA catabolic process [GO:0006402]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of mitotic cell cycle phase transition [GO:1901991]; negative regulation of stem cell differentiation [GO:2000737]; nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay [GO:0000288]; positive regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay [GO:1900153]; regulation of B cell differentiation [GO:0045577]; regulation of mRNA stability [GO:0043488]; response to wounding [GO:0009611]; somatic stem cell division [GO:0048103]; somatic stem cell population maintenance [GO:0035019]; T cell differentiation in thymus [GO:0033077] -P48729 reviewed KC1A_HUMAN Casein kinase I isoform alpha (CKI-alpha) (EC 2.7.11.1) (CK1) CSNK1A1 cell division [GO:0051301]; cell surface receptor signaling pathway [GO:0007166]; cellular response to nutrient [GO:0031670]; Golgi organization [GO:0007030]; intermediate filament cytoskeleton organization [GO:0045104]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of NLRP3 inflammasome complex assembly [GO:1900226]; peptidyl-serine phosphorylation [GO:0018105]; positive regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032436]; positive regulation of Rho protein signal transduction [GO:0035025]; positive regulation of TORC1 signaling [GO:1904263]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; protein phosphorylation [GO:0006468]; signal transduction [GO:0007165]; viral protein processing [GO:0019082]; Wnt signaling pathway [GO:0016055] -P49450 reviewed CENPA_HUMAN Histone H3-like centromeric protein A (Centromere autoantigen A) (Centromere protein A) (CENP-A) CENPA CENP-A containing chromatin assembly [GO:0034080]; establishment of mitotic spindle orientation [GO:0000132]; kinetochore assembly [GO:0051382]; mitotic cytokinesis [GO:0000281]; protein localization to CENP-A containing chromatin [GO:0061644]; protein localization to chromosome, centromeric region [GO:0071459] -P49454 reviewed CENPF_HUMAN Centromere protein F (CENP-F) (AH antigen) (Kinetochore protein CENPF) (Mitosin) CENPF cell differentiation [GO:0030154]; cell division [GO:0051301]; chromosome segregation [GO:0007059]; DNA biosynthetic process [GO:0071897]; kidney development [GO:0001822]; kinetochore assembly [GO:0051382]; metaphase chromosome alignment [GO:0051310]; mitotic cell cycle [GO:0000278]; mitotic spindle assembly checkpoint signaling [GO:0007094]; muscle organ development [GO:0007517]; negative regulation of DNA-templated transcription [GO:0045892]; protein transport [GO:0015031]; regulation of G2/M transition of mitotic cell cycle [GO:0010389]; regulation of striated muscle tissue development [GO:0016202]; response to xenobiotic stimulus [GO:0009410]; ventricular system development [GO:0021591] -P49757 reviewed NUMB_HUMAN Protein numb homolog (h-Numb) (Protein S171) NUMB C14orf41 adherens junction organization [GO:0034332]; axonogenesis [GO:0007409]; lateral ventricle development [GO:0021670]; negative regulation of protein localization to plasma membrane [GO:1903077]; neuroblast division in subventricular zone [GO:0021849]; positive regulation of cell migration [GO:0030335]; positive regulation of neurogenesis [GO:0050769]; regulation of postsynaptic neurotransmitter receptor internalization [GO:0099149] -P49916 reviewed DNLI3_HUMAN DNA ligase 3 (EC 6.5.1.1) (DNA ligase III) (Polydeoxyribonucleotide synthase [ATP] 3) LIG3 base-excision repair, DNA ligation [GO:0006288]; base-excision repair, gap-filling [GO:0006287]; cell division [GO:0051301]; DNA biosynthetic process [GO:0071897]; DNA ligation [GO:0006266]; double-strand break repair [GO:0006302]; double-strand break repair via alternative nonhomologous end joining [GO:0097681]; double-strand break repair via homologous recombination [GO:0000724]; lagging strand elongation [GO:0006273]; mitochondrial DNA repair [GO:0043504]; mitochondrion organization [GO:0007005]; negative regulation of mitochondrial DNA replication [GO:0090298] -P49917 reviewed DNLI4_HUMAN DNA ligase 4 (EC 6.5.1.1) (DNA ligase IV) (Polydeoxyribonucleotide synthase [ATP] 4) LIG4 cell division [GO:0051301]; cell population proliferation [GO:0008283]; cellular response to ionizing radiation [GO:0071479]; cellular response to lithium ion [GO:0071285]; central nervous system development [GO:0007417]; chromosome organization [GO:0051276]; DN2 thymocyte differentiation [GO:1904155]; DNA biosynthetic process [GO:0071897]; DNA ligation [GO:0006266]; DNA ligation involved in DNA recombination [GO:0051102]; DNA ligation involved in DNA repair [GO:0051103]; double-strand break repair [GO:0006302]; double-strand break repair via classical nonhomologous end joining [GO:0097680]; double-strand break repair via nonhomologous end joining [GO:0006303]; establishment of integrated proviral latency [GO:0075713]; fibroblast proliferation [GO:0048144]; immunoglobulin V(D)J recombination [GO:0033152]; in utero embryonic development [GO:0001701]; isotype switching [GO:0045190]; negative regulation of neuron apoptotic process [GO:0043524]; neurogenesis [GO:0022008]; neuron apoptotic process [GO:0051402]; nucleotide-excision repair, DNA gap filling [GO:0006297]; positive regulation of chromosome organization [GO:2001252]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of neurogenesis [GO:0050769]; pro-B cell differentiation [GO:0002328]; response to gamma radiation [GO:0010332]; response to X-ray [GO:0010165]; single strand break repair [GO:0000012]; somatic stem cell population maintenance [GO:0035019]; stem cell proliferation [GO:0072089]; T cell differentiation in thymus [GO:0033077]; T cell receptor V(D)J recombination [GO:0033153]; V(D)J recombination [GO:0033151] -P50613 reviewed CDK7_HUMAN Cyclin-dependent kinase 7 (EC 2.7.11.22) (EC 2.7.11.23) (39 kDa protein kinase) (p39 Mo15) (CDK-activating kinase 1) (Cell division protein kinase 7) (Serine/threonine-protein kinase 1) (TFIIH basal transcription factor complex kinase subunit) CDK7 CAK CAK1 CDKN7 MO15 STK1 cell division [GO:0051301]; DNA repair [GO:0006281]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein stabilization [GO:0050821]; regulation of cell cycle [GO:0051726]; regulation of G1/S transition of mitotic cell cycle [GO:2000045]; snRNA transcription by RNA polymerase II [GO:0042795]; transcription by RNA polymerase II [GO:0006366]; transcription initiation at RNA polymerase II promoter [GO:0006367] -P50748 reviewed KNTC1_HUMAN Kinetochore-associated protein 1 (Rough deal homolog) (HsROD) (Rod) (hRod) KNTC1 KIAA0166 cell division [GO:0051301]; mitotic sister chromatid segregation [GO:0000070]; mitotic spindle assembly checkpoint signaling [GO:0007094]; protein localization to kinetochore involved in kinetochore assembly [GO:1903394]; protein-containing complex assembly [GO:0065003]; regulation of attachment of spindle microtubules to kinetochore [GO:0051988]; regulation of exit from mitosis [GO:0007096] -P50995 reviewed ANX11_HUMAN Annexin A11 (56 kDa autoantigen) (Annexin XI) (Annexin-11) (Calcyclin-associated annexin 50) (CAP-50) ANXA11 ANX11 cytokinetic process [GO:0032506]; phagocytosis [GO:0006909]; response to calcium ion [GO:0051592] -P51808 reviewed DYLT3_HUMAN Dynein light chain Tctex-type 3 (Protein 91/23) (T-complex-associated testis-expressed 1-like) DYNLT3 TCTE1L TCTE1XL cell division [GO:0051301]; microtubule-based movement [GO:0007018]; positive regulation of mitotic cell cycle [GO:0045931]; regulation of mitotic cell cycle [GO:0007346] -P51955 reviewed NEK2_HUMAN Serine/threonine-protein kinase Nek2 (EC 2.7.11.1) (HSPK 21) (Never in mitosis A-related kinase 2) (NimA-related protein kinase 2) (NimA-like protein kinase 1) NEK2 NEK2A NLK1 blastocyst development [GO:0001824]; cell division [GO:0051301]; centrosome separation [GO:0051299]; chromosome segregation [GO:0007059]; meiotic cell cycle [GO:0051321]; mitotic cell cycle [GO:0000278]; mitotic spindle assembly [GO:0090307]; negative regulation of centriole-centriole cohesion [GO:1903126]; positive regulation of telomerase activity [GO:0051973]; positive regulation of telomere capping [GO:1904355]; positive regulation of telomere maintenance via telomerase [GO:0032212]; protein autophosphorylation [GO:0046777]; protein phosphorylation [GO:0006468]; regulation of attachment of spindle microtubules to kinetochore [GO:0051988]; regulation of mitotic centrosome separation [GO:0046602]; regulation of mitotic nuclear division [GO:0007088]; spindle assembly [GO:0051225] -P51956 reviewed NEK3_HUMAN Serine/threonine-protein kinase Nek3 (EC 2.7.11.1) (HSPK 36) (Never in mitosis A-related kinase 3) (NimA-related protein kinase 3) NEK3 cell division [GO:0051301]; establishment of cell polarity [GO:0030010]; mitotic cell cycle [GO:0000278]; neuron projection morphogenesis [GO:0048812]; protein phosphorylation [GO:0006468]; regulation of tubulin deacetylation [GO:0090043] -P51957 reviewed NEK4_HUMAN Serine/threonine-protein kinase Nek4 (EC 2.7.11.1) (Never in mitosis A-related kinase 4) (NimA-related protein kinase 4) (Serine/threonine-protein kinase 2) (Serine/threonine-protein kinase NRK2) NEK4 STK2 cell division [GO:0051301]; DNA damage response [GO:0006974]; mitotic cell cycle [GO:0000278]; positive regulation of DNA-templated transcription [GO:0045893]; protein phosphorylation [GO:0006468]; regulation of cellular senescence [GO:2000772] -P51959 reviewed CCNG1_HUMAN Cyclin-G1 (Cyclin-G) CCNG1 CCNG CYCG1 cell division [GO:0051301]; mitotic cell cycle phase transition [GO:0044772]; mitotic G2 DNA damage checkpoint signaling [GO:0007095]; negative regulation of apoptotic process [GO:0043066]; regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0000079]; response to gravity [GO:0009629]; response to organonitrogen compound [GO:0010243]; syncytium formation [GO:0006949] -P52732 reviewed KIF11_HUMAN Kinesin-like protein KIF11 (Kinesin-like protein 1) (Kinesin-like spindle protein HKSP) (Kinesin-related motor protein Eg5) (Thyroid receptor-interacting protein 5) (TR-interacting protein 5) (TRIP-5) KIF11 EG5 KNSL1 TRIP5 cell division [GO:0051301]; microtubule-based movement [GO:0007018]; mitotic cell cycle [GO:0000278]; mitotic centrosome separation [GO:0007100]; mitotic spindle assembly [GO:0090307]; mitotic spindle organization [GO:0007052]; regulation of mitotic centrosome separation [GO:0046602]; spindle elongation [GO:0051231]; spindle organization [GO:0007051] -P52926 reviewed HMGA2_HUMAN High mobility group protein HMGI-C (High mobility group AT-hook protein 2) HMGA2 HMGIC base-excision repair [GO:0006284]; cell division [GO:0051301]; chondrocyte differentiation [GO:0002062]; chondrocyte proliferation [GO:0035988]; chromatin organization [GO:0006325]; chromosome condensation [GO:0030261]; endodermal cell differentiation [GO:0035987]; epithelial to mesenchymal transition [GO:0001837]; fat cell differentiation [GO:0045444]; heterochromatin formation [GO:0031507]; intracellular signal transduction [GO:0035556]; mesenchymal cell differentiation [GO:0048762]; mesodermal cell differentiation [GO:0048333]; mesodermal-endodermal cell signaling [GO:0003131]; negative regulation by host of viral transcription [GO:0043922]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cellular senescence [GO:2000773]; negative regulation of DNA binding [GO:0043392]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of double-strand break repair via nonhomologous end joining [GO:2001033]; negative regulation of single stranded viral RNA replication via double stranded DNA intermediate [GO:0045869]; negative regulation of transcription by RNA polymerase II [GO:0000122]; oncogene-induced cell senescence [GO:0090402]; positive regulation of angiogenesis [GO:0045766]; positive regulation of cell proliferation in bone marrow [GO:0071864]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of protein serine/threonine kinase activity [GO:0071902]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell cycle process [GO:0010564]; regulation of DNA-templated transcription [GO:0006355]; regulation of stem cell population maintenance [GO:2000036]; response to virus [GO:0009615]; stem cell differentiation [GO:0048863] -P53350 reviewed PLK1_HUMAN Serine/threonine-protein kinase PLK1 (EC 2.7.11.21) (Polo-like kinase 1) (PLK-1) (Serine/threonine-protein kinase 13) (STPK13) PLK1 PLK centrosome cycle [GO:0007098]; double-strand break repair [GO:0006302]; double-strand break repair via alternative nonhomologous end joining [GO:0097681]; establishment of mitotic spindle orientation [GO:0000132]; establishment of protein localization [GO:0045184]; female meiosis chromosome segregation [GO:0016321]; G2/M transition of mitotic cell cycle [GO:0000086]; Golgi inheritance [GO:0048313]; homologous chromosome segregation [GO:0045143]; metaphase/anaphase transition of mitotic cell cycle [GO:0007091]; microtubule bundle formation [GO:0001578]; mitotic cell cycle [GO:0000278]; mitotic chromosome condensation [GO:0007076]; mitotic cytokinesis [GO:0000281]; mitotic G2 DNA damage checkpoint signaling [GO:0007095]; mitotic nuclear membrane disassembly [GO:0007077]; mitotic sister chromatid segregation [GO:0000070]; mitotic spindle assembly checkpoint signaling [GO:0007094]; mitotic spindle organization [GO:0007052]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0045736]; negative regulation of double-strand break repair via homologous recombination [GO:2000042]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nuclear membrane disassembly [GO:0051081]; peptidyl-serine phosphorylation [GO:0018105]; positive regulation of peptidyl-threonine phosphorylation [GO:0010800]; positive regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032436]; positive regulation of protein localization to nucleus [GO:1900182]; positive regulation of proteolysis [GO:0045862]; positive regulation of ubiquitin protein ligase activity [GO:1904668]; positive regulation of ubiquitin-protein transferase activity [GO:0051443]; protein destabilization [GO:0031648]; protein localization to chromatin [GO:0071168]; protein localization to nuclear envelope [GO:0090435]; protein phosphorylation [GO:0006468]; protein ubiquitination [GO:0016567]; regulation of anaphase-promoting complex-dependent catabolic process [GO:1905784]; regulation of cell cycle [GO:0051726]; regulation of cytokinesis [GO:0032465]; regulation of mitotic cell cycle [GO:0007346]; regulation of mitotic cell cycle phase transition [GO:1901990]; regulation of mitotic metaphase/anaphase transition [GO:0030071]; regulation of mitotic spindle assembly [GO:1901673]; regulation of protein binding [GO:0043393]; regulation of protein localization to cell cortex [GO:1904776]; sister chromatid cohesion [GO:0007062]; synaptonemal complex disassembly [GO:0070194] -P53990 reviewed IST1_HUMAN IST1 homolog (hIST1) (Charged multivesicular body protein 8) (CHMP8) (Putative MAPK-activating protein PM28) IST1 KIAA0174 abscission [GO:0009838]; cell division [GO:0051301]; collateral sprouting [GO:0048668]; cytoskeleton-dependent cytokinesis [GO:0061640]; ESCRT III complex disassembly [GO:1904903]; establishment of protein localization [GO:0045184]; multivesicular body assembly [GO:0036258]; positive regulation of collateral sprouting [GO:0048672]; positive regulation of proteolysis [GO:0045862]; protein localization [GO:0008104]; protein transport [GO:0015031]; viral capsid secondary envelopment [GO:0046745]; viral release from host cell [GO:0019076] -P54274 reviewed TERF1_HUMAN Telomeric repeat-binding factor 1 (NIMA-interacting protein 2) (TTAGGG repeat-binding factor 1) (Telomeric protein Pin2/TRF1) TERF1 PIN2 TRBF1 TRF TRF1 cell division [GO:0051301]; meiotic telomere clustering [GO:0045141]; negative regulation of DNA replication [GO:0008156]; negative regulation of establishment of protein localization to telomere [GO:1904850]; negative regulation of establishment of protein-containing complex localization to telomere [GO:1904914]; negative regulation of establishment of RNA localization to telomere [GO:1904911]; negative regulation of exonuclease activity [GO:1905778]; negative regulation of telomerase activity [GO:0051974]; negative regulation of telomere maintenance via semi-conservative replication [GO:0032214]; negative regulation of telomere maintenance via telomerase [GO:0032211]; negative regulation of telomere maintenance via telomere lengthening [GO:1904357]; negative regulation of telomeric D-loop disassembly [GO:1905839]; positive regulation of shelterin complex assembly [GO:1904792]; positive regulation of telomere maintenance [GO:0032206]; t-circle formation [GO:0090656]; telomere capping [GO:0016233]; telomere maintenance [GO:0000723]; telomere maintenance via telomerase [GO:0007004]; telomeric D-loop disassembly [GO:0061820] -P56211 reviewed ARP19_HUMAN cAMP-regulated phosphoprotein 19 (ARPP-19) ARPP19 cell division [GO:0051301]; G2/M transition of mitotic cell cycle [GO:0000086]; mitotic cell cycle [GO:0000278]; negative regulation of protein dephosphorylation [GO:0035308]; positive regulation of gluconeogenesis [GO:0045722]; positive regulation of glucose import [GO:0046326] -P56704 reviewed WNT3A_HUMAN Protein Wnt-3a WNT3A axis elongation involved in somitogenesis [GO:0090245]; axon guidance [GO:0007411]; B cell proliferation [GO:0042100]; calcium ion transmembrane transport via low voltage-gated calcium channel [GO:0090676]; canonical Wnt signaling pathway [GO:0060070]; cardiac muscle cell fate commitment [GO:0060923]; cell fate commitment [GO:0045165]; cell population proliferation [GO:0008283]; cell proliferation in forebrain [GO:0021846]; cell proliferation in midbrain [GO:0033278]; cellular response to retinoic acid [GO:0071300]; COP9 signalosome assembly [GO:0010387]; dorsal/ventral neural tube patterning [GO:0021904]; extracellular matrix organization [GO:0030198]; fat cell differentiation [GO:0045444]; heart development [GO:0007507]; heart looping [GO:0001947]; hemopoiesis [GO:0030097]; hippocampus development [GO:0021766]; in utero embryonic development [GO:0001701]; inner ear morphogenesis [GO:0042472]; mammary gland development [GO:0030879]; midbrain dopaminergic neuron differentiation [GO:1904948]; modulation of chemical synaptic transmission [GO:0050804]; myoblast differentiation [GO:0045445]; negative regulation of axon extension involved in axon guidance [GO:0048843]; negative regulation of dopaminergic neuron differentiation [GO:1904339]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of neurogenesis [GO:0050768]; negative regulation of neuron projection development [GO:0010977]; neuron differentiation [GO:0030182]; non-canonical Wnt signaling pathway [GO:0035567]; osteoblast differentiation [GO:0001649]; paraxial mesodermal cell fate commitment [GO:0048343]; platelet aggregation [GO:0070527]; positive regulation of B cell proliferation [GO:0030890]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of cardiac muscle cell differentiation [GO:2000727]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cell-cell adhesion mediated by cadherin [GO:2000049]; positive regulation of collateral sprouting in absence of injury [GO:0048697]; positive regulation of cytokine production [GO:0001819]; positive regulation of dermatome development [GO:0061184]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of hepatocyte proliferation [GO:2000347]; positive regulation of mesodermal cell fate specification [GO:0048337]; positive regulation of neural precursor cell proliferation [GO:2000179]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of protein localization to plasma membrane [GO:1903078]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of receptor internalization [GO:0002092]; positive regulation of skeletal muscle tissue development [GO:0048643]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-anal tail morphogenesis [GO:0036342]; presynapse assembly [GO:0099054]; protein localization [GO:0008104]; regulation of microtubule cytoskeleton organization [GO:0070507]; regulation of postsynapse to nucleus signaling pathway [GO:1905539]; regulation of presynapse assembly [GO:1905606]; regulation of synapse organization [GO:0050807]; secondary palate development [GO:0062009]; skeletal muscle cell differentiation [GO:0035914]; somatic stem cell division [GO:0048103]; spinal cord association neuron differentiation [GO:0021527]; synaptic vesicle recycling [GO:0036465]; transcription by RNA polymerase II [GO:0006366]; Wnt signaling pathway involved in forebrain neuroblast division [GO:0021874] -P56945 reviewed BCAR1_HUMAN Breast cancer anti-estrogen resistance protein 1 (CRK-associated substrate) (Cas scaffolding protein family member 1) (p130cas) BCAR1 CAS CASS1 CRKAS actin filament organization [GO:0007015]; antigen receptor-mediated signaling pathway [GO:0050851]; B cell receptor signaling pathway [GO:0050853]; cell adhesion [GO:0007155]; cell chemotaxis [GO:0060326]; cell division [GO:0051301]; cell migration [GO:0016477]; cell surface receptor protein tyrosine kinase signaling pathway [GO:0007169]; cellular response to hepatocyte growth factor stimulus [GO:0035729]; endothelin receptor signaling pathway [GO:0086100]; epidermal growth factor receptor signaling pathway [GO:0007173]; G protein-coupled receptor signaling pathway [GO:0007186]; hepatocyte growth factor receptor signaling pathway [GO:0048012]; insulin receptor signaling pathway [GO:0008286]; integrin-mediated signaling pathway [GO:0007229]; neurotrophin TRK receptor signaling pathway [GO:0048011]; platelet-derived growth factor receptor signaling pathway [GO:0048008]; positive regulation of cell migration [GO:0030335]; positive regulation of endothelial cell migration [GO:0010595]; regulation of apoptotic process [GO:0042981]; regulation of cell growth [GO:0001558]; T cell receptor signaling pathway [GO:0050852]; vascular endothelial growth factor receptor signaling pathway [GO:0048010] -P60006 reviewed APC15_HUMAN Anaphase-promoting complex subunit 15 (APC15) ANAPC15 C11orf51 HSPC020 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; protein K11-linked ubiquitination [GO:0070979]; protein K48-linked ubiquitination [GO:0070936]; regulation of meiotic cell cycle [GO:0051445]; regulation of mitotic cell cycle [GO:0007346]; regulation of mitotic cell cycle spindle assembly checkpoint [GO:0090266] -P61024 reviewed CKS1_HUMAN Cyclin-dependent kinases regulatory subunit 1 (CKS-1) CKS1B CKS1 PNAS-143 PNAS-16 cell division [GO:0051301]; fibroblast proliferation [GO:0048144]; mitotic cell cycle phase transition [GO:0044772]; regulation of DNA-templated transcription [GO:0006355]; regulation of mitotic cell cycle [GO:0007346] -P61026 reviewed RAB10_HUMAN Ras-related protein Rab-10 (EC 3.6.5.2) RAB10 antigen processing and presentation [GO:0019882]; axonogenesis [GO:0007409]; cellular response to insulin stimulus [GO:0032869]; endoplasmic reticulum tubular network organization [GO:0071786]; endosomal transport [GO:0016197]; establishment of neuroblast polarity [GO:0045200]; establishment of protein localization to endoplasmic reticulum membrane [GO:0097051]; establishment of protein localization to membrane [GO:0090150]; exocytosis [GO:0006887]; Golgi to plasma membrane protein transport [GO:0043001]; Golgi to plasma membrane transport [GO:0006893]; polarized epithelial cell differentiation [GO:0030859]; protein localization to basolateral plasma membrane [GO:1903361]; protein localization to plasma membrane [GO:0072659]; protein secretion [GO:0009306]; regulated exocytosis [GO:0045055]; vesicle-mediated transport [GO:0016192] -P61158 reviewed ARP3_HUMAN Actin-related protein 3 (Actin-like protein 3) ACTR3 ARP3 actin polymerization-dependent cell motility [GO:0070358]; Arp2/3 complex-mediated actin nucleation [GO:0034314]; asymmetric cell division [GO:0008356]; cellular response to type II interferon [GO:0071346]; cilium assembly [GO:0060271]; establishment or maintenance of cell polarity [GO:0007163]; meiotic chromosome movement towards spindle pole [GO:0016344]; meiotic cytokinesis [GO:0033206]; positive regulation of lamellipodium assembly [GO:0010592]; positive regulation of transcription by RNA polymerase II [GO:0045944]; spindle localization [GO:0051653] -P61160 reviewed ARP2_HUMAN Actin-related protein 2 (Actin-like protein 2) ACTR2 ARP2 Arp2/3 complex-mediated actin nucleation [GO:0034314]; asymmetric cell division [GO:0008356]; cellular response to type II interferon [GO:0071346]; cilium assembly [GO:0060271]; cytosolic transport [GO:0016482]; establishment or maintenance of cell polarity [GO:0007163]; meiotic chromosome movement towards spindle pole [GO:0016344]; meiotic cytokinesis [GO:0033206]; positive regulation of double-strand break repair via homologous recombination [GO:1905168]; positive regulation of lamellipodium assembly [GO:0010592]; positive regulation of transcription by RNA polymerase II [GO:0045944]; spindle localization [GO:0051653] -P61586 reviewed RHOA_HUMAN Transforming protein RhoA (EC 3.6.5.2) (Rho cDNA clone 12) (h12) RHOA ARH12 ARHA RHO12 actin cytoskeleton organization [GO:0030036]; alpha-beta T cell lineage commitment [GO:0002363]; androgen receptor signaling pathway [GO:0030521]; angiotensin-mediated vasoconstriction involved in regulation of systemic arterial blood pressure [GO:0001998]; aortic valve formation [GO:0003189]; apical junction assembly [GO:0043297]; apolipoprotein A-I-mediated signaling pathway [GO:0038027]; beta selection [GO:0043366]; bone trabecula morphogenesis [GO:0061430]; cell junction assembly [GO:0034329]; cell migration [GO:0016477]; cell morphogenesis [GO:0000902]; cell-matrix adhesion [GO:0007160]; cellular response to chemokine [GO:1990869]; cellular response to cytokine stimulus [GO:0071345]; cellular response to lipopolysaccharide [GO:0071222]; cerebral cortex cell migration [GO:0021795]; cleavage furrow formation [GO:0036089]; cytoplasmic microtubule organization [GO:0031122]; endothelial cell migration [GO:0043542]; endothelial tube lumen extension [GO:0097498]; establishment of epithelial cell apical/basal polarity [GO:0045198]; forebrain radial glial cell differentiation [GO:0021861]; kidney development [GO:0001822]; mitotic cleavage furrow formation [GO:1903673]; mitotic spindle assembly [GO:0090307]; motor neuron apoptotic process [GO:0097049]; negative chemotaxis [GO:0050919]; negative regulation of cell migration involved in sprouting angiogenesis [GO:0090051]; negative regulation of cell size [GO:0045792]; negative regulation of cell-substrate adhesion [GO:0010812]; negative regulation of intracellular steroid hormone receptor signaling pathway [GO:0033144]; negative regulation of motor neuron apoptotic process [GO:2000672]; negative regulation of oxidative phosphorylation [GO:0090324]; negative regulation of reactive oxygen species biosynthetic process [GO:1903427]; neuron migration [GO:0001764]; odontogenesis [GO:0042476]; ossification involved in bone maturation [GO:0043931]; positive regulation of alpha-beta T cell differentiation [GO:0046638]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cytokinesis [GO:0032467]; positive regulation of leukocyte adhesion to vascular endothelial cell [GO:1904996]; positive regulation of lipase activity [GO:0060193]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of podosome assembly [GO:0071803]; positive regulation of protein serine/threonine kinase activity [GO:0071902]; positive regulation of stress fiber assembly [GO:0051496]; positive regulation of T cell migration [GO:2000406]; positive regulation of vascular associated smooth muscle contraction [GO:1904695]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of cell migration [GO:0030334]; regulation of focal adhesion assembly [GO:0051893]; regulation of microtubule cytoskeleton organization [GO:0070507]; regulation of modification of postsynaptic actin cytoskeleton [GO:1905274]; regulation of modification of postsynaptic structure [GO:0099159]; regulation of neural precursor cell proliferation [GO:2000177]; regulation of neuron projection development [GO:0010975]; regulation of osteoblast proliferation [GO:0033688]; regulation of systemic arterial blood pressure by endothelin [GO:0003100]; regulation of transcription by RNA polymerase II [GO:0006357]; Rho protein signal transduction [GO:0007266]; Roundabout signaling pathway [GO:0035385]; semaphorin-plexin signaling pathway [GO:0071526]; skeletal muscle satellite cell migration [GO:1902766]; skeletal muscle tissue development [GO:0007519]; stress fiber assembly [GO:0043149]; substantia nigra development [GO:0021762]; substrate adhesion-dependent cell spreading [GO:0034446]; Wnt signaling pathway, planar cell polarity pathway [GO:0060071]; wound healing, spreading of cells [GO:0044319] -P61812 reviewed TGFB2_HUMAN Transforming growth factor beta-2 proprotein (Cetermin) (Glioblastoma-derived T-cell suppressor factor) (G-TSF) [Cleaved into: Latency-associated peptide (LAP); Transforming growth factor beta-2 (TGF-beta-2)] TGFB2 activation of protein kinase activity [GO:0032147]; ascending aorta morphogenesis [GO:0035910]; atrial septum morphogenesis [GO:0060413]; atrial septum primum morphogenesis [GO:0003289]; atrioventricular valve morphogenesis [GO:0003181]; cardiac epithelial to mesenchymal transition [GO:0060317]; cardiac muscle cell proliferation [GO:0060038]; cardiac right ventricle morphogenesis [GO:0003215]; cardioblast differentiation [GO:0010002]; cell migration [GO:0016477]; cell morphogenesis [GO:0000902]; cell-cell junction organization [GO:0045216]; collagen fibril organization [GO:0030199]; cranial skeletal system development [GO:1904888]; dopamine biosynthetic process [GO:0042416]; embryo development ending in birth or egg hatching [GO:0009792]; embryonic digestive tract development [GO:0048566]; embryonic limb morphogenesis [GO:0030326]; endocardial cushion fusion [GO:0003274]; endocardial cushion morphogenesis [GO:0003203]; epithelial cell differentiation [GO:0030855]; epithelial to mesenchymal transition [GO:0001837]; extrinsic apoptotic signaling pathway [GO:0097191]; eye development [GO:0001654]; generation of neurons [GO:0048699]; glial cell migration [GO:0008347]; hair follicle development [GO:0001942]; hair follicle morphogenesis [GO:0031069]; heart development [GO:0007507]; heart morphogenesis [GO:0003007]; heart valve morphogenesis [GO:0003179]; hemopoiesis [GO:0030097]; inner ear development [GO:0048839]; kidney development [GO:0001822]; male gonad development [GO:0008584]; membranous septum morphogenesis [GO:0003149]; negative regulation of angiogenesis [GO:0016525]; negative regulation of cell growth [GO:0030308]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of epithelial to mesenchymal transition involved in endocardial cushion formation [GO:1905006]; negative regulation of gene expression [GO:0010629]; negative regulation of macrophage cytokine production [GO:0010936]; negative regulation of Ras protein signal transduction [GO:0046580]; neural retina development [GO:0003407]; neural tube closure [GO:0001843]; neuron development [GO:0048666]; neutrophil chemotaxis [GO:0030593]; odontogenesis [GO:0042476]; outflow tract septum morphogenesis [GO:0003148]; pharyngeal arch artery morphogenesis [GO:0061626]; positive regulation of cardioblast differentiation [GO:0051891]; positive regulation of cell adhesion mediated by integrin [GO:0033630]; positive regulation of cell cycle [GO:0045787]; positive regulation of cell division [GO:0051781]; positive regulation of cell growth [GO:0030307]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of epithelial cell migration [GO:0010634]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of epithelial to mesenchymal transition involved in endocardial cushion formation [GO:1905007]; positive regulation of heart contraction [GO:0045823]; positive regulation of immune response [GO:0050778]; positive regulation of integrin biosynthetic process [GO:0045726]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of protein secretion [GO:0050714]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of stress-activated MAPK cascade [GO:0032874]; positive regulation of timing of catagen [GO:0051795]; pulmonary valve morphogenesis [GO:0003184]; regulation of apoptotic process involved in outflow tract morphogenesis [GO:1902256]; regulation of cell population proliferation [GO:0042127]; regulation of timing of catagen [GO:0051794]; regulation of transforming growth factor beta2 production [GO:0032909]; response to hypoxia [GO:0001666]; response to progesterone [GO:0032570]; response to wounding [GO:0009611]; salivary gland morphogenesis [GO:0007435]; secondary palate development [GO:0062009]; signaling [GO:0023052]; skeletal system development [GO:0001501]; somatic stem cell division [GO:0048103]; substantia propria of cornea development [GO:1903701]; transforming growth factor beta receptor signaling pathway [GO:0007179]; uterine wall breakdown [GO:0042704]; uterus development [GO:0060065]; ventricular septum morphogenesis [GO:0060412]; ventricular trabecula myocardium morphogenesis [GO:0003222]; wound healing [GO:0042060] -P62136 reviewed PP1A_HUMAN Serine/threonine-protein phosphatase PP1-alpha catalytic subunit (PP-1A) (EC 3.1.3.16) PPP1CA PPP1A branching morphogenesis of an epithelial tube [GO:0048754]; cell division [GO:0051301]; circadian regulation of gene expression [GO:0032922]; dephosphorylation [GO:0016311]; entrainment of circadian clock by photoperiod [GO:0043153]; glycogen metabolic process [GO:0005977]; lung development [GO:0030324]; positive regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001241]; protein dephosphorylation [GO:0006470]; regulation of canonical Wnt signaling pathway [GO:0060828]; regulation of circadian rhythm [GO:0042752]; regulation of glycogen biosynthetic process [GO:0005979]; regulation of glycogen catabolic process [GO:0005981]; regulation of translational initiation [GO:0006446]; response to lead ion [GO:0010288]; telomere maintenance in response to DNA damage [GO:0043247] -P62140 reviewed PP1B_HUMAN Serine/threonine-protein phosphatase PP1-beta catalytic subunit (PP-1B) (PPP1CD) (EC 3.1.3.16) (EC 3.1.3.53) PPP1CB cell division [GO:0051301]; circadian regulation of gene expression [GO:0032922]; entrainment of circadian clock by photoperiod [GO:0043153]; glycogen metabolic process [GO:0005977]; MAPK cascade [GO:0000165]; protein dephosphorylation [GO:0006470]; regulation of cell adhesion [GO:0030155]; regulation of circadian rhythm [GO:0042752] -P62330 reviewed ARF6_HUMAN ADP-ribosylation factor 6 (EC 3.6.5.2) ARF6 cell adhesion [GO:0007155]; cell differentiation [GO:0030154]; cell division [GO:0051301]; cellular response to nerve growth factor stimulus [GO:1990090]; cortical actin cytoskeleton organization [GO:0030866]; endocytic recycling [GO:0032456]; erythrocyte apoptotic process [GO:1902217]; establishment of epithelial cell polarity [GO:0090162]; hepatocyte apoptotic process [GO:0097284]; intracellular protein transport [GO:0006886]; liver development [GO:0001889]; maintenance of postsynaptic density structure [GO:0099562]; negative regulation of dendrite development [GO:2000171]; negative regulation of protein localization to cell surface [GO:2000009]; negative regulation of receptor-mediated endocytosis [GO:0048261]; nervous system development [GO:0007399]; positive regulation of actin filament polymerization [GO:0030838]; positive regulation of focal adhesion disassembly [GO:0120183]; positive regulation of keratinocyte migration [GO:0051549]; positive regulation of mitotic cytokinetic process [GO:1903438]; positive regulation of neuron projection development [GO:0010976]; positive regulation of protein localization to plasma membrane [GO:1903078]; positive regulation of protein secretion [GO:0050714]; protein localization to cell surface [GO:0034394]; protein localization to cleavage furrow [GO:1905345]; protein localization to endosome [GO:0036010]; protein localization to plasma membrane [GO:0072659]; regulation of dendritic spine development [GO:0060998]; regulation of filopodium assembly [GO:0051489]; regulation of presynapse assembly [GO:1905606]; regulation of Rac protein signal transduction [GO:0035020]; ruffle assembly [GO:0097178]; synaptic vesicle endocytosis [GO:0048488]; vesicle-mediated transport [GO:0016192] -P62745 reviewed RHOB_HUMAN Rho-related GTP-binding protein RhoB (Rho cDNA clone 6) (h6) RHOB ARH6 ARHB actin filament organization [GO:0007015]; angiogenesis [GO:0001525]; apoptotic process [GO:0006915]; cell adhesion [GO:0007155]; cell differentiation [GO:0030154]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to ionizing radiation [GO:0071479]; endosome to lysosome transport [GO:0008333]; endothelial tube morphogenesis [GO:0061154]; intracellular protein transport [GO:0006886]; mitotic cytokinesis [GO:0000281]; negative regulation of cell cycle [GO:0045786]; negative regulation of cell migration [GO:0030336]; positive regulation of angiogenesis [GO:0045766]; positive regulation of apoptotic process [GO:0043065]; positive regulation of endothelial cell migration [GO:0010595]; regulation of cell migration [GO:0030334]; regulation of modification of postsynaptic structure [GO:0099159]; Rho protein signal transduction [GO:0007266]; signal transduction [GO:0007165] -P62826 reviewed RAN_HUMAN GTP-binding nuclear protein Ran (EC 3.6.5.-) (Androgen receptor-associated protein 24) (GTPase Ran) (Ras-like protein TC4) (Ras-related nuclear protein) RAN ARA24 OK/SW-cl.81 actin cytoskeleton organization [GO:0030036]; cell division [GO:0051301]; cellular response to mineralocorticoid stimulus [GO:0071389]; DNA metabolic process [GO:0006259]; GTP metabolic process [GO:0046039]; hippocampus development [GO:0021766]; mitotic cell cycle [GO:0000278]; mitotic sister chromatid segregation [GO:0000070]; mitotic spindle organization [GO:0007052]; positive regulation of protein binding [GO:0032092]; positive regulation of protein import into nucleus [GO:0042307]; pre-miRNA export from nucleus [GO:0035281]; protein export from nucleus [GO:0006611]; protein import into nucleus [GO:0006606]; protein localization to nucleolus [GO:1902570]; ribosomal large subunit export from nucleus [GO:0000055]; ribosomal small subunit export from nucleus [GO:0000056]; ribosomal subunit export from nucleus [GO:0000054]; snRNA import into nucleus [GO:0061015]; spermatid development [GO:0007286]; viral process [GO:0016032] -P63096 reviewed GNAI1_HUMAN Guanine nucleotide-binding protein G(i) subunit alpha-1 (Adenylate cyclase-inhibiting G alpha protein) GNAI1 adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway [GO:0007193]; adenylate cyclase-modulating G protein-coupled receptor signaling pathway [GO:0007188]; cell division [GO:0051301]; cellular response to forskolin [GO:1904322]; G protein-coupled receptor signaling pathway [GO:0007186]; positive regulation of protein localization to cell cortex [GO:1904778]; regulation of cAMP-mediated signaling [GO:0043949]; regulation of mitotic spindle organization [GO:0060236]; response to peptide hormone [GO:0043434] -P63172 reviewed DYLT1_HUMAN Dynein light chain Tctex-type 1 (Protein CW-1) (T-complex testis-specific protein 1 homolog) DYNLT1 TCTEL1 TCTEX-1 TCTEX1 cell division [GO:0051301]; establishment of mitotic spindle orientation [GO:0000132]; intracellular transport of viral protein in host cell [GO:0019060]; microtubule-based movement [GO:0007018]; microtubule-dependent intracellular transport of viral material towards nucleus [GO:0075521]; negative regulation of neurogenesis [GO:0050768]; nervous system development [GO:0007399]; regulation of G protein-coupled receptor signaling pathway [GO:0008277]; symbiont entry into host cell [GO:0046718] -P63279 reviewed UBC9_HUMAN SUMO-conjugating enzyme UBC9 (EC 2.3.2.-) (RING-type E3 SUMO transferase UBC9) (SUMO-protein ligase) (Ubiquitin carrier protein 9) (Ubiquitin carrier protein I) (Ubiquitin-conjugating enzyme E2 I) (Ubiquitin-protein ligase I) (p18) UBE2I UBC9 UBCE9 cell division [GO:0051301]; chromosome segregation [GO:0007059]; mitotic nuclear membrane reassembly [GO:0007084]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nuclear export [GO:0051168]; positive regulation of cell migration [GO:0030335]; positive regulation of SUMO transferase activity [GO:1903755]; protein modification process [GO:0036211]; protein sumoylation [GO:0016925]; ubiquitin-dependent protein catabolic process [GO:0006511] -P68363 reviewed TBA1B_HUMAN Tubulin alpha-1B chain (EC 3.6.5.-) (Alpha-tubulin ubiquitous) (Tubulin K-alpha-1) (Tubulin alpha-ubiquitous chain) [Cleaved into: Detyrosinated tubulin alpha-1B chain] TUBA1B cell division [GO:0051301]; cellular response to interleukin-4 [GO:0071353]; cytoskeleton-dependent intracellular transport [GO:0030705]; microtubule cytoskeleton organization [GO:0000226]; microtubule-based process [GO:0007017]; mitotic cell cycle [GO:0000278] -P78396 reviewed CCNA1_HUMAN Cyclin-A1 CCNA1 cell division [GO:0051301]; male meiosis I [GO:0007141]; mitotic cell cycle phase transition [GO:0044772]; spermatogenesis [GO:0007283] -P78406 reviewed RAE1L_HUMAN mRNA export factor RAE1 (Rae1 protein homolog) (mRNA-associated protein mrnp 41) RAE1 MRNP41 cell division [GO:0051301]; cellular response to organic cyclic compound [GO:0071407]; mRNA export from nucleus [GO:0006406]; nucleocytoplasmic transport [GO:0006913]; regulation of mitotic spindle organization [GO:0060236]; RNA export from nucleus [GO:0006405]; transcription-dependent tethering of RNA polymerase II gene DNA at nuclear periphery [GO:0000972] -P81274 reviewed GPSM2_HUMAN G-protein-signaling modulator 2 (Mosaic protein LGN) GPSM2 LGN cell division [GO:0051301]; establishment of mitotic spindle orientation [GO:0000132]; G protein-coupled receptor signaling pathway [GO:0007186]; maintenance of centrosome location [GO:0051661]; mitotic spindle organization [GO:0007052]; positive regulation of protein localization to cell cortex [GO:1904778]; positive regulation of spindle assembly [GO:1905832]; regulation of mitotic spindle organization [GO:0060236] -P83876 reviewed TXN4A_HUMAN Thioredoxin-like protein 4A (DIM1 protein homolog) (Spliceosomal U5 snRNP-specific 15 kDa protein) (Thioredoxin-like U5 snRNP protein U5-15kD) TXNL4A DIM1 TXNL4 cell division [GO:0051301]; mRNA splicing, via spliceosome [GO:0000398]; RNA splicing, via transesterification reactions [GO:0000375]; spliceosomal complex assembly [GO:0000245] -P84077 reviewed ARF1_HUMAN ADP-ribosylation factor 1 (EC 3.6.5.2) ARF1 cellular response to virus [GO:0098586]; dendritic spine organization [GO:0097061]; intracellular copper ion homeostasis [GO:0006878]; intracellular protein transport [GO:0006886]; long-term synaptic depression [GO:0060292]; mitotic cleavage furrow ingression [GO:1990386]; regulation of Arp2/3 complex-mediated actin nucleation [GO:0034315]; regulation of receptor internalization [GO:0002090]; vesicle-mediated transport [GO:0016192] -Q00526 reviewed CDK3_HUMAN Cyclin-dependent kinase 3 (EC 2.7.11.22) (Cell division protein kinase 3) CDK3 CDKN3 cell division [GO:0051301]; cell population proliferation [GO:0008283]; DNA damage response [GO:0006974]; G0 to G1 transition [GO:0045023]; G1/S transition of mitotic cell cycle [GO:0000082]; negative regulation of Notch signaling pathway [GO:0045746]; regulation of G2/M transition of mitotic cell cycle [GO:0010389]; regulation of gene expression [GO:0010468]; response to organic substance [GO:0010033]; signal transduction [GO:0007165] -Q00534 reviewed CDK6_HUMAN Cyclin-dependent kinase 6 (EC 2.7.11.22) (Cell division protein kinase 6) (Serine/threonine-protein kinase PLSTIRE) CDK6 CDKN6 astrocyte development [GO:0014002]; cell dedifferentiation [GO:0043697]; cell division [GO:0051301]; dentate gyrus development [GO:0021542]; G1/S transition of mitotic cell cycle [GO:0000082]; generation of neurons [GO:0048699]; gliogenesis [GO:0042063]; hematopoietic stem cell differentiation [GO:0060218]; lateral ventricle development [GO:0021670]; negative regulation of cell cycle [GO:0045786]; negative regulation of cell differentiation [GO:0045596]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of cellular senescence [GO:2000773]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of monocyte differentiation [GO:0045656]; negative regulation of myeloid cell differentiation [GO:0045638]; negative regulation of osteoblast differentiation [GO:0045668]; negative regulation of transcription by RNA polymerase II [GO:0000122]; Notch signaling pathway [GO:0007219]; positive regulation of cell-matrix adhesion [GO:0001954]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of gene expression [GO:0010628]; protein phosphorylation [GO:0006468]; regulation of cell cycle [GO:0051726]; regulation of cell motility [GO:2000145]; regulation of erythrocyte differentiation [GO:0045646]; regulation of G2/M transition of mitotic cell cycle [GO:0010389]; regulation of gene expression [GO:0010468]; regulation of hematopoietic stem cell differentiation [GO:1902036]; response to organic substance [GO:0010033]; response to virus [GO:0009615]; signal transduction [GO:0007165]; T cell differentiation in thymus [GO:0033077]; type B pancreatic cell development [GO:0003323] -Q00535 reviewed CDK5_HUMAN Cyclin-dependent kinase 5 (EC 2.7.11.1) (Cell division protein kinase 5) (Cyclin-dependent-like kinase 5) (Serine/threonine-protein kinase PSSALRE) (Tau protein kinase II catalytic subunit) (TPKII catalytic subunit) CDK5 CDKN5 PSSALRE axon extension [GO:0048675]; axonogenesis [GO:0007409]; behavioral response to cocaine [GO:0048148]; calcium ion import [GO:0070509]; cell division [GO:0051301]; cell-matrix adhesion [GO:0007160]; cellular response to amyloid-beta [GO:1904646]; central nervous system neuron development [GO:0021954]; cerebellar cortex formation [GO:0021697]; chemical synaptic transmission [GO:0007268]; corpus callosum development [GO:0022038]; dendrite morphogenesis [GO:0048813]; excitatory postsynaptic potential [GO:0060079]; hippocampus development [GO:0021766]; intracellular protein transport [GO:0006886]; layer formation in cerebral cortex [GO:0021819]; microtubule cytoskeleton organization [GO:0000226]; motor neuron axon guidance [GO:0008045]; negative regulation of axon extension [GO:0030517]; negative regulation of cell cycle [GO:0045786]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of protein export from nucleus [GO:0046826]; negative regulation of protein ubiquitination [GO:0031397]; negative regulation of proteolysis [GO:0045861]; negative regulation of synaptic plasticity [GO:0031914]; neuron apoptotic process [GO:0051402]; neuron differentiation [GO:0030182]; neuron migration [GO:0001764]; neuron projection development [GO:0031175]; oligodendrocyte differentiation [GO:0048709]; peptidyl-serine phosphorylation [GO:0018105]; peptidyl-threonine phosphorylation [GO:0018107]; phosphorylation [GO:0016310]; positive regulation of calcium ion-dependent exocytosis [GO:0045956]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of protein targeting to membrane [GO:0090314]; protein localization to synapse [GO:0035418]; protein phosphorylation [GO:0006468]; receptor catabolic process [GO:0032801]; receptor clustering [GO:0043113]; regulation of apoptotic process [GO:0042981]; regulation of cell cycle [GO:0051726]; regulation of cell migration [GO:0030334]; regulation of dendritic spine morphogenesis [GO:0061001]; regulation of macroautophagy [GO:0016241]; regulation of protein localization to plasma membrane [GO:1903076]; regulation of synaptic plasticity [GO:0048167]; regulation of synaptic transmission, glutamatergic [GO:0051966]; regulation of synaptic vesicle recycling [GO:1903421]; rhythmic process [GO:0048511]; Schwann cell development [GO:0014044]; sensory perception of pain [GO:0019233]; skeletal muscle tissue development [GO:0007519]; synapse assembly [GO:0007416]; synaptic transmission, dopaminergic [GO:0001963]; synaptic transmission, glutamatergic [GO:0035249]; synaptic vesicle endocytosis [GO:0048488]; synaptic vesicle exocytosis [GO:0016079]; synaptic vesicle transport [GO:0048489]; visual learning [GO:0008542] -Q00610 reviewed CLH1_HUMAN Clathrin heavy chain 1 (Clathrin heavy chain on chromosome 17) (CLH-17) CLTC CLH17 CLTCL2 KIAA0034 amyloid-beta clearance by transcytosis [GO:0150093]; autophagy [GO:0006914]; cell division [GO:0051301]; clathrin coat assembly [GO:0048268]; clathrin coat disassembly [GO:0072318]; clathrin-dependent endocytosis [GO:0072583]; intracellular protein transport [GO:0006886]; mitotic cell cycle [GO:0000278]; negative regulation of hyaluronan biosynthetic process [GO:1900126]; negative regulation of protein localization to plasma membrane [GO:1903077]; osteoblast differentiation [GO:0001649]; receptor internalization [GO:0031623]; receptor-mediated endocytosis [GO:0006898]; regulation of mitotic spindle organization [GO:0060236]; retrograde transport, endosome to Golgi [GO:0042147]; transferrin transport [GO:0033572] -Q00839 reviewed HNRPU_HUMAN Heterogeneous nuclear ribonucleoprotein U (hnRNP U) (GRIP120) (Nuclear p120 ribonucleoprotein) (Scaffold-attachment factor A) (SAF-A) (p120) (pp120) HNRNPU C1orf199 HNRPU SAFA U21.1 adaptive thermogenesis [GO:1990845]; cardiac muscle cell development [GO:0055013]; cell division [GO:0051301]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to leukemia inhibitory factor [GO:1990830]; chromatin organization [GO:0006325]; circadian regulation of gene expression [GO:0032922]; CRD-mediated mRNA stabilization [GO:0070934]; dendritic transport of messenger ribonucleoprotein complex [GO:0098963]; dosage compensation by inactivation of X chromosome [GO:0009048]; maintenance of protein location in nucleus [GO:0051457]; mRNA splicing, via spliceosome [GO:0000398]; mRNA stabilization [GO:0048255]; negative regulation of kinase activity [GO:0033673]; negative regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay [GO:1900152]; negative regulation of stem cell differentiation [GO:2000737]; negative regulation of telomere maintenance via telomerase [GO:0032211]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transcription elongation by RNA polymerase II [GO:0034244]; osteoblast differentiation [GO:0001649]; positive regulation of attachment of mitotic spindle microtubules to kinetochore [GO:1902425]; positive regulation of brown fat cell differentiation [GO:0090336]; positive regulation of cytoplasmic translation [GO:2000767]; positive regulation of DNA topoisomerase (ATP-hydrolyzing) activity [GO:2000373]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to spindle microtubule [GO:1902889]; regulation of alternative mRNA splicing, via spliceosome [GO:0000381]; regulation of chromatin organization [GO:1902275]; regulation of mitotic cell cycle [GO:0007346]; regulation of mitotic spindle assembly [GO:1901673]; RNA localization to chromatin [GO:1990280]; RNA processing [GO:0006396] -Q01082 reviewed SPTB2_HUMAN Spectrin beta chain, non-erythrocytic 1 (Beta-II spectrin) (Fodrin beta chain) (Spectrin, non-erythroid beta chain 1) SPTBN1 SPTB2 actin cytoskeleton organization [GO:0030036]; actin filament capping [GO:0051693]; central nervous system development [GO:0007417]; central nervous system formation [GO:0021556]; Golgi to plasma membrane protein transport [GO:0043001]; membrane assembly [GO:0071709]; mitotic cytokinesis [GO:0000281]; plasma membrane organization [GO:0007009]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of protein localization to plasma membrane [GO:1903078]; protein localization to plasma membrane [GO:0072659]; regulation of protein localization to plasma membrane [GO:1903076]; regulation of SMAD protein signal transduction [GO:0060390] -Q01085 reviewed TIAR_HUMAN Nucleolysin TIAR (TIA-1-related protein) TIAL1 apoptotic process [GO:0006915]; defense response [GO:0006952]; germ cell development [GO:0007281]; negative regulation of cell population proliferation [GO:0008285]; positive regulation of hippo signaling [GO:0035332]; positive regulation of miRNA-mediated gene silencing [GO:2000637]; positive regulation of stem cell proliferation [GO:2000648]; regulation of transcription by RNA polymerase II [GO:0006357]; stem cell division [GO:0017145]; stem cell proliferation [GO:0072089] -Q02156 reviewed KPCE_HUMAN Protein kinase C epsilon type (EC 2.7.11.13) (nPKC-epsilon) PRKCE PKCE apoptotic process [GO:0006915]; cell division [GO:0051301]; cell-substrate adhesion [GO:0031589]; cellular response to ethanol [GO:0071361]; cellular response to hypoxia [GO:0071456]; cellular response to prostaglandin E stimulus [GO:0071380]; establishment of localization in cell [GO:0051649]; Fc-gamma receptor signaling pathway involved in phagocytosis [GO:0038096]; insulin secretion [GO:0030073]; intracellular signal transduction [GO:0035556]; lipopolysaccharide-mediated signaling pathway [GO:0031663]; locomotory exploration behavior [GO:0035641]; macrophage activation involved in immune response [GO:0002281]; MAPK cascade [GO:0000165]; mucus secretion [GO:0070254]; negative regulation of protein ubiquitination [GO:0031397]; negative regulation of sodium ion transmembrane transporter activity [GO:2000650]; peptidyl-serine phosphorylation [GO:0018105]; positive regulation of actin filament polymerization [GO:0030838]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cell-substrate adhesion [GO:0010811]; positive regulation of cellular glucuronidation [GO:2001031]; positive regulation of cytokinesis [GO:0032467]; positive regulation of epithelial cell migration [GO:0010634]; positive regulation of fibroblast migration [GO:0010763]; positive regulation of insulin secretion [GO:0032024]; positive regulation of lipid catabolic process [GO:0050996]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of mucus secretion [GO:0070257]; positive regulation of protein localization to plasma membrane [GO:1903078]; positive regulation of synaptic transmission, GABAergic [GO:0032230]; positive regulation of wound healing [GO:0090303]; protein phosphorylation [GO:0006468]; regulation of insulin secretion involved in cellular response to glucose stimulus [GO:0061178]; regulation of peptidyl-tyrosine phosphorylation [GO:0050730]; regulation of release of sequestered calcium ion into cytosol [GO:0051279]; response to morphine [GO:0043278]; signal transduction [GO:0007165]; synaptic transmission, GABAergic [GO:0051932]; TRAM-dependent toll-like receptor 4 signaling pathway [GO:0035669] -Q02224 reviewed CENPE_HUMAN Centromere-associated protein E (Centromere protein E) (CENP-E) (Kinesin-7) (Kinesin-related protein CENPE) CENPE attachment of mitotic spindle microtubules to kinetochore [GO:0051315]; cell division [GO:0051301]; chromosome segregation [GO:0007059]; kinetochore assembly [GO:0051382]; lateral attachment of mitotic spindle microtubules to kinetochore [GO:0099607]; metaphase chromosome alignment [GO:0051310]; microtubule plus-end directed mitotic chromosome migration [GO:0099606]; microtubule-based movement [GO:0007018]; mitotic cell cycle [GO:0000278]; mitotic chromosome movement towards spindle pole [GO:0007079]; mitotic metaphase chromosome alignment [GO:0007080]; mitotic spindle organization [GO:0007052]; positive regulation of protein kinase activity [GO:0045860]; regulation of mitotic metaphase/anaphase transition [GO:0030071] -Q02241 reviewed KIF23_HUMAN Kinesin-like protein KIF23 (Kinesin-like protein 5) (Mitotic kinesin-like protein 1) KIF23 KNSL5 MKLP1 microtubule-based movement [GO:0007018]; mitotic cytokinesis [GO:0000281]; mitotic spindle elongation [GO:0000022]; mitotic spindle midzone assembly [GO:0051256]; positive regulation of cytokinesis [GO:0032467] -Q03188 reviewed CENPC_HUMAN Centromere protein C (CENP-C) (Centromere autoantigen C) (Centromere protein C 1) (CENP-C 1) (Interphase centromere complex protein 7) CENPC CENPC1 ICEN7 attachment of mitotic spindle microtubules to kinetochore [GO:0051315]; cell division [GO:0051301]; chromosome segregation [GO:0007059]; kinetochore assembly [GO:0051382]; mitotic cell cycle [GO:0000278]; spindle attachment to meiosis I kinetochore [GO:0051455] -Q05516 reviewed ZBT16_HUMAN Zinc finger and BTB domain-containing protein 16 (Promyelocytic leukemia zinc finger protein) (Zinc finger protein 145) (Zinc finger protein PLZF) ZBTB16 PLZF ZNF145 anterior/posterior pattern specification [GO:0009952]; apoptotic process [GO:0006915]; cartilage development [GO:0051216]; cell population proliferation [GO:0008283]; central nervous system development [GO:0007417]; embryonic digit morphogenesis [GO:0042733]; embryonic hindlimb morphogenesis [GO:0035116]; embryonic pattern specification [GO:0009880]; forelimb morphogenesis [GO:0035136]; hemopoiesis [GO:0030097]; male germ-line stem cell asymmetric division [GO:0048133]; mesonephros development [GO:0001823]; myeloid cell differentiation [GO:0030099]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of myeloid cell differentiation [GO:0045638]; negative regulation of transcription by RNA polymerase II [GO:0000122]; ossification involved in bone maturation [GO:0043931]; positive regulation of apoptotic process [GO:0043065]; positive regulation of cartilage development [GO:0061036]; positive regulation of chondrocyte differentiation [GO:0032332]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of fat cell differentiation [GO:0045600]; positive regulation of NK T cell differentiation [GO:0051138]; positive regulation of ossification [GO:0045778]; protein localization to nucleus [GO:0034504]; protein ubiquitination [GO:0016567]; regulation of transcription by RNA polymerase II [GO:0006357] -Q08379 reviewed GOGA2_HUMAN Golgin subfamily A member 2 (130 kDa cis-Golgi matrix protein) (GM130) (GM130 autoantigen) (Golgin-95) GOLGA2 asymmetric cell division [GO:0008356]; centrosome cycle [GO:0007098]; endoplasmic reticulum to Golgi vesicle-mediated transport [GO:0006888]; Golgi disassembly [GO:0090166]; Golgi organization [GO:0007030]; Golgi ribbon formation [GO:0090161]; meiotic spindle assembly [GO:0090306]; microtubule nucleation [GO:0007020]; mitotic spindle assembly [GO:0090307]; negative regulation of autophagy [GO:0010507]; negative regulation of protein binding [GO:0032091]; positive regulation of protein glycosylation [GO:0060050]; protein glycosylation [GO:0006486]; protein homotetramerization [GO:0051289]; protein transport [GO:0015031]; spindle assembly [GO:0051225] -Q08AE8 reviewed SPIR1_HUMAN Protein spire homolog 1 (Spir-1) SPIRE1 KIAA1135 SPIR1 actin cytoskeleton organization [GO:0030036]; actin filament network formation [GO:0051639]; actin filament polymerization [GO:0030041]; actin nucleation [GO:0045010]; cleavage furrow formation [GO:0036089]; establishment of meiotic spindle localization [GO:0051295]; formin-nucleated actin cable assembly [GO:0070649]; Golgi vesicle transport [GO:0048193]; innate immune response [GO:0045087]; intracellular transport [GO:0046907]; polar body extrusion after meiotic divisions [GO:0040038]; positive regulation of double-strand break repair [GO:2000781]; positive regulation of mitochondrial fission [GO:0090141]; protein transport [GO:0015031]; vesicle-mediated transport [GO:0016192] -Q08J23 reviewed NSUN2_HUMAN RNA cytosine C(5)-methyltransferase NSUN2 (EC 2.1.1.-) (Myc-induced SUN domain-containing protein) (Misu) (NOL1/NOP2/Sun domain family member 2) (Substrate of AIM1/Aurora kinase B) (mRNA cytosine C(5)-methyltransferase) (EC 2.1.1.-) (tRNA cytosine C(5)-methyltransferase) (EC 2.1.1.-, EC 2.1.1.203) (tRNA methyltransferase 4 homolog) (hTrm4) NSUN2 SAKI TRM4 cell division [GO:0051301]; hair follicle maturation [GO:0048820]; in utero embryonic development [GO:0001701]; meiotic cell cycle checkpoint signaling [GO:0033313]; mRNA processing [GO:0006397]; regulation of mRNA export from nucleus [GO:0010793]; regulation of stem cell differentiation [GO:2000736]; spermatid development [GO:0007286]; tRNA methylation [GO:0030488]; tRNA modification [GO:0006400]; tRNA stabilization [GO:0036416] -Q12768 reviewed WASC5_HUMAN WASH complex subunit 5 (Strumpellin) (WASH complex subunit strumpellin) WASHC5 KIAA0196 actin filament polymerization [GO:0030041]; endosomal transport [GO:0016197]; endosome fission [GO:0140285]; endosome organization [GO:0007032]; lysosome organization [GO:0007040]; meiotic spindle assembly [GO:0090306]; oocyte maturation [GO:0001556]; polar body extrusion after meiotic divisions [GO:0040038]; positive regulation of neuron projection development [GO:0010976]; protein transport [GO:0015031]; protein-containing complex localization [GO:0031503]; regulation of actin nucleation [GO:0051125]; regulation of Arp2/3 complex-mediated actin nucleation [GO:0034315]; regulation of vesicle size [GO:0097494] -Q12798 reviewed CETN1_HUMAN Centrin-1 (Caltractin isoform 2) CETN1 CEN1 CETN cell division [GO:0051301]; cellular response to heat [GO:0034605]; centriole replication [GO:0007099] -Q12834 reviewed CDC20_HUMAN Cell division cycle protein 20 homolog (p55CDC) CDC20 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell differentiation [GO:0030154]; cell division [GO:0051301]; metaphase/anaphase transition of cell cycle [GO:0044784]; metaphase/anaphase transition of meiosis I [GO:1990949]; mitotic sister chromatid cohesion [GO:0007064]; mitotic spindle assembly [GO:0090307]; mitotic spindle assembly checkpoint signaling [GO:0007094]; nervous system development [GO:0007399]; positive regulation of anaphase-promoting complex-dependent catabolic process [GO:1905786]; positive regulation of mitotic metaphase/anaphase transition [GO:0045842]; positive regulation of synapse maturation [GO:0090129]; positive regulation of synaptic plasticity [GO:0031915]; positive regulation of ubiquitin protein ligase activity [GO:1904668]; protein ubiquitination [GO:0016567]; regulation of meiotic cell cycle [GO:0051445]; regulation of meiotic nuclear division [GO:0040020]; regulation of mitotic cell cycle [GO:0007346] -Q12955 reviewed ANK3_HUMAN Ankyrin-3 (ANK-3) (Ankyrin-G) ANK3 axonogenesis [GO:0007409]; cellular response to magnesium ion [GO:0071286]; establishment of protein localization [GO:0045184]; Golgi to plasma membrane protein transport [GO:0043001]; magnesium ion homeostasis [GO:0010960]; maintenance of protein location in plasma membrane [GO:0072660]; membrane assembly [GO:0071709]; mitotic cytokinesis [GO:0000281]; negative regulation of delayed rectifier potassium channel activity [GO:1902260]; neuromuscular junction development [GO:0007528]; neuronal action potential [GO:0019228]; plasma membrane organization [GO:0007009]; positive regulation of cation channel activity [GO:2001259]; positive regulation of cell communication by electrical coupling [GO:0010650]; positive regulation of gene expression [GO:0010628]; positive regulation of homotypic cell-cell adhesion [GO:0034112]; positive regulation of membrane depolarization during cardiac muscle cell action potential [GO:1900827]; positive regulation of membrane potential [GO:0045838]; positive regulation of protein targeting to membrane [GO:0090314]; positive regulation of sodium ion transmembrane transporter activity [GO:2000651]; positive regulation of sodium ion transport [GO:0010765]; protein localization to axon [GO:0099612]; protein localization to plasma membrane [GO:0072659]; regulation of potassium ion transport [GO:0043266]; signal transduction [GO:0007165] -Q13042 reviewed CDC16_HUMAN Cell division cycle protein 16 homolog (Anaphase-promoting complex subunit 6) (APC6) (CDC16 homolog) (CDC16Hs) (Cyclosome subunit 6) CDC16 ANAPC6 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; positive regulation of mitotic metaphase/anaphase transition [GO:0045842]; protein K11-linked ubiquitination [GO:0070979]; protein K48-linked ubiquitination [GO:0070936]; protein ubiquitination [GO:0016567]; regulation of meiotic cell cycle [GO:0051445]; regulation of mitotic cell cycle [GO:0007346] -Q13257 reviewed MD2L1_HUMAN Mitotic spindle assembly checkpoint protein MAD2A (HsMAD2) (Mitotic arrest deficient 2-like protein 1) (MAD2-like protein 1) MAD2L1 MAD2 cell division [GO:0051301]; establishment of centrosome localization [GO:0051660]; establishment of mitotic spindle orientation [GO:0000132]; mitotic sister chromatid segregation [GO:0000070]; mitotic spindle assembly checkpoint signaling [GO:0007094]; negative regulation of apoptotic process [GO:0043066]; negative regulation of mitotic cell cycle [GO:0045930]; negative regulation of protein catabolic process [GO:0042177]; negative regulation of ubiquitin protein ligase activity [GO:1904667]; positive regulation of mitotic cell cycle spindle assembly checkpoint [GO:0090267] -Q13352 reviewed CENPR_HUMAN Centromere protein R (CENP-R) (Beta-3-endonexin) (Integrin beta-3-binding protein) (Nuclear receptor-interacting factor 3) ITGB3BP CENPR NRIF3 apoptotic process [GO:0006915]; cell adhesion [GO:0007155]; cell division [GO:0051301]; CENP-A containing chromatin assembly [GO:0034080]; chromosome segregation [GO:0007059]; negative regulation of epithelial cell apoptotic process [GO:1904036]; positive regulation of epithelial cell proliferation [GO:0050679]; regulation of DNA-templated transcription [GO:0006355]; signal transduction [GO:0007165] -Q13432 reviewed U119A_HUMAN Protein unc-119 homolog A (Retinal protein 4) (hRG4) UNC119 RG4 chemical synaptic transmission [GO:0007268]; endocytosis [GO:0006897]; lipoprotein transport [GO:0042953]; mitotic cytokinesis [GO:0000281]; negative regulation of caveolin-mediated endocytosis [GO:2001287]; negative regulation of clathrin-dependent endocytosis [GO:1900186]; nervous system development [GO:0007399]; phototransduction [GO:0007602]; positive regulation of protein tyrosine kinase activity [GO:0061098]; visual perception [GO:0007601] -Q13464 reviewed ROCK1_HUMAN Rho-associated protein kinase 1 (EC 2.7.11.1) (Renal carcinoma antigen NY-REN-35) (Rho-associated, coiled-coil-containing protein kinase 1) (Rho-associated, coiled-coil-containing protein kinase I) (ROCK-I) (p160 ROCK-1) (p160ROCK) ROCK1 actin cytoskeleton organization [GO:0030036]; actomyosin structure organization [GO:0031032]; aortic valve morphogenesis [GO:0003180]; apical constriction [GO:0003383]; bleb assembly [GO:0032060]; blood vessel diameter maintenance [GO:0097746]; canonical NF-kappaB signal transduction [GO:0007249]; cortical actin cytoskeleton organization [GO:0030866]; embryonic morphogenesis [GO:0048598]; epithelial to mesenchymal transition [GO:0001837]; leukocyte cell-cell adhesion [GO:0007159]; leukocyte migration [GO:0050900]; leukocyte tethering or rolling [GO:0050901]; membrane to membrane docking [GO:0022614]; mitotic cytokinesis [GO:0000281]; motor neuron apoptotic process [GO:0097049]; mRNA destabilization [GO:0061157]; myoblast migration [GO:0051451]; negative regulation of amyloid precursor protein catabolic process [GO:1902992]; negative regulation of amyloid-beta formation [GO:1902430]; negative regulation of angiogenesis [GO:0016525]; negative regulation of bicellular tight junction assembly [GO:1903347]; negative regulation of biomineral tissue development [GO:0070168]; negative regulation of membrane protein ectodomain proteolysis [GO:0051045]; negative regulation of motor neuron apoptotic process [GO:2000672]; negative regulation of myosin-light-chain-phosphatase activity [GO:0035509]; negative regulation of phosphorylation [GO:0042326]; negative regulation of protein binding [GO:0032091]; neuron projection arborization [GO:0140058]; neuron projection development [GO:0031175]; peptidyl-serine phosphorylation [GO:0018105]; podocyte cell migration [GO:0090521]; positive regulation of amyloid-beta clearance [GO:1900223]; positive regulation of autophagy [GO:0010508]; positive regulation of cardiac muscle hypertrophy [GO:0010613]; positive regulation of connective tissue replacement [GO:1905205]; positive regulation of dephosphorylation [GO:0035306]; positive regulation of focal adhesion assembly [GO:0051894]; positive regulation of gene expression [GO:0010628]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of phosphatase activity [GO:0010922]; protein localization to plasma membrane [GO:0072659]; protein phosphorylation [GO:0006468]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of angiotensin-activated signaling pathway [GO:0110061]; regulation of cell adhesion [GO:0030155]; regulation of cell junction assembly [GO:1901888]; regulation of cell migration [GO:0030334]; regulation of cell motility [GO:2000145]; regulation of establishment of cell polarity [GO:2000114]; regulation of establishment of endothelial barrier [GO:1903140]; regulation of focal adhesion assembly [GO:0051893]; regulation of keratinocyte differentiation [GO:0045616]; regulation of microtubule cytoskeleton organization [GO:0070507]; regulation of neuron differentiation [GO:0045664]; regulation of stress fiber assembly [GO:0051492]; regulation of synapse maturation [GO:0090128]; regulation of synaptic vesicle endocytosis [GO:1900242]; response to angiotensin [GO:1990776]; response to transforming growth factor beta [GO:0071559]; Rho protein signal transduction [GO:0007266]; signal transduction [GO:0007165]; smooth muscle contraction [GO:0006939] -Q13576 reviewed IQGA2_HUMAN Ras GTPase-activating-like protein IQGAP2 IQGAP2 Arp2/3 complex-mediated actin nucleation [GO:0034314]; mitotic actomyosin contractile ring assembly actin filament organization [GO:1903479]; regulation of actin cytoskeleton organization [GO:0032956]; signal transduction [GO:0007165]; thrombin-activated receptor signaling pathway [GO:0070493] -Q13618 reviewed CUL3_HUMAN Cullin-3 (CUL-3) CUL3 KIAA0617 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell migration [GO:0016477]; cell projection organization [GO:0030030]; cellular response to amino acid stimulus [GO:0071230]; COPII vesicle coating [GO:0048208]; embryonic cleavage [GO:0040016]; endoplasmic reticulum to Golgi vesicle-mediated transport [GO:0006888]; fibroblast apoptotic process [GO:0044346]; G1/S transition of mitotic cell cycle [GO:0000082]; gastrulation [GO:0007369]; gene expression [GO:0010467]; inflammatory response [GO:0006954]; integrin-mediated signaling pathway [GO:0007229]; intrinsic apoptotic signaling pathway [GO:0097193]; liver morphogenesis [GO:0072576]; mitotic metaphase chromosome alignment [GO:0007080]; negative regulation of Rho protein signal transduction [GO:0035024]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of type I interferon production [GO:0032480]; nuclear protein quality control by the ubiquitin-proteasome system [GO:0071630]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cytokinesis [GO:0032467]; positive regulation of mitotic cell cycle phase transition [GO:1901992]; positive regulation of mitotic metaphase/anaphase transition [GO:0045842]; positive regulation of protein ubiquitination [GO:0031398]; positive regulation of TORC1 signaling [GO:1904263]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; protein autoubiquitination [GO:0051865]; protein destabilization [GO:0031648]; protein K48-linked ubiquitination [GO:0070936]; protein monoubiquitination [GO:0006513]; protein polyubiquitination [GO:0000209]; protein ubiquitination [GO:0016567]; regulation of cellular response to insulin stimulus [GO:1900076]; regulation protein catabolic process at postsynapse [GO:0140252]; stem cell division [GO:0017145]; stress fiber assembly [GO:0043149]; trophectodermal cellular morphogenesis [GO:0001831]; ubiquitin-dependent protein catabolic process [GO:0006511]; Wnt signaling pathway [GO:0016055] -Q14008 reviewed CKAP5_HUMAN Cytoskeleton-associated protein 5 (Colonic and hepatic tumor overexpressed gene protein) (Ch-TOG) CKAP5 KIAA0097 cell division [GO:0051301]; centrosome cycle [GO:0007098]; centrosome duplication [GO:0051298]; establishment or maintenance of microtubule cytoskeleton polarity [GO:0030951]; microtubule depolymerization [GO:0007019]; microtubule polymerization [GO:0046785]; mitotic spindle organization [GO:0007052]; positive regulation of microtubule nucleation [GO:0090063]; RNA transport [GO:0050658]; spindle organization [GO:0007051] -Q14141 reviewed SEPT6_HUMAN Septin-6 SEPTIN6 KIAA0128 SEP2 SEPT6 cell differentiation [GO:0030154]; cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640]; mitotic cytokinesis [GO:0000281]; protein localization [GO:0008104]; spermatogenesis [GO:0007283] -Q14203 reviewed DCTN1_HUMAN Dynactin subunit 1 (150 kDa dynein-associated polypeptide) (DAP-150) (DP-150) (p135) (p150-glued) DCTN1 cell division [GO:0051301]; centriole-centriole cohesion [GO:0010457]; establishment of mitotic spindle orientation [GO:0000132]; maintenance of synapse structure [GO:0099558]; melanosome transport [GO:0032402]; microtubule anchoring at centrosome [GO:0034454]; mitotic cell cycle [GO:0000278]; motor behavior [GO:0061744]; nervous system development [GO:0007399]; neuromuscular junction development [GO:0007528]; neuromuscular process [GO:0050905]; neuron cellular homeostasis [GO:0070050]; neuron projection maintenance [GO:1990535]; non-motile cilium assembly [GO:1905515]; nuclear membrane disassembly [GO:0051081]; nuclear migration [GO:0007097]; positive regulation of microtubule nucleation [GO:0090063]; positive regulation of microtubule polymerization [GO:0031116]; positive regulation of neuromuscular junction development [GO:1904398]; regulation of mitotic spindle organization [GO:0060236]; retrograde transport, endosome to Golgi [GO:0042147]; ventral spinal cord development [GO:0021517] -Q14204 reviewed DYHC1_HUMAN Cytoplasmic dynein 1 heavy chain 1 (Cytoplasmic dynein heavy chain 1) (Dynein heavy chain, cytosolic) DYNC1H1 DHC1 DNCH1 DNCL DNECL DYHC KIAA0325 cell division [GO:0051301]; cytoplasmic microtubule organization [GO:0031122]; establishment of spindle localization [GO:0051293]; mitotic spindle organization [GO:0007052]; nuclear migration [GO:0007097]; P-body assembly [GO:0033962]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of intracellular transport [GO:0032388]; positive regulation of spindle assembly [GO:1905832]; regulation of metaphase plate congression [GO:0090235]; regulation of mitotic spindle organization [GO:0060236]; retrograde axonal transport [GO:0008090]; stress granule assembly [GO:0034063] -Q14457 reviewed BECN1_HUMAN Beclin-1 (Coiled-coil myosin-like BCL2-interacting protein) (Protein GT197) [Cleaved into: Beclin-1-C 35 kDa; Beclin-1-C 37 kDa] BECN1 GT197 amyloid-beta metabolic process [GO:0050435]; apoptotic process [GO:0006915]; autophagosome assembly [GO:0000045]; autophagosome maturation [GO:0097352]; autophagy [GO:0006914]; cell division [GO:0051301]; cellular defense response [GO:0006968]; cellular response to aluminum ion [GO:0071275]; cellular response to amino acid starvation [GO:0034198]; cellular response to copper ion [GO:0071280]; cellular response to epidermal growth factor stimulus [GO:0071364]; cellular response to glucose starvation [GO:0042149]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to nitrogen starvation [GO:0006995]; cellular response to oxygen-glucose deprivation [GO:0090650]; cytoplasmic pattern recognition receptor signaling pathway [GO:0002753]; defense response to virus [GO:0051607]; early endosome to late endosome transport [GO:0045022]; engulfment of apoptotic cell [GO:0043652]; JNK cascade [GO:0007254]; late endosome to vacuole transport [GO:0045324]; lysosome organization [GO:0007040]; macroautophagy [GO:0016236]; mitophagy [GO:0000423]; mitotic metaphase chromosome alignment [GO:0007080]; negative regulation of apoptotic process [GO:0043066]; negative regulation of autophagosome assembly [GO:1902902]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of lysosome organization [GO:1905672]; negative regulation of programmed cell death [GO:0043069]; negative regulation of reactive oxygen species metabolic process [GO:2000378]; neuron development [GO:0048666]; p38MAPK cascade [GO:0038066]; phosphatidylinositol-3-phosphate biosynthetic process [GO:0036092]; positive regulation of attachment of mitotic spindle microtubules to kinetochore [GO:1902425]; positive regulation of autophagosome assembly [GO:2000786]; positive regulation of autophagy [GO:0010508]; positive regulation of cardiac muscle hypertrophy [GO:0010613]; positive regulation of intrinsic apoptotic signaling pathway [GO:2001244]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of stress granule assembly [GO:0062029]; protein targeting to lysosome [GO:0006622]; protein-containing complex assembly [GO:0065003]; receptor catabolic process [GO:0032801]; regulation of autophagy [GO:0010506]; regulation of cytokinesis [GO:0032465]; regulation of macroautophagy [GO:0016241]; response to hypoxia [GO:0001666]; response to iron(II) ion [GO:0010040]; response to lead ion [GO:0010288]; response to mitochondrial depolarisation [GO:0098780]; response to vitamin E [GO:0033197]; response to xenobiotic stimulus [GO:0009410]; SMAD protein signal transduction [GO:0060395]; suppression by virus of host autophagy [GO:0039521] -Q14511 reviewed CASL_HUMAN Enhancer of filamentation 1 (hEF1) (CRK-associated substrate-related protein) (CAS-L) (CasL) (Cas scaffolding protein family member 2) (CASS2) (Neural precursor cell expressed developmentally down-regulated protein 9) (NEDD-9) (Renal carcinoma antigen NY-REN-12) (p105) [Cleaved into: Enhancer of filamentation 1 p55] NEDD9 CASL actin filament bundle assembly [GO:0051017]; cell adhesion [GO:0007155]; cell division [GO:0051301]; cell migration [GO:0016477]; cell surface receptor protein tyrosine kinase signaling pathway [GO:0007169]; cilium disassembly [GO:0061523]; cytoskeleton organization [GO:0007010]; integrin-mediated signaling pathway [GO:0007229]; learning or memory [GO:0007611]; lymphocyte migration into lymphoid organs [GO:0097021]; negative regulation of cell migration [GO:0030336]; positive regulation of cell migration [GO:0030335]; positive regulation of dendritic spine maintenance [GO:1902952]; positive regulation of immunological synapse formation [GO:2000522]; positive regulation of lymphocyte chemotaxis [GO:0140131]; positive regulation of osteoclast differentiation [GO:0045672]; positive regulation of protein localization [GO:1903829]; positive regulation of protein tyrosine kinase activity [GO:0061098]; positive regulation of substrate adhesion-dependent cell spreading [GO:1900026]; regulation of actin cytoskeleton organization [GO:0032956]; signal transduction [GO:0007165] -Q14674 reviewed ESPL1_HUMAN Separin (EC 3.4.22.49) (Caspase-like protein ESPL1) (Extra spindle poles-like 1 protein) (Separase) ESPL1 ESP1 KIAA0165 apoptotic process [GO:0006915]; establishment of mitotic spindle localization [GO:0040001]; homologous chromosome segregation [GO:0045143]; meiotic chromosome separation [GO:0051307]; meiotic spindle organization [GO:0000212]; mitotic cytokinesis [GO:0000281]; mitotic sister chromatid segregation [GO:0000070]; mitotic sister chromatid separation [GO:0051306]; negative regulation of sister chromatid cohesion [GO:0045875]; positive regulation of mitotic metaphase/anaphase transition [GO:0045842]; proteolysis [GO:0006508] -Q14683 reviewed SMC1A_HUMAN Structural maintenance of chromosomes protein 1A (SMC protein 1A) (SMC-1-alpha) (SMC-1A) (Sb1.8) SMC1A DXS423E KIAA0178 SB1.8 SMC1 SMC1L1 cell division [GO:0051301]; DNA repair [GO:0006281]; establishment of meiotic sister chromatid cohesion [GO:0034089]; establishment of mitotic sister chromatid cohesion [GO:0034087]; meiotic cell cycle [GO:0051321]; mitotic sister chromatid cohesion [GO:0007064]; mitotic sister chromatid segregation [GO:0000070]; mitotic spindle assembly [GO:0090307]; response to DNA damage checkpoint signaling [GO:0072423]; response to radiation [GO:0009314]; sister chromatid cohesion [GO:0007062]; somatic stem cell population maintenance [GO:0035019] -Q14980 reviewed NUMA1_HUMAN Nuclear mitotic apparatus protein 1 (Nuclear matrix protein-22) (NMP-22) (Nuclear mitotic apparatus protein) (NuMA protein) (SP-H antigen) NUMA1 NMP22 NUMA anastral spindle assembly [GO:0055048]; astral microtubule organization [GO:0030953]; cell division [GO:0051301]; establishment of mitotic spindle orientation [GO:0000132]; meiotic cell cycle [GO:0051321]; microtubule bundle formation [GO:0001578]; nucleus organization [GO:0006997]; positive regulation of BMP signaling pathway [GO:0030513]; positive regulation of chromosome segregation [GO:0051984]; positive regulation of chromosome separation [GO:1905820]; positive regulation of hair follicle development [GO:0051798]; positive regulation of intracellular transport [GO:0032388]; positive regulation of keratinocyte differentiation [GO:0045618]; positive regulation of microtubule polymerization [GO:0031116]; positive regulation of mitotic spindle elongation [GO:1902846]; positive regulation of protein localization to cell cortex [GO:1904778]; positive regulation of protein localization to spindle pole body [GO:1902365]; positive regulation of spindle assembly [GO:1905832]; regulation of metaphase plate congression [GO:0090235]; regulation of mitotic spindle organization [GO:0060236] -Q14999 reviewed CUL7_HUMAN Cullin-7 (CUL-7) CUL7 KIAA0076 epithelial to mesenchymal transition [GO:0001837]; Golgi organization [GO:0007030]; microtubule cytoskeleton organization [GO:0000226]; mitotic cytokinesis [GO:0000281]; placenta development [GO:0001890]; positive regulation of dendrite morphogenesis [GO:0050775]; protein ubiquitination [GO:0016567]; proteolysis [GO:0006508]; regulation of mitotic nuclear division [GO:0007088]; ubiquitin-dependent protein catabolic process [GO:0006511]; vasculogenesis [GO:0001570] -Q15003 reviewed CND2_HUMAN Condensin complex subunit 2 (Barren homolog protein 1) (Chromosome-associated protein H) (hCAP-H) (Non-SMC condensin I complex subunit H) (XCAP-H homolog) NCAPH BRRN BRRN1 CAPH KIAA0074 cell division [GO:0051301]; female meiosis chromosome separation [GO:0051309]; meiotic chromosome condensation [GO:0010032]; mitotic chromosome condensation [GO:0007076]; positive regulation of chromosome condensation [GO:1905821]; positive regulation of chromosome segregation [GO:0051984]; positive regulation of chromosome separation [GO:1905820] -Q15018 reviewed ABRX2_HUMAN BRISC complex subunit Abraxas 2 (Abraxas brother protein 1) (Protein FAM175B) ABRAXAS2 ABRO1 FAM175B KIAA0157 attachment of spindle microtubules to kinetochore [GO:0008608]; cell division [GO:0051301]; chromosome segregation [GO:0007059]; mitotic cell cycle [GO:0000278]; mitotic spindle assembly [GO:0090307]; protein K63-linked deubiquitination [GO:0070536]; response to ischemia [GO:0002931] -Q15019 reviewed SEPT2_HUMAN Septin-2 (Neural precursor cell expressed developmentally down-regulated protein 5) (NEDD-5) SEPTIN2 DIFF6 KIAA0158 NEDD5 SEPT2 cell differentiation [GO:0030154]; cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640]; protein localization [GO:0008104]; regulation of exocytosis [GO:0017157]; smoothened signaling pathway [GO:0007224]; spermatogenesis [GO:0007283] -Q15021 reviewed CND1_HUMAN Condensin complex subunit 1 (Chromosome condensation-related SMC-associated protein 1) (Chromosome-associated protein D2) (hCAP-D2) (Non-SMC condensin I complex subunit D2) (XCAP-D2 homolog) NCAPD2 CAPD2 CNAP1 KIAA0159 cell division [GO:0051301]; meiotic chromosome condensation [GO:0010032]; mitotic chromosome condensation [GO:0007076]; positive regulation of chromosome condensation [GO:1905821]; positive regulation of chromosome segregation [GO:0051984]; positive regulation of chromosome separation [GO:1905820] -Q15058 reviewed KIF14_HUMAN Kinesin-like protein KIF14 KIF14 KIAA0042 activation of protein kinase activity [GO:0032147]; cell division [GO:0051301]; cell proliferation in forebrain [GO:0021846]; cerebellar cortex development [GO:0021695]; cerebellar granular layer structural organization [GO:0021685]; cerebellar Purkinje cell layer structural organization [GO:0021693]; cerebral cortex development [GO:0021987]; establishment of protein localization [GO:0045184]; hippocampus development [GO:0021766]; microtubule-based movement [GO:0007018]; mitotic metaphase chromosome alignment [GO:0007080]; negative regulation of apoptotic process [GO:0043066]; negative regulation of integrin activation [GO:0033624]; negative regulation of neuron apoptotic process [GO:0043524]; olfactory bulb development [GO:0021772]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cytokinesis [GO:0032467]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; regulation of cell adhesion [GO:0030155]; regulation of cell growth [GO:0001558]; regulation of cell maturation [GO:1903429]; regulation of cell migration [GO:0030334]; regulation of G1/S transition of mitotic cell cycle [GO:2000045]; regulation of G2/M transition of mitotic cell cycle [GO:0010389]; regulation of myelination [GO:0031641]; regulation of neuron apoptotic process [GO:0043523]; regulation of Rap protein signal transduction [GO:0032487]; SCF-dependent proteasomal ubiquitin-dependent protein catabolic process [GO:0031146]; substrate adhesion-dependent cell spreading [GO:0034446] -Q15149 reviewed PLEC_HUMAN Plectin (PCN) (PLTN) (Hemidesmosomal protein 1) (HD1) (Plectin-1) PLEC PLEC1 actomyosin contractile ring assembly actin filament organization [GO:2000689]; adherens junction organization [GO:0034332]; cardiac muscle cell development [GO:0055013]; cell morphogenesis [GO:0000902]; cellular response to extracellular stimulus [GO:0031668]; cellular response to fluid shear stress [GO:0071498]; cellular response to hydrostatic pressure [GO:0071464]; cellular response to mechanical stimulus [GO:0071260]; establishment of skin barrier [GO:0061436]; fibroblast migration [GO:0010761]; gene expression [GO:0010467]; hemidesmosome assembly [GO:0031581]; intermediate filament cytoskeleton organization [GO:0045104]; intermediate filament organization [GO:0045109]; keratinocyte development [GO:0003334]; leukocyte migration involved in immune response [GO:0002522]; mitochondrion organization [GO:0007005]; multicellular organism growth [GO:0035264]; myoblast differentiation [GO:0045445]; nucleus organization [GO:0006997]; peripheral nervous system myelin maintenance [GO:0032287]; protein localization [GO:0008104]; protein-containing complex organization [GO:0043933]; regulation of vascular permeability [GO:0043114]; respiratory electron transport chain [GO:0022904]; response to food [GO:0032094]; sarcomere organization [GO:0045214]; skeletal muscle fiber development [GO:0048741]; skeletal myofibril assembly [GO:0014866]; T cell chemotaxis [GO:0010818]; tight junction organization [GO:0120193]; transmission of nerve impulse [GO:0019226]; wound healing [GO:0042060] -Q15286 reviewed RAB35_HUMAN Ras-related protein Rab-35 (GTP-binding protein RAY) (Ras-related protein Rab-1C) RAB35 RAB1C RAY antigen processing and presentation [GO:0019882]; cellular response to nerve growth factor stimulus [GO:1990090]; endocytic recycling [GO:0032456]; endosomal transport [GO:0016197]; mitotic cytokinesis [GO:0000281]; neuron projection development [GO:0031175]; plasma membrane to endosome transport [GO:0048227]; protein localization [GO:0008104]; protein localization to endosome [GO:0036010]; protein transport [GO:0015031]; Rab protein signal transduction [GO:0032482] -Q15431 reviewed SYCP1_HUMAN Synaptonemal complex protein 1 (SCP-1) (Cancer/testis antigen 8) (CT8) SYCP1 SCP1 cell division [GO:0051301]; chiasma assembly [GO:0051026]; homologous chromosome pairing at meiosis [GO:0007129]; lateral element assembly [GO:0051878]; meiotic DNA repair synthesis [GO:0000711]; protein homotetramerization [GO:0051289]; reciprocal meiotic recombination [GO:0007131]; regulation of protein localization [GO:0032880]; sperm DNA condensation [GO:0035092]; spermatogenesis [GO:0007283]; synaptonemal complex assembly [GO:0007130] -Q15555 reviewed MARE2_HUMAN Microtubule-associated protein RP/EB family member 2 (APC-binding protein EB2) (End-binding protein 2) (EB2) MAPRE2 RP1 cell division [GO:0051301]; positive regulation of ARF protein signal transduction [GO:0032014]; positive regulation of focal adhesion disassembly [GO:0120183]; positive regulation of GTPase activity [GO:0043547]; positive regulation of keratinocyte migration [GO:0051549]; protein localization to microtubule [GO:0035372]; regulation of microtubule polymerization or depolymerization [GO:0031110]; spindle assembly [GO:0051225] -Q155Q3 reviewed DIXC1_HUMAN Dixin (Coiled-coil protein DIX1) (Coiled-coil-DIX1) (DIX domain-containing protein 1) DIXDC1 CCD1 KIAA1735 canonical Wnt signaling pathway [GO:0060070]; cerebral cortex radially oriented cell migration [GO:0021799]; forebrain ventricular zone progenitor cell division [GO:0021869]; negative regulation of neuron differentiation [GO:0045665]; positive regulation of Wnt signaling pathway [GO:0030177]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of microtubule cytoskeleton organization [GO:0070507] -Q15691 reviewed MARE1_HUMAN Microtubule-associated protein RP/EB family member 1 (APC-binding protein EB1) (End-binding protein 1) (EB1) MAPRE1 attachment of mitotic spindle microtubules to kinetochore [GO:0051315]; cell division [GO:0051301]; cell migration [GO:0016477]; establishment of mitotic spindle orientation [GO:0000132]; microtubule bundle formation [GO:0001578]; microtubule polymerization [GO:0046785]; negative regulation of microtubule polymerization [GO:0031115]; non-motile cilium assembly [GO:1905515]; positive regulation of microtubule polymerization [GO:0031116]; protein localization [GO:0008104]; protein localization to astral microtubule [GO:1902888]; protein localization to centrosome [GO:0071539]; protein localization to microtubule [GO:0035372]; regulation of microtubule polymerization or depolymerization [GO:0031110]; spindle assembly [GO:0051225] -Q16181 reviewed SEPT7_HUMAN Septin-7 (CDC10 protein homolog) SEPTIN7 CDC10 SEPT7 cell differentiation [GO:0030154]; cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640]; positive regulation of non-motile cilium assembly [GO:1902857]; protein localization [GO:0008104]; regulation of embryonic cell shape [GO:0016476]; spermatogenesis [GO:0007283] -Q16394 reviewed EXT1_HUMAN Exostosin-1 (EC 2.4.1.225) (Exostosin glycosyltransferase 1) (Heparan sulfate co-polymerase subunit EXT1) (Multiple exostoses protein 1) (N-acetylglucosaminyl-proteoglycan 4-beta-glucuronosyltransferase) EXT1 antigen processing and presentation [GO:0019882]; axon guidance [GO:0007411]; basement membrane organization [GO:0071711]; blood vessel remodeling [GO:0001974]; BMP signaling pathway [GO:0030509]; bone resorption [GO:0045453]; canonical Wnt signaling pathway [GO:0060070]; cartilage development involved in endochondral bone morphogenesis [GO:0060351]; cell adhesion mediated by integrin [GO:0033627]; cell fate commitment [GO:0045165]; cellular response to virus [GO:0098586]; chondrocyte hypertrophy [GO:0003415]; chondrocyte proliferation [GO:0035988]; chondroitin sulfate metabolic process [GO:0030204]; collagen fibril organization [GO:0030199]; cranial skeletal system development [GO:1904888]; dendrite self-avoidance [GO:0070593]; dendritic cell migration [GO:0036336]; developmental growth involved in morphogenesis [GO:0060560]; embryonic skeletal joint development [GO:0072498]; endochondral bone growth [GO:0003416]; endochondral ossification [GO:0001958]; endoderm development [GO:0007492]; epithelial tube branching involved in lung morphogenesis [GO:0060441]; fear response [GO:0042596]; fibroblast growth factor receptor signaling pathway [GO:0008543]; fluid transport [GO:0042044]; gastrulation [GO:0007369]; gene expression [GO:0010467]; glandular epithelial cell differentiation [GO:0002067]; glomerular basement membrane development [GO:0032836]; glycosaminoglycan biosynthetic process [GO:0006024]; hair follicle morphogenesis [GO:0031069]; heart contraction [GO:0060047]; heart field specification [GO:0003128]; hematopoietic stem cell differentiation [GO:0060218]; hematopoietic stem cell homeostasis [GO:0061484]; hematopoietic stem cell migration to bone marrow [GO:0097241]; heparan sulfate proteoglycan biosynthetic process [GO:0015012]; heparan sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process [GO:0015014]; heparin biosynthetic process [GO:0030210]; hypersensitivity [GO:0002524]; leukocyte tethering or rolling [GO:0050901]; limb joint morphogenesis [GO:0036022]; lymphocyte adhesion to endothelial cell of high endothelial venule [GO:0036339]; lymphocyte migration into lymphoid organs [GO:0097021]; mesenchymal cell differentiation involved in bone development [GO:1901706]; mesoderm development [GO:0007498]; motor behavior [GO:0061744]; multicellular organism growth [GO:0035264]; multicellular organismal-level water homeostasis [GO:0050891]; neural crest cell differentiation [GO:0014033]; olfactory bulb development [GO:0021772]; optic nerve development [GO:0021554]; ossification [GO:0001503]; ossification involved in bone maturation [GO:0043931]; perichondral bone morphogenesis [GO:0061974]; podocyte differentiation [GO:0072112]; polysaccharide biosynthetic process [GO:0000271]; protein catabolic process [GO:0030163]; protein glycosylation [GO:0006486]; protein-containing complex assembly [GO:0065003]; regulation of blood pressure [GO:0008217]; regulation of tumor necrosis factor-mediated signaling pathway [GO:0010803]; response to heparin [GO:0071503]; response to leukemia inhibitory factor [GO:1990823]; response to light intensity [GO:0009642]; sebaceous gland development [GO:0048733]; smoothened signaling pathway involved in lung development [GO:0060506]; social behavior [GO:0035176]; sodium ion homeostasis [GO:0055078]; stem cell division [GO:0017145]; stomach development [GO:0062094]; sulfation [GO:0051923]; sweat gland development [GO:0060792]; synaptic transmission, glutamatergic [GO:0035249]; tight junction organization [GO:0120193]; vacuole organization [GO:0007033]; vasodilation [GO:0042311]; vocalization behavior [GO:0071625]; wound healing [GO:0042060] -Q16513 reviewed PKN2_HUMAN Serine/threonine-protein kinase N2 (EC 2.7.11.13) (PKN gamma) (Protein kinase C-like 2) (Protein-kinase C-related kinase 2) PKN2 PRK2 PRKCL2 apical junction assembly [GO:0043297]; apoptotic process [GO:0006915]; cell adhesion [GO:0007155]; cell division [GO:0051301]; cell projection organization [GO:0030030]; epithelial cell migration [GO:0010631]; intracellular signal transduction [GO:0035556]; positive regulation of cytokinesis [GO:0032467]; positive regulation of mitotic cell cycle [GO:0045931]; positive regulation of viral genome replication [GO:0045070]; protein phosphorylation [GO:0006468]; regulation of cell motility [GO:2000145]; signal transduction [GO:0007165] -Q16635 reviewed TAZ_HUMAN Tafazzin (Taz) (EC 2.3.1.-) (Protein G4.5) TAFAZZIN EFE2 G4.5 TAZ cardiac muscle contraction [GO:0060048]; cardiac muscle tissue development [GO:0048738]; cardiolipin acyl-chain remodeling [GO:0035965]; cardiolipin biosynthetic process [GO:0032049]; cardiolipin metabolic process [GO:0032048]; cristae formation [GO:0042407]; heart development [GO:0007507]; heart morphogenesis [GO:0003007]; hemopoiesis [GO:0030097]; inner mitochondrial membrane organization [GO:0007007]; mitochondrial ATP synthesis coupled electron transport [GO:0042775]; mitochondrial respiratory chain complex I assembly [GO:0032981]; mitochondrion organization [GO:0007005]; mitophagy [GO:0000423]; muscle contraction [GO:0006936]; positive regulation of ATP biosynthetic process [GO:2001171]; positive regulation of cardiolipin metabolic process [GO:1900210]; skeletal muscle tissue development [GO:0007519]; spermatocyte division [GO:0048137] -Q16763 reviewed UBE2S_HUMAN Ubiquitin-conjugating enzyme E2 S (EC 2.3.2.23) (E2 ubiquitin-conjugating enzyme S) (E2-EPF) (Ubiquitin carrier protein S) (Ubiquitin-conjugating enzyme E2-24 kDa) (Ubiquitin-conjugating enzyme E2-EPF5) (Ubiquitin-protein ligase S) UBE2S E2EPF OK/SW-cl.73 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; exit from mitosis [GO:0010458]; free ubiquitin chain polymerization [GO:0010994]; positive regulation of ubiquitin protein ligase activity [GO:1904668]; protein K11-linked ubiquitination [GO:0070979]; protein K27-linked ubiquitination [GO:0044314]; protein K29-linked ubiquitination [GO:0035519]; protein K6-linked ubiquitination [GO:0085020]; protein K63-linked ubiquitination [GO:0070534]; protein modification process [GO:0036211]; protein polyubiquitination [GO:0000209]; ubiquitin-dependent protein catabolic process [GO:0006511] -Q1MX18 reviewed INSC_HUMAN Protein inscuteable homolog INSC apical protein localization [GO:0045176]; asymmetric cell division [GO:0008356]; cell differentiation [GO:0030154]; establishment of mitotic spindle orientation [GO:0000132]; nervous system development [GO:0007399]; regulation of asymmetric cell division [GO:0009786]; regulation of protein stability [GO:0031647] -Q29RF7 reviewed PDS5A_HUMAN Sister chromatid cohesion protein PDS5 homolog A (Cell proliferation-inducing gene 54 protein) (Sister chromatid cohesion protein 112) (SCC-112) PDS5A KIAA0648 PDS5 PIG54 cell division [GO:0051301]; mitotic sister chromatid cohesion [GO:0007064]; negative regulation of DNA replication [GO:0008156] -Q2NKX8 reviewed ERC6L_HUMAN DNA excision repair protein ERCC-6-like (EC 3.6.4.12) (ATP-dependent helicase ERCC6-like) (PLK1-interacting checkpoint helicase) (Tumor antigen BJ-HCC-15) ERCC6L PICH cell division [GO:0051301] -Q2VIQ3 reviewed KIF4B_HUMAN Chromosome-associated kinesin KIF4B (Chromokinesin-B) KIF4B microtubule-based movement [GO:0007018]; mitotic cytokinesis [GO:0000281]; mitotic spindle midzone assembly [GO:0051256]; mitotic spindle organization [GO:0007052]; spindle elongation [GO:0051231] -Q32P44 reviewed EMAL3_HUMAN Echinoderm microtubule-associated protein-like 3 (EMAP-3) EML3 cell division [GO:0051301]; microtubule cytoskeleton organization [GO:0000226]; mitotic metaphase chromosome alignment [GO:0007080]; regulation of mitotic spindle assembly [GO:1901673] -Q496M5 reviewed PLK5_HUMAN Inactive serine/threonine-protein kinase PLK5 (Polo-like kinase 5) (PLK-5) PLK5 PLK5P FG060302 cell differentiation [GO:0030154]; cell division [GO:0051301]; cellular response to growth factor stimulus [GO:0071363]; defense response to tumor cell [GO:0002357]; positive regulation of neuron projection development [GO:0010976]; regulation of apoptotic process [GO:0042981]; regulation of G1/S transition of mitotic cell cycle [GO:2000045] -Q49MG5 reviewed MAP9_HUMAN Microtubule-associated protein 9 (Aster-associated protein) MAP9 ASAP mitotic cytokinesis [GO:0000281]; mitotic spindle assembly [GO:0090307]; regulation of mitotic centrosome separation [GO:0046602]; regulation of mitotic cytokinesis [GO:1902412]; regulation of mitotic spindle organization [GO:0060236] -Q53EZ4 reviewed CEP55_HUMAN Centrosomal protein of 55 kDa (Cep55) (Up-regulated in colon cancer 6) CEP55 C10orf3 URCC6 cranial skeletal system development [GO:1904888]; establishment of protein localization [GO:0045184]; midbody abscission [GO:0061952]; mitotic cytokinesis [GO:0000281]; regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051896] -Q53GS9 reviewed UBP39_HUMAN Ubiquitin carboxyl-terminal hydrolase 39 (EC 3.4.19.12) (SAD1 homolog) (U4/U6.U5 tri-snRNP-associated 65 kDa protein) USP39 CGI-21 HSPC332 PRO2855 cell division [GO:0051301]; mRNA processing [GO:0006397]; mRNA splicing, via spliceosome [GO:0000398]; RNA splicing [GO:0008380]; spliceosomal complex assembly [GO:0000245] -Q53GT1 reviewed KLH22_HUMAN Kelch-like protein 22 KLHL22 cell division [GO:0051301]; cellular response to amino acid stimulus [GO:0071230]; cellular response to L-leucine [GO:0071233]; mitotic sister chromatid segregation [GO:0000070]; mitotic spindle assembly checkpoint signaling [GO:0007094]; negative regulation of autophagy [GO:0010507]; negative regulation of type I interferon production [GO:0032480]; positive regulation of cell growth [GO:0030307]; positive regulation of TORC1 signaling [GO:1904263]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; protein monoubiquitination [GO:0006513]; ubiquitin-dependent protein catabolic process [GO:0006511] -Q53HL2 reviewed BOREA_HUMAN Borealin (Cell division cycle-associated protein 8) (Dasra-B) (hDasra-B) (Pluripotent embryonic stem cell-related gene 3 protein) CDCA8 PESCRG3 chromosome organization [GO:0051276]; mitotic cell cycle [GO:0000278]; mitotic cytokinesis [GO:0000281]; mitotic metaphase chromosome alignment [GO:0007080]; mitotic sister chromatid segregation [GO:0000070]; mitotic spindle assembly [GO:0090307]; mitotic spindle midzone assembly [GO:0051256]; positive regulation of attachment of mitotic spindle microtubules to kinetochore [GO:1902425]; positive regulation of mitotic cell cycle spindle assembly checkpoint [GO:0090267]; positive regulation of mitotic cytokinesis [GO:1903490]; positive regulation of mitotic sister chromatid separation [GO:1901970] -Q562F6 reviewed SGO2_HUMAN Shugoshin 2 (Shugoshin-2) (Shugoshin-like 2) (Tripin) SGO2 SGOL2 cell division [GO:0051301]; chromosome segregation [GO:0007059]; meiotic cell cycle [GO:0051321]; meiotic sister chromatid cohesion [GO:0051177] -Q5EE01 reviewed CENPW_HUMAN Centromere protein W (CENP-W) (Cancer-up-regulated gene 2 protein) CENPW C6orf173 CUG2 cell division [GO:0051301]; CENP-A containing chromatin assembly [GO:0034080]; chromosome organization [GO:0051276]; chromosome segregation [GO:0007059]; kinetochore assembly [GO:0051382]; mitotic cell cycle [GO:0000278] -Q5FBB7 reviewed SGO1_HUMAN Shugoshin 1 (Serologically defined breast cancer antigen NY-BR-85) (Shugoshin-like 1) SGO1 SGOL1 attachment of spindle microtubules to kinetochore [GO:0008608]; cell division [GO:0051301]; centriole-centriole cohesion [GO:0010457]; chromosome segregation [GO:0007059]; meiotic chromosome segregation [GO:0045132]; mitotic sister chromatid cohesion, centromeric [GO:0071962] -Q5JVL4 reviewed EFHC1_HUMAN EF-hand domain-containing protein 1 (Myoclonin-1) EFHC1 cerebral cortex cell migration [GO:0021795]; cilium-dependent cell motility [GO:0060285]; mitotic cytokinesis [GO:0000281]; mitotic spindle organization [GO:0007052]; regulation of cell division [GO:0051302] -Q5T280 reviewed CI114_HUMAN Putative methyltransferase C9orf114 (EC 2.1.1.-) (Centromere protein 32) (CENP-32) (Kinetochore-associated protein) (SPOUT domain-containing methyltransferase 1) SPOUT1 C9orf114 cell division [GO:0051301]; maintenance of centrosome location [GO:0051661]; methylation [GO:0032259]; miRNA processing [GO:0035196]; post-transcriptional regulation of gene expression [GO:0010608] -Q66K89 reviewed E4F1_HUMAN Transcription factor E4F1 (EC 2.3.2.27) (E4F transcription factor 1) (Putative E3 ubiquitin-protein ligase E4F1) (RING-type E3 ubiquitin transferase E4F1) (Transcription factor E4F) (p120E4F) (p50E4F) E4F1 E4F cell division [GO:0051301]; DNA replication [GO:0006260]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein ubiquitination [GO:0016567]; regulation of cell cycle [GO:0051726]; regulation of cell cycle process [GO:0010564]; regulation of mitotic cell cycle, embryonic [GO:0009794]; regulation of transcription by RNA polymerase II [GO:0006357] -Q68CZ6 reviewed HAUS3_HUMAN HAUS augmin-like complex subunit 3 HAUS3 C4orf15 cell division [GO:0051301]; centrosome cycle [GO:0007098]; regulation of microtubule nucleation [GO:0010968]; spindle assembly [GO:0051225] -Q68DK2 reviewed ZFY26_HUMAN Zinc finger FYVE domain-containing protein 26 (FYVE domain-containing centrosomal protein) (FYVE-CENT) (Spastizin) ZFYVE26 KIAA0321 autophagosome organization [GO:1905037]; double-strand break repair via homologous recombination [GO:0000724]; lysosome organization [GO:0007040]; mitotic cytokinesis [GO:0000281]; regulation of cytokinesis [GO:0032465] -Q69YH5 reviewed CDCA2_HUMAN Cell division cycle-associated protein 2 (Recruits PP1 onto mitotic chromatin at anaphase protein) (Repo-Man) CDCA2 cell division [GO:0051301]; chromosome segregation [GO:0007059]; positive regulation of protein dephosphorylation [GO:0035307]; regulation of chromosome segregation [GO:0051983]; regulation of mitotic nuclear division [GO:0007088] -Q69YQ0 reviewed CYTSA_HUMAN Cytospin-A (Renal carcinoma antigen NY-REN-22) (Sperm antigen with calponin homology and coiled-coil domains 1-like) (SPECC1-like protein) SPECC1L CYTSA KIAA0376 actin cytoskeleton organization [GO:0030036]; cell adhesion [GO:0007155]; cell division [GO:0051301] -Q6DKK2 reviewed TTC19_HUMAN Tetratricopeptide repeat protein 19, mitochondrial (TPR repeat protein 19) TTC19 mitochondrial respiratory chain complex III assembly [GO:0034551]; mitotic cytokinesis [GO:0000281] -Q6IQ19 reviewed CCSAP_HUMAN Centriole, cilia and spindle-associated protein CCSAP C1orf96 CSAP cell division [GO:0051301]; mitotic spindle microtubule depolymerization [GO:1990755]; regulation of embryonic development [GO:0045995]; regulation of mitotic spindle assembly [GO:1901673] -Q6IQ49 reviewed SDE2_HUMAN Splicing regulator SDE2 (Replication stress response regulator SDE2) SDE2 C1orf55 cell division [GO:0051301]; cellular response to UV [GO:0034644]; DNA replication [GO:0006260]; endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA) [GO:0000479]; mitotic G1 DNA damage checkpoint signaling [GO:0031571]; mRNA cis splicing, via spliceosome [GO:0045292]; protein processing [GO:0016485]; protein ubiquitination [GO:0016567] -Q6P0N0 reviewed M18BP_HUMAN Mis18-binding protein 1 (Kinetochore-associated protein KNL-2 homolog) (HsKNL-2) (P243) MIS18BP1 C14orf106 KIAA1903 KNL2 M18BP1 cell division [GO:0051301] -Q6P1K2 reviewed PMF1_HUMAN Polyamine-modulated factor 1 (PMF-1) PMF1 attachment of spindle microtubules to kinetochore [GO:0008608]; cell division [GO:0051301]; chromosome segregation [GO:0007059]; transcription by RNA polymerase II [GO:0006366] -Q6P1M3 reviewed L2GL2_HUMAN LLGL scribble cell polarity complex component 2 (HGL) (Lethal(2) giant larvae protein homolog 2) LLGL2 cell division [GO:0051301]; cortical actin cytoskeleton organization [GO:0030866]; establishment of spindle orientation [GO:0051294]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; exocytosis [GO:0006887]; Golgi to plasma membrane transport [GO:0006893]; L-leucine transport [GO:0015820]; regulation of establishment or maintenance of cell polarity [GO:0032878]; regulation of Notch signaling pathway [GO:0008593] -Q6P4F1 reviewed FUT10_HUMAN Alpha-(1,3)-fucosyltransferase 10 (EC 2.4.1.-) (Fucosyltransferase X) (Fuc-TX) (FucT-X) (Galactoside 3-L-fucosyltransferase 10) (Fucosyltransferase 10) FUT10 cerebral cortex radially oriented cell migration [GO:0021799]; fertilization [GO:0009566]; fucosylation [GO:0036065]; hemopoiesis [GO:0030097]; L-fucose catabolic process [GO:0042355]; N-glycan fucosylation [GO:0036071]; nervous system development [GO:0007399]; neuroblast migration [GO:0097402]; neuronal stem cell division [GO:0036445]; neuronal stem cell population maintenance [GO:0097150]; oligosaccharide biosynthetic process [GO:0009312]; protein folding [GO:0006457]; protein glycosylation [GO:0006486]; protein targeting [GO:0006605]; wound healing [GO:0042060] -Q6P9G9 reviewed ZN449_HUMAN Zinc finger protein 449 (Zinc finger and SCAN domain-containing protein 19) ZNF449 ZSCAN19 regulation of transcription by RNA polymerase II [GO:0006357]; spermatogonial cell division [GO:0007284] -Q6PGN9 reviewed PSRC1_HUMAN Proline/serine-rich coiled-coil protein 1 PSRC1 DDA3 FP3214 cell division [GO:0051301]; microtubule bundle formation [GO:0001578]; mitotic metaphase chromosome alignment [GO:0007080]; negative regulation of cell growth [GO:0030308]; positive regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0045737]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of microtubule polymerization [GO:0031116]; regulation of mitotic spindle organization [GO:0060236] -Q6PGQ7 reviewed BORA_HUMAN Protein aurora borealis (HsBora) BORA C13orf34 cell division [GO:0051301]; regulation of mitotic nuclear division [GO:0007088]; regulation of mitotic spindle organization [GO:0060236]; regulation of protein localization [GO:0032880] -Q6PIF2 reviewed SYCE2_HUMAN Synaptonemal complex central element protein 2 (Central element synaptonemal complex protein 1) SYCE2 CESC1 cell division [GO:0051301]; synaptonemal complex assembly [GO:0007130] -Q6PJP8 reviewed DCR1A_HUMAN DNA cross-link repair 1A protein (Beta-lactamase DCLRE1A) (EC 3.5.2.6) (SNM1 homolog A) (hSNM1) (hSNM1A) DCLRE1A KIAA0086 SNM1 SNM1A cell division [GO:0051301]; double-strand break repair via nonhomologous end joining [GO:0006303]; interstrand cross-link repair [GO:0036297] -Q6TGC4 reviewed PADI6_HUMAN Protein-arginine deiminase type-6 (EC 3.5.3.15) (Peptidyl arginine deiminase-like protein) (Peptidylarginine deiminase VI) (hPADVI) (Protein-arginine deiminase type VI) PADI6 PAD6 cytoplasm organization [GO:0007028]; cytoskeleton organization [GO:0007010]; embryonic cleavage [GO:0040016]; regulation of translation by machinery localization [GO:0043143] -Q6ZU15 reviewed SEP14_HUMAN Septin-14 SEPTIN14 SEPT14 cytoskeleton-dependent cytokinesis [GO:0061640]; neuron migration [GO:0001764]; protein localization [GO:0008104]; protein localization to perinuclear region of cytoplasm [GO:1905719]; spermatid development [GO:0007286] -Q6ZVD7 reviewed STOX1_HUMAN Storkhead-box protein 1 (Winged-helix domain-containing protein) STOX1 C10orf24 cell division [GO:0051301]; cellular response to nitrosative stress [GO:0071500]; inner ear development [GO:0048839]; negative regulation of gene expression [GO:0010629]; positive regulation of cyclin-dependent protein kinase activity [GO:1904031]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; positive regulation of gene expression [GO:0010628]; positive regulation of otic vesicle morphogenesis [GO:1904120]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of peptidyl-threonine phosphorylation [GO:0010800]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; regulation of gene expression [GO:0010468]; regulation of mitochondrial DNA metabolic process [GO:1901858]; regulation of mitochondrial membrane potential [GO:0051881]; regulation of mitochondrion organization [GO:0010821]; regulation of response to oxidative stress [GO:1902882]; regulation of transcription by RNA polymerase II [GO:0006357] -Q70YC4 reviewed TALAN_HUMAN Talanin ZNF365 KIAA0844 gamma-tubulin complex localization [GO:0033566]; mitotic cytokinesis [GO:0000281] -Q71U36 reviewed TBA1A_HUMAN Tubulin alpha-1A chain (EC 3.6.5.-) (Alpha-tubulin 3) (Tubulin B-alpha-1) (Tubulin alpha-3 chain) [Cleaved into: Detyrosinated tubulin alpha-1A chain] TUBA1A TUBA3 adult locomotory behavior [GO:0008344]; cell division [GO:0051301]; cellular response to calcium ion [GO:0071277]; centrosome cycle [GO:0007098]; cerebellar cortex morphogenesis [GO:0021696]; cerebral cortex development [GO:0021987]; cytoskeleton-dependent intracellular transport [GO:0030705]; dentate gyrus development [GO:0021542]; forebrain morphogenesis [GO:0048853]; gene expression [GO:0010467]; glial cell differentiation [GO:0010001]; homeostasis of number of cells within a tissue [GO:0048873]; intracellular protein transport [GO:0006886]; locomotory exploration behavior [GO:0035641]; memory [GO:0007613]; microtubule cytoskeleton organization [GO:0000226]; microtubule polymerization [GO:0046785]; microtubule-based process [GO:0007017]; mitotic cell cycle [GO:0000278]; motor behavior [GO:0061744]; neuron apoptotic process [GO:0051402]; neuron migration [GO:0001764]; neuron projection arborization [GO:0140058]; organelle transport along microtubule [GO:0072384]; pyramidal neuron differentiation [GO:0021859]; regulation of synapse organization [GO:0050807]; response to L-glutamate [GO:1902065]; response to mechanical stimulus [GO:0009612]; response to tumor necrosis factor [GO:0034612]; smoothened signaling pathway [GO:0007224]; startle response [GO:0001964]; synapse organization [GO:0050808]; visual learning [GO:0008542] -Q7L5Y9 reviewed MAEA_HUMAN E3 ubiquitin-protein transferase MAEA (EC 2.3.2.27) (Cell proliferation-inducing gene 5 protein) (Erythroblast macrophage protein) (Human lung cancer oncogene 10 protein) (HLC-10) (Macrophage erythroblast attacher) (P44EMLP) MAEA EMP HLC10 PIG5 cell adhesion [GO:0007155]; cell division [GO:0051301]; cytoskeleton organization [GO:0007010]; enucleate erythrocyte development [GO:0048822]; erythrocyte maturation [GO:0043249]; negative regulation of myeloid cell apoptotic process [GO:0033033]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; regulation of mitotic cell cycle [GO:0007346] -Q7LBR1 reviewed CHM1B_HUMAN Charged multivesicular body protein 1b (CHMP1.5) (Chromatin-modifying protein 1b) (CHMP1b) (Vacuolar protein sorting-associated protein 46-2) (Vps46-2) (hVps46-2) CHMP1B C18orf2 autophagosome maturation [GO:0097352]; autophagy [GO:0006914]; cell division [GO:0051301]; endosome transport via multivesicular body sorting pathway [GO:0032509]; ESCRT III complex disassembly [GO:1904903]; establishment of protein localization [GO:0045184]; late endosome to lysosome transport [GO:1902774]; late endosome to vacuole transport [GO:0045324]; membrane fission [GO:0090148]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body assembly [GO:0036258]; multivesicular body sorting pathway [GO:0071985]; multivesicular body-lysosome fusion [GO:0061763]; nuclear membrane reassembly [GO:0031468]; nucleus organization [GO:0006997]; plasma membrane repair [GO:0001778]; protein transport [GO:0015031]; regulation of centrosome duplication [GO:0010824]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; vesicle fusion with vacuole [GO:0051469]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -Q7RTP6 reviewed MICA3_HUMAN [F-actin]-monooxygenase MICAL3 (EC 1.14.13.225) (Molecule interacting with CasL protein 3) (MICAL-3) MICAL3 KIAA0819 KIAA1364 actin filament depolymerization [GO:0030042]; cell division [GO:0051301]; cytoskeleton organization [GO:0007010]; exocytosis [GO:0006887] -Q7Z3K3 reviewed POGZ_HUMAN Pogo transposable element with ZNF domain (Suppressor of hairy wing homolog 5) (Zinc finger protein 280E) (Zinc finger protein 635) POGZ KIAA0461 SUHW5 ZNF280E ZNF635 Nbla00003 cell division [GO:0051301]; double-strand break repair via homologous recombination [GO:0000724]; kinetochore assembly [GO:0051382]; mitotic sister chromatid cohesion [GO:0007064]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q7Z460 reviewed CLAP1_HUMAN CLIP-associating protein 1 (Cytoplasmic linker-associated protein 1) (Multiple asters homolog 1) (Protein Orbit homolog 1) (hOrbit1) CLASP1 KIAA0622 MAST1 astral microtubule organization [GO:0030953]; cell division [GO:0051301]; establishment of epithelial cell polarity [GO:0090162]; establishment of mitotic spindle localization [GO:0040001]; establishment of spindle orientation [GO:0051294]; establishment or maintenance of cell polarity [GO:0007163]; exit from mitosis [GO:0010458]; Golgi organization [GO:0007030]; microtubule anchoring [GO:0034453]; microtubule bundle formation [GO:0001578]; microtubule cytoskeleton organization [GO:0000226]; microtubule nucleation [GO:0007020]; microtubule organizing center organization [GO:0031023]; mitotic spindle assembly [GO:0090307]; mitotic spindle organization [GO:0007052]; negative regulation of microtubule depolymerization [GO:0007026]; negative regulation of microtubule polymerization or depolymerization [GO:0031111]; negative regulation of stress fiber assembly [GO:0051497]; negative regulation of wound healing, spreading of epidermal cells [GO:1903690]; positive regulation of basement membrane assembly involved in embryonic body morphogenesis [GO:1904261]; positive regulation of epithelial cell migration [GO:0010634]; positive regulation of exocytosis [GO:0045921]; positive regulation of extracellular matrix disassembly [GO:0090091]; positive regulation of microtubule polymerization [GO:0031116]; regulation of epithelial to mesenchymal transition [GO:0010717]; regulation of focal adhesion assembly [GO:0051893]; regulation of gastrulation [GO:0010470]; regulation of microtubule cytoskeleton organization [GO:0070507]; vesicle targeting [GO:0006903] -Q7Z4H7 reviewed HAUS6_HUMAN HAUS augmin-like complex subunit 6 HAUS6 DGT6 FAM29A KIAA1574 cell division [GO:0051301]; centrosome cycle [GO:0007098]; microtubule cytoskeleton organization [GO:0000226]; regulation of microtubule nucleation [GO:0010968]; spindle assembly [GO:0051225] -Q7Z591 reviewed AKNA_HUMAN Microtubule organization protein AKNA (AT-hook-containing transcription factor) AKNA KIAA1968 delamination [GO:0060232]; epithelial to mesenchymal transition [GO:0001837]; neuroblast delamination [GO:0060234]; neuroblast division in subventricular zone [GO:0021849]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of inflammatory response [GO:0050727] -Q7Z5K2 reviewed WAPL_HUMAN Wings apart-like protein homolog (Friend of EBNA2 protein) (WAPL cohesin release factor) WAPL FOE KIAA0261 WAPAL cell division [GO:0051301]; mitotic sister chromatid segregation [GO:0000070]; negative regulation of chromatin binding [GO:0035562]; negative regulation of DNA replication [GO:0008156]; negative regulation of sister chromatid cohesion [GO:0045875]; protein localization to chromatin [GO:0071168] -Q7Z7A1 reviewed CNTRL_HUMAN Centriolin (Centrosomal protein 1) (Centrosomal protein of 110 kDa) (Cep110) CNTRL CEP1 CEP110 aorta development [GO:0035904]; cell division [GO:0051301]; coronary vasculature development [GO:0060976]; kidney development [GO:0001822]; ventricular septum development [GO:0003281] -Q7Z7K6 reviewed CENPV_HUMAN Centromere protein V (CENP-V) (Nuclear protein p30) (Proline-rich protein 6) CENPV PRR6 ameboidal-type cell migration [GO:0001667]; cell division [GO:0051301]; centromere complex assembly [GO:0034508]; pericentric heterochromatin formation [GO:0031508]; positive regulation of cytokinesis [GO:0032467]; regulation of chromosome organization [GO:0033044] -Q86T82 reviewed UBP37_HUMAN Ubiquitin carboxyl-terminal hydrolase 37 (EC 3.4.19.12) (Deubiquitinating enzyme 37) (Ubiquitin thioesterase 37) (Ubiquitin-specific-processing protease 37) USP37 KIAA1594 cell division [GO:0051301]; G1/S transition of mitotic cell cycle [GO:0000082]; protein deubiquitination [GO:0016579]; protein K11-linked deubiquitination [GO:0035871]; protein K48-linked deubiquitination [GO:0071108]; proteolysis [GO:0006508]; regulation of DNA replication [GO:0006275] -Q86UD0 reviewed SAPC2_HUMAN Suppressor APC domain-containing protein 2 (Tumor specificity and mitosis phase-dependent expression protein) (TS/MDEP) (p42.3) SAPCD2 C9orf140 establishment of mitotic spindle orientation [GO:0000132]; negative regulation of protein localization to cell cortex [GO:1904777]; positive regulation of cell population proliferation [GO:0008284]; regulation of establishment of planar polarity [GO:0090175]; symmetric cell division [GO:0098725] -Q86VI3 reviewed IQGA3_HUMAN Ras GTPase-activating-like protein IQGAP3 IQGAP3 cellular response to organic substance [GO:0071310]; ERK1 and ERK2 cascade [GO:0070371]; G1/S transition of mitotic cell cycle [GO:0000082]; gene expression [GO:0010467]; mammary gland epithelial cell proliferation [GO:0033598]; mitotic actomyosin contractile ring assembly actin filament organization [GO:1903479]; negative regulation of gene expression [GO:0010629]; positive regulation of gene expression [GO:0010628]; positive regulation of mammary gland epithelial cell proliferation [GO:0033601]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of protein phosphorylation [GO:0001934]; Ras protein signal transduction [GO:0007265]; regulation of cell size [GO:0008361] -Q86WB0 reviewed ZC3C1_HUMAN Zinc finger C3HC-type protein 1 (Nuclear-interacting partner of ALK) (hNIPA) (Nuclear-interacting partner of anaplastic lymphoma kinase) ZC3HC1 NIPA HSPC216 cell division [GO:0051301]; negative regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001240]; protein ubiquitination [GO:0016567] -Q86XI2 reviewed CNDG2_HUMAN Condensin-2 complex subunit G2 (Chromosome-associated protein G2) (CAP-G2) (hCAP-G2) (Leucine zipper protein 5) (Non-SMC condensin II complex subunit G2) NCAPG2 LUZP5 cell division [GO:0051301]; chromosome condensation [GO:0030261]; erythrocyte differentiation [GO:0030218]; inner cell mass cell proliferation [GO:0001833]; mitotic sister chromatid segregation [GO:0000070]; positive regulation of chromosome condensation [GO:1905821]; positive regulation of chromosome segregation [GO:0051984]; positive regulation of chromosome separation [GO:1905820]; transcription by RNA polymerase II [GO:0006366] -Q86XL3 reviewed ANKL2_HUMAN Ankyrin repeat and LEM domain-containing protein 2 (LEM domain-containing protein 4) ANKLE2 KIAA0692 LEM4 cell division [GO:0051301]; central nervous system development [GO:0007417]; mitotic nuclear membrane reassembly [GO:0007084]; negative regulation of apoptotic process [GO:0043066]; negative regulation of phosphorylation [GO:0042326]; positive regulation of protein dephosphorylation [GO:0035307]; regulation of catalytic activity [GO:0050790] -Q86Y91 reviewed KI18B_HUMAN Kinesin-like protein KIF18B KIF18B cell division [GO:0051301]; microtubule depolymerization [GO:0007019]; microtubule-based movement [GO:0007018]; mitotic cell cycle [GO:0000278]; mitotic sister chromatid segregation [GO:0000070]; regulation of cell division [GO:0051302] -Q86YI8 reviewed PHF13_HUMAN PHD finger protein 13 (Survival time-associated PHD finger protein in ovarian cancer 1) (SPOC1) PHF13 cell division [GO:0051301]; chromosome segregation [GO:0007059]; mitotic cell cycle [GO:0000278]; mitotic chromosome condensation [GO:0007076]; regulation of DNA repair [GO:0006282] -Q8IVT2 reviewed MISP_HUMAN Mitotic interactor and substrate of PLK1 (Mitotic spindle positioning protein) MISP C19orf21 cell division [GO:0051301]; cell migration [GO:0016477]; establishment of centrosome localization [GO:0051660]; establishment of mitotic spindle orientation [GO:0000132]; mitotic spindle assembly [GO:0090307]; organelle localization [GO:0051640]; regulation of protein localization to cell cortex [GO:1904776] -Q8IWB6 reviewed TEX14_HUMAN Inactive serine/threonine-protein kinase TEX14 (Protein kinase-like protein SgK307) (Sugen kinase 307) (Testis-expressed sequence 14) (Testis-expressed sequence 14 protein) TEX14 SGK307 attachment of spindle microtubules to kinetochore [GO:0008608]; cell division [GO:0051301]; cellular response to leukemia inhibitory factor [GO:1990830]; intercellular bridge organization [GO:0043063]; male meiotic nuclear division [GO:0007140]; mitotic sister chromatid separation [GO:0051306]; mitotic spindle assembly checkpoint signaling [GO:0007094]; negative regulation of cytokinesis [GO:0032466] -Q8IWQ3 reviewed BRSK2_HUMAN Serine/threonine-protein kinase BRSK2 (EC 2.7.11.1) (Brain-selective kinase 2) (EC 2.7.11.26) (Brain-specific serine/threonine-protein kinase 2) (BR serine/threonine-protein kinase 2) (Serine/threonine-protein kinase 29) (Serine/threonine-protein kinase SAD-A) BRSK2 C11orf7 PEN11B SADA STK29 HUSSY-12 actin cytoskeleton organization [GO:0030036]; axonogenesis [GO:0007409]; cell division [GO:0051301]; ERAD pathway [GO:0036503]; establishment of cell polarity [GO:0030010]; exocytosis [GO:0006887]; G2/M transition of mitotic cell cycle [GO:0000086]; intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress [GO:0070059]; microtubule cytoskeleton organization involved in establishment of planar polarity [GO:0090176]; neuron differentiation [GO:0030182]; protein phosphorylation [GO:0006468]; regulation of ATP-dependent activity [GO:0043462]; regulation of axonogenesis [GO:0050770]; regulation of insulin secretion involved in cellular response to glucose stimulus [GO:0061178]; regulation of neuron projection development [GO:0010975]; regulation of retrograde protein transport, ER to cytosol [GO:1904152]; regulation of synaptic vesicle clustering [GO:2000807] -Q8IX90 reviewed SKA3_HUMAN Spindle and kinetochore-associated protein 3 SKA3 C13orf3 RAMA1 attachment of mitotic spindle microtubules to kinetochore [GO:0051315]; cell division [GO:0051301]; chromosome segregation [GO:0007059]; mitotic cell cycle [GO:0000278]; mitotic sister chromatid segregation [GO:0000070]; regulation of microtubule polymerization or depolymerization [GO:0031110] -Q8IXJ6 reviewed SIR2_HUMAN NAD-dependent protein deacetylase sirtuin-2 (EC 2.3.1.286) (NAD-dependent protein defatty-acylase sirtuin-2) (EC 2.3.1.-) (Regulatory protein SIR2 homolog 2) (SIR2-like protein 2) SIRT2 SIR2L SIR2L2 autophagy [GO:0006914]; cell division [GO:0051301]; cellular lipid catabolic process [GO:0044242]; cellular response to caloric restriction [GO:0061433]; cellular response to epinephrine stimulus [GO:0071872]; cellular response to hypoxia [GO:0071456]; cellular response to oxidative stress [GO:0034599]; epigenetic regulation of gene expression [GO:0040029]; heterochromatin formation [GO:0031507]; innate immune response [GO:0045087]; meiotic cell cycle [GO:0051321]; mitotic nuclear membrane reassembly [GO:0007084]; myelination in peripheral nervous system [GO:0022011]; negative regulation of autophagy [GO:0010507]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of NLRP3 inflammasome complex assembly [GO:1900226]; negative regulation of oligodendrocyte progenitor proliferation [GO:0070446]; negative regulation of peptidyl-threonine phosphorylation [GO:0010801]; negative regulation of protein catabolic process [GO:0042177]; negative regulation of reactive oxygen species metabolic process [GO:2000378]; negative regulation of satellite cell differentiation [GO:1902725]; negative regulation of striated muscle tissue development [GO:0045843]; negative regulation of transcription by RNA polymerase II [GO:0000122]; NLRP3 inflammasome complex assembly [GO:0044546]; peptidyl-lysine deacetylation [GO:0034983]; positive regulation of attachment of spindle microtubules to kinetochore [GO:0051987]; positive regulation of cell division [GO:0051781]; positive regulation of DNA binding [GO:0043388]; positive regulation of execution phase of apoptosis [GO:1900119]; positive regulation of fatty acid biosynthetic process [GO:0045723]; positive regulation of meiotic nuclear division [GO:0045836]; positive regulation of oocyte maturation [GO:1900195]; positive regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032436]; positive regulation of transcription by RNA polymerase II [GO:0045944]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; protein deacetylation [GO:0006476]; rDNA heterochromatin formation [GO:0000183]; regulation of cell cycle [GO:0051726]; regulation of exit from mitosis [GO:0007096]; regulation of myelination [GO:0031641]; regulation of phosphorylation [GO:0042325]; response to redox state [GO:0051775]; substantia nigra development [GO:0021762]; subtelomeric heterochromatin formation [GO:0031509]; tubulin deacetylation [GO:0090042] -Q8IXV7 reviewed KLD8B_HUMAN Kelch domain-containing protein 8B KLHDC8B FP17659 mitotic cytokinetic process [GO:1902410]; mitotic nuclear division [GO:0140014]; nuclear chromosome segregation [GO:0098813] -Q8IY18 reviewed SMC5_HUMAN Structural maintenance of chromosomes protein 5 (SMC protein 5) (SMC-5) (hSMC5) SMC5 KIAA0594 SMC5L1 cell division [GO:0051301]; cellular senescence [GO:0090398]; chromatin looping [GO:0140588]; chromosome condensation [GO:0030261]; chromosome segregation [GO:0007059]; DNA damage response [GO:0006974]; double-strand break repair via homologous recombination [GO:0000724]; mitotic cell cycle phase transition [GO:0044772]; negative regulation by host of viral genome replication [GO:0044828]; positive regulation of chromosome segregation [GO:0051984]; positive regulation of maintenance of mitotic sister chromatid cohesion [GO:0034184]; protein localization to chromosome, centromeric region [GO:0071459]; protein sumoylation [GO:0016925]; regulation of telomere maintenance [GO:0032204]; stem cell population maintenance [GO:0019827]; telomere maintenance via recombination [GO:0000722] -Q8IYB7 reviewed DI3L2_HUMAN DIS3-like exonuclease 2 (hDIS3L2) (EC 3.1.13.-) DIS3L2 FAM6A cell division [GO:0051301]; miRNA catabolic process [GO:0010587]; mitotic cell cycle [GO:0000278]; mitotic sister chromatid separation [GO:0051306]; mRNA catabolic process [GO:0006402]; negative regulation of cell population proliferation [GO:0008285]; nuclear-transcribed mRNA catabolic process [GO:0000956]; polyuridylation-dependent mRNA catabolic process [GO:1990074]; stem cell population maintenance [GO:0019827] -Q8IYI6 reviewed EXOC8_HUMAN Exocyst complex component 8 (Exocyst complex 84 kDa subunit) EXOC8 endosome organization [GO:0007032]; exocytosis [GO:0006887]; extracellular matrix disassembly [GO:0022617]; Golgi to plasma membrane transport [GO:0006893]; membrane fission [GO:0090148]; mitotic cytokinesis [GO:0000281]; protein localization [GO:0008104]; protein transport [GO:0015031]; regulation of macroautophagy [GO:0016241]; vesicle docking involved in exocytosis [GO:0006904]; vesicle tethering involved in exocytosis [GO:0090522] -Q8IYM1 reviewed SEP12_HUMAN Septin-12 SEPTIN12 SEPT12 cell differentiation [GO:0030154]; cytoskeleton-dependent cytokinesis [GO:0061640]; protein localization [GO:0008104]; spermatogenesis [GO:0007283] -Q8IZL9 reviewed CDK20_HUMAN Cyclin-dependent kinase 20 (EC 2.7.11.22) (CDK-activating kinase p42) (CAK-kinase p42) (Cell cycle-related kinase) (Cell division protein kinase 20) (Cyclin-dependent protein kinase H) (Cyclin-kinase-activating kinase p42) CDK20 CCRK CDCH cell division [GO:0051301]; embryonic brain development [GO:1990403]; embryonic camera-type eye development [GO:0031076]; embryonic skeletal system development [GO:0048706]; floor plate formation [GO:0021508]; negative regulation of smoothened signaling pathway [GO:0045879]; neural tube closure [GO:0001843]; protein localization to cilium [GO:0061512]; regulation of protein maturation [GO:1903317]; roof of mouth development [GO:0060021] -Q8IZT6 reviewed ASPM_HUMAN Abnormal spindle-like microcephaly-associated protein (Abnormal spindle protein homolog) (Asp homolog) ASPM MCPH5 asymmetric cell division [GO:0008356]; cerebral cortex development [GO:0021987]; developmental growth [GO:0048589]; forebrain neuroblast division [GO:0021873]; maintenance of centrosome location [GO:0051661]; male gonad development [GO:0008584]; meiotic spindle assembly [GO:0090306]; negative regulation of asymmetric cell division [GO:0045769]; negative regulation of neuron differentiation [GO:0045665]; neuron migration [GO:0001764]; neuronal stem cell population maintenance [GO:0097150]; oogenesis [GO:0048477]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of neuroblast proliferation [GO:0002052]; regulation of meiotic cell cycle [GO:0051445]; spermatogenesis [GO:0007283]; spindle localization [GO:0051653]; spindle organization [GO:0007051] -Q8IZU3 reviewed SYCP3_HUMAN Synaptonemal complex protein 3 (SCP-3) SYCP3 SCP3 cell division [GO:0051301]; male meiosis I [GO:0007141]; meiotic cell cycle [GO:0051321]; sperm DNA condensation [GO:0035092]; spermatid development [GO:0007286] -Q8N0S2 reviewed SYCE1_HUMAN Synaptonemal complex central element protein 1 (Cancer/testis antigen 76) (CT76) SYCE1 C10orf94 cell division [GO:0051301]; synaptonemal complex assembly [GO:0007130] -Q8N0X7 reviewed SPART_HUMAN Spartin (Spastic paraplegia 20 protein) (Trans-activated by hepatitis C virus core protein 1) SPART KIAA0610 SPG20 TAHCCP1 abscission [GO:0009838]; adipose tissue development [GO:0060612]; BMP signaling pathway [GO:0030509]; cell division [GO:0051301]; collateral sprouting in absence of injury [GO:0048669]; lipid droplet organization [GO:0034389]; negative regulation of BMP signaling pathway [GO:0030514]; negative regulation of collateral sprouting in absence of injury [GO:0048698]; neuromuscular process [GO:0050905]; regulation of mitochondrial membrane potential [GO:0051881] -Q8N0Z3 reviewed SPICE_HUMAN Spindle and centriole-associated protein 1 (Coiled-coil domain-containing protein 52) (Spindle and centriole-associated protein) SPICE1 CCDC52 SPICE cell division [GO:0051301]; metaphase chromosome alignment [GO:0051310]; mitotic spindle assembly [GO:0090307]; regulation of centriole replication [GO:0046599] -Q8N137 reviewed CNTRB_HUMAN Centrobin (Centrosomal BRCA2-interacting protein) (LYST-interacting protein 8) CNTROB LIP8 PP1221 centriole replication [GO:0007099]; centrosome separation [GO:0051299]; mitotic cytokinetic process [GO:1902410]; regulation of cilium assembly [GO:1902017] -Q8N2Z9 reviewed CENPS_HUMAN Centromere protein S (CENP-S) (Apoptosis-inducing TAF9-like domain-containing protein 1) (FANCM-associated histone fold protein 1) (FANCM-interacting histone fold protein 1) (Fanconi anemia-associated polypeptide of 16 kDa) CENPS APITD1 FAAP16 MHF1 cell division [GO:0051301]; chromosome segregation [GO:0007059]; DNA damage response [GO:0006974]; DNA repair [GO:0006281]; interstrand cross-link repair [GO:0036297]; positive regulation of protein ubiquitination [GO:0031398]; replication fork processing [GO:0031297]; resolution of meiotic recombination intermediates [GO:0000712] -Q8N3U4 reviewed STAG2_HUMAN Cohesin subunit SA-2 (SCC3 homolog 2) (Stromal antigen 2) STAG2 SA2 cell division [GO:0051301]; establishment of mitotic sister chromatid cohesion [GO:0034087]; meiotic cell cycle [GO:0051321]; mitotic spindle assembly [GO:0090307]; sister chromatid cohesion [GO:0007062] -Q8N4N8 reviewed KIF2B_HUMAN Kinesin-like protein KIF2B KIF2B cell division [GO:0051301]; metaphase chromosome alignment [GO:0051310]; microtubule depolymerization [GO:0007019]; microtubule-based movement [GO:0007018]; regulation of chromosome segregation [GO:0051983] -Q8N726 reviewed ARF_HUMAN Tumor suppressor ARF (Alternative reading frame) (ARF) (Cyclin-dependent kinase inhibitor 2A) (p14ARF) CDKN2A CDKN2 MLM activation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0006919]; amyloid fibril formation [GO:1990000]; apoptotic mitochondrial changes [GO:0008637]; autophagy of mitochondrion [GO:0000422]; cellular senescence [GO:0090398]; mitochondrial depolarization [GO:0051882]; negative regulation of B cell proliferation [GO:0030889]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of immature T cell proliferation in thymus [GO:0033088]; negative regulation of protein neddylation [GO:2000435]; negative regulation of proteolysis involved in protein catabolic process [GO:1903051]; negative regulation of ubiquitin protein ligase activity [GO:1904667]; negative regulation of ubiquitin-dependent protein catabolic process [GO:2000059]; negative regulation of ubiquitin-protein transferase activity [GO:0051444]; nuclear body organization [GO:0030575]; positive regulation of apoptotic process [GO:0043065]; positive regulation of DNA damage response, signal transduction by p53 class mediator [GO:0043517]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of protein localization to nucleus [GO:1900182]; positive regulation of protein sumoylation [GO:0033235]; positive regulation of signal transduction by p53 class mediator [GO:1901798]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein destabilization [GO:0031648]; protein K63-linked ubiquitination [GO:0070534]; protein localization to nucleolus [GO:1902570]; protein localization to nucleus [GO:0034504]; protein polyubiquitination [GO:0000209]; protein stabilization [GO:0050821]; protein sumoylation [GO:0016925]; regulation of apoptotic DNA fragmentation [GO:1902510]; regulation of cell cycle [GO:0051726]; regulation of protein export from nucleus [GO:0046825]; regulation of protein stability [GO:0031647]; regulation of protein targeting to mitochondrion [GO:1903214]; rRNA processing [GO:0006364]; somatic stem cell division [GO:0048103] -Q8N9V6 reviewed ANR53_HUMAN Ankyrin repeat domain-containing protein 53 ANKRD53 cell division [GO:0051301]; mitotic metaphase chromosome alignment [GO:0007080]; positive regulation of microtubule polymerization [GO:0031116]; regulation of mitotic cytokinesis [GO:1902412]; regulation of mitotic spindle organization [GO:0060236] -Q8NBT2 reviewed SPC24_HUMAN Kinetochore protein Spc24 (hSpc24) SPC24 SPBC24 attachment of spindle microtubules to kinetochore [GO:0008608]; cell division [GO:0051301]; chromosome segregation [GO:0007059]; mitotic spindle assembly checkpoint signaling [GO:0007094] -Q8ND76 reviewed CCNY_HUMAN Cyclin-Y (Cyc-Y) (Cyclin box protein 1) (Cyclin fold protein 1) (cyclin-X) CCNY C10orf9 CBCP1 CFP1 cell division [GO:0051301]; G2/M transition of mitotic cell cycle [GO:0000086]; positive regulation of autophagy [GO:0010508]; positive regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0045737]; regulation of canonical Wnt signaling pathway [GO:0060828]; spermatogenesis [GO:0007283]; Wnt signaling pathway [GO:0016055] -Q8NDF8 reviewed PAPD5_HUMAN Terminal nucleotidyltransferase 4B (Non-canonical poly(A) RNA polymerase PAPD5) (EC 2.7.7.19) (PAP-associated domain-containing protein 5) (Terminal guanylyltransferase) (EC 2.7.7.-) (Terminal uridylyltransferase 3) (TUTase 3) (Topoisomerase-related function protein 4-2) (TRF4-2) TENT4B GLD4 PAPD5 TRF4-2 TUT3 carbohydrate homeostasis [GO:0033500]; cell division [GO:0051301]; histone mRNA catabolic process [GO:0071044]; miRNA catabolic process [GO:0010587]; mRNA 3'-end processing [GO:0031124]; negative regulation of nuclear-transcribed mRNA poly(A) tail shortening [GO:0060212]; negative regulation of telomere maintenance via telomerase [GO:0032211]; poly(A)-dependent snoRNA 3'-end processing [GO:0071051]; polyadenylation-dependent ncRNA catabolic process [GO:0043634]; positive regulation of 3'-UTR-mediated mRNA stabilization [GO:1905870]; RNA 3' uridylation [GO:0071076]; RNA 3'-end processing [GO:0031123]; rRNA processing [GO:0006364] -Q8NEB9 reviewed PK3C3_HUMAN Phosphatidylinositol 3-kinase catalytic subunit type 3 (PI3-kinase type 3) (PI3K type 3) (PtdIns-3-kinase type 3) (EC 2.7.1.137) (Phosphatidylinositol 3-kinase p100 subunit) (Phosphoinositide-3-kinase class 3) (hVps34) PIK3C3 VPS34 autophagosome assembly [GO:0000045]; autophagosome maturation [GO:0097352]; autophagy [GO:0006914]; cell division [GO:0051301]; cellular response to glucose starvation [GO:0042149]; early endosome to late endosome transport [GO:0045022]; endocytosis [GO:0006897]; macroautophagy [GO:0016236]; phosphatidylinositol phosphate biosynthetic process [GO:0046854]; phosphatidylinositol-3-phosphate biosynthetic process [GO:0036092]; phosphatidylinositol-mediated signaling [GO:0048015]; positive regulation by host of viral genome replication [GO:0044829]; protein lipidation [GO:0006497]; protein localization to phagophore assembly site [GO:0034497]; protein targeting to lysosome [GO:0006622]; regulation of autophagy [GO:0010506]; regulation of cytokinesis [GO:0032465]; regulation of macroautophagy [GO:0016241] -Q8NFH3 reviewed NUP43_HUMAN Nucleoporin Nup43 (Nup107-160 subcomplex subunit Nup43) (p42) NUP43 cell division [GO:0051301]; chromosome segregation [GO:0007059]; mRNA transport [GO:0051028]; nucleocytoplasmic transport [GO:0006913]; protein transport [GO:0015031] -Q8NFH4 reviewed NUP37_HUMAN Nucleoporin Nup37 (p37) (Nup107-160 subcomplex subunit Nup37) NUP37 cell division [GO:0051301]; chromosome segregation [GO:0007059]; mRNA transport [GO:0051028]; nucleocytoplasmic transport [GO:0006913]; protein transport [GO:0015031] -Q8NG31 reviewed KNL1_HUMAN Kinetochore scaffold 1 (ALL1-fused gene from chromosome 15q14 protein) (AF15q14) (Bub-linking kinetochore protein) (Blinkin) (Cancer susceptibility candidate gene 5 protein) (Cancer/testis antigen 29) (CT29) (Kinetochore-null protein 1) (Protein CASC5) (Protein D40/AF15q14) KNL1 CASC5 KIAA1570 acrosome assembly [GO:0001675]; attachment of spindle microtubules to kinetochore [GO:0008608]; cell division [GO:0051301]; homologous chromosome orientation in meiotic metaphase I [GO:0031619]; mitotic sister chromatid segregation [GO:0000070]; positive regulation of meiosis I spindle assembly checkpoint [GO:1905326]; protein localization to kinetochore [GO:0034501]; regulation of mitotic cell cycle spindle assembly checkpoint [GO:0090266] -Q8NHS9 reviewed SPT22_HUMAN Spermatogenesis-associated protein 22 (Testis development protein NYD-SP20) SPATA22 fertilization [GO:0009566]; homologous chromosome pairing at meiosis [GO:0007129]; meiotic DNA repair synthesis [GO:0000711]; regulation of meiotic cell cycle [GO:0051445]; reproductive system development [GO:0061458]; spermatocyte division [GO:0048137] -Q8NHV4 reviewed NEDD1_HUMAN Protein NEDD1 (Neural precursor cell expressed developmentally down-regulated protein 1) (NEDD-1) NEDD1 cell division [GO:0051301]; microtubule nucleation [GO:0007020]; mitotic cell cycle [GO:0000278] -Q8NHZ8 reviewed CDC26_HUMAN Anaphase-promoting complex subunit CDC26 (Anaphase-promoting complex subunit 12) (APC12) (Cell division cycle protein 26 homolog) CDC26 ANAPC12 C9orf17 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; protein K11-linked ubiquitination [GO:0070979]; protein K48-linked ubiquitination [GO:0070936]; regulation of meiotic cell cycle [GO:0051445]; regulation of mitotic cell cycle [GO:0007346] -Q8NI27 reviewed THOC2_HUMAN THO complex subunit 2 (Tho2) (hTREX120) THOC2 CXorf3 blastocyst development [GO:0001824]; cell morphogenesis [GO:0000902]; generation of neurons [GO:0048699]; mRNA export from nucleus [GO:0006406]; mRNA processing [GO:0006397]; negative regulation of neuron projection development [GO:0010977]; neuron development [GO:0048666]; poly(A)+ mRNA export from nucleus [GO:0016973]; regulation of gene expression [GO:0010468]; regulation of mRNA export from nucleus [GO:0010793]; RNA splicing [GO:0008380]; stem cell division [GO:0017145] -Q8TAG9 reviewed EXOC6_HUMAN Exocyst complex component 6 (Exocyst complex component Sec15A) (SEC15-like protein 1) EXOC6 SEC15A SEC15L SEC15L1 exocytosis [GO:0006887]; Golgi to plasma membrane transport [GO:0006893]; intracellular protein transport [GO:0006886]; membrane fission [GO:0090148]; mitotic cytokinesis [GO:0000281]; vesicle docking involved in exocytosis [GO:0006904]; vesicle tethering involved in exocytosis [GO:0090522] -Q8TAP9 reviewed MPLKI_HUMAN M-phase-specific PLK1-interacting protein (TTD non-photosensitive 1 protein) MPLKIP C7orf11 TTDN1 cell division [GO:0051301] -Q8TD19 reviewed NEK9_HUMAN Serine/threonine-protein kinase Nek9 (EC 2.7.11.1) (Nercc1 kinase) (Never in mitosis A-related kinase 9) (NimA-related protein kinase 9) (NimA-related kinase 8) (Nek8) NEK9 KIAA1995 NEK8 NERCC cell division [GO:0051301]; mitotic cell cycle [GO:0000278]; regulation of mitotic cell cycle [GO:0007346] -Q8TDN4 reviewed CABL1_HUMAN CDK5 and ABL1 enzyme substrate 1 (Interactor with CDK3 1) (Ik3-1) CABLES1 CABLES cell division [GO:0051301]; nervous system development [GO:0007399]; regulation of cell cycle [GO:0051726] -Q8TEW0 reviewed PARD3_HUMAN Partitioning defective 3 homolog (PAR-3) (PARD-3) (Atypical PKC isotype-specific-interacting protein) (ASIP) (CTCL tumor antigen se2-5) (PAR3-alpha) PARD3 PAR3 PAR3A asymmetric cell division [GO:0008356]; axonogenesis [GO:0007409]; bicellular tight junction assembly [GO:0070830]; cell adhesion [GO:0007155]; establishment of cell polarity [GO:0030010]; establishment of centrosome localization [GO:0051660]; establishment of epithelial cell polarity [GO:0090162]; establishment or maintenance of cell polarity [GO:0007163]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; microtubule cytoskeleton organization [GO:0000226]; myelination in peripheral nervous system [GO:0022011]; negative regulation of peptidyl-threonine phosphorylation [GO:0010801]; positive regulation of myelination [GO:0031643]; protein kinase C-activating G protein-coupled receptor signaling pathway [GO:0007205]; protein localization [GO:0008104]; protein targeting to membrane [GO:0006612]; protein-containing complex assembly [GO:0065003] -Q8TEW8 reviewed PAR3L_HUMAN Partitioning defective 3 homolog B (Amyotrophic lateral sclerosis 2 chromosomal region candidate gene 19 protein) (PAR3-beta) (Partitioning defective 3-like protein) (PAR3-L protein) PARD3B ALS2CR19 PAR3B PAR3L cell adhesion [GO:0007155]; cell division [GO:0051301]; establishment of cell polarity [GO:0030010]; establishment of centrosome localization [GO:0051660]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; microtubule cytoskeleton organization [GO:0000226]; protein localization [GO:0008104] -Q8WUM4 reviewed PDC6I_HUMAN Programmed cell death 6-interacting protein (PDCD6-interacting protein) (ALG-2-interacting protein 1) (ALG-2-interacting protein X) (Hp95) PDCD6IP AIP1 ALIX KIAA1375 actomyosin contractile ring assembly [GO:0000915]; apoptotic process [GO:0006915]; bicellular tight junction assembly [GO:0070830]; extracellular exosome biogenesis [GO:0097734]; macroautophagy [GO:0016236]; maintenance of epithelial cell apical/basal polarity [GO:0045199]; midbody abscission [GO:0061952]; mitotic cytokinesis [GO:0000281]; multivesicular body assembly [GO:0036258]; multivesicular body sorting pathway [GO:0071985]; positive regulation of exosomal secretion [GO:1903543]; positive regulation of extracellular exosome assembly [GO:1903553]; protein homooligomerization [GO:0051260]; protein transport [GO:0015031]; regulation of centrosome duplication [GO:0010824]; regulation of extracellular exosome assembly [GO:1903551]; regulation of membrane permeability [GO:0090559]; ubiquitin-independent protein catabolic process via the multivesicular body sorting pathway [GO:0090611]; viral budding [GO:0046755]; viral budding via host ESCRT complex [GO:0039702] -Q8WUX9 reviewed CHMP7_HUMAN Charged multivesicular body protein 7 (Chromatin-modifying protein 7) CHMP7 autophagosome maturation [GO:0097352]; autophagy [GO:0006914]; ESCRT III complex disassembly [GO:1904903]; exit from mitosis [GO:0010458]; late endosome to lysosome transport [GO:1902774]; late endosome to vacuole transport [GO:0045324]; late endosome to vacuole transport via multivesicular body sorting pathway [GO:0032511]; membrane fission [GO:0090148]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body assembly [GO:0036258]; multivesicular body sorting pathway [GO:0071985]; multivesicular body-lysosome fusion [GO:0061763]; nuclear membrane reassembly [GO:0031468]; nucleus organization [GO:0006997]; plasma membrane repair [GO:0001778]; protein localization to chromatin [GO:0071168]; protein transport [GO:0015031]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; vesicle budding from membrane [GO:0006900]; vesicle fusion with vacuole [GO:0051469]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -Q8WV41 reviewed SNX33_HUMAN Sorting nexin-33 (SH3 and PX domain-containing protein 3) SNX33 SH3PX3 SH3PXD3C SNX30 cleavage furrow formation [GO:0036089]; endocytosis [GO:0006897]; endosomal transport [GO:0016197]; endosome organization [GO:0007032]; intracellular protein transport [GO:0006886]; macropinocytosis [GO:0044351]; mitotic cytokinesis [GO:0000281]; negative regulation of endocytosis [GO:0045806]; negative regulation of protein localization to cell surface [GO:2000009]; plasma membrane tubulation [GO:0097320]; positive regulation of membrane protein ectodomain proteolysis [GO:0051044]; positive regulation of protein localization to cell surface [GO:2000010]; protein import [GO:0017038] -Q8WV92 reviewed MITD1_HUMAN MIT domain-containing protein 1 MITD1 midbody abscission [GO:0061952]; mitotic cytokinesis [GO:0000281]; negative regulation of protein binding [GO:0032091] -Q8WVK7 reviewed SKA2_HUMAN Spindle and kinetochore-associated protein 2 (Protein FAM33A) SKA2 FAM33A attachment of mitotic spindle microtubules to kinetochore [GO:0051315]; cell division [GO:0051301]; chromosome segregation [GO:0007059]; mitotic cell cycle [GO:0000278]; mitotic sister chromatid segregation [GO:0000070]; regulation of microtubule polymerization or depolymerization [GO:0031110] -Q8WVM7 reviewed STAG1_HUMAN Cohesin subunit SA-1 (SCC3 homolog 1) (Stromal antigen 1) STAG1 SA1 SCC3 cell division [GO:0051301]; establishment of mitotic sister chromatid cohesion [GO:0034087]; mitotic spindle assembly [GO:0090307]; sister chromatid cohesion [GO:0007062] -Q8WWK9 reviewed CKAP2_HUMAN Cytoskeleton-associated protein 2 (CTCL tumor antigen se20-10) (Tumor- and microtubule-associated protein) CKAP2 LB1 TMAP apoptotic process [GO:0006915]; mitotic cytokinesis [GO:0000281]; negative regulation of microtubule depolymerization [GO:0007026]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q8WWL2 reviewed SPIR2_HUMAN Protein spire homolog 2 (Spir-2) SPIRE2 KIAA1832 SPIR2 actin cytoskeleton organization [GO:0030036]; actin filament network formation [GO:0051639]; actin filament polymerization [GO:0030041]; actin nucleation [GO:0045010]; cleavage furrow formation [GO:0036089]; establishment of meiotic spindle localization [GO:0051295]; formin-nucleated actin cable assembly [GO:0070649]; Golgi vesicle transport [GO:0048193]; intracellular transport [GO:0046907]; polar body extrusion after meiotic divisions [GO:0040038]; positive regulation of double-strand break repair [GO:2000781]; protein transport [GO:0015031]; vesicle-mediated transport [GO:0016192] -Q8WWL7 reviewed CCNB3_HUMAN G2/mitotic-specific cyclin-B3 CCNB3 CYCB3 cell division [GO:0051301]; meiotic cell cycle [GO:0051321]; mitotic cell cycle phase transition [GO:0044772] -Q8WYJ6 reviewed SEPT1_HUMAN Septin-1 (LARP) (Peanut-like protein 3) (Serologically defined breast cancer antigen NY-BR-24) SEPTIN1 DIFF6 PNUTL3 SEPT1 cytoskeleton-dependent cytokinesis [GO:0061640]; meiotic metaphase chromosome alignment [GO:0051311]; protein localization [GO:0008104]; regulation of exocytosis [GO:0017157]; spindle assembly involved in female meiosis [GO:0007056] -Q8WYP5 reviewed ELYS_HUMAN Protein ELYS (Embryonic large molecule derived from yolk sac) (Protein MEL-28) (Putative AT-hook-containing transcription factor 1) AHCTF1 ELYS TMBS62 MSTP108 cell division [GO:0051301]; mRNA transport [GO:0051028]; nuclear pore complex assembly [GO:0051292]; nucleocytoplasmic transport [GO:0006913]; protein transport [GO:0015031]; regulation of cytokinesis [GO:0032465] -Q92599 reviewed SEPT8_HUMAN Septin-8 SEPTIN8 KIAA0202 SEPT8 cytoskeleton-dependent cytokinesis [GO:0061640]; protein localization [GO:0008104]; regulation of intracellular protein transport [GO:0033157]; regulation of protein stability [GO:0031647]; regulation of SNARE complex assembly [GO:0035542] -Q92913 reviewed FGF13_HUMAN Fibroblast growth factor 13 (FGF-13) (Fibroblast growth factor homologous factor 2) (FHF-2) FGF13 FHF2 branching morphogenesis of a nerve [GO:0048755]; cell-cell signaling [GO:0007267]; cerebral cortex cell migration [GO:0021795]; establishment of neuroblast polarity [GO:0045200]; hippocampus development [GO:0021766]; inhibitory synapse assembly [GO:1904862]; learning [GO:0007612]; MAPK cascade [GO:0000165]; memory [GO:0007613]; microtubule polymerization [GO:0046785]; negative regulation of collateral sprouting [GO:0048671]; negative regulation of microtubule depolymerization [GO:0007026]; nervous system development [GO:0007399]; neuron migration [GO:0001764]; positive regulation of voltage-gated sodium channel activity [GO:1905152]; protein localization to plasma membrane [GO:0072659]; regulation of cardiac muscle cell action potential involved in regulation of contraction [GO:0098909]; signal transduction [GO:0007165]; sodium ion transport [GO:0006814] -Q92974 reviewed ARHG2_HUMAN Rho guanine nucleotide exchange factor 2 (Guanine nucleotide exchange factor H1) (GEF-H1) (Microtubule-regulated Rho-GEF) (Proliferating cell nucleolar antigen p40) ARHGEF2 KIAA0651 LFP40 actin filament organization [GO:0007015]; asymmetric neuroblast division [GO:0055059]; cell morphogenesis [GO:0000902]; cellular hyperosmotic response [GO:0071474]; cellular response to muramyl dipeptide [GO:0071225]; cellular response to tumor necrosis factor [GO:0071356]; innate immune response [GO:0045087]; intracellular protein transport [GO:0006886]; negative regulation of extrinsic apoptotic signaling pathway via death domain receptors [GO:1902042]; negative regulation of intrinsic apoptotic signaling pathway in response to osmotic stress [GO:1902219]; negative regulation of microtubule depolymerization [GO:0007026]; negative regulation of necroptotic process [GO:0060546]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of neuron migration [GO:2001224]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of tumor necrosis factor production [GO:0032760]; regulation of cell population proliferation [GO:0042127]; regulation of Rho protein signal transduction [GO:0035023]; regulation of small GTPase mediated signal transduction [GO:0051056] -Q93008 reviewed USP9X_HUMAN Ubiquitin carboxyl-terminal hydrolase 9X (EC 3.4.19.12) (Deubiquitinating enzyme FAF-X) (Fat facets in mammals) (hFAM) (Fat facets protein-related, X-linked) (Ubiquitin thioesterase FAF-X) (Ubiquitin-specific protease 9, X chromosome) (Ubiquitin-specific-processing protease FAF-X) USP9X DFFRX FAM USP9 amyloid fibril formation [GO:1990000]; axon extension [GO:0048675]; BMP signaling pathway [GO:0030509]; cell division [GO:0051301]; cell migration [GO:0016477]; chromosome segregation [GO:0007059]; cilium assembly [GO:0060271]; cytosolic ciliogenesis [GO:0061824]; DNA alkylation repair [GO:0006307]; female gamete generation [GO:0007292]; monoubiquitinated protein deubiquitination [GO:0035520]; negative regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032435]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron migration [GO:0001764]; positive regulation of protein binding [GO:0032092]; positive regulation of TORC2 signaling [GO:1904515]; protein deubiquitination [GO:0016579]; protein deubiquitination involved in ubiquitin-dependent protein catabolic process [GO:0071947]; protein import into peroxisome matrix, receptor recycling [GO:0016562]; protein K63-linked deubiquitination [GO:0070536]; protein localization [GO:0008104]; protein stabilization [GO:0050821]; protein ubiquitination [GO:0016567]; regulation of circadian rhythm [GO:0042752]; rhythmic process [GO:0048511]; transforming growth factor beta receptor signaling pathway [GO:0007179] -Q96A65 reviewed EXOC4_HUMAN Exocyst complex component 4 (Exocyst complex component Sec8) EXOC4 KIAA1699 SEC8 SEC8L1 chemical synaptic transmission [GO:0007268]; exocytosis [GO:0006887]; Golgi to plasma membrane transport [GO:0006893]; membrane fission [GO:0090148]; mitotic cytokinesis [GO:0000281]; paraxial mesoderm formation [GO:0048341]; protein transmembrane transport [GO:0071806]; regulation of macroautophagy [GO:0016241]; vesicle docking involved in exocytosis [GO:0006904]; vesicle tethering involved in exocytosis [GO:0090522] -Q96AY4 reviewed TTC28_HUMAN Tetratricopeptide repeat protein 28 (TPR repeat protein 28) (TPR repeat-containing big gene cloned at Keio) TTC28 KIAA1043 TPRBK cell division [GO:0051301]; regulation of mitotic cell cycle [GO:0007346] -Q96BD8 reviewed SKA1_HUMAN Spindle and kinetochore-associated protein 1 SKA1 C18orf24 attachment of mitotic spindle microtubules to kinetochore [GO:0051315]; cell division [GO:0051301]; chromosome segregation [GO:0007059]; mitotic cell cycle [GO:0000278]; mitotic sister chromatid segregation [GO:0000070]; regulation of microtubule polymerization or depolymerization [GO:0031110] -Q96BM9 reviewed ARL8A_HUMAN ADP-ribosylation factor-like protein 8A (ADP-ribosylation factor-like protein 10B) (Novel small G protein indispensable for equal chromosome segregation 2) ARL8A ARL10B GIE2 anterograde axonal transport [GO:0008089]; cell division [GO:0051301]; chromosome segregation [GO:0007059]; protein transport [GO:0015031] -Q96BT3 reviewed CENPT_HUMAN Centromere protein T (CENP-T) (Interphase centromere complex protein 22) CENPT C16orf56 ICEN22 cell division [GO:0051301]; chromosome organization [GO:0051276]; chromosome segregation [GO:0007059]; kinetochore assembly [GO:0051382]; mitotic cell cycle [GO:0000278] -Q96C92 reviewed ENTR1_HUMAN Endosome-associated-trafficking regulator 1 (Antigen NY-CO-3) (Serologically defined colon cancer antigen 3) ENTR1 SDCCAG3 cell division [GO:0051301]; cell projection organization [GO:0030030]; endocytic recycling [GO:0032456]; positive regulation of cilium assembly [GO:0045724]; positive regulation of protein localization to cilium [GO:1903566]; protein transport [GO:0015031]; regulation of cytokinesis [GO:0032465] -Q96CF2 reviewed CHM4C_HUMAN Charged multivesicular body protein 4c (Chromatin-modifying protein 4c) (CHMP4c) (SNF7 homolog associated with Alix 3) (SNF7-3) (hSnf7-3) (Vacuolar protein sorting-associated protein 32-3) (Vps32-3) (hVps32-3) CHMP4C SHAX3 abscission [GO:0009838]; autophagosome maturation [GO:0097352]; autophagy [GO:0006914]; late endosome to lysosome transport [GO:1902774]; late endosome to vacuole transport via multivesicular body sorting pathway [GO:0032511]; macroautophagy [GO:0016236]; membrane fission [GO:0090148]; midbody abscission [GO:0061952]; mitotic cytokinesis checkpoint signaling [GO:0044878]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body assembly [GO:0036258]; multivesicular body sorting pathway [GO:0071985]; multivesicular body-lysosome fusion [GO:0061763]; negative regulation of cytokinesis [GO:0032466]; nuclear membrane reassembly [GO:0031468]; nucleus organization [GO:0006997]; plasma membrane repair [GO:0001778]; protein transport [GO:0015031]; regulation of centrosome duplication [GO:0010824]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; ubiquitin-independent protein catabolic process via the multivesicular body sorting pathway [GO:0090611]; vesicle budding from membrane [GO:0006900]; vesicle fusion with vacuole [GO:0051469]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -Q96CS2 reviewed HAUS1_HUMAN HAUS augmin-like complex subunit 1 (Coiled-coil domain-containing protein 5) (Enhancer of invasion-cluster) (HEI-C) HAUS1 CCDC5 HEIC cell division [GO:0051301]; centrosome cycle [GO:0007098]; regulation of microtubule nucleation [GO:0010968]; spindle assembly [GO:0051225] -Q96CT7 reviewed CC124_HUMAN Coiled-coil domain-containing protein 124 CCDC124 cell division [GO:0051301]; transcription by RNA polymerase II [GO:0006366] -Q96DE5 reviewed APC16_HUMAN Anaphase-promoting complex subunit 16 (APC16) (Cyclosome subunit 16) ANAPC16 C10orf104 CENP-27 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; protein K11-linked ubiquitination [GO:0070979]; protein K48-linked ubiquitination [GO:0070936]; protein ubiquitination [GO:0016567]; regulation of meiotic cell cycle [GO:0051445]; regulation of mitotic cell cycle [GO:0007346] -Q96EA4 reviewed SPDLY_HUMAN Protein Spindly (hSpindly) (Arsenite-related gene 1 protein) (Coiled-coil domain-containing protein 99) (Rhabdomyosarcoma antigen MU-RMS-40.4A) (Spindle apparatus coiled-coil domain-containing protein 1) SPDL1 CCDC99 cell division [GO:0051301]; cell migration [GO:0016477]; establishment of mitotic spindle orientation [GO:0000132]; mitotic metaphase chromosome alignment [GO:0007080]; mitotic spindle assembly checkpoint signaling [GO:0007094]; protein localization to kinetochore [GO:0034501] -Q96EE3 reviewed SEH1_HUMAN Nucleoporin SEH1 (GATOR2 complex protein SEH1) (Nup107-160 subcomplex subunit SEH1) (SEC13-like protein) SEH1L SEC13L SEH1 attachment of mitotic spindle microtubules to kinetochore [GO:0051315]; cell division [GO:0051301]; cellular response to amino acid starvation [GO:0034198]; cellular response to nutrient levels [GO:0031669]; defense response to Gram-positive bacterium [GO:0050830]; mitotic metaphase chromosome alignment [GO:0007080]; mRNA transport [GO:0051028]; negative regulation of TORC1 signaling [GO:1904262]; nuclear pore organization [GO:0006999]; nucleocytoplasmic transport [GO:0006913]; positive regulation of TORC1 signaling [GO:1904263]; protein transport [GO:0015031]; protein-containing complex localization [GO:0031503] -Q96EP1 reviewed CHFR_HUMAN E3 ubiquitin-protein ligase CHFR (EC 2.3.2.27) (Checkpoint with forkhead and RING finger domains protein) (RING finger protein 196) (RING-type E3 ubiquitin transferase CHFR) CHFR RNF196 cell division [GO:0051301]; meiotic spindle checkpoint signaling [GO:0044779]; mitotic G2/M transition checkpoint [GO:0044818]; positive regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032436]; positive regulation of protein ubiquitination [GO:0031398]; protein destabilization [GO:0031648]; protein polyubiquitination [GO:0000209]; protein ubiquitination [GO:0016567]; ubiquitin-dependent protein catabolic process [GO:0006511] -Q96FF9 reviewed CDCA5_HUMAN Sororin (Cell division cycle-associated protein 5) (p35) CDCA5 cell division [GO:0051301]; double-strand break repair [GO:0006302]; mitotic cell cycle [GO:0000278]; mitotic chromosome condensation [GO:0007076]; mitotic metaphase chromosome alignment [GO:0007080]; mitotic sister chromatid cohesion [GO:0007064]; positive regulation of exit from mitosis [GO:0031536] -Q96FZ7 reviewed CHMP6_HUMAN Charged multivesicular body protein 6 (Chromatin-modifying protein 6) (Vacuolar protein sorting-associated protein 20) (Vps20) (hVps20) CHMP6 VPS20 autophagosome maturation [GO:0097352]; autophagy [GO:0006914]; ESCRT III complex assembly [GO:1904902]; late endosome to lysosome transport [GO:1902774]; late endosome to vacuole transport via multivesicular body sorting pathway [GO:0032511]; macroautophagy [GO:0016236]; membrane fission [GO:0090148]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body assembly [GO:0036258]; multivesicular body sorting pathway [GO:0071985]; multivesicular body-lysosome fusion [GO:0061763]; negative regulation of epidermal growth factor-activated receptor activity [GO:0007175]; nuclear membrane reassembly [GO:0031468]; nucleus organization [GO:0006997]; plasma membrane repair [GO:0001778]; protein transport [GO:0015031]; regulation of mitotic spindle assembly [GO:1901673]; regulation of protein catabolic process [GO:0042176]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; vesicle budding from membrane [GO:0006900]; vesicle fusion with vacuole [GO:0051469]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -Q96GD4 reviewed AURKB_HUMAN Aurora kinase B (EC 2.7.11.1) (Aurora 1) (Aurora- and IPL1-like midbody-associated protein 1) (AIM-1) (Aurora/IPL1-related kinase 2) (ARK-2) (Aurora-related kinase 2) (STK-1) (Serine/threonine-protein kinase 12) (Serine/threonine-protein kinase 5) (Serine/threonine-protein kinase aurora-B) AURKB AIK2 AIM1 AIRK2 ARK2 STK1 STK12 STK5 abscission [GO:0009838]; attachment of spindle microtubules to kinetochore [GO:0008608]; cell cycle G2/M phase transition [GO:0044839]; cellular response to UV [GO:0034644]; cleavage furrow formation [GO:0036089]; mitotic cell cycle [GO:0000278]; mitotic cytokinesis [GO:0000281]; mitotic cytokinesis checkpoint signaling [GO:0044878]; mitotic spindle assembly [GO:0090307]; mitotic spindle midzone assembly [GO:0051256]; mitotic spindle organization [GO:0007052]; negative regulation of B cell apoptotic process [GO:0002903]; negative regulation of cGAS/STING signaling pathway [GO:0160049]; negative regulation of cytokinesis [GO:0032466]; negative regulation of innate immune response [GO:0045824]; negative regulation of protein binding [GO:0032091]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of attachment of mitotic spindle microtubules to kinetochore [GO:1902425]; positive regulation of cytokinesis [GO:0032467]; positive regulation of lateral attachment of mitotic spindle microtubules to kinetochore [GO:1905116]; positive regulation of mitotic cell cycle spindle assembly checkpoint [GO:0090267]; positive regulation of mitotic cytokinesis [GO:1903490]; positive regulation of mitotic sister chromatid segregation [GO:0062033]; positive regulation of mitotic sister chromatid separation [GO:1901970]; positive regulation of telomerase activity [GO:0051973]; positive regulation of telomere capping [GO:1904355]; positive regulation of telomere maintenance via telomerase [GO:0032212]; post-translational protein modification [GO:0043687]; protein autophosphorylation [GO:0046777]; protein localization to kinetochore [GO:0034501]; protein phosphorylation [GO:0006468]; regulation of chromosome segregation [GO:0051983]; regulation of cytokinesis [GO:0032465]; regulation of signal transduction by p53 class mediator [GO:1901796]; spindle organization [GO:0007051] -Q96GX5 reviewed GWL_HUMAN Serine/threonine-protein kinase greatwall (GW) (GWL) (hGWL) (EC 2.7.11.1) (Microtubule-associated serine/threonine-protein kinase-like) (MAST-L) MASTL GW GWL THC2 cell division [GO:0051301]; DNA damage response [GO:0006974]; female meiosis II [GO:0007147]; G2/M transition of mitotic cell cycle [GO:0000086]; intracellular signal transduction [GO:0035556]; mitotic cell cycle [GO:0000278]; negative regulation of phosphoprotein phosphatase activity [GO:0032515]; regulation of cell cycle [GO:0051726]; regulation of mitotic cell cycle [GO:0007346] -Q96HI0 reviewed SENP5_HUMAN Sentrin-specific protease 5 (EC 3.4.22.-) (Sentrin/SUMO-specific protease SENP5) SENP5 FKSG45 cell division [GO:0051301]; protein desumoylation [GO:0016926]; protein sumoylation [GO:0016925]; proteolysis [GO:0006508] -Q96IK1 reviewed BOD1_HUMAN Biorientation of chromosomes in cell division protein 1 (Biorientation defective protein 1) (Protein FAM44B) BOD1 FAM44B cell division [GO:0051301]; mitotic metaphase chromosome alignment [GO:0007080]; mitotic sister chromatid biorientation [GO:1990758]; mitotic sister chromatid cohesion, centromeric [GO:0071962]; negative regulation of phosphoprotein phosphatase activity [GO:0032515]; protein localization to chromosome, centromeric region [GO:0071459] -Q96IY1 reviewed NSL1_HUMAN Kinetochore-associated protein NSL1 homolog NSL1 C1orf48 DC31 DC8 MIS14 attachment of spindle microtubules to kinetochore [GO:0008608]; cell division [GO:0051301]; mitotic sister chromatid segregation [GO:0000070] -Q96K21 reviewed ANCHR_HUMAN Abscission/NoCut checkpoint regulator (ANCHR) (MLL partner containing FYVE domain) (Zinc finger FYVE domain-containing protein 19) ZFYVE19 ANCHR MPFYVE abscission [GO:0009838]; cell division [GO:0051301]; mitotic cytokinesis checkpoint signaling [GO:0044878]; negative regulation of cytokinesis [GO:0032466] -Q96KP1 reviewed EXOC2_HUMAN Exocyst complex component 2 (Exocyst complex component Sec5) EXOC2 SEC5 SEC5L1 exocytosis [GO:0006887]; Golgi to plasma membrane transport [GO:0006893]; membrane fission [GO:0090148]; mitotic cytokinesis [GO:0000281]; protein transport [GO:0015031]; regulation of entry of bacterium into host cell [GO:2000535]; vesicle docking involved in exocytosis [GO:0006904]; vesicle tethering involved in exocytosis [GO:0090522] -Q96KR4 reviewed LMLN_HUMAN Leishmanolysin-like peptidase (EC 3.4.24.-) (Invadolysin) LMLN cell adhesion [GO:0007155]; cell division [GO:0051301]; proteolysis [GO:0006508] -Q96L34 reviewed MARK4_HUMAN MAP/microtubule affinity-regulating kinase 4 (EC 2.7.11.1) (MAP/microtubule affinity-regulating kinase-like 1) MARK4 KIAA1860 MARKL1 cell division [GO:0051301]; cilium organization [GO:0044782]; intracellular signal transduction [GO:0035556]; microtubule bundle formation [GO:0001578]; microtubule cytoskeleton organization [GO:0000226]; nervous system development [GO:0007399]; positive regulation of cell cycle [GO:0045787]; positive regulation of cilium assembly [GO:0045724]; positive regulation of NLRP3 inflammasome complex assembly [GO:1900227]; positive regulation of programmed cell death [GO:0043068]; positive regulation of protein localization to centrosome [GO:1904781]; protein phosphorylation [GO:0006468]; regulation of centrosome cycle [GO:0046605] -Q96MF7 reviewed NSE2_HUMAN E3 SUMO-protein ligase NSE2 (EC 2.3.2.-) (E3 SUMO-protein transferase NSE2) (MMS21 homolog) (hMMS21) (Non-structural maintenance of chromosomes element 2 homolog) (Non-SMC element 2 homolog) NSMCE2 C8orf36 MMS21 cell division [GO:0051301]; cellular senescence [GO:0090398]; chromatin looping [GO:0140588]; double-strand break repair via homologous recombination [GO:0000724]; positive regulation of maintenance of mitotic sister chromatid cohesion [GO:0034184]; positive regulation of mitotic metaphase/anaphase transition [GO:0045842]; protein sumoylation [GO:0016925]; regulation of telomere maintenance [GO:0032204]; telomere maintenance via recombination [GO:0000722] -Q96MT8 reviewed CEP63_HUMAN Centrosomal protein of 63 kDa (Cep63) CEP63 cell division [GO:0051301]; centriole replication [GO:0007099]; de novo centriole assembly involved in multi-ciliated epithelial cell differentiation [GO:0098535]; DNA damage checkpoint signaling [GO:0000077]; negative regulation of innate immune response [GO:0045824]; negative regulation of protein K63-linked ubiquitination [GO:1900045]; protein stabilization [GO:0050821]; signal transduction in response to DNA damage [GO:0042770]; spindle assembly [GO:0051225] -Q96N67 reviewed DOCK7_HUMAN Dedicator of cytokinesis protein 7 DOCK7 KIAA1771 activation of GTPase activity [GO:0090630]; axonogenesis [GO:0007409]; establishment of neuroblast polarity [GO:0045200]; interkinetic nuclear migration [GO:0022027]; microtubule cytoskeleton organization [GO:0000226]; negative regulation of cold-induced thermogenesis [GO:0120163]; neuron projection development [GO:0031175]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of vascular associated smooth muscle cell migration [GO:1904754]; regulation of neurogenesis [GO:0050767]; small GTPase-mediated signal transduction [GO:0007264] -Q96NB3 reviewed ZN830_HUMAN Zinc finger protein 830 (Coiled-coil domain-containing protein 16) ZNF830 CCDC16 blastocyst growth [GO:0001832]; cell division [GO:0051301]; chromosome organization [GO:0051276]; intestinal epithelial structure maintenance [GO:0060729]; mitotic DNA damage checkpoint signaling [GO:0044773]; mitotic DNA replication checkpoint signaling [GO:0033314]; mRNA processing [GO:0006397]; negative regulation of apoptotic process [GO:0043066]; nuclear DNA replication [GO:0033260]; ovarian follicle development [GO:0001541]; preantral ovarian follicle growth [GO:0001546]; RNA processing [GO:0006396]; RNA splicing [GO:0008380] -Q96PH1 reviewed NOX5_HUMAN NADPH oxidase 5 (EC 1.6.3.-) NOX5 angiogenesis [GO:0001525]; apoptotic process [GO:0006915]; cytoskeleton-dependent cytokinesis [GO:0061640]; defense response [GO:0006952]; endothelial cell proliferation [GO:0001935]; positive regulation of cytokine production [GO:0001819]; positive regulation of reactive oxygen species metabolic process [GO:2000379]; proton transmembrane transport [GO:1902600]; regulation of fusion of sperm to egg plasma membrane [GO:0043012]; superoxide anion generation [GO:0042554] -Q96PY6 reviewed NEK1_HUMAN Serine/threonine-protein kinase Nek1 (EC 2.7.11.1) (Never in mitosis A-related kinase 1) (NimA-related protein kinase 1) (Renal carcinoma antigen NY-REN-55) NEK1 KIAA1901 cell division [GO:0051301]; cilium assembly [GO:0060271]; protein phosphorylation [GO:0006468] -Q96Q89 reviewed KI20B_HUMAN Kinesin-like protein KIF20B (Cancer/testis antigen 90) (CT90) (Kinesin family member 20B) (Kinesin-related motor interacting with PIN1) (M-phase phosphoprotein 1) (MPP1) KIF20B KRMP1 MPHOSPH1 cell division [GO:0051301]; microtubule-based movement [GO:0007018]; neural tube closure [GO:0001843]; neuron projection morphogenesis [GO:0048812]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cytokinesis [GO:0032467]; positive regulation of intracellular protein transport [GO:0090316]; positive regulation of mitotic cytokinetic process [GO:1903438]; positive regulation of neuron migration [GO:2001224]; protein localization to microtubule [GO:0035372]; regulation of cell cycle [GO:0051726]; regulation of establishment of cell polarity [GO:2000114]; regulation of mitotic nuclear division [GO:0007088] -Q96R06 reviewed SPAG5_HUMAN Sperm-associated antigen 5 (Astrin) (Deepest) (Mitotic spindle-associated protein p126) (MAP126) SPAG5 cell division [GO:0051301]; chromosome segregation [GO:0007059]; establishment of spindle orientation [GO:0051294]; mitotic sister chromatid segregation [GO:0000070]; positive regulation of intracellular transport [GO:0032388]; positive regulation of spindle assembly [GO:1905832]; protein localization to centrosome [GO:0071539]; regulation of attachment of spindle microtubules to kinetochore [GO:0051988]; regulation of metaphase plate congression [GO:0090235]; spindle organization [GO:0007051] -Q96RF0 reviewed SNX18_HUMAN Sorting nexin-18 (SH3 and PX domain-containing protein 3B) SNX18 SH3PXD3B cleavage furrow formation [GO:0036089]; endocytosis [GO:0006897]; endosomal transport [GO:0016197]; mitotic cytokinesis [GO:0000281]; plasma membrane tubulation [GO:0097320]; positive regulation of autophagosome assembly [GO:2000786]; positive regulation of GTPase activity [GO:0043547]; protein transport [GO:0015031] -Q96RK4 reviewed BBS4_HUMAN Bardet-Biedl syndrome 4 protein BBS4 adult behavior [GO:0030534]; brain morphogenesis [GO:0048854]; centrosome cycle [GO:0007098]; cerebral cortex development [GO:0021987]; cilium assembly [GO:0060271]; dendrite development [GO:0016358]; face development [GO:0060324]; fat cell differentiation [GO:0045444]; fat pad development [GO:0060613]; gene expression [GO:0010467]; heart looping [GO:0001947]; hippocampus development [GO:0021766]; intracellular transport [GO:0046907]; maintenance of protein location in nucleus [GO:0051457]; melanosome transport [GO:0032402]; microtubule anchoring at centrosome [GO:0034454]; microtubule cytoskeleton organization [GO:0000226]; mitotic cytokinesis [GO:0000281]; negative regulation of actin filament polymerization [GO:0030837]; negative regulation of appetite by leptin-mediated signaling pathway [GO:0038108]; negative regulation of gene expression [GO:0010629]; negative regulation of systemic arterial blood pressure [GO:0003085]; neural tube closure [GO:0001843]; neuron migration [GO:0001764]; non-motile cilium assembly [GO:1905515]; photoreceptor cell maintenance [GO:0045494]; photoreceptor cell outer segment organization [GO:0035845]; positive regulation of cilium assembly [GO:0045724]; positive regulation of multicellular organism growth [GO:0040018]; protein localization to centrosome [GO:0071539]; protein localization to cilium [GO:0061512]; protein localization to organelle [GO:0033365]; protein localization to photoreceptor outer segment [GO:1903546]; protein transport [GO:0015031]; regulation of cilium beat frequency involved in ciliary motility [GO:0060296]; regulation of cytokinesis [GO:0032465]; regulation of lipid metabolic process [GO:0019216]; regulation of non-motile cilium assembly [GO:1902855]; regulation of stress fiber assembly [GO:0051492]; retina homeostasis [GO:0001895]; retinal rod cell development [GO:0046548]; sensory perception of smell [GO:0007608]; sensory processing [GO:0050893]; social behavior [GO:0035176]; spermatid development [GO:0007286]; striatum development [GO:0021756]; ventricular system development [GO:0021591]; visual perception [GO:0007601] -Q96RW7 reviewed HMCN1_HUMAN Hemicentin-1 (Fibulin-6) (FIBL-6) HMCN1 FIBL6 actin cytoskeleton organization [GO:0030036]; basement membrane organization [GO:0071711]; cell division [GO:0051301]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; response to bacterium [GO:0009617]; visual perception [GO:0007601] -Q96T68 reviewed SETB2_HUMAN Histone-lysine N-methyltransferase SETDB2 (EC 2.1.1.366) (Chronic lymphocytic leukemia deletion region gene 8 protein) (Lysine N-methyltransferase 1F) (SET domain bifurcated 2) SETDB2 C13orf4 CLLD8 KMT1F cell division [GO:0051301]; chromosome segregation [GO:0007059]; heart looping [GO:0001947]; heterochromatin organization [GO:0070828]; left/right axis specification [GO:0070986]; methylation [GO:0032259]; mitotic cell cycle [GO:0000278]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of gene expression [GO:0010629]; positive regulation of DNA methylation-dependent heterochromatin formation [GO:0090309] -Q99594 reviewed TEAD3_HUMAN Transcriptional enhancer factor TEF-5 (DTEF-1) (TEA domain family member 3) (TEAD-3) TEAD3 TEAD5 TEF5 asymmetric neuroblast division [GO:0055059]; embryonic organ development [GO:0048568]; female pregnancy [GO:0007565]; hippo signaling [GO:0035329]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357] -Q99661 reviewed KIF2C_HUMAN Kinesin-like protein KIF2C (Kinesin-like protein 6) (Mitotic centromere-associated kinesin) (MCAK) KIF2C KNSL6 attachment of mitotic spindle microtubules to kinetochore [GO:0051315]; cell division [GO:0051301]; establishment or maintenance of microtubule cytoskeleton polarity [GO:0030951]; metaphase chromosome alignment [GO:0051310]; microtubule depolymerization [GO:0007019]; microtubule-based movement [GO:0007018]; mitotic metaphase chromosome alignment [GO:0007080]; regulation of chromosome segregation [GO:0051983] -Q99708 reviewed CTIP_HUMAN DNA endonuclease RBBP8 (EC 3.1.-.-) (CtBP-interacting protein) (CtIP) (Retinoblastoma-binding protein 8) (RBBP-8) (Retinoblastoma-interacting protein and myosin-like) (RIM) (Sporulation in the absence of SPO11 protein 2 homolog) (SAE2) RBBP8 CTIP blastocyst hatching [GO:0001835]; cell division [GO:0051301]; DNA double-strand break processing involved in repair via single-strand annealing [GO:0010792]; DNA repair [GO:0006281]; DNA strand resection involved in replication fork processing [GO:0110025]; double-strand break repair via homologous recombination [GO:0000724]; G1/S transition of mitotic cell cycle [GO:0000082]; homologous recombination [GO:0035825]; meiotic cell cycle [GO:0051321]; mitotic G2/M transition checkpoint [GO:0044818]; regulation of transcription by RNA polymerase II [GO:0006357] -Q99719 reviewed SEPT5_HUMAN Septin-5 (Cell division control-related protein 1) (CDCrel-1) (Peanut-like protein 1) SEPTIN5 PNUTL1 SEPT5 adult behavior [GO:0030534]; cytoskeleton-dependent cytokinesis [GO:0061640]; protein localization [GO:0008104]; regulation of exocytosis [GO:0017157]; regulation of synaptic vesicle exocytosis [GO:2000300]; social behavior [GO:0035176]; synaptic vesicle targeting [GO:0016080] -Q99741 reviewed CDC6_HUMAN Cell division control protein 6 homolog (CDC6-related protein) (Cdc18-related protein) (HsCdc18) (p62(cdc6)) (HsCDC6) CDC6 CDC18L cell division [GO:0051301]; cellular response to angiotensin [GO:1904385]; cellular response to vasopressin [GO:1904117]; DNA replication checkpoint signaling [GO:0000076]; DNA replication initiation [GO:0006270]; mitotic DNA replication checkpoint signaling [GO:0033314]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of DNA replication [GO:0008156]; positive regulation of chromosome segregation [GO:0051984]; positive regulation of cytokinesis [GO:0032467]; positive regulation of fibroblast proliferation [GO:0048146]; regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0000079]; regulation of mitotic metaphase/anaphase transition [GO:0030071]; traversing start control point of mitotic cell cycle [GO:0007089] -Q99816 reviewed TS101_HUMAN Tumor susceptibility gene 101 protein (ESCRT-I complex subunit TSG101) TSG101 autophagosome maturation [GO:0097352]; cell division [GO:0051301]; endosome to lysosome transport [GO:0008333]; exosomal secretion [GO:1990182]; extracellular transport [GO:0006858]; keratinocyte differentiation [GO:0030216]; macroautophagy [GO:0016236]; membrane fission [GO:0090148]; multivesicular body assembly [GO:0036258]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of epidermal growth factor receptor signaling pathway [GO:0042059]; negative regulation of epidermal growth factor-activated receptor activity [GO:0007175]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of exosomal secretion [GO:1903543]; positive regulation of ubiquitin-dependent endocytosis [GO:2000397]; positive regulation of viral budding via host ESCRT complex [GO:1903774]; protein modification process [GO:0036211]; protein transport to vacuole involved in ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043328]; regulation of cell cycle [GO:0051726]; regulation of cell growth [GO:0001558]; regulation of extracellular exosome assembly [GO:1903551]; regulation of MAP kinase activity [GO:0043405]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding [GO:0046755]; viral budding via host ESCRT complex [GO:0039702]; viral release from host cell [GO:0019076] -Q99828 reviewed CIB1_HUMAN Calcium and integrin-binding protein 1 (CIB) (Calcium- and integrin-binding protein) (CIBP) (Calmyrin) (DNA-PKcs-interacting protein) (Kinase-interacting protein) (KIP) (SNK-interacting protein 2-28) (SIP2-28) CIB1 CIB KIP PRKDCIP angiogenesis [GO:0001525]; apoptotic process [GO:0006915]; cell adhesion [GO:0007155]; cell division [GO:0051301]; cellular response to growth factor stimulus [GO:0071363]; cellular response to nerve growth factor stimulus [GO:1990090]; cellular response to tumor necrosis factor [GO:0071356]; cytoplasmic microtubule organization [GO:0031122]; DNA damage response [GO:0006974]; double-strand break repair [GO:0006302]; endomitotic cell cycle [GO:0007113]; extrinsic apoptotic signaling pathway [GO:0097191]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of megakaryocyte differentiation [GO:0045653]; negative regulation of microtubule depolymerization [GO:0007026]; negative regulation of neuron projection development [GO:0010977]; negative regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051898]; negative regulation of protein phosphorylation [GO:0001933]; platelet formation [GO:0030220]; positive regulation of calcineurin-NFAT signaling cascade [GO:0070886]; positive regulation of catalytic activity [GO:0043085]; positive regulation of cell adhesion mediated by integrin [GO:0033630]; positive regulation of cell growth [GO:0030307]; positive regulation of cell migration [GO:0030335]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cell-matrix adhesion [GO:0001954]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of male germ cell proliferation [GO:2000256]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of protein localization to plasma membrane [GO:1903078]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of protein serine/threonine kinase activity [GO:0071902]; positive regulation of protein targeting to membrane [GO:0090314]; positive regulation of substrate adhesion-dependent cell spreading [GO:1900026]; regulation of cell division [GO:0051302]; regulation of cell population proliferation [GO:0042127]; response to ischemia [GO:0002931]; spermatid development [GO:0007286]; thrombopoietin-mediated signaling pathway [GO:0038163] -Q99871 reviewed HAUS7_HUMAN HAUS augmin-like complex subunit 7 (26S proteasome-associated UCH37-interacting protein 1) (UCHL5-interacting protein) (X-linked protein STS1769) HAUS7 UCHL5IP UIP1 cell division [GO:0051301]; centrosome cycle [GO:0007098]; regulation of microtubule nucleation [GO:0010968]; spindle assembly [GO:0051225] -Q99986 reviewed VRK1_HUMAN Serine/threonine-protein kinase VRK1 (EC 2.7.11.1) (Vaccinia-related kinase 1) VRK1 Cajal body organization [GO:0030576]; cell division [GO:0051301]; chromatin remodeling [GO:0006338]; DNA damage response [GO:0006974]; Golgi disassembly [GO:0090166]; mitotic nuclear membrane disassembly [GO:0007077]; neuron projection development [GO:0031175]; positive regulation of protein localization to chromatin [GO:0120187]; protein autophosphorylation [GO:0046777]; protein phosphorylation [GO:0006468]; regulation of neuron migration [GO:2001222]; signal transduction [GO:0007165] -Q9BPX3 reviewed CND3_HUMAN Condensin complex subunit 3 (Chromosome-associated protein G) (Condensin subunit CAP-G) (hCAP-G) (Melanoma antigen NY-MEL-3) (Non-SMC condensin I complex subunit G) (XCAP-G homolog) NCAPG CAPG NYMEL3 cell division [GO:0051301]; mitotic chromosome condensation [GO:0007076]; positive regulation of chromosome condensation [GO:1905821]; positive regulation of chromosome segregation [GO:0051984]; positive regulation of chromosome separation [GO:1905820] -Q9BQE3 reviewed TBA1C_HUMAN Tubulin alpha-1C chain (EC 3.6.5.-) (Alpha-tubulin 6) (Tubulin alpha-6 chain) [Cleaved into: Detyrosinated tubulin alpha-1C chain] TUBA1C TUBA6 cell division [GO:0051301]; cytoskeleton-dependent intracellular transport [GO:0030705]; microtubule cytoskeleton organization [GO:0000226]; microtubule-based process [GO:0007017]; mitotic cell cycle [GO:0000278] -Q9BRK4 reviewed LZTS2_HUMAN Leucine zipper putative tumor suppressor 2 (hLZTS2) (Protein LAPSER1) LZTS2 KIAA1813 LAPSER1 fibroblast proliferation [GO:0048144]; microtubule severing [GO:0051013]; mitotic cytokinesis [GO:0000281]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of fibroblast proliferation [GO:0048147]; negative regulation of protein localization to nucleus [GO:1900181]; nuclear export [GO:0051168]; primary ureteric bud growth [GO:0060682]; spindle midzone assembly [GO:0051255]; ureter morphogenesis [GO:0072197]; Wnt signaling pathway [GO:0016055] -Q9BRX2 reviewed PELO_HUMAN Protein pelota homolog (hPelota) (Protein Dom34 homolog) PELO CGI-17 cell division [GO:0051301]; chromosome organization [GO:0051276]; endoderm development [GO:0007492]; inner cell mass cell proliferation [GO:0001833]; mesenchymal to epithelial transition [GO:0060231]; nonfunctional rRNA decay [GO:0070651]; nuclear-transcribed mRNA catabolic process, no-go decay [GO:0070966]; nuclear-transcribed mRNA catabolic process, non-stop decay [GO:0070481]; positive regulation of BMP signaling pathway [GO:0030513]; regulation of translation [GO:0006417]; rescue of stalled ribosome [GO:0072344]; ribosome disassembly [GO:0032790]; RNA surveillance [GO:0071025]; stem cell population maintenance [GO:0019827] -Q9BSJ6 reviewed PIMRE_HUMAN Protein PIMREG (CALM-interactor expressed in thymus and spleen) (PICALM-interacting mitotic regulator) (Regulator of chromosome segregation protein 1) PIMREG CATS FAM64A RCS1 cell division [GO:0051301] -Q9BST9 reviewed RTKN_HUMAN Rhotekin RTKN RTKN1 actomyosin contractile ring assembly [GO:0000915]; apoptotic process [GO:0006915]; mitotic cytokinesis [GO:0000281]; regulation of apoptotic process [GO:0042981]; Rho protein signal transduction [GO:0007266]; septin ring organization [GO:0031106]; signal transduction [GO:0007165] -Q9BT25 reviewed HAUS8_HUMAN HAUS augmin-like complex subunit 8 (HEC1/NDC80-interacting centrosome-associated protein 1) (Sarcoma antigen NY-SAR-48) HAUS8 HICE1 cell division [GO:0051301]; centrosome cycle [GO:0007098]; regulation of microtubule nucleation [GO:0010968]; spindle assembly [GO:0051225] -Q9BTE3 reviewed MCMBP_HUMAN Mini-chromosome maintenance complex-binding protein (MCM-BP) (MCM-binding protein) MCMBP C10orf119 cell division [GO:0051301]; DNA-templated DNA replication [GO:0006261]; sister chromatid cohesion [GO:0007062] -Q9BTV5 reviewed FSD1_HUMAN Fibronectin type III and SPRY domain-containing protein 1 (MID1-related protein 1) (Microtubule-associated protein GLFND) FSD1 GLFND MIR1 VLP27 cell division [GO:0051301]; cytoplasmic microtubule organization [GO:0031122]; regulation of cell division [GO:0051302]; regulation of cytokinesis [GO:0032465]; regulation of mitotic spindle organization [GO:0060236] -Q9BVA0 reviewed KTNB1_HUMAN Katanin p80 WD40 repeat-containing subunit B1 (Katanin p80 subunit B1) (p80 katanin) KATNB1 cell division [GO:0051301]; cytoplasmic microtubule organization [GO:0031122]; microtubule depolymerization [GO:0007019]; microtubule severing [GO:0051013]; mitotic chromosome movement towards spindle pole [GO:0007079]; negative regulation of microtubule depolymerization [GO:0007026]; positive regulation of apoptotic process [GO:0043065]; positive regulation of microtubule depolymerization [GO:0031117]; positive regulation of neuron projection development [GO:0010976]; protein targeting [GO:0006605] -Q9BVP2 reviewed GNL3_HUMAN Guanine nucleotide-binding protein-like 3 (E2-induced gene 3 protein) (Novel nucleolar protein 47) (NNP47) (Nucleolar GTP-binding protein 3) (Nucleostemin) GNL3 E2IG3 NS positive regulation of miRNA transcription [GO:1902895]; positive regulation of protein localization to chromosome, telomeric region [GO:1904816]; positive regulation of protein sumoylation [GO:0033235]; positive regulation of telomere maintenance [GO:0032206]; regulation of cell population proliferation [GO:0042127]; stem cell division [GO:0017145]; stem cell population maintenance [GO:0019827] -Q9BVW5 reviewed TIPIN_HUMAN TIMELESS-interacting protein TIPIN cell cycle phase transition [GO:0044770]; cell division [GO:0051301]; DNA replication checkpoint signaling [GO:0000076]; mitotic intra-S DNA damage checkpoint signaling [GO:0031573]; positive regulation of cell population proliferation [GO:0008284]; regulation of nuclear cell cycle DNA replication [GO:0033262]; replication fork arrest [GO:0043111]; replication fork processing [GO:0031297]; response to UV [GO:0009411] -Q9BW19 reviewed KIFC1_HUMAN Kinesin-like protein KIFC1 (Kinesin-like protein 2) (Kinesin-related protein HSET) KIFC1 HSET KNSL2 cell division [GO:0051301]; microtubule-based movement [GO:0007018]; mitotic metaphase chromosome alignment [GO:0007080]; mitotic sister chromatid segregation [GO:0000070]; mitotic spindle assembly [GO:0090307] -Q9BW66 reviewed CINP_HUMAN Cyclin-dependent kinase 2-interacting protein (CDK2-interacting protein) CINP cell division [GO:0051301]; DNA repair [GO:0006281]; DNA replication [GO:0006260]; ribosomal large subunit biogenesis [GO:0042273] -Q9BX26 reviewed SYCP2_HUMAN Synaptonemal complex protein 2 (SCP-2) (Synaptonemal complex lateral element protein) (hsSCP2) SYCP2 SCP2 apoptotic process [GO:0006915]; cell division [GO:0051301]; ectopic germ cell programmed cell death [GO:0035234]; female meiotic nuclear division [GO:0007143]; fertilization [GO:0009566]; male genitalia morphogenesis [GO:0048808]; male meiotic nuclear division [GO:0007140]; negative regulation of apoptotic process [GO:0043066]; negative regulation of developmental process [GO:0051093]; negative regulation of reproductive process [GO:2000242]; synaptonemal complex assembly [GO:0007130] -Q9BX63 reviewed FANCJ_HUMAN Fanconi anemia group J protein (EC 5.6.2.3) (BRCA1-associated C-terminal helicase 1) (BRCA1-interacting protein C-terminal helicase 1) (BRCA1-interacting protein 1) (DNA 5'-3' helicase FANCJ) BRIP1 BACH1 FANCJ cellular response to angiotensin [GO:1904385]; cellular response to hypoxia [GO:0071456]; cellular response to vitamin [GO:0071295]; chiasma assembly [GO:0051026]; DNA damage checkpoint signaling [GO:0000077]; DNA repair [GO:0006281]; double-strand break repair [GO:0006302]; double-strand break repair involved in meiotic recombination [GO:1990918]; homologous recombination [GO:0035825]; meiotic DNA double-strand break processing involved in reciprocal meiotic recombination [GO:0010705]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of gene expression [GO:0010629]; nucleotide-excision repair [GO:0006289]; protein-DNA covalent cross-linking repair [GO:0106300]; regulation of transcription by RNA polymerase II [GO:0006357]; response to toxic substance [GO:0009636]; seminiferous tubule development [GO:0072520]; spermatid development [GO:0007286]; spermatogonial cell division [GO:0007284] -Q9BXF3 reviewed CECR2_HUMAN Chromatin remodeling regulator CECR2 (Cat eye syndrome critical region protein 2) CECR2 KIAA1740 apoptotic DNA fragmentation [GO:0006309]; chromatin remodeling [GO:0006338]; cochlea development [GO:0090102]; cytoskeleton organization [GO:0007010]; cytoskeleton-dependent cytokinesis [GO:0061640]; execution phase of apoptosis [GO:0097194]; inner ear receptor cell stereocilium organization [GO:0060122]; neural fold formation [GO:0001842]; neural tube closure [GO:0001843]; single fertilization [GO:0007338]; vesicle-mediated transport [GO:0016192] -Q9BXS6 reviewed NUSAP_HUMAN Nucleolar and spindle-associated protein 1 (NuSAP) NUSAP1 ANKT BM-037 PRO0310 establishment of mitotic spindle localization [GO:0040001]; mitotic chromosome condensation [GO:0007076]; mitotic cytokinesis [GO:0000281]; mitotic sister chromatid segregation [GO:0000070]; positive regulation of mitotic nuclear division [GO:0045840] -Q9BY43 reviewed CHM4A_HUMAN Charged multivesicular body protein 4a (Chromatin-modifying protein 4a) (CHMP4a) (SNF7 homolog associated with Alix-2) (SNF7-1) (hSnf-1) (Vacuolar protein sorting-associated protein 32-1) (Vps32-1) (hVps32-1) CHMP4A C14orf123 SHAX2 CDA04 HSPC134 autophagosome maturation [GO:0097352]; autophagy [GO:0006914]; late endosome to lysosome transport [GO:1902774]; late endosome to vacuole transport via multivesicular body sorting pathway [GO:0032511]; macroautophagy [GO:0016236]; membrane fission [GO:0090148]; membrane invagination [GO:0010324]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body assembly [GO:0036258]; multivesicular body sorting pathway [GO:0071985]; multivesicular body-lysosome fusion [GO:0061763]; nervous system process [GO:0050877]; nuclear membrane reassembly [GO:0031468]; nucleus organization [GO:0006997]; plasma membrane repair [GO:0001778]; plasma membrane tubulation [GO:0097320]; post-translational protein targeting to endoplasmic reticulum membrane [GO:0006620]; protein polymerization [GO:0051258]; protein transport [GO:0015031]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; vesicle budding from membrane [GO:0006900]; vesicle fusion with vacuole [GO:0051469]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -Q9BYG4 reviewed PAR6G_HUMAN Partitioning defective 6 homolog gamma (PAR-6 gamma) (PAR6D) PARD6G PAR6G cell division [GO:0051301]; centrosome cycle [GO:0007098]; establishment or maintenance of cell polarity [GO:0007163]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; regulation of cellular localization [GO:0060341] -Q9BYG5 reviewed PAR6B_HUMAN Partitioning defective 6 homolog beta (PAR-6 beta) (PAR-6B) PARD6B PAR6B axonogenesis [GO:0007409]; cell division [GO:0051301]; cell-cell junction assembly [GO:0007043]; centrosome cycle [GO:0007098]; establishment or maintenance of cell polarity [GO:0007163]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; protein-containing complex assembly [GO:0065003]; regulation of cell migration [GO:0030334]; regulation of cellular localization [GO:0060341] -Q9BZD4 reviewed NUF2_HUMAN Kinetochore protein Nuf2 (hNuf2) (hNuf2R) (hsNuf2) (Cell division cycle-associated protein 1) NUF2 CDCA1 NUF2R attachment of mitotic spindle microtubules to kinetochore [GO:0051315]; attachment of spindle microtubules to kinetochore [GO:0008608]; cell division [GO:0051301]; chromosome segregation [GO:0007059]; kinetochore organization [GO:0051383]; meiotic chromosome segregation [GO:0045132]; mitotic spindle assembly checkpoint signaling [GO:0007094]; mitotic spindle organization [GO:0007052] -Q9BZQ2 reviewed SHP1L_HUMAN Testicular spindle-associated protein SHCBP1L (SHC SH2 domain-binding protein 1-like protein) SHCBP1L C1orf14 cell differentiation [GO:0030154]; male meiosis cytokinesis [GO:0007112]; positive regulation of chromosome organization [GO:2001252]; spermatogenesis [GO:0007283] -Q9BZX4 reviewed ROP1B_HUMAN Ropporin-1B (Rhophilin-associated protein 1B) ROPN1B acrosome reaction [GO:0007340]; cell-cell adhesion [GO:0098609]; cilium organization [GO:0044782]; cytoskeleton-dependent cytokinesis [GO:0061640]; flagellated sperm motility [GO:0030317]; fusion of sperm to egg plasma membrane involved in single fertilization [GO:0007342]; protein localization to cilium [GO:0061512]; regulation of protein phosphorylation [GO:0001932]; Rho protein signal transduction [GO:0007266]; sperm capacitation [GO:0048240]; spermatogenesis [GO:0007283] -Q9GZV5 reviewed WWTR1_HUMAN WW domain-containing transcription regulator protein 1 (Transcriptional coactivator with PDZ-binding motif) WWTR1 TAZ cilium assembly [GO:0060271]; glomerulus development [GO:0032835]; heart process [GO:0003015]; hippo signaling [GO:0035329]; kidney morphogenesis [GO:0060993]; mesenchymal cell differentiation [GO:0048762]; multicellular organism growth [GO:0035264]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of protein kinase activity [GO:0006469]; negative regulation of protein phosphorylation [GO:0001933]; negative regulation of transcription by RNA polymerase II [GO:0000122]; osteoblast differentiation [GO:0001649]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of protein localization to nucleus [GO:1900182]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein ubiquitination [GO:0016567]; regulation of DNA-templated transcription [GO:0006355]; regulation of metanephric nephron tubule epithelial cell differentiation [GO:0072307]; SCF-dependent proteasomal ubiquitin-dependent protein catabolic process [GO:0031146]; SMAD protein signal transduction [GO:0060395]; stem cell division [GO:0017145]; tissue homeostasis [GO:0001894] -Q9H081 reviewed MIS12_HUMAN Protein MIS12 homolog MIS12 attachment of mitotic spindle microtubules to kinetochore [GO:0051315]; attachment of spindle microtubules to kinetochore [GO:0008608]; cell division [GO:0051301]; chromosome segregation [GO:0007059]; kinetochore assembly [GO:0051382]; mitotic sister chromatid segregation [GO:0000070] -Q9H0E7 reviewed UBP44_HUMAN Ubiquitin carboxyl-terminal hydrolase 44 (EC 3.4.19.12) (Deubiquitinating enzyme 44) (Ubiquitin thioesterase 44) (Ubiquitin-specific-processing protease 44) USP44 antiviral innate immune response [GO:0140374]; cell division [GO:0051301]; chromosome segregation [GO:0007059]; negative regulation of mitotic metaphase/anaphase transition [GO:0045841]; negative regulation of ubiquitin protein ligase activity [GO:1904667]; nucleotide-excision repair [GO:0006289]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; protein deubiquitination [GO:0016579]; regulation of mitotic cell cycle spindle assembly checkpoint [GO:0090266]; regulatory T cell differentiation [GO:0045066] -Q9H0H5 reviewed RGAP1_HUMAN Rac GTPase-activating protein 1 (Male germ cell RacGap) (MgcRacGAP) (Protein CYK4 homolog) (CYK4) (HsCYK-4) RACGAP1 KIAA1478 MGCRACGAP actomyosin contractile ring assembly [GO:0000915]; erythrocyte differentiation [GO:0030218]; mitotic cytokinesis [GO:0000281]; mitotic spindle midzone assembly [GO:0051256]; monoatomic ion transport [GO:0006811]; neuroblast proliferation [GO:0007405]; positive regulation of cytokinesis [GO:0032467]; regulation of attachment of spindle microtubules to kinetochore [GO:0051988]; regulation of embryonic development [GO:0045995]; regulation of small GTPase mediated signal transduction [GO:0051056]; Rho protein signal transduction [GO:0007266]; spermatogenesis [GO:0007283]; sulfate transport [GO:0008272] -Q9H160 reviewed ING2_HUMAN Inhibitor of growth protein 2 (Inhibitor of growth 1-like protein) (ING1Lp) (p32) (p33ING2) ING2 ING1L DNA damage response [GO:0006974]; flagellated sperm motility [GO:0030317]; male germ-line stem cell asymmetric division [GO:0048133]; male meiosis I [GO:0007141]; negative regulation of cell migration [GO:0030336]; negative regulation of gene expression, epigenetic [GO:0045814]; negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:1902166]; negative regulation of stem cell population maintenance [GO:1902455]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of stem cell population maintenance [GO:1902459]; positive regulation of transforming growth factor beta receptor signaling pathway [GO:0030511]; regulation of cellular senescence [GO:2000772]; regulation of DNA-templated transcription [GO:0006355]; seminiferous tubule development [GO:0072520]; signal transduction [GO:0007165]; spermatid development [GO:0007286]; spermatogenesis [GO:0007283] -Q9H1A4 reviewed APC1_HUMAN Anaphase-promoting complex subunit 1 (APC1) (Cyclosome subunit 1) (Mitotic checkpoint regulator) (Testis-specific gene 24 protein) ANAPC1 TSG24 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; metaphase/anaphase transition of mitotic cell cycle [GO:0007091]; protein K11-linked ubiquitination [GO:0070979]; protein K48-linked ubiquitination [GO:0070936]; regulation of meiotic cell cycle [GO:0051445]; regulation of mitotic cell cycle [GO:0007346] -Q9H1H9 reviewed KI13A_HUMAN Kinesin-like protein KIF13A (Kinesin-like protein RBKIN) KIF13A RBKIN cell division [GO:0051301]; cytoskeleton-dependent intracellular transport [GO:0030705]; endosome to lysosome transport [GO:0008333]; Golgi to plasma membrane protein transport [GO:0043001]; intracellular protein transport [GO:0006886]; melanosome organization [GO:0032438]; microtubule-based movement [GO:0007018]; plus-end-directed vesicle transport along microtubule [GO:0072383]; regulation of cytokinesis [GO:0032465]; vesicle cargo loading [GO:0035459] -Q9H211 reviewed CDT1_HUMAN DNA replication factor Cdt1 (Double parked homolog) (DUP) CDT1 attachment of mitotic spindle microtubules to kinetochore [GO:0051315]; cell division [GO:0051301]; DNA replication checkpoint signaling [GO:0000076]; DNA replication preinitiation complex assembly [GO:0071163]; mitotic cell cycle [GO:0000278]; negative regulation of cell cycle [GO:0045786]; negative regulation of DNA-templated DNA replication [GO:2000104]; positive regulation of chromatin binding [GO:0035563]; positive regulation of DNA replication [GO:0045740]; positive regulation of DNA-templated DNA replication [GO:2000105]; regulation of DNA-templated DNA replication initiation [GO:0030174]; regulation of nuclear cell cycle DNA replication [GO:0033262]; response to sorbitol [GO:0072708] -Q9H2D6 reviewed TARA_HUMAN TRIO and F-actin-binding protein (Protein Tara) (TRF1-associated protein of 68 kDa) (Trio-associated repeat on actin) TRIOBP KIAA1662 TARA HRIHFB2122 actin modification [GO:0030047]; auditory receptor cell stereocilium organization [GO:0060088]; barbed-end actin filament capping [GO:0051016]; cell division [GO:0051301]; positive regulation of substrate adhesion-dependent cell spreading [GO:1900026]; sensory perception of sound [GO:0007605] -Q9H3D4 reviewed P63_HUMAN Tumor protein 63 (p63) (Chronic ulcerative stomatitis protein) (CUSP) (Keratinocyte transcription factor KET) (Transformation-related protein 63) (TP63) (Tumor protein p73-like) (p73L) (p40) (p51) TP63 KET P63 P73H P73L TP73L apoptotic process [GO:0006915]; cellular senescence [GO:0090398]; chromatin remodeling [GO:0006338]; cloacal septation [GO:0060197]; cranial skeletal system development [GO:1904888]; determination of adult lifespan [GO:0008340]; DNA damage response [GO:0006974]; ectoderm and mesoderm interaction [GO:0007499]; embryonic forelimb morphogenesis [GO:0035115]; embryonic hindlimb morphogenesis [GO:0035116]; epidermal cell division [GO:0010481]; epithelial cell development [GO:0002064]; establishment of planar polarity [GO:0001736]; establishment of skin barrier [GO:0061436]; female genitalia morphogenesis [GO:0048807]; hair follicle morphogenesis [GO:0031069]; intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:0042771]; keratinocyte differentiation [GO:0030216]; keratinocyte proliferation [GO:0043616]; negative regulation of cellular senescence [GO:2000773]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of intracellular estrogen receptor signaling pathway [GO:0033147]; negative regulation of keratinocyte differentiation [GO:0045617]; negative regulation of mesoderm development [GO:2000381]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron apoptotic process [GO:0051402]; Notch signaling pathway [GO:0007219]; odontogenesis of dentin-containing tooth [GO:0042475]; polarized epithelial cell differentiation [GO:0030859]; positive regulation of apoptotic signaling pathway [GO:2001235]; positive regulation of cell cycle G1/S phase transition [GO:1902808]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of fibroblast apoptotic process [GO:2000271]; positive regulation of keratinocyte proliferation [GO:0010838]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of somatic stem cell population maintenance [GO:1904674]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-anal tail morphogenesis [GO:0036342]; prostatic bud formation [GO:0060513]; protein tetramerization [GO:0051262]; proximal/distal pattern formation [GO:0009954]; regulation of epidermal cell division [GO:0010482]; regulation of transcription by RNA polymerase II [GO:0006357]; skeletal system development [GO:0001501]; skin morphogenesis [GO:0043589]; spermatogenesis [GO:0007283]; squamous basal epithelial stem cell differentiation involved in prostate gland acinus development [GO:0060529]; stem cell proliferation [GO:0072089]; sympathetic nervous system development [GO:0048485]; transcription by RNA polymerase II [GO:0006366] -Q9H410 reviewed DSN1_HUMAN Kinetochore-associated protein DSN1 homolog DSN1 C20orf172 MIS13 attachment of spindle microtubules to kinetochore [GO:0008608]; cell division [GO:0051301]; skeletal muscle satellite cell proliferation [GO:0014841] -Q9H444 reviewed CHM4B_HUMAN Charged multivesicular body protein 4b (Chromatin-modifying protein 4b) (CHMP4b) (SNF7 homolog associated with Alix 1) (SNF7-2) (hSnf7-2) (Vacuolar protein sorting-associated protein 32-2) (Vps32-2) (hVps32-2) CHMP4B C20orf178 SHAX1 autophagosome maturation [GO:0097352]; autophagy [GO:0006914]; exit from mitosis [GO:0010458]; late endosome to lysosome transport [GO:1902774]; late endosome to vacuole transport via multivesicular body sorting pathway [GO:0032511]; macroautophagy [GO:0016236]; maintenance of lens transparency [GO:0036438]; membrane fission [GO:0090148]; midbody abscission [GO:0061952]; mitotic cytokinesis [GO:0000281]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body assembly [GO:0036258]; multivesicular body sorting pathway [GO:0071985]; multivesicular body-lysosome fusion [GO:0061763]; nervous system process [GO:0050877]; nuclear membrane reassembly [GO:0031468]; nucleus organization [GO:0006997]; plasma membrane repair [GO:0001778]; post-translational protein targeting to endoplasmic reticulum membrane [GO:0006620]; protein polymerization [GO:0051258]; protein transport [GO:0015031]; regulation of autophagy [GO:0010506]; regulation of centrosome duplication [GO:0010824]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; ubiquitin-independent protein catabolic process via the multivesicular body sorting pathway [GO:0090611]; vesicle budding from membrane [GO:0006900]; vesicle fusion with vacuole [GO:0051469]; viral budding [GO:0046755]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -Q9H4H8 reviewed FA83D_HUMAN Protein FAM83D (Spindle protein CHICA) FAM83D C20orf129 cell division [GO:0051301]; cell migration [GO:0016477]; cell population proliferation [GO:0008283]; epithelial to mesenchymal transition [GO:0001837]; metaphase chromosome alignment [GO:0051310]; positive regulation of cell cycle G1/S phase transition [GO:1902808]; protein localization to mitotic spindle [GO:1902480]; regulation of ERK1 and ERK2 cascade [GO:0070372]; regulation of protein catabolic process [GO:0042176]; regulation of TOR signaling [GO:0032006]; signal transduction [GO:0007165] -Q9H6D7 reviewed HAUS4_HUMAN HAUS augmin-like complex subunit 4 HAUS4 C14orf94 cell division [GO:0051301]; centrosome cycle [GO:0007098]; regulation of microtubule nucleation [GO:0010968]; spindle assembly [GO:0051225] -Q9H6H4 reviewed REEP4_HUMAN Receptor expression-enhancing protein 4 REEP4 C8orf20 PP432 cell division [GO:0051301]; endoplasmic reticulum tubular network organization [GO:0071786]; mitotic nuclear membrane reassembly [GO:0007084]; nuclear envelope organization [GO:0006998] -Q9H7Z3 reviewed NRDE2_HUMAN Nuclear exosome regulator NRDE2 (Protein NRDE2 homolog) NRDE2 C14orf102 cell division [GO:0051301]; DNA damage response [GO:0006974]; mitotic cell cycle [GO:0000278]; mRNA processing [GO:0006397]; mRNA stabilization [GO:0048255]; negative regulation of RNA catabolic process [GO:1902369]; positive regulation of RNA export from nucleus [GO:0046833]; regulatory ncRNA-mediated heterochromatin formation [GO:0031048]; RNA splicing [GO:0008380] -Q9H8V3 reviewed ECT2_HUMAN Protein ECT2 (Epithelial cell-transforming sequence 2 oncogene) ECT2 activation of GTPase activity [GO:0090630]; activation of protein kinase activity [GO:0032147]; bicellular tight junction assembly [GO:0070830]; cell differentiation [GO:0030154]; cell morphogenesis [GO:0000902]; cellular response to calcium ion [GO:0071277]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to ionizing radiation [GO:0071479]; intracellular signal transduction [GO:0035556]; mitotic cytokinesis [GO:0000281]; nervous system development [GO:0007399]; positive regulation of apoptotic process [GO:0043065]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cytokinesis [GO:0032467]; positive regulation of GTPase activity [GO:0043547]; positive regulation of mitotic cytokinetic process [GO:1903438]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of protein import into nucleus [GO:0042307]; protein homooligomerization [GO:0051260]; protein transport [GO:0015031]; regulation of attachment of spindle microtubules to kinetochore [GO:0051988]; regulation of cytokinesis, actomyosin contractile ring assembly [GO:2000431]; regulation of protein kinase activity [GO:0045859]; regulation of small GTPase mediated signal transduction [GO:0051056] -Q9H900 reviewed ZWILC_HUMAN Protein zwilch homolog (hZwilch) ZWILCH cell division [GO:0051301]; mitotic spindle assembly checkpoint signaling [GO:0007094]; protein localization to kinetochore [GO:0034501]; regulation of attachment of spindle microtubules to kinetochore [GO:0051988] -Q9H981 reviewed ARP8_HUMAN Actin-related protein 8 (hArp8) (INO80 complex subunit N) ACTR8 ARP8 INO80N cell division [GO:0051301]; chromatin remodeling [GO:0006338]; DNA recombination [GO:0006310]; double-strand break repair [GO:0006302]; positive regulation of DNA repair [GO:0045739]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of telomere maintenance in response to DNA damage [GO:1904507]; regulation of cell cycle [GO:0051726]; regulation of chromosome organization [GO:0033044]; regulation of DNA repair [GO:0006282]; regulation of DNA replication [GO:0006275]; regulation of DNA strand elongation [GO:0060382]; regulation of DNA-templated transcription [GO:0006355]; regulation of embryonic development [GO:0045995]; telomere maintenance [GO:0000723] -Q9HBM1 reviewed SPC25_HUMAN Kinetochore protein Spc25 (hSpc25) SPC25 SPBC25 AD024 attachment of spindle microtubules to kinetochore [GO:0008608]; cell division [GO:0051301]; chromosome segregation [GO:0007059]; mitotic spindle assembly checkpoint signaling [GO:0007094]; mitotic spindle organization [GO:0007052] -Q9HC35 reviewed EMAL4_HUMAN Echinoderm microtubule-associated protein-like 4 (EMAP-4) (Restrictedly overexpressed proliferation-associated protein) (Ropp 120) EML4 C2orf2 EMAPL4 attachment of spindle microtubules to kinetochore [GO:0008608]; cell division [GO:0051301]; microtubule cytoskeleton organization [GO:0000226]; microtubule-based process [GO:0007017]; mitotic cell cycle [GO:0000278]; mitotic metaphase chromosome alignment [GO:0007080] -Q9HC77 reviewed CENPJ_HUMAN Centromere protein J (CENP-J) (Centrosomal P4.1-associated protein) (LAG-3-associated protein) (LYST-interacting protein 1) CENPJ CPAP LAP LIP1 astral microtubule nucleation [GO:0030954]; cell division [GO:0051301]; centriole elongation [GO:0061511]; centriole replication [GO:0007099]; cilium assembly [GO:0060271]; microtubule nucleation [GO:0007020]; microtubule polymerization [GO:0046785]; motile cilium assembly [GO:0044458]; non-motile cilium assembly [GO:1905515]; positive regulation of centriole elongation [GO:1903724]; positive regulation of centriole replication [GO:0046601]; positive regulation of establishment of protein localization [GO:1904951]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of non-motile cilium assembly [GO:1902857]; positive regulation of receptor signaling pathway via JAK-STAT [GO:0046427]; positive regulation of spindle assembly [GO:1905832]; regulation of centriole replication [GO:0046599]; regulation of mitotic spindle organization [GO:0060236]; smoothened signaling pathway [GO:0007224] -Q9HC98 reviewed NEK6_HUMAN Serine/threonine-protein kinase Nek6 (EC 2.7.11.34) (Never in mitosis A-related kinase 6) (NimA-related protein kinase 6) (Protein kinase SID6-1512) NEK6 apoptotic process [GO:0006915]; cell division [GO:0051301]; chromosome segregation [GO:0007059]; mitotic nuclear membrane disassembly [GO:0007077]; mitotic spindle organization [GO:0007052]; peptidyl-serine phosphorylation [GO:0018105]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; protein autophosphorylation [GO:0046777]; protein phosphorylation [GO:0006468]; regulation of cellular senescence [GO:2000772]; regulation of mitotic cell cycle [GO:0007346]; regulation of mitotic metaphase/anaphase transition [GO:0030071]; spindle assembly [GO:0051225] -Q9HD42 reviewed CHM1A_HUMAN Charged multivesicular body protein 1a (Chromatin-modifying protein 1a) (CHMP1a) (Vacuolar protein sorting-associated protein 46-1) (Vps46-1) (hVps46-1) CHMP1A CHMP1 KIAA0047 PCOLN3 PRSM1 autophagosome maturation [GO:0097352]; autophagy [GO:0006914]; cell division [GO:0051301]; endosome transport via multivesicular body sorting pathway [GO:0032509]; ESCRT III complex disassembly [GO:1904903]; late endosome to lysosome transport [GO:1902774]; late endosome to vacuole transport [GO:0045324]; membrane fission [GO:0090148]; midbody abscission [GO:0061952]; mitotic chromosome condensation [GO:0007076]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body assembly [GO:0036258]; multivesicular body sorting pathway [GO:0071985]; multivesicular body-lysosome fusion [GO:0061763]; negative regulation of gene expression [GO:0010629]; nuclear membrane reassembly [GO:0031468]; nucleus organization [GO:0006997]; plasma membrane repair [GO:0001778]; protein transport [GO:0015031]; regulation of centrosome duplication [GO:0010824]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; vesicle fusion with vacuole [GO:0051469]; vesicle-mediated transport [GO:0016192]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -Q9NPB6 reviewed PAR6A_HUMAN Partitioning defective 6 homolog alpha (PAR-6) (PAR-6 alpha) (PAR-6A) (PAR6C) (Tax interaction protein 40) (TIP-40) PARD6A PAR6A cell division [GO:0051301]; cell-cell junction maintenance [GO:0045217]; centrosome cycle [GO:0007098]; establishment or maintenance of cell polarity [GO:0007163]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; negative regulation of protein phosphorylation [GO:0001933]; positive regulation of protein localization to centrosome [GO:1904781]; positive regulation of protein secretion [GO:0050714]; regulation of cellular localization [GO:0060341]; viral process [GO:0016032] -Q9NQ86 reviewed TRI36_HUMAN E3 ubiquitin-protein ligase TRIM36 (EC 2.3.2.27) (RING finger protein 98) (RING-type E3 ubiquitin transferase TRIM36) (Tripartite motif-containing protein 36) (Zinc-binding protein Rbcc728) TRIM36 RBCC728 RNF98 acrosome reaction [GO:0007340]; mitotic cytokinesis [GO:0000281]; regulation of cell cycle [GO:0051726]; regulation of microtubule cytoskeleton organization [GO:0070507]; spindle organization [GO:0007051] -Q9NQR1 reviewed KMT5A_HUMAN N-lysine methyltransferase KMT5A (EC 2.1.1.-) (H4-K20-HMTase KMT5A) (Histone-lysine N-methyltransferase KMT5A) (EC 2.1.1.361) (Lysine N-methyltransferase 5A) (Lysine-specific methylase 5A) (PR/SET domain-containing protein 07) (PR-Set7) (PR/SET07) (SET domain-containing protein 8) KMT5A PRSET7 SET07 SET8 SETD8 cell division [GO:0051301]; mitotic chromosome condensation [GO:0007076]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of double-strand break repair via homologous recombination [GO:2000042]; negative regulation of transcription by RNA polymerase II [GO:0000122]; peptidyl-lysine monomethylation [GO:0018026]; regulation of DNA damage response, signal transduction by p53 class mediator [GO:0043516]; regulation of signal transduction by p53 class mediator [GO:1901796]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9NQS7 reviewed INCE_HUMAN Inner centromere protein INCENP chromosome segregation [GO:0007059]; meiotic spindle midzone assembly [GO:0051257]; metaphase chromosome alignment [GO:0051310]; mitotic cell cycle [GO:0000278]; mitotic cytokinesis [GO:0000281]; mitotic spindle assembly [GO:0090307]; mitotic spindle midzone assembly [GO:0051256]; positive regulation of attachment of mitotic spindle microtubules to kinetochore [GO:1902425]; positive regulation of mitotic cell cycle spindle assembly checkpoint [GO:0090267]; positive regulation of mitotic cytokinesis [GO:1903490]; positive regulation of mitotic sister chromatid separation [GO:1901970] -Q9NQW6 reviewed ANLN_HUMAN Anillin ANLN actomyosin contractile ring assembly [GO:0000915]; hematopoietic progenitor cell differentiation [GO:0002244]; mitotic cytokinesis [GO:0000281]; podocyte cell migration [GO:0090521]; positive regulation of bleb assembly [GO:1904172]; regulation of exit from mitosis [GO:0007096]; septin ring assembly [GO:0000921]; septin ring organization [GO:0031106] -Q9NQY0 reviewed BIN3_HUMAN Bridging integrator 3 BIN3 actin cortical patch localization [GO:0051666]; actin filament organization [GO:0007015]; cytoskeleton-dependent cytokinesis [GO:0061640]; division septum assembly [GO:0000917]; endocytosis [GO:0006897]; myoblast migration involved in skeletal muscle regeneration [GO:0014839]; plasma membrane tubulation [GO:0097320]; protein localization [GO:0008104]; regulation of lamellipodium assembly [GO:0010591]; skeletal muscle fiber development [GO:0048741]; unidimensional cell growth [GO:0009826] -Q9NR09 reviewed BIRC6_HUMAN Baculoviral IAP repeat-containing protein 6 (EC 2.3.2.27) (BIR repeat-containing ubiquitin-conjugating enzyme) (BRUCE) (RING-type E3 ubiquitin transferase BIRC6) (Ubiquitin-conjugating BIR domain enzyme apollon) (APOLLON) BIRC6 KIAA1289 apoptotic process [GO:0006915]; cell division [GO:0051301]; cell population proliferation [GO:0008283]; labyrinthine layer development [GO:0060711]; negative regulation of apoptotic process [GO:0043066]; negative regulation of extrinsic apoptotic signaling pathway [GO:2001237]; positive regulation of cell population proliferation [GO:0008284]; protein phosphorylation [GO:0006468]; protein ubiquitination [GO:0016567]; regulation of cell population proliferation [GO:0042127]; regulation of cytokinesis [GO:0032465]; spongiotrophoblast layer development [GO:0060712] -Q9NRM7 reviewed LATS2_HUMAN Serine/threonine-protein kinase LATS2 (EC 2.7.11.1) (Kinase phosphorylated during mitosis protein) (Large tumor suppressor homolog 2) (Serine/threonine-protein kinase kpm) (Warts-like kinase) LATS2 KPM canonical Wnt signaling pathway [GO:0060070]; cell division [GO:0051301]; G1/S transition of mitotic cell cycle [GO:0000082]; hippo signaling [GO:0035329]; hormone-mediated signaling pathway [GO:0009755]; inner cell mass cell fate commitment [GO:0001827]; inner cell mass cellular morphogenesis [GO:0001828]; intracellular signal transduction [GO:0035556]; keratinocyte differentiation [GO:0030216]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0045736]; negative regulation of protein localization to nucleus [GO:1900181]; positive regulation of apoptotic process [GO:0043065]; protein localization [GO:0008104]; protein phosphorylation [GO:0006468]; regulation of organ growth [GO:0046620]; regulation of transforming growth factor beta receptor signaling pathway [GO:0017015] -Q9NRZ9 reviewed HELLS_HUMAN Lymphoid-specific helicase (EC 3.6.4.-) (Proliferation-associated SNF2-like protein) (SWI/SNF2-related matrix-associated actin-dependent regulator of chromatin subfamily A member 6) HELLS PASG SMARCA6 Nbla10143 apoptotic process [GO:0006915]; cell division [GO:0051301]; cellular response to leukemia inhibitory factor [GO:1990830]; DNA methylation-dependent heterochromatin formation [GO:0006346]; kidney development [GO:0001822]; lymphocyte proliferation [GO:0046651]; negative regulation of gene expression via chromosomal CpG island methylation [GO:0044027]; negative regulation of intrinsic apoptotic signaling pathway [GO:2001243]; pericentric heterochromatin formation [GO:0031508]; urogenital system development [GO:0001655] -Q9NTI5 reviewed PDS5B_HUMAN Sister chromatid cohesion protein PDS5 homolog B (Androgen-induced proliferation inhibitor) (Androgen-induced prostate proliferative shutoff-associated protein AS3) PDS5B APRIN AS3 KIAA0979 cell division [GO:0051301]; cell population proliferation [GO:0008283]; mitotic sister chromatid cohesion [GO:0007064]; negative regulation of cell population proliferation [GO:0008285]; regulation of cell population proliferation [GO:0042127] -Q9NTJ3 reviewed SMC4_HUMAN Structural maintenance of chromosomes protein 4 (SMC protein 4) (SMC-4) (Chromosome-associated polypeptide C) (hCAP-C) (XCAP-C homolog) SMC4 CAPC SMC4L1 cell division [GO:0051301]; kinetochore organization [GO:0051383]; meiotic chromosome condensation [GO:0010032]; meiotic chromosome segregation [GO:0045132]; mitotic chromosome condensation [GO:0007076]; mitotic sister chromatid segregation [GO:0000070]; positive regulation of chromosome condensation [GO:1905821]; positive regulation of chromosome segregation [GO:0051984]; positive regulation of chromosome separation [GO:1905820] -Q9NV70 reviewed EXOC1_HUMAN Exocyst complex component 1 (Exocyst complex component Sec3) EXOC1 SEC3 SEC3L1 BM-012 defense response to virus [GO:0051607]; exocytosis [GO:0006887]; Golgi to plasma membrane transport [GO:0006893]; membrane fission [GO:0090148]; mitotic cytokinesis [GO:0000281]; protein transport [GO:0015031]; regulation of macroautophagy [GO:0016241]; vesicle docking involved in exocytosis [GO:0006904]; vesicle tethering involved in exocytosis [GO:0090522] -Q9NVA2 reviewed SEP11_HUMAN Septin-11 SEPTIN11 SEPT11 cytoskeleton-dependent cytokinesis [GO:0061640]; protein localization [GO:0008104]; regulation of synapse organization [GO:0050807] -Q9NVJ2 reviewed ARL8B_HUMAN ADP-ribosylation factor-like protein 8B (EC 3.6.5.2) (ADP-ribosylation factor-like protein 10C) (Novel small G protein indispensable for equal chromosome segregation 1) ARL8B ARL10C GIE1 anterograde axonal transport [GO:0008089]; antigen processing and presentation following phagocytosis [GO:0002747]; antigen processing and presentation of polysaccharide antigen via MHC class II [GO:0002505]; autophagosome-lysosome fusion [GO:0061909]; calcium ion regulated lysosome exocytosis [GO:1990927]; cell division [GO:0051301]; chromosome segregation [GO:0007059]; early endosome to Golgi transport [GO:0034498]; endosome to lysosome transport of low-density lipoprotein particle [GO:0090117]; late endosome to lysosome transport [GO:1902774]; lysosome localization [GO:0032418]; natural killer cell mediated cytotoxicity [GO:0042267]; phagosome-lysosome fusion [GO:0090385]; plasma membrane repair [GO:0001778]; protein localization to early endosome [GO:1902946]; protein transport [GO:0015031]; viral exocytosis [GO:0046754] -Q9NVM9 reviewed INT13_HUMAN Integrator complex subunit 13 (Cell cycle regulator Mat89Bb homolog) (Germ cell tumor 1) (Protein asunder homolog) (Sarcoma antigen NY-SAR-95) INTS13 ASUN C12orf11 GCT1 cell division [GO:0051301]; centrosome localization [GO:0051642]; flagellated sperm motility [GO:0030317]; mitotic spindle organization [GO:0007052]; protein localization to nuclear envelope [GO:0090435]; regulation of fertilization [GO:0080154]; regulation of mitotic cell cycle [GO:0007346]; regulation of transcription elongation by RNA polymerase II [GO:0034243]; snRNA processing [GO:0016180] -Q9NVX0 reviewed HAUS2_HUMAN HAUS augmin-like complex subunit 2 (Centrosomal protein of 27 kDa) (Cep27) HAUS2 C15orf25 CEP27 cell division [GO:0051301]; centrosome cycle [GO:0007098]; microtubule nucleation [GO:0007020]; regulation of microtubule nucleation [GO:0010968]; spindle assembly [GO:0051225] -Q9NWV8 reviewed BABA1_HUMAN BRISC and BRCA1-A complex member 1 (Mediator of RAP80 interactions and targeting subunit of 40 kDa) (New component of the BRCA1-A complex) BABAM1 C19orf62 MERIT40 NBA1 HSPC142 cell division [GO:0051301]; DNA repair-dependent chromatin remodeling [GO:0140861]; double-strand break repair [GO:0006302]; hematopoietic stem cell proliferation [GO:0071425]; mitotic G2 DNA damage checkpoint signaling [GO:0007095]; mitotic G2/M transition checkpoint [GO:0044818]; positive regulation of DNA repair [GO:0045739]; regulation of DNA repair [GO:0006282]; response to ionizing radiation [GO:0010212] -Q9NXR1 reviewed NDE1_HUMAN Nuclear distribution protein nudE homolog 1 (NudE) NDE1 NUDE cell division [GO:0051301]; cell migration [GO:0016477]; centrosome duplication [GO:0051298]; centrosome localization [GO:0051642]; cerebral cortex development [GO:0021987]; chromosome segregation [GO:0007059]; establishment of chromosome localization [GO:0051303]; establishment of mitotic spindle orientation [GO:0000132]; microtubule nucleation [GO:0007020]; mitotic centrosome separation [GO:0007100]; neuroblast proliferation [GO:0007405]; neuron migration [GO:0001764]; vesicle transport along microtubule [GO:0047496] -Q9NXR7 reviewed BABA2_HUMAN BRISC and BRCA1-A complex member 2 (BRCA1-A complex subunit BRE) (BRCA1/BRCA2-containing complex subunit 45) (Brain and reproductive organ-expressed protein) BABAM2 BRCC45 BRE apoptotic process [GO:0006915]; cell division [GO:0051301]; cellular response to ionizing radiation [GO:0071479]; chromatin organization [GO:0006325]; DNA damage response [GO:0006974]; double-strand break repair [GO:0006302]; mitotic G2 DNA damage checkpoint signaling [GO:0007095]; mitotic G2/M transition checkpoint [GO:0044818]; negative regulation of apoptotic process [GO:0043066]; positive regulation of DNA repair [GO:0045739]; protein K63-linked deubiquitination [GO:0070536]; regulation of DNA damage checkpoint [GO:2000001]; regulation of DNA repair [GO:0006282]; response to ionizing radiation [GO:0010212]; signal transduction [GO:0007165] -Q9NXW9 reviewed ALKB4_HUMAN Alpha-ketoglutarate-dependent dioxygenase alkB homolog 4 (Alkylated DNA repair protein alkB homolog 4) (DNA N6-methyl adenine demethylase ALKBH4) (EC 1.14.11.51) (Lysine-specific demethylase ALKBH4) (EC 1.14.11.-) ALKBH4 ABH4 actomyosin structure organization [GO:0031032]; cleavage furrow ingression [GO:0036090]; demethylation [GO:0070988]; negative regulation of gene expression, epigenetic [GO:0045814]; positive regulation of gene expression, epigenetic [GO:0141137] -Q9NY61 reviewed AATF_HUMAN Protein AATF (Apoptosis-antagonizing transcription factor) (Rb-binding protein Che-1) AATF CHE1 DED HSPC277 cell adhesion [GO:0007155]; embryonic cleavage [GO:0040016]; negative regulation of amyloid precursor protein biosynthetic process [GO:0042985]; negative regulation of apoptotic signaling pathway [GO:2001234]; positive regulation of DNA-templated transcription [GO:0045893]; regulation of mitotic cell cycle [GO:0007346]; regulation of transcription by RNA polymerase II [GO:0006357]; ribosomal small subunit biogenesis [GO:0042274] -Q9NYG5 reviewed APC11_HUMAN Anaphase-promoting complex subunit 11 (APC11) (Cyclosome subunit 11) (Hepatocellular carcinoma-associated RING finger protein) ANAPC11 HSPC214 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; mitotic cell cycle [GO:0000278]; positive regulation of mitotic metaphase/anaphase transition [GO:0045842]; protein K11-linked ubiquitination [GO:0070979]; protein K48-linked ubiquitination [GO:0070936]; protein ubiquitination [GO:0016567]; regulation of meiotic cell cycle [GO:0051445]; regulation of mitotic cell cycle [GO:0007346]; ubiquitin-dependent protein catabolic process [GO:0006511] -Q9NYP9 reviewed MS18A_HUMAN Protein Mis18-alpha (FAPP1-associated protein 1) MIS18A C21orf45 C21orf46 FASP1 cell division [GO:0051301]; CENP-A containing chromatin assembly [GO:0034080]; chromosome segregation [GO:0007059] -Q9NZ56 reviewed FMN2_HUMAN Formin-2 FMN2 actin cytoskeleton organization [GO:0030036]; cell migration [GO:0016477]; cellular response to hypoxia [GO:0071456]; DNA damage response [GO:0006974]; establishment of meiotic spindle localization [GO:0051295]; formin-nucleated actin cable assembly [GO:0070649]; homologous chromosome movement towards spindle pole in meiosis I anaphase [GO:0051758]; intracellular signal transduction [GO:0035556]; intracellular transport [GO:0046907]; negative regulation of apoptotic process [GO:0043066]; negative regulation of protein catabolic process [GO:0042177]; oogenesis [GO:0048477]; polar body extrusion after meiotic divisions [GO:0040038]; positive regulation of double-strand break repair [GO:2000781]; protein transport [GO:0015031]; vesicle-mediated transport [GO:0016192] -Q9NZZ3 reviewed CHMP5_HUMAN Charged multivesicular body protein 5 (Chromatin-modifying protein 5) (SNF7 domain-containing protein 2) (Vacuolar protein sorting-associated protein 60) (Vps60) (hVps60) CHMP5 C9orf83 SNF7DC2 CGI-34 HSPC177 PNAS-114 PNAS-2 autophagosome maturation [GO:0097352]; autophagy [GO:0006914]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to muramyl dipeptide [GO:0071225]; erythrocyte differentiation [GO:0030218]; ESCRT III complex disassembly [GO:1904903]; late endosome to lysosome transport [GO:1902774]; late endosome to vacuole transport via multivesicular body sorting pathway [GO:0032511]; membrane fission [GO:0090148]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body assembly [GO:0036258]; multivesicular body sorting pathway [GO:0071985]; multivesicular body-lysosome fusion [GO:0061763]; nuclear membrane reassembly [GO:0031468]; nucleus organization [GO:0006997]; plasma membrane repair [GO:0001778]; protein transport [GO:0015031]; regulation of centrosome duplication [GO:0010824]; regulation of mitotic spindle assembly [GO:1901673]; regulation of receptor recycling [GO:0001919]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; vesicle budding from membrane [GO:0006900]; vesicle fusion with vacuole [GO:0051469]; viral budding [GO:0046755]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -Q9P0V9 reviewed SEP10_HUMAN Septin-10 SEPTIN10 SEPT10 cytoskeleton-dependent cytokinesis [GO:0061640]; protein localization [GO:0008104] -Q9P258 reviewed RCC2_HUMAN Protein RCC2 (RCC1-like protein TD-60) (Telophase disk protein of 60 kDa) RCC2 KIAA1470 TD60 cell division [GO:0051301]; chromosome passenger complex localization to kinetochore [GO:0072356]; establishment of protein localization [GO:0045184]; focal adhesion assembly [GO:0048041]; integrin-mediated signaling pathway [GO:0007229]; negative regulation of focal adhesion assembly [GO:0051895]; negative regulation of GTPase activity [GO:0034260]; negative regulation of substrate adhesion-dependent cell spreading [GO:1900025]; positive regulation of attachment of spindle microtubules to kinetochore [GO:0051987]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; regulation of cell migration [GO:0030334]; regulation of fibroblast migration [GO:0010762]; regulation of ruffle assembly [GO:1900027] -Q9P2G4 reviewed MAP10_HUMAN Microtubule-associated protein 10 (Microtubule regulator of 120 KDa) MAP10 KIAA1383 MTR120 cell division [GO:0051301]; cytoplasmic microtubule organization [GO:0031122]; mitotic spindle midzone assembly [GO:0051256]; positive regulation of cytokinesis [GO:0032467]; regulation of microtubule-based process [GO:0032886] -Q9P2J3 reviewed KLHL9_HUMAN Kelch-like protein 9 KLHL9 KIAA1354 cell division [GO:0051301]; protein ubiquitination [GO:0016567]; regulation of cytokinesis [GO:0032465] -Q9P2K6 reviewed KLH42_HUMAN Kelch-like protein 42 (Cullin-3-binding protein 9) (Ctb9) (Kelch domain-containing protein 5) KLHL42 KIAA1340 KLHDC5 cell division [GO:0051301]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; protein polyubiquitination [GO:0000209]; regulation of microtubule-based process [GO:0032886] -Q9P2N7 reviewed KLH13_HUMAN Kelch-like protein 13 (BTB and kelch domain-containing protein 2) KLHL13 BKLHD2 KIAA1309 cell division [GO:0051301]; protein ubiquitination [GO:0016567]; regulation of cytokinesis [GO:0032465] -Q9UBB4 reviewed ATX10_HUMAN Ataxin-10 (Brain protein E46 homolog) (Spinocerebellar ataxia type 10 protein) ATXN10 SCA10 cell division [GO:0051301]; cilium assembly [GO:0060271]; nervous system development [GO:0007399]; neuron projection development [GO:0031175]; regulation of cytokinesis [GO:0032465] -Q9UBP0 reviewed SPAST_HUMAN Spastin (EC 5.6.1.1) (Spastic paraplegia 4 protein) SPAST ADPSP FSP2 KIAA1083 SPG4 anterograde axonal transport [GO:0008089]; axonal transport of mitochondrion [GO:0019896]; axonogenesis [GO:0007409]; cytokinetic process [GO:0032506]; cytoskeleton-dependent cytokinesis [GO:0061640]; endoplasmic reticulum to Golgi vesicle-mediated transport [GO:0006888]; exit from mitosis [GO:0010458]; membrane fission [GO:0090148]; microtubule bundle formation [GO:0001578]; microtubule severing [GO:0051013]; mitotic cytokinesis [GO:0000281]; mitotic nuclear membrane reassembly [GO:0007084]; mitotic spindle disassembly [GO:0051228]; nuclear membrane reassembly [GO:0031468]; positive regulation of cytokinesis [GO:0032467]; positive regulation of microtubule depolymerization [GO:0031117]; protein hexamerization [GO:0034214]; protein homooligomerization [GO:0051260] -Q9UH03 reviewed SEPT3_HUMAN Neuronal-specific septin-3 SEPTIN3 SEP3 SEPT3 cytoskeleton-dependent cytokinesis [GO:0061640]; protein localization [GO:0008104] -Q9UHD8 reviewed SEPT9_HUMAN Septin-9 (MLL septin-like fusion protein MSF-A) (MLL septin-like fusion protein) (Ovarian/Breast septin) (Ov/Br septin) (Septin D1) SEPTIN9 KIAA0991 MSF SEPT9 cytoskeleton-dependent cytokinesis [GO:0061640]; positive regulation of non-motile cilium assembly [GO:1902857]; protein localization [GO:0008104] -Q9UI95 reviewed MD2L2_HUMAN Mitotic spindle assembly checkpoint protein MAD2B (Mitotic arrest deficient 2-like protein 2) (MAD2-like protein 2) (REV7 homolog) (hREV7) MAD2L2 MAD2B REV7 actin filament organization [GO:0007015]; cell division [GO:0051301]; DNA damage response, signal transduction resulting in transcription [GO:0042772]; double-strand break repair [GO:0006302]; error-prone translesion synthesis [GO:0042276]; mitotic spindle assembly checkpoint signaling [GO:0007094]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cell-cell adhesion mediated by cadherin [GO:2000048]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of double-strand break repair via homologous recombination [GO:2000042]; negative regulation of epithelial to mesenchymal transition [GO:0010719]; negative regulation of protein catabolic process [GO:0042177]; negative regulation of transcription by competitive promoter binding [GO:0010944]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transcription regulatory region DNA binding [GO:2000678]; negative regulation of ubiquitin protein ligase activity [GO:1904667]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of double-strand break repair via nonhomologous end joining [GO:2001034]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of extracellular matrix assembly [GO:1901203]; positive regulation of isotype switching [GO:0045830]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; regulation of cell growth [GO:0001558]; somatic diversification of immunoglobulins involved in immune response [GO:0002208]; telomere maintenance in response to DNA damage [GO:0043247] -Q9UJP4 reviewed KLH21_HUMAN Kelch-like protein 21 KLHL21 KIAA0469 cell division [GO:0051301]; chromosome passenger complex localization to spindle midzone [GO:0035853]; protein ubiquitination [GO:0016567]; regulation of cytokinesis [GO:0032465] -Q9UJT9 reviewed FBXL7_HUMAN F-box/LRR-repeat protein 7 (F-box and leucine-rich repeat protein 7) (F-box protein FBL6/FBL7) FBXL7 FBL6 FBL7 KIAA0840 cell division [GO:0051301]; G2/M transition of mitotic cell cycle [GO:0000086]; mitotic cell cycle [GO:0000278]; protein polyubiquitination [GO:0000209]; protein ubiquitination [GO:0016567]; SCF-dependent proteasomal ubiquitin-dependent protein catabolic process [GO:0031146]; ubiquitin-dependent protein catabolic process [GO:0006511] -Q9UJU2 reviewed LEF1_HUMAN Lymphoid enhancer-binding factor 1 (LEF-1) (T cell-specific transcription factor 1-alpha) (TCF1-alpha) LEF1 anatomical structure regression [GO:0060033]; apoptotic process involved in blood vessel morphogenesis [GO:1902262]; B cell proliferation [GO:0042100]; BMP signaling pathway [GO:0030509]; branching involved in blood vessel morphogenesis [GO:0001569]; canonical Wnt signaling pathway [GO:0060070]; cell chemotaxis [GO:0060326]; cellular response to cytokine stimulus [GO:0071345]; cellular response to interleukin-4 [GO:0071353]; chorio-allantoic fusion [GO:0060710]; dentate gyrus development [GO:0021542]; embryonic limb morphogenesis [GO:0030326]; epithelial cell apoptotic process [GO:1904019]; epithelial to mesenchymal transition [GO:0001837]; face morphogenesis [GO:0060325]; forebrain neuroblast division [GO:0021873]; forebrain radial glial cell differentiation [GO:0021861]; formation of radial glial scaffolds [GO:0021943]; mammary gland development [GO:0030879]; negative regulation of apoptotic process [GO:0043066]; negative regulation of apoptotic process in bone marrow cell [GO:0071866]; negative regulation of DNA binding [GO:0043392]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of interleukin-13 production [GO:0032696]; negative regulation of interleukin-4 production [GO:0032713]; negative regulation of interleukin-5 production [GO:0032714]; negative regulation of striated muscle tissue development [GO:0045843]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neutrophil differentiation [GO:0030223]; odontogenesis of dentin-containing tooth [GO:0042475]; osteoblast differentiation [GO:0001649]; paraxial mesoderm formation [GO:0048341]; positive regulation by host of viral transcription [GO:0043923]; positive regulation of cell cycle process [GO:0090068]; positive regulation of cell differentiation [GO:0045597]; positive regulation of cell migration [GO:0030335]; positive regulation of cell proliferation in bone marrow [GO:0071864]; positive regulation of chondrocyte proliferation [GO:1902732]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of gamma-delta T cell differentiation [GO:0045588]; positive regulation of gene expression [GO:0010628]; positive regulation of granulocyte differentiation [GO:0030854]; positive regulation of odontoblast differentiation [GO:1901331]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of Wnt signaling pathway [GO:0030177]; protein localization to chromatin [GO:0071168]; regulation of neurogenesis [GO:0050767]; regulation of transcription by RNA polymerase II [GO:0006357]; secondary palate development [GO:0062009]; sensory perception of taste [GO:0050909]; somitogenesis [GO:0001756]; sprouting angiogenesis [GO:0002040]; T cell receptor V(D)J recombination [GO:0033153]; T-helper 1 cell differentiation [GO:0045063]; tongue development [GO:0043586]; trachea gland development [GO:0061153]; transcription by RNA polymerase II [GO:0006366] -Q9UJX2 reviewed CDC23_HUMAN Cell division cycle protein 23 homolog (Anaphase-promoting complex subunit 8) (APC8) (Cyclosome subunit 8) CDC23 ANAPC8 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; metaphase/anaphase transition of mitotic cell cycle [GO:0007091]; mitotic cell cycle [GO:0000278]; mitotic metaphase chromosome alignment [GO:0007080]; positive regulation of mitotic metaphase/anaphase transition [GO:0045842]; protein K11-linked ubiquitination [GO:0070979]; protein K48-linked ubiquitination [GO:0070936]; protein ubiquitination [GO:0016567]; regulation of exit from mitosis [GO:0007096]; regulation of meiotic cell cycle [GO:0051445]; regulation of mitotic cell cycle [GO:0007346]; regulation of mitotic metaphase/anaphase transition [GO:0030071]; ubiquitin-dependent protein catabolic process [GO:0006511] -Q9UJX3 reviewed APC7_HUMAN Anaphase-promoting complex subunit 7 (APC7) (Cyclosome subunit 7) ANAPC7 APC7 anaphase-promoting complex-dependent catabolic process [GO:0031145]; brain development [GO:0007420]; cell division [GO:0051301]; positive regulation of mitotic metaphase/anaphase transition [GO:0045842]; protein K11-linked ubiquitination [GO:0070979]; protein K48-linked ubiquitination [GO:0070936]; protein ubiquitination [GO:0016567]; regulation of meiotic cell cycle [GO:0051445]; regulation of mitotic cell cycle [GO:0007346] -Q9UJX4 reviewed APC5_HUMAN Anaphase-promoting complex subunit 5 (APC5) (Cyclosome subunit 5) ANAPC5 APC5 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; positive regulation of mitotic metaphase/anaphase transition [GO:0045842]; protein K11-linked ubiquitination [GO:0070979]; protein K48-linked ubiquitination [GO:0070936]; regulation of meiotic cell cycle [GO:0051445]; regulation of mitotic cell cycle [GO:0007346] -Q9UJX5 reviewed APC4_HUMAN Anaphase-promoting complex subunit 4 (APC4) (Cyclosome subunit 4) ANAPC4 APC4 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; protein K11-linked ubiquitination [GO:0070979]; protein K48-linked ubiquitination [GO:0070936]; regulation of meiotic cell cycle [GO:0051445]; regulation of mitotic cell cycle [GO:0007346]; regulation of mitotic metaphase/anaphase transition [GO:0030071] -Q9UJX6 reviewed ANC2_HUMAN Anaphase-promoting complex subunit 2 (APC2) (Cyclosome subunit 2) ANAPC2 APC2 KIAA1406 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell differentiation [GO:0030154]; cell division [GO:0051301]; metaphase/anaphase transition of mitotic cell cycle [GO:0007091]; negative regulation of gene expression [GO:0010629]; nervous system development [GO:0007399]; positive regulation of axon extension [GO:0045773]; positive regulation of dendrite morphogenesis [GO:0050775]; positive regulation of synapse maturation [GO:0090129]; positive regulation of synaptic plasticity [GO:0031915]; protein K11-linked ubiquitination [GO:0070979]; protein K48-linked ubiquitination [GO:0070936]; regulation of meiotic cell cycle [GO:0051445]; regulation of mitotic cell cycle [GO:0007346] -Q9UKT4 reviewed FBX5_HUMAN F-box only protein 5 (Early mitotic inhibitor 1) FBXO5 EMI1 FBX5 cell division [GO:0051301]; DNA damage response [GO:0006974]; microtubule polymerization [GO:0046785]; negative regulation of cellular senescence [GO:2000773]; negative regulation of DNA endoreduplication [GO:0032876]; negative regulation of meiotic nuclear division [GO:0045835]; negative regulation of mitotic metaphase/anaphase transition [GO:0045841]; negative regulation of ubiquitin protein ligase activity [GO:1904667]; negative regulation of ubiquitin-protein transferase activity [GO:0051444]; oocyte maturation [GO:0001556]; positive regulation of biomineral tissue development [GO:0070169]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; positive regulation of mesenchymal stem cell migration [GO:1905322]; positive regulation of osteoblast differentiation [GO:0045669]; protein ubiquitination [GO:0016567]; regulation of DNA replication [GO:0006275]; regulation of mitotic cell cycle [GO:0007346]; regulation of mitotic nuclear division [GO:0007088]; spindle assembly involved in female meiosis I [GO:0007057]; vesicle organization [GO:0016050] -Q9ULD6 reviewed INTU_HUMAN Protein inturned (Inturned planar cell polarity effector homolog) (PDZ domain-containing protein 6) INTU KIAA1284 PDZD6 PDZK6 cell division [GO:0051301]; cilium assembly [GO:0060271]; embryonic digit morphogenesis [GO:0042733]; establishment of planar polarity [GO:0001736]; hair follicle morphogenesis [GO:0031069]; intraciliary transport [GO:0042073]; keratinocyte differentiation [GO:0030216]; limb development [GO:0060173]; motile cilium assembly [GO:0044458]; negative regulation of cell division [GO:0051782]; negative regulation of keratinocyte proliferation [GO:0010839]; nervous system development [GO:0007399]; neural tube development [GO:0021915]; non-motile cilium assembly [GO:1905515]; positive regulation of smoothened signaling pathway [GO:0045880]; protein localization to organelle [GO:0033365]; regulation of cilium assembly [GO:1902017]; regulation of ossification [GO:0030278]; regulation of smoothened signaling pathway [GO:0008589]; roof of mouth development [GO:0060021]; smoothened signaling pathway [GO:0007224]; spinal cord dorsal/ventral patterning [GO:0021513]; tongue morphogenesis [GO:0043587]; vesicle-mediated transport [GO:0016192] -Q9ULG1 reviewed INO80_HUMAN Chromatin-remodeling ATPase INO80 (hINO80) (EC 3.6.4.-) (DNA helicase-related INO80 complex homolog 1) (DNA helicase-related protein INO80) (INO80 complex subunit A) INO80 INO80A INOC1 KIAA1259 cell division [GO:0051301]; cellular response to ionizing radiation [GO:0071479]; cellular response to UV [GO:0034644]; chromatin remodeling [GO:0006338]; DNA repair [GO:0006281]; DNA-templated transcription [GO:0006351]; double-strand break repair [GO:0006302]; double-strand break repair via homologous recombination [GO:0000724]; mitotic sister chromatid segregation [GO:0000070]; positive regulation of cell growth [GO:0030307]; positive regulation of DNA repair [GO:0045739]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of nuclear cell cycle DNA replication [GO:0010571]; positive regulation of telomere maintenance in response to DNA damage [GO:1904507]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of cell cycle [GO:0051726]; regulation of chromosome organization [GO:0033044]; regulation of DNA repair [GO:0006282]; regulation of DNA replication [GO:0006275]; regulation of DNA strand elongation [GO:0060382]; regulation of embryonic development [GO:0045995]; regulation of G1/S transition of mitotic cell cycle [GO:2000045]; spindle assembly [GO:0051225]; telomere maintenance [GO:0000723]; UV-damage excision repair [GO:0070914] -Q9ULW0 reviewed TPX2_HUMAN Targeting protein for Xklp2 (Differentially expressed in cancerous and non-cancerous lung cells 2) (DIL-2) (Hepatocellular carcinoma-associated antigen 519) (Hepatocellular carcinoma-associated antigen 90) (Protein fls353) (Restricted expression proliferation-associated protein 100) (p100) TPX2 C20orf1 C20orf2 DIL2 HCA519 activation of protein kinase activity [GO:0032147]; apoptotic process [GO:0006915]; cell division [GO:0051301]; microtubule nucleation [GO:0007020]; mitotic cell cycle [GO:0000278]; mitotic spindle assembly [GO:0090307]; negative regulation of microtubule depolymerization [GO:0007026]; regulation of mitotic spindle organization [GO:0060236] -Q9UM11 reviewed FZR1_HUMAN Fizzy-related protein homolog (Fzr) (CDC20-like protein 1) (Cdh1/Hct1 homolog) (hCDH1) FZR1 CDH1 FYR FZR KIAA1242 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; DNA repair [GO:0006281]; lens fiber cell differentiation [GO:0070306]; mitotic G2 DNA damage checkpoint signaling [GO:0007095]; negative regulation of cellular senescence [GO:2000773]; positive regulation of anaphase-promoting complex-dependent catabolic process [GO:1905786]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of ubiquitin protein ligase activity [GO:1904668]; protein K11-linked ubiquitination [GO:0070979]; regulation of meiotic cell cycle [GO:0051445]; regulation of meiotic nuclear division [GO:0040020]; regulation of mitotic cell cycle [GO:0007346] -Q9UM13 reviewed APC10_HUMAN Anaphase-promoting complex subunit 10 (APC10) (Cyclosome subunit 10) ANAPC10 APC10 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; protein K11-linked ubiquitination [GO:0070979]; protein K48-linked ubiquitination [GO:0070936]; regulation of meiotic cell cycle [GO:0051445]; regulation of mitotic cell cycle [GO:0007346] -Q9UN37 reviewed VPS4A_HUMAN Vacuolar protein sorting-associated protein 4A (EC 3.6.4.6) (Protein SKD2) (VPS4-1) (hVPS4) VPS4A VPS4 abscission [GO:0009838]; actomyosin contractile ring contraction [GO:0000916]; autophagosome maturation [GO:0097352]; autophagy [GO:0006914]; cell division [GO:0051301]; cytoskeleton-dependent cytokinesis [GO:0061640]; endosomal transport [GO:0016197]; endosomal vesicle fusion [GO:0034058]; ESCRT complex disassembly [GO:1904896]; ESCRT III complex disassembly [GO:1904903]; intracellular cholesterol transport [GO:0032367]; late endosomal microautophagy [GO:0061738]; late endosome to lysosome transport via multivesicular body sorting pathway [GO:0061764]; macroautophagy [GO:0016236]; membrane fission [GO:0090148]; midbody abscission [GO:0061952]; mitotic cytokinesis checkpoint signaling [GO:0044878]; mitotic metaphase chromosome alignment [GO:0007080]; mitotic nuclear membrane reassembly [GO:0007084]; multivesicular body assembly [GO:0036258]; multivesicular body sorting pathway [GO:0071985]; negative regulation of cytokinesis [GO:0032466]; nuclear envelope organization [GO:0006998]; nuclear membrane reassembly [GO:0031468]; nucleus organization [GO:0006997]; plasma membrane repair [GO:0001778]; positive regulation of exosomal secretion [GO:1903543]; positive regulation of viral budding via host ESCRT complex [GO:1903774]; protein targeting to lysosome [GO:0006622]; regulation of protein localization [GO:0032880]; regulation of protein localization to plasma membrane [GO:1903076]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; ubiquitin-independent protein catabolic process via the multivesicular body sorting pathway [GO:0090611]; vacuole organization [GO:0007033]; vesicle budding from membrane [GO:0006900]; vesicle uncoating [GO:0072319]; vesicle-mediated transport [GO:0016192]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702]; viral release from host cell [GO:0019076] -Q9UNH5 reviewed CC14A_HUMAN Dual specificity protein phosphatase CDC14A (EC 3.1.3.16) (EC 3.1.3.48) (CDC14 cell division cycle 14 homolog A) CDC14A cell division [GO:0051301]; cilium assembly [GO:0060271]; microtubule cytoskeleton organization [GO:0000226]; positive regulation of cytokinesis [GO:0032467]; regulation of exit from mitosis [GO:0007096]; sensory perception of sound [GO:0007605] -Q9UNS1 reviewed TIM_HUMAN Protein timeless homolog (hTIM) TIMELESS TIM TIM1 TIMELESS1 branching morphogenesis of an epithelial tube [GO:0048754]; cell cycle phase transition [GO:0044770]; cell division [GO:0051301]; cellular response to bleomycin [GO:1904976]; cellular response to cisplatin [GO:0072719]; cellular response to hydroxyurea [GO:0072711]; circadian rhythm [GO:0007623]; detection of abiotic stimulus [GO:0009582]; DNA damage response [GO:0006974]; DNA repair [GO:0006281]; DNA replication checkpoint signaling [GO:0000076]; lung development [GO:0030324]; morphogenesis of an epithelium [GO:0002009]; negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of double-strand break repair [GO:2000781]; positive regulation of double-strand break repair via homologous recombination [GO:1905168]; regulation of circadian rhythm [GO:0042752]; replication fork arrest [GO:0043111] -Q9UPT5 reviewed EXOC7_HUMAN Exocyst complex component 7 (Exocyst complex component Exo70) EXOC7 EXO70 KIAA1067 exocytosis [GO:0006887]; membrane fission [GO:0090148]; mitotic cytokinesis [GO:0000281]; positive regulation of mitotic cytokinetic process [GO:1903438]; protein transmembrane transport [GO:0071806]; regulation of entry of bacterium into host cell [GO:2000535]; regulation of macroautophagy [GO:0016241]; vesicle docking involved in exocytosis [GO:0006904]; vesicle tethering involved in exocytosis [GO:0090522] -Q9UPV0 reviewed CE164_HUMAN Centrosomal protein of 164 kDa (Cep164) CEP164 KIAA1052 NPHP15 cell division [GO:0051301]; cilium assembly [GO:0060271]; DNA repair [GO:0006281] -Q9UPY8 reviewed MARE3_HUMAN Microtubule-associated protein RP/EB family member 3 (EB1 protein family member 3) (EBF3) (End-binding protein 3) (EB3) (RP3) MAPRE3 cell division [GO:0051301]; positive regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0045737]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of protein kinase activity [GO:0045860]; protein localization [GO:0008104]; protein localization to microtubule [GO:0035372]; regulation of microtubule polymerization [GO:0031113]; regulation of microtubule polymerization or depolymerization [GO:0031110]; spindle assembly [GO:0051225] -Q9UQB9 reviewed AURKC_HUMAN Aurora kinase C (EC 2.7.11.1) (Aurora 3) (Aurora/IPL1-related kinase 3) (ARK-3) (Aurora-related kinase 3) (Aurora/IPL1/Eg2 protein 2) (Serine/threonine-protein kinase 13) (Serine/threonine-protein kinase aurora-C) AURKC AIE2 AIK3 AIRK3 ARK3 STK13 attachment of spindle microtubules to kinetochore [GO:0008608]; cell division [GO:0051301]; meiotic cell cycle [GO:0051321]; mitotic spindle midzone assembly [GO:0051256]; mitotic spindle organization [GO:0007052]; positive regulation of cytokinesis [GO:0032467]; protein phosphorylation [GO:0006468]; regulation of cytokinesis [GO:0032465] -Q9UQE7 reviewed SMC3_HUMAN Structural maintenance of chromosomes protein 3 (SMC protein 3) (SMC-3) (Basement membrane-associated chondroitin proteoglycan) (Bamacan) (Chondroitin sulfate proteoglycan 6) (Chromosome-associated polypeptide) (hCAP) SMC3 BAM BMH CSPG6 SMC3L1 cell division [GO:0051301]; DNA repair [GO:0006281]; establishment of meiotic sister chromatid cohesion [GO:0034089]; establishment of mitotic sister chromatid cohesion [GO:0034087]; meiotic cell cycle [GO:0051321]; mitotic cell cycle [GO:0000278]; mitotic sister chromatid cohesion [GO:0007064]; mitotic spindle assembly [GO:0090307]; regulation of DNA replication [GO:0006275]; sister chromatid cohesion [GO:0007062]; stem cell population maintenance [GO:0019827] -Q9UQN3 reviewed CHM2B_HUMAN Charged multivesicular body protein 2b (CHMP2.5) (Chromatin-modifying protein 2b) (CHMP2b) (Vacuolar protein sorting-associated protein 2-2) (Vps2-2) (hVps2-2) CHMP2B CGI-84 autophagosome maturation [GO:0097352]; autophagy [GO:0006914]; cognition [GO:0050890]; endosome organization [GO:0007032]; endosome transport via multivesicular body sorting pathway [GO:0032509]; ESCRT III complex disassembly [GO:1904903]; late endosome to lysosome transport [GO:1902774]; late endosome to vacuole transport [GO:0045324]; macroautophagy [GO:0016236]; membrane fission [GO:0090148]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; modulation of chemical synaptic transmission [GO:0050804]; multivesicular body assembly [GO:0036258]; multivesicular body sorting pathway [GO:0071985]; multivesicular body-lysosome fusion [GO:0061763]; neuron cellular homeostasis [GO:0070050]; nuclear membrane reassembly [GO:0031468]; nucleus organization [GO:0006997]; plasma membrane repair [GO:0001778]; protein transport [GO:0015031]; regulation of centrosome duplication [GO:0010824]; regulation of mitotic spindle assembly [GO:1901673]; regulation of modification of postsynaptic structure [GO:0099159]; regulation of postsynapse organization [GO:0099175]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; vesicle fusion with vacuole [GO:0051469]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702]; viral release from host cell [GO:0019076] -Q9Y231 reviewed FUT9_HUMAN 4-galactosyl-N-acetylglucosaminide 3-alpha-L-fucosyltransferase 9 (EC 2.4.1.152) (Fucosyltransferase 9) (Fucosyltransferase IX) (Fuc-TIX) (FucT-IX) (Galactoside 3-L-fucosyltransferase) FUT9 carbohydrate metabolic process [GO:0005975]; fucosylation [GO:0036065]; glycosphingolipid biosynthetic process [GO:0006688]; L-fucose catabolic process [GO:0042355]; Lewis x epitope biosynthetic process [GO:0106402]; N-glycan fucosylation [GO:0036071]; neuron differentiation [GO:0030182]; neuronal stem cell division [GO:0036445]; oligosaccharide biosynthetic process [GO:0009312]; polysaccharide biosynthetic process [GO:0000271]; positive regulation of neuron projection development [GO:0010976]; protein glycosylation [GO:0006486]; protein N-linked glycosylation [GO:0006487]; protein O-linked glycosylation [GO:0006493]; regulation of leukocyte cell-cell adhesion [GO:1903037]; regulation of leukocyte tethering or rolling [GO:1903236] -Q9Y265 reviewed RUVB1_HUMAN RuvB-like 1 (EC 3.6.4.12) (49 kDa TATA box-binding protein-interacting protein) (49 kDa TBP-interacting protein) (54 kDa erythrocyte cytosolic protein) (ECP-54) (INO80 complex subunit H) (Nuclear matrix protein 238) (NMP 238) (Pontin 52) (TIP49a) (TIP60-associated protein 54-alpha) (TAP54-alpha) RUVBL1 INO80H NMP238 TIP49 TIP49A box C/D snoRNP assembly [GO:0000492]; cell division [GO:0051301]; chromatin remodeling [GO:0006338]; DNA recombination [GO:0006310]; DNA repair [GO:0006281]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of DNA repair [GO:0045739]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of double-strand break repair via homologous recombination [GO:1905168]; positive regulation of telomerase RNA localization to Cajal body [GO:1904874]; positive regulation of telomere maintenance in response to DNA damage [GO:1904507]; protein stabilization [GO:0050821]; regulation of apoptotic process [GO:0042981]; regulation of cell cycle [GO:0051726]; regulation of chromosome organization [GO:0033044]; regulation of DNA repair [GO:0006282]; regulation of DNA replication [GO:0006275]; regulation of DNA strand elongation [GO:0060382]; regulation of DNA-templated transcription [GO:0006355]; regulation of double-strand break repair [GO:2000779]; regulation of embryonic development [GO:0045995]; regulation of transcription by RNA polymerase II [GO:0006357]; spermatogenesis [GO:0007283]; telomere maintenance [GO:0000723] -Q9Y266 reviewed NUDC_HUMAN Nuclear migration protein nudC (Nuclear distribution protein C homolog) NUDC cell division [GO:0051301]; mitotic metaphase chromosome alignment [GO:0007080]; mitotic spindle organization [GO:0007052]; nuclear migration [GO:0007097]; protein folding [GO:0006457]; response to peptide hormone [GO:0043434] -Q9Y2D4 reviewed EXC6B_HUMAN Exocyst complex component 6B (Exocyst complex component Sec15B) (SEC15-like protein 2) EXOC6B KIAA0919 SEC15B SEC15L2 exocytosis [GO:0006887]; Golgi to plasma membrane transport [GO:0006893]; intracellular protein transport [GO:0006886]; membrane fission [GO:0090148]; mitotic cytokinesis [GO:0000281]; vesicle docking involved in exocytosis [GO:0006904]; vesicle tethering involved in exocytosis [GO:0090522] -Q9Y3E7 reviewed CHMP3_HUMAN Charged multivesicular body protein 3 (Chromatin-modifying protein 3) (Neuroendocrine differentiation factor) (Vacuolar protein sorting-associated protein 24) (hVps24) CHMP3 CGI149 NEDF VPS24 CGI-149 apoptotic process [GO:0006915]; autophagosome maturation [GO:0097352]; autophagy [GO:0006914]; endosome transport via multivesicular body sorting pathway [GO:0032509]; late endosome to lysosome transport [GO:1902774]; late endosome to vacuole transport [GO:0045324]; macroautophagy [GO:0016236]; membrane fission [GO:0090148]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body assembly [GO:0036258]; multivesicular body sorting pathway [GO:0071985]; multivesicular body-lysosome fusion [GO:0061763]; nuclear membrane reassembly [GO:0031468]; nucleus organization [GO:0006997]; plasma membrane repair [GO:0001778]; positive regulation of cytokinesis [GO:0032467]; protein polymerization [GO:0051258]; protein transport [GO:0015031]; regulation of centrosome duplication [GO:0010824]; regulation of early endosome to late endosome transport [GO:2000641]; regulation of endosome size [GO:0051036]; regulation of mitotic spindle assembly [GO:1901673]; suppression of viral release by host [GO:0044790]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; vesicle fusion with vacuole [GO:0051469]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702]; viral release from host cell [GO:0019076] -Q9Y448 reviewed SKAP_HUMAN Small kinetochore-associated protein (SKAP) (Kinetochore-localized astrin-binding protein) (Kinastrin) (Kinetochore-localized astrin/SPAG5-binding protein) (TRAF4-associated factor 1) KNSTRN C15orf23 SKAP TRAF4AF1 HSD11 cell division [GO:0051301]; cell migration [GO:0016477]; cellular response to epidermal growth factor stimulus [GO:0071364]; chromosome segregation [GO:0007059]; microtubule cytoskeleton organization [GO:0000226]; mitotic sister chromatid segregation [GO:0000070]; regulation of attachment of spindle microtubules to kinetochore [GO:0051988]; spindle organization [GO:0007051] -Q9Y4B5 reviewed MTCL1_HUMAN Microtubule cross-linking factor 1 (Coiled-coil domain-containing protein 165) (PAR-1-interacting protein) (SOGA family member 2) MTCL1 CCDC165 KIAA0802 SOGA2 cell division [GO:0051301]; chromosome segregation [GO:0007059]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; microtubule bundle formation [GO:0001578]; positive regulation of protein targeting to membrane [GO:0090314]; regulation of autophagy [GO:0010506] -Q9Y5A9 reviewed YTHD2_HUMAN YTH domain-containing family protein 2 (DF2) (CLL-associated antigen KW-14) (High-glucose-regulated protein 8) (Renal carcinoma antigen NY-REN-2) YTHDF2 HGRG8 embryonic morphogenesis [GO:0048598]; endothelial to hematopoietic transition [GO:0098508]; gamete generation [GO:0007276]; hematopoietic stem cell proliferation [GO:0071425]; humoral immune response [GO:0006959]; innate immune response [GO:0045087]; mRNA catabolic process [GO:0006402]; mRNA destabilization [GO:0061157]; negative regulation of Notch signaling pathway [GO:0045746]; negative regulation of stem cell differentiation [GO:2000737]; negative regulation of type I interferon-mediated signaling pathway [GO:0060339]; oocyte maturation [GO:0001556]; organelle assembly [GO:0070925]; positive regulation of cap-independent translational initiation [GO:1903679]; regulation of cell adhesion [GO:0030155]; regulation of hematopoietic stem cell differentiation [GO:1902036]; regulation of meiotic cell cycle process involved in oocyte maturation [GO:1903538]; regulation of mRNA stability [GO:0043488]; regulation of neurogenesis [GO:0050767]; regulation of rRNA processing [GO:2000232]; spermatogonial cell division [GO:0007284]; stress granule assembly [GO:0034063] -Q9Y5B0 reviewed CTDP1_HUMAN RNA polymerase II subunit A C-terminal domain phosphatase (EC 3.1.3.16) (TFIIF-associating CTD phosphatase) CTDP1 FCP1 cell division [GO:0051301]; exit from mitosis [GO:0010458]; negative regulation of cell growth involved in cardiac muscle cell development [GO:0061052]; positive regulation by host of viral transcription [GO:0043923]; protein dephosphorylation [GO:0006470]; transcription elongation by RNA polymerase II [GO:0006368] -Q9Y5K6 reviewed CD2AP_HUMAN CD2-associated protein (Adapter protein CMS) (Cas ligand with multiple SH3 domains) CD2AP actin filament organization [GO:0007015]; actin filament polymerization [GO:0030041]; adipose tissue development [GO:0060612]; apoptotic process [GO:0006915]; cell division [GO:0051301]; cell migration [GO:0016477]; cell population proliferation [GO:0008283]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction organization [GO:0045216]; collateral sprouting [GO:0048668]; endothelium development [GO:0003158]; ERK1 and ERK2 cascade [GO:0070371]; filopodium assembly [GO:0046847]; glucose import [GO:0046323]; immunological synapse formation [GO:0001771]; inflammatory response [GO:0006954]; lipid metabolic process [GO:0006629]; liver development [GO:0001889]; localization of cell [GO:0051674]; lymph node development [GO:0048535]; maintenance of blood-brain barrier [GO:0035633]; male gonad development [GO:0008584]; membrane organization [GO:0061024]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of small GTPase mediated signal transduction [GO:0051058]; negative regulation of transforming growth factor beta1 production [GO:0032911]; nerve growth factor signaling pathway [GO:0038180]; neurotrophin TRK receptor signaling pathway [GO:0048011]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; podocyte differentiation [GO:0072112]; positive regulation of protein localization to nucleus [GO:1900182]; positive regulation of protein secretion [GO:0050714]; protein catabolic process [GO:0030163]; protein heterooligomerization [GO:0051291]; protein secretion [GO:0009306]; protein-containing complex assembly [GO:0065003]; Rab protein signal transduction [GO:0032482]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of synaptic plasticity [GO:0048167]; renal albumin absorption [GO:0097018]; response to glial cell derived neurotrophic factor [GO:1990790]; response to insulin [GO:0032868]; response to oxidative stress [GO:0006979]; response to transforming growth factor beta [GO:0071559]; response to virus [GO:0009615]; response to wounding [GO:0009611]; signal transduction [GO:0007165]; stress-activated MAPK cascade [GO:0051403]; substrate-dependent cell migration, cell extension [GO:0006930]; synapse organization [GO:0050808]; T cell receptor signaling pathway [GO:0050852]; transforming growth factor beta1 production [GO:0032905] -Q9Y5T5 reviewed UBP16_HUMAN Ubiquitin carboxyl-terminal hydrolase 16 (EC 3.4.19.12) (Deubiquitinating enzyme 16) (Ubiquitin thioesterase 16) (Ubiquitin-processing protease UBP-M) (Ubiquitin-specific-processing protease 16) USP16 MSTP039 cell division [GO:0051301]; DNA damage response [GO:0006974]; mitotic nuclear division [GO:0140014]; monoubiquitinated protein deubiquitination [GO:0035520]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of ribosome biogenesis [GO:0090070]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of translational elongation [GO:0045901]; protein homotetramerization [GO:0051289]; proteolysis [GO:0006508]; regulation of cell cycle [GO:0051726]; regulation of transcription by RNA polymerase II [GO:0006357] -Q9Y5X1 reviewed SNX9_HUMAN Sorting nexin-9 (SH3 and PX domain-containing protein 1) (Protein SDP1) (SH3 and PX domain-containing protein 3A) SNX9 SH3PX1 SH3PXD3A cleavage furrow formation [GO:0036089]; endocytosis [GO:0006897]; endosomal transport [GO:0016197]; intracellular protein transport [GO:0006886]; lipid tube assembly [GO:0060988]; mitotic cytokinesis [GO:0000281]; plasma membrane tubulation [GO:0097320]; positive regulation of actin filament polymerization [GO:0030838]; positive regulation of GTPase activity [GO:0043547]; positive regulation of membrane protein ectodomain proteolysis [GO:0051044]; positive regulation of protein kinase activity [GO:0045860]; protein-containing complex assembly [GO:0065003]; receptor-mediated endocytosis [GO:0006898]; regulation of synaptic vesicle endocytosis [GO:1900242] -Q9Y6A5 reviewed TACC3_HUMAN Transforming acidic coiled-coil-containing protein 3 (ERIC-1) TACC3 ERIC1 cell division [GO:0051301]; cell population proliferation [GO:0008283]; cerebral cortex development [GO:0021987]; metaphase/anaphase transition of mitotic cell cycle [GO:0007091]; microtubule cytoskeleton organization [GO:0000226]; microtubule cytoskeleton organization involved in mitosis [GO:1902850]; mitotic spindle organization [GO:0007052]; regulation of mitotic spindle organization [GO:0060236] -Q9Y6D9 reviewed MD1L1_HUMAN Mitotic spindle assembly checkpoint protein MAD1 (Mitotic arrest deficient 1-like protein 1) (MAD1-like protein 1) (Mitotic checkpoint MAD1 protein homolog) (HsMAD1) (hMAD1) (Tax-binding protein 181) MAD1L1 MAD1 TXBP181 attachment of mitotic spindle microtubules to kinetochore [GO:0051315]; cell division [GO:0051301]; cytoplasmic sequestering of protein [GO:0051220]; deactivation of mitotic spindle assembly checkpoint [GO:1902426]; mitotic spindle assembly checkpoint signaling [GO:0007094]; negative regulation of T cell proliferation [GO:0042130]; positive regulation of mitotic cell cycle spindle assembly checkpoint [GO:0090267]; regulation of metaphase plate congression [GO:0090235]; thymus development [GO:0048538] -Q9Y6G9 reviewed DC1L1_HUMAN Cytoplasmic dynein 1 light intermediate chain 1 (LIC1) (Dynein light chain A) (DLC-A) (Dynein light intermediate chain 1, cytosolic) (DLIC-1) DYNC1LI1 DNCLI1 cell division [GO:0051301]; early endosome to recycling endosome transport [GO:0061502]; microtubule cytoskeleton organization [GO:0000226]; microtubule-based movement [GO:0007018]; positive regulation of mitotic cell cycle spindle assembly checkpoint [GO:0090267]; regulation of vesicle-mediated transport [GO:0060627] -Q9Y6R0 reviewed NUMBL_HUMAN Numb-like protein (Numb-related protein) (Numb-R) NUMBL adherens junction organization [GO:0034332]; axonogenesis [GO:0007409]; cytokine-mediated signaling pathway [GO:0019221]; lateral ventricle development [GO:0021670]; nervous system development [GO:0007399]; neuroblast division in subventricular zone [GO:0021849]; positive regulation of neurogenesis [GO:0050769]; protein metabolic process [GO:0019538] -Q9Y6X3 reviewed SCC4_HUMAN MAU2 chromatid cohesion factor homolog (MAU-2) (Cohesin loading complex subunit SCC4 homolog) MAU2 KIAA0892 SCC4 cell division [GO:0051301]; chromosome segregation [GO:0007059]; maintenance of mitotic sister chromatid cohesion [GO:0034088]; mitotic sister chromatid cohesion [GO:0007064] -A0A2R8Y570 unreviewed A0A2R8Y570_HUMAN Protein 4.1 (Band 4.1) (Erythrocyte membrane protein band 4.1) EPB41 cell division [GO:0051301]; cortical actin cytoskeleton organization [GO:0030866] -A0A2R8Y5G2 unreviewed A0A2R8Y5G2_HUMAN Protein 4.1 (Band 4.1) (Erythrocyte membrane protein band 4.1) EPB41 cell division [GO:0051301]; cortical actin cytoskeleton organization [GO:0030866] -A0A2R8Y5Z6 unreviewed A0A2R8Y5Z6_HUMAN Protein 4.1 (Band 4.1) (Erythrocyte membrane protein band 4.1) EPB41 cell division [GO:0051301]; cortical actin cytoskeleton organization [GO:0030866] -A0A2R8Y6G5 unreviewed A0A2R8Y6G5_HUMAN Protein 4.1 (Band 4.1) (Erythrocyte membrane protein band 4.1) EPB41 cell division [GO:0051301]; cortical actin cytoskeleton organization [GO:0030866] -A0A2R8YFR9 unreviewed A0A2R8YFR9_HUMAN Protein 4.1 (Band 4.1) (Erythrocyte membrane protein band 4.1) EPB41 cell division [GO:0051301]; cortical actin cytoskeleton organization [GO:0030866] -A0A2U3TZH6 unreviewed A0A2U3TZH6_HUMAN Protein 4.1 (Band 4.1) (Erythrocyte membrane protein band 4.1) EPB41 cell division [GO:0051301]; cortical actin cytoskeleton organization [GO:0030866] -A0A384N6H6 unreviewed A0A384N6H6_HUMAN Septin cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640]; regulation of exocytosis [GO:0017157] -A0A3B3IU06 unreviewed A0A3B3IU06_HUMAN Protein 4.1 (Band 4.1) (Erythrocyte membrane protein band 4.1) EPB41 cell division [GO:0051301]; cortical actin cytoskeleton organization [GO:0030866] -A0A6Q8PFA6 unreviewed A0A6Q8PFA6_HUMAN Kinesin-like protein KIF2A cell division [GO:0051301]; microtubule-based movement [GO:0007018] -A0A6Q8PFF9 unreviewed A0A6Q8PFF9_HUMAN Charged multivesicular body protein 1a (Chromatin-modifying protein 1a) CHMP1A autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body sorting pathway [GO:0071985]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; protein transport [GO:0015031]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -A0A6Q8PFU3 unreviewed A0A6Q8PFU3_HUMAN Platelet-activating factor acetylhydrolase IB subunit alpha (Lissencephaly-1 protein) (LIS-1) (PAF acetylhydrolase 45 kDa subunit) (PAF-AH 45 kDa subunit) (PAF-AH alpha) (PAFAH alpha) PAFAH1B1 LIS1 cell differentiation [GO:0030154]; cell division [GO:0051301]; establishment of mitotic spindle orientation [GO:0000132]; lipid catabolic process [GO:0016042]; microtubule sliding [GO:0051012]; nervous system development [GO:0007399] -A0A6Q8PG37 unreviewed A0A6Q8PG37_HUMAN Kinesin-like protein KIF2A cell division [GO:0051301]; microtubule-based movement [GO:0007018] -A0A6Q8PGH7 unreviewed A0A6Q8PGH7_HUMAN Kinesin-like protein KIF2A cell division [GO:0051301]; microtubule-based movement [GO:0007018] -A0A6Q8PH57 unreviewed A0A6Q8PH57_HUMAN Kinesin-like protein KIF2A cell division [GO:0051301]; microtubule-based movement [GO:0007018] -A0A8I5KVF8 unreviewed A0A8I5KVF8_HUMAN Cohesin subunit SA (SCC3 homolog) (Stromal antigen) STAG2 cell division [GO:0051301]; chromosome segregation [GO:0007059]; sister chromatid cohesion [GO:0007062] -A3KFJ0 unreviewed A3KFJ0_HUMAN Aurora kinase (EC 2.7.11.1) AURKA cell division [GO:0051301] -A3KFJ1 unreviewed A3KFJ1_HUMAN Aurora kinase (EC 2.7.11.1) AURKA cell division [GO:0051301] -A6NKF1 reviewed SAC31_HUMAN SAC3 domain-containing protein 1 (SAC3 homology domain-containing protein 1) SAC3D1 SHD1 cell division [GO:0051301]; centrosome duplication [GO:0051298]; spindle assembly [GO:0051225] -A8K031 unreviewed A8K031_HUMAN Kinetochore protein NDC80 KNTC2 NDC80 hCG_38410 attachment of mitotic spindle microtubules to kinetochore [GO:0051315]; cell division [GO:0051301]; G2/MI transition of meiotic cell cycle [GO:0008315]; kinetochore organization [GO:0051383]; regulation of protein stability [GO:0031647]; skeletal muscle satellite cell proliferation [GO:0014841]; spindle assembly involved in female meiosis I [GO:0007057] -A8K7S5 unreviewed A8K7S5_HUMAN Katanin p60 ATPase-containing subunit A1 (Katanin p60 subunit A1) (EC 5.6.1.1) (p60 katanin) KATNA1 cell division [GO:0051301]; microtubule severing [GO:0051013] -B2R6Z3 unreviewed B2R6Z3_HUMAN Aurora kinase (EC 2.7.11.1) cell division [GO:0051301]; meiotic spindle organization [GO:0000212]; mitotic centrosome separation [GO:0007100]; mitotic spindle organization [GO:0007052]; regulation of cytokinesis [GO:0032465] -B2R9M7 unreviewed B2R9M7_HUMAN Protein kinase C epsilon type (EC 2.7.11.13) (nPKC-epsilon) cell adhesion [GO:0007155]; cell division [GO:0051301]; regulation of primary metabolic process [GO:0080090] -B2RE76 unreviewed B2RE76_HUMAN Chromatin modifying protein 2B (cDNA FLJ11303 fis, clone PLACE1009995, highly similar to Charged multivesicular body protein 2b) (cDNA FLJ11318 fis, clone PLACE1010274, highly similar to Charged multivesicular body protein 2b) (cDNA, FLJ95104) CHMP2B hCG_27849 autophagosome maturation [GO:0097352]; endosome transport via multivesicular body sorting pathway [GO:0032509]; late endosome to lysosome transport [GO:1902774]; late endosome to vacuole transport [GO:0045324]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; modulation of chemical synaptic transmission [GO:0050804]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; protein transport [GO:0015031]; regulation of mitotic spindle assembly [GO:1901673]; regulation of modification of postsynaptic structure [GO:0099159]; regulation of postsynapse organization [GO:0099175]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -B4DX16 unreviewed B4DX16_HUMAN Aurora kinase (EC 2.7.11.1) cell division [GO:0051301]; meiotic spindle organization [GO:0000212]; mitotic centrosome separation [GO:0007100]; mitotic spindle organization [GO:0007052]; regulation of cytokinesis [GO:0032465] -B7Z6C9 unreviewed B7Z6C9_HUMAN Transmembrane 9 superfamily member autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body sorting pathway [GO:0071985]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; protein localization to membrane [GO:0072657]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -D6W5U7 unreviewed D6W5U7_HUMAN Cohesin subunit SA (SCC3 homolog) (Stromal antigen) STAG3 hCG_2024106 cell division [GO:0051301]; homologous chromosome pairing at meiosis [GO:0007129]; protein localization to chromosome [GO:0034502]; sister chromatid cohesion [GO:0007062] -E9PL09 unreviewed E9PL09_HUMAN Small ribosomal subunit protein uS3 (EC 4.2.99.18) (40S ribosomal protein S3) RPS3 apoptotic process [GO:0006915]; cell division [GO:0051301]; DNA repair [GO:0006281]; regulation of translation [GO:0006417]; translation [GO:0006412] -E9PSI1 unreviewed E9PSI1_HUMAN Transmembrane 9 superfamily member autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body sorting pathway [GO:0071985]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -F5H875 unreviewed F5H875_HUMAN Charged multivesicular body protein 1a (Chromatin-modifying protein 1a) CHMP1A autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body sorting pathway [GO:0071985]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; protein transport [GO:0015031]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -O94889 reviewed KLH18_HUMAN Kelch-like protein 18 KLHL18 KIAA0795 OK/SW-cl.74 cell division [GO:0051301]; positive regulation of mitotic cell cycle phase transition [GO:1901992]; protein ubiquitination [GO:0016567] -P33552 reviewed CKS2_HUMAN Cyclin-dependent kinases regulatory subunit 2 (CKS-2) CKS2 cell division [GO:0051301]; fibroblast proliferation [GO:0048144]; meiosis I [GO:0007127]; mitotic cell cycle phase transition [GO:0044772]; regulation of mitotic cell cycle [GO:0007346]; regulation of transcription by RNA polymerase II [GO:0006357] -P59074 reviewed CHM4P_HUMAN Putative charged multivesicular body protein 4B-like protein CHMP4BP1 (Charged multivesicular body protein 4B pseudogene 1) CHMP4BP1 CGI-301 autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; late endosome to vacuole transport via multivesicular body sorting pathway [GO:0032511]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; vesicle budding from membrane [GO:0006900]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -P69208 reviewed MORN_HUMAN Morphogenetic neuropeptide (Head activator) (HA) cell division [GO:0051301]; G protein-coupled receptor internalization [GO:0002031]; neuropeptide signaling pathway [GO:0007218]; positive regulation of cell cycle process [GO:0090068]; positive regulation of membrane protein ectodomain proteolysis [GO:0051044]; positive regulation of neural precursor cell proliferation [GO:2000179]; protein localization to cell surface [GO:0034394]; receptor internalization [GO:0031623] -Q16589 reviewed CCNG2_HUMAN Cyclin-G2 CCNG2 cell division [GO:0051301]; mitotic cell cycle phase transition [GO:0044772]; regulation of cell cycle [GO:0051726] -Q53F78 unreviewed Q53F78_HUMAN Beclin-1 apoptotic process [GO:0006915]; autophagosome assembly [GO:0000045]; cell division [GO:0051301]; cellular response to nitrogen starvation [GO:0006995]; defense response to virus [GO:0051607]; early endosome to late endosome transport [GO:0045022]; late endosome to vacuole transport [GO:0045324] -Q587J7 reviewed TDR12_HUMAN Putative ATP-dependent RNA helicase TDRD12 (EC 3.6.4.13) (ES cell-associated transcript 8 protein) (Tudor domain-containing protein 12) TDRD12 ECAT8 fertilization [GO:0009566]; germ-line stem cell division [GO:0042078]; male meiotic nuclear division [GO:0007140]; piRNA processing [GO:0034587]; siRNA-mediated retrotransposon silencing by heterochromatin formation [GO:0141007]; spermatogenesis [GO:0007283] -Q5HY92 reviewed FIGN_HUMAN Fidgetin FIGN cell division [GO:0051301] -Q5QPD4 unreviewed Q5QPD4_HUMAN Aurora kinase (EC 2.7.11.1) AURKA cell division [GO:0051301] -Q66LE6 reviewed 2ABD_HUMAN Serine/threonine-protein phosphatase 2A 55 kDa regulatory subunit B delta isoform (PP2A subunit B isoform B55-delta) (PP2A subunit B isoform PR55-delta) (PP2A subunit B isoform R2-delta) (PP2A subunit B isoform delta) PPP2R2D KIAA1541 cell division [GO:0051301]; exit from mitosis [GO:0010458]; mitotic cell cycle [GO:0000278] -Q6FI00 unreviewed Q6FI00_HUMAN G1/S-specific cyclin-D1 CCND1 hCG_2016647 cell division [GO:0051301]; endoplasmic reticulum unfolded protein response [GO:0030968]; fat cell differentiation [GO:0045444]; G1/S transition of mitotic cell cycle [GO:0000082]; lactation [GO:0007595]; liver regeneration [GO:0097421]; mammary gland alveolus development [GO:0060749]; mammary gland epithelial cell proliferation [GO:0033598]; negative regulation of epithelial cell differentiation [GO:0030857]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron differentiation [GO:0030182]; positive regulation of mammary gland epithelial cell proliferation [GO:0033601]; re-entry into mitotic cell cycle [GO:0000320]; regulation of G1/S transition of mitotic cell cycle [GO:2000045]; Wnt signaling pathway [GO:0016055] -Q6NUK4 reviewed REEP3_HUMAN Receptor expression-enhancing protein 3 REEP3 C10orf74 cell division [GO:0051301]; endoplasmic reticulum tubular network organization [GO:0071786]; mitotic nuclear membrane reassembly [GO:0007084]; nuclear envelope organization [GO:0006998] -Q86UP6 reviewed CUZD1_HUMAN CUB and zona pellucida-like domain-containing protein 1 (CUB and ZP domain-containing protein 1) (Transmembrane protein UO-44) CUZD1 UNQ224/PRO257 cell adhesion [GO:0007155]; cell division [GO:0051301]; trypsinogen activation [GO:0032023] -Q86W33 reviewed TPRA1_HUMAN Transmembrane protein adipocyte-associated 1 (Integral membrane protein GPR175) (Transmembrane protein 227) TPRA1 GPR175 TMEM227 PP6566 embryonic cleavage [GO:0040016]; G protein-coupled receptor signaling pathway [GO:0007186]; lipid metabolic process [GO:0006629]; negative regulation of mitotic cell cycle phase transition [GO:1901991] -Q99618 reviewed CDCA3_HUMAN Cell division cycle-associated protein 3 (Gene-rich cluster protein C8) (Trigger of mitotic entry protein 1) (TOME-1) CDCA3 C8 GRCC8 TOME1 cell division [GO:0051301]; protein ubiquitination [GO:0016567] -Q9BS18 reviewed APC13_HUMAN Anaphase-promoting complex subunit 13 (APC13) (Cyclosome subunit 13) ANAPC13 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; protein K11-linked ubiquitination [GO:0070979]; protein K48-linked ubiquitination [GO:0070936]; regulation of meiotic cell cycle [GO:0051445]; regulation of mitotic cell cycle [GO:0007346] -Q9C099 reviewed LRCC1_HUMAN Leucine-rich repeat and coiled-coil domain-containing protein 1 (Centrosomal leucine-rich repeat and coiled-coil domain-containing protein) LRRCC1 CLERC KIAA1764 cell division [GO:0051301] -W0FFG4 unreviewed W0FFG4_HUMAN Beclin-1 apoptotic process [GO:0006915]; autophagosome assembly [GO:0000045]; cell division [GO:0051301]; cellular response to nitrogen starvation [GO:0006995]; defense response to virus [GO:0051607]; early endosome to late endosome transport [GO:0045022]; late endosome to vacuole transport [GO:0045324] -A0A023T695 unreviewed A0A023T695_HUMAN Septin cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640]; spermatogenesis [GO:0007283] -A0A024R3C6 unreviewed A0A024R3C6_HUMAN Zinc finger and BTB domain containing 16 isoform 1 (Zinc finger and BTB domain containing 16, isoform CRA_a) ZBTB16 hCG_38015 anterior/posterior pattern specification [GO:0009952]; cell population proliferation [GO:0008283]; central nervous system development [GO:0007417]; embryonic digit morphogenesis [GO:0042733]; embryonic hindlimb morphogenesis [GO:0035116]; embryonic pattern specification [GO:0009880]; forelimb morphogenesis [GO:0035136]; hemopoiesis [GO:0030097]; male germ-line stem cell asymmetric division [GO:0048133]; mesonephros development [GO:0001823]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of myeloid cell differentiation [GO:0045638]; ossification involved in bone maturation [GO:0043931]; positive regulation of apoptotic process [GO:0043065]; positive regulation of NK T cell differentiation [GO:0051138]; protein localization to nucleus [GO:0034504]; regulation of transcription by RNA polymerase II [GO:0006357] -A0A024RDV9 unreviewed A0A024RDV9_HUMAN Spastic paraplegia 20 isoform 1 (Spastic paraplegia 20, spartin (Troyer syndrome), isoform CRA_a) SPG20 hCG_32832 adipose tissue development [GO:0060612]; BMP signaling pathway [GO:0030509]; cell division [GO:0051301]; collateral sprouting in absence of injury [GO:0048669]; lipid droplet organization [GO:0034389]; negative regulation of BMP signaling pathway [GO:0030514]; negative regulation of collateral sprouting in absence of injury [GO:0048698]; neuromuscular process [GO:0050905] -A0A075B7D2 unreviewed A0A075B7D2_HUMAN BRISC and BRCA1-A complex member 2 BABAM2 apoptotic process [GO:0006915]; cell division [GO:0051301]; chromatin organization [GO:0006325]; double-strand break repair [GO:0006302]; mitotic G2 DNA damage checkpoint signaling [GO:0007095]; positive regulation of DNA repair [GO:0045739]; response to ionizing radiation [GO:0010212] -A0A087WW88 unreviewed A0A087WW88_HUMAN Charged multivesicular body protein 2B CHMP2B autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body sorting pathway [GO:0071985]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -A0A087WYY5 unreviewed A0A087WYY5_HUMAN Serine/threonine-protein phosphatase (EC 3.1.3.16) PPP1CC cell division [GO:0051301]; glycogen metabolic process [GO:0005977] -A0A087WYZ9 unreviewed A0A087WYZ9_HUMAN Histone-lysine N-methyltransferase SETDB2 (EC 2.1.1.366) (SET domain bifurcated 2) SETDB2 cell division [GO:0051301] -A0A140T963 unreviewed A0A140T963_HUMAN RNF103-CHMP3 readthrough RNF103-CHMP3 autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body sorting pathway [GO:0071985]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; protein ubiquitination [GO:0016567]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -A0A140VJS9 unreviewed A0A140VJS9_HUMAN Serine/threonine-protein phosphatase (EC 3.1.3.16) cell division [GO:0051301]; glycogen metabolic process [GO:0005977] -A0A140VKG5 unreviewed A0A140VKG5_HUMAN Kinesin-like protein KIF2B hCG_1645031 cell division [GO:0051301]; microtubule-based movement [GO:0007018] -A0A1B0GWG0 unreviewed A0A1B0GWG0_HUMAN Protein 4.1 (Band 4.1) (Erythrocyte membrane protein band 4.1) EPB41 cell division [GO:0051301]; cortical actin cytoskeleton organization [GO:0030866] -A0A2R8Y7Y3 unreviewed A0A2R8Y7Y3_HUMAN Protein 4.1 (Band 4.1) (Erythrocyte membrane protein band 4.1) EPB41 cell division [GO:0051301]; cortical actin cytoskeleton organization [GO:0030866] -A0A2R8YCW8 unreviewed A0A2R8YCW8_HUMAN Protein 4.1 (Band 4.1) (Erythrocyte membrane protein band 4.1) EPB41 cell division [GO:0051301]; cortical actin cytoskeleton organization [GO:0030866] -A0A2R8YD30 unreviewed A0A2R8YD30_HUMAN Protein 4.1 (Band 4.1) (Erythrocyte membrane protein band 4.1) EPB41 hCG_23375 cell division [GO:0051301]; cortical actin cytoskeleton organization [GO:0030866] -A0A384P5S0 unreviewed A0A384P5S0_HUMAN Septin cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640]; regulation of synapse organization [GO:0050807] -A0A3B3ISY8 unreviewed A0A3B3ISY8_HUMAN Calcium and integrin-binding protein 1 (Calmyrin) CIB1 angiogenesis [GO:0001525]; apoptotic process [GO:0006915]; cell adhesion [GO:0007155]; cell differentiation [GO:0030154]; cell division [GO:0051301]; spermatogenesis [GO:0007283] -A0A3B3IUD6 unreviewed A0A3B3IUD6_HUMAN Protein 4.1 (Band 4.1) (Erythrocyte membrane protein band 4.1) EPB41 cell division [GO:0051301]; cortical actin cytoskeleton organization [GO:0030866] -A0A494C1J1 unreviewed A0A494C1J1_HUMAN Cytospin-A SPECC1L cell division [GO:0051301] -A0A5F9ZI21 unreviewed A0A5F9ZI21_HUMAN Rho guanine nucleotide exchange factor 2 (Guanine nucleotide exchange factor H1) ARHGEF2 cell differentiation [GO:0030154]; cell division [GO:0051301]; innate immune response [GO:0045087]; nervous system development [GO:0007399] -A0A6Q8PF35 unreviewed A0A6Q8PF35_HUMAN Charged multivesicular body protein 1a (Chromatin-modifying protein 1a) CHMP1A autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body sorting pathway [GO:0071985]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; protein transport [GO:0015031]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -A0A6Q8PFX8 unreviewed A0A6Q8PFX8_HUMAN Charged multivesicular body protein 1a (Chromatin-modifying protein 1a) CHMP1A autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body sorting pathway [GO:0071985]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; protein transport [GO:0015031]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -A0A6Q8PG85 unreviewed A0A6Q8PG85_HUMAN Charged multivesicular body protein 1a (Chromatin-modifying protein 1a) CHMP1A autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body sorting pathway [GO:0071985]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; protein transport [GO:0015031]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -A0A6Q8PGM8 unreviewed A0A6Q8PGM8_HUMAN Charged multivesicular body protein 1a (Chromatin-modifying protein 1a) CHMP1A autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body sorting pathway [GO:0071985]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; protein transport [GO:0015031]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -A0A6Q8PHU0 unreviewed A0A6Q8PHU0_HUMAN Charged multivesicular body protein 1a (Chromatin-modifying protein 1a) CHMP1A autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body sorting pathway [GO:0071985]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; protein transport [GO:0015031]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -A0A7I2V4F7 unreviewed A0A7I2V4F7_HUMAN Serine/threonine-protein phosphatase (EC 3.1.3.16) PPP1CA cell division [GO:0051301]; glycogen metabolic process [GO:0005977] -A0A7P0T8D4 unreviewed A0A7P0T8D4_HUMAN Sorting nexin SNX9 endocytosis [GO:0006897]; intracellular protein transport [GO:0006886]; mitotic cytokinesis [GO:0000281] -A0A7P0T8S8 unreviewed A0A7P0T8S8_HUMAN Sorting nexin SNX9 endocytosis [GO:0006897]; intracellular protein transport [GO:0006886]; mitotic cytokinesis [GO:0000281] -A0A7P0T8Z2 unreviewed A0A7P0T8Z2_HUMAN Sorting nexin SNX9 endocytosis [GO:0006897]; intracellular protein transport [GO:0006886]; mitotic cytokinesis [GO:0000281] -A0A7P0TBI9 unreviewed A0A7P0TBI9_HUMAN Sorting nexin SNX9 endocytosis [GO:0006897]; intracellular protein transport [GO:0006886]; mitotic cytokinesis [GO:0000281] -A0A7P0Z4A2 unreviewed A0A7P0Z4A2_HUMAN Sorting nexin SNX9 endocytosis [GO:0006897]; intracellular protein transport [GO:0006886]; mitotic cytokinesis [GO:0000281] -A0A7P0Z4A5 unreviewed A0A7P0Z4A5_HUMAN Sorting nexin SNX9 endocytosis [GO:0006897]; intracellular protein transport [GO:0006886]; mitotic cytokinesis [GO:0000281] -A0A8I5KUG8 unreviewed A0A8I5KUG8_HUMAN Cohesin subunit SA (SCC3 homolog) (Stromal antigen) STAG2 cell division [GO:0051301]; chromosome segregation [GO:0007059]; sister chromatid cohesion [GO:0007062] -A0A8Q3SIN5 unreviewed A0A8Q3SIN5_HUMAN Rho guanine nucleotide exchange factor 2 (Guanine nucleotide exchange factor H1) ARHGEF2 cell differentiation [GO:0030154]; cell division [GO:0051301]; innate immune response [GO:0045087]; nervous system development [GO:0007399] -A0A8V8TQ71 unreviewed A0A8V8TQ71_HUMAN Serine/threonine-protein phosphatase (EC 3.1.3.16) PPP1CB cell division [GO:0051301]; glycogen metabolic process [GO:0005977] -A0A8V8TRH9 unreviewed A0A8V8TRH9_HUMAN Serine/threonine-protein phosphatase (EC 3.1.3.16) PPP1CB cell division [GO:0051301]; glycogen metabolic process [GO:0005977] -A0A994J847 unreviewed A0A994J847_HUMAN Protein 4.1 (Band 4.1) (Erythrocyte membrane protein band 4.1) EPB41 cell division [GO:0051301]; cortical actin cytoskeleton organization [GO:0030866] -A2NFR5 unreviewed A2NFR5_HUMAN BRISC and BRCA1-A complex member 2 Hin-3 apoptotic process [GO:0006915]; cell division [GO:0051301]; chromatin organization [GO:0006325]; double-strand break repair [GO:0006302]; mitotic G2 DNA damage checkpoint signaling [GO:0007095]; positive regulation of DNA repair [GO:0045739]; response to ionizing radiation [GO:0010212] -A4GYY8 unreviewed A4GYY8_HUMAN Septin-7 DKFZp686F17268 cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640]; spermatogenesis [GO:0007283] -A8K3D0 unreviewed A8K3D0_HUMAN Septin cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640]; spermatogenesis [GO:0007283] -A8K521 unreviewed A8K521_HUMAN DNA replication licensing factor MCM5 (EC 3.6.4.12) cell division [GO:0051301]; DNA replication initiation [GO:0006270]; double-strand break repair via break-induced replication [GO:0000727] -A8K8M9 unreviewed A8K8M9_HUMAN Cohesin subunit SA (SCC3 homolog) (Stromal antigen) cell division [GO:0051301]; chromosome segregation [GO:0007059]; sister chromatid cohesion [GO:0007062] -A8KAQ0 unreviewed A8KAQ0_HUMAN L-dopachrome tautomerase (EC 5.3.3.12) (L-dopachrome Delta-isomerase) (Tyrosinase-related protein 2) developmental pigmentation [GO:0048066]; melanin biosynthetic process from tyrosine [GO:0006583]; positive regulation of neuroblast proliferation [GO:0002052]; ventricular zone neuroblast division [GO:0021847] -B0AZQ4 unreviewed B0AZQ4_HUMAN Structural maintenance of chromosomes protein cell division [GO:0051301]; meiotic cell cycle [GO:0051321]; mitotic sister chromatid cohesion [GO:0007064] -B0AZS5 unreviewed B0AZS5_HUMAN Kinesin-like protein cell division [GO:0051301]; microtubule-based movement [GO:0007018] -B1AHB0 unreviewed B1AHB0_HUMAN DNA replication licensing factor MCM5 (EC 3.6.4.12) MCM5 hCG_41525 cell division [GO:0051301]; DNA replication initiation [GO:0006270]; double-strand break repair via break-induced replication [GO:0000727] -B1AHB1 unreviewed B1AHB1_HUMAN DNA replication licensing factor MCM5 (EC 3.6.4.12) MCM5 hCG_41525 cell division [GO:0051301]; DNA duplex unwinding [GO:0032508]; DNA replication initiation [GO:0006270] -B1AMT4 unreviewed B1AMT4_HUMAN Cohesin subunit SA (SCC3 homolog) (Stromal antigen) STAG2 cell division [GO:0051301]; chromosome segregation [GO:0007059]; sister chromatid cohesion [GO:0007062] -B2R841 unreviewed B2R841_HUMAN Serine/threonine-protein kinase PLK (EC 2.7.11.21) (Polo-like kinase) cell division [GO:0051301]; mitotic spindle organization [GO:0007052] -B2R8Y6 unreviewed B2R8Y6_HUMAN Cohesin subunit SA (SCC3 homolog) (Stromal antigen) cell division [GO:0051301]; chromosome segregation [GO:0007059]; sister chromatid cohesion [GO:0007062] -B2RA72 unreviewed B2RA72_HUMAN cDNA, FLJ94734, Homo sapiens CHMP1.5 protein (CHMP1.5), mRNA autophagosome maturation [GO:0097352]; endosome transport via multivesicular body sorting pathway [GO:0032509]; late endosome to lysosome transport [GO:1902774]; late endosome to vacuole transport [GO:0045324]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; protein transport [GO:0015031]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -B2RC06 unreviewed B2RC06_HUMAN Aurora kinase (EC 2.7.11.1) cell division [GO:0051301]; mitotic spindle organization [GO:0007052]; regulation of cytokinesis [GO:0032465] -B2RMV2 unreviewed B2RMV2_HUMAN Cytospin-A CYTSA KIAA0376 hCG_1811992 actin cytoskeleton organization [GO:0030036]; cell division [GO:0051301] -B2RU25 unreviewed B2RU25_HUMAN Cohesin subunit SA (SCC3 homolog) (Stromal antigen) STAG3 cell division [GO:0051301]; chromosome segregation [GO:0007059]; sister chromatid cohesion [GO:0007062] -B3KMN6 unreviewed B3KMN6_HUMAN Charged multivesicular body protein 7 (Chromatin-modifying protein 7) autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; late endosome to vacuole transport via multivesicular body sorting pathway [GO:0032511]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; vesicle budding from membrane [GO:0006900]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -B3KRZ9 unreviewed B3KRZ9_HUMAN Charged multivesicular body protein 7 (Chromatin-modifying protein 7) autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; late endosome to vacuole transport via multivesicular body sorting pathway [GO:0032511]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; vesicle budding from membrane [GO:0006900]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -B3KS38 unreviewed B3KS38_HUMAN M-phase inducer phosphatase (EC 3.1.3.48) CDC25B hCG_39252 cell division [GO:0051301]; G2/M transition of mitotic cell cycle [GO:0000086]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; positive regulation of G2/MI transition of meiotic cell cycle [GO:0110032] -B3KUH0 unreviewed B3KUH0_HUMAN Charged multivesicular body protein 7 (Chromatin-modifying protein 7) autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; late endosome to vacuole transport via multivesicular body sorting pathway [GO:0032511]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; vesicle budding from membrane [GO:0006900]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -B4DHM9 unreviewed B4DHM9_HUMAN Aurora kinase (EC 2.7.11.1) cell division [GO:0051301]; mitotic spindle organization [GO:0007052]; regulation of cytokinesis [GO:0032465] -B4DJ75 unreviewed B4DJ75_HUMAN Serine/threonine-protein phosphatase (EC 3.1.3.16) PPP1CB cell division [GO:0051301]; glycogen metabolic process [GO:0005977] -B4DL75 unreviewed B4DL75_HUMAN Cyclin-dependent kinase 8 (EC 2.7.11.22) (EC 2.7.11.23) (Cell division protein kinase 8) cell division [GO:0051301] -B4DM85 unreviewed B4DM85_HUMAN Kinesin-like protein cell division [GO:0051301]; microtubule-based movement [GO:0007018] -B4DNE4 unreviewed B4DNE4_HUMAN Septin cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640]; spermatogenesis [GO:0007283] -B4DPQ6 unreviewed B4DPQ6_HUMAN Septin cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640]; spermatogenesis [GO:0007283] -B4DRJ9 unreviewed B4DRJ9_HUMAN non-specific serine/threonine protein kinase (EC 2.7.11.1) actomyosin structure organization [GO:0031032]; cortical actin cytoskeleton organization [GO:0030866]; embryonic morphogenesis [GO:0048598]; mitotic cytokinesis [GO:0000281]; regulation of cell junction assembly [GO:1901888]; Rho protein signal transduction [GO:0007266] -B4DS82 unreviewed B4DS82_HUMAN Beclin-1 apoptotic process [GO:0006915]; autophagosome assembly [GO:0000045]; cell division [GO:0051301]; cellular response to nitrogen starvation [GO:0006995]; defense response to virus [GO:0051607]; early endosome to late endosome transport [GO:0045022]; late endosome to vacuole transport [GO:0045324] -B4DUD6 unreviewed B4DUD6_HUMAN Septin cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640]; spermatogenesis [GO:0007283] -B4DWX0 unreviewed B4DWX0_HUMAN cDNA FLJ57642, highly similar to Homo sapiens spire homolog 1 (SPIRE1), mRNA actin filament network formation [GO:0051639]; actin filament polymerization [GO:0030041]; actin nucleation [GO:0045010]; cleavage furrow formation [GO:0036089]; establishment of meiotic spindle localization [GO:0051295]; Golgi vesicle transport [GO:0048193]; intracellular transport [GO:0046907]; polar body extrusion after meiotic divisions [GO:0040038]; protein transport [GO:0015031] -B4DXN3 unreviewed B4DXN3_HUMAN Charged multivesicular body protein 1a (Chromatin-modifying protein 1a) autophagosome maturation [GO:0097352]; endosome transport via multivesicular body sorting pathway [GO:0032509]; late endosome to lysosome transport [GO:1902774]; late endosome to vacuole transport [GO:0045324]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; protein transport [GO:0015031]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -B4DYS8 unreviewed B4DYS8_HUMAN Cohesin subunit SA (SCC3 homolog) (Stromal antigen) cell division [GO:0051301]; chromosome segregation [GO:0007059]; sister chromatid cohesion [GO:0007062] -B4E049 unreviewed B4E049_HUMAN Septin cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640] -B4E163 unreviewed B4E163_HUMAN Serine/threonine-protein phosphatase (EC 3.1.3.16) cell division [GO:0051301]; circadian regulation of gene expression [GO:0032922]; glycogen metabolic process [GO:0005977]; regulation of circadian rhythm [GO:0042752] -B4E1U9 unreviewed B4E1U9_HUMAN Cell division control protein 42 homolog (EC 3.6.5.2) anatomical structure morphogenesis [GO:0009653]; Cdc42 protein signal transduction [GO:0032488]; cell division [GO:0051301]; endocytosis [GO:0006897]; establishment or maintenance of cell polarity [GO:0007163]; modification of synaptic structure [GO:0099563]; positive regulation of cellular component organization [GO:0051130]; regulation of filopodium assembly [GO:0051489] -B5MCX3 unreviewed B5MCX3_HUMAN Septin-2 SEPTIN2 cell division [GO:0051301] -B7ZB67 unreviewed B7ZB67_HUMAN Serine/threonine-protein phosphatase (EC 3.1.3.16) cell division [GO:0051301]; circadian regulation of gene expression [GO:0032922]; glycogen metabolic process [GO:0005977]; regulation of circadian rhythm [GO:0042752] -B7ZVZ1 unreviewed B7ZVZ1_HUMAN Septin SEPT8 cytoskeleton-dependent cytokinesis [GO:0061640] -C9J0A7 unreviewed C9J0A7_HUMAN Charged multivesicular body protein 2B CHMP2B autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body sorting pathway [GO:0071985]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -C9J2G0 unreviewed C9J2G0_HUMAN BRISC and BRCA1-A complex member 2 BABAM2 apoptotic process [GO:0006915]; cell division [GO:0051301]; chromatin organization [GO:0006325]; double-strand break repair [GO:0006302]; mitotic G2 DNA damage checkpoint signaling [GO:0007095]; positive regulation of DNA repair [GO:0045739]; response to ionizing radiation [GO:0010212] -C9J9S3 unreviewed C9J9S3_HUMAN Serine/threonine-protein phosphatase (EC 3.1.3.16) PPP1CB cell division [GO:0051301]; glycogen metabolic process [GO:0005977] -C9JP48 unreviewed C9JP48_HUMAN Serine/threonine-protein phosphatase (EC 3.1.3.16) PPP1CB cell division [GO:0051301]; glycogen metabolic process [GO:0005977] -D6R9M0 unreviewed D6R9M0_HUMAN Kinesin-like protein KIF2A cell division [GO:0051301]; microtubule-based movement [GO:0007018] -E1YMX4 unreviewed E1YMX4_HUMAN M-phase inducer phosphatase (EC 3.1.3.48) CDC25B cell division [GO:0051301]; G2/M transition of mitotic cell cycle [GO:0000086]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; positive regulation of G2/MI transition of meiotic cell cycle [GO:0110032] -E9PMD7 unreviewed E9PMD7_HUMAN Serine/threonine-protein phosphatase (EC 3.1.3.16) PPP1CA cell division [GO:0051301]; glycogen metabolic process [GO:0005977] -E9PQ80 unreviewed E9PQ80_HUMAN Charged multivesicular body protein 4A CHMP4A autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body sorting pathway [GO:0071985]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -E9PQI5 unreviewed E9PQI5_HUMAN Charged multivesicular body protein 4A CHMP4A autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body sorting pathway [GO:0071985]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -F6Q6H0 unreviewed F6Q6H0_HUMAN DNA endonuclease RBBP8 RBBP8 cell division [GO:0051301]; DNA repair [GO:0006281]; meiotic cell cycle [GO:0051321] -F8VR82 unreviewed F8VR82_HUMAN Serine/threonine-protein phosphatase (EC 3.1.3.16) PPP1CC cell division [GO:0051301]; glycogen metabolic process [GO:0005977] -F8VUA2 unreviewed F8VUA2_HUMAN Charged multivesicular body protein 1a (Chromatin-modifying protein 1a) CHMP1A autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body sorting pathway [GO:0071985]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; protein transport [GO:0015031]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -F8VVT7 unreviewed F8VVT7_HUMAN Charged multivesicular body protein 1a (Chromatin-modifying protein 1a) CHMP1A autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body sorting pathway [GO:0071985]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; protein transport [GO:0015031]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -F8VYE8 unreviewed F8VYE8_HUMAN Serine/threonine-protein phosphatase (EC 3.1.3.16) PPP1CC cell division [GO:0051301]; glycogen metabolic process [GO:0005977] -F8W0W8 unreviewed F8W0W8_HUMAN Serine/threonine-protein phosphatase (EC 3.1.3.16) PPP1CC cell division [GO:0051301]; glycogen metabolic process [GO:0005977] -F8W733 unreviewed F8W733_HUMAN BRISC and BRCA1-A complex member 2 BABAM2 apoptotic process [GO:0006915]; cell division [GO:0051301]; chromatin organization [GO:0006325]; double-strand break repair [GO:0006302]; mitotic G2 DNA damage checkpoint signaling [GO:0007095]; positive regulation of DNA repair [GO:0045739]; response to ionizing radiation [GO:0010212] -H0Y3Y6 unreviewed H0Y3Y6_HUMAN Serine/threonine-protein phosphatase (EC 3.1.3.16) PPP1CB cell division [GO:0051301]; glycogen metabolic process [GO:0005977] -H0YIN6 unreviewed H0YIN6_HUMAN Charged multivesicular body protein 4A CHMP4A autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body sorting pathway [GO:0071985]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -H3BTR4 unreviewed H3BTR4_HUMAN Centromere protein T CENPT cell division [GO:0051301]; kinetochore assembly [GO:0051382] -I3L3E4 unreviewed I3L3E4_HUMAN Charged multivesicular body protein 6 CHMP6 autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body sorting pathway [GO:0071985]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -I3L4A1 unreviewed I3L4A1_HUMAN Charged multivesicular body protein 6 CHMP6 autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body sorting pathway [GO:0071985]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -I3L4G8 unreviewed I3L4G8_HUMAN Charged multivesicular body protein 6 CHMP6 autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body sorting pathway [GO:0071985]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -I6L8A6 unreviewed I6L8A6_HUMAN DNA endonuclease RBBP8 RBBP8 cell division [GO:0051301]; DNA repair [GO:0006281]; meiotic cell cycle [GO:0051321] -J3KT86 unreviewed J3KT86_HUMAN Aurora kinase (EC 2.7.11.1) AURKB cell division [GO:0051301] -J3KTD6 unreviewed J3KTD6_HUMAN Aurora kinase (EC 2.7.11.1) AURKB cell division [GO:0051301] -J3QLN8 unreviewed J3QLN8_HUMAN Aurora kinase (EC 2.7.11.1) AURKB cell division [GO:0051301] -J3QR41 unreviewed J3QR41_HUMAN Aurora kinase (EC 2.7.11.1) AURKB cell division [GO:0051301] -M0QXX8 unreviewed M0QXX8_HUMAN Charged multivesicular body protein 2a (Chromatin-modifying protein 2a) CHMP2A autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body sorting pathway [GO:0071985]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -M0R0I0 unreviewed M0R0I0_HUMAN BRISC and BRCA1-A complex member 1 (Mediator of RAP80 interactions and targeting subunit of 40 kDa) (New component of the BRCA1-A complex) BABAM1 cell division [GO:0051301]; chromatin organization [GO:0006325]; positive regulation of DNA repair [GO:0045739] -M0R193 unreviewed M0R193_HUMAN BRISC and BRCA1-A complex member 1 (Mediator of RAP80 interactions and targeting subunit of 40 kDa) (New component of the BRCA1-A complex) BABAM1 cell division [GO:0051301]; chromatin organization [GO:0006325]; positive regulation of DNA repair [GO:0045739] -M0R1L7 unreviewed M0R1L7_HUMAN Charged multivesicular body protein 2a (Chromatin-modifying protein 2a) CHMP2A autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body sorting pathway [GO:0071985]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -M0R1T5 unreviewed M0R1T5_HUMAN Charged multivesicular body protein 2a (Chromatin-modifying protein 2a) CHMP2A autophagosome maturation [GO:0097352]; late endosome to lysosome transport [GO:1902774]; midbody abscission [GO:0061952]; mitotic metaphase chromosome alignment [GO:0007080]; multivesicular body sorting pathway [GO:0071985]; nuclear membrane reassembly [GO:0031468]; plasma membrane repair [GO:0001778]; regulation of mitotic spindle assembly [GO:1901673]; ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway [GO:0043162]; viral budding from plasma membrane [GO:0046761]; viral budding via host ESCRT complex [GO:0039702] -M0R2A4 unreviewed M0R2A4_HUMAN BRISC and BRCA1-A complex member 1 (Mediator of RAP80 interactions and targeting subunit of 40 kDa) (New component of the BRCA1-A complex) BABAM1 cell division [GO:0051301]; chromatin organization [GO:0006325]; positive regulation of DNA repair [GO:0045739] -M0R2I2 unreviewed M0R2I2_HUMAN BRISC and BRCA1-A complex member 1 (Mediator of RAP80 interactions and targeting subunit of 40 kDa) (New component of the BRCA1-A complex) BABAM1 cell division [GO:0051301]; chromatin organization [GO:0006325]; positive regulation of DNA repair [GO:0045739] -M0R2K3 unreviewed M0R2K3_HUMAN BRISC and BRCA1-A complex member 1 (Mediator of RAP80 interactions and targeting subunit of 40 kDa) (New component of the BRCA1-A complex) BABAM1 cell division [GO:0051301]; chromatin organization [GO:0006325]; positive regulation of DNA repair [GO:0045739] -M0R3F4 unreviewed M0R3F4_HUMAN BRISC and BRCA1-A complex member 1 (Mediator of RAP80 interactions and targeting subunit of 40 kDa) (New component of the BRCA1-A complex) BABAM1 cell division [GO:0051301]; chromatin organization [GO:0006325]; positive regulation of DNA repair [GO:0045739] -Q14DU5 unreviewed Q14DU5_HUMAN non-specific serine/threonine protein kinase (EC 2.7.11.1) ROCK2 actomyosin structure organization [GO:0031032]; cortical actin cytoskeleton organization [GO:0030866]; embryonic morphogenesis [GO:0048598]; mitotic cytokinesis [GO:0000281]; regulation of cell junction assembly [GO:1901888]; Rho protein signal transduction [GO:0007266] -Q3LIE9 unreviewed Q3LIE9_HUMAN Septin Nbla02942 cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640]; spermatogenesis [GO:0007283] -Q4LE48 unreviewed Q4LE48_HUMAN Cohesin subunit SA (SCC3 homolog) (Stromal antigen) STAG1 variant protein cell division [GO:0051301]; chromosome segregation [GO:0007059]; sister chromatid cohesion [GO:0007062] -Q53G83 unreviewed Q53G83_HUMAN Small ribosomal subunit protein uS3 (EC 4.2.99.18) (40S ribosomal protein S3) apoptotic process [GO:0006915]; cell division [GO:0051301]; DNA repair [GO:0006281]; positive regulation of apoptotic signaling pathway [GO:2001235]; regulation of translation [GO:0006417]; translation [GO:0006412] -Q541S4 unreviewed Q541S4_HUMAN Septin SEPT6 hCG_23191 cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640] -Q548C9 unreviewed Q548C9_HUMAN Septin SEPT6 hCG_23191 cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640] -Q59EY4 unreviewed Q59EY4_HUMAN Septin-7 cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640]; spermatogenesis [GO:0007283] -Q5JW53 unreviewed Q5JW53_HUMAN DSN1 component of MIS12 kinetochore complex DSN1 cell division [GO:0051301]; chromosome segregation [GO:0007059] -Q5JW54 unreviewed Q5JW54_HUMAN DSN1 component of MIS12 kinetochore complex DSN1 cell division [GO:0051301]; chromosome segregation [GO:0007059] -Q5T0G8 unreviewed Q5T0G8_HUMAN Annexin ANXA11 hCG_22492 cytokinetic process [GO:0032506]; phagocytosis [GO:0006909] -Q5T178 unreviewed Q5T178_HUMAN Cyclin-dependent kinases regulatory subunit CKS1B hCG_1739274 cell division [GO:0051301]; fibroblast proliferation [GO:0048144]; mitotic cell cycle phase transition [GO:0044772]; regulation of DNA-templated transcription [GO:0006355]; regulation of mitotic cell cycle [GO:0007346] -Q5Y191 unreviewed Q5Y191_HUMAN Aurora kinase (EC 2.7.11.1) AURKC cell division [GO:0051301] -Q643R0 unreviewed Q643R0_HUMAN HCTP4 (TPX2, microtubule-associated, homolog (Xenopus laevis), isoform CRA_b) (cDNA, FLJ92922) HCTP4 TPX2 hCG_38821 cell division [GO:0051301]; mitotic spindle assembly [GO:0090307]; regulation of mitotic spindle organization [GO:0060236] -Q6AI02 unreviewed Q6AI02_HUMAN Cohesin subunit SA (SCC3 homolog) (Stromal antigen) DKFZp686P168 cell division [GO:0051301]; chromosome segregation [GO:0007059]; sister chromatid cohesion [GO:0007062] -Q6MZM3 unreviewed Q6MZM3_HUMAN Cohesin subunit SA (SCC3 homolog) (Stromal antigen) DKFZp686C21148 cell division [GO:0051301]; chromosome segregation [GO:0007059]; sister chromatid cohesion [GO:0007062] -Q6MZM4 unreviewed Q6MZM4_HUMAN Cohesin subunit SA (SCC3 homolog) (Stromal antigen) DKFZp686P16143 cell division [GO:0051301]; chromosome segregation [GO:0007059]; sister chromatid cohesion [GO:0007062] -Q6MZP3 unreviewed Q6MZP3_HUMAN Cohesin subunit SA (SCC3 homolog) (Stromal antigen) DKFZp686I05169 cell division [GO:0051301]; chromosome segregation [GO:0007059]; sister chromatid cohesion [GO:0007062] -Q6MZW8 unreviewed Q6MZW8_HUMAN M-phase inducer phosphatase (EC 3.1.3.48) DKFZp686G14213 cell division [GO:0051301]; G2/M transition of mitotic cell cycle [GO:0000086]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; positive regulation of G2/MI transition of meiotic cell cycle [GO:0110032] -Q6NT82 unreviewed Q6NT82_HUMAN Septin SEPT6 cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640] -Q86VX4 unreviewed Q86VX4_HUMAN Structural maintenance of chromosomes protein SMC3 cell division [GO:0051301]; meiotic cell cycle [GO:0051321]; mitotic sister chromatid cohesion [GO:0007064] -Q8IYS8 reviewed BD1L2_HUMAN Biorientation of chromosomes in cell division protein 1-like 2 (Biorientation of chromosomes in cell division protein 1 pseudogene) (Protein FAM44C) BOD1L2 BOD1P FAM44C cell division [GO:0051301] -Q8N9V7 reviewed TOPZ1_HUMAN Protein TOPAZ1 (Testis- and ovary-specific PAZ domain-containing protein 1) TOPAZ1 C3orf77 apoptotic process [GO:0006915]; ectopic germ cell programmed cell death [GO:0035234]; spermatocyte division [GO:0048137] -Q8TC62 unreviewed Q8TC62_HUMAN Septin SEPT7 cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640]; spermatogenesis [GO:0007283] -Q8WVI7 reviewed PPR1C_HUMAN Protein phosphatase 1 regulatory subunit 1C (Inhibitor-5 of protein phosphatase 1) (IPP5) PPP1R1C cell division [GO:0051301]; intracellular signal transduction [GO:0035556] -Q96KC0 unreviewed Q96KC0_HUMAN Septin-11 cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640] -Q9BTV7 reviewed CABL2_HUMAN CDK5 and ABL1 enzyme substrate 2 (Interactor with CDK3 2) (Ik3-2) CABLES2 C20orf150 cell division [GO:0051301]; regulation of cell cycle [GO:0051726] -Q9UPN1 unreviewed Q9UPN1_HUMAN Serine/threonine-protein phosphatase (EC 3.1.3.16) PPP1CC cell division [GO:0051301]; glycogen metabolic process [GO:0005977] -V9GYM8 unreviewed V9GYM8_HUMAN Rho guanine nucleotide exchange factor 2 (Guanine nucleotide exchange factor H1) ARHGEF2 cell differentiation [GO:0030154]; cell division [GO:0051301]; innate immune response [GO:0045087]; nervous system development [GO:0007399] -V9HW04 unreviewed V9HW04_HUMAN Serine/threonine-protein phosphatase (EC 3.1.3.16) HEL-S-80p cell division [GO:0051301]; circadian regulation of gene expression [GO:0032922]; entrainment of circadian clock by photoperiod [GO:0043153]; glycogen metabolic process [GO:0005977] -V9HW16 unreviewed V9HW16_HUMAN Aurora kinase (EC 2.7.11.1) HEL-S-90 cell division [GO:0051301]; mitotic spindle organization [GO:0007052]; regulation of cytokinesis [GO:0032465] -X5DP35 unreviewed X5DP35_HUMAN NudE neurodevelopment protein 1 isoform A NDE1 cell differentiation [GO:0030154]; cell division [GO:0051301]; cell migration [GO:0016477]; centrosome localization [GO:0051642]; chromosome segregation [GO:0007059]; establishment of chromosome localization [GO:0051303]; establishment of mitotic spindle orientation [GO:0000132]; microtubule nucleation [GO:0007020]; mitotic centrosome separation [GO:0007100]; nervous system development [GO:0007399]; vesicle transport along microtubule [GO:0047496] -X5DR54 unreviewed X5DR54_HUMAN Epididymis secretory sperm binding protein (NudE neurodevelopment protein 1 isoform B) (NudE nuclear distribution gene E homolog 1 (A. nidulans), isoform CRA_b) NDE1 hCG_38895 cell division [GO:0051301]; centrosome duplication [GO:0051298]; centrosome localization [GO:0051642]; cerebral cortex development [GO:0021987]; chromosome segregation [GO:0007059]; establishment of chromosome localization [GO:0051303]; establishment of mitotic spindle orientation [GO:0000132]; microtubule nucleation [GO:0007020]; mitotic centrosome separation [GO:0007100]; neuroblast proliferation [GO:0007405]; neuron migration [GO:0001764]; vesicle transport along microtubule [GO:0047496] -X6RJS7 unreviewed X6RJS7_HUMAN Lys-63-specific deubiquitinase (EC 3.4.19.-) BRCC3 cell division [GO:0051301]; double-strand break repair [GO:0006302]; mitotic G2 DNA damage checkpoint signaling [GO:0007095]; positive regulation of DNA repair [GO:0045739]; proteolysis [GO:0006508]; response to ionizing radiation [GO:0010212] -A0A024QZP7 unreviewed A0A024QZP7_HUMAN Cyclin dependent kinase 1 CDK1 cell division [GO:0051301] -A0A0G3DHS8 unreviewed A0A0G3DHS8_HUMAN Pluripotent specific cyclin E1 pCCNE1 cell division [GO:0051301]; G1/S transition of mitotic cell cycle [GO:0000082] -A0A0J9YY14 unreviewed A0A0J9YY14_HUMAN NudE neurodevelopment protein 1 NDE1 cell differentiation [GO:0030154]; cell division [GO:0051301]; nervous system development [GO:0007399] -A0A0S2Z5A5 unreviewed A0A0S2Z5A5_HUMAN Septin 9 isoform 1 SEPT9 cytoskeleton-dependent cytokinesis [GO:0061640] -A0A0S2Z5M9 unreviewed A0A0S2Z5M9_HUMAN Cell division cycle 73 Paf1/RNA polymerase II complex component-like protein isoform 1 CDC73 cell division [GO:0051301]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; transcription elongation by RNA polymerase II [GO:0006368] -A0A0S2Z5W9 unreviewed A0A0S2Z5W9_HUMAN Septin 9 isoform 3 SEPT9 cytoskeleton-dependent cytokinesis [GO:0061640] -A0A140VJG0 unreviewed A0A140VJG0_HUMAN Cyclin-A1 cell division [GO:0051301]; mitotic cell cycle phase transition [GO:0044772] -A0A140VJU2 unreviewed A0A140VJU2_HUMAN Testicular tissue protein Li 168 cytoskeleton-dependent cytokinesis [GO:0061640] -A0A140VJV9 unreviewed A0A140VJV9_HUMAN Testicular tissue protein Li 186 fertilization [GO:0009566]; homologous chromosome pairing at meiosis [GO:0007129]; meiotic DNA repair synthesis [GO:0000711]; regulation of meiotic cell cycle [GO:0051445]; reproductive system development [GO:0061458]; spermatocyte division [GO:0048137] -A0A1W2PRU0 unreviewed A0A1W2PRU0_HUMAN Alpha-endosulfine ENSA cell division [GO:0051301] -A0A220T1R9 unreviewed A0A220T1R9_HUMAN ANKLE2 ANKLE2 cell division [GO:0051301]; negative regulation of phosphorylation [GO:0042326]; positive regulation of protein dephosphorylation [GO:0035307] -A0A2R8Y420 unreviewed A0A2R8Y420_HUMAN Protein 4.1 (Band 4.1) (Erythrocyte membrane protein band 4.1) EPB41 cell division [GO:0051301]; cortical actin cytoskeleton organization [GO:0030866] -A0A2R8Y4N6 unreviewed A0A2R8Y4N6_HUMAN Protein 4.1 (Band 4.1) (Erythrocyte membrane protein band 4.1) EPB41 cell division [GO:0051301]; cortical actin cytoskeleton organization [GO:0030866] -A0A2R8Y6D0 unreviewed A0A2R8Y6D0_HUMAN Protein 4.1 (Band 4.1) (Erythrocyte membrane protein band 4.1) EPB41 cell division [GO:0051301]; cortical actin cytoskeleton organization [GO:0030866] -A0A2R8Y7N0 unreviewed A0A2R8Y7N0_HUMAN Protein 4.1 (Band 4.1) (Erythrocyte membrane protein band 4.1) EPB41 cell division [GO:0051301]; cortical actin cytoskeleton organization [GO:0030866] -A0A2X0U4T9 unreviewed A0A2X0U4T9_HUMAN RACGAP1 RACGAP1 mitotic cytokinesis [GO:0000281]; mitotic spindle midzone assembly [GO:0051256]; regulation of small GTPase mediated signal transduction [GO:0051056]; Rho protein signal transduction [GO:0007266] -A0A3B3ITC5 unreviewed A0A3B3ITC5_HUMAN Protein 4.1 (Band 4.1) (Erythrocyte membrane protein band 4.1) EPB41 cell division [GO:0051301] -A0A3B3ITM0 unreviewed A0A3B3ITM0_HUMAN Guanine nucleotide-binding protein G(i) subunit alpha-1 (Adenylate cyclase-inhibiting G alpha protein) GNAI1 adenylate cyclase-modulating G protein-coupled receptor signaling pathway [GO:0007188]; cell division [GO:0051301] -A0A3B3ITP0 unreviewed A0A3B3ITP0_HUMAN Protein 4.1 (Band 4.1) (Erythrocyte membrane protein band 4.1) EPB41 cell division [GO:0051301] -A0A4P8L6U8 unreviewed A0A4P8L6U8_HUMAN Septin 12 SEPT12 cytoskeleton-dependent cytokinesis [GO:0061640] -A0A590UJF1 unreviewed A0A590UJF1_HUMAN Stimulated by retinoic acid 8 STRA8 activation of meiosis [GO:0090427]; cellular response to retinoic acid [GO:0071300]; male germ-line stem cell asymmetric division [GO:0048133]; meiotic cell cycle [GO:0051321]; oogenesis [GO:0048477]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A5F9ZHQ7 unreviewed A0A5F9ZHQ7_HUMAN Uncharacterized protein cell division [GO:0051301]; spindle assembly [GO:0051225] -A0A6Q8PEY3 unreviewed A0A6Q8PEY3_HUMAN NudE neurodevelopment protein 1 (NudE nuclear distribution gene E homolog 1 (A. nidulans), isoform CRA_c) NDE1 hCG_38895 cell differentiation [GO:0030154]; cell division [GO:0051301]; nervous system development [GO:0007399] -A0A6Q8PFT2 unreviewed A0A6Q8PFT2_HUMAN Platelet activating factor acetylhydrolase 1b regulatory subunit 1 PAFAH1B1 cell differentiation [GO:0030154]; cell division [GO:0051301]; lipid catabolic process [GO:0016042]; nervous system development [GO:0007399] -A0A6Q8PG46 unreviewed A0A6Q8PG46_HUMAN NudE neurodevelopment protein 1 NDE1 cell differentiation [GO:0030154]; cell division [GO:0051301]; nervous system development [GO:0007399] -A0A6Q8PG63 unreviewed A0A6Q8PG63_HUMAN Platelet activating factor acetylhydrolase 1b regulatory subunit 1 PAFAH1B1 cell differentiation [GO:0030154]; cell division [GO:0051301]; lipid catabolic process [GO:0016042]; nervous system development [GO:0007399] -A0A6Q8PGV6 unreviewed A0A6Q8PGV6_HUMAN NudE neurodevelopment protein 1 NDE1 cell differentiation [GO:0030154]; cell division [GO:0051301]; nervous system development [GO:0007399] -A0A6Q8PGZ3 unreviewed A0A6Q8PGZ3_HUMAN G1/S-specific cyclin-D2 CCND2 cell division [GO:0051301] -A0A7I2V403 unreviewed A0A7I2V403_HUMAN Zinc finger FYVE domain-containing protein 26 ZFYVE26 double-strand break repair via homologous recombination [GO:0000724]; mitotic cytokinesis [GO:0000281] -A0A7I2YQU3 unreviewed A0A7I2YQU3_HUMAN Zinc finger FYVE domain-containing protein 26 ZFYVE26 double-strand break repair via homologous recombination [GO:0000724]; mitotic cytokinesis [GO:0000281] -A0A7I2YQV0 unreviewed A0A7I2YQV0_HUMAN Zinc finger FYVE domain-containing protein 26 ZFYVE26 double-strand break repair via homologous recombination [GO:0000724]; mitotic cytokinesis [GO:0000281] -A0A7P0T8C7 unreviewed A0A7P0T8C7_HUMAN Sorting nexin 9 SNX9 endocytosis [GO:0006897]; intracellular protein transport [GO:0006886]; mitotic cytokinesis [GO:0000281] -A0A7P0T8Z7 unreviewed A0A7P0T8Z7_HUMAN Sorting nexin 9 SNX9 endocytosis [GO:0006897]; intracellular protein transport [GO:0006886]; mitotic cytokinesis [GO:0000281] -A0A7P0Z491 unreviewed A0A7P0Z491_HUMAN Assembly factor for spindle microtubules ASPM cell division [GO:0051301] -A0A7P0Z4R7 unreviewed A0A7P0Z4R7_HUMAN Assembly factor for spindle microtubules ASPM cell division [GO:0051301] -A0A8I5KT00 unreviewed A0A8I5KT00_HUMAN Condensin-2 complex subunit D3 NCAPD3 cell division [GO:0051301]; mitotic chromosome condensation [GO:0007076] -A2VCQ5 unreviewed A2VCQ5_HUMAN MAFK protein MAFK cytoskeleton-dependent cytokinesis [GO:0061640] -A4D2P2 unreviewed A4D2P2_HUMAN Ras-related C3 botulinum toxin substrate 1 (Rho family, small GTP binding protein Rac1) RAC1 hCG_14926 tcag7.839 cortical cytoskeleton organization [GO:0030865]; engulfment of apoptotic cell [GO:0043652]; establishment or maintenance of cell polarity [GO:0007163]; mitotic cytokinesis [GO:0000281]; motor neuron axon guidance [GO:0008045]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of cell shape [GO:0008360]; small GTPase-mediated signal transduction [GO:0007264] -A4QPB0 unreviewed A4QPB0_HUMAN IQ motif containing GTPase activating protein 1 IQGAP1 epidermal growth factor receptor signaling pathway [GO:0007173]; fibroblast migration [GO:0010761]; mitotic actomyosin contractile ring assembly actin filament organization [GO:1903479] -A6NGJ0 unreviewed A6NGJ0_HUMAN Dynein light chain Tctex-type 3 DYNLT3 cell division [GO:0051301] -A6NMQ3 unreviewed A6NMQ3_HUMAN Alpha-endosulfine ENSA cell division [GO:0051301] -A8K1X2 unreviewed A8K1X2_HUMAN Neuronal-specific septin-3 SEPT3 hCG_41559 cytoskeleton-dependent cytokinesis [GO:0061640] -A8K3D9 unreviewed A8K3D9_HUMAN M-phase inducer phosphatase (EC 3.1.3.48) cell division [GO:0051301]; G2/M transition of mitotic cell cycle [GO:0000086]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; positive regulation of G2/MI transition of meiotic cell cycle [GO:0110032] -A8K3Z6 unreviewed A8K3Z6_HUMAN Anaphase-promoting complex subunit 13 (Cyclosome subunit 13) ANAPC13 hCG_1646826 cell division [GO:0051301]; protein K11-linked ubiquitination [GO:0070979] -A8K4B4 unreviewed A8K4B4_HUMAN cDNA FLJ78441, highly similar to Homo sapiens nucleolar and spindle associated protein 1 (NUSAP1),mRNA establishment of mitotic spindle localization [GO:0040001]; mitotic chromosome condensation [GO:0007076]; mitotic cytokinesis [GO:0000281] -A8K4T3 unreviewed A8K4T3_HUMAN Protein zwilch cell division [GO:0051301]; mitotic spindle assembly checkpoint signaling [GO:0007094]; protein localization to kinetochore [GO:0034501] -A8K4T8 unreviewed A8K4T8_HUMAN Condensin complex subunit 2 cell division [GO:0051301]; mitotic chromosome condensation [GO:0007076] -A8K572 unreviewed A8K572_HUMAN EF-hand domain-containing family member C2 cilium-dependent cell motility [GO:0060285]; mitotic cytokinesis [GO:0000281]; mitotic spindle organization [GO:0007052]; regulation of neuron projection development [GO:0010975] -A8K662 unreviewed A8K662_HUMAN Centromere protein T cell division [GO:0051301]; chromosome segregation [GO:0007059]; kinetochore assembly [GO:0051382]; mitotic cell cycle [GO:0000278] -A8K7A2 unreviewed A8K7A2_HUMAN Borealin (Cell division cycle-associated protein 8) cell division [GO:0051301]; mitotic sister chromatid segregation [GO:0000070] -A8K7M3 unreviewed A8K7M3_HUMAN Septin cytoskeleton-dependent cytokinesis [GO:0061640] -A8KAA2 unreviewed A8KAA2_HUMAN EF-hand domain-containing family member C2 cilium-dependent cell motility [GO:0060285]; mitotic cytokinesis [GO:0000281]; mitotic spindle organization [GO:0007052]; regulation of neuron projection development [GO:0010975] -A8KAL1 unreviewed A8KAL1_HUMAN cDNA FLJ76980, highly similar to Homo sapiens LYST-interacting protein LIP8 (LIP8), mRNA centriole replication [GO:0007099]; centrosome separation [GO:0051299]; mitotic cytokinetic process [GO:1902410]; regulation of cilium assembly [GO:1902017] -B2CKC5 unreviewed B2CKC5_HUMAN EF-hand domain (C-terminal) containing 1, isoform CRA_a (EF-hand domain containing 1) EFHC1 hCG_21196 cilium-dependent cell motility [GO:0060285]; mitotic cytokinesis [GO:0000281]; mitotic spindle organization [GO:0007052] -B2R5W6 unreviewed B2R5W6_HUMAN cDNA, FLJ92661, highly similar to Homo sapiens microtubule-associated protein, RP/EB family, member 3 (MAPRE3), mRNA cell division [GO:0051301]; protein localization to microtubule [GO:0035372]; regulation of microtubule polymerization or depolymerization [GO:0031110]; spindle assembly [GO:0051225] -B2R6V2 unreviewed B2R6V2_HUMAN non-specific serine/threonine protein kinase (EC 2.7.11.1) cell division [GO:0051301]; mitotic DNA damage checkpoint signaling [GO:0044773] -B2R935 unreviewed B2R935_HUMAN Cell division control protein cell division [GO:0051301]; DNA replication initiation [GO:0006270]; mitotic DNA replication checkpoint signaling [GO:0033314] -B2RAM9 unreviewed B2RAM9_HUMAN Cyclin-A1 cell division [GO:0051301]; mitotic cell cycle phase transition [GO:0044772] -B2RAU5 unreviewed B2RAU5_HUMAN Sorting nexin cleavage furrow formation [GO:0036089]; endocytosis [GO:0006897]; endosomal transport [GO:0016197]; intracellular protein transport [GO:0006886]; mitotic cytokinesis [GO:0000281]; plasma membrane tubulation [GO:0097320] -B2RDT9 unreviewed B2RDT9_HUMAN Zinc finger protein 830 (Coiled-coil domain-containing protein 16) cell division [GO:0051301]; mitotic DNA damage checkpoint signaling [GO:0044773]; mitotic DNA replication checkpoint signaling [GO:0033314]; nuclear DNA replication [GO:0033260] -B2RE34 unreviewed B2RE34_HUMAN cDNA, FLJ96901, highly similar to Homo sapiens Rac GTPase activating protein 1 (RACGAP1), mRNA mitotic cytokinesis [GO:0000281]; mitotic spindle midzone assembly [GO:0051256]; regulation of small GTPase mediated signal transduction [GO:0051056]; Rho protein signal transduction [GO:0007266] -B3KMS0 unreviewed B3KMS0_HUMAN Condensin complex subunit 1 cell division [GO:0051301]; meiotic chromosome condensation [GO:0010032]; mitotic chromosome condensation [GO:0007076] -B3KPB2 unreviewed B3KPB2_HUMAN Centromere protein T cell division [GO:0051301]; chromosome segregation [GO:0007059]; kinetochore assembly [GO:0051382]; mitotic cell cycle [GO:0000278] -B3KPD3 unreviewed B3KPD3_HUMAN cDNA FLJ31633 fis, clone NT2RI2003407, highly similar to Inner centromere protein meiotic spindle midzone assembly [GO:0051257]; metaphase chromosome alignment [GO:0051310]; mitotic cytokinesis [GO:0000281] -B3KR63 unreviewed B3KR63_HUMAN Septin 4, isoform CRA_h (cDNA FLJ33746 fis, clone BRCAN1000105, highly similar to Homo sapiens septin 4 (SEPT4), transcript variant 2, mRNA) SEPT4 hCG_30696 cytoskeleton-dependent cytokinesis [GO:0061640]; regulation of exocytosis [GO:0017157] -B3KT42 unreviewed B3KT42_HUMAN cDNA FLJ37599 fis, clone BRCOC2008993, highly similar to Homo sapiens spire homolog 2 (Drosophila) (SPIRE2), mRNA actin filament network formation [GO:0051639]; actin filament polymerization [GO:0030041]; actin nucleation [GO:0045010]; cleavage furrow formation [GO:0036089]; establishment of meiotic spindle localization [GO:0051295]; Golgi vesicle transport [GO:0048193]; intracellular transport [GO:0046907]; polar body extrusion after meiotic divisions [GO:0040038] -B3KUT8 unreviewed B3KUT8_HUMAN cDNA FLJ40596 fis, clone THYMU2010831, highly similar to Double-strand-break repair protein rad21 homolog apoptotic process [GO:0006915]; cell division [GO:0051301]; chromosome segregation [GO:0007059]; replication-born double-strand break repair via sister chromatid exchange [GO:1990414]; sister chromatid cohesion [GO:0007062] -B3KUX0 unreviewed B3KUX0_HUMAN cDNA FLJ40831 fis, clone TRACH2012138, highly similar to Homo sapiens regulator of G-protein signalling 14 (RGS14), mRNA cell division [GO:0051301]; regulation of G protein-coupled receptor signaling pathway [GO:0008277]; signal transduction [GO:0007165]; spindle organization [GO:0007051] -B3KW87 unreviewed B3KW87_HUMAN Protein unc-119 homolog A endocytosis [GO:0006897]; lipoprotein transport [GO:0042953]; mitotic cytokinesis [GO:0000281]; negative regulation of caveolin-mediated endocytosis [GO:2001287]; negative regulation of clathrin-dependent endocytosis [GO:1900186]; nervous system development [GO:0007399]; visual perception [GO:0007601] -B3KWH4 unreviewed B3KWH4_HUMAN cDNA FLJ43092 fis, clone COLON2002520, highly similar to Myosin-14 actomyosin structure organization [GO:0031032]; mitotic cytokinesis [GO:0000281]; regulation of cell shape [GO:0008360] -B3KXH8 unreviewed B3KXH8_HUMAN cDNA FLJ45417 fis, clone BRHIP3033811, highly similar to Sorting nexin-9 cleavage furrow formation [GO:0036089]; endocytosis [GO:0006897]; endosomal transport [GO:0016197]; intracellular protein transport [GO:0006886]; mitotic cytokinesis [GO:0000281]; plasma membrane tubulation [GO:0097320] -B3KXM2 unreviewed B3KXM2_HUMAN Serine/threonine-protein phosphatase (EC 3.1.3.16) cell division [GO:0051301]; glycogen metabolic process [GO:0005977] -B3KY03 unreviewed B3KY03_HUMAN Condensin complex subunit 1 cell division [GO:0051301]; meiotic chromosome condensation [GO:0010032]; mitotic chromosome condensation [GO:0007076] -B3KY60 unreviewed B3KY60_HUMAN cDNA FLJ16777 fis, clone BRHIP2029567, highly similar to Cell division cycle 5-like protein cell division [GO:0051301]; mRNA splicing, via spliceosome [GO:0000398] -B4DFM2 unreviewed B4DFM2_HUMAN Kelch domain-containing protein 8B mitotic cytokinetic process [GO:1902410]; mitotic nuclear division [GO:0140014]; nuclear chromosome segregation [GO:0098813] -B4DIG0 unreviewed B4DIG0_HUMAN M-phase inducer phosphatase (EC 3.1.3.48) CDC25B cell division [GO:0051301]; positive regulation of cell cycle G2/M phase transition [GO:1902751] -B4DJH7 unreviewed B4DJH7_HUMAN cDNA FLJ56916, highly similar to Cell division protein kinase 8 cell division [GO:0051301] -B4DL80 unreviewed B4DL80_HUMAN Cell division cycle protein 27 homolog anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; metaphase/anaphase transition of mitotic cell cycle [GO:0007091]; protein ubiquitination [GO:0016567] -B4DMH5 unreviewed B4DMH5_HUMAN cDNA FLJ55107, highly similar to Cell division control protein 42 homolog Cdc42 protein signal transduction [GO:0032488]; cell division [GO:0051301]; endocytosis [GO:0006897]; establishment or maintenance of cell polarity [GO:0007163]; modification of synaptic structure [GO:0099563]; regulation of filopodium assembly [GO:0051489] -B4DNP4 unreviewed B4DNP4_HUMAN cDNA FLJ55816, highly similar to Ras GTPase-activating-like protein IQGAP1 epidermal growth factor receptor signaling pathway [GO:0007173]; fibroblast migration [GO:0010761]; mitotic actomyosin contractile ring assembly actin filament organization [GO:1903479] -B4DPJ2 unreviewed B4DPJ2_HUMAN Annexin cytokinetic process [GO:0032506]; phagocytosis [GO:0006909] -B4DPT4 unreviewed B4DPT4_HUMAN Septin cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640] -B4DQZ3 unreviewed B4DQZ3_HUMAN M-phase inducer phosphatase (EC 3.1.3.48) cell division [GO:0051301]; G2/M transition of mitotic cell cycle [GO:0000086]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; positive regulation of G2/MI transition of meiotic cell cycle [GO:0110032] -B4DRC3 unreviewed B4DRC3_HUMAN M-phase inducer phosphatase (EC 3.1.3.48) cell division [GO:0051301]; G2/M transition of mitotic cell cycle [GO:0000086]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; positive regulation of G2/MI transition of meiotic cell cycle [GO:0110032] -B4DRG7 unreviewed B4DRG7_HUMAN Condensin complex subunit 2 cell division [GO:0051301]; mitotic chromosome condensation [GO:0007076] -B4DRN1 unreviewed B4DRN1_HUMAN Cell division cycle protein 27 homolog anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; metaphase/anaphase transition of mitotic cell cycle [GO:0007091]; protein ubiquitination [GO:0016567] -B4DSH1 unreviewed B4DSH1_HUMAN cDNA FLJ51295, highly similar to Cell division cycle 5-like protein cell division [GO:0051301]; mRNA splicing, via spliceosome [GO:0000398] -B4DWP4 unreviewed B4DWP4_HUMAN Centromere protein T cell division [GO:0051301]; chromosome segregation [GO:0007059]; kinetochore assembly [GO:0051382]; mitotic cell cycle [GO:0000278] -B4DX61 unreviewed B4DX61_HUMAN M-phase inducer phosphatase (EC 3.1.3.48) cell division [GO:0051301]; G2/M transition of mitotic cell cycle [GO:0000086]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; positive regulation of G2/MI transition of meiotic cell cycle [GO:0110032] -B4DXA6 unreviewed B4DXA6_HUMAN Aurora kinase (EC 2.7.11.1) AURKC cell division [GO:0051301] -B4DXT3 unreviewed B4DXT3_HUMAN cDNA FLJ56590, highly similar to Borealin cell division [GO:0051301]; mitotic sister chromatid segregation [GO:0000070] -B4DY48 unreviewed B4DY48_HUMAN Kinesin-like protein cell division [GO:0051301]; microtubule-based movement [GO:0007018] -B4DZW0 unreviewed B4DZW0_HUMAN Septin cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640] -B4E086 unreviewed B4E086_HUMAN Kinetochore protein Spc24 cell division [GO:0051301]; chromosome segregation [GO:0007059] -B4E0B7 unreviewed B4E0B7_HUMAN Condensin complex subunit 1 cell division [GO:0051301]; meiotic chromosome condensation [GO:0010032]; mitotic chromosome condensation [GO:0007076] -B4E0I4 unreviewed B4E0I4_HUMAN cDNA FLJ61013, highly similar to Septin-1 cytoskeleton-dependent cytokinesis [GO:0061640]; regulation of exocytosis [GO:0017157] -B4E112 unreviewed B4E112_HUMAN Cofilin-1 (Cofilin, non-muscle isoform) actin filament fragmentation [GO:0030043]; actin filament severing [GO:0051014]; mitotic cytokinesis [GO:0000281] -B4E1H5 unreviewed B4E1H5_HUMAN cDNA FLJ51449, highly similar to Cell division cycle protein 20 homolog anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; positive regulation of anaphase-promoting complex-dependent catabolic process [GO:1905786] -B4E2M0 unreviewed B4E2M0_HUMAN cDNA FLJ55443, highly similar to Ras GTPase-activating-like protein IQGAP1 epidermal growth factor receptor signaling pathway [GO:0007173]; fibroblast migration [GO:0010761]; mitotic actomyosin contractile ring assembly actin filament organization [GO:1903479] -B5BUA4 unreviewed B5BUA4_HUMAN Shugoshin-like 1 (S. pombe), isoform CRA_a (Shugoshin-like 1 isoform A1) SGOL1 hCG_1648559 cell division [GO:0051301]; centriole-centriole cohesion [GO:0010457]; meiotic chromosome segregation [GO:0045132]; meiotic sister chromatid cohesion [GO:0051177] -B5MBX0 unreviewed B5MBX0_HUMAN Cell division cycle associated 5 CDCA5 cell division [GO:0051301] -B7Z277 unreviewed B7Z277_HUMAN Septin-10 cytoskeleton-dependent cytokinesis [GO:0061640] -B7Z371 unreviewed B7Z371_HUMAN Septin-10 cytoskeleton-dependent cytokinesis [GO:0061640] -B7Z686 unreviewed B7Z686_HUMAN Neuronal-specific septin-3 cytoskeleton-dependent cytokinesis [GO:0061640] -B7Z6L0 unreviewed B7Z6L0_HUMAN Annexin cytokinetic process [GO:0032506]; phagocytosis [GO:0006909] -B7Z8G6 unreviewed B7Z8G6_HUMAN non-specific serine/threonine protein kinase (EC 2.7.11.1) actomyosin structure organization [GO:0031032]; mitotic cytokinesis [GO:0000281] -B7ZAY4 unreviewed B7ZAY4_HUMAN cDNA, FLJ79348, highly similar to Cell division control protein 42 homolog Cdc42 protein signal transduction [GO:0032488]; cell division [GO:0051301]; endocytosis [GO:0006897]; establishment or maintenance of cell polarity [GO:0007163]; modification of synaptic structure [GO:0099563]; regulation of filopodium assembly [GO:0051489] -C9J2Q4 unreviewed C9J2Q4_HUMAN Septin-2 SEPTIN2 cell division [GO:0051301] -C9J2U0 unreviewed C9J2U0_HUMAN Cyclin E variant ex7del (Cyclin E1) CCNE1 cell division [GO:0051301] -C9J470 unreviewed C9J470_HUMAN Condensin complex subunit 2 NCAPH cell division [GO:0051301]; mitotic chromosome condensation [GO:0007076] -C9JZP1 unreviewed C9JZP1_HUMAN Condensin complex subunit 2 NCAPH cell division [GO:0051301]; mitotic chromosome condensation [GO:0007076] -D8KXX0 unreviewed D8KXX0_HUMAN M-phase inducer phosphatase (EC 3.1.3.48) CDC25A cell division [GO:0051301]; G2/M transition of mitotic cell cycle [GO:0000086]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; positive regulation of G2/MI transition of meiotic cell cycle [GO:0110032] -E7EUC4 unreviewed E7EUC4_HUMAN Aurora kinase (EC 2.7.11.1) SNRK cell division [GO:0051301] -E9PC90 unreviewed E9PC90_HUMAN G2/mitotic-specific cyclin-B1 CCNB1 cell division [GO:0051301]; mitotic cell cycle phase transition [GO:0044772] -E9PHA2 unreviewed E9PHA2_HUMAN Condensin complex subunit 2 NCAPH cell division [GO:0051301]; mitotic chromosome condensation [GO:0007076] -F2Z328 unreviewed F2Z328_HUMAN Dynein light chain Tctex-type 3 DYNLT3 cell division [GO:0051301] -F5GY68 unreviewed F5GY68_HUMAN Anaphase-promoting complex subunit 5 ANAPC5 cell division [GO:0051301] -F5H0F9 unreviewed F5H0F9_HUMAN Anaphase-promoting complex subunit 5 (Cyclosome subunit 5) ANAPC5 cell division [GO:0051301]; protein ubiquitination [GO:0016567] -F8WAN1 unreviewed F8WAN1_HUMAN Cytospin-A SPECC1L-ADORA2A cell division [GO:0051301] -G1UI16 unreviewed G1UI16_HUMAN SCC-112 protein, isoform CRA_b (Sister chromatid cohesion protein PDS5 homolog A) PDS5A SCC-112 hCG_38551 cell division [GO:0051301]; DNA repair [GO:0006281]; mitotic sister chromatid cohesion [GO:0007064] -G1UI33 unreviewed G1UI33_HUMAN Myosin-10 MYH10 actomyosin structure organization [GO:0031032]; mitotic cytokinesis [GO:0000281]; regulation of cell shape [GO:0008360] -G3V1A9 unreviewed G3V1A9_HUMAN Condensin-2 complex subunit D3 NCAPD3 hCAP-D3 hCG_37608 cell division [GO:0051301]; mitotic chromosome condensation [GO:0007076] -G3V2D8 unreviewed G3V2D8_HUMAN Zinc finger FYVE domain-containing protein 26 ZFYVE26 double-strand break repair via homologous recombination [GO:0000724]; mitotic cytokinesis [GO:0000281] -G5EA36 unreviewed G5EA36_HUMAN Cell division cycle protein 27 homolog CDC27 hCG_1993274 cell division [GO:0051301] -G8JLH2 unreviewed G8JLH2_HUMAN M-phase inducer phosphatase (EC 3.1.3.48) CDC25B cell division [GO:0051301]; positive regulation of cell cycle G2/M phase transition [GO:1902751] -H0Y999 unreviewed H0Y999_HUMAN M-phase inducer phosphatase (EC 3.1.3.48) CDC25C cell division [GO:0051301]; positive regulation of cell cycle G2/M phase transition [GO:1902751] -H0YFB5 unreviewed H0YFB5_HUMAN Anaphase-promoting complex subunit 5 (Cyclosome subunit 5) ANAPC5 cell division [GO:0051301]; protein ubiquitination [GO:0016567] -H0YJB1 unreviewed H0YJB1_HUMAN Aurora kinase (EC 2.7.11.1) TSSK4 cell division [GO:0051301] -H0YKA7 unreviewed H0YKA7_HUMAN Nucleolar and spindle associated protein 1 NUSAP1 establishment of mitotic spindle localization [GO:0040001]; mitotic cytokinesis [GO:0000281] -H0YKL4 unreviewed H0YKL4_HUMAN Protein yippee-like OIP5 YPEL cell division [GO:0051301] -H0YMD2 unreviewed H0YMD2_HUMAN Nucleolar and spindle associated protein 1 NUSAP1 establishment of mitotic spindle localization [GO:0040001]; mitotic cytokinesis [GO:0000281] -H0YMP3 unreviewed H0YMP3_HUMAN G2/mitotic-specific cyclin-B2 CCNB2 cell division [GO:0051301]; mitotic cell cycle phase transition [GO:0044772] -H1UBN2 unreviewed H1UBN2_HUMAN G2/mitotic-specific cyclin-B1 CCNB1V cell division [GO:0051301]; mitotic cell cycle phase transition [GO:0044772]; mitotic metaphase chromosome alignment [GO:0007080] -H1UBN3 unreviewed H1UBN3_HUMAN G2/mitotic-specific cyclin-B2 CCNB2 CCNB2V cell division [GO:0051301]; mitotic cell cycle phase transition [GO:0044772] -H3BMD8 unreviewed H3BMD8_HUMAN cAMP-regulated phosphoprotein 19 ARPP19 cell division [GO:0051301] -H3BQ07 unreviewed H3BQ07_HUMAN Protein zwilch ZWILCH cell division [GO:0051301]; mitotic spindle assembly checkpoint signaling [GO:0007094]; protein localization to kinetochore [GO:0034501] -H3BSG1 unreviewed H3BSG1_HUMAN Protein zwilch ZWILCH cell division [GO:0051301]; mitotic spindle assembly checkpoint signaling [GO:0007094]; protein localization to kinetochore [GO:0034501] -H3BTD3 unreviewed H3BTD3_HUMAN cAMP-regulated phosphoprotein 19 ARPP19 cell division [GO:0051301] -H7C2Y0 unreviewed H7C2Y0_HUMAN Septin 2 SEPTIN2 cell division [GO:0051301] -H7C415 unreviewed H7C415_HUMAN Condensin complex subunit 2 NCAPH cell division [GO:0051301]; mitotic chromosome condensation [GO:0007076] -I3L2R3 unreviewed I3L2R3_HUMAN NudE neurodevelopment protein 1 NDE1 cell differentiation [GO:0030154]; cell division [GO:0051301]; nervous system development [GO:0007399] -I3L2R9 unreviewed I3L2R9_HUMAN NudE neurodevelopment protein 1 NDE1 cell differentiation [GO:0030154]; cell division [GO:0051301]; nervous system development [GO:0007399] -I3L2T8 unreviewed I3L2T8_HUMAN NudE neurodevelopment protein 1 NDE1 cell differentiation [GO:0030154]; cell division [GO:0051301]; nervous system development [GO:0007399] -I3L3G9 unreviewed I3L3G9_HUMAN NudE neurodevelopment protein 1 NDE1 cell differentiation [GO:0030154]; cell division [GO:0051301]; nervous system development [GO:0007399] -I3L522 unreviewed I3L522_HUMAN NudE neurodevelopment protein 1 NDE1 cell differentiation [GO:0030154]; cell division [GO:0051301]; nervous system development [GO:0007399] -I3L533 unreviewed I3L533_HUMAN NudE neurodevelopment protein 1 NDE1 cell differentiation [GO:0030154]; cell division [GO:0051301]; nervous system development [GO:0007399] -I6L961 unreviewed I6L961_HUMAN CCNE2 protein CCNE2 cell division [GO:0051301]; G1/S transition of mitotic cell cycle [GO:0000082] -I6L9I5 unreviewed I6L9I5_HUMAN CDC2 protein CDC2 cell division [GO:0051301]; G2/M transition of mitotic cell cycle [GO:0000086]; mitotic G2 DNA damage checkpoint signaling [GO:0007095] -J3KRJ2 unreviewed J3KRJ2_HUMAN Aurora kinase (EC 2.7.11.1) AURKB cell division [GO:0051301] -J3KRZ0 unreviewed J3KRZ0_HUMAN Spindle and kinetochore-associated protein 2 (Protein FAM33A) SKA2 cell division [GO:0051301]; chromosome segregation [GO:0007059] -J3KSA4 unreviewed J3KSA4_HUMAN DNA endonuclease RBBP8 RBBP8 cell division [GO:0051301]; DNA repair [GO:0006281]; meiotic cell cycle [GO:0051321] -J3KSP0 unreviewed J3KSP0_HUMAN Spindle and kinetochore-associated protein 2 (Protein FAM33A) SKA2 cell division [GO:0051301]; chromosome segregation [GO:0007059] -J3KTC5 unreviewed J3KTC5_HUMAN Spindle and kinetochore-associated protein 2 (Protein FAM33A) SKA2 cell division [GO:0051301]; chromosome segregation [GO:0007059] -J3QL00 unreviewed J3QL00_HUMAN DNA endonuclease RBBP8 RBBP8 cell division [GO:0051301]; DNA repair [GO:0006281]; meiotic cell cycle [GO:0051321] -J3QL03 unreviewed J3QL03_HUMAN Spindle and kinetochore-associated protein 2 (Protein FAM33A) SKA2 cell division [GO:0051301]; chromosome segregation [GO:0007059] -J3QL93 unreviewed J3QL93_HUMAN DNA endonuclease RBBP8 RBBP8 cell division [GO:0051301]; DNA repair [GO:0006281]; meiotic cell cycle [GO:0051321] -J3QLW6 unreviewed J3QLW6_HUMAN DNA endonuclease RBBP8 RBBP8 cell division [GO:0051301]; DNA repair [GO:0006281]; meiotic cell cycle [GO:0051321] -J3QS74 unreviewed J3QS74_HUMAN Spindle and kinetochore-associated protein 2 (Protein FAM33A) SKA2 FAM33A hCG_2000185 cell division [GO:0051301]; chromosome segregation [GO:0007059] -K7EJA9 unreviewed K7EJA9_HUMAN HAUS augmin like complex subunit 1 HAUS1 cell division [GO:0051301]; spindle assembly [GO:0051225] -K7EJH0 unreviewed K7EJH0_HUMAN Kinetochore protein Spc24 SPC24 cell division [GO:0051301] -K7EK72 unreviewed K7EK72_HUMAN HAUS augmin like complex subunit 1 HAUS1 cell division [GO:0051301]; spindle assembly [GO:0051225] -K7EKH4 unreviewed K7EKH4_HUMAN HAUS augmin like complex subunit 1 HAUS1 cell division [GO:0051301]; spindle assembly [GO:0051225] -K7EM54 unreviewed K7EM54_HUMAN HAUS augmin like complex subunit 1 HAUS1 cell division [GO:0051301]; spindle assembly [GO:0051225] -K7EMX1 unreviewed K7EMX1_HUMAN Kinetochore protein Spc24 SPC24 cell division [GO:0051301] -K7EQT8 unreviewed K7EQT8_HUMAN HAUS augmin like complex subunit 1 HAUS1 cell division [GO:0051301]; spindle assembly [GO:0051225] -K7ES67 unreviewed K7ES67_HUMAN HAUS augmin like complex subunit 1 HAUS1 cell division [GO:0051301]; spindle assembly [GO:0051225] -K7N7S0 unreviewed K7N7S0_HUMAN M-phase inducer phosphatase (EC 3.1.3.48) cell division [GO:0051301]; G2/M transition of mitotic cell cycle [GO:0000086]; positive regulation of G2/M transition of mitotic cell cycle [GO:0010971]; positive regulation of G2/MI transition of meiotic cell cycle [GO:0110032] -M0QYK8 unreviewed M0QYK8_HUMAN Aurora kinase (EC 2.7.11.1) AURKC cell division [GO:0051301] -M0R366 unreviewed M0R366_HUMAN Fibronectin type III and SPRY domain-containing protein 1 FSD1 cell division [GO:0051301] -O75767 unreviewed O75767_HUMAN Tyrosinase-related protein-2 (EC 5.3.3.12) TRP-2 developmental pigmentation [GO:0048066]; melanin biosynthetic process from tyrosine [GO:0006583]; positive regulation of neuroblast proliferation [GO:0002052]; ventricular zone neuroblast division [GO:0021847] -O95061 unreviewed O95061_HUMAN WASP interactor protein WISP cleavage furrow formation [GO:0036089]; endocytosis [GO:0006897]; endosomal transport [GO:0016197]; plasma membrane tubulation [GO:0097320] -O95211 unreviewed O95211_HUMAN Securin PTTG cell division [GO:0051301]; chromosome organization [GO:0051276]; homologous chromosome segregation [GO:0045143] -O95648 unreviewed O95648_HUMAN Septin-type G domain-containing protein cytoskeleton-dependent cytokinesis [GO:0061640]; regulation of exocytosis [GO:0017157] -Q05DN7 unreviewed Q05DN7_HUMAN IQGAP1 protein IQGAP1 epidermal growth factor receptor signaling pathway [GO:0007173]; fibroblast migration [GO:0010761]; mitotic actomyosin contractile ring assembly actin filament organization [GO:1903479] -Q05DQ6 unreviewed Q05DQ6_HUMAN Kinetochore protein NDC80 NDC80 attachment of mitotic spindle microtubules to kinetochore [GO:0051315]; cell division [GO:0051301] -Q1WWM3 unreviewed Q1WWM3_HUMAN Protein 4.1 (Band 4.1) (Erythrocyte membrane protein band 4.1) EPB41 cell division [GO:0051301]; cortical actin cytoskeleton organization [GO:0030866] -Q29RX4 unreviewed Q29RX4_HUMAN Protein 4.1 (Band 4.1) (Erythrocyte membrane protein band 4.1) EPB41 cell division [GO:0051301]; cortical actin cytoskeleton organization [GO:0030866] -Q3B7A3 unreviewed Q3B7A3_HUMAN SEPT7 protein SEPT7 cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640] -Q49AA3 unreviewed Q49AA3_HUMAN non-specific serine/threonine protein kinase (EC 2.7.11.1) ROCK1 actomyosin structure organization [GO:0031032]; cortical actin cytoskeleton organization [GO:0030866]; embryonic morphogenesis [GO:0048598]; mitotic cytokinesis [GO:0000281]; regulation of cell junction assembly [GO:1901888]; Rho protein signal transduction [GO:0007266] -Q4VB86 unreviewed Q4VB86_HUMAN Protein 4.1 (Band 4.1) (Erythrocyte membrane protein band 4.1) EPB41 cell division [GO:0051301]; cortical actin cytoskeleton organization [GO:0030866] -Q4VB87 unreviewed Q4VB87_HUMAN Protein 4.1 (Band 4.1) (Erythrocyte membrane protein band 4.1) EPB41 cell division [GO:0051301]; cortical actin cytoskeleton organization [GO:0030866] -Q53ER2 unreviewed Q53ER2_HUMAN G1/S-specific cyclin-D2 cell division [GO:0051301]; mitotic cell cycle phase transition [GO:0044772] -Q53HG9 unreviewed Q53HG9_HUMAN G2/mitotic-specific cyclin-B2 cell division [GO:0051301]; mitotic cell cycle phase transition [GO:0044772] -Q59EP1 unreviewed Q59EP1_HUMAN Annexin cytokinetic process [GO:0032506]; phagocytosis [GO:0006909] -Q59ES5 unreviewed Q59ES5_HUMAN Sorting nexin 9 variant cleavage furrow formation [GO:0036089]; endocytosis [GO:0006897]; endosomal transport [GO:0016197]; intracellular protein transport [GO:0006886]; mitotic cytokinesis [GO:0000281]; plasma membrane tubulation [GO:0097320] -Q59F12 unreviewed Q59F12_HUMAN Protein 4.1 (Band 4.1) (Erythrocyte membrane protein band 4.1) cell division [GO:0051301]; cortical actin cytoskeleton organization [GO:0030866] -Q59FQ0 unreviewed Q59FQ0_HUMAN Ras-related C3 botulinum toxin substrate 1 isoform Rac1b variant cortical cytoskeleton organization [GO:0030865]; engulfment of apoptotic cell [GO:0043652]; establishment or maintenance of cell polarity [GO:0007163]; mitotic cytokinesis [GO:0000281]; motor neuron axon guidance [GO:0008045]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of cell shape [GO:0008360]; small GTPase-mediated signal transduction [GO:0007264] -Q59FX2 unreviewed Q59FX2_HUMAN non-specific serine/threonine protein kinase (EC 2.7.11.1) cell division [GO:0051301]; double-strand break repair via break-induced replication [GO:0000727]; signal transduction [GO:0007165] -Q59GE1 unreviewed Q59GE1_HUMAN Septin-5 cytoskeleton-dependent cytokinesis [GO:0061640]; regulation of exocytosis [GO:0017157] -Q59H84 unreviewed Q59H84_HUMAN Septin-10 cytoskeleton-dependent cytokinesis [GO:0061640] -Q59HD0 unreviewed Q59HD0_HUMAN G2/mitotic-specific cyclin F variant cell division [GO:0051301]; mitotic cell cycle phase transition [GO:0044772] -Q5FWG8 unreviewed Q5FWG8_HUMAN IQGAP1 protein IQGAP1 epidermal growth factor receptor signaling pathway [GO:0007173]; fibroblast migration [GO:0010761]; mitotic actomyosin contractile ring assembly actin filament organization [GO:1903479] -Q5H9N4 unreviewed Q5H9N4_HUMAN Uncharacterized protein DKFZp686L20222 DKFZp686L20222 cell division [GO:0051301]; G2/M transition of mitotic cell cycle [GO:0000086]; mitotic G2 DNA damage checkpoint signaling [GO:0007095] -Q5T179 unreviewed Q5T179_HUMAN Cyclin-dependent kinases regulatory subunit CKS1B cell division [GO:0051301] -Q5U0M0 unreviewed Q5U0M0_HUMAN G2/mitotic-specific cyclin-B2 cell division [GO:0051301]; mitotic cell cycle phase transition [GO:0044772] -Q6B514 unreviewed Q6B514_HUMAN Septin cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640] -Q6ICS0 unreviewed Q6ICS0_HUMAN Annexin ANXA11 cytokinetic process [GO:0032506]; phagocytosis [GO:0006909] -Q6MZL1 unreviewed Q6MZL1_HUMAN Protein unc-119 homolog A DKFZp686E1393 endocytosis [GO:0006897]; lipoprotein transport [GO:0042953]; mitotic cytokinesis [GO:0000281]; negative regulation of caveolin-mediated endocytosis [GO:2001287]; negative regulation of clathrin-dependent endocytosis [GO:1900186]; nervous system development [GO:0007399]; visual perception [GO:0007601] -Q6NUR1 unreviewed Q6NUR1_HUMAN Non-SMC condensin I complex, subunit G NCAPG cell division [GO:0051301]; mitotic chromosome condensation [GO:0007076] -Q6P1N4 unreviewed Q6P1N4_HUMAN IQGAP1 protein IQGAP1 epidermal growth factor receptor signaling pathway [GO:0007173]; fibroblast migration [GO:0010761]; mitotic actomyosin contractile ring assembly actin filament organization [GO:1903479] -Q6ZWH1 unreviewed Q6ZWH1_HUMAN BRISC and BRCA1-A complex member 2 apoptotic process [GO:0006915]; cell division [GO:0051301]; chromatin organization [GO:0006325]; double-strand break repair [GO:0006302]; mitotic G2 DNA damage checkpoint signaling [GO:0007095]; positive regulation of DNA repair [GO:0045739]; response to ionizing radiation [GO:0010212] -Q7KYV2 unreviewed Q7KYV2_HUMAN Septin-5 cytoskeleton-dependent cytokinesis [GO:0061640]; regulation of exocytosis [GO:0017157] -Q7Z4Z4 unreviewed Q7Z4Z4_HUMAN G2/mitotic-specific cyclin-B2 cell division [GO:0051301]; mitotic cell cycle phase transition [GO:0044772] -Q8NFH9 unreviewed Q8NFH9_HUMAN MLL/SEPTIN6 fusion protein cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640] -Q8NFI0 unreviewed Q8NFI0_HUMAN MLL/SEPTIN6 fusion protein cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640] -Q8NFI2 unreviewed Q8NFI2_HUMAN MLL/SEPTIN6 fusion protein cilium assembly [GO:0060271]; cytoskeleton-dependent cytokinesis [GO:0061640] -Q96AS4 unreviewed Q96AS4_HUMAN SPIRE1 protein SPIRE1 actin filament network formation [GO:0051639]; actin filament polymerization [GO:0030041]; actin nucleation [GO:0045010]; cleavage furrow formation [GO:0036089]; establishment of meiotic spindle localization [GO:0051295]; Golgi vesicle transport [GO:0048193]; intracellular transport [GO:0046907]; polar body extrusion after meiotic divisions [GO:0040038] -Q96DZ8 unreviewed Q96DZ8_HUMAN Kelch domain-containing protein 8B KLHDC8B mitotic cytokinetic process [GO:1902410]; mitotic nuclear division [GO:0140014]; nuclear chromosome segregation [GO:0098813] -Q96SJ9 unreviewed Q96SJ9_HUMAN cDNA FLJ14807 fis, clone NT2RP4001760, weakly similar to PUTATIVE RHO/RAC GUANINE NUCLEOTIDE EXCHANGE FACTOR intracellular signal transduction [GO:0035556]; mitotic cytokinesis [GO:0000281]; nervous system development [GO:0007399]; regulation of cytokinesis, actomyosin contractile ring assembly [GO:2000431] -Q99648 unreviewed Q99648_HUMAN Septin-5 CDCrel-1 cytoskeleton-dependent cytokinesis [GO:0061640]; regulation of exocytosis [GO:0017157] -Q9BZ74 unreviewed Q9BZ74_HUMAN FKSG42 FKSG42 mitotic cytokinesis [GO:0000281]; mitotic spindle midzone assembly [GO:0051256]; Rho protein signal transduction [GO:0007266] -Q9BZU3 unreviewed Q9BZU3_HUMAN Cyclin-dependent kinases regulatory subunit CKS1B hCG_1739274 cell division [GO:0051301] -Q9H072 unreviewed Q9H072_HUMAN Uncharacterized protein DKFZp586J151 DKFZp586J151 cell division [GO:0051301]; protein folding [GO:0006457]; proteolysis involved in protein catabolic process [GO:0051603] -Q9H2R7 unreviewed Q9H2R7_HUMAN NPD011 NPD011 cell division [GO:0051301]; protein folding [GO:0006457] -Q9H9L9 unreviewed Q9H9L9_HUMAN cDNA FLJ12664 fis, clone NT2RM4002226, weakly similar to GTPASE ACTIVATING PROTEIN ROTUND mitotic cytokinesis [GO:0000281]; mitotic spindle midzone assembly [GO:0051256]; Rho protein signal transduction [GO:0007266] -Q9H9P7 unreviewed Q9H9P7_HUMAN Septin-10 cytoskeleton-dependent cytokinesis [GO:0061640] -Q9NSH2 unreviewed Q9NSH2_HUMAN Uncharacterized protein DKFZp547B243 DKFZp547B243 cytoskeleton-dependent cytokinesis [GO:0061640] -Q9Y3S8 unreviewed Q9Y3S8_HUMAN Uncharacterized protein DKFZp564M1416 DKFZp564M1416 cytoskeleton-dependent cytokinesis [GO:0061640] -Q9Y4B3 unreviewed Q9Y4B3_HUMAN MAU2 chromatid cohesion factor homolog (Cohesin loading complex subunit SCC4 homolog) cell division [GO:0051301]; chromosome segregation [GO:0007059]; maintenance of mitotic sister chromatid cohesion [GO:0034088] -U3KQ54 unreviewed U3KQ54_HUMAN HCG2044777 (PMF1-BGLAP readthrough) PMF1-BGLAP hCG_2044777 cell division [GO:0051301] -V9GYM9 unreviewed V9GYM9_HUMAN Kinetochore protein NDC80 NDC80 attachment of mitotic spindle microtubules to kinetochore [GO:0051315]; cell division [GO:0051301] -V9GYS3 unreviewed V9GYS3_HUMAN MAU2 chromatid cohesion factor homolog (Cohesin loading complex subunit SCC4 homolog) MAU2 cell division [GO:0051301]; chromosome segregation [GO:0007059]; mitotic sister chromatid cohesion [GO:0007064] -V9GZ52 unreviewed V9GZ52_HUMAN Cohesin loading complex subunit SCC4 homolog MAU2 cell division [GO:0051301]; chromosome segregation [GO:0007059]; mitotic sister chromatid cohesion [GO:0007064] -V9HVX8 unreviewed V9HVX8_HUMAN Epididymis luminal protein 109 HEL-109 actin filament organization [GO:0007015]; mitotic cytokinesis [GO:0000281]; muscle contraction [GO:0006936] -V9HWI5 unreviewed V9HWI5_HUMAN Cofilin-1 (Cofilin, non-muscle isoform) HEL-S-15 actin filament fragmentation [GO:0030043]; actin filament severing [GO:0051014]; mitotic cytokinesis [GO:0000281] -X5DNA9 unreviewed X5DNA9_HUMAN Septin-5 SEPT5 hCG_2002594 cytoskeleton-dependent cytokinesis [GO:0061640]; regulation of exocytosis [GO:0017157] -X5DQL7 unreviewed X5DQL7_HUMAN Septin 5 isoform B SEPT5 cytoskeleton-dependent cytokinesis [GO:0061640]; regulation of exocytosis [GO:0017157] -A0A087WT04 unreviewed A0A087WT04_HUMAN PMF1-BGLAP readthrough PMF1-BGLAP cell division [GO:0051301] -A0A0A0MRV8 unreviewed A0A0A0MRV8_HUMAN Dynactin subunit 3 DCTN3 cytoskeleton-dependent cytokinesis [GO:0061640] -A0A0A0MSI1 unreviewed A0A0A0MSI1_HUMAN INSC spindle orientation adaptor protein INSC asymmetric cell division [GO:0008356] -A0A0C4DG83 unreviewed A0A0C4DG83_HUMAN Aster-associated protein, isoform CRA_b (Microtubule associated protein 9) MAP9 ASAP hCG_26928 mitotic cytokinesis [GO:0000281]; spindle assembly [GO:0051225] -A0A0S2Z5N1 unreviewed A0A0S2Z5N1_HUMAN Cell division cycle 73 Paf1/RNA polymerase II complex component-like protein isoform 2 CDC73 cell division [GO:0051301]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; transcription elongation by RNA polymerase II [GO:0006368] -A0A286YEY6 unreviewed A0A286YEY6_HUMAN Anaphase-promoting complex subunit 10 ANAPC10 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301] -A0A2H2FF08 unreviewed A0A2H2FF08_HUMAN Zinc finger FYVE-type containing 26 ZFYVE26 double-strand break repair via homologous recombination [GO:0000724]; mitotic cytokinesis [GO:0000281] -A0A3B3ISY7 unreviewed A0A3B3ISY7_HUMAN Anaphase-promoting complex subunit 10 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301] -A0A3B3IT44 unreviewed A0A3B3IT44_HUMAN G1/S-specific cyclin-D2 cell division [GO:0051301] -A0A6Q8PFP0 unreviewed A0A6Q8PFP0_HUMAN Uncharacterized protein cell division [GO:0051301] -A0A7I2V4E6 unreviewed A0A7I2V4E6_HUMAN Zinc finger FYVE-type containing 26 ZFYVE26 double-strand break repair via homologous recombination [GO:0000724]; mitotic cytokinesis [GO:0000281] -A0A7I2V577 unreviewed A0A7I2V577_HUMAN Zinc finger FYVE-type containing 26 ZFYVE26 double-strand break repair via homologous recombination [GO:0000724]; mitotic cytokinesis [GO:0000281] -A0A7P0T8M2 unreviewed A0A7P0T8M2_HUMAN Sorting nexin 9 SNX9 endocytosis [GO:0006897]; intracellular protein transport [GO:0006886]; mitotic cytokinesis [GO:0000281] -A2RRC9 unreviewed A2RRC9_HUMAN IQ motif containing GTPase activating protein 3 IQGAP3 mitotic actomyosin contractile ring assembly actin filament organization [GO:1903479] -A2VCS9 unreviewed A2VCS9_HUMAN MAP9 protein (Microtubule associated protein 9) MAP9 mitotic cytokinesis [GO:0000281]; spindle assembly [GO:0051225] -A2VCT0 unreviewed A2VCT0_HUMAN MAP9 protein MAP9 mitotic cytokinesis [GO:0000281]; mitotic spindle assembly [GO:0090307]; regulation of mitotic cytokinesis [GO:1902412] -A4D1Y2 unreviewed A4D1Y2_HUMAN Similar to cell division cycle 10 homolog LOC392884 tcag7.1317 cell division [GO:0051301] -A4FUA2 unreviewed A4FUA2_HUMAN SPAG5 protein SPAG5 cell division [GO:0051301]; regulation of attachment of spindle microtubules to kinetochore [GO:0051988] -A5D8X2 unreviewed A5D8X2_HUMAN Anaphase promoting complex subunit 7 ANAPC7 cell division [GO:0051301]; positive regulation of mitotic metaphase/anaphase transition [GO:0045842]; protein ubiquitination [GO:0016567] -A8K3X3 unreviewed A8K3X3_HUMAN cDNA FLJ77685 cell division [GO:0051301]; mitotic sister chromatid segregation [GO:0000070] -A8K5D9 unreviewed A8K5D9_HUMAN cDNA FLJ77424, highly similar to Homo sapiens anillin, actin binding protein (scraps homolog, Drosophila), mRNA actomyosin contractile ring assembly [GO:0000915]; mitotic cytokinesis [GO:0000281]; septin ring organization [GO:0031106] -A8K6Q9 unreviewed A8K6Q9_HUMAN cDNA FLJ75882, highly similar to Homo sapiens spastic paraplegia 20, spartin (Troyer syndrome) (SPG20), mRNA cell division [GO:0051301]; negative regulation of BMP signaling pathway [GO:0030514] -A8K8J5 unreviewed A8K8J5_HUMAN cDNA FLJ76437, highly similar to Homo sapiens cell division cycle 2-like 6 (CDK8-like) (CDC2L6), mRNA cell division [GO:0051301] -A8K8N3 unreviewed A8K8N3_HUMAN cDNA FLJ78740, highly similar to Homo sapiens sperm associated antigen 5 (SPAG5), mRNA cell division [GO:0051301]; regulation of attachment of spindle microtubules to kinetochore [GO:0051988] -A8K8X5 unreviewed A8K8X5_HUMAN cDNA FLJ76447, highly similar to Homo sapiens cell division cycle associated 7-like (CDCA7L), mRNA cell division [GO:0051301]; regulation of DNA-templated transcription [GO:0006355] -A8KAQ7 unreviewed A8KAQ7_HUMAN ANAPC7 protein ANAPC7 cell division [GO:0051301]; positive regulation of mitotic metaphase/anaphase transition [GO:0045842]; protein ubiquitination [GO:0016567] -A8MSM7 unreviewed A8MSM7_HUMAN Microtubule associated protein 9 MAP9 mitotic cytokinesis [GO:0000281]; spindle assembly [GO:0051225] -B2R749 unreviewed B2R749_HUMAN cDNA, FLJ93285, highly similar to Homo sapiens cell division cycle associated 3 (CDCA3), mRNA cell division [GO:0051301] -B2R7C2 unreviewed B2R7C2_HUMAN cDNA, FLJ93375, highly similar to Homo sapiens ZW10, kinetochore associated, homolog (Drosophila) (ZW10), mRNA cell division [GO:0051301]; endoplasmic reticulum to Golgi vesicle-mediated transport [GO:0006888]; mitotic spindle assembly checkpoint signaling [GO:0007094] -B2RCW0 unreviewed B2RCW0_HUMAN cDNA, FLJ96326, highly similar to Homo sapiens CDC16 cell division cycle 16 homolog (S. cerevisiae) (CDC16), mRNA anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; positive regulation of mitotic metaphase/anaphase transition [GO:0045842]; protein ubiquitination [GO:0016567] -B3KMI3 unreviewed B3KMI3_HUMAN Spastic paraplegia 20, spartin (Troyer syndrome), isoform CRA_b (cDNA FLJ11087 fis, clone PLACE1005277, highly similar to Spartin) SPG20 hCG_32832 cell division [GO:0051301]; negative regulation of BMP signaling pathway [GO:0030514] -B3KML8 unreviewed B3KML8_HUMAN cDNA FLJ11345 fis, clone PLACE1010877, highly similar to Spartin cell division [GO:0051301]; negative regulation of BMP signaling pathway [GO:0030514] -B3KMP2 unreviewed B3KMP2_HUMAN cDNA FLJ11747 fis, clone HEMBA1005530, highly similar to Anaphase-promoting complex subunit 7 cell division [GO:0051301]; positive regulation of mitotic metaphase/anaphase transition [GO:0045842]; protein ubiquitination [GO:0016567] -B3KN47 unreviewed B3KN47_HUMAN Anaphase-promoting complex subunit 4 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; protein K11-linked ubiquitination [GO:0070979] -B3KPP5 unreviewed B3KPP5_HUMAN cDNA FLJ32030 fis, clone NTONG2000040, highly similar to Actin, alpha cardiac mitotic cytokinesis [GO:0000281] -B3KRS8 unreviewed B3KRS8_HUMAN cDNA FLJ34845 fis, clone NT2NE2011221, highly similar to Homo sapiens cell division cycle associated 2 (CDCA2), mRNA cell division [GO:0051301] -B3KSI5 unreviewed B3KSI5_HUMAN cDNA FLJ36351 fis, clone THYMU2007146, highly similar to Sororin (Cell division cycle-associated protein 5) cell division [GO:0051301]; double-strand break repair [GO:0006302]; mitotic metaphase chromosome alignment [GO:0007080]; mitotic sister chromatid cohesion [GO:0007064]; positive regulation of exit from mitosis [GO:0031536] -B3KYB1 unreviewed B3KYB1_HUMAN cDNA FLJ16760 fis, clone BRACE3050764, highly similar to Cell division protein kinase 10 cell division [GO:0051301]; regulation of mitotic cell cycle [GO:0007346] -B4DFK4 unreviewed B4DFK4_HUMAN cDNA FLJ55537, highly similar to Anaphase-promoting complex subunit 5 (APC5)(Cyclosome subunit 5) anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; positive regulation of mitotic metaphase/anaphase transition [GO:0045842]; protein K11-linked ubiquitination [GO:0070979] -B4DHD2 unreviewed B4DHD2_HUMAN cDNA FLJ55458, highly similar to Programmed cell death 6-interacting protein mitotic cytokinesis [GO:0000281]; multivesicular body sorting pathway [GO:0071985] -B4DK74 unreviewed B4DK74_HUMAN CDC16 cell division cycle 16 homolog (S. cerevisiae), isoform CRA_d (cDNA FLJ56731, highly similar to Cell division cycle protein 16 homolog) CDC16 hCG_2011955 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; positive regulation of mitotic metaphase/anaphase transition [GO:0045842]; protein ubiquitination [GO:0016567] -B4DM13 unreviewed B4DM13_HUMAN cDNA FLJ52932, highly similar to Homo sapiens cell division cycle associated 7 (CDCA7), transcript variant 2, mRNA cell division [GO:0051301]; regulation of DNA-templated transcription [GO:0006355] -B4DN08 unreviewed B4DN08_HUMAN cDNA FLJ57402, highly similar to Homo sapiens EF-hand domain (C-terminal) containing 2 (EFHC2), mRNA cilium-dependent cell motility [GO:0060285]; mitotic cytokinesis [GO:0000281]; mitotic spindle organization [GO:0007052]; regulation of neuron projection development [GO:0010975] -B4DSL6 unreviewed B4DSL6_HUMAN cDNA FLJ57190, highly similar to Actin-binding protein anillin actomyosin contractile ring assembly [GO:0000915]; mitotic cytokinesis [GO:0000281]; septin ring organization [GO:0031106] -B4DUB1 unreviewed B4DUB1_HUMAN cDNA FLJ50029, highly similar to Cell division cycle 2-like protein kinase 6 cell division [GO:0051301] -B4DVG9 unreviewed B4DVG9_HUMAN cDNA FLJ57007, highly similar to Microtubule-associated protein 9 mitotic cytokinesis [GO:0000281]; mitotic spindle assembly [GO:0090307]; regulation of mitotic cytokinesis [GO:1902412] -B4DXT5 unreviewed B4DXT5_HUMAN cDNA FLJ53483, highly similar to Spartin cell division [GO:0051301]; negative regulation of BMP signaling pathway [GO:0030514] -B4DYP9 unreviewed B4DYP9_HUMAN cDNA FLJ59100, highly similar to Cell division cycle protein 20 homolog cell division [GO:0051301] -B4DZU1 unreviewed B4DZU1_HUMAN cDNA FLJ58385, moderately similar to Centrobin centriole replication [GO:0007099]; centrosome separation [GO:0051299]; mitotic cytokinetic process [GO:1902410]; regulation of cilium assembly [GO:1902017] -B4E1R3 unreviewed B4E1R3_HUMAN cDNA FLJ52878, highly similar to Cell division cycle-associated protein 4 cell division [GO:0051301] -B7Z2S4 unreviewed B7Z2S4_HUMAN cDNA FLJ51667, highly similar to EF-hand domain-containing protein 1 cilium-dependent cell motility [GO:0060285]; mitotic cytokinesis [GO:0000281]; mitotic spindle organization [GO:0007052] -B7Z319 unreviewed B7Z319_HUMAN cDNA FLJ53790, highly similar to Cell division protein kinase 10 cell division [GO:0051301]; regulation of mitotic cell cycle [GO:0007346] -B7Z3D6 unreviewed B7Z3D6_HUMAN cDNA FLJ50170, highly similar to Cell division control protein 2 homolog cell division [GO:0051301]; G2/M transition of mitotic cell cycle [GO:0000086]; mitotic G2 DNA damage checkpoint signaling [GO:0007095] -B7Z537 unreviewed B7Z537_HUMAN cDNA FLJ59580, highly similar to Cell division protein kinase 10 cell division [GO:0051301]; regulation of mitotic cell cycle [GO:0007346] -B7Z5C1 unreviewed B7Z5C1_HUMAN cDNA FLJ56126, highly similar to Programmed cell death 6-interacting protein mitotic cytokinesis [GO:0000281]; multivesicular body sorting pathway [GO:0071985] -B7Z5H7 unreviewed B7Z5H7_HUMAN non-specific serine/threonine protein kinase (EC 2.7.11.1) cell division [GO:0051301]; mitotic DNA damage checkpoint signaling [GO:0044773] -B7Z5Q5 unreviewed B7Z5Q5_HUMAN cDNA FLJ61606, highly similar to Homo sapiens cell division cycle associated 2 (CDCA2), mRNA cell division [GO:0051301]; regulation of chromosome segregation [GO:0051983]; regulation of mitotic nuclear division [GO:0007088] -B7Z5S1 unreviewed B7Z5S1_HUMAN cDNA FLJ61699, highly similar to Homo sapiens androgen-induced proliferation inhibitor (APRIN), transcript variant 1, mRNA cell division [GO:0051301]; DNA repair [GO:0006281]; mitotic sister chromatid cohesion [GO:0007064] -B7Z6Z3 unreviewed B7Z6Z3_HUMAN cDNA FLJ58697, highly similar to Anaphase-promoting complex subunit 5 (APC5)(Cyclosome subunit 5) anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; positive regulation of mitotic metaphase/anaphase transition [GO:0045842]; protein K11-linked ubiquitination [GO:0070979] -B7Z7S9 unreviewed B7Z7S9_HUMAN cDNA FLJ61724, highly similar to Shugoshin-like 2 cell division [GO:0051301]; chromosome segregation [GO:0007059]; meiotic sister chromatid cohesion [GO:0051177] -B7Z7U6 unreviewed B7Z7U6_HUMAN cDNA FLJ51769, highly similar to Ras GTPase-activating-like protein IQGAP2 mitotic actomyosin contractile ring assembly actin filament organization [GO:1903479] -B7Z7X2 unreviewed B7Z7X2_HUMAN cDNA FLJ52367, highly similar to Ras GTPase-activating-like protein IQGAP2 mitotic actomyosin contractile ring assembly actin filament organization [GO:1903479] -B7Z881 unreviewed B7Z881_HUMAN cDNA FLJ52376, highly similar to Ras GTPase-activating-like protein IQGAP2 mitotic actomyosin contractile ring assembly actin filament organization [GO:1903479] -B9EJB6 unreviewed B9EJB6_HUMAN Microtubule-associated protein 9 MAP9 mitotic cytokinesis [GO:0000281]; mitotic spindle assembly [GO:0090307]; regulation of mitotic cytokinesis [GO:1902412] -C9JW92 unreviewed C9JW92_HUMAN Shugoshin 2 SGO2 cell division [GO:0051301]; chromosome segregation [GO:0007059] -C9JXH8 unreviewed C9JXH8_HUMAN Microtubule associated protein 9 MAP9 mitotic cytokinesis [GO:0000281]; spindle assembly [GO:0051225] -D6R9Q5 unreviewed D6R9Q5_HUMAN Anaphase-promoting complex subunit 10 ANAPC10 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301] -D6RA92 unreviewed D6RA92_HUMAN Anaphase-promoting complex subunit 10 ANAPC10 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301] -D6RAP6 unreviewed D6RAP6_HUMAN Anaphase promoting complex subunit 4 ANAPC4 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301] -D6RB36 unreviewed D6RB36_HUMAN Anaphase-promoting complex subunit 10 ANAPC10 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301] -D6RD74 unreviewed D6RD74_HUMAN Anaphase-promoting complex subunit 10 ANAPC10 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301] -D6RFM7 unreviewed D6RFM7_HUMAN Anaphase promoting complex subunit 4 ANAPC4 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301] -E5RIU6 unreviewed E5RIU6_HUMAN Cyclin dependent kinase 1 CDK1 cell division [GO:0051301] -E7ETZ8 unreviewed E7ETZ8_HUMAN Microtubule associated protein 9 MAP9 mitotic cytokinesis [GO:0000281]; spindle assembly [GO:0051225] -E9PMD0 unreviewed E9PMD0_HUMAN Uncharacterized protein cell division [GO:0051301]; regulation of attachment of spindle microtubules to kinetochore [GO:0051988] -E9RFS7 unreviewed E9RFS7_HUMAN Shugoshin-like 1 isoform P1 SGOL1 cell division [GO:0051301]; chromosome segregation [GO:0007059]; meiotic sister chromatid cohesion [GO:0051177] -F5GZT2 unreviewed F5GZT2_HUMAN Sperm associated antigen 5 SPAG5 cell division [GO:0051301]; regulation of attachment of spindle microtubules to kinetochore [GO:0051988] -F5H0N1 unreviewed F5H0N1_HUMAN Anaphase promoting complex subunit 5 ANAPC5 cell division [GO:0051301]; protein ubiquitination [GO:0016567] -F5H3S5 unreviewed F5H3S5_HUMAN Anaphase promoting complex subunit 5 ANAPC5 cell division [GO:0051301] -F5H6J0 unreviewed F5H6J0_HUMAN Ankyrin repeat and LEM domain containing 2 ANKLE2 cell division [GO:0051301] -F8WB17 unreviewed F8WB17_HUMAN Shugoshin 1 SGO1 cell division [GO:0051301]; chromosome segregation [GO:0007059]; organelle organization [GO:0006996] -G3V230 unreviewed G3V230_HUMAN Zinc finger FYVE-type containing 26 ZFYVE26 double-strand break repair via homologous recombination [GO:0000724]; mitotic cytokinesis [GO:0000281] -H0Y432 unreviewed H0Y432_HUMAN Centrosomal protein 55 CEP55 mitotic cytokinesis [GO:0000281]; regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051896] -H0Y9Z8 unreviewed H0Y9Z8_HUMAN Non-SMC condensin I complex subunit G NCAPG cell division [GO:0051301]; mitotic chromosome condensation [GO:0007076] -H0YA62 unreviewed H0YA62_HUMAN Cyclin B1 CCNB1 cell division [GO:0051301]; mitotic cell cycle phase transition [GO:0044772] -H0YBQ2 unreviewed H0YBQ2_HUMAN Cyclin E2 CCNE2 cell division [GO:0051301] -H0YCZ2 unreviewed H0YCZ2_HUMAN Kinetochore scaffold 1 KNL1 attachment of spindle microtubules to kinetochore [GO:0008608]; cell division [GO:0051301]; protein localization to kinetochore [GO:0034501] -H3BQ52 unreviewed H3BQ52_HUMAN cAMP regulated phosphoprotein 19 ARPP19 cell division [GO:0051301] -H3BUD3 unreviewed H3BUD3_HUMAN Cyclin F CCNF cell division [GO:0051301] -I0EZ68 unreviewed I0EZ68_HUMAN Cell division cycle protein 27 CDC27 cell division [GO:0051301] -I0EZ72 unreviewed I0EZ72_HUMAN Cell division cycle protein 27 CDC27 cell division [GO:0051301] -I3L1Q9 unreviewed I3L1Q9_HUMAN Cyclin E1 CCNE1 cell division [GO:0051301] -I3L413 unreviewed I3L413_HUMAN Cyclin E1 CCNE1 cell division [GO:0051301] -J3KSV2 unreviewed J3KSV2_HUMAN Sperm associated antigen 5 SPAG5 cell division [GO:0051301]; regulation of attachment of spindle microtubules to kinetochore [GO:0051988] -J3KTQ0 unreviewed J3KTQ0_HUMAN Sperm associated antigen 5 SPAG5 cell division [GO:0051301]; regulation of attachment of spindle microtubules to kinetochore [GO:0051988] -J3QRV8 unreviewed J3QRV8_HUMAN Sperm associated antigen 5 SPAG5 cell division [GO:0051301]; regulation of attachment of spindle microtubules to kinetochore [GO:0051988] -J3QS12 unreviewed J3QS12_HUMAN Sperm associated antigen 5 SPAG5 cell division [GO:0051301]; regulation of attachment of spindle microtubules to kinetochore [GO:0051988] -K7ELC8 unreviewed K7ELC8_HUMAN Sperm associated antigen 5 SPAG5 cell division [GO:0051301]; regulation of attachment of spindle microtubules to kinetochore [GO:0051988] -K7ELG0 unreviewed K7ELG0_HUMAN Sperm associated antigen 5 SPAG5 cell division [GO:0051301]; regulation of attachment of spindle microtubules to kinetochore [GO:0051988] -K7EP61 unreviewed K7EP61_HUMAN Spindle and kinetochore-associated protein 1 SKA1 cell division [GO:0051301]; chromosome segregation [GO:0007059] -K7EPW0 unreviewed K7EPW0_HUMAN Spindle and kinetochore-associated protein 1 SKA1 cell division [GO:0051301]; chromosome segregation [GO:0007059] -Q05C46 unreviewed Q05C46_HUMAN CASC5 protein CASC5 attachment of spindle microtubules to kinetochore [GO:0008608]; cell division [GO:0051301]; protein localization to kinetochore [GO:0034501] -Q05CN5 unreviewed Q05CN5_HUMAN MAP9 protein MAP9 mitotic cytokinesis [GO:0000281]; mitotic spindle assembly [GO:0090307]; regulation of mitotic cytokinesis [GO:1902412] -Q2M2R1 unreviewed Q2M2R1_HUMAN ANAPC7 protein ANAPC7 cell division [GO:0051301]; positive regulation of mitotic metaphase/anaphase transition [GO:0045842]; protein ubiquitination [GO:0016567] -Q3C1V5 unreviewed Q3C1V5_HUMAN Protein inscuteable homologue C-terminal domain-containing protein apical protein localization [GO:0045176]; asymmetric cell division [GO:0008356]; establishment of mitotic spindle orientation [GO:0000132]; regulation of asymmetric cell division [GO:0009786] -Q49A41 unreviewed Q49A41_HUMAN ANAPC5 protein (cDNA FLJ30217 fis, clone BRACE2001709, highly similar to Anaphase-promoting complex subunit 5 (APC5)(Cyclosome subunit 5)) ANAPC5 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; positive regulation of mitotic metaphase/anaphase transition [GO:0045842]; protein K11-linked ubiquitination [GO:0070979] -Q4G1A1 unreviewed Q4G1A1_HUMAN DSN1 protein DSN1 cell division [GO:0051301]; mitotic sister chromatid segregation [GO:0000070] -Q4KMX6 unreviewed Q4KMX6_HUMAN ANAPC7 protein ANAPC7 cell division [GO:0051301]; positive regulation of mitotic metaphase/anaphase transition [GO:0045842]; protein ubiquitination [GO:0016567] -Q4W4Y1 unreviewed Q4W4Y1_HUMAN Dopamine receptor interacting protein 4 DRIP4 mitotic cytokinesis [GO:0000281]; multivesicular body sorting pathway [GO:0071985] -Q4W5I2 unreviewed Q4W5I2_HUMAN Anaphase-promoting complex subunit 10 APC10 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; protein K11-linked ubiquitination [GO:0070979] -Q59EG1 unreviewed Q59EG1_HUMAN CDC16 homolog anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; positive regulation of mitotic metaphase/anaphase transition [GO:0045842]; protein ubiquitination [GO:0016567] -Q59GL4 unreviewed Q59GL4_HUMAN Cell division cycle 2-like 2 isoform 4 variant cell division [GO:0051301] -Q59HA3 unreviewed Q59HA3_HUMAN IQ motif containing GTPase activating protein 2 variant mitotic actomyosin contractile ring assembly actin filament organization [GO:1903479] -Q5JW57 unreviewed Q5JW57_HUMAN DSN1 component of MIS12 kinetochore complex DSN1 cell division [GO:0051301]; chromosome segregation [GO:0007059] -Q64FX5 unreviewed Q64FX5_HUMAN AKNA transcript F2 AKNA epithelial to mesenchymal transition [GO:0001837]; neuroblast delamination [GO:0060234]; neuroblast division in subventricular zone [GO:0021849] -Q64FX9 unreviewed Q64FX9_HUMAN AKNA transcript C2 AKNA epithelial to mesenchymal transition [GO:0001837]; neuroblast delamination [GO:0060234]; neuroblast division in subventricular zone [GO:0021849] -Q64FY0 unreviewed Q64FY0_HUMAN AKNA transcript C1 AKNA epithelial to mesenchymal transition [GO:0001837]; neuroblast delamination [GO:0060234]; neuroblast division in subventricular zone [GO:0021849] -Q64FY1 unreviewed Q64FY1_HUMAN AKNA transcript B1 AKNA epithelial to mesenchymal transition [GO:0001837]; neuroblast delamination [GO:0060234]; neuroblast division in subventricular zone [GO:0021849] -Q6JSD6 unreviewed Q6JSD6_HUMAN Cell division cycle 7-like protein 1 CDC7 cell division [GO:0051301] -Q6PH77 unreviewed Q6PH77_HUMAN MAP9 protein MAP9 mitotic cytokinesis [GO:0000281]; mitotic spindle assembly [GO:0090307]; regulation of mitotic cytokinesis [GO:1902412] -Q7Z7J6 unreviewed Q7Z7J6_HUMAN Actin alpha 1 skeletal muscle protein ACTA1 mitotic cytokinesis [GO:0000281] -Q8NB28 unreviewed Q8NB28_HUMAN Dynactin 3 (P22), isoform CRA_a (cDNA FLJ34342 fis, clone FEBRA2009986, moderately similar to Dynactin 3 (p22); dynactin light chain) DCTN3 hCG_20473 cytoskeleton-dependent cytokinesis [GO:0061640] -Q8WUE3 unreviewed Q8WUE3_HUMAN CCNE2 protein (Cyclin E2) CCNE2 hCG_15054 cell division [GO:0051301] -Q96J05 unreviewed Q96J05_HUMAN ECT2 protein mitotic cytokinesis [GO:0000281]; nervous system development [GO:0007399]; regulation of cytokinesis, actomyosin contractile ring assembly [GO:2000431] -Q96PA3 unreviewed Q96PA3_HUMAN IQGAP1 protein epidermal growth factor receptor signaling pathway [GO:0007173]; fibroblast migration [GO:0010761]; mitotic actomyosin contractile ring assembly actin filament organization [GO:1903479] -Q9H2F0 unreviewed Q9H2F0_HUMAN Cell division cycle 25C splice variant 3 CDC25C cell division [GO:0051301] -Q9H5X5 unreviewed Q9H5X5_HUMAN cDNA: FLJ22843 fis, clone KAIA5015 cilium-dependent cell motility [GO:0060285]; mitotic cytokinesis [GO:0000281]; mitotic spindle organization [GO:0007052]; regulation of neuron projection development [GO:0010975] -Q9H834 unreviewed Q9H834_HUMAN cDNA FLJ13966 fis, clone Y79AA1001394, weakly similar to CELL DIVISION PROTEIN FTSH HOMOLOG cell division [GO:0051301]; mitochondrion organization [GO:0007005] -Q9Y2B7 unreviewed Q9Y2B7_HUMAN mRNA, expressed in fibroblasts of periodontal ligament, clone:PDL-108 anaphase-promoting complex-dependent catabolic process [GO:0031145]; cell division [GO:0051301]; positive regulation of mitotic metaphase/anaphase transition [GO:0045842]; protein K11-linked ubiquitination [GO:0070979] -X6RA56 unreviewed X6RA56_HUMAN Dynactin subunit 3 DCTN3 cytoskeleton-dependent cytokinesis [GO:0061640] -X6RCK5 unreviewed X6RCK5_HUMAN Dynactin subunit 3 DCTN3 cytoskeleton-dependent cytokinesis [GO:0061640] -X6RLR1 unreviewed X6RLR1_HUMAN Dynactin subunit 3 DCTN3 cytoskeleton-dependent cytokinesis [GO:0061640] diff --git a/hiv-benchmarking/hiv_raw_data/uniprotkb_go_0098609_AND_taxonomy_id_96_2024_07_29.tsv b/hiv-benchmarking/hiv_raw_data/uniprotkb_go_0098609_AND_taxonomy_id_96_2024_07_29.tsv deleted file mode 100644 index d8fcd5c..0000000 --- a/hiv-benchmarking/hiv_raw_data/uniprotkb_go_0098609_AND_taxonomy_id_96_2024_07_29.tsv +++ /dev/null @@ -1,1309 +0,0 @@ -Entry Reviewed Entry Name Protein names Gene Names Gene Ontology (biological process) -A0A024R5Z7 unreviewed A0A024R5Z7_HUMAN Annexin ANXA2 hCG_2004404 angiogenesis [GO:0001525]; cell-matrix adhesion [GO:0007160]; collagen fibril organization [GO:0030199]; epithelial cell apoptotic process [GO:1904019]; fibrinolysis [GO:0042730]; lung development [GO:0030324]; mRNA transcription by RNA polymerase II [GO:0042789]; negative regulation of low-density lipoprotein particle receptor catabolic process [GO:0032804]; positive regulation of low-density lipoprotein particle clearance [GO:1905581]; positive regulation of receptor recycling [GO:0001921]; positive regulation of receptor-mediated endocytosis involved in cholesterol transport [GO:1905602]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of neurogenesis [GO:0050767]; response to activity [GO:0014823] -A0A0U2ZQU7 unreviewed A0A0U2ZQU7_HUMAN Cadherin-1 (Epithelial cadherin) CDH1 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; negative regulation of axon extension [GO:0030517]; neuron projection development [GO:0031175]; pituitary gland development [GO:0021983]; regulation of protein catabolic process at postsynapse, modulating synaptic transmission [GO:0099576]; response to Gram-positive bacterium [GO:0140459]; response to organic substance [GO:0010033]; response to toxic substance [GO:0009636]; response to xenobiotic stimulus [GO:0009410]; synapse assembly [GO:0007416] -A0A140VJM0 unreviewed A0A140VJM0_HUMAN Testicular tissue protein Li 96 (Testicular tissue protein Li 98) cell adhesion mediated by integrin [GO:0033627]; cell-matrix adhesion [GO:0007160]; dendritic spine maintenance [GO:0097062]; exploration behavior [GO:0035640]; heart development [GO:0007507]; integrin-mediated signaling pathway [GO:0007229]; leukocyte migration [GO:0050900]; maternal process involved in female pregnancy [GO:0060135]; memory [GO:0007613]; negative regulation of cell projection organization [GO:0031345]; negative regulation of Rho protein signal transduction [GO:0035024]; neuron migration [GO:0001764]; positive regulation of cell-substrate adhesion [GO:0010811]; positive regulation of epithelial cell migration [GO:0010634]; positive regulation of gene expression [GO:0010628]; positive regulation of neuron projection development [GO:0010976]; response to gonadotropin [GO:0034698]; response to xenobiotic stimulus [GO:0009410]; Rho protein signal transduction [GO:0007266]; synaptic membrane adhesion [GO:0099560] -A0A1U9X8X8 unreviewed A0A1U9X8X8_HUMAN Corneodesmosin cell-cell adhesion [GO:0098609]; skin morphogenesis [GO:0043589] -A0A384MDY0 unreviewed A0A384MDY0_HUMAN Catenin alpha-1 CTNNA1 hCG_1782385 apical junction assembly [GO:0043297]; axon regeneration [GO:0031103]; cell migration [GO:0016477]; epithelial cell-cell adhesion [GO:0090136]; establishment or maintenance of cell polarity [GO:0007163]; extrinsic apoptotic signaling pathway in absence of ligand [GO:0097192]; gap junction assembly [GO:0016264]; integrin-mediated signaling pathway [GO:0007229]; male gonad development [GO:0008584]; negative regulation of cell motility [GO:2000146]; negative regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001240]; negative regulation of integrin-mediated signaling pathway [GO:2001045]; negative regulation of neuroblast proliferation [GO:0007406]; negative regulation of protein localization to nucleus [GO:1900181]; neuroblast proliferation [GO:0007405]; odontogenesis of dentin-containing tooth [GO:0042475]; ovarian follicle development [GO:0001541]; positive regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001241]; positive regulation of smoothened signaling pathway [GO:0045880]; protein localization [GO:0008104]; response to estrogen [GO:0043627]; response to organic cyclic compound [GO:0014070]; smoothened signaling pathway [GO:0007224] -A0A4D5RA86 unreviewed A0A4D5RA86_HUMAN Annexin adaptive immune response [GO:0002250]; alpha-beta T cell differentiation [GO:0046632]; arachidonic acid secretion [GO:0050482]; cell surface receptor signaling pathway [GO:0007166]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; DNA duplex unwinding [GO:0032508]; endocrine pancreas development [GO:0031018]; estrous cycle [GO:0044849]; gliogenesis [GO:0042063]; granulocyte chemotaxis [GO:0071621]; hepatocyte differentiation [GO:0070365]; inflammatory response [GO:0006954]; insulin secretion [GO:0030073]; keratinocyte differentiation [GO:0030216]; myoblast migration involved in skeletal muscle regeneration [GO:0014839]; negative regulation of exocytosis [GO:0045920]; negative regulation of T-helper 2 cell differentiation [GO:0045629]; neutrophil clearance [GO:0097350]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of prostaglandin biosynthetic process [GO:0031394]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell differentiation [GO:0045627]; positive regulation of vesicle fusion [GO:0031340]; positive regulation of wound healing [GO:0090303]; prolactin secretion [GO:0070459]; prostate gland development [GO:0030850]; regulation of cell shape [GO:0008360]; regulation of hormone secretion [GO:0046883]; regulation of inflammatory response [GO:0050727]; regulation of interleukin-1 production [GO:0032652]; regulation of leukocyte migration [GO:0002685]; response to estradiol [GO:0032355]; response to interleukin-1 [GO:0070555]; response to peptide hormone [GO:0043434]; response to X-ray [GO:0010165] -A0A4D5RA95 unreviewed A0A4D5RA95_HUMAN Annexin adaptive immune response [GO:0002250]; alpha-beta T cell differentiation [GO:0046632]; arachidonic acid secretion [GO:0050482]; cell surface receptor signaling pathway [GO:0007166]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; DNA duplex unwinding [GO:0032508]; endocrine pancreas development [GO:0031018]; estrous cycle [GO:0044849]; gliogenesis [GO:0042063]; granulocyte chemotaxis [GO:0071621]; hepatocyte differentiation [GO:0070365]; inflammatory response [GO:0006954]; insulin secretion [GO:0030073]; keratinocyte differentiation [GO:0030216]; myoblast migration involved in skeletal muscle regeneration [GO:0014839]; negative regulation of exocytosis [GO:0045920]; negative regulation of T-helper 2 cell differentiation [GO:0045629]; neutrophil clearance [GO:0097350]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of prostaglandin biosynthetic process [GO:0031394]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell differentiation [GO:0045627]; positive regulation of vesicle fusion [GO:0031340]; positive regulation of wound healing [GO:0090303]; prolactin secretion [GO:0070459]; prostate gland development [GO:0030850]; regulation of cell shape [GO:0008360]; regulation of hormone secretion [GO:0046883]; regulation of inflammatory response [GO:0050727]; regulation of interleukin-1 production [GO:0032652]; regulation of leukocyte migration [GO:0002685]; response to estradiol [GO:0032355]; response to interleukin-1 [GO:0070555]; response to peptide hormone [GO:0043434]; response to X-ray [GO:0010165] -A0A4D5RAA2 unreviewed A0A4D5RAA2_HUMAN Annexin adaptive immune response [GO:0002250]; alpha-beta T cell differentiation [GO:0046632]; arachidonic acid secretion [GO:0050482]; cell surface receptor signaling pathway [GO:0007166]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; DNA duplex unwinding [GO:0032508]; endocrine pancreas development [GO:0031018]; estrous cycle [GO:0044849]; gliogenesis [GO:0042063]; granulocyte chemotaxis [GO:0071621]; hepatocyte differentiation [GO:0070365]; inflammatory response [GO:0006954]; insulin secretion [GO:0030073]; keratinocyte differentiation [GO:0030216]; myoblast migration involved in skeletal muscle regeneration [GO:0014839]; negative regulation of exocytosis [GO:0045920]; negative regulation of T-helper 2 cell differentiation [GO:0045629]; neutrophil clearance [GO:0097350]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of prostaglandin biosynthetic process [GO:0031394]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell differentiation [GO:0045627]; positive regulation of vesicle fusion [GO:0031340]; positive regulation of wound healing [GO:0090303]; prolactin secretion [GO:0070459]; prostate gland development [GO:0030850]; regulation of cell shape [GO:0008360]; regulation of hormone secretion [GO:0046883]; regulation of inflammatory response [GO:0050727]; regulation of interleukin-1 production [GO:0032652]; regulation of leukocyte migration [GO:0002685]; response to estradiol [GO:0032355]; response to interleukin-1 [GO:0070555]; response to peptide hormone [GO:0043434]; response to X-ray [GO:0010165] -A0A4D5RAA5 unreviewed A0A4D5RAA5_HUMAN Annexin adaptive immune response [GO:0002250]; alpha-beta T cell differentiation [GO:0046632]; arachidonic acid secretion [GO:0050482]; cell surface receptor signaling pathway [GO:0007166]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; DNA duplex unwinding [GO:0032508]; endocrine pancreas development [GO:0031018]; estrous cycle [GO:0044849]; gliogenesis [GO:0042063]; granulocyte chemotaxis [GO:0071621]; hepatocyte differentiation [GO:0070365]; inflammatory response [GO:0006954]; insulin secretion [GO:0030073]; keratinocyte differentiation [GO:0030216]; myoblast migration involved in skeletal muscle regeneration [GO:0014839]; negative regulation of exocytosis [GO:0045920]; negative regulation of T-helper 2 cell differentiation [GO:0045629]; neutrophil clearance [GO:0097350]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of prostaglandin biosynthetic process [GO:0031394]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell differentiation [GO:0045627]; positive regulation of vesicle fusion [GO:0031340]; positive regulation of wound healing [GO:0090303]; prolactin secretion [GO:0070459]; prostate gland development [GO:0030850]; regulation of cell shape [GO:0008360]; regulation of hormone secretion [GO:0046883]; regulation of inflammatory response [GO:0050727]; regulation of interleukin-1 production [GO:0032652]; regulation of leukocyte migration [GO:0002685]; response to estradiol [GO:0032355]; response to interleukin-1 [GO:0070555]; response to peptide hormone [GO:0043434]; response to X-ray [GO:0010165] -A0A4D5RAB7 unreviewed A0A4D5RAB7_HUMAN Annexin adaptive immune response [GO:0002250]; alpha-beta T cell differentiation [GO:0046632]; arachidonic acid secretion [GO:0050482]; cell surface receptor signaling pathway [GO:0007166]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; DNA duplex unwinding [GO:0032508]; endocrine pancreas development [GO:0031018]; estrous cycle [GO:0044849]; gliogenesis [GO:0042063]; granulocyte chemotaxis [GO:0071621]; hepatocyte differentiation [GO:0070365]; inflammatory response [GO:0006954]; insulin secretion [GO:0030073]; keratinocyte differentiation [GO:0030216]; myoblast migration involved in skeletal muscle regeneration [GO:0014839]; negative regulation of exocytosis [GO:0045920]; negative regulation of T-helper 2 cell differentiation [GO:0045629]; neutrophil clearance [GO:0097350]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of prostaglandin biosynthetic process [GO:0031394]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell differentiation [GO:0045627]; positive regulation of vesicle fusion [GO:0031340]; positive regulation of wound healing [GO:0090303]; prolactin secretion [GO:0070459]; prostate gland development [GO:0030850]; regulation of cell shape [GO:0008360]; regulation of hormone secretion [GO:0046883]; regulation of inflammatory response [GO:0050727]; regulation of interleukin-1 production [GO:0032652]; regulation of leukocyte migration [GO:0002685]; response to estradiol [GO:0032355]; response to interleukin-1 [GO:0070555]; response to peptide hormone [GO:0043434]; response to X-ray [GO:0010165] -A0A4D5RAD4 unreviewed A0A4D5RAD4_HUMAN Annexin adaptive immune response [GO:0002250]; alpha-beta T cell differentiation [GO:0046632]; arachidonic acid secretion [GO:0050482]; cell surface receptor signaling pathway [GO:0007166]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; DNA duplex unwinding [GO:0032508]; endocrine pancreas development [GO:0031018]; estrous cycle [GO:0044849]; gliogenesis [GO:0042063]; granulocyte chemotaxis [GO:0071621]; hepatocyte differentiation [GO:0070365]; inflammatory response [GO:0006954]; insulin secretion [GO:0030073]; keratinocyte differentiation [GO:0030216]; myoblast migration involved in skeletal muscle regeneration [GO:0014839]; negative regulation of exocytosis [GO:0045920]; negative regulation of T-helper 2 cell differentiation [GO:0045629]; neutrophil clearance [GO:0097350]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of prostaglandin biosynthetic process [GO:0031394]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell differentiation [GO:0045627]; positive regulation of vesicle fusion [GO:0031340]; positive regulation of wound healing [GO:0090303]; prolactin secretion [GO:0070459]; prostate gland development [GO:0030850]; regulation of cell shape [GO:0008360]; regulation of hormone secretion [GO:0046883]; regulation of inflammatory response [GO:0050727]; regulation of interleukin-1 production [GO:0032652]; regulation of leukocyte migration [GO:0002685]; response to estradiol [GO:0032355]; response to interleukin-1 [GO:0070555]; response to peptide hormone [GO:0043434]; response to X-ray [GO:0010165] -A0A4D5RAD9 unreviewed A0A4D5RAD9_HUMAN Annexin A1 alpha-beta T cell differentiation [GO:0046632]; arachidonic acid secretion [GO:0050482]; cell surface receptor signaling pathway [GO:0007166]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; DNA duplex unwinding [GO:0032508]; endocrine pancreas development [GO:0031018]; estrous cycle [GO:0044849]; gliogenesis [GO:0042063]; granulocyte chemotaxis [GO:0071621]; hepatocyte differentiation [GO:0070365]; inflammatory response [GO:0006954]; insulin secretion [GO:0030073]; keratinocyte differentiation [GO:0030216]; myoblast migration involved in skeletal muscle regeneration [GO:0014839]; negative regulation of exocytosis [GO:0045920]; negative regulation of T-helper 2 cell differentiation [GO:0045629]; neutrophil clearance [GO:0097350]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of prostaglandin biosynthetic process [GO:0031394]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell differentiation [GO:0045627]; positive regulation of vesicle fusion [GO:0031340]; positive regulation of wound healing [GO:0090303]; prolactin secretion [GO:0070459]; prostate gland development [GO:0030850]; regulation of cell shape [GO:0008360]; regulation of hormone secretion [GO:0046883]; regulation of inflammatory response [GO:0050727]; regulation of interleukin-1 production [GO:0032652]; regulation of leukocyte migration [GO:0002685]; response to estradiol [GO:0032355]; response to interleukin-1 [GO:0070555]; response to peptide hormone [GO:0043434]; response to X-ray [GO:0010165] -A0A4D5RAG0 unreviewed A0A4D5RAG0_HUMAN Annexin adaptive immune response [GO:0002250]; alpha-beta T cell differentiation [GO:0046632]; arachidonic acid secretion [GO:0050482]; cell surface receptor signaling pathway [GO:0007166]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; DNA duplex unwinding [GO:0032508]; endocrine pancreas development [GO:0031018]; estrous cycle [GO:0044849]; gliogenesis [GO:0042063]; granulocyte chemotaxis [GO:0071621]; hepatocyte differentiation [GO:0070365]; inflammatory response [GO:0006954]; insulin secretion [GO:0030073]; keratinocyte differentiation [GO:0030216]; myoblast migration involved in skeletal muscle regeneration [GO:0014839]; negative regulation of exocytosis [GO:0045920]; negative regulation of T-helper 2 cell differentiation [GO:0045629]; neutrophil clearance [GO:0097350]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of prostaglandin biosynthetic process [GO:0031394]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell differentiation [GO:0045627]; positive regulation of vesicle fusion [GO:0031340]; positive regulation of wound healing [GO:0090303]; prolactin secretion [GO:0070459]; prostate gland development [GO:0030850]; regulation of cell shape [GO:0008360]; regulation of hormone secretion [GO:0046883]; regulation of inflammatory response [GO:0050727]; regulation of interleukin-1 production [GO:0032652]; regulation of leukocyte migration [GO:0002685]; response to estradiol [GO:0032355]; response to interleukin-1 [GO:0070555]; response to peptide hormone [GO:0043434]; response to X-ray [GO:0010165] -A0A4D5RAH0 unreviewed A0A4D5RAH0_HUMAN Annexin alpha-beta T cell differentiation [GO:0046632]; arachidonic acid secretion [GO:0050482]; cell surface receptor signaling pathway [GO:0007166]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; DNA duplex unwinding [GO:0032508]; endocrine pancreas development [GO:0031018]; estrous cycle [GO:0044849]; gliogenesis [GO:0042063]; granulocyte chemotaxis [GO:0071621]; hepatocyte differentiation [GO:0070365]; inflammatory response [GO:0006954]; insulin secretion [GO:0030073]; keratinocyte differentiation [GO:0030216]; myoblast migration involved in skeletal muscle regeneration [GO:0014839]; negative regulation of exocytosis [GO:0045920]; negative regulation of T-helper 2 cell differentiation [GO:0045629]; neutrophil clearance [GO:0097350]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of prostaglandin biosynthetic process [GO:0031394]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell differentiation [GO:0045627]; positive regulation of vesicle fusion [GO:0031340]; positive regulation of wound healing [GO:0090303]; prolactin secretion [GO:0070459]; prostate gland development [GO:0030850]; regulation of cell shape [GO:0008360]; regulation of hormone secretion [GO:0046883]; regulation of inflammatory response [GO:0050727]; regulation of interleukin-1 production [GO:0032652]; regulation of leukocyte migration [GO:0002685]; response to estradiol [GO:0032355]; response to interleukin-1 [GO:0070555]; response to peptide hormone [GO:0043434]; response to X-ray [GO:0010165] -A0A4D5RAH1 unreviewed A0A4D5RAH1_HUMAN Annexin adaptive immune response [GO:0002250]; alpha-beta T cell differentiation [GO:0046632]; arachidonic acid secretion [GO:0050482]; cell surface receptor signaling pathway [GO:0007166]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; DNA duplex unwinding [GO:0032508]; endocrine pancreas development [GO:0031018]; estrous cycle [GO:0044849]; gliogenesis [GO:0042063]; granulocyte chemotaxis [GO:0071621]; hepatocyte differentiation [GO:0070365]; inflammatory response [GO:0006954]; insulin secretion [GO:0030073]; keratinocyte differentiation [GO:0030216]; myoblast migration involved in skeletal muscle regeneration [GO:0014839]; negative regulation of exocytosis [GO:0045920]; negative regulation of T-helper 2 cell differentiation [GO:0045629]; neutrophil clearance [GO:0097350]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of prostaglandin biosynthetic process [GO:0031394]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell differentiation [GO:0045627]; positive regulation of vesicle fusion [GO:0031340]; positive regulation of wound healing [GO:0090303]; prolactin secretion [GO:0070459]; prostate gland development [GO:0030850]; regulation of cell shape [GO:0008360]; regulation of hormone secretion [GO:0046883]; regulation of inflammatory response [GO:0050727]; regulation of interleukin-1 production [GO:0032652]; regulation of leukocyte migration [GO:0002685]; response to estradiol [GO:0032355]; response to interleukin-1 [GO:0070555]; response to peptide hormone [GO:0043434]; response to X-ray [GO:0010165] -A0A4D5RAH8 unreviewed A0A4D5RAH8_HUMAN Annexin adaptive immune response [GO:0002250]; alpha-beta T cell differentiation [GO:0046632]; arachidonic acid secretion [GO:0050482]; cell surface receptor signaling pathway [GO:0007166]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; DNA duplex unwinding [GO:0032508]; endocrine pancreas development [GO:0031018]; estrous cycle [GO:0044849]; gliogenesis [GO:0042063]; granulocyte chemotaxis [GO:0071621]; hepatocyte differentiation [GO:0070365]; inflammatory response [GO:0006954]; insulin secretion [GO:0030073]; keratinocyte differentiation [GO:0030216]; myoblast migration involved in skeletal muscle regeneration [GO:0014839]; negative regulation of exocytosis [GO:0045920]; negative regulation of T-helper 2 cell differentiation [GO:0045629]; neutrophil clearance [GO:0097350]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of prostaglandin biosynthetic process [GO:0031394]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell differentiation [GO:0045627]; positive regulation of vesicle fusion [GO:0031340]; positive regulation of wound healing [GO:0090303]; prolactin secretion [GO:0070459]; prostate gland development [GO:0030850]; regulation of cell shape [GO:0008360]; regulation of hormone secretion [GO:0046883]; regulation of inflammatory response [GO:0050727]; regulation of interleukin-1 production [GO:0032652]; regulation of leukocyte migration [GO:0002685]; response to estradiol [GO:0032355]; response to interleukin-1 [GO:0070555]; response to peptide hormone [GO:0043434]; response to X-ray [GO:0010165] -A0A4D5RAI2 unreviewed A0A4D5RAI2_HUMAN Annexin A1 alpha-beta T cell differentiation [GO:0046632]; arachidonic acid secretion [GO:0050482]; cell surface receptor signaling pathway [GO:0007166]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; DNA duplex unwinding [GO:0032508]; endocrine pancreas development [GO:0031018]; estrous cycle [GO:0044849]; gliogenesis [GO:0042063]; granulocyte chemotaxis [GO:0071621]; hepatocyte differentiation [GO:0070365]; inflammatory response [GO:0006954]; insulin secretion [GO:0030073]; keratinocyte differentiation [GO:0030216]; myoblast migration involved in skeletal muscle regeneration [GO:0014839]; negative regulation of exocytosis [GO:0045920]; negative regulation of T-helper 2 cell differentiation [GO:0045629]; neutrophil clearance [GO:0097350]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of prostaglandin biosynthetic process [GO:0031394]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell differentiation [GO:0045627]; positive regulation of vesicle fusion [GO:0031340]; positive regulation of wound healing [GO:0090303]; prolactin secretion [GO:0070459]; prostate gland development [GO:0030850]; regulation of cell shape [GO:0008360]; regulation of hormone secretion [GO:0046883]; regulation of inflammatory response [GO:0050727]; regulation of interleukin-1 production [GO:0032652]; regulation of leukocyte migration [GO:0002685]; response to estradiol [GO:0032355]; response to interleukin-1 [GO:0070555]; response to peptide hormone [GO:0043434]; response to X-ray [GO:0010165] -A0A4D5RAI5 unreviewed A0A4D5RAI5_HUMAN Annexin adaptive immune response [GO:0002250]; alpha-beta T cell differentiation [GO:0046632]; arachidonic acid secretion [GO:0050482]; cell surface receptor signaling pathway [GO:0007166]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; DNA duplex unwinding [GO:0032508]; endocrine pancreas development [GO:0031018]; estrous cycle [GO:0044849]; gliogenesis [GO:0042063]; granulocyte chemotaxis [GO:0071621]; hepatocyte differentiation [GO:0070365]; inflammatory response [GO:0006954]; insulin secretion [GO:0030073]; keratinocyte differentiation [GO:0030216]; myoblast migration involved in skeletal muscle regeneration [GO:0014839]; negative regulation of exocytosis [GO:0045920]; negative regulation of T-helper 2 cell differentiation [GO:0045629]; neutrophil clearance [GO:0097350]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of prostaglandin biosynthetic process [GO:0031394]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell differentiation [GO:0045627]; positive regulation of vesicle fusion [GO:0031340]; positive regulation of wound healing [GO:0090303]; prolactin secretion [GO:0070459]; prostate gland development [GO:0030850]; regulation of cell shape [GO:0008360]; regulation of hormone secretion [GO:0046883]; regulation of inflammatory response [GO:0050727]; regulation of interleukin-1 production [GO:0032652]; regulation of leukocyte migration [GO:0002685]; response to estradiol [GO:0032355]; response to interleukin-1 [GO:0070555]; response to peptide hormone [GO:0043434]; response to X-ray [GO:0010165] -A0A4D5RAJ5 unreviewed A0A4D5RAJ5_HUMAN Annexin adaptive immune response [GO:0002250]; alpha-beta T cell differentiation [GO:0046632]; arachidonic acid secretion [GO:0050482]; cell surface receptor signaling pathway [GO:0007166]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; DNA duplex unwinding [GO:0032508]; endocrine pancreas development [GO:0031018]; estrous cycle [GO:0044849]; gliogenesis [GO:0042063]; granulocyte chemotaxis [GO:0071621]; hepatocyte differentiation [GO:0070365]; inflammatory response [GO:0006954]; insulin secretion [GO:0030073]; keratinocyte differentiation [GO:0030216]; myoblast migration involved in skeletal muscle regeneration [GO:0014839]; negative regulation of exocytosis [GO:0045920]; negative regulation of T-helper 2 cell differentiation [GO:0045629]; neutrophil clearance [GO:0097350]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of prostaglandin biosynthetic process [GO:0031394]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell differentiation [GO:0045627]; positive regulation of vesicle fusion [GO:0031340]; positive regulation of wound healing [GO:0090303]; prolactin secretion [GO:0070459]; prostate gland development [GO:0030850]; regulation of cell shape [GO:0008360]; regulation of hormone secretion [GO:0046883]; regulation of inflammatory response [GO:0050727]; regulation of interleukin-1 production [GO:0032652]; regulation of leukocyte migration [GO:0002685]; response to estradiol [GO:0032355]; response to interleukin-1 [GO:0070555]; response to peptide hormone [GO:0043434]; response to X-ray [GO:0010165] -A0A4D5RAS2 unreviewed A0A4D5RAS2_HUMAN Annexin A1 alpha-beta T cell differentiation [GO:0046632]; arachidonic acid secretion [GO:0050482]; cell surface receptor signaling pathway [GO:0007166]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; DNA duplex unwinding [GO:0032508]; endocrine pancreas development [GO:0031018]; estrous cycle [GO:0044849]; gliogenesis [GO:0042063]; granulocyte chemotaxis [GO:0071621]; hepatocyte differentiation [GO:0070365]; inflammatory response [GO:0006954]; insulin secretion [GO:0030073]; keratinocyte differentiation [GO:0030216]; myoblast migration involved in skeletal muscle regeneration [GO:0014839]; negative regulation of exocytosis [GO:0045920]; negative regulation of T-helper 2 cell differentiation [GO:0045629]; neutrophil clearance [GO:0097350]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of prostaglandin biosynthetic process [GO:0031394]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell differentiation [GO:0045627]; positive regulation of vesicle fusion [GO:0031340]; positive regulation of wound healing [GO:0090303]; prolactin secretion [GO:0070459]; prostate gland development [GO:0030850]; regulation of cell shape [GO:0008360]; regulation of hormone secretion [GO:0046883]; regulation of inflammatory response [GO:0050727]; regulation of interleukin-1 production [GO:0032652]; regulation of leukocyte migration [GO:0002685]; response to estradiol [GO:0032355]; response to interleukin-1 [GO:0070555]; response to peptide hormone [GO:0043434]; response to X-ray [GO:0010165] -A0A4D5RAT3 unreviewed A0A4D5RAT3_HUMAN Annexin alpha-beta T cell differentiation [GO:0046632]; arachidonic acid secretion [GO:0050482]; cell surface receptor signaling pathway [GO:0007166]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; DNA duplex unwinding [GO:0032508]; endocrine pancreas development [GO:0031018]; estrous cycle [GO:0044849]; gliogenesis [GO:0042063]; granulocyte chemotaxis [GO:0071621]; hepatocyte differentiation [GO:0070365]; inflammatory response [GO:0006954]; insulin secretion [GO:0030073]; keratinocyte differentiation [GO:0030216]; myoblast migration involved in skeletal muscle regeneration [GO:0014839]; negative regulation of exocytosis [GO:0045920]; negative regulation of T-helper 2 cell differentiation [GO:0045629]; neutrophil clearance [GO:0097350]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of prostaglandin biosynthetic process [GO:0031394]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell differentiation [GO:0045627]; positive regulation of vesicle fusion [GO:0031340]; positive regulation of wound healing [GO:0090303]; prolactin secretion [GO:0070459]; prostate gland development [GO:0030850]; regulation of cell shape [GO:0008360]; regulation of hormone secretion [GO:0046883]; regulation of inflammatory response [GO:0050727]; regulation of interleukin-1 production [GO:0032652]; regulation of leukocyte migration [GO:0002685]; response to estradiol [GO:0032355]; response to interleukin-1 [GO:0070555]; response to peptide hormone [GO:0043434]; response to X-ray [GO:0010165] -A0A4D5RAU4 unreviewed A0A4D5RAU4_HUMAN Annexin adaptive immune response [GO:0002250]; alpha-beta T cell differentiation [GO:0046632]; arachidonic acid secretion [GO:0050482]; cell surface receptor signaling pathway [GO:0007166]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; DNA duplex unwinding [GO:0032508]; endocrine pancreas development [GO:0031018]; estrous cycle [GO:0044849]; gliogenesis [GO:0042063]; granulocyte chemotaxis [GO:0071621]; hepatocyte differentiation [GO:0070365]; inflammatory response [GO:0006954]; insulin secretion [GO:0030073]; keratinocyte differentiation [GO:0030216]; myoblast migration involved in skeletal muscle regeneration [GO:0014839]; negative regulation of exocytosis [GO:0045920]; negative regulation of T-helper 2 cell differentiation [GO:0045629]; neutrophil clearance [GO:0097350]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of prostaglandin biosynthetic process [GO:0031394]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell differentiation [GO:0045627]; positive regulation of vesicle fusion [GO:0031340]; positive regulation of wound healing [GO:0090303]; prolactin secretion [GO:0070459]; prostate gland development [GO:0030850]; regulation of cell shape [GO:0008360]; regulation of hormone secretion [GO:0046883]; regulation of inflammatory response [GO:0050727]; regulation of interleukin-1 production [GO:0032652]; regulation of leukocyte migration [GO:0002685]; response to estradiol [GO:0032355]; response to interleukin-1 [GO:0070555]; response to peptide hormone [GO:0043434]; response to X-ray [GO:0010165] -A0A4D5RBK2 unreviewed A0A4D5RBK2_HUMAN Annexin A1 alpha-beta T cell differentiation [GO:0046632]; arachidonic acid secretion [GO:0050482]; cell surface receptor signaling pathway [GO:0007166]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; DNA duplex unwinding [GO:0032508]; endocrine pancreas development [GO:0031018]; estrous cycle [GO:0044849]; gliogenesis [GO:0042063]; granulocyte chemotaxis [GO:0071621]; hepatocyte differentiation [GO:0070365]; inflammatory response [GO:0006954]; insulin secretion [GO:0030073]; keratinocyte differentiation [GO:0030216]; myoblast migration involved in skeletal muscle regeneration [GO:0014839]; negative regulation of exocytosis [GO:0045920]; negative regulation of T-helper 2 cell differentiation [GO:0045629]; neutrophil clearance [GO:0097350]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of prostaglandin biosynthetic process [GO:0031394]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell differentiation [GO:0045627]; positive regulation of vesicle fusion [GO:0031340]; positive regulation of wound healing [GO:0090303]; prolactin secretion [GO:0070459]; prostate gland development [GO:0030850]; regulation of cell shape [GO:0008360]; regulation of hormone secretion [GO:0046883]; regulation of inflammatory response [GO:0050727]; regulation of interleukin-1 production [GO:0032652]; regulation of leukocyte migration [GO:0002685]; response to estradiol [GO:0032355]; response to interleukin-1 [GO:0070555]; response to peptide hormone [GO:0043434]; response to X-ray [GO:0010165] -A0A4D5RBL6 unreviewed A0A4D5RBL6_HUMAN Annexin A1 (Annexin-1) adaptive immune response [GO:0002250]; alpha-beta T cell differentiation [GO:0046632]; arachidonic acid secretion [GO:0050482]; cell surface receptor signaling pathway [GO:0007166]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; DNA duplex unwinding [GO:0032508]; endocrine pancreas development [GO:0031018]; estrous cycle [GO:0044849]; gliogenesis [GO:0042063]; granulocyte chemotaxis [GO:0071621]; hepatocyte differentiation [GO:0070365]; inflammatory response [GO:0006954]; insulin secretion [GO:0030073]; keratinocyte differentiation [GO:0030216]; myoblast migration involved in skeletal muscle regeneration [GO:0014839]; negative regulation of exocytosis [GO:0045920]; negative regulation of T-helper 2 cell differentiation [GO:0045629]; neutrophil clearance [GO:0097350]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of prostaglandin biosynthetic process [GO:0031394]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell differentiation [GO:0045627]; positive regulation of vesicle fusion [GO:0031340]; positive regulation of wound healing [GO:0090303]; prolactin secretion [GO:0070459]; prostate gland development [GO:0030850]; regulation of cell shape [GO:0008360]; regulation of hormone secretion [GO:0046883]; regulation of inflammatory response [GO:0050727]; regulation of interleukin-1 production [GO:0032652]; regulation of leukocyte migration [GO:0002685]; response to estradiol [GO:0032355]; response to interleukin-1 [GO:0070555]; response to peptide hormone [GO:0043434]; response to X-ray [GO:0010165] -A0A4D5RBR8 unreviewed A0A4D5RBR8_HUMAN Annexin A1 (Annexin-1) adaptive immune response [GO:0002250]; alpha-beta T cell differentiation [GO:0046632]; arachidonic acid secretion [GO:0050482]; cell surface receptor signaling pathway [GO:0007166]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; DNA duplex unwinding [GO:0032508]; endocrine pancreas development [GO:0031018]; estrous cycle [GO:0044849]; gliogenesis [GO:0042063]; granulocyte chemotaxis [GO:0071621]; hepatocyte differentiation [GO:0070365]; inflammatory response [GO:0006954]; insulin secretion [GO:0030073]; keratinocyte differentiation [GO:0030216]; myoblast migration involved in skeletal muscle regeneration [GO:0014839]; negative regulation of exocytosis [GO:0045920]; negative regulation of T-helper 2 cell differentiation [GO:0045629]; neutrophil clearance [GO:0097350]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of prostaglandin biosynthetic process [GO:0031394]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell differentiation [GO:0045627]; positive regulation of vesicle fusion [GO:0031340]; positive regulation of wound healing [GO:0090303]; prolactin secretion [GO:0070459]; prostate gland development [GO:0030850]; regulation of cell shape [GO:0008360]; regulation of hormone secretion [GO:0046883]; regulation of inflammatory response [GO:0050727]; regulation of interleukin-1 production [GO:0032652]; regulation of leukocyte migration [GO:0002685]; response to estradiol [GO:0032355]; response to interleukin-1 [GO:0070555]; response to peptide hormone [GO:0043434]; response to X-ray [GO:0010165] -A0A4D5RBT3 unreviewed A0A4D5RBT3_HUMAN Annexin A1 alpha-beta T cell differentiation [GO:0046632]; arachidonic acid secretion [GO:0050482]; cell surface receptor signaling pathway [GO:0007166]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; DNA duplex unwinding [GO:0032508]; endocrine pancreas development [GO:0031018]; estrous cycle [GO:0044849]; gliogenesis [GO:0042063]; granulocyte chemotaxis [GO:0071621]; hepatocyte differentiation [GO:0070365]; inflammatory response [GO:0006954]; insulin secretion [GO:0030073]; keratinocyte differentiation [GO:0030216]; myoblast migration involved in skeletal muscle regeneration [GO:0014839]; negative regulation of exocytosis [GO:0045920]; negative regulation of T-helper 2 cell differentiation [GO:0045629]; neutrophil clearance [GO:0097350]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of prostaglandin biosynthetic process [GO:0031394]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell differentiation [GO:0045627]; positive regulation of vesicle fusion [GO:0031340]; positive regulation of wound healing [GO:0090303]; prolactin secretion [GO:0070459]; prostate gland development [GO:0030850]; regulation of cell shape [GO:0008360]; regulation of hormone secretion [GO:0046883]; regulation of inflammatory response [GO:0050727]; regulation of interleukin-1 production [GO:0032652]; regulation of leukocyte migration [GO:0002685]; response to estradiol [GO:0032355]; response to interleukin-1 [GO:0070555]; response to peptide hormone [GO:0043434]; response to X-ray [GO:0010165] -A0A5F9ZH41 unreviewed A0A5F9ZH41_HUMAN Vascular permeability factor VEGFA angiogenesis [GO:0001525]; apoptotic process [GO:0006915]; artery morphogenesis [GO:0048844]; bone trabecula formation [GO:0060346]; camera-type eye morphogenesis [GO:0048593]; cardiac muscle cell development [GO:0055013]; cell-cell adhesion [GO:0098609]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; commissural neuron axon guidance [GO:0071679]; dopaminergic neuron differentiation [GO:0071542]; endothelial cell migration [GO:0043542]; endothelial cell proliferation [GO:0001935]; epithelial cell maturation [GO:0002070]; eye photoreceptor cell development [GO:0042462]; heart morphogenesis [GO:0003007]; homeostasis of number of cells within a tissue [GO:0048873]; in utero embryonic development [GO:0001701]; kidney development [GO:0001822]; lactation [GO:0007595]; lung vasculature development [GO:0060426]; lymphangiogenesis [GO:0001946]; mammary gland alveolus development [GO:0060749]; mesoderm development [GO:0007498]; motor neuron migration [GO:0097475]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cell-cell adhesion [GO:0022408]; negative regulation of epithelial to mesenchymal transition [GO:0010719]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of gene expression [GO:0010629]; neuroblast proliferation [GO:0007405]; ovarian follicle development [GO:0001541]; positive chemotaxis [GO:0050918]; positive regulation of angiogenesis [GO:0045766]; positive regulation of axon extension involved in axon guidance [GO:0048842]; positive regulation of branching involved in ureteric bud morphogenesis [GO:0090190]; positive regulation of cell division [GO:0051781]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of lymphangiogenesis [GO:1901492]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of vascular permeability [GO:0043117]; post-embryonic camera-type eye development [GO:0031077]; primitive erythrocyte differentiation [GO:0060319]; regulation of endothelial cell differentiation [GO:0045601]; regulation of hematopoietic progenitor cell differentiation [GO:1901532]; retinal ganglion cell axon guidance [GO:0031290]; surfactant homeostasis [GO:0043129]; vasodilation [GO:0042311] -A3QNQ0 unreviewed A3QNQ0_HUMAN TGF-beta receptor type-2 (TGFR-2) (EC 2.7.11.30) (TGF-beta type II receptor) (Transforming growth factor-beta receptor type II) TGFBR2 hCG_1997782 brain development [GO:0007420]; branching involved in blood vessel morphogenesis [GO:0001569]; bronchus morphogenesis [GO:0060434]; cardiac left ventricle morphogenesis [GO:0003214]; embryonic cranial skeleton morphogenesis [GO:0048701]; embryonic hemopoiesis [GO:0035162]; endocardial cushion fusion [GO:0003274]; gastrulation [GO:0007369]; growth plate cartilage chondrocyte growth [GO:0003430]; heart looping [GO:0001947]; in utero embryonic development [GO:0001701]; inferior endocardial cushion morphogenesis [GO:1905317]; Langerhans cell differentiation [GO:0061520]; lens development in camera-type eye [GO:0002088]; lens fiber cell apoptotic process [GO:1990086]; lung lobe morphogenesis [GO:0060463]; mammary gland morphogenesis [GO:0060443]; membranous septum morphogenesis [GO:0003149]; miRNA transport [GO:1990428]; Notch signaling pathway [GO:0007219]; outflow tract septum morphogenesis [GO:0003148]; positive regulation of angiogenesis [GO:0045766]; positive regulation of B cell tolerance induction [GO:0002663]; positive regulation of epithelial cell migration [GO:0010634]; positive regulation of epithelial to mesenchymal transition involved in endocardial cushion formation [GO:1905007]; positive regulation of mesenchymal cell proliferation [GO:0002053]; positive regulation of metabolic process [GO:0009893]; positive regulation of NK T cell differentiation [GO:0051138]; positive regulation of T cell tolerance induction [GO:0002666]; positive regulation of tolerance induction to self antigen [GO:0002651]; regulation of gene expression [GO:0010468]; regulation of stem cell proliferation [GO:0072091]; response to cholesterol [GO:0070723]; secondary palate development [GO:0062009]; SMAD protein signal transduction [GO:0060395]; smoothened signaling pathway [GO:0007224]; trachea formation [GO:0060440]; transforming growth factor beta receptor signaling pathway [GO:0007179]; tricuspid valve morphogenesis [GO:0003186]; vasculogenesis [GO:0001570] -A4D0Y8 unreviewed A4D0Y8_HUMAN Leptin (Obesity factor) LEP hCG_33000 tcag7.84 adipose tissue development [GO:0060612]; adult feeding behavior [GO:0008343]; aorta development [GO:0035904]; bile acid metabolic process [GO:0008206]; bone growth [GO:0098868]; bone mineralization involved in bone maturation [GO:0035630]; cardiac muscle hypertrophy [GO:0003300]; cellular response to insulin stimulus [GO:0032869]; cellular response to L-ascorbic acid [GO:0071298]; cellular response to retinoic acid [GO:0071300]; central nervous system neuron development [GO:0021954]; cholesterol metabolic process [GO:0008203]; circadian rhythm [GO:0007623]; determination of adult lifespan [GO:0008340]; eating behavior [GO:0042755]; elastin metabolic process [GO:0051541]; energy reserve metabolic process [GO:0006112]; fatty acid beta-oxidation [GO:0006635]; female pregnancy [GO:0007565]; glucose homeostasis [GO:0042593]; glucose metabolic process [GO:0006006]; glycerol biosynthetic process [GO:0006114]; hormone metabolic process [GO:0042445]; insulin secretion [GO:0030073]; intracellular signal transduction [GO:0035556]; leukocyte tethering or rolling [GO:0050901]; negative regulation of apoptotic process [GO:0043066]; negative regulation of appetite by leptin-mediated signaling pathway [GO:0038108]; negative regulation of autophagy [GO:0010507]; negative regulation of cartilage development [GO:0061037]; negative regulation of glucagon secretion [GO:0070093]; negative regulation of glutamine transport [GO:2000486]; negative regulation of lipid storage [GO:0010888]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of vasoconstriction [GO:0045906]; ovulation from ovarian follicle [GO:0001542]; phagocytosis [GO:0006909]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of fat cell apoptotic process [GO:1904651]; positive regulation of follicle-stimulating hormone secretion [GO:0046881]; positive regulation of hepatic stellate cell activation [GO:2000491]; positive regulation of insulin receptor signaling pathway [GO:0046628]; positive regulation of interleukin-12 production [GO:0032735]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of luteinizing hormone secretion [GO:0033686]; positive regulation of monoatomic ion transport [GO:0043270]; positive regulation of p38MAPK cascade [GO:1900745]; positive regulation of peroxisome proliferator activated receptor signaling pathway [GO:0035360]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of reactive oxygen species metabolic process [GO:2000379]; positive regulation of receptor signaling pathway via JAK-STAT [GO:0046427]; positive regulation of TOR signaling [GO:0032008]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; regulation of blood pressure [GO:0008217]; regulation of bone remodeling [GO:0046850]; regulation of brown fat cell differentiation [GO:0090335]; regulation of cell cycle [GO:0051726]; regulation of gluconeogenesis [GO:0006111]; regulation of insulin secretion [GO:0050796]; regulation of intestinal cholesterol absorption [GO:0030300]; regulation of lipoprotein lipid oxidation [GO:0060587]; regulation of steroid biosynthetic process [GO:0050810]; response to activity [GO:0014823]; response to dietary excess [GO:0002021]; response to estradiol [GO:0032355]; response to ethanol [GO:0045471]; response to hypoxia [GO:0001666]; response to vitamin E [GO:0033197]; T cell differentiation [GO:0030217] -A6BM72 reviewed MEG11_HUMAN Multiple epidermal growth factor-like domains protein 11 (Multiple EGF-like domains protein 11) MEGF11 KIAA1781 UNQ1949/PRO4432 homotypic cell-cell adhesion [GO:0034109]; retina layer formation [GO:0010842] -A8K571 unreviewed A8K571_HUMAN Bone morphogenetic protein 7 (Osteogenic protein 1), isoform CRA_b (cDNA FLJ78019, highly similar to Homo sapiens bone morphogenetic protein 7 (osteogenic protein 1), mRNA) (cDNA, FLJ92758, Homo sapiens bone morphogenetic protein 7 (osteogenic protein 1)(BMP7), mRNA) BMP7 hCG_40100 allantois development [GO:1905069]; ameloblast differentiation [GO:0036305]; axon guidance [GO:0007411]; BMP signaling pathway [GO:0030509]; branching involved in salivary gland morphogenesis [GO:0060445]; branching morphogenesis of an epithelial tube [GO:0048754]; cardiac muscle tissue development [GO:0048738]; cardiac septum morphogenesis [GO:0060411]; chorio-allantoic fusion [GO:0060710]; embryonic camera-type eye morphogenesis [GO:0048596]; embryonic limb morphogenesis [GO:0030326]; embryonic pattern specification [GO:0009880]; embryonic skeletal joint morphogenesis [GO:0060272]; endocardial cushion formation [GO:0003272]; heart trabecula morphogenesis [GO:0061384]; hindbrain development [GO:0030902]; mesenchymal cell apoptotic process involved in nephron morphogenesis [GO:1901145]; mesoderm formation [GO:0001707]; metanephric mesenchymal cell proliferation involved in metanephros development [GO:0072136]; metanephric mesenchyme morphogenesis [GO:0072133]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis [GO:0072040]; negative regulation of neurogenesis [GO:0050768]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of Notch signaling pathway [GO:0045746]; negative regulation of prostatic bud formation [GO:0060686]; nephrogenic mesenchyme morphogenesis [GO:0072134]; neural fold elevation formation [GO:0021502]; odontogenesis of dentin-containing tooth [GO:0042475]; pericardium morphogenesis [GO:0003344]; pharyngeal system development [GO:0060037]; positive regulation of apoptotic process [GO:0043065]; positive regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis [GO:1905312]; positive regulation of epithelial cell differentiation [GO:0030858]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of branching involved in prostate gland morphogenesis [GO:0060687]; regulation of phosphorylation [GO:0042325]; response to estradiol [GO:0032355]; response to peptide hormone [GO:0043434]; response to vitamin D [GO:0033280]; ureteric bud development [GO:0001657] -B4DL19 unreviewed B4DL19_HUMAN Annexin adaptive immune response [GO:0002250]; alpha-beta T cell differentiation [GO:0046632]; arachidonic acid secretion [GO:0050482]; cell surface receptor signaling pathway [GO:0007166]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; DNA duplex unwinding [GO:0032508]; endocrine pancreas development [GO:0031018]; estrous cycle [GO:0044849]; gliogenesis [GO:0042063]; granulocyte chemotaxis [GO:0071621]; hepatocyte differentiation [GO:0070365]; inflammatory response [GO:0006954]; insulin secretion [GO:0030073]; keratinocyte differentiation [GO:0030216]; myoblast migration involved in skeletal muscle regeneration [GO:0014839]; negative regulation of exocytosis [GO:0045920]; negative regulation of T-helper 2 cell differentiation [GO:0045629]; neutrophil clearance [GO:0097350]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of prostaglandin biosynthetic process [GO:0031394]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell differentiation [GO:0045627]; positive regulation of vesicle fusion [GO:0031340]; positive regulation of wound healing [GO:0090303]; prolactin secretion [GO:0070459]; prostate gland development [GO:0030850]; regulation of cell shape [GO:0008360]; regulation of hormone secretion [GO:0046883]; regulation of inflammatory response [GO:0050727]; regulation of interleukin-1 production [GO:0032652]; regulation of leukocyte migration [GO:0002685]; response to estradiol [GO:0032355]; response to interleukin-1 [GO:0070555]; response to peptide hormone [GO:0043434]; response to X-ray [GO:0010165] -D3DPA4 unreviewed D3DPA4_HUMAN Serine/threonine-protein kinase receptor (EC 2.7.11.30) ACVR1 hCG_1811747 acute inflammatory response [GO:0002526]; atrial septum primum morphogenesis [GO:0003289]; atrioventricular valve morphogenesis [GO:0003181]; BMP signaling pathway [GO:0030509]; branching involved in blood vessel morphogenesis [GO:0001569]; determination of left/right symmetry [GO:0007368]; endocardial cushion formation [GO:0003272]; endocardial cushion fusion [GO:0003274]; gastrulation with mouth forming second [GO:0001702]; germ cell development [GO:0007281]; in utero embryonic development [GO:0001701]; mesoderm formation [GO:0001707]; neural crest cell migration [GO:0001755]; pharyngeal system development [GO:0060037]; positive regulation of cardiac epithelial to mesenchymal transition [GO:0062043]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of transcription by RNA polymerase II [GO:0045944]; smooth muscle cell differentiation [GO:0051145]; transforming growth factor beta receptor signaling pathway [GO:0007179]; ventricular septum morphogenesis [GO:0060412] -E7ERL8 unreviewed E7ERL8_HUMAN Neurexin-1 (Neurexin I-alpha) (Neurexin-1-alpha) NRXN1 adult behavior [GO:0030534]; gephyrin clustering involved in postsynaptic density assembly [GO:0097116]; learning [GO:0007612]; neuroligin clustering involved in postsynaptic membrane assembly [GO:0097118]; neuromuscular process controlling balance [GO:0050885]; neurotransmitter secretion [GO:0007269]; positive regulation of excitatory postsynaptic potential [GO:2000463]; positive regulation of synapse assembly [GO:0051965]; positive regulation of synapse maturation [GO:0090129]; positive regulation of synaptic transmission, glutamatergic [GO:0051968]; postsynaptic density protein 95 clustering [GO:0097119]; prepulse inhibition [GO:0060134]; presynapse assembly [GO:0099054]; regulation of grooming behavior [GO:2000821]; regulation of postsynaptic density assembly [GO:0099151]; regulation of presynapse assembly [GO:1905606]; regulation of synaptic vesicle cycle [GO:0098693]; regulation of trans-synaptic signaling by endocannabinoid, modulating synaptic transmission [GO:0150036]; synaptic membrane adhesion [GO:0099560] -O00151 reviewed PDLI1_HUMAN PDZ and LIM domain protein 1 (C-terminal LIM domain protein 1) (Elfin) (LIM domain protein CLP-36) PDLIM1 CLIM1 CLP36 actin cytoskeleton organization [GO:0030036]; establishment or maintenance of actin cytoskeleton polarity [GO:0030950]; fibroblast migration [GO:0010761]; heart development [GO:0007507]; maintenance of cell polarity [GO:0030011]; muscle structure development [GO:0061061]; regulation of transcription by RNA polymerase II [GO:0006357]; response to hypoxia [GO:0001666]; response to oxidative stress [GO:0006979]; stress fiber assembly [GO:0043149] -O00186 reviewed STXB3_HUMAN Syntaxin-binding protein 3 (Platelet Sec1 protein) (PSP) (Protein unc-18 homolog 3) (Unc18-3) (Protein unc-18 homolog C) (Unc-18C) STXBP3 brain development [GO:0007420]; cellular response to type II interferon [GO:0071346]; insulin secretion [GO:0030073]; intracellular glucose homeostasis [GO:0001678]; intracellular protein transport [GO:0006886]; negative regulation of calcium ion-dependent exocytosis [GO:0045955]; negative regulation of glucose import [GO:0046325]; neurotransmitter secretion [GO:0007269]; neutrophil degranulation [GO:0043312]; platelet aggregation [GO:0070527]; protein to membrane docking [GO:0022615]; response to insulin [GO:0032868]; vesicle docking involved in exocytosis [GO:0006904]; vesicle-mediated transport [GO:0016192] -O00192 reviewed ARVC_HUMAN Splicing regulator ARVCF (Armadillo repeat protein deleted in velo-cardio-facial syndrome) ARVCF cell adhesion [GO:0007155]; cell-cell adhesion [GO:0098609]; mRNA processing [GO:0006397]; RNA splicing [GO:0008380] -O00299 reviewed CLIC1_HUMAN Chloride intracellular channel protein 1 (Chloride channel ABP) (Glutaredoxin-like oxidoreductase CLIC1) (EC 1.8.-.-) (Glutathione-dependent dehydroascorbate reductase CLIC1) (EC 1.8.5.1) (Nuclear chloride ion channel 27) (NCC27) (Regulatory nuclear chloride ion channel protein) (hRNCC) CLIC1 G6 NCC27 chloride transport [GO:0006821]; platelet aggregation [GO:0070527]; positive regulation of osteoblast differentiation [GO:0045669]; regulation of mitochondrial membrane potential [GO:0051881]; signal transduction [GO:0007165] -O00501 reviewed CLD5_HUMAN Claudin-5 (Transmembrane protein deleted in VCFS) (TMDVCF) CLDN5 AWAL TMVCF bicellular tight junction assembly [GO:0070830]; calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules [GO:0016338]; cell adhesion [GO:0007155]; cell-cell junction assembly [GO:0007043]; establishment of blood-retinal barrier [GO:1990963]; face morphogenesis [GO:0060325]; learning [GO:0007612]; maintenance of blood-brain barrier [GO:0035633]; myelination [GO:0042552]; negative regulation of angiogenesis [GO:0016525]; negative regulation of cell migration [GO:0030336]; negative regulation of gene expression [GO:0010629]; negative regulation of vascular permeability [GO:0043116]; outflow tract morphogenesis [GO:0003151]; positive regulation of bicellular tight junction assembly [GO:1903348]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of establishment of endothelial barrier [GO:1903142]; positive regulation of gene expression [GO:0010628]; positive regulation of protein binding [GO:0032092]; response to ethanol [GO:0045471]; roof of mouth development [GO:0060021]; tight junction assembly [GO:0120192]; transforming growth factor beta receptor signaling pathway [GO:0007179] -O00622 reviewed CCN1_HUMAN CCN family member 1 (Cellular communication network factor 1) (Cysteine-rich angiogenic inducer 61) (Insulin-like growth factor-binding protein 10) (IBP-10) (IGF-binding protein 10) (IGFBP-10) (Protein CYR61) (Protein GIG1) CCN1 CYR61 GIG1 IGFBP10 apoptotic process involved in heart morphogenesis [GO:0003278]; atrial septum morphogenesis [GO:0060413]; atrioventricular valve morphogenesis [GO:0003181]; cell adhesion [GO:0007155]; chemotaxis [GO:0006935]; chondroblast differentiation [GO:0060591]; chorio-allantoic fusion [GO:0060710]; extracellular matrix organization [GO:0030198]; intussusceptive angiogenesis [GO:0002041]; labyrinthine layer blood vessel development [GO:0060716]; negative regulation of apoptotic process [GO:0043066]; osteoblast differentiation [GO:0001649]; positive regulation of apoptotic process [GO:0043065]; positive regulation of BMP signaling pathway [GO:0030513]; positive regulation of bone mineralization [GO:0030501]; positive regulation of cartilage development [GO:0061036]; positive regulation of cell differentiation [GO:0045597]; positive regulation of cell migration [GO:0030335]; positive regulation of cell-substrate adhesion [GO:0010811]; positive regulation of ceramide biosynthetic process [GO:2000304]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of osteoblast proliferation [GO:0033690]; positive regulation of protein kinase activity [GO:0045860]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of transcription by RNA polymerase II [GO:0045944]; reactive oxygen species metabolic process [GO:0072593]; regulation of ERK1 and ERK2 cascade [GO:0070372]; signal transduction [GO:0007165]; ventricular septum development [GO:0003281]; wound healing, spreading of cells [GO:0044319] -O14493 reviewed CLD4_HUMAN Claudin-4 (Clostridium perfringens enterotoxin receptor) (CPE-R) (CPE-receptor) (Williams-Beuren syndrome chromosomal region 8 protein) CLDN4 CPER CPETR1 WBSCR8 bicellular tight junction assembly [GO:0070830]; calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules [GO:0016338]; cell adhesion [GO:0007155]; circadian rhythm [GO:0007623]; establishment of skin barrier [GO:0061436]; female pregnancy [GO:0007565]; positive regulation of cell migration [GO:0030335]; positive regulation of metallopeptidase activity [GO:1905050]; positive regulation of wound healing [GO:0090303]; regulation of cell morphogenesis [GO:0022604]; renal absorption [GO:0070293]; response to progesterone [GO:0032570] -O14495 reviewed PLPP3_HUMAN Phospholipid phosphatase 3 (EC 3.1.3.-) (EC 3.1.3.4) (Lipid phosphate phosphohydrolase 3) (PAP2-beta) (Phosphatidate phosphohydrolase type 2b) (Phosphatidic acid phosphatase 2b) (PAP-2b) (PAP2b) (Vascular endothelial growth factor and type I collagen-inducible protein) (VCIP) PLPP3 LPP3 PPAP2B Bergmann glial cell differentiation [GO:0060020]; blood vessel development [GO:0001568]; cell-cell adhesion [GO:0098609]; cell-cell adhesion mediated by integrin [GO:0033631]; ceramide metabolic process [GO:0006672]; gastrulation with mouth forming second [GO:0001702]; homotypic cell-cell adhesion [GO:0034109]; integrin-mediated signaling pathway [GO:0007229]; negative regulation of protein phosphorylation [GO:0001933]; phospholipid dephosphorylation [GO:0046839]; phospholipid metabolic process [GO:0006644]; positive regulation of cell-cell adhesion [GO:0022409]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; protein stabilization [GO:0050821]; regulation of sphingolipid mediated signaling pathway [GO:1902068]; regulation of Wnt signaling pathway [GO:0030111]; retrograde vesicle-mediated transport, Golgi to endoplasmic reticulum [GO:0006890]; signal transduction [GO:0007165]; sphingolipid catabolic process [GO:0030149]; sphingosine metabolic process [GO:0006670]; wound healing [GO:0042060] -O14522 reviewed PTPRT_HUMAN Receptor-type tyrosine-protein phosphatase T (R-PTP-T) (EC 3.1.3.48) (Receptor-type tyrosine-protein phosphatase rho) (RPTP-rho) PTPRT KIAA0283 cell adhesion [GO:0007155]; cell surface receptor protein tyrosine kinase signaling pathway [GO:0007169]; cellular response to interleukin-6 [GO:0071354]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; negative regulation of cell migration [GO:0030336]; negative regulation of receptor signaling pathway via STAT [GO:1904893]; peptidyl-tyrosine dephosphorylation [GO:0035335]; peptidyl-tyrosine dephosphorylation involved in inactivation of protein kinase activity [GO:1990264]; protein dephosphorylation [GO:0006470]; regulation of synapse organization [GO:0050807]; signal transduction [GO:0007165] -O14525 reviewed ASTN1_HUMAN Astrotactin-1 ASTN1 ASTN KIAA0289 locomotory behavior [GO:0007626]; neuron cell-cell adhesion [GO:0007158]; neuron migration [GO:0001764] -O14917 reviewed PCD17_HUMAN Protocadherin-17 (Protocadherin-68) PCDH17 PCDH68 PCH68 adult behavior [GO:0030534]; cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; negative regulation of synaptic transmission [GO:0050805]; presynaptic active zone assembly [GO:1904071]; regulation of synaptic vesicle clustering [GO:2000807]; synaptic membrane adhesion [GO:0099560] -O15031 reviewed PLXB2_HUMAN Plexin-B2 (MM1) PLXNB2 KIAA0315 brain development [GO:0007420]; excitatory synapse assembly [GO:1904861]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; negative regulation of cell adhesion [GO:0007162]; neural tube closure [GO:0001843]; neuroblast proliferation [GO:0007405]; positive regulation of axonogenesis [GO:0050772]; positive regulation of neuron projection development [GO:0010976]; positive regulation of translation [GO:0045727]; regulation of cell migration [GO:0030334]; regulation of cell shape [GO:0008360]; regulation of GTPase activity [GO:0043087]; regulation of neuron migration [GO:2001222]; regulation of protein phosphorylation [GO:0001932]; semaphorin-plexin signaling pathway [GO:0071526] -O15259 reviewed NPHP1_HUMAN Nephrocystin-1 (Juvenile nephronophthisis 1 protein) NPHP1 NPH1 actin cytoskeleton organization [GO:0030036]; cell projection organization [GO:0030030]; cell-cell adhesion [GO:0098609]; positive regulation of bicellular tight junction assembly [GO:1903348]; protein localization involved in establishment of planar polarity [GO:0090251]; retina development in camera-type eye [GO:0060041]; signal transduction [GO:0007165]; spermatid differentiation [GO:0048515]; visual behavior [GO:0007632] -O15394 reviewed NCAM2_HUMAN Neural cell adhesion molecule 2 (N-CAM-2) (NCAM-2) NCAM2 NCAM21 axonal fasciculation [GO:0007413]; neuron cell-cell adhesion [GO:0007158] -O15551 reviewed CLD3_HUMAN Claudin-3 (Clostridium perfringens enterotoxin receptor 2) (CPE-R 2) (CPE-receptor 2) (Rat ventral prostate.1 protein homolog) (hRVP1) CLDN3 C7orf1 CPETR2 actin cytoskeleton organization [GO:0030036]; bicellular tight junction assembly [GO:0070830]; calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules [GO:0016338]; cell adhesion [GO:0007155]; cell junction maintenance [GO:0034331]; epithelial cell morphogenesis [GO:0003382]; establishment of endothelial blood-brain barrier [GO:0014045]; maintenance of blood-brain barrier [GO:0035633]; negative regulation of cell migration [GO:0030336]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of gene expression [GO:0010629]; negative regulation of wound healing [GO:0061045]; positive regulation of bicellular tight junction assembly [GO:1903348]; positive regulation of cell junction assembly [GO:1901890]; positive regulation of cell migration [GO:0030335]; positive regulation of gene expression [GO:0010628]; positive regulation of metallopeptidase activity [GO:1905050]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of wound healing [GO:0090303]; regulation of cell morphogenesis [GO:0022604]; regulation of membrane permeability [GO:0090559]; regulation of transepithelial transport [GO:0150111]; response to ethanol [GO:0045471]; response to Gram-positive bacterium [GO:0140459]; response to hypoxia [GO:0001666] -O43424 reviewed GRID2_HUMAN Glutamate receptor ionotropic, delta-2 (GluD2) (GluR delta-2 subunit) GRID2 GLURD2 cerebellar granule cell differentiation [GO:0021707]; excitatory postsynaptic potential [GO:0060079]; excitatory synapse assembly [GO:1904861]; glutamate receptor signaling pathway [GO:0007215]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; modulation of chemical synaptic transmission [GO:0050804]; positive regulation of long-term synaptic depression [GO:1900454]; positive regulation of synapse assembly [GO:0051965]; prepulse inhibition [GO:0060134]; protein localization [GO:0008104]; regulation of neuron apoptotic process [GO:0043523]; regulation of neuron projection development [GO:0010975]; regulation of postsynaptic density assembly [GO:0099151]; regulation of presynapse assembly [GO:1905606]; synaptic transmission, glutamatergic [GO:0035249] -O43427 reviewed FIBP_HUMAN Acidic fibroblast growth factor intracellular-binding protein (aFGF intracellular-binding protein) (FGF-1 intracellular-binding protein) FIBP fibroblast growth factor receptor signaling pathway [GO:0008543]; platelet aggregation [GO:0070527] -O60331 reviewed PI51C_HUMAN Phosphatidylinositol 4-phosphate 5-kinase type-1 gamma (PIP5K1gamma) (PtdIns(4)P-5-kinase 1 gamma) (EC 2.7.1.68) (Type I phosphatidylinositol 4-phosphate 5-kinase gamma) PIP5K1C KIAA0589 actin cytoskeleton organization [GO:0030036]; adherens junction assembly [GO:0034333]; cell-cell adhesion [GO:0098609]; clathrin-dependent endocytosis [GO:0072583]; membrane organization [GO:0061024]; neutrophil chemotaxis [GO:0030593]; phagocytosis [GO:0006909]; phosphatidylinositol biosynthetic process [GO:0006661]; phosphatidylinositol phosphate biosynthetic process [GO:0046854]; regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051896]; synaptic vesicle endocytosis [GO:0048488]; synaptic vesicle exocytosis [GO:0016079] -O60469 reviewed DSCAM_HUMAN Cell adhesion molecule DSCAM (CHD2) (Down syndrome cell adhesion molecule) DSCAM axon guidance [GO:0007411]; camera-type eye photoreceptor cell differentiation [GO:0060219]; cell adhesion [GO:0007155]; central nervous system development [GO:0007417]; dendrite morphogenesis [GO:0048813]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; locomotory behavior [GO:0007626]; negative regulation of cell adhesion [GO:0007162]; nervous system development [GO:0007399]; positive regulation of axon extension involved in axon guidance [GO:0048842]; positive regulation of phosphorylation [GO:0042327]; post-embryonic retina morphogenesis in camera-type eye [GO:0060060]; retina layer formation [GO:0010842]; synapse assembly [GO:0007416] -O60487 reviewed MPZL2_HUMAN Myelin protein zero-like protein 2 (Epithelial V-like antigen 1) MPZL2 EVA EVA1 UNQ606/PRO1192 anatomical structure morphogenesis [GO:0009653]; cell-cell adhesion [GO:0098609]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -O60500 reviewed NPHN_HUMAN Nephrin (Renal glomerulus-specific cell adhesion receptor) NPHS1 NPHN cell-cell adhesion [GO:0098609]; gene expression [GO:0010467]; glomerular basement membrane development [GO:0032836]; JNK cascade [GO:0007254]; myoblast fusion [GO:0007520]; podocyte development [GO:0072015]; positive regulation of actin filament polymerization [GO:0030838]; protein localization to synapse [GO:0035418]; skeletal muscle tissue development [GO:0007519]; slit diaphragm assembly [GO:0036060] -O60687 reviewed SRPX2_HUMAN Sushi repeat-containing protein SRPX2 (Sushi-repeat protein upregulated in leukemia) SRPX2 SRPUL angiogenesis [GO:0001525]; cell motility [GO:0048870]; cell-cell adhesion [GO:0098609]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of synapse assembly [GO:0051965]; regulation of phosphorylation [GO:0042325]; vocalization behavior [GO:0071625] -O60716 reviewed CTND1_HUMAN Catenin delta-1 (Cadherin-associated Src substrate) (CAS) (p120 catenin) (p120(ctn)) (p120(cas)) CTNND1 KIAA0384 cell-cell adhesion [GO:0098609]; cell-cell adhesion mediated by cadherin [GO:0044331]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; protein stabilization [GO:0050821]; regulation of postsynaptic membrane neurotransmitter receptor levels [GO:0099072]; Wnt signaling pathway [GO:0016055] -O75129 reviewed ASTN2_HUMAN Astrotactin-2 ASTN2 KIAA0634 establishment of body hair planar orientation [GO:0048105]; negative regulation of protein localization to cell surface [GO:2000009]; neuron cell-cell adhesion [GO:0007158]; neuron migration [GO:0001764]; protein localization to cell surface [GO:0034394]; protein transport [GO:0015031] -O75161 reviewed NPHP4_HUMAN Nephrocystin-4 (Nephroretinin) NPHP4 KIAA0673 actin cytoskeleton organization [GO:0030036]; cell-cell adhesion [GO:0098609]; flagellated sperm motility [GO:0030317]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; photoreceptor cell maintenance [GO:0045494]; photoreceptor cell outer segment organization [GO:0035845]; positive regulation of bicellular tight junction assembly [GO:1903348]; protein localization to ciliary transition zone [GO:1904491]; retina development in camera-type eye [GO:0060041]; signal transduction [GO:0007165]; visual behavior [GO:0007632] -O75190 reviewed DNJB6_HUMAN DnaJ homolog subfamily B member 6 (HHDJ1) (Heat shock protein J2) (HSJ-2) (MRJ) (MSJ-1) DNAJB6 HSJ2 MRJ MSJ1 actin cytoskeleton organization [GO:0030036]; chaperone-mediated protein folding [GO:0061077]; chorio-allantoic fusion [GO:0060710]; chorion development [GO:0060717]; extracellular matrix organization [GO:0030198]; intermediate filament organization [GO:0045109]; negative regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043154]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of inclusion body assembly [GO:0090084]; protein folding [GO:0006457]; protein localization to nucleus [GO:0034504]; regulation of cellular response to heat [GO:1900034]; regulation of protein localization [GO:0032880]; syncytiotrophoblast cell differentiation involved in labyrinthine layer development [GO:0060715] -O75197 reviewed LRP5_HUMAN Low-density lipoprotein receptor-related protein 5 (LRP-5) (Low-density lipoprotein receptor-related protein 7) (LRP-7) LRP5 LR3 LRP7 adipose tissue development [GO:0060612]; amino acid transport [GO:0006865]; anatomical structure regression [GO:0060033]; anterior/posterior pattern specification [GO:0009952]; apoptotic process involved in blood vessel morphogenesis [GO:1902262]; bone marrow development [GO:0048539]; bone morphogenesis [GO:0060349]; bone remodeling [GO:0046849]; branching involved in mammary gland duct morphogenesis [GO:0060444]; canonical Wnt signaling pathway [GO:0060070]; cell migration involved in gastrulation [GO:0042074]; cell-cell adhesion [GO:0098609]; cell-cell signaling involved in mammary gland development [GO:0060764]; cholesterol homeostasis [GO:0042632]; cholesterol metabolic process [GO:0008203]; embryonic digit morphogenesis [GO:0042733]; endocytosis [GO:0006897]; establishment of blood-brain barrier [GO:0060856]; establishment of blood-retinal barrier [GO:1990963]; extracellular matrix-cell signaling [GO:0035426]; gastrulation with mouth forming second [GO:0001702]; gene expression [GO:0010467]; glucose catabolic process [GO:0006007]; mesodermal cell migration [GO:0008078]; negative regulation of osteoblast differentiation [GO:0045668]; negative regulation of protein serine/threonine kinase activity [GO:0071901]; nervous system development [GO:0007399]; Norrin signaling pathway [GO:0110135]; osteoblast development [GO:0002076]; osteoblast proliferation [GO:0033687]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of fat cell differentiation [GO:0045600]; positive regulation of mesenchymal cell proliferation [GO:0002053]; positive regulation of mitotic nuclear division [GO:0045840]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of osteoblast proliferation [GO:0033690]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of apoptotic process [GO:0042981]; regulation of blood pressure [GO:0008217]; regulation of insulin secretion involved in cellular response to glucose stimulus [GO:0061178]; response to peptide hormone [GO:0043434]; retina morphogenesis in camera-type eye [GO:0060042]; retinal blood vessel morphogenesis [GO:0061304]; somatic stem cell population maintenance [GO:0035019] -O75309 reviewed CAD16_HUMAN Cadherin-16 (Kidney-specific cadherin) (Ksp-cadherin) CDH16 UNQ695/PRO1340 calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -O75487 reviewed GPC4_HUMAN Glypican-4 (K-glypican) [Cleaved into: Secreted glypican-4] GPC4 UNQ474/PRO937 cell migration [GO:0016477]; regulation of neurotransmitter receptor localization to postsynaptic specialization membrane [GO:0098696]; regulation of presynapse assembly [GO:1905606]; regulation of signal transduction [GO:0009966]; synaptic membrane adhesion [GO:0099560]; Wnt signaling pathway [GO:0016055] -O75508 reviewed CLD11_HUMAN Claudin-11 (Oligodendrocyte-specific protein) CLDN11 OSP OTM axon ensheathment [GO:0008366]; bicellular tight junction assembly [GO:0070830]; calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules [GO:0016338]; cell adhesion [GO:0007155]; spermatogenesis [GO:0007283]; tight junction assembly [GO:0120192] -O75553 reviewed DAB1_HUMAN Disabled homolog 1 DAB1 adult walking behavior [GO:0007628]; astrocyte differentiation [GO:0048708]; axonogenesis [GO:0007409]; cell surface receptor signaling pathway via JAK-STAT [GO:0007259]; cell-cell adhesion involved in neuronal-glial interactions involved in cerebral cortex radial glia guided migration [GO:0021813]; cerebellum structural organization [GO:0021589]; dendrite development [GO:0016358]; Golgi localization [GO:0051645]; hippocampus development [GO:0021766]; lateral motor column neuron migration [GO:0097477]; negative regulation of astrocyte differentiation [GO:0048712]; negative regulation of axonogenesis [GO:0050771]; negative regulation of cell adhesion [GO:0007162]; negative regulation of receptor signaling pathway via JAK-STAT [GO:0046426]; neuron migration [GO:0001764]; positive regulation of neuron differentiation [GO:0045666]; radial glia guided migration of Purkinje cell [GO:0021942]; radial glia-guided pyramidal neuron migration [GO:0140650]; small GTPase-mediated signal transduction [GO:0007264]; ventral spinal cord development [GO:0021517] -O75578 reviewed ITA10_HUMAN Integrin alpha-10 ITGA10 UNQ468/PRO827 cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -O75581 reviewed LRP6_HUMAN Low-density lipoprotein receptor-related protein 6 (LRP-6) LRP6 canonical Wnt signaling pathway [GO:0060070]; cell-cell adhesion [GO:0098609]; cellular response to cholesterol [GO:0071397]; chemical synaptic transmission [GO:0007268]; dopaminergic neuron differentiation [GO:0071542]; endocytosis [GO:0006897]; midbrain dopaminergic neuron differentiation [GO:1904948]; negative regulation of protein serine/threonine kinase activity [GO:0071901]; negative regulation of smooth muscle cell apoptotic process [GO:0034392]; nervous system development [GO:0007399]; neural crest cell differentiation [GO:0014033]; neural crest formation [GO:0014029]; positive regulation of cell cycle [GO:0045787]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to plasma membrane [GO:0072659]; response to peptide hormone [GO:0043434]; Wnt signaling pathway [GO:0016055] -O76027 reviewed ANXA9_HUMAN Annexin A9 (Annexin XXXI) (Annexin-31) (Annexin-9) (Pemphaxin) ANXA9 ANX31 cell-cell adhesion [GO:0098609] -O94779 reviewed CNTN5_HUMAN Contactin-5 (Neural recognition molecule NB-2) (hNB-2) CNTN5 axon guidance [GO:0007411]; brain development [GO:0007420]; cell-cell adhesion [GO:0098609]; presynapse assembly [GO:0099054]; sensory perception of sound [GO:0007605] -O94804 reviewed STK10_HUMAN Serine/threonine-protein kinase 10 (EC 2.7.11.1) (Lymphocyte-oriented kinase) STK10 LOK lymphocyte aggregation [GO:0071593]; protein autophosphorylation [GO:0046777]; protein phosphorylation [GO:0006468]; regulation of lymphocyte migration [GO:2000401] -O94856 reviewed NFASC_HUMAN Neurofascin NFASC KIAA0756 axon guidance [GO:0007411]; brain development [GO:0007420]; cell-cell adhesion [GO:0098609]; myelination [GO:0042552]; peripheral nervous system development [GO:0007422] -O94910 reviewed AGRL1_HUMAN Adhesion G protein-coupled receptor L1 (Calcium-independent alpha-latrotoxin receptor 1) (CIRL-1) (Latrophilin-1) (Lectomedin-2) ADGRL1 KIAA0821 LEC2 LPHN1 adenylate cyclase-activating G protein-coupled receptor signaling pathway [GO:0007189]; cell surface receptor signaling pathway [GO:0007166]; G protein-coupled receptor signaling pathway [GO:0007186]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157] -O94933 reviewed SLIK3_HUMAN SLIT and NTRK-like protein 3 SLITRK3 KIAA0848 axonogenesis [GO:0007409]; gephyrin clustering involved in postsynaptic density assembly [GO:0097116]; neurotransmitter-gated ion channel clustering [GO:0072578]; positive regulation of synapse assembly [GO:0051965]; regulation of presynapse assembly [GO:1905606]; synaptic membrane adhesion [GO:0099560]; synaptic transmission, GABAergic [GO:0051932]; terminal button organization [GO:0072553] -O94985 reviewed CSTN1_HUMAN Calsyntenin-1 (Alcadein-alpha) (Alc-alpha) (Alzheimer-related cadherin-like protein) (Non-classical cadherin XB31alpha) [Cleaved into: Soluble Alc-alpha (SAlc-alpha); CTF1-alpha (C-terminal fragment 1-alpha)] CLSTN1 CS1 KIAA0911 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; neurotransmitter receptor transport to postsynaptic membrane [GO:0098969]; positive regulation of synapse assembly [GO:0051965]; positive regulation of synaptic transmission [GO:0050806]; regulation of cell growth [GO:0001558]; regulation of synapse maturation [GO:0090128]; vesicle-mediated transport in synapse [GO:0099003] -O94991 reviewed SLIK5_HUMAN SLIT and NTRK-like protein 5 (Leucine-rich repeat-containing protein 11) SLITRK5 KIAA0918 LRRC11 adult behavior [GO:0030534]; axonogenesis [GO:0007409]; chemical synaptic transmission [GO:0007268]; circulatory system development [GO:0072359]; dendrite morphogenesis [GO:0048813]; grooming behavior [GO:0007625]; positive regulation of synapse assembly [GO:0051965]; regulation of presynapse assembly [GO:1905606]; response to xenobiotic stimulus [GO:0009410]; skin development [GO:0043588]; striatum development [GO:0021756]; synaptic membrane adhesion [GO:0099560] -O95049 reviewed ZO3_HUMAN Tight junction protein ZO-3 (Tight junction protein 3) (Zona occludens protein 3) (Zonula occludens protein 3) TJP3 ZO3 cell-cell adhesion [GO:0098609]; cell-cell junction organization [GO:0045216]; establishment of endothelial intestinal barrier [GO:0090557]; maintenance of blood-brain barrier [GO:0035633]; positive regulation of blood-brain barrier permeability [GO:1905605]; protein localization to cell-cell junction [GO:0150105] -O95206 reviewed PCDH8_HUMAN Protocadherin-8 (Arcadlin) PCDH8 cell adhesion [GO:0007155]; cell-cell signaling [GO:0007267]; chemical synaptic transmission [GO:0007268]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; modulation of chemical synaptic transmission [GO:0050804]; morphogenesis of embryonic epithelium [GO:0016331]; regulation of synaptic membrane adhesion [GO:0099179]; somitogenesis [GO:0001756] -O95471 reviewed CLD7_HUMAN Claudin-7 (CLDN-7) CLDN7 CEPTRL2 CPETRL2 bicellular tight junction assembly [GO:0070830]; calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules [GO:0016338]; cell adhesion [GO:0007155]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cell adhesion [GO:0007162]; negative regulation of protein-containing complex assembly [GO:0031333]; positive regulation of cell motility [GO:2000147]; positive regulation of cell population proliferation [GO:0008284]; response to ethanol [GO:0045471] -O95484 reviewed CLD9_HUMAN Claudin-9 CLDN9 bicellular tight junction assembly [GO:0070830]; calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules [GO:0016338]; cell adhesion [GO:0007155] -O95497 reviewed VNN1_HUMAN Pantetheinase (EC 3.5.1.92) (Pantetheine hydrolase) (Tiff66) (Vascular non-inflammatory molecule 1) (Vanin-1) VNN1 acute inflammatory response [GO:0002526]; cell-cell adhesion [GO:0098609]; chronic inflammatory response [GO:0002544]; coenzyme A catabolic process [GO:0015938]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; pantothenate metabolic process [GO:0015939]; positive regulation of oxidative stress-induced intrinsic apoptotic signaling pathway [GO:1902177]; positive regulation of T cell differentiation in thymus [GO:0033089]; response to oxidative stress [GO:0006979] -O95500 reviewed CLD14_HUMAN Claudin-14 CLDN14 UNQ777/PRO1571 bicellular tight junction assembly [GO:0070830]; calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules [GO:0016338]; cell adhesion [GO:0007155]; protein-containing complex assembly [GO:0065003] -O95631 reviewed NET1_HUMAN Netrin-1 (Epididymis tissue protein Li 131P) NTN1 NTN1L anterior/posterior axon guidance [GO:0033564]; apoptotic process [GO:0006915]; Cdc42 protein signal transduction [GO:0032488]; cell-cell adhesion [GO:0098609]; chemorepulsion of axon [GO:0061643]; glial cell proliferation [GO:0014009]; inner ear morphogenesis [GO:0042472]; mammary gland duct morphogenesis [GO:0060603]; motor neuron migration [GO:0097475]; negative regulation of axon extension [GO:0030517]; nuclear migration [GO:0007097]; positive regulation of axon extension [GO:0045773]; positive regulation of cell motility [GO:2000147]; positive regulation of glial cell proliferation [GO:0060252]; Ras protein signal transduction [GO:0007265]; regulation of glial cell migration [GO:1903975]; regulation of synapse assembly [GO:0051963]; regulation of transcription by RNA polymerase II [GO:0006357]; substrate-dependent cell migration, cell extension [GO:0006930] -O95727 reviewed CRTAM_HUMAN Cytotoxic and regulatory T-cell molecule (Class-I MHC-restricted T-cell-associated molecule) (CD antigen CD355) CRTAM adaptive immune response [GO:0002250]; cell recognition [GO:0008037]; detection of stimulus [GO:0051606]; detection of tumor cell [GO:0002355]; establishment of T cell polarity [GO:0001768]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; lymphocyte migration into lymphoid organs [GO:0097021]; negative regulation of activated T cell proliferation [GO:0046007]; positive regulation of cytokine production [GO:0001819]; positive regulation of natural killer cell mediated cytotoxicity [GO:0045954]; positive regulation of natural killer cell mediated cytotoxicity directed against tumor cell target [GO:0002860]; positive regulation of type II interferon production [GO:0032729]; regulation of CD8-positive, alpha-beta T cell activation [GO:2001185]; regulation of T cell activation [GO:0050863]; regulation of T cell differentiation [GO:0045580] -O95832 reviewed CLD1_HUMAN Claudin-1 (Senescence-associated epithelial membrane protein) CLDN1 CLD1 SEMP1 UNQ481/PRO944 bicellular tight junction assembly [GO:0070830]; calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules [GO:0016338]; cell adhesion [GO:0007155]; cell junction maintenance [GO:0034331]; cell-cell junction organization [GO:0045216]; cellular response to butyrate [GO:1903545]; cellular response to lead ion [GO:0071284]; cellular response to transforming growth factor beta stimulus [GO:0071560]; cellular response to tumor necrosis factor [GO:0071356]; cellular response to type II interferon [GO:0071346]; establishment of blood-nerve barrier [GO:0008065]; establishment of endothelial intestinal barrier [GO:0090557]; establishment of skin barrier [GO:0061436]; liver regeneration [GO:0097421]; maintenance of blood-brain barrier [GO:0035633]; positive regulation of bicellular tight junction assembly [GO:1903348]; positive regulation of cell migration [GO:0030335]; positive regulation of epithelial cell proliferation involved in wound healing [GO:0060054]; positive regulation of wound healing [GO:0090303]; protein complex oligomerization [GO:0051259]; response to dexamethasone [GO:0071548]; response to ethanol [GO:0045471]; response to interleukin-18 [GO:0070673]; response to lipopolysaccharide [GO:0032496]; response to toxic substance [GO:0009636]; xenobiotic transport across blood-nerve barrier [GO:0061772] -O96013 reviewed PAK4_HUMAN Serine/threonine-protein kinase PAK 4 (EC 2.7.11.1) (p21-activated kinase 4) (PAK-4) PAK4 KIAA1142 apoptotic process [GO:0006915]; cell migration [GO:0016477]; cellular response to organic cyclic compound [GO:0071407]; cytoskeleton organization [GO:0007010]; dendritic spine development [GO:0060996]; intracellular signal transduction [GO:0035556]; negative regulation of endothelial cell apoptotic process [GO:2000352]; positive regulation of angiogenesis [GO:0045766]; regulation of cell growth [GO:0001558]; regulation of MAPK cascade [GO:0043408]; signal transduction [GO:0007165] -P00519 reviewed ABL1_HUMAN Tyrosine-protein kinase ABL1 (EC 2.7.10.2) (Abelson murine leukemia viral oncogene homolog 1) (Abelson tyrosine-protein kinase 1) (Proto-oncogene c-Abl) (p150) ABL1 ABL JTK7 actin cytoskeleton organization [GO:0030036]; actin filament polymerization [GO:0030041]; activated T cell proliferation [GO:0050798]; activation of protein kinase C activity [GO:1990051]; alpha-beta T cell differentiation [GO:0046632]; associative learning [GO:0008306]; autophagy [GO:0006914]; B cell proliferation involved in immune response [GO:0002322]; B cell receptor signaling pathway [GO:0050853]; B-1 B cell homeostasis [GO:0001922]; Bergmann glial cell differentiation [GO:0060020]; BMP signaling pathway [GO:0030509]; canonical NF-kappaB signal transduction [GO:0007249]; cardiac muscle cell proliferation [GO:0060038]; cell-cell adhesion [GO:0098609]; cellular response to dopamine [GO:1903351]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to oxidative stress [GO:0034599]; cellular response to transforming growth factor beta stimulus [GO:0071560]; cellular senescence [GO:0090398]; cerebellum morphogenesis [GO:0021587]; DN4 thymocyte differentiation [GO:1904157]; DNA conformation change [GO:0071103]; DNA damage response [GO:0006974]; endothelial cell migration [GO:0043542]; epidermal growth factor receptor signaling pathway [GO:0007173]; ERK1 and ERK2 cascade [GO:0070371]; establishment of localization in cell [GO:0051649]; Fc-gamma receptor signaling pathway involved in phagocytosis [GO:0038096]; integrin-mediated signaling pathway [GO:0007229]; intrinsic apoptotic signaling pathway in response to DNA damage [GO:0008630]; microspike assembly [GO:0030035]; mismatch repair [GO:0006298]; mitochondrial depolarization [GO:0051882]; mitotic cell cycle [GO:0000278]; myoblast proliferation [GO:0051450]; negative regulation of BMP signaling pathway [GO:0030514]; negative regulation of cell-cell adhesion [GO:0022408]; negative regulation of cellular senescence [GO:2000773]; negative regulation of double-strand break repair via homologous recombination [GO:2000042]; negative regulation of endothelial cell apoptotic process [GO:2000352]; negative regulation of ERK1 and ERK2 cascade [GO:0070373]; negative regulation of long-term synaptic potentiation [GO:1900272]; negative regulation of mitotic cell cycle [GO:0045930]; negative regulation of phospholipase C activity [GO:1900275]; negative regulation of protein serine/threonine kinase activity [GO:0071901]; negative regulation of ubiquitin-protein transferase activity [GO:0051444]; neural tube closure [GO:0001843]; neuroepithelial cell differentiation [GO:0060563]; neuromuscular process controlling balance [GO:0050885]; neuron apoptotic process [GO:0051402]; neuron differentiation [GO:0030182]; neuropilin signaling pathway [GO:0038189]; peptidyl-tyrosine autophosphorylation [GO:0038083]; peptidyl-tyrosine phosphorylation [GO:0018108]; platelet-derived growth factor receptor-beta signaling pathway [GO:0035791]; podocyte apoptotic process [GO:1903210]; positive regulation of actin filament binding [GO:1904531]; positive regulation of apoptotic process [GO:0043065]; positive regulation of blood vessel branching [GO:1905555]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of dendrite development [GO:1900006]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of establishment of T cell polarity [GO:1903905]; positive regulation of extracellular matrix organization [GO:1903055]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of focal adhesion assembly [GO:0051894]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of microtubule binding [GO:1904528]; positive regulation of mitotic cell cycle [GO:0045931]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of osteoblast proliferation [GO:0033690]; positive regulation of oxidoreductase activity [GO:0051353]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of release of sequestered calcium ion into cytosol [GO:0051281]; positive regulation of stress fiber assembly [GO:0051496]; positive regulation of substrate adhesion-dependent cell spreading [GO:1900026]; positive regulation of T cell migration [GO:2000406]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type II interferon production [GO:0032729]; positive regulation of vasoconstriction [GO:0045907]; positive regulation of Wnt signaling pathway, planar cell polarity pathway [GO:2000096]; post-embryonic development [GO:0009791]; protein autophosphorylation [GO:0046777]; protein localization to cytoplasmic microtubule plus-end [GO:1904518]; protein modification process [GO:0036211]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of autophagy [GO:0010506]; regulation of axon extension [GO:0030516]; regulation of Cdc42 protein signal transduction [GO:0032489]; regulation of cell adhesion [GO:0030155]; regulation of cell cycle [GO:0051726]; regulation of cell motility [GO:2000145]; regulation of DNA-templated transcription [GO:0006355]; regulation of endocytosis [GO:0030100]; regulation of hematopoietic stem cell differentiation [GO:1902036]; regulation of microtubule polymerization [GO:0031113]; regulation of modification of synaptic structure [GO:1905244]; regulation of T cell differentiation [GO:0045580]; response to endoplasmic reticulum stress [GO:0034976]; response to epinephrine [GO:0071871]; response to oxidative stress [GO:0006979]; response to xenobiotic stimulus [GO:0009410]; signal transduction in response to DNA damage [GO:0042770]; spleen development [GO:0048536]; substrate adhesion-dependent cell spreading [GO:0034446]; T cell receptor signaling pathway [GO:0050852]; thymus development [GO:0048538]; transitional one stage B cell differentiation [GO:0002333] -P00533 reviewed EGFR_HUMAN Epidermal growth factor receptor (EC 2.7.10.1) (Proto-oncogene c-ErbB-1) (Receptor tyrosine-protein kinase erbB-1) EGFR ERBB ERBB1 HER1 activation of phospholipase C activity [GO:0007202]; astrocyte activation [GO:0048143]; cell surface receptor signaling pathway [GO:0007166]; cell-cell adhesion [GO:0098609]; cellular response to amino acid stimulus [GO:0071230]; cellular response to cadmium ion [GO:0071276]; cellular response to dexamethasone stimulus [GO:0071549]; cellular response to epidermal growth factor stimulus [GO:0071364]; cellular response to estradiol stimulus [GO:0071392]; cellular response to mechanical stimulus [GO:0071260]; cellular response to reactive oxygen species [GO:0034614]; cellular response to xenobiotic stimulus [GO:0071466]; cerebral cortex cell migration [GO:0021795]; circadian rhythm [GO:0007623]; digestive tract morphogenesis [GO:0048546]; diterpenoid metabolic process [GO:0016101]; embryonic placenta development [GO:0001892]; epidermal growth factor receptor signaling pathway [GO:0007173]; epithelial cell proliferation [GO:0050673]; ERBB2-EGFR signaling pathway [GO:0038134]; eyelid development in camera-type eye [GO:0061029]; hair follicle development [GO:0001942]; hydrogen peroxide metabolic process [GO:0042743]; learning or memory [GO:0007611]; liver regeneration [GO:0097421]; lung development [GO:0030324]; midgut development [GO:0007494]; morphogenesis of an epithelial fold [GO:0060571]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cardiocyte differentiation [GO:1905208]; negative regulation of epidermal growth factor receptor signaling pathway [GO:0042059]; negative regulation of mitotic cell cycle [GO:0045930]; negative regulation of protein catabolic process [GO:0042177]; neurogenesis [GO:0022008]; neuron projection morphogenesis [GO:0048812]; ossification [GO:0001503]; ovulation cycle [GO:0042698]; peptidyl-tyrosine autophosphorylation [GO:0038083]; peptidyl-tyrosine phosphorylation [GO:0018108]; positive regulation of bone resorption [GO:0045780]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of cell growth [GO:0030307]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0045737]; positive regulation of DNA repair [GO:0045739]; positive regulation of DNA replication [GO:0045740]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of glial cell proliferation [GO:0060252]; positive regulation of MAP kinase activity [GO:0043406]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of mucus secretion [GO:0070257]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of phosphorylation [GO:0042327]; positive regulation of prolactin secretion [GO:1902722]; positive regulation of protein kinase C activity [GO:1900020]; positive regulation of protein localization to plasma membrane [GO:1903078]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of superoxide anion generation [GO:0032930]; positive regulation of synaptic transmission, glutamatergic [GO:0051968]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vasoconstriction [GO:0045907]; protein autophosphorylation [GO:0046777]; protein insertion into membrane [GO:0051205]; regulation of ERK1 and ERK2 cascade [GO:0070372]; regulation of JNK cascade [GO:0046328]; regulation of peptidyl-tyrosine phosphorylation [GO:0050730]; regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051896]; response to calcium ion [GO:0051592]; response to cobalamin [GO:0033590]; response to hydroxyisoflavone [GO:0033594]; response to UV-A [GO:0070141]; salivary gland morphogenesis [GO:0007435]; signal transduction [GO:0007165]; tongue development [GO:0043586]; translation [GO:0006412]; vasodilation [GO:0042311] -P01040 reviewed CYTA_HUMAN Cystatin-A (Cystatin-AS) (Stefin-A) [Cleaved into: Cystatin-A, N-terminally processed] CSTA STF1 STFA cell-cell adhesion [GO:0098609]; keratinocyte differentiation [GO:0030216]; negative regulation of peptidase activity [GO:0010466]; negative regulation of proteolysis [GO:0045861]; peptide cross-linking [GO:0018149] -P01375 reviewed TNFA_HUMAN Tumor necrosis factor (Cachectin) (TNF-alpha) (Tumor necrosis factor ligand superfamily member 2) (TNF-a) [Cleaved into: Tumor necrosis factor, membrane form (N-terminal fragment) (NTF); Intracellular domain 1 (ICD1); Intracellular domain 2 (ICD2); C-domain 1; C-domain 2; Tumor necrosis factor, soluble form] TNF TNFA TNFSF2 activation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0006919]; antiviral innate immune response [GO:0140374]; astrocyte activation [GO:0048143]; calcium-mediated signaling [GO:0019722]; cellular response to amino acid stimulus [GO:0071230]; cellular response to amyloid-beta [GO:1904646]; cellular response to ionizing radiation [GO:0071479]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to nicotine [GO:0071316]; cellular response to retinoic acid [GO:0071300]; cellular response to toxic substance [GO:0097237]; cellular response to type II interferon [GO:0071346]; chronic inflammatory response to antigenic stimulus [GO:0002439]; circadian rhythm [GO:0007623]; cognition [GO:0050890]; cortical actin cytoskeleton organization [GO:0030866]; defense response to Gram-positive bacterium [GO:0050830]; detection of mechanical stimulus involved in sensory perception of pain [GO:0050966]; embryonic digestive tract development [GO:0048566]; endothelial cell apoptotic process [GO:0072577]; epithelial cell proliferation involved in salivary gland morphogenesis [GO:0060664]; extracellular matrix organization [GO:0030198]; extrinsic apoptotic signaling pathway [GO:0097191]; extrinsic apoptotic signaling pathway via death domain receptors [GO:0008625]; glucose metabolic process [GO:0006006]; humoral immune response [GO:0006959]; inflammatory response [GO:0006954]; inflammatory response to wounding [GO:0090594]; intrinsic apoptotic signaling pathway in response to DNA damage [GO:0008630]; JNK cascade [GO:0007254]; leukocyte migration involved in inflammatory response [GO:0002523]; leukocyte tethering or rolling [GO:0050901]; liver regeneration [GO:0097421]; macrophage activation involved in immune response [GO:0002281]; microglial cell activation [GO:0001774]; necroptotic signaling pathway [GO:0097527]; negative regulation of amyloid-beta clearance [GO:1900222]; negative regulation of apoptotic signaling pathway [GO:2001234]; negative regulation of bicellular tight junction assembly [GO:1903347]; negative regulation of bile acid secretion [GO:0120190]; negative regulation of blood vessel endothelial cell migration [GO:0043537]; negative regulation of branching involved in lung morphogenesis [GO:0061048]; negative regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043154]; negative regulation of cytokine production involved in immune response [GO:0002719]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of endothelial cell proliferation [GO:0001937]; negative regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001240]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of gene expression [GO:0010629]; negative regulation of glucose import [GO:0046325]; negative regulation of heart rate [GO:0010459]; negative regulation of interleukin-6 production [GO:0032715]; negative regulation of L-glutamate import across plasma membrane [GO:0002037]; negative regulation of lipid catabolic process [GO:0050995]; negative regulation of lipid storage [GO:0010888]; negative regulation of miRNA transcription [GO:1902894]; negative regulation of mitotic cell cycle [GO:0045930]; negative regulation of myelination [GO:0031642]; negative regulation of myoblast differentiation [GO:0045662]; negative regulation of myosin-light-chain-phosphatase activity [GO:0035509]; negative regulation of neurogenesis [GO:0050768]; negative regulation of osteoblast differentiation [GO:0045668]; negative regulation of oxidative phosphorylation [GO:0090324]; negative regulation of protein-containing complex disassembly [GO:0043242]; negative regulation of signaling receptor activity [GO:2000272]; negative regulation of systemic arterial blood pressure [GO:0003085]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of vascular wound healing [GO:0061044]; negative regulation of viral genome replication [GO:0045071]; osteoclast differentiation [GO:0030316]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; positive regulation of action potential [GO:0045760]; positive regulation of amyloid-beta formation [GO:1902004]; positive regulation of apoptotic process [GO:0043065]; positive regulation of blood microparticle formation [GO:2000334]; positive regulation of calcidiol 1-monooxygenase activity [GO:0060559]; positive regulation of calcineurin-NFAT signaling cascade [GO:0070886]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cell adhesion [GO:0045785]; positive regulation of chemokine (C-X-C motif) ligand 2 production [GO:2000343]; positive regulation of chemokine production [GO:0032722]; positive regulation of chronic inflammatory response to antigenic stimulus [GO:0002876]; positive regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043280]; positive regulation of cytokine production [GO:0001819]; positive regulation of cytokine production involved in inflammatory response [GO:1900017]; positive regulation of DNA biosynthetic process [GO:2000573]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of extrinsic apoptotic signaling pathway [GO:2001238]; positive regulation of fever generation [GO:0031622]; positive regulation of fractalkine production [GO:0032724]; positive regulation of gene expression [GO:0010628]; positive regulation of glial cell proliferation [GO:0060252]; positive regulation of hair follicle development [GO:0051798]; positive regulation of hepatocyte proliferation [GO:2000347]; positive regulation of heterotypic cell-cell adhesion [GO:0034116]; positive regulation of humoral immune response mediated by circulating immunoglobulin [GO:0002925]; positive regulation of I-kappaB phosphorylation [GO:1903721]; positive regulation of inflammatory response [GO:0050729]; positive regulation of interleukin-1 beta production [GO:0032731]; positive regulation of interleukin-18 production [GO:0032741]; positive regulation of interleukin-33 production [GO:0150129]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of JNK cascade [GO:0046330]; positive regulation of JUN kinase activity [GO:0043507]; positive regulation of leukocyte adhesion to arterial endothelial cell [GO:1904999]; positive regulation of leukocyte adhesion to vascular endothelial cell [GO:1904996]; positive regulation of MAP kinase activity [GO:0043406]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of membrane protein ectodomain proteolysis [GO:0051044]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of mitotic nuclear division [GO:0045840]; positive regulation of mononuclear cell migration [GO:0071677]; positive regulation of neuroinflammatory response [GO:0150078]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of neutrophil activation [GO:1902565]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of nitric oxide biosynthetic process [GO:0045429]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of osteoclast differentiation [GO:0045672]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of podosome assembly [GO:0071803]; positive regulation of programmed cell death [GO:0043068]; positive regulation of protein catabolic process [GO:0045732]; positive regulation of protein localization to cell surface [GO:2000010]; positive regulation of protein localization to plasma membrane [GO:1903078]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of protein transport [GO:0051222]; positive regulation of protein-containing complex assembly [GO:0031334]; positive regulation of protein-containing complex disassembly [GO:0043243]; positive regulation of receptor signaling pathway via JAK-STAT [GO:0046427]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of synaptic transmission [GO:0050806]; positive regulation of synoviocyte proliferation [GO:1901647]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of translational initiation by iron [GO:0045994]; positive regulation of type II interferon production [GO:0032729]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; positive regulation of vascular associated smooth muscle cell proliferation [GO:1904707]; positive regulation of vitamin D biosynthetic process [GO:0060557]; protein localization to plasma membrane [GO:0072659]; regulation of branching involved in salivary gland morphogenesis [GO:0060693]; regulation of canonical NF-kappaB signal transduction [GO:0043122]; regulation of endothelial cell apoptotic process [GO:2000351]; regulation of establishment of endothelial barrier [GO:1903140]; regulation of fat cell differentiation [GO:0045598]; regulation of immunoglobulin production [GO:0002637]; regulation of insulin secretion [GO:0050796]; regulation of membrane lipid metabolic process [GO:1905038]; regulation of metabolic process [GO:0019222]; regulation of reactive oxygen species metabolic process [GO:2000377]; regulation of synapse organization [GO:0050807]; regulation of synaptic transmission, glutamatergic [GO:0051966]; response to 3,3',5-triiodo-L-thyronine [GO:1905242]; response to activity [GO:0014823]; response to ethanol [GO:0045471]; response to fructose [GO:0009750]; response to glucocorticoid [GO:0051384]; response to gold nanoparticle [GO:1990268]; response to Gram-negative bacterium [GO:0140460]; response to hypoxia [GO:0001666]; response to isolation stress [GO:0035900]; response to L-glutamate [GO:1902065]; response to macrophage colony-stimulating factor [GO:0036005]; response to nutrient levels [GO:0031667]; response to salt stress [GO:0009651]; response to virus [GO:0009615]; response to xenobiotic stimulus [GO:0009410]; sequestering of triglyceride [GO:0030730]; skeletal muscle contraction [GO:0003009]; toll-like receptor 3 signaling pathway [GO:0034138]; tumor necrosis factor-mediated signaling pathway [GO:0033209]; vascular endothelial growth factor production [GO:0010573]; vasodilation [GO:0042311] -P01584 reviewed IL1B_HUMAN Interleukin-1 beta (IL-1 beta) (Catabolin) IL1B IL1F2 apoptotic process [GO:0006915]; astrocyte activation [GO:0048143]; cell-cell signaling [GO:0007267]; cellular response to interleukin-17 [GO:0097398]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to mechanical stimulus [GO:0071260]; cellular response to organic substance [GO:0071310]; cellular response to xenobiotic stimulus [GO:0071466]; cytokine-mediated signaling pathway [GO:0019221]; defense response to Gram-positive bacterium [GO:0050830]; ectopic germ cell programmed cell death [GO:0035234]; embryo implantation [GO:0007566]; extrinsic apoptotic signaling pathway in absence of ligand [GO:0097192]; fever generation [GO:0001660]; hyaluronan biosynthetic process [GO:0030213]; immune response [GO:0006955]; inflammatory response [GO:0006954]; interleukin-1-mediated signaling pathway [GO:0070498]; JNK cascade [GO:0007254]; monocyte aggregation [GO:0070487]; negative regulation of adiponectin secretion [GO:0070164]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001240]; negative regulation of gap junction assembly [GO:1903597]; negative regulation of glucose transmembrane transport [GO:0010829]; negative regulation of insulin receptor signaling pathway [GO:0046627]; negative regulation of lipid catabolic process [GO:0050995]; negative regulation of lipid metabolic process [GO:0045833]; negative regulation of MAP kinase activity [GO:0043407]; negative regulation of neurogenesis [GO:0050768]; negative regulation of synaptic transmission [GO:0050805]; neutrophil chemotaxis [GO:0030593]; positive regulation of angiogenesis [GO:0045766]; positive regulation of calcidiol 1-monooxygenase activity [GO:0060559]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cell adhesion molecule production [GO:0060355]; positive regulation of cell division [GO:0051781]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of complement activation [GO:0045917]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of fever generation [GO:0031622]; positive regulation of gene expression [GO:0010628]; positive regulation of glial cell proliferation [GO:0060252]; positive regulation of granulocyte macrophage colony-stimulating factor production [GO:0032725]; positive regulation of heterotypic cell-cell adhesion [GO:0034116]; positive regulation of immature T cell proliferation in thymus [GO:0033092]; positive regulation of inflammatory response [GO:0050729]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of JNK cascade [GO:0046330]; positive regulation of lipid catabolic process [GO:0050996]; positive regulation of MAP kinase activity [GO:0043406]; positive regulation of membrane protein ectodomain proteolysis [GO:0051044]; positive regulation of mitotic nuclear division [GO:0045840]; positive regulation of monocyte chemotactic protein-1 production [GO:0071639]; positive regulation of myosin light chain kinase activity [GO:0035505]; positive regulation of neuroinflammatory response [GO:0150078]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of nitric oxide biosynthetic process [GO:0045429]; positive regulation of non-canonical NF-kappaB signal transduction [GO:1901224]; positive regulation of p38MAPK cascade [GO:1900745]; positive regulation of prostaglandin biosynthetic process [GO:0031394]; positive regulation of prostaglandin secretion [GO:0032308]; positive regulation of protein export from nucleus [GO:0046827]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of RNA biosynthetic process [GO:1902680]; positive regulation of T cell mediated immunity [GO:0002711]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell cytokine production [GO:2000556]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of type II interferon production [GO:0032729]; positive regulation of vascular endothelial growth factor production [GO:0010575]; positive regulation of vascular endothelial growth factor receptor signaling pathway [GO:0030949]; regulation of canonical NF-kappaB signal transduction [GO:0043122]; regulation of defense response to virus by host [GO:0050691]; regulation of ERK1 and ERK2 cascade [GO:0070372]; regulation of establishment of endothelial barrier [GO:1903140]; regulation of insulin secretion [GO:0050796]; regulation of neurogenesis [GO:0050767]; regulation of nitric-oxide synthase activity [GO:0050999]; response to ATP [GO:0033198]; response to carbohydrate [GO:0009743]; response to interleukin-1 [GO:0070555]; response to lipopolysaccharide [GO:0032496]; sequestering of triglyceride [GO:0030730]; signal transduction [GO:0007165]; smooth muscle adaptation [GO:0014805]; vascular endothelial growth factor production [GO:0010573] -P02671 reviewed FIBA_HUMAN Fibrinogen alpha chain [Cleaved into: Fibrinopeptide A; Fibrinogen alpha chain] FGA adaptive immune response [GO:0002250]; blood coagulation, common pathway [GO:0072377]; blood coagulation, fibrin clot formation [GO:0072378]; cell-matrix adhesion [GO:0007160]; fibrinolysis [GO:0042730]; induction of bacterial agglutination [GO:0043152]; innate immune response [GO:0045087]; negative regulation of endothelial cell apoptotic process [GO:2000352]; negative regulation of extrinsic apoptotic signaling pathway via death domain receptors [GO:1902042]; plasminogen activation [GO:0031639]; platelet aggregation [GO:0070527]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of exocytosis [GO:0045921]; positive regulation of heterotypic cell-cell adhesion [GO:0034116]; positive regulation of peptide hormone secretion [GO:0090277]; positive regulation of protein secretion [GO:0050714]; positive regulation of substrate adhesion-dependent cell spreading [GO:1900026]; positive regulation of vasoconstriction [GO:0045907]; protein polymerization [GO:0051258]; protein-containing complex assembly [GO:0065003]; response to calcium ion [GO:0051592] -P02675 reviewed FIBB_HUMAN Fibrinogen beta chain [Cleaved into: Fibrinopeptide B; Fibrinogen beta chain] FGB adaptive immune response [GO:0002250]; blood coagulation, fibrin clot formation [GO:0072378]; cell-matrix adhesion [GO:0007160]; cellular response to interleukin-1 [GO:0071347]; cellular response to leptin stimulus [GO:0044320]; fibrinolysis [GO:0042730]; induction of bacterial agglutination [GO:0043152]; innate immune response [GO:0045087]; negative regulation of endothelial cell apoptotic process [GO:2000352]; negative regulation of extrinsic apoptotic signaling pathway via death domain receptors [GO:1902042]; plasminogen activation [GO:0031639]; platelet aggregation [GO:0070527]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of exocytosis [GO:0045921]; positive regulation of heterotypic cell-cell adhesion [GO:0034116]; positive regulation of peptide hormone secretion [GO:0090277]; positive regulation of protein secretion [GO:0050714]; positive regulation of substrate adhesion-dependent cell spreading [GO:1900026]; positive regulation of vasoconstriction [GO:0045907]; protein polymerization [GO:0051258]; protein-containing complex assembly [GO:0065003]; response to calcium ion [GO:0051592] -P02679 reviewed FIBG_HUMAN Fibrinogen gamma chain FGG PRO2061 blood coagulation, fibrin clot formation [GO:0072378]; cell-matrix adhesion [GO:0007160]; cellular response to interleukin-1 [GO:0071347]; cellular response to interleukin-6 [GO:0071354]; fibrinolysis [GO:0042730]; negative regulation of endothelial cell apoptotic process [GO:2000352]; negative regulation of extrinsic apoptotic signaling pathway via death domain receptors [GO:1902042]; plasminogen activation [GO:0031639]; platelet aggregation [GO:0070527]; platelet maturation [GO:0036345]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of exocytosis [GO:0045921]; positive regulation of heterotypic cell-cell adhesion [GO:0034116]; positive regulation of peptide hormone secretion [GO:0090277]; positive regulation of protein secretion [GO:0050714]; positive regulation of substrate adhesion-dependent cell spreading [GO:1900026]; positive regulation of vasoconstriction [GO:0045907]; protein polymerization [GO:0051258]; protein secretion [GO:0009306]; protein-containing complex assembly [GO:0065003]; response to calcium ion [GO:0051592] -P02750 reviewed A2GL_HUMAN Leucine-rich alpha-2-glycoprotein (LRG) LRG1 LRG brown fat cell differentiation [GO:0050873]; keratinocyte migration [GO:0051546]; leukocyte adhesion to vascular endothelial cell [GO:0061756]; positive regulation of angiogenesis [GO:0045766]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of epithelial cell proliferation involved in wound healing [GO:0060054]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of keratinocyte proliferation [GO:0010838]; positive regulation of transforming growth factor beta receptor signaling pathway [GO:0030511]; response to bacterium [GO:0009617]; wound healing, spreading of epidermal cells [GO:0035313] -P04083 reviewed ANXA1_HUMAN Annexin A1 (Annexin I) (Annexin-1) (Calpactin II) (Calpactin-2) (Chromobindin-9) (Lipocortin I) (Phospholipase A2 inhibitory protein) (p35) [Cleaved into: Annexin Ac2-26] ANXA1 ANX1 LPC1 actin cytoskeleton organization [GO:0030036]; adaptive immune response [GO:0002250]; alpha-beta T cell differentiation [GO:0046632]; arachidonic acid secretion [GO:0050482]; cell surface receptor signaling pathway [GO:0007166]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; G protein-coupled receptor signaling pathway, coupled to cyclic nucleotide second messenger [GO:0007187]; granulocyte chemotaxis [GO:0071621]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; keratinocyte differentiation [GO:0030216]; monocyte chemotaxis [GO:0002548]; myoblast migration involved in skeletal muscle regeneration [GO:0014839]; negative regulation of apoptotic process [GO:0043066]; negative regulation of exocytosis [GO:0045920]; negative regulation of interleukin-8 production [GO:0032717]; negative regulation of T-helper 2 cell differentiation [GO:0045629]; neutrophil activation [GO:0042119]; neutrophil clearance [GO:0097350]; neutrophil homeostasis [GO:0001780]; peptide cross-linking [GO:0018149]; phagocytosis [GO:0006909]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell differentiation [GO:0045627]; positive regulation of vesicle fusion [GO:0031340]; positive regulation of wound healing [GO:0090303]; regulation of cell shape [GO:0008360]; regulation of hormone secretion [GO:0046883]; regulation of inflammatory response [GO:0050727]; regulation of interleukin-1 production [GO:0032652]; regulation of leukocyte migration [GO:0002685]; signal transduction [GO:0007165] -P04216 reviewed THY1_HUMAN Thy-1 membrane glycoprotein (CDw90) (Thy-1 antigen) (CD antigen CD90) THY1 angiogenesis [GO:0001525]; cell-cell adhesion [GO:0098609]; cell-cell signaling [GO:0007267]; cytoskeleton organization [GO:0007010]; focal adhesion assembly [GO:0048041]; heterotypic cell-cell adhesion [GO:0034113]; integrin-mediated signaling pathway [GO:0007229]; negative regulation of axonogenesis [GO:0050771]; negative regulation of cell migration [GO:0030336]; negative regulation of neuron projection regeneration [GO:0070571]; negative regulation of protein kinase activity [GO:0006469]; negative regulation of T cell receptor signaling pathway [GO:0050860]; positive regulation of cellular extravasation [GO:0002693]; positive regulation of focal adhesion assembly [GO:0051894]; positive regulation of GTPase activity [GO:0043547]; positive regulation of release of sequestered calcium ion into cytosol [GO:0051281]; positive regulation of T cell activation [GO:0050870]; receptor clustering [GO:0043113]; regulation of cell-matrix adhesion [GO:0001952]; regulation of Rho-dependent protein serine/threonine kinase activity [GO:2000298]; retinal cone cell development [GO:0046549]; T cell receptor signaling pathway [GO:0050852] -P04792 reviewed HSPB1_HUMAN Heat shock protein beta-1 (HspB1) (28 kDa heat shock protein) (Estrogen-regulated 24 kDa protein) (Heat shock 27 kDa protein) (HSP 27) (Heat shock protein family B member 1) (Stress-responsive protein 27) (SRP27) HSPB1 HSP27 HSP28 anterograde axonal protein transport [GO:0099641]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; chaperone-mediated protein folding [GO:0061077]; intracellular signal transduction [GO:0035556]; negative regulation of apoptotic process [GO:0043066]; negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway [GO:1902176]; negative regulation of protein kinase activity [GO:0006469]; platelet aggregation [GO:0070527]; positive regulation of angiogenesis [GO:0045766]; positive regulation of blood vessel endothelial cell migration [GO:0043536]; positive regulation of endothelial cell chemotaxis [GO:2001028]; positive regulation of interleukin-1 beta production [GO:0032731]; positive regulation of tumor necrosis factor production [GO:0032760]; protein refolding [GO:0042026]; regulation of autophagy [GO:0010506]; regulation of canonical NF-kappaB signal transduction [GO:0043122]; regulation of protein phosphorylation [GO:0001932]; regulation of translational initiation [GO:0006446]; response to heat [GO:0009408]; response to unfolded protein [GO:0006986]; response to virus [GO:0009615]; vascular endothelial growth factor receptor signaling pathway [GO:0048010] -P05106 reviewed ITB3_HUMAN Integrin beta-3 (Platelet membrane glycoprotein IIIa) (GPIIIa) (CD antigen CD61) ITGB3 GP3A activation of protein kinase activity [GO:0032147]; angiogenesis involved in wound healing [GO:0060055]; apolipoprotein A-I-mediated signaling pathway [GO:0038027]; apoptotic cell clearance [GO:0043277]; blood coagulation [GO:0007596]; blood coagulation, fibrin clot formation [GO:0072378]; cell adhesion [GO:0007155]; cell adhesion mediated by integrin [GO:0033627]; cell-matrix adhesion [GO:0007160]; cell-substrate adhesion [GO:0031589]; cell-substrate junction assembly [GO:0007044]; cellular response to insulin-like growth factor stimulus [GO:1990314]; cellular response to mechanical stimulus [GO:0071260]; cellular response to platelet-derived growth factor stimulus [GO:0036120]; cellular response to xenobiotic stimulus [GO:0071466]; embryo implantation [GO:0007566]; heterotypic cell-cell adhesion [GO:0034113]; integrin-mediated signaling pathway [GO:0007229]; maintenance of postsynaptic specialization structure [GO:0098880]; mesodermal cell differentiation [GO:0048333]; negative chemotaxis [GO:0050919]; negative regulation of endothelial cell apoptotic process [GO:2000352]; negative regulation of lipid storage [GO:0010888]; negative regulation of lipid transport [GO:0032369]; negative regulation of lipoprotein metabolic process [GO:0050748]; negative regulation of low-density lipoprotein receptor activity [GO:1905598]; negative regulation of macrophage derived foam cell differentiation [GO:0010745]; platelet activation [GO:0030168]; platelet aggregation [GO:0070527]; platelet-derived growth factor receptor signaling pathway [GO:0048008]; positive regulation of adenylate cyclase-inhibiting opioid receptor signaling pathway [GO:1900731]; positive regulation of angiogenesis [GO:0045766]; positive regulation of bone resorption [GO:0045780]; positive regulation of cell adhesion mediated by integrin [GO:0033630]; positive regulation of cell-matrix adhesion [GO:0001954]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of fibroblast migration [GO:0010763]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of gene expression [GO:0010628]; positive regulation of glomerular mesangial cell proliferation [GO:0072126]; positive regulation of osteoblast proliferation [GO:0033690]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of smooth muscle cell migration [GO:0014911]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of substrate adhesion-dependent cell spreading [GO:1900026]; positive regulation of T cell migration [GO:2000406]; positive regulation of vascular endothelial growth factor receptor signaling pathway [GO:0030949]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of bone resorption [GO:0045124]; regulation of extracellular matrix organization [GO:1903053]; regulation of postsynaptic neurotransmitter receptor diffusion trapping [GO:0150054]; regulation of postsynaptic neurotransmitter receptor internalization [GO:0099149]; regulation of protein localization [GO:0032880]; regulation of release of sequestered calcium ion into cytosol [GO:0051279]; regulation of serotonin uptake [GO:0051611]; regulation of trophoblast cell migration [GO:1901163]; response to activity [GO:0014823]; smooth muscle cell migration [GO:0014909]; substrate adhesion-dependent cell spreading [GO:0034446]; symbiont entry into host cell [GO:0046718]; tube development [GO:0035295]; wound healing [GO:0042060]; wound healing, spreading of epidermal cells [GO:0035313] -P05107 reviewed ITB2_HUMAN Integrin beta-2 (Cell surface adhesion glycoproteins LFA-1/CR3/p150,95 subunit beta) (Complement receptor C3 subunit beta) (CD antigen CD18) ITGB2 CD18 MFI7 amyloid-beta clearance [GO:0097242]; apoptotic process [GO:0006915]; cell adhesion [GO:0007155]; cell-cell adhesion [GO:0098609]; cell-cell adhesion via plasma-membrane adhesion molecules [GO:0098742]; cell-cell signaling [GO:0007267]; cell-matrix adhesion [GO:0007160]; cellular response to low-density lipoprotein particle stimulus [GO:0071404]; endodermal cell differentiation [GO:0035987]; heterotypic cell-cell adhesion [GO:0034113]; inflammatory response [GO:0006954]; integrin-mediated signaling pathway [GO:0007229]; leukocyte cell-cell adhesion [GO:0007159]; microglial cell activation [GO:0001774]; negative regulation of dopamine metabolic process [GO:0045963]; neutrophil chemotaxis [GO:0030593]; neutrophil migration [GO:1990266]; phagocytosis, engulfment [GO:0006911]; positive regulation of leukocyte adhesion to vascular endothelial cell [GO:1904996]; positive regulation of neutrophil degranulation [GO:0043315]; positive regulation of prostaglandin-E synthase activity [GO:2000363]; positive regulation of protein targeting to membrane [GO:0090314]; positive regulation of superoxide anion generation [GO:0032930]; receptor clustering [GO:0043113]; receptor internalization [GO:0031623]; receptor-mediated endocytosis [GO:0006898]; regulation of cell shape [GO:0008360]; regulation of peptidyl-tyrosine phosphorylation [GO:0050730] -P05109 reviewed S10A8_HUMAN Protein S100-A8 (Calgranulin-A) (Calprotectin L1L subunit) (Cystic fibrosis antigen) (CFAG) (Leukocyte L1 complex light chain) (Migration inhibitory factor-related protein 8) (MRP-8) (p8) (S100 calcium-binding protein A8) (Urinary stone protein band A) S100A8 CAGA CFAG MRP8 activation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0006919]; apoptotic process [GO:0006915]; astrocyte development [GO:0014002]; autocrine signaling [GO:0035425]; autophagy [GO:0006914]; chronic inflammatory response [GO:0002544]; defense response to bacterium [GO:0042742]; defense response to fungus [GO:0050832]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; leukocyte migration involved in inflammatory response [GO:0002523]; neutrophil aggregation [GO:0070488]; neutrophil chemotaxis [GO:0030593]; peptide secretion [GO:0002790]; peptidyl-cysteine S-nitrosylation [GO:0018119]; positive regulation of cell growth [GO:0030307]; positive regulation of inflammatory response [GO:0050729]; positive regulation of intrinsic apoptotic signaling pathway [GO:2001244]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of peptide secretion [GO:0002793]; regulation of cytoskeleton organization [GO:0051493]; regulation of toll-like receptor signaling pathway [GO:0034121]; response to ethanol [GO:0045471]; response to lipopolysaccharide [GO:0032496]; response to zinc ion [GO:0010043]; sequestering of zinc ion [GO:0032119] -P05162 reviewed LEG2_HUMAN Galectin-2 (Gal-2) (Beta-galactoside-binding lectin L-14-II) (HL14) (Lactose-binding lectin 2) (S-Lac lectin 2) LGALS2 cell-cell adhesion [GO:0098609]; positive regulation of apoptotic process [GO:0043065]; positive regulation of inflammatory response [GO:0050729]; T cell homeostasis [GO:0043029] -P05362 reviewed ICAM1_HUMAN Intercellular adhesion molecule 1 (ICAM-1) (Major group rhinovirus receptor) (CD antigen CD54) ICAM1 adhesion of symbiont to host [GO:0044406]; cell adhesion [GO:0007155]; cell adhesion mediated by integrin [GO:0033627]; cellular response to amyloid-beta [GO:1904646]; cellular response to glucose stimulus [GO:0071333]; cellular response to leukemia inhibitory factor [GO:1990830]; establishment of endothelial barrier [GO:0061028]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; leukocyte cell-cell adhesion [GO:0007159]; leukocyte migration [GO:0050900]; membrane to membrane docking [GO:0022614]; negative regulation of endothelial cell apoptotic process [GO:2000352]; negative regulation of extrinsic apoptotic signaling pathway via death domain receptors [GO:1902042]; positive regulation of cellular extravasation [GO:0002693]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; receptor-mediated virion attachment to host cell [GO:0046813]; regulation of leukocyte mediated cytotoxicity [GO:0001910]; regulation of ruffle assembly [GO:1900027]; T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell [GO:0002291]; T cell antigen processing and presentation [GO:0002457]; T cell extravasation [GO:0072683] -P05556 reviewed ITB1_HUMAN Integrin beta-1 (Fibronectin receptor subunit beta) (Glycoprotein IIa) (GPIIA) (VLA-4 subunit beta) (CD antigen CD29) ITGB1 FNRB MDF2 MSK12 axon extension [GO:0048675]; B cell differentiation [GO:0030183]; basement membrane organization [GO:0071711]; calcium-independent cell-matrix adhesion [GO:0007161]; cardiac cell fate specification [GO:0060912]; cardiac muscle cell differentiation [GO:0055007]; cardiac muscle cell myoblast differentiation [GO:0060379]; CD40 signaling pathway [GO:0023035]; cell adhesion [GO:0007155]; cell adhesion mediated by integrin [GO:0033627]; cell migration [GO:0016477]; cell migration involved in sprouting angiogenesis [GO:0002042]; cell projection organization [GO:0030030]; cell-cell adhesion [GO:0098609]; cell-cell adhesion mediated by integrin [GO:0033631]; cell-matrix adhesion [GO:0007160]; cell-substrate adhesion [GO:0031589]; cellular defense response [GO:0006968]; cellular response to low-density lipoprotein particle stimulus [GO:0071404]; dendrite morphogenesis [GO:0048813]; establishment of mitotic spindle orientation [GO:0000132]; extracellular matrix organization [GO:0030198]; formation of radial glial scaffolds [GO:0021943]; G1/S transition of mitotic cell cycle [GO:0000082]; germ cell migration [GO:0008354]; heterotypic cell-cell adhesion [GO:0034113]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; in utero embryonic development [GO:0001701]; integrin-mediated signaling pathway [GO:0007229]; lamellipodium assembly [GO:0030032]; leukocyte cell-cell adhesion [GO:0007159]; leukocyte tethering or rolling [GO:0050901]; maintenance of blood-brain barrier [GO:0035633]; mesodermal cell differentiation [GO:0048333]; muscle organ development [GO:0007517]; myoblast differentiation [GO:0045445]; myoblast fate specification [GO:0048626]; myoblast fusion [GO:0007520]; negative regulation of anoikis [GO:2000811]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of Rho protein signal transduction [GO:0035024]; negative regulation of vasoconstriction [GO:0045906]; neuroblast proliferation [GO:0007405]; phagocytosis [GO:0006909]; positive regulation of angiogenesis [GO:0045766]; positive regulation of apoptotic process [GO:0043065]; positive regulation of cell migration [GO:0030335]; positive regulation of fibroblast growth factor receptor signaling pathway [GO:0045743]; positive regulation of fibroblast migration [GO:0010763]; positive regulation of glutamate uptake involved in transmission of nerve impulse [GO:0051951]; positive regulation of GTPase activity [GO:0043547]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of protein localization to plasma membrane [GO:1903078]; positive regulation of vascular endothelial growth factor signaling pathway [GO:1900748]; positive regulation of wound healing [GO:0090303]; reactive gliosis [GO:0150103]; receptor internalization [GO:0031623]; regulation of cell cycle [GO:0051726]; regulation of collagen catabolic process [GO:0010710]; regulation of inward rectifier potassium channel activity [GO:1901979]; regulation of spontaneous synaptic transmission [GO:0150003]; regulation of synapse pruning [GO:1905806]; sarcomere organization [GO:0045214]; visual learning [GO:0008542]; wound healing, spreading of epidermal cells [GO:0035313] -P05783 reviewed K1C18_HUMAN Keratin, type I cytoskeletal 18 (Cell proliferation-inducing gene 46 protein) (Cytokeratin-18) (CK-18) (Keratin-18) (K18) KRT18 CYK18 PIG46 anatomical structure morphogenesis [GO:0009653]; extrinsic apoptotic signaling pathway [GO:0097191]; Golgi to plasma membrane protein transport [GO:0043001]; hepatocyte apoptotic process [GO:0097284]; intermediate filament cytoskeleton organization [GO:0045104]; negative regulation of apoptotic process [GO:0043066]; tumor necrosis factor-mediated signaling pathway [GO:0033209] -P06702 reviewed S10A9_HUMAN Protein S100-A9 (Calgranulin-B) (Calprotectin L1H subunit) (Leukocyte L1 complex heavy chain) (Migration inhibitory factor-related protein 14) (MRP-14) (p14) (S100 calcium-binding protein A9) S100A9 CAGB CFAG MRP14 activation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0006919]; antimicrobial humoral immune response mediated by antimicrobial peptide [GO:0061844]; apoptotic process [GO:0006915]; astrocyte development [GO:0014002]; autocrine signaling [GO:0035425]; autophagy [GO:0006914]; cell-cell signaling [GO:0007267]; chronic inflammatory response [GO:0002544]; defense response to bacterium [GO:0042742]; defense response to fungus [GO:0050832]; endothelial cell migration [GO:0043542]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; leukocyte migration involved in inflammatory response [GO:0002523]; modulation of process of another organism [GO:0035821]; neutrophil aggregation [GO:0070488]; neutrophil chemotaxis [GO:0030593]; peptidyl-cysteine S-trans-nitrosylation [GO:0035606]; positive regulation of cell growth [GO:0030307]; positive regulation of inflammatory response [GO:0050729]; positive regulation of intrinsic apoptotic signaling pathway [GO:2001244]; positive regulation of neuron projection development [GO:0010976]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; regulation of cytoskeleton organization [GO:0051493]; regulation of integrin biosynthetic process [GO:0045113]; regulation of respiratory burst involved in inflammatory response [GO:0060264]; regulation of toll-like receptor signaling pathway [GO:0034121]; response to lipopolysaccharide [GO:0032496]; sequestering of zinc ion [GO:0032119] -P06727 reviewed APOA4_HUMAN Apolipoprotein A-IV (Apo-AIV) (ApoA-IV) (Apolipoprotein A4) APOA4 acylglycerol homeostasis [GO:0055090]; cholesterol efflux [GO:0033344]; cholesterol homeostasis [GO:0042632]; cholesterol metabolic process [GO:0008203]; chylomicron assembly [GO:0034378]; chylomicron remodeling [GO:0034371]; high-density lipoprotein particle remodeling [GO:0034375]; hydrogen peroxide catabolic process [GO:0042744]; innate immune response in mucosa [GO:0002227]; leukocyte cell-cell adhesion [GO:0007159]; lipid catabolic process [GO:0016042]; lipid homeostasis [GO:0055088]; lipid transport [GO:0006869]; lipoprotein metabolic process [GO:0042157]; negative regulation of plasma lipoprotein oxidation [GO:0034445]; peripheral nervous system axon regeneration [GO:0014012]; phosphatidylcholine metabolic process [GO:0046470]; phospholipid efflux [GO:0033700]; positive regulation of CoA-transferase activity [GO:1905920]; positive regulation of fatty acid biosynthetic process [GO:0045723]; positive regulation of lipoprotein lipase activity [GO:0051006]; positive regulation of triglyceride catabolic process [GO:0010898]; protein-lipid complex assembly [GO:0065005]; regulation of cholesterol transport [GO:0032374]; regulation of intestinal cholesterol absorption [GO:0030300]; removal of superoxide radicals [GO:0019430]; response to lipid hydroperoxide [GO:0006982]; response to stilbenoid [GO:0035634]; response to triglyceride [GO:0034014]; reverse cholesterol transport [GO:0043691]; very-low-density lipoprotein particle remodeling [GO:0034372] -P06729 reviewed CD2_HUMAN T-cell surface antigen CD2 (Erythrocyte receptor) (LFA-2) (LFA-3 receptor) (Rosette receptor) (T-cell surface antigen T11/Leu-5) (CD antigen CD2) CD2 SRBC apoptotic process [GO:0006915]; cell surface receptor signaling pathway [GO:0007166]; cell-cell adhesion [GO:0098609]; heterotypic cell-cell adhesion [GO:0034113]; membrane raft polarization [GO:0001766]; natural killer cell activation [GO:0030101]; natural killer cell mediated cytotoxicity [GO:0042267]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of myeloid dendritic cell activation [GO:0030887]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of type II interferon production [GO:0032729]; regulation of T cell differentiation [GO:0045580]; T cell activation [GO:0042110] -P06731 reviewed CEAM5_HUMAN Carcinoembryonic antigen-related cell adhesion molecule 5 (Carcinoembryonic antigen) (CEA) (Meconium antigen 100) (CD antigen CD66e) CEACAM5 CEA apoptotic process [GO:0006915]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; homotypic cell-cell adhesion [GO:0034109]; negative regulation of anoikis [GO:2000811]; negative regulation of apoptotic process [GO:0043066]; negative regulation of myotube differentiation [GO:0010832] -P06756 reviewed ITAV_HUMAN Integrin alpha-V (Vitronectin receptor) (Vitronectin receptor subunit alpha) (CD antigen CD51) [Cleaved into: Integrin alpha-V heavy chain; Integrin alpha-V light chain] ITGAV MSK8 VNRA VTNR angiogenesis [GO:0001525]; apolipoprotein A-I-mediated signaling pathway [GO:0038027]; apoptotic cell clearance [GO:0043277]; calcium ion transmembrane transport [GO:0070588]; cell adhesion [GO:0007155]; cell adhesion mediated by integrin [GO:0033627]; cell migration [GO:0016477]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; cell-substrate adhesion [GO:0031589]; endodermal cell differentiation [GO:0035987]; entry into host cell by a symbiont-containing vacuole [GO:0085017]; ERK1 and ERK2 cascade [GO:0070371]; extrinsic apoptotic signaling pathway in absence of ligand [GO:0097192]; heterotypic cell-cell adhesion [GO:0034113]; integrin-mediated signaling pathway [GO:0007229]; negative chemotaxis [GO:0050919]; negative regulation of entry of bacterium into host cell [GO:2000536]; negative regulation of extrinsic apoptotic signaling pathway [GO:2001237]; negative regulation of lipid storage [GO:0010888]; negative regulation of lipid transport [GO:0032369]; negative regulation of lipoprotein metabolic process [GO:0050748]; negative regulation of low-density lipoprotein receptor activity [GO:1905598]; negative regulation of macrophage derived foam cell differentiation [GO:0010745]; positive regulation of cell adhesion [GO:0045785]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of intracellular signal transduction [GO:1902533]; positive regulation of osteoblast proliferation [GO:0033690]; positive regulation of small GTPase mediated signal transduction [GO:0051057]; regulation of phagocytosis [GO:0050764]; substrate adhesion-dependent cell spreading [GO:0034446]; symbiont entry into host cell [GO:0046718]; transforming growth factor beta production [GO:0071604]; vasculogenesis [GO:0001570]; wound healing, spreading of epidermal cells [GO:0035313] -P06881 reviewed CALCA_HUMAN Calcitonin gene-related peptide 1 (Alpha-type CGRP) (Calcitonin gene-related peptide I) (CGRP-I) CALCA CALC1 activation of adenylate cyclase activity [GO:0007190]; adenylate cyclase-activating G protein-coupled receptor signaling pathway [GO:0007189]; calcitonin gene-related peptide receptor signaling pathway [GO:1990408]; cell-cell signaling [GO:0007267]; endothelial cell migration [GO:0043542]; endothelial cell proliferation [GO:0001935]; G protein-coupled receptor internalization [GO:0002031]; leukocyte cell-cell adhesion [GO:0007159]; negative regulation of blood pressure [GO:0045776]; negative regulation of bone resorption [GO:0045779]; negative regulation of calcium ion transport into cytosol [GO:0010523]; negative regulation of osteoclast differentiation [GO:0045671]; nervous system process involved in regulation of systemic arterial blood pressure [GO:0001976]; phospholipase C-activating G protein-coupled receptor signaling pathway [GO:0007200]; positive regulation of interleukin-1 alpha production [GO:0032730]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of macrophage differentiation [GO:0045651]; protein phosphorylation [GO:0006468]; receptor internalization [GO:0031623]; regulation of blood pressure [GO:0008217]; regulation of cytosolic calcium ion concentration [GO:0051480]; vasculature development [GO:0001944]; vasodilation [GO:0042311] -P07355 reviewed ANXA2_HUMAN Annexin A2 (Annexin II) (Annexin-2) (Calpactin I heavy chain) (Calpactin-1 heavy chain) (Chromobindin-8) (Lipocortin II) (Placental anticoagulant protein IV) (PAP-IV) (Protein I) (p36) ANXA2 ANX2 ANX2L4 CAL1H LPC2D angiogenesis [GO:0001525]; cell-matrix adhesion [GO:0007160]; collagen fibril organization [GO:0030199]; epithelial cell apoptotic process [GO:1904019]; fibrinolysis [GO:0042730]; lung development [GO:0030324]; membrane raft assembly [GO:0001765]; mRNA transcription by RNA polymerase II [GO:0042789]; negative regulation of low-density lipoprotein particle receptor catabolic process [GO:0032804]; negative regulation of receptor internalization [GO:0002091]; osteoclast development [GO:0036035]; positive regulation of exocytosis [GO:0045921]; positive regulation of low-density lipoprotein particle clearance [GO:1905581]; positive regulation of low-density lipoprotein particle receptor binding [GO:1905597]; positive regulation of low-density lipoprotein receptor activity [GO:1905599]; positive regulation of plasma membrane repair [GO:1905686]; positive regulation of plasminogen activation [GO:0010756]; positive regulation of receptor recycling [GO:0001921]; positive regulation of receptor-mediated endocytosis involved in cholesterol transport [GO:1905602]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of vacuole organization [GO:0044090]; positive regulation of vesicle fusion [GO:0031340]; regulation of neurogenesis [GO:0050767]; response to activity [GO:0014823]; vesicle budding from membrane [GO:0006900] -P07911 reviewed UROM_HUMAN Uromodulin (Tamm-Horsfall urinary glycoprotein) (THP) [Cleaved into: Uromodulin, secreted form] UMOD antibacterial innate immune response [GO:0140367]; apoptotic signaling pathway [GO:0097190]; autophagy [GO:0006914]; cellular defense response [GO:0006968]; cellular response to unfolded protein [GO:0034620]; chaperone-mediated protein folding [GO:0061077]; citric acid secretion [GO:0046720]; collecting duct development [GO:0072044]; connective tissue replacement [GO:0097709]; defense response to Gram-negative bacterium [GO:0050829]; endoplasmic reticulum organization [GO:0007029]; ERAD pathway [GO:0036503]; glomerular filtration [GO:0003094]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; inflammatory response [GO:0006954]; intracellular calcium ion homeostasis [GO:0006874]; intracellular chloride ion homeostasis [GO:0030644]; intracellular phosphate ion homeostasis [GO:0030643]; intracellular sodium ion homeostasis [GO:0006883]; juxtaglomerular apparatus development [GO:0072051]; leukocyte cell-cell adhesion [GO:0007159]; lipid metabolic process [GO:0006629]; metanephric ascending thin limb development [GO:0072218]; metanephric distal convoluted tubule development [GO:0072221]; metanephric thick ascending limb development [GO:0072233]; micturition [GO:0060073]; multicellular organismal response to stress [GO:0033555]; negative regulation of cell population proliferation [GO:0008285]; neutrophil migration [GO:1990266]; organ or tissue specific immune response [GO:0002251]; potassium ion homeostasis [GO:0055075]; protein localization to vacuole [GO:0072665]; protein transport into plasma membrane raft [GO:0044861]; regulation of blood pressure [GO:0008217]; regulation of protein transport [GO:0051223]; regulation of urine volume [GO:0035809]; renal sodium ion absorption [GO:0070294]; renal urate salt excretion [GO:0097744]; renal water homeostasis [GO:0003091]; response to lipopolysaccharide [GO:0032496]; response to water deprivation [GO:0009414]; response to xenobiotic stimulus [GO:0009410]; RNA splicing [GO:0008380]; tumor necrosis factor-mediated signaling pathway [GO:0033209]; urate transport [GO:0015747]; urea transmembrane transport [GO:0071918] -P07942 reviewed LAMB1_HUMAN Laminin subunit beta-1 (Laminin B1 chain) (Laminin-1 subunit beta) (Laminin-10 subunit beta) (Laminin-12 subunit beta) (Laminin-2 subunit beta) (Laminin-6 subunit beta) (Laminin-8 subunit beta) LAMB1 cell adhesion [GO:0007155]; endodermal cell differentiation [GO:0035987]; neuron projection development [GO:0031175]; neuronal-glial interaction involved in cerebral cortex radial glia guided migration [GO:0021812]; odontogenesis [GO:0042476]; positive regulation of cell adhesion [GO:0045785]; positive regulation of cell migration [GO:0030335]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of integrin-mediated signaling pathway [GO:2001046]; positive regulation of muscle cell differentiation [GO:0051149]; regulation of basement membrane organization [GO:0110011]; substrate adhesion-dependent cell spreading [GO:0034446] -P07949 reviewed RET_HUMAN Proto-oncogene tyrosine-protein kinase receptor Ret (EC 2.7.10.1) (Cadherin family member 12) (Proto-oncogene c-Ret) [Cleaved into: Soluble RET kinase fragment; Extracellular cell-membrane anchored RET cadherin 120 kDa fragment] RET CDHF12 CDHR16 PTC activation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0006919]; axon guidance [GO:0007411]; cellular response to retinoic acid [GO:0071300]; embryonic epithelial tube formation [GO:0001838]; enteric nervous system development [GO:0048484]; GDF15-GFRAL signaling pathway [GO:0160144]; glial cell-derived neurotrophic factor receptor signaling pathway [GO:0035860]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; innervation [GO:0060384]; lymphocyte migration into lymphoid organs [GO:0097021]; MAPK cascade [GO:0000165]; membrane protein proteolysis [GO:0033619]; neural crest cell migration [GO:0001755]; neuron cell-cell adhesion [GO:0007158]; neuron maturation [GO:0042551]; Peyer's patch morphogenesis [GO:0061146]; positive regulation of cell adhesion mediated by integrin [GO:0033630]; positive regulation of cell migration [GO:0030335]; positive regulation of cell size [GO:0045793]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001241]; positive regulation of gene expression [GO:0010628]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of metanephric glomerulus development [GO:0072300]; positive regulation of neuron maturation [GO:0014042]; positive regulation of neuron projection development [GO:0010976]; positive regulation of peptidyl-serine phosphorylation of STAT protein [GO:0033141]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; posterior midgut development [GO:0007497]; protein phosphorylation [GO:0006468]; regulation of axonogenesis [GO:0050770]; regulation of cell adhesion [GO:0030155]; response to pain [GO:0048265]; response to xenobiotic stimulus [GO:0009410]; retina development in camera-type eye [GO:0060041]; signal transduction [GO:0007165]; ureter maturation [GO:0035799]; ureteric bud development [GO:0001657] -P08514 reviewed ITA2B_HUMAN Integrin alpha-IIb (GPalpha IIb) (GPIIb) (Platelet membrane glycoprotein IIb) (CD antigen CD41) [Cleaved into: Integrin alpha-IIb heavy chain; Integrin alpha-IIb light chain, form 1; Integrin alpha-IIb light chain, form 2] ITGA2B GP2B ITGAB angiogenesis [GO:0001525]; cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229]; positive regulation of leukocyte migration [GO:0002687] -P08567 reviewed PLEK_HUMAN Pleckstrin (Platelet 47 kDa protein) (p47) PLEK P47 actin cytoskeleton organization [GO:0030036]; cell projection organization [GO:0030030]; cortical actin cytoskeleton organization [GO:0030866]; hematopoietic progenitor cell differentiation [GO:0002244]; integrin-mediated signaling pathway [GO:0007229]; negative regulation of calcium-mediated signaling [GO:0050849]; negative regulation of G protein-coupled receptor signaling pathway [GO:0045744]; negative regulation of inositol phosphate biosynthetic process [GO:0010920]; phosphatidylinositol metabolic process [GO:0046488]; phospholipase C-inhibiting G protein-coupled receptor signaling pathway [GO:0030845]; platelet aggregation [GO:0070527]; platelet degranulation [GO:0002576]; positive regulation of actin filament bundle assembly [GO:0032233]; positive regulation of actin filament depolymerization [GO:0030836]; positive regulation of inositol-polyphosphate 5-phosphatase activity [GO:0010925]; positive regulation of integrin activation [GO:0033625]; positive regulation of platelet activation [GO:0010572]; protein kinase C signaling [GO:0070528]; protein secretion by platelet [GO:0070560]; regulation of cell diameter [GO:0060305]; ruffle organization [GO:0031529]; thrombin-activated receptor signaling pathway [GO:0070493]; vesicle docking involved in exocytosis [GO:0006904] -P08575 reviewed PTPRC_HUMAN Receptor-type tyrosine-protein phosphatase C (EC 3.1.3.48) (Leukocyte common antigen) (L-CA) (T200) (CD antigen CD45) PTPRC CD45 alpha-beta T cell proliferation [GO:0046633]; B cell differentiation [GO:0030183]; B cell proliferation [GO:0042100]; B cell receptor signaling pathway [GO:0050853]; bone marrow development [GO:0048539]; cell cycle phase transition [GO:0044770]; cell surface receptor signaling pathway [GO:0007166]; cellular response to extracellular stimulus [GO:0031668]; defense response to virus [GO:0051607]; dephosphorylation [GO:0016311]; DN2 thymocyte differentiation [GO:1904155]; extrinsic apoptotic signaling pathway [GO:0097191]; gamma-delta T cell differentiation [GO:0042492]; hematopoietic progenitor cell differentiation [GO:0002244]; heterotypic cell-cell adhesion [GO:0034113]; leukocyte cell-cell adhesion [GO:0007159]; MAPK cascade [GO:0000165]; natural killer cell differentiation [GO:0001779]; negative regulation of cell adhesion involved in substrate-bound cell migration [GO:0006933]; negative regulation of cytokine-mediated signaling pathway [GO:0001960]; negative regulation of ERK1 and ERK2 cascade [GO:0070373]; negative regulation of interleukin-2 production [GO:0032703]; negative regulation of microglial cell activation [GO:1903979]; negative regulation of peptidyl-tyrosine phosphorylation [GO:0050732]; negative regulation of protein autophosphorylation [GO:0031953]; negative regulation of protein kinase activity [GO:0006469]; negative regulation of T cell mediated cytotoxicity [GO:0001915]; negative thymic T cell selection [GO:0045060]; plasma membrane raft distribution [GO:0044855]; positive regulation of alpha-beta T cell proliferation [GO:0046641]; positive regulation of antigen receptor-mediated signaling pathway [GO:0050857]; positive regulation of B cell proliferation [GO:0030890]; positive regulation of calcium-mediated signaling [GO:0050850]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of extrinsic apoptotic signaling pathway [GO:2001238]; positive regulation of Fc receptor mediated stimulatory signaling pathway [GO:0060369]; positive regulation of gamma-delta T cell differentiation [GO:0045588]; positive regulation of hematopoietic stem cell migration [GO:2000473]; positive regulation of humoral immune response mediated by circulating immunoglobulin [GO:0002925]; positive regulation of immunoglobulin production [GO:0002639]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of isotype switching to IgG isotypes [GO:0048304]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of phagocytosis [GO:0050766]; positive regulation of protein kinase activity [GO:0045860]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of T cell mediated cytotoxicity [GO:0001916]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of tumor necrosis factor production [GO:0032760]; positive thymic T cell selection [GO:0045059]; protein dephosphorylation [GO:0006470]; regulation of cell cycle [GO:0051726]; regulation of gene expression [GO:0010468]; regulation of interleukin-8 production [GO:0032677]; regulation of phagocytosis [GO:0050764]; regulation of protein tyrosine kinase activity [GO:0061097]; regulation of receptor signaling pathway via JAK-STAT [GO:0046425]; regulation of T cell receptor signaling pathway [GO:0050856]; release of sequestered calcium ion into cytosol [GO:0051209]; response to aldosterone [GO:1904044]; response to gamma radiation [GO:0010332]; stem cell development [GO:0048864]; T cell activation [GO:0042110]; T cell differentiation [GO:0030217]; T cell receptor signaling pathway [GO:0050852] -P08648 reviewed ITA5_HUMAN Integrin alpha-5 (CD49 antigen-like family member E) (Fibronectin receptor subunit alpha) (Integrin alpha-F) (VLA-5) (CD antigen CD49e) [Cleaved into: Integrin alpha-5 heavy chain; Integrin alpha-5 light chain] ITGA5 FNRA angiogenesis [GO:0001525]; CD40 signaling pathway [GO:0023035]; cell adhesion [GO:0007155]; cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-cell adhesion mediated by integrin [GO:0033631]; cell-matrix adhesion [GO:0007160]; cell-substrate adhesion [GO:0031589]; cell-substrate junction assembly [GO:0007044]; endodermal cell differentiation [GO:0035987]; female pregnancy [GO:0007565]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; heterotypic cell-cell adhesion [GO:0034113]; integrin-mediated signaling pathway [GO:0007229]; leukocyte cell-cell adhesion [GO:0007159]; memory [GO:0007613]; negative regulation of anoikis [GO:2000811]; positive regulation of cell migration [GO:0030335]; positive regulation of cell-substrate adhesion [GO:0010811]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of sprouting angiogenesis [GO:1903672]; positive regulation of vascular endothelial growth factor receptor signaling pathway [GO:0030949]; wound healing, spreading of epidermal cells [GO:0035313] -P08F94 reviewed PKHD1_HUMAN Fibrocystin (Polycystic kidney and hepatic disease 1 protein) (Polyductin) (Tigmin) PKHD1 FCYT TIGM1 branching morphogenesis of an epithelial tube [GO:0048754]; cell-cell adhesion [GO:0098609]; cell-cell junction organization [GO:0045216]; cilium assembly [GO:0060271]; epithelial cell morphogenesis [GO:0003382]; establishment of centrosome localization [GO:0051660]; establishment of mitotic spindle orientation [GO:0000132]; homeostatic process [GO:0042592]; intracellular calcium ion homeostasis [GO:0006874]; kidney development [GO:0001822]; negative regulation of apoptotic process [GO:0043066]; negative regulation of epithelial cell apoptotic process [GO:1904036]; negative regulation of NF-kappaB transcription factor activity [GO:0032088]; negative regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051898]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of epithelial cell proliferation [GO:0050679]; regulation of cell adhesion [GO:0030155]; regulation of cell-cell adhesion [GO:0022407]; regulation of cell-matrix adhesion [GO:0001952]; regulation of centrosome duplication [GO:0010824]; regulation of cholangiocyte proliferation [GO:1904054]; regulation of ERK1 and ERK2 cascade [GO:0070372]; regulation of establishment of planar polarity [GO:0090175]; regulation of TOR signaling [GO:0032006] -P09382 reviewed LEG1_HUMAN Galectin-1 (Gal-1) (14 kDa laminin-binding protein) (HLBP14) (14 kDa lectin) (Beta-galactoside-binding lectin L-14-I) (Galaptin) (HBL) (HPL) (Lactose-binding lectin 1) (Lectin galactoside-binding soluble 1) (Putative MAPK-activating protein PM12) (S-Lac lectin 1) LGALS1 apoptotic process [GO:0006915]; cell-cell adhesion [GO:0098609]; myoblast differentiation [GO:0045445]; plasma cell differentiation [GO:0002317]; positive regulation of apoptotic process [GO:0043065]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of inflammatory response [GO:0050729]; positive regulation of viral entry into host cell [GO:0046598]; regulation of apoptotic process [GO:0042981]; T cell costimulation [GO:0031295] -P10415 reviewed BCL2_HUMAN Apoptosis regulator Bcl-2 BCL2 actin filament organization [GO:0007015]; apoptotic process [GO:0006915]; autophagy [GO:0006914]; axon regeneration [GO:0031103]; axonogenesis [GO:0007409]; B cell apoptotic process [GO:0001783]; B cell homeostasis [GO:0001782]; B cell lineage commitment [GO:0002326]; B cell proliferation [GO:0042100]; B cell receptor signaling pathway [GO:0050853]; behavioral fear response [GO:0001662]; branching involved in ureteric bud morphogenesis [GO:0001658]; calcium ion transport into cytosol [GO:0060402]; CD8-positive, alpha-beta T cell lineage commitment [GO:0043375]; cell-cell adhesion [GO:0098609]; cellular response to glucose starvation [GO:0042149]; cellular response to hypoxia [GO:0071456]; cellular response to organic substance [GO:0071310]; cochlear nucleus development [GO:0021747]; defense response to virus [GO:0051607]; dendritic cell apoptotic process [GO:0097048]; digestive tract morphogenesis [GO:0048546]; DNA damage response [GO:0006974]; ear development [GO:0043583]; endoplasmic reticulum calcium ion homeostasis [GO:0032469]; epithelial cell apoptotic process [GO:1904019]; establishment of localization in cell [GO:0051649]; extrinsic apoptotic signaling pathway in absence of ligand [GO:0097192]; extrinsic apoptotic signaling pathway via death domain receptors [GO:0008625]; female pregnancy [GO:0007565]; focal adhesion assembly [GO:0048041]; G1/S transition of mitotic cell cycle [GO:0000082]; gland morphogenesis [GO:0022612]; glomerulus development [GO:0032835]; hair follicle morphogenesis [GO:0031069]; hematopoietic stem cell differentiation [GO:0060218]; homeostasis of number of cells within a tissue [GO:0048873]; humoral immune response [GO:0006959]; intrinsic apoptotic signaling pathway in response to DNA damage [GO:0008630]; intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress [GO:0070059]; intrinsic apoptotic signaling pathway in response to oxidative stress [GO:0008631]; lymphoid progenitor cell differentiation [GO:0002320]; male gonad development [GO:0008584]; melanin metabolic process [GO:0006582]; melanocyte differentiation [GO:0030318]; mesenchymal cell development [GO:0014031]; metanephros development [GO:0001656]; motor neuron apoptotic process [GO:0097049]; myeloid cell apoptotic process [GO:0033028]; negative regulation of anoikis [GO:2000811]; negative regulation of apoptotic process [GO:0043066]; negative regulation of apoptotic signaling pathway [GO:2001234]; negative regulation of autophagy [GO:0010507]; negative regulation of B cell apoptotic process [GO:0002903]; negative regulation of calcium ion transport into cytosol [GO:0010523]; negative regulation of cell growth [GO:0030308]; negative regulation of cell migration [GO:0030336]; negative regulation of cellular pH reduction [GO:0032848]; negative regulation of dendritic cell apoptotic process [GO:2000669]; negative regulation of epithelial cell apoptotic process [GO:1904036]; negative regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001240]; negative regulation of G1/S transition of mitotic cell cycle [GO:2000134]; negative regulation of intrinsic apoptotic signaling pathway [GO:2001243]; negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:1902166]; negative regulation of mitochondrial depolarization [GO:0051902]; negative regulation of motor neuron apoptotic process [GO:2000672]; negative regulation of myeloid cell apoptotic process [GO:0033033]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of ossification [GO:0030279]; negative regulation of osteoblast proliferation [GO:0033689]; negative regulation of reactive oxygen species metabolic process [GO:2000378]; negative regulation of retinal cell programmed cell death [GO:0046671]; negative regulation of T cell apoptotic process [GO:0070233]; neuron apoptotic process [GO:0051402]; neuron maturation [GO:0042551]; oocyte development [GO:0048599]; organ growth [GO:0035265]; ossification [GO:0001503]; osteoblast proliferation [GO:0033687]; ovarian follicle development [GO:0001541]; pigment granule organization [GO:0048753]; positive regulation of apoptotic process [GO:0043065]; positive regulation of B cell proliferation [GO:0030890]; positive regulation of cell growth [GO:0030307]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of melanocyte differentiation [GO:0045636]; positive regulation of multicellular organism growth [GO:0040018]; positive regulation of neuron maturation [GO:0014042]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of skeletal muscle fiber development [GO:0048743]; positive regulation of smooth muscle cell migration [GO:0014911]; post-embryonic development [GO:0009791]; protein polyubiquitination [GO:0000209]; reactive oxygen species metabolic process [GO:0072593]; regulation of calcium ion transport [GO:0051924]; regulation of cell-matrix adhesion [GO:0001952]; regulation of gene expression [GO:0010468]; regulation of glycoprotein biosynthetic process [GO:0010559]; regulation of mitochondrial membrane permeability [GO:0046902]; regulation of mitochondrial membrane potential [GO:0051881]; regulation of nitrogen utilization [GO:0006808]; regulation of protein localization [GO:0032880]; regulation of protein stability [GO:0031647]; regulation of transmembrane transporter activity [GO:0022898]; regulation of viral genome replication [GO:0045069]; release of cytochrome c from mitochondria [GO:0001836]; renal system process [GO:0003014]; response to cytokine [GO:0034097]; response to gamma radiation [GO:0010332]; response to glucocorticoid [GO:0051384]; response to hydrogen peroxide [GO:0042542]; response to iron ion [GO:0010039]; response to ischemia [GO:0002931]; response to nicotine [GO:0035094]; response to radiation [GO:0009314]; response to toxic substance [GO:0009636]; response to UV-B [GO:0010224]; response to xenobiotic stimulus [GO:0009410]; retinal cell programmed cell death [GO:0046666]; skeletal muscle fiber development [GO:0048741]; smooth muscle cell migration [GO:0014909]; spleen development [GO:0048536]; stem cell development [GO:0048864]; T cell apoptotic process [GO:0070231]; T cell differentiation in thymus [GO:0033077]; T cell homeostasis [GO:0043029]; thymus development [GO:0048538] -P10586 reviewed PTPRF_HUMAN Receptor-type tyrosine-protein phosphatase F (EC 3.1.3.48) (Leukocyte common antigen related) (LAR) PTPRF LAR cell adhesion [GO:0007155]; cell migration [GO:0016477]; cell surface receptor protein tyrosine phosphatase signaling pathway [GO:0007185]; negative regulation of receptor binding [GO:1900121]; neuron projection regeneration [GO:0031102]; peptidyl-tyrosine dephosphorylation [GO:0035335]; regulation of axon regeneration [GO:0048679]; synaptic membrane adhesion [GO:0099560] -P10721 reviewed KIT_HUMAN Mast/stem cell growth factor receptor Kit (SCFR) (EC 2.7.10.1) (Piebald trait protein) (PBT) (Proto-oncogene c-Kit) (Tyrosine-protein kinase Kit) (p145 c-kit) (v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog) (CD antigen CD117) KIT SCFR actin cytoskeleton organization [GO:0030036]; B cell differentiation [GO:0030183]; cell chemotaxis [GO:0060326]; cytokine-mediated signaling pathway [GO:0019221]; detection of mechanical stimulus involved in sensory perception of sound [GO:0050910]; digestive tract development [GO:0048565]; ectopic germ cell programmed cell death [GO:0035234]; embryonic hemopoiesis [GO:0035162]; epithelial cell proliferation [GO:0050673]; erythrocyte differentiation [GO:0030218]; erythropoietin-mediated signaling pathway [GO:0038162]; Fc receptor signaling pathway [GO:0038093]; germ cell migration [GO:0008354]; glycosphingolipid metabolic process [GO:0006687]; hematopoietic progenitor cell differentiation [GO:0002244]; hematopoietic stem cell migration [GO:0035701]; hemopoiesis [GO:0030097]; immature B cell differentiation [GO:0002327]; inflammatory response [GO:0006954]; intracellular signal transduction [GO:0035556]; Kit signaling pathway [GO:0038109]; lamellipodium assembly [GO:0030032]; lymphoid progenitor cell differentiation [GO:0002320]; male gonad development [GO:0008584]; mast cell chemotaxis [GO:0002551]; mast cell degranulation [GO:0043303]; mast cell differentiation [GO:0060374]; mast cell proliferation [GO:0070662]; megakaryocyte development [GO:0035855]; melanocyte adhesion [GO:0097326]; melanocyte differentiation [GO:0030318]; melanocyte migration [GO:0097324]; myeloid progenitor cell differentiation [GO:0002318]; negative regulation of developmental process [GO:0051093]; negative regulation of programmed cell death [GO:0043069]; negative regulation of reproductive process [GO:2000242]; ovarian follicle development [GO:0001541]; pigmentation [GO:0043473]; positive regulation of cell migration [GO:0030335]; positive regulation of colon smooth muscle contraction [GO:1904343]; positive regulation of dendritic cell cytokine production [GO:0002732]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of long-term neuronal synaptic plasticity [GO:0048170]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of mast cell cytokine production [GO:0032765]; positive regulation of mast cell proliferation [GO:0070668]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of phospholipase C activity [GO:0010863]; positive regulation of pseudopodium assembly [GO:0031274]; positive regulation of pyloric antrum smooth muscle contraction [GO:0120072]; positive regulation of receptor signaling pathway via JAK-STAT [GO:0046427]; positive regulation of small intestine smooth muscle contraction [GO:1904349]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; positive regulation of vascular associated smooth muscle cell differentiation [GO:1905065]; protein autophosphorylation [GO:0046777]; regulation of bile acid metabolic process [GO:1904251]; regulation of cell population proliferation [GO:0042127]; regulation of cell shape [GO:0008360]; response to cadmium ion [GO:0046686]; signal transduction [GO:0007165]; somatic stem cell population maintenance [GO:0035019]; spermatid development [GO:0007286]; spermatogenesis [GO:0007283]; stem cell differentiation [GO:0048863]; stem cell population maintenance [GO:0019827]; T cell differentiation [GO:0030217]; tongue development [GO:0043586]; visual learning [GO:0008542] -P11215 reviewed ITAM_HUMAN Integrin alpha-M (CD11 antigen-like family member B) (CR-3 alpha chain) (Cell surface glycoprotein MAC-1 subunit alpha) (Leukocyte adhesion receptor MO1) (Neutrophil adherence receptor) (CD antigen CD11b) ITGAM CD11B CR3A amyloid-beta clearance [GO:0097242]; cell adhesion [GO:0007155]; cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-cell adhesion via plasma-membrane adhesion molecules [GO:0098742]; cell-matrix adhesion [GO:0007160]; complement receptor mediated signaling pathway [GO:0002430]; complement-mediated synapse pruning [GO:0150062]; ectodermal cell differentiation [GO:0010668]; forebrain development [GO:0030900]; heterotypic cell-cell adhesion [GO:0034113]; innate immune response [GO:0045087]; integrin-mediated signaling pathway [GO:0007229]; microglial cell activation [GO:0001774]; negative regulation of dopamine metabolic process [GO:0045963]; phagocytosis, engulfment [GO:0006911]; positive regulation of microglial cell mediated cytotoxicity [GO:1904151]; positive regulation of neutrophil degranulation [GO:0043315]; positive regulation of prostaglandin-E synthase activity [GO:2000363]; positive regulation of protein targeting to membrane [GO:0090314]; positive regulation of superoxide anion generation [GO:0032930]; receptor-mediated endocytosis [GO:0006898]; response to curcumin [GO:1904643]; response to estradiol [GO:0032355]; response to Gram-positive bacterium [GO:0140459]; response to ischemia [GO:0002931]; response to mechanical stimulus [GO:0009612]; vertebrate eye-specific patterning [GO:0150064] -P11831 reviewed SRF_HUMAN Serum response factor (SRF) SRF actin cytoskeleton organization [GO:0030036]; angiogenesis involved in wound healing [GO:0060055]; associative learning [GO:0008306]; axon extension [GO:0048675]; bicellular tight junction assembly [GO:0070830]; branching involved in blood vessel morphogenesis [GO:0001569]; bronchus cartilage development [GO:0060532]; cardiac muscle cell myoblast differentiation [GO:0060379]; cardiac myofibril assembly [GO:0055003]; cardiac vascular smooth muscle cell differentiation [GO:0060947]; cell migration involved in sprouting angiogenesis [GO:0002042]; cell-matrix adhesion [GO:0007160]; cellular response to glucose stimulus [GO:0071333]; cellular senescence [GO:0090398]; dorsal aorta morphogenesis [GO:0035912]; epithelial cell-cell adhesion [GO:0090136]; epithelial structure maintenance [GO:0010669]; erythrocyte development [GO:0048821]; establishment of skin barrier [GO:0061436]; eyelid development in camera-type eye [GO:0061029]; face development [GO:0060324]; filopodium assembly [GO:0046847]; heart development [GO:0007507]; heart looping [GO:0001947]; heart trabecula formation [GO:0060347]; hematopoietic stem cell differentiation [GO:0060218]; hippocampus development [GO:0021766]; long-term memory [GO:0007616]; long-term synaptic depression [GO:0060292]; lung morphogenesis [GO:0060425]; lung smooth muscle development [GO:0061145]; megakaryocyte development [GO:0035855]; mesoderm formation [GO:0001707]; morphogenesis of an epithelial sheet [GO:0002011]; muscle cell cellular homeostasis [GO:0046716]; negative regulation of amyloid-beta clearance [GO:1900222]; negative regulation of cell migration [GO:0030336]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of miRNA transcription [GO:1902894]; neuron development [GO:0048666]; neuron migration [GO:0001764]; platelet activation [GO:0030168]; platelet formation [GO:0030220]; positive regulation of axon extension [GO:0045773]; positive regulation of cell differentiation [GO:0045597]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of filopodium assembly [GO:0051491]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of smooth muscle contraction [GO:0045987]; positive regulation of transcription by glucose [GO:0046016]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription initiation by RNA polymerase II [GO:0060261]; positive thymic T cell selection [GO:0045059]; primitive streak formation [GO:0090009]; regulation of cell adhesion [GO:0030155]; regulation of smooth muscle cell differentiation [GO:0051150]; response to cytokine [GO:0034097]; response to hormone [GO:0009725]; response to hypoxia [GO:0001666]; response to toxic substance [GO:0009636]; sarcomere organization [GO:0045214]; skin morphogenesis [GO:0043589]; stress fiber assembly [GO:0043149]; tangential migration from the subventricular zone to the olfactory bulb [GO:0022028]; thymus development [GO:0048538]; thyroid gland development [GO:0030878]; trachea cartilage development [GO:0060534]; transcription by RNA polymerase II [GO:0006366]; trophectodermal cell differentiation [GO:0001829] -P12830 reviewed CADH1_HUMAN Cadherin-1 (CAM 120/80) (Epithelial cadherin) (E-cadherin) (Uvomorulin) (CD antigen CD324) [Cleaved into: E-Cad/CTF1; E-Cad/CTF2; E-Cad/CTF3] CDH1 CDHE UVO adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell migration [GO:0016477]; cell morphogenesis [GO:0000902]; cell-cell adhesion [GO:0098609]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; cellular response to indole-3-methanol [GO:0071681]; cellular response to lithium ion [GO:0071285]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; negative regulation of axon extension [GO:0030517]; negative regulation of cell migration [GO:0030336]; negative regulation of cell-cell adhesion [GO:0022408]; neuron projection development [GO:0031175]; pituitary gland development [GO:0021983]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of protein import into nucleus [GO:0042307]; protein localization to plasma membrane [GO:0072659]; regulation of gene expression [GO:0010468]; regulation of protein catabolic process at postsynapse, modulating synaptic transmission [GO:0099576]; response to Gram-positive bacterium [GO:0140459]; response to toxic substance [GO:0009636]; response to xenobiotic stimulus [GO:0009410]; synapse assembly [GO:0007416] -P12931 reviewed SRC_HUMAN Proto-oncogene tyrosine-protein kinase Src (EC 2.7.10.2) (Proto-oncogene c-Src) (pp60c-src) (p60-Src) SRC SRC1 adherens junction organization [GO:0034332]; angiotensin-activated signaling pathway [GO:0038166]; bone resorption [GO:0045453]; branching involved in mammary gland duct morphogenesis [GO:0060444]; cell adhesion [GO:0007155]; cell differentiation [GO:0030154]; cell-cell adhesion [GO:0098609]; cellular response to fatty acid [GO:0071398]; cellular response to fluid shear stress [GO:0071498]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to hypoxia [GO:0071456]; cellular response to insulin stimulus [GO:0032869]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to peptide hormone stimulus [GO:0071375]; cellular response to platelet-derived growth factor stimulus [GO:0036120]; cellular response to progesterone stimulus [GO:0071393]; cellular response to prolactin [GO:1990646]; DNA biosynthetic process [GO:0071897]; entry of bacterium into host cell [GO:0035635]; ephrin receptor signaling pathway [GO:0048013]; epidermal growth factor receptor signaling pathway [GO:0007173]; ERBB2 signaling pathway [GO:0038128]; Fc-gamma receptor signaling pathway involved in phagocytosis [GO:0038096]; focal adhesion assembly [GO:0048041]; forebrain development [GO:0030900]; innate immune response [GO:0045087]; integrin-mediated signaling pathway [GO:0007229]; interleukin-6-mediated signaling pathway [GO:0070102]; intestinal epithelial cell development [GO:0060576]; intracellular signal transduction [GO:0035556]; learning or memory [GO:0007611]; leukocyte migration [GO:0050900]; macroautophagy [GO:0016236]; myoblast proliferation [GO:0051450]; negative regulation of anoikis [GO:2000811]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043154]; negative regulation of extrinsic apoptotic signaling pathway [GO:2001237]; negative regulation of focal adhesion assembly [GO:0051895]; negative regulation of gene expression [GO:0010629]; negative regulation of hippo signaling [GO:0035331]; negative regulation of inflammatory response to antigenic stimulus [GO:0002862]; negative regulation of intrinsic apoptotic signaling pathway [GO:2001243]; negative regulation of mitochondrial depolarization [GO:0051902]; negative regulation of protein-containing complex assembly [GO:0031333]; negative regulation of telomerase activity [GO:0051974]; negative regulation of telomere maintenance via telomerase [GO:0032211]; neurotrophin TRK receptor signaling pathway [GO:0048011]; odontogenesis [GO:0042476]; oogenesis [GO:0048477]; osteoclast development [GO:0036035]; peptidyl-tyrosine phosphorylation [GO:0018108]; platelet activation [GO:0030168]; platelet-derived growth factor receptor signaling pathway [GO:0048008]; positive regulation of apoptotic process [GO:0043065]; positive regulation of bone resorption [GO:0045780]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of cytokine production [GO:0001819]; positive regulation of dephosphorylation [GO:0035306]; positive regulation of epithelial cell migration [GO:0010634]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of glucose metabolic process [GO:0010907]; positive regulation of insulin receptor signaling pathway [GO:0046628]; positive regulation of integrin activation [GO:0033625]; positive regulation of lamellipodium morphogenesis [GO:2000394]; positive regulation of male germ cell proliferation [GO:2000256]; positive regulation of non-membrane spanning protein tyrosine kinase activity [GO:1903997]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of ovarian follicle development [GO:2000386]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of platelet-derived growth factor receptor-beta signaling pathway [GO:2000588]; positive regulation of podosome assembly [GO:0071803]; positive regulation of protein localization to nucleus [GO:1900182]; positive regulation of protein processing [GO:0010954]; positive regulation of protein serine/threonine kinase activity [GO:0071902]; positive regulation of protein transport [GO:0051222]; positive regulation of Ras protein signal transduction [GO:0046579]; positive regulation of small GTPase mediated signal transduction [GO:0051057]; positive regulation of smooth muscle cell migration [GO:0014911]; positive regulation of TORC1 signaling [GO:1904263]; positive regulation of vascular associated smooth muscle cell proliferation [GO:1904707]; primary ovarian follicle growth [GO:0001545]; progesterone receptor signaling pathway [GO:0050847]; protein autophosphorylation [GO:0046777]; protein destabilization [GO:0031648]; regulation of bone resorption [GO:0045124]; regulation of caveolin-mediated endocytosis [GO:2001286]; regulation of cell projection assembly [GO:0060491]; regulation of cell-cell adhesion [GO:0022407]; regulation of early endosome to late endosome transport [GO:2000641]; regulation of epithelial cell migration [GO:0010632]; regulation of heart rate by cardiac conduction [GO:0086091]; regulation of intracellular estrogen receptor signaling pathway [GO:0033146]; regulation of toll-like receptor 3 signaling pathway [GO:0034139]; regulation of vascular permeability [GO:0043114]; response to acidic pH [GO:0010447]; response to electrical stimulus [GO:0051602]; response to interleukin-1 [GO:0070555]; response to mechanical stimulus [GO:0009612]; response to mineralocorticoid [GO:0051385]; response to nutrient levels [GO:0031667]; response to xenobiotic stimulus [GO:0009410]; signal complex assembly [GO:0007172]; signal transduction [GO:0007165]; skeletal muscle cell proliferation [GO:0014856]; spermatogenesis [GO:0007283]; stimulatory C-type lectin receptor signaling pathway [GO:0002223]; stress fiber assembly [GO:0043149]; substrate adhesion-dependent cell spreading [GO:0034446]; T cell costimulation [GO:0031295]; transcytosis [GO:0045056]; transforming growth factor beta receptor signaling pathway [GO:0007179]; uterus development [GO:0060065]; vascular endothelial growth factor receptor signaling pathway [GO:0048010] -P13501 reviewed CCL5_HUMAN C-C motif chemokine 5 (EoCP) (Eosinophil chemotactic cytokine) (SIS-delta) (Small-inducible cytokine A5) (T cell-specific protein P228) (TCP228) (T-cell-specific protein RANTES) [Cleaved into: RANTES(3-68); RANTES(4-68)] CCL5 D17S136E SCYA5 activation of phospholipase D activity [GO:0031584]; antimicrobial humoral immune response mediated by antimicrobial peptide [GO:0061844]; calcium ion transport [GO:0006816]; cell chemotaxis [GO:0060326]; cell-cell signaling [GO:0007267]; cellular response to fibroblast growth factor stimulus [GO:0044344]; cellular response to interleukin-1 [GO:0071347]; cellular response to tumor necrosis factor [GO:0071356]; cellular response to type II interferon [GO:0071346]; cellular response to virus [GO:0098586]; chemokine-mediated signaling pathway [GO:0070098]; chemotaxis [GO:0006935]; dendritic cell chemotaxis [GO:0002407]; eosinophil chemotaxis [GO:0048245]; epithelial cell proliferation [GO:0050673]; exocytosis [GO:0006887]; G protein-coupled receptor signaling pathway [GO:0007186]; inflammatory response [GO:0006954]; intracellular calcium ion homeostasis [GO:0006874]; leukocyte cell-cell adhesion [GO:0007159]; macrophage chemotaxis [GO:0048246]; monocyte chemotaxis [GO:0002548]; negative regulation by host of viral transcription [GO:0043922]; negative regulation of G protein-coupled receptor signaling pathway [GO:0045744]; negative regulation of macrophage apoptotic process [GO:2000110]; negative regulation of T cell apoptotic process [GO:0070233]; negative regulation of viral genome replication [GO:0045071]; neutrophil activation [GO:0042119]; positive regulation of activation of Janus kinase activity [GO:0010536]; positive regulation of calcium ion transport [GO:0051928]; positive regulation of cell adhesion [GO:0045785]; positive regulation of cell migration [GO:0030335]; positive regulation of cell-cell adhesion mediated by integrin [GO:0033634]; positive regulation of cellular biosynthetic process [GO:0031328]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of G protein-coupled receptor signaling pathway [GO:0045745]; positive regulation of homotypic cell-cell adhesion [GO:0034112]; positive regulation of innate immune response [GO:0045089]; positive regulation of macrophage chemotaxis [GO:0010759]; positive regulation of monocyte chemotaxis [GO:0090026]; positive regulation of natural killer cell chemotaxis [GO:2000503]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of phosphorylation [GO:0042327]; positive regulation of receptor signaling pathway via JAK-STAT [GO:0046427]; positive regulation of smooth muscle cell migration [GO:0014911]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of T cell apoptotic process [GO:0070234]; positive regulation of T cell chemotaxis [GO:0010820]; positive regulation of T cell migration [GO:2000406]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of translational initiation [GO:0045948]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; positive regulation of viral genome replication [GO:0045070]; regulation of chronic inflammatory response [GO:0002676]; regulation of insulin secretion [GO:0050796]; regulation of T cell activation [GO:0050863]; response to toxic substance [GO:0009636]; response to virus [GO:0009615] -P13598 reviewed ICAM2_HUMAN Intercellular adhesion molecule 2 (ICAM-2) (CD antigen CD102) ICAM2 cell adhesion [GO:0007155]; cell-cell adhesion [GO:0098609] -P13612 reviewed ITA4_HUMAN Integrin alpha-4 (CD49 antigen-like family member D) (Integrin alpha-IV) (VLA-4 subunit alpha) (CD antigen CD49d) ITGA4 CD49D axonogenesis involved in innervation [GO:0060385]; B cell differentiation [GO:0030183]; cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-cell adhesion mediated by integrin [GO:0033631]; cell-matrix adhesion [GO:0007160]; cell-matrix adhesion involved in ameboidal cell migration [GO:0003366]; cellular response to amyloid-beta [GO:1904646]; cellular response to cytokine stimulus [GO:0071345]; clathrin-dependent extracellular exosome endocytosis [GO:1990771]; diapedesis [GO:0050904]; endodermal cell differentiation [GO:0035987]; heterotypic cell-cell adhesion [GO:0034113]; immune response in gut-associated lymphoid tissue [GO:0002387]; integrin-mediated signaling pathway [GO:0007229]; leukocyte cell-cell adhesion [GO:0007159]; leukocyte tethering or rolling [GO:0050901]; negative regulation of protein homodimerization activity [GO:0090074]; negative regulation of vasoconstriction [GO:0045906]; neuron projection extension [GO:1990138]; positive regulation of endothelial cell apoptotic process [GO:2000353]; positive regulation of leukocyte tethering or rolling [GO:1903238]; positive regulation of T cell migration [GO:2000406]; positive regulation of vascular endothelial cell proliferation [GO:1905564]; receptor clustering [GO:0043113]; substrate adhesion-dependent cell spreading [GO:0034446] -P13688 reviewed CEAM1_HUMAN Carcinoembryonic antigen-related cell adhesion molecule 1 (Biliary glycoprotein 1) (BGP-1) (CD antigen CD66a) CEACAM1 BGP BGP1 angiogenesis [GO:0001525]; bile acid and bile salt transport [GO:0015721]; blood vessel development [GO:0001568]; cell adhesion [GO:0007155]; cell migration [GO:0016477]; cell-cell adhesion via plasma-membrane adhesion molecules [GO:0098742]; cellular response to insulin stimulus [GO:0032869]; common myeloid progenitor cell proliferation [GO:0035726]; granulocyte colony-stimulating factor signaling pathway [GO:0038158]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; insulin catabolic process [GO:1901143]; insulin receptor internalization [GO:0038016]; integrin-mediated signaling pathway [GO:0007229]; negative regulation of cytotoxic T cell degranulation [GO:0043318]; negative regulation of fatty acid biosynthetic process [GO:0045717]; negative regulation of granulocyte differentiation [GO:0030853]; negative regulation of hepatocyte proliferation [GO:2000346]; negative regulation of interleukin-1 production [GO:0032692]; negative regulation of lipid biosynthetic process [GO:0051055]; negative regulation of natural killer cell mediated cytotoxicity directed against tumor cell target [GO:0002859]; negative regulation of platelet aggregation [GO:0090331]; negative regulation of protein kinase activity [GO:0006469]; negative regulation of T cell mediated cytotoxicity [GO:0001915]; negative regulation of T cell receptor signaling pathway [GO:0050860]; negative regulation of vascular permeability [GO:0043116]; positive regulation of vasculogenesis [GO:2001214]; regulation of blood vessel remodeling [GO:0060312]; regulation of cell growth [GO:0001558]; regulation of cell migration [GO:0030334]; regulation of endothelial cell differentiation [GO:0045601]; regulation of endothelial cell migration [GO:0010594]; regulation of epidermal growth factor receptor signaling pathway [GO:0042058]; regulation of ERK1 and ERK2 cascade [GO:0070372]; regulation of homophilic cell adhesion [GO:1903385]; regulation of immune system process [GO:0002682]; regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051896]; regulation of sprouting angiogenesis [GO:1903670]; signal transduction [GO:0007165]; wound healing, spreading of cells [GO:0044319] -P14151 reviewed LYAM1_HUMAN L-selectin (CD62 antigen-like family member L) (Leukocyte adhesion molecule 1) (LAM-1) (Leukocyte surface antigen Leu-8) (Leukocyte-endothelial cell adhesion molecule 1) (LECAM1) (Lymph node homing receptor) (TQ1) (gp90-MEL) (CD antigen CD62L) SELL LNHR LYAM1 calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell adhesion [GO:0007155]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; leukocyte cell-cell adhesion [GO:0007159]; leukocyte tethering or rolling [GO:0050901]; response to cytokine [GO:0034097] -P14209 reviewed CD99_HUMAN CD99 antigen (12E7) (E2 antigen) (Protein MIC2) (T-cell surface glycoprotein E2) (CD antigen CD99) CD99 MIC2 MIC2X MIC2Y homotypic cell-cell adhesion [GO:0034109]; positive regulation of neutrophil extravasation [GO:2000391]; T cell extravasation [GO:0072683] -P14415 reviewed AT1B2_HUMAN Sodium/potassium-transporting ATPase subunit beta-2 (Adhesion molecule in glia) (AMOG) (Sodium/potassium-dependent ATPase subunit beta-2) ATP1B2 cell communication by electrical coupling involved in cardiac conduction [GO:0086064]; cell-substrate adhesion [GO:0031589]; intracellular potassium ion homeostasis [GO:0030007]; intracellular sodium ion homeostasis [GO:0006883]; lateral ventricle development [GO:0021670]; membrane repolarization [GO:0086009]; motor behavior [GO:0061744]; negative regulation of glial cell migration [GO:1903976]; neuronal-glial interaction involved in hindbrain glial-mediated radial cell migration [GO:0021944]; photoreceptor cell maintenance [GO:0045494]; plasma membrane bounded cell projection organization [GO:0120036]; positive regulation of ATP-dependent activity [GO:0032781]; positive regulation of neuron projection development [GO:0010976]; positive regulation of potassium ion import across plasma membrane [GO:1903288]; positive regulation of potassium ion transmembrane transporter activity [GO:1901018]; positive regulation of sodium ion export across plasma membrane [GO:1903278]; potassium ion import across plasma membrane [GO:1990573]; protein stabilization [GO:0050821]; retina homeostasis [GO:0001895]; sodium ion export across plasma membrane [GO:0036376]; third ventricle development [GO:0021678]; transport across blood-brain barrier [GO:0150104] -P14923 reviewed PLAK_HUMAN Junction plakoglobin (Catenin gamma) (Desmoplakin III) (Desmoplakin-3) JUP CTNNG DP3 bundle of His cell-Purkinje myocyte adhesion involved in cell communication [GO:0086073]; canonical Wnt signaling pathway [GO:0060070]; cell migration [GO:0016477]; cell-cell adhesion [GO:0098609]; cellular response to indole-3-methanol [GO:0071681]; desmosome assembly [GO:0002159]; detection of mechanical stimulus [GO:0050982]; endothelial cell-cell adhesion [GO:0071603]; negative regulation of blood vessel endothelial cell migration [GO:0043537]; positive regulation of angiogenesis [GO:0045766]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of cell-matrix adhesion [GO:0001954]; positive regulation of DNA-binding transcription factor activity [GO:0051091]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein localization to plasma membrane [GO:0072659]; regulation of cell population proliferation [GO:0042127]; regulation of heart rate by cardiac conduction [GO:0086091]; regulation of ventricular cardiac muscle cell action potential [GO:0098911]; skin development [GO:0043588] -P15151 reviewed PVR_HUMAN Poliovirus receptor (Nectin-like protein 5) (NECL-5) (CD antigen CD155) PVR PVS heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; positive regulation of natural killer cell mediated cytotoxicity [GO:0045954]; positive regulation of natural killer cell mediated cytotoxicity directed against tumor cell target [GO:0002860]; susceptibility to natural killer cell mediated cytotoxicity [GO:0042271]; susceptibility to T cell mediated cytotoxicity [GO:0060370] -P15153 reviewed RAC2_HUMAN Ras-related C3 botulinum toxin substrate 2 (GX) (Small G protein) (p21-Rac2) RAC2 actin filament organization [GO:0007015]; bone resorption [GO:0045453]; cell projection assembly [GO:0030031]; chemotaxis [GO:0006935]; erythrocyte enucleation [GO:0043131]; G protein-coupled receptor signaling pathway [GO:0007186]; lymphocyte aggregation [GO:0071593]; mast cell proliferation [GO:0070662]; positive regulation of lamellipodium assembly [GO:0010592]; positive regulation of mast cell proliferation [GO:0070668]; positive regulation of neutrophil chemotaxis [GO:0090023]; positive regulation of protein targeting to mitochondrion [GO:1903955]; regulation of cell-substrate adhesion [GO:0010810]; regulation of hydrogen peroxide metabolic process [GO:0010310]; regulation of mast cell chemotaxis [GO:0060753]; regulation of mast cell degranulation [GO:0043304]; regulation of neutrophil migration [GO:1902622]; regulation of respiratory burst [GO:0060263]; regulation of T cell proliferation [GO:0042129]; respiratory burst [GO:0045730]; signal transduction [GO:0007165]; small GTPase-mediated signal transduction [GO:0007264] -P15311 reviewed EZRI_HUMAN Ezrin (Cytovillin) (Villin-2) (p81) EZR VIL2 actin cytoskeleton organization [GO:0030036]; actin filament bundle assembly [GO:0051017]; astral microtubule organization [GO:0030953]; cellular response to cAMP [GO:0071320]; cortical microtubule organization [GO:0043622]; establishment of centrosome localization [GO:0051660]; establishment of endothelial barrier [GO:0061028]; establishment or maintenance of apical/basal cell polarity [GO:0035088]; filopodium assembly [GO:0046847]; intestinal D-glucose absorption [GO:0001951]; leukocyte cell-cell adhesion [GO:0007159]; membrane to membrane docking [GO:0022614]; microvillus assembly [GO:0030033]; negative regulation of ERK1 and ERK2 cascade [GO:0070373]; negative regulation of interleukin-2 production [GO:0032703]; negative regulation of p38MAPK cascade [GO:1903753]; negative regulation of T cell receptor signaling pathway [GO:0050860]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of early endosome to late endosome transport [GO:2000643]; positive regulation of gene expression [GO:0010628]; positive regulation of multicellular organism growth [GO:0040018]; positive regulation of protein catabolic process [GO:0045732]; positive regulation of protein localization to early endosome [GO:1902966]; positive regulation of protein localization to plasma membrane [GO:1903078]; postsynaptic actin cytoskeleton organization [GO:0098974]; protein kinase A signaling [GO:0010737]; protein localization to cell cortex [GO:0072697]; protein localization to plasma membrane [GO:0072659]; protein-containing complex localization [GO:0031503]; receptor internalization [GO:0031623]; regulation of cell shape [GO:0008360]; regulation of microvillus length [GO:0032532]; regulation of organelle assembly [GO:1902115]; sphingosine-1-phosphate receptor signaling pathway [GO:0003376]; terminal web assembly [GO:1902896] -P15692 reviewed VEGFA_HUMAN Vascular endothelial growth factor A, long form (L-VEGF) (Vascular permeability factor) (VPF) [Cleaved into: N-VEGF; VEGFA] VEGFA VEGF angiogenesis [GO:0001525]; apoptotic process [GO:0006915]; artery morphogenesis [GO:0048844]; basophil chemotaxis [GO:0002575]; bone trabecula formation [GO:0060346]; branching involved in blood vessel morphogenesis [GO:0001569]; camera-type eye morphogenesis [GO:0048593]; cardiac muscle cell development [GO:0055013]; cardiac vascular smooth muscle cell development [GO:0060948]; cell maturation [GO:0048469]; cell migration involved in sprouting angiogenesis [GO:0002042]; cell-cell adhesion [GO:0098609]; cellular response to hypoxia [GO:0071456]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; cellular stress response to acid chemical [GO:0097533]; commissural neuron axon guidance [GO:0071679]; coronary artery morphogenesis [GO:0060982]; coronary vein morphogenesis [GO:0003169]; dopaminergic neuron differentiation [GO:0071542]; endothelial cell chemotaxis [GO:0035767]; endothelial cell proliferation [GO:0001935]; epithelial cell differentiation [GO:0030855]; epithelial cell maturation [GO:0002070]; eye photoreceptor cell development [GO:0042462]; heart morphogenesis [GO:0003007]; homeostasis of number of cells within a tissue [GO:0048873]; in utero embryonic development [GO:0001701]; induction of positive chemotaxis [GO:0050930]; kidney development [GO:0001822]; lactation [GO:0007595]; lung development [GO:0030324]; lung vasculature development [GO:0060426]; lymph vessel morphogenesis [GO:0036303]; lymphangiogenesis [GO:0001946]; macrophage differentiation [GO:0030225]; mammary gland alveolus development [GO:0060749]; mesoderm development [GO:0007498]; monocyte differentiation [GO:0030224]; motor neuron migration [GO:0097475]; negative regulation of adherens junction organization [GO:1903392]; negative regulation of apoptotic process [GO:0043066]; negative regulation of blood-brain barrier permeability [GO:1905604]; negative regulation of cell-cell adhesion mediated by cadherin [GO:2000048]; negative regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043154]; negative regulation of epithelial to mesenchymal transition [GO:0010719]; negative regulation of establishment of endothelial barrier [GO:1903141]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of gene expression [GO:0010629]; negative regulation of miRNA transcription [GO:1902894]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nervous system development [GO:0007399]; neuroblast proliferation [GO:0007405]; outflow tract morphogenesis [GO:0003151]; ovarian follicle development [GO:0001541]; positive chemotaxis [GO:0050918]; positive regulation of angiogenesis [GO:0045766]; positive regulation of axon extension involved in axon guidance [GO:0048842]; positive regulation of blood vessel endothelial cell migration [GO:0043536]; positive regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis [GO:1903589]; positive regulation of branching involved in ureteric bud morphogenesis [GO:0090190]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cell adhesion [GO:0045785]; positive regulation of cell division [GO:0051781]; positive regulation of cell migration [GO:0030335]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cell proliferation by VEGF-activated platelet derived growth factor receptor signaling pathway [GO:0038091]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of DNA biosynthetic process [GO:2000573]; positive regulation of endothelial cell chemotaxis [GO:2001028]; positive regulation of endothelial cell chemotaxis by VEGF-activated vascular endothelial growth factor receptor signaling pathway [GO:0038033]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of epithelial tube formation [GO:1905278]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of focal adhesion assembly [GO:0051894]; positive regulation of gene expression [GO:0010628]; positive regulation of leukocyte migration [GO:0002687]; positive regulation of lymphangiogenesis [GO:1901492]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of mast cell chemotaxis [GO:0060754]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of p38MAPK cascade [GO:1900745]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of positive chemotaxis [GO:0050927]; positive regulation of protein autophosphorylation [GO:0031954]; positive regulation of protein kinase C signaling [GO:0090037]; positive regulation of protein localization to early endosome [GO:1902966]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of protein-containing complex assembly [GO:0031334]; positive regulation of receptor internalization [GO:0002092]; positive regulation of sprouting angiogenesis [GO:1903672]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of trophoblast cell migration [GO:1901165]; positive regulation of vascular endothelial growth factor signaling pathway [GO:1900748]; positive regulation of vascular permeability [GO:0043117]; post-embryonic camera-type eye development [GO:0031077]; primitive erythrocyte differentiation [GO:0060319]; regulation of cell shape [GO:0008360]; regulation of hematopoietic progenitor cell differentiation [GO:1901532]; regulation of nitric oxide mediated signal transduction [GO:0010749]; regulation of transcription by RNA polymerase II [GO:0006357]; response to hypoxia [GO:0001666]; retinal ganglion cell axon guidance [GO:0031290]; sprouting angiogenesis [GO:0002040]; surfactant homeostasis [GO:0043129]; tube formation [GO:0035148]; vascular endothelial growth factor receptor signaling pathway [GO:0048010]; vascular endothelial growth factor receptor-2 signaling pathway [GO:0036324]; vascular endothelial growth factor signaling pathway [GO:0038084]; vascular wound healing [GO:0061042]; vasculogenesis [GO:0001570]; vasodilation [GO:0042311]; VEGF-activated neuropilin signaling pathway [GO:0038190] -P15813 reviewed CD1D_HUMAN Antigen-presenting glycoprotein CD1d (R3G1) (CD antigen CD1d) CD1D antigen processing and presentation, endogenous lipid antigen via MHC class Ib [GO:0048006]; antigen processing and presentation, exogenous lipid antigen via MHC class Ib [GO:0048007]; detection of bacterium [GO:0016045]; heterotypic cell-cell adhesion [GO:0034113]; immune response [GO:0006955]; innate immune response [GO:0045087]; positive regulation of innate immune response [GO:0045089]; positive regulation of T cell mediated cytotoxicity [GO:0001916]; positive regulation of T cell proliferation [GO:0042102]; T cell selection [GO:0045058] -P15924 reviewed DESP_HUMAN Desmoplakin (DP) (250/210 kDa paraneoplastic pemphigus antigen) DSP adherens junction organization [GO:0034332]; bundle of His cell-Purkinje myocyte adhesion involved in cell communication [GO:0086073]; cell-cell adhesion [GO:0098609]; desmosome organization [GO:0002934]; epidermis development [GO:0008544]; epithelial cell-cell adhesion [GO:0090136]; intermediate filament cytoskeleton organization [GO:0045104]; intermediate filament organization [GO:0045109]; keratinocyte differentiation [GO:0030216]; peptide cross-linking [GO:0018149]; protein localization to cell-cell junction [GO:0150105]; regulation of heart rate by cardiac conduction [GO:0086091]; regulation of ventricular cardiac muscle cell action potential [GO:0098911]; skin development [GO:0043588]; ventricular compact myocardium morphogenesis [GO:0003223]; wound healing [GO:0042060] -P15976 reviewed GATA1_HUMAN Erythroid transcription factor (Eryf1) (GATA-binding factor 1) (GATA-1) (GF-1) (NF-E1 DNA-binding protein) GATA1 ERYF1 GF1 animal organ regeneration [GO:0031100]; basophil differentiation [GO:0030221]; bone mineralization [GO:0030282]; cell fate commitment [GO:0045165]; cell-cell signaling [GO:0007267]; cellular response to cAMP [GO:0071320]; cellular response to follicle-stimulating hormone stimulus [GO:0071372]; cellular response to lipopolysaccharide [GO:0071222]; dendritic cell differentiation [GO:0097028]; eosinophil differentiation [GO:0030222]; eosinophil fate commitment [GO:0035854]; erythrocyte development [GO:0048821]; erythrocyte differentiation [GO:0030218]; homeostasis of number of cells within a tissue [GO:0048873]; in utero embryonic development [GO:0001701]; male gonad development [GO:0008584]; megakaryocyte differentiation [GO:0030219]; myeloid cell apoptotic process [GO:0033028]; negative regulation of apoptotic process [GO:0043066]; negative regulation of bone mineralization [GO:0030502]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001240]; negative regulation of myeloid cell apoptotic process [GO:0033033]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of transcription regulatory region DNA binding [GO:2000678]; osteoblast proliferation [GO:0033687]; platelet aggregation [GO:0070527]; platelet formation [GO:0030220]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of erythrocyte differentiation [GO:0045648]; positive regulation of mast cell degranulation [GO:0043306]; positive regulation of osteoblast proliferation [GO:0033690]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of transcription by RNA polymerase II [GO:0045944]; primitive erythrocyte differentiation [GO:0060319]; regulation of definitive erythrocyte differentiation [GO:0010724]; regulation of glycoprotein biosynthetic process [GO:0010559]; regulation of primitive erythrocyte differentiation [GO:0010725]; Sertoli cell development [GO:0060009]; transcription by RNA polymerase II [GO:0006366] -P16070 reviewed CD44_HUMAN CD44 antigen (CDw44) (Epican) (Extracellular matrix receptor III) (ECMR-III) (GP90 lymphocyte homing/adhesion receptor) (HUTCH-I) (Heparan sulfate proteoglycan) (Hermes antigen) (Hyaluronate receptor) (Phagocytic glycoprotein 1) (PGP-1) (Phagocytic glycoprotein I) (PGP-I) (CD antigen CD44) CD44 LHR MDU2 MDU3 MIC4 cartilage development [GO:0051216]; cell adhesion [GO:0007155]; cell migration [GO:0016477]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; cellular response to fibroblast growth factor stimulus [GO:0044344]; cytokine-mediated signaling pathway [GO:0019221]; hyaluronan catabolic process [GO:0030214]; inflammatory response [GO:0006954]; monocyte aggregation [GO:0070487]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043154]; negative regulation of DNA damage response, signal transduction by p53 class mediator [GO:0043518]; negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator [GO:1902166]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of heterotypic cell-cell adhesion [GO:0034116]; positive regulation of monocyte aggregation [GO:1900625]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; regulation of lamellipodium morphogenesis [GO:2000392]; T cell activation [GO:0042110]; wound healing, spreading of cells [GO:0044319] -P16109 reviewed LYAM3_HUMAN P-selectin (CD62 antigen-like family member P) (Granule membrane protein 140) (GMP-140) (Leukocyte-endothelial cell adhesion molecule 3) (LECAM3) (Platelet activation dependent granule-external membrane protein) (PADGEM) (CD antigen CD62P) SELP GMRP GRMP calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell adhesion [GO:0007155]; cell-cell adhesion [GO:0098609]; defense response to Gram-negative bacterium [GO:0050829]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; inflammatory response [GO:0006954]; leukocyte cell-cell adhesion [GO:0007159]; leukocyte tethering or rolling [GO:0050901]; positive regulation of leukocyte migration [GO:0002687]; positive regulation of leukocyte tethering or rolling [GO:1903238]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of platelet activation [GO:0010572]; regulation of integrin activation [GO:0033623]; response to cytokine [GO:0034097]; response to lipopolysaccharide [GO:0032496] -P16144 reviewed ITB4_HUMAN Integrin beta-4 (GP150) (CD antigen CD104) ITGB4 autophagy [GO:0006914]; cell adhesion [GO:0007155]; cell motility [GO:0048870]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; filopodium assembly [GO:0046847]; hemidesmosome assembly [GO:0031581]; integrin-mediated signaling pathway [GO:0007229]; mesodermal cell differentiation [GO:0048333]; nail development [GO:0035878]; peripheral nervous system myelin formation [GO:0032290]; response to wounding [GO:0009611]; skin morphogenesis [GO:0043589]; trophoblast cell migration [GO:0061450] -P16150 reviewed LEUK_HUMAN Leukosialin (GPL115) (Galactoglycoprotein) (GALGP) (Leukocyte sialoglycoprotein) (Sialophorin) (CD antigen CD43) [Cleaved into: CD43 cytoplasmic tail (CD43-ct) (CD43ct)] SPN CD43 apoptotic signaling pathway [GO:0097190]; cell surface receptor signaling pathway [GO:0007166]; cellular defense response [GO:0006968]; chemotaxis [GO:0006935]; defense response to bacterium [GO:0042742]; establishment or maintenance of cell polarity [GO:0007163]; immune response [GO:0006955]; leukocyte tethering or rolling [GO:0050901]; negative regulation of cell adhesion [GO:0007162]; negative regulation of T cell proliferation [GO:0042130]; negative regulation of type IV hypersensitivity [GO:0001808]; negative thymic T cell selection [GO:0045060]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of T cell migration [GO:2000406]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of tumor necrosis factor production [GO:0032760]; regulation of defense response to virus [GO:0050688]; regulation of immune response [GO:0050776]; regulation of T cell migration [GO:2000404]; response to protozoan [GO:0001562]; signal transduction [GO:0007165]; T cell costimulation [GO:0031295]; T cell proliferation [GO:0042098]; T-helper 1 cell lineage commitment [GO:0002296] -P16234 reviewed PGFRA_HUMAN Platelet-derived growth factor receptor alpha (PDGF-R-alpha) (PDGFR-alpha) (EC 2.7.10.1) (Alpha platelet-derived growth factor receptor) (Alpha-type platelet-derived growth factor receptor) (CD140 antigen-like family member A) (CD140a antigen) (Platelet-derived growth factor alpha receptor) (Platelet-derived growth factor receptor 2) (PDGFR-2) (CD antigen CD140a) PDGFRA PDGFR2 RHEPDGFRA adrenal gland development [GO:0030325]; cardiac myofibril assembly [GO:0055003]; cell activation [GO:0001775]; cell chemotaxis [GO:0060326]; cellular response to amino acid stimulus [GO:0071230]; cellular response to reactive oxygen species [GO:0034614]; embryonic cranial skeleton morphogenesis [GO:0048701]; embryonic digestive tract morphogenesis [GO:0048557]; embryonic skeletal system morphogenesis [GO:0048704]; estrogen metabolic process [GO:0008210]; extracellular matrix organization [GO:0030198]; face morphogenesis [GO:0060325]; hematopoietic progenitor cell differentiation [GO:0002244]; in utero embryonic development [GO:0001701]; Leydig cell differentiation [GO:0033327]; lung development [GO:0030324]; luteinization [GO:0001553]; male genitalia development [GO:0030539]; metanephric glomerular capillary formation [GO:0072277]; negative regulation of platelet activation [GO:0010544]; odontogenesis of dentin-containing tooth [GO:0042475]; peptidyl-tyrosine phosphorylation [GO:0018108]; platelet aggregation [GO:0070527]; platelet-derived growth factor receptor signaling pathway [GO:0048008]; platelet-derived growth factor receptor-alpha signaling pathway [GO:0035790]; positive regulation of calcium-mediated signaling [GO:0050850]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cell proliferation by VEGF-activated platelet derived growth factor receptor signaling pathway [GO:0038091]; positive regulation of chemotaxis [GO:0050921]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of fibroblast proliferation [GO:0048146]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of phospholipase C activity [GO:0010863]; protein autophosphorylation [GO:0046777]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of mesenchymal stem cell differentiation [GO:2000739]; retina vasculature development in camera-type eye [GO:0061298]; roof of mouth development [GO:0060021]; signal transduction involved in regulation of gene expression [GO:0023019]; white fat cell differentiation [GO:0050872]; wound healing [GO:0042060] -P16284 reviewed PECA1_HUMAN Platelet endothelial cell adhesion molecule (PECAM-1) (EndoCAM) (GPIIA') (PECA1) (CD antigen CD31) PECAM1 bicellular tight junction assembly [GO:0070830]; cell recognition [GO:0008037]; cell surface receptor signaling pathway [GO:0007166]; cell-cell adhesion [GO:0098609]; cell-cell adhesion via plasma-membrane adhesion molecules [GO:0098742]; diapedesis [GO:0050904]; establishment of endothelial barrier [GO:0061028]; glomerular endothelium development [GO:0072011]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; immune response [GO:0006955]; leukocyte cell-cell adhesion [GO:0007159]; maintenance of blood-brain barrier [GO:0035633]; monocyte extravasation [GO:0035696]; neutrophil extravasation [GO:0072672]; phagocytosis [GO:0006909]; positive regulation of cell migration [GO:0030335]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of protein localization to cell-cell junction [GO:0150107]; positive regulation of protein phosphorylation [GO:0001934]; signal transduction [GO:0007165] -P16422 reviewed EPCAM_HUMAN Epithelial cell adhesion molecule (Ep-CAM) (Adenocarcinoma-associated antigen) (Cell surface glycoprotein Trop-1) (Epithelial cell surface antigen) (Epithelial glycoprotein) (EGP) (Epithelial glycoprotein 314) (EGP314) (hEGP314) (KS 1/4 antigen) (KSA) (Major gastrointestinal tumor-associated protein GA733-2) (Tumor-associated calcium signal transducer 1) (CD antigen CD326) EPCAM GA733-2 M1S2 M4S1 MIC18 TACSTD1 TROP1 negative regulation of cell-cell adhesion mediated by cadherin [GO:2000048]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; signal transduction involved in regulation of gene expression [GO:0023019]; stem cell differentiation [GO:0048863]; ureteric bud development [GO:0001657] -P16581 reviewed LYAM2_HUMAN E-selectin (CD62 antigen-like family member E) (Endothelial leukocyte adhesion molecule 1) (ELAM-1) (Leukocyte-endothelial cell adhesion molecule 2) (LECAM2) (CD antigen CD62E) SELE ELAM1 actin filament-based process [GO:0030029]; activation of phospholipase C activity [GO:0007202]; calcium-mediated signaling [GO:0019722]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; inflammatory response [GO:0006954]; leukocyte cell-cell adhesion [GO:0007159]; leukocyte migration involved in inflammatory response [GO:0002523]; leukocyte tethering or rolling [GO:0050901]; positive regulation of leukocyte migration [GO:0002687]; positive regulation of leukocyte tethering or rolling [GO:1903238]; positive regulation of receptor internalization [GO:0002092]; regulation of inflammatory response [GO:0050727]; response to cytokine [GO:0034097]; response to interleukin-1 [GO:0070555]; response to lipopolysaccharide [GO:0032496]; response to tumor necrosis factor [GO:0034612] -P16591 reviewed FER_HUMAN Tyrosine-protein kinase Fer (EC 2.7.10.2) (Feline encephalitis virus-related kinase FER) (Fujinami poultry sarcoma/Feline sarcoma-related protein Fer) (Proto-oncogene c-Fer) (Tyrosine kinase 3) (p94-Fer) FER TYK3 actin cytoskeleton organization [GO:0030036]; adherens junction assembly [GO:0034333]; adherens junction disassembly [GO:0120179]; cell adhesion [GO:0007155]; cell-cell adhesion mediated by cadherin [GO:0044331]; cellular response to macrophage colony-stimulating factor stimulus [GO:0036006]; cellular response to reactive oxygen species [GO:0034614]; chemotaxis [GO:0006935]; cytokine-mediated signaling pathway [GO:0019221]; diapedesis [GO:0050904]; extracellular matrix-cell signaling [GO:0035426]; Fc-epsilon receptor signaling pathway [GO:0038095]; germ cell development [GO:0007281]; insulin receptor signaling pathway [GO:0008286]; interleukin-6-mediated signaling pathway [GO:0070102]; intracellular signal transduction [GO:0035556]; Kit signaling pathway [GO:0038109]; microtubule cytoskeleton organization [GO:0000226]; negative regulation of mast cell activation involved in immune response [GO:0033007]; peptidyl-tyrosine phosphorylation [GO:0018108]; platelet-derived growth factor receptor signaling pathway [GO:0048008]; positive regulation of actin filament polymerization [GO:0030838]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; protein autophosphorylation [GO:0046777]; protein phosphorylation [GO:0006468]; regulation of epidermal growth factor receptor signaling pathway [GO:0042058]; regulation of fibroblast migration [GO:0010762]; regulation of lamellipodium assembly [GO:0010591]; regulation of protein phosphorylation [GO:0001932]; response to lipopolysaccharide [GO:0032496]; response to platelet-derived growth factor [GO:0036119]; seminiferous tubule development [GO:0072520]; Sertoli cell development [GO:0060009]; substrate adhesion-dependent cell spreading [GO:0034446]; tyrosine phosphorylation of STAT protein [GO:0007260] -P17301 reviewed ITA2_HUMAN Integrin alpha-2 (CD49 antigen-like family member B) (Collagen receptor) (Platelet membrane glycoprotein Ia) (GPIa) (VLA-2 subunit alpha) (CD antigen CD49b) ITGA2 CD49B animal organ morphogenesis [GO:0009887]; blood coagulation [GO:0007596]; cell adhesion [GO:0007155]; cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; cell-substrate adhesion [GO:0031589]; cellular response to estradiol stimulus [GO:0071392]; cellular response to mechanical stimulus [GO:0071260]; collagen-activated signaling pathway [GO:0038065]; detection of mechanical stimulus involved in sensory perception of pain [GO:0050966]; extracellular matrix organization [GO:0030198]; female pregnancy [GO:0007565]; focal adhesion assembly [GO:0048041]; hepatocyte differentiation [GO:0070365]; hypotonic response [GO:0006971]; integrin-mediated signaling pathway [GO:0007229]; mammary gland development [GO:0030879]; mesodermal cell differentiation [GO:0048333]; positive regulation of cell adhesion [GO:0045785]; positive regulation of cell projection organization [GO:0031346]; positive regulation of collagen biosynthetic process [GO:0032967]; positive regulation of epithelial cell migration [GO:0010634]; positive regulation of leukocyte migration [GO:0002687]; positive regulation of phagocytosis, engulfment [GO:0060100]; positive regulation of positive chemotaxis [GO:0050927]; positive regulation of smooth muscle cell migration [GO:0014911]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of smooth muscle contraction [GO:0045987]; positive regulation of translation [GO:0045727]; positive regulation of transmission of nerve impulse [GO:0051971]; response to amine [GO:0014075]; response to hypoxia [GO:0001666]; response to L-ascorbic acid [GO:0033591]; response to muscle activity [GO:0014850]; response to parathyroid hormone [GO:0071107]; response to xenobiotic stimulus [GO:0009410]; skin morphogenesis [GO:0043589]; substrate-dependent cell migration [GO:0006929] -P18075 reviewed BMP7_HUMAN Bone morphogenetic protein 7 (BMP-7) (Osteogenic protein 1) (OP-1) (Eptotermin alfa) BMP7 OP1 allantois development [GO:1905069]; ameloblast differentiation [GO:0036305]; axon guidance [GO:0007411]; BMP signaling pathway [GO:0030509]; branching involved in salivary gland morphogenesis [GO:0060445]; branching morphogenesis of an epithelial tube [GO:0048754]; cardiac muscle tissue development [GO:0048738]; cardiac septum morphogenesis [GO:0060411]; cartilage development [GO:0051216]; cellular response to BMP stimulus [GO:0071773]; cellular response to hypoxia [GO:0071456]; chorio-allantoic fusion [GO:0060710]; dendrite development [GO:0016358]; embryonic camera-type eye morphogenesis [GO:0048596]; embryonic limb morphogenesis [GO:0030326]; embryonic pattern specification [GO:0009880]; embryonic skeletal joint morphogenesis [GO:0060272]; endocardial cushion formation [GO:0003272]; epithelial to mesenchymal transition [GO:0001837]; heart trabecula morphogenesis [GO:0061384]; hindbrain development [GO:0030902]; mesenchymal cell apoptotic process involved in nephron morphogenesis [GO:1901145]; mesenchymal cell differentiation [GO:0048762]; mesenchyme development [GO:0060485]; mesoderm formation [GO:0001707]; mesonephros development [GO:0001823]; metanephric mesenchymal cell proliferation involved in metanephros development [GO:0072136]; metanephric mesenchyme morphogenesis [GO:0072133]; metanephros development [GO:0001656]; monocyte aggregation [GO:0070487]; negative regulation of cell cycle [GO:0045786]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of glomerular mesangial cell proliferation [GO:0072125]; negative regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis [GO:0072040]; negative regulation of mitotic nuclear division [GO:0045839]; negative regulation of neurogenesis [GO:0050768]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of NF-kappaB transcription factor activity [GO:0032088]; negative regulation of non-canonical NF-kappaB signal transduction [GO:1901223]; negative regulation of Notch signaling pathway [GO:0045746]; negative regulation of prostatic bud formation [GO:0060686]; negative regulation of striated muscle cell apoptotic process [GO:0010664]; nephrogenic mesenchyme morphogenesis [GO:0072134]; neural fold elevation formation [GO:0021502]; neuron projection morphogenesis [GO:0048812]; odontogenesis of dentin-containing tooth [GO:0042475]; ossification [GO:0001503]; pericardium morphogenesis [GO:0003344]; pharyngeal system development [GO:0060037]; positive regulation of apoptotic process [GO:0043065]; positive regulation of bone mineralization [GO:0030501]; positive regulation of brown fat cell differentiation [GO:0090336]; positive regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis [GO:1905312]; positive regulation of dendrite development [GO:1900006]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial cell differentiation [GO:0030858]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of gene expression [GO:0010628]; positive regulation of heterotypic cell-cell adhesion [GO:0034116]; positive regulation of hyaluranon cable assembly [GO:1900106]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of branching involved in prostate gland morphogenesis [GO:0060687]; regulation of phosphorylation [GO:0042325]; regulation of removal of superoxide radicals [GO:2000121]; response to estradiol [GO:0032355]; response to peptide hormone [GO:0043434]; response to vitamin D [GO:0033280]; skeletal system development [GO:0001501]; ureteric bud development [GO:0001657] -P18084 reviewed ITB5_HUMAN Integrin beta-5 ITGB5 cell migration [GO:0016477]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; endodermal cell differentiation [GO:0035987]; epithelial cell-cell adhesion [GO:0090136]; integrin-mediated signaling pathway [GO:0007229]; stress fiber assembly [GO:0043149]; transforming growth factor beta receptor signaling pathway [GO:0007179]; wound healing, spreading of epidermal cells [GO:0035313] -P18206 reviewed VINC_HUMAN Vinculin (Metavinculin) (MV) VCL adherens junction assembly [GO:0034333]; apical junction assembly [GO:0043297]; axon extension [GO:0048675]; cell adhesion [GO:0007155]; cell-matrix adhesion [GO:0007160]; epithelial cell-cell adhesion [GO:0090136]; lamellipodium assembly [GO:0030032]; maintenance of blood-brain barrier [GO:0035633]; morphogenesis of an epithelium [GO:0002009]; negative regulation of cell migration [GO:0030336]; platelet aggregation [GO:0070527]; protein localization to cell surface [GO:0034394]; regulation of establishment of endothelial barrier [GO:1903140]; regulation of focal adhesion assembly [GO:0051893]; regulation of protein localization to adherens junction [GO:1904702] -P18564 reviewed ITB6_HUMAN Integrin beta-6 ITGB6 bone development [GO:0060348]; bronchiole development [GO:0060435]; cell adhesion [GO:0007155]; cell adhesion mediated by integrin [GO:0033627]; cell morphogenesis [GO:0000902]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; cellular response to ionizing radiation [GO:0071479]; enamel mineralization [GO:0070166]; hard palate development [GO:0060022]; immune response [GO:0006955]; inflammatory response [GO:0006954]; integrin-mediated signaling pathway [GO:0007229]; Langerhans cell differentiation [GO:0061520]; lung alveolus development [GO:0048286]; phospholipid homeostasis [GO:0055091]; response to virus [GO:0009615]; skin development [GO:0043588]; surfactant homeostasis [GO:0043129]; transforming growth factor beta production [GO:0071604]; transforming growth factor beta receptor signaling pathway [GO:0007179]; wound healing [GO:0042060] -P19022 reviewed CADH2_HUMAN Cadherin-2 (CDw325) (Neural cadherin) (N-cadherin) (CD antigen CD325) CDH2 CDHN NCAD adherens junction organization [GO:0034332]; blood vessel morphogenesis [GO:0048514]; brain morphogenesis [GO:0048854]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell adhesion [GO:0007155]; cell migration [GO:0016477]; cell morphogenesis [GO:0000902]; cell-cell adhesion [GO:0098609]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; cerebral cortex development [GO:0021987]; detection of muscle stretch [GO:0035995]; glial cell differentiation [GO:0010001]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; homeostasis of number of cells [GO:0048872]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; mesenchymal cell migration [GO:0090497]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; neural crest cell development [GO:0014032]; neuroepithelial cell differentiation [GO:0060563]; neuroligin clustering involved in postsynaptic membrane assembly [GO:0097118]; neuronal stem cell population maintenance [GO:0097150]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of synaptic vesicle clustering [GO:2000809]; protein localization to plasma membrane [GO:0072659]; radial glial cell differentiation [GO:0060019]; regulation of oligodendrocyte progenitor proliferation [GO:0070445]; regulation of postsynaptic density protein 95 clustering [GO:1902897]; striated muscle cell differentiation [GO:0051146]; synapse assembly [GO:0007416]; synaptic vesicle clustering [GO:0097091]; type B pancreatic cell development [GO:0003323] -P19105 reviewed ML12A_HUMAN Myosin regulatory light chain 12A (Epididymis secretory protein Li 24) (HEL-S-24) (MLC-2B) (Myosin RLC) (Myosin regulatory light chain 2, nonsarcomeric) (Myosin regulatory light chain MRLC3) MYL12A MLCB MRLC3 RLC platelet aggregation [GO:0070527] -P19256 reviewed LFA3_HUMAN Lymphocyte function-associated antigen 3 (Ag3) (Surface glycoprotein LFA-3) (CD antigen CD58) CD58 LFA3 cell-cell adhesion [GO:0098609]; cellular response to tumor necrosis factor [GO:0071356]; cellular response to type II interferon [GO:0071346]; heterotypic cell-cell adhesion [GO:0034113]; positive regulation of interleukin-8 production [GO:0032757] -P19320 reviewed VCAM1_HUMAN Vascular cell adhesion protein 1 (V-CAM 1) (VCAM-1) (INCAM-100) (CD antigen CD106) [Cleaved into: Soluble Vascular Cell Adhesion Molecule-1] VCAM1 amine metabolic process [GO:0009308]; B cell differentiation [GO:0030183]; cardiac neuron differentiation [GO:0060945]; cell adhesion [GO:0007155]; cell chemotaxis [GO:0060326]; cell-cell adhesion mediated by integrin [GO:0033631]; cell-matrix adhesion [GO:0007160]; cellular response to amyloid-beta [GO:1904646]; cellular response to tumor necrosis factor [GO:0071356]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; chronic inflammatory response [GO:0002544]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; heterotypic cell-cell adhesion [GO:0034113]; inflammatory response [GO:0006954]; innervation [GO:0060384]; leukocyte cell-cell adhesion [GO:0007159]; leukocyte tethering or rolling [GO:0050901]; membrane to membrane docking [GO:0022614]; positive regulation of T cell proliferation [GO:0042102]; response to ethanol [GO:0045471]; response to hypoxia [GO:0001666]; response to ionizing radiation [GO:0010212]; response to lipopolysaccharide [GO:0032496]; response to nicotine [GO:0035094]; response to nutrient [GO:0007584]; response to zinc ion [GO:0010043] -P20138 reviewed CD33_HUMAN Myeloid cell surface antigen CD33 (Sialic acid-binding Ig-like lectin 3) (Siglec-3) (gp67) (CD antigen CD33) CD33 SIGLEC3 cell adhesion [GO:0007155]; cell-cell adhesion [GO:0098609]; cell-cell signaling [GO:0007267]; Fc-gamma receptor signaling pathway [GO:0038094]; immune response-inhibiting signal transduction [GO:0002765]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of interleukin-1 beta production [GO:0032691]; negative regulation of interleukin-8 production [GO:0032717]; negative regulation of monocyte activation [GO:0150102]; negative regulation of tumor necrosis factor production [GO:0032720]; positive regulation of protein secretion [GO:0050714]; signal transduction [GO:0007165] -P20701 reviewed ITAL_HUMAN Integrin alpha-L (CD11 antigen-like family member A) (Leukocyte adhesion glycoprotein LFA-1 alpha chain) (LFA-1A) (Leukocyte function-associated molecule 1 alpha chain) (CD antigen CD11a) ITGAL CD11A cell adhesion [GO:0007155]; cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; inflammatory response [GO:0006954]; integrin-mediated signaling pathway [GO:0007229]; leukocyte cell-cell adhesion [GO:0007159]; memory T cell extravasation [GO:0035683]; phagocytosis [GO:0006909]; receptor clustering [GO:0043113]; signal transduction [GO:0007165]; T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell [GO:0002291] -P20702 reviewed ITAX_HUMAN Integrin alpha-X (CD11 antigen-like family member C) (Leu M5) (Leukocyte adhesion glycoprotein p150,95 alpha chain) (Leukocyte adhesion receptor p150,95) (CD antigen CD11c) ITGAX CD11C animal organ morphogenesis [GO:0009887]; cell adhesion [GO:0007155]; cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; defense response to virus [GO:0051607]; heterotypic cell-cell adhesion [GO:0034113]; integrin-mediated signaling pathway [GO:0007229]; positive regulation of angiogenesis [GO:0045766]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of endothelial tube morphogenesis [GO:1905956]; positive regulation of gene expression [GO:0010628]; positive regulation of myelination [GO:0031643] -P20916 reviewed MAG_HUMAN Myelin-associated glycoprotein (Siglec-4a) MAG GMA axon regeneration [GO:0031103]; cell adhesion [GO:0007155]; cell-cell adhesion via plasma-membrane adhesion molecules [GO:0098742]; cellular response to mechanical stimulus [GO:0071260]; central nervous system myelin formation [GO:0032289]; negative regulation of axon extension [GO:0030517]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of neuron projection development [GO:0010977]; positive regulation of astrocyte differentiation [GO:0048711]; positive regulation of myelination [GO:0031643]; substantia nigra development [GO:0021762]; transmission of nerve impulse [GO:0019226] -P21291 reviewed CSRP1_HUMAN Cysteine and glycine-rich protein 1 (Cysteine-rich protein 1) (CRP) (CRP1) (Epididymis luminal protein 141) (HEL-141) CSRP1 CSRP CYRP muscle tissue development [GO:0060537]; platelet aggregation [GO:0070527]; sarcomere organization [GO:0045214] -P21333 reviewed FLNA_HUMAN Filamin-A (FLN-A) (Actin-binding protein 280) (ABP-280) (Alpha-filamin) (Endothelial actin-binding protein) (Filamin-1) (Non-muscle filamin) FLNA FLN FLN1 actin crosslink formation [GO:0051764]; actin cytoskeleton organization [GO:0030036]; adenylate cyclase-inhibiting dopamine receptor signaling pathway [GO:0007195]; angiogenesis [GO:0001525]; blood coagulation, intrinsic pathway [GO:0007597]; blood vessel remodeling [GO:0001974]; cell-cell junction organization [GO:0045216]; cerebral cortex development [GO:0021987]; cilium assembly [GO:0060271]; cytoplasmic sequestering of protein [GO:0051220]; early endosome to late endosome transport [GO:0045022]; epithelial to mesenchymal transition [GO:0001837]; establishment of protein localization [GO:0045184]; establishment of Sertoli cell barrier [GO:0097368]; formation of radial glial scaffolds [GO:0021943]; heart morphogenesis [GO:0003007]; megakaryocyte development [GO:0035855]; mitotic spindle assembly [GO:0090307]; mRNA transcription by RNA polymerase II [GO:0042789]; negative regulation of apoptotic process [GO:0043066]; negative regulation of DNA-binding transcription factor activity [GO:0043433]; negative regulation of neuron projection development [GO:0010977]; negative regulation of protein catabolic process [GO:0042177]; negative regulation of transcription by RNA polymerase I [GO:0016479]; platelet aggregation [GO:0070527]; positive regulation of actin filament bundle assembly [GO:0032233]; positive regulation of axon regeneration [GO:0048680]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of integrin-mediated signaling pathway [GO:2001046]; positive regulation of neural precursor cell proliferation [GO:2000179]; positive regulation of neuron migration [GO:2001224]; positive regulation of platelet activation [GO:0010572]; positive regulation of potassium ion transmembrane transport [GO:1901381]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of substrate adhesion-dependent cell spreading [GO:1900026]; protein localization to bicellular tight junction [GO:1902396]; protein localization to cell surface [GO:0034394]; protein localization to plasma membrane [GO:0072659]; protein stabilization [GO:0050821]; receptor clustering [GO:0043113]; regulation of cell migration [GO:0030334]; regulation of membrane repolarization during atrial cardiac muscle cell action potential [GO:1905000]; regulation of membrane repolarization during cardiac muscle cell action potential [GO:1905031]; release of sequestered calcium ion into cytosol [GO:0051209]; semaphorin-plexin signaling pathway [GO:0071526]; synapse organization [GO:0050808]; tubulin deacetylation [GO:0090042]; wound healing, spreading of cells [GO:0044319] -P21589 reviewed 5NTD_HUMAN 5'-nucleotidase (5'-NT) (EC 3.1.3.35) (EC 3.1.3.5) (EC 3.1.3.89) (EC 3.1.3.91) (EC 3.1.3.99) (5'-deoxynucleotidase) (Ecto-5'-nucleotidase) (IMP-specific 5'-nucleotidase) (Thymidylate 5'-phosphatase) (CD antigen CD73) NT5E NT5 NTE adenosine biosynthetic process [GO:0046086]; ADP catabolic process [GO:0046032]; AMP catabolic process [GO:0006196]; ATP metabolic process [GO:0046034]; calcium ion homeostasis [GO:0055074]; DNA metabolic process [GO:0006259]; inhibition of non-skeletal tissue mineralization [GO:0140928]; leukocyte cell-cell adhesion [GO:0007159]; negative regulation of inflammatory response [GO:0050728]; response to ATP [GO:0033198]; response to inorganic substance [GO:0010035] -P22003 reviewed BMP5_HUMAN Bone morphogenetic protein 5 (BMP-5) BMP5 allantois development [GO:1905069]; anterior head development [GO:0097065]; BMP signaling pathway [GO:0030509]; cardiac muscle tissue development [GO:0048738]; cardiac septum morphogenesis [GO:0060411]; cartilage development [GO:0051216]; chorio-allantoic fusion [GO:0060710]; ear development [GO:0043583]; endocardial cushion formation [GO:0003272]; heart trabecula morphogenesis [GO:0061384]; hindbrain development [GO:0030902]; male genitalia development [GO:0030539]; negative regulation of aldosterone biosynthetic process [GO:0032348]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of cortisol biosynthetic process [GO:2000065]; negative regulation of epithelial to mesenchymal transition [GO:0010719]; negative regulation of extrinsic apoptotic signaling pathway via death domain receptors [GO:1902042]; negative regulation of insulin-like growth factor receptor signaling pathway [GO:0043569]; negative regulation of mononuclear cell migration [GO:0071676]; negative regulation of steroid biosynthetic process [GO:0010894]; neural fold elevation formation [GO:0021502]; ossification [GO:0001503]; pattern specification process [GO:0007389]; pericardium morphogenesis [GO:0003344]; pharyngeal system development [GO:0060037]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of dendrite development [GO:1900006]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of transcription by RNA polymerase II [GO:0045944]; skeletal system development [GO:0001501]; type B pancreatic cell development [GO:0003323] -P22105 reviewed TENX_HUMAN Tenascin-X (TN-X) (Hexabrachion-like protein) TNXB HXBL TNX TNXB1 TNXB2 XB actin cytoskeleton organization [GO:0030036]; cell adhesion [GO:0007155]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; collagen fibril organization [GO:0030199]; collagen metabolic process [GO:0032963]; elastic fiber assembly [GO:0048251]; fatty acid metabolic process [GO:0006631]; neuron projection development [GO:0031175]; positive regulation of cell fate determination [GO:1905935]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of collagen fibril organization [GO:1904028]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of vascular endothelial growth factor signaling pathway [GO:1900748]; regulation of cell adhesion [GO:0030155]; regulation of cell differentiation [GO:0045595]; regulation of cell migration [GO:0030334]; triglyceride metabolic process [GO:0006641] -P22223 reviewed CADH3_HUMAN Cadherin-3 (Placental cadherin) (P-cadherin) CDH3 CDHP adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell adhesion [GO:0007155]; cell migration [GO:0016477]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; hair cycle process [GO:0022405]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; keratinization [GO:0031424]; negative regulation of timing of catagen [GO:0051796]; negative regulation of transforming growth factor beta receptor signaling pathway [GO:0030512]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of gene expression [GO:0010628]; positive regulation of insulin-like growth factor receptor signaling pathway [GO:0043568]; positive regulation of keratinocyte proliferation [GO:0010838]; positive regulation of melanin biosynthetic process [GO:0048023]; positive regulation of melanosome transport [GO:1902910]; positive regulation of tyrosinase activity [GO:0032773]; response to xenobiotic stimulus [GO:0009410]; retina homeostasis [GO:0001895]; visual perception [GO:0007601] -P23229 reviewed ITA6_HUMAN Integrin alpha-6 (CD49 antigen-like family member F) (VLA-6) (CD antigen CD49f) [Cleaved into: Integrin alpha-6 heavy chain; Integrin alpha-6 light chain; Processed integrin alpha-6 (Alpha6p)] ITGA6 cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; cell-substrate adhesion [GO:0031589]; cell-substrate junction assembly [GO:0007044]; cellular response to organic cyclic compound [GO:0071407]; ectodermal cell differentiation [GO:0010668]; integrin-mediated signaling pathway [GO:0007229]; leukocyte migration [GO:0050900]; nail development [GO:0035878]; negative regulation of extrinsic apoptotic signaling pathway [GO:2001237]; positive regulation of apoptotic process [GO:0043065]; positive regulation of cell migration [GO:0030335]; positive regulation of cell-substrate adhesion [GO:0010811]; positive regulation of GTPase activity [GO:0043547]; positive regulation of neuron projection development [GO:0010976]; positive regulation of phosphorylation [GO:0042327]; positive regulation of transcription by RNA polymerase II [GO:0045944]; skin morphogenesis [GO:0043589] -P23435 reviewed CBLN1_HUMAN Cerebellin-1 (Precerebellin) [Cleaved into: Cerebellin (CER); [des-Ser1]-cerebellin] CBLN1 cerebellar granule cell differentiation [GO:0021707]; chemical synaptic transmission [GO:0007268]; establishment of localization in cell [GO:0051649]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; maintenance of synapse structure [GO:0099558]; negative regulation of excitatory postsynaptic potential [GO:0090394]; negative regulation of inhibitory synapse assembly [GO:1905703]; nervous system development [GO:0007399]; positive regulation of long-term synaptic depression [GO:1900454]; positive regulation of synapse assembly [GO:0051965]; protein secretion [GO:0009306]; regulation of postsynaptic density assembly [GO:0099151]; regulation of presynapse assembly [GO:1905606]; synapse assembly [GO:0007416]; synapse organization [GO:0050808] -P23468 reviewed PTPRD_HUMAN Receptor-type tyrosine-protein phosphatase delta (Protein-tyrosine phosphatase delta) (R-PTP-delta) (EC 3.1.3.48) PTPRD cell surface receptor protein tyrosine phosphatase signaling pathway [GO:0007185]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; modulation of chemical synaptic transmission [GO:0050804]; negative regulation of receptor signaling pathway via JAK-STAT [GO:0046426]; neuron differentiation [GO:0030182]; phosphate-containing compound metabolic process [GO:0006796]; positive regulation of dendritic spine morphogenesis [GO:0061003]; positive regulation of synapse assembly [GO:0051965]; presynapse assembly [GO:0099054]; presynaptic membrane assembly [GO:0097105]; regulation of immune response [GO:0050776]; regulation of postsynaptic density assembly [GO:0099151]; synaptic membrane adhesion [GO:0099560]; trans-synaptic signaling by trans-synaptic complex [GO:0099545] -P24844 reviewed MYL9_HUMAN Myosin regulatory light polypeptide 9 (20 kDa myosin light chain) (LC20) (MLC-2C) (Myosin RLC) (Myosin regulatory light chain 2, smooth muscle isoform) (Myosin regulatory light chain 9) (Myosin regulatory light chain MRLC1) MYL9 MLC2 MRLC1 MYRL2 myofibril assembly [GO:0030239]; platelet aggregation [GO:0070527]; regulation of muscle contraction [GO:0006937] -P25063 reviewed CD24_HUMAN Signal transducer CD24 (Small cell lung carcinoma cluster 4 antigen) (CD antigen CD24) CD24 CD24A B cell receptor transport into membrane raft [GO:0032597]; cell activation [GO:0001775]; cell migration [GO:0016477]; cell-cell adhesion [GO:0098609]; chemokine receptor transport out of membrane raft [GO:0032600]; cholesterol homeostasis [GO:0042632]; glomerular parietal epithelial cell differentiation [GO:0072139]; immune response-regulating cell surface receptor signaling pathway [GO:0002768]; intrinsic apoptotic signaling pathway [GO:0097193]; negative regulation of transforming growth factor beta3 production [GO:0032913]; podocyte differentiation [GO:0072112]; positive regulation of activated T cell proliferation [GO:0042104]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of MAP kinase activity [GO:0043406]; positive regulation of nephron tubule epithelial cell differentiation [GO:2000768]; regulation of cell-cell adhesion [GO:0022407]; regulation of cytokine-mediated signaling pathway [GO:0001959]; regulation of epithelial cell differentiation [GO:0030856]; regulation of MAPK cascade [GO:0043408]; regulation of phosphorylation [GO:0042325]; respiratory burst [GO:0045730]; response to estrogen [GO:0043627]; response to hypoxia [GO:0001666]; response to molecule of bacterial origin [GO:0002237]; T cell costimulation [GO:0031295]; Wnt signaling pathway [GO:0016055] -P25067 reviewed CO8A2_HUMAN Collagen alpha-2(VIII) chain (Endothelial collagen) COL8A2 angiogenesis [GO:0001525]; camera-type eye morphogenesis [GO:0048593]; cell-cell adhesion [GO:0098609]; endothelial cell proliferation [GO:0001935]; extracellular matrix organization [GO:0030198] -P25189 reviewed MYP0_HUMAN Myelin protein P0 (Myelin peripheral protein) (MPP) (Myelin protein zero) MPZ cell aggregation [GO:0098743]; cell-cell adhesion via plasma-membrane adhesion molecules [GO:0098742]; chemical synaptic transmission [GO:0007268]; myelination [GO:0042552] -P26006 reviewed ITA3_HUMAN Integrin alpha-3 (CD49 antigen-like family member C) (FRP-2) (Galactoprotein B3) (GAPB3) (VLA-3 subunit alpha) (CD antigen CD49c) [Cleaved into: Integrin alpha-3 heavy chain; Integrin alpha-3 light chain] ITGA3 MSK18 cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; dendritic spine maintenance [GO:0097062]; exploration behavior [GO:0035640]; heart development [GO:0007507]; integrin-mediated signaling pathway [GO:0007229]; leukocyte migration [GO:0050900]; lung development [GO:0030324]; maternal process involved in female pregnancy [GO:0060135]; memory [GO:0007613]; mesodermal cell differentiation [GO:0048333]; negative regulation of cell projection organization [GO:0031345]; negative regulation of Rho protein signal transduction [GO:0035024]; nephron development [GO:0072006]; neuron migration [GO:0001764]; positive regulation of cell-substrate adhesion [GO:0010811]; positive regulation of epithelial cell migration [GO:0010634]; positive regulation of gene expression [GO:0010628]; positive regulation of neuron projection development [GO:0010976]; positive regulation of protein localization to plasma membrane [GO:1903078]; regulation of BMP signaling pathway [GO:0030510]; regulation of transforming growth factor beta receptor signaling pathway [GO:0017015]; regulation of Wnt signaling pathway [GO:0030111]; renal filtration [GO:0097205]; response to gonadotropin [GO:0034698]; response to xenobiotic stimulus [GO:0009410]; Rho protein signal transduction [GO:0007266]; skin development [GO:0043588]; synaptic membrane adhesion [GO:0099560] -P26010 reviewed ITB7_HUMAN Integrin beta-7 (Gut homing receptor beta subunit) ITGB7 cell adhesion [GO:0007155]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; cell-matrix adhesion involved in ameboidal cell migration [GO:0003366]; heterotypic cell-cell adhesion [GO:0034113]; immune response in gut-associated lymphoid tissue [GO:0002387]; integrin-mediated signaling pathway [GO:0007229]; leukocyte migration [GO:0050900]; leukocyte tethering or rolling [GO:0050901]; receptor clustering [GO:0043113]; substrate adhesion-dependent cell spreading [GO:0034446]; T cell migration [GO:0072678] -P26012 reviewed ITB8_HUMAN Integrin beta-8 ITGB8 cartilage development [GO:0051216]; cell adhesion [GO:0007155]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; ganglioside metabolic process [GO:0001573]; hard palate development [GO:0060022]; immune response [GO:0006955]; integrin-mediated signaling pathway [GO:0007229]; Langerhans cell differentiation [GO:0061520]; negative regulation of gene expression [GO:0010629]; placenta blood vessel development [GO:0060674]; positive regulation of angiogenesis [GO:0045766]; positive regulation of gene expression [GO:0010628]; response to virus [GO:0009615]; transforming growth factor beta receptor signaling pathway [GO:0007179]; vasculogenesis [GO:0001570] -P26038 reviewed MOES_HUMAN Moesin (Membrane-organizing extension spike protein) MSN cellular response to testosterone stimulus [GO:0071394]; establishment of endothelial barrier [GO:0061028]; establishment of epithelial cell apical/basal polarity [GO:0045198]; gland morphogenesis [GO:0022612]; immunological synapse formation [GO:0001771]; leukocyte cell-cell adhesion [GO:0007159]; leukocyte migration [GO:0050900]; membrane to membrane docking [GO:0022614]; positive regulation of early endosome to late endosome transport [GO:2000643]; positive regulation of gene expression [GO:0010628]; positive regulation of podosome assembly [GO:0071803]; positive regulation of protein catabolic process [GO:0045732]; positive regulation of protein localization to early endosome [GO:1902966]; regulation of cell shape [GO:0008360]; regulation of cell size [GO:0008361]; regulation of lymphocyte migration [GO:2000401]; regulation of organelle assembly [GO:1902115]; T cell aggregation [GO:0070489]; T cell migration [GO:0072678]; T cell proliferation [GO:0042098] -P26232 reviewed CTNA2_HUMAN Catenin alpha-2 (Alpha N-catenin) (Alpha-catenin-related protein) CTNNA2 CAPR axonogenesis [GO:0007409]; brain morphogenesis [GO:0048854]; cell migration [GO:0016477]; cell-cell adhesion [GO:0098609]; dendrite morphogenesis [GO:0048813]; negative regulation of Arp2/3 complex-mediated actin nucleation [GO:0034316]; prepulse inhibition [GO:0060134]; radial glia guided migration of Purkinje cell [GO:0021942]; regulation of neuron migration [GO:2001222]; regulation of neuron projection development [GO:0010975]; regulation of synapse structural plasticity [GO:0051823] -P28827 reviewed PTPRM_HUMAN Receptor-type tyrosine-protein phosphatase mu (Protein-tyrosine phosphatase mu) (R-PTP-mu) (EC 3.1.3.48) PTPRM PTPRL1 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; negative regulation of angiogenesis [GO:0016525]; negative regulation of endothelial cell migration [GO:0010596]; negative regulation of endothelial cell proliferation [GO:0001937]; neuron projection development [GO:0031175]; protein dephosphorylation [GO:0006470]; response to xenobiotic stimulus [GO:0009410]; retina layer formation [GO:0010842]; retinal ganglion cell axon guidance [GO:0031290]; signal transduction [GO:0007165] -P28906 reviewed CD34_HUMAN Hematopoietic progenitor cell antigen CD34 (CD antigen CD34) CD34 cell motility [GO:0048870]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; endothelial cell proliferation [GO:0001935]; endothelium development [GO:0003158]; extracellular exosome assembly [GO:0071971]; glomerular endothelium development [GO:0072011]; glomerular filtration [GO:0003094]; hematopoietic stem cell proliferation [GO:0071425]; hemopoiesis [GO:0030097]; leukocyte migration [GO:0050900]; mesangial cell-matrix adhesion [GO:0035759]; metanephric glomerular mesangial cell differentiation [GO:0072254]; negative regulation of gene expression [GO:0010629]; negative regulation of interleukin-2 production [GO:0032703]; paracrine signaling [GO:0038001]; positive regulation of angiogenesis [GO:0045766]; positive regulation of gene expression [GO:0010628]; positive regulation of granulocyte colony-stimulating factor production [GO:0071657]; positive regulation of odontogenesis [GO:0042482]; positive regulation of vasculogenesis [GO:2001214]; signal transduction [GO:0007165]; stem cell proliferation [GO:0072089]; tissue homeostasis [GO:0001894]; transdifferentiation [GO:0060290]; vascular wound healing [GO:0061042] -P29350 reviewed PTN6_HUMAN Tyrosine-protein phosphatase non-receptor type 6 (EC 3.1.3.48) (Hematopoietic cell protein-tyrosine phosphatase) (Protein-tyrosine phosphatase 1C) (PTP-1C) (Protein-tyrosine phosphatase SHP-1) (SH-PTP1) PTPN6 HCP PTP1C B cell receptor signaling pathway [GO:0050853]; cell differentiation [GO:0030154]; cytokine-mediated signaling pathway [GO:0019221]; epididymis development [GO:1905867]; G protein-coupled receptor signaling pathway [GO:0007186]; hematopoietic progenitor cell differentiation [GO:0002244]; intracellular signal transduction [GO:0035556]; MAPK cascade [GO:0000165]; megakaryocyte development [GO:0035855]; mitotic cell cycle [GO:0000278]; natural killer cell mediated cytotoxicity [GO:0042267]; negative regulation of angiogenesis [GO:0016525]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of humoral immune response mediated by circulating immunoglobulin [GO:0002924]; negative regulation of inflammatory response to wounding [GO:0106015]; negative regulation of interleukin-6 production [GO:0032715]; negative regulation of MAPK cascade [GO:0043409]; negative regulation of mast cell activation involved in immune response [GO:0033007]; negative regulation of peptidyl-tyrosine phosphorylation [GO:0050732]; negative regulation of T cell proliferation [GO:0042130]; negative regulation of T cell receptor signaling pathway [GO:0050860]; negative regulation of tumor necrosis factor production [GO:0032720]; peptidyl-tyrosine dephosphorylation [GO:0035335]; peptidyl-tyrosine phosphorylation [GO:0018108]; platelet aggregation [GO:0070527]; platelet formation [GO:0030220]; positive regulation of cell adhesion mediated by integrin [GO:0033630]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; protein dephosphorylation [GO:0006470]; regulation of apoptotic process [GO:0042981]; regulation of B cell differentiation [GO:0045577]; regulation of ERK1 and ERK2 cascade [GO:0070372]; regulation of G1/S transition of mitotic cell cycle [GO:2000045]; regulation of release of sequestered calcium ion into cytosol [GO:0051279]; regulation of type I interferon-mediated signaling pathway [GO:0060338]; T cell costimulation [GO:0031295]; T cell proliferation [GO:0042098]; T cell receptor signaling pathway [GO:0050852] -P29353 reviewed SHC1_HUMAN SHC-transforming protein 1 (SHC-transforming protein 3) (SHC-transforming protein A) (Src homology 2 domain-containing-transforming protein C1) (SH2 domain protein C1) SHC1 SHC SHCA actin cytoskeleton organization [GO:0030036]; angiogenesis [GO:0001525]; cell-cell adhesion [GO:0098609]; cellular response to growth factor stimulus [GO:0071363]; defense response to bacterium [GO:0042742]; epidermal growth factor receptor signaling pathway [GO:0007173]; heart development [GO:0007507]; insulin receptor signaling pathway [GO:0008286]; insulin-like growth factor receptor signaling pathway [GO:0048009]; intracellular signal transduction [GO:0035556]; negative regulation of angiogenesis [GO:0016525]; negative regulation of apoptotic process [GO:0043066]; negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cell proliferation in bone marrow [GO:0071864]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of MAPK cascade [GO:0043410]; regulation of superoxide metabolic process [GO:0090322] -P29965 reviewed CD40L_HUMAN CD40 ligand (CD40-L) (T-cell antigen Gp39) (TNF-related activation protein) (TRAP) (Tumor necrosis factor ligand superfamily member 5) (CD antigen CD154) [Cleaved into: CD40 ligand, membrane form; CD40 ligand, soluble form (sCD40L)] CD40LG CD40L TNFSF5 TRAP B cell differentiation [GO:0030183]; B cell proliferation [GO:0042100]; CD40 signaling pathway [GO:0023035]; inflammatory response [GO:0006954]; integrin-mediated signaling pathway [GO:0007229]; isotype switching [GO:0045190]; leukocyte cell-cell adhesion [GO:0007159]; negative regulation of apoptotic process [GO:0043066]; platelet activation [GO:0030168]; positive regulation of endothelial cell apoptotic process [GO:2000353]; positive regulation of interleukin-10 production [GO:0032733]; positive regulation of interleukin-12 production [GO:0032735]; positive regulation of interleukin-4 production [GO:0032753]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of T cell proliferation [GO:0042102]; regulation of immunoglobulin production [GO:0002637]; T cell costimulation [GO:0031295] -P30101 reviewed PDIA3_HUMAN Protein disulfide-isomerase A3 (EC 5.3.4.1) (58 kDa glucose-regulated protein) (58 kDa microsomal protein) (p58) (Disulfide isomerase ER-60) (Endoplasmic reticulum resident protein 57) (ER protein 57) (ERp57) (Endoplasmic reticulum resident protein 60) (ER protein 60) (ERp60) PDIA3 ERP57 ERP60 GRP58 adaptive immune response [GO:0002250]; cellular response to interleukin-7 [GO:0098761]; extrinsic apoptotic signaling pathway [GO:0097191]; peptide antigen assembly with MHC class I protein complex [GO:0002502]; platelet aggregation [GO:0070527]; positive regulation of extrinsic apoptotic signaling pathway [GO:2001238]; protein folding [GO:0006457]; protein folding in endoplasmic reticulum [GO:0034975]; response to endoplasmic reticulum stress [GO:0034976] -P30203 reviewed CD6_HUMAN T-cell differentiation antigen CD6 (T12) (TP120) (CD antigen CD6) [Cleaved into: Soluble CD6] CD6 acute inflammatory response to antigenic stimulus [GO:0002438]; adaptive immune response [GO:0002250]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; immunological synapse formation [GO:0001771]; innate immune response [GO:0045087]; lipopolysaccharide-mediated signaling pathway [GO:0031663]; positive regulation of cytokine production involved in inflammatory response [GO:1900017]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of T cell proliferation [GO:0042102]; response to lipopolysaccharide [GO:0032496] -P31645 reviewed SC6A4_HUMAN Sodium-dependent serotonin transporter (SERT) (5HT transporter) (5HTT) (Solute carrier family 6 member 4) SLC6A4 HTT SERT amino acid transport [GO:0006865]; behavioral response to cocaine [GO:0048148]; brain morphogenesis [GO:0048854]; cellular response to cGMP [GO:0071321]; cellular response to retinoic acid [GO:0071300]; circadian rhythm [GO:0007623]; conditioned place preference [GO:1990708]; enteric nervous system development [GO:0048484]; membrane depolarization [GO:0051899]; memory [GO:0007613]; monoamine transport [GO:0015844]; negative regulation of cerebellar granule cell precursor proliferation [GO:0021941]; negative regulation of neuron differentiation [GO:0045665]; negative regulation of organ growth [GO:0046621]; negative regulation of synaptic transmission, dopaminergic [GO:0032227]; neurotransmitter transport [GO:0006836]; platelet aggregation [GO:0070527]; positive regulation of cell cycle [GO:0045787]; positive regulation of gene expression [GO:0010628]; positive regulation of serotonin secretion [GO:0014064]; regulation of thalamus size [GO:0090067]; response to estradiol [GO:0032355]; response to hypoxia [GO:0001666]; response to nutrient [GO:0007584]; response to toxic substance [GO:0009636]; response to xenobiotic stimulus [GO:0009410]; serotonin uptake [GO:0051610]; social behavior [GO:0035176]; sodium ion transmembrane transport [GO:0035725]; sperm ejaculation [GO:0042713]; vasoconstriction [GO:0042310] -P31949 reviewed S10AB_HUMAN Protein S100-A11 (Calgizzarin) (Metastatic lymph node gene 70 protein) (MLN 70) (Protein S100-C) (S100 calcium-binding protein A11) [Cleaved into: Protein S100-A11, N-terminally processed] S100A11 MLN70 S100C negative regulation of cell population proliferation [GO:0008285]; negative regulation of DNA replication [GO:0008156]; positive regulation of smooth muscle cell migration [GO:0014911]; signal transduction [GO:0007165] -P31997 reviewed CEAM8_HUMAN Carcinoembryonic antigen-related cell adhesion molecule 8 (CD67 antigen) (Carcinoembryonic antigen CGM6) (Non-specific cross-reacting antigen NCA-95) (CD antigen CD66b) CEACAM8 CGM6 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; immune response [GO:0006955] -P32004 reviewed L1CAM_HUMAN Neural cell adhesion molecule L1 (N-CAM-L1) (NCAM-L1) (CD antigen CD171) L1CAM CAML1 MIC5 axon development [GO:0061564]; axon guidance [GO:0007411]; cell adhesion [GO:0007155]; cell migration [GO:0016477]; cell-matrix adhesion [GO:0007160]; chemotaxis [GO:0006935]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399]; neuron projection development [GO:0031175]; positive regulation of axon extension [GO:0045773]; synapse organization [GO:0050808] -P32926 reviewed DSG3_HUMAN Desmoglein-3 (130 kDa pemphigus vulgaris antigen) (PVA) (Cadherin family member 6) DSG3 CDHF6 cell-cell adhesion [GO:0098609]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -P32942 reviewed ICAM3_HUMAN Intercellular adhesion molecule 3 (ICAM-3) (CDw50) (ICAM-R) (CD antigen CD50) ICAM3 cell adhesion [GO:0007155]; cell-cell adhesion [GO:0098609]; phagocytosis [GO:0006909] -P33151 reviewed CADH5_HUMAN Cadherin-5 (7B4 antigen) (Vascular endothelial cadherin) (VE-cadherin) (CD antigen CD144) CDH5 adherens junction organization [GO:0034332]; bicellular tight junction assembly [GO:0070830]; blood vessel endothelial cell migration [GO:0043534]; blood vessel maturation [GO:0001955]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell migration [GO:0016477]; cell morphogenesis [GO:0000902]; cell-cell adhesion [GO:0098609]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; intracellular calcium ion homeostasis [GO:0006874]; maintenance of blood-brain barrier [GO:0035633]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of endothelial cell apoptotic process [GO:2000352]; negative regulation of inflammatory response [GO:0050728]; negative regulation of microtubule polymerization [GO:0031115]; positive regulation of angiogenesis [GO:0045766]; positive regulation of BMP signaling pathway [GO:0030513]; positive regulation of cell migration [GO:0030335]; positive regulation of establishment of endothelial barrier [GO:1903142]; positive regulation of gene expression [GO:0010628]; positive regulation of protein dephosphorylation [GO:0035307]; positive regulation of protein-containing complex assembly [GO:0031334]; protein localization to bicellular tight junction [GO:1902396]; regulation of establishment of cell polarity [GO:2000114]; regulation of protein phosphorylation [GO:0001932]; regulation of vascular permeability [GO:0043114]; transforming growth factor beta receptor signaling pathway [GO:0007179] -P35221 reviewed CTNA1_HUMAN Catenin alpha-1 (Alpha E-catenin) (Cadherin-associated protein) (Renal carcinoma antigen NY-REN-13) CTNNA1 apical junction assembly [GO:0043297]; axon regeneration [GO:0031103]; cell adhesion [GO:0007155]; cell migration [GO:0016477]; cell-cell adhesion [GO:0098609]; cellular response to indole-3-methanol [GO:0071681]; epithelial cell-cell adhesion [GO:0090136]; establishment or maintenance of cell polarity [GO:0007163]; extrinsic apoptotic signaling pathway in absence of ligand [GO:0097192]; gap junction assembly [GO:0016264]; integrin-mediated signaling pathway [GO:0007229]; male gonad development [GO:0008584]; negative regulation of cell motility [GO:2000146]; negative regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001240]; negative regulation of integrin-mediated signaling pathway [GO:2001045]; negative regulation of neuroblast proliferation [GO:0007406]; negative regulation of protein localization to nucleus [GO:1900181]; neuroblast proliferation [GO:0007405]; odontogenesis of dentin-containing tooth [GO:0042475]; ovarian follicle development [GO:0001541]; positive regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001241]; positive regulation of smoothened signaling pathway [GO:0045880]; protein localization [GO:0008104]; response to estrogen [GO:0043627]; smoothened signaling pathway [GO:0007224] -P35222 reviewed CTNB1_HUMAN Catenin beta-1 (Beta-catenin) CTNNB1 CTNNB OK/SW-cl.35 PRO2286 acinar cell differentiation [GO:0090425]; adherens junction assembly [GO:0034333]; anterior/posterior axis specification [GO:0009948]; apoptotic signaling pathway [GO:0097190]; astrocyte-dopaminergic neuron signaling [GO:0036520]; bone resorption [GO:0045453]; branching involved in blood vessel morphogenesis [GO:0001569]; branching involved in ureteric bud morphogenesis [GO:0001658]; canonical Wnt signaling pathway [GO:0060070]; canonical Wnt signaling pathway involved in mesenchymal stem cell differentiation [GO:0044338]; cell adhesion [GO:0007155]; cell fate specification [GO:0001708]; cell maturation [GO:0048469]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; cellular response to growth factor stimulus [GO:0071363]; cellular response to indole-3-methanol [GO:0071681]; central nervous system vasculogenesis [GO:0022009]; chemical synaptic transmission [GO:0007268]; chondrocyte differentiation [GO:0002062]; cranial ganglion development [GO:0061550]; cranial skeletal system development [GO:1904888]; detection of muscle stretch [GO:0035995]; dorsal root ganglion development [GO:1990791]; dorsal/ventral axis specification [GO:0009950]; ectoderm development [GO:0007398]; embryonic axis specification [GO:0000578]; embryonic brain development [GO:1990403]; embryonic digit morphogenesis [GO:0042733]; embryonic foregut morphogenesis [GO:0048617]; embryonic forelimb morphogenesis [GO:0035115]; embryonic heart tube development [GO:0035050]; embryonic hindlimb morphogenesis [GO:0035116]; embryonic skeletal limb joint morphogenesis [GO:0036023]; endodermal cell fate commitment [GO:0001711]; endothelial tube morphogenesis [GO:0061154]; epithelial cell differentiation involved in prostate gland development [GO:0060742]; epithelial cell proliferation involved in prostate gland development [GO:0060767]; epithelial to mesenchymal transition [GO:0001837]; epithelial tube branching involved in lung morphogenesis [GO:0060441]; establishment of blood-brain barrier [GO:0060856]; establishment of blood-retinal barrier [GO:1990963]; fibroblast growth factor receptor signaling pathway [GO:0008543]; fungiform papilla formation [GO:0061198]; gastrulation with mouth forming second [GO:0001702]; genitalia morphogenesis [GO:0035112]; glial cell fate determination [GO:0007403]; hair cell differentiation [GO:0035315]; hair follicle morphogenesis [GO:0031069]; hair follicle placode formation [GO:0060789]; hindbrain development [GO:0030902]; hypothalamus development [GO:0021854]; in utero embryonic development [GO:0001701]; layer formation in cerebral cortex [GO:0021819]; lens morphogenesis in camera-type eye [GO:0002089]; lung epithelial cell differentiation [GO:0060487]; lung induction [GO:0060492]; lung-associated mesenchyme development [GO:0060484]; male genitalia development [GO:0030539]; MAPK cascade [GO:0000165]; mesenchymal cell proliferation involved in lung development [GO:0060916]; mesenchymal stem cell differentiation [GO:0072497]; metanephros morphogenesis [GO:0003338]; midbrain dopaminergic neuron differentiation [GO:1904948]; myoblast proliferation [GO:0051450]; negative regulation of angiogenesis [GO:0016525]; negative regulation of apoptotic process [GO:0043066]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of chondrocyte differentiation [GO:0032331]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of gene expression [GO:0010629]; negative regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis [GO:0003340]; negative regulation of mitotic cell cycle, embryonic [GO:0045976]; negative regulation of oligodendrocyte differentiation [GO:0048715]; negative regulation of osteoclast differentiation [GO:0045671]; negative regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway [GO:1903377]; negative regulation of protein sumoylation [GO:0033234]; negative regulation of transcription by RNA polymerase II [GO:0000122]; nephron tubule formation [GO:0072079]; neural plate development [GO:0001840]; neuroblast proliferation [GO:0007405]; neuron fate determination [GO:0048664]; neuron migration [GO:0001764]; neuron projection extension [GO:1990138]; odontogenesis of dentin-containing tooth [GO:0042475]; oligodendrocyte differentiation [GO:0048709]; oocyte development [GO:0048599]; osteoblast differentiation [GO:0001649]; osteoclast differentiation [GO:0030316]; outflow tract morphogenesis [GO:0003151]; oviduct development [GO:0060066]; pancreas development [GO:0031016]; positive regulation of apoptotic process [GO:0043065]; positive regulation of branching involved in lung morphogenesis [GO:0061047]; positive regulation of cell differentiation [GO:0045597]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of determination of dorsal identity [GO:2000017]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of endothelial cell differentiation [GO:0045603]; positive regulation of epithelial cell proliferation involved in prostate gland development [GO:0060769]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of fibroblast growth factor receptor signaling pathway [GO:0045743]; positive regulation of gene expression [GO:0010628]; positive regulation of heparan sulfate proteoglycan biosynthetic process [GO:0010909]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of mesenchymal cell proliferation [GO:0002053]; positive regulation of myoblast proliferation [GO:2000288]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of odontoblast differentiation [GO:1901331]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of skeletal muscle tissue development [GO:0048643]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of telomere maintenance via telomerase [GO:0032212]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transcription elongation by RNA polymerase II [GO:0032968]; proteasome-mediated ubiquitin-dependent protein catabolic process [GO:0043161]; protein localization to cell surface [GO:0034394]; protein polyubiquitination [GO:0000209]; proximal/distal pattern formation [GO:0009954]; regulation of angiogenesis [GO:0045765]; regulation of calcium ion import [GO:0090279]; regulation of centriole-centriole cohesion [GO:0030997]; regulation of centromeric sister chromatid cohesion [GO:0070602]; regulation of fibroblast proliferation [GO:0048145]; regulation of myelination [GO:0031641]; regulation of nephron tubule epithelial cell differentiation [GO:0072182]; regulation of neurogenesis [GO:0050767]; regulation of protein localization to cell surface [GO:2000008]; regulation of protein ubiquitination [GO:0031396]; regulation of secondary heart field cardioblast proliferation [GO:0003266]; regulation of smooth muscle cell proliferation [GO:0048660]; regulation of synapse assembly [GO:0051963]; regulation of T cell proliferation [GO:0042129]; regulation of timing of anagen [GO:0051884]; renal inner medulla development [GO:0072053]; renal outer medulla development [GO:0072054]; renal vesicle formation [GO:0072033]; response to estradiol [GO:0032355]; response to xenobiotic stimulus [GO:0009410]; smooth muscle cell differentiation [GO:0051145]; stem cell population maintenance [GO:0019827]; stem cell proliferation [GO:0072089]; sympathetic ganglion development [GO:0061549]; synapse organization [GO:0050808]; synaptic vesicle clustering [GO:0097091]; synaptic vesicle transport [GO:0048489]; T cell differentiation in thymus [GO:0033077]; thymus development [GO:0048538]; trachea formation [GO:0060440]; transcription by RNA polymerase II [GO:0006366] -P35443 reviewed TSP4_HUMAN Thrombospondin-4 THBS4 TSP4 behavioral response to pain [GO:0048266]; endothelial cell-cell adhesion [GO:0071603]; myoblast migration [GO:0051451]; negative regulation of angiogenesis [GO:0016525]; positive regulation of cell division [GO:0051781]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of neutrophil chemotaxis [GO:0090023]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; regulation of tissue remodeling [GO:0034103]; response to endoplasmic reticulum stress [GO:0034976]; response to unfolded protein [GO:0006986]; tissue remodeling [GO:0048771] -P35579 reviewed MYH9_HUMAN Myosin-9 (Cellular myosin heavy chain, type A) (Myosin heavy chain 9) (Myosin heavy chain, non-muscle IIa) (Non-muscle myosin heavy chain A) (NMMHC-A) (Non-muscle myosin heavy chain IIa) (NMMHC II-a) (NMMHC-IIA) MYH9 actin cytoskeleton organization [GO:0030036]; actin filament-based movement [GO:0030048]; actomyosin structure organization [GO:0031032]; angiogenesis [GO:0001525]; blood vessel endothelial cell migration [GO:0043534]; cortical granule exocytosis [GO:0060471]; cytokinetic process [GO:0032506]; endodermal cell differentiation [GO:0035987]; establishment of meiotic spindle localization [GO:0051295]; establishment of T cell polarity [GO:0001768]; in utero embryonic development [GO:0001701]; integrin-mediated signaling pathway [GO:0007229]; leukocyte migration [GO:0050900]; lysosome localization [GO:0032418]; meiotic spindle organization [GO:0000212]; membrane protein ectodomain proteolysis [GO:0006509]; monocyte differentiation [GO:0030224]; myoblast fusion [GO:0007520]; negative regulation of actin filament severing [GO:1903919]; phagocytosis, engulfment [GO:0006911]; plasma membrane repair [GO:0001778]; platelet aggregation [GO:0070527]; platelet formation [GO:0030220]; positive regulation of protein processing in phagocytic vesicle [GO:1903923]; protein transport [GO:0015031]; regulated exocytosis [GO:0045055]; regulation of cell shape [GO:0008360]; regulation of plasma membrane repair [GO:1905684]; uropod organization [GO:0032796] -P35612 reviewed ADDB_HUMAN Beta-adducin (Erythrocyte adducin subunit beta) ADD2 ADDB actin cytoskeleton organization [GO:0030036]; actin filament bundle assembly [GO:0051017]; barbed-end actin filament capping [GO:0051016]; hemopoiesis [GO:0030097]; leukocyte migration [GO:0050900]; leukocyte tethering or rolling [GO:0050901]; positive regulation of protein binding [GO:0032092]; protein-containing complex assembly [GO:0065003]; synapse assembly [GO:0007416] -P37173 reviewed TGFR2_HUMAN TGF-beta receptor type-2 (TGFR-2) (EC 2.7.11.30) (TGF-beta type II receptor) (Transforming growth factor-beta receptor type II) (TGF-beta receptor type II) (TbetaR-II) TGFBR2 activation of protein kinase activity [GO:0032147]; aorta morphogenesis [GO:0035909]; aortic valve morphogenesis [GO:0003180]; apoptotic process [GO:0006915]; artery morphogenesis [GO:0048844]; atrioventricular valve morphogenesis [GO:0003181]; blood vessel development [GO:0001568]; brain development [GO:0007420]; branching involved in blood vessel morphogenesis [GO:0001569]; bronchus morphogenesis [GO:0060434]; cardiac left ventricle morphogenesis [GO:0003214]; cellular response to growth factor stimulus [GO:0071363]; embryonic cranial skeleton morphogenesis [GO:0048701]; embryonic hemopoiesis [GO:0035162]; endocardial cushion fusion [GO:0003274]; epithelial to mesenchymal transition [GO:0001837]; gastrulation [GO:0007369]; growth plate cartilage chondrocyte growth [GO:0003430]; heart development [GO:0007507]; heart looping [GO:0001947]; in utero embryonic development [GO:0001701]; inferior endocardial cushion morphogenesis [GO:1905317]; Langerhans cell differentiation [GO:0061520]; lens development in camera-type eye [GO:0002088]; lens fiber cell apoptotic process [GO:1990086]; lung lobe morphogenesis [GO:0060463]; mammary gland morphogenesis [GO:0060443]; membranous septum morphogenesis [GO:0003149]; miRNA transport [GO:1990428]; myeloid dendritic cell differentiation [GO:0043011]; Notch signaling pathway [GO:0007219]; outflow tract morphogenesis [GO:0003151]; outflow tract septum morphogenesis [GO:0003148]; positive regulation of angiogenesis [GO:0045766]; positive regulation of B cell tolerance induction [GO:0002663]; positive regulation of CD4-positive, alpha-beta T cell proliferation [GO:2000563]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of epithelial cell migration [GO:0010634]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of epithelial to mesenchymal transition involved in endocardial cushion formation [GO:1905007]; positive regulation of mesenchymal cell proliferation [GO:0002053]; positive regulation of NK T cell differentiation [GO:0051138]; positive regulation of reactive oxygen species metabolic process [GO:2000379]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of T cell tolerance induction [GO:0002666]; positive regulation of tolerance induction to self antigen [GO:0002651]; regulation of cell population proliferation [GO:0042127]; regulation of gene expression [GO:0010468]; regulation of stem cell differentiation [GO:2000736]; regulation of stem cell proliferation [GO:0072091]; response to cholesterol [GO:0070723]; response to xenobiotic stimulus [GO:0009410]; roof of mouth development [GO:0060021]; secondary palate development [GO:0062009]; SMAD protein signal transduction [GO:0060395]; smoothened signaling pathway [GO:0007224]; trachea formation [GO:0060440]; transforming growth factor beta receptor signaling pathway [GO:0007179]; tricuspid valve morphogenesis [GO:0003186]; vasculogenesis [GO:0001570]; ventricular septum morphogenesis [GO:0060412] -P38570 reviewed ITAE_HUMAN Integrin alpha-E (HML-1 antigen) (Integrin alpha-IEL) (Mucosal lymphocyte 1 antigen) (CD antigen CD103) [Cleaved into: Integrin alpha-E light chain; Integrin alpha-E heavy chain] ITGAE cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -P40199 reviewed CEAM6_HUMAN Carcinoembryonic antigen-related cell adhesion molecule 6 (Non-specific crossreacting antigen) (Normal cross-reacting antigen) (CD antigen CD66c) CEACAM6 NCA apoptotic process [GO:0006915]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; negative regulation of anoikis [GO:2000811]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of endothelial cell-matrix adhesion via fibronectin [GO:1904906]; positive regulation of heterotypic cell-cell adhesion [GO:0034116]; signal transduction [GO:0007165] -P41159 reviewed LEP_HUMAN Leptin (Obese protein) (Obesity factor) LEP OB OBS activation of protein kinase C activity [GO:1990051]; adipose tissue development [GO:0060612]; adult feeding behavior [GO:0008343]; angiogenesis [GO:0001525]; aorta development [GO:0035904]; bile acid metabolic process [GO:0008206]; bone growth [GO:0098868]; bone mineralization involved in bone maturation [GO:0035630]; cardiac muscle hypertrophy [GO:0003300]; cellular response to insulin stimulus [GO:0032869]; cellular response to L-ascorbic acid [GO:0071298]; cellular response to leptin stimulus [GO:0044320]; cellular response to retinoic acid [GO:0071300]; central nervous system neuron development [GO:0021954]; cholesterol metabolic process [GO:0008203]; circadian rhythm [GO:0007623]; determination of adult lifespan [GO:0008340]; eating behavior [GO:0042755]; elastin metabolic process [GO:0051541]; energy homeostasis [GO:0097009]; energy reserve metabolic process [GO:0006112]; fatty acid beta-oxidation [GO:0006635]; female pregnancy [GO:0007565]; glucose homeostasis [GO:0042593]; glucose metabolic process [GO:0006006]; glycerol biosynthetic process [GO:0006114]; hormone metabolic process [GO:0042445]; insulin secretion [GO:0030073]; intestinal absorption [GO:0050892]; intracellular signal transduction [GO:0035556]; leptin-mediated signaling pathway [GO:0033210]; leukocyte tethering or rolling [GO:0050901]; lipid metabolic process [GO:0006629]; negative regulation of apoptotic process [GO:0043066]; negative regulation of appetite [GO:0032099]; negative regulation of appetite by leptin-mediated signaling pathway [GO:0038108]; negative regulation of autophagy [GO:0010507]; negative regulation of cartilage development [GO:0061037]; negative regulation of glucagon secretion [GO:0070093]; negative regulation of glucose import [GO:0046325]; negative regulation of glutamine transport [GO:2000486]; negative regulation of lipid storage [GO:0010888]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of vasoconstriction [GO:0045906]; ovulation from ovarian follicle [GO:0001542]; phagocytosis [GO:0006909]; placenta development [GO:0001890]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of developmental growth [GO:0048639]; positive regulation of fat cell apoptotic process [GO:1904651]; positive regulation of follicle-stimulating hormone secretion [GO:0046881]; positive regulation of hepatic stellate cell activation [GO:2000491]; positive regulation of insulin receptor signaling pathway [GO:0046628]; positive regulation of interleukin-12 production [GO:0032735]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of luteinizing hormone secretion [GO:0033686]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of monoatomic ion transport [GO:0043270]; positive regulation of p38MAPK cascade [GO:1900745]; positive regulation of peroxisome proliferator activated receptor signaling pathway [GO:0035360]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of reactive oxygen species metabolic process [GO:2000379]; positive regulation of receptor signaling pathway via JAK-STAT [GO:0046427]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of TOR signaling [GO:0032008]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of tyrosine phosphorylation of STAT protein [GO:0042531]; prostaglandin secretion [GO:0032310]; regulation of angiogenesis [GO:0045765]; regulation of blood pressure [GO:0008217]; regulation of bone remodeling [GO:0046850]; regulation of brown fat cell differentiation [GO:0090335]; regulation of cell cycle [GO:0051726]; regulation of cytokine production involved in inflammatory response [GO:1900015]; regulation of endothelial cell proliferation [GO:0001936]; regulation of gluconeogenesis [GO:0006111]; regulation of insulin secretion [GO:0050796]; regulation of intestinal cholesterol absorption [GO:0030300]; regulation of lipoprotein lipid oxidation [GO:0060587]; regulation of natural killer cell activation [GO:0032814]; regulation of natural killer cell mediated cytotoxicity [GO:0042269]; regulation of natural killer cell proliferation [GO:0032817]; regulation of nitric-oxide synthase activity [GO:0050999]; regulation of steroid biosynthetic process [GO:0050810]; response to activity [GO:0014823]; response to dietary excess [GO:0002021]; response to estradiol [GO:0032355]; response to ethanol [GO:0045471]; response to hypoxia [GO:0001666]; response to insulin [GO:0032868]; response to vitamin E [GO:0033197]; sexual reproduction [GO:0019953]; T cell differentiation [GO:0030217] -P41217 reviewed OX2G_HUMAN OX-2 membrane glycoprotein (CD antigen CD200) CD200 MOX1 MOX2 My033 cell-cell adhesion [GO:0098609]; heterotypic cell-cell adhesion [GO:0034113]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of interleukin-6 production [GO:0032715]; negative regulation of leukocyte activation [GO:0002695]; negative regulation of macrophage activation [GO:0043031]; negative regulation of macrophage migration [GO:1905522]; negative regulation of matrix metallopeptidase secretion [GO:1904465]; negative regulation of neuroinflammatory response [GO:0150079]; negative regulation of NF-kappaB transcription factor activity [GO:0032088]; negative regulation of T cell migration [GO:2000405]; positive regulation of arginase activity [GO:0150072]; positive regulation of CREB transcription factor activity [GO:0032793]; positive regulation of protein-glutamine gamma-glutamyltransferase activity [GO:0150074]; positive regulation of transforming growth factor beta production [GO:0071636]; regulation of immune response [GO:0050776]; regulation of neuroinflammatory response [GO:0150077] -P41597 reviewed CCR2_HUMAN C-C chemokine receptor type 2 (C-C CKR-2) (CC-CKR-2) (CCR-2) (CCR2) (Monocyte chemoattractant protein 1 receptor) (MCP-1-R) (CD antigen CD192) CCR2 CMKBR2 blood vessel remodeling [GO:0001974]; calcium-mediated signaling [GO:0019722]; cell chemotaxis [GO:0060326]; cell surface receptor signaling pathway via JAK-STAT [GO:0007259]; cellular defense response [GO:0006968]; cellular homeostasis [GO:0019725]; chemokine-mediated signaling pathway [GO:0070098]; chemotaxis [GO:0006935]; cytokine-mediated signaling pathway [GO:0019221]; dendritic cell chemotaxis [GO:0002407]; hemopoiesis [GO:0030097]; homeostasis of number of cells within a tissue [GO:0048873]; humoral immune response [GO:0006959]; immune response [GO:0006955]; inflammatory response [GO:0006954]; inflammatory response to wounding [GO:0090594]; intracellular calcium ion homeostasis [GO:0006874]; leukocyte adhesion to vascular endothelial cell [GO:0061756]; macrophage migration [GO:1905517]; monocyte chemotaxis [GO:0002548]; monocyte extravasation [GO:0035696]; negative regulation of adenylate cyclase activity [GO:0007194]; negative regulation of angiogenesis [GO:0016525]; negative regulation of eosinophil degranulation [GO:0043310]; negative regulation of type 2 immune response [GO:0002829]; neutrophil clearance [GO:0097350]; positive regulation of alpha-beta T cell proliferation [GO:0046641]; positive regulation of astrocyte chemotaxis [GO:2000464]; positive regulation of CD8-positive, alpha-beta T cell extravasation [GO:2000451]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of hematopoietic stem cell migration [GO:2000473]; positive regulation of immune complex clearance by monocytes and macrophages [GO:0090265]; positive regulation of inflammatory response [GO:0050729]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of leukocyte tethering or rolling [GO:1903238]; positive regulation of monocyte chemotaxis [GO:0090026]; positive regulation of monocyte extravasation [GO:2000439]; positive regulation of NMDA glutamate receptor activity [GO:1904783]; positive regulation of synaptic transmission, glutamatergic [GO:0051968]; positive regulation of T cell activation [GO:0050870]; positive regulation of T cell chemotaxis [GO:0010820]; positive regulation of T-helper 1 type immune response [GO:0002827]; positive regulation of thymocyte migration [GO:2000412]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of type II interferon production [GO:0032729]; regulation of inflammatory response [GO:0050727]; regulation of macrophage migration [GO:1905521]; regulation of T cell cytokine production [GO:0002724]; regulation of T cell differentiation [GO:0045580]; regulation of vascular endothelial growth factor production [GO:0010574]; response to wounding [GO:0009611]; sensory perception of pain [GO:0019233]; T-helper 17 cell chemotaxis [GO:0035705] -P42338 reviewed PK3CB_HUMAN Phosphatidylinositol 4,5-bisphosphate 3-kinase catalytic subunit beta isoform (PI3-kinase subunit beta) (PI3K-beta) (PI3Kbeta) (PtdIns-3-kinase subunit beta) (EC 2.7.1.153) (Phosphatidylinositol 4,5-bisphosphate 3-kinase 110 kDa catalytic subunit beta) (PtdIns-3-kinase subunit p110-beta) (p110beta) (Serine/threonine protein kinase PIK3CB) (EC 2.7.11.1) PIK3CB PIK3C1 angiogenesis involved in wound healing [GO:0060055]; autophagy [GO:0006914]; cell migration [GO:0016477]; cell surface receptor protein tyrosine kinase signaling pathway [GO:0007169]; chemotaxis [GO:0006935]; embryonic cleavage [GO:0040016]; endocytosis [GO:0006897]; endothelial cell proliferation [GO:0001935]; G protein-coupled receptor signaling pathway [GO:0007186]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; intracellular calcium ion homeostasis [GO:0006874]; negative regulation of hypoxia-induced intrinsic apoptotic signaling pathway [GO:1903298]; negative regulation of MAPK cascade [GO:0043409]; negative regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051898]; negative regulation of sprouting angiogenesis [GO:1903671]; negative regulation of vascular endothelial growth factor signaling pathway [GO:1900747]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; phosphatidylinositol phosphate biosynthetic process [GO:0046854]; phosphatidylinositol-3-phosphate biosynthetic process [GO:0036092]; phosphatidylinositol-mediated signaling [GO:0048015]; phosphorylation [GO:0016310]; platelet activation [GO:0030168]; platelet aggregation [GO:0070527]; positive regulation of autophagy [GO:0010508]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of gene expression [GO:0010628]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of nitric oxide biosynthetic process [GO:0045429]; positive regulation of Rac protein signal transduction [GO:0035022]; regulation of cell-matrix adhesion [GO:0001952]; regulation of clathrin-dependent endocytosis [GO:2000369]; response to ischemia [GO:0002931]; signal transduction [GO:0007165]; sphingosine-1-phosphate receptor signaling pathway [GO:0003376] -P43146 reviewed DCC_HUMAN Netrin receptor DCC (Colorectal cancer suppressor) (Immunoglobulin superfamily DCC subclass member 1) (Tumor suppressor protein DCC) DCC IGDCC1 anterior/posterior axon guidance [GO:0033564]; apoptotic process [GO:0006915]; axon guidance [GO:0007411]; axonogenesis [GO:0007409]; cell-cell adhesion [GO:0098609]; dorsal/ventral axon guidance [GO:0033563]; negative regulation of collateral sprouting [GO:0048671]; negative regulation of dendrite development [GO:2000171]; negative regulation of neuron projection development [GO:0010977]; neuron migration [GO:0001764]; postsynaptic modulation of chemical synaptic transmission [GO:0099170]; spinal cord ventral commissure morphogenesis [GO:0021965] -P43403 reviewed ZAP70_HUMAN Tyrosine-protein kinase ZAP-70 (EC 2.7.10.2) (70 kDa zeta-chain associated protein) (Syk-related tyrosine kinase) ZAP70 SRK adaptive immune response [GO:0002250]; B cell activation [GO:0042113]; beta selection [GO:0043366]; calcium-mediated signaling [GO:0019722]; cell differentiation [GO:0030154]; cell surface receptor protein tyrosine kinase signaling pathway [GO:0007169]; immune response [GO:0006955]; innate immune response [GO:0045087]; intracellular signal transduction [GO:0035556]; negative thymic T cell selection [GO:0045060]; peptidyl-tyrosine phosphorylation [GO:0018108]; positive regulation of alpha-beta T cell differentiation [GO:0046638]; positive regulation of alpha-beta T cell proliferation [GO:0046641]; positive regulation of calcium-mediated signaling [GO:0050850]; positive regulation of T cell differentiation [GO:0045582]; positive thymic T cell selection [GO:0045059]; protein phosphorylation [GO:0006468]; T cell activation [GO:0042110]; T cell aggregation [GO:0070489]; T cell differentiation [GO:0030217]; T cell migration [GO:0072678]; T cell receptor signaling pathway [GO:0050852] -P43405 reviewed KSYK_HUMAN Tyrosine-protein kinase SYK (EC 2.7.10.2) (Spleen tyrosine kinase) (p72-Syk) SYK adaptive immune response [GO:0002250]; angiogenesis [GO:0001525]; animal organ morphogenesis [GO:0009887]; B cell differentiation [GO:0030183]; B cell receptor signaling pathway [GO:0050853]; beta selection [GO:0043366]; blood vessel morphogenesis [GO:0048514]; calcium-mediated signaling [GO:0019722]; cell activation [GO:0001775]; cell differentiation [GO:0030154]; cell surface receptor protein tyrosine kinase signaling pathway [GO:0007169]; cellular response to lectin [GO:1990858]; cellular response to lipid [GO:0071396]; cellular response to low-density lipoprotein particle stimulus [GO:0071404]; cellular response to molecule of fungal origin [GO:0071226]; collagen-activated tyrosine kinase receptor signaling pathway [GO:0038063]; defense response to bacterium [GO:0042742]; Fc-epsilon receptor signaling pathway [GO:0038095]; Fc-gamma receptor signaling pathway involved in phagocytosis [GO:0038096]; gamma-delta T cell differentiation [GO:0042492]; innate immune response [GO:0045087]; integrin-mediated signaling pathway [GO:0007229]; interleukin-3-mediated signaling pathway [GO:0038156]; intracellular signal transduction [GO:0035556]; leukocyte activation involved in immune response [GO:0002366]; leukocyte cell-cell adhesion [GO:0007159]; leukotriene biosynthetic process [GO:0019370]; lymph vessel development [GO:0001945]; macrophage activation involved in immune response [GO:0002281]; mast cell degranulation [GO:0043303]; negative regulation of inflammatory response to antigenic stimulus [GO:0002862]; neutrophil activation involved in immune response [GO:0002283]; neutrophil chemotaxis [GO:0030593]; peptidyl-tyrosine phosphorylation [GO:0018108]; platelet activation [GO:0030168]; positive regulation of alpha-beta T cell differentiation [GO:0046638]; positive regulation of alpha-beta T cell proliferation [GO:0046641]; positive regulation of B cell differentiation [GO:0045579]; positive regulation of bone resorption [GO:0045780]; positive regulation of calcium-mediated signaling [GO:0050850]; positive regulation of cell adhesion mediated by integrin [GO:0033630]; positive regulation of cold-induced thermogenesis [GO:0120162]; positive regulation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0043280]; positive regulation of gamma-delta T cell differentiation [GO:0045588]; positive regulation of granulocyte macrophage colony-stimulating factor production [GO:0032725]; positive regulation of interleukin-10 production [GO:0032733]; positive regulation of interleukin-12 production [GO:0032735]; positive regulation of interleukin-3 production [GO:0032752]; positive regulation of interleukin-4 production [GO:0032753]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of interleukin-8 production [GO:0032757]; positive regulation of killing of cells of another organism [GO:0051712]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of mast cell cytokine production [GO:0032765]; positive regulation of mast cell degranulation [GO:0043306]; positive regulation of monocyte chemotactic protein-1 production [GO:0071639]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of protein-containing complex assembly [GO:0031334]; positive regulation of receptor internalization [GO:0002092]; positive regulation of superoxide anion generation [GO:0032930]; positive regulation of TORC1 signaling [GO:1904263]; positive regulation of tumor necrosis factor production [GO:0032760]; positive regulation of type I interferon production [GO:0032481]; protein import into nucleus [GO:0006606]; protein phosphorylation [GO:0006468]; receptor internalization [GO:0031623]; regulation of arachidonic acid secretion [GO:0090237]; regulation of DNA-binding transcription factor activity [GO:0051090]; regulation of ERK1 and ERK2 cascade [GO:0070372]; regulation of neutrophil degranulation [GO:0043313]; regulation of phagocytosis [GO:0050764]; regulation of platelet activation [GO:0010543]; regulation of platelet aggregation [GO:0090330]; regulation of superoxide anion generation [GO:0032928]; regulation of tumor necrosis factor-mediated signaling pathway [GO:0010803]; serotonin secretion by platelet [GO:0002554]; stimulatory C-type lectin receptor signaling pathway [GO:0002223] -P47929 reviewed LEG7_HUMAN Galectin-7 (Gal-7) (HKL-14) (PI7) (p53-induced gene 1 protein) LGALS7 PIG1; LGALS7B apoptotic process [GO:0006915]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157] -P48059 reviewed LIMS1_HUMAN LIM and senescent cell antigen-like-containing domain protein 1 (Particularly interesting new Cys-His protein 1) (PINCH-1) (Renal carcinoma antigen NY-REN-48) LIMS1 PINCH PINCH1 cell-cell adhesion [GO:0098609]; cell-cell junction organization [GO:0045216]; cellular response to transforming growth factor beta stimulus [GO:0071560]; establishment of protein localization [GO:0045184]; negative regulation of DNA-templated transcription [GO:0045892]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cell-substrate adhesion [GO:0010811]; positive regulation of focal adhesion assembly [GO:0051894]; positive regulation of gene expression [GO:0010628]; positive regulation of GTPase activity [GO:0043547]; positive regulation of integrin-mediated signaling pathway [GO:2001046]; positive regulation of substrate adhesion-dependent cell spreading [GO:1900026]; tumor necrosis factor-mediated signaling pathway [GO:0033209] -P48436 reviewed SOX9_HUMAN Transcription factor SOX-9 SOX9 anterior head development [GO:0097065]; aortic valve morphogenesis [GO:0003180]; astrocyte fate commitment [GO:0060018]; bone mineralization [GO:0030282]; branching involved in ureteric bud morphogenesis [GO:0001658]; bronchus cartilage development [GO:0060532]; cAMP-mediated signaling [GO:0019933]; canonical Wnt signaling pathway [GO:0060070]; cartilage condensation [GO:0001502]; cartilage development [GO:0051216]; cell fate specification [GO:0001708]; cell proliferation involved in heart morphogenesis [GO:0061323]; cell-cell adhesion [GO:0098609]; cellular response to BMP stimulus [GO:0071773]; cellular response to epidermal growth factor stimulus [GO:0071364]; cellular response to heparin [GO:0071504]; cellular response to interleukin-1 [GO:0071347]; cellular response to mechanical stimulus [GO:0071260]; cellular response to retinoic acid [GO:0071300]; cellular response to transforming growth factor beta stimulus [GO:0071560]; chondrocyte differentiation [GO:0002062]; chondrocyte differentiation involved in endochondral bone morphogenesis [GO:0003413]; chondrocyte hypertrophy [GO:0003415]; chromatin remodeling [GO:0006338]; cochlea morphogenesis [GO:0090103]; cytoskeleton organization [GO:0007010]; endocardial cushion morphogenesis [GO:0003203]; endocrine pancreas development [GO:0031018]; epidermal growth factor receptor signaling pathway [GO:0007173]; epithelial cell proliferation involved in prostatic bud elongation [GO:0060517]; epithelial to mesenchymal transition [GO:0001837]; epithelial tube branching involved in lung morphogenesis [GO:0060441]; ERK1 and ERK2 cascade [GO:0070371]; extracellular matrix assembly [GO:0085029]; glandular epithelial cell differentiation [GO:0002067]; glial cell fate specification [GO:0021780]; growth plate cartilage chondrocyte growth [GO:0003430]; hair follicle development [GO:0001942]; Harderian gland development [GO:0070384]; heart development [GO:0007507]; heart valve development [GO:0003170]; heart valve formation [GO:0003188]; heart valve morphogenesis [GO:0003179]; intestinal epithelial cell differentiation [GO:0060575]; intestinal epithelial structure maintenance [GO:0060729]; intrahepatic bile duct development [GO:0035622]; lacrimal gland development [GO:0032808]; limb bud formation [GO:0060174]; lung smooth muscle development [GO:0061145]; male germ-line sex determination [GO:0019100]; male gonad development [GO:0008584]; mammary gland development [GO:0030879]; mesenchymal cell apoptotic process [GO:0097152]; mesenchymal cell proliferation [GO:0010463]; metanephric nephron tubule formation [GO:0072289]; morphogenesis of a branching epithelium [GO:0061138]; morphogenesis of an epithelium [GO:0002009]; negative regulation of apoptotic process [GO:0043066]; negative regulation of beta-catenin-TCF complex assembly [GO:1904864]; negative regulation of biomineral tissue development [GO:0070168]; negative regulation of bone mineralization [GO:0030502]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of chondrocyte differentiation [GO:0032331]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of epithelial cell differentiation [GO:0030857]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of fatty acid oxidation [GO:0046322]; negative regulation of gene expression [GO:0010629]; negative regulation of immune system process [GO:0002683]; negative regulation of mesenchymal cell apoptotic process [GO:2001054]; negative regulation of miRNA transcription [GO:1902894]; negative regulation of myoblast differentiation [GO:0045662]; negative regulation of ossification [GO:0030279]; negative regulation of osteoblast differentiation [GO:0045668]; negative regulation of photoreceptor cell differentiation [GO:0046533]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural crest cell development [GO:0014032]; neural crest cell fate specification [GO:0014036]; neuron fate specification [GO:0048665]; Notch signaling pathway [GO:0007219]; notochord development [GO:0030903]; nucleosome assembly [GO:0006334]; oligodendrocyte differentiation [GO:0048709]; otic vesicle formation [GO:0030916]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; positive regulation of branching involved in ureteric bud morphogenesis [GO:0090190]; positive regulation of cartilage development [GO:0061036]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cell proliferation involved in heart morphogenesis [GO:2000138]; positive regulation of chondrocyte differentiation [GO:0032332]; positive regulation of chondrocyte proliferation [GO:1902732]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial cell differentiation [GO:0030858]; positive regulation of epithelial cell migration [GO:0010634]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of extracellular matrix assembly [GO:1901203]; positive regulation of gene expression [GO:0010628]; positive regulation of kidney development [GO:0090184]; positive regulation of male gonad development [GO:2000020]; positive regulation of mesenchymal cell proliferation [GO:0002053]; positive regulation of mesenchymal stem cell differentiation [GO:2000741]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of protein catabolic process [GO:0045732]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of stem cell proliferation [GO:2000648]; positive regulation of transcription by RNA polymerase II [GO:0045944]; prostate gland development [GO:0030850]; protein localization to nucleus [GO:0034504]; protein-containing complex assembly [GO:0065003]; regulation of apoptotic process [GO:0042981]; regulation of branching involved in lung morphogenesis [GO:0061046]; regulation of cell adhesion [GO:0030155]; regulation of cell cycle process [GO:0010564]; regulation of cell population proliferation [GO:0042127]; regulation of cell proliferation involved in tissue homeostasis [GO:0060784]; regulation of epithelial cell proliferation involved in lung morphogenesis [GO:2000794]; renal vesicle induction [GO:0072034]; response to fatty acid [GO:0070542]; response to organic cyclic compound [GO:0014070]; retina development in camera-type eye [GO:0060041]; retinal rod cell differentiation [GO:0060221]; Sertoli cell development [GO:0060009]; Sertoli cell differentiation [GO:0060008]; signal transduction [GO:0007165]; skeletal system development [GO:0001501]; somatic stem cell population maintenance [GO:0035019]; spermatogenesis [GO:0007283]; stem cell proliferation [GO:0072089]; tissue homeostasis [GO:0001894]; trachea cartilage development [GO:0060534]; transcription by RNA polymerase II [GO:0006366]; type I pneumocyte differentiation [GO:0060509]; ureter morphogenesis [GO:0072197]; ureter smooth muscle cell differentiation [GO:0072193]; ureter urothelium development [GO:0072190] -P48736 reviewed PK3CG_HUMAN Phosphatidylinositol 4,5-bisphosphate 3-kinase catalytic subunit gamma isoform (PI3-kinase subunit gamma) (PI3K-gamma) (PI3Kgamma) (PtdIns-3-kinase subunit gamma) (EC 2.7.1.137) (EC 2.7.1.153) (EC 2.7.1.154) (Phosphatidylinositol 4,5-bisphosphate 3-kinase 110 kDa catalytic subunit gamma) (PtdIns-3-kinase subunit p110-gamma) (p110gamma) (Phosphoinositide-3-kinase catalytic gamma polypeptide) (Serine/threonine protein kinase PIK3CG) (EC 2.7.11.1) (p120-PI3K) PIK3CG adaptive immune response [GO:0002250]; angiogenesis [GO:0001525]; cellular response to cAMP [GO:0071320]; dendritic cell chemotaxis [GO:0002407]; endocytosis [GO:0006897]; G protein-coupled receptor signaling pathway [GO:0007186]; hepatocyte apoptotic process [GO:0097284]; immune response [GO:0006955]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; mast cell degranulation [GO:0043303]; natural killer cell chemotaxis [GO:0035747]; negative regulation of cardiac muscle contraction [GO:0055118]; negative regulation of fibroblast apoptotic process [GO:2000270]; negative regulation of triglyceride catabolic process [GO:0010897]; neutrophil chemotaxis [GO:0030593]; neutrophil extravasation [GO:0072672]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; phosphatidylinositol phosphate biosynthetic process [GO:0046854]; phosphatidylinositol-3-phosphate biosynthetic process [GO:0036092]; phosphatidylinositol-mediated signaling [GO:0048015]; phospholipase C-activating G protein-coupled receptor signaling pathway [GO:0007200]; phosphorylation [GO:0016310]; platelet aggregation [GO:0070527]; positive regulation of acute inflammatory response [GO:0002675]; positive regulation of cytokine production [GO:0001819]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of MAP kinase activity [GO:0043406]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of Rac protein signal transduction [GO:0035022]; regulation of angiogenesis [GO:0045765]; regulation of calcium ion transmembrane transport [GO:1903169]; regulation of cell adhesion mediated by integrin [GO:0033628]; respiratory burst involved in defense response [GO:0002679]; secretory granule localization [GO:0032252]; sphingosine-1-phosphate receptor signaling pathway [GO:0003376]; T cell activation [GO:0042110]; T cell chemotaxis [GO:0010818]; T cell proliferation [GO:0042098] -P48745 reviewed CCN3_HUMAN CCN family member 3 (Cellular communication network factor 3) (Insulin-like growth factor-binding protein 9) (IBP-9) (IGF-binding protein 9) (IGFBP-9) (Nephro blastoma-overexpressed gene protein homolog) (Protein NOV homolog) (NovH) CCN3 IGFBP9 NOV NOVH angiogenesis [GO:0001525]; bone regeneration [GO:1990523]; cell adhesion [GO:0007155]; cell adhesion mediated by integrin [GO:0033627]; cell chemotaxis [GO:0060326]; chondrocyte differentiation [GO:0002062]; endothelial cell chemotaxis [GO:0035767]; endothelial cell-cell adhesion [GO:0071603]; fibroblast migration [GO:0010761]; hematopoietic stem cell homeostasis [GO:0061484]; negative regulation of cell growth [GO:0030308]; negative regulation of chondrocyte proliferation [GO:1902731]; negative regulation of inflammatory response [GO:0050728]; negative regulation of insulin secretion [GO:0046676]; negative regulation of monocyte chemotaxis [GO:0090027]; negative regulation of myotube differentiation [GO:0010832]; negative regulation of non-canonical NF-kappaB signal transduction [GO:1901223]; negative regulation of sensory perception of pain [GO:1904057]; negative regulation of SMAD protein signal transduction [GO:0060392]; positive regulation of cell differentiation [GO:0045597]; positive regulation of Notch signaling pathway [GO:0045747]; regulation of gene expression [GO:0010468]; signal transduction [GO:0007165]; smooth muscle cell migration [GO:0014909]; smooth muscle cell proliferation [GO:0048659]; type B pancreatic cell proliferation [GO:0044342] -P49238 reviewed CX3C1_HUMAN CX3C chemokine receptor 1 (C-X3-C CKR-1) (CX3CR1) (Beta chemokine receptor-like 1) (CMK-BRL-1) (CMK-BRL1) (Fractalkine receptor) (G-protein coupled receptor 13) (V28) CX3CR1 CMKBRL1 GPR13 adaptive immune response [GO:0002250]; antifungal innate immune response [GO:0061760]; autocrine signaling [GO:0035425]; brain development [GO:0007420]; calcium-mediated signaling [GO:0019722]; cell adhesion [GO:0007155]; cell chemotaxis [GO:0060326]; cell-cell signaling [GO:0007267]; cellular defense response [GO:0006968]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to transforming growth factor beta stimulus [GO:0071560]; cellular response to tumor necrosis factor [GO:0071356]; central nervous system maturation [GO:0021626]; chemotaxis [GO:0006935]; G protein-coupled receptor signaling pathway [GO:0007186]; host-mediated regulation of intestinal microbiota composition [GO:0048874]; immune response [GO:0006955]; innate immune response [GO:0045087]; leukocyte chemotaxis [GO:0030595]; leukocyte tethering or rolling [GO:0050901]; memory [GO:0007613]; microglial cell activation involved in immune response [GO:0002282]; modulation of chemical synaptic transmission [GO:0050804]; multiple spine synapse organization, single dendrite [GO:0150090]; negative regulation of apoptotic signaling pathway [GO:2001234]; negative regulation of cell migration [GO:0030336]; negative regulation of hippocampal neuron apoptotic process [GO:0110091]; negative regulation of interleukin-1 beta production [GO:0032691]; negative regulation of long-term synaptic potentiation [GO:1900272]; negative regulation of microglial cell mediated cytotoxicity [GO:1904150]; phospholipase C-activating G protein-coupled receptor signaling pathway [GO:0007200]; positive regulation of angiogenesis [GO:0045766]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of I-kappaB phosphorylation [GO:1903721]; positive regulation of microglial cell migration [GO:1904141]; positive regulation of monocyte chemotaxis [GO:0090026]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of neurogenesis [GO:0050769]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; regulation of microglial cell migration [GO:1904139]; regulation of neurogenesis [GO:0050767]; regulation of nitric oxide biosynthetic process [GO:0045428]; regulation of synaptic plasticity [GO:0048167]; regulation of tumor necrosis factor production [GO:0032680]; response to ischemia [GO:0002931]; response to wounding [GO:0009611]; social behavior [GO:0035176]; synapse maturation [GO:0060074]; synapse pruning [GO:0098883] -P49747 reviewed COMP_HUMAN Cartilage oligomeric matrix protein (COMP) (Thrombospondin-5) (TSP5) COMP animal organ morphogenesis [GO:0009887]; apoptotic process [GO:0006915]; artery morphogenesis [GO:0048844]; BMP signaling pathway [GO:0030509]; bone mineralization [GO:0030282]; cartilage homeostasis [GO:1990079]; cellular senescence [GO:0090398]; chondrocyte development [GO:0002063]; chondrocyte proliferation [GO:0035988]; collagen fibril organization [GO:0030199]; growth plate cartilage development [GO:0003417]; limb development [GO:0060173]; multicellular organism growth [GO:0035264]; musculoskeletal movement [GO:0050881]; negative regulation of apoptotic process [GO:0043066]; negative regulation of hemostasis [GO:1900047]; platelet aggregation [GO:0070527]; positive regulation of chondrocyte proliferation [GO:1902732]; protein homooligomerization [GO:0051260]; protein processing [GO:0016485]; protein secretion [GO:0009306]; regulation of bone mineralization [GO:0030500]; regulation of gene expression [GO:0010468]; response to unfolded protein [GO:0006986]; skeletal system development [GO:0001501]; skin development [GO:0043588]; tendon development [GO:0035989]; vascular associated smooth muscle cell development [GO:0097084]; vascular associated smooth muscle contraction [GO:0014829] -P49768 reviewed PSN1_HUMAN Presenilin-1 (PS-1) (EC 3.4.23.-) (Protein S182) [Cleaved into: Presenilin-1 NTF subunit; Presenilin-1 CTF subunit; Presenilin-1 CTF12 (PS1-CTF12)] PSEN1 AD3 PS1 PSNL1 amyloid precursor protein catabolic process [GO:0042987]; amyloid precursor protein metabolic process [GO:0042982]; amyloid-beta formation [GO:0034205]; apoptotic signaling pathway [GO:0097190]; astrocyte activation [GO:0048143]; astrocyte activation involved in immune response [GO:0002265]; autophagosome assembly [GO:0000045]; blood vessel development [GO:0001568]; brain morphogenesis [GO:0048854]; Cajal-Retzius cell differentiation [GO:0021870]; calcium ion homeostasis [GO:0055074]; cell fate specification [GO:0001708]; cell-cell adhesion [GO:0098609]; cellular response to amyloid-beta [GO:1904646]; cerebellum development [GO:0021549]; cerebral cortex cell migration [GO:0021795]; choline transport [GO:0015871]; DNA damage response [GO:0006974]; dorsal/ventral neural tube patterning [GO:0021904]; embryonic limb morphogenesis [GO:0030326]; endoplasmic reticulum calcium ion homeostasis [GO:0032469]; epithelial cell proliferation [GO:0050673]; heart looping [GO:0001947]; hematopoietic progenitor cell differentiation [GO:0002244]; intracellular signal transduction [GO:0035556]; L-glutamate import across plasma membrane [GO:0098712]; learning or memory [GO:0007611]; locomotion [GO:0040011]; membrane protein ectodomain proteolysis [GO:0006509]; memory [GO:0007613]; mitochondrial transport [GO:0006839]; myeloid dendritic cell differentiation [GO:0043011]; negative regulation of apoptotic process [GO:0043066]; negative regulation of apoptotic signaling pathway [GO:2001234]; negative regulation of axonogenesis [GO:0050771]; negative regulation of core promoter binding [GO:1904797]; negative regulation of gene expression [GO:0010629]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of protein phosphorylation [GO:0001933]; negative regulation of transcription by RNA polymerase II [GO:0000122]; negative regulation of ubiquitin-dependent protein catabolic process [GO:2000059]; neural retina development [GO:0003407]; neuron apoptotic process [GO:0051402]; neuron cellular homeostasis [GO:0070050]; neuron development [GO:0048666]; neuron migration [GO:0001764]; neuron projection maintenance [GO:1990535]; Notch receptor processing [GO:0007220]; Notch signaling pathway [GO:0007219]; positive regulation of amyloid fibril formation [GO:1905908]; positive regulation of apoptotic process [GO:0043065]; positive regulation of coagulation [GO:0050820]; positive regulation of dendritic spine development [GO:0060999]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of glycolytic process [GO:0045821]; positive regulation of L-glutamate import across plasma membrane [GO:0002038]; positive regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032436]; positive regulation of protein import into nucleus [GO:0042307]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of receptor recycling [GO:0001921]; positive regulation of tumor necrosis factor production [GO:0032760]; post-embryonic development [GO:0009791]; protein catabolic process at postsynapse [GO:0140249]; protein glycosylation [GO:0006486]; protein processing [GO:0016485]; protein transport [GO:0015031]; regulation of canonical Wnt signaling pathway [GO:0060828]; regulation of gene expression [GO:0010468]; regulation of neuron projection development [GO:0010975]; regulation of phosphorylation [GO:0042325]; regulation of postsynapse organization [GO:0099175]; regulation of resting membrane potential [GO:0060075]; regulation of synaptic plasticity [GO:0048167]; regulation of synaptic transmission, glutamatergic [GO:0051966]; regulation of synaptic vesicle cycle [GO:0098693]; response to oxidative stress [GO:0006979]; sequestering of calcium ion [GO:0051208]; skeletal system morphogenesis [GO:0048705]; skin morphogenesis [GO:0043589]; smooth endoplasmic reticulum calcium ion homeostasis [GO:0051563]; somitogenesis [GO:0001756]; synapse organization [GO:0050808]; synaptic vesicle targeting [GO:0016080]; T cell activation involved in immune response [GO:0002286]; T cell receptor signaling pathway [GO:0050852]; thymus development [GO:0048538] -P49961 reviewed ENTP1_HUMAN Ectonucleoside triphosphate diphosphohydrolase 1 (EC 3.6.1.5) (ATP diphosphohydrolase) (ATP-DPH) (ATPDase) (Ecto-ATP diphosphohydrolase 1) (Ecto-ATPDase 1) (Ecto-ATPase 1) (Ecto-apyrase) (Lymphoid cell activation antigen) (Nucleoside triphosphate diphosphohydrolase 1) (NTPDase1) (CD antigen CD39) ENTPD1 CD39 blood coagulation [GO:0007596]; cell adhesion [GO:0007155]; nucleoside diphosphate catabolic process [GO:0009134]; platelet aggregation [GO:0070527] -P50452 reviewed SPB8_HUMAN Serpin B8 (Cytoplasmic antiproteinase 2) (CAP-2) (CAP2) (Peptidase inhibitor 8) (PI-8) SERPINB8 PI8 epithelial cell-cell adhesion [GO:0090136]; negative regulation of endopeptidase activity [GO:0010951] -P52803 reviewed EFNA5_HUMAN Ephrin-A5 (AL-1) (EPH-related receptor tyrosine kinase ligand 7) (LERK-7) EFNA5 EPLG7 LERK7 axon guidance [GO:0007411]; cellular response to follicle-stimulating hormone stimulus [GO:0071372]; cellular response to forskolin [GO:1904322]; collateral sprouting [GO:0048668]; ephrin receptor signaling pathway [GO:0048013]; negative regulation of substrate adhesion-dependent cell spreading [GO:1900025]; nervous system development [GO:0007399]; positive regulation of collateral sprouting [GO:0048672]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of synapse assembly [GO:0051965]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of cell morphogenesis [GO:0022604]; regulation of cell-cell adhesion [GO:0022407]; regulation of focal adhesion assembly [GO:0051893]; regulation of GTPase activity [GO:0043087]; regulation of insulin secretion involved in cellular response to glucose stimulus [GO:0061178]; regulation of microtubule cytoskeleton organization [GO:0070507]; retinal ganglion cell axon guidance [GO:0031290]; synaptic membrane adhesion [GO:0099560] -P53582 reviewed MAP11_HUMAN Methionine aminopeptidase 1 (MAP 1) (MetAP 1) (EC 3.4.11.18) (Peptidase M 1) METAP1 KIAA0094 N-terminal protein amino acid modification [GO:0031365]; peptidyl-methionine modification [GO:0018206]; platelet aggregation [GO:0070527]; protein maturation [GO:0051604]; proteolysis [GO:0006508]; regulation of translation [GO:0006417] -P53708 reviewed ITA8_HUMAN Integrin alpha-8 [Cleaved into: Integrin alpha-8 heavy chain; Integrin alpha-8 light chain] ITGA8 cell adhesion mediated by integrin [GO:0033627]; cell projection organization [GO:0030030]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; establishment of protein localization [GO:0045184]; extracellular matrix organization [GO:0030198]; inner ear morphogenesis [GO:0042472]; integrin-mediated signaling pathway [GO:0007229]; kidney development [GO:0001822]; memory [GO:0007613]; mesodermal cell differentiation [GO:0048333]; metanephros development [GO:0001656]; nervous system development [GO:0007399]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta receptor signaling pathway [GO:0030511]; smooth muscle cell differentiation [GO:0051145]; smooth muscle tissue development [GO:0048745]; substrate adhesion-dependent cell spreading [GO:0034446]; transforming growth factor beta receptor signaling pathway [GO:0007179] -P55196 reviewed AFAD_HUMAN Afadin (ALL1-fused gene from chromosome 6 protein) (Protein AF-6) (Afadin adherens junction formation factor) AFDN AF6 MLLT4 bicellular tight junction assembly [GO:0070830]; cell adhesion [GO:0007155]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell signaling [GO:0007267]; establishment of endothelial intestinal barrier [GO:0090557]; establishment of protein localization to plasma membrane [GO:0061951]; negative regulation of cell migration [GO:0030336]; pore complex assembly [GO:0046931]; positive regulation of cell-cell adhesion [GO:0022409]; positive regulation of cell-cell adhesion mediated by cadherin [GO:2000049]; positive regulation of gene expression [GO:0010628]; regulation of protein localization [GO:0032880]; signal transduction [GO:0007165] -P55283 reviewed CADH4_HUMAN Cadherin-4 (Retinal cadherin) (R-CAD) (R-cadherin) CDH4 adherens junction organization [GO:0034332]; axon extension [GO:0048675]; axon guidance [GO:0007411]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell adhesion [GO:0007155]; cell migration [GO:0016477]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; positive regulation of axon extension [GO:0045773] -P55285 reviewed CADH6_HUMAN Cadherin-6 (Kidney cadherin) (K-cadherin) CDH6 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell adhesion [GO:0007155]; cell migration [GO:0016477]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; Notch signaling pathway [GO:0007219]; synaptic membrane adhesion [GO:0099560] -P55286 reviewed CADH8_HUMAN Cadherin-8 CDH8 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell adhesion [GO:0007155]; cell migration [GO:0016477]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; regulation of synapse organization [GO:0050807]; response to cold [GO:0009409]; synaptic transmission, glutamatergic [GO:0035249] -P55287 reviewed CAD11_HUMAN Cadherin-11 (OSF-4) (Osteoblast cadherin) (OB-cadherin) CDH11 adherens junction organization [GO:0034332]; aortic valve formation [GO:0003189]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell adhesion [GO:0007155]; cell migration [GO:0016477]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; corticospinal tract morphogenesis [GO:0021957]; focal adhesion assembly [GO:0048041]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; modulation of chemical synaptic transmission [GO:0050804]; negative regulation of cell migration [GO:0030336]; ossification [GO:0001503]; skeletal system development [GO:0001501] -P55289 reviewed CAD12_HUMAN Cadherin-12 (Brain cadherin) (BR-cadherin) (Neural type cadherin 2) (N-cadherin 2) CDH12 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell migration [GO:0016477]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -P55290 reviewed CAD13_HUMAN Cadherin-13 (Heart cadherin) (H-cadherin) (P105) (Truncated cadherin) (T-cad) (T-cadherin) CDH13 CDHH adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell migration [GO:0016477]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; endothelial cell migration [GO:0043542]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; keratinocyte proliferation [GO:0043616]; lamellipodium assembly [GO:0030032]; localization within membrane [GO:0051668]; low-density lipoprotein particle mediated signaling [GO:0055096]; negative regulation of cell adhesion [GO:0007162]; negative regulation of cell population proliferation [GO:0008285]; positive regulation of calcium-mediated signaling [GO:0050850]; positive regulation of cell migration [GO:0030335]; positive regulation of cell-matrix adhesion [GO:0001954]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of positive chemotaxis [GO:0050927]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of transcription by RNA polymerase II [GO:0045944]; Rac protein signal transduction [GO:0016601]; regulation of endocytosis [GO:0030100]; regulation of epidermal growth factor receptor signaling pathway [GO:0042058]; Rho protein signal transduction [GO:0007266]; sprouting angiogenesis [GO:0002040] -P55291 reviewed CAD15_HUMAN Cadherin-15 (Cadherin-14) (Muscle cadherin) (M-cadherin) CDH15 CDH14 CDH3 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell adhesion [GO:0007155]; cell migration [GO:0016477]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -P56199 reviewed ITA1_HUMAN Integrin alpha-1 (CD49 antigen-like family member A) (Laminin and collagen receptor) (VLA-1) (CD antigen CD49a) ITGA1 cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; cellular extravasation [GO:0045123]; integrin-mediated signaling pathway [GO:0007229]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of epidermal growth factor receptor signaling pathway [GO:0042059]; neuron projection morphogenesis [GO:0048812]; neutrophil chemotaxis [GO:0030593]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of phosphoprotein phosphatase activity [GO:0032516]; vasodilation [GO:0042311] -P56704 reviewed WNT3A_HUMAN Protein Wnt-3a WNT3A axis elongation involved in somitogenesis [GO:0090245]; axon guidance [GO:0007411]; B cell proliferation [GO:0042100]; calcium ion transmembrane transport via low voltage-gated calcium channel [GO:0090676]; canonical Wnt signaling pathway [GO:0060070]; cardiac muscle cell fate commitment [GO:0060923]; cell fate commitment [GO:0045165]; cell population proliferation [GO:0008283]; cell proliferation in forebrain [GO:0021846]; cell proliferation in midbrain [GO:0033278]; cellular response to retinoic acid [GO:0071300]; COP9 signalosome assembly [GO:0010387]; dorsal/ventral neural tube patterning [GO:0021904]; extracellular matrix organization [GO:0030198]; fat cell differentiation [GO:0045444]; heart development [GO:0007507]; heart looping [GO:0001947]; hemopoiesis [GO:0030097]; hippocampus development [GO:0021766]; in utero embryonic development [GO:0001701]; inner ear morphogenesis [GO:0042472]; mammary gland development [GO:0030879]; midbrain dopaminergic neuron differentiation [GO:1904948]; modulation of chemical synaptic transmission [GO:0050804]; myoblast differentiation [GO:0045445]; negative regulation of axon extension involved in axon guidance [GO:0048843]; negative regulation of dopaminergic neuron differentiation [GO:1904339]; negative regulation of fat cell differentiation [GO:0045599]; negative regulation of neurogenesis [GO:0050768]; negative regulation of neuron projection development [GO:0010977]; neuron differentiation [GO:0030182]; non-canonical Wnt signaling pathway [GO:0035567]; osteoblast differentiation [GO:0001649]; paraxial mesodermal cell fate commitment [GO:0048343]; platelet aggregation [GO:0070527]; positive regulation of B cell proliferation [GO:0030890]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of cardiac muscle cell differentiation [GO:2000727]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cell-cell adhesion mediated by cadherin [GO:2000049]; positive regulation of collateral sprouting in absence of injury [GO:0048697]; positive regulation of cytokine production [GO:0001819]; positive regulation of dermatome development [GO:0061184]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of gene expression [GO:0010628]; positive regulation of hepatocyte proliferation [GO:2000347]; positive regulation of mesodermal cell fate specification [GO:0048337]; positive regulation of neural precursor cell proliferation [GO:2000179]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of protein localization to plasma membrane [GO:1903078]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of receptor internalization [GO:0002092]; positive regulation of skeletal muscle tissue development [GO:0048643]; positive regulation of transcription by RNA polymerase II [GO:0045944]; post-anal tail morphogenesis [GO:0036342]; presynapse assembly [GO:0099054]; protein localization [GO:0008104]; regulation of microtubule cytoskeleton organization [GO:0070507]; regulation of postsynapse to nucleus signaling pathway [GO:1905539]; regulation of presynapse assembly [GO:1905606]; regulation of synapse organization [GO:0050807]; secondary palate development [GO:0062009]; skeletal muscle cell differentiation [GO:0035914]; somatic stem cell division [GO:0048103]; spinal cord association neuron differentiation [GO:0021527]; synaptic vesicle recycling [GO:0036465]; transcription by RNA polymerase II [GO:0006366]; Wnt signaling pathway involved in forebrain neuroblast division [GO:0021874] -P56706 reviewed WNT7B_HUMAN Protein Wnt-7b WNT7B canonical Wnt signaling pathway [GO:0060070]; cell fate commitment [GO:0045165]; cellular response to retinoic acid [GO:0071300]; central nervous system vasculogenesis [GO:0022009]; chemoattraction of dopaminergic neuron axon [GO:0036516]; chorio-allantoic fusion [GO:0060710]; developmental growth involved in morphogenesis [GO:0060560]; embryonic organ development [GO:0048568]; embryonic placenta morphogenesis [GO:0060669]; establishment or maintenance of polarity of embryonic epithelium [GO:0016332]; fibroblast proliferation [GO:0048144]; forebrain regionalization [GO:0021871]; homeostatic process [GO:0042592]; in utero embryonic development [GO:0001701]; inner medullary collecting duct development [GO:0072061]; intracellular oxygen homeostasis [GO:0032364]; lens fiber cell development [GO:0070307]; lobar bronchus development [GO:0060482]; lung development [GO:0030324]; lung epithelium development [GO:0060428]; lung morphogenesis [GO:0060425]; mammary gland epithelium development [GO:0061180]; metanephric collecting duct development [GO:0072205]; metanephric epithelium development [GO:0072207]; metanephric loop of Henle development [GO:0072236]; metanephros morphogenesis [GO:0003338]; neuron differentiation [GO:0030182]; outer medullary collecting duct development [GO:0072060]; positive regulation of JNK cascade [GO:0046330]; positive regulation of osteoblast differentiation [GO:0045669]; regulation of cell projection size [GO:0032536]; renal inner medulla development [GO:0072053]; renal outer medulla development [GO:0072054]; response to glucocorticoid [GO:0051384]; stem cell proliferation [GO:0072089]; synapse organization [GO:0050808]; trachea cartilage morphogenesis [GO:0060535]; Wnt signaling pathway [GO:0016055]; Wnt signaling pathway, planar cell polarity pathway [GO:0060071] -P56746 reviewed CLD15_HUMAN Claudin-15 CLDN15 bicellular tight junction assembly [GO:0070830]; calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules [GO:0016338]; cell adhesion [GO:0007155]; monoatomic ion transport [GO:0006811] -P56747 reviewed CLD6_HUMAN Claudin-6 (Skullin) CLDN6 UNQ757/PRO1488 bicellular tight junction assembly [GO:0070830]; calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules [GO:0016338]; cell adhesion [GO:0007155] -P56748 reviewed CLD8_HUMAN Claudin-8 CLDN8 UNQ779/PRO1573 bicellular tight junction assembly [GO:0070830]; calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules [GO:0016338]; cell adhesion [GO:0007155] -P56750 reviewed CLD17_HUMAN Claudin-17 CLDN17 UNQ758/PRO1489 bicellular tight junction assembly [GO:0070830]; calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules [GO:0016338]; cell adhesion [GO:0007155]; inorganic anion transport [GO:0015698] -P56856 reviewed CLD18_HUMAN Claudin-18 CLDN18 UNQ778/PRO1572 bicellular tight junction assembly [GO:0070830]; calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules [GO:0016338]; cell adhesion [GO:0007155]; cellular response to estrogen stimulus [GO:0071391]; digestive tract development [GO:0048565]; epithelial cell proliferation [GO:0050673]; epithelial fluid transport [GO:0042045]; lung alveolus development [GO:0048286]; negative regulation of bone resorption [GO:0045779]; negative regulation of osteoclast development [GO:2001205]; negative regulation of protein localization to nucleus [GO:1900181]; negative regulation of tumor necrosis factor-mediated signaling pathway [GO:0010804]; organ growth [GO:0035265]; protein localization to nucleus [GO:0034504]; response to ethanol [GO:0045471]; tight junction organization [GO:0120193] -P56880 reviewed CLD20_HUMAN Claudin-20 CLDN20 bicellular tight junction assembly [GO:0070830]; calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules [GO:0016338]; cell adhesion [GO:0007155] -P57087 reviewed JAM2_HUMAN Junctional adhesion molecule B (JAM-B) (Junctional adhesion molecule 2) (JAM-2) (Vascular endothelial junction-associated molecule) (VE-JAM) (CD antigen CD322) JAM2 C21orf43 VEJAM UNQ219/PRO245 cell-cell adhesion [GO:0098609]; cellular extravasation [GO:0045123]; hematopoietic stem cell migration to bone marrow [GO:0097241]; leukocyte cell-cell adhesion [GO:0007159]; leukocyte tethering or rolling [GO:0050901]; lymphocyte aggregation [GO:0071593]; maintenance of blood-brain barrier [GO:0035633]; myoblast fusion [GO:0007520]; negative regulation of myelination [GO:0031642]; positive regulation of lymphocyte migration [GO:2000403]; spermatid development [GO:0007286] -P57739 reviewed CLD2_HUMAN Claudin-2 (SP82) CLDN2 PSEC0059 SP82 UNQ705/PRO1356 bicellular tight junction assembly [GO:0070830]; calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules [GO:0016338]; cell-cell adhesion [GO:0098609] -P58400 reviewed NRX1B_HUMAN Neurexin-1-beta (Neurexin I-beta) NRXN1 adult behavior [GO:0030534]; angiogenesis [GO:0001525]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cellular response to calcium ion [GO:0071277]; cerebellar granule cell differentiation [GO:0021707]; establishment of protein localization [GO:0045184]; gamma-aminobutyric acid receptor clustering [GO:0097112]; gephyrin clustering involved in postsynaptic density assembly [GO:0097116]; guanylate kinase-associated protein clustering [GO:0097117]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; learning [GO:0007612]; negative regulation of filopodium assembly [GO:0051490]; negative regulation of gene expression [GO:0010629]; neuroligin clustering involved in postsynaptic membrane assembly [GO:0097118]; neuron cell-cell adhesion [GO:0007158]; neuron projection development [GO:0031175]; neuron projection morphogenesis [GO:0048812]; neuronal signal transduction [GO:0023041]; NMDA glutamate receptor clustering [GO:0097114]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of excitatory postsynaptic potential [GO:2000463]; positive regulation of fibroblast growth factor receptor signaling pathway [GO:0045743]; positive regulation of gene expression [GO:0010628]; positive regulation of neuromuscular synaptic transmission [GO:1900075]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of presynaptic active zone assembly [GO:1905520]; positive regulation of protein kinase A signaling [GO:0010739]; positive regulation of protein kinase C activity [GO:1900020]; positive regulation of protein localization to plasma membrane [GO:1903078]; positive regulation of synapse assembly [GO:0051965]; positive regulation of synaptic transmission, GABAergic [GO:0032230]; positive regulation of synaptic transmission, glutamatergic [GO:0051968]; postsynaptic density protein 95 clustering [GO:0097119]; postsynaptic membrane assembly [GO:0097104]; presynaptic membrane assembly [GO:0097105]; protein localization to synapse [GO:0035418]; protein-containing complex assembly involved in synapse maturation [GO:0090126]; receptor localization to synapse [GO:0097120]; regulation of AMPA receptor activity [GO:2000311]; regulation of NMDA receptor activity [GO:2000310]; signal transduction [GO:0007165]; social behavior [GO:0035176]; synapse assembly [GO:0007416]; synaptic vesicle clustering [GO:0097091]; vocalization behavior [GO:0071625] -P58401 reviewed NRX2B_HUMAN Neurexin-2-beta (Neurexin II-beta) NRXN2 neuron cell-cell adhesion [GO:0007158]; signal transduction [GO:0007165] -P60709 reviewed ACTB_HUMAN Actin, cytoplasmic 1 (EC 3.6.4.-) (Beta-actin) [Cleaved into: Actin, cytoplasmic 1, N-terminally processed] ACTB adherens junction assembly [GO:0034333]; apical protein localization [GO:0045176]; axonogenesis [GO:0007409]; cell motility [GO:0048870]; cellular response to cytochalasin B [GO:0072749]; chromatin remodeling [GO:0006338]; establishment or maintenance of cell polarity [GO:0007163]; maintenance of blood-brain barrier [GO:0035633]; morphogenesis of a polarized epithelium [GO:0001738]; negative regulation of cell differentiation [GO:0045596]; negative regulation of protein binding [GO:0032091]; platelet aggregation [GO:0070527]; positive regulation of cell differentiation [GO:0045597]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of double-strand break repair [GO:2000781]; positive regulation of double-strand break repair via homologous recombination [GO:1905168]; positive regulation of myoblast differentiation [GO:0045663]; positive regulation of norepinephrine uptake [GO:0051623]; positive regulation of stem cell population maintenance [GO:1902459]; positive regulation of T cell differentiation [GO:0045582]; postsynaptic actin cytoskeleton organization [GO:0098974]; protein localization to adherens junction [GO:0071896]; regulation of apoptotic process [GO:0042981]; regulation of cell cycle [GO:0051726]; regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0000079]; regulation of double-strand break repair [GO:2000779]; regulation of G0 to G1 transition [GO:0070316]; regulation of G1/S transition of mitotic cell cycle [GO:2000045]; regulation of mitotic metaphase/anaphase transition [GO:0030071]; regulation of norepinephrine uptake [GO:0051621]; regulation of nucleotide-excision repair [GO:2000819]; regulation of protein localization to plasma membrane [GO:1903076]; regulation of synaptic vesicle endocytosis [GO:1900242]; regulation of transcription by RNA polymerase II [GO:0006357]; regulation of transepithelial transport [GO:0150111]; regulation of transmembrane transporter activity [GO:0022898]; substantia nigra development [GO:0021762] -P61026 reviewed RAB10_HUMAN Ras-related protein Rab-10 (EC 3.6.5.2) RAB10 antigen processing and presentation [GO:0019882]; axonogenesis [GO:0007409]; cellular response to insulin stimulus [GO:0032869]; endoplasmic reticulum tubular network organization [GO:0071786]; endosomal transport [GO:0016197]; establishment of neuroblast polarity [GO:0045200]; establishment of protein localization to endoplasmic reticulum membrane [GO:0097051]; establishment of protein localization to membrane [GO:0090150]; exocytosis [GO:0006887]; Golgi to plasma membrane protein transport [GO:0043001]; Golgi to plasma membrane transport [GO:0006893]; polarized epithelial cell differentiation [GO:0030859]; protein localization to basolateral plasma membrane [GO:1903361]; protein localization to plasma membrane [GO:0072659]; protein secretion [GO:0009306]; regulated exocytosis [GO:0045055]; vesicle-mediated transport [GO:0016192] -P61225 reviewed RAP2B_HUMAN Ras-related protein Rap-2b (EC 3.6.5.2) RAP2B negative regulation of cell migration [GO:0030336]; platelet activation [GO:0030168]; platelet aggregation [GO:0070527]; positive regulation of protein autophosphorylation [GO:0031954]; Rap protein signal transduction [GO:0032486]; regulation of protein tyrosine kinase activity [GO:0061097]; signal transduction [GO:0007165] -P61764 reviewed STXB1_HUMAN Syntaxin-binding protein 1 (MUNC18-1) (N-Sec1) (Protein unc-18 homolog 1) (Unc18-1) (Protein unc-18 homolog A) (Unc-18A) (p67) STXBP1 UNC18A axon target recognition [GO:0007412]; cellular response to type II interferon [GO:0071346]; developmental process involved in reproduction [GO:0003006]; intracellular protein transport [GO:0006886]; long-term synaptic depression [GO:0060292]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of protein-containing complex assembly [GO:0031333]; negative regulation of synaptic transmission, GABAergic [GO:0032229]; neuromuscular synaptic transmission [GO:0007274]; neuron apoptotic process [GO:0051402]; neurotransmitter secretion [GO:0007269]; platelet aggregation [GO:0070527]; platelet degranulation [GO:0002576]; positive regulation of calcium ion-dependent exocytosis [GO:0045956]; positive regulation of glutamate secretion, neurotransmission [GO:1903296]; positive regulation of mast cell degranulation [GO:0043306]; positive regulation of vesicle docking [GO:0106022]; presynaptic dense core vesicle exocytosis [GO:0099525]; protein localization to plasma membrane [GO:0072659]; protein stabilization [GO:0050821]; regulation of acrosomal vesicle exocytosis [GO:2000367]; regulation of SNARE complex assembly [GO:0035542]; regulation of synaptic vesicle fusion to presynaptic active zone membrane [GO:0031630]; regulation of synaptic vesicle priming [GO:0010807]; response to estradiol [GO:0032355]; SNARE complex assembly [GO:0035493]; synaptic vesicle maturation [GO:0016188]; synaptic vesicle priming [GO:0016082]; vesicle docking involved in exocytosis [GO:0006904]; vesicle-mediated transport [GO:0016192] -P61812 reviewed TGFB2_HUMAN Transforming growth factor beta-2 proprotein (Cetermin) (Glioblastoma-derived T-cell suppressor factor) (G-TSF) [Cleaved into: Latency-associated peptide (LAP); Transforming growth factor beta-2 (TGF-beta-2)] TGFB2 activation of protein kinase activity [GO:0032147]; ascending aorta morphogenesis [GO:0035910]; atrial septum morphogenesis [GO:0060413]; atrial septum primum morphogenesis [GO:0003289]; atrioventricular valve morphogenesis [GO:0003181]; cardiac epithelial to mesenchymal transition [GO:0060317]; cardiac muscle cell proliferation [GO:0060038]; cardiac right ventricle morphogenesis [GO:0003215]; cardioblast differentiation [GO:0010002]; cell migration [GO:0016477]; cell morphogenesis [GO:0000902]; cell-cell junction organization [GO:0045216]; collagen fibril organization [GO:0030199]; cranial skeletal system development [GO:1904888]; dopamine biosynthetic process [GO:0042416]; embryo development ending in birth or egg hatching [GO:0009792]; embryonic digestive tract development [GO:0048566]; embryonic limb morphogenesis [GO:0030326]; endocardial cushion fusion [GO:0003274]; endocardial cushion morphogenesis [GO:0003203]; epithelial cell differentiation [GO:0030855]; epithelial to mesenchymal transition [GO:0001837]; extrinsic apoptotic signaling pathway [GO:0097191]; eye development [GO:0001654]; generation of neurons [GO:0048699]; glial cell migration [GO:0008347]; hair follicle development [GO:0001942]; hair follicle morphogenesis [GO:0031069]; heart development [GO:0007507]; heart morphogenesis [GO:0003007]; heart valve morphogenesis [GO:0003179]; hemopoiesis [GO:0030097]; inner ear development [GO:0048839]; kidney development [GO:0001822]; male gonad development [GO:0008584]; membranous septum morphogenesis [GO:0003149]; negative regulation of angiogenesis [GO:0016525]; negative regulation of cell growth [GO:0030308]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of epithelial to mesenchymal transition involved in endocardial cushion formation [GO:1905006]; negative regulation of gene expression [GO:0010629]; negative regulation of macrophage cytokine production [GO:0010936]; negative regulation of Ras protein signal transduction [GO:0046580]; neural retina development [GO:0003407]; neural tube closure [GO:0001843]; neuron development [GO:0048666]; neutrophil chemotaxis [GO:0030593]; odontogenesis [GO:0042476]; outflow tract septum morphogenesis [GO:0003148]; pharyngeal arch artery morphogenesis [GO:0061626]; positive regulation of cardioblast differentiation [GO:0051891]; positive regulation of cell adhesion mediated by integrin [GO:0033630]; positive regulation of cell cycle [GO:0045787]; positive regulation of cell division [GO:0051781]; positive regulation of cell growth [GO:0030307]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of epithelial cell migration [GO:0010634]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of epithelial to mesenchymal transition involved in endocardial cushion formation [GO:1905007]; positive regulation of heart contraction [GO:0045823]; positive regulation of immune response [GO:0050778]; positive regulation of integrin biosynthetic process [GO:0045726]; positive regulation of miRNA transcription [GO:1902895]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of protein secretion [GO:0050714]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of stress-activated MAPK cascade [GO:0032874]; positive regulation of timing of catagen [GO:0051795]; pulmonary valve morphogenesis [GO:0003184]; regulation of apoptotic process involved in outflow tract morphogenesis [GO:1902256]; regulation of cell population proliferation [GO:0042127]; regulation of timing of catagen [GO:0051794]; regulation of transforming growth factor beta2 production [GO:0032909]; response to hypoxia [GO:0001666]; response to progesterone [GO:0032570]; response to wounding [GO:0009611]; salivary gland morphogenesis [GO:0007435]; secondary palate development [GO:0062009]; signaling [GO:0023052]; skeletal system development [GO:0001501]; somatic stem cell division [GO:0048103]; substantia propria of cornea development [GO:1903701]; transforming growth factor beta receptor signaling pathway [GO:0007179]; uterine wall breakdown [GO:0042704]; uterus development [GO:0060065]; ventricular septum morphogenesis [GO:0060412]; ventricular trabecula myocardium morphogenesis [GO:0003222]; wound healing [GO:0042060] -P62136 reviewed PP1A_HUMAN Serine/threonine-protein phosphatase PP1-alpha catalytic subunit (PP-1A) (EC 3.1.3.16) PPP1CA PPP1A branching morphogenesis of an epithelial tube [GO:0048754]; cell division [GO:0051301]; circadian regulation of gene expression [GO:0032922]; dephosphorylation [GO:0016311]; entrainment of circadian clock by photoperiod [GO:0043153]; glycogen metabolic process [GO:0005977]; lung development [GO:0030324]; positive regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001241]; protein dephosphorylation [GO:0006470]; regulation of canonical Wnt signaling pathway [GO:0060828]; regulation of circadian rhythm [GO:0042752]; regulation of glycogen biosynthetic process [GO:0005979]; regulation of glycogen catabolic process [GO:0005981]; regulation of translational initiation [GO:0006446]; response to lead ion [GO:0010288]; telomere maintenance in response to DNA damage [GO:0043247] -P62937 reviewed PPIA_HUMAN Peptidyl-prolyl cis-trans isomerase A (PPIase A) (EC 5.2.1.8) (Cyclophilin A) (Cyclosporin A-binding protein) (Rotamase A) [Cleaved into: Peptidyl-prolyl cis-trans isomerase A, N-terminally processed] PPIA CYPA activation of protein kinase B activity [GO:0032148]; apoptotic process [GO:0006915]; cell adhesion molecule production [GO:0060352]; cellular response to oxidative stress [GO:0034599]; endothelial cell activation [GO:0042118]; leukocyte chemotaxis [GO:0030595]; lipid droplet organization [GO:0034389]; negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway [GO:1902176]; negative regulation of protein K48-linked ubiquitination [GO:0061944]; negative regulation of protein kinase activity [GO:0006469]; negative regulation of protein phosphorylation [GO:0001933]; negative regulation of stress-activated MAPK cascade [GO:0032873]; negative regulation of viral life cycle [GO:1903901]; neuron differentiation [GO:0030182]; neutrophil chemotaxis [GO:0030593]; platelet activation [GO:0030168]; platelet aggregation [GO:0070527]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; positive regulation of protein dephosphorylation [GO:0035307]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of protein secretion [GO:0050714]; positive regulation of viral genome replication [GO:0045070]; protein folding [GO:0006457]; protein peptidyl-prolyl isomerization [GO:0000413]; regulation of apoptotic signaling pathway [GO:2001233]; regulation of viral genome replication [GO:0045069]; viral release from host cell [GO:0019076] -P63092 reviewed GNAS2_HUMAN Guanine nucleotide-binding protein G(s) subunit alpha isoforms short (Adenylate cyclase-stimulating G alpha protein) GNAS GNAS1 GSP activation of adenylate cyclase activity [GO:0007190]; adenylate cyclase-activating adrenergic receptor signaling pathway [GO:0071880]; adenylate cyclase-activating dopamine receptor signaling pathway [GO:0007191]; adenylate cyclase-activating G protein-coupled receptor signaling pathway [GO:0007189]; bone development [GO:0060348]; cellular response to catecholamine stimulus [GO:0071870]; cellular response to prostaglandin E stimulus [GO:0071380]; cognition [GO:0050890]; developmental growth [GO:0048589]; hair follicle placode formation [GO:0060789]; intracellular transport [GO:0046907]; platelet aggregation [GO:0070527]; positive regulation of cold-induced thermogenesis [GO:0120162]; sensory perception of smell [GO:0007608] -P63261 reviewed ACTG_HUMAN Actin, cytoplasmic 2 (EC 3.6.4.-) (Gamma-actin) [Cleaved into: Actin, cytoplasmic 2, N-terminally processed] ACTG1 ACTG angiogenesis [GO:0001525]; axonogenesis [GO:0007409]; cell motility [GO:0048870]; cellular response to type II interferon [GO:0071346]; maintenance of blood-brain barrier [GO:0035633]; morphogenesis of a polarized epithelium [GO:0001738]; platelet aggregation [GO:0070527]; positive regulation of cell migration [GO:0030335]; positive regulation of gene expression [GO:0010628]; positive regulation of wound healing [GO:0090303]; protein localization to bicellular tight junction [GO:1902396]; regulation of focal adhesion assembly [GO:0051893]; regulation of stress fiber assembly [GO:0051492]; regulation of synaptic vesicle endocytosis [GO:1900242]; regulation of transepithelial transport [GO:0150111]; sarcomere organization [GO:0045214]; tight junction assembly [GO:0120192] -P68871 reviewed HBB_HUMAN Hemoglobin subunit beta (Beta-globin) (Hemoglobin beta chain) [Cleaved into: LVV-hemorphin-7; Spinorphin] HBB blood vessel diameter maintenance [GO:0097746]; carbon dioxide transport [GO:0015670]; cellular oxidant detoxification [GO:0098869]; hydrogen peroxide catabolic process [GO:0042744]; nitric oxide transport [GO:0030185]; oxygen transport [GO:0015671]; platelet aggregation [GO:0070527]; positive regulation of nitric oxide biosynthetic process [GO:0045429]; regulation of blood pressure [GO:0008217]; renal absorption [GO:0070293]; response to hydrogen peroxide [GO:0042542] -P78310 reviewed CXAR_HUMAN Coxsackievirus and adenovirus receptor (CAR) (hCAR) (CVB3-binding protein) (Coxsackievirus B-adenovirus receptor) (HCVADR) CXADR CAR actin cytoskeleton organization [GO:0030036]; AV node cell to bundle of His cell communication [GO:0086067]; AV node cell-bundle of His cell adhesion involved in cell communication [GO:0086072]; cardiac muscle cell development [GO:0055013]; cell-cell junction organization [GO:0045216]; defense response to virus [GO:0051607]; epithelial structure maintenance [GO:0010669]; gamma-delta T cell activation [GO:0046629]; germ cell migration [GO:0008354]; heart development [GO:0007507]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; homotypic cell-cell adhesion [GO:0034109]; mitochondrion organization [GO:0007005]; neutrophil chemotaxis [GO:0030593]; regulation of AV node cell action potential [GO:0098904]; transepithelial transport [GO:0070633] -P78324 reviewed SHPS1_HUMAN Tyrosine-protein phosphatase non-receptor type substrate 1 (SHP substrate 1) (SHPS-1) (Brain Ig-like molecule with tyrosine-based activation motifs) (Bit) (CD172 antigen-like family member A) (Inhibitory receptor SHPS-1) (Macrophage fusion receptor) (MyD-1 antigen) (Signal-regulatory protein alpha-1) (Sirp-alpha-1) (Signal-regulatory protein alpha-2) (Sirp-alpha-2) (Signal-regulatory protein alpha-3) (Sirp-alpha-3) (p84) (CD antigen CD172a) SIRPA BIT MFR MYD1 PTPNS1 SHPS1 SIRP cell adhesion [GO:0007155]; cell migration [GO:0016477]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to interleukin-1 [GO:0071347]; cellular response to interleukin-12 [GO:0071349]; cellular response to lipopolysaccharide [GO:0071222]; cellular response to type II interferon [GO:0071346]; monocyte extravasation [GO:0035696]; negative regulation of chemokine (C-C motif) ligand 5 production [GO:0071650]; negative regulation of cytokine production involved in inflammatory response [GO:1900016]; negative regulation of ERK1 and ERK2 cascade [GO:0070373]; negative regulation of I-kappaB phosphorylation [GO:1903720]; negative regulation of inflammatory response [GO:0050728]; negative regulation of interferon-beta production [GO:0032688]; negative regulation of interleukin-6 production [GO:0032715]; negative regulation of JNK cascade [GO:0046329]; negative regulation of macrophage inflammatory protein 1 alpha production [GO:0071641]; negative regulation of nitric oxide biosynthetic process [GO:0045019]; negative regulation of phagocytosis [GO:0050765]; negative regulation of protein phosphorylation [GO:0001933]; negative regulation of tumor necrosis factor production [GO:0032720]; positive regulation of phagocytosis [GO:0050766]; positive regulation of T cell activation [GO:0050870]; regulation of gene expression [GO:0010468]; regulation of interleukin-1 beta production [GO:0032651]; regulation of interleukin-6 production [GO:0032675]; regulation of nitric oxide biosynthetic process [GO:0045428]; regulation of tumor necrosis factor production [GO:0032680]; regulation of type II interferon production [GO:0032649] -P78325 reviewed ADAM8_HUMAN Disintegrin and metalloproteinase domain-containing protein 8 (ADAM 8) (EC 3.4.24.-) (Cell surface antigen MS2) (CD antigen CD156a) ADAM8 MS2 angiogenesis [GO:0001525]; canonical NF-kappaB signal transduction [GO:0007249]; cell morphogenesis [GO:0000902]; cell-cell adhesion [GO:0098609]; cellular response to hypoxia [GO:0071456]; extracellular matrix disassembly [GO:0022617]; inflammatory response [GO:0006954]; leukocyte migration involved in inflammatory response [GO:0002523]; lymphocyte chemotaxis [GO:0048247]; negative regulation of neuron apoptotic process [GO:0043524]; positive regulation of acute inflammatory response [GO:0002675]; positive regulation of bone resorption [GO:0045780]; positive regulation of cell adhesion [GO:0045785]; positive regulation of cellular extravasation [GO:0002693]; positive regulation of eosinophil migration [GO:2000418]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of fibronectin-dependent thymocyte migration [GO:2000415]; positive regulation of innate immune response [GO:0045089]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of membrane protein ectodomain proteolysis [GO:0051044]; positive regulation of neutrophil extravasation [GO:2000391]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of protein processing [GO:0010954]; positive regulation of protein secretion [GO:0050714]; positive regulation of T cell differentiation in thymus [GO:0033089]; positive regulation of thymocyte apoptotic process [GO:0070245]; positive regulation of tumor necrosis factor (ligand) superfamily member 11 production [GO:2000309]; proteolysis [GO:0006508]; regulation of cell-cell adhesion [GO:0022407]; signal release [GO:0023061] -P78352 reviewed DLG4_HUMAN Disks large homolog 4 (Postsynaptic density protein 95) (PSD-95) (Synapse-associated protein 90) (SAP-90) (SAP90) DLG4 PSD95 AMPA glutamate receptor clustering [GO:0097113]; cell-cell adhesion [GO:0098609]; cellular response to potassium ion [GO:0035865]; chemical synaptic transmission [GO:0007268]; dendritic spine morphogenesis [GO:0060997]; establishment of protein localization [GO:0045184]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; learning [GO:0007612]; locomotory exploration behavior [GO:0035641]; negative regulation of receptor internalization [GO:0002091]; nervous system development [GO:0007399]; neuromuscular process controlling balance [GO:0050885]; neurotransmitter receptor localization to postsynaptic specialization membrane [GO:0099645]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of excitatory postsynaptic potential [GO:2000463]; positive regulation of neuron projection arborization [GO:0150012]; positive regulation of protein tyrosine kinase activity [GO:0061098]; positive regulation of synaptic transmission [GO:0050806]; postsynaptic neurotransmitter receptor diffusion trapping [GO:0098970]; protein localization to synapse [GO:0035418]; protein-containing complex assembly [GO:0065003]; receptor localization to synapse [GO:0097120]; regulation of grooming behavior [GO:2000821]; regulation of long-term neuronal synaptic plasticity [GO:0048169]; regulation of NMDA receptor activity [GO:2000310]; signal transduction [GO:0007165]; social behavior [GO:0035176]; synaptic vesicle maturation [GO:0016188]; vocalization behavior [GO:0071625] -P78369 reviewed CLD10_HUMAN Claudin-10 (Oligodendrocyte-specific protein-like) (OSP-like) CLDN10 bicellular tight junction assembly [GO:0070830]; calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules [GO:0016338]; cell adhesion [GO:0007155]; monoatomic ion transport [GO:0006811]; regulation of monoatomic ion transport [GO:0043269] -P78380 reviewed OLR1_HUMAN Oxidized low-density lipoprotein receptor 1 (Ox-LDL receptor 1) (C-type lectin domain family 8 member A) (Lectin-like oxidized LDL receptor 1) (LOX-1) (Lectin-like oxLDL receptor 1) (hLOX-1) (Lectin-type oxidized LDL receptor 1) [Cleaved into: Oxidized low-density lipoprotein receptor 1, soluble form] OLR1 CLEC8A LOX1 blood circulation [GO:0008015]; immune system process [GO:0002376]; inflammatory response [GO:0006954]; leukocyte cell-cell adhesion [GO:0007159]; lipoprotein metabolic process [GO:0042157]; proteolysis [GO:0006508] -P78423 reviewed X3CL1_HUMAN Fractalkine (C-X3-C motif chemokine 1) (CX3C membrane-anchored chemokine) (Neurotactin) (Small-inducible cytokine D1) [Cleaved into: Processed fractalkine] CX3CL1 FKN NTT SCYD1 A-152E5.2 angiogenesis involved in wound healing [GO:0060055]; antimicrobial humoral immune response mediated by antimicrobial peptide [GO:0061844]; autocrine signaling [GO:0035425]; cell adhesion [GO:0007155]; cell chemotaxis [GO:0060326]; cell-cell adhesion [GO:0098609]; cell-cell signaling [GO:0007267]; chemokine-mediated signaling pathway [GO:0070098]; chemotaxis [GO:0006935]; cytokine-mediated signaling pathway [GO:0019221]; defense response [GO:0006952]; eosinophil chemotaxis [GO:0048245]; extrinsic apoptotic signaling pathway in absence of ligand [GO:0097192]; G protein-coupled receptor signaling pathway [GO:0007186]; immune response [GO:0006955]; inflammatory response [GO:0006954]; integrin activation [GO:0033622]; leukocyte adhesive activation [GO:0050902]; leukocyte chemotaxis [GO:0030595]; leukocyte migration involved in inflammatory response [GO:0002523]; lymphocyte chemotaxis [GO:0048247]; microglial cell activation [GO:0001774]; microglial cell proliferation [GO:0061518]; negative regulation of apoptotic process [GO:0043066]; negative regulation of apoptotic signaling pathway [GO:2001234]; negative regulation of cell migration [GO:0030336]; negative regulation of cell-substrate adhesion [GO:0010812]; negative regulation of extrinsic apoptotic signaling pathway in absence of ligand [GO:2001240]; negative regulation of glutamate receptor signaling pathway [GO:1900450]; negative regulation of hippocampal neuron apoptotic process [GO:0110091]; negative regulation of interleukin-1 alpha production [GO:0032690]; negative regulation of interleukin-1 beta production [GO:0032691]; negative regulation of interleukin-6 production [GO:0032715]; negative regulation of microglial cell activation [GO:1903979]; negative regulation of neuron migration [GO:2001223]; negative regulation of tumor necrosis factor production [GO:0032720]; neuron cellular homeostasis [GO:0070050]; neuron remodeling [GO:0016322]; neutrophil chemotaxis [GO:0030593]; positive chemotaxis [GO:0050918]; positive regulation of actin filament bundle assembly [GO:0032233]; positive regulation of calcium-independent cell-cell adhesion [GO:0051041]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cell-matrix adhesion [GO:0001954]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of I-kappaB phosphorylation [GO:1903721]; positive regulation of inflammatory response [GO:0050729]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of microglial cell migration [GO:1904141]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of neuron projection development [GO:0010976]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of release of sequestered calcium ion into cytosol [GO:0051281]; positive regulation of smooth muscle cell proliferation [GO:0048661]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta1 production [GO:0032914]; regulation of lipopolysaccharide-mediated signaling pathway [GO:0031664]; regulation of neurogenesis [GO:0050767]; regulation of synaptic plasticity [GO:0048167]; response to ischemia [GO:0002931]; synapse pruning [GO:0098883] -P82279 reviewed CRUM1_HUMAN Protein crumbs homolog 1 CRB1 blood vessel remodeling [GO:0001974]; cell-cell signaling [GO:0007267]; cellular response to light stimulus [GO:0071482]; detection of light stimulus involved in visual perception [GO:0050908]; establishment of bipolar cell polarity involved in cell morphogenesis [GO:0061159]; establishment or maintenance of cell polarity [GO:0007163]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; eye photoreceptor cell development [GO:0042462]; gene expression [GO:0010467]; glial cell differentiation [GO:0010001]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; photoreceptor cell maintenance [GO:0045494]; photoreceptor cell outer segment organization [GO:0035845]; plasma membrane organization [GO:0007009]; post-embryonic retina morphogenesis in camera-type eye [GO:0060060]; protein localization [GO:0008104]; retina layer formation [GO:0010842] -P84996 reviewed ALEX_HUMAN Protein ALEX (Alternative gene product encoded by XL-exon) GNAS GNAS1 adenylate cyclase-activating G protein-coupled receptor signaling pathway [GO:0007189]; bone development [GO:0060348]; cognition [GO:0050890]; developmental growth [GO:0048589]; hair follicle placode formation [GO:0060789]; platelet aggregation [GO:0070527]; positive regulation of cold-induced thermogenesis [GO:0120162]; regulation of signal transduction [GO:0009966] -P98161 reviewed PKD1_HUMAN Polycystin-1 (PC1) (Autosomal dominant polycystic kidney disease 1 protein) PKD1 anatomical structure morphogenesis [GO:0009653]; branching morphogenesis of an epithelial tube [GO:0048754]; calcium ion transmembrane transport [GO:0070588]; calcium ion transport [GO:0006816]; calcium-independent cell-matrix adhesion [GO:0007161]; cartilage condensation [GO:0001502]; cartilage development [GO:0051216]; cell surface receptor signaling pathway [GO:0007166]; cell surface receptor signaling pathway via JAK-STAT [GO:0007259]; cell-matrix adhesion [GO:0007160]; detection of mechanical stimulus [GO:0050982]; digestive tract development [GO:0048565]; embryonic placenta development [GO:0001892]; establishment of epithelial cell polarity [GO:0090162]; genitalia development [GO:0048806]; heart development [GO:0007507]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; in utero embryonic development [GO:0001701]; kidney development [GO:0001822]; liver development [GO:0001889]; lung epithelium development [GO:0060428]; lymph vessel morphogenesis [GO:0036303]; mesonephric duct development [GO:0072177]; mesonephric tubule development [GO:0072164]; metanephric ascending thin limb development [GO:0072218]; metanephric collecting duct development [GO:0072205]; metanephric distal tubule morphogenesis [GO:0072287]; metanephric proximal tubule development [GO:0072237]; mitocytosis [GO:0160040]; neural tube development [GO:0021915]; peptidyl-serine phosphorylation [GO:0018105]; placenta blood vessel development [GO:0060674]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein export from nucleus [GO:0006611]; protein heterotetramerization [GO:0051290]; regulation of cell adhesion [GO:0030155]; regulation of cell cycle [GO:0051726]; regulation of G1/S transition of mitotic cell cycle [GO:2000045]; regulation of mitotic spindle organization [GO:0060236]; regulation of proteasomal protein catabolic process [GO:0061136]; response to fluid shear stress [GO:0034405]; skin development [GO:0043588]; spinal cord development [GO:0021510] -P98194 reviewed AT2C1_HUMAN Calcium-transporting ATPase type 2C member 1 (ATPase 2C1) (EC 7.2.2.10) (ATP-dependent Ca(2+) pump PMR1) (Ca(2+)/Mn(2+)-ATPase 2C1) (Secretory pathway Ca(2+)-transporting ATPase type 1) (SPCA1) ATP2C1 KIAA1347 PMR1L HUSSY-28 actin cytoskeleton organization [GO:0030036]; calcium ion transmembrane transport [GO:0070588]; calcium ion transport [GO:0006816]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; epidermis development [GO:0008544]; Golgi calcium ion homeostasis [GO:0032468]; Golgi calcium ion transport [GO:0032472]; intracellular calcium ion homeostasis [GO:0006874]; intracellular manganese ion homeostasis [GO:0030026]; manganese ion transport [GO:0006828]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of Golgi to plasma membrane protein transport [GO:0042998]; trans-Golgi network membrane organization [GO:0098629] -Q00587 reviewed BORG5_HUMAN Cdc42 effector protein 1 (Binder of Rho GTPases 5) (Serum protein MSE55) CDC42EP1 BORG5 CEP1 MSE55 positive regulation of actin filament polymerization [GO:0030838]; positive regulation of pseudopodium assembly [GO:0031274]; regulation of cell shape [GO:0008360]; Rho protein signal transduction [GO:0007266] -Q02246 reviewed CNTN2_HUMAN Contactin-2 (Axonal glycoprotein TAG-1) (Axonin-1) (Transient axonal glycoprotein 1) (TAX-1) CNTN2 AXT TAG1 TAX1 axon guidance [GO:0007411]; cell adhesion [GO:0007155]; clustering of voltage-gated potassium channels [GO:0045163]; dendrite self-avoidance [GO:0070593]; establishment of protein localization to juxtaparanode region of axon [GO:0071206]; fat cell differentiation [GO:0045444]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; presynaptic membrane organization [GO:0097090]; protein localization to juxtaparanode region of axon [GO:0071205]; reduction of food intake in response to dietary excess [GO:0002023]; synapse organization [GO:0050808] -Q02413 reviewed DSG1_HUMAN Desmoglein-1 (Cadherin family member 4) (Desmosomal glycoprotein 1) (DG1) (DGI) (Pemphigus foliaceus antigen) DSG1 CDHF4 calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell-cell adhesion [GO:0098609]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; maternal process involved in female pregnancy [GO:0060135]; protein stabilization [GO:0050821]; response to progesterone [GO:0032570] -Q02487 reviewed DSC2_HUMAN Desmocollin-2 (Cadherin family member 2) (Desmocollin-3) (Desmosomal glycoprotein II) (Desmosomal glycoprotein III) DSC2 CDHF2 DSC3 bundle of His cell-Purkinje myocyte adhesion involved in cell communication [GO:0086073]; cardiac muscle cell-cardiac muscle cell adhesion [GO:0086042]; cell adhesion [GO:0007155]; cell-cell adhesion [GO:0098609]; cellular response to starvation [GO:0009267]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; regulation of heart rate by cardiac conduction [GO:0086091]; regulation of ventricular cardiac muscle cell action potential [GO:0098911] -Q02742 reviewed GCNT1_HUMAN Beta-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,6-N-acetylglucosaminyltransferase (EC 2.4.1.102) (Core 2 beta-1,6-N-acetylglucosaminyltransferase) (C2GlcNAcT) (Core 2-branching enzyme) (Core2-GlcNAc-transferase) (C2GNT) (Core 2 GNT) (Leukocyte type core 2 beta-1,6-N-acetylglucosaminyltransferase) (C2GnT-L) GCNT1 NACGT2 cell adhesion molecule production [GO:0060352]; glycoprotein biosynthetic process [GO:0009101]; kidney morphogenesis [GO:0060993]; leukocyte tethering or rolling [GO:0050901]; O-glycan processing [GO:0016266]; O-glycan processing, core 2 [GO:0016268]; positive regulation of leukocyte tethering or rolling [GO:1903238]; response to insulin [GO:0032868]; tissue morphogenesis [GO:0048729] -Q04771 reviewed ACVR1_HUMAN Activin receptor type-1 (EC 2.7.11.30) (Activin receptor type I) (ACTR-I) (Activin receptor-like kinase 2) (ALK-2) (Serine/threonine-protein kinase receptor R1) (SKR1) (TGF-B superfamily receptor type I) (TSR-I) ACVR1 ACVRLK2 activin receptor signaling pathway [GO:0032924]; acute inflammatory response [GO:0002526]; atrial septum primum morphogenesis [GO:0003289]; atrioventricular valve morphogenesis [GO:0003181]; BMP signaling pathway [GO:0030509]; branching involved in blood vessel morphogenesis [GO:0001569]; cardiac muscle cell fate commitment [GO:0060923]; cellular response to BMP stimulus [GO:0071773]; cellular response to growth factor stimulus [GO:0071363]; determination of left/right symmetry [GO:0007368]; dorsal/ventral pattern formation [GO:0009953]; embryonic heart tube morphogenesis [GO:0003143]; endocardial cushion cell fate commitment [GO:0061445]; endocardial cushion formation [GO:0003272]; endocardial cushion fusion [GO:0003274]; gastrulation with mouth forming second [GO:0001702]; germ cell development [GO:0007281]; heart development [GO:0007507]; in utero embryonic development [GO:0001701]; mesoderm formation [GO:0001707]; mitral valve morphogenesis [GO:0003183]; negative regulation of activin receptor signaling pathway [GO:0032926]; negative regulation of extrinsic apoptotic signaling pathway [GO:2001237]; negative regulation of G1/S transition of mitotic cell cycle [GO:2000134]; negative regulation of signal transduction [GO:0009968]; neural crest cell migration [GO:0001755]; pharyngeal system development [GO:0060037]; positive regulation of bone mineralization [GO:0030501]; positive regulation of cardiac epithelial to mesenchymal transition [GO:0062043]; positive regulation of cell migration [GO:0030335]; positive regulation of determination of dorsal identity [GO:2000017]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of SMAD protein signal transduction [GO:0060391]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of ossification [GO:0030278]; smooth muscle cell differentiation [GO:0051145]; transforming growth factor beta receptor signaling pathway [GO:0007179]; ventricular septum morphogenesis [GO:0060412] -Q04900 reviewed MUC24_HUMAN Sialomucin core protein 24 (MUC-24) (Endolyn) (Multi-glycosylated core protein 24) (MGC-24) (MGC-24v) (CD antigen CD164) CD164 cell adhesion [GO:0007155]; hemopoiesis [GO:0030097]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; immune response [GO:0006955]; muscle organ development [GO:0007517]; negative regulation of cell adhesion [GO:0007162]; signal transduction [GO:0007165] -Q05707 reviewed COEA1_HUMAN Collagen alpha-1(XIV) chain (Undulin) COL14A1 UND cell-cell adhesion [GO:0098609]; collagen fibril organization [GO:0030199]; extracellular matrix organization [GO:0030198]; homeostasis of number of cells within a tissue [GO:0048873]; regulation of cell growth involved in cardiac muscle cell development [GO:0061050]; ventricular cardiac muscle tissue development [GO:0003229] -Q05BR2 unreviewed Q05BR2_HUMAN ANXA1 protein ANXA1 alpha-beta T cell differentiation [GO:0046632]; arachidonic acid secretion [GO:0050482]; cell surface receptor signaling pathway [GO:0007166]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; DNA duplex unwinding [GO:0032508]; endocrine pancreas development [GO:0031018]; estrous cycle [GO:0044849]; gliogenesis [GO:0042063]; granulocyte chemotaxis [GO:0071621]; hepatocyte differentiation [GO:0070365]; inflammatory response [GO:0006954]; insulin secretion [GO:0030073]; keratinocyte differentiation [GO:0030216]; myoblast migration involved in skeletal muscle regeneration [GO:0014839]; negative regulation of exocytosis [GO:0045920]; negative regulation of T-helper 2 cell differentiation [GO:0045629]; neutrophil clearance [GO:0097350]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of prostaglandin biosynthetic process [GO:0031394]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell differentiation [GO:0045627]; positive regulation of vesicle fusion [GO:0031340]; positive regulation of wound healing [GO:0090303]; prolactin secretion [GO:0070459]; prostate gland development [GO:0030850]; regulation of cell shape [GO:0008360]; regulation of hormone secretion [GO:0046883]; regulation of inflammatory response [GO:0050727]; regulation of interleukin-1 production [GO:0032652]; regulation of leukocyte migration [GO:0002685]; response to estradiol [GO:0032355]; response to interleukin-1 [GO:0070555]; response to peptide hormone [GO:0043434]; response to X-ray [GO:0010165] -Q06141 reviewed REG3A_HUMAN Regenerating islet-derived protein 3-alpha (REG-3-alpha) (Hepatointestinal pancreatic protein) (HIP/PAP) (Human proislet peptide) (HIP) (Pancreatitis-associated protein 1) (Regenerating islet-derived protein III-alpha) (Reg III-alpha) [Cleaved into: Regenerating islet-derived protein 3-alpha 16.5 kDa form; Regenerating islet-derived protein 3-alpha 15 kDa form] REG3A HIP PAP PAP1 acute-phase response [GO:0006953]; antimicrobial humoral immune response mediated by antimicrobial peptide [GO:0061844]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; negative regulation of inflammatory response [GO:0050728]; negative regulation of inflammatory response to wounding [GO:0106015]; negative regulation of keratinocyte differentiation [GO:0045617]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of detection of glucose [GO:2000972]; positive regulation of keratinocyte proliferation [GO:0010838]; positive regulation of wound healing [GO:0090303]; response to peptide hormone [GO:0043434]; response to symbiotic bacterium [GO:0009609]; response to wounding [GO:0009611] -Q06418 reviewed TYRO3_HUMAN Tyrosine-protein kinase receptor TYRO3 (EC 2.7.10.1) (Tyrosine-protein kinase BYK) (Tyrosine-protein kinase DTK) (Tyrosine-protein kinase RSE) (Tyrosine-protein kinase SKY) (Tyrosine-protein kinase TIF) TYRO3 BYK DTK RSE SKY TIF apoptotic cell clearance [GO:0043277]; cell adhesion [GO:0007155]; cell migration [GO:0016477]; establishment of localization in cell [GO:0051649]; forebrain cell migration [GO:0021885]; natural killer cell differentiation [GO:0001779]; negative regulation of inflammatory response [GO:0050728]; negative regulation of innate immune response [GO:0045824]; negative regulation of lymphocyte activation [GO:0051250]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of toll-like receptor signaling pathway [GO:0034122]; nervous system development [GO:0007399]; neuron apoptotic process [GO:0051402]; neuron cellular homeostasis [GO:0070050]; neuron migration [GO:0001764]; neuropeptide signaling pathway [GO:0007218]; ovulation cycle [GO:0042698]; phagocytosis [GO:0006909]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; platelet activation [GO:0030168]; platelet aggregation [GO:0070527]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of viral life cycle [GO:1903902]; protein autophosphorylation [GO:0046777]; secretion by cell [GO:0032940]; signal transduction [GO:0007165]; spermatogenesis [GO:0007283]; substrate adhesion-dependent cell spreading [GO:0034446]; vagina development [GO:0060068] -Q07157 reviewed ZO1_HUMAN Tight junction protein ZO-1 (Tight junction protein 1) (Zona occludens protein 1) (Zonula occludens protein 1) TJP1 ZO1 actin cytoskeleton organization [GO:0030036]; actomyosin structure organization [GO:0031032]; adherens junction maintenance [GO:0034334]; cell-cell adhesion [GO:0098609]; cell-cell junction assembly [GO:0007043]; cell-cell junction organization [GO:0045216]; establishment of endothelial intestinal barrier [GO:0090557]; maintenance of blood-brain barrier [GO:0035633]; negative regulation of apoptotic process [GO:0043066]; negative regulation of stress fiber assembly [GO:0051497]; positive regulation of blood-brain barrier permeability [GO:1905605]; positive regulation of cell migration [GO:0030335]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cell-cell adhesion mediated by cadherin [GO:2000049]; positive regulation of sprouting angiogenesis [GO:1903672]; protein localization to adherens junction [GO:0071896]; protein localization to bicellular tight junction [GO:1902396]; protein localization to cell-cell junction [GO:0150105]; regulation of bicellular tight junction assembly [GO:2000810]; regulation of cell junction assembly [GO:1901888]; regulation of cytoskeleton organization [GO:0051493] -Q07352 reviewed TISB_HUMAN mRNA decay activator protein ZFP36L1 (Butyrate response factor 1) (EGF-response factor 1) (ERF-1) (TPA-induced sequence 11b) (Zinc finger protein 36, C3H1 type-like 1) (ZFP36-like 1) ZFP36L1 BERG36 BRF1 ERF1 RNF162B TIS11B 3'-UTR-mediated mRNA destabilization [GO:0061158]; apoptotic process [GO:0006915]; cell population proliferation [GO:0008283]; cellular response to cAMP [GO:0071320]; cellular response to epidermal growth factor stimulus [GO:0071364]; cellular response to fibroblast growth factor stimulus [GO:0044344]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to hypoxia [GO:0071456]; cellular response to insulin stimulus [GO:0032869]; cellular response to peptide hormone stimulus [GO:0071375]; cellular response to raffinose [GO:0097403]; cellular response to salt stress [GO:0071472]; cellular response to transforming growth factor beta stimulus [GO:0071560]; cellular response to tumor necrosis factor [GO:0071356]; chorio-allantoic fusion [GO:0060710]; ERK1 and ERK2 cascade [GO:0070371]; heart development [GO:0007507]; MAPK cascade [GO:0000165]; mesendoderm development [GO:0048382]; mRNA processing [GO:0006397]; mRNA transport [GO:0051028]; multicellular organism growth [GO:0035264]; negative regulation of erythrocyte differentiation [GO:0045647]; negative regulation of mitotic cell cycle phase transition [GO:1901991]; neural tube development [GO:0021915]; nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay [GO:0000288]; nuclear-transcribed mRNA catabolic process, deadenylation-independent decay [GO:0031086]; p38MAPK cascade [GO:0038066]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; positive regulation of fat cell differentiation [GO:0045600]; positive regulation of intracellular mRNA localization [GO:1904582]; positive regulation of monocyte differentiation [GO:0045657]; positive regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay [GO:1900153]; proepicardium development [GO:0003342]; regulation of B cell differentiation [GO:0045577]; regulation of gene expression [GO:0010468]; regulation of keratinocyte apoptotic process [GO:1902172]; regulation of keratinocyte differentiation [GO:0045616]; regulation of keratinocyte proliferation [GO:0010837]; regulation of mRNA 3'-end processing [GO:0031440]; regulation of mRNA stability [GO:0043488]; regulation of myoblast differentiation [GO:0045661]; regulation of stem cell proliferation [GO:0072091]; regulation of translation [GO:0006417]; response to wounding [GO:0009611]; spongiotrophoblast layer development [GO:0060712]; T cell differentiation in thymus [GO:0033077]; vasculogenesis [GO:0001570] -Q08174 reviewed PCDH1_HUMAN Protocadherin-1 (Cadherin-like protein 1) (Protocadherin-42) (PC42) PCDH1 cell adhesion [GO:0007155]; cell-cell signaling [GO:0007267]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q08554 reviewed DSC1_HUMAN Desmocollin-1 (Cadherin family member 1) (Desmosomal glycoprotein 2/3) (DG2/DG3) DSC1 CDHF1 cell-cell adhesion [GO:0098609]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q08722 reviewed CD47_HUMAN Leukocyte surface antigen CD47 (Antigenic surface determinant protein OA3) (Integrin-associated protein) (IAP) (Protein MER6) (CD antigen CD47) CD47 MER6 angiogenesis [GO:0001525]; apoptotic process [GO:0006915]; ATP export [GO:1904669]; cell migration [GO:0016477]; cellular response to interleukin-1 [GO:0071347]; cellular response to interleukin-12 [GO:0071349]; cellular response to type II interferon [GO:0071346]; inflammatory response [GO:0006954]; integrin-mediated signaling pathway [GO:0007229]; negative regulation of phagocytosis [GO:0050765]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of cell-cell adhesion [GO:0022409]; positive regulation of inflammatory response [GO:0050729]; positive regulation of monocyte extravasation [GO:2000439]; positive regulation of phagocytosis [GO:0050766]; positive regulation of stress fiber assembly [GO:0051496]; positive regulation of T cell activation [GO:0050870]; regulation of Fc receptor mediated stimulatory signaling pathway [GO:0060368]; regulation of interleukin-10 production [GO:0032653]; regulation of interleukin-12 production [GO:0032655]; regulation of interleukin-6 production [GO:0032675]; regulation of nitric oxide biosynthetic process [GO:0045428]; regulation of tumor necrosis factor production [GO:0032680]; regulation of type II interferon production [GO:0032649] -Q08830 reviewed FGL1_HUMAN Fibrinogen-like protein 1 (HP-041) (Hepassocin) (HPS) (Hepatocyte-derived fibrinogen-related protein 1) (HFREP-1) (Liver fibrinogen-related protein 1) (LFIRE-1) FGL1 HFREP1 adaptive immune response [GO:0002250]; cell-matrix adhesion [GO:0007160]; hepatocyte proliferation [GO:0072574]; negative regulation of T cell activation [GO:0050868]; platelet aggregation [GO:0070527]; regulation of immune response [GO:0050776] -Q0ZGT2 reviewed NEXN_HUMAN Nexilin (F-actin-binding protein) (Nelin) NEXN axon guidance [GO:0007411]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; regulation of cell migration [GO:0030334]; regulation of cytoskeleton organization [GO:0051493] -Q12816 reviewed TROP_HUMAN Trophinin (MAGE-D3 antigen) TRO KIAA1114 MAGED3 embryo implantation [GO:0007566]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; negative regulation of transcription by RNA polymerase II [GO:0000122] -Q12860 reviewed CNTN1_HUMAN Contactin-1 (Glycoprotein gp135) (Neural cell surface protein F3) CNTN1 axon guidance [GO:0007411]; brain development [GO:0007420]; cell adhesion [GO:0007155]; cell-cell adhesion [GO:0098609]; central nervous system myelin formation [GO:0032289]; cerebellum development [GO:0021549]; gene expression [GO:0010467]; locomotory behavior [GO:0007626]; Notch signaling pathway [GO:0007219]; positive regulation of gene expression [GO:0010628]; positive regulation of neuron projection development [GO:0010976]; positive regulation of sodium ion transport [GO:0010765] -Q12864 reviewed CAD17_HUMAN Cadherin-17 (Intestinal peptide-associated transporter HPT-1) (Liver-intestine cadherin) (LI-cadherin) CDH17 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell adhesion [GO:0007155]; cell migration [GO:0016477]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; germinal center B cell differentiation [GO:0002314]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; integrin-mediated signaling pathway [GO:0007229]; marginal zone B cell differentiation [GO:0002315]; oligopeptide transmembrane transport [GO:0035672]; oligopeptide transport [GO:0006857]; positive regulation of integrin activation by cell surface receptor linked signal transduction [GO:0033626]; spleen development [GO:0048536] -Q12946 reviewed FOXF1_HUMAN Forkhead box protein F1 (Forkhead-related activator 1) (FREAC-1) (Forkhead-related protein FKHL5) (Forkhead-related transcription factor 1) FOXF1 FKHL5 FREAC1 animal organ morphogenesis [GO:0009887]; blood vessel development [GO:0001568]; cardiac left ventricle morphogenesis [GO:0003214]; cell-cell adhesion [GO:0098609]; cellular response to cytokine stimulus [GO:0071345]; cellular response to organic cyclic compound [GO:0071407]; detection of wounding [GO:0014822]; determination of left/right symmetry [GO:0007368]; digestive tract development [GO:0048565]; ductus arteriosus closure [GO:0097070]; embryonic digestive tract morphogenesis [GO:0048557]; embryonic ectodermal digestive tract morphogenesis [GO:0048613]; embryonic foregut morphogenesis [GO:0048617]; endocardial cushion development [GO:0003197]; epithelial cell differentiation involved in mammary gland alveolus development [GO:0061030]; epithelial tube branching involved in lung morphogenesis [GO:0060441]; establishment of epithelial cell apical/basal polarity [GO:0045198]; extracellular matrix organization [GO:0030198]; heart development [GO:0007507]; in utero embryonic development [GO:0001701]; lateral mesodermal cell differentiation [GO:0048371]; lung alveolus development [GO:0048286]; lung development [GO:0030324]; lung lobe morphogenesis [GO:0060463]; lung vasculature development [GO:0060426]; mesenchyme migration [GO:0090131]; midgut development [GO:0007494]; morphogenesis of a branching structure [GO:0001763]; negative regulation of inflammatory response [GO:0050728]; negative regulation of mast cell degranulation [GO:0043305]; negative regulation of transcription by RNA polymerase II [GO:0000122]; pancreas development [GO:0031016]; positive regulation of cell migration [GO:0030335]; positive regulation of cell-substrate adhesion [GO:0010811]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of mesenchymal cell proliferation [GO:0002053]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; respiratory tube development [GO:0030323]; right lung morphogenesis [GO:0060461]; smooth muscle cell differentiation [GO:0051145]; smoothened signaling pathway [GO:0007224]; somitogenesis [GO:0001756]; trachea development [GO:0060438]; ureter development [GO:0072189]; vasculogenesis [GO:0001570]; venous blood vessel development [GO:0060841] -Q12959 reviewed DLG1_HUMAN Disks large homolog 1 (Synapse-associated protein 97) (SAP-97) (SAP97) (hDlg) DLG1 actin filament organization [GO:0007015]; actin filament polymerization [GO:0030041]; amyloid precursor protein metabolic process [GO:0042982]; astral microtubule organization [GO:0030953]; bicellular tight junction assembly [GO:0070830]; branching involved in ureteric bud morphogenesis [GO:0001658]; cell-cell adhesion [GO:0098609]; chemical synaptic transmission [GO:0007268]; cortical actin cytoskeleton organization [GO:0030866]; cortical microtubule organization [GO:0043622]; embryonic skeletal system morphogenesis [GO:0048704]; endothelial cell proliferation [GO:0001935]; establishment of centrosome localization [GO:0051660]; establishment or maintenance of cell polarity [GO:0007163]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; hard palate development [GO:0060022]; immunological synapse formation [GO:0001771]; lens development in camera-type eye [GO:0002088]; membrane raft organization [GO:0031579]; negative regulation of epithelial cell proliferation [GO:0050680]; negative regulation of ERK1 and ERK2 cascade [GO:0070373]; negative regulation of G1/S transition of mitotic cell cycle [GO:2000134]; negative regulation of p38MAPK cascade [GO:1903753]; negative regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051898]; negative regulation of T cell proliferation [GO:0042130]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neurotransmitter receptor localization to postsynaptic specialization membrane [GO:0099645]; peristalsis [GO:0030432]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; positive regulation of actin filament polymerization [GO:0030838]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of potassium ion transport [GO:0043268]; positive regulation of protein localization to plasma membrane [GO:1903078]; protein localization to plasma membrane [GO:0072659]; protein-containing complex localization [GO:0031503]; receptor clustering [GO:0043113]; receptor localization to synapse [GO:0097120]; regulation of cell shape [GO:0008360]; regulation of membrane potential [GO:0042391]; regulation of myelination [GO:0031641]; regulation of postsynaptic membrane neurotransmitter receptor levels [GO:0099072]; regulation of potassium ion export across plasma membrane [GO:1903764]; regulation of potassium ion import [GO:1903286]; regulation of protein localization to synapse [GO:1902473]; regulation of sodium ion transmembrane transport [GO:1902305]; regulation of ventricular cardiac muscle cell action potential [GO:0098911]; regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization [GO:1903760]; reproductive structure development [GO:0048608]; smooth muscle tissue development [GO:0048745]; T cell proliferation [GO:0042098] -Q13087 reviewed PDIA2_HUMAN Protein disulfide-isomerase A2 (EC 5.3.4.1) (Pancreas-specific protein disulfide isomerase) (PDIp) PDIA2 PDIP platelet aggregation [GO:0070527]; protein folding [GO:0006457]; protein folding in endoplasmic reticulum [GO:0034975]; protein retention in ER lumen [GO:0006621]; response to endoplasmic reticulum stress [GO:0034976] -Q13308 reviewed PTK7_HUMAN Inactive tyrosine-protein kinase 7 (Colon carcinoma kinase 4) (CCK-4) (Protein-tyrosine kinase 7) (Pseudo tyrosine kinase receptor 7) (Tyrosine-protein kinase-like 7) PTK7 CCK4 actin cytoskeleton organization [GO:0030036]; axis elongation [GO:0003401]; cell migration [GO:0016477]; cellular response to retinoic acid [GO:0071300]; cochlea morphogenesis [GO:0090103]; convergent extension [GO:0060026]; coronary vasculature development [GO:0060976]; establishment of epithelial cell apical/basal polarity [GO:0045198]; establishment of planar polarity [GO:0001736]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; kidney development [GO:0001822]; lung-associated mesenchyme development [GO:0060484]; planar cell polarity pathway involved in neural tube closure [GO:0090179]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of neuron projection development [GO:0010976]; regulation of canonical Wnt signaling pathway [GO:0060828]; signal transduction [GO:0007165]; synapse organization [GO:0050808]; ventricular septum development [GO:0003281]; wound healing [GO:0042060] -Q13332 reviewed PTPRS_HUMAN Receptor-type tyrosine-protein phosphatase S (R-PTP-S) (EC 3.1.3.48) (Receptor-type tyrosine-protein phosphatase sigma) (R-PTP-sigma) PTPRS cerebellum development [GO:0021549]; cerebral cortex development [GO:0021987]; corpus callosum development [GO:0022038]; establishment of endothelial intestinal barrier [GO:0090557]; hippocampus development [GO:0021766]; modulation of chemical synaptic transmission [GO:0050804]; negative regulation of axon extension [GO:0030517]; negative regulation of axon regeneration [GO:0048681]; negative regulation of collateral sprouting [GO:0048671]; negative regulation of dendritic spine development [GO:0061000]; negative regulation of interferon-alpha production [GO:0032687]; negative regulation of interferon-beta production [GO:0032688]; negative regulation of neuron projection development [GO:0010977]; negative regulation of toll-like receptor 9 signaling pathway [GO:0034164]; peptidyl-tyrosine dephosphorylation [GO:0035335]; protein dephosphorylation [GO:0006470]; regulation of postsynaptic density assembly [GO:0099151]; spinal cord development [GO:0021510]; synaptic membrane adhesion [GO:0099560]; trans-synaptic signaling [GO:0099537] -Q13349 reviewed ITAD_HUMAN Integrin alpha-D (ADB2) (CD11 antigen-like family member D) (Leukointegrin alpha D) (CD antigen CD11d) ITGAD cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; heterotypic cell-cell adhesion [GO:0034113]; immune response [GO:0006955]; integrin-mediated signaling pathway [GO:0007229] -Q13418 reviewed ILK_HUMAN Integrin-linked protein kinase (EC 2.7.11.1) (59 kDa serine/threonine-protein kinase) (Beta-integrin-linked kinase) (ILK-1) (ILK-2) (p59ILK) ILK ILK1 ILK2 branching involved in ureteric bud morphogenesis [GO:0001658]; cell morphogenesis [GO:0000902]; cell projection organization [GO:0030030]; cell-matrix adhesion [GO:0007160]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; fibroblast migration [GO:0010761]; integrin-mediated signaling pathway [GO:0007229]; myelination in peripheral nervous system [GO:0022011]; negative regulation of neural precursor cell proliferation [GO:2000178]; nerve development [GO:0021675]; neural precursor cell proliferation [GO:0061351]; outflow tract morphogenesis [GO:0003151]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; platelet aggregation [GO:0070527]; positive regulation of BMP signaling pathway [GO:0030513]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of canonical Wnt signaling pathway [GO:0090263]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of phosphorylation [GO:0042327]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of signal transduction [GO:0009967]; positive regulation of substrate adhesion-dependent cell spreading [GO:1900026]; protein phosphorylation [GO:0006468]; substrate adhesion-dependent cell spreading [GO:0034446]; tumor necrosis factor-mediated signaling pathway [GO:0033209] -Q13443 reviewed ADAM9_HUMAN Disintegrin and metalloproteinase domain-containing protein 9 (ADAM 9) (EC 3.4.24.-) (Cellular disintegrin-related protein) (Meltrin-gamma) (Metalloprotease/disintegrin/cysteine-rich protein 9) (Myeloma cell metalloproteinase) ADAM9 KIAA0021 MCMP MDC9 MLTNG amyloid precursor protein catabolic process [GO:0042987]; cell adhesion [GO:0007155]; cell adhesion mediated by integrin [GO:0033627]; cell migration [GO:0016477]; cell-cell adhesion mediated by integrin [GO:0033631]; cell-matrix adhesion [GO:0007160]; cellular response to lipopolysaccharide [GO:0071222]; integrin-mediated signaling pathway [GO:0007229]; keratinocyte differentiation [GO:0030216]; membrane protein ectodomain proteolysis [GO:0006509]; membrane protein intracellular domain proteolysis [GO:0031293]; monocyte activation [GO:0042117]; positive regulation of cell adhesion mediated by integrin [GO:0033630]; positive regulation of cell migration [GO:0030335]; positive regulation of keratinocyte migration [GO:0051549]; positive regulation of macrophage fusion [GO:0034241]; positive regulation of MAP kinase activity [GO:0043406]; positive regulation of membrane protein ectodomain proteolysis [GO:0051044]; positive regulation of protein secretion [GO:0050714]; protein processing [GO:0016485]; response to antineoplastic agent [GO:0097327]; response to calcium ion [GO:0051592]; response to glucocorticoid [GO:0051384]; response to hydrogen peroxide [GO:0042542]; response to laminar fluid shear stress [GO:0034616]; response to manganese ion [GO:0010042]; response to tumor necrosis factor [GO:0034612]; transforming growth factor beta receptor signaling pathway [GO:0007179] -Q13464 reviewed ROCK1_HUMAN Rho-associated protein kinase 1 (EC 2.7.11.1) (Renal carcinoma antigen NY-REN-35) (Rho-associated, coiled-coil-containing protein kinase 1) (Rho-associated, coiled-coil-containing protein kinase I) (ROCK-I) (p160 ROCK-1) (p160ROCK) ROCK1 actin cytoskeleton organization [GO:0030036]; actomyosin structure organization [GO:0031032]; aortic valve morphogenesis [GO:0003180]; apical constriction [GO:0003383]; bleb assembly [GO:0032060]; blood vessel diameter maintenance [GO:0097746]; canonical NF-kappaB signal transduction [GO:0007249]; cortical actin cytoskeleton organization [GO:0030866]; embryonic morphogenesis [GO:0048598]; epithelial to mesenchymal transition [GO:0001837]; leukocyte cell-cell adhesion [GO:0007159]; leukocyte migration [GO:0050900]; leukocyte tethering or rolling [GO:0050901]; membrane to membrane docking [GO:0022614]; mitotic cytokinesis [GO:0000281]; motor neuron apoptotic process [GO:0097049]; mRNA destabilization [GO:0061157]; myoblast migration [GO:0051451]; negative regulation of amyloid precursor protein catabolic process [GO:1902992]; negative regulation of amyloid-beta formation [GO:1902430]; negative regulation of angiogenesis [GO:0016525]; negative regulation of bicellular tight junction assembly [GO:1903347]; negative regulation of biomineral tissue development [GO:0070168]; negative regulation of membrane protein ectodomain proteolysis [GO:0051045]; negative regulation of motor neuron apoptotic process [GO:2000672]; negative regulation of myosin-light-chain-phosphatase activity [GO:0035509]; negative regulation of phosphorylation [GO:0042326]; negative regulation of protein binding [GO:0032091]; neuron projection arborization [GO:0140058]; neuron projection development [GO:0031175]; peptidyl-serine phosphorylation [GO:0018105]; podocyte cell migration [GO:0090521]; positive regulation of amyloid-beta clearance [GO:1900223]; positive regulation of autophagy [GO:0010508]; positive regulation of cardiac muscle hypertrophy [GO:0010613]; positive regulation of connective tissue replacement [GO:1905205]; positive regulation of dephosphorylation [GO:0035306]; positive regulation of focal adhesion assembly [GO:0051894]; positive regulation of gene expression [GO:0010628]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of phosphatase activity [GO:0010922]; protein localization to plasma membrane [GO:0072659]; protein phosphorylation [GO:0006468]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of angiotensin-activated signaling pathway [GO:0110061]; regulation of cell adhesion [GO:0030155]; regulation of cell junction assembly [GO:1901888]; regulation of cell migration [GO:0030334]; regulation of cell motility [GO:2000145]; regulation of establishment of cell polarity [GO:2000114]; regulation of establishment of endothelial barrier [GO:1903140]; regulation of focal adhesion assembly [GO:0051893]; regulation of keratinocyte differentiation [GO:0045616]; regulation of microtubule cytoskeleton organization [GO:0070507]; regulation of neuron differentiation [GO:0045664]; regulation of stress fiber assembly [GO:0051492]; regulation of synapse maturation [GO:0090128]; regulation of synaptic vesicle endocytosis [GO:1900242]; response to angiotensin [GO:1990776]; response to transforming growth factor beta [GO:0071559]; Rho protein signal transduction [GO:0007266]; signal transduction [GO:0007165]; smooth muscle contraction [GO:0006939] -Q13477 reviewed MADCA_HUMAN Mucosal addressin cell adhesion molecule 1 (MAdCAM-1) (hMAdCAM-1) MADCAM1 cell adhesion [GO:0007155]; cell-matrix adhesion [GO:0007160]; heterotypic cell-cell adhesion [GO:0034113]; immune response [GO:0006955]; integrin-mediated signaling pathway [GO:0007229]; leukocyte tethering or rolling [GO:0050901]; positive regulation of leukocyte migration [GO:0002687]; positive regulation of lymphocyte migration [GO:2000403]; receptor clustering [GO:0043113]; signal transduction [GO:0007165] -Q13630 reviewed FCL_HUMAN GDP-L-fucose synthase (EC 1.1.1.271) (GDP-4-keto-6-deoxy-D-mannose-3,5-epimerase-4-reductase) (Protein FX) (Red cell NADP(H)-binding protein) (Short-chain dehydrogenase/reductase family 4E member 1) GFUS SDR4E1 TSTA3 'de novo' GDP-L-fucose biosynthetic process [GO:0042351]; GDP-mannose metabolic process [GO:0019673]; leukocyte cell-cell adhesion [GO:0007159]; positive regulation of endothelial cell migration [GO:0010595]; positive regulation of endothelial cell-matrix adhesion via fibronectin [GO:1904906] -Q13634 reviewed CAD18_HUMAN Cadherin-18 (Cadherin-14) CDH18 CDH14 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell migration [GO:0016477]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q13683 reviewed ITA7_HUMAN Integrin alpha-7 [Cleaved into: Integrin alpha-7 heavy chain; Integrin alpha-7 light chain; Integrin alpha-7 70 kDa form] ITGA7 UNQ406/PRO768 cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; endodermal cell differentiation [GO:0035987]; heterotypic cell-cell adhesion [GO:0034113]; integrin-mediated signaling pathway [GO:0007229]; leukocyte migration [GO:0050900]; muscle organ development [GO:0007517]; regulation of cell shape [GO:0008360] -Q13740 reviewed CD166_HUMAN CD166 antigen (Activated leukocyte cell adhesion molecule) (CD antigen CD166) ALCAM MEMD adaptive immune response [GO:0002250]; axon extension involved in axon guidance [GO:0048846]; cell adhesion [GO:0007155]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; motor neuron axon guidance [GO:0008045]; neuron projection extension [GO:1990138]; retinal ganglion cell axon guidance [GO:0031290]; signal transduction [GO:0007165] -Q13797 reviewed ITA9_HUMAN Integrin alpha-9 (Integrin alpha-RLC) ITGA9 cell adhesion [GO:0007155]; cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229]; negative regulation of vasoconstriction [GO:0045906]; neutrophil chemotaxis [GO:0030593] -Q13835 reviewed PKP1_HUMAN Plakophilin-1 (Band 6 protein) (B6P) PKP1 cell adhesion [GO:0007155]; cell-cell adhesion [GO:0098609]; intermediate filament bundle assembly [GO:0045110]; negative regulation of mRNA catabolic process [GO:1902373]; positive regulation of gene expression [GO:0010628]; signal transduction [GO:0007165] -Q14126 reviewed DSG2_HUMAN Desmoglein-2 (Cadherin family member 5) (HDGC) DSG2 CDHF5 bundle of His cell-Purkinje myocyte adhesion involved in cell communication [GO:0086073]; cell adhesion [GO:0007155]; cell-cell adhesion [GO:0098609]; desmosome organization [GO:0002934]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; maternal process involved in female pregnancy [GO:0060135]; Purkinje myocyte development [GO:0003165]; regulation of heart rate by cardiac conduction [GO:0086091]; regulation of ventricular cardiac muscle cell action potential [GO:0098911]; response to progesterone [GO:0032570] -Q14134 reviewed TRI29_HUMAN Tripartite motif-containing protein 29 (Ataxia telangiectasia group D-associated protein) TRIM29 ATDC innate immune response [GO:0045087]; negative regulation of protein localization to nucleus [GO:1900181]; negative regulation of transcription by RNA polymerase II [GO:0000122] -Q14160 reviewed SCRIB_HUMAN Protein scribble homolog (Scribble) (hScrib) (Protein LAP4) SCRIB CRIB1 KIAA0147 LAP4 SCRB1 VARTUL activation of GTPase activity [GO:0090630]; apoptotic process involved in morphogenesis [GO:0060561]; astrocyte cell migration [GO:0043615]; auditory receptor cell stereocilium organization [GO:0060088]; cell migration [GO:0016477]; cell population proliferation [GO:0008283]; cell-cell adhesion [GO:0098609]; cochlear nucleus development [GO:0021747]; establishment of apical/basal cell polarity [GO:0035089]; establishment of T cell polarity [GO:0001768]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; mammary gland duct morphogenesis [GO:0060603]; negative regulation of activated T cell proliferation [GO:0046007]; negative regulation of mitotic cell cycle [GO:0045930]; neural tube closure [GO:0001843]; neurotransmitter receptor transport postsynaptic membrane to endosome [GO:0098968]; neurotransmitter receptor transport, endosome to postsynaptic membrane [GO:0098887]; polarized epithelial cell differentiation [GO:0030859]; positive chemotaxis [GO:0050918]; positive regulation of apoptotic process [GO:0043065]; positive regulation of receptor recycling [GO:0001921]; positive regulation of type II interferon production [GO:0032729]; post-anal tail morphogenesis [GO:0036342]; protein localization to adherens junction [GO:0071896]; receptor clustering [GO:0043113]; regulation of postsynaptic neurotransmitter receptor internalization [GO:0099149]; synaptic vesicle endocytosis [GO:0048488]; synaptic vesicle targeting [GO:0016080]; wound healing [GO:0042060] -Q14162 reviewed SREC_HUMAN Scavenger receptor class F member 1 (Acetyl LDL receptor) (Scavenger receptor expressed by endothelial cells 1) (SREC-I) SCARF1 KIAA0149 SREC cholesterol catabolic process [GO:0006707]; dendrite development [GO:0016358]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; neuron remodeling [GO:0016322]; positive regulation of axon regeneration [GO:0048680]; positive regulation of neuron projection development [GO:0010976]; receptor-mediated endocytosis [GO:0006898] -Q14242 reviewed SELPL_HUMAN P-selectin glycoprotein ligand 1 (PSGL-1) (Selectin P ligand) (CD antigen CD162) SELPLG cell adhesion [GO:0007155]; cellular response to interleukin-6 [GO:0071354]; leukocyte adhesive activation [GO:0050902]; leukocyte migration [GO:0050900]; leukocyte tethering or rolling [GO:0050901] -Q14515 reviewed SPRL1_HUMAN SPARC-like protein 1 (High endothelial venule protein) (Hevin) (MAST 9) SPARCL1 signal transduction [GO:0007165]; synaptic membrane adhesion [GO:0099560] -Q14517 reviewed FAT1_HUMAN Protocadherin Fat 1 (Cadherin family member 7) (Cadherin-related tumor suppressor homolog) (Protein fat homolog) [Cleaved into: Protocadherin Fat 1, nuclear form] FAT1 CDHF7 FAT actin filament organization [GO:0007015]; anatomical structure morphogenesis [GO:0009653]; cell adhesion [GO:0007155]; cell migration [GO:0016477]; cell-cell adhesion [GO:0098609]; cell-cell signaling [GO:0007267]; cellular response to angiotensin [GO:1904385]; epithelial cell morphogenesis [GO:0003382]; establishment of epithelial cell apical/basal polarity involved in camera-type eye morphogenesis [GO:0003412]; establishment or maintenance of cell polarity [GO:0007163]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; lens development in camera-type eye [GO:0002088]; positive regulation of vascular associated smooth muscle cell migration [GO:1904754] -Q14574 reviewed DSC3_HUMAN Desmocollin-3 (Cadherin family member 3) (Desmocollin-4) (HT-CP) DSC3 CDHF3 DSC4 cell adhesion [GO:0007155]; cell-cell adhesion [GO:0098609]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; in utero embryonic development [GO:0001701]; protein stabilization [GO:0050821] -Q14623 reviewed IHH_HUMAN Indian hedgehog protein (IHH) (EC 3.1.-.-) (HHG-2) [Cleaved into: Indian hedgehog protein N-product] IHH bone resorption [GO:0045453]; branching involved in blood vessel morphogenesis [GO:0001569]; camera-type eye photoreceptor cell fate commitment [GO:0060220]; cell fate specification [GO:0001708]; cell maturation [GO:0048469]; cell-cell signaling [GO:0007267]; chondrocyte differentiation involved in endochondral bone morphogenesis [GO:0003413]; chondrocyte proliferation [GO:0035988]; embryonic camera-type eye morphogenesis [GO:0048596]; embryonic digestive tract morphogenesis [GO:0048557]; embryonic digit morphogenesis [GO:0042733]; embryonic pattern specification [GO:0009880]; embryonic skeletal joint development [GO:0072498]; epithelial cell morphogenesis [GO:0003382]; epithelial cell-cell adhesion [GO:0090136]; head morphogenesis [GO:0060323]; heart looping [GO:0001947]; in utero embryonic development [GO:0001701]; intein-mediated protein splicing [GO:0016539]; liver regeneration [GO:0097421]; maternal process involved in female pregnancy [GO:0060135]; multicellular organism growth [GO:0035264]; negative regulation of alpha-beta T cell differentiation [GO:0046639]; negative regulation of apoptotic process [GO:0043066]; negative regulation of chondrocyte differentiation [GO:0032331]; negative regulation of eye pigmentation [GO:0048074]; negative regulation of immature T cell proliferation in thymus [GO:0033088]; negative regulation of T cell differentiation in thymus [GO:0033085]; neuron development [GO:0048666]; osteoblast differentiation [GO:0001649]; pancreas development [GO:0031016]; positive regulation of alpha-beta T cell differentiation [GO:0046638]; positive regulation of collagen biosynthetic process [GO:0032967]; positive regulation of epithelial cell proliferation [GO:0050679]; positive regulation of mesenchymal cell proliferation [GO:0002053]; positive regulation of smoothened signaling pathway [GO:0045880]; positive regulation of T cell differentiation in thymus [GO:0033089]; positive regulation of transcription by RNA polymerase II [GO:0045944]; protein autoprocessing [GO:0016540]; proteoglycan metabolic process [GO:0006029]; regulation of gene expression [GO:0010468]; regulation of growth [GO:0040008]; response to estradiol [GO:0032355]; response to mechanical stimulus [GO:0009612]; retinal pigment epithelium development [GO:0003406]; self proteolysis [GO:0097264]; skeletal system development [GO:0001501]; smooth muscle tissue development [GO:0048745]; smoothened signaling pathway [GO:0007224]; somite development [GO:0061053]; vitelline membrane formation [GO:0030704] -Q14773 reviewed ICAM4_HUMAN Intercellular adhesion molecule 4 (ICAM-4) (Landsteiner-Wiener blood group glycoprotein) (LW blood group protein) (CD antigen CD242) ICAM4 LW cell adhesion [GO:0007155]; cell-cell adhesion [GO:0098609] -Q14993 reviewed COJA1_HUMAN Collagen alpha-1(XIX) chain (Collagen alpha-1(Y) chain) COL19A1 cell adhesion [GO:0007155]; cell differentiation [GO:0030154]; cell-cell adhesion [GO:0098609]; extracellular matrix organization [GO:0030198]; skeletal muscle tissue development [GO:0007519]; skeletal system development [GO:0001501] -Q15025 reviewed TNIP1_HUMAN TNFAIP3-interacting protein 1 (A20-binding inhibitor of NF-kappa-B activation 1) (ABIN-1) (HIV-1 Nef-interacting protein) (Nef-associated factor 1) (Naf1) (Nip40-1) (Virion-associated nuclear shuttling protein) (VAN) (hVAN) TNIP1 KIAA0113 NAF1 cellular response to lipopolysaccharide [GO:0071222]; defense response [GO:0006952]; glycoprotein biosynthetic process [GO:0009101]; inflammatory response [GO:0006954]; leukocyte cell-cell adhesion [GO:0007159]; MyD88-dependent toll-like receptor signaling pathway [GO:0002755]; negative regulation of canonical NF-kappaB signal transduction [GO:0043124]; negative regulation of ERK1 and ERK2 cascade [GO:0070373]; negative regulation of viral genome replication [GO:0045071]; positive regulation of inflammatory response [GO:0050729]; positive regulation of protein deubiquitination [GO:1903003]; positive regulation of transcription by RNA polymerase II [GO:0045944]; regulation of transcription by RNA polymerase II [GO:0006357]; translation [GO:0006412] -Q15078 reviewed CD5R1_HUMAN Cyclin-dependent kinase 5 activator 1 (CDK5 activator 1) (Cyclin-dependent kinase 5 regulatory subunit 1) (TPKII regulatory subunit) [Cleaved into: Cyclin-dependent kinase 5 activator 1, p35 (p35); Cyclin-dependent kinase 5 activator 1, p25 (p25) (Tau protein kinase II 23 kDa subunit) (p23)] CDK5R1 CDK5R NCK5A axon guidance [GO:0007411]; axonal fasciculation [GO:0007413]; brain development [GO:0007420]; cerebellum development [GO:0021549]; embryo development ending in birth or egg hatching [GO:0009792]; ephrin receptor signaling pathway [GO:0048013]; G protein-coupled acetylcholine receptor signaling pathway [GO:0007213]; G1 to G0 transition involved in cell differentiation [GO:0070315]; hippocampus development [GO:0021766]; ionotropic glutamate receptor signaling pathway [GO:0035235]; layer formation in cerebral cortex [GO:0021819]; microtubule cytoskeleton organization [GO:0000226]; negative regulation of DNA-templated transcription [GO:0045892]; neuron cell-cell adhesion [GO:0007158]; neuron differentiation [GO:0030182]; neuron migration [GO:0001764]; neuron projection development [GO:0031175]; peptidyl-serine phosphorylation [GO:0018105]; peptidyl-threonine phosphorylation [GO:0018107]; positive regulation of microtubule polymerization [GO:0031116]; positive regulation of neuron apoptotic process [GO:0043525]; positive regulation of protein targeting to membrane [GO:0090314]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of cyclin-dependent protein serine/threonine kinase activity [GO:0000079]; regulation of dendritic spine morphogenesis [GO:0061001]; regulation of macroautophagy [GO:0016241]; regulation of neuron differentiation [GO:0045664]; regulation of synaptic vesicle cycle [GO:0098693]; rhythmic process [GO:0048511]; superior olivary nucleus maturation [GO:0021722] -Q15223 reviewed NECT1_HUMAN Nectin-1 (Herpes virus entry mediator C) (Herpesvirus entry mediator C) (HveC) (Herpesvirus Ig-like receptor) (HIgR) (Nectin cell adhesion molecule 1) (Poliovirus receptor-related protein 1) (CD antigen CD111) NECTIN1 HVEC PRR1 PVRL1 axon guidance [GO:0007411]; cell adhesion [GO:0007155]; cell-cell adhesion [GO:0098609]; desmosome organization [GO:0002934]; enamel mineralization [GO:0070166]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; immune response [GO:0006955]; iron ion transport [GO:0006826]; lens morphogenesis in camera-type eye [GO:0002089]; protein localization to cell junction [GO:1902414]; regulation of synapse assembly [GO:0051963]; retina development in camera-type eye [GO:0060041]; symbiont entry into host cell [GO:0046718] -Q15417 reviewed CNN3_HUMAN Calponin-3 (Calponin, acidic isoform) CNN3 actin filament organization [GO:0007015]; actomyosin structure organization [GO:0031032]; epithelial cell differentiation [GO:0030855] -Q15517 reviewed CDSN_HUMAN Corneodesmosin (S protein) CDSN amyloid fibril formation [GO:1990000]; cell adhesion [GO:0007155]; cell-cell adhesion [GO:0098609]; corneocyte desquamation [GO:0003336]; epidermis development [GO:0008544]; keratinocyte differentiation [GO:0030216]; negative regulation of cornification [GO:1905716]; skin morphogenesis [GO:0043589] -Q15700 reviewed DLG2_HUMAN Disks large homolog 2 (Channel-associated protein of synapse-110) (Chapsyn-110) (Postsynaptic density protein PSD-93) DLG2 anterograde axonal protein transport [GO:0099641]; cell-cell adhesion [GO:0098609]; cellular response to potassium ion [GO:0035865]; chemical synaptic transmission [GO:0007268]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; receptor clustering [GO:0043113]; receptor localization to synapse [GO:0097120]; regulation of postsynaptic membrane neurotransmitter receptor levels [GO:0099072]; retrograde axonal protein transport [GO:0099642] -Q16394 reviewed EXT1_HUMAN Exostosin-1 (EC 2.4.1.225) (Exostosin glycosyltransferase 1) (Heparan sulfate co-polymerase subunit EXT1) (Multiple exostoses protein 1) (N-acetylglucosaminyl-proteoglycan 4-beta-glucuronosyltransferase) EXT1 antigen processing and presentation [GO:0019882]; axon guidance [GO:0007411]; basement membrane organization [GO:0071711]; blood vessel remodeling [GO:0001974]; BMP signaling pathway [GO:0030509]; bone resorption [GO:0045453]; canonical Wnt signaling pathway [GO:0060070]; cartilage development involved in endochondral bone morphogenesis [GO:0060351]; cell adhesion mediated by integrin [GO:0033627]; cell fate commitment [GO:0045165]; cellular response to virus [GO:0098586]; chondrocyte hypertrophy [GO:0003415]; chondrocyte proliferation [GO:0035988]; chondroitin sulfate metabolic process [GO:0030204]; collagen fibril organization [GO:0030199]; cranial skeletal system development [GO:1904888]; dendrite self-avoidance [GO:0070593]; dendritic cell migration [GO:0036336]; developmental growth involved in morphogenesis [GO:0060560]; embryonic skeletal joint development [GO:0072498]; endochondral bone growth [GO:0003416]; endochondral ossification [GO:0001958]; endoderm development [GO:0007492]; epithelial tube branching involved in lung morphogenesis [GO:0060441]; fear response [GO:0042596]; fibroblast growth factor receptor signaling pathway [GO:0008543]; fluid transport [GO:0042044]; gastrulation [GO:0007369]; gene expression [GO:0010467]; glandular epithelial cell differentiation [GO:0002067]; glomerular basement membrane development [GO:0032836]; glycosaminoglycan biosynthetic process [GO:0006024]; hair follicle morphogenesis [GO:0031069]; heart contraction [GO:0060047]; heart field specification [GO:0003128]; hematopoietic stem cell differentiation [GO:0060218]; hematopoietic stem cell homeostasis [GO:0061484]; hematopoietic stem cell migration to bone marrow [GO:0097241]; heparan sulfate proteoglycan biosynthetic process [GO:0015012]; heparan sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process [GO:0015014]; heparin biosynthetic process [GO:0030210]; hypersensitivity [GO:0002524]; leukocyte tethering or rolling [GO:0050901]; limb joint morphogenesis [GO:0036022]; lymphocyte adhesion to endothelial cell of high endothelial venule [GO:0036339]; lymphocyte migration into lymphoid organs [GO:0097021]; mesenchymal cell differentiation involved in bone development [GO:1901706]; mesoderm development [GO:0007498]; motor behavior [GO:0061744]; multicellular organism growth [GO:0035264]; multicellular organismal-level water homeostasis [GO:0050891]; neural crest cell differentiation [GO:0014033]; olfactory bulb development [GO:0021772]; optic nerve development [GO:0021554]; ossification [GO:0001503]; ossification involved in bone maturation [GO:0043931]; perichondral bone morphogenesis [GO:0061974]; podocyte differentiation [GO:0072112]; polysaccharide biosynthetic process [GO:0000271]; protein catabolic process [GO:0030163]; protein glycosylation [GO:0006486]; protein-containing complex assembly [GO:0065003]; regulation of blood pressure [GO:0008217]; regulation of tumor necrosis factor-mediated signaling pathway [GO:0010803]; response to heparin [GO:0071503]; response to leukemia inhibitory factor [GO:1990823]; response to light intensity [GO:0009642]; sebaceous gland development [GO:0048733]; smoothened signaling pathway involved in lung development [GO:0060506]; social behavior [GO:0035176]; sodium ion homeostasis [GO:0055078]; stem cell division [GO:0017145]; stomach development [GO:0062094]; sulfation [GO:0051923]; sweat gland development [GO:0060792]; synaptic transmission, glutamatergic [GO:0035249]; tight junction organization [GO:0120193]; vacuole organization [GO:0007033]; vasodilation [GO:0042311]; vocalization behavior [GO:0071625]; wound healing [GO:0042060] -Q16678 reviewed CP1B1_HUMAN Cytochrome P450 1B1 (EC 1.14.14.1) (CYPIB1) (Hydroperoxy icosatetraenoate dehydratase) (EC 4.2.1.152) CYP1B1 adrenal gland development [GO:0030325]; angiogenesis [GO:0001525]; arachidonic acid metabolic process [GO:0019369]; benzene-containing compound metabolic process [GO:0042537]; blood vessel endothelial cell migration [GO:0043534]; blood vessel morphogenesis [GO:0048514]; cell adhesion [GO:0007155]; cellular response to cAMP [GO:0071320]; cellular response to cortisol stimulus [GO:0071387]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to luteinizing hormone stimulus [GO:0071373]; cellular response to organic cyclic compound [GO:0071407]; cellular response to progesterone stimulus [GO:0071393]; cellular response to toxic substance [GO:0097237]; cellular response to tumor necrosis factor [GO:0071356]; collagen fibril organization [GO:0030199]; DNA modification [GO:0006304]; endothelial cell migration [GO:0043542]; endothelial cell-cell adhesion [GO:0071603]; epoxygenase P450 pathway [GO:0019373]; estrogen metabolic process [GO:0008210]; estrous cycle [GO:0044849]; ganglion development [GO:0061548]; intrinsic apoptotic signaling pathway in response to oxidative stress [GO:0008631]; male gonad development [GO:0008584]; membrane lipid catabolic process [GO:0046466]; negative regulation of cell adhesion mediated by integrin [GO:0033629]; negative regulation of cell migration [GO:0030336]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of NF-kappaB transcription factor activity [GO:0032088]; nitric oxide biosynthetic process [GO:0006809]; omega-hydroxylase P450 pathway [GO:0097267]; positive regulation of angiogenesis [GO:0045766]; positive regulation of apoptotic process [GO:0043065]; positive regulation of DNA biosynthetic process [GO:2000573]; positive regulation of reactive oxygen species metabolic process [GO:2000379]; positive regulation of receptor signaling pathway via JAK-STAT [GO:0046427]; positive regulation of smooth muscle cell migration [GO:0014911]; positive regulation of translation [GO:0045727]; positive regulation of vascular endothelial growth factor production [GO:0010575]; regulation of reactive oxygen species metabolic process [GO:2000377]; response to 3-methylcholanthrene [GO:1904681]; response to arsenic-containing substance [GO:0046685]; response to dexamethasone [GO:0071548]; response to estradiol [GO:0032355]; response to follicle-stimulating hormone [GO:0032354]; response to indole-3-methanol [GO:0071680]; response to nutrient [GO:0007584]; retinal blood vessel morphogenesis [GO:0061304]; retinal metabolic process [GO:0042574]; retinol metabolic process [GO:0042572]; steroid metabolic process [GO:0008202]; sterol metabolic process [GO:0016125]; toxin metabolic process [GO:0009404]; trabecular meshwork development [GO:0002930]; xenobiotic metabolic process [GO:0006805] -Q16787 reviewed LAMA3_HUMAN Laminin subunit alpha-3 (Epiligrin 170 kDa subunit) (E170) (Epiligrin subunit alpha) (Kalinin subunit alpha) (Laminin-5 subunit alpha) (Laminin-6 subunit alpha) (Laminin-7 subunit alpha) (Nicein subunit alpha) LAMA3 LAMNA cell-cell adhesion [GO:0098609]; endodermal cell differentiation [GO:0035987]; epidermis development [GO:0008544]; hemidesmosome assembly [GO:0031581]; regulation of cell adhesion [GO:0030155]; regulation of cell migration [GO:0030334]; regulation of embryonic development [GO:0045995] -Q4KMG0 reviewed CDON_HUMAN Cell adhesion molecule-related/down-regulated by oncogenes CDON CDO anterior/posterior pattern specification [GO:0009952]; cell adhesion [GO:0007155]; cell fate specification [GO:0001708]; cell-cell adhesion [GO:0098609]; cerebral cortex development [GO:0021987]; embryonic body morphogenesis [GO:0010172]; embryonic retina morphogenesis in camera-type eye [GO:0060059]; lens development in camera-type eye [GO:0002088]; myoblast fusion [GO:0007520]; nervous system development [GO:0007399]; neuroblast proliferation [GO:0007405]; neuron differentiation [GO:0030182]; positive regulation of MAPK cascade [GO:0043410]; positive regulation of neuroblast proliferation [GO:0002052]; positive regulation of neuron differentiation [GO:0045666]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of skeletal muscle tissue development [GO:0048643]; positive regulation of small GTPase mediated signal transduction [GO:0051057]; positive regulation of transcription by RNA polymerase II [GO:0045944]; skeletal muscle satellite cell differentiation [GO:0014816]; smoothened signaling pathway [GO:0007224] -Q58EX2 reviewed SDK2_HUMAN Protein sidekick-2 SDK2 KIAA1514 camera-type eye photoreceptor cell differentiation [GO:0060219]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; retina layer formation [GO:0010842]; synapse assembly [GO:0007416] -Q5DX21 reviewed IGS11_HUMAN Immunoglobulin superfamily member 11 (IgSF11) (Brain and testis-specific immunoglobulin superfamily protein) (Bt-IGSF) (V-set and immunoglobulin domain-containing protein 3) IGSF11 BTIGSF CXADRL1 VSIG3 cell-cell adhesion via plasma-membrane adhesion molecules [GO:0098742]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; maintenance of protein location [GO:0045185]; positive regulation of long-term synaptic potentiation [GO:1900273]; positive regulation of mini excitatory postsynaptic potential [GO:0061885] -Q5IJ48 reviewed CRUM2_HUMAN Protein crumbs homolog 2 (Crumbs-like protein 2) CRB2 circulatory system development [GO:0072359]; establishment of cell polarity [GO:0030010]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; ingression involved in gastrulation with mouth forming second [GO:0055111]; maintenance of epithelial cell apical/basal polarity [GO:0045199]; mesoderm formation [GO:0001707]; negative regulation of endopeptidase activity [GO:0010951]; notochord formation [GO:0014028]; photoreceptor cell maintenance [GO:0045494]; positive regulation of BMP signaling pathway [GO:0030513]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; regulation of gastrulation [GO:0010470]; retina homeostasis [GO:0001895]; retinal cone cell development [GO:0046549]; somitogenesis [GO:0001756]; visual perception [GO:0007601] -Q5JWF2 reviewed GNAS1_HUMAN Guanine nucleotide-binding protein G(s) subunit alpha isoforms XLas (Adenylate cyclase-stimulating G alpha protein) (Extra large alphas protein) (XLalphas) GNAS GNAS1 adenylate cyclase-activating dopamine receptor signaling pathway [GO:0007191]; adenylate cyclase-activating G protein-coupled receptor signaling pathway [GO:0007189]; bone development [GO:0060348]; developmental growth [GO:0048589]; platelet aggregation [GO:0070527]; positive regulation of cold-induced thermogenesis [GO:0120162]; sensory perception of chemical stimulus [GO:0007606] -Q5T4B2 reviewed GT253_HUMAN Inactive glycosyltransferase 25 family member 3 (Cerebral endothelial cell adhesion molecule) CERCAM CEECAM1 GLT25D3 KIAA1502 cell adhesion [GO:0007155]; leukocyte cell-cell adhesion [GO:0007159] -Q5TAT6 reviewed CODA1_HUMAN Collagen alpha-1(XIII) chain (COLXIIIA1) COL13A1 cell differentiation [GO:0030154]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; endochondral ossification [GO:0001958]; extracellular matrix organization [GO:0030198]; morphogenesis of a branching structure [GO:0001763]; skeletal system development [GO:0001501] -Q5TZZ9 unreviewed Q5TZZ9_HUMAN Annexin ANXA1 hCG_17305 adaptive immune response [GO:0002250]; alpha-beta T cell differentiation [GO:0046632]; arachidonic acid secretion [GO:0050482]; cell surface receptor signaling pathway [GO:0007166]; cellular response to glucocorticoid stimulus [GO:0071385]; cellular response to hydrogen peroxide [GO:0070301]; cellular response to vascular endothelial growth factor stimulus [GO:0035924]; DNA duplex unwinding [GO:0032508]; endocrine pancreas development [GO:0031018]; estrous cycle [GO:0044849]; gliogenesis [GO:0042063]; granulocyte chemotaxis [GO:0071621]; hepatocyte differentiation [GO:0070365]; inflammatory response [GO:0006954]; insulin secretion [GO:0030073]; keratinocyte differentiation [GO:0030216]; myoblast migration involved in skeletal muscle regeneration [GO:0014839]; negative regulation of exocytosis [GO:0045920]; negative regulation of T-helper 2 cell differentiation [GO:0045629]; neutrophil clearance [GO:0097350]; positive regulation of cell migration involved in sprouting angiogenesis [GO:0090050]; positive regulation of G1/S transition of mitotic cell cycle [GO:1900087]; positive regulation of interleukin-2 production [GO:0032743]; positive regulation of neutrophil apoptotic process [GO:0033031]; positive regulation of prostaglandin biosynthetic process [GO:0031394]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T-helper 1 cell differentiation [GO:0045627]; positive regulation of vesicle fusion [GO:0031340]; positive regulation of wound healing [GO:0090303]; prolactin secretion [GO:0070459]; prostate gland development [GO:0030850]; regulation of cell shape [GO:0008360]; regulation of hormone secretion [GO:0046883]; regulation of inflammatory response [GO:0050727]; regulation of interleukin-1 production [GO:0032652]; regulation of leukocyte migration [GO:0002685]; response to estradiol [GO:0032355]; response to interleukin-1 [GO:0070555]; response to peptide hormone [GO:0043434]; response to X-ray [GO:0010165] -Q5VY43 reviewed PEAR1_HUMAN Platelet endothelial aggregation receptor 1 (hPEAR1) (Multiple epidermal growth factor-like domains protein 12) (Multiple EGF-like domains protein 12) PEAR1 MEGF12 phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; platelet aggregation [GO:0070527]; positive regulation of platelet activation [GO:0010572]; recognition of apoptotic cell [GO:0043654] -Q6IQ23 reviewed PKHA7_HUMAN Pleckstrin homology domain-containing family A member 7 (PH domain-containing family A member 7) PLEKHA7 cell-cell adhesion mediated by cadherin [GO:0044331]; epithelial cell-cell adhesion [GO:0090136]; pore complex assembly [GO:0046931]; zonula adherens maintenance [GO:0045218] -Q6N022 reviewed TEN4_HUMAN Teneurin-4 (Ten-4) (Protein Odd Oz/ten-m homolog 4) (Tenascin-M4) (Ten-m4) (Teneurin transmembrane protein 4) TENM4 KIAA1302 ODZ4 TNM4 cardiac cell fate specification [GO:0060912]; cardiac muscle cell proliferation [GO:0060038]; central nervous system myelin formation [GO:0032289]; gastrulation with mouth forming second [GO:0001702]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; neuron development [GO:0048666]; positive regulation of gastrulation [GO:2000543]; positive regulation of myelination [GO:0031643]; positive regulation of oligodendrocyte differentiation [GO:0048714]; regulation of myelination [GO:0031641]; signal transduction [GO:0007165] -Q6PJG9 reviewed LRFN4_HUMAN Leucine-rich repeat and fibronectin type-III domain-containing protein 4 LRFN4 SALM3 regulation of postsynaptic density assembly [GO:0099151]; regulation of presynapse assembly [GO:1905606]; synaptic membrane adhesion [GO:0099560] -Q6UWL6 reviewed KIRR2_HUMAN Kin of IRRE-like protein 2 (Kin of irregular chiasm-like protein 2) (Nephrin-like protein 3) KIRREL2 NEPH3 UNQ5827/PRO19646 cell adhesion [GO:0007155]; cell-cell adhesion [GO:0098609]; negative regulation of protein phosphorylation [GO:0001933] -Q6UXI9 reviewed NPNT_HUMAN Nephronectin (Preosteoblast EGF-like repeat protein with MAM domain) (Protein EGFL6-like) NPNT EGFL6L POEM UNQ295/PRO334 branching involved in ureteric bud morphogenesis [GO:0001658]; cell-cell adhesion mediated by integrin [GO:0033631]; cell-matrix adhesion [GO:0007160]; cellular response to tumor necrosis factor [GO:0071356]; establishment of protein localization [GO:0045184]; extracellular matrix organization [GO:0030198]; pilomotor reflex [GO:0097195]; positive regulation of cell-substrate adhesion [GO:0010811]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of osteoblast differentiation [GO:0045669]; positive regulation of smooth muscle contraction [GO:0045987]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of transforming growth factor beta receptor signaling pathway [GO:0030511]; smooth muscle cell differentiation [GO:0051145]; transforming growth factor beta receptor signaling pathway [GO:0007179]; ureteric bud development [GO:0001657] -Q6UXZ0 reviewed TMIG1_HUMAN Transmembrane and immunoglobulin domain-containing protein 1 TMIGD1 TMIGD UNQ9372/PRO34164 brush border assembly [GO:1904970]; cell aggregation [GO:0098743]; cell migration [GO:0016477]; cell-cell junction organization [GO:0045216]; cellular response to hydroperoxide [GO:0071447]; intestinal epithelial cell maturation [GO:0060574]; negative regulation of apoptotic process [GO:0043066]; negative regulation of epithelial cell proliferation [GO:0050680]; protein localization [GO:0008104]; regulation of cell migration [GO:0030334]; regulation of cell population proliferation [GO:0042127]; regulation of membrane permeability [GO:0090559]; response to nutrient [GO:0007584] -Q6UXZ4 reviewed UNC5D_HUMAN Netrin receptor UNC5D (Protein unc-5 homolog 4) (Protein unc-5 homolog D) UNC5D KIAA1777 UNC5H4 UNQ6012/PRO34692 apoptotic process [GO:0006915]; axon guidance [GO:0007411]; cell-cell adhesion via plasma-membrane adhesion molecules [GO:0098742]; pyramidal neuron differentiation [GO:0021859]; regulation of neuron migration [GO:2001222] -Q6V0I7 reviewed FAT4_HUMAN Protocadherin Fat 4 (hFat4) (Cadherin family member 14) (FAT tumor suppressor homolog 4) (Fat-like cadherin protein FAT-J) FAT4 CDHF14 FATJ Nbla00548 cell-cell adhesion [GO:0098609]; cerebral cortex development [GO:0021987]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; hippo signaling [GO:0035329]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; neurogenesis [GO:0022008] -Q6ZMI3 reviewed GLDN_HUMAN Gliomedin [Cleaved into: Gliomedin shedded ectodomain] GLDN COLM UNQ9339/PRO34011 clustering of voltage-gated sodium channels [GO:0045162]; microvillus organization [GO:0032528]; signal transduction [GO:0007165] -Q6ZTQ4 reviewed CDHR3_HUMAN Cadherin-related family member 3 (Cadherin-like protein 28) CDHR3 CDH28 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell migration [GO:0016477]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q75N03 reviewed HAKAI_HUMAN E3 ubiquitin-protein ligase Hakai (EC 2.3.2.27) (Casitas B-lineage lymphoma-transforming sequence-like protein 1) (c-Cbl-like protein 1) (RING finger protein 188) (RING-type E3 ubiquitin transferase Hakai) CBLL1 HAKAI RNF188 cell-cell adhesion [GO:0098609]; mRNA processing [GO:0006397]; negative regulation of cell adhesion [GO:0007162]; positive regulation of cell migration [GO:0030335]; positive regulation of endocytosis [GO:0045807]; protein ubiquitination [GO:0016567]; regulation of cell adhesion [GO:0030155] -Q7RTS1 reviewed BHA15_HUMAN Class A basic helix-loop-helix protein 15 (bHLHa15) (Class B basic helix-loop-helix protein 8) (bHLHb8) (Muscle, intestine and stomach expression 1) (MIST-1) BHLHA15 BHLHB8 MIST1 axon development [GO:0061564]; calcium-mediated signaling [GO:0019722]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction organization [GO:0045216]; cell-cell signaling [GO:0007267]; cellular response to glucose starvation [GO:0042149]; endoplasmic reticulum unfolded protein response [GO:0030968]; establishment of localization in cell [GO:0051649]; G protein-coupled receptor signaling pathway [GO:0007186]; glucose homeostasis [GO:0042593]; Golgi organization [GO:0007030]; intracellular distribution of mitochondria [GO:0048312]; localization of cell [GO:0051674]; mitochondrial calcium ion transmembrane transport [GO:0006851]; negative regulation of myotube differentiation [GO:0010832]; neuron fate commitment [GO:0048663]; positive regulation of transcription by RNA polymerase II [GO:0045944]; sensory organ development [GO:0007423]; type B pancreatic cell maturation [GO:0072560] -Q7Z3B1 reviewed NEGR1_HUMAN Neuronal growth regulator 1 (IgLON family member 4) NEGR1 IGLON4 UNQ2433/PRO4993 cell-cell adhesion [GO:0098609]; feeding behavior [GO:0007631]; locomotory behavior [GO:0007626]; neuron projection development [GO:0031175]; positive regulation of neuron projection development [GO:0010976]; regulation of synapse assembly [GO:0051963] -Q7Z4I7 reviewed LIMS2_HUMAN LIM and senescent cell antigen-like-containing domain protein 2 (LIM-like protein 2) (Particularly interesting new Cys-His protein 2) (PINCH-2) LIMS2 PINCH2 cell-cell adhesion [GO:0098609]; cell-cell junction organization [GO:0045216]; cholangiocyte proliferation [GO:1990705]; integrin-mediated signaling pathway [GO:0007229]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cholangiocyte proliferation [GO:1904055]; negative regulation of hepatocyte proliferation [GO:2000346]; negative regulation of neural precursor cell proliferation [GO:2000178]; neural precursor cell proliferation [GO:0061351]; positive regulation of integrin-mediated signaling pathway [GO:2001046]; positive regulation of substrate adhesion-dependent cell spreading [GO:1900026] -Q7Z5N4 reviewed SDK1_HUMAN Protein sidekick-1 SDK1 behavioral response to cocaine [GO:0048148]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; regulation of dendritic spine development [GO:0060998]; retina layer formation [GO:0010842]; synapse assembly [GO:0007416] -Q86SJ2 reviewed AMGO2_HUMAN Amphoterin-induced protein 2 (AMIGO-2) (Alivin-1) (Differentially expressed in gastric adenocarcinomas) (DEGA) AMIGO2 ALI1 brain development [GO:0007420]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; negative regulation of programmed cell death [GO:0043069]; positive regulation of synapse assembly [GO:0051965] -Q86SJ6 reviewed DSG4_HUMAN Desmoglein-4 (Cadherin family member 13) DSG4 CDHF13 BMP signaling pathway [GO:0030509]; cell-cell adhesion [GO:0098609]; hair follicle development [GO:0001942]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; keratinocyte differentiation [GO:0030216] -Q86TC9 reviewed MYPN_HUMAN Myopalladin (145 kDa sarcomeric protein) MYPN MYOP axon guidance [GO:0007411]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; sarcomere organization [GO:0045214] -Q86UP0 reviewed CAD24_HUMAN Cadherin-24 CDH24 CDH11L UNQ2834/PRO34009 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell migration [GO:0016477]; cell morphogenesis [GO:0000902]; cell-cell adhesion [GO:0098609]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q86UX7 reviewed URP2_HUMAN Fermitin family homolog 3 (Kindlin-3) (MIG2-like protein) (Unc-112-related protein 2) FERMT3 KIND3 MIG2B URP2 cell-matrix adhesion [GO:0007160]; integrin activation [GO:0033622]; integrin-mediated signaling pathway [GO:0007229]; leukocyte cell-cell adhesion [GO:0007159]; platelet aggregation [GO:0070527]; positive regulation of cell migration [GO:0030335]; regulation of cell-cell adhesion mediated by integrin [GO:0033632]; substrate adhesion-dependent cell spreading [GO:0034446] -Q86WK6 reviewed AMGO1_HUMAN Amphoterin-induced protein 1 (AMIGO-1) (Alivin-2) AMIGO1 ALI2 AMIGO KIAA1163 axonal fasciculation [GO:0007413]; axonogenesis [GO:0007409]; brain development [GO:0007420]; cellular response to L-glutamate [GO:1905232]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; myelination [GO:0042552]; positive regulation of axonogenesis [GO:0050772]; positive regulation of neuron projection development [GO:0010976]; positive regulation of potassium ion transmembrane transport [GO:1901381]; positive regulation of synapse assembly [GO:0051965] -Q86YT9 reviewed JAML_HUMAN Junctional adhesion molecule-like (Adhesion molecule interacting with CXADR antigen 1) (Dendritic cell-specific protein CREA7-1) JAML AMICA1 UNQ722/PRO1387 gamma-delta T cell activation [GO:0046629]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; monocyte extravasation [GO:0035696]; neutrophil chemotaxis [GO:0030593]; neutrophil extravasation [GO:0072672]; positive regulation of epithelial cell proliferation involved in wound healing [GO:0060054] -Q8IWV2 reviewed CNTN4_HUMAN Contactin-4 (Brain-derived immunoglobulin superfamily protein 2) (BIG-2) CNTN4 axon guidance [GO:0007411]; axonal fasciculation [GO:0007413]; axonogenesis [GO:0007409]; brain development [GO:0007420]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; negative regulation of neuron differentiation [GO:0045665]; nervous system development [GO:0007399]; neuron cell-cell adhesion [GO:0007158]; neuron projection development [GO:0031175]; regulation of synaptic plasticity [GO:0048167]; synapse organization [GO:0050808] -Q8IXH8 reviewed CAD26_HUMAN Cadherin-like protein 26 (Cadherin-like protein VR20) CDH26 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; CD4-positive, alpha-beta T cell activation [GO:0035710]; cell migration [GO:0016477]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q8IYV9 reviewed IZUM1_HUMAN Izumo sperm-egg fusion protein 1 (Oocyte binding/fusion factor) (OBF) (Sperm-specific protein izumo) IZUMO1 cell adhesion [GO:0007155]; fusion of sperm to egg plasma membrane involved in single fertilization [GO:0007342]; heterotypic cell-cell adhesion [GO:0034113]; single fertilization [GO:0007338]; sperm-egg recognition [GO:0035036] -Q8IZU9 reviewed KIRR3_HUMAN Kin of IRRE-like protein 3 (Kin of irregular chiasm-like protein 3) (Nephrin-like protein 2) [Cleaved into: Processed kin of IRRE-like protein 3] KIRREL3 KIAA1867 NEPH2 UNQ5923/PRO4502/PRO19814 cell-cell adhesion [GO:0098609]; glomerulus morphogenesis [GO:0072102]; hemopoiesis [GO:0030097]; hippocampus development [GO:0021766]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; inter-male aggressive behavior [GO:0002121]; neuron migration [GO:0001764]; neuron projection morphogenesis [GO:0048812]; principal sensory nucleus of trigeminal nerve development [GO:0021740]; synapse assembly [GO:0007416] -Q8N0W4 reviewed NLGNX_HUMAN Neuroligin-4, X-linked (Neuroligin X) (HNLX) NLGN4X KIAA1260 NLGN4 UNQ365/PRO701 adult behavior [GO:0030534]; brainstem development [GO:0003360]; cell-cell junction organization [GO:0045216]; cerebellum development [GO:0021549]; chemical synaptic transmission [GO:0007268]; learning [GO:0007612]; modulation of chemical synaptic transmission [GO:0050804]; negative regulation of excitatory postsynaptic potential [GO:0090394]; neuron cell-cell adhesion [GO:0007158]; neuron differentiation [GO:0030182]; organ growth [GO:0035265]; postsynaptic membrane assembly [GO:0097104]; presynapse assembly [GO:0099054]; presynaptic membrane assembly [GO:0097105]; regulation of synapse assembly [GO:0051963]; social behavior [GO:0035176]; synapse organization [GO:0050808]; synaptic vesicle endocytosis [GO:0048488]; vocalization behavior [GO:0071625] -Q8N126 reviewed CADM3_HUMAN Cell adhesion molecule 3 (Brain immunoglobulin receptor) (Immunoglobulin superfamily member 4B) (IgSF4B) (Nectin-like protein 1) (NECL-1) (Synaptic cell adhesion molecule 3) (SynCAM3) (TSLC1-like protein 1) (TSLL1) CADM3 IGSF4B NECL1 SYNCAM3 TSLL1 UNQ225/PRO258 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q8N2Q7 reviewed NLGN1_HUMAN Neuroligin-1 NLGN1 KIAA1070 AMPA glutamate receptor clustering [GO:0097113]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cellular response to calcium ion [GO:0071277]; chemical synaptic transmission [GO:0007268]; cytoskeletal matrix organization at active zone [GO:0048789]; establishment of protein localization [GO:0045184]; excitatory synapse assembly [GO:1904861]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; modulation of chemical synaptic transmission [GO:0050804]; negative regulation of dendritic spine morphogenesis [GO:0061002]; nervous system development [GO:0007399]; neurexin clustering involved in presynaptic membrane assembly [GO:0097115]; neuron cell-cell adhesion [GO:0007158]; neuron projection arborization [GO:0140058]; neuron projection development [GO:0031175]; neuron projection morphogenesis [GO:0048812]; neuronal signal transduction [GO:0023041]; NMDA glutamate receptor clustering [GO:0097114]; positive regulation of circadian sleep/wake cycle, wakefulness [GO:0010841]; positive regulation of dendritic spine development [GO:0060999]; positive regulation of excitatory postsynaptic potential [GO:2000463]; positive regulation of filopodium assembly [GO:0051491]; positive regulation of intracellular signal transduction [GO:1902533]; positive regulation of neuromuscular synaptic transmission [GO:1900075]; positive regulation of ruffle assembly [GO:1900029]; positive regulation of synapse assembly [GO:0051965]; positive regulation of synaptic transmission, GABAergic [GO:0032230]; positive regulation of synaptic transmission, glutamatergic [GO:0051968]; positive regulation of synaptic vesicle endocytosis [GO:1900244]; positive regulation of synaptic vesicle exocytosis [GO:2000302]; postsynaptic density protein 95 clustering [GO:0097119]; postsynaptic membrane assembly [GO:0097104]; presynapse assembly [GO:0099054]; presynaptic membrane assembly [GO:0097105]; protein localization to synapse [GO:0035418]; protein targeting [GO:0006605]; receptor localization to synapse [GO:0097120]; regulation of AMPA receptor activity [GO:2000311]; regulation of neuron differentiation [GO:0045664]; regulation of NMDA receptor activity [GO:2000310]; rhythmic process [GO:0048511]; synapse assembly [GO:0007416]; synaptic vesicle clustering [GO:0097091]; synaptic vesicle endocytosis [GO:0048488]; synaptic vesicle targeting [GO:0016080]; terminal button organization [GO:0072553] -Q8N3J6 reviewed CADM2_HUMAN Cell adhesion molecule 2 (Immunoglobulin superfamily member 4D) (IgSF4D) (Nectin-like protein 3) (NECL-3) (Synaptic cell adhesion molecule 2) (SynCAM 2) CADM2 IGSF4D NECL3 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q8N423 reviewed LIRB2_HUMAN Leukocyte immunoglobulin-like receptor subfamily B member 2 (LIR-2) (Leukocyte immunoglobulin-like receptor 2) (CD85 antigen-like family member D) (Immunoglobulin-like transcript 4) (ILT-4) (Monocyte/macrophage immunoglobulin-like receptor 10) (MIR-10) (CD antigen CD85d) LILRB2 ILT4 LIR2 MIR10 adaptive immune response [GO:0002250]; cell surface receptor signaling pathway [GO:0007166]; cell-cell signaling [GO:0007267]; cellular defense response [GO:0006968]; cellular response to lipopolysaccharide [GO:0071222]; Fc receptor mediated inhibitory signaling pathway [GO:0002774]; heterotypic cell-cell adhesion [GO:0034113]; immune response [GO:0006955]; immune response-inhibiting cell surface receptor signaling pathway [GO:0002767]; immune response-regulating signaling pathway [GO:0002764]; interleukin-10-mediated signaling pathway [GO:0140105]; learning or memory [GO:0007611]; negative regulation of antigen processing and presentation [GO:0002578]; negative regulation of calcium ion transport [GO:0051926]; negative regulation of postsynaptic density organization [GO:1905875]; negative regulation of protein metabolic process [GO:0051248]; negative regulation of T cell costimulation [GO:2000524]; negative regulation of T cell proliferation [GO:0042130]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of long-term synaptic depression [GO:1900454]; positive regulation of protein dephosphorylation [GO:0035307]; positive regulation of regulatory T cell differentiation [GO:0045591]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of T cell tolerance induction [GO:0002666]; positive regulation of tolerance induction [GO:0002645]; regulation of dendritic cell differentiation [GO:2001198]; regulation of long-term synaptic potentiation [GO:1900271]; signal transduction [GO:0007165] -Q8N441 reviewed FGRL1_HUMAN Fibroblast growth factor receptor-like 1 (FGF receptor-like protein 1) (FGF homologous factor receptor) (FGFR-like protein) (Fibroblast growth factor receptor 5) (FGFR-5) FGFRL1 FGFR5 FHFR UNQ480/PRO943 cell-cell adhesion via plasma-membrane adhesion molecules [GO:0098742]; diaphragm development [GO:0060539]; heart valve morphogenesis [GO:0003179]; negative regulation of cell population proliferation [GO:0008285]; skeletal system development [GO:0001501]; ventricular septum morphogenesis [GO:0060412] -Q8N6F1 reviewed CLD19_HUMAN Claudin-19 CLDN19 actin cytoskeleton organization [GO:0030036]; bicellular tight junction assembly [GO:0070830]; calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules [GO:0016338]; cell adhesion [GO:0007155]; negative regulation of cell migration [GO:0030336]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of gene expression [GO:0010629]; negative regulation of wound healing [GO:0061045]; neuronal action potential propagation [GO:0019227]; positive regulation of cell junction assembly [GO:1901890]; positive regulation of gene expression [GO:0010628]; positive regulation of protein phosphorylation [GO:0001934]; regulation of transepithelial transport [GO:0150111]; visual perception [GO:0007601] -Q8N6Q3 reviewed CD177_HUMAN CD177 antigen (Human neutrophil alloantigen 2a) (HNA-2a) (NB1 glycoprotein) (NB1 GP) (Polycythemia rubra vera protein 1) (PRV-1) (CD antigen CD177) CD177 NB1 PRV1 UNQ595/PRO1181 cell adhesion [GO:0007155]; cell-cell adhesion via plasma-membrane adhesion molecules [GO:0098742]; cell-cell junction maintenance [GO:0045217]; innate immune response [GO:0045087]; leukocyte cell-cell adhesion [GO:0007159]; neutrophil extravasation [GO:0072672]; neutrophil migration [GO:1990266]; positive regulation of neutrophil degranulation [GO:0043315]; positive regulation of superoxide anion generation [GO:0032930]; protein localization to cell surface [GO:0034394]; regulation of endocytosis [GO:0030100]; regulation of integrin-mediated signaling pathway [GO:2001044] -Q8NE79 reviewed POPD1_HUMAN Blood vessel epicardial substance (hBVES) (Popeye domain-containing protein 1) (Popeye protein 1) BVES POP1 POPDC1 cell migration involved in heart development [GO:0060973]; epithelial cell-cell adhesion [GO:0090136]; heart development [GO:0007507]; hematopoietic progenitor cell differentiation [GO:0002244]; muscle organ development [GO:0007517]; positive regulation of locomotion [GO:0040017]; positive regulation of receptor recycling [GO:0001921]; regulation of cell shape [GO:0008360]; regulation of endocytic recycling [GO:2001135]; regulation of GTPase activity [GO:0043087]; regulation of heart rate [GO:0002027]; regulation of membrane potential [GO:0042391]; response to ischemia [GO:0002931]; sinoatrial node cell development [GO:0060931]; skeletal muscle tissue development [GO:0007519]; striated muscle cell differentiation [GO:0051146]; substrate adhesion-dependent cell spreading [GO:0034446]; vesicle docking [GO:0048278]; vesicle-mediated transport [GO:0016192] -Q8NFX7 reviewed STXB6_HUMAN Syntaxin-binding protein 6 (Amisyn) STXBP6 HSPC156 negative regulation of exocytosis [GO:0045920]; regulation of SNARE complex assembly [GO:0035542]; SNARE complex assembly [GO:0035493] -Q8NFZ3 reviewed NLGNY_HUMAN Neuroligin-4, Y-linked (Neuroligin Y) NLGN4Y KIAA0951 chemical synaptic transmission [GO:0007268]; learning [GO:0007612]; modulation of chemical synaptic transmission [GO:0050804]; neuron cell-cell adhesion [GO:0007158]; postsynaptic membrane assembly [GO:0097104]; presynapse assembly [GO:0099054]; presynaptic membrane assembly [GO:0097105]; social behavior [GO:0035176]; synaptic vesicle endocytosis [GO:0048488]; vocalization behavior [GO:0071625] -Q8NFZ4 reviewed NLGN2_HUMAN Neuroligin-2 NLGN2 KIAA1366 cell-cell adhesion [GO:0098609]; cell-cell junction maintenance [GO:0045217]; chemical synaptic transmission [GO:0007268]; gephyrin clustering involved in postsynaptic density assembly [GO:0097116]; inhibitory synapse assembly [GO:1904862]; insulin metabolic process [GO:1901142]; jump response [GO:0007630]; locomotory exploration behavior [GO:0035641]; modulation of chemical synaptic transmission [GO:0050804]; neuromuscular process controlling balance [GO:0050885]; neuron cell-cell adhesion [GO:0007158]; neurotransmitter-gated ion channel clustering [GO:0072578]; positive regulation of cell population proliferation [GO:0008284]; positive regulation of dendritic spine development [GO:0060999]; positive regulation of excitatory postsynaptic potential [GO:2000463]; positive regulation of inhibitory postsynaptic potential [GO:0097151]; positive regulation of insulin secretion [GO:0032024]; positive regulation of protein localization to synapse [GO:1902474]; positive regulation of synapse assembly [GO:0051965]; positive regulation of synaptic transmission, GABAergic [GO:0032230]; positive regulation of synaptic transmission, glutamatergic [GO:0051968]; positive regulation of synaptic vesicle clustering [GO:2000809]; positive regulation of t-SNARE clustering [GO:1904034]; postsynaptic density protein 95 clustering [GO:0097119]; postsynaptic membrane assembly [GO:0097104]; presynapse assembly [GO:0099054]; presynaptic membrane assembly [GO:0097105]; protein localization to cell surface [GO:0034394]; protein localization to synapse [GO:0035418]; regulation of AMPA receptor activity [GO:2000311]; regulation of presynapse assembly [GO:1905606]; regulation of respiratory gaseous exchange by nervous system process [GO:0002087]; sensory perception of pain [GO:0019233]; social behavior [GO:0035176]; synapse assembly [GO:0007416]; synapse organization [GO:0050808]; synaptic transmission, GABAergic [GO:0051932]; synaptic vesicle endocytosis [GO:0048488]; terminal button organization [GO:0072553]; thigmotaxis [GO:0001966] -Q8NFZ8 reviewed CADM4_HUMAN Cell adhesion molecule 4 (Immunoglobulin superfamily member 4C) (IgSF4C) (Nectin-like protein 4) (NECL-4) (TSLC1-like protein 2) CADM4 IGSF4C NECL4 TSLL2 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; negative regulation of peptidyl-threonine phosphorylation [GO:0010801]; negative regulation of peptidyl-tyrosine phosphorylation [GO:0050732]; negative regulation of protein phosphorylation [GO:0001933]; negative regulation of vascular endothelial growth factor receptor signaling pathway [GO:0030948]; negative regulation of vascular endothelial growth factor signaling pathway [GO:1900747]; regulation of cell motility [GO:2000145]; regulation of cell population proliferation [GO:0042127]; regulation of protein phosphorylation [GO:0001932]; regulation of Rac protein signal transduction [GO:0035020]; regulation of wound healing [GO:0061041] -Q8TAB3 reviewed PCD19_HUMAN Protocadherin-19 PCDH19 KIAA1313 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q8TD46 reviewed MO2R1_HUMAN Cell surface glycoprotein CD200 receptor 1 (CD200 cell surface glycoprotein receptor) (Cell surface glycoprotein OX2 receptor 1) CD200R1 CD200R CRTR2 MOX2R OX2R UNQ2522/PRO6015 heterotypic cell-cell adhesion [GO:0034113]; intracellular signal transduction [GO:0035556]; negative regulation of interleukin-6 production [GO:0032715]; negative regulation of macrophage migration [GO:1905522]; negative regulation of neuroinflammatory response [GO:0150079]; negative regulation of T cell migration [GO:2000405]; regulation of neuroinflammatory response [GO:0150077]; signal transduction [GO:0007165] -Q8TD84 reviewed DSCL1_HUMAN Cell adhesion molecule DSCAML1 (Down syndrome cell adhesion molecule 2) (Down syndrome cell adhesion molecule-like protein 1) DSCAML1 DSCAM2 KIAA1132 axon guidance [GO:0007411]; axonogenesis [GO:0007409]; brain development [GO:0007420]; cell fate determination [GO:0001709]; central nervous system development [GO:0007417]; dendrite self-avoidance [GO:0070593]; dorsal/ventral pattern formation [GO:0009953]; embryonic skeletal system morphogenesis [GO:0048704]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q8TDM6 reviewed DLG5_HUMAN Disks large homolog 5 (Discs large protein P-dlg) (Placenta and prostate DLG) DLG5 KIAA0583 PDLG apical protein localization [GO:0045176]; cell-cell adhesion [GO:0098609]; epithelial to mesenchymal transition [GO:0001837]; epithelial tube branching involved in lung morphogenesis [GO:0060441]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; intracellular signal transduction [GO:0035556]; maintenance of cell polarity [GO:0030011]; metanephric collecting duct development [GO:0072205]; midbrain development [GO:0030901]; negative regulation of cell migration [GO:0030336]; negative regulation of cell population proliferation [GO:0008285]; negative regulation of hippo signaling [GO:0035331]; negative regulation of T cell proliferation [GO:0042130]; neuroepithelial cell differentiation [GO:0060563]; polarized epithelial cell differentiation [GO:0030859]; positive regulation of dendritic spine development [GO:0060999]; positive regulation of hippo signaling [GO:0035332]; positive regulation of smoothened signaling pathway [GO:0045880]; positive regulation of synapse assembly [GO:0051965]; postsynapse organization [GO:0099173]; protein localization to adherens junction [GO:0071896]; protein-containing complex assembly [GO:0065003]; regulation of apoptotic process [GO:0042981]; signal transduction [GO:0007165]; zonula adherens assembly [GO:0045186] -Q8TDW7 reviewed FAT3_HUMAN Protocadherin Fat 3 (hFat3) (Cadherin family member 15) (FAT tumor suppressor homolog 3) FAT3 CDHF15 KIAA1989 cell morphogenesis involved in neuron differentiation [GO:0048667]; cell-cell adhesion [GO:0098609]; dendrite development [GO:0016358]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; interneuron migration [GO:1904936]; negative regulation of dendrite development [GO:2000171]; retina layer formation [GO:0010842] -Q8TDX9 reviewed PK1L1_HUMAN Polycystin-1-like protein 1 (Polycystin-1L1) (PC1-like 1 protein) (Polycystic kidney disease protein 1-like 1) PKD1L1 UNQ5785/PRO19563 cell-cell adhesion [GO:0098609]; detection of mechanical stimulus [GO:0050982]; detection of nodal flow [GO:0003127]; left/right axis specification [GO:0070986] -Q8TF42 reviewed UBS3B_HUMAN Ubiquitin-associated and SH3 domain-containing protein B (EC 3.1.3.48) (Cbl-interacting protein p70) (Suppressor of T-cell receptor signaling 1) (STS-1) (T-cell ubiquitin ligand 2) (TULA-2) (Tyrosine-protein phosphatase STS1/TULA2) UBASH3B KIAA1959 STS1 collagen-activated tyrosine kinase receptor signaling pathway [GO:0038063]; negative regulation of bone resorption [GO:0045779]; negative regulation of osteoclast differentiation [GO:0045671]; negative regulation of platelet aggregation [GO:0090331]; negative regulation of signal transduction [GO:0009968]; platelet aggregation [GO:0070527]; regulation of osteoclast differentiation [GO:0045670]; regulation of release of sequestered calcium ion into cytosol [GO:0051279] -Q8WUP2 reviewed FBLI1_HUMAN Filamin-binding LIM protein 1 (FBLP-1) (Migfilin) (Mitogen-inducible 2-interacting protein) (MIG2-interacting protein) FBLIM1 FBLP1 cell-cell adhesion [GO:0098609]; regulation of cell shape [GO:0008360]; regulation of integrin activation [GO:0033623] -Q8WX93 reviewed PALLD_HUMAN Palladin (SIH002) (Sarcoma antigen NY-SAR-77) PALLD KIAA0992 CGI-151 actin cytoskeleton organization [GO:0030036]; axon guidance [GO:0007411]; cell migration [GO:0016477]; cytoskeleton organization [GO:0007010]; dendrite self-avoidance [GO:0070593]; epithelial cell morphogenesis [GO:0003382]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; keratinocyte development [GO:0003334] -Q8WXG9 reviewed AGRV1_HUMAN Adhesion G-protein coupled receptor V1 (ADGRV1) (EC 3.4.-.-) (G-protein coupled receptor 98) (Monogenic audiogenic seizure susceptibility protein 1 homolog) (Usher syndrome type-2C protein) (Very large G-protein coupled receptor 1) [Cleaved into: ADGRV1 subunit alpha; ADGRV1 subunit beta] ADGRV1 GPR98 KIAA0686 KIAA1943 MASS1 VLGR1 cell surface receptor signaling pathway [GO:0007166]; cell-cell adhesion [GO:0098609]; cellular response to calcium ion [GO:0071277]; detection of mechanical stimulus involved in sensory perception of sound [GO:0050910]; establishment of protein localization [GO:0045184]; G protein-coupled receptor signaling pathway [GO:0007186]; inner ear development [GO:0048839]; inner ear receptor cell differentiation [GO:0060113]; inner ear receptor cell stereocilium organization [GO:0060122]; maintenance of animal organ identity [GO:0048496]; negative regulation of adenylate cyclase activity [GO:0007194]; nervous system development [GO:0007399]; nervous system process [GO:0050877]; photoreceptor cell maintenance [GO:0045494]; positive regulation of bone mineralization [GO:0030501]; positive regulation of protein kinase A signaling [GO:0010739]; positive regulation of protein kinase C signaling [GO:0090037]; regulation of protein stability [GO:0031647]; self proteolysis [GO:0097264]; sensory perception of light stimulus [GO:0050953]; sensory perception of sound [GO:0007605]; visual perception [GO:0007601] -Q8WZ75 reviewed ROBO4_HUMAN Roundabout homolog 4 (Magic roundabout) ROBO4 UNQ421/PRO3674 angiogenesis [GO:0001525]; axon guidance [GO:0007411]; dendrite self-avoidance [GO:0070593]; establishment of endothelial barrier [GO:0061028]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; regulation of cell migration [GO:0030334] -Q92692 reviewed NECT2_HUMAN Nectin-2 (Herpes virus entry mediator B) (Herpesvirus entry mediator B) (HveB) (Nectin cell adhesion molecule 2) (Poliovirus receptor-related protein 2) (CD antigen CD112) NECTIN2 HVEB PRR2 PVRL2 acrosome assembly [GO:0001675]; adhesion of symbiont to host [GO:0044406]; cilium organization [GO:0044782]; coreceptor-mediated virion attachment to host cell [GO:0046814]; cytoskeleton organization [GO:0007010]; establishment of localization in cell [GO:0051649]; establishment of mitochondrion localization [GO:0051654]; fertilization [GO:0009566]; fusion of virus membrane with host plasma membrane [GO:0019064]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; positive regulation of immunoglobulin mediated immune response [GO:0002891]; positive regulation of mast cell activation [GO:0033005]; positive regulation of natural killer cell mediated cytotoxicity [GO:0045954]; positive regulation of natural killer cell mediated cytotoxicity directed against tumor cell target [GO:0002860]; positive regulation of T cell receptor signaling pathway [GO:0050862]; regulation of viral entry into host cell [GO:0046596]; sperm mitochondrion organization [GO:0030382]; spermatid development [GO:0007286]; spermatid nucleus differentiation [GO:0007289]; susceptibility to natural killer cell mediated cytotoxicity [GO:0042271]; susceptibility to T cell mediated cytotoxicity [GO:0060370] -Q92729 reviewed PTPRU_HUMAN Receptor-type tyrosine-protein phosphatase U (R-PTP-U) (EC 3.1.3.48) (Pancreatic carcinoma phosphatase 2) (PCP-2) (Protein-tyrosine phosphatase J) (PTP-J) (hPTP-J) (Protein-tyrosine phosphatase pi) (PTP pi) (Protein-tyrosine phosphatase receptor omicron) (PTP-RO) (Receptor-type protein-tyrosine phosphatase psi) (R-PTP-psi) PTPRU FMI PCP2 PTPRO animal organ regeneration [GO:0031100]; cell adhesion [GO:0007155]; cell differentiation [GO:0030154]; cell surface receptor protein tyrosine phosphatase signaling pathway [GO:0007185]; homotypic cell-cell adhesion [GO:0034109]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cell migration [GO:0030336]; negative regulation of cell population proliferation [GO:0008285]; positive regulation of cell-cell adhesion mediated by cadherin [GO:2000049]; protein dephosphorylation [GO:0006470]; protein localization to cell surface [GO:0034394]; response to glucocorticoid [GO:0051384] -Q92752 reviewed TENR_HUMAN Tenascin-R (TN-R) (Janusin) (Restrictin) TNR associative learning [GO:0008306]; axon extension involved in regeneration [GO:0048677]; axon guidance [GO:0007411]; cell adhesion [GO:0007155]; extracellular matrix organization [GO:0030198]; locomotory exploration behavior [GO:0035641]; long-term synaptic potentiation [GO:0060291]; negative regulation of axon extension involved in regeneration [GO:0048692]; negative regulation of cell-cell adhesion [GO:0022408]; negative regulation of neuron projection development [GO:0010977]; negative regulation of synaptic transmission [GO:0050805]; neuroblast migration [GO:0097402]; neuromuscular process controlling balance [GO:0050885]; neuron cell-cell adhesion [GO:0007158]; positive regulation of synaptic transmission, glutamatergic [GO:0051968]; positive regulation of transmission of nerve impulse [GO:0051971]; regulation of cell adhesion [GO:0030155]; regulation of cell differentiation [GO:0045595]; regulation of cell migration [GO:0030334]; synapse organization [GO:0050808]; synaptic transmission, glutamatergic [GO:0035249]; telencephalon cell migration [GO:0022029] -Q92796 reviewed DLG3_HUMAN Disks large homolog 3 (Neuroendocrine-DLG) (Synapse-associated protein 102) (SAP-102) (SAP102) (XLMR) DLG3 KIAA1232 cell-cell adhesion [GO:0098609]; chemical synaptic transmission [GO:0007268]; establishment of planar polarity [GO:0001736]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; negative regulation of cell population proliferation [GO:0008285]; positive regulation of protein tyrosine kinase activity [GO:0061098]; receptor clustering [GO:0043113]; receptor localization to synapse [GO:0097120]; regulation of postsynaptic membrane neurotransmitter receptor levels [GO:0099072] -Q92823 reviewed NRCAM_HUMAN Neuronal cell adhesion molecule (Nr-CAM) (Neuronal surface protein Bravo) (hBravo) (NgCAM-related cell adhesion molecule) (Ng-CAM-related) NRCAM KIAA0343 angiogenesis [GO:0001525]; axon guidance [GO:0007411]; axonal fasciculation [GO:0007413]; axonogenesis [GO:0007409]; brain development [GO:0007420]; cell-cell adhesion [GO:0098609]; central nervous system development [GO:0007417]; clustering of voltage-gated sodium channels [GO:0045162]; neuron migration [GO:0001764]; neuronal action potential propagation [GO:0019227]; positive regulation of neuron differentiation [GO:0045666]; protein localization [GO:0008104]; regulation of axon extension [GO:0030516]; regulation of neuron projection development [GO:0010975]; regulation of postsynapse organization [GO:0099175]; retinal ganglion cell axon guidance [GO:0031290]; synapse assembly [GO:0007416] -Q92854 reviewed SEM4D_HUMAN Semaphorin-4D (A8) (BB18) (GR3) (CD antigen CD100) SEMA4D C9orf164 CD100 SEMAJ axon guidance [GO:0007411]; bone trabecula morphogenesis [GO:0061430]; cell adhesion [GO:0007155]; immune response [GO:0006955]; leukocyte aggregation [GO:0070486]; negative chemotaxis [GO:0050919]; negative regulation of apoptotic process [GO:0043066]; negative regulation of cell adhesion [GO:0007162]; negative regulation of osteoblast differentiation [GO:0045668]; negative regulation of peptidyl-tyrosine phosphorylation [GO:0050732]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neural crest cell migration [GO:0001755]; ossification involved in bone maturation [GO:0043931]; positive regulation of cell migration [GO:0030335]; positive regulation of collateral sprouting [GO:0048672]; positive regulation of GTPase activity [GO:0043547]; positive regulation of inhibitory synapse assembly [GO:1905704]; positive regulation of peptidyl-tyrosine phosphorylation [GO:0050731]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of protein phosphorylation [GO:0001934]; positive regulation of Rho protein signal transduction [GO:0035025]; regulation of cell projection organization [GO:0031344]; regulation of cell shape [GO:0008360]; regulation of dendrite morphogenesis [GO:0048814]; semaphorin-plexin signaling pathway [GO:0071526] -Q92859 reviewed NEO1_HUMAN Neogenin (Immunoglobulin superfamily DCC subclass member 2) NEO1 IGDCC2 NGN axon guidance [GO:0007411]; cell adhesion [GO:0007155]; cell-cell adhesion [GO:0098609]; intracellular iron ion homeostasis [GO:0006879]; multicellular organismal-level iron ion homeostasis [GO:0060586]; myoblast fusion [GO:0007520]; negative regulation of axon regeneration [GO:0048681]; negative regulation of protein secretion [GO:0050709]; neuron migration [GO:0001764]; positive regulation of BMP signaling pathway [GO:0030513]; protein secretion [GO:0009306]; regulation of DNA-templated transcription [GO:0006355] -Q92982 reviewed NINJ1_HUMAN Ninjurin-1 (hNINJ1) (Nerve injury-induced protein 1) [Cleaved into: Secreted ninjurin-1 (Soluble ninjurin-1)] NINJ1 angiogenesis [GO:0001525]; cell adhesion [GO:0007155]; heterotypic cell-cell adhesion [GO:0034113]; killing of cells of another organism [GO:0031640]; leukocyte chemotaxis involved in inflammatory response [GO:0002232]; muscle cell differentiation [GO:0042692]; nervous system development [GO:0007399]; positive regulation of angiogenesis [GO:0045766]; positive regulation of inflammatory response [GO:0050729]; positive regulation of toll-like receptor 4 signaling pathway [GO:0034145]; programmed cell death [GO:0012501]; protein homooligomerization [GO:0051260]; pyroptosis [GO:0070269]; tissue regeneration [GO:0042246] -Q93052 reviewed LPP_HUMAN Lipoma-preferred partner (LIM domain-containing preferred translocation partner in lipoma) LPP cell-cell adhesion [GO:0098609] -Q96AP7 reviewed ESAM_HUMAN Endothelial cell-selective adhesion molecule ESAM UNQ220/PRO246 bicellular tight junction assembly [GO:0070830]; cell-cell adhesion [GO:0098609]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; maintenance of blood-brain barrier [GO:0035633]; protein localization [GO:0008104]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of actin filament polymerization [GO:0030833] -Q96CW9 reviewed NTNG2_HUMAN Netrin-G2 (Laminet-2) NTNG2 KIAA1857 LMNT2 UNQ9381/PRO34206 axonogenesis [GO:0007409]; modulation of chemical synaptic transmission [GO:0050804]; postsynaptic specialization assembly [GO:0098698]; regulation of neuron migration [GO:2001222]; regulation of neuron projection arborization [GO:0150011]; regulation of neuron projection development [GO:0010975]; regulation of presynapse assembly [GO:1905606]; synaptic membrane adhesion [GO:0099560] -Q96F07 reviewed CYFP2_HUMAN Cytoplasmic FMR1-interacting protein 2 (p53-inducible protein 121) CYFIP2 KIAA1168 PIR121 activation of cysteine-type endopeptidase activity [GO:0097202]; apoptotic process [GO:0006915]; axon guidance [GO:0007411]; cell morphogenesis [GO:0000902]; cell projection assembly [GO:0030031]; cell-cell adhesion [GO:0098609]; dendrite extension [GO:0097484]; positive regulation of neurotrophin TRK receptor signaling pathway [GO:0051388]; positive regulation of proteolysis [GO:0045862]; regulation of actin filament polymerization [GO:0030833]; regulation of postsynapse assembly [GO:0150052] -Q96FX8 reviewed PERP_HUMAN p53 apoptosis effector related to PMP-22 (Keratinocyte-associated protein 1) (KCP-1) (P53-induced protein PIGPC1) (Transmembrane protein THW) PERP KCP1 KRTCAP1 PIGPC1 THW activation of cysteine-type endopeptidase activity [GO:0097202]; amelogenesis [GO:0097186]; cell-cell adhesion [GO:0098609]; desmosome organization [GO:0002934]; heterotypic cell-cell adhesion [GO:0034113]; intrinsic apoptotic signaling pathway by p53 class mediator [GO:0072332]; mammary gland duct morphogenesis [GO:0060603]; Notch signaling pathway [GO:0007219]; positive regulation of neutrophil chemotaxis [GO:0090023]; positive regulation of proteolysis [GO:0045862]; positive regulation of T cell apoptotic process [GO:0070234]; tissue homeostasis [GO:0001894] -Q96GC9 reviewed VMP1_HUMAN Vacuole membrane protein 1 (Transmembrane protein 49) VMP1 TDC1 TMEM49 HSPC292 autophagosome assembly [GO:0000045]; autophagosome membrane docking [GO:0016240]; autophagy [GO:0006914]; cell junction assembly [GO:0034329]; cell-cell adhesion [GO:0098609]; embryo implantation [GO:0007566]; Golgi organization [GO:0007030]; lipoprotein transport [GO:0042953]; mitochondrion-endoplasmic reticulum membrane tethering [GO:1990456]; organelle localization by membrane tethering [GO:0140056]; positive regulation of ATPase-coupled calcium transmembrane transporter activity [GO:1901896] -Q96GP6 reviewed SREC2_HUMAN Scavenger receptor class F member 2 (SRECRP-1) (Scavenger receptor expressed by endothelial cells 2 protein) (SREC-II) SCARF2 SREC2 SREPCR heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157] -Q96HC4 reviewed PDLI5_HUMAN PDZ and LIM domain protein 5 (Enigma homolog) (Enigma-like PDZ and LIM domains protein) PDLIM5 ENH L9 actin cytoskeleton organization [GO:0030036]; cell growth involved in cardiac muscle cell development [GO:0061049]; heart development [GO:0007507]; muscle structure development [GO:0061061]; regulation of dendritic spine morphogenesis [GO:0061001]; regulation of synapse assembly [GO:0051963] -Q96IF1 reviewed AJUBA_HUMAN LIM domain-containing protein ajuba AJUBA JUB calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cytoskeleton organization [GO:0007010]; focal adhesion assembly [GO:0048041]; glycerophospholipid biosynthetic process [GO:0046474]; lamellipodium assembly [GO:0030032]; miRNA-mediated gene silencing by inhibition of translation [GO:0035278]; miRNA-mediated post-transcriptional gene silencing [GO:0035195]; negative regulation of hippo signaling [GO:0035331]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of canonical NF-kappaB signal transduction [GO:0043123]; positive regulation of cellular biosynthetic process [GO:0031328]; positive regulation of protein-containing complex assembly [GO:0031334]; protein localization [GO:0008104]; regulation of cell migration [GO:0030334]; regulation of cellular response to hypoxia [GO:1900037]; regulation of DNA-templated transcription [GO:0006355]; response to hypoxia [GO:0001666]; wound healing, spreading of epidermal cells [GO:0035313] -Q96J84 reviewed KIRR1_HUMAN Kin of IRRE-like protein 1 (Kin of irregular chiasm-like protein 1) (Nephrin-like protein 1) KIRREL1 KIRREL NEPH1 cell-cell adhesion [GO:0098609]; cell-cell junction maintenance [GO:0045217]; glomerular filtration [GO:0003094]; negative regulation of protein phosphorylation [GO:0001933]; positive regulation of actin filament polymerization [GO:0030838]; renal protein absorption [GO:0097017] -Q96JP9 reviewed CDHR1_HUMAN Cadherin-related family member 1 (Photoreceptor cadherin) (prCAD) (Protocadherin-21) CDHR1 KIAA1775 PCDH21 PRCAD cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; photoreceptor cell maintenance [GO:0045494]; photoreceptor cell morphogenesis [GO:0008594]; photoreceptor cell outer segment organization [GO:0035845] -Q96JQ0 reviewed PCD16_HUMAN Protocadherin-16 (Cadherin-19) (Cadherin-25) (Fibroblast cadherin-1) (Protein dachsous homolog 1) DCHS1 CDH19 CDH25 FIB1 KIAA1773 PCDH16 branching involved in ureteric bud morphogenesis [GO:0001658]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell migration [GO:0016477]; cell migration involved in endocardial cushion formation [GO:0003273]; cell-cell adhesion via plasma-membrane adhesion molecules [GO:0098742]; cochlea development [GO:0090102]; condensed mesenchymal cell proliferation [GO:0072137]; digestive tract development [GO:0048565]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; hippo signaling [GO:0035329]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; mitral valve formation [GO:0003192]; neural tube development [GO:0021915]; neurogenesis [GO:0022008]; ossification involved in bone maturation [GO:0043931]; pattern specification process [GO:0007389]; post-anal tail morphogenesis [GO:0036342]; protein localization to plasma membrane [GO:0072659] -Q96KG7 reviewed MEG10_HUMAN Multiple epidermal growth factor-like domains protein 10 (Multiple EGF-like domains protein 10) MEGF10 KIAA1780 apoptotic cell clearance [GO:0043277]; apoptotic process involved in development [GO:1902742]; engulfment of apoptotic cell [GO:0043652]; homotypic cell-cell adhesion [GO:0034109]; muscle cell development [GO:0055001]; muscle cell proliferation [GO:0033002]; myoblast development [GO:0048627]; myoblast migration [GO:0051451]; positive regulation of cell-cell adhesion [GO:0022409]; positive regulation of myoblast proliferation [GO:2000288]; recognition of apoptotic cell [GO:0043654]; regulation of muscle cell differentiation [GO:0051147]; regulation of skeletal muscle tissue development [GO:0048641]; skeletal muscle satellite cell activation [GO:0014719]; skeletal muscle satellite cell differentiation [GO:0014816]; skeletal muscle satellite cell proliferation [GO:0014841] -Q96MS0 reviewed ROBO3_HUMAN Roundabout homolog 3 (Roundabout-like protein 3) ROBO3 axon guidance [GO:0007411]; axon midline choice point recognition [GO:0016199]; chemotaxis [GO:0006935]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; positive regulation of axon guidance [GO:1902669] -Q96MT3 reviewed PRIC1_HUMAN Prickle-like protein 1 (REST/NRSF-interacting LIM domain protein 1) PRICKLE1 RILP anterior visceral endoderm cell migration [GO:1905070]; aorta development [GO:0035904]; apoptotic process [GO:0006915]; axonogenesis [GO:0007409]; basement membrane organization [GO:0071711]; bone mineralization [GO:0030282]; cardiac muscle cell development [GO:0055013]; cell-cell adhesion [GO:0098609]; cilium assembly [GO:0060271]; cornea development in camera-type eye [GO:0061303]; coronary vasculature development [GO:0060976]; cytoskeleton-dependent intracellular transport [GO:0030705]; dendrite development [GO:0016358]; embryonic brain development [GO:1990403]; embryonic nail plate morphogenesis [GO:0035880]; epidermal growth factor receptor signaling pathway [GO:0007173]; establishment of bipolar cell polarity involved in cell morphogenesis [GO:0061159]; extracellular matrix assembly [GO:0085029]; eyelid development in camera-type eye [GO:0061029]; face morphogenesis [GO:0060325]; focal adhesion disassembly [GO:0120181]; gene expression [GO:0010467]; mesenchyme development [GO:0060485]; mitotic spindle assembly [GO:0090307]; multicellular organism growth [GO:0035264]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of cardiac muscle cell myoblast differentiation [GO:2000691]; negative regulation of DNA-templated transcription [GO:0045892]; neural tube closure [GO:0001843]; neuron projection extension [GO:1990138]; outflow tract morphogenesis [GO:0003151]; planar cell polarity pathway involved in axis elongation [GO:0003402]; polarized secretion of basement membrane proteins in epithelium [GO:0061865]; positive regulation of proteasomal ubiquitin-dependent protein catabolic process [GO:0032436]; positive regulation of protein ubiquitination [GO:0031398]; post-anal tail morphogenesis [GO:0036342]; primitive streak formation [GO:0090009]; protein import into nucleus [GO:0006606]; renal tubule development [GO:0061326]; response to electrical stimulus [GO:0051602]; response to xenobiotic stimulus [GO:0009410]; tear secretion [GO:0070075]; tissue homeostasis [GO:0001894]; vesicle-mediated transport [GO:0016192]; Wnt signaling pathway, planar cell polarity pathway [GO:0060071] -Q96NI6 reviewed LRFN5_HUMAN Leucine-rich repeat and fibronectin type-III domain-containing protein 5 LRFN5 C14orf146 SALM5 negative regulation of inflammatory response [GO:0050728]; negative regulation of macrophage activation [GO:0043031]; regulation of presynapse assembly [GO:1905606]; synaptic membrane adhesion [GO:0099560] -Q96NW7 reviewed LRRC7_HUMAN Leucine-rich repeat-containing protein 7 (Densin-180) (Densin) (Protein LAP1) LRRC7 KIAA1365 LAP1 cell-cell adhesion [GO:0098609]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; neurotransmitter receptor transport postsynaptic membrane to endosome [GO:0098968]; neurotransmitter receptor transport, endosome to postsynaptic membrane [GO:0098887]; positive regulation of neuron projection development [GO:0010976]; receptor clustering [GO:0043113] -Q96NY8 reviewed NECT4_HUMAN Nectin-4 (Ig superfamily receptor LNIR) (Nectin cell adhesion molecule 4) (Poliovirus receptor-related protein 4) [Cleaved into: Processed poliovirus receptor-related protein 4] NECTIN4 LNIR PRR4 PVRL4 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q96PX8 reviewed SLIK1_HUMAN SLIT and NTRK-like protein 1 (Leucine-rich repeat-containing protein 12) SLITRK1 KIAA1910 LRRC12 UNQ233/PRO266 adult behavior [GO:0030534]; axonogenesis [GO:0007409]; homeostatic process [GO:0042592]; multicellular organism growth [GO:0035264]; positive regulation of axonogenesis [GO:0050772]; positive regulation of synapse assembly [GO:0051965]; regulation of presynapse assembly [GO:1905606]; synapse assembly [GO:0007416]; synaptic membrane adhesion [GO:0099560] -Q96PX9 reviewed PKH4B_HUMAN Pleckstrin homology domain-containing family G member 4B (PH domain-containing family G member 4B) PLEKHG4B KIAA1909 axon guidance [GO:0007411]; cell-cell adhesion [GO:0098609]; regulation of small GTPase mediated signal transduction [GO:0051056] -Q96QU1 reviewed PCD15_HUMAN Protocadherin-15 PCDH15 USH1F cell adhesion [GO:0007155]; equilibrioception [GO:0050957]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; inner ear development [GO:0048839]; photoreceptor cell maintenance [GO:0045494]; sensory perception of light stimulus [GO:0050953]; sensory perception of sound [GO:0007605] -Q96RI0 reviewed PAR4_HUMAN Proteinase-activated receptor 4 (PAR-4) (Coagulation factor II receptor-like 3) (Thrombin receptor-like 3) F2RL3 PAR4 blood coagulation [GO:0007596]; phospholipase C-activating G protein-coupled receptor signaling pathway [GO:0007200]; platelet activation [GO:0030168]; platelet aggregation [GO:0070527]; platelet dense granule organization [GO:0060155]; positive regulation of release of sequestered calcium ion into cytosol [GO:0051281]; positive regulation of Rho protein signal transduction [GO:0035025]; response to wounding [GO:0009611]; signal transduction [GO:0007165] -Q96RW7 reviewed HMCN1_HUMAN Hemicentin-1 (Fibulin-6) (FIBL-6) HMCN1 FIBL6 actin cytoskeleton organization [GO:0030036]; basement membrane organization [GO:0071711]; cell division [GO:0051301]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; response to bacterium [GO:0009617]; visual perception [GO:0007601] -Q99569 reviewed PKP4_HUMAN Plakophilin-4 (p0071) PKP4 cell-cell adhesion [GO:0098609]; cell-cell junction assembly [GO:0007043]; cell-cell signaling [GO:0007267]; positive regulation of cytokinesis [GO:0032467]; positive regulation of GTPase activity [GO:0043547]; regulation of cell adhesion [GO:0030155] -Q99959 reviewed PKP2_HUMAN Plakophilin-2 PKP2 bundle of His cell-Purkinje myocyte adhesion involved in cell communication [GO:0086073]; cardiac muscle cell action potential involved in contraction [GO:0086002]; cell communication by electrical coupling involved in cardiac conduction [GO:0086064]; cell-cell adhesion [GO:0098609]; cell-cell signaling involved in cardiac conduction [GO:0086019]; desmosome assembly [GO:0002159]; desmosome organization [GO:0002934]; heart development [GO:0007507]; intermediate filament bundle assembly [GO:0045110]; maintenance of animal organ identity [GO:0048496]; maintenance of protein localization at cell tip [GO:0099017]; positive regulation of sodium ion transport [GO:0010765]; protein localization to plasma membrane [GO:0072659]; regulation of cell-substrate adhesion [GO:0010810]; regulation of heart rate by cardiac conduction [GO:0086091]; regulation of substrate adhesion-dependent cell spreading [GO:1900024]; regulation of ventricular cardiac muscle cell action potential [GO:0098911]; ventricular cardiac muscle cell action potential [GO:0086005]; ventricular cardiac muscle tissue morphogenesis [GO:0055010] -Q9BQJ4 reviewed TMM47_HUMAN Transmembrane protein 47 (Brain cell membrane protein 1) (Transmembrane 4 superfamily member 10) TMEM47 BCMP1 TM4SF10 cell-cell adhesion [GO:0098609] -Q9BQT9 reviewed CSTN3_HUMAN Calsyntenin-3 (Alcadein-beta) (Alc-beta) CLSTN3 CS3 KIAA0726 adaptive thermogenesis [GO:1990845]; cold-induced thermogenesis [GO:0106106]; excitatory synapse assembly [GO:1904861]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; inhibitory synapse assembly [GO:1904862]; L-ascorbic acid metabolic process [GO:0019852]; negative regulation of excitatory synapse assembly [GO:1904890]; negative regulation of lipid droplet fusion [GO:0160078]; negative regulation of lipid storage [GO:0010888]; positive regulation of inhibitory synapse assembly [GO:1905704]; positive regulation of lipid catabolic process [GO:0050996]; positive regulation of protein localization to synapse [GO:1902474]; positive regulation of synapse assembly [GO:0051965]; positive regulation of synaptic transmission [GO:0050806]; protein secretion [GO:0009306]; regulation of cell growth [GO:0001558]; regulation of excitatory synapse assembly [GO:1904889]; regulation of presynapse assembly [GO:1905606]; regulation of synapse assembly [GO:0051963]; sympathetic neuron projection extension [GO:0097490]; synapse assembly [GO:0007416]; synaptic transmission, GABAergic [GO:0051932]; synaptic transmission, glutamatergic [GO:0035249] -Q9BTN0 reviewed LRFN3_HUMAN Leucine-rich repeat and fibronectin type-III domain-containing protein 3 (Synaptic adhesion-like molecule 4) LRFN3 SALM4 UNQ5865/PRO34192 regulation of presynapse assembly [GO:1905606]; regulation of synaptic membrane adhesion [GO:0099179]; synaptic membrane adhesion [GO:0099560] -Q9BU20 reviewed CPLN2_HUMAN Ciliogenesis and planar polarity effector 2 (REM2- and Rab-like small GTPase 1) CPLANE2 C1orf89 RSG1 axoneme assembly [GO:0035082]; cilium assembly [GO:0060271]; cranial skeletal system development [GO:1904888]; endocardial cushion fusion [GO:0003274]; exocytosis [GO:0006887]; limb development [GO:0060173]; protein localization [GO:0008104]; protein processing [GO:0016485]; protein transport [GO:0015031]; regulation of exocytosis [GO:0017157]; regulation of smoothened signaling pathway [GO:0008589]; regulation of vesicle fusion [GO:0031338]; smoothened signaling pathway [GO:0007224] -Q9BVG8 reviewed KIFC3_HUMAN Kinesin-like protein KIFC3 KIFC3 epithelial cell-cell adhesion [GO:0090136]; Golgi organization [GO:0007030]; microtubule-based movement [GO:0007018]; microtubule-based process [GO:0007017]; visual perception [GO:0007601]; zonula adherens maintenance [GO:0045218] -Q9BWV1 reviewed BOC_HUMAN Brother of CDO (Protein BOC) BOC UNQ604/PRO1190 axon guidance [GO:0007411]; cell-cell adhesion [GO:0098609]; nervous system development [GO:0007399]; positive regulation of myoblast differentiation [GO:0045663] -Q9BWX5 reviewed GATA5_HUMAN Transcription factor GATA-5 (GATA-binding factor 5) GATA5 aortic valve morphogenesis [GO:0003180]; cardiac muscle tissue development [GO:0048738]; cell fate commitment [GO:0045165]; cellular response to BMP stimulus [GO:0071773]; endocardial cushion fusion [GO:0003274]; heart induction [GO:0003129]; intestinal epithelial cell differentiation [GO:0060575]; negative regulation of cardiac muscle hypertrophy [GO:0010614]; negative regulation of gene expression [GO:0010629]; negative regulation of transcription by RNA polymerase II [GO:0000122]; positive regulation of cardiac endothelial to mesenchymal transition [GO:0062000]; positive regulation of gene expression [GO:0010628]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q9BX67 reviewed JAM3_HUMAN Junctional adhesion molecule C (JAM-C) (JAM-2) (Junctional adhesion molecule 3) (JAM-3) [Cleaved into: Soluble form of JAM-C (sJAM-C)] JAM3 UNQ859/PRO1868 adaptive immune response [GO:0002250]; adherens junction assembly [GO:0034333]; angiogenesis [GO:0001525]; apical protein localization [GO:0045176]; cell migration [GO:0016477]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; establishment of cell polarity [GO:0030010]; granulocyte migration [GO:0097530]; hematopoietic stem cell migration to bone marrow [GO:0097241]; heterotypic cell-cell adhesion [GO:0034113]; leukocyte migration involved in inflammatory response [GO:0002523]; maintenance of blood-brain barrier [GO:0035633]; myelination [GO:0042552]; myeloid progenitor cell differentiation [GO:0002318]; negative regulation of cell adhesion mediated by integrin [GO:0033629]; negative regulation of integrin activation [GO:0033624]; neutrophil homeostasis [GO:0001780]; positive regulation of membrane permeability [GO:1905710]; positive regulation of monocyte extravasation [GO:2000439]; protein localization to cell junction [GO:1902414]; protein localization to cell surface [GO:0034394]; regulation of actin cytoskeleton organization by cell-cell adhesion [GO:0090138]; regulation of neutrophil chemotaxis [GO:0090022]; spermatid development [GO:0007286]; transmission of nerve impulse [GO:0019226] -Q9BY67 reviewed CADM1_HUMAN Cell adhesion molecule 1 (Immunoglobulin superfamily member 4) (IgSF4) (Nectin-like protein 2) (NECL-2) (Spermatogenic immunoglobulin superfamily) (SgIgSF) (Synaptic cell adhesion molecule) (SynCAM) (Tumor suppressor in lung cancer 1) (TSLC-1) CADM1 IGSF4 IGSF4A NECL2 SYNCAM TSLC1 apoptotic process [GO:0006915]; cell differentiation [GO:0030154]; cell recognition [GO:0008037]; detection of stimulus [GO:0051606]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; immune system process [GO:0002376]; liver development [GO:0001889]; negative regulation of ERBB4 signaling pathway [GO:0120154]; negative regulation of protein phosphorylation [GO:0001933]; positive regulation of cytokine production [GO:0001819]; positive regulation of natural killer cell mediated cytotoxicity [GO:0045954]; spermatogenesis [GO:0007283]; susceptibility to natural killer cell mediated cytotoxicity [GO:0042271] -Q9BYE9 reviewed CDHR2_HUMAN Cadherin-related family member 2 (Protocadherin LKC) (PC-LKC) (Protocadherin-24) CDHR2 PCDH24 PCLKC brush border assembly [GO:1904970]; cell-cell adhesion [GO:0098609]; cell-cell adhesion mediated by cadherin [GO:0044331]; epithelial cell differentiation [GO:0030855]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; intermicrovillar adhesion [GO:0090675]; negative regulation of cell growth involved in contact inhibition [GO:0060243]; regulation of microvillus length [GO:0032532] -Q9BZA7 reviewed PC11X_HUMAN Protocadherin-11 X-linked (Protocadherin-11) (Protocadherin on the X chromosome) (PCDH-X) (Protocadherin-S) PCDH11X KIAA1326 PCDH11 PCDHX cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q9BZA8 reviewed PC11Y_HUMAN Protocadherin-11 Y-linked (Protocadherin-11) (Protocadherin on the Y chromosome) (PCDH-Y) (Protocadherin prostate cancer) (Protocadherin-PC) (Protocadherin-22) PCDH11Y PCDH11 PCDH22 PCDHY cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; positive regulation of Wnt signaling pathway [GO:0030177]; spermatogenesis [GO:0007283] -Q9BZX4 reviewed ROP1B_HUMAN Ropporin-1B (Rhophilin-associated protein 1B) ROPN1B acrosome reaction [GO:0007340]; cell-cell adhesion [GO:0098609]; cilium organization [GO:0044782]; cytoskeleton-dependent cytokinesis [GO:0061640]; flagellated sperm motility [GO:0030317]; fusion of sperm to egg plasma membrane involved in single fertilization [GO:0007342]; protein localization to cilium [GO:0061512]; regulation of protein phosphorylation [GO:0001932]; Rho protein signal transduction [GO:0007266]; sperm capacitation [GO:0048240]; spermatogenesis [GO:0007283] -Q9BZZ2 reviewed SN_HUMAN Sialoadhesin (Sialic acid-binding Ig-like lectin 1) (Siglec-1) (CD antigen CD169) SIGLEC1 SN cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; clathrin-dependent endocytosis of virus by host cell [GO:0075512]; inflammatory response [GO:0006954]; negative regulation of type I interferon production [GO:0032480] -Q9C0K1 reviewed S39A8_HUMAN Metal cation symporter ZIP8 (BCG-induced integral membrane protein in monocyte clone 103 protein) (LIV-1 subfamily of ZIP zinc transporter 6) (LZT-Hs6) (Solute carrier family 39 member 8) (Zrt- and Irt-like protein 8) (ZIP-8) SLC39A8 BIGM103 ZIP8 PP3105 arginine metabolic process [GO:0006525]; bicarbonate transport [GO:0015701]; cadmium ion transmembrane transport [GO:0070574]; cartilage homeostasis [GO:1990079]; cellular detoxification of cadmium ion [GO:0098849]; cobalt ion transport [GO:0006824]; DNA-templated transcription [GO:0006351]; extracellular matrix organization [GO:0030198]; intracellular manganese ion homeostasis [GO:0030026]; intracellular monoatomic cation homeostasis [GO:0030003]; intracellular zinc ion homeostasis [GO:0006882]; iron ion import across plasma membrane [GO:0098711]; leukocyte adhesion to arterial endothelial cell [GO:0061757]; manganese ion transmembrane transport [GO:0071421]; mercury ion transport [GO:0015694]; mitochondrial manganese ion transmembrane transport [GO:1990540]; negative regulation of canonical NF-kappaB signal transduction [GO:0043124]; negative regulation of inflammatory response [GO:0050728]; plasma membrane selenite transport [GO:0097080]; protein N-linked glycosylation [GO:0006487]; regulation of DNA-templated transcription [GO:0006355]; regulation of membrane potential [GO:0042391]; zinc ion import across plasma membrane [GO:0071578]; zinc ion transmembrane transport [GO:0071577]; zinc ion transport [GO:0006829] -Q9H156 reviewed SLIK2_HUMAN SLIT and NTRK-like protein 2 SLITRK2 CXorf2 KIAA1854 SLITL1 UNQ9197/PRO34756 axonogenesis [GO:0007409]; positive regulation of synapse assembly [GO:0051965]; regulation of presynapse assembly [GO:1905606]; regulation of synapse organization [GO:0050807]; synaptic membrane adhesion [GO:0099560] -Q9H159 reviewed CAD19_HUMAN Cadherin-19 CDH19 CDH7L2 UNQ478/PRO941 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell migration [GO:0016477]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q9H244 reviewed P2Y12_HUMAN P2Y purinoceptor 12 (P2Y12) (ADP-glucose receptor) (ADPG-R) (P2T(AC)) (P2Y(AC)) (P2Y(cyc)) (P2Y12 platelet ADP receptor) (P2Y(ADP)) (SP1999) P2RY12 HORK3 adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway [GO:0007193]; calcium-mediated signaling [GO:0019722]; cell projection organization [GO:0030030]; cellular response to ATP [GO:0071318]; cerebral cortex radial glia-guided migration [GO:0021801]; establishment of localization in cell [GO:0051649]; G protein-coupled receptor signaling pathway [GO:0007186]; hemostasis [GO:0007599]; lamellipodium assembly [GO:0030032]; monoatomic ion transport [GO:0006811]; phospholipase C-activating G protein-coupled receptor signaling pathway [GO:0007200]; platelet activation [GO:0030168]; platelet aggregation [GO:0070527]; positive regulation of cell adhesion mediated by integrin [GO:0033630]; positive regulation of chemotaxis [GO:0050921]; positive regulation of integrin activation by cell surface receptor linked signal transduction [GO:0033626]; positive regulation of microglial cell migration [GO:1904141]; positive regulation of monoatomic ion transport [GO:0043270]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; positive regulation of ruffle assembly [GO:1900029]; regulation of chemotaxis [GO:0050920]; regulation of microglial cell migration [GO:1904139]; response to axon injury [GO:0048678]; substrate-dependent cell migration, cell extension [GO:0006930]; visual system development [GO:0150063] -Q9H251 reviewed CAD23_HUMAN Cadherin-23 (Otocadherin) CDH23 KIAA1774 KIAA1812 UNQ1894/PRO4340 auditory receptor cell stereocilium organization [GO:0060088]; calcium ion transport [GO:0006816]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell migration [GO:0016477]; cell-cell adhesion via plasma-membrane adhesion molecules [GO:0098742]; cochlea development [GO:0090102]; equilibrioception [GO:0050957]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; locomotory behavior [GO:0007626]; neuron projection development [GO:0031175]; photoreceptor cell maintenance [GO:0045494]; regulation of cytosolic calcium ion concentration [GO:0051480]; sensory perception of light stimulus [GO:0050953]; sensory perception of sound [GO:0007605]; visual perception [GO:0007601] -Q9H2X3 reviewed CLC4M_HUMAN C-type lectin domain family 4 member M (CD209 antigen-like protein 1) (DC-SIGN-related protein) (DC-SIGNR) (Dendritic cell-specific ICAM-3-grabbing non-integrin 2) (DC-SIGN2) (Liver/lymph node-specific ICAM-3-grabbing non-integrin) (L-SIGN) (CD antigen CD299) CLEC4M CD209L CD209L1 CD299 adaptive immune response [GO:0002250]; antigen processing and presentation [GO:0019882]; cell-cell recognition [GO:0009988]; immune response [GO:0006955]; innate immune response [GO:0045087]; intracellular signal transduction [GO:0035556]; intracellular transport of virus [GO:0075733]; leukocyte cell-cell adhesion [GO:0007159]; peptide antigen transport [GO:0046968]; receptor-mediated endocytosis of virus by host cell [GO:0019065]; receptor-mediated virion attachment to host cell [GO:0046813]; symbiont entry into host cell [GO:0046718]; viral genome replication [GO:0019079]; virion attachment to host cell [GO:0019062] -Q9H313 reviewed TTYH1_HUMAN Protein tweety homolog 1 (hTTY1) (Volume-regulated anion channel subunit TTYH1) TTYH1 cell-cell adhesion [GO:0098609]; cell-substrate adhesion [GO:0031589]; chloride transport [GO:0006821]; filopodium assembly [GO:0046847]; iron ion transport [GO:0006826]; L-glutamate transmembrane transport [GO:0015813]; mitotic cell cycle [GO:0000278]; monoatomic ion transmembrane transport [GO:0034220] -Q9H4A6 reviewed GOLP3_HUMAN Golgi phosphoprotein 3 (Coat protein GPP34) (Mitochondrial DNA absence factor) (MIDAS) GOLPH3 GPP34 asymmetric Golgi ribbon formation [GO:0090164]; cell adhesion molecule production [GO:0060352]; cell migration [GO:0016477]; cellular response to rapamycin [GO:0072752]; gene expression [GO:0010467]; glycoprotein biosynthetic process [GO:0009101]; Golgi organization [GO:0007030]; Golgi ribbon formation [GO:0090161]; Golgi to plasma membrane protein transport [GO:0043001]; Golgi vesicle budding [GO:0048194]; lamellipodium assembly [GO:0030032]; leukocyte tethering or rolling [GO:0050901]; negative regulation of apoptotic process [GO:0043066]; positive regulation of protein secretion [GO:0050714]; positive regulation of TOR signaling [GO:0032008]; protein retention in Golgi apparatus [GO:0045053]; protein secretion [GO:0009306]; protein targeting to Golgi apparatus [GO:0140450]; regulation of mitochondrion organization [GO:0010821]; retrograde vesicle-mediated transport, Golgi to endoplasmic reticulum [GO:0006890] -Q9H4B7 reviewed TBB1_HUMAN Tubulin beta-1 chain TUBB1 microtubule cytoskeleton organization [GO:0000226]; microtubule polymerization [GO:0046785]; mitotic cell cycle [GO:0000278]; platelet aggregation [GO:0070527]; platelet formation [GO:0030220]; spindle assembly [GO:0051225]; thyroid gland development [GO:0030878]; thyroid hormone transport [GO:0070327] -Q9H4D0 reviewed CSTN2_HUMAN Calsyntenin-2 (Alcadein-gamma) (Alc-gamma) CLSTN2 CS2 associative learning [GO:0008306]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; inhibitory synapse assembly [GO:1904862]; positive regulation of synapse assembly [GO:0051965]; positive regulation of synaptic transmission [GO:0050806] -Q9HAR2 reviewed AGRL3_HUMAN Adhesion G protein-coupled receptor L3 (Calcium-independent alpha-latrotoxin receptor 3) (CIRL-3) (Latrophilin-3) (Lectomedin-3) ADGRL3 KIAA0768 LEC3 LPHN3 adenylate cyclase-activating G protein-coupled receptor signaling pathway [GO:0007189]; cell surface receptor signaling pathway [GO:0007166]; cell-cell adhesion via plasma-membrane adhesion molecules [GO:0098742]; G protein-coupled receptor signaling pathway [GO:0007186]; neuron migration [GO:0001764]; synapse assembly [GO:0007416] -Q9HBB8 reviewed CDHR5_HUMAN Cadherin-related family member 5 (Mu-protocadherin) (Mucin and cadherin-like protein) (Mucin-like protocadherin) (MLPCDH) CDHR5 MUCDHL MUPCDH UNQ2781/PRO7168 brush border assembly [GO:1904970]; cell adhesion [GO:0007155]; cell differentiation [GO:0030154]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; intermicrovillar adhesion [GO:0090675]; regulation of microvillus length [GO:0032532] -Q9HBM0 reviewed VEZA_HUMAN Vezatin VEZT cell-cell adhesion [GO:0098609] -Q9HBT6 reviewed CAD20_HUMAN Cadherin-20 CDH20 CDH7L3 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell migration [GO:0016477]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q9HBW1 reviewed LRRC4_HUMAN Leucine-rich repeat-containing protein 4 (Brain tumor-associated protein BAG) (Nasopharyngeal carcinoma-associated gene 14 protein) (Netrin-G2 ligand) (NGL-2) LRRC4 BAG NAG14 UNQ554/PRO1111 excitatory synapse assembly [GO:1904861]; modulation of chemical synaptic transmission [GO:0050804]; postsynaptic density protein 95 clustering [GO:0097119]; synaptic membrane adhesion [GO:0099560] -Q9HCJ2 reviewed LRC4C_HUMAN Leucine-rich repeat-containing protein 4C (Netrin-G1 ligand) (NGL-1) LRRC4C KIAA1580 NGL1 UNQ292/PRO331 modulation of chemical synaptic transmission [GO:0050804]; regulation of axonogenesis [GO:0050770]; synaptic membrane adhesion [GO:0099560] -Q9HCK4 reviewed ROBO2_HUMAN Roundabout homolog 2 ROBO2 KIAA1568 aorta development [GO:0035904]; aortic valve morphogenesis [GO:0003180]; apoptotic process involved in luteolysis [GO:0061364]; axon guidance [GO:0007411]; axon midline choice point recognition [GO:0016199]; brain development [GO:0007420]; cell-cell adhesion [GO:0098609]; cellular response to hormone stimulus [GO:0032870]; central nervous system development [GO:0007417]; chemotaxis [GO:0006935]; endocardial cushion formation [GO:0003272]; heart induction [GO:0003129]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; metanephros development [GO:0001656]; negative regulation of negative chemotaxis [GO:0050925]; negative regulation of synapse assembly [GO:0051964]; olfactory bulb interneuron development [GO:0021891]; outflow tract septum morphogenesis [GO:0003148]; positive regulation of axonogenesis [GO:0050772]; positive regulation of Notch signaling pathway [GO:0045747]; pulmonary valve morphogenesis [GO:0003184]; retinal ganglion cell axon guidance [GO:0031290]; ureteric bud development [GO:0001657]; ventricular septum morphogenesis [GO:0060412] -Q9HCN6 reviewed GPVI_HUMAN Platelet glycoprotein VI (GPVI) (Glycoprotein 6) GP6 collagen-activated signaling pathway [GO:0038065]; collagen-activated tyrosine kinase receptor signaling pathway [GO:0038063]; enzyme-linked receptor protein signaling pathway [GO:0007167]; immune response-regulating signaling pathway [GO:0002764]; platelet activation [GO:0030168]; platelet aggregation [GO:0070527]; positive regulation of platelet aggregation [GO:1901731] -Q9HCU4 reviewed CELR2_HUMAN Cadherin EGF LAG seven-pass G-type receptor 2 (Cadherin family member 10) (Epidermal growth factor-like protein 2) (EGF-like protein 2) (Flamingo homolog 3) (Multiple epidermal growth factor-like domains protein 3) (Multiple EGF-like domains protein 3) CELSR2 CDHF10 EGFL2 KIAA0279 MEGF3 cell-cell adhesion [GO:0098609]; cerebrospinal fluid secretion [GO:0033326]; cilium assembly [GO:0060271]; cilium movement [GO:0003341]; dendrite morphogenesis [GO:0048813]; G protein-coupled receptor signaling pathway [GO:0007186]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; motor neuron migration [GO:0097475]; neural plate anterior/posterior regionalization [GO:0021999]; regulation of cell-cell adhesion [GO:0022407]; regulation of DNA-templated transcription [GO:0006355]; regulation of protein localization [GO:0032880]; ventricular system development [GO:0021591]; Wnt signaling pathway [GO:0016055]; Wnt signaling pathway, planar cell polarity pathway [GO:0060071] -Q9HDB5 reviewed NRX3B_HUMAN Neurexin-3-beta (Neurexin III-beta) [Cleaved into: Neurexin-3-beta, soluble form; Neurexin-3-beta, C-terminal fragment (NRXN3-CTF)] NRXN3 KIAA0743 adult behavior [GO:0030534]; angiogenesis [GO:0001525]; learning [GO:0007612]; neuron cell-cell adhesion [GO:0007158]; signal transduction [GO:0007165]; social behavior [GO:0035176]; vocalization behavior [GO:0071625] -Q9NNX6 reviewed CD209_HUMAN CD209 antigen (C-type lectin domain family 4 member L) (Dendritic cell-specific ICAM-3-grabbing non-integrin 1) (DC-SIGN) (DC-SIGN1) (CD antigen CD209) CD209 CLEC4L adaptive immune response [GO:0002250]; antigen processing and presentation [GO:0019882]; B cell adhesion [GO:0097323]; cell-cell recognition [GO:0009988]; endocytosis [GO:0006897]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; immune response [GO:0006955]; innate immune response [GO:0045087]; intracellular signal transduction [GO:0035556]; intracellular transport of virus [GO:0075733]; leukocyte cell-cell adhesion [GO:0007159]; peptide antigen transport [GO:0046968]; positive regulation of T cell proliferation [GO:0042102]; positive regulation of viral life cycle [GO:1903902]; regulation of T cell proliferation [GO:0042129]; symbiont entry into host cell [GO:0046718]; viral genome replication [GO:0019079]; virion attachment to host cell [GO:0019062] -Q9NPG4 reviewed PCD12_HUMAN Protocadherin-12 (Vascular cadherin-2) (Vascular endothelial cadherin-2) (VE-cad-2) (VE-cadherin-2) [Cleaved into: Protocadherin-12, secreted form] PCDH12 UNQ395/PRO731 calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell adhesion [GO:0007155]; glycogen metabolic process [GO:0005977]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; labyrinthine layer development [GO:0060711]; neuron recognition [GO:0008038] -Q9NPH3 reviewed IL1AP_HUMAN Interleukin-1 receptor accessory protein (IL-1 receptor accessory protein) (IL-1RAcP) (EC 3.2.2.6) (Interleukin-1 receptor 3) (IL-1R-3) (IL-1R3) IL1RAP C3orf13 IL1R3 immune response [GO:0006955]; inflammatory response [GO:0006954]; innate immune response [GO:0045087]; interleukin-1-mediated signaling pathway [GO:0070498]; interleukin-33-mediated signaling pathway [GO:0038172]; positive regulation of interleukin-13 production [GO:0032736]; positive regulation of interleukin-4 production [GO:0032753]; positive regulation of interleukin-5 production [GO:0032754]; positive regulation of interleukin-6 production [GO:0032755]; positive regulation of synapse assembly [GO:0051965]; protein-containing complex assembly [GO:0065003]; regulation of postsynaptic density assembly [GO:0099151]; regulation of presynapse assembly [GO:1905606]; synaptic membrane adhesion [GO:0099560]; trans-synaptic signaling by trans-synaptic complex [GO:0099545] -Q9NPQ8 reviewed RIC8A_HUMAN Synembryn-A (Protein Ric-8A) RIC8A adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway [GO:0007193]; basement membrane organization [GO:0071711]; cell migration involved in gastrulation [GO:0042074]; cell-cell adhesion involved in gastrulation [GO:0070586]; G protein-coupled receptor signaling pathway [GO:0007186]; in utero embryonic development [GO:0001701]; vasculature development [GO:0001944]; visual learning [GO:0008542] -Q9NPY3 reviewed C1QR1_HUMAN Complement component C1q receptor (C1q/MBL/SPA receptor) (C1qR) (C1qR(p)) (C1qRp) (CDw93) (Complement component 1 q subcomponent receptor 1) (Matrix-remodeling-associated protein 4) (CD antigen CD93) CD93 C1QR1 MXRA4 cell-cell adhesion [GO:0098609]; macrophage activation [GO:0042116]; phagocytosis [GO:0006909] -Q9NQS3 reviewed NECT3_HUMAN Nectin-3 (CDw113) (Nectin cell adhesion molecule 3) (Poliovirus receptor-related protein 3) (CD antigen CD113) NECTIN3 PRR3 PVRL3 establishment of protein localization to plasma membrane [GO:0061951]; fertilization [GO:0009566]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; lens morphogenesis in camera-type eye [GO:0002089]; protein localization to cell junction [GO:1902414]; retina morphogenesis in camera-type eye [GO:0060042]; symbiont entry into host cell [GO:0046718] -Q9NRJ7 reviewed PCDBG_HUMAN Protocadherin beta-16 (PCDH-beta-16) (Protocadherin-3X) PCDHB16 KIAA1621 PCDH3X calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell adhesion [GO:0007155]; chemical synaptic transmission [GO:0007268]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synapse assembly [GO:0007416] -Q9NT68 reviewed TEN2_HUMAN Teneurin-2 (Ten-2) (Protein Odd Oz/ten-m homolog 2) (Tenascin-M2) (Ten-m2) (Teneurin transmembrane protein 2) [Cleaved into: Ten-2, soluble form; Ten-2 intracellular domain (Ten-2 ICD)] TENM2 KIAA1127 ODZ2 TNM2 cell-cell adhesion [GO:0098609]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neuron development [GO:0048666]; positive regulation of filopodium assembly [GO:0051491]; retrograde trans-synaptic signaling by trans-synaptic protein complex [GO:0098942]; signal transduction [GO:0007165] -Q9NT99 reviewed LRC4B_HUMAN Leucine-rich repeat-containing protein 4B (Netrin-G3 ligand) (NGL-3) LRRC4B LRIG4 positive regulation of synapse assembly [GO:0051965]; regulation of postsynaptic density assembly [GO:0099151]; regulation of presynapse assembly [GO:1905606]; synaptic membrane adhesion [GO:0099560] -Q9NVD7 reviewed PARVA_HUMAN Alpha-parvin (Actopaxin) (CH-ILKBP) (Calponin-like integrin-linked kinase-binding protein) (Matrix-remodeling-associated protein 2) PARVA MXRA2 actin cytoskeleton organization [GO:0030036]; actin-mediated cell contraction [GO:0070252]; cilium assembly [GO:0060271]; establishment or maintenance of cell polarity [GO:0007163]; heterotypic cell-cell adhesion [GO:0034113]; outflow tract septum morphogenesis [GO:0003148]; protein stabilization [GO:0050821]; regulation of cell shape [GO:0008360]; smooth muscle cell chemotaxis [GO:0071670]; sprouting angiogenesis [GO:0002040]; substrate adhesion-dependent cell spreading [GO:0034446] -Q9NYQ6 reviewed CELR1_HUMAN Cadherin EGF LAG seven-pass G-type receptor 1 (Cadherin family member 9) (Flamingo homolog 2) (hFmi2) CELSR1 CDHF9 FMI2 apical protein localization [GO:0045176]; cell-cell adhesion [GO:0098609]; central nervous system development [GO:0007417]; establishment of body hair planar orientation [GO:0048105]; establishment of planar polarity [GO:0001736]; establishment of planar polarity of embryonic epithelium [GO:0042249]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; lateral sprouting involved in lung morphogenesis [GO:0060490]; neural tube closure [GO:0001843]; neuron migration [GO:0001764]; orthogonal dichotomous subdivision of terminal units involved in lung branching morphogenesis [GO:0060488]; planar dichotomous subdivision of terminal units involved in lung branching morphogenesis [GO:0060489]; protein localization involved in establishment of planar polarity [GO:0090251]; regulation of actin cytoskeleton organization [GO:0032956]; Rho protein signal transduction [GO:0007266]; Wnt signaling pathway, planar cell polarity pathway [GO:0060071] -Q9NYQ7 reviewed CELR3_HUMAN Cadherin EGF LAG seven-pass G-type receptor 3 (Cadherin family member 11) (Epidermal growth factor-like protein 1) (EGF-like protein 1) (Flamingo homolog 1) (hFmi1) (Multiple epidermal growth factor-like domains protein 2) (Multiple EGF-like domains protein 2) CELSR3 CDHF11 EGFL1 FMI1 KIAA0812 MEGF2 cell-cell adhesion [GO:0098609]; dopaminergic neuron axon guidance [GO:0036514]; G protein-coupled receptor signaling pathway [GO:0007186]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; serotonergic neuron axon guidance [GO:0036515]; Wnt signaling pathway, planar cell polarity pathway [GO:0060071] -Q9NYQ8 reviewed FAT2_HUMAN Protocadherin Fat 2 (hFat2) (Cadherin family member 8) (Multiple epidermal growth factor-like domains protein 1) (Multiple EGF-like domains protein 1) FAT2 CDHF8 KIAA0811 MEGF1 cell-cell adhesion [GO:0098609]; cell-substrate adhesion [GO:0031589]; epithelial cell migration [GO:0010631]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q9NZ53 reviewed PDXL2_HUMAN Podocalyxin-like protein 2 (Endoglycan) PODXL2 UNQ1861/PRO3742 leukocyte tethering or rolling [GO:0050901] -Q9NZ94 reviewed NLGN3_HUMAN Neuroligin-3 (Gliotactin homolog) NLGN3 KIAA1480 NL3 adult behavior [GO:0030534]; axon extension [GO:0048675]; chemical synaptic transmission [GO:0007268]; inhibitory postsynaptic potential [GO:0060080]; learning [GO:0007612]; modulation of chemical synaptic transmission [GO:0050804]; neuron cell-cell adhesion [GO:0007158]; positive regulation of excitatory postsynaptic potential [GO:2000463]; positive regulation of glutamate receptor signaling pathway [GO:1900451]; positive regulation of synapse assembly [GO:0051965]; positive regulation of synaptic transmission, glutamatergic [GO:0051968]; postsynaptic membrane assembly [GO:0097104]; presynapse assembly [GO:0099054]; presynaptic membrane assembly [GO:0097105]; receptor-mediated endocytosis [GO:0006898]; regulation of respiratory gaseous exchange by nervous system process [GO:0002087]; rhythmic synaptic transmission [GO:0060024]; social behavior [GO:0035176]; synapse assembly [GO:0007416]; synapse organization [GO:0050808]; synaptic vesicle endocytosis [GO:0048488]; vocalization behavior [GO:0071625] -Q9NZG7 reviewed NINJ2_HUMAN Ninjurin-2 (Nerve injury-induced protein 2) NINJ2 cell adhesion [GO:0007155]; nervous system development [GO:0007399]; neuron cell-cell adhesion [GO:0007158]; tissue regeneration [GO:0042246] -Q9NZN1 reviewed IRPL1_HUMAN Interleukin-1 receptor accessory protein-like 1 (IL-1-RAPL-1) (IL-1RAPL-1) (IL1RAPL-1) (EC 3.2.2.6) (Oligophrenin-4) (Three immunoglobulin domain-containing IL-1 receptor-related 2) (TIGIRR-2) (X-linked interleukin-1 receptor accessory protein-like 1) IL1RAPL1 OPHN4 negative regulation of exocytosis [GO:0045920]; neuron differentiation [GO:0030182]; positive regulation of dendritic spine morphogenesis [GO:0061003]; positive regulation of synapse assembly [GO:0051965]; presynaptic membrane assembly [GO:0097105]; regulation of neuron projection development [GO:0010975]; regulation of postsynapse organization [GO:0099175]; regulation of presynapse assembly [GO:1905606]; signal transduction [GO:0007165]; synaptic membrane adhesion [GO:0099560]; trans-synaptic signaling by trans-synaptic complex [GO:0099545] -Q9NZU0 reviewed FLRT3_HUMAN Leucine-rich repeat transmembrane protein FLRT3 (Fibronectin-like domain-containing leucine-rich transmembrane protein 3) FLRT3 KIAA1469 UNQ856/PRO1865 axon guidance [GO:0007411]; cell-cell adhesion via plasma-membrane adhesion molecules [GO:0098742]; embryonic morphogenesis [GO:0048598]; fibroblast growth factor receptor signaling pathway [GO:0008543]; head development [GO:0060322]; heart development [GO:0007507]; neuron projection development [GO:0031175]; neuron projection extension [GO:1990138]; positive regulation of synapse assembly [GO:0051965]; proepicardium cell migration involved in pericardium morphogenesis [GO:0003345]; response to axon injury [GO:0048678]; synapse assembly [GO:0007416]; synaptic membrane adhesion [GO:0099560] -Q9P1Y5 reviewed CAMP3_HUMAN Calmodulin-regulated spectrin-associated protein 3 (Protein Nezha) CAMSAP3 KIAA1543 cilium movement [GO:0003341]; DNA replication checkpoint signaling [GO:0000076]; embryo development ending in birth or egg hatching [GO:0009792]; epithelial cell-cell adhesion [GO:0090136]; establishment of epithelial cell apical/basal polarity [GO:0045198]; establishment or maintenance of microtubule cytoskeleton polarity [GO:0030951]; in utero embryonic development [GO:0001701]; microtubule anchoring [GO:0034453]; microtubule cytoskeleton organization [GO:0000226]; neuron projection development [GO:0031175]; protein transport along microtubule [GO:0098840]; regulation of cell migration [GO:0030334]; regulation of focal adhesion assembly [GO:0051893]; regulation of Golgi organization [GO:1903358]; regulation of microtubule cytoskeleton organization [GO:0070507]; regulation of microtubule polymerization [GO:0031113]; regulation of organelle organization [GO:0033043]; replication fork arrest [GO:0043111]; zonula adherens maintenance [GO:0045218] -Q9P273 reviewed TEN3_HUMAN Teneurin-3 (Ten-3) (Protein Odd Oz/ten-m homolog 3) (Tenascin-M3) (Ten-m3) (Teneurin transmembrane protein 3) TENM3 KIAA1455 ODZ3 TNM3 camera-type eye morphogenesis [GO:0048593]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; neuron development [GO:0048666]; positive regulation of neuron projection development [GO:0010976]; regulation of homophilic cell adhesion [GO:1903385]; signal transduction [GO:0007165] -Q9P2J2 reviewed TUTLA_HUMAN Protein turtle homolog A (Immunoglobulin superfamily member 9A) (IgSF9A) IGSF9 IGSF9A KIAA1355 NRT1 axon guidance [GO:0007411]; dendrite development [GO:0016358]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; regulation of synapse organization [GO:0050807] -Q9P2S2 reviewed NRX2A_HUMAN Neurexin-2 (Neurexin II-alpha) (Neurexin-2-alpha) NRXN2 KIAA0921 adult behavior [GO:0030534]; chemical synaptic transmission [GO:0007268]; gephyrin clustering involved in postsynaptic density assembly [GO:0097116]; neuroligin clustering involved in postsynaptic membrane assembly [GO:0097118]; neuron cell-cell adhesion [GO:0007158]; neurotransmitter secretion [GO:0007269]; postsynaptic density protein 95 clustering [GO:0097119]; postsynaptic membrane assembly [GO:0097104]; signal transduction [GO:0007165]; social behavior [GO:0035176]; synapse assembly [GO:0007416]; vocal learning [GO:0042297]; vocalization behavior [GO:0071625] -Q9UBF9 reviewed MYOTI_HUMAN Myotilin (57 kDa cytoskeletal protein) (Myofibrillar titin-like Ig domains protein) (Titin immunoglobulin domain protein) MYOT TTID homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; muscle contraction [GO:0006936]; synapse organization [GO:0050808] -Q9UBG3 reviewed CRNN_HUMAN Cornulin (53 kDa putative calcium-binding protein) (53 kDa squamous epithelial-induced stress protein) (58 kDa heat shock protein) (Squamous epithelial heat shock protein 53) (Tumor-related protein) CRNN C1orf10 DRC1 PDRC1 SEP53 cell-cell adhesion [GO:0098609]; cellular response to cytokine stimulus [GO:0071345]; positive regulation of cell cycle G1/S phase transition [GO:1902808]; positive regulation of keratinocyte proliferation [GO:0010838]; positive regulation of NF-kappaB transcription factor activity [GO:0051092]; regulation of gene expression [GO:0010468]; regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051896]; response to heat [GO:0009408] -Q9UDY2 reviewed ZO2_HUMAN Tight junction protein ZO-2 (Tight junction protein 2) (Zona occludens protein 2) (Zonula occludens protein 2) TJP2 X104 ZO2 cell-cell adhesion [GO:0098609]; cell-cell junction organization [GO:0045216]; establishment of endothelial intestinal barrier [GO:0090557]; homotypic cell-cell adhesion [GO:0034109]; intestinal absorption [GO:0050892]; maintenance of blood-brain barrier [GO:0035633]; positive regulation of blood-brain barrier permeability [GO:1905605]; protein localization to cell-cell junction [GO:0150105]; regulation of membrane permeability [GO:0090559]; response to organic substance [GO:0010033] -Q9UHR4 reviewed BI2L1_HUMAN BAR/IMD domain-containing adapter protein 2-like 1 (Brain-specific angiogenesis inhibitor 1-associated protein 2-like protein 1) (BAI1-associated protein 2-like protein 1) (Insulin receptor tyrosine kinase substrate) BAIAP2L1 IRTKS actin crosslink formation [GO:0051764]; actin filament bundle assembly [GO:0051017]; plasma membrane organization [GO:0007009]; positive regulation of actin filament polymerization [GO:0030838]; regulation of actin cytoskeleton organization [GO:0032956] -Q9UI47 reviewed CTNA3_HUMAN Catenin alpha-3 (Alpha T-catenin) (Cadherin-associated protein) CTNNA3 bundle of His cell-Purkinje myocyte adhesion involved in cell communication [GO:0086073]; cell migration [GO:0016477]; cell-cell adhesion [GO:0098609]; regulation of heart rate by cardiac conduction [GO:0086091]; regulation of ventricular cardiac muscle cell action potential [GO:0098911] -Q9UIB8 reviewed SLAF5_HUMAN SLAM family member 5 (Cell surface antigen MAX.3) (Hly9-beta) (Leukocyte differentiation antigen CD84) (Signaling lymphocytic activation molecule 5) (CD antigen CD84) CD84 SLAMF5 adaptive immune response [GO:0002250]; autophagy [GO:0006914]; defense response [GO:0006952]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; innate immune response [GO:0045087]; negative regulation of granulocyte macrophage colony-stimulating factor production [GO:0032685]; negative regulation of interleukin-18 production [GO:0032701]; negative regulation of interleukin-6 production [GO:0032715]; negative regulation of mast cell activation [GO:0033004]; negative regulation of mast cell degranulation [GO:0043305]; positive regulation of monocyte chemotactic protein-1 production [GO:0071639]; positive regulation of tumor necrosis factor production [GO:0032760]; regulation of macrophage activation [GO:0043030]; regulation of store-operated calcium entry [GO:2001256]; T cell activation [GO:0042110] -Q9UJU2 reviewed LEF1_HUMAN Lymphoid enhancer-binding factor 1 (LEF-1) (T cell-specific transcription factor 1-alpha) (TCF1-alpha) LEF1 anatomical structure regression [GO:0060033]; apoptotic process involved in blood vessel morphogenesis [GO:1902262]; B cell proliferation [GO:0042100]; BMP signaling pathway [GO:0030509]; branching involved in blood vessel morphogenesis [GO:0001569]; canonical Wnt signaling pathway [GO:0060070]; cell chemotaxis [GO:0060326]; cellular response to cytokine stimulus [GO:0071345]; cellular response to interleukin-4 [GO:0071353]; chorio-allantoic fusion [GO:0060710]; dentate gyrus development [GO:0021542]; embryonic limb morphogenesis [GO:0030326]; epithelial cell apoptotic process [GO:1904019]; epithelial to mesenchymal transition [GO:0001837]; face morphogenesis [GO:0060325]; forebrain neuroblast division [GO:0021873]; forebrain radial glial cell differentiation [GO:0021861]; formation of radial glial scaffolds [GO:0021943]; mammary gland development [GO:0030879]; negative regulation of apoptotic process [GO:0043066]; negative regulation of apoptotic process in bone marrow cell [GO:0071866]; negative regulation of DNA binding [GO:0043392]; negative regulation of DNA-templated transcription [GO:0045892]; negative regulation of interleukin-13 production [GO:0032696]; negative regulation of interleukin-4 production [GO:0032713]; negative regulation of interleukin-5 production [GO:0032714]; negative regulation of striated muscle tissue development [GO:0045843]; negative regulation of transcription by RNA polymerase II [GO:0000122]; neutrophil differentiation [GO:0030223]; odontogenesis of dentin-containing tooth [GO:0042475]; osteoblast differentiation [GO:0001649]; paraxial mesoderm formation [GO:0048341]; positive regulation by host of viral transcription [GO:0043923]; positive regulation of cell cycle process [GO:0090068]; positive regulation of cell differentiation [GO:0045597]; positive regulation of cell migration [GO:0030335]; positive regulation of cell proliferation in bone marrow [GO:0071864]; positive regulation of chondrocyte proliferation [GO:1902732]; positive regulation of DNA-templated transcription [GO:0045893]; positive regulation of epithelial to mesenchymal transition [GO:0010718]; positive regulation of gamma-delta T cell differentiation [GO:0045588]; positive regulation of gene expression [GO:0010628]; positive regulation of granulocyte differentiation [GO:0030854]; positive regulation of odontoblast differentiation [GO:1901331]; positive regulation of transcription by RNA polymerase II [GO:0045944]; positive regulation of Wnt signaling pathway [GO:0030177]; protein localization to chromatin [GO:0071168]; regulation of neurogenesis [GO:0050767]; regulation of transcription by RNA polymerase II [GO:0006357]; secondary palate development [GO:0062009]; sensory perception of taste [GO:0050909]; somitogenesis [GO:0001756]; sprouting angiogenesis [GO:0002040]; T cell receptor V(D)J recombination [GO:0033153]; T-helper 1 cell differentiation [GO:0045063]; tongue development [GO:0043586]; trachea gland development [GO:0061153]; transcription by RNA polymerase II [GO:0006366] -Q9UKX5 reviewed ITA11_HUMAN Integrin alpha-11 ITGA11 MSTP018 cell adhesion [GO:0007155]; cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; collagen-activated signaling pathway [GO:0038065]; integrin-mediated signaling pathway [GO:0007229]; muscle organ development [GO:0007517]; osteoblast differentiation [GO:0001649]; substrate-dependent cell migration [GO:0006929] -Q9UKZ4 reviewed TEN1_HUMAN Teneurin-1 (Ten-1) (Protein Odd Oz/ten-m homolog 1) (Tenascin-M1) (Ten-m1) (Teneurin transmembrane protein 1) [Cleaved into: Ten-1 intracellular domain (IDten-1) (Ten-1 ICD); Teneurin C-terminal-associated peptide (TCPA-1) (Ten-1 extracellular domain) (Ten-1 ECD)] TENM1 ODZ1 TNM1 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; immune response [GO:0006955]; negative regulation of cell population proliferation [GO:0008285]; nervous system development [GO:0007399]; neuron development [GO:0048666]; neuropeptide signaling pathway [GO:0007218]; positive regulation of actin filament polymerization [GO:0030838]; positive regulation of filopodium assembly [GO:0051491]; positive regulation of intracellular protein transport [GO:0090316]; positive regulation of MAP kinase activity [GO:0043406]; positive regulation of peptidyl-serine phosphorylation [GO:0033138]; regulation of transcription by RNA polymerase III [GO:0006359] -Q9ULB1 reviewed NRX1A_HUMAN Neurexin-1 (Neurexin I-alpha) (Neurexin-1-alpha) NRXN1 KIAA0578 adult behavior [GO:0030534]; axon guidance [GO:0007411]; chemical synaptic transmission [GO:0007268]; gephyrin clustering involved in postsynaptic density assembly [GO:0097116]; learning [GO:0007612]; neuroligin clustering involved in postsynaptic membrane assembly [GO:0097118]; neuromuscular process controlling balance [GO:0050885]; neuron cell-cell adhesion [GO:0007158]; neurotransmitter secretion [GO:0007269]; positive regulation of excitatory postsynaptic potential [GO:2000463]; positive regulation of synapse assembly [GO:0051965]; positive regulation of synapse maturation [GO:0090129]; positive regulation of synaptic transmission, glutamatergic [GO:0051968]; postsynaptic density protein 95 clustering [GO:0097119]; postsynaptic membrane assembly [GO:0097104]; social behavior [GO:0035176]; synapse assembly [GO:0007416]; vocal learning [GO:0042297]; vocalization behavior [GO:0071625] -Q9ULB4 reviewed CADH9_HUMAN Cadherin-9 CDH9 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell migration [GO:0016477]; cell morphogenesis [GO:0000902]; cell-cell adhesion [GO:0098609]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synapse assembly [GO:0007416]; synaptic membrane adhesion [GO:0099560] -Q9ULB5 reviewed CADH7_HUMAN Cadherin-7 CDH7 CDH7L1 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell migration [GO:0016477]; cell morphogenesis [GO:0000902]; cell-cell adhesion [GO:0098609]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q9ULL4 reviewed PLXB3_HUMAN Plexin-B3 PLXNB3 KIAA1206 PLXN6 cell chemotaxis [GO:0060326]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; negative regulation of cell adhesion [GO:0007162]; negative regulation of cell migration [GO:0030336]; negative regulation of GTPase activity [GO:0034260]; negative regulation of lamellipodium assembly [GO:0010593]; nervous system development [GO:0007399]; positive chemotaxis [GO:0050918]; positive regulation of axonogenesis [GO:0050772]; positive regulation of endothelial cell proliferation [GO:0001938]; positive regulation of neuron projection development [GO:0010976]; regulation of cell shape [GO:0008360]; semaphorin-plexin signaling pathway [GO:0071526] -Q9UMF0 reviewed ICAM5_HUMAN Intercellular adhesion molecule 5 (ICAM-5) (Telencephalin) ICAM5 TLCN TLN cell adhesion [GO:0007155]; cell-cell adhesion [GO:0098609]; phagocytosis [GO:0006909]; regulation of synapse assembly [GO:0051963] -Q9UN72 reviewed PCDA7_HUMAN Protocadherin alpha-7 (PCDH-alpha-7) PCDHA7 CNRS4 cell adhesion [GO:0007155]; cell-cell recognition [GO:0009988]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9UN73 reviewed PCDA6_HUMAN Protocadherin alpha-6 (PCDH-alpha-6) PCDHA6 CNRS2 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9UN74 reviewed PCDA4_HUMAN Protocadherin alpha-4 (PCDH-alpha-4) PCDHA4 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9UPY5 reviewed XCT_HUMAN Cystine/glutamate transporter (Amino acid transport system xc-) (Calcium channel blocker resistance protein CCBR1) (Solute carrier family 7 member 11) (xCT) SLC7A11 adult behavior [GO:0030534]; amino acid transmembrane transport [GO:0003333]; cellular response to oxidative stress [GO:0034599]; dipeptide import across plasma membrane [GO:0140206]; glutathione metabolic process [GO:0006749]; glutathione transmembrane transport [GO:0034775]; intracellular glutamate homeostasis [GO:0090461]; L-cystine transport [GO:0015811]; L-glutamate import across plasma membrane [GO:0098712]; L-glutamate transmembrane transport [GO:0015813]; L-kynurenine transmembrane transport [GO:0140924]; lens fiber cell differentiation [GO:0070306]; limb development [GO:0060173]; lung alveolus development [GO:0048286]; modulation of chemical synaptic transmission [GO:0050804]; negative regulation of ferroptosis [GO:0110076]; platelet aggregation [GO:0070527]; regulation of AMPA glutamate receptor clustering [GO:1904717]; regulation of cell population proliferation [GO:0042127]; regulation of cellular response to oxidative stress [GO:1900407]; regulation of cysteine metabolic process [GO:1901494]; regulation of glutamate metabolic process [GO:2000211]; regulation of glutathione biosynthetic process [GO:1903786]; regulation of melanin biosynthetic process [GO:0048021]; regulation of neutrophil apoptotic process [GO:0033029]; regulation of protein transport [GO:0051223]; regulation of synapse organization [GO:0050807]; response to nicotine [GO:0035094]; response to organic cyclic compound [GO:0014070]; response to redox state [GO:0051775]; response to toxic substance [GO:0009636]; striatum development [GO:0021756]; ventricular system development [GO:0021591]; visual learning [GO:0008542] -Q9UQ52 reviewed CNTN6_HUMAN Contactin-6 (Neural recognition molecule NB-3) (hNB-3) CNTN6 axon guidance [GO:0007411]; cell adhesion [GO:0007155]; central nervous system development [GO:0007417]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; Notch signaling pathway [GO:0007219]; positive regulation of Notch signaling pathway [GO:0045747]; synapse organization [GO:0050808] -Q9UQB3 reviewed CTND2_HUMAN Catenin delta-2 (Delta-catenin) (GT24) (Neural plakophilin-related ARM-repeat protein) (NPRAP) (Neurojungin) CTNND2 NPRAP cell adhesion [GO:0007155]; cell-cell adhesion [GO:0098609]; dendritic spine morphogenesis [GO:0060997]; regulation of canonical Wnt signaling pathway [GO:0060828]; signal transduction [GO:0007165]; synapse organization [GO:0050808]; Wnt signaling pathway [GO:0016055] -Q9UQB8 reviewed BAIP2_HUMAN BAR/IMD domain-containing adapter protein 2 (Brain-specific angiogenesis inhibitor 1-associated protein 2) (BAI-associated protein 2) (BAI1-associated protein 2) (Protein BAP2) (Fas ligand-associated factor 3) (FLAF3) (Insulin receptor substrate p53/p58) (IRS-58) (IRSp53/58) (Insulin receptor substrate protein of 53 kDa) (IRSp53) (Insulin receptor substrate p53) BAIAP2 actin crosslink formation [GO:0051764]; actin filament bundle assembly [GO:0051017]; axonogenesis [GO:0007409]; cellular response to epidermal growth factor stimulus [GO:0071364]; cellular response to L-glutamate [GO:1905232]; dendrite development [GO:0016358]; insulin receptor signaling pathway [GO:0008286]; plasma membrane organization [GO:0007009]; positive regulation of actin filament polymerization [GO:0030838]; positive regulation of dendritic spine morphogenesis [GO:0061003]; positive regulation of excitatory postsynaptic potential [GO:2000463]; protein localization to synapse [GO:0035418]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of cell shape [GO:0008360]; regulation of modification of postsynaptic actin cytoskeleton [GO:1905274]; regulation of synaptic plasticity [GO:0048167] -Q9Y2H6 reviewed FND3A_HUMAN Fibronectin type-III domain-containing protein 3A (Human gene expressed in odontoblasts) FNDC3A FNDC3 HUGO KIAA0970 cell-cell adhesion [GO:0098609]; fertilization [GO:0009566]; Sertoli cell development [GO:0060009]; spermatid development [GO:0007286] -Q9Y2I2 reviewed NTNG1_HUMAN Netrin-G1 (Laminet-1) NTNG1 KIAA0976 LMNT1 UNQ571/PRO1133 axonogenesis [GO:0007409]; modulation of chemical synaptic transmission [GO:0050804]; regulation of neuron migration [GO:2001222]; regulation of neuron projection arborization [GO:0150011]; regulation of neuron projection development [GO:0010975]; synaptic membrane adhesion [GO:0099560] -Q9Y446 reviewed PKP3_HUMAN Plakophilin-3 PKP3 cell-cell adhesion [GO:0098609]; desmosome assembly [GO:0002159]; desmosome organization [GO:0002934]; epithelial cell-cell adhesion [GO:0090136]; epithelial structure maintenance [GO:0010669]; negative regulation of mRNA catabolic process [GO:1902373]; protein localization to plasma membrane [GO:0072659]; regulation of cytokine production involved in immune response [GO:0002718]; regulation of hair follicle development [GO:0051797] -Q9Y490 reviewed TLN1_HUMAN Talin-1 TLN1 KIAA1027 TLN cell-cell adhesion [GO:0098609]; cell-cell junction assembly [GO:0007043]; cell-substrate junction assembly [GO:0007044]; cortical actin cytoskeleton organization [GO:0030866]; integrin activation [GO:0033622]; integrin-mediated signaling pathway [GO:0007229]; platelet aggregation [GO:0070527]; regulation of focal adhesion assembly [GO:0051893] -Q9Y493 reviewed ZAN_HUMAN Zonadhesin ZAN binding of sperm to zona pellucida [GO:0007339]; cell-cell adhesion [GO:0098609] -Q9Y4C0 reviewed NRX3A_HUMAN Neurexin-3 (Neurexin III-alpha) (Neurexin-3-alpha) NRXN3 C14orf60 KIAA0743 adult behavior [GO:0030534]; axon guidance [GO:0007411]; learning [GO:0007612]; neuron cell-cell adhesion [GO:0007158]; social behavior [GO:0035176]; vocalization behavior [GO:0071625] -Q9Y4G6 reviewed TLN2_HUMAN Talin-2 TLN2 KIAA0320 cell adhesion [GO:0007155]; cell-cell adhesion [GO:0098609]; cell-cell junction assembly [GO:0007043]; presynaptic actin cytoskeleton organization [GO:0099140] -Q9Y5E3 reviewed PCDB6_HUMAN Protocadherin beta-6 (PCDH-beta-6) PCDHB6 calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell adhesion [GO:0007155]; cell-cell recognition [GO:0009988]; chemical synaptic transmission [GO:0007268]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399]; synapse assembly [GO:0007416] -Q9Y5E9 reviewed PCDBE_HUMAN Protocadherin beta-14 (PCDH-beta-14) PCDHB14 calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell adhesion [GO:0007155]; chemical synaptic transmission [GO:0007268]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synapse assembly [GO:0007416] -Q9Y5F1 reviewed PCDBC_HUMAN Protocadherin beta-12 (PCDH-beta-12) PCDHB12 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5F7 reviewed PCDGL_HUMAN Protocadherin gamma-C4 (PCDH-gamma-C4) PCDHGC4 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; negative regulation of neuron apoptotic process [GO:0043524]; nervous system development [GO:0007399]; synapse organization [GO:0050808] -Q9Y5H5 reviewed PCDA9_HUMAN Protocadherin alpha-9 (PCDH-alpha-9) PCDHA9 KIAA0345 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5H9 reviewed PCDA2_HUMAN Protocadherin alpha-2 (PCDH-alpha-2) PCDHA2 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5I2 reviewed PCDAA_HUMAN Protocadherin alpha-10 (PCDH-alpha-10) PCDHA10 CNRS8 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5I3 reviewed PCDA1_HUMAN Protocadherin alpha-1 (PCDH-alpha-1) PCDHA1 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5I7 reviewed CLD16_HUMAN Claudin-16 (Paracellin-1) (PCLN-1) CLDN16 PCLN1 bicellular tight junction assembly [GO:0070830]; calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules [GO:0016338]; cell adhesion [GO:0007155]; intercellular transport [GO:0010496]; intracellular monoatomic cation homeostasis [GO:0030003]; metal ion transport [GO:0030001] -Q9Y5K6 reviewed CD2AP_HUMAN CD2-associated protein (Adapter protein CMS) (Cas ligand with multiple SH3 domains) CD2AP actin filament organization [GO:0007015]; actin filament polymerization [GO:0030041]; adipose tissue development [GO:0060612]; apoptotic process [GO:0006915]; cell division [GO:0051301]; cell migration [GO:0016477]; cell population proliferation [GO:0008283]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction organization [GO:0045216]; collateral sprouting [GO:0048668]; endothelium development [GO:0003158]; ERK1 and ERK2 cascade [GO:0070371]; filopodium assembly [GO:0046847]; glucose import [GO:0046323]; immunological synapse formation [GO:0001771]; inflammatory response [GO:0006954]; lipid metabolic process [GO:0006629]; liver development [GO:0001889]; localization of cell [GO:0051674]; lymph node development [GO:0048535]; maintenance of blood-brain barrier [GO:0035633]; male gonad development [GO:0008584]; membrane organization [GO:0061024]; negative regulation of neuron apoptotic process [GO:0043524]; negative regulation of small GTPase mediated signal transduction [GO:0051058]; negative regulation of transforming growth factor beta1 production [GO:0032911]; nerve growth factor signaling pathway [GO:0038180]; neurotrophin TRK receptor signaling pathway [GO:0048011]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; podocyte differentiation [GO:0072112]; positive regulation of protein localization to nucleus [GO:1900182]; positive regulation of protein secretion [GO:0050714]; protein catabolic process [GO:0030163]; protein heterooligomerization [GO:0051291]; protein secretion [GO:0009306]; protein-containing complex assembly [GO:0065003]; Rab protein signal transduction [GO:0032482]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of synaptic plasticity [GO:0048167]; renal albumin absorption [GO:0097018]; response to glial cell derived neurotrophic factor [GO:1990790]; response to insulin [GO:0032868]; response to oxidative stress [GO:0006979]; response to transforming growth factor beta [GO:0071559]; response to virus [GO:0009615]; response to wounding [GO:0009611]; signal transduction [GO:0007165]; stress-activated MAPK cascade [GO:0051403]; substrate-dependent cell migration, cell extension [GO:0006930]; synapse organization [GO:0050808]; T cell receptor signaling pathway [GO:0050852]; transforming growth factor beta1 production [GO:0032905] -Q9Y5R2 reviewed MMP24_HUMAN Matrix metalloproteinase-24 (MMP-24) (EC 3.4.24.-) (Membrane-type matrix metalloproteinase 5) (MT-MMP 5) (MTMMP5) (Membrane-type-5 matrix metalloproteinase) (MT5-MMP) (MT5MMP) [Cleaved into: Processed matrix metalloproteinase-24] MMP24 MT5MMP cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell adhesion via plasma-membrane adhesion molecules [GO:0098742]; collagen catabolic process [GO:0030574]; detection of temperature stimulus involved in sensory perception of pain [GO:0050965]; extracellular matrix organization [GO:0030198]; glial cell differentiation [GO:0010001]; neuronal stem cell population maintenance [GO:0097150]; proteolysis [GO:0006508] -Q9Y624 reviewed JAM1_HUMAN Junctional adhesion molecule A (JAM-A) (Junctional adhesion molecule 1) (JAM-1) (Platelet F11 receptor) (Platelet adhesion molecule 1) (PAM-1) (CD antigen CD321) F11R JAM1 JCAM UNQ264/PRO301 actomyosin structure organization [GO:0031032]; cell-cell adhesion [GO:0098609]; cellular response to mechanical stimulus [GO:0071260]; establishment of endothelial intestinal barrier [GO:0090557]; inflammatory response [GO:0006954]; intestinal absorption [GO:0050892]; leukocyte cell-cell adhesion [GO:0007159]; maintenance of blood-brain barrier [GO:0035633]; memory T cell extravasation [GO:0035683]; negative regulation of stress fiber assembly [GO:0051497]; positive regulation of establishment of endothelial barrier [GO:1903142]; positive regulation of platelet aggregation [GO:1901731]; positive regulation of Rho protein signal transduction [GO:0035025]; protein localization to bicellular tight junction [GO:1902396]; protein localization to plasma membrane [GO:0072659]; regulation of actin cytoskeleton organization [GO:0032956]; regulation of bicellular tight junction assembly [GO:2000810]; regulation of cell shape [GO:0008360]; regulation of cytokine production [GO:0001817]; regulation of cytoskeleton organization [GO:0051493]; regulation of membrane permeability [GO:0090559] -Q9Y639 reviewed NPTN_HUMAN Neuroplastin (Stromal cell-derived receptor 1) (SDR-1) NPTN SDFR1 SDR1 excitatory synapse assembly [GO:1904861]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; intracellular calcium ion homeostasis [GO:0006874]; long-term synaptic potentiation [GO:0060291]; negative regulation of cytokine production [GO:0001818]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of fibroblast growth factor receptor signaling pathway [GO:0045743]; positive regulation of long-term neuronal synaptic plasticity [GO:0048170]; positive regulation of neuron projection development [GO:0010976]; positive regulation of protein phosphorylation [GO:0001934]; regulation of receptor localization to synapse [GO:1902683] -Q9Y6N7 reviewed ROBO1_HUMAN Roundabout homolog 1 (Deleted in U twenty twenty) (H-Robo-1) ROBO1 DUTT1 activation of cysteine-type endopeptidase activity involved in apoptotic process [GO:0006919]; aorta development [GO:0035904]; aortic valve morphogenesis [GO:0003180]; axon midline choice point recognition [GO:0016199]; cell adhesion [GO:0007155]; cell migration involved in sprouting angiogenesis [GO:0002042]; chemorepulsion involved in postnatal olfactory bulb interneuron migration [GO:0021836]; endocardial cushion formation [GO:0003272]; heart induction [GO:0003129]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; negative regulation of cell migration [GO:0030336]; negative regulation of chemokine-mediated signaling pathway [GO:0070100]; negative regulation of gene expression [GO:0010629]; negative regulation of mammary gland epithelial cell proliferation [GO:0033600]; negative regulation of negative chemotaxis [GO:0050925]; nervous system development [GO:0007399]; outflow tract septum morphogenesis [GO:0003148]; positive regulation of axonogenesis [GO:0050772]; positive regulation of gene expression [GO:0010628]; positive regulation of MAP kinase activity [GO:0043406]; positive regulation of Notch signaling pathway [GO:0045747]; positive regulation of Rho protein signal transduction [GO:0035025]; positive regulation of vascular endothelial growth factor receptor signaling pathway [GO:0030949]; positive regulation of vascular endothelial growth factor signaling pathway [GO:1900748]; pulmonary valve morphogenesis [GO:0003184]; Roundabout signaling pathway [GO:0035385]; ventricular septum morphogenesis [GO:0060412] -Q9Y6N8 reviewed CAD10_HUMAN Cadherin-10 (T2-cadherin) CDH10 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell migration [GO:0016477]; cell morphogenesis [GO:0000902]; cell-cell adhesion [GO:0098609]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synaptic membrane adhesion [GO:0099560] -Q9Y6W8 reviewed ICOS_HUMAN Inducible T-cell costimulator (Activation-inducible lymphocyte immunomediatory molecule) (CD antigen CD278) ICOS AILIM cell-cell adhesion [GO:0098609]; immune response [GO:0006955]; T cell costimulation [GO:0031295]; T cell tolerance induction [GO:0002517] -W0S0X4 unreviewed W0S0X4_HUMAN Tyrosine-protein kinase (EC 2.7.10.2) Pe1Fe3 actin cytoskeleton organization [GO:0030036]; adherens junction assembly [GO:0034333]; adherens junction disassembly [GO:0120179]; cell-cell adhesion mediated by cadherin [GO:0044331]; cellular response to reactive oxygen species [GO:0034614]; chemotaxis [GO:0006935]; diapedesis [GO:0050904]; extracellular matrix-cell signaling [GO:0035426]; Fc-epsilon receptor signaling pathway [GO:0038095]; germ cell development [GO:0007281]; insulin receptor signaling pathway [GO:0008286]; Kit signaling pathway [GO:0038109]; negative regulation of mast cell activation involved in immune response [GO:0033007]; platelet-derived growth factor receptor signaling pathway [GO:0048008]; positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051897]; regulation of fibroblast migration [GO:0010762]; regulation of mast cell degranulation [GO:0043304]; regulation of protein phosphorylation [GO:0001932]; response to lipopolysaccharide [GO:0032496]; response to platelet-derived growth factor [GO:0036119]; seminiferous tubule development [GO:0072520]; Sertoli cell development [GO:0060009]; substrate adhesion-dependent cell spreading [GO:0034446] -A0A6I8PRU0 unreviewed A0A6I8PRU0_HUMAN Cadherin EGF LAG seven-pass G-type receptor 1 CELSR1 anterior/posterior pattern specification [GO:0009952]; apical protein localization [GO:0045176]; establishment of body hair planar orientation [GO:0048105]; establishment of planar polarity of embryonic epithelium [GO:0042249]; hair follicle development [GO:0001942]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; inner ear morphogenesis [GO:0042472]; lateral sprouting involved in lung morphogenesis [GO:0060490]; locomotory behavior [GO:0007626]; motor neuron migration [GO:0097475]; orthogonal dichotomous subdivision of terminal units involved in lung branching morphogenesis [GO:0060488]; planar cell polarity pathway involved in neural tube closure [GO:0090179]; planar dichotomous subdivision of terminal units involved in lung branching morphogenesis [GO:0060489]; protein localization involved in establishment of planar polarity [GO:0090251]; regulation of actin cytoskeleton organization [GO:0032956]; Rho protein signal transduction [GO:0007266]; wound healing [GO:0042060] -A0A8Q3SHM6 unreviewed A0A8Q3SHM6_HUMAN Neuroligin 1 NLGN1 AMPA glutamate receptor clustering [GO:0097113]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cytoskeletal matrix organization at active zone [GO:0048789]; establishment of protein localization [GO:0045184]; excitatory synapse assembly [GO:1904861]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; negative regulation of dendritic spine morphogenesis [GO:0061002]; neurexin clustering involved in presynaptic membrane assembly [GO:0097115]; neuron cell-cell adhesion [GO:0007158]; positive regulation of circadian sleep/wake cycle, wakefulness [GO:0010841]; positive regulation of dendritic spine development [GO:0060999]; positive regulation of excitatory postsynaptic potential [GO:2000463]; positive regulation of synapse assembly [GO:0051965]; positive regulation of synaptic vesicle clustering [GO:2000809]; positive regulation of synaptic vesicle endocytosis [GO:1900244]; positive regulation of synaptic vesicle exocytosis [GO:2000302]; postsynaptic density protein 95 clustering [GO:0097119]; postsynaptic membrane assembly [GO:0097104]; postsynaptic specialization assembly [GO:0098698]; protein localization to synapse [GO:0035418]; receptor localization to synapse [GO:0097120]; regulation of neuron differentiation [GO:0045664]; regulation of respiratory gaseous exchange by nervous system process [GO:0002087]; synaptic membrane adhesion [GO:0099560]; synaptic vesicle clustering [GO:0097091]; synaptic vesicle targeting [GO:0016080]; terminal button organization [GO:0072553] -A5JSJ9 unreviewed A5JSJ9_HUMAN Claudin CLDN1 hCG_17574 bicellular tight junction assembly [GO:0070830]; calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules [GO:0016338]; cell junction maintenance [GO:0034331]; cellular response to butyrate [GO:1903545]; cellular response to lead ion [GO:0071284]; cellular response to transforming growth factor beta stimulus [GO:0071560]; cellular response to tumor necrosis factor [GO:0071356]; cellular response to type II interferon [GO:0071346]; establishment of blood-nerve barrier [GO:0008065]; establishment of endothelial intestinal barrier [GO:0090557]; establishment of skin barrier [GO:0061436]; liver regeneration [GO:0097421]; positive regulation of bicellular tight junction assembly [GO:1903348]; response to dexamethasone [GO:0071548]; response to ethanol [GO:0045471]; response to interleukin-18 [GO:0070673]; response to lipopolysaccharide [GO:0032496]; response to toxic substance [GO:0009636]; xenobiotic transport across blood-nerve barrier [GO:0061772] -L7RXH0 unreviewed L7RXH0_HUMAN Integrin, alpha V ITGAV angiogenesis [GO:0001525]; apoptotic cell clearance [GO:0043277]; cell adhesion mediated by integrin [GO:0033627]; cell migration [GO:0016477]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; ERK1 and ERK2 cascade [GO:0070371]; extrinsic apoptotic signaling pathway in absence of ligand [GO:0097192]; integrin-mediated signaling pathway [GO:0007229]; positive regulation of cell migration [GO:0030335]; positive regulation of cytosolic calcium ion concentration [GO:0007204]; positive regulation of osteoblast proliferation [GO:0033690]; transforming growth factor beta production [GO:0071604]; vasculogenesis [GO:0001570] -O60245 reviewed PCDH7_HUMAN Protocadherin-7 (Brain-heart protocadherin) (BH-Pcdh) PCDH7 BHPCDH cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -O60330 reviewed PCDGC_HUMAN Protocadherin gamma-A12 (PCDH-gamma-A12) (Cadherin-21) (Fibroblast cadherin-3) PCDHGA12 CDH21 FIB3 KIAA0588 UNQ371/PRO707 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -O75612 unreviewed O75612_HUMAN Carboxylic ester hydrolase (EC 3.1.1.-) cell differentiation [GO:0030154]; ceramide catabolic process [GO:0046514]; chemical synaptic transmission [GO:0007268]; cholesterol catabolic process [GO:0006707]; fat-soluble vitamin catabolic process [GO:0042363]; intestinal cholesterol absorption [GO:0030299]; modulation of chemical synaptic transmission [GO:0050804]; neuron cell-cell adhesion [GO:0007158]; pancreatic juice secretion [GO:0030157]; postsynaptic membrane assembly [GO:0097104]; presynaptic membrane assembly [GO:0097105]; synaptic vesicle endocytosis [GO:0048488] -O95965 reviewed ITGBL_HUMAN Integrin beta-like protein 1 (Osteoblast-specific cysteine-rich protein) (Ten integrin EGF-like repeat domain-containing protein) ITGBL1 OSCP TIED cell adhesion [GO:0007155]; cell-cell adhesion [GO:0098609]; integrin-mediated signaling pathway [GO:0007229] -P55808 reviewed XG_HUMAN Glycoprotein Xg (Protein PBDX) XG PBDX homotypic cell-cell adhesion [GO:0034109]; positive regulation of neutrophil extravasation [GO:2000391]; T cell extravasation [GO:0072683] -Q15238 reviewed PSG5_HUMAN Pregnancy-specific beta-1-glycoprotein 5 (PS-beta-G-5) (PSBG-5) (Pregnancy-specific glycoprotein 5) (Fetal liver non-specific cross-reactive antigen 3) (FL-NCA-3) PSG5 female pregnancy [GO:0007565]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157] -Q2VWP7 reviewed PRTG_HUMAN Protogenin (Protein Shen-Dan) PRTG cell-cell adhesion [GO:0098609]; negative regulation of neurogenesis [GO:0050768] -Q59GA0 unreviewed Q59GA0_HUMAN Thy-1 membrane glycoprotein (Thy-1 antigen) angiogenesis [GO:0001525]; cell-cell adhesion [GO:0098609]; cytoskeleton organization [GO:0007010]; focal adhesion assembly [GO:0048041]; integrin-mediated signaling pathway [GO:0007229]; negative regulation of axonogenesis [GO:0050771]; negative regulation of cell migration [GO:0030336]; negative regulation of neuron projection regeneration [GO:0070571]; negative regulation of protein kinase activity [GO:0006469]; negative regulation of T cell receptor signaling pathway [GO:0050860]; positive regulation of focal adhesion assembly [GO:0051894]; positive regulation of GTPase activity [GO:0043547]; positive regulation of release of sequestered calcium ion into cytosol [GO:0051281]; positive regulation of T cell activation [GO:0050870]; retinal cone cell development [GO:0046549]; T cell receptor signaling pathway [GO:0050852] -Q5GAN6 reviewed RNS10_HUMAN Inactive ribonuclease-like protein 10 RNASE10 defense response to Gram-positive bacterium [GO:0050830]; heterotypic cell-cell adhesion [GO:0034113]; positive regulation of cell-cell adhesion [GO:0022409]; positive regulation of flagellated sperm motility [GO:1902093]; regulation of fertilization [GO:0080154]; single fertilization [GO:0007338] -Q6FI18 unreviewed Q6FI18_HUMAN CCN family member 1 (Cellular communication network factor 1) (Protein CYR61) CYR61 hCG_23652 apoptotic process involved in heart morphogenesis [GO:0003278]; atrial septum morphogenesis [GO:0060413]; atrioventricular valve morphogenesis [GO:0003181]; chondroblast differentiation [GO:0060591]; chorio-allantoic fusion [GO:0060710]; extracellular matrix organization [GO:0030198]; intussusceptive angiogenesis [GO:0002041]; labyrinthine layer blood vessel development [GO:0060716]; negative regulation of apoptotic process [GO:0043066]; osteoblast differentiation [GO:0001649]; positive regulation of apoptotic process [GO:0043065]; positive regulation of cartilage development [GO:0061036]; positive regulation of cell differentiation [GO:0045597]; positive regulation of cell migration [GO:0030335]; positive regulation of cell-substrate adhesion [GO:0010811]; positive regulation of ceramide biosynthetic process [GO:2000304]; reactive oxygen species metabolic process [GO:0072593]; signal transduction [GO:0007165]; ventricular septum development [GO:0003281] -Q6PCB8 reviewed EMB_HUMAN Embigin EMB axon guidance [GO:0007411]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; plasma membrane lactate transport [GO:0035879] -Q6V1P9 reviewed PCD23_HUMAN Protocadherin-23 (Cadherin-27) (Cadherin-like protein CDHJ) (Cadherin-like protein VR8) (Protein dachsous homolog 2) (Protocadherin PCDHJ) DCHS2 CDH27 CDHJ PCDH23 PCDHJ cell-cell adhesion [GO:0098609]; condensed mesenchymal cell proliferation [GO:0072137]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nephron development [GO:0072006] -Q7Z692 reviewed CEA19_HUMAN Carcinoembryonic antigen-related cell adhesion molecule 19 (Carcinoembryonic antigen-like 1) CEACAM19 CEAL1 UNQ2973/PRO7436 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157] -Q86WK7 reviewed AMGO3_HUMAN Amphoterin-induced protein 3 (AMIGO-3) (Alivin-3) AMIGO3 ALI3 KIAA1851 UNQ6084/PRO20089 brain development [GO:0007420]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; negative regulation of neuron projection development [GO:0010977]; positive regulation of synapse assembly [GO:0051965] -Q8IZS7 reviewed CLCL1_HUMAN Putative C-type lectin-like domain family 1 (C-type lectin-like domain family 1 pseudogene) (Dendritic cell-associated lectin 1) (DC-associated lectin-1) (DCAL-1) CLECL1P CLECL1 DCAL1 B cell adhesion [GO:0097323]; positive regulation of interleukin-4 production [GO:0032753]; positive regulation of T cell proliferation [GO:0042102] -Q8N6Y1 reviewed PCD20_HUMAN Protocadherin-20 (Protocadherin-13) PCDH20 PCDH13 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q8N7P3 reviewed CLD22_HUMAN Claudin-22 CLDN22 bicellular tight junction assembly [GO:0070830]; calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules [GO:0016338]; cell adhesion [GO:0007155] -Q8NDA2 reviewed HMCN2_HUMAN Hemicentin-2 HMCN2 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synapse organization [GO:0050808] -Q8TDY8 reviewed IGDC4_HUMAN Immunoglobulin superfamily DCC subclass member 4 (Neighbor of punc e11) (Protein DDM36) (hDDM36) IGDCC4 DDM36 KIAA1628 NOPE cell-cell adhesion [GO:0098609] -Q96QS1 reviewed TSN32_HUMAN Tetraspanin-32 (Tspan-32) (Protein Phemx) TSPAN32 PHEMX TSSC6 cell-cell signaling [GO:0007267]; cytoskeleton organization [GO:0007010]; defense response to protozoan [GO:0042832]; integrin-mediated signaling pathway [GO:0007229]; negative regulation of myeloid dendritic cell activation [GO:0030886]; negative regulation of T cell proliferation [GO:0042130]; platelet aggregation [GO:0070527]; regulation of defense response to virus [GO:0050688]; T cell proliferation [GO:0042098] -Q9H158 reviewed PCDC1_HUMAN Protocadherin alpha-C1 (PCDH-alpha-C1) PCDHAC1 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9HC56 reviewed PCDH9_HUMAN Protocadherin-9 PCDH9 cell adhesion [GO:0007155]; forebrain development [GO:0030900]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q9HCL0 reviewed PCD18_HUMAN Protocadherin-18 PCDH18 KIAA1562 brain development [GO:0007420]; cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q9NSI5 reviewed IGSF5_HUMAN Immunoglobulin superfamily member 5 (IgSF5) (Junctional adhesion molecule 4) (JAM-4) IGSF5 JAM4 cell-cell adhesion [GO:0098609] -Q9NUP1 reviewed BL1S4_HUMAN Biogenesis of lysosome-related organelles complex 1 subunit 4 (BLOC-1 subunit 4) (Protein cappuccino homolog) BLOC1S4 CNO anterograde axonal transport [GO:0008089]; anterograde synaptic vesicle transport [GO:0048490]; melanosome organization [GO:0032438]; neuromuscular process controlling balance [GO:0050885]; neuron projection development [GO:0031175]; platelet aggregation [GO:0070527] -Q9NYL9 reviewed TMOD3_HUMAN Tropomodulin-3 (Ubiquitous tropomodulin) (U-Tmod) TMOD3 actin filament organization [GO:0007015]; erythrocyte development [GO:0048821]; mitotic cell cycle phase transition [GO:0044772]; muscle contraction [GO:0006936]; myofibril assembly [GO:0030239]; pointed-end actin filament capping [GO:0051694]; positive regulation of mitotic cell cycle phase transition [GO:1901992] -Q9P2E7 reviewed PCD10_HUMAN Protocadherin-10 PCDH10 KIAA1400 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9UJ99 reviewed CAD22_HUMAN Cadherin-22 (Pituitary and brain cadherin) (PB-cadherin) CDH22 C20orf25 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell migration [GO:0016477]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q9UN66 reviewed PCDB8_HUMAN Protocadherin beta-8 (PCDH-beta-8) (Protocadherin-3I) PCDHB8 PCDH3I cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9UN67 reviewed PCDBA_HUMAN Protocadherin beta-10 (PCDH-beta-10) PCDHB10 UNQ1906/PRO4352 calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell adhesion [GO:0007155]; chemical synaptic transmission [GO:0007268]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synapse assembly [GO:0007416] -Q9UN70 reviewed PCDGK_HUMAN Protocadherin gamma-C3 (PCDH-gamma-C3) (Protocadherin-2) (Protocadherin-43) (PC-43) PCDHGC3 PCDH2 calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; negative regulation of neuron apoptotic process [GO:0043524]; nervous system development [GO:0007399]; synapse organization [GO:0050808] -Q9UN71 reviewed PCDGG_HUMAN Protocadherin gamma-B4 (PCDH-gamma-B4) (Cadherin-20) (Fibroblast cadherin-2) PCDHGB4 CDH20 FIB2 calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9UN75 reviewed PCDAC_HUMAN Protocadherin alpha-12 (PCDH-alpha-12) PCDHA12 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9UQ72 reviewed PSG11_HUMAN Pregnancy-specific beta-1-glycoprotein 11 (PS-beta-G-11) (PSBG-11) (Pregnancy-specific glycoprotein 11) (Pregnancy-specific beta-1-glycoprotein 13) (PS-beta-G-13) (PSBG-13) (Pregnancy-specific glycoprotein 13) PSG11 PSG13 PSG14 female pregnancy [GO:0007565]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157] -Q9Y5E1 reviewed PCDB9_HUMAN Protocadherin beta-9 (PCDH-beta-9) (Protocadherin-3H) PCDHB9 PCDH3H calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell adhesion [GO:0007155]; chemical synaptic transmission [GO:0007268]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synapse assembly [GO:0007416] -Q9Y5E2 reviewed PCDB7_HUMAN Protocadherin beta-7 (PCDH-beta-7) PCDHB7 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5E4 reviewed PCDB5_HUMAN Protocadherin beta-5 (PCDH-beta-5) PCDHB5 calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell adhesion [GO:0007155]; chemical synaptic transmission [GO:0007268]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synapse assembly [GO:0007416] -Q9Y5E5 reviewed PCDB4_HUMAN Protocadherin beta-4 (PCDH-beta-4) PCDHB4 calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell adhesion [GO:0007155]; chemical synaptic transmission [GO:0007268]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399]; synapse assembly [GO:0007416] -Q9Y5E6 reviewed PCDB3_HUMAN Protocadherin beta-3 (PCDH-beta-3) PCDHB3 calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell adhesion [GO:0007155]; chemical synaptic transmission [GO:0007268]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399]; synapse assembly [GO:0007416] -Q9Y5E7 reviewed PCDB2_HUMAN Protocadherin beta-2 (PCDH-beta-2) PCDHB2 calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell adhesion [GO:0007155]; chemical synaptic transmission [GO:0007268]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399]; synapse assembly [GO:0007416] -Q9Y5E8 reviewed PCDBF_HUMAN Protocadherin beta-15 (PCDH-beta-15) PCDHB15 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5F0 reviewed PCDBD_HUMAN Protocadherin beta-13 (PCDH-beta-13) PCDHB13 UNQ332/PRO531 calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell adhesion [GO:0007155]; chemical synaptic transmission [GO:0007268]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synapse assembly [GO:0007416] -Q9Y5F2 reviewed PCDBB_HUMAN Protocadherin beta-11 (PCDH-beta-11) PCDHB11 calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell adhesion [GO:0007155]; chemical synaptic transmission [GO:0007268]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399]; synapse assembly [GO:0007416] -Q9Y5F3 reviewed PCDB1_HUMAN Protocadherin beta-1 (PCDH-beta-1) PCDHB1 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5F6 reviewed PCDGM_HUMAN Protocadherin gamma-C5 (PCDH-gamma-C5) PCDHGC5 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; negative regulation of neuron apoptotic process [GO:0043524]; nervous system development [GO:0007399]; synapse organization [GO:0050808] -Q9Y5F8 reviewed PCDGJ_HUMAN Protocadherin gamma-B7 (PCDH-gamma-B7) PCDHGB7 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5F9 reviewed PCDGI_HUMAN Protocadherin gamma-B6 (PCDH-gamma-B6) PCDHGB6 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5G0 reviewed PCDGH_HUMAN Protocadherin gamma-B5 (PCDH-gamma-B5) PCDHGB5 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5G1 reviewed PCDGF_HUMAN Protocadherin gamma-B3 (PCDH-gamma-B3) PCDHGB3 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5G2 reviewed PCDGE_HUMAN Protocadherin gamma-B2 (PCDH-gamma-B2) PCDHGB2 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5G3 reviewed PCDGD_HUMAN Protocadherin gamma-B1 (PCDH-gamma-B1) PCDHGB1 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5G4 reviewed PCDG9_HUMAN Protocadherin gamma-A9 (PCDH-gamma-A9) PCDHGA9 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5G5 reviewed PCDG8_HUMAN Protocadherin gamma-A8 (PCDH-gamma-A8) PCDHGA8 KIAA0327 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5G6 reviewed PCDG7_HUMAN Protocadherin gamma-A7 (PCDH-gamma-A7) PCDHGA7 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5G7 reviewed PCDG6_HUMAN Protocadherin gamma-A6 (PCDH-gamma-A6) PCDHGA6 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5G8 reviewed PCDG5_HUMAN Protocadherin gamma-A5 (PCDH-gamma-A5) PCDHGA5 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5G9 reviewed PCDG4_HUMAN Protocadherin gamma-A4 (PCDH-gamma-A4) PCDHGA4 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5H0 reviewed PCDG3_HUMAN Protocadherin gamma-A3 (PCDH-gamma-A3) PCDHGA3 cell adhesion [GO:0007155]; endosome to lysosome transport [GO:0008333]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; lipid tube assembly involved in organelle fusion [GO:0060989]; nervous system development [GO:0007399] -Q9Y5H1 reviewed PCDG2_HUMAN Protocadherin gamma-A2 (PCDH-gamma-A2) PCDHGA2 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5H2 reviewed PCDGB_HUMAN Protocadherin gamma-A11 (PCDH-gamma-A11) PCDHGA11 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5H3 reviewed PCDGA_HUMAN Protocadherin gamma-A10 (PCDH-gamma-A10) PCDHGA10 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5H4 reviewed PCDG1_HUMAN Protocadherin gamma-A1 (PCDH-gamma-A1) PCDHGA1 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5H6 reviewed PCDA8_HUMAN Protocadherin alpha-8 (PCDH-alpha-8) PCDHA8 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5H7 reviewed PCDA5_HUMAN Protocadherin alpha-5 (PCDH-alpha-5) PCDHA5 CNRS6 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5H8 reviewed PCDA3_HUMAN Protocadherin alpha-3 (PCDH-alpha-3) PCDHA3 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5I0 reviewed PCDAD_HUMAN Protocadherin alpha-13 (PCDH-alpha-13) PCDHA13 CNRS5 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5I1 reviewed PCDAB_HUMAN Protocadherin alpha-11 (PCDH-alpha-11) PCDHA11 CNRS7 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9Y5I4 reviewed PCDC2_HUMAN Protocadherin alpha-C2 (PCDH-alpha-C2) PCDHAC2 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399]; serotonergic neuron axon guidance [GO:0036515] -V9HVY3 unreviewed V9HVY3_HUMAN Protein disulfide-isomerase (EC 5.3.4.1) HEL-S-269 HEL-S-93n PDIA3 hCG_38001 cellular response to interleukin-7 [GO:0098761]; extrinsic apoptotic signaling pathway [GO:0097191]; platelet aggregation [GO:0070527]; positive regulation of extrinsic apoptotic signaling pathway [GO:2001238]; protein folding [GO:0006457]; response to endoplasmic reticulum stress [GO:0034976] -A0A0E3XJU3 unreviewed A0A0E3XJU3_HUMAN Cadherin-1 (Epithelial cadherin) CDH1 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synapse assembly [GO:0007416] -A0A0H5AY34 unreviewed A0A0H5AY34_HUMAN L-selectin SELL calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; leukocyte migration [GO:0050900] -A0A0S2Z3E8 unreviewed A0A0S2Z3E8_HUMAN Fibrinogen alpha chain isoform 2 FGA blood coagulation, common pathway [GO:0072377]; fibrinolysis [GO:0042730]; negative regulation of endothelial cell apoptotic process [GO:2000352]; negative regulation of extrinsic apoptotic signaling pathway via death domain receptors [GO:1902042]; platelet aggregation [GO:0070527]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of heterotypic cell-cell adhesion [GO:0034116]; positive regulation of peptide hormone secretion [GO:0090277]; protein polymerization [GO:0051258] -A0A0S2Z3E9 unreviewed A0A0S2Z3E9_HUMAN Fibrinogen alpha chain isoform 8 FGA blood coagulation, common pathway [GO:0072377]; fibrinolysis [GO:0042730]; negative regulation of endothelial cell apoptotic process [GO:2000352]; negative regulation of extrinsic apoptotic signaling pathway via death domain receptors [GO:1902042]; platelet aggregation [GO:0070527]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of heterotypic cell-cell adhesion [GO:0034116]; positive regulation of peptide hormone secretion [GO:0090277]; protein polymerization [GO:0051258] -A0A0S2Z487 unreviewed A0A0S2Z487_HUMAN Junction plakoglobin JUP canonical Wnt signaling pathway [GO:0060070]; cell-cell adhesion [GO:0098609]; desmosome assembly [GO:0002159]; positive regulation of transcription by RNA polymerase II [GO:0045944]; skin development [GO:0043588] -A0A0S2Z495 unreviewed A0A0S2Z495_HUMAN Junction plakoglobin JUP canonical Wnt signaling pathway [GO:0060070]; cell-cell adhesion [GO:0098609]; positive regulation of transcription by RNA polymerase II [GO:0045944] -A0A2R8Y6C0 unreviewed A0A2R8Y6C0_HUMAN Protocadherin related 15 PCDH15 actin filament organization [GO:0007015]; adult walking behavior [GO:0007628]; auditory receptor cell stereocilium organization [GO:0060088]; detection of mechanical stimulus involved in equilibrioception [GO:0050973]; detection of mechanical stimulus involved in sensory perception of sound [GO:0050910]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; morphogenesis of an epithelium [GO:0002009]; multicellular organism growth [GO:0035264]; non-motile cilium assembly [GO:1905515]; righting reflex [GO:0060013]; startle response [GO:0001964]; visual perception [GO:0007601] -A0A384MEK5 unreviewed A0A384MEK5_HUMAN Intercellular adhesion molecule 1 cell adhesion mediated by integrin [GO:0033627]; cellular response to glucose stimulus [GO:0071333]; cellular response to leukemia inhibitory factor [GO:1990830]; leukocyte cell-cell adhesion [GO:0007159]; regulation of ruffle assembly [GO:1900027]; T cell antigen processing and presentation [GO:0002457]; T cell extravasation [GO:0072683] -A0A494C0X7 unreviewed A0A494C0X7_HUMAN Integrin beta ITGB2 cellular extravasation [GO:0045123]; endothelial cell migration [GO:0043542]; integrin-mediated signaling pathway [GO:0007229]; leukocyte cell-cell adhesion [GO:0007159]; leukocyte migration involved in inflammatory response [GO:0002523]; phagocytosis [GO:0006909]; positive regulation of angiogenesis [GO:0045766]; positive regulation of nitric oxide biosynthetic process [GO:0045429] -A0A6Q8JR05 unreviewed A0A6Q8JR05_HUMAN FAT atypical cadherin 4 FAT4 branching involved in ureteric bud morphogenesis [GO:0001658]; cerebral cortex development [GO:0021987]; condensed mesenchymal cell proliferation [GO:0072137]; digestive tract development [GO:0048565]; fibroblast growth factor receptor signaling pathway [GO:0008543]; heart morphogenesis [GO:0003007]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; hippo signaling [GO:0035329]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; inner ear receptor cell stereocilium organization [GO:0060122]; Notch signaling pathway [GO:0007219]; ossification involved in bone maturation [GO:0043931]; plasma membrane organization [GO:0007009]; regulation of metanephric nephron tubule epithelial cell differentiation [GO:0072307] -A0A804HL87 unreviewed A0A804HL87_HUMAN Rap guanine nucleotide exchange factor 1 RAPGEF1 blood vessel development [GO:0001568]; canonical Wnt signaling pathway [GO:0060070]; cell-cell adhesion [GO:0098609]; ERK1 and ERK2 cascade [GO:0070371]; negative regulation of canonical Wnt signaling pathway [GO:0090090]; negative regulation of ERK1 and ERK2 cascade [GO:0070373]; negative regulation of neural precursor cell proliferation [GO:2000178]; negative regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0051898]; negative regulation of Ras protein signal transduction [GO:0046580]; neural precursor cell proliferation [GO:0061351]; phosphatidylinositol 3-kinase/protein kinase B signal transduction [GO:0043491]; platelet-derived growth factor receptor signaling pathway [GO:0048008]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of Fc-gamma receptor signaling pathway involved in phagocytosis [GO:1905451]; positive regulation of neuron projection development [GO:0010976]; Ras protein signal transduction [GO:0007265]; regulation of JNK cascade [GO:0046328] -A1L1C6 unreviewed A1L1C6_HUMAN LRRC7 protein LRRC7 cell-cell adhesion [GO:0098609]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; neurotransmitter receptor transport postsynaptic membrane to endosome [GO:0098968]; neurotransmitter receptor transport, endosome to postsynaptic membrane [GO:0098887]; positive regulation of neuron projection development [GO:0010976]; receptor clustering [GO:0043113] -A5D8W4 unreviewed A5D8W4_HUMAN CDH1 protein CDH1 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synapse assembly [GO:0007416] -A6H8M9 reviewed CDHR4_HUMAN Cadherin-related family member 4 (Cadherin-like protein 29) CDHR4 CDH29 UNQ9392/PRO34300 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A8K4I1 unreviewed A8K4I1_HUMAN cDNA FLJ75404 acrosome assembly [GO:0001675]; coreceptor-mediated virion attachment to host cell [GO:0046814]; cytoskeleton organization [GO:0007010]; establishment of mitochondrion localization [GO:0051654]; fusion of virus membrane with host plasma membrane [GO:0019064]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; positive regulation of immunoglobulin mediated immune response [GO:0002891]; positive regulation of mast cell activation [GO:0033005]; positive regulation of natural killer cell mediated cytotoxicity directed against tumor cell target [GO:0002860]; positive regulation of T cell receptor signaling pathway [GO:0050862]; regulation of viral entry into host cell [GO:0046596]; susceptibility to natural killer cell mediated cytotoxicity [GO:0042271]; susceptibility to T cell mediated cytotoxicity [GO:0060370] -B0YJA4 unreviewed B0YJA4_HUMAN Thy-1 membrane glycoprotein (Thy-1 antigen) THY1 hCG_14965 angiogenesis [GO:0001525]; cell-cell adhesion [GO:0098609]; cell-cell signaling [GO:0007267]; integrin-mediated signaling pathway [GO:0007229]; negative regulation of neuron projection regeneration [GO:0070571]; negative regulation of T cell receptor signaling pathway [GO:0050860]; positive regulation of focal adhesion assembly [GO:0051894]; regulation of cell migration [GO:0030334]; retinal cone cell development [GO:0046549]; T cell receptor signaling pathway [GO:0050852] -B2R4M6 unreviewed B2R4M6_HUMAN Protein S100 (S100 calcium-binding protein) antimicrobial humoral immune response mediated by antimicrobial peptide [GO:0061844]; astrocyte development [GO:0014002]; autocrine signaling [GO:0035425]; chronic inflammatory response [GO:0002544]; leukocyte migration involved in inflammatory response [GO:0002523]; neutrophil aggregation [GO:0070488]; neutrophil chemotaxis [GO:0030593]; regulation of integrin biosynthetic process [GO:0045113]; response to lipopolysaccharide [GO:0032496] -B2RCN5 unreviewed B2RCN5_HUMAN Cadherin-4 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B3KRQ1 unreviewed B3KRQ1_HUMAN Annexin -B3KSS4 unreviewed B3KSS4_HUMAN cDNA FLJ36858 fis, clone ASTRO2015185, highly similar to POLIOVIRUS RECEPTOR acrosome assembly [GO:0001675]; coreceptor-mediated virion attachment to host cell [GO:0046814]; cytoskeleton organization [GO:0007010]; establishment of mitochondrion localization [GO:0051654]; fusion of virus membrane with host plasma membrane [GO:0019064]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; positive regulation of immunoglobulin mediated immune response [GO:0002891]; positive regulation of mast cell activation [GO:0033005]; positive regulation of natural killer cell mediated cytotoxicity directed against tumor cell target [GO:0002860]; positive regulation of T cell receptor signaling pathway [GO:0050862]; regulation of viral entry into host cell [GO:0046596]; susceptibility to natural killer cell mediated cytotoxicity [GO:0042271]; susceptibility to T cell mediated cytotoxicity [GO:0060370] -B4DE59 unreviewed B4DE59_HUMAN Junction plakoglobin canonical Wnt signaling pathway [GO:0060070]; cell-cell adhesion [GO:0098609]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DKT9 unreviewed B4DKT9_HUMAN Catenin alpha-1 cell migration [GO:0016477]; cell-cell adhesion [GO:0098609] -B4DL06 unreviewed B4DL06_HUMAN Catenin beta-1 (Beta-catenin) canonical Wnt signaling pathway [GO:0060070]; cell-cell adhesion [GO:0098609]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DNH8 unreviewed B4DNH8_HUMAN Annexin -B4DQA0 unreviewed B4DQA0_HUMAN L-selectin calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; leukocyte migration [GO:0050900] -B4DRB1 unreviewed B4DRB1_HUMAN Calsyntenin-3 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; positive regulation of synapse assembly [GO:0051965]; positive regulation of synaptic transmission [GO:0050806] -B4DSW9 unreviewed B4DSW9_HUMAN Catenin beta-1 (Beta-catenin) canonical Wnt signaling pathway [GO:0060070]; cell-cell adhesion [GO:0098609]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B4DSX9 unreviewed B4DSX9_HUMAN Carboxylic ester hydrolase (EC 3.1.1.-) ceramide catabolic process [GO:0046514]; chemical synaptic transmission [GO:0007268]; modulation of chemical synaptic transmission [GO:0050804]; neuron cell-cell adhesion [GO:0007158]; pancreatic juice secretion [GO:0030157]; postsynaptic membrane assembly [GO:0097104]; presynaptic membrane assembly [GO:0097105]; synaptic vesicle endocytosis [GO:0048488] -B4DTP0 unreviewed B4DTP0_HUMAN Cadherin-5 (Vascular endothelial cadherin) adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; regulation of establishment of cell polarity [GO:2000114]; vasculature development [GO:0001944] -B4DU18 unreviewed B4DU18_HUMAN Cadherin-5 (Vascular endothelial cadherin) adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; regulation of establishment of cell polarity [GO:2000114]; vasculature development [GO:0001944] -B5BU28 unreviewed B5BU28_HUMAN Catenin beta-1 (Beta-catenin) CTNNB1 canonical Wnt signaling pathway [GO:0060070]; cell-cell adhesion [GO:0098609]; positive regulation of transcription by RNA polymerase II [GO:0045944] -B7Z259 unreviewed B7Z259_HUMAN Catenin alpha-2 (Alpha N-catenin) cell differentiation [GO:0030154]; cell migration [GO:0016477]; cell-cell adhesion [GO:0098609] -B7Z9U4 unreviewed B7Z9U4_HUMAN Calsyntenin-3 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; positive regulation of synapse assembly [GO:0051965]; positive regulation of synaptic transmission [GO:0050806] -B8QGS9 unreviewed B8QGS9_HUMAN Truncated plakophilin-2 PKP2 cell-cell adhesion [GO:0098609]; cell-cell junction assembly [GO:0007043]; cell-cell signaling involved in cardiac conduction [GO:0086019]; desmosome organization [GO:0002934]; heart development [GO:0007507]; intermediate filament bundle assembly [GO:0045110]; protein localization to plasma membrane [GO:0072659] -D3XNU5 unreviewed D3XNU5_HUMAN Cadherin-1 (Epithelial cadherin) CDH1 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synapse assembly [GO:0007416] -F1T0L2 unreviewed F1T0L2_HUMAN Cadherin-related family member 1 (Photoreceptor cadherin) (Protocadherin-21) CDHR1 PCDH21 hCG_1811065 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; photoreceptor cell maintenance [GO:0045494] -F6KRI5 unreviewed F6KRI5_HUMAN Catenin alpha-2 (Alpha N-catenin) CTNNA2 cell differentiation [GO:0030154]; cell migration [GO:0016477]; cell-cell adhesion [GO:0098609] -F8TLS5 unreviewed F8TLS5_HUMAN Proto-oncogene tyrosine-protein kinase receptor Ret (EC 2.7.10.1) RET cell surface receptor protein tyrosine kinase signaling pathway [GO:0007169]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -F8TLW0 unreviewed F8TLW0_HUMAN Proto-oncogene tyrosine-protein kinase receptor Ret (EC 2.7.10.1) RET cell surface receptor protein tyrosine kinase signaling pathway [GO:0007169]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -F8W8C2 unreviewed F8W8C2_HUMAN Vezatin VEZT cell-cell adhesion [GO:0098609] -M9VUD0 unreviewed M9VUD0_HUMAN Bone morphogenenic protein-5 (Bone morphogenetic protein 5) BMP5 hCG_21659 allantois development [GO:1905069]; anterior head development [GO:0097065]; cardiac muscle tissue development [GO:0048738]; cardiac septum morphogenesis [GO:0060411]; chorio-allantoic fusion [GO:0060710]; ear development [GO:0043583]; endocardial cushion formation [GO:0003272]; heart trabecula morphogenesis [GO:0061384]; hindbrain development [GO:0030902]; male genitalia development [GO:0030539]; neural fold elevation formation [GO:0021502]; pattern specification process [GO:0007389]; pericardium morphogenesis [GO:0003344]; pharyngeal system development [GO:0060037]; skeletal system development [GO:0001501] -P0DP72 reviewed VSXL2_HUMAN V-set and immunoglobulin domain-containing protein 10-like 2 VSIG10L2 cell-cell adhesion [GO:0098609] -P11465 reviewed PSG2_HUMAN Pregnancy-specific beta-1-glycoprotein 2 (PS-beta-G-2) (PSBG-2) (Pregnancy-specific glycoprotein 2) (Pregnancy-specific beta-1 glycoprotein E) (PS-beta-E) PSG2 PSBG2 cell migration [GO:0016477]; female pregnancy [GO:0007565]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157] -P56749 reviewed CLD12_HUMAN Claudin-12 CLDN12 calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules [GO:0016338]; maintenance of blood-brain barrier [GO:0035633] -Q3KRA7 unreviewed Q3KRA7_HUMAN FGA protein FGA blood coagulation, common pathway [GO:0072377]; fibrinolysis [GO:0042730]; negative regulation of endothelial cell apoptotic process [GO:2000352]; negative regulation of extrinsic apoptotic signaling pathway via death domain receptors [GO:1902042]; platelet aggregation [GO:0070527]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of heterotypic cell-cell adhesion [GO:0034116]; positive regulation of peptide hormone secretion [GO:0090277]; protein polymerization [GO:0051258] -Q49AD3 unreviewed Q49AD3_HUMAN Catenin alpha-2 (Alpha N-catenin) CTNNA2 cell differentiation [GO:0030154]; cell migration [GO:0016477]; cell-cell adhesion [GO:0098609] -Q4VAI4 unreviewed Q4VAI4_HUMAN Cadherin-5 (Vascular endothelial cadherin) CDH5 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; regulation of establishment of cell polarity [GO:2000114]; vasculature development [GO:0001944] -Q4W5J1 unreviewed Q4W5J1_HUMAN Endomucin, isoform CRA_a (cDNA, FLJ94060, Homo sapiens endomucin (EMCN), mRNA) EMCN hCG_39439 angiogenesis [GO:0001525]; cell-cell adhesion [GO:0098609]; hematopoietic stem cell homeostasis [GO:0061484]; regulation of cell adhesion [GO:0030155] -Q53F96 unreviewed Q53F96_HUMAN T-cell surface antigen CD2 CD2 hCG_39065 cell-cell adhesion [GO:0098609]; positive regulation of type II interferon production [GO:0032729] -Q54A51 unreviewed Q54A51_HUMAN Basigin hEMMPRIN BSG hCG_20562 axon guidance [GO:0007411]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q59EA3 unreviewed Q59EA3_HUMAN Cadherin-5 (Vascular endothelial cadherin) adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; regulation of establishment of cell polarity [GO:2000114]; vasculature development [GO:0001944] -Q59FM9 unreviewed Q59FM9_HUMAN Tyrosine-protein kinase receptor TYRO3 (EC 2.7.10.1) cell migration [GO:0016477]; cell surface receptor protein tyrosine kinase signaling pathway [GO:0007169]; nervous system development [GO:0007399]; platelet aggregation [GO:0070527] -Q5Y190 unreviewed Q5Y190_HUMAN Anchor protein RESDA1 cell surface receptor signaling pathway [GO:0007166]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q75L79 unreviewed Q75L79_HUMAN Claudin CLDN3 hCG_1737329 bicellular tight junction assembly [GO:0070830]; calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules [GO:0016338]; cell junction maintenance [GO:0034331]; epithelial cell morphogenesis [GO:0003382]; establishment of endothelial blood-brain barrier [GO:0014045]; response to ethanol [GO:0045471]; response to Gram-positive bacterium [GO:0140459] -Q7KZ86 unreviewed Q7KZ86_HUMAN Junction plakoglobin canonical Wnt signaling pathway [GO:0060070]; cell-cell adhesion [GO:0098609]; positive regulation of transcription by RNA polymerase II [GO:0045944] -Q7Z456 unreviewed Q7Z456_HUMAN Poliovirus receptor related 2 PVRL2 acrosome assembly [GO:0001675]; coreceptor-mediated virion attachment to host cell [GO:0046814]; cytoskeleton organization [GO:0007010]; establishment of mitochondrion localization [GO:0051654]; fusion of virus membrane with host plasma membrane [GO:0019064]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; positive regulation of immunoglobulin mediated immune response [GO:0002891]; positive regulation of mast cell activation [GO:0033005]; positive regulation of natural killer cell mediated cytotoxicity directed against tumor cell target [GO:0002860]; positive regulation of T cell receptor signaling pathway [GO:0050862]; regulation of viral entry into host cell [GO:0046596]; susceptibility to natural killer cell mediated cytotoxicity [GO:0042271]; susceptibility to T cell mediated cytotoxicity [GO:0060370] -Q7Z458 unreviewed Q7Z458_HUMAN Poliovirus receptor related 2 PVRL2 acrosome assembly [GO:0001675]; coreceptor-mediated virion attachment to host cell [GO:0046814]; cytoskeleton organization [GO:0007010]; establishment of mitochondrion localization [GO:0051654]; fusion of virus membrane with host plasma membrane [GO:0019064]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; positive regulation of immunoglobulin mediated immune response [GO:0002891]; positive regulation of mast cell activation [GO:0033005]; positive regulation of natural killer cell mediated cytotoxicity directed against tumor cell target [GO:0002860]; positive regulation of T cell receptor signaling pathway [GO:0050862]; regulation of viral entry into host cell [GO:0046596]; susceptibility to natural killer cell mediated cytotoxicity [GO:0042271]; susceptibility to T cell mediated cytotoxicity [GO:0060370] -Q86SR3 unreviewed Q86SR3_HUMAN CEL protein ceramide catabolic process [GO:0046514]; chemical synaptic transmission [GO:0007268]; modulation of chemical synaptic transmission [GO:0050804]; neuron cell-cell adhesion [GO:0007158]; pancreatic juice secretion [GO:0030157]; postsynaptic membrane assembly [GO:0097104]; presynaptic membrane assembly [GO:0097105]; synaptic vesicle endocytosis [GO:0048488] -Q8IVU1 reviewed IGDC3_HUMAN Immunoglobulin superfamily DCC subclass member 3 (Putative neuronal cell adhesion molecule) IGDCC3 PUNC cell-cell adhesion [GO:0098609]; neuromuscular process controlling balance [GO:0050885] -Q8N0Z9 reviewed VSI10_HUMAN V-set and immunoglobulin domain-containing protein 10 VSIG10 cell-cell adhesion [GO:0098609] -Q8WW79 unreviewed Q8WW79_HUMAN L-selectin SELL hCG_37088 calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; leukocyte migration [GO:0050900] -Q96B33 reviewed CLD23_HUMAN Claudin-23 CLDN23 bicellular tight junction assembly [GO:0070830]; calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules [GO:0016338]; cell adhesion [GO:0007155] -Q96ID5 reviewed IGS21_HUMAN Immunoglobulin superfamily member 21 (IgSF21) IGSF21 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synapse maturation [GO:0060074] -Q96TA0 reviewed PCDBI_HUMAN Putative protocadherin beta-18 (PCDH-beta-18) (PCDH-psi2) PCDHB18P PCDHB18 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q9UEI6 unreviewed Q9UEI6_HUMAN Polio virus related protein 2, alpha isoform acrosome assembly [GO:0001675]; coreceptor-mediated virion attachment to host cell [GO:0046814]; cytoskeleton organization [GO:0007010]; establishment of mitochondrion localization [GO:0051654]; fusion of virus membrane with host plasma membrane [GO:0019064]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; positive regulation of immunoglobulin mediated immune response [GO:0002891]; positive regulation of mast cell activation [GO:0033005]; positive regulation of natural killer cell mediated cytotoxicity directed against tumor cell target [GO:0002860]; positive regulation of T cell receptor signaling pathway [GO:0050862]; regulation of viral entry into host cell [GO:0046596]; susceptibility to natural killer cell mediated cytotoxicity [GO:0042271]; susceptibility to T cell mediated cytotoxicity [GO:0060370] -Q9UII7 unreviewed Q9UII7_HUMAN Cadherin-1 (Epithelial cadherin) adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synapse assembly [GO:0007416] -V9HW65 unreviewed V9HW65_HUMAN Annexin HEL-S-270 -V9HWF5 unreviewed V9HWF5_HUMAN Peptidyl-prolyl cis-trans isomerase (PPIase) (EC 5.2.1.8) HEL-S-69p apoptotic process [GO:0006915]; neuron differentiation [GO:0030182]; platelet aggregation [GO:0070527]; protein folding [GO:0006457]; response to hypoxia [GO:0001666] -X5D2P6 unreviewed X5D2P6_HUMAN Neuroligin 3 isoform 1 (Neuroligin 3 isoform B) NLGN3 chemical synaptic transmission [GO:0007268]; modulation of chemical synaptic transmission [GO:0050804]; neuron cell-cell adhesion [GO:0007158]; postsynaptic membrane assembly [GO:0097104]; presynaptic membrane assembly [GO:0097105]; synaptic vesicle endocytosis [GO:0048488] -X5D7L6 unreviewed X5D7L6_HUMAN Neuroligin 3 isoform C NLGN3 chemical synaptic transmission [GO:0007268]; modulation of chemical synaptic transmission [GO:0050804]; neuron cell-cell adhesion [GO:0007158]; postsynaptic membrane assembly [GO:0097104]; presynaptic membrane assembly [GO:0097105]; synaptic vesicle endocytosis [GO:0048488] -X5D8X5 unreviewed X5D8X5_HUMAN Cadherin 10 type 2 isoform A (Cadherin 10, type 2 (T2-cadherin)) CDH10 hCG_36812 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synaptic membrane adhesion [GO:0099560] -X5DNV3 unreviewed X5DNV3_HUMAN Neuroligin 3 isoform A NLGN3 chemical synaptic transmission [GO:0007268]; modulation of chemical synaptic transmission [GO:0050804]; neuron cell-cell adhesion [GO:0007158]; postsynaptic membrane assembly [GO:0097104]; presynaptic membrane assembly [GO:0097105]; synaptic vesicle endocytosis [GO:0048488] -X5DRC3 unreviewed X5DRC3_HUMAN Neuroligin 3 isoform C NLGN3 chemical synaptic transmission [GO:0007268]; modulation of chemical synaptic transmission [GO:0050804]; neuron cell-cell adhesion [GO:0007158]; postsynaptic membrane assembly [GO:0097104]; presynaptic membrane assembly [GO:0097105]; synaptic vesicle endocytosis [GO:0048488] -A0A024RC16 unreviewed A0A024RC16_HUMAN CD99 antigen-like protein 2 CD99L2 diapedesis [GO:0050904]; homotypic cell-cell adhesion [GO:0034109]; positive regulation of neutrophil extravasation [GO:2000391]; positive regulation of T cell extravasation [GO:2000409]; T cell extravasation [GO:0072683] -A0A087WTR6 unreviewed A0A087WTR6_HUMAN Protocadherin related 15 PCDH15 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; inner ear development [GO:0048839]; sensory perception of sound [GO:0007605] -A0A087WWB1 unreviewed A0A087WWB1_HUMAN Ret proto-oncogene RET homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A087WX99 unreviewed A0A087WX99_HUMAN Cadherin-4 CDH4 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A087WZN9 unreviewed A0A087WZN9_HUMAN Protocadherin related 15 PCDH15 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; inner ear development [GO:0048839]; sensory perception of sound [GO:0007605] -A0A087X1T6 unreviewed A0A087X1T6_HUMAN Protocadherin related 15 PCDH15 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; inner ear development [GO:0048839]; sensory perception of sound [GO:0007605] -A0A087X2C4 unreviewed A0A087X2C4_HUMAN Protocadherin 7 PCDH7 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A096LNP9 unreviewed A0A096LNP9_HUMAN Cadherin-related family member 1 (Photoreceptor cadherin) (Protocadherin-21) CDHR1 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A0A6YYA3 unreviewed A0A0A6YYA3_HUMAN Cadherin-related family member 1 (Photoreceptor cadherin) (Protocadherin-21) CDHR1 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A0G2JMW3 unreviewed A0A0G2JMW3_HUMAN Cadherin related family member 5 CDHR5 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A0G2JP44 unreviewed A0A0G2JP44_HUMAN Cadherin related family member 5 (Mucin and cadherin-like, isoform CRA_c) CDHR5 MUCDHL hCG_1778294 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A0G2JRA4 unreviewed A0A0G2JRA4_HUMAN Cadherin-4 CDH4 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A0S2PZP6 unreviewed A0A0S2PZP6_HUMAN Teneurin transmembrane protein 4 TENM4 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; neuron development [GO:0048666]; signal transduction [GO:0007165] -A0A0S2Z3M3 unreviewed A0A0S2Z3M3_HUMAN Fibrinogen alpha chain isoform 1 FGA blood coagulation, common pathway [GO:0072377]; fibrinolysis [GO:0042730]; negative regulation of endothelial cell apoptotic process [GO:2000352]; negative regulation of extrinsic apoptotic signaling pathway via death domain receptors [GO:1902042]; platelet aggregation [GO:0070527]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of heterotypic cell-cell adhesion [GO:0034116]; positive regulation of peptide hormone secretion [GO:0090277]; protein polymerization [GO:0051258] -A0A0S2Z3P3 unreviewed A0A0S2Z3P3_HUMAN Fibrinogen alpha chain isoform 5 FGA blood coagulation, common pathway [GO:0072377]; fibrinolysis [GO:0042730]; negative regulation of endothelial cell apoptotic process [GO:2000352]; negative regulation of extrinsic apoptotic signaling pathway via death domain receptors [GO:1902042]; platelet aggregation [GO:0070527]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of heterotypic cell-cell adhesion [GO:0034116]; positive regulation of peptide hormone secretion [GO:0090277]; protein polymerization [GO:0051258] -A0A0S2Z522 unreviewed A0A0S2Z522_HUMAN Myotilin isoform 1 MYOT axon guidance [GO:0007411]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A0S2Z5R8 unreviewed A0A0S2Z5R8_HUMAN CD99 antigen-like protein 2 CD99L2 homotypic cell-cell adhesion [GO:0034109]; positive regulation of neutrophil extravasation [GO:2000391]; T cell extravasation [GO:0072683] -A0A126LB32 unreviewed A0A126LB32_HUMAN U85 U85 heterotypic cell-cell adhesion [GO:0034113]; negative regulation of neuroinflammatory response [GO:0150079] -A0A140VJW8 unreviewed A0A140VJW8_HUMAN Testicular tissue protein Li 195 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; neuron development [GO:0048666]; signal transduction [GO:0007165] -A0A1S5UZH4 unreviewed A0A1S5UZH4_HUMAN Neuronal cell adhesion molecule NRCAM axon guidance [GO:0007411]; brain development [GO:0007420] -A0A1U9X8X5 unreviewed A0A1U9X8X5_HUMAN Corneodesmosin cell-cell adhesion [GO:0098609]; skin morphogenesis [GO:0043589] -A0A1U9X8X6 unreviewed A0A1U9X8X6_HUMAN Corneodesmosin cell-cell adhesion [GO:0098609]; skin morphogenesis [GO:0043589] -A0A1U9X8Y9 unreviewed A0A1U9X8Y9_HUMAN Corneodesmosin cell-cell adhesion [GO:0098609]; skin morphogenesis [GO:0043589] -A0A1U9X8Z0 unreviewed A0A1U9X8Z0_HUMAN Corneodesmosin cell-cell adhesion [GO:0098609]; skin morphogenesis [GO:0043589] -A0A1U9X901 unreviewed A0A1U9X901_HUMAN Corneodesmosin cell-cell adhesion [GO:0098609]; skin morphogenesis [GO:0043589] -A0A346RDT0 unreviewed A0A346RDT0_HUMAN Basigin SLC7A11 axon guidance [GO:0007411]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A346RDU2 unreviewed A0A346RDU2_HUMAN Basigin SLC7A11 axon guidance [GO:0007411]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A346RDX7 unreviewed A0A346RDX7_HUMAN Basigin SLC7A11 axon guidance [GO:0007411]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A346RDX8 unreviewed A0A346RDX8_HUMAN Basigin SLC7A11 axon guidance [GO:0007411]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A346RDX9 unreviewed A0A346RDX9_HUMAN Basigin SLC7A11 axon guidance [GO:0007411]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A346RDY0 unreviewed A0A346RDY0_HUMAN Basigin SLC7A11 axon guidance [GO:0007411]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A384NY64 unreviewed A0A384NY64_HUMAN Myosin regulatory light polypeptide 9 (Myosin regulatory light chain 2, smooth muscle isoform) (Myosin regulatory light chain 9) myofibril assembly [GO:0030239]; platelet aggregation [GO:0070527] -A0A386QWI1 unreviewed A0A386QWI1_HUMAN Neurofascin isoform 140 Nfasc axon guidance [GO:0007411]; brain development [GO:0007420] -A0A3B3ISU0 unreviewed A0A3B3ISU0_HUMAN Desmocollin 2 DSC2 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A5F9ZHG1 unreviewed A0A5F9ZHG1_HUMAN Protocadherin alpha 12 PCDHA12 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -A0A5F9ZHY0 unreviewed A0A5F9ZHY0_HUMAN Protocadherin alpha 4 PCDHA4 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A669KB05 unreviewed A0A669KB05_HUMAN Catenin delta 1 CTNND1 cell-cell adhesion [GO:0098609] -A0A669KB62 unreviewed A0A669KB62_HUMAN Catenin delta 1 CTNND1 cell-cell adhesion [GO:0098609] -A0A6Q8PF58 unreviewed A0A6Q8PF58_HUMAN Cadherin-2 (Neural cadherin) CDH2 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A6Q8PHJ8 unreviewed A0A6Q8PHJ8_HUMAN Cadherin-2 (Neural cadherin) CDH2 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A7P0T1I0 unreviewed A0A7P0T1I0_HUMAN FAT atypical cadherin 4 FAT4 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A8Q3SI47 unreviewed A0A8Q3SI47_HUMAN Protocadherin 7 PCDH7 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A8Q3SI70 unreviewed A0A8Q3SI70_HUMAN Protocadherin 7 PCDH7 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A8Q3SI92 unreviewed A0A8Q3SI92_HUMAN Protocadherin 7 PCDH7 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A8Q3SIA5 unreviewed A0A8Q3SIA5_HUMAN Protocadherin 7 PCDH7 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A8V8TM73 unreviewed A0A8V8TM73_HUMAN Protocadherin 7 PCDH7 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0PJJ4 unreviewed A0PJJ4_HUMAN LRRC4B protein LRRC4B positive regulation of synapse assembly [GO:0051965]; regulation of postsynaptic density assembly [GO:0099151]; regulation of presynapse assembly [GO:1905606]; synaptic membrane adhesion [GO:0099560] -A0PJJ8 unreviewed A0PJJ8_HUMAN LAMA3 protein LAMA3 animal organ morphogenesis [GO:0009887]; cell migration [GO:0016477]; cell-cell adhesion [GO:0098609]; morphogenesis of a polarized epithelium [GO:0001738] -A0PJK8 unreviewed A0PJK8_HUMAN SCRIB protein SCRIB cell-cell adhesion [GO:0098609]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; neurotransmitter receptor transport postsynaptic membrane to endosome [GO:0098968]; neurotransmitter receptor transport, endosome to postsynaptic membrane [GO:0098887]; receptor clustering [GO:0043113] -A1L3A3 unreviewed A1L3A3_HUMAN Contactin 2 (Axonal) CNTN2 axon guidance [GO:0007411]; brain development [GO:0007420] -A2A3D8 unreviewed A2A3D8_HUMAN Protocadherin related 15 PCDH15 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; inner ear development [GO:0048839]; sensory perception of sound [GO:0007605] -A2A3E1 unreviewed A2A3E1_HUMAN Protocadherin related 15 PCDH15 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; inner ear development [GO:0048839]; sensory perception of sound [GO:0007605] -A2A3E4 unreviewed A2A3E4_HUMAN Protocadherin related 15 PCDH15 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; inner ear development [GO:0048839]; sensory perception of sound [GO:0007605] -A2A3E5 unreviewed A2A3E5_HUMAN Protocadherin related 15 PCDH15 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; inner ear development [GO:0048839]; sensory perception of sound [GO:0007605] -A2A3E6 unreviewed A2A3E6_HUMAN Protocadherin related 15 PCDH15 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; inner ear development [GO:0048839]; sensory perception of sound [GO:0007605] -A2A3E7 unreviewed A2A3E7_HUMAN Protocadherin related 15 PCDH15 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; inner ear development [GO:0048839]; sensory perception of sound [GO:0007605] -A2A3E8 unreviewed A2A3E8_HUMAN Protocadherin related 15 PCDH15 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; inner ear development [GO:0048839]; sensory perception of sound [GO:0007605] -A2VDK1 unreviewed A2VDK1_HUMAN LRRC4B protein LRRC4B positive regulation of synapse assembly [GO:0051965]; regulation of postsynaptic density assembly [GO:0099151]; regulation of presynapse assembly [GO:1905606]; synaptic membrane adhesion [GO:0099560] -A5D6V9 unreviewed A5D6V9_HUMAN CDH23 protein CDH23 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A5YM53 unreviewed A5YM53_HUMAN ITGAV protein ITGAV angiogenesis [GO:0001525]; cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -A6H8Y4 unreviewed A6H8Y4_HUMAN Astrotactin 1 (Astrotactin, isoform CRA_b) ASTN1 ASTN hCG_23756 neuron cell-cell adhesion [GO:0007158]; neuron migration [GO:0001764] -A8K0L1 unreviewed A8K0L1_HUMAN cDNA FLJ77485, highly similar to Homo sapiens cadherin-like 24 (CDH24), transcript variant 2, mRNA adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A8K0L9 unreviewed A8K0L9_HUMAN cDNA FLJ76999, highly similar to Homo sapiens cadherin-like 22 (CDH22), mRNA adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A8K139 unreviewed A8K139_HUMAN cDNA FLJ76744, highly similar to Homo sapiens L1 cell adhesion molecule (L1CAM), transcript variant 1, mRNA axon guidance [GO:0007411]; brain development [GO:0007420] -A8K141 unreviewed A8K141_HUMAN Catenin (Cadherin-associated protein), alpha 3, isoform CRA_a (cDNA FLJ78082, highly similar to Homo sapiens alphaT-catenin (CTNNA3) mRNA) (cDNA, FLJ94516, highly similar to Homo sapiens catenin (cadherin-associated protein), alpha 3 (CTNNA3), mRNA) CTNNA3 hCG_1810899 cell migration [GO:0016477]; cell-cell adhesion [GO:0098609] -A8K1S0 unreviewed A8K1S0_HUMAN cDNA FLJ75250, highly similar to Homo sapiens contactin 2 (axonal) (CNTN2), mRNA axon guidance [GO:0007411]; brain development [GO:0007420] -A8K2C5 unreviewed A8K2C5_HUMAN Cadherin-20 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A8K2P8 unreviewed A8K2P8_HUMAN cDNA FLJ76245, highly similar to Homo sapiens desmocollin 2 (DSC2), transcript variant Dsc2a, mRNA homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A8K4S1 unreviewed A8K4S1_HUMAN cDNA FLJ77845, highly similar to Homo sapiens neuroligin 4, X-linked (NLGN4X), transcript variant 2, mRNA chemical synaptic transmission [GO:0007268]; modulation of chemical synaptic transmission [GO:0050804]; neuron cell-cell adhesion [GO:0007158]; postsynaptic membrane assembly [GO:0097104]; presynaptic membrane assembly [GO:0097105]; synaptic vesicle endocytosis [GO:0048488] -A8K6A5 unreviewed A8K6A5_HUMAN cDNA FLJ77742, highly similar to Homo sapiens integrin, alpha 5 (fibronectin receptor, alpha polypeptide), mRNA angiogenesis [GO:0001525]; cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -A8K6T3 unreviewed A8K6T3_HUMAN cDNA FLJ78674, highly similar to Homo sapiens desmocollin type 4 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A8K6Z5 unreviewed A8K6Z5_HUMAN cDNA FLJ78719, highly similar to Homo sapiens scavenger receptor class F, member 1, transcript variant 1, mRNA dendrite development [GO:0016358]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; neuron remodeling [GO:0016322] -A8K883 unreviewed A8K883_HUMAN cDNA FLJ77590, highly similar to Homo sapiens leucine rich repeat containing 1, mRNA cell-cell adhesion [GO:0098609]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; neurotransmitter receptor transport postsynaptic membrane to endosome [GO:0098968]; neurotransmitter receptor transport, endosome to postsynaptic membrane [GO:0098887]; receptor clustering [GO:0043113] -A8K8T0 unreviewed A8K8T0_HUMAN cDNA FLJ78760, highly similar to Homo sapiens integrin, alpha 11 (ITGA11), transcript variant 1, mRNA cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -A8K9C1 unreviewed A8K9C1_HUMAN Corneodesmosin cell-cell adhesion [GO:0098609]; skin morphogenesis [GO:0043589] -A9CQZ8 unreviewed A9CQZ8_HUMAN Tight junction protein ZO-1 TJP1 cell-cell adhesion [GO:0098609]; cell-cell junction organization [GO:0045216]; establishment of endothelial intestinal barrier [GO:0090557]; positive regulation of blood-brain barrier permeability [GO:1905605]; protein localization to cell-cell junction [GO:0150105] -A9X9K9 unreviewed A9X9K9_HUMAN Desmocollin 2 DSC2 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A9X9L0 unreviewed A9X9L0_HUMAN Desmocollin 2 DSC2 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A9Z1W1 unreviewed A9Z1W1_HUMAN Protocadherin related 15 PCDH15 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; inner ear development [GO:0048839]; sensory perception of sound [GO:0007605] -B1P762 unreviewed B1P762_HUMAN T-cell delta-catenin cell-cell adhesion [GO:0098609]; cell-cell junction assembly [GO:0007043]; dendritic spine morphogenesis [GO:0060997] -B2R627 unreviewed B2R627_HUMAN cDNA, FLJ92752, highly similar to Homo sapiens integrin, alpha 5 (fibronectin receptor, alphapolypeptide) (ITGA5), mRNA angiogenesis [GO:0001525]; cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -B2R7S8 unreviewed B2R7S8_HUMAN cDNA, FLJ93586, highly similar to Homo sapiens cadherin 16, KSP-cadherin (CDH16), mRNA adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B2R932 unreviewed B2R932_HUMAN cDNA, FLJ94187, highly similar to Homo sapiens CD99 antigen (CD99), mRNA homotypic cell-cell adhesion [GO:0034109]; positive regulation of neutrophil extravasation [GO:2000391]; T cell extravasation [GO:0072683] -B2R9J8 unreviewed B2R9J8_HUMAN Cadherin-20 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B2RAL6 unreviewed B2RAL6_HUMAN cDNA, FLJ94991, highly similar to Homo sapiens integrin, alpha L (antigen CD11A (p180), lymphocyte function-associated antigen 1; alpha polypeptide) (ITGAL), mRNA cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -B2RE43 unreviewed B2RE43_HUMAN cDNA, FLJ96916, highly similar to Homo sapiens netrin 4 (NTN4), mRNA animal organ morphogenesis [GO:0009887]; cell migration [GO:0016477]; cell-cell adhesion [GO:0098609]; morphogenesis of a polarized epithelium [GO:0001738] -B3GN61 unreviewed B3GN61_HUMAN Truncated E-cadherin CDH1 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synapse assembly [GO:0007416] -B3KMS6 unreviewed B3KMS6_HUMAN cDNA FLJ12486 fis, clone NT2RM2000566, highly similar to Integrin alpha-7 cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229]; leukocyte migration [GO:0050900] -B3KMT6 unreviewed B3KMT6_HUMAN cDNA FLJ12559 fis, clone NT2RM4000795, highly similar to Neuroligin-4, X-linked chemical synaptic transmission [GO:0007268]; modulation of chemical synaptic transmission [GO:0050804]; neuron cell-cell adhesion [GO:0007158]; postsynaptic membrane assembly [GO:0097104]; presynaptic membrane assembly [GO:0097105]; synaptic vesicle endocytosis [GO:0048488] -B3KNZ3 unreviewed B3KNZ3_HUMAN LIM and senescent cell antigen-like-containing domain protein cell-cell adhesion [GO:0098609]; cell-cell junction organization [GO:0045216]; positive regulation of integrin-mediated signaling pathway [GO:2001046]; positive regulation of substrate adhesion-dependent cell spreading [GO:1900026] -B3KP11 unreviewed B3KP11_HUMAN cDNA FLJ30909 fis, clone FEBRA2006165, highly similar to Neuroligin-4, X-linked chemical synaptic transmission [GO:0007268]; modulation of chemical synaptic transmission [GO:0050804]; neuron cell-cell adhesion [GO:0007158]; postsynaptic membrane assembly [GO:0097104]; presynaptic membrane assembly [GO:0097105]; synaptic vesicle endocytosis [GO:0048488] -B3KRT0 unreviewed B3KRT0_HUMAN cDNA FLJ34857 fis, clone NT2NE2012533, highly similar to Cadherin-12 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B3KSR8 unreviewed B3KSR8_HUMAN cDNA FLJ36832 fis, clone ASTRO2010799, highly similar to ALPHA-1 CATENIN cell migration [GO:0016477]; cell-cell adhesion [GO:0098609] -B3KTK4 unreviewed B3KTK4_HUMAN cDNA FLJ38410 fis, clone FEBRA2009289, highly similar to Contactin-4 axon guidance [GO:0007411]; brain development [GO:0007420] -B3KTN6 unreviewed B3KTN6_HUMAN cDNA FLJ38544 fis, clone HCHON2001598, highly similar to Integrin alpha-11 cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -B3KU27 unreviewed B3KU27_HUMAN cDNA FLJ39113 fis, clone NTONG2005897, highly similar to Calsyntenin-2 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; positive regulation of synapse assembly [GO:0051965]; positive regulation of synaptic transmission [GO:0050806] -B3KWC7 unreviewed B3KWC7_HUMAN Cadherin-related family member 1 (Photoreceptor cadherin) (Protocadherin-21) adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B3KX75 unreviewed B3KX75_HUMAN cDNA FLJ44930 fis, clone BRAMY3015549, highly similar to Neural cell adhesion molecule L1-like protein axon guidance [GO:0007411]; brain development [GO:0007420] -B3KXF4 unreviewed B3KXF4_HUMAN cDNA FLJ45324 fis, clone BRHIP3006449, highly similar to Catenin delta-2 cell-cell adhesion [GO:0098609]; cell-cell junction assembly [GO:0007043]; dendritic spine morphogenesis [GO:0060997] -B3KXM6 unreviewed B3KXM6_HUMAN cDNA FLJ45735 fis, clone JCMLC2000273, highly similar to Integrin alpha-M cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -B3KYA0 unreviewed B3KYA0_HUMAN cDNA FLJ16254 fis, clone HLUNG2015418, highly similar to Homo sapiens Cadherin homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B4DDM8 unreviewed B4DDM8_HUMAN cDNA FLJ59176, highly similar to ADAM 9 cell-cell adhesion mediated by integrin [GO:0033631]; integrin-mediated signaling pathway [GO:0007229]; membrane protein ectodomain proteolysis [GO:0006509]; transforming growth factor beta receptor signaling pathway [GO:0007179] -B4DDT0 unreviewed B4DDT0_HUMAN cDNA FLJ59664, highly similar to Integrin alpha-3 cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229]; leukocyte migration [GO:0050900] -B4DDX0 unreviewed B4DDX0_HUMAN cDNA FLJ59843, highly similar to Integrin alpha-X cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -B4DF78 unreviewed B4DF78_HUMAN cDNA FLJ50462, highly similar to Disks large homolog 1 cell-cell adhesion [GO:0098609]; chemical synaptic transmission [GO:0007268]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; neurotransmitter receptor localization to postsynaptic specialization membrane [GO:0099645]; receptor clustering [GO:0043113] -B4DFP0 unreviewed B4DFP0_HUMAN cDNA FLJ57804, highly similar to Cadherin-9 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B4DG58 unreviewed B4DG58_HUMAN cDNA FLJ55967, highly similar to Catenin delta-2 cell-cell adhesion [GO:0098609]; cell-cell junction assembly [GO:0007043]; dendritic spine morphogenesis [GO:0060997] -B4DHP9 unreviewed B4DHP9_HUMAN CD99 antigen-like protein 2 homotypic cell-cell adhesion [GO:0034109]; positive regulation of neutrophil extravasation [GO:2000391]; T cell extravasation [GO:0072683] -B4DIA4 unreviewed B4DIA4_HUMAN Tyrosine-protein kinase receptor TYRO3 cell migration [GO:0016477]; cell surface receptor protein tyrosine kinase signaling pathway [GO:0007169]; nervous system development [GO:0007399]; platelet aggregation [GO:0070527] -B4DJU1 unreviewed B4DJU1_HUMAN cDNA FLJ61296, highly similar to Catenin delta-2 cell-cell adhesion [GO:0098609]; cell-cell junction assembly [GO:0007043]; dendritic spine morphogenesis [GO:0060997] -B4DKX6 unreviewed B4DKX6_HUMAN cDNA FLJ53584, highly similar to Desmoplakin cell-cell adhesion [GO:0098609]; intermediate filament cytoskeleton organization [GO:0045104]; skin development [GO:0043588]; wound healing [GO:0042060] -B4DLD1 unreviewed B4DLD1_HUMAN cDNA FLJ57342, highly similar to Laminin gamma-2 chain animal organ morphogenesis [GO:0009887]; cell migration [GO:0016477]; cell-cell adhesion [GO:0098609]; morphogenesis of a polarized epithelium [GO:0001738] -B4DLF0 unreviewed B4DLF0_HUMAN cDNA FLJ50795, highly similar to Cadherin-3 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B4DLJ5 unreviewed B4DLJ5_HUMAN cDNA FLJ55716, highly similar to Desmocollin-2 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B4DLU2 unreviewed B4DLU2_HUMAN cDNA FLJ56496, highly similar to Integrin alpha-IIb angiogenesis [GO:0001525]; cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -B4DMA7 unreviewed B4DMA7_HUMAN cDNA FLJ58514, highly similar to Cadherin-11 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B4DN28 unreviewed B4DN28_HUMAN cDNA FLJ54639, highly similar to Integrin alpha-8 cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -B4DNE1 unreviewed B4DNE1_HUMAN Basigin axon guidance [GO:0007411]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B4DNH0 unreviewed B4DNH0_HUMAN cDNA FLJ60313, highly similar to Epithelial-cadherin adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synapse assembly [GO:0007416] -B4DNS7 unreviewed B4DNS7_HUMAN Oxidized low-density lipoprotein receptor 1 (Lectin-like oxidized LDL receptor 1) (Lectin-type oxidized LDL receptor 1) inflammatory response [GO:0006954]; leukocyte cell-cell adhesion [GO:0007159]; lipoprotein metabolic process [GO:0042157] -B4DPH1 unreviewed B4DPH1_HUMAN cDNA FLJ53455, highly similar to Cadherin-16 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B4DR79 unreviewed B4DR79_HUMAN cDNA FLJ50173, highly similar to Plakophilin-2 cell-cell adhesion [GO:0098609]; cell-cell junction assembly [GO:0007043]; cell-cell signaling involved in cardiac conduction [GO:0086019]; desmosome organization [GO:0002934]; heart development [GO:0007507]; intermediate filament bundle assembly [GO:0045110]; protein localization to plasma membrane [GO:0072659] -B4DRX5 unreviewed B4DRX5_HUMAN cDNA FLJ56941, highly similar to Plakophilin-1 (cDNA, FLJ79030, highly similar to Plakophilin-1) cell-cell adhesion [GO:0098609]; cell-cell junction assembly [GO:0007043]; intermediate filament bundle assembly [GO:0045110] -B4DS98 unreviewed B4DS98_HUMAN cDNA FLJ56792, highly similar to Leucine-rich repeat and fibronectin type-III domain-containing protein 5 regulation of presynapse assembly [GO:1905606]; synaptic membrane adhesion [GO:0099560] -B4DTY8 unreviewed B4DTY8_HUMAN cDNA FLJ61587, highly similar to Integrin alpha-1 cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -B4DU00 unreviewed B4DU00_HUMAN Catenin alpha-1 cell migration [GO:0016477]; cell-cell adhesion [GO:0098609] -B4DUZ0 unreviewed B4DUZ0_HUMAN cDNA FLJ58427, highly similar to Junctional adhesion molecule-like heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; monocyte extravasation [GO:0035696]; neutrophil chemotaxis [GO:0030593]; neutrophil extravasation [GO:0072672] -B4DV98 unreviewed B4DV98_HUMAN cDNA FLJ53522, highly similar to Homo sapiens mucin and cadherin-like (MUCDHL), transcript variant 3, mRNA homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B4DVA8 unreviewed B4DVA8_HUMAN cDNA FLJ53459, highly similar to Cadherin-17 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B4DVI6 unreviewed B4DVI6_HUMAN cDNA FLJ58630, highly similar to Junctional adhesion molecule-like heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; monocyte extravasation [GO:0035696]; neutrophil chemotaxis [GO:0030593]; neutrophil extravasation [GO:0072672] -B4DVN2 unreviewed B4DVN2_HUMAN T-cell surface antigen CD2 cell-cell adhesion [GO:0098609]; positive regulation of type II interferon production [GO:0032729] -B4DWT7 unreviewed B4DWT7_HUMAN cDNA FLJ51487, highly similar to Desmoplakin cell-cell adhesion [GO:0098609]; intermediate filament cytoskeleton organization [GO:0045104]; skin development [GO:0043588]; wound healing [GO:0042060] -B4DY23 unreviewed B4DY23_HUMAN Basigin axon guidance [GO:0007411]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B4DYQ7 unreviewed B4DYQ7_HUMAN cDNA FLJ57822, highly similar to Integrin alpha-V angiogenesis [GO:0001525]; cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -B4DZK4 unreviewed B4DZK4_HUMAN cDNA FLJ50931, highly similar to Tight junction protein ZO-1 cell-cell adhesion [GO:0098609]; cell-cell junction organization [GO:0045216]; establishment of endothelial intestinal barrier [GO:0090557]; positive regulation of blood-brain barrier permeability [GO:1905605]; protein localization to cell-cell junction [GO:0150105] -B4E045 unreviewed B4E045_HUMAN cDNA FLJ59131, highly similar to Integrin alpha-4 cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -B4E0H8 unreviewed B4E0H8_HUMAN cDNA FLJ60385, highly similar to Integrin alpha-3 cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229]; leukocyte migration [GO:0050900] -B4E0Q2 unreviewed B4E0Q2_HUMAN cDNA FLJ60208, highly similar to Integrin alpha-4 cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -B4E282 unreviewed B4E282_HUMAN cDNA FLJ52401, highly similar to Integrin alpha-10 cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -B4E289 unreviewed B4E289_HUMAN cDNA FLJ56768, highly similar to Glycoprotein Xg homotypic cell-cell adhesion [GO:0034109]; positive regulation of neutrophil extravasation [GO:2000391]; T cell extravasation [GO:0072683] -B4E2A0 unreviewed B4E2A0_HUMAN cDNA FLJ61543, highly similar to Desmoplakin cell-cell adhesion [GO:0098609]; intermediate filament cytoskeleton organization [GO:0045104]; skin development [GO:0043588]; wound healing [GO:0042060] -B4E2A1 unreviewed B4E2A1_HUMAN cDNA FLJ54402, highly similar to Integrin alpha-10 cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -B4E2D8 unreviewed B4E2D8_HUMAN cDNA FLJ59655, highly similar to Protocadherin-1 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B4E2G8 unreviewed B4E2G8_HUMAN Catenin alpha-1 cell migration [GO:0016477]; cell-cell adhesion [GO:0098609] -B4E2Y8 unreviewed B4E2Y8_HUMAN cDNA FLJ53845, highly similar to Macrophage colony-stimulating factor 1 receptor (CSF-1-R) axon guidance [GO:0007411]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B4E399 unreviewed B4E399_HUMAN cDNA FLJ55313, highly similar to Homo sapiens delta-notch-like EGF repeat-containing transmembrane (DNER), mRNA establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157] -B4E3M0 unreviewed B4E3M0_HUMAN cDNA FLJ58807, highly similar to Integrin alpha-11 cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -B4E3Q1 unreviewed B4E3Q1_HUMAN cDNA FLJ61580, highly similar to Calsyntenin-1 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; positive regulation of synapse assembly [GO:0051965]; positive regulation of synaptic transmission [GO:0050806] -B7Z236 unreviewed B7Z236_HUMAN cDNA FLJ54304, highly similar to Cadherin-13 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; sprouting angiogenesis [GO:0002040] -B7Z264 unreviewed B7Z264_HUMAN cDNA FLJ53314, highly similar to Discs large homolog 2 cell-cell adhesion [GO:0098609]; chemical synaptic transmission [GO:0007268]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; receptor clustering [GO:0043113]; receptor localization to synapse [GO:0097120] -B7Z2M1 unreviewed B7Z2M1_HUMAN cDNA FLJ60090, highly similar to Cadherin-11 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B7Z2R3 unreviewed B7Z2R3_HUMAN cDNA FLJ59510, highly similar to Homo sapiens tight junction protein 2 (TJP2), transcript variant 2, mRNA cell-cell adhesion [GO:0098609]; cell-cell junction organization [GO:0045216]; establishment of endothelial intestinal barrier [GO:0090557]; positive regulation of blood-brain barrier permeability [GO:1905605]; protein localization to cell-cell junction [GO:0150105] -B7Z395 unreviewed B7Z395_HUMAN cDNA FLJ53337, highly similar to Discs large homolog 2 cell-cell adhesion [GO:0098609]; chemical synaptic transmission [GO:0007268]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; receptor clustering [GO:0043113]; receptor localization to synapse [GO:0097120] -B7Z3H7 unreviewed B7Z3H7_HUMAN cDNA FLJ50547, highly similar to Cadherin-13 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; sprouting angiogenesis [GO:0002040] -B7Z3P8 unreviewed B7Z3P8_HUMAN cDNA FLJ53434, highly similar to Neuroligin-3 chemical synaptic transmission [GO:0007268]; modulation of chemical synaptic transmission [GO:0050804]; neuron cell-cell adhesion [GO:0007158]; postsynaptic membrane assembly [GO:0097104]; presynaptic membrane assembly [GO:0097105]; synaptic vesicle endocytosis [GO:0048488] -B7Z4H2 unreviewed B7Z4H2_HUMAN cDNA FLJ50577, highly similar to Discs large homolog 4 AMPA glutamate receptor clustering [GO:0097113]; cell-cell adhesion [GO:0098609]; chemical synaptic transmission [GO:0007268]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; postsynaptic neurotransmitter receptor diffusion trapping [GO:0098970] -B7Z5Y1 unreviewed B7Z5Y1_HUMAN cDNA FLJ54143, highly similar to Neuroligin-3 chemical synaptic transmission [GO:0007268]; modulation of chemical synaptic transmission [GO:0050804]; neuron cell-cell adhesion [GO:0007158]; postsynaptic membrane assembly [GO:0097104]; presynaptic membrane assembly [GO:0097105]; synaptic vesicle endocytosis [GO:0048488] -B7Z610 unreviewed B7Z610_HUMAN cDNA FLJ61368, highly similar to Neuroligin-3 chemical synaptic transmission [GO:0007268]; modulation of chemical synaptic transmission [GO:0050804]; neuron cell-cell adhesion [GO:0007158]; postsynaptic membrane assembly [GO:0097104]; presynaptic membrane assembly [GO:0097105]; synaptic vesicle endocytosis [GO:0048488] -B7Z670 unreviewed B7Z670_HUMAN cDNA FLJ61703, highly similar to Neuronal cell adhesion molecule axon guidance [GO:0007411]; brain development [GO:0007420] -B7Z687 unreviewed B7Z687_HUMAN cDNA FLJ59293, highly similar to Roundabout homolog 1 axon guidance [GO:0007411]; cell-cell adhesion [GO:0098609]; neuron migration [GO:0001764] -B7Z826 unreviewed B7Z826_HUMAN cDNA FLJ54394, highly similar to Crumbs homolog 1 establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157] -B7Z8B0 unreviewed B7Z8B0_HUMAN cDNA FLJ50317, highly similar to Integrin alpha-IIb angiogenesis [GO:0001525]; cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -B7Z8Q5 unreviewed B7Z8Q5_HUMAN cDNA FLJ56762, highly similar to Hyaluronan-binding protein 2 establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; proteolysis [GO:0006508] -B7Z8X2 unreviewed B7Z8X2_HUMAN cDNA FLJ54530, weakly similar to Cadherin-related tumor suppressor homolog adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B7Z954 unreviewed B7Z954_HUMAN cDNA FLJ61560, highly similar to Tight junction protein ZO-2 cell-cell adhesion [GO:0098609]; cell-cell junction organization [GO:0045216]; establishment of endothelial intestinal barrier [GO:0090557]; positive regulation of blood-brain barrier permeability [GO:1905605]; protein localization to cell-cell junction [GO:0150105] -B7Z960 unreviewed B7Z960_HUMAN cDNA FLJ57778, highly similar to Neuroplastin axon guidance [GO:0007411]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B7Z985 unreviewed B7Z985_HUMAN cDNA FLJ54302, highly similar to Cadherin-13 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; sprouting angiogenesis [GO:0002040] -B7Z9B1 unreviewed B7Z9B1_HUMAN cDNA FLJ52398, highly similar to Cadherin-13 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; sprouting angiogenesis [GO:0002040] -B7ZBT8 unreviewed B7ZBT8_HUMAN Protocadherin related 15 PCDH15 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B7ZM08 unreviewed B7ZM08_HUMAN Contactin-5 CNTN5 axon guidance [GO:0007411]; brain development [GO:0007420] -B7ZM79 unreviewed B7ZM79_HUMAN PCDH9 protein (Protocadherin 9) PCDH9 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B7ZMH4 unreviewed B7ZMH4_HUMAN ODZ1 protein ODZ1 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; neuron development [GO:0048666]; signal transduction [GO:0007165] -B9EG96 unreviewed B9EG96_HUMAN CDH26 protein CDH26 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B9EGE2 unreviewed B9EGE2_HUMAN MADCAM1 protein MADCAM1 heterotypic cell-cell adhesion [GO:0034113]; integrin-mediated signaling pathway [GO:0007229]; leukocyte tethering or rolling [GO:0050901]; positive regulation of lymphocyte migration [GO:2000403] -B9EH95 unreviewed B9EH95_HUMAN Armadillo repeat gene deletes in velocardiofacial syndrome ARVCF hCG_17887 cell-cell adhesion [GO:0098609]; cell-cell junction assembly [GO:0007043] -B9EJB7 unreviewed B9EJB7_HUMAN Similar to hemicentin LOC392395 axon guidance [GO:0007411]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -C9J126 unreviewed C9J126_HUMAN Cadherin-2 (Neural cadherin) CDH2 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -C9J8J8 unreviewed C9J8J8_HUMAN Cadherin-2 (Neural cadherin) CDH2 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -C9JA99 unreviewed C9JA99_HUMAN Protocadherin alpha 13 PCDHA13 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -C9JMH2 unreviewed C9JMH2_HUMAN Cadherin-2 (Neural cadherin) CDH2 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -C9JZR2 unreviewed C9JZR2_HUMAN Catenin delta 1 CTNND1 cell-cell adhesion [GO:0098609] -D2IYL2 unreviewed D2IYL2_HUMAN Corneodesmosin CDSN cell-cell adhesion [GO:0098609]; skin morphogenesis [GO:0043589] -D6RA20 unreviewed D6RA20_HUMAN Protocadherin alpha 4 PCDHA4 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -D6RF86 unreviewed D6RF86_HUMAN Cadherin 6 CDH6 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -E7EM53 unreviewed E7EM53_HUMAN Protocadherin related 15 PCDH15 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; inner ear development [GO:0048839]; sensory perception of sound [GO:0007605] -E7EM97 unreviewed E7EM97_HUMAN Protocadherin related 15 PCDH15 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; inner ear development [GO:0048839]; sensory perception of sound [GO:0007605] -E7EMG8 unreviewed E7EMG8_HUMAN Protocadherin related 15 PCDH15 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; inner ear development [GO:0048839]; sensory perception of sound [GO:0007605] -E7EN24 unreviewed E7EN24_HUMAN Cadherin 17 CDH17 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -E9PDD2 unreviewed E9PDD2_HUMAN Vascular cell adhesion molecule 1 VCAM1 cell-cell adhesion [GO:0098609] -E9PHB5 unreviewed E9PHB5_HUMAN Catenin delta 2 CTNND2 cell-cell adhesion [GO:0098609] -E9PKC0 unreviewed E9PKC0_HUMAN Pleckstrin homology domain containing A7 PLEKHA7 cell-cell adhesion mediated by cadherin [GO:0044331]; pore complex assembly [GO:0046931]; vasodilation [GO:0042311] -E9PQ73 unreviewed E9PQ73_HUMAN Protocadherin Fat 3 FAT3 cell morphogenesis involved in neuron differentiation [GO:0048667]; dendrite development [GO:0016358]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; interneuron migration [GO:1904936]; negative regulation of dendrite development [GO:2000171]; retina layer formation [GO:0010842] -F1C627 unreviewed F1C627_HUMAN Platelet glycoprotein Ia ITGA2 cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -G3CAS6 unreviewed G3CAS6_HUMAN Odz, odd Oz/ten-m homolog 1 (Drosophila) ODZ1 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; neuron development [GO:0048666]; signal transduction [GO:0007165] -G3CAS7 unreviewed G3CAS7_HUMAN Odz, odd Oz/ten-m homolog 2 (Drosophila) ODZ2 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; neuron development [GO:0048666]; signal transduction [GO:0007165] -G3CAS8 unreviewed G3CAS8_HUMAN Odz, odd Oz/ten-m homolog 2 (Drosophila) ODZ2 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; neuron development [GO:0048666]; signal transduction [GO:0007165] -G3CAS9 unreviewed G3CAS9_HUMAN Odz, odd Oz/ten-m homolog 3 (Drosophila) ODZ3 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; neuron development [GO:0048666]; signal transduction [GO:0007165] -G3CAT0 unreviewed G3CAT0_HUMAN Odz, odd Oz/ten-m homolog 3 (Drosophila) ODZ3 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; neuron development [GO:0048666]; signal transduction [GO:0007165] -G3CAT1 unreviewed G3CAT1_HUMAN Odz, odd Oz/ten-m homolog 4 (Drosophila) ODZ4 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; neuron development [GO:0048666]; signal transduction [GO:0007165] -G3CAT2 unreviewed G3CAT2_HUMAN Odz, odd Oz/ten-m homolog 4 (Drosophila) ODZ4 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; neuron development [GO:0048666]; signal transduction [GO:0007165] -G4VTY1 unreviewed G4VTY1_HUMAN Teneurin-4 ODZ4 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; neuron development [GO:0048666]; signal transduction [GO:0007165] -G8BLJ6 unreviewed G8BLJ6_HUMAN Teneurin-2 variant ODZ2 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; neuron development [GO:0048666] -H0YBK2 unreviewed H0YBK2_HUMAN FAT atypical cadherin 2 FAT2 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -H0YC95 unreviewed H0YC95_HUMAN Catenin delta 1 CTNND1 cell-cell adhesion [GO:0098609] -H3BPG1 unreviewed H3BPG1_HUMAN Cadherin 5 CDH5 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -H3BUU9 unreviewed H3BUU9_HUMAN Cadherin 11 CDH11 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -I3L1J2 unreviewed I3L1J2_HUMAN Cadherin 5 CDH5 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -I6XCH0 unreviewed I6XCH0_HUMAN Glycoprotein IIb ITGA2B angiogenesis [GO:0001525]; cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -J3QRT5 unreviewed J3QRT5_HUMAN Intercellular adhesion molecule 2 ICAM2 cell-cell adhesion [GO:0098609] -K4PZ75 unreviewed K4PZ75_HUMAN Ig superfamily receptor LNIR (Nectin 4) LNIR heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; symbiont entry into host cell [GO:0046718] -M1SWB8 unreviewed M1SWB8_HUMAN Corneodesmosin CDSN cell-cell adhesion [GO:0098609]; skin morphogenesis [GO:0043589] -O60574 unreviewed O60574_HUMAN Cadherin-7 CDH7 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -O95883 unreviewed O95883_HUMAN Similar to protocadherin-3 (Pcdh3) cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q05BN6 unreviewed Q05BN6_HUMAN ARVCF protein ARVCF cell-cell adhesion [GO:0098609]; cell-cell junction assembly [GO:0007043] -Q0EFA5 unreviewed Q0EFA5_HUMAN Corneodesmosin S cell-cell adhesion [GO:0098609]; skin morphogenesis [GO:0043589] -Q12787 unreviewed Q12787_HUMAN Tyrosine-protein kinase receptor TYRO3 (EC 2.7.10.1) cell migration [GO:0016477]; cell surface receptor protein tyrosine kinase signaling pathway [GO:0007169]; nervous system development [GO:0007399]; platelet aggregation [GO:0070527] -Q14BN3 unreviewed Q14BN3_HUMAN PKP1 protein PKP1 cell-cell adhesion [GO:0098609]; cell-cell junction assembly [GO:0007043]; intermediate filament bundle assembly [GO:0045110] -Q14CA1 unreviewed Q14CA1_HUMAN NRCAM protein NRCAM axon guidance [GO:0007411]; brain development [GO:0007420] -Q14DV7 unreviewed Q14DV7_HUMAN Protocadherin 10 PCDH10 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q16370 unreviewed Q16370_HUMAN CTNNA1 protein CTNNA1 cell migration [GO:0016477]; cell-cell adhesion [GO:0098609] -Q1RMC9 unreviewed Q1RMC9_HUMAN ERBB2IP protein ERBB2IP cell-cell adhesion [GO:0098609]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; neurotransmitter receptor transport postsynaptic membrane to endosome [GO:0098968]; neurotransmitter receptor transport, endosome to postsynaptic membrane [GO:0098887]; receptor clustering [GO:0043113] -Q1T7A3 unreviewed Q1T7A3_HUMAN CD177 CD177 cell-cell adhesion via plasma-membrane adhesion molecules [GO:0098742]; cell-cell junction maintenance [GO:0045217]; leukocyte cell-cell adhesion [GO:0007159]; positive regulation of neutrophil degranulation [GO:0043315]; regulation of integrin-mediated signaling pathway [GO:2001044] -Q2M272 unreviewed Q2M272_HUMAN Protocadherin gamma subfamily C, 5, isoform 2 PCDHGC5 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q2TAL1 unreviewed Q2TAL1_HUMAN CDH24 protein CDH24 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q2VPA1 unreviewed Q2VPA1_HUMAN HSPG2 protein HSPG2 cell-cell adhesion [GO:0098609] -Q2VPE5 unreviewed Q2VPE5_HUMAN TJP3 protein TJP3 cell-cell adhesion [GO:0098609]; cell-cell junction organization [GO:0045216]; establishment of endothelial intestinal barrier [GO:0090557]; positive regulation of blood-brain barrier permeability [GO:1905605]; protein localization to cell-cell junction [GO:0150105] -Q3LID3 unreviewed Q3LID3_HUMAN Uncharacterized protein Nbla04261 Nbla04261 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synaptic transmission, glutamatergic [GO:0035249] -Q3ZB85 unreviewed Q3ZB85_HUMAN PCDHB9 protein PCDHB9 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q3ZCU5 unreviewed Q3ZCU5_HUMAN DLG4 protein DLG4 AMPA glutamate receptor clustering [GO:0097113]; cell-cell adhesion [GO:0098609]; chemical synaptic transmission [GO:0007268]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; postsynaptic neurotransmitter receptor diffusion trapping [GO:0098970] -Q496M2 unreviewed Q496M2_HUMAN AMICA1 protein AMICA1 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; monocyte extravasation [GO:0035696]; neutrophil chemotaxis [GO:0030593]; neutrophil extravasation [GO:0072672] -Q496M4 unreviewed Q496M4_HUMAN AMICA1 protein (cDNA FLJ58210, highly similar to Junctional adhesion molecule-like) AMICA1 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; monocyte extravasation [GO:0035696]; neutrophil chemotaxis [GO:0030593]; neutrophil extravasation [GO:0072672] -Q49AS4 unreviewed Q49AS4_HUMAN CDH22 protein CDH22 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q4G160 unreviewed Q4G160_HUMAN NLGN3 protein NLGN3 chemical synaptic transmission [GO:0007268]; modulation of chemical synaptic transmission [GO:0050804]; neuron cell-cell adhesion [GO:0007158]; postsynaptic membrane assembly [GO:0097104]; presynaptic membrane assembly [GO:0097105]; synaptic vesicle endocytosis [GO:0048488] -Q4JIV9 unreviewed Q4JIV9_HUMAN Netrin-G1 ligand splice variant 4 NGL1 modulation of chemical synaptic transmission [GO:0050804]; regulation of axonogenesis [GO:0050770]; synaptic membrane adhesion [GO:0099560] -Q4JIW0 unreviewed Q4JIW0_HUMAN Netrin-G1 ligand splice variant 3 NGL1 modulation of chemical synaptic transmission [GO:0050804]; regulation of axonogenesis [GO:0050770]; synaptic membrane adhesion [GO:0099560] -Q4LE35 unreviewed Q4LE35_HUMAN ITGA7 variant protein ITGA7 variant protein cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229]; leukocyte migration [GO:0050900] -Q4LE79 unreviewed Q4LE79_HUMAN DSP variant protein DSP variant protein cell-cell adhesion [GO:0098609]; intermediate filament cytoskeleton organization [GO:0045104]; skin development [GO:0043588]; wound healing [GO:0042060] -Q4PKD0 unreviewed Q4PKD0_HUMAN Mucosal vascular addressin cell adhesion molecule 1 transcript variant 1 MADCAM1 heterotypic cell-cell adhesion [GO:0034113]; integrin-mediated signaling pathway [GO:0007229]; leukocyte tethering or rolling [GO:0050901]; positive regulation of lymphocyte migration [GO:2000403] -Q4VBZ5 unreviewed Q4VBZ5_HUMAN CDH24 protein CDH24 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q4W5T8 unreviewed Q4W5T8_HUMAN Uncharacterized protein PKP4 PKP4 cell-cell adhesion [GO:0098609]; cell-cell junction assembly [GO:0007043] -Q53QY6 unreviewed Q53QY6_HUMAN Inducible T-cell costimulator ICOS hCG_1642889 cell-cell adhesion [GO:0098609]; T cell costimulation [GO:0031295]; T cell tolerance induction [GO:0002517] -Q566Q1 unreviewed Q566Q1_HUMAN LAMA3 protein LAMA3 animal organ morphogenesis [GO:0009887]; cell migration [GO:0016477]; cell-cell adhesion [GO:0098609]; morphogenesis of a polarized epithelium [GO:0001738] -Q58EZ6 unreviewed Q58EZ6_HUMAN Mucin-like protocadherin MUPCDH homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q59EG0 unreviewed Q59EG0_HUMAN Basement membrane-specific heparan sulfate proteoglycan core protein variant homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synapse organization [GO:0050808] -Q59EQ1 unreviewed Q59EQ1_HUMAN Cadherin 11, type 2 isoform 1 preproprotein variant adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q59F03 unreviewed Q59F03_HUMAN Integrin alpha 3 isoform b, variant cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229]; leukocyte migration [GO:0050900] -Q59F24 unreviewed Q59F24_HUMAN Vascular endothelial growth factor receptor 3 variant homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synapse organization [GO:0050808] -Q59FA8 unreviewed Q59FA8_HUMAN Integrin alpha-IIb variant angiogenesis [GO:0001525]; cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -Q59FC4 unreviewed Q59FC4_HUMAN Presynaptic protein SAP97 variant actin filament organization [GO:0007015]; cell-cell adhesion [GO:0098609]; chemical synaptic transmission [GO:0007268]; cortical actin cytoskeleton organization [GO:0030866]; endothelial cell proliferation [GO:0001935]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; negative regulation of G1/S transition of mitotic cell cycle [GO:2000134]; neurotransmitter receptor localization to postsynaptic specialization membrane [GO:0099645]; receptor clustering [GO:0043113] -Q59FY1 unreviewed Q59FY1_HUMAN Synapse-associated protein 102 variant cell-cell adhesion [GO:0098609]; chemical synaptic transmission [GO:0007268]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; receptor clustering [GO:0043113]; receptor localization to synapse [GO:0097120] -Q59GD1 unreviewed Q59GD1_HUMAN Protocadherin gamma subfamily A, 6 isoform 1 variant homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q59GH3 unreviewed Q59GH3_HUMAN Down syndrome cell adhesion molecule isoform CHD2-42 variant axon guidance [GO:0007411]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q59H14 unreviewed Q59H14_HUMAN PREDICTED: integrin, alpha D variant cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -Q59H32 unreviewed Q59H32_HUMAN Protocadherin gamma subfamily A, 3 isoform 1 variant homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q59H35 unreviewed Q59H35_HUMAN Protocadherin alpha 13 isoform 1 variant homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q59H74 unreviewed Q59H74_HUMAN Integrin alpha 4 variant cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -Q5NKU1 unreviewed Q5NKU1_HUMAN Intercellular adhesion molecule 3 ICAM3 cell-cell adhesion [GO:0098609] -Q5NKV8 unreviewed Q5NKV8_HUMAN Intercellular adhesion molecule 1 ICAM1 cell-cell adhesion [GO:0098609]; positive regulation of T cell apoptotic process [GO:0070234] -Q5PY60 unreviewed Q5PY60_HUMAN Mucosal vascular addressin cell adhesion molecule 1 MADCAM1 heterotypic cell-cell adhesion [GO:0034113]; integrin-mediated signaling pathway [GO:0007229]; leukocyte tethering or rolling [GO:0050901]; positive regulation of lymphocyte migration [GO:2000403] -Q5SR54 unreviewed Q5SR54_HUMAN Calsyntenin 1 CLSTN1 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q5VT82 unreviewed Q5VT82_HUMAN Protocadherin 9 PCDH9 hCG_2026614 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q5VWE5 unreviewed Q5VWE5_HUMAN Neurotrophic tyrosine kinase, receptor, type 2, isoform CRA_a (cDNA FLJ76753, highly similar to Homo sapiens neurotrophic tyrosine kinase, receptor, type 2 (NTRK2), transcript variant b, mRNA) NTRK2 hCG_1985371 cell surface receptor protein tyrosine kinase signaling pathway [GO:0007169]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synapse organization [GO:0050808] -Q63HM4 unreviewed Q63HM4_HUMAN Uncharacterized protein DKFZp686P18250 DKFZp686P18250 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q68DU0 unreviewed Q68DU0_HUMAN Uncharacterized protein DKFZp781O2021 DKFZp781O2021 cell-cell adhesion [GO:0098609]; cell-cell junction assembly [GO:0007043] -Q68DX9 unreviewed Q68DX9_HUMAN Uncharacterized protein DKFZp686M05161 DKFZp686M05161 cell-cell adhesion [GO:0098609]; cell-cell junction organization [GO:0045216]; establishment of endothelial intestinal barrier [GO:0090557]; positive regulation of blood-brain barrier permeability [GO:1905605]; protein localization to cell-cell junction [GO:0150105] -Q68DY8 unreviewed Q68DY8_HUMAN Uncharacterized protein DKFZp686I11137 DKFZp686I11137 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q68EM9 unreviewed Q68EM9_HUMAN ITGA4 protein ITGA4 cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -Q6FHE2 unreviewed Q6FHE2_HUMAN ICAM2 protein (Intercellular adhesion molecule 2) (Intercellular adhesion molecule 2, isoform CRA_a) ICAM2 hCG_41817 cell-cell adhesion [GO:0098609] -Q6IBG1 unreviewed Q6IBG1_HUMAN Myosin regulatory light polypeptide 9 (Myosin regulatory light chain 2, smooth muscle isoform) (Myosin regulatory light chain 9) MYL9 myofibril assembly [GO:0030239]; platelet aggregation [GO:0070527] -Q6LCG8 unreviewed Q6LCG8_HUMAN Catenin-4 cell-cell adhesion [GO:0098609]; cell-cell junction assembly [GO:0007043] -Q6MZK0 unreviewed Q6MZK0_HUMAN Uncharacterized protein DKFZp686F02202 DKFZp686F02202 chemical synaptic transmission [GO:0007268]; modulation of chemical synaptic transmission [GO:0050804]; neuron cell-cell adhesion [GO:0007158]; postsynaptic membrane assembly [GO:0097104]; presynaptic membrane assembly [GO:0097105]; synaptic vesicle endocytosis [GO:0048488] -Q6MZU1 unreviewed Q6MZU1_HUMAN Uncharacterized protein DKFZp686A1195 DKFZp686A1195 cell-cell adhesion [GO:0098609]; cell-cell junction organization [GO:0045216]; establishment of endothelial intestinal barrier [GO:0090557]; positive regulation of blood-brain barrier permeability [GO:1905605]; protein localization to cell-cell junction [GO:0150105] -Q6NSD8 unreviewed Q6NSD8_HUMAN FGA protein FGA blood coagulation, common pathway [GO:0072377]; fibrinolysis [GO:0042730]; negative regulation of endothelial cell apoptotic process [GO:2000352]; negative regulation of extrinsic apoptotic signaling pathway via death domain receptors [GO:1902042]; platelet aggregation [GO:0070527]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of heterotypic cell-cell adhesion [GO:0034116]; positive regulation of peptide hormone secretion [GO:0090277]; protein polymerization [GO:0051258] -Q6P4R2 unreviewed Q6P4R2_HUMAN Protocadherin alpha subfamily C, 2 PCDHAC2 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q6PJE7 unreviewed Q6PJE7_HUMAN ITGA4 protein ITGA4 cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -Q6PJH1 unreviewed Q6PJH1_HUMAN Disks large homolog 1 DLG1 cell-cell adhesion [GO:0098609]; chemical synaptic transmission [GO:0007268]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; neurotransmitter receptor localization to postsynaptic specialization membrane [GO:0099645]; receptor clustering [GO:0043113] -Q6PK41 unreviewed Q6PK41_HUMAN LRFN4 protein LRFN4 regulation of postsynaptic density assembly [GO:0099151]; regulation of presynapse assembly [GO:1905606]; synaptic membrane adhesion [GO:0099560] -Q6SYC1 unreviewed Q6SYC1_HUMAN Poliovirus receptor-related 1 alpha isoform PVRL1 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; protein localization to cell junction [GO:1902414] -Q6SYC2 unreviewed Q6SYC2_HUMAN Poliovirus receptor-related 1 PVRL1 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; protein localization to cell junction [GO:1902414] -Q6XYS1 unreviewed Q6XYS1_HUMAN Alpha-T-catenin isoform 2 CTNNA3 cell migration [GO:0016477]; cell-cell adhesion [GO:0098609] -Q6ZP16 unreviewed Q6ZP16_HUMAN cDNA FLJ26719 fis, clone PNC03379 cell-cell adhesion [GO:0098609]; intermediate filament cytoskeleton organization [GO:0045104]; skin development [GO:0043588]; wound healing [GO:0042060] -Q6ZSU2 unreviewed Q6ZSU2_HUMAN cDNA FLJ45207 fis, clone BRCAN2010665, highly similar to Channel associated protein of synapse-110 cell-cell adhesion [GO:0098609]; chemical synaptic transmission [GO:0007268]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; receptor clustering [GO:0043113]; receptor localization to synapse [GO:0097120] -Q71U02 unreviewed Q71U02_HUMAN Myosin regulatory light polypeptide 9 (Myosin regulatory light chain 2, smooth muscle isoform) (Myosin regulatory light chain 9) myofibril assembly [GO:0030239]; platelet aggregation [GO:0070527] -Q75QY0 unreviewed Q75QY0_HUMAN KIAA0811 protein KIAA0811 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q7KZJ3 unreviewed Q7KZJ3_HUMAN Catenin (Cadherin-associated protein), delta 1 cell-cell adhesion [GO:0098609]; cell-cell junction assembly [GO:0007043] -Q7L3C2 unreviewed Q7L3C2_HUMAN LRFN4 protein LRFN4 regulation of postsynaptic density assembly [GO:0099151]; regulation of presynapse assembly [GO:1905606]; synaptic membrane adhesion [GO:0099560] -Q7Z3Z9 unreviewed Q7Z3Z9_HUMAN L1 cell adhesion molecule L1CAM axon guidance [GO:0007411]; brain development [GO:0007420] -Q7Z457 unreviewed Q7Z457_HUMAN Poliovirus receptor related 2 PVRL2 acrosome assembly [GO:0001675]; coreceptor-mediated virion attachment to host cell [GO:0046814]; cytoskeleton organization [GO:0007010]; establishment of mitochondrion localization [GO:0051654]; fusion of virus membrane with host plasma membrane [GO:0019064]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; positive regulation of immunoglobulin mediated immune response [GO:0002891]; positive regulation of mast cell activation [GO:0033005]; positive regulation of natural killer cell mediated cytotoxicity directed against tumor cell target [GO:0002860]; positive regulation of T cell receptor signaling pathway [GO:0050862]; regulation of viral entry into host cell [GO:0046596]; susceptibility to natural killer cell mediated cytotoxicity [GO:0042271]; susceptibility to T cell mediated cytotoxicity [GO:0060370] -Q7Z559 unreviewed Q7Z559_HUMAN Corneodesmosin CDSN cell-cell adhesion [GO:0098609]; skin morphogenesis [GO:0043589] -Q7Z560 unreviewed Q7Z560_HUMAN Corneodesmosin CDSN cell-cell adhesion [GO:0098609]; skin morphogenesis [GO:0043589] -Q7Z738 unreviewed Q7Z738_HUMAN PCDH12 protein PCDH12 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q86SV6 unreviewed Q86SV6_HUMAN K-glypican GPC4 cell migration [GO:0016477]; regulation of neurotransmitter receptor localization to postsynaptic specialization membrane [GO:0098696]; regulation of presynapse assembly [GO:1905606]; regulation of signal transduction [GO:0009966]; synaptic membrane adhesion [GO:0099560] -Q86T00 unreviewed Q86T00_HUMAN Full-length cDNA clone CS0DK003YO17 of HeLa cells of Homo sapiens (human) adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q86TS8 unreviewed Q86TS8_HUMAN Full-length cDNA 5-PRIME end of clone CS0DE010YP19 of Placenta of Homo sapiens (human) adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q86Z09 unreviewed Q86Z09_HUMAN FGA protein FGA blood coagulation, common pathway [GO:0072377]; fibrinolysis [GO:0042730]; negative regulation of endothelial cell apoptotic process [GO:2000352]; negative regulation of extrinsic apoptotic signaling pathway via death domain receptors [GO:1902042]; platelet aggregation [GO:0070527]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of heterotypic cell-cell adhesion [GO:0034116]; positive regulation of peptide hormone secretion [GO:0090277]; protein polymerization [GO:0051258] -Q8IU71 unreviewed Q8IU71_HUMAN Integrin alpha-4 subunit IA4 cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -Q8IUP8 unreviewed Q8IUP8_HUMAN PCDH12 protein PCDH12 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q8IY78 unreviewed Q8IY78_HUMAN CDH7 protein adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q8N6H6 unreviewed Q8N6H6_HUMAN ITGA9 protein cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -Q8N6J3 unreviewed Q8N6J3_HUMAN Tyrosine-protein kinase receptor TYRO3 TYRO3 cell migration [GO:0016477]; cell surface receptor protein tyrosine kinase signaling pathway [GO:0007169]; nervous system development [GO:0007399]; platelet aggregation [GO:0070527] -Q8N9J3 unreviewed Q8N9J3_HUMAN Cadherin-20 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q8NAH4 unreviewed Q8NAH4_HUMAN cDNA FLJ35345 fis, clone PROST2016351, moderately similar to P120 PROTEIN cell-cell adhesion [GO:0098609]; cell-cell junction assembly [GO:0007043] -Q8NB64 unreviewed Q8NB64_HUMAN Cadherin-4 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q8ND09 unreviewed Q8ND09_HUMAN Uncharacterized protein DKFZp434K1130 DKFZp434K1130 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q8TAM9 unreviewed Q8TAM9_HUMAN Intercellular adhesion molecule 5, telencephalin ICAM5 cell-cell adhesion [GO:0098609] -Q8TEG4 unreviewed Q8TEG4_HUMAN FLJ00233 protein FLJ00233 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q8TES5 unreviewed Q8TES5_HUMAN FLJ00114 protein FLJ00114 cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -Q8WW10 unreviewed Q8WW10_HUMAN CTNNA3 protein CTNNA3 cell migration [GO:0016477]; cell-cell adhesion [GO:0098609] -Q8WW76 unreviewed Q8WW76_HUMAN FGA protein FGA blood coagulation, common pathway [GO:0072377]; fibrinolysis [GO:0042730]; negative regulation of endothelial cell apoptotic process [GO:2000352]; negative regulation of extrinsic apoptotic signaling pathway via death domain receptors [GO:1902042]; platelet aggregation [GO:0070527]; positive regulation of ERK1 and ERK2 cascade [GO:0070374]; positive regulation of heterotypic cell-cell adhesion [GO:0034116]; positive regulation of peptide hormone secretion [GO:0090277]; protein polymerization [GO:0051258] -Q96CY4 unreviewed Q96CY4_HUMAN Neurotrophic tyrosine kinase, receptor, type 3 NTRK3 hCG_26627 axon guidance [GO:0007411]; cell surface receptor protein tyrosine kinase signaling pathway [GO:0007169]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q96CZ9 unreviewed Q96CZ9_HUMAN Cadherin 11, type 2, OB-cadherin (Osteoblast) CDH11 hCG_26636 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q96E20 unreviewed Q96E20_HUMAN CD99 antigen-like protein 2 CD99L2 homotypic cell-cell adhesion [GO:0034109]; positive regulation of neutrophil extravasation [GO:2000391]; T cell extravasation [GO:0072683] -Q96FS1 unreviewed Q96FS1_HUMAN CTNND1 protein CTNND1 cell-cell adhesion [GO:0098609]; cell-cell junction assembly [GO:0007043] -Q96KB4 unreviewed Q96KB4_HUMAN cDNA FLJ14386 fis, clone HEMBA1002417, moderately similar to TIGHT JUNCTION PROTEIN ZO-1 cell-cell adhesion [GO:0098609]; cell-cell junction organization [GO:0045216]; establishment of endothelial intestinal barrier [GO:0090557]; positive regulation of blood-brain barrier permeability [GO:1905605]; protein localization to cell-cell junction [GO:0150105] -Q96KY9 unreviewed Q96KY9_HUMAN CDH19 protein adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q96LQ7 unreviewed Q96LQ7_HUMAN Cadherin-like 24, isoform CRA_a (cDNA FLJ25193 fis, clone JTH00761) CDH24 hCG_2013843 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q99533 unreviewed Q99533_HUMAN Alpha3A LAMA3 animal organ morphogenesis [GO:0009887]; cell migration [GO:0016477]; cell-cell adhesion [GO:0098609]; morphogenesis of a polarized epithelium [GO:0001738] -Q99740 unreviewed Q99740_HUMAN Soluble protein Jagged establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; Notch signaling pathway [GO:0007219] -Q99900 unreviewed Q99900_HUMAN CD44 protein CD44 cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; inflammatory response [GO:0006954]; positive regulation of ERK1 and ERK2 cascade [GO:0070374] -Q9H317 unreviewed Q9H317_HUMAN Tight junction protein ZO-1 TJP1 cell-cell adhesion [GO:0098609]; cell-cell junction organization [GO:0045216]; establishment of endothelial intestinal barrier [GO:0090557]; positive regulation of blood-brain barrier permeability [GO:1905605]; protein localization to cell-cell junction [GO:0150105] -Q9H6Y4 unreviewed Q9H6Y4_HUMAN cDNA: FLJ21689 fis, clone COL09459 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q9HAB4 unreviewed Q9HAB4_HUMAN cDNA FLJ11853 fis, clone HEMBA1006758, highly similar to Homo sapiens protocadherin beta 13 (PCDH-beta13) mRNA calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; chemical synaptic transmission [GO:0007268]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synapse assembly [GO:0007416] -Q9HB00 unreviewed Q9HB00_HUMAN Desmocollin 1, isoform CRA_b (Desmocollin 1b) DSC1 hCG_25474 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; sprouting angiogenesis [GO:0002040] -Q9UEJ6 unreviewed Q9UEJ6_HUMAN Cadherin ME5 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q9UMQ4 unreviewed Q9UMQ4_HUMAN RET tyrosine kinase receptor RET cell surface receptor protein tyrosine kinase signaling pathway [GO:0007169]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -V9HW13 unreviewed V9HW13_HUMAN Epididymis secretory protein Li 78 HEL-S-78 cell-cell adhesion [GO:0098609]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; neurotransmitter receptor transport postsynaptic membrane to endosome [GO:0098968]; neurotransmitter receptor transport, endosome to postsynaptic membrane [GO:0098887]; receptor clustering [GO:0043113] -X2G0E6 unreviewed X2G0E6_HUMAN Protocadherin FAT4 FAT4 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -X2G248 unreviewed X2G248_HUMAN Protocadherin FAT4 FAT4 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -X2GA64 unreviewed X2GA64_HUMAN Protocadherin FAT4 FAT4 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -X5D2R8 unreviewed X5D2R8_HUMAN Protocadherin 10 isoform B PCDH10 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -X5D307 unreviewed X5D307_HUMAN Neuroligin 3 isoform D NLGN3 chemical synaptic transmission [GO:0007268]; modulation of chemical synaptic transmission [GO:0050804]; neuron cell-cell adhesion [GO:0007158]; postsynaptic membrane assembly [GO:0097104]; presynaptic membrane assembly [GO:0097105]; synaptic vesicle endocytosis [GO:0048488] -X5D7N0 unreviewed X5D7N0_HUMAN Protocadherin 9 isoform A PCDH9 forebrain development [GO:0030900]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -X5D999 unreviewed X5D999_HUMAN Protocadherin 10 isoform A PCDH10 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -X5D9J9 unreviewed X5D9J9_HUMAN Neuroligin 3 isoform E NLGN3 chemical synaptic transmission [GO:0007268]; modulation of chemical synaptic transmission [GO:0050804]; neuron cell-cell adhesion [GO:0007158]; postsynaptic membrane assembly [GO:0097104]; presynaptic membrane assembly [GO:0097105]; synaptic vesicle endocytosis [GO:0048488] -X5DNG6 unreviewed X5DNG6_HUMAN Cadherin 10 type 2 isoform B CDH10 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -X5DP84 unreviewed X5DP84_HUMAN Neurotrophic tyrosine kinase receptor type 3 isoform A NTRK3 axon guidance [GO:0007411]; cell surface receptor protein tyrosine kinase signaling pathway [GO:0007169]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -X5DQT8 unreviewed X5DQT8_HUMAN Cadherin 10 type 2 isoform C CDH10 adherens junction organization [GO:0034332]; calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; cell morphogenesis [GO:0000902]; cell-cell adhesion mediated by cadherin [GO:0044331]; cell-cell junction assembly [GO:0007043]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A087WWD9 unreviewed A0A087WWD9_HUMAN Cadherin related 23 CDH23 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A087WXV2 unreviewed A0A087WXV2_HUMAN Protocadherin 17 PCDH17 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A087WYR8 unreviewed A0A087WYR8_HUMAN Cadherin related 23 CDH23 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A087X1P2 unreviewed A0A087X1P2_HUMAN Protocadherin gamma subfamily C, 3 PCDHGC3 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A087X227 unreviewed A0A087X227_HUMAN Cadherin 11 CDH11 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A096LNH7 unreviewed A0A096LNH7_HUMAN Protocadherin beta 6 PCDHB6 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -A0A096LP50 unreviewed A0A096LP50_HUMAN Protocadherin beta 9 PCDHB9 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A096LP81 unreviewed A0A096LP81_HUMAN Protocadherin beta 16 PCDHB16 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A096LP94 unreviewed A0A096LP94_HUMAN Protocadherin beta 5 PCDHB5 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A096LPC0 unreviewed A0A096LPC0_HUMAN Protocadherin beta 15 PCDHB15 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A0A0MRC0 unreviewed A0A0A0MRC0_HUMAN Protocadherin-23 DCHS2 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A0A0MS94 unreviewed A0A0A0MS94_HUMAN Cadherin related 23 CDH23 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A0B4J288 unreviewed A0A0B4J288_HUMAN Cadherin 16 CDH16 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A158T700 unreviewed A0A158T700_HUMAN Differentiation-associated catenin regulator homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A172M5V3 unreviewed A0A172M5V3_HUMAN Basal cell adhesion molecule Lutheran blood group BCAM cell-cell adhesion [GO:0098609] -A0A1Z1VXG4 unreviewed A0A1Z1VXG4_HUMAN Basal cell adhesion molecule BCAM cell-cell adhesion [GO:0098609] -A0A2R8Y663 unreviewed A0A2R8Y663_HUMAN Cadherin related 23 CDH23 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A2R8YEM1 unreviewed A0A2R8YEM1_HUMAN Cadherin related 23 CDH23 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A2R8YEV2 unreviewed A0A2R8YEV2_HUMAN Protocadherin related 15 PCDH15 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A3B3ITY6 unreviewed A0A3B3ITY6_HUMAN Calsyntenin 1 CLSTN1 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A6B9LT91 unreviewed A0A6B9LT91_HUMAN Basal cell adhesion molecule BCAM cell-cell adhesion [GO:0098609] -A0A6I8PIW5 unreviewed A0A6I8PIW5_HUMAN Cadherin EGF LAG seven-pass G-type receptor 1 CELSR1 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A6Q8PG20 unreviewed A0A6Q8PG20_HUMAN Cadherin 2 CDH2 cell-cell adhesion [GO:0098609] -A0A804HIA2 unreviewed A0A804HIA2_HUMAN Desmoglein 2 DSG2 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A804HIL4 unreviewed A0A804HIL4_HUMAN Catenin delta 1 CTNND1 cell-cell adhesion [GO:0098609] -A0A804HJM1 unreviewed A0A804HJM1_HUMAN Catenin delta 1 CTNND1 cell-cell adhesion [GO:0098609] -A0A804HJQ3 unreviewed A0A804HJQ3_HUMAN Desmoglein 2 DSG2 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A804HK15 unreviewed A0A804HK15_HUMAN Catenin delta 1 CTNND1 cell-cell adhesion [GO:0098609] -A0A8V8TMG2 unreviewed A0A8V8TMG2_HUMAN Protocadherin 11 Y-linked PCDH11Y homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A8V8TP37 unreviewed A0A8V8TP37_HUMAN Protocadherin 11 Y-linked PCDH11Y homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A0A8V8TPU9 unreviewed A0A8V8TPU9_HUMAN Plakophilin 2 PKP2 cell-cell adhesion [GO:0098609] -A0A8V8TQD7 unreviewed A0A8V8TQD7_HUMAN Plakophilin 2 PKP2 cell-cell adhesion [GO:0098609] -A0A994J5I1 unreviewed A0A994J5I1_HUMAN Catenin delta 2 CTNND2 cell-cell adhesion [GO:0098609] -A0A994J5V2 unreviewed A0A994J5V2_HUMAN Catenin delta 2 CTNND2 cell-cell adhesion [GO:0098609] -A0A994J833 unreviewed A0A994J833_HUMAN Catenin delta 2 CTNND2 cell-cell adhesion [GO:0098609] -A0A9L9PXE8 unreviewed A0A9L9PXE8_HUMAN Intercellular adhesion molecule 5 ICAM5 cell-cell adhesion [GO:0098609] -A0PJ44 unreviewed A0PJ44_HUMAN LIMS2 protein LIMS2 cell-cell adhesion [GO:0098609]; cell-cell junction organization [GO:0045216]; positive regulation of integrin-mediated signaling pathway [GO:2001046]; positive regulation of substrate adhesion-dependent cell spreading [GO:1900026] -A1L2Z5 unreviewed A1L2Z5_HUMAN Protocadherin alpha 3 PCDHA3 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A2NHJ0 unreviewed A2NHJ0_HUMAN HMGI-C chimeric transcript mRNA cell-cell adhesion [GO:0098609] -A4FU17 unreviewed A4FU17_HUMAN PCDHGC4 protein PCDHGC4 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A4FUP3 unreviewed A4FUP3_HUMAN PCDHGA3 protein PCDHGA3 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A4FUP4 unreviewed A4FUP4_HUMAN PCDHGA3 protein PCDHGA3 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A4IF48 unreviewed A4IF48_HUMAN PCDHGA6 protein PCDHGA6 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A4IF53 unreviewed A4IF53_HUMAN PCDHGA3 protein PCDHGA3 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A7E2D9 unreviewed A7E2D9_HUMAN PCDH9 protein PCDH9 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A8K0E7 unreviewed A8K0E7_HUMAN cDNA FLJ77464, highly similar to Homo sapiens protocadherin 1 (cadherin-like 1) (PCDH1), transcript variant 1, mRNA homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A8K0W1 unreviewed A8K0W1_HUMAN cDNA FLJ76645, highly similar to Homo sapiens protocadherin 11 Y-linked (PCDH11Y), transcript variant a, mRNA homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -A8K4K0 unreviewed A8K4K0_HUMAN cDNA FLJ75006, highly similar to Homo sapiens CD177 molecule, mRNA cell-cell adhesion via plasma-membrane adhesion molecules [GO:0098742]; cell-cell junction maintenance [GO:0045217]; leukocyte cell-cell adhesion [GO:0007159]; positive regulation of neutrophil degranulation [GO:0043315]; regulation of integrin-mediated signaling pathway [GO:2001044] -A8K4T0 unreviewed A8K4T0_HUMAN cDNA FLJ76806, highly similar to Homo sapiens roundabout, axon guidance receptor, homolog 3 (Drosophila) (ROBO3), mRNA cell-cell adhesion [GO:0098609] -A8KAP5 unreviewed A8KAP5_HUMAN cDNA FLJ76426, highly similar to Homo sapiens intercellular adhesion molecule 2 (ICAM2), mRNA cell-cell adhesion [GO:0098609] -A9X9L1 unreviewed A9X9L1_HUMAN Desmocollin 2 DSC2 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B1AVV0 unreviewed B1AVV0_HUMAN Cadherin related 23 CDH23 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B2R5G4 unreviewed B2R5G4_HUMAN cDNA, FLJ92465, highly similar to Homo sapiens LIM and senescent cell antigen-like domains 3 (LIMS3), mRNA cell-cell adhesion [GO:0098609]; cell-cell junction organization [GO:0045216]; positive regulation of integrin-mediated signaling pathway [GO:2001046]; positive regulation of substrate adhesion-dependent cell spreading [GO:1900026] -B2R6V7 unreviewed B2R6V7_HUMAN cDNA, FLJ93139, highly similar to Homo sapiens myotilin (MYOT), mRNA axon guidance [GO:0007411]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B2R708 unreviewed B2R708_HUMAN cDNA, FLJ93213, highly similar to Homo sapiens protocadherin beta 15 (PCDHB15), mRNA homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -B2R736 unreviewed B2R736_HUMAN cDNA, FLJ93263, highly similar to Homo sapiens intercellular adhesion molecule 3 (ICAM3), mRNA cell-cell adhesion [GO:0098609] -B2R8M3 unreviewed B2R8M3_HUMAN cDNA, FLJ93967, highly similar to Homo sapiens protocadherin beta 11 (PCDHB11), mRNA homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -B2R951 unreviewed B2R951_HUMAN cDNA, FLJ94214, highly similar to Homo sapiens protocadherin beta 4 (PCDHB4), mRNA homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -B2RBD0 unreviewed B2RBD0_HUMAN cDNA, FLJ95446, highly similar to Homo sapiens protocadherin 20 (PCDH20), mRNA homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B2RBF7 unreviewed B2RBF7_HUMAN cDNA, FLJ95485, highly similar to Homo sapiens protocadherin beta 2 (PCDHB2), mRNA homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -B2RCB6 unreviewed B2RCB6_HUMAN Astrotactin 2 ASTN2 hCG_2036769 neuron cell-cell adhesion [GO:0007158]; neuron migration [GO:0001764] -B2RCB8 unreviewed B2RCB8_HUMAN cDNA, FLJ95971, highly similar to Homo sapiens protocadherin 12 (PCDH12), mRNA homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B2RN89 unreviewed B2RN89_HUMAN Protocadherin alpha 8 PCDHA8 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B2RNA7 unreviewed B2RNA7_HUMAN HCG1982192, isoform CRA_y (Protocadherin alpha subfamily C, 1) PCDHAC1 hCG_1982192 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -B3KN99 unreviewed B3KN99_HUMAN cDNA FLJ14002 fis, clone Y79AA1002307, highly similar to Homo sapiens astrotactin 2 (ASTN2), transcript variant 4, mRNA neuron cell-cell adhesion [GO:0007158]; neuron migration [GO:0001764] -B3KPI2 unreviewed B3KPI2_HUMAN cDNA FLJ31829 fis, clone NT2RP6000110, highly similar to Protocadherin beta 10 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -B3KQ34 unreviewed B3KQ34_HUMAN cDNA FLJ32716 fis, clone TESTI2000808, highly similar to Contactin-4 axon guidance [GO:0007411]; brain development [GO:0007420] -B3KQM8 unreviewed B3KQM8_HUMAN cDNA FLJ90752 fis, clone PLACE3000181, highly similar to Homo sapiens protocadherin 1 (cadherin-like 1) (PCDH1), transcript variant 2, mRNA homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B3KRB4 unreviewed B3KRB4_HUMAN cDNA FLJ33973 fis, clone DFNES2001800, highly similar to Homo sapiens FAT tumor suppressor homolog 4 (Drosophila) (FAT4), mRNA cell-cell adhesion [GO:0098609] -B3KRX0 unreviewed B3KRX0_HUMAN cDNA FLJ35011 fis, clone OCBBF2013149, highly similar to Neuronal cell adhesion molecule axon guidance [GO:0007411]; brain development [GO:0007420] -B3KSZ7 unreviewed B3KSZ7_HUMAN cDNA FLJ37361 fis, clone BRAMY2023514, highly similar to Protocadherin-20 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B3KT29 unreviewed B3KT29_HUMAN cDNA FLJ37530 fis, clone BRCAN2012713, highly similar to Receptor-type tyrosine-protein phosphatase U synaptic membrane adhesion [GO:0099560] -B3KT73 unreviewed B3KT73_HUMAN cDNA FLJ37784 fis, clone BRHIP2028303, highly similar to Homo sapiens dachsous 2 (Drosophila) (DCHS2), transcript variant 1, mRNA homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B3KTG6 unreviewed B3KTG6_HUMAN cDNA FLJ38210 fis, clone FCBBF1000546, highly similar to neuronal cell adhesion molecule cell-cell adhesion [GO:0098609] -B3KU71 unreviewed B3KU71_HUMAN PCDH19 protein (cDNA FLJ39272 fis, clone OCBBF2010709, highly similar to Protocadherin-19) PCDH19 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B3KUI3 unreviewed B3KUI3_HUMAN cDNA FLJ39966 fis, clone SPLEN2027395, highly similar to Junctional adhesion molecule-like heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; monocyte extravasation [GO:0035696]; neutrophil chemotaxis [GO:0030593]; neutrophil extravasation [GO:0072672] -B3KUN6 unreviewed B3KUN6_HUMAN cDNA FLJ40314 fis, clone TESTI2030322, highly similar to Contactin-4 axon guidance [GO:0007411]; brain development [GO:0007420] -B3KUR8 unreviewed B3KUR8_HUMAN cDNA FLJ40483 fis, clone TESTI2043758, highly similar to Neurofascin axon guidance [GO:0007411]; brain development [GO:0007420] -B3KWC2 unreviewed B3KWC2_HUMAN cDNA FLJ42746 fis, clone BRAWH3000166, highly similar to Contactin-2 axon guidance [GO:0007411]; brain development [GO:0007420] -B3KX87 unreviewed B3KX87_HUMAN cDNA FLJ44975 fis, clone BRAWH3001783, highly similar to Protocadherin-15 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; inner ear development [GO:0048839]; sensory perception of sound [GO:0007605] -B3KXH9 unreviewed B3KXH9_HUMAN cDNA FLJ45423 fis, clone BRHIP3036936, highly similar to Homo sapiens astrotactin 2 (ASTN2), transcript variant 2, mRNA neuron cell-cell adhesion [GO:0007158]; neuron migration [GO:0001764] -B4DDN3 unreviewed B4DDN3_HUMAN cDNA FLJ56615, highly similar to Mus musculus odd Oz/ten-m homolog 2 (Drosophila) (Odz2), transcript variant 1, mRNA heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; neuron development [GO:0048666] -B4DDZ6 unreviewed B4DDZ6_HUMAN cDNA FLJ61211, highly similar to OX-2 membrane glycoprotein heterotypic cell-cell adhesion [GO:0034113]; negative regulation of neuroinflammatory response [GO:0150079] -B4DE29 unreviewed B4DE29_HUMAN cDNA FLJ53552, highly similar to Protocadherin beta 16 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B4DEQ8 unreviewed B4DEQ8_HUMAN cDNA FLJ60443, moderately similar to Protocadherin-8 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B4DF10 unreviewed B4DF10_HUMAN cDNA FLJ59856, moderately similar to Acidic fibroblast growth factor intracellular-binding protein platelet aggregation [GO:0070527] -B4DFP9 unreviewed B4DFP9_HUMAN cDNA FLJ61107, highly similar to Neuronal cell adhesion molecule axon guidance [GO:0007411]; brain development [GO:0007420] -B4DGF3 unreviewed B4DGF3_HUMAN cDNA FLJ61113, highly similar to Talin-2 cell-cell adhesion [GO:0098609] -B4DGP0 unreviewed B4DGP0_HUMAN cDNA FLJ53864, highly similar to Contactin-5 axon guidance [GO:0007411]; brain development [GO:0007420] -B4DGV0 unreviewed B4DGV0_HUMAN cDNA FLJ60251, highly similar to Contactin-6 axon guidance [GO:0007411]; brain development [GO:0007420] -B4DHR9 unreviewed B4DHR9_HUMAN cDNA FLJ50962, highly similar to P-selectin glycoprotein ligand 1 leukocyte tethering or rolling [GO:0050901] -B4DHW3 unreviewed B4DHW3_HUMAN cDNA FLJ56438, highly similar to Neurofascin axon guidance [GO:0007411]; brain development [GO:0007420] -B4DJM8 unreviewed B4DJM8_HUMAN cDNA FLJ56534, highly similar to Protocadherin beta 13 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -B4DK48 unreviewed B4DK48_HUMAN cDNA FLJ53604, highly similar to Receptor-type tyrosine-protein phosphatase delta synaptic membrane adhesion [GO:0099560] -B4DKH9 unreviewed B4DKH9_HUMAN cDNA FLJ51235, highly similar to Acidic fibroblast growth factorintracellular-binding protein platelet aggregation [GO:0070527] -B4DKQ1 unreviewed B4DKQ1_HUMAN cDNA FLJ59919, highly similar to Integrin alpha-X cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -B4DMJ0 unreviewed B4DMJ0_HUMAN cDNA FLJ59170, highly similar to Roundabout homolog 1 cell-cell adhesion [GO:0098609] -B4DNT6 unreviewed B4DNT6_HUMAN cDNA FLJ53631, highly similar to Intercellular adhesion molecule 1 cell-cell adhesion [GO:0098609] -B4DQW5 unreviewed B4DQW5_HUMAN cDNA FLJ53641, highly similar to Intercellular adhesion molecule 1 cell-cell adhesion [GO:0098609] -B4DR95 unreviewed B4DR95_HUMAN cDNA FLJ60048, highly similar to Acidic fibroblast growth factor intracellular-binding protein (cDNA, FLJ78875, highly similar to Acidic fibroblast growth factor intracellular-binding protein) platelet aggregation [GO:0070527] -B4DRH7 unreviewed B4DRH7_HUMAN cDNA FLJ61350, highly similar to Neurofascin axon guidance [GO:0007411]; brain development [GO:0007420] -B4DRK2 unreviewed B4DRK2_HUMAN Catenin delta 2 (cDNA FLJ56233, highly similar to Catenin delta-2) CTNND2 cell-cell adhesion [GO:0098609] -B4DSA0 unreviewed B4DSA0_HUMAN cDNA FLJ61367, highly similar to Protocadherin-11 X-linked homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B4DSB6 unreviewed B4DSB6_HUMAN cDNA FLJ51292, highly similar to Protocadherin beta 6 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -B4DSM3 unreviewed B4DSM3_HUMAN cDNA FLJ56943, highly similar to Protocadherin-11 X-linked homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B4DT54 unreviewed B4DT54_HUMAN cDNA FLJ52447, highly similar to P-selectin glycoprotein ligand 1 leukocyte tethering or rolling [GO:0050901] -B4DTR2 unreviewed B4DTR2_HUMAN Cadherin 5 (cDNA FLJ51088, highly similar to Cadherin-5) CDH5 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B4DUA8 unreviewed B4DUA8_HUMAN cDNA FLJ53887, highly similar to Protocadherin-1 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B4DUX2 unreviewed B4DUX2_HUMAN cDNA FLJ59126, highly similar to Particularly interesting new Cys-His protein cell-cell adhesion [GO:0098609]; cell-cell junction organization [GO:0045216]; positive regulation of integrin-mediated signaling pathway [GO:2001046]; positive regulation of substrate adhesion-dependent cell spreading [GO:1900026] -B4DVQ1 unreviewed B4DVQ1_HUMAN cDNA FLJ59288, highly similar to Roundabout homolog 2 cell-cell adhesion [GO:0098609] -B4DW32 unreviewed B4DW32_HUMAN cDNA FLJ58480, highly similar to Protocadherin beta 14 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -B4DWI5 unreviewed B4DWI5_HUMAN cDNA FLJ57217, highly similar to Receptor-type tyrosine-protein phosphatase Fprecursor synaptic membrane adhesion [GO:0099560] -B4DX00 unreviewed B4DX00_HUMAN cDNA FLJ61440, highly similar to Izumo sperm-egg fusion protein 1 fusion of sperm to egg plasma membrane involved in single fertilization [GO:0007342]; sperm-egg recognition [GO:0035036] -B4DY80 unreviewed B4DY80_HUMAN cDNA FLJ56592, highly similar to Mus musculus odd Oz/ten-m homolog 2 (Drosophila) (Odz2), transcript variant 1, mRNA heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; neuron development [GO:0048666] -B4DYX2 unreviewed B4DYX2_HUMAN cDNA FLJ51404, highly similar to Netrin receptor DCC axon guidance [GO:0007411]; cell-cell adhesion [GO:0098609]; neuron migration [GO:0001764] -B4E0G3 unreviewed B4E0G3_HUMAN cDNA FLJ51428, highly similar to T-cell surface antigen CD2 cell-cell adhesion [GO:0098609]; positive regulation of type II interferon production [GO:0032729] -B7Z5T1 unreviewed B7Z5T1_HUMAN cDNA FLJ52406, highly similar to Crumbs homolog 1 establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157] -B7Z646 unreviewed B7Z646_HUMAN cDNA FLJ60861, highly similar to Discs large homolog 2 cell-cell adhesion [GO:0098609]; chemical synaptic transmission [GO:0007268]; establishment or maintenance of epithelial cell apical/basal polarity [GO:0045197]; receptor clustering [GO:0043113]; receptor localization to synapse [GO:0097120] -B7Z6W6 unreviewed B7Z6W6_HUMAN cDNA FLJ52268, highly similar to Intercellular adhesion molecule 3 cell-cell adhesion [GO:0098609] -B7Z871 unreviewed B7Z871_HUMAN cDNA FLJ50930, highly similar to Lipoma-preferred partner cell-cell adhesion [GO:0098609] -B7Z8D6 unreviewed B7Z8D6_HUMAN cDNA FLJ54771, highly similar to Neural cell adhesion molecule 1, 120 kDa isoform cell-cell adhesion [GO:0098609] -B7Z8U8 unreviewed B7Z8U8_HUMAN cDNA FLJ57480, moderately similar to Platelet endothelial cell adhesion molecule cell surface receptor signaling pathway [GO:0007166]; cell-cell adhesion via plasma-membrane adhesion molecules [GO:0098742] -B7Z8W0 unreviewed B7Z8W0_HUMAN cDNA FLJ59653, highly similar to Lipoma-preferred partner cell-cell adhesion [GO:0098609] -B7Z930 unreviewed B7Z930_HUMAN cDNA FLJ53616 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B7ZAE8 unreviewed B7ZAE8_HUMAN cDNA, FLJ79162, highly similar to Protocadherin-11 X-linked homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -B7ZKP3 unreviewed B7ZKP3_HUMAN ASTN2 protein ASTN2 neuron cell-cell adhesion [GO:0007158]; neuron migration [GO:0001764] -B7ZKP4 unreviewed B7ZKP4_HUMAN ASTN2 protein ASTN2 neuron cell-cell adhesion [GO:0007158]; neuron migration [GO:0001764] -B7ZKP5 unreviewed B7ZKP5_HUMAN ASTN2 protein ASTN2 neuron cell-cell adhesion [GO:0007158]; neuron migration [GO:0001764] -B7ZLW0 unreviewed B7ZLW0_HUMAN LPP protein LPP cell-cell adhesion [GO:0098609] -C9JIE7 unreviewed C9JIE7_HUMAN Endothelial cell adhesion molecule ESAM cell-cell adhesion [GO:0098609] -C9JJX6 unreviewed C9JJX6_HUMAN ARVCF delta catenin family member ARVCF cell-cell adhesion [GO:0098609] -D2N288 unreviewed D2N288_HUMAN Putative CD177 protein CD177 cell-cell adhesion via plasma-membrane adhesion molecules [GO:0098742]; cell-cell junction maintenance [GO:0045217]; leukocyte cell-cell adhesion [GO:0007159]; positive regulation of neutrophil degranulation [GO:0043315]; regulation of integrin-mediated signaling pathway [GO:2001044] -D6RAX3 unreviewed D6RAX3_HUMAN Protocadherin 1 PCDH1 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -D6RBA8 unreviewed D6RBA8_HUMAN Catenin delta 2 CTNND2 cell-cell adhesion [GO:0098609] -D6RBG2 unreviewed D6RBG2_HUMAN Protocadherin 1 PCDH1 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -D6RC65 unreviewed D6RC65_HUMAN Catenin delta 2 CTNND2 cell-cell adhesion [GO:0098609] -D6RCE4 unreviewed D6RCE4_HUMAN FAT atypical cadherin 1 FAT1 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -D6RER2 unreviewed D6RER2_HUMAN Cadherin 18 CDH18 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -D6RHE9 unreviewed D6RHE9_HUMAN Catenin delta 2 CTNND2 cell-cell adhesion [GO:0098609] -D6RIG4 unreviewed D6RIG4_HUMAN Protocadherin 18 PCDH18 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -D6RIH8 unreviewed D6RIH8_HUMAN Cadherin 18 CDH18 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -D6RJG0 unreviewed D6RJG0_HUMAN Cadherin 10 CDH10 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -E5RJT3 unreviewed E5RJT3_HUMAN Cadherin 17 CDH17 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -E7EPC8 unreviewed E7EPC8_HUMAN Catenin delta 2 CTNND2 cell-cell adhesion [GO:0098609] -E7EPN0 unreviewed E7EPN0_HUMAN Cadherin 9 CDH9 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -E7EQG5 unreviewed E7EQG5_HUMAN Cadherin related family member 3 CDHR3 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -E7EST6 unreviewed E7EST6_HUMAN Plakophilin 4 PKP4 cell-cell adhesion [GO:0098609] -E9PDC3 unreviewed E9PDC3_HUMAN ARVCF delta catenin family member ARVCF cell-cell adhesion [GO:0098609] -E9PEI5 unreviewed E9PEI5_HUMAN Cadherin related family member 3 CDHR3 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -E9PK71 unreviewed E9PK71_HUMAN Plakophilin 3 PKP3 cell-cell adhesion [GO:0098609] -E9PKC4 unreviewed E9PKC4_HUMAN Plakophilin 3 PKP3 cell-cell adhesion [GO:0098609] -E9PKY0 unreviewed E9PKY0_HUMAN Catenin delta 1 CTNND1 cell-cell adhesion [GO:0098609] -E9PQ15 unreviewed E9PQ15_HUMAN Plakophilin 3 PKP3 cell-cell adhesion [GO:0098609] -F2YYR6 unreviewed F2YYR6_HUMAN Vascular cell adhesion molecule 1 VCAM1 cell-cell adhesion [GO:0098609] -F5H5C6 unreviewed F5H5C6_HUMAN Calsyntenin 3 CLSTN3 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -F5H5D7 unreviewed F5H5D7_HUMAN Calsyntenin 3 CLSTN3 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -F5H5X9 unreviewed F5H5X9_HUMAN Cadherin 7 CDH7 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -F5H746 unreviewed F5H746_HUMAN Calsyntenin 3 CLSTN3 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -F5H7C7 unreviewed F5H7C7_HUMAN Calsyntenin 3 CLSTN3 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -F8UU18 unreviewed F8UU18_HUMAN Vascular cell adhesion molecule 1 VCAM1 cell-cell adhesion [GO:0098609] -F8VPN9 unreviewed F8VPN9_HUMAN Vezatin, adherens junctions transmembrane protein VEZT cell-cell adhesion [GO:0098609] -F8VS43 unreviewed F8VS43_HUMAN Vezatin, adherens junctions transmembrane protein VEZT cell-cell adhesion [GO:0098609] -F8VUB7 unreviewed F8VUB7_HUMAN Vezatin, adherens junctions transmembrane protein VEZT cell-cell adhesion [GO:0098609] -F8VUG0 unreviewed F8VUG0_HUMAN Vezatin, adherens junctions transmembrane protein VEZT cell-cell adhesion [GO:0098609] -F8VVI9 unreviewed F8VVI9_HUMAN Cadherin 19 CDH19 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -F8VVS3 unreviewed F8VVS3_HUMAN Vezatin, adherens junctions transmembrane protein VEZT cell-cell adhesion [GO:0098609] -F8VXA0 unreviewed F8VXA0_HUMAN Vezatin, adherens junctions transmembrane protein VEZT cell-cell adhesion [GO:0098609] -F8W048 unreviewed F8W048_HUMAN Vezatin, adherens junctions transmembrane protein VEZT cell-cell adhesion [GO:0098609] -F8W088 unreviewed F8W088_HUMAN Vezatin, adherens junctions transmembrane protein VEZT cell-cell adhesion [GO:0098609] -F8W0S0 unreviewed F8W0S0_HUMAN Vezatin, adherens junctions transmembrane protein VEZT cell-cell adhesion [GO:0098609] -F8W7G1 unreviewed F8W7G1_HUMAN CD200 molecule CD200 -F8WC99 unreviewed F8WC99_HUMAN CD200 molecule CD200 negative regulation of macrophage activation [GO:0043031]; regulation of immune response [GO:0050776] -F8WDW9 unreviewed F8WDW9_HUMAN Endothelial cell adhesion molecule ESAM cell-cell adhesion [GO:0098609] -F8WEX3 unreviewed F8WEX3_HUMAN CD200 molecule CD200 -F8WF00 unreviewed F8WF00_HUMAN Cadherin related family member 3 CDHR3 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -G0ZI12 unreviewed G0ZI12_HUMAN Vascular cell adhesion molecule 1 VCAM1 cell-cell adhesion [GO:0098609] -G1UI20 unreviewed G1UI20_HUMAN Receptor-type tyrosine-protein phosphatase F PTPRF axon guidance [GO:0007411]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -G1UI21 unreviewed G1UI21_HUMAN Talin-2 TLN2 cell-cell adhesion [GO:0098609] -H0Y7R9 unreviewed H0Y7R9_HUMAN Cadherin EGF LAG seven-pass G-type receptor 1 CELSR1 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -H0Y9F5 unreviewed H0Y9F5_HUMAN Protocadherin 1 PCDH1 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -H0YAK3 unreviewed H0YAK3_HUMAN Cadherin 18 CDH18 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -H0YBL0 unreviewed H0YBL0_HUMAN Cadherin 17 CDH17 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -H0YEY5 unreviewed H0YEY5_HUMAN Plakophilin 3 PKP3 cell-cell adhesion [GO:0098609] -H3BNC6 unreviewed H3BNC6_HUMAN Cadherin 1 CDH1 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -H3BQH2 unreviewed H3BQH2_HUMAN Cadherin 11 CDH11 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -H3BSG2 unreviewed H3BSG2_HUMAN Cadherin 16 CDH16 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -H3BSV3 unreviewed H3BSV3_HUMAN Cadherin 16 CDH16 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -H3BVI7 unreviewed H3BVI7_HUMAN Cadherin 1 CDH1 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -H7BY79 unreviewed H7BY79_HUMAN Cadherin 26 CDH26 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -H7C548 unreviewed H7C548_HUMAN Cadherin related family member 3 CDHR3 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -H7C555 unreviewed H7C555_HUMAN Cadherin related family member 3 CDHR3 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -I3L418 unreviewed I3L418_HUMAN Cadherin 16 CDH16 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -J3KRI5 unreviewed J3KRI5_HUMAN Cadherin 8 CDH8 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -J3KSI6 unreviewed J3KSI6_HUMAN Desmoglein 2 DSG2 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -J3KTG8 unreviewed J3KTG8_HUMAN Cadherin 8 CDH8 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -J3KTP3 unreviewed J3KTP3_HUMAN Cadherin 19 CDH19 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -J3QKP1 unreviewed J3QKP1_HUMAN Cadherin 1 CDH1 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -J3QKR4 unreviewed J3QKR4_HUMAN Intercellular adhesion molecule 2 ICAM2 cell-cell adhesion [GO:0098609] -J3QKW5 unreviewed J3QKW5_HUMAN Cadherin 8 CDH8 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -J3QL41 unreviewed J3QL41_HUMAN Cadherin 3 CDH3 cell-cell adhesion [GO:0098609] -J3QLA1 unreviewed J3QLA1_HUMAN Cadherin 16 CDH16 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -J3QLE6 unreviewed J3QLE6_HUMAN Cadherin 8 CDH8 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -J3QQR8 unreviewed J3QQR8_HUMAN Intercellular adhesion molecule 2 ICAM2 cell-cell adhesion [GO:0098609] -J3QQX6 unreviewed J3QQX6_HUMAN Intercellular adhesion molecule 2 ICAM2 cell-cell adhesion [GO:0098609] -J3QR60 unreviewed J3QR60_HUMAN Cadherin 3 CDH3 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -J3QRQ1 unreviewed J3QRQ1_HUMAN Intercellular adhesion molecule 2 ICAM2 cell-cell adhesion [GO:0098609] -K7EKL8 unreviewed K7EKL8_HUMAN Intercellular adhesion molecule 1 ICAM1 cell-cell adhesion [GO:0098609] -O15199 unreviewed O15199_HUMAN Cadherin ME1 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -O15200 unreviewed O15200_HUMAN Cadherin ME2 calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0016339]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -O15201 unreviewed O15201_HUMAN Cadherin ME3 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -O15202 unreviewed O15202_HUMAN Cadherin ME4 cell adhesion [GO:0007155]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -O15203 unreviewed O15203_HUMAN Cadherin ME6 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -O95645 unreviewed O95645_HUMAN Ps1ly2h-25 protein ps1ly2h-25 cell-cell adhesion [GO:0098609]; cell-cell junction assembly [GO:0007043] -Q0MVN7 unreviewed Q0MVN7_HUMAN Integrin subunit aIIb angiogenesis [GO:0001525]; cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -Q12811 unreviewed Q12811_HUMAN Pregnancy-specific beta-1-glycoprotein PSGII female pregnancy [GO:0007565]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157] -Q12813 unreviewed Q12813_HUMAN AI-like domain, CEA gene family member heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157] -Q13682 unreviewed Q13682_HUMAN Alpha-4 integrin ITGA4 cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -Q13984 unreviewed Q13984_HUMAN CEA protein CEA heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157] -Q14732 unreviewed Q14732_HUMAN Epiligrin alpha 3 subunit LamA3 animal organ morphogenesis [GO:0009887]; cell migration [GO:0016477]; cell-cell adhesion [GO:0098609]; morphogenesis of a polarized epithelium [GO:0001738] -Q15106 unreviewed Q15106_HUMAN Pregnancy-specific beta-1 glycoprotein PSG1 female pregnancy [GO:0007565]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157] -Q15107 unreviewed Q15107_HUMAN Pregnancy-specific beta-1 glycoprotein PSG1 female pregnancy [GO:0007565]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157] -Q15108 unreviewed Q15108_HUMAN Pregnancy-specific beta-1 glycoprotein PSG1 female pregnancy [GO:0007565]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157] -Q15226 unreviewed Q15226_HUMAN Pregnancy-specific beta-1 glycoprotein female pregnancy [GO:0007565]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157] -Q15230 unreviewed Q15230_HUMAN Pregnancy-specific beta-1 glycoprotein PSG1 female pregnancy [GO:0007565]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157] -Q15402 unreviewed Q15402_HUMAN Pregnancy-specific protein PSG1 defense response [GO:0006952]; female pregnancy [GO:0007565]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157] -Q15462 unreviewed Q15462_HUMAN Cell surface glycoprotein P3.58 cell-cell adhesion [GO:0098609] -Q15879 unreviewed Q15879_HUMAN Tyrosine-protein kinase receptor TYRO3 cell migration [GO:0016477]; cell surface receptor protein tyrosine kinase signaling pathway [GO:0007169]; nervous system development [GO:0007399]; platelet aggregation [GO:0070527] -Q16343 unreviewed Q16343_HUMAN Protein-tyrosine phosphatase BPTP-2 synaptic membrane adhesion [GO:0099560] -Q1RMC8 unreviewed Q1RMC8_HUMAN ROBO1 protein ROBO1 axon midline choice point recognition [GO:0016199]; cell-cell adhesion [GO:0098609]; Roundabout signaling pathway [GO:0035385] -Q2F834 unreviewed Q2F834_HUMAN Myosin regulatory light chain platelet aggregation [GO:0070527] -Q2M1J3 unreviewed Q2M1J3_HUMAN ROBO1 protein ROBO1 axon midline choice point recognition [GO:0016199]; cell-cell adhesion [GO:0098609]; Roundabout signaling pathway [GO:0035385] -Q2M3R2 unreviewed Q2M3R2_HUMAN Protocadherin beta 3 PCDHB3 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q308M3 unreviewed Q308M3_HUMAN Protein tyrosine phosphatase receptor type F homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synapse organization [GO:0050808] -Q32P55 unreviewed Q32P55_HUMAN CDH23 protein CDH23 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q3SY74 unreviewed Q3SY74_HUMAN Protocadherin gamma subfamily B, 1 PCDHGB1 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q496M3 unreviewed Q496M3_HUMAN AMICA1 protein AMICA1 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; monocyte extravasation [GO:0035696]; neutrophil chemotaxis [GO:0030593]; neutrophil extravasation [GO:0072672] -Q496P1 unreviewed Q496P1_HUMAN XG protein XG homotypic cell-cell adhesion [GO:0034109]; positive regulation of neutrophil extravasation [GO:2000391]; T cell extravasation [GO:0072683] -Q49AK4 unreviewed Q49AK4_HUMAN DCC protein DCC axon guidance [GO:0007411]; cell-cell adhesion [GO:0098609]; neuron migration [GO:0001764] -Q4KMG6 unreviewed Q4KMG6_HUMAN Protocadherin beta 2 PCDHB2 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q4KMG7 unreviewed Q4KMG7_HUMAN Protocadherin beta 7 PCDHB7 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q4KMQ7 unreviewed Q4KMQ7_HUMAN NRCAM protein NRCAM axon guidance [GO:0007411]; brain development [GO:0007420] -Q4W5A6 unreviewed Q4W5A6_HUMAN Uncharacterized protein KIAA0992 KIAA0992 axon guidance [GO:0007411]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q4W5Q0 unreviewed Q4W5Q0_HUMAN Uncharacterized protein DKFZp566D234 DKFZp566D234 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synapse organization [GO:0050808] -Q52LL2 unreviewed Q52LL2_HUMAN Protocadherin gamma subfamily A, 10 PCDHGA10 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q53F51 unreviewed Q53F51_HUMAN FGF intracellular binding protein isoform b variant platelet aggregation [GO:0070527] -Q53FL7 unreviewed Q53FL7_HUMAN Vascular cell adhesion molecule 1 isoform a variant cell-cell adhesion [GO:0098609] -Q53HA3 unreviewed Q53HA3_HUMAN Protocadherin beta 7 PCDHB7 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q53HL1 unreviewed Q53HL1_HUMAN Myosin regulatory light chain MRCL3 variant platelet aggregation [GO:0070527] -Q53HM0 unreviewed Q53HM0_HUMAN Protocadherin beta 7 variant homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q53QW0 unreviewed Q53QW0_HUMAN Uncharacterized protein MERTK MERTK axon guidance [GO:0007411]; brain development [GO:0007420] -Q53RZ1 unreviewed Q53RZ1_HUMAN Uncharacterized protein LIMS2 LIMS2 cell-cell adhesion [GO:0098609]; cell-cell junction organization [GO:0045216]; positive regulation of integrin-mediated signaling pathway [GO:2001046]; positive regulation of substrate adhesion-dependent cell spreading [GO:1900026] -Q59ED3 unreviewed Q59ED3_HUMAN Intercellular adhesion molecule 2 variant cell-cell adhesion [GO:0098609] -Q59ER6 unreviewed Q59ER6_HUMAN Protocadherin beta 2 variant homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q59FR6 unreviewed Q59FR6_HUMAN Protocadherin beta 5 variant homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q59FV9 unreviewed Q59FV9_HUMAN PTK7 protein tyrosine kinase 7 isoform a variant homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synapse organization [GO:0050808] -Q59G84 unreviewed Q59G84_HUMAN Protocadherin beta 11 variant homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q59GA4 unreviewed Q59GA4_HUMAN Protocadherin alpha 6 isoform 2 variant homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q59H00 unreviewed Q59H00_HUMAN Protocadherin beta 9 variant homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q59H01 unreviewed Q59H01_HUMAN Protocadherin gamma subfamily A, 7 isoform 1 variant homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q59H34 unreviewed Q59H34_HUMAN Protocadherin alpha 4 isoform 1 variant homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q5DTC5 unreviewed Q5DTC5_HUMAN Dendritic-cell specific protein CREA7-4 CREA7-4 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; monocyte extravasation [GO:0035696]; neutrophil chemotaxis [GO:0030593]; neutrophil extravasation [GO:0072672] -Q68DA2 unreviewed Q68DA2_HUMAN Uncharacterized protein DKFZp781D102 DKFZp781D102 axon guidance [GO:0007411]; brain development [GO:0007420] -Q6IPL6 unreviewed Q6IPL6_HUMAN LRFN4 protein LRFN4 regulation of postsynaptic density assembly [GO:0099151]; regulation of presynapse assembly [GO:1905606]; synaptic membrane adhesion [GO:0099560] -Q6MZQ3 unreviewed Q6MZQ3_HUMAN Uncharacterized protein DKFZp686L03130 DKFZp686L03130 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synapse organization [GO:0050808] -Q6P152 unreviewed Q6P152_HUMAN CDH23 protein CDH23 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q6S4P6 unreviewed Q6S4P6_HUMAN Prostate cancer FAT3 FAT3 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q6V1P8 unreviewed Q6V1P8_HUMAN Protocadherin protein PCDHJ homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q6ZRK5 unreviewed Q6ZRK5_HUMAN cDNA FLJ46283 fis, clone TESTI4031173 axon guidance [GO:0007411]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q6ZRS5 unreviewed Q6ZRS5_HUMAN cDNA FLJ46139 fis, clone TESTI2052670, weakly similar to Basement membrane-specific heparan sulfate proteoglycan core protein axon guidance [GO:0007411]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q6ZS88 unreviewed Q6ZS88_HUMAN cDNA FLJ45736 fis, clone JCMLC2002095, weakly similar to P-selectin glycoprotein ligand 1 leukocyte tethering or rolling [GO:0050901] -Q75ML9 unreviewed Q75ML9_HUMAN Uncharacterized protein NRCAM NRCAM axon guidance [GO:0007411]; brain development [GO:0007420] -Q7L8P5 unreviewed Q7L8P5_HUMAN Uncharacterized protein DKFZp586L0518 DKFZp586L0518 axon guidance [GO:0007411]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q7Z2J9 unreviewed Q7Z2J9_HUMAN L1 cell adhesion molecule L1CAM axon guidance [GO:0007411]; brain development [GO:0007420] -Q7Z2Z5 unreviewed Q7Z2Z5_HUMAN Uncharacterized protein DKFZp686P23184 DKFZp686P23184 cell-cell adhesion [GO:0098609] -Q7Z4I3 unreviewed Q7Z4I3_HUMAN LIM-like protein 2F cell-cell adhesion [GO:0098609]; cell-cell junction organization [GO:0045216]; positive regulation of integrin-mediated signaling pathway [GO:2001046]; positive regulation of substrate adhesion-dependent cell spreading [GO:1900026] -Q7Z4I4 unreviewed Q7Z4I4_HUMAN LIM-like protein 2E cell-cell adhesion [GO:0098609]; cell-cell junction organization [GO:0045216]; positive regulation of integrin-mediated signaling pathway [GO:2001046]; positive regulation of substrate adhesion-dependent cell spreading [GO:1900026] -Q7Z4I5 unreviewed Q7Z4I5_HUMAN LIM-like protein 2D cell-cell adhesion [GO:0098609]; cell-cell junction organization [GO:0045216]; positive regulation of integrin-mediated signaling pathway [GO:2001046]; positive regulation of substrate adhesion-dependent cell spreading [GO:1900026] -Q86SE4 unreviewed Q86SE4_HUMAN L1 cell adhesion molecule L1CAM homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; synapse organization [GO:0050808] -Q8IUA2 unreviewed Q8IUA2_HUMAN Integrin alpha-4 subunit IA4 cell adhesion mediated by integrin [GO:0033627]; cell-cell adhesion [GO:0098609]; cell-matrix adhesion [GO:0007160]; integrin-mediated signaling pathway [GO:0007229] -Q8IUS9 unreviewed Q8IUS9_HUMAN HCG1992264, isoform CRA_a (PLEKHA7 protein) PLEKHA7 hCG_1992264 cell-cell adhesion mediated by cadherin [GO:0044331]; epithelial cell-cell adhesion [GO:0090136]; pore complex assembly [GO:0046931]; zonula adherens maintenance [GO:0045218] -Q8N1Z7 unreviewed Q8N1Z7_HUMAN cDNA FLJ36499 fis, clone THYMU2019197, weakly similar to Homo sapiens FLAMINGO 1 mRNA homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q8N5B3 unreviewed Q8N5B3_HUMAN CDH23 protein (Cadherin related 23) CDH23 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q8N6I2 unreviewed Q8N6I2_HUMAN ICAM5 protein ICAM5 cell-cell adhesion [GO:0098609] -Q8N7W7 unreviewed Q8N7W7_HUMAN cDNA FLJ40259 fis, clone TESTI2025486 cell-cell adhesion [GO:0098609] -Q8NCE6 unreviewed Q8NCE6_HUMAN cDNA FLJ90299 fis, clone NT2RP2000514, highly similar to Homo sapiens roundabout 2 (robo2) mRNA cell-cell adhesion [GO:0098609] -Q8NDD4 unreviewed Q8NDD4_HUMAN Uncharacterized protein DKFZp586I1919 DKFZp586I1919 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; nervous system development [GO:0007399] -Q8WXR2 unreviewed Q8WXR2_HUMAN Nectin-1 PVRL1 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; protein localization to cell junction [GO:1902414] -Q8WXR3 unreviewed Q8WXR3_HUMAN Nectin-1 PVRL1 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156]; protein localization to cell junction [GO:1902414] -Q8WYY6 unreviewed Q8WYY6_HUMAN Ig-like domain-containing protein heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157] -Q96BL7 unreviewed Q96BL7_HUMAN ASTN1 protein ASTN1 neuron cell-cell adhesion [GO:0007158]; neuron migration [GO:0001764] -Q96T98 unreviewed Q96T98_HUMAN Protocadherin-psi1 PCDH-psi1 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q9BTX6 unreviewed Q9BTX6_HUMAN RET protein RET homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q9H349 unreviewed Q9H349_HUMAN D-cadherin homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q9H6J4 unreviewed Q9H6J4_HUMAN cDNA: FLJ22218 fis, clone HRC01636 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q9HAX1 unreviewed Q9HAX1_HUMAN Desmocollin 3 DSC3 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q9NRU0 unreviewed Q9NRU0_HUMAN Cadherin-like protein VR8 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q9NT87 unreviewed Q9NT87_HUMAN Uncharacterized protein DKFZp434B0923 DKFZp434B0923 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q9NWG2 unreviewed Q9NWG2_HUMAN cDNA FLJ10044 fis, clone HEMBA1001088, moderately similar to PINCH PROTEIN cell-cell adhesion [GO:0098609]; cell-cell junction organization [GO:0045216]; positive regulation of integrin-mediated signaling pathway [GO:2001046]; positive regulation of substrate adhesion-dependent cell spreading [GO:1900026] -Q9UFG9 unreviewed Q9UFG9_HUMAN Uncharacterized protein DKFZp434P2350 DKFZp434P2350 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q9UMH8 unreviewed Q9UMH8_HUMAN Pregnancy-specific glycoprotein PSG11 female pregnancy [GO:0007565]; heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157] -Q9UML9 unreviewed Q9UML9_HUMAN CEA protein CEA heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules [GO:0007157] -Q9Y499 unreviewed Q9Y499_HUMAN Homo sapiens clone 23742 axon guidance [GO:0007411]; dendrite self-avoidance [GO:0070593]; homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -Q9Y4A1 unreviewed Q9Y4A1_HUMAN Talin-related protein platelet aggregation [GO:0070527] -R4GN92 unreviewed R4GN92_HUMAN Cadherin related 23 CDH23 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -U3KQG5 unreviewed U3KQG5_HUMAN CD200 molecule CD200 negative regulation of macrophage activation [GO:0043031]; regulation of immune response [GO:0050776] -U3KQQ2 unreviewed U3KQQ2_HUMAN CD200 molecule CD200 -X2G5I7 unreviewed X2G5I7_HUMAN Protocadherin FAT4 FAT4 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -X2G756 unreviewed X2G756_HUMAN Protocadherin FAT4 FAT4 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] -X6R3Y6 unreviewed X6R3Y6_HUMAN Cadherin 8 CDH8 homophilic cell adhesion via plasma membrane adhesion molecules [GO:0007156] diff --git a/hiv-benchmarking/requirements.txt b/hiv-benchmarking/requirements.txt deleted file mode 100644 index a6dbd79..0000000 --- a/hiv-benchmarking/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -Bio==1.7.1 -biopython==1.84 -matplotlib==3.8.0 -numpy==1.24.4 -pandas==1.5.3 -Requests==2.32.3 -scikit-learn==1.2.2 -setuptools==70.1.1 diff --git a/hiv-benchmarking/spras-config/config.yaml b/hiv-benchmarking/spras-config/config.yaml deleted file mode 100644 index 22de23e..0000000 --- a/hiv-benchmarking/spras-config/config.yaml +++ /dev/null @@ -1,114 +0,0 @@ -# Global workflow control - -# The length of the hash used to identify a parameter combination -hash_length: 7 - -# Specify the container framework. Current supported versions include 'docker' and -# 'singularity'. If container_framework is not specified, SPRAS will default to docker. -container_framework: docker - -# Only used if container_framework is set to singularity, this will unpack the singularity containers -# to the local filesystem. This is useful when PRM containers need to run inside another container, -# such as would be the case in an HTCondor/OSPool environment. -# NOTE: This unpacks singularity containers to the local filesystem, which will take up space in a way -# that persists after the workflow is complete. To clean up the unpacked containers, the user must -# manually delete them. -unpack_singularity: false - -# Allow the user to configure which container registry containers should be pulled from -# Note that this assumes container names are consistent across registries, and that the -# registry being passed doesn't require authentication for pull actions -container_registry: - base_url: docker.io - # The owner or project of the registry - # For example, "reedcompbio" if the image is available as docker.io/reedcompbio/allpairs - owner: reedcompbio - -# This list of algorithms should be generated by a script which checks the filesystem for installs. -# It shouldn't be changed by mere mortals. (alternatively, we could add a path to executable for each algorithm -# in the list to reduce the number of assumptions of the program at the cost of making the config a little more involved) -# Each algorithm has an 'include' parameter. By toggling 'include' to true/false the user can change -# which algorithms are run in a given experiment. -# -# algorithm-specific parameters are embedded in lists so that users can specify multiple. If multiple -# parameters are specified then the algorithm will be run as many times as needed to cover all parameter -# combinations. For instance if we have the following: -# - name: "myAlg" -# params: -# include: true -# a: [1,2] -# b: [0.5,0.75] -# -# then myAlg will be run on (a=1,b=0.5),(a=1,b=0.75),(a=2,b=0.5), and (a=2,b=0,75). Pretty neat, but be -# careful: too many parameters might make your runs take a long time. - -algorithms: - - name: "omicsintegrator1" - params: - include: true - run1: - b: np.linspace(0,5,5) - w: np.linspace(0,1.5,5) - d: [10] - mu: np.linspace(0,0.9,4) - -# Here we specify which pathways to run and other file location information. -# DataLoader.py can currently only load a single dataset -# Assume that if a dataset label does not change, the lists of associated input files do not change -datasets: - - - label: hiv060 - node_files: ["modified_prize_060.txt"] - # DataLoader.py can currently only load a single edge file, which is the primary network - edge_files: ["phosphosite-irefindex13.0-uniprot.txt"] - # Placeholder - other_files: [] - # Relative path from the spras directory - data_dir: "input" - - - label: hiv05 - node_files: ["modified_prize_05.txt"] - edge_files: ["phosphosite-irefindex13.0-uniprot.txt"] - other_files: [] - data_dir: "input" - -# If we want to reconstruct then we should set run to true. -# TODO: if include is true above but run is false here, algs are not run. -# is this the behavior we want? -reconstruction_settings: - - #set where everything is saved - locations: - - #place the save path here - # TODO move to global - reconstruction_dir: "output" - - run: true - -analysis: - # Create one summary per pathway file and a single summary table for all pathways for each dataset - summary: - include: true - # Create output files for each pathway that can be visualized with GraphSpace - graphspace: - include: true - # Create Cytoscape session file with all pathway graphs for each dataset - cytoscape: - include: true - # Machine learning analysis (e.g. clustering) of the pathway output files for each dataset - ml: - # ml analysis per dataset - include: true - # adds ml analysis per algorithm output - # only runs for algorithms with multiple parameter combinations chosen - aggregate_per_algorithm: true - # specify how many principal components to calculate - components: 2 - # boolean to show the labels on the pca graph - labels: true - # 'ward', 'complete', 'average', 'single' - # if linkage: ward, must use metric: euclidean - linkage: 'ward' - # 'euclidean', 'manhattan', 'cosine' - metric: 'euclidean' diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-cytoscape.cys b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-cytoscape.cys deleted file mode 100644 index 00474bd..0000000 Binary files a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-cytoscape.cys and /dev/null differ diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-merged.pickle b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-merged.pickle deleted file mode 100644 index d3ed8d4..0000000 Binary files a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-merged.pickle and /dev/null differ diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/ensemble-pathway.txt b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/ensemble-pathway.txt deleted file mode 100644 index 43ae2d9..0000000 --- a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/ensemble-pathway.txt +++ /dev/null @@ -1,1421 +0,0 @@ -Node1 Node2 Frequency Direction -1433B_HUMAN L7RRS6_HUMAN 0.16 U -1433B_HUMAN WEE1_HUMAN 0.16 U -1433E_HUMAN HDAC4_HUMAN 0.16 U -1433E_HUMAN KIF1C_HUMAN 0.16 U -1433E_HUMAN L7RRS6_HUMAN 0.16 U -1433G_HUMAN CDK17_HUMAN 0.16 U -1433G_HUMAN CLAP1_HUMAN 0.16 U -1433G_HUMAN CLK3_HUMAN 0.16 U -1433G_HUMAN DYR1A_HUMAN 0.16 U -1433G_HUMAN EDC3_HUMAN 0.16 U -1433G_HUMAN KIF1B_HUMAN 0.16 U -1433G_HUMAN L7RRS6_HUMAN 0.16 U -1433G_HUMAN LC7L2_HUMAN 0.16 U -1433G_HUMAN LIPB1_HUMAN 0.16 U -1433G_HUMAN NGAP_HUMAN 0.16 U -1433G_HUMAN NOLC1_HUMAN 0.16 U -1433G_HUMAN OSBL3_HUMAN 0.16 U -1433G_HUMAN PR38B_HUMAN 0.16 U -1433G_HUMAN SRS10_HUMAN 0.16 U -1433G_HUMAN TR150_HUMAN 0.16 U -1433G_HUMAN TRA2A_HUMAN 0.16 U -1433T_HUMAN CBL_HUMAN 0.16 U -1433T_HUMAN J3KPH8_HUMAN 0.16 U -1433T_HUMAN PI4KB_HUMAN 0.16 U -2A5A_HUMAN 2AAB_HUMAN 0.16 U -2A5E_HUMAN 2AAB_HUMAN 0.16 U -2AAB_HUMAN B3KUN1_HUMAN 0.16 U -4EBP1_HUMAN IF4E_HUMAN 0.16 U -4EBP1_HUMAN RPTOR_HUMAN 0.16 U -4EBP2_HUMAN IF4E_HUMAN 0.16 U -4EBP3_HUMAN IF4E_HUMAN 0.16 U -A2RUM7_HUMAN MDM2_HUMAN 0.12 U -A2RUM7_HUMAN N0E4C7_HUMAN 0.16 U -A4QPA9_HUMAN L7RRS6_HUMAN 0.16 U -A4QPA9_HUMAN M3K1_HUMAN 0.04 U -A4QPA9_HUMAN MK01_HUMAN 0.16 U -A8K3Y2_HUMAN M3K7_HUMAN 0.16 U -A8K3Y2_HUMAN MK14_HUMAN 0.16 U -AAK1_HUMAN NUMB_HUMAN 0.16 D -AAPK1_HUMAN AAKB1_HUMAN 0.16 D -AAPK1_HUMAN ACACA_HUMAN 0.16 D -AAPK1_HUMAN GBF1_HUMAN 0.16 D -AAPK1_HUMAN HS90A_HUMAN 0.04 U -AAPK1_HUMAN IMA1_HUMAN 0.16 D -ABL1_HUMAN ABL2_HUMAN 0.16 D -ABL1_HUMAN ATR_HUMAN 0.16 D -ABL1_HUMAN L7RT18_HUMAN 0.16 U -ACTB_HUMAN EMD_HUMAN 0.16 U -ADRM1_HUMAN PSMD2_HUMAN 0.16 U -AF9_HUMAN CDK9_HUMAN 0.08 U -AF9_HUMAN DOT1L_HUMAN 0.16 U -AFF4_HUMAN CDK9_HUMAN 0.16 U -AKA10_HUMAN B2R5T5_HUMAN 0.16 U -AKAP1_HUMAN B2R5T5_HUMAN 0.16 U -AKT1_HUMAN ACAP1_HUMAN 0.16 D -AKT1_HUMAN ACINU_HUMAN 0.04 D -AKT1_HUMAN AGAP2_HUMAN 0.04 D -AKT1_HUMAN CHSP1_HUMAN 0.16 D -AKT1_HUMAN FYV1_HUMAN 0.16 D -AKT1_HUMAN GRDN_HUMAN 0.16 D -AKT1_HUMAN HD_HUMAN 0.04 D -AKT1_HUMAN MTOR_HUMAN 0.16 U -AKT1_HUMAN PEA15_HUMAN 0.16 D -AKT1_HUMAN PHF20_HUMAN 0.16 D -AKT1_HUMAN TBCD4_HUMAN 0.16 D -AKT1_HUMAN TERA_HUMAN 0.04 D -AKT1_HUMAN WNK1_HUMAN 0.16 D -AN32A_HUMAN H31_HUMAN 0.16 U -APC1_HUMAN B4DL80_HUMAN 0.16 U -APTX_HUMAN XRCC1_HUMAN 0.16 U -ARHG7_HUMAN GIT1_HUMAN 0.08 U -ARHG7_HUMAN PAK1_HUMAN 0.16 U -ATF2_HUMAN JUN_HUMAN 0.16 U -ATM_HUMAN BAG6_HUMAN 0.16 D -ATM_HUMAN BRCA1_HUMAN 0.12 D -ATM_HUMAN DBF4A_HUMAN 0.16 D -ATM_HUMAN MCM3_HUMAN 0.04 D -ATM_HUMAN PRKDC_HUMAN 0.16 D -ATM_HUMAN RIF1_HUMAN 0.16 D -ATM_HUMAN SLX4_HUMAN 0.16 D -ATM_HUMAN SMC1A_HUMAN 0.16 D -ATM_HUMAN UBR5_HUMAN 0.16 D -ATN1_HUMAN MTG8_HUMAN 0.16 U -ATN1_HUMAN RERE_HUMAN 0.16 U -ATRX_HUMAN DAXX_HUMAN 0.16 U -ATR_HUMAN CNOT2_HUMAN 0.16 D -ATR_HUMAN F5H0R1_HUMAN 0.16 D -ATR_HUMAN FACD2_HUMAN 0.16 D -ATR_HUMAN MRP_HUMAN 0.16 D -ATR_HUMAN PSF2_HUMAN 0.16 D -AURKB_HUMAN ATM_HUMAN 0.16 D -AURKB_HUMAN DSN1_HUMAN 0.16 D -AURKB_HUMAN H33_HUMAN 0.16 D -AURKB_HUMAN SUMO1_HUMAN 0.16 U -AXIN1_HUMAN CTNB1_HUMAN 0.16 U -AXIN1_HUMAN GSK3B_HUMAN 0.16 U -B0LPE5_HUMAN B3KUN1_HUMAN 0.16 U -B0LPE5_HUMAN GSK3B_HUMAN 0.16 U -B0LPE5_HUMAN MDM2_HUMAN 0.16 U -B0LPE5_HUMAN MTOR_HUMAN 0.16 U -B2CL2_HUMAN BAD_HUMAN 0.16 U -B2R4R0_HUMAN BPTF_HUMAN 0.16 U -B2R4R0_HUMAN CENPA_HUMAN 0.16 U -B2R4R0_HUMAN EP300_HUMAN 0.16 U -B2R4R0_HUMAN SMCA5_HUMAN 0.16 U -B2R5T5_HUMAN KAPCA_HUMAN 0.16 U -B2RBV7_HUMAN CAND1_HUMAN 0.04 U -B2RBV7_HUMAN DDB1_HUMAN 0.16 U -B2RBV7_HUMAN PHIP_HUMAN 0.16 U -B3KUN1_HUMAN IGBP1_HUMAN 0.16 U -B4DL80_HUMAN CDC20_HUMAN 0.16 U -B4DPT1_HUMAN KMT2C_HUMAN 0.16 U -B4DPT1_HUMAN WDR5_HUMAN 0.16 U -B4DQB3_HUMAN NCOA1_HUMAN 0.16 U -B4DQB3_HUMAN SND1_HUMAN 0.16 U -B7Z3D6_HUMAN CCNB1_HUMAN 0.16 U -B7Z3D6_HUMAN H15_HUMAN 0.16 U -B7Z3D6_HUMAN RB_HUMAN 0.08 U -BAD_HUMAN D0PNI1_HUMAN 0.12 U -BAZ1B_HUMAN SMCA5_HUMAN 0.16 U -BICD1_HUMAN GSK3B_HUMAN 0.16 U -BIRC5_HUMAN BOREA_HUMAN 0.12 U -BLM_HUMAN MLH1_HUMAN 0.16 U -BLM_HUMAN P53_HUMAN 0.16 U -BMI1_HUMAN CBX8_HUMAN 0.16 U -BMI1_HUMAN RING2_HUMAN 0.16 U -BOREA_HUMAN INCE_HUMAN 0.24 U -BRAP_HUMAN RASH_HUMAN 0.16 U -BRCA1_HUMAN FANCJ_HUMAN 0.16 U -BRCA1_HUMAN MYC_HUMAN 0.08 U -BRCA2_HUMAN RAD51_HUMAN 0.16 U -BRPF1_HUMAN KAT6A_HUMAN 0.24 U -BTF3_HUMAN G4XH65_HUMAN 0.16 U -BUD13_HUMAN RBMX2_HUMAN 0.32 U -CAF1A_HUMAN PCNA_HUMAN 0.16 U -CAF1B_HUMAN H31_HUMAN 0.16 U -CAND1_HUMAN CUL1_HUMAN 0.04 U -CAND1_HUMAN CUL4A_HUMAN 0.04 U -CASP3_HUMAN CH60_HUMAN 0.16 U -CASP3_HUMAN XIAP_HUMAN 0.16 U -CASP9_HUMAN XIAP_HUMAN 0.04 U -CBL_HUMAN CD2AP_HUMAN 0.16 U -CBL_HUMAN CRKL_HUMAN 0.16 U -CBL_HUMAN EGFR_HUMAN 0.16 U -CBL_HUMAN L7RT18_HUMAN 0.16 U -CBL_HUMAN NCK1_HUMAN 0.16 U -CBL_HUMAN P85A_HUMAN 0.16 U -CBL_HUMAN PLCG1_HUMAN 0.16 U -CBL_HUMAN UB2D2_HUMAN 0.16 U -CBX1_HUMAN EMSY_HUMAN 0.16 U -CBX1_HUMAN H31_HUMAN 0.16 U -CBX5_HUMAN H31_HUMAN 0.16 U -CBX5_HUMAN LBR_HUMAN 0.16 U -CBX5_HUMAN NIPBL_HUMAN 0.16 U -CBX5_HUMAN TIF1B_HUMAN 0.16 U -CBX8_HUMAN MOV10_HUMAN 0.16 U -CCAR2_HUMAN SIR1_HUMAN 0.16 U -CCDC6_HUMAN PP4C_HUMAN 0.16 U -CCNB1_HUMAN CCNF_HUMAN 0.04 U -CCNB1_HUMAN CDC20_HUMAN 0.16 U -CCNT1_HUMAN CDK9_HUMAN 0.16 U -CD2A2_HUMAN MDM2_HUMAN 0.16 U -CD2A2_HUMAN TRIPC_HUMAN 0.16 U -CD2AP_HUMAN MB12A_HUMAN 0.16 U -CD3E_HUMAN NCK1_HUMAN 0.16 U -CD3Z_HUMAN ZAP70_HUMAN 0.16 U -CD7_HUMAN P85A_HUMAN 0.16 U -CDC20_HUMAN PTTG1_HUMAN 0.16 U -CDC42_HUMAN GDIR1_HUMAN 0.12 U -CDC42_HUMAN PAK1_HUMAN 0.12 U -CDC42_HUMAN PAK4_HUMAN 0.12 U -CDC42_HUMAN WASP_HUMAN 0.12 U -CDC73_HUMAN CTNB1_HUMAN 0.16 U -CDC73_HUMAN LEO1_HUMAN 0.16 U -CDC7_HUMAN DBF4A_HUMAN 0.16 U -CDC7_HUMAN MCM2_HUMAN 0.16 D -CDC7_HUMAN PSIP1_HUMAN 0.16 D -CDK1_HUMAN DDX3X_HUMAN 0.16 D -CDK1_HUMAN ECT2_HUMAN 0.16 D -CDK1_HUMAN FOXK2_HUMAN 0.16 D -CDK1_HUMAN NPM_HUMAN 0.16 D -CDK1_HUMAN NUP98_HUMAN 0.16 D -CDK2_HUMAN ARI4A_HUMAN 0.16 D -CDK2_HUMAN ASHWN_HUMAN 0.16 D -CDK2_HUMAN BD1L1_HUMAN 0.16 D -CDK2_HUMAN DNLI1_HUMAN 0.16 D -CDK2_HUMAN H15_HUMAN 0.16 U -CDK2_HUMAN HIRA_HUMAN 0.16 D -CDK2_HUMAN NU133_HUMAN 0.16 D -CDK2_HUMAN P5CR2_HUMAN 0.16 D -CDK2_HUMAN PB1_HUMAN 0.16 D -CDK2_HUMAN TB182_HUMAN 0.04 D -CDK2_HUMAN TCOF_HUMAN 0.16 D -CDK9_HUMAN DHX30_HUMAN 0.16 U -CDK9_HUMAN ELL2_HUMAN 0.16 U -CDK9_HUMAN MYC_HUMAN 0.08 U -CDK9_HUMAN SPT5H_HUMAN 0.16 D -CENPA_HUMAN HJURP_HUMAN 0.16 U -CFTR_HUMAN NHRF1_HUMAN 0.12 U -CHD4_HUMAN HDAC1_HUMAN 0.16 U -CHIP_HUMAN HS90A_HUMAN 0.16 U -CHIP_HUMAN P53_HUMAN 0.08 U -CHIP_HUMAN UBE2N_HUMAN 0.08 U -CIR1_HUMAN SRSF2_HUMAN 0.16 U -CND2_HUMAN SMC2_HUMAN 0.08 U -CNOT2_HUMAN CNOT3_HUMAN 0.2 U -CNOT4_HUMAN UB2D2_HUMAN 0.16 U -COASY_HUMAN KS6B1_HUMAN 0.16 U -COMD1_HUMAN COMD6_HUMAN 0.16 U -COMD1_HUMAN CUL2_HUMAN 0.16 U -CSK21_HUMAN AN32B_HUMAN 0.16 D -CSK21_HUMAN CD5_HUMAN 0.16 D -CSK21_HUMAN N0E4C7_HUMAN 0.16 U -CSK21_HUMAN PRPF3_HUMAN 0.16 D -CSK21_HUMAN ROA2_HUMAN 0.16 U -CSK21_HUMAN XRCC1_HUMAN 0.16 D -CTCF_HUMAN SUMO2_HUMAN 0.16 U -CTNB1_HUMAN KPCA_HUMAN 0.16 U -CTNB1_HUMAN PSN1_HUMAN 0.12 U -CTRO_HUMAN RHOA_HUMAN 0.16 U -CUL1_HUMAN RBX1_HUMAN 0.16 U -CUL2_HUMAN RBX1_HUMAN 0.16 U -CUL2_HUMAN UBXN7_HUMAN 0.16 U -CUL3_HUMAN KEAP1_HUMAN 0.16 U -CUL3_HUMAN RBX1_HUMAN 0.16 U -CUL3_HUMAN SHKB1_HUMAN 0.16 U -D0PNI1_HUMAN EIF3A_HUMAN 0.12 U -D0PNI1_HUMAN L7RRS6_HUMAN 0.16 U -D0PNI1_HUMAN VIME_HUMAN 0.16 U -D0VY79_HUMAN EGLN1_HUMAN 0.16 U -D0VY79_HUMAN EP300_HUMAN 0.16 U -DAXX_HUMAN ETS1_HUMAN 0.16 U -DAXX_HUMAN MDM2_HUMAN 0.16 U -DCP1A_HUMAN DCP2_HUMAN 0.16 U -DCP1A_HUMAN RENT1_HUMAN 0.12 U -DCP1B_HUMAN DCP2_HUMAN 0.16 U -DCP2_HUMAN EDC4_HUMAN 0.16 U -DDA1_HUMAN DDB1_HUMAN 0.16 U -DDX21_HUMAN JUN_HUMAN 0.16 U -DDX5_HUMAN G4XH65_HUMAN 0.16 U -DMAP1_HUMAN DNMT1_HUMAN 0.04 U -DNMT1_HUMAN HDAC1_HUMAN 0.04 U -DNMT1_HUMAN PCNA_HUMAN 0.16 U -DOK2_HUMAN NCK1_HUMAN 0.16 U -DYR1A_HUMAN SF3B1_HUMAN 0.16 D -E2F1_HUMAN RBL1_HUMAN 0.04 U -E2F1_HUMAN RB_HUMAN 0.16 U -E2F1_HUMAN TFDP2_HUMAN 0.16 U -E2F3_HUMAN RB_HUMAN 0.16 U -EDF1_HUMAN TBP_HUMAN 0.16 U -EGFR_HUMAN EPN1_HUMAN 0.16 U -EGFR_HUMAN PTN1_HUMAN 0.16 D -EIF3A_HUMAN IF4B_HUMAN 0.16 U -ELF1_HUMAN SP1_HUMAN 0.16 U -EMD_HUMAN YTDC1_HUMAN 0.16 U -EP300_HUMAN G4XH65_HUMAN 0.16 U -EP300_HUMAN H31_HUMAN 0.12 U -EP300_HUMAN JUN_HUMAN 0.16 U -EP300_HUMAN P53_HUMAN 0.12 U -EP300_HUMAN SMAD3_HUMAN 0.08 U -EP400_HUMAN MYC_HUMAN 0.08 U -ERBB2_HUMAN DOCK7_HUMAN 0.16 D -ERBB2_HUMAN HS90A_HUMAN 0.16 U -FADD_HUMAN RIPK1_HUMAN 0.16 U -FAF1_HUMAN TERA_HUMAN 0.16 U -FEN1_HUMAN PCNA_HUMAN 0.04 U -FEN1_HUMAN WRN_HUMAN 0.04 U -FKBP4_HUMAN HS90A_HUMAN 0.16 U -FNBP4_HUMAN KHDR1_HUMAN 0.16 U -FOS_HUMAN JUNB_HUMAN 0.16 U -FOS_HUMAN JUN_HUMAN 0.16 U -FOS_HUMAN TBP_HUMAN 0.04 U -G4XH65_HUMAN MED1_HUMAN 0.16 U -G4XH65_HUMAN NCOA1_HUMAN 0.16 U -G4XH65_HUMAN NCOA2_HUMAN 0.16 U -G4XH65_HUMAN NCOA3_HUMAN 0.16 U -G4XH65_HUMAN PHB2_HUMAN 0.16 U -G4XH65_HUMAN SAFB1_HUMAN 0.16 U -G4XH65_HUMAN SRC_HUMAN 0.16 U -G4XH65_HUMAN TDIF2_HUMAN 0.16 U -GBRL1_HUMAN RBGP1_HUMAN 0.16 U -GBRL1_HUMAN SQSTM_HUMAN 0.16 U -GBRL1_HUMAN TBD2B_HUMAN 0.16 U -GDIR1_HUMAN RHOA_HUMAN 0.16 U -GRAP2_HUMAN LCP2_HUMAN 0.16 U -GSK3B_HUMAN CLAP2_HUMAN 0.16 D -H12_HUMAN SUMO2_HUMAN 0.16 U -H13_HUMAN SUMO1_HUMAN 0.16 U -H2AX_HUMAN MDC1_HUMAN 0.16 U -H2AX_HUMAN TP53B_HUMAN 0.16 U -H31_HUMAN WDR5_HUMAN 0.16 U -HDAC1_HUMAN HDAC2_HUMAN 0.16 U -HDAC1_HUMAN KDM1A_HUMAN 0.16 U -HDAC1_HUMAN NSD2_HUMAN 0.16 U -HDAC1_HUMAN P53_HUMAN 0.16 U -HDAC1_HUMAN RB_HUMAN 0.12 U -HDAC1_HUMAN SIN3A_HUMAN 0.16 U -HDAC1_HUMAN SIN3B_HUMAN 0.16 U -HDAC1_HUMAN SP1_HUMAN 0.16 U -HDAC2_HUMAN SRA1_HUMAN 0.16 U -HDAC4_HUMAN MEF2D_HUMAN 0.16 U -HIRA_HUMAN UBN1_HUMAN 0.16 U -HMGA1_HUMAN SP1_HUMAN 0.16 U -HNRPD_HUMAN IF4G1_HUMAN 0.04 U -HNRPF_HUMAN ROA0_HUMAN 0.16 U -HNRPF_HUMAN SUMO1_HUMAN 0.16 U -HNRPK_HUMAN RBMX_HUMAN 0.16 U -HS90A_HUMAN L7RRS6_HUMAN 0.12 U -HS90A_HUMAN TEBP_HUMAN 0.16 U -I17RA_HUMAN TRAF6_HUMAN 0.16 U -IF16_HUMAN K7PPA8_HUMAN 0.16 U -IF4E_HUMAN IF4G1_HUMAN 0.16 U -IGBP1_HUMAN PP4C_HUMAN 0.16 U -IKKA_HUMAN IKKB_HUMAN 0.16 U -IKKA_HUMAN TRAF2_HUMAN 0.16 U -IKKB_HUMAN DOK1_HUMAN 0.16 D -IRAK1_HUMAN Q6FIE9_HUMAN 0.04 U -IRAK1_HUMAN TRAF6_HUMAN 0.04 U -J3KN59_HUMAN RHG01_HUMAN 0.16 U -K7PPA8_HUMAN MDM2_HUMAN 0.16 U -K7PPA8_HUMAN NOC2L_HUMAN 0.16 U -K7PPA8_HUMAN SIR1_HUMAN 0.16 U -K7PPA8_HUMAN TOPK_HUMAN 0.16 U -KAPCA_HUMAN CASP9_HUMAN 0.04 D -KAPCA_HUMAN CBX3_HUMAN 0.16 D -KAPCA_HUMAN CFTR_HUMAN 0.12 D -KAPCA_HUMAN CUX1_HUMAN 0.16 D -KAPCA_HUMAN H14_HUMAN 0.16 D -KAPCA_HUMAN KC1A_HUMAN 0.16 D -KAPCA_HUMAN LASP1_HUMAN 0.16 D -KAPCA_HUMAN NDE1_HUMAN 0.16 D -KAPCA_HUMAN NFAC1_HUMAN 0.16 D -KAPCA_HUMAN PDE3B_HUMAN 0.16 D -KAPCA_HUMAN PTBP1_HUMAN 0.16 D -KAPCA_HUMAN PTN7_HUMAN 0.16 D -KAPCA_HUMAN PYR1_HUMAN 0.16 D -KAT2B_HUMAN KLF13_HUMAN 0.16 U -KAT2B_HUMAN P53_HUMAN 0.16 U -KAT6A_HUMAN RUNX1_HUMAN 0.04 U -KBTB7_HUMAN Q658J6_HUMAN 0.16 U -KC1A_HUMAN NFAC3_HUMAN 0.16 D -KDM1A_HUMAN ZN217_HUMAN 0.16 U -KEAP1_HUMAN SQSTM_HUMAN 0.16 U -KEAP1_HUMAN T22D4_HUMAN 0.16 U -KHDR1_HUMAN LCK_HUMAN 0.16 U -KHDR1_HUMAN SRC_HUMAN 0.16 U -KHDR1_HUMAN WBP4_HUMAN 0.16 U -KIF4A_HUMAN SUMO2_HUMAN 0.16 U -KPCA_HUMAN ADDB_HUMAN 0.04 D -KPCA_HUMAN COF1_HUMAN 0.16 D -KPCA_HUMAN LRP1_HUMAN 0.16 D -KPCA_HUMAN MARCS_HUMAN 0.16 D -KPCA_HUMAN THOC5_HUMAN 0.16 D -KPCA_HUMAN VTNC_HUMAN 0.16 D -KS6B1_HUMAN EF2K_HUMAN 0.16 D -KS6B1_HUMAN NCBP1_HUMAN 0.16 D -KS6B1_HUMAN RPTOR_HUMAN 0.16 U -KS6B1_HUMAN RS6_HUMAN 0.16 D -KS6B1_HUMAN TCPB_HUMAN 0.16 D -L7RRS6_HUMAN RASH_HUMAN 0.16 U -L7RRS6_HUMAN RRAS2_HUMAN 0.16 U -L7RT18_HUMAN RPGF1_HUMAN 0.16 U -LAT_HUMAN PLCG1_HUMAN 0.16 U -LCK_HUMAN ZAP70_HUMAN 0.16 D -LCP2_HUMAN NCK1_HUMAN 0.16 U -LRP1_HUMAN TSP1_HUMAN 0.16 U -M3K1_HUMAN MP2K4_HUMAN 0.16 U -M3K2_HUMAN MP2K4_HUMAN 0.16 U -M3K7_HUMAN TRAF6_HUMAN 0.16 U -MAGD1_HUMAN XIAP_HUMAN 0.16 U -MAPK2_HUMAN PARN_HUMAN 0.16 D -MAPK2_HUMAN RTN4_HUMAN 0.16 D -MCM2_HUMAN MCM4_HUMAN 0.16 U -MDM2_HUMAN P53_HUMAN 0.16 U -MDM2_HUMAN UB2D2_HUMAN 0.16 U -MK01_HUMAN ABI1_HUMAN 0.16 D -MK01_HUMAN NU153_HUMAN 0.16 D -MK01_HUMAN PML_HUMAN 0.16 D -MK01_HUMAN RS3_HUMAN 0.16 D -MK01_HUMAN RUNX1_HUMAN 0.16 D -MK01_HUMAN VINEX_HUMAN 0.16 D -MK08_HUMAN 4ET_HUMAN 0.16 D -MK14_HUMAN MAPK2_HUMAN 0.16 D -MK14_HUMAN MEF2A_HUMAN 0.16 D -MLH1_HUMAN PMS2_HUMAN 0.16 U -MLH1_HUMAN ZC11A_HUMAN 0.16 U -MORC3_HUMAN SUMO2_HUMAN 0.16 U -MP2K4_HUMAN MK08_HUMAN 0.16 D -MTG8R_HUMAN MTG8_HUMAN 0.16 U -MTG8_HUMAN NCOR1_HUMAN 0.16 U -MTOR_HUMAN 4EBP1_HUMAN 0.16 D -MTOR_HUMAN LARP1_HUMAN 0.16 D -MTOR_HUMAN PATL1_HUMAN 0.16 D -MTOR_HUMAN SRRM2_HUMAN 0.16 D -MTOR_HUMAN UBR4_HUMAN 0.16 D -MTOR_HUMAN ULK1_HUMAN 0.16 D -MUS81_HUMAN SLX4_HUMAN 0.16 U -MYC_HUMAN TRRAP_HUMAN 0.16 U -NAB1_HUMAN SUMO2_HUMAN 0.16 U -NCOA1_HUMAN RARA_HUMAN 0.16 U -NCOR1_HUMAN RARA_HUMAN 0.16 U -NEDD4_HUMAN UB2L3_HUMAN 0.16 U -NEDD4_HUMAN WBP2_HUMAN 0.16 U -NHRF1_HUMAN PHAG1_HUMAN 0.16 U -NOL8_HUMAN RRAGA_HUMAN 0.16 U -NU107_HUMAN NU133_HUMAN 0.16 U -NUCL_HUMAN TOP1_HUMAN 0.16 U -NUMA1_HUMAN SUMO2_HUMAN 0.16 U -NUMBL_HUMAN TRAF6_HUMAN 0.16 U -P53_HUMAN RAD51_HUMAN 0.16 U -P53_HUMAN SUMO1_HUMAN 0.04 U -P53_HUMAN TP53B_HUMAN 0.16 U -P53_HUMAN UBE3A_HUMAN 0.16 U -P53_HUMAN UBP7_HUMAN 0.16 U -P85A_HUMAN SHB_HUMAN 0.16 U -PAK1_HUMAN MINT_HUMAN 0.16 D -PAK1_HUMAN PCBP1_HUMAN 0.16 D -PAK1_HUMAN STMN1_HUMAN 0.16 D -PCNA_HUMAN RFC1_HUMAN 0.16 U -PCNA_HUMAN UBP1_HUMAN 0.16 U -PDS5A_HUMAN SMC3_HUMAN 0.16 U -PEX19_HUMAN PEX3_HUMAN 0.16 U -PIAS1_HUMAN SUMO1_HUMAN 0.16 U -PININ_HUMAN PNISR_HUMAN 0.16 U -PININ_HUMAN SRRM2_HUMAN 0.16 U -PININ_HUMAN SRSF4_HUMAN 0.16 U -PLEC_HUMAN VIME_HUMAN 0.16 U -PLK1_HUMAN ATX10_HUMAN 0.16 D -PLK1_HUMAN BIRC5_HUMAN 0.12 D -PLK1_HUMAN PMYT1_HUMAN 0.16 D -PLK1_HUMAN SLX4_HUMAN 0.04 U -PMYT1_HUMAN CDK1_HUMAN 0.08 D -PP4C_HUMAN TCPD_HUMAN 0.16 U -PP4C_HUMAN TCPZ_HUMAN 0.16 U -PPIP1_HUMAN PTN18_HUMAN 0.16 U -PPIP1_HUMAN WASP_HUMAN 0.16 U -PRKN2_HUMAN PSMD4_HUMAN 0.16 U -PRKN2_HUMAN UB2J1_HUMAN 0.16 U -PRKN2_HUMAN UB2L3_HUMAN 0.16 U -PRPF3_HUMAN SF3B2_HUMAN 0.16 U -PSMD2_HUMAN TNR1A_HUMAN 0.04 U -PTTG1_HUMAN PTTG_HUMAN 0.16 U -PTTG1_HUMAN RS10_HUMAN 0.16 U -Q56A76_HUMAN SIN3A_HUMAN 0.16 U -Q56A76_HUMAN SMRC1_HUMAN 0.16 U -Q658J6_HUMAN SQSTM_HUMAN 0.16 U -Q6FIE9_HUMAN TOM1_HUMAN 0.04 U -RBBP5_HUMAN WDR5_HUMAN 0.16 U -RBM5_HUMAN SR140_HUMAN 0.2 U -RBMX_HUMAN TRA2B_HUMAN 0.16 U -RBP2_HUMAN UBC9_HUMAN 0.16 U -RBX1_HUMAN UB2D2_HUMAN 0.16 U -RB_HUMAN UBF1_HUMAN 0.16 U -RENT1_HUMAN SMG5_HUMAN 0.16 U -RHG01_HUMAN RHOA_HUMAN 0.16 U -RHOA_HUMAN ROCK1_HUMAN 0.16 U -RING2_HUMAN RYBP_HUMAN 0.16 U -RING2_HUMAN UBP7_HUMAN 0.16 U -RIPK1_HUMAN TNR1A_HUMAN 0.16 U -RIPK1_HUMAN TRAF2_HUMAN 0.16 U -RN168_HUMAN UBE2N_HUMAN 0.16 U -RN169_HUMAN SUMO2_HUMAN 0.16 U -RNF25_HUMAN UB2D2_HUMAN 0.16 U -RNF31_HUMAN TNFA_HUMAN 0.08 U -ROCK1_HUMAN MYPT1_HUMAN 0.16 D -ROCK1_HUMAN RHG35_HUMAN 0.16 D -RPTOR_HUMAN RRAGA_HUMAN 0.16 U -RRAGA_HUMAN RRAGC_HUMAN 0.16 U -RRAGA_HUMAN RRAGD_HUMAN 0.16 U -RSF1_HUMAN SMCA5_HUMAN 0.16 U -SAFB1_HUMAN SAFB2_HUMAN 0.16 U -SENP1_HUMAN SUMO2_HUMAN 0.16 U -SENP2_HUMAN SUMO1_HUMAN 0.16 U -SENP3_HUMAN SUMO2_HUMAN 0.16 U -SFPQ_HUMAN SUMO1_HUMAN 0.16 U -SKI_HUMAN SMAD4_HUMAN 0.04 U -SKI_HUMAN SNW1_HUMAN 0.04 U -SMAD3_HUMAN SMAD4_HUMAN 0.16 U -SMAD3_HUMAN ZEP1_HUMAN 0.04 U -SMAD4_HUMAN TGFA1_HUMAN 0.16 U -SMC1A_HUMAN SMC3_HUMAN 0.16 U -SMC2_HUMAN SMC4_HUMAN 0.08 U -SMC3_HUMAN WAPL_HUMAN 0.04 U -SMG1_HUMAN RENT1_HUMAN 0.12 D -SMRCD_HUMAN SUMO2_HUMAN 0.16 U -SNUT1_HUMAN SUMO2_HUMAN 0.16 U -SP16H_HUMAN SUMO2_HUMAN 0.16 U -SPT4H_HUMAN SPT5H_HUMAN 0.16 U -SRC_HUMAN BCLF1_HUMAN 0.16 D -SRC_HUMAN EMD_HUMAN 0.16 D -SRC_HUMAN GDIR1_HUMAN 0.12 D -SRC_HUMAN GELS_HUMAN 0.16 D -SRC_HUMAN GTF2I_HUMAN 0.16 D -SRC_HUMAN HNRPK_HUMAN 0.16 D -SRC_HUMAN MPZL1_HUMAN 0.16 D -SRC_HUMAN RAF1_HUMAN 0.16 D -SRC_HUMAN SPD2B_HUMAN 0.16 D -SRC_HUMAN ZC3H4_HUMAN 0.16 D -SUMO1_HUMAN TOP1_HUMAN 0.04 U -SUMO1_HUMAN UBC9_HUMAN 0.16 U -SUMO2_HUMAN TF3C1_HUMAN 0.16 U -SUMO2_HUMAN TFR1_HUMAN 0.16 U -SUMO2_HUMAN TPR_HUMAN 0.16 U -SUMO2_HUMAN UBC9_HUMAN 0.04 U -SUMO2_HUMAN ZN106_HUMAN 0.16 U -T2AG_HUMAN TBP_HUMAN 0.16 U -T2EA_HUMAN T2EB_HUMAN 0.16 U -T2EA_HUMAN TBP_HUMAN 0.16 U -T2FA_HUMAN TF2B_HUMAN 0.16 U -TAF6_HUMAN TAF9B_HUMAN 0.16 U -TAF6_HUMAN TBP_HUMAN 0.16 U -TBP_HUMAN TF2B_HUMAN 0.16 U -TF3C1_HUMAN TF3C2_HUMAN 0.16 U -TFR1_HUMAN TRFE_HUMAN 0.16 U -THOC2_HUMAN THOC5_HUMAN 0.16 U -TNFA_HUMAN TNR1A_HUMAN 0.08 U -TRAF2_HUMAN TRAF6_HUMAN 0.08 U -TRAF6_HUMAN UBE2N_HUMAN 0.16 U -TRI32_HUMAN UBE2N_HUMAN 0.16 U -UB2L3_HUMAN UBA1_HUMAN 0.04 U -UB2L3_HUMAN UBE3A_HUMAN 0.16 U -WASP_HUMAN WIPF1_HUMAN 0.16 U -WASP_HUMAN WIPF2_HUMAN 0.16 U -WRN_HUMAN XRCC5_HUMAN 0.04 U -XRCC5_HUMAN XRCC6_HUMAN 0.16 U -ZAP70_HUMAN DBNL_HUMAN 0.16 D -ZAP70_HUMAN DUS3_HUMAN 0.16 D -1433B_HUMAN GAPD1_HUMAN 0.12 U -1433B_HUMAN TESK2_HUMAN 0.12 U -1433E_HUMAN ATX1_HUMAN 0.12 U -1433E_HUMAN HMHA1_HUMAN 0.12 U -1433E_HUMAN RASL3_HUMAN 0.12 U -1433E_HUMAN RPGP2_HUMAN 0.12 U -1433G_HUMAN CEP95_HUMAN 0.12 U -1433G_HUMAN E41L2_HUMAN 0.12 U -1433G_HUMAN FA53C_HUMAN 0.12 U -1433S_HUMAN AJUBA_HUMAN 0.12 U -1433S_HUMAN BAD_HUMAN 0.12 U -1433S_HUMAN REEP4_HUMAN 0.12 U -1433S_HUMAN RHPN2_HUMAN 0.12 U -1433S_HUMAN SI1L1_HUMAN 0.12 U -1433T_HUMAN CE170_HUMAN 0.12 U -1433T_HUMAN HECD1_HUMAN 0.12 U -1433T_HUMAN K1C9_HUMAN 0.12 U -1433T_HUMAN K2C1_HUMAN 0.12 U -1433T_HUMAN MARK2_HUMAN 0.12 U -1433T_HUMAN MFF_HUMAN 0.12 U -1433T_HUMAN SPIR1_HUMAN 0.12 U -A2AP_HUMAN PLMN_HUMAN 0.13 U -A2MG_HUMAN A4_HUMAN 0.12 U -A4D0W0_HUMAN LSM2_HUMAN 0.12 U -A4D0W0_HUMAN SMBP2_HUMAN 0.12 U -A4D1G0_HUMAN CD2A2_HUMAN 0.12 U -A4D1G0_HUMAN LPIN1_HUMAN 0.12 U -A4D2P0_HUMAN GDIR1_HUMAN 0.12 U -A4D2P0_HUMAN UNKL_HUMAN 0.12 U -A4D2P1_HUMAN GDIR1_HUMAN 0.04 U -A4D2P1_HUMAN PAK1_HUMAN 0.12 U -A4D2P1_HUMAN RHG15_HUMAN 0.12 U -A4_HUMAN APOA1_HUMAN 0.12 U -A4_HUMAN ARMC7_HUMAN 0.12 U -A4_HUMAN CC020_HUMAN 0.12 U -A4_HUMAN DDX55_HUMAN 0.12 U -A4_HUMAN EEPD1_HUMAN 0.12 U -A4_HUMAN FBLN1_HUMAN 0.12 U -A4_HUMAN H2B1M_HUMAN 0.12 U -A4_HUMAN HAUS8_HUMAN 0.12 U -A4_HUMAN KAT5_HUMAN 0.08 U -A4_HUMAN KIFC1_HUMAN 0.12 U -A4_HUMAN LAR1B_HUMAN 0.12 U -A4_HUMAN LIMA1_HUMAN 0.12 U -A4_HUMAN LIMD1_HUMAN 0.12 U -A4_HUMAN LRRC1_HUMAN 0.12 U -A4_HUMAN MAST2_HUMAN 0.12 U -A4_HUMAN NDUA5_HUMAN 0.08 U -A4_HUMAN OCAD2_HUMAN 0.12 U -A4_HUMAN OSB11_HUMAN 0.12 U -A4_HUMAN PNKD_HUMAN 0.12 U -A4_HUMAN PTBP3_HUMAN 0.12 U -A4_HUMAN SASH3_HUMAN 0.12 U -A4_HUMAN STML2_HUMAN 0.12 U -A4_HUMAN TEX2_HUMAN 0.12 U -A4_HUMAN TGFB2_HUMAN 0.12 U -A4_HUMAN TPD54_HUMAN 0.12 U -A8K379_HUMAN CBL_HUMAN 0.12 U -A8K379_HUMAN GAB3_HUMAN 0.12 U -A8K401_HUMAN E2F1_HUMAN 0.12 U -A8K401_HUMAN PHF3_HUMAN 0.12 U -A8KAH9_HUMAN AB1IP_HUMAN 0.12 U -A8KAH9_HUMAN L7RRS6_HUMAN 0.12 U -A8KAH9_HUMAN RASF5_HUMAN 0.11 U -AAAT_HUMAN TNR1A_HUMAN 0.12 U -AAKB1_HUMAN VMA21_HUMAN 0.12 U -ABL1_HUMAN ABR_HUMAN 0.12 U -ABL1_HUMAN FETUA_HUMAN 0.12 U -ABLM1_HUMAN VIME_HUMAN 0.12 U -ACBP_HUMAN Q658J6_HUMAN 0.12 U -ACINU_HUMAN API5_HUMAN 0.18 U -ACTY_HUMAN ARP10_HUMAN 0.15 U -ACTY_HUMAN N0E4C7_HUMAN 0.12 U -ADA15_HUMAN PACN3_HUMAN 0.12 U -ADA15_HUMAN SPD2A_HUMAN 0.12 U -ADA15_HUMAN SRC_HUMAN 0.12 U -AKT1_HUMAN SRPK2_HUMAN 0.12 D -AKT2_HUMAN CASP3_HUMAN 0.12 U -ALBU_HUMAN ITIH1_HUMAN 0.12 U -ALBU_HUMAN UBD_HUMAN 0.08 U -ALKB5_HUMAN CSK21_HUMAN 0.12 U -AMPD2_HUMAN NEDD4_HUMAN 0.12 U -ANDR_HUMAN CTNB1_HUMAN 0.12 U -ANDR_HUMAN JHD2C_HUMAN 0.12 U -ANDR_HUMAN TMF1_HUMAN 0.12 U -ANLN_HUMAN SUMO1_HUMAN 0.12 U -ANT3_HUMAN PLCG1_HUMAN 0.12 U -APC_HUMAN CTNB1_HUMAN 0.12 U -APC_HUMAN NCK5L_HUMAN 0.12 U -APOB_HUMAN CTCF_HUMAN 0.12 U -APTX_HUMAN CE350_HUMAN 0.12 U -APTX_HUMAN MABP1_HUMAN 0.12 U -ARBK2_HUMAN GIT1_HUMAN 0.12 U -ARFG1_HUMAN Q658J6_HUMAN 0.08 U -ARGL1_HUMAN SRPK2_HUMAN 0.12 U -ARHG6_HUMAN GIT1_HUMAN 0.12 U -ARI3A_HUMAN SUMO2_HUMAN 0.12 U -ARI4B_HUMAN SUMO2_HUMAN 0.12 U -ARP19_HUMAN NEMO_HUMAN 0.12 U -ARRB2_HUMAN MDM2_HUMAN 0.12 U -ARRB2_HUMAN RPA43_HUMAN 0.12 U -ATAD5_HUMAN UBP1_HUMAN 0.12 U -ATAT_HUMAN SRPK2_HUMAN 0.12 U -ATF7_HUMAN SUMO2_HUMAN 0.12 U -ATG2A_HUMAN GBRL1_HUMAN 0.12 U -ATG9A_HUMAN TBK1_HUMAN 0.12 U -ATIF1_HUMAN UBQL4_HUMAN 0.12 U -ATN1_HUMAN CRIP2_HUMAN 0.12 U -ATP4A_HUMAN CLH1_HUMAN 0.12 U -ATR_HUMAN CE164_HUMAN 0.12 U -ATR_HUMAN SMRC2_HUMAN 0.12 D -ATX1_HUMAN CCNK_HUMAN 0.12 U -ATX1_HUMAN FUBP3_HUMAN 0.12 U -ATX1_HUMAN GPTC8_HUMAN 0.12 U -ATX1_HUMAN MY18A_HUMAN 0.08 U -ATX1_HUMAN P121A_HUMAN 0.12 U -ATX1_HUMAN PRC2B_HUMAN 0.12 U -ATX1_HUMAN R3HD1_HUMAN 0.12 U -ATX1_HUMAN UNK_HUMAN 0.12 U -ATX1_HUMAN ZEP1_HUMAN 0.12 U -ATX2L_HUMAN SUMO2_HUMAN 0.12 U -AURKB_HUMAN CCD86_HUMAN 0.12 D -AURKB_HUMAN DDX52_HUMAN 0.12 D -AURKB_HUMAN KI67_HUMAN 0.12 D -AURKB_HUMAN LMO7_HUMAN 0.12 D -AURKB_HUMAN NINL_HUMAN 0.08 D -AURKB_HUMAN RBM14_HUMAN 0.12 D -AXIN1_HUMAN KC1E_HUMAN 0.12 U -B0LPE5_HUMAN MP2K4_HUMAN 0.04 U -B0LPE5_HUMAN VPP2_HUMAN 0.12 U -B2R4R0_HUMAN KAT5_HUMAN 0.08 U -B2R5T5_HUMAN SMAD2_HUMAN 0.08 U -B2RBV7_HUMAN RBX1_HUMAN 0.12 U -B2RNT7_HUMAN CUL3_HUMAN 0.12 U -B2RNT7_HUMAN RCN3_HUMAN 0.12 U -B4DY08_HUMAN CSK21_HUMAN 0.12 U -B4E1U9_HUMAN PAK4_HUMAN 0.04 U -B4E1U9_HUMAN WASP_HUMAN 0.04 U -B7Z3D6_HUMAN LZTS1_HUMAN 0.12 U -B7ZKJ8_HUMAN P63_HUMAN 0.12 U -BAG4_HUMAN TNR1A_HUMAN 0.12 U -BARD1_HUMAN BRCA1_HUMAN 0.12 U -BARD1_HUMAN CAP1_HUMAN 0.12 U -BARD1_HUMAN RRP1_HUMAN 0.12 U -BCKD_HUMAN STAT3_HUMAN 0.12 U -BCL2_HUMAN BNIP3_HUMAN 0.08 U -BMP2K_HUMAN TERF1_HUMAN 0.12 U -BNI3L_HUMAN BNIP3_HUMAN 0.08 U -BNI3L_HUMAN SMCO4_HUMAN 0.12 U -BNIP3_HUMAN TMM11_HUMAN 0.08 U -BPL1_HUMAN DDX52_HUMAN 0.12 U -BRCA1_HUMAN NELFB_HUMAN 0.12 U -BRCA1_HUMAN RWDD4_HUMAN 0.12 U -BRCA1_HUMAN ZCHC8_HUMAN 0.12 U -BRD1_HUMAN VIME_HUMAN 0.04 U -BUD13_HUMAN G4XH65_HUMAN 0.12 U -C2CD5_HUMAN CDK5_HUMAN 0.12 U -C2TA_HUMAN IRF1_HUMAN 0.12 U -C2TA_HUMAN IRF2_HUMAN 0.12 U -CA174_HUMAN CSN6_HUMAN 0.12 U -CAMP1_HUMAN SMAD1_HUMAN 0.12 U -CASP3_HUMAN PARG_HUMAN 0.12 U -CASP3_HUMAN PARP1_HUMAN 0.08 U -CATG_HUMAN PARP1_HUMAN 0.12 U -CATIN_HUMAN NELFE_HUMAN 0.15 U -CBX5_HUMAN H31T_HUMAN 0.12 U -CBX5_HUMAN SENP7_HUMAN 0.12 U -CCAR2_HUMAN CIAO1_HUMAN 0.12 U -CCD92_HUMAN CE164_HUMAN 0.12 U -CCDC9_HUMAN TERF1_HUMAN 0.12 U -CCND3_HUMAN CDK4_HUMAN 0.12 U -CCND3_HUMAN DTBP1_HUMAN 0.12 U -CCNE1_HUMAN CDN1A_HUMAN 0.08 U -CCNE1_HUMAN CDN1B_HUMAN 0.04 U -CCNE1_HUMAN FBXW7_HUMAN 0.08 U -CCNE1_HUMAN RB_HUMAN 0.08 U -CCNF_HUMAN SKP1_HUMAN 0.12 U -CD2A2_HUMAN CK5P3_HUMAN 0.12 U -CD2AP_HUMAN RAB4A_HUMAN 0.12 U -CDA7L_HUMAN MYC_HUMAN 0.12 U -CDC20_HUMAN MD2L1_HUMAN 0.12 U -CDC37_HUMAN HS90A_HUMAN 0.04 U -CDC37_HUMAN NCOA5_HUMAN 0.12 U -CDC37_HUMAN STK11_HUMAN 0.12 U -CDC73_HUMAN KDIS_HUMAN 0.12 U -CDC73_HUMAN VTDB_HUMAN 0.12 U -CDK1_HUMAN AAK1_HUMAN 0.12 D -CDK1_HUMAN LAP2A_HUMAN 0.12 D -CDK1_HUMAN NDEL1_HUMAN 0.12 D -CDK1_HUMAN PHF8_HUMAN 0.12 D -CDK2_HUMAN C1TM_HUMAN 0.12 D -CDK2_HUMAN CT2NL_HUMAN 0.12 D -CDK2_HUMAN GUAA_HUMAN 0.12 D -CDK2_HUMAN HNRL1_HUMAN 0.12 D -CDK2_HUMAN JIP4_HUMAN 0.04 D -CDK2_HUMAN KDM2A_HUMAN 0.12 D -CDK2_HUMAN KIF22_HUMAN 0.12 D -CDK2_HUMAN LMNB2_HUMAN 0.12 D -CDK2_HUMAN LRCH3_HUMAN 0.12 D -CDK2_HUMAN MARE2_HUMAN 0.12 U -CDK2_HUMAN NOSIP_HUMAN 0.12 D -CDK2_HUMAN NUCKS_HUMAN 0.12 D -CDK2_HUMAN PHF6_HUMAN 0.12 D -CDK2_HUMAN PRDX6_HUMAN 0.12 U -CDK2_HUMAN PRP16_HUMAN 0.12 D -CDK2_HUMAN RALY_HUMAN 0.12 D -CDK2_HUMAN RL35_HUMAN 0.12 U -CDK2_HUMAN SRS11_HUMAN 0.12 D -CDK2_HUMAN SRSF9_HUMAN 0.12 D -CDK2_HUMAN TAGL2_HUMAN 0.12 U -CDK2_HUMAN TANC1_HUMAN 0.12 D -CDK2_HUMAN TBCE_HUMAN 0.12 D -CDK2_HUMAN TPX2_HUMAN 0.12 D -CDK2_HUMAN UBE2O_HUMAN 0.12 D -CDK2_HUMAN UHRF2_HUMAN 0.12 U -CDK2_HUMAN ZN609_HUMAN 0.12 D -CDK4_HUMAN CDN1B_HUMAN 0.12 U -CDK4_HUMAN ZN335_HUMAN 0.12 U -CDK5_HUMAN ADDB_HUMAN 0.12 D -CDK5_HUMAN AGAP2_HUMAN 0.12 D -CDK5_HUMAN CDN1B_HUMAN 0.12 U -CDK5_HUMAN HD_HUMAN 0.12 D -CDK5_HUMAN RL34_HUMAN 0.12 U -CDN1A_HUMAN PCNA_HUMAN 0.12 U -CDS2_HUMAN TS101_HUMAN 0.12 U -CE022_HUMAN WBP11_HUMAN 0.15 U -CENPF_HUMAN NDEL1_HUMAN 0.12 U -CHERP_HUMAN WBP4_HUMAN 0.12 U -CIAO1_HUMAN KTNA1_HUMAN 0.12 U -CIC_HUMAN SEC62_HUMAN 0.08 U -CIC_HUMAN SETD2_HUMAN 0.08 U -CIR1_HUMAN SNW1_HUMAN 0.12 U -CIRBP_HUMAN RBMX_HUMAN 0.12 U -CK5P3_HUMAN DDRGK_HUMAN 0.12 U -CK5P3_HUMAN UFL1_HUMAN 0.12 U -CLH1_HUMAN EPN4_HUMAN 0.12 U -CLH1_HUMAN HERC1_HUMAN 0.12 U -CLH1_HUMAN HGS_HUMAN 0.12 U -CLH1_HUMAN TOM1_HUMAN 0.12 U -CLPX_HUMAN CUL1_HUMAN 0.08 U -CLUS_HUMAN CO7_HUMAN 0.12 U -CLUS_HUMAN CO9_HUMAN 0.12 U -CLUS_HUMAN PRIO_HUMAN 0.12 U -CLUS_HUMAN XRCC6_HUMAN 0.12 U -CNBP_HUMAN RL1D1_HUMAN 0.12 U -CNBP_HUMAN RL34_HUMAN 0.12 U -CND2_HUMAN SMC4_HUMAN 0.04 U -CO3_HUMAN MCP_HUMAN 0.12 U -COF1_HUMAN HS105_HUMAN 0.12 U -CREB1_HUMAN CRTC1_HUMAN 0.12 U -CREB1_HUMAN IRX1_HUMAN 0.12 U -CRKL_HUMAN PKHA1_HUMAN 0.12 U -CSK21_HUMAN DDX58_HUMAN 0.12 D -CSK21_HUMAN IKBA_HUMAN 0.12 D -CSK21_HUMAN INF2_HUMAN 0.12 U -CSK21_HUMAN LS14A_HUMAN 0.12 U -CSK21_HUMAN PEDF_HUMAN 0.12 D -CSK21_HUMAN RM38_HUMAN 0.12 U -CSK21_HUMAN S39A7_HUMAN 0.12 U -CSK21_HUMAN SEPT2_HUMAN 0.12 D -CSK21_HUMAN SPTB2_HUMAN 0.12 D -CSK21_HUMAN TERF1_HUMAN 0.08 D -CSK21_HUMAN TLE1_HUMAN 0.12 D -CSKI1_HUMAN NPM_HUMAN 0.12 U -CSN5_HUMAN CSN6_HUMAN 0.12 U -CSN5_HUMAN CUL1_HUMAN 0.12 U -CSN5_HUMAN MNX1_HUMAN 0.12 U -CSN6_HUMAN EHBP1_HUMAN 0.12 U -CSN6_HUMAN IFG15_HUMAN 0.12 U -CSN6_HUMAN MA7D1_HUMAN 0.12 U -CTNB1_HUMAN IBP2_HUMAN 0.12 U -CTNB1_HUMAN RUVB1_HUMAN 0.04 U -CUL1_HUMAN SKP1_HUMAN 0.12 U -CUL2_HUMAN FEM1A_HUMAN 0.12 U -CUL2_HUMAN LAGE3_HUMAN 0.12 U -CUL3_HUMAN KCTD9_HUMAN 0.12 U -CUL3_HUMAN MCES_HUMAN 0.12 U -CUL3_HUMAN TISD_HUMAN 0.12 U -CUL4A_HUMAN DDB1_HUMAN 0.12 U -CUTC_HUMAN I2BP2_HUMAN 0.18 U -CWC15_HUMAN PRIO_HUMAN 0.12 U -CYTSA_HUMAN RIPK3_HUMAN 0.12 U -D0PNI1_HUMAN KLC4_HUMAN 0.12 U -D0PNI1_HUMAN MADD_HUMAN 0.12 U -D0VY79_HUMAN SEPT9_HUMAN 0.12 U -D3DU92_HUMAN PININ_HUMAN 0.12 U -D3DU92_HUMAN SFSWA_HUMAN 0.12 U -DAPK1_HUMAN KKCC2_HUMAN 0.12 D -DAPK1_HUMAN MCM3_HUMAN 0.12 D -DAXX_HUMAN NSD3_HUMAN 0.12 U -DC1L1_HUMAN RAB4A_HUMAN 0.12 U -DCA10_HUMAN DDB1_HUMAN 0.12 U -DDB1_HUMAN DDB2_HUMAN 0.12 U -DDB2_HUMAN UBP24_HUMAN 0.12 U -DDX21_HUMAN LYAR_HUMAN 0.08 U -DDX23_HUMAN WBP4_HUMAN 0.12 U -DDX58_HUMAN ZCCHV_HUMAN 0.12 U -DDX5_HUMAN RNC_HUMAN 0.12 U -DEFI6_HUMAN RHOA_HUMAN 0.12 U -DENR_HUMAN UBC_HUMAN 0.12 U -DGCR8_HUMAN RNC_HUMAN 0.12 U -DLGP4_HUMAN SRC_HUMAN 0.12 U -DMAP1_HUMAN RUVB1_HUMAN 0.04 U -DNJB2_HUMAN SMAD4_HUMAN 0.12 U -DPOA2_HUMAN PARP1_HUMAN 0.04 U -DYL1_HUMAN GEPH_HUMAN 0.12 U -DYL1_HUMAN MYO5A_HUMAN 0.12 U -E2F1_HUMAN TOPB1_HUMAN 0.12 U -E2F4_HUMAN PCM1_HUMAN 0.12 U -E2F4_HUMAN RBL1_HUMAN 0.12 U -E2F4_HUMAN RB_HUMAN 0.12 U -E9KL35_HUMAN LAR4B_HUMAN 0.12 U -E9KL35_HUMAN SRC_HUMAN 0.12 U -EF2_HUMAN SMG1_HUMAN 0.04 U -EF2_HUMAN SUMO1_HUMAN 0.12 U -EGFR_HUMAN ITIH2_HUMAN 0.12 U -EGFR_HUMAN JAK2_HUMAN 0.12 U -EGFR_HUMAN NBEL2_HUMAN 0.12 U -EGFR_HUMAN SC61B_HUMAN 0.12 U -EGFR_HUMAN SH3L3_HUMAN 0.12 U -EI24_HUMAN UB2D2_HUMAN 0.12 U -EIF3A_HUMAN EIF3F_HUMAN 0.12 U -EIF3F_HUMAN GLE1_HUMAN 0.12 U -ELP1_HUMAN ELP4_HUMAN 0.12 U -ELP1_HUMAN IKKA_HUMAN 0.12 U -EP300_HUMAN IRF1_HUMAN 0.12 U -EP300_HUMAN RECQ4_HUMAN 0.12 U -EP400_HUMAN KAT5_HUMAN 0.08 U -ERBB2_HUMAN PLXB1_HUMAN 0.12 D -ERIC1_HUMAN SUMO2_HUMAN 0.12 U -ESYT2_HUMAN KKCC2_HUMAN 0.08 U -EVL_HUMAN SRC_HUMAN 0.12 U -EXOC4_HUMAN MYC_HUMAN 0.12 U -EZRI_HUMAN ICAM2_HUMAN 0.12 U -F110C_HUMAN KC1E_HUMAN 0.12 U -F6KD01_HUMAN MAST3_HUMAN 0.12 U -F6KD01_HUMAN NEDD4_HUMAN 0.08 U -FBX41_HUMAN SKP1_HUMAN 0.12 U -FBX42_HUMAN P53_HUMAN 0.12 U -FBXW7_HUMAN MYC_HUMAN 0.12 U -FBXW7_HUMAN NOTC1_HUMAN 0.12 U -FGD6_HUMAN NPM_HUMAN 0.12 U -G4XH65_HUMAN KDM6B_HUMAN 0.12 U -G4XH65_HUMAN TMX1_HUMAN 0.12 U -GATA4_HUMAN JARD2_HUMAN 0.09 U -GATA4_HUMAN SP1_HUMAN 0.09 U -GBRAP_HUMAN GBRG2_HUMAN 0.12 U -GBRAP_HUMAN SQSTM_HUMAN 0.12 U -GBRL1_HUMAN TBC15_HUMAN 0.12 U -GIPC1_HUMAN ZN408_HUMAN 0.12 U -GIT1_HUMAN PCLO_HUMAN 0.12 U -GLYR1_HUMAN KDM1A_HUMAN 0.12 U -GNL1_HUMAN RAD21_HUMAN 0.12 U -GOGA2_HUMAN GORS2_HUMAN 0.12 U -GOGA2_HUMAN RAB1A_HUMAN 0.12 U -GOLP3_HUMAN MY18A_HUMAN 0.18 U -GON4L_HUMAN SUMO2_HUMAN 0.12 U -GORS2_HUMAN PRPS1_HUMAN 0.12 U -GORS2_HUMAN TMED2_HUMAN 0.12 U -GSK3B_HUMAN GYS1_HUMAN 0.12 D -H31T_HUMAN KAT6A_HUMAN 0.12 U -H31T_HUMAN PHF2_HUMAN 0.12 U -H31_HUMAN MPP8_HUMAN 0.12 U -H31_HUMAN NASP_HUMAN 0.12 U -HDAC1_HUMAN IPYR_HUMAN 0.12 U -HDAC1_HUMAN TAL1_HUMAN 0.12 U -HDAC1_HUMAN TREF1_HUMAN 0.12 U -HDAC1_HUMAN ZBT16_HUMAN 0.12 U -HDAC2_HUMAN RFX5_HUMAN 0.12 U -HDAC4_HUMAN IKZF2_HUMAN 0.12 U -HD_HUMAN PALM_HUMAN 0.04 U -HEBP2_HUMAN PDCD6_HUMAN 0.12 U -HGS_HUMAN TS101_HUMAN 0.12 U -HGS_HUMAN UBC_HUMAN 0.12 U -HMGN3_HUMAN SRPK2_HUMAN 0.12 U -HNRH3_HUMAN SUMO1_HUMAN 0.12 U -HNRL2_HUMAN SUMO2_HUMAN 0.12 U -HNRPD_HUMAN PABP1_HUMAN 0.12 U -HOMEZ_HUMAN SUMO2_HUMAN 0.12 U -HS90A_HUMAN KAPCB_HUMAN 0.12 U -HS90A_HUMAN TTC4_HUMAN 0.12 U -HTF4_HUMAN TAL1_HUMAN 0.12 U -HXB4_HUMAN RBX1_HUMAN 0.12 U -I2BP2_HUMAN IRF2_HUMAN 0.12 U -IF4A1_HUMAN IF4G1_HUMAN 0.12 U -IF4A1_HUMAN IF4H_HUMAN 0.12 U -IF4G1_HUMAN PABP1_HUMAN 0.12 U -IFNB_HUMAN INAR1_HUMAN 0.12 U -IFNB_HUMAN IRF3_HUMAN 0.12 U -IKBA_HUMAN NFKB1_HUMAN 0.12 U -IKBA_HUMAN TERA_HUMAN 0.12 U -IKKA_HUMAN NEMO_HUMAN 0.12 U -IN80E_HUMAN RUVB2_HUMAN 0.04 U -INT1_HUMAN SUMO2_HUMAN 0.12 U -INT3_HUMAN NFKB1_HUMAN 0.12 U -IRF1_HUMAN IRF8_HUMAN 0.12 U -IRF3_HUMAN IRF7_HUMAN 0.12 U -IRF7_HUMAN TLK2_HUMAN 0.12 U -IRF8_HUMAN NF1_HUMAN 0.12 U -IWS1_HUMAN SUMO2_HUMAN 0.12 U -J3KNL6_HUMAN TERF1_HUMAN 0.12 U -JAK2_HUMAN ARHG1_HUMAN 0.12 D -JKIP1_HUMAN NFKB1_HUMAN 0.12 U -JUN_HUMAN PRC2A_HUMAN 0.04 U -K1C10_HUMAN SRC_HUMAN 0.12 U -K1C16_HUMAN L7RT18_HUMAN 0.12 U -K7PPA8_HUMAN PIN1_HUMAN 0.12 U -K7PPA8_HUMAN SOX4_HUMAN 0.12 U -K7PPA8_HUMAN UBC_HUMAN 0.12 U -KAPCA_HUMAN PDE4A_HUMAN 0.12 D -KAT2A_HUMAN TRRAP_HUMAN 0.12 U -KAT2A_HUMAN WDHD1_HUMAN 0.12 U -KAT8_HUMAN MSL1_HUMAN 0.12 U -KAT8_HUMAN P53_HUMAN 0.12 U -KC1A_HUMAN CREB1_HUMAN 0.08 D -KC1E_HUMAN PER1_HUMAN 0.12 U -KC1E_HUMAN VP13B_HUMAN 0.12 U -KCRM_HUMAN PSMD4_HUMAN 0.12 U -KDM1A_HUMAN KLDC4_HUMAN 0.12 U -KDM1A_HUMAN LMBL3_HUMAN 0.12 U -KDM1A_HUMAN RCOR1_HUMAN 0.12 U -KDM1A_HUMAN SRGP3_HUMAN 0.12 U -KDM2B_HUMAN SKP1_HUMAN 0.12 U -KHDR1_HUMAN MIA2_HUMAN 0.12 U -KI13B_HUMAN MARK2_HUMAN 0.12 U -KIF14_HUMAN SUMO1_HUMAN 0.12 U -KIF2A_HUMAN NOTC1_HUMAN 0.12 U -KNOP1_HUMAN SUMO2_HUMAN 0.12 U -KPBB_HUMAN UBE3A_HUMAN 0.12 U -KPCA_HUMAN LEUK_HUMAN 0.12 D -KPCA_HUMAN PP14B_HUMAN 0.12 D -KSYK_HUMAN IKZF1_HUMAN 0.12 D -KSYK_HUMAN LCK_HUMAN 0.12 U -KTNB1_HUMAN NDEL1_HUMAN 0.12 U -LCAP_HUMAN TNKS2_HUMAN 0.12 U -LDB1_HUMAN TAL1_HUMAN 0.12 U -LMO7_HUMAN UBAC2_HUMAN 0.3 U -LSM12_HUMAN OXSR1_HUMAN 0.12 U -LSM2_HUMAN LSM7_HUMAN 0.12 U -LSM2_HUMAN PRCC_HUMAN 0.12 U -LSM2_HUMAN RSRC1_HUMAN 0.12 U -LSM2_HUMAN ZBT16_HUMAN 0.12 U -LSM2_HUMAN ZN408_HUMAN 0.12 U -LSM7_HUMAN TACC1_HUMAN 0.12 U -LUZP1_HUMAN SP1_HUMAN 0.12 U -M3K14_HUMAN RRP12_HUMAN 0.12 U -M3K14_HUMAN TRAF2_HUMAN 0.12 U -M3K1_HUMAN RHG04_HUMAN 0.12 U -MAP1S_HUMAN MLP3A_HUMAN 0.12 U -MAPK2_HUMAN CPZIP_HUMAN 0.12 D -MAST4_HUMAN SMAD1_HUMAN 0.12 U -MAX_HUMAN MGAP_HUMAN 0.12 U -MAX_HUMAN MYC_HUMAN 0.12 U -MD2L1_HUMAN UBD_HUMAN 0.12 U -MDM2_HUMAN PDLI7_HUMAN 0.12 U -MDM2_HUMAN PRC2C_HUMAN 0.12 U -MDN1_HUMAN SUMO1_HUMAN 0.12 U -MK01_HUMAN CIC_HUMAN 0.08 D -MK01_HUMAN DAPK1_HUMAN 0.12 D -MK01_HUMAN GORS2_HUMAN 0.08 D -MK01_HUMAN MBP_HUMAN 0.04 D -MK08_HUMAN BCL2_HUMAN 0.04 D -MK08_HUMAN STAT3_HUMAN 0.12 D -MLP3A_HUMAN SQSTM_HUMAN 0.12 U -MLP3A_HUMAN TB10A_HUMAN 0.12 U -MLP3A_HUMAN TM160_HUMAN 0.12 U -MMTA2_HUMAN SRPK2_HUMAN 0.12 U -MS18A_HUMAN NDEL1_HUMAN 0.12 U -MTFR1_HUMAN PIN1_HUMAN 0.12 U -MTMR4_HUMAN NEDD4_HUMAN 0.12 U -MTOR_HUMAN DAP1_HUMAN 0.12 D -MYC_HUMAN SMC4_HUMAN 0.08 U -N0E4C7_HUMAN PACS1_HUMAN 0.12 U -NCK1_HUMAN WASP_HUMAN 0.04 U -NCOA7_HUMAN Q658J6_HUMAN 0.12 U -NDUB8_HUMAN ZAP70_HUMAN 0.12 U -NEK1_HUMAN TP53B_HUMAN 0.12 U -NELFB_HUMAN NELFE_HUMAN 0.12 U -NEMO_HUMAN RLA2_HUMAN 0.04 U -NFIC_HUMAN SUMO2_HUMAN 0.12 U -NINL_HUMAN ZC3H1_HUMAN 0.08 U -NKTR_HUMAN SUMO1_HUMAN 0.12 U -NOLC1_HUMAN NOP56_HUMAN 0.08 U -NOTC1_HUMAN SNW1_HUMAN 0.12 U -NOTC1_HUMAN ZBED4_HUMAN 0.12 U -NPM_HUMAN NUCL_HUMAN 0.12 U -NPM_HUMAN UBP36_HUMAN 0.12 U -NSE2_HUMAN RAD21_HUMAN 0.12 U -NSRP1_HUMAN SRPK2_HUMAN 0.04 U -NU188_HUMAN SUMO1_HUMAN 0.12 U -NUCL_HUMAN TRFL_HUMAN 0.04 U -NUP93_HUMAN SUMO2_HUMAN 0.12 U -NUP98_HUMAN RAE1L_HUMAN 0.12 U -OXSR1_HUMAN RELL1_HUMAN 0.12 U -P53_HUMAN PARP1_HUMAN 0.12 U -P53_HUMAN TBP_HUMAN 0.08 U -P53_HUMAN UBC9_HUMAN 0.12 U -P63_HUMAN ROAA_HUMAN 0.12 U -P85A_HUMAN PXK_HUMAN 0.12 U -P85A_HUMAN TBA1B_HUMAN 0.12 U -PABP1_HUMAN PAN3_HUMAN 0.12 U -PABP1_HUMAN PCBP2_HUMAN 0.12 U -PAK1_HUMAN DYL1_HUMAN 0.12 D -PAK1_HUMAN GIT1_HUMAN 0.08 D -PAPOA_HUMAN SMAD2_HUMAN 0.12 U -PARP1_HUMAN XRCC5_HUMAN 0.12 U -PARP6_HUMAN PLIN3_HUMAN 0.12 U -PAXI1_HUMAN SCPDL_HUMAN 0.12 U -PAXI1_HUMAN TP53B_HUMAN 0.12 U -PCF11_HUMAN SUMO2_HUMAN 0.12 U -PCNA_HUMAN TDT_HUMAN 0.12 U -PCNA_HUMAN TPIS_HUMAN 0.12 U -PCNP_HUMAN UHRF2_HUMAN 0.12 U -PCY1A_HUMAN SUMO2_HUMAN 0.12 U -PDC6I_HUMAN PDCD6_HUMAN 0.12 U -PDC6I_HUMAN TS101_HUMAN 0.12 U -PEX19_HUMAN SMAD2_HUMAN 0.11 U -PGM2_HUMAN TERF1_HUMAN 0.12 U -PHAX_HUMAN SUMO2_HUMAN 0.12 U -PIAS1_HUMAN SUMO2_HUMAN 0.12 U -PIN1_HUMAN RAI1_HUMAN 0.12 U -PIN1_HUMAN REPS1_HUMAN 0.12 U -PIN1_HUMAN VIR_HUMAN 0.12 U -PLCG1_HUMAN SHAN2_HUMAN 0.12 U -PLCG1_HUMAN SNX17_HUMAN 0.12 U -PLCL2_HUMAN PP1A_HUMAN 0.12 U -PLIN3_HUMAN SMAD2_HUMAN 0.12 U -PLK1_HUMAN CCNB1_HUMAN 0.08 D -PLK1_HUMAN TP53B_HUMAN 0.08 U -PLK1_HUMAN VRK3_HUMAN 0.12 U -PLMN_HUMAN PRIO_HUMAN 0.12 U -PLXB1_HUMAN SEM4D_HUMAN 0.12 U -PP16B_HUMAN TGFR1_HUMAN 0.12 U -PP1A_HUMAN RBM26_HUMAN 0.12 U -PP1A_HUMAN RB_HUMAN 0.12 U -PP1A_HUMAN RRP1B_HUMAN 0.12 U -PP1A_HUMAN YLPM1_HUMAN 0.12 U -PP6R3_HUMAN PRKDC_HUMAN 0.12 U -PPM1G_HUMAN SUMO2_HUMAN 0.12 U -PRIO_HUMAN RBM22_HUMAN 0.12 U -PRIO_HUMAN ZKSC8_HUMAN 0.12 U -PRR12_HUMAN PUM1_HUMAN 0.39 U -PRS7_HUMAN PSMD2_HUMAN 0.04 U -PRS7_HUMAN PSMD4_HUMAN 0.04 U -PRSR1_HUMAN SUMO2_HUMAN 0.12 U -PSA2_HUMAN PSA5_HUMAN 0.12 U -PSA2_HUMAN PSA7_HUMAN 0.12 U -PSA7_HUMAN PSMD4_HUMAN 0.12 U -PSD11_HUMAN ZBT16_HUMAN 0.12 U -PSMD4_HUMAN UBQL1_HUMAN 0.12 U -PUM1_HUMAN SMAD1_HUMAN 0.12 U -PZP_HUMAN TGFB2_HUMAN 0.12 U -Q9H836_HUMAN RBCC1_HUMAN 0.08 U -Q9H836_HUMAN SMRC1_HUMAN 0.08 U -RAB4A_HUMAN RFIP1_HUMAN 0.12 U -RAB4A_HUMAN RUFY1_HUMAN 0.12 U -RAB4A_HUMAN STX4_HUMAN 0.12 U -RAD21_HUMAN SMC3_HUMAN 0.12 U -RAD21_HUMAN WAPL_HUMAN 0.12 U -RAD51_HUMAN SFR1_HUMAN 0.12 U -RAE1L_HUMAN WDR75_HUMAN 0.12 U -RB12B_HUMAN SUMO2_HUMAN 0.12 U -RB15B_HUMAN SUMO1_HUMAN 0.12 U -RBM15_HUMAN SUMO2_HUMAN 0.12 U -RBM39_HUMAN SRPK2_HUMAN 0.12 U -RBM6_HUMAN SUMO2_HUMAN 0.12 U -RBP56_HUMAN SAFB1_HUMAN 0.12 U -RED_HUMAN SUMO2_HUMAN 0.12 U -RENT1_HUMAN RPRD2_HUMAN 0.12 U -REPS1_HUMAN TPC2A_HUMAN 0.12 U -RFTN1_HUMAN UBD_HUMAN 0.12 U -RIC8A_HUMAN UBQL1_HUMAN 0.12 U -RIPK1_HUMAN RIPK3_HUMAN 0.12 U -RL28_HUMAN SMAD4_HUMAN 0.12 U -RL28_HUMAN TM230_HUMAN 0.12 U -RL35_HUMAN TBB2B_HUMAN 0.12 U -RN114_HUMAN UB2D2_HUMAN 0.12 U -RNF10_HUMAN UB2D2_HUMAN 0.12 U -RRP15_HUMAN SUMO2_HUMAN 0.12 U -RSRC2_HUMAN UBQL4_HUMAN 0.12 U -RUVB1_HUMAN RUVB2_HUMAN 0.04 U -RUVB2_HUMAN TFPT_HUMAN 0.04 U -SC22B_HUMAN STX4_HUMAN 0.12 U -SCAFB_HUMAN U2AF2_HUMAN 0.12 U -SCMC1_HUMAN UBD_HUMAN 0.12 U -SCML2_HUMAN SUMO2_HUMAN 0.12 U -SEPT2_HUMAN SEPT6_HUMAN 0.12 U -SF3B5_HUMAN SRRM2_HUMAN 0.12 U -SFR19_HUMAN UBQL4_HUMAN 0.12 U -SGT1_HUMAN SKP1_HUMAN 0.12 U -SIX6_HUMAN TLE1_HUMAN 0.12 U -SMAD1_HUMAN SMAD4_HUMAN 0.12 U -SMAD1_HUMAN SMUF2_HUMAN 0.08 U -SMAD2_HUMAN SMAD4_HUMAN 0.12 U -SMAD3_HUMAN SP130_HUMAN 0.12 U -SMAD4_HUMAN UBC9_HUMAN 0.08 U -SMAD7_HUMAN SMUF2_HUMAN 0.12 U -SMAD7_HUMAN TGFR1_HUMAN 0.12 U -SND1_HUMAN TIA1_HUMAN 0.12 U -SOX1_HUMAN STAT3_HUMAN 0.12 U -SP16H_HUMAN UIF_HUMAN 0.12 U -SPAST_HUMAN TERA_HUMAN 0.12 U -SR140_HUMAN SUMO2_HUMAN 0.12 U -SRC_HUMAN EZRI_HUMAN 0.12 D -SRC_HUMAN MCP_HUMAN 0.12 D -SRPK2_HUMAN ACINU_HUMAN 0.12 D -SRPK2_HUMAN SRSF8_HUMAN 0.12 U -SRPK2_HUMAN U2AF2_HUMAN 0.12 U -SRPK2_HUMAN ZRAB2_HUMAN 0.04 U -SRSF4_HUMAN SRSF6_HUMAN 0.12 U -STK11_HUMAN AAPK1_HUMAN 0.12 D -STK11_HUMAN SNRK_HUMAN 0.12 D -SUGP1_HUMAN U2AF2_HUMAN 0.12 U -SUMO1_HUMAN ZC3HD_HUMAN 0.12 U -SUMO1_HUMAN ZN592_HUMAN 0.12 U -SUMO2_HUMAN SYMPK_HUMAN 0.12 U -SUMO2_HUMAN UBE2T_HUMAN 0.12 U -SUMO2_HUMAN UBN2_HUMAN 0.12 U -SUMO2_HUMAN VPS72_HUMAN 0.08 U -SUMO2_HUMAN Z280C_HUMAN 0.12 U -SUMO2_HUMAN ZBT40_HUMAN 0.12 U -SUMO2_HUMAN ZN318_HUMAN 0.12 U -SUMO2_HUMAN ZN644_HUMAN 0.12 U -SUMO2_HUMAN ZZZ3_HUMAN 0.12 U -SYTC_HUMAN UBD_HUMAN 0.12 U -TB182_HUMAN TNKS1_HUMAN 0.12 U -TBB4A_HUMAN TNR1A_HUMAN 0.12 U -TBK1_HUMAN IRF3_HUMAN 0.12 D -TBK1_HUMAN TRAF2_HUMAN 0.12 U -TBP_HUMAN TF3B_HUMAN 0.12 U -TCF25_HUMAN XIAP_HUMAN 0.12 U -TERF1_HUMAN TNKS1_HUMAN 0.12 U -TERF1_HUMAN TNKS2_HUMAN 0.12 U -TERF1_HUMAN TYB10_HUMAN 0.12 U -TETN_HUMAN TR150_HUMAN 0.12 U -TGFR1_HUMAN P63_HUMAN 0.08 D -TICRR_HUMAN TOPB1_HUMAN 0.12 U -TIM50_HUMAN TNR1A_HUMAN 0.12 U -TMCO6_HUMAN UBQL1_HUMAN 0.12 U -TRAF2_HUMAN UBP31_HUMAN 0.12 U -UBA1_HUMAN UBD_HUMAN 0.12 U -UBQL1_HUMAN UBQL4_HUMAN 0.12 U -UBQL4_HUMAN WAC_HUMAN 0.12 U -WBP11_HUMAN WBP4_HUMAN 0.12 U -WNK1_HUMAN OXSR1_HUMAN 0.12 D -ZN330_HUMAN ZN408_HUMAN 0.12 U -41_HUMAN C2C2L_HUMAN 0.08 U -41_HUMAN GLPC_HUMAN 0.08 U -A0A5E8_HUMAN POTE1_HUMAN 0.08 U -A2RUM7_HUMAN RENT2_HUMAN 0.04 U -A4_HUMAN PSN1_HUMAN 0.04 U -ABCF2_HUMAN E9KL44_HUMAN 0.08 U -ABHGA_HUMAN SAFB1_HUMAN 0.08 U -ABHGA_HUMAN SPAG7_HUMAN 0.08 U -ACD_HUMAN L2GL1_HUMAN 0.08 U -ACD_HUMAN POTE1_HUMAN 0.08 U -ACK1_HUMAN CDC42_HUMAN 0.08 U -ACK1_HUMAN ITFG2_HUMAN 0.08 U -ACOC_HUMAN C10_HUMAN 0.08 U -AF9_HUMAN AFF4_HUMAN 0.08 U -AKTIP_HUMAN B0LPE5_HUMAN 0.08 U -AKTIP_HUMAN DMXL2_HUMAN 0.08 U -AKTIP_HUMAN DPOA2_HUMAN 0.08 U -ALBU_HUMAN TFR1_HUMAN 0.04 U -ALG3_HUMAN CREB3_HUMAN 0.08 U -ARC1A_HUMAN EXOC7_HUMAN 0.08 U -ARF6_HUMAN ARRB1_HUMAN 0.08 U -ARF6_HUMAN ASAP3_HUMAN 0.08 U -ARF6_HUMAN JIP4_HUMAN 0.08 U -ARRB1_HUMAN MDM2_HUMAN 0.08 U -ARRB1_HUMAN ZRAB2_HUMAN 0.08 U -ATP9B_HUMAN LSM2_HUMAN 0.08 U -ATR_HUMAN TREX1_HUMAN 0.08 U -AURKB_HUMAN INCE_HUMAN 0.04 D -B0LPE5_HUMAN IKKA_HUMAN 0.08 U -B0LPF3_HUMAN DEN1B_HUMAN 0.08 U -B0LPF3_HUMAN EGFR_HUMAN 0.08 U -B0LPF3_HUMAN PRC2A_HUMAN 0.08 U -B0LPF3_HUMAN UCK2_HUMAN 0.08 U -B2R4R0_HUMAN H31_HUMAN 0.04 U -B2R812_HUMAN B7Z2P9_HUMAN 0.08 U -B2R812_HUMAN NEDD4_HUMAN 0.08 U -B4DJ51_HUMAN IQCB1_HUMAN 0.08 U -B4DJ51_HUMAN IQGA1_HUMAN 0.08 U -B4DJ51_HUMAN MBP_HUMAN 0.08 U -B4DJ51_HUMAN TRFL_HUMAN 0.08 U -B7Z2P9_HUMAN NSRP1_HUMAN 0.08 U -B7Z2P9_HUMAN SGK1_HUMAN 0.08 U -BAD_HUMAN BCL2_HUMAN 0.08 U -BCL2_HUMAN BNI3L_HUMAN 0.04 U -BNI3L_HUMAN TMM11_HUMAN 0.04 U -BRD1_HUMAN Z512B_HUMAN 0.08 U -CC85B_HUMAN CDN1A_HUMAN 0.04 U -CC85B_HUMAN NDUA5_HUMAN 0.04 U -CC85B_HUMAN Q7Z372_HUMAN 0.04 U -CC85B_HUMAN VPS72_HUMAN 0.04 U -CC85B_HUMAN ZC3H1_HUMAN 0.04 U -CD2A2_HUMAN CDK4_HUMAN 0.08 U -CDC37_HUMAN CDK4_HUMAN 0.08 U -CDC42_HUMAN IQGA1_HUMAN 0.08 U -CDK1_HUMAN 41_HUMAN 0.08 D -CDK1_HUMAN CND3_HUMAN 0.04 D -CDK9_HUMAN HS90A_HUMAN 0.04 U -CND2_HUMAN CND3_HUMAN 0.04 U -CND3_HUMAN SMC4_HUMAN 0.04 U -CO039_HUMAN RLA1_HUMAN 0.08 U -CPPED_HUMAN POTE1_HUMAN 0.08 U -CREB3_HUMAN HCFC1_HUMAN 0.08 U -CREB3_HUMAN PTSS1_HUMAN 0.08 U -CSK21_HUMAN CDK1_HUMAN 0.04 D -CSK21_HUMAN MGMT_HUMAN 0.04 U -CUL2_HUMAN TIM13_HUMAN 0.08 U -D4PHA4_HUMAN Q7Z372_HUMAN 0.08 U -DMAP1_HUMAN TS101_HUMAN 0.08 U -DREB_HUMAN F6KD01_HUMAN 0.08 U -DREB_HUMAN ZN598_HUMAN 0.08 U -E9KL44_HUMAN TRAF6_HUMAN 0.08 U -EDF1_HUMAN NRL_HUMAN 0.08 U -EXOC7_HUMAN ZC3HE_HUMAN 0.08 U -FIZ1_HUMAN NRL_HUMAN 0.08 U -FLII_HUMAN G4XH65_HUMAN 0.08 U -FLII_HUMAN LRRF1_HUMAN 0.08 U -G3XAN8_HUMAN TIM13_HUMAN 0.08 U -GSK3B_HUMAN PSN1_HUMAN 0.04 D -H12_HUMAN Q53T99_HUMAN 0.08 U -HCFC1_HUMAN WDR5_HUMAN 0.08 U -HOIL1_HUMAN MKRN2_HUMAN 0.08 U -HOIL1_HUMAN NEMO_HUMAN 0.08 U -HOIL1_HUMAN RNF31_HUMAN 0.08 U -HS90A_HUMAN P53_HUMAN 0.04 U -IKKA_HUMAN M3K1_HUMAN 0.08 U -IKKA_HUMAN M3K7_HUMAN 0.08 U -IN80E_HUMAN Q7Z372_HUMAN 0.08 U -IN80E_HUMAN TFPT_HUMAN 0.11 U -ITCH_HUMAN UB2L3_HUMAN 0.08 U -ITCH_HUMAN UBAP2_HUMAN 0.08 U -KDM3B_HUMAN Z512B_HUMAN 0.08 U -KPCA_HUMAN ACOC_HUMAN 0.08 D -L7RRS6_HUMAN RB_HUMAN 0.04 U -LYAR_HUMAN SRP14_HUMAN 0.08 U -MED1_HUMAN MED4_HUMAN 0.04 U -MED4_HUMAN PUM2_HUMAN 0.08 U -MK01_HUMAN EXOC7_HUMAN 0.08 D -NELL1_HUMAN NEXN_HUMAN 0.08 U -NELL1_HUMAN SLTM_HUMAN 0.08 U -NELL1_HUMAN TDIF2_HUMAN 0.08 U -NEMF_HUMAN NOP56_HUMAN 0.08 U -NFAC2_HUMAN VIME_HUMAN 0.08 U -NFYA_HUMAN PAPOG_HUMAN 0.08 U -NFYA_HUMAN SP1_HUMAN 0.08 U -PAK1_HUMAN PLK1_HUMAN 0.04 D -PALM_HUMAN POTE1_HUMAN 0.08 U -POTE1_HUMAN TERF1_HUMAN 0.08 U -PSMD2_HUMAN PSMD4_HUMAN 0.08 U -Q53T99_HUMAN TBC13_HUMAN 0.08 U -Q9HBD4_HUMAN RENT1_HUMAN 0.08 U -RENT2_HUMAN SMG1_HUMAN 0.08 U -RLA1_HUMAN RLA2_HUMAN 0.08 U -RLA1_HUMAN XRCC6_HUMAN 0.08 U -SGK1_HUMAN T184C_HUMAN 0.08 U -SRC_HUMAN CDC42_HUMAN 0.04 D -SRP14_HUMAN SZRD1_HUMAN 0.08 U -SUMO1_HUMAN UCKL1_HUMAN 0.04 U -TNR8_HUMAN TRAF2_HUMAN 0.08 U -XRCC6_HUMAN Z512B_HUMAN 0.08 U -A2RUM7_HUMAN RL11_HUMAN 0.04 U -A4_HUMAN TPC2L_HUMAN 0.04 U -ARFG1_HUMAN RL11_HUMAN 0.04 U -ATM_HUMAN CREB1_HUMAN 0.04 D -ATM_HUMAN TERF1_HUMAN 0.04 D -ATX1_HUMAN RPGF4_HUMAN 0.04 U -AURKB_HUMAN SKA1_HUMAN 0.04 U -B2R5T5_HUMAN GRB2_HUMAN 0.04 U -BCL2_HUMAN L7RRS6_HUMAN 0.04 U -BIRC2_HUMAN CASP3_HUMAN 0.04 U -BIRC2_HUMAN TRAF2_HUMAN 0.04 U -BRCA1_HUMAN G4XH65_HUMAN 0.04 U -BRCA1_HUMAN P53_HUMAN 0.04 U -CBL_HUMAN GRB2_HUMAN 0.04 U -CCND1_HUMAN CDK4_HUMAN 0.04 U -CCND1_HUMAN CDN1A_HUMAN 0.04 U -CCND1_HUMAN RB_HUMAN 0.04 U -CCNT1_HUMAN MYC_HUMAN 0.04 U -CLN8_HUMAN RRP15_HUMAN 0.04 U -CLN8_HUMAN SELK_HUMAN 0.04 U -CLPX_HUMAN GRB2_HUMAN 0.04 U -CTNB1_HUMAN RBCC1_HUMAN 0.04 U -DCAKD_HUMAN RPB9_HUMAN 0.04 U -DCP2_HUMAN RENT1_HUMAN 0.04 U -ECT2_HUMAN ESYT2_HUMAN 0.04 U -EIF3A_HUMAN EIF3B_HUMAN 0.04 U -EIF3A_HUMAN RENT1_HUMAN 0.04 U -EIF3B_HUMAN MTOR_HUMAN 0.04 U -ERBB2_HUMAN CDK1_HUMAN 0.04 D -EZRI_HUMAN NHRF1_HUMAN 0.04 U -F6KD01_HUMAN NHRF1_HUMAN 0.04 U -G4XH65_HUMAN HS90A_HUMAN 0.04 U -GORS2_HUMAN TRAF2_HUMAN 0.04 U -GRB2_HUMAN MY18A_HUMAN 0.04 U -ITCH_HUMAN P63_HUMAN 0.04 U -JUN_HUMAN TBP_HUMAN 0.04 U -L7RRS6_HUMAN STK3_HUMAN 0.01 U -LYAR_HUMAN ZBT16_HUMAN 0.04 U -MDM2_HUMAN RL11_HUMAN 0.04 U -MED19_HUMAN MED1_HUMAN 0.04 U -MED19_HUMAN MED4_HUMAN 0.04 U -MED19_HUMAN RPAB2_HUMAN 0.04 U -MED19_HUMAN RPB9_HUMAN 0.04 U -MGMT_HUMAN UBA1_HUMAN 0.04 U -NNTM_HUMAN PRPF3_HUMAN 0.04 U -NNTM_HUMAN S26A2_HUMAN 0.04 U -NOP56_HUMAN RL11_HUMAN 0.04 U -NSUN5_HUMAN RPAB2_HUMAN 0.04 U -PEX19_HUMAN STK3_HUMAN 0.01 U -POSTN_HUMAN TPC2L_HUMAN 0.04 U -Q7Z372_HUMAN UBR5_HUMAN 0.04 U -RASF5_HUMAN STK3_HUMAN 0.01 U -RENT1_HUMAN RENT2_HUMAN 0.04 U -RPGF4_HUMAN S39AA_HUMAN 0.04 U -SEC62_HUMAN ZNF24_HUMAN 0.04 U -SETD2_HUMAN SMAD3_HUMAN 0.04 U -SKA1_HUMAN SKA3_HUMAN 0.04 U -SMAD3_HUMAN SMUF2_HUMAN 0.04 U -SYTC_HUMAN UCKL1_HUMAN 0.04 U -ZBT16_HUMAN ZNF24_HUMAN 0.04 U -ZN397_HUMAN ZN446_HUMAN 0.04 U -ZN446_HUMAN ZNF24_HUMAN 0.04 U -CENPF_HUMAN NDE1_HUMAN 0.12 U -EMSY_HUMAN ZN335_HUMAN 0.17 U -IWS1_HUMAN SETD2_HUMAN 0.12 U -KTNA1_HUMAN KTNB1_HUMAN 0.18 U -NOL8_HUMAN RRAGC_HUMAN 0.12 U -NOL8_HUMAN RRAGD_HUMAN 0.15 U -PATL1_HUMAN PHF20_HUMAN 0.12 U -IBP2_HUMAN TRFE_HUMAN 0.08 U -HDAC2_HUMAN JARD2_HUMAN 0.03 U -AFF4_HUMAN ELL2_HUMAN 0.06 U -ATRX_HUMAN NEK1_HUMAN 0.06 U -BTF3_HUMAN RWDD4_HUMAN 0.06 U -DCP1A_HUMAN DCP1B_HUMAN 0.04 U -DCP1A_HUMAN TIA1_HUMAN 0.06 U -DCP1B_HUMAN EDC3_HUMAN 0.06 U -GLYR1_HUMAN NSD3_HUMAN 0.06 U -KLC4_HUMAN RUFY1_HUMAN 0.06 U -LRRC1_HUMAN MARE2_HUMAN 0.06 U -NSE2_HUMAN PDS5A_HUMAN 0.04 U -RB15B_HUMAN RBM15_HUMAN 0.06 U -VPS72_HUMAN ZC3H1_HUMAN 0.09 U -ARI4B_HUMAN SP130_HUMAN 0.04 U -CO3_HUMAN VTDB_HUMAN 0.04 U -SASH3_HUMAN SC22B_HUMAN 0.06 U -NU153_HUMAN SENP2_HUMAN 0.04 U -2A5A_HUMAN NEK1_HUMAN 0.03 U -ARHG1_HUMAN GBF1_HUMAN 0.03 U -CAF1A_HUMAN CAF1B_HUMAN 0.03 U -CENPF_HUMAN NU133_HUMAN 0.03 U -COASY_HUMAN EDC4_HUMAN 0.03 U -CUL4A_HUMAN RBBP5_HUMAN 0.03 U -CWC15_HUMAN SF3B5_HUMAN 0.03 U -DCP1A_HUMAN EDC3_HUMAN 0.01 U -DCP1B_HUMAN EDC4_HUMAN 0.03 U -EDC4_HUMAN FBLN1_HUMAN 0.03 U -ELF1_HUMAN NFAC1_HUMAN 0.03 U -GPTC8_HUMAN NUMBL_HUMAN 0.03 U -KAT6A_HUMAN RERE_HUMAN 0.03 U -NSD3_HUMAN SEPT6_HUMAN 0.03 U -PDS5A_HUMAN WAPL_HUMAN 0.03 U -PRC2A_HUMAN RERE_HUMAN 0.03 U -PRC2B_HUMAN RERE_HUMAN 0.03 U -RAF1_HUMAN MYPT1_HUMAN 0.03 D -RBM5_HUMAN WBP11_HUMAN 0.03 U -RCOR1_HUMAN SMRC2_HUMAN 0.03 U -RN168_HUMAN TRIPC_HUMAN 0.03 U -TDIF2_HUMAN TDT_HUMAN 0.03 U -WBP11_HUMAN ZC3HD_HUMAN 0.03 U -APOB_HUMAN SC61B_HUMAN 0.02 U -ARC1A_HUMAN SC22B_HUMAN 0.02 U -ARHG1_HUMAN CUX1_HUMAN 0.02 U -ARHG1_HUMAN MY18A_HUMAN 0.02 U -CNOT3_HUMAN CNOT4_HUMAN 0.02 U -DDRGK_HUMAN UFL1_HUMAN 0.02 U -EP400_HUMAN TBCD4_HUMAN 0.02 U -NFIC_HUMAN TDT_HUMAN 0.02 U -NSE2_HUMAN WAPL_HUMAN 0.02 U -PCBP2_HUMAN PTBP1_HUMAN 0.02 U -SMRC2_HUMAN SRGP3_HUMAN 0.02 U -SR140_HUMAN TBCD4_HUMAN 0.02 U -ANT3_HUMAN PLMN_HUMAN 0.01 U -CO7_HUMAN PLMN_HUMAN 0.01 U -DCP1A_HUMAN EDC4_HUMAN 0.01 U -EDC4_HUMAN YTDC1_HUMAN 0.01 U -PLMN_HUMAN TETN_HUMAN 0.01 U -PLMN_HUMAN YTDC1_HUMAN 0.01 U diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/hac-clusters-horizontal.txt b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/hac-clusters-horizontal.txt deleted file mode 100644 index 81ef75d..0000000 --- a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/hac-clusters-horizontal.txt +++ /dev/null @@ -1,101 +0,0 @@ -algorithm labels -hiv-omicsintegrator1-params-NQQFMSW 5 -hiv-omicsintegrator1-params-7F2UHHY 5 -hiv-omicsintegrator1-params-DLZY2UU 5 -hiv-omicsintegrator1-params-F2GW4FM 5 -hiv-omicsintegrator1-params-GJJHAWR 5 -hiv-omicsintegrator1-params-EKFAHXJ 5 -hiv-omicsintegrator1-params-O245LF3 5 -hiv-omicsintegrator1-params-K2C44YG 5 -hiv-omicsintegrator1-params-MKUCXSX 5 -hiv-omicsintegrator1-params-CXULPPY 5 -hiv-omicsintegrator1-params-D2CFK7Y 5 -hiv-omicsintegrator1-params-GB464QK 5 -hiv-omicsintegrator1-params-QLA7PZM 5 -hiv-omicsintegrator1-params-BK5Y6AV 5 -hiv-omicsintegrator1-params-E4PGYJE 5 -hiv-omicsintegrator1-params-YH53Z7I 5 -hiv-omicsintegrator1-params-V6TRFD5 5 -hiv-omicsintegrator1-params-VNZPBKY 5 -hiv-omicsintegrator1-params-HXBNO4P 5 -hiv-omicsintegrator1-params-OW2ZQVJ 5 -hiv-omicsintegrator1-params-UG35EN3 5 -hiv-omicsintegrator1-params-7VVKFFW 5 -hiv-omicsintegrator1-params-Y7FVD5Y 5 -hiv-omicsintegrator1-params-X7OTY3Z 5 -hiv-omicsintegrator1-params-6ZYKM5I 11 -hiv-omicsintegrator1-params-LW2V34U 5 -hiv-omicsintegrator1-params-5PV5R4M 5 -hiv-omicsintegrator1-params-5OAENKB 5 -hiv-omicsintegrator1-params-4S6QYO2 7 -hiv-omicsintegrator1-params-SUBCPCC 4 -hiv-omicsintegrator1-params-WERUDAF 5 -hiv-omicsintegrator1-params-TQAZEEK 5 -hiv-omicsintegrator1-params-C4N3KE7 10 -hiv-omicsintegrator1-params-J5PMCRQ 4 -hiv-omicsintegrator1-params-2NL4RDV 5 -hiv-omicsintegrator1-params-OJVVFSK 5 -hiv-omicsintegrator1-params-VZM7OSX 12 -hiv-omicsintegrator1-params-UAYBOVK 4 -hiv-omicsintegrator1-params-XJNUGEC 5 -hiv-omicsintegrator1-params-5E56FMM 5 -hiv-omicsintegrator1-params-BHLRRSP 5 -hiv-omicsintegrator1-params-VGIOBOX 5 -hiv-omicsintegrator1-params-LIWRFPS 5 -hiv-omicsintegrator1-params-UWSVCXO 5 -hiv-omicsintegrator1-params-EONPKPH 11 -hiv-omicsintegrator1-params-6BGQ7PL 16 -hiv-omicsintegrator1-params-5I2I6FM 5 -hiv-omicsintegrator1-params-XAQM3RR 5 -hiv-omicsintegrator1-params-EBEEP6T 7 -hiv-omicsintegrator1-params-W2DOD4H 21 -hiv-omicsintegrator1-params-BF65QO6 4 -hiv-omicsintegrator1-params-XOXO56K 5 -hiv-omicsintegrator1-params-4G6HWVJ 10 -hiv-omicsintegrator1-params-UNEWALJ 9 -hiv-omicsintegrator1-params-Y5XCKB2 4 -hiv-omicsintegrator1-params-KPIH42T 5 -hiv-omicsintegrator1-params-5YCE7NJ 6 -hiv-omicsintegrator1-params-DXTK7ZU 9 -hiv-omicsintegrator1-params-SHAKIBL 4 -hiv-omicsintegrator1-params-VXGL3EA 5 -hiv-omicsintegrator1-params-WCP7GIZ 5 -hiv-omicsintegrator1-params-L4IUEVV 5 -hiv-omicsintegrator1-params-PMY3CCQ 5 -hiv-omicsintegrator1-params-LIECIRU 5 -hiv-omicsintegrator1-params-UA2CL6Z 11 -hiv-omicsintegrator1-params-CUD2SWJ 18 -hiv-omicsintegrator1-params-EE47ACK 5 -hiv-omicsintegrator1-params-5E3SBY6 5 -hiv-omicsintegrator1-params-NFOUAB6 7 -hiv-omicsintegrator1-params-2G7CMNV 15 -hiv-omicsintegrator1-params-422WXNM 3 -hiv-omicsintegrator1-params-R3TNGIE 4 -hiv-omicsintegrator1-params-VNZUFFN 10 -hiv-omicsintegrator1-params-L7CHKLI 2 -hiv-omicsintegrator1-params-LWUMKKP 3 -hiv-omicsintegrator1-params-L2HU4XD 4 -hiv-omicsintegrator1-params-OA2LKJB 6 -hiv-omicsintegrator1-params-I6LVYQ7 2 -hiv-omicsintegrator1-params-D7XEWKT 3 -hiv-omicsintegrator1-params-7M4YEVF 4 -hiv-omicsintegrator1-params-ZZYQSRD 5 -hiv-omicsintegrator1-params-WQ6V5PX 5 -hiv-omicsintegrator1-params-XQ2C7V7 5 -hiv-omicsintegrator1-params-CML462S 5 -hiv-omicsintegrator1-params-ZWKBRYR 11 -hiv-omicsintegrator1-params-T77D7QZ 14 -hiv-omicsintegrator1-params-SWWL7WP 16 -hiv-omicsintegrator1-params-FYCKMYA 5 -hiv-omicsintegrator1-params-H766NCA 7 -hiv-omicsintegrator1-params-EAX635F 19 -hiv-omicsintegrator1-params-2NKIR7L 17 -hiv-omicsintegrator1-params-JZPC2XQ 0 -hiv-omicsintegrator1-params-PI44E6Y 10 -hiv-omicsintegrator1-params-Y3DQROJ 13 -hiv-omicsintegrator1-params-RCIIWF5 1 -hiv-omicsintegrator1-params-2NFVB7W 0 -hiv-omicsintegrator1-params-OWG4JUJ 6 -hiv-omicsintegrator1-params-PQYTDPN 8 -hiv-omicsintegrator1-params-BS7GMXF 1 -hiv-omicsintegrator1-params-7JTTPPE 20 diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/hac-clusters-vertical.txt b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/hac-clusters-vertical.txt deleted file mode 100644 index 0de193e..0000000 --- a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/hac-clusters-vertical.txt +++ /dev/null @@ -1,101 +0,0 @@ -algorithm labels -hiv-omicsintegrator1-params-NQQFMSW 10 -hiv-omicsintegrator1-params-7F2UHHY 10 -hiv-omicsintegrator1-params-DLZY2UU 10 -hiv-omicsintegrator1-params-F2GW4FM 10 -hiv-omicsintegrator1-params-GJJHAWR 10 -hiv-omicsintegrator1-params-EKFAHXJ 10 -hiv-omicsintegrator1-params-O245LF3 10 -hiv-omicsintegrator1-params-K2C44YG 10 -hiv-omicsintegrator1-params-MKUCXSX 10 -hiv-omicsintegrator1-params-CXULPPY 10 -hiv-omicsintegrator1-params-D2CFK7Y 10 -hiv-omicsintegrator1-params-GB464QK 10 -hiv-omicsintegrator1-params-QLA7PZM 10 -hiv-omicsintegrator1-params-BK5Y6AV 10 -hiv-omicsintegrator1-params-E4PGYJE 10 -hiv-omicsintegrator1-params-YH53Z7I 10 -hiv-omicsintegrator1-params-V6TRFD5 10 -hiv-omicsintegrator1-params-VNZPBKY 10 -hiv-omicsintegrator1-params-HXBNO4P 10 -hiv-omicsintegrator1-params-OW2ZQVJ 10 -hiv-omicsintegrator1-params-UG35EN3 10 -hiv-omicsintegrator1-params-7VVKFFW 10 -hiv-omicsintegrator1-params-Y7FVD5Y 10 -hiv-omicsintegrator1-params-X7OTY3Z 10 -hiv-omicsintegrator1-params-6ZYKM5I 5 -hiv-omicsintegrator1-params-LW2V34U 10 -hiv-omicsintegrator1-params-5PV5R4M 10 -hiv-omicsintegrator1-params-5OAENKB 10 -hiv-omicsintegrator1-params-4S6QYO2 1 -hiv-omicsintegrator1-params-SUBCPCC 9 -hiv-omicsintegrator1-params-WERUDAF 10 -hiv-omicsintegrator1-params-TQAZEEK 10 -hiv-omicsintegrator1-params-C4N3KE7 2 -hiv-omicsintegrator1-params-J5PMCRQ 9 -hiv-omicsintegrator1-params-2NL4RDV 10 -hiv-omicsintegrator1-params-OJVVFSK 10 -hiv-omicsintegrator1-params-VZM7OSX 4 -hiv-omicsintegrator1-params-UAYBOVK 9 -hiv-omicsintegrator1-params-XJNUGEC 10 -hiv-omicsintegrator1-params-5E56FMM 10 -hiv-omicsintegrator1-params-BHLRRSP 10 -hiv-omicsintegrator1-params-VGIOBOX 10 -hiv-omicsintegrator1-params-LIWRFPS 10 -hiv-omicsintegrator1-params-UWSVCXO 10 -hiv-omicsintegrator1-params-EONPKPH 5 -hiv-omicsintegrator1-params-6BGQ7PL 11 -hiv-omicsintegrator1-params-5I2I6FM 10 -hiv-omicsintegrator1-params-XAQM3RR 10 -hiv-omicsintegrator1-params-EBEEP6T 1 -hiv-omicsintegrator1-params-W2DOD4H 21 -hiv-omicsintegrator1-params-BF65QO6 9 -hiv-omicsintegrator1-params-XOXO56K 10 -hiv-omicsintegrator1-params-4G6HWVJ 2 -hiv-omicsintegrator1-params-UNEWALJ 20 -hiv-omicsintegrator1-params-Y5XCKB2 9 -hiv-omicsintegrator1-params-KPIH42T 10 -hiv-omicsintegrator1-params-5YCE7NJ 3 -hiv-omicsintegrator1-params-DXTK7ZU 20 -hiv-omicsintegrator1-params-SHAKIBL 9 -hiv-omicsintegrator1-params-VXGL3EA 10 -hiv-omicsintegrator1-params-WCP7GIZ 10 -hiv-omicsintegrator1-params-L4IUEVV 10 -hiv-omicsintegrator1-params-PMY3CCQ 10 -hiv-omicsintegrator1-params-LIECIRU 10 -hiv-omicsintegrator1-params-UA2CL6Z 5 -hiv-omicsintegrator1-params-CUD2SWJ 12 -hiv-omicsintegrator1-params-EE47ACK 10 -hiv-omicsintegrator1-params-5E3SBY6 10 -hiv-omicsintegrator1-params-NFOUAB6 1 -hiv-omicsintegrator1-params-2G7CMNV 15 -hiv-omicsintegrator1-params-422WXNM 16 -hiv-omicsintegrator1-params-R3TNGIE 9 -hiv-omicsintegrator1-params-VNZUFFN 2 -hiv-omicsintegrator1-params-L7CHKLI 14 -hiv-omicsintegrator1-params-LWUMKKP 16 -hiv-omicsintegrator1-params-L2HU4XD 9 -hiv-omicsintegrator1-params-OA2LKJB 3 -hiv-omicsintegrator1-params-I6LVYQ7 14 -hiv-omicsintegrator1-params-D7XEWKT 16 -hiv-omicsintegrator1-params-7M4YEVF 9 -hiv-omicsintegrator1-params-ZZYQSRD 10 -hiv-omicsintegrator1-params-WQ6V5PX 10 -hiv-omicsintegrator1-params-XQ2C7V7 10 -hiv-omicsintegrator1-params-CML462S 10 -hiv-omicsintegrator1-params-ZWKBRYR 5 -hiv-omicsintegrator1-params-T77D7QZ 13 -hiv-omicsintegrator1-params-SWWL7WP 11 -hiv-omicsintegrator1-params-FYCKMYA 10 -hiv-omicsintegrator1-params-H766NCA 1 -hiv-omicsintegrator1-params-EAX635F 8 -hiv-omicsintegrator1-params-2NKIR7L 22 -hiv-omicsintegrator1-params-JZPC2XQ 17 -hiv-omicsintegrator1-params-PI44E6Y 2 -hiv-omicsintegrator1-params-Y3DQROJ 6 -hiv-omicsintegrator1-params-RCIIWF5 19 -hiv-omicsintegrator1-params-2NFVB7W 17 -hiv-omicsintegrator1-params-OWG4JUJ 3 -hiv-omicsintegrator1-params-PQYTDPN 7 -hiv-omicsintegrator1-params-BS7GMXF 19 -hiv-omicsintegrator1-params-7JTTPPE 18 diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/hac-horizontal.png b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/hac-horizontal.png deleted file mode 100644 index bef2c1c..0000000 Binary files a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/hac-horizontal.png and /dev/null differ diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/hac-vertical.png b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/hac-vertical.png deleted file mode 100644 index f207761..0000000 Binary files a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/hac-vertical.png and /dev/null differ diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/omicsintegrator1-ensemble-pathway.txt b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/omicsintegrator1-ensemble-pathway.txt deleted file mode 100644 index 43ae2d9..0000000 --- a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/omicsintegrator1-ensemble-pathway.txt +++ /dev/null @@ -1,1421 +0,0 @@ -Node1 Node2 Frequency Direction -1433B_HUMAN L7RRS6_HUMAN 0.16 U -1433B_HUMAN WEE1_HUMAN 0.16 U -1433E_HUMAN HDAC4_HUMAN 0.16 U -1433E_HUMAN KIF1C_HUMAN 0.16 U -1433E_HUMAN L7RRS6_HUMAN 0.16 U -1433G_HUMAN CDK17_HUMAN 0.16 U -1433G_HUMAN CLAP1_HUMAN 0.16 U -1433G_HUMAN CLK3_HUMAN 0.16 U -1433G_HUMAN DYR1A_HUMAN 0.16 U -1433G_HUMAN EDC3_HUMAN 0.16 U -1433G_HUMAN KIF1B_HUMAN 0.16 U -1433G_HUMAN L7RRS6_HUMAN 0.16 U -1433G_HUMAN LC7L2_HUMAN 0.16 U -1433G_HUMAN LIPB1_HUMAN 0.16 U -1433G_HUMAN NGAP_HUMAN 0.16 U -1433G_HUMAN NOLC1_HUMAN 0.16 U -1433G_HUMAN OSBL3_HUMAN 0.16 U -1433G_HUMAN PR38B_HUMAN 0.16 U -1433G_HUMAN SRS10_HUMAN 0.16 U -1433G_HUMAN TR150_HUMAN 0.16 U -1433G_HUMAN TRA2A_HUMAN 0.16 U -1433T_HUMAN CBL_HUMAN 0.16 U -1433T_HUMAN J3KPH8_HUMAN 0.16 U -1433T_HUMAN PI4KB_HUMAN 0.16 U -2A5A_HUMAN 2AAB_HUMAN 0.16 U -2A5E_HUMAN 2AAB_HUMAN 0.16 U -2AAB_HUMAN B3KUN1_HUMAN 0.16 U -4EBP1_HUMAN IF4E_HUMAN 0.16 U -4EBP1_HUMAN RPTOR_HUMAN 0.16 U -4EBP2_HUMAN IF4E_HUMAN 0.16 U -4EBP3_HUMAN IF4E_HUMAN 0.16 U -A2RUM7_HUMAN MDM2_HUMAN 0.12 U -A2RUM7_HUMAN N0E4C7_HUMAN 0.16 U -A4QPA9_HUMAN L7RRS6_HUMAN 0.16 U -A4QPA9_HUMAN M3K1_HUMAN 0.04 U -A4QPA9_HUMAN MK01_HUMAN 0.16 U -A8K3Y2_HUMAN M3K7_HUMAN 0.16 U -A8K3Y2_HUMAN MK14_HUMAN 0.16 U -AAK1_HUMAN NUMB_HUMAN 0.16 D -AAPK1_HUMAN AAKB1_HUMAN 0.16 D -AAPK1_HUMAN ACACA_HUMAN 0.16 D -AAPK1_HUMAN GBF1_HUMAN 0.16 D -AAPK1_HUMAN HS90A_HUMAN 0.04 U -AAPK1_HUMAN IMA1_HUMAN 0.16 D -ABL1_HUMAN ABL2_HUMAN 0.16 D -ABL1_HUMAN ATR_HUMAN 0.16 D -ABL1_HUMAN L7RT18_HUMAN 0.16 U -ACTB_HUMAN EMD_HUMAN 0.16 U -ADRM1_HUMAN PSMD2_HUMAN 0.16 U -AF9_HUMAN CDK9_HUMAN 0.08 U -AF9_HUMAN DOT1L_HUMAN 0.16 U -AFF4_HUMAN CDK9_HUMAN 0.16 U -AKA10_HUMAN B2R5T5_HUMAN 0.16 U -AKAP1_HUMAN B2R5T5_HUMAN 0.16 U -AKT1_HUMAN ACAP1_HUMAN 0.16 D -AKT1_HUMAN ACINU_HUMAN 0.04 D -AKT1_HUMAN AGAP2_HUMAN 0.04 D -AKT1_HUMAN CHSP1_HUMAN 0.16 D -AKT1_HUMAN FYV1_HUMAN 0.16 D -AKT1_HUMAN GRDN_HUMAN 0.16 D -AKT1_HUMAN HD_HUMAN 0.04 D -AKT1_HUMAN MTOR_HUMAN 0.16 U -AKT1_HUMAN PEA15_HUMAN 0.16 D -AKT1_HUMAN PHF20_HUMAN 0.16 D -AKT1_HUMAN TBCD4_HUMAN 0.16 D -AKT1_HUMAN TERA_HUMAN 0.04 D -AKT1_HUMAN WNK1_HUMAN 0.16 D -AN32A_HUMAN H31_HUMAN 0.16 U -APC1_HUMAN B4DL80_HUMAN 0.16 U -APTX_HUMAN XRCC1_HUMAN 0.16 U -ARHG7_HUMAN GIT1_HUMAN 0.08 U -ARHG7_HUMAN PAK1_HUMAN 0.16 U -ATF2_HUMAN JUN_HUMAN 0.16 U -ATM_HUMAN BAG6_HUMAN 0.16 D -ATM_HUMAN BRCA1_HUMAN 0.12 D -ATM_HUMAN DBF4A_HUMAN 0.16 D -ATM_HUMAN MCM3_HUMAN 0.04 D -ATM_HUMAN PRKDC_HUMAN 0.16 D -ATM_HUMAN RIF1_HUMAN 0.16 D -ATM_HUMAN SLX4_HUMAN 0.16 D -ATM_HUMAN SMC1A_HUMAN 0.16 D -ATM_HUMAN UBR5_HUMAN 0.16 D -ATN1_HUMAN MTG8_HUMAN 0.16 U -ATN1_HUMAN RERE_HUMAN 0.16 U -ATRX_HUMAN DAXX_HUMAN 0.16 U -ATR_HUMAN CNOT2_HUMAN 0.16 D -ATR_HUMAN F5H0R1_HUMAN 0.16 D -ATR_HUMAN FACD2_HUMAN 0.16 D -ATR_HUMAN MRP_HUMAN 0.16 D -ATR_HUMAN PSF2_HUMAN 0.16 D -AURKB_HUMAN ATM_HUMAN 0.16 D -AURKB_HUMAN DSN1_HUMAN 0.16 D -AURKB_HUMAN H33_HUMAN 0.16 D -AURKB_HUMAN SUMO1_HUMAN 0.16 U -AXIN1_HUMAN CTNB1_HUMAN 0.16 U -AXIN1_HUMAN GSK3B_HUMAN 0.16 U -B0LPE5_HUMAN B3KUN1_HUMAN 0.16 U -B0LPE5_HUMAN GSK3B_HUMAN 0.16 U -B0LPE5_HUMAN MDM2_HUMAN 0.16 U -B0LPE5_HUMAN MTOR_HUMAN 0.16 U -B2CL2_HUMAN BAD_HUMAN 0.16 U -B2R4R0_HUMAN BPTF_HUMAN 0.16 U -B2R4R0_HUMAN CENPA_HUMAN 0.16 U -B2R4R0_HUMAN EP300_HUMAN 0.16 U -B2R4R0_HUMAN SMCA5_HUMAN 0.16 U -B2R5T5_HUMAN KAPCA_HUMAN 0.16 U -B2RBV7_HUMAN CAND1_HUMAN 0.04 U -B2RBV7_HUMAN DDB1_HUMAN 0.16 U -B2RBV7_HUMAN PHIP_HUMAN 0.16 U -B3KUN1_HUMAN IGBP1_HUMAN 0.16 U -B4DL80_HUMAN CDC20_HUMAN 0.16 U -B4DPT1_HUMAN KMT2C_HUMAN 0.16 U -B4DPT1_HUMAN WDR5_HUMAN 0.16 U -B4DQB3_HUMAN NCOA1_HUMAN 0.16 U -B4DQB3_HUMAN SND1_HUMAN 0.16 U -B7Z3D6_HUMAN CCNB1_HUMAN 0.16 U -B7Z3D6_HUMAN H15_HUMAN 0.16 U -B7Z3D6_HUMAN RB_HUMAN 0.08 U -BAD_HUMAN D0PNI1_HUMAN 0.12 U -BAZ1B_HUMAN SMCA5_HUMAN 0.16 U -BICD1_HUMAN GSK3B_HUMAN 0.16 U -BIRC5_HUMAN BOREA_HUMAN 0.12 U -BLM_HUMAN MLH1_HUMAN 0.16 U -BLM_HUMAN P53_HUMAN 0.16 U -BMI1_HUMAN CBX8_HUMAN 0.16 U -BMI1_HUMAN RING2_HUMAN 0.16 U -BOREA_HUMAN INCE_HUMAN 0.24 U -BRAP_HUMAN RASH_HUMAN 0.16 U -BRCA1_HUMAN FANCJ_HUMAN 0.16 U -BRCA1_HUMAN MYC_HUMAN 0.08 U -BRCA2_HUMAN RAD51_HUMAN 0.16 U -BRPF1_HUMAN KAT6A_HUMAN 0.24 U -BTF3_HUMAN G4XH65_HUMAN 0.16 U -BUD13_HUMAN RBMX2_HUMAN 0.32 U -CAF1A_HUMAN PCNA_HUMAN 0.16 U -CAF1B_HUMAN H31_HUMAN 0.16 U -CAND1_HUMAN CUL1_HUMAN 0.04 U -CAND1_HUMAN CUL4A_HUMAN 0.04 U -CASP3_HUMAN CH60_HUMAN 0.16 U -CASP3_HUMAN XIAP_HUMAN 0.16 U -CASP9_HUMAN XIAP_HUMAN 0.04 U -CBL_HUMAN CD2AP_HUMAN 0.16 U -CBL_HUMAN CRKL_HUMAN 0.16 U -CBL_HUMAN EGFR_HUMAN 0.16 U -CBL_HUMAN L7RT18_HUMAN 0.16 U -CBL_HUMAN NCK1_HUMAN 0.16 U -CBL_HUMAN P85A_HUMAN 0.16 U -CBL_HUMAN PLCG1_HUMAN 0.16 U -CBL_HUMAN UB2D2_HUMAN 0.16 U -CBX1_HUMAN EMSY_HUMAN 0.16 U -CBX1_HUMAN H31_HUMAN 0.16 U -CBX5_HUMAN H31_HUMAN 0.16 U -CBX5_HUMAN LBR_HUMAN 0.16 U -CBX5_HUMAN NIPBL_HUMAN 0.16 U -CBX5_HUMAN TIF1B_HUMAN 0.16 U -CBX8_HUMAN MOV10_HUMAN 0.16 U -CCAR2_HUMAN SIR1_HUMAN 0.16 U -CCDC6_HUMAN PP4C_HUMAN 0.16 U -CCNB1_HUMAN CCNF_HUMAN 0.04 U -CCNB1_HUMAN CDC20_HUMAN 0.16 U -CCNT1_HUMAN CDK9_HUMAN 0.16 U -CD2A2_HUMAN MDM2_HUMAN 0.16 U -CD2A2_HUMAN TRIPC_HUMAN 0.16 U -CD2AP_HUMAN MB12A_HUMAN 0.16 U -CD3E_HUMAN NCK1_HUMAN 0.16 U -CD3Z_HUMAN ZAP70_HUMAN 0.16 U -CD7_HUMAN P85A_HUMAN 0.16 U -CDC20_HUMAN PTTG1_HUMAN 0.16 U -CDC42_HUMAN GDIR1_HUMAN 0.12 U -CDC42_HUMAN PAK1_HUMAN 0.12 U -CDC42_HUMAN PAK4_HUMAN 0.12 U -CDC42_HUMAN WASP_HUMAN 0.12 U -CDC73_HUMAN CTNB1_HUMAN 0.16 U -CDC73_HUMAN LEO1_HUMAN 0.16 U -CDC7_HUMAN DBF4A_HUMAN 0.16 U -CDC7_HUMAN MCM2_HUMAN 0.16 D -CDC7_HUMAN PSIP1_HUMAN 0.16 D -CDK1_HUMAN DDX3X_HUMAN 0.16 D -CDK1_HUMAN ECT2_HUMAN 0.16 D -CDK1_HUMAN FOXK2_HUMAN 0.16 D -CDK1_HUMAN NPM_HUMAN 0.16 D -CDK1_HUMAN NUP98_HUMAN 0.16 D -CDK2_HUMAN ARI4A_HUMAN 0.16 D -CDK2_HUMAN ASHWN_HUMAN 0.16 D -CDK2_HUMAN BD1L1_HUMAN 0.16 D -CDK2_HUMAN DNLI1_HUMAN 0.16 D -CDK2_HUMAN H15_HUMAN 0.16 U -CDK2_HUMAN HIRA_HUMAN 0.16 D -CDK2_HUMAN NU133_HUMAN 0.16 D -CDK2_HUMAN P5CR2_HUMAN 0.16 D -CDK2_HUMAN PB1_HUMAN 0.16 D -CDK2_HUMAN TB182_HUMAN 0.04 D -CDK2_HUMAN TCOF_HUMAN 0.16 D -CDK9_HUMAN DHX30_HUMAN 0.16 U -CDK9_HUMAN ELL2_HUMAN 0.16 U -CDK9_HUMAN MYC_HUMAN 0.08 U -CDK9_HUMAN SPT5H_HUMAN 0.16 D -CENPA_HUMAN HJURP_HUMAN 0.16 U -CFTR_HUMAN NHRF1_HUMAN 0.12 U -CHD4_HUMAN HDAC1_HUMAN 0.16 U -CHIP_HUMAN HS90A_HUMAN 0.16 U -CHIP_HUMAN P53_HUMAN 0.08 U -CHIP_HUMAN UBE2N_HUMAN 0.08 U -CIR1_HUMAN SRSF2_HUMAN 0.16 U -CND2_HUMAN SMC2_HUMAN 0.08 U -CNOT2_HUMAN CNOT3_HUMAN 0.2 U -CNOT4_HUMAN UB2D2_HUMAN 0.16 U -COASY_HUMAN KS6B1_HUMAN 0.16 U -COMD1_HUMAN COMD6_HUMAN 0.16 U -COMD1_HUMAN CUL2_HUMAN 0.16 U -CSK21_HUMAN AN32B_HUMAN 0.16 D -CSK21_HUMAN CD5_HUMAN 0.16 D -CSK21_HUMAN N0E4C7_HUMAN 0.16 U -CSK21_HUMAN PRPF3_HUMAN 0.16 D -CSK21_HUMAN ROA2_HUMAN 0.16 U -CSK21_HUMAN XRCC1_HUMAN 0.16 D -CTCF_HUMAN SUMO2_HUMAN 0.16 U -CTNB1_HUMAN KPCA_HUMAN 0.16 U -CTNB1_HUMAN PSN1_HUMAN 0.12 U -CTRO_HUMAN RHOA_HUMAN 0.16 U -CUL1_HUMAN RBX1_HUMAN 0.16 U -CUL2_HUMAN RBX1_HUMAN 0.16 U -CUL2_HUMAN UBXN7_HUMAN 0.16 U -CUL3_HUMAN KEAP1_HUMAN 0.16 U -CUL3_HUMAN RBX1_HUMAN 0.16 U -CUL3_HUMAN SHKB1_HUMAN 0.16 U -D0PNI1_HUMAN EIF3A_HUMAN 0.12 U -D0PNI1_HUMAN L7RRS6_HUMAN 0.16 U -D0PNI1_HUMAN VIME_HUMAN 0.16 U -D0VY79_HUMAN EGLN1_HUMAN 0.16 U -D0VY79_HUMAN EP300_HUMAN 0.16 U -DAXX_HUMAN ETS1_HUMAN 0.16 U -DAXX_HUMAN MDM2_HUMAN 0.16 U -DCP1A_HUMAN DCP2_HUMAN 0.16 U -DCP1A_HUMAN RENT1_HUMAN 0.12 U -DCP1B_HUMAN DCP2_HUMAN 0.16 U -DCP2_HUMAN EDC4_HUMAN 0.16 U -DDA1_HUMAN DDB1_HUMAN 0.16 U -DDX21_HUMAN JUN_HUMAN 0.16 U -DDX5_HUMAN G4XH65_HUMAN 0.16 U -DMAP1_HUMAN DNMT1_HUMAN 0.04 U -DNMT1_HUMAN HDAC1_HUMAN 0.04 U -DNMT1_HUMAN PCNA_HUMAN 0.16 U -DOK2_HUMAN NCK1_HUMAN 0.16 U -DYR1A_HUMAN SF3B1_HUMAN 0.16 D -E2F1_HUMAN RBL1_HUMAN 0.04 U -E2F1_HUMAN RB_HUMAN 0.16 U -E2F1_HUMAN TFDP2_HUMAN 0.16 U -E2F3_HUMAN RB_HUMAN 0.16 U -EDF1_HUMAN TBP_HUMAN 0.16 U -EGFR_HUMAN EPN1_HUMAN 0.16 U -EGFR_HUMAN PTN1_HUMAN 0.16 D -EIF3A_HUMAN IF4B_HUMAN 0.16 U -ELF1_HUMAN SP1_HUMAN 0.16 U -EMD_HUMAN YTDC1_HUMAN 0.16 U -EP300_HUMAN G4XH65_HUMAN 0.16 U -EP300_HUMAN H31_HUMAN 0.12 U -EP300_HUMAN JUN_HUMAN 0.16 U -EP300_HUMAN P53_HUMAN 0.12 U -EP300_HUMAN SMAD3_HUMAN 0.08 U -EP400_HUMAN MYC_HUMAN 0.08 U -ERBB2_HUMAN DOCK7_HUMAN 0.16 D -ERBB2_HUMAN HS90A_HUMAN 0.16 U -FADD_HUMAN RIPK1_HUMAN 0.16 U -FAF1_HUMAN TERA_HUMAN 0.16 U -FEN1_HUMAN PCNA_HUMAN 0.04 U -FEN1_HUMAN WRN_HUMAN 0.04 U -FKBP4_HUMAN HS90A_HUMAN 0.16 U -FNBP4_HUMAN KHDR1_HUMAN 0.16 U -FOS_HUMAN JUNB_HUMAN 0.16 U -FOS_HUMAN JUN_HUMAN 0.16 U -FOS_HUMAN TBP_HUMAN 0.04 U -G4XH65_HUMAN MED1_HUMAN 0.16 U -G4XH65_HUMAN NCOA1_HUMAN 0.16 U -G4XH65_HUMAN NCOA2_HUMAN 0.16 U -G4XH65_HUMAN NCOA3_HUMAN 0.16 U -G4XH65_HUMAN PHB2_HUMAN 0.16 U -G4XH65_HUMAN SAFB1_HUMAN 0.16 U -G4XH65_HUMAN SRC_HUMAN 0.16 U -G4XH65_HUMAN TDIF2_HUMAN 0.16 U -GBRL1_HUMAN RBGP1_HUMAN 0.16 U -GBRL1_HUMAN SQSTM_HUMAN 0.16 U -GBRL1_HUMAN TBD2B_HUMAN 0.16 U -GDIR1_HUMAN RHOA_HUMAN 0.16 U -GRAP2_HUMAN LCP2_HUMAN 0.16 U -GSK3B_HUMAN CLAP2_HUMAN 0.16 D -H12_HUMAN SUMO2_HUMAN 0.16 U -H13_HUMAN SUMO1_HUMAN 0.16 U -H2AX_HUMAN MDC1_HUMAN 0.16 U -H2AX_HUMAN TP53B_HUMAN 0.16 U -H31_HUMAN WDR5_HUMAN 0.16 U -HDAC1_HUMAN HDAC2_HUMAN 0.16 U -HDAC1_HUMAN KDM1A_HUMAN 0.16 U -HDAC1_HUMAN NSD2_HUMAN 0.16 U -HDAC1_HUMAN P53_HUMAN 0.16 U -HDAC1_HUMAN RB_HUMAN 0.12 U -HDAC1_HUMAN SIN3A_HUMAN 0.16 U -HDAC1_HUMAN SIN3B_HUMAN 0.16 U -HDAC1_HUMAN SP1_HUMAN 0.16 U -HDAC2_HUMAN SRA1_HUMAN 0.16 U -HDAC4_HUMAN MEF2D_HUMAN 0.16 U -HIRA_HUMAN UBN1_HUMAN 0.16 U -HMGA1_HUMAN SP1_HUMAN 0.16 U -HNRPD_HUMAN IF4G1_HUMAN 0.04 U -HNRPF_HUMAN ROA0_HUMAN 0.16 U -HNRPF_HUMAN SUMO1_HUMAN 0.16 U -HNRPK_HUMAN RBMX_HUMAN 0.16 U -HS90A_HUMAN L7RRS6_HUMAN 0.12 U -HS90A_HUMAN TEBP_HUMAN 0.16 U -I17RA_HUMAN TRAF6_HUMAN 0.16 U -IF16_HUMAN K7PPA8_HUMAN 0.16 U -IF4E_HUMAN IF4G1_HUMAN 0.16 U -IGBP1_HUMAN PP4C_HUMAN 0.16 U -IKKA_HUMAN IKKB_HUMAN 0.16 U -IKKA_HUMAN TRAF2_HUMAN 0.16 U -IKKB_HUMAN DOK1_HUMAN 0.16 D -IRAK1_HUMAN Q6FIE9_HUMAN 0.04 U -IRAK1_HUMAN TRAF6_HUMAN 0.04 U -J3KN59_HUMAN RHG01_HUMAN 0.16 U -K7PPA8_HUMAN MDM2_HUMAN 0.16 U -K7PPA8_HUMAN NOC2L_HUMAN 0.16 U -K7PPA8_HUMAN SIR1_HUMAN 0.16 U -K7PPA8_HUMAN TOPK_HUMAN 0.16 U -KAPCA_HUMAN CASP9_HUMAN 0.04 D -KAPCA_HUMAN CBX3_HUMAN 0.16 D -KAPCA_HUMAN CFTR_HUMAN 0.12 D -KAPCA_HUMAN CUX1_HUMAN 0.16 D -KAPCA_HUMAN H14_HUMAN 0.16 D -KAPCA_HUMAN KC1A_HUMAN 0.16 D -KAPCA_HUMAN LASP1_HUMAN 0.16 D -KAPCA_HUMAN NDE1_HUMAN 0.16 D -KAPCA_HUMAN NFAC1_HUMAN 0.16 D -KAPCA_HUMAN PDE3B_HUMAN 0.16 D -KAPCA_HUMAN PTBP1_HUMAN 0.16 D -KAPCA_HUMAN PTN7_HUMAN 0.16 D -KAPCA_HUMAN PYR1_HUMAN 0.16 D -KAT2B_HUMAN KLF13_HUMAN 0.16 U -KAT2B_HUMAN P53_HUMAN 0.16 U -KAT6A_HUMAN RUNX1_HUMAN 0.04 U -KBTB7_HUMAN Q658J6_HUMAN 0.16 U -KC1A_HUMAN NFAC3_HUMAN 0.16 D -KDM1A_HUMAN ZN217_HUMAN 0.16 U -KEAP1_HUMAN SQSTM_HUMAN 0.16 U -KEAP1_HUMAN T22D4_HUMAN 0.16 U -KHDR1_HUMAN LCK_HUMAN 0.16 U -KHDR1_HUMAN SRC_HUMAN 0.16 U -KHDR1_HUMAN WBP4_HUMAN 0.16 U -KIF4A_HUMAN SUMO2_HUMAN 0.16 U -KPCA_HUMAN ADDB_HUMAN 0.04 D -KPCA_HUMAN COF1_HUMAN 0.16 D -KPCA_HUMAN LRP1_HUMAN 0.16 D -KPCA_HUMAN MARCS_HUMAN 0.16 D -KPCA_HUMAN THOC5_HUMAN 0.16 D -KPCA_HUMAN VTNC_HUMAN 0.16 D -KS6B1_HUMAN EF2K_HUMAN 0.16 D -KS6B1_HUMAN NCBP1_HUMAN 0.16 D -KS6B1_HUMAN RPTOR_HUMAN 0.16 U -KS6B1_HUMAN RS6_HUMAN 0.16 D -KS6B1_HUMAN TCPB_HUMAN 0.16 D -L7RRS6_HUMAN RASH_HUMAN 0.16 U -L7RRS6_HUMAN RRAS2_HUMAN 0.16 U -L7RT18_HUMAN RPGF1_HUMAN 0.16 U -LAT_HUMAN PLCG1_HUMAN 0.16 U -LCK_HUMAN ZAP70_HUMAN 0.16 D -LCP2_HUMAN NCK1_HUMAN 0.16 U -LRP1_HUMAN TSP1_HUMAN 0.16 U -M3K1_HUMAN MP2K4_HUMAN 0.16 U -M3K2_HUMAN MP2K4_HUMAN 0.16 U -M3K7_HUMAN TRAF6_HUMAN 0.16 U -MAGD1_HUMAN XIAP_HUMAN 0.16 U -MAPK2_HUMAN PARN_HUMAN 0.16 D -MAPK2_HUMAN RTN4_HUMAN 0.16 D -MCM2_HUMAN MCM4_HUMAN 0.16 U -MDM2_HUMAN P53_HUMAN 0.16 U -MDM2_HUMAN UB2D2_HUMAN 0.16 U -MK01_HUMAN ABI1_HUMAN 0.16 D -MK01_HUMAN NU153_HUMAN 0.16 D -MK01_HUMAN PML_HUMAN 0.16 D -MK01_HUMAN RS3_HUMAN 0.16 D -MK01_HUMAN RUNX1_HUMAN 0.16 D -MK01_HUMAN VINEX_HUMAN 0.16 D -MK08_HUMAN 4ET_HUMAN 0.16 D -MK14_HUMAN MAPK2_HUMAN 0.16 D -MK14_HUMAN MEF2A_HUMAN 0.16 D -MLH1_HUMAN PMS2_HUMAN 0.16 U -MLH1_HUMAN ZC11A_HUMAN 0.16 U -MORC3_HUMAN SUMO2_HUMAN 0.16 U -MP2K4_HUMAN MK08_HUMAN 0.16 D -MTG8R_HUMAN MTG8_HUMAN 0.16 U -MTG8_HUMAN NCOR1_HUMAN 0.16 U -MTOR_HUMAN 4EBP1_HUMAN 0.16 D -MTOR_HUMAN LARP1_HUMAN 0.16 D -MTOR_HUMAN PATL1_HUMAN 0.16 D -MTOR_HUMAN SRRM2_HUMAN 0.16 D -MTOR_HUMAN UBR4_HUMAN 0.16 D -MTOR_HUMAN ULK1_HUMAN 0.16 D -MUS81_HUMAN SLX4_HUMAN 0.16 U -MYC_HUMAN TRRAP_HUMAN 0.16 U -NAB1_HUMAN SUMO2_HUMAN 0.16 U -NCOA1_HUMAN RARA_HUMAN 0.16 U -NCOR1_HUMAN RARA_HUMAN 0.16 U -NEDD4_HUMAN UB2L3_HUMAN 0.16 U -NEDD4_HUMAN WBP2_HUMAN 0.16 U -NHRF1_HUMAN PHAG1_HUMAN 0.16 U -NOL8_HUMAN RRAGA_HUMAN 0.16 U -NU107_HUMAN NU133_HUMAN 0.16 U -NUCL_HUMAN TOP1_HUMAN 0.16 U -NUMA1_HUMAN SUMO2_HUMAN 0.16 U -NUMBL_HUMAN TRAF6_HUMAN 0.16 U -P53_HUMAN RAD51_HUMAN 0.16 U -P53_HUMAN SUMO1_HUMAN 0.04 U -P53_HUMAN TP53B_HUMAN 0.16 U -P53_HUMAN UBE3A_HUMAN 0.16 U -P53_HUMAN UBP7_HUMAN 0.16 U -P85A_HUMAN SHB_HUMAN 0.16 U -PAK1_HUMAN MINT_HUMAN 0.16 D -PAK1_HUMAN PCBP1_HUMAN 0.16 D -PAK1_HUMAN STMN1_HUMAN 0.16 D -PCNA_HUMAN RFC1_HUMAN 0.16 U -PCNA_HUMAN UBP1_HUMAN 0.16 U -PDS5A_HUMAN SMC3_HUMAN 0.16 U -PEX19_HUMAN PEX3_HUMAN 0.16 U -PIAS1_HUMAN SUMO1_HUMAN 0.16 U -PININ_HUMAN PNISR_HUMAN 0.16 U -PININ_HUMAN SRRM2_HUMAN 0.16 U -PININ_HUMAN SRSF4_HUMAN 0.16 U -PLEC_HUMAN VIME_HUMAN 0.16 U -PLK1_HUMAN ATX10_HUMAN 0.16 D -PLK1_HUMAN BIRC5_HUMAN 0.12 D -PLK1_HUMAN PMYT1_HUMAN 0.16 D -PLK1_HUMAN SLX4_HUMAN 0.04 U -PMYT1_HUMAN CDK1_HUMAN 0.08 D -PP4C_HUMAN TCPD_HUMAN 0.16 U -PP4C_HUMAN TCPZ_HUMAN 0.16 U -PPIP1_HUMAN PTN18_HUMAN 0.16 U -PPIP1_HUMAN WASP_HUMAN 0.16 U -PRKN2_HUMAN PSMD4_HUMAN 0.16 U -PRKN2_HUMAN UB2J1_HUMAN 0.16 U -PRKN2_HUMAN UB2L3_HUMAN 0.16 U -PRPF3_HUMAN SF3B2_HUMAN 0.16 U -PSMD2_HUMAN TNR1A_HUMAN 0.04 U -PTTG1_HUMAN PTTG_HUMAN 0.16 U -PTTG1_HUMAN RS10_HUMAN 0.16 U -Q56A76_HUMAN SIN3A_HUMAN 0.16 U -Q56A76_HUMAN SMRC1_HUMAN 0.16 U -Q658J6_HUMAN SQSTM_HUMAN 0.16 U -Q6FIE9_HUMAN TOM1_HUMAN 0.04 U -RBBP5_HUMAN WDR5_HUMAN 0.16 U -RBM5_HUMAN SR140_HUMAN 0.2 U -RBMX_HUMAN TRA2B_HUMAN 0.16 U -RBP2_HUMAN UBC9_HUMAN 0.16 U -RBX1_HUMAN UB2D2_HUMAN 0.16 U -RB_HUMAN UBF1_HUMAN 0.16 U -RENT1_HUMAN SMG5_HUMAN 0.16 U -RHG01_HUMAN RHOA_HUMAN 0.16 U -RHOA_HUMAN ROCK1_HUMAN 0.16 U -RING2_HUMAN RYBP_HUMAN 0.16 U -RING2_HUMAN UBP7_HUMAN 0.16 U -RIPK1_HUMAN TNR1A_HUMAN 0.16 U -RIPK1_HUMAN TRAF2_HUMAN 0.16 U -RN168_HUMAN UBE2N_HUMAN 0.16 U -RN169_HUMAN SUMO2_HUMAN 0.16 U -RNF25_HUMAN UB2D2_HUMAN 0.16 U -RNF31_HUMAN TNFA_HUMAN 0.08 U -ROCK1_HUMAN MYPT1_HUMAN 0.16 D -ROCK1_HUMAN RHG35_HUMAN 0.16 D -RPTOR_HUMAN RRAGA_HUMAN 0.16 U -RRAGA_HUMAN RRAGC_HUMAN 0.16 U -RRAGA_HUMAN RRAGD_HUMAN 0.16 U -RSF1_HUMAN SMCA5_HUMAN 0.16 U -SAFB1_HUMAN SAFB2_HUMAN 0.16 U -SENP1_HUMAN SUMO2_HUMAN 0.16 U -SENP2_HUMAN SUMO1_HUMAN 0.16 U -SENP3_HUMAN SUMO2_HUMAN 0.16 U -SFPQ_HUMAN SUMO1_HUMAN 0.16 U -SKI_HUMAN SMAD4_HUMAN 0.04 U -SKI_HUMAN SNW1_HUMAN 0.04 U -SMAD3_HUMAN SMAD4_HUMAN 0.16 U -SMAD3_HUMAN ZEP1_HUMAN 0.04 U -SMAD4_HUMAN TGFA1_HUMAN 0.16 U -SMC1A_HUMAN SMC3_HUMAN 0.16 U -SMC2_HUMAN SMC4_HUMAN 0.08 U -SMC3_HUMAN WAPL_HUMAN 0.04 U -SMG1_HUMAN RENT1_HUMAN 0.12 D -SMRCD_HUMAN SUMO2_HUMAN 0.16 U -SNUT1_HUMAN SUMO2_HUMAN 0.16 U -SP16H_HUMAN SUMO2_HUMAN 0.16 U -SPT4H_HUMAN SPT5H_HUMAN 0.16 U -SRC_HUMAN BCLF1_HUMAN 0.16 D -SRC_HUMAN EMD_HUMAN 0.16 D -SRC_HUMAN GDIR1_HUMAN 0.12 D -SRC_HUMAN GELS_HUMAN 0.16 D -SRC_HUMAN GTF2I_HUMAN 0.16 D -SRC_HUMAN HNRPK_HUMAN 0.16 D -SRC_HUMAN MPZL1_HUMAN 0.16 D -SRC_HUMAN RAF1_HUMAN 0.16 D -SRC_HUMAN SPD2B_HUMAN 0.16 D -SRC_HUMAN ZC3H4_HUMAN 0.16 D -SUMO1_HUMAN TOP1_HUMAN 0.04 U -SUMO1_HUMAN UBC9_HUMAN 0.16 U -SUMO2_HUMAN TF3C1_HUMAN 0.16 U -SUMO2_HUMAN TFR1_HUMAN 0.16 U -SUMO2_HUMAN TPR_HUMAN 0.16 U -SUMO2_HUMAN UBC9_HUMAN 0.04 U -SUMO2_HUMAN ZN106_HUMAN 0.16 U -T2AG_HUMAN TBP_HUMAN 0.16 U -T2EA_HUMAN T2EB_HUMAN 0.16 U -T2EA_HUMAN TBP_HUMAN 0.16 U -T2FA_HUMAN TF2B_HUMAN 0.16 U -TAF6_HUMAN TAF9B_HUMAN 0.16 U -TAF6_HUMAN TBP_HUMAN 0.16 U -TBP_HUMAN TF2B_HUMAN 0.16 U -TF3C1_HUMAN TF3C2_HUMAN 0.16 U -TFR1_HUMAN TRFE_HUMAN 0.16 U -THOC2_HUMAN THOC5_HUMAN 0.16 U -TNFA_HUMAN TNR1A_HUMAN 0.08 U -TRAF2_HUMAN TRAF6_HUMAN 0.08 U -TRAF6_HUMAN UBE2N_HUMAN 0.16 U -TRI32_HUMAN UBE2N_HUMAN 0.16 U -UB2L3_HUMAN UBA1_HUMAN 0.04 U -UB2L3_HUMAN UBE3A_HUMAN 0.16 U -WASP_HUMAN WIPF1_HUMAN 0.16 U -WASP_HUMAN WIPF2_HUMAN 0.16 U -WRN_HUMAN XRCC5_HUMAN 0.04 U -XRCC5_HUMAN XRCC6_HUMAN 0.16 U -ZAP70_HUMAN DBNL_HUMAN 0.16 D -ZAP70_HUMAN DUS3_HUMAN 0.16 D -1433B_HUMAN GAPD1_HUMAN 0.12 U -1433B_HUMAN TESK2_HUMAN 0.12 U -1433E_HUMAN ATX1_HUMAN 0.12 U -1433E_HUMAN HMHA1_HUMAN 0.12 U -1433E_HUMAN RASL3_HUMAN 0.12 U -1433E_HUMAN RPGP2_HUMAN 0.12 U -1433G_HUMAN CEP95_HUMAN 0.12 U -1433G_HUMAN E41L2_HUMAN 0.12 U -1433G_HUMAN FA53C_HUMAN 0.12 U -1433S_HUMAN AJUBA_HUMAN 0.12 U -1433S_HUMAN BAD_HUMAN 0.12 U -1433S_HUMAN REEP4_HUMAN 0.12 U -1433S_HUMAN RHPN2_HUMAN 0.12 U -1433S_HUMAN SI1L1_HUMAN 0.12 U -1433T_HUMAN CE170_HUMAN 0.12 U -1433T_HUMAN HECD1_HUMAN 0.12 U -1433T_HUMAN K1C9_HUMAN 0.12 U -1433T_HUMAN K2C1_HUMAN 0.12 U -1433T_HUMAN MARK2_HUMAN 0.12 U -1433T_HUMAN MFF_HUMAN 0.12 U -1433T_HUMAN SPIR1_HUMAN 0.12 U -A2AP_HUMAN PLMN_HUMAN 0.13 U -A2MG_HUMAN A4_HUMAN 0.12 U -A4D0W0_HUMAN LSM2_HUMAN 0.12 U -A4D0W0_HUMAN SMBP2_HUMAN 0.12 U -A4D1G0_HUMAN CD2A2_HUMAN 0.12 U -A4D1G0_HUMAN LPIN1_HUMAN 0.12 U -A4D2P0_HUMAN GDIR1_HUMAN 0.12 U -A4D2P0_HUMAN UNKL_HUMAN 0.12 U -A4D2P1_HUMAN GDIR1_HUMAN 0.04 U -A4D2P1_HUMAN PAK1_HUMAN 0.12 U -A4D2P1_HUMAN RHG15_HUMAN 0.12 U -A4_HUMAN APOA1_HUMAN 0.12 U -A4_HUMAN ARMC7_HUMAN 0.12 U -A4_HUMAN CC020_HUMAN 0.12 U -A4_HUMAN DDX55_HUMAN 0.12 U -A4_HUMAN EEPD1_HUMAN 0.12 U -A4_HUMAN FBLN1_HUMAN 0.12 U -A4_HUMAN H2B1M_HUMAN 0.12 U -A4_HUMAN HAUS8_HUMAN 0.12 U -A4_HUMAN KAT5_HUMAN 0.08 U -A4_HUMAN KIFC1_HUMAN 0.12 U -A4_HUMAN LAR1B_HUMAN 0.12 U -A4_HUMAN LIMA1_HUMAN 0.12 U -A4_HUMAN LIMD1_HUMAN 0.12 U -A4_HUMAN LRRC1_HUMAN 0.12 U -A4_HUMAN MAST2_HUMAN 0.12 U -A4_HUMAN NDUA5_HUMAN 0.08 U -A4_HUMAN OCAD2_HUMAN 0.12 U -A4_HUMAN OSB11_HUMAN 0.12 U -A4_HUMAN PNKD_HUMAN 0.12 U -A4_HUMAN PTBP3_HUMAN 0.12 U -A4_HUMAN SASH3_HUMAN 0.12 U -A4_HUMAN STML2_HUMAN 0.12 U -A4_HUMAN TEX2_HUMAN 0.12 U -A4_HUMAN TGFB2_HUMAN 0.12 U -A4_HUMAN TPD54_HUMAN 0.12 U -A8K379_HUMAN CBL_HUMAN 0.12 U -A8K379_HUMAN GAB3_HUMAN 0.12 U -A8K401_HUMAN E2F1_HUMAN 0.12 U -A8K401_HUMAN PHF3_HUMAN 0.12 U -A8KAH9_HUMAN AB1IP_HUMAN 0.12 U -A8KAH9_HUMAN L7RRS6_HUMAN 0.12 U -A8KAH9_HUMAN RASF5_HUMAN 0.11 U -AAAT_HUMAN TNR1A_HUMAN 0.12 U -AAKB1_HUMAN VMA21_HUMAN 0.12 U -ABL1_HUMAN ABR_HUMAN 0.12 U -ABL1_HUMAN FETUA_HUMAN 0.12 U -ABLM1_HUMAN VIME_HUMAN 0.12 U -ACBP_HUMAN Q658J6_HUMAN 0.12 U -ACINU_HUMAN API5_HUMAN 0.18 U -ACTY_HUMAN ARP10_HUMAN 0.15 U -ACTY_HUMAN N0E4C7_HUMAN 0.12 U -ADA15_HUMAN PACN3_HUMAN 0.12 U -ADA15_HUMAN SPD2A_HUMAN 0.12 U -ADA15_HUMAN SRC_HUMAN 0.12 U -AKT1_HUMAN SRPK2_HUMAN 0.12 D -AKT2_HUMAN CASP3_HUMAN 0.12 U -ALBU_HUMAN ITIH1_HUMAN 0.12 U -ALBU_HUMAN UBD_HUMAN 0.08 U -ALKB5_HUMAN CSK21_HUMAN 0.12 U -AMPD2_HUMAN NEDD4_HUMAN 0.12 U -ANDR_HUMAN CTNB1_HUMAN 0.12 U -ANDR_HUMAN JHD2C_HUMAN 0.12 U -ANDR_HUMAN TMF1_HUMAN 0.12 U -ANLN_HUMAN SUMO1_HUMAN 0.12 U -ANT3_HUMAN PLCG1_HUMAN 0.12 U -APC_HUMAN CTNB1_HUMAN 0.12 U -APC_HUMAN NCK5L_HUMAN 0.12 U -APOB_HUMAN CTCF_HUMAN 0.12 U -APTX_HUMAN CE350_HUMAN 0.12 U -APTX_HUMAN MABP1_HUMAN 0.12 U -ARBK2_HUMAN GIT1_HUMAN 0.12 U -ARFG1_HUMAN Q658J6_HUMAN 0.08 U -ARGL1_HUMAN SRPK2_HUMAN 0.12 U -ARHG6_HUMAN GIT1_HUMAN 0.12 U -ARI3A_HUMAN SUMO2_HUMAN 0.12 U -ARI4B_HUMAN SUMO2_HUMAN 0.12 U -ARP19_HUMAN NEMO_HUMAN 0.12 U -ARRB2_HUMAN MDM2_HUMAN 0.12 U -ARRB2_HUMAN RPA43_HUMAN 0.12 U -ATAD5_HUMAN UBP1_HUMAN 0.12 U -ATAT_HUMAN SRPK2_HUMAN 0.12 U -ATF7_HUMAN SUMO2_HUMAN 0.12 U -ATG2A_HUMAN GBRL1_HUMAN 0.12 U -ATG9A_HUMAN TBK1_HUMAN 0.12 U -ATIF1_HUMAN UBQL4_HUMAN 0.12 U -ATN1_HUMAN CRIP2_HUMAN 0.12 U -ATP4A_HUMAN CLH1_HUMAN 0.12 U -ATR_HUMAN CE164_HUMAN 0.12 U -ATR_HUMAN SMRC2_HUMAN 0.12 D -ATX1_HUMAN CCNK_HUMAN 0.12 U -ATX1_HUMAN FUBP3_HUMAN 0.12 U -ATX1_HUMAN GPTC8_HUMAN 0.12 U -ATX1_HUMAN MY18A_HUMAN 0.08 U -ATX1_HUMAN P121A_HUMAN 0.12 U -ATX1_HUMAN PRC2B_HUMAN 0.12 U -ATX1_HUMAN R3HD1_HUMAN 0.12 U -ATX1_HUMAN UNK_HUMAN 0.12 U -ATX1_HUMAN ZEP1_HUMAN 0.12 U -ATX2L_HUMAN SUMO2_HUMAN 0.12 U -AURKB_HUMAN CCD86_HUMAN 0.12 D -AURKB_HUMAN DDX52_HUMAN 0.12 D -AURKB_HUMAN KI67_HUMAN 0.12 D -AURKB_HUMAN LMO7_HUMAN 0.12 D -AURKB_HUMAN NINL_HUMAN 0.08 D -AURKB_HUMAN RBM14_HUMAN 0.12 D -AXIN1_HUMAN KC1E_HUMAN 0.12 U -B0LPE5_HUMAN MP2K4_HUMAN 0.04 U -B0LPE5_HUMAN VPP2_HUMAN 0.12 U -B2R4R0_HUMAN KAT5_HUMAN 0.08 U -B2R5T5_HUMAN SMAD2_HUMAN 0.08 U -B2RBV7_HUMAN RBX1_HUMAN 0.12 U -B2RNT7_HUMAN CUL3_HUMAN 0.12 U -B2RNT7_HUMAN RCN3_HUMAN 0.12 U -B4DY08_HUMAN CSK21_HUMAN 0.12 U -B4E1U9_HUMAN PAK4_HUMAN 0.04 U -B4E1U9_HUMAN WASP_HUMAN 0.04 U -B7Z3D6_HUMAN LZTS1_HUMAN 0.12 U -B7ZKJ8_HUMAN P63_HUMAN 0.12 U -BAG4_HUMAN TNR1A_HUMAN 0.12 U -BARD1_HUMAN BRCA1_HUMAN 0.12 U -BARD1_HUMAN CAP1_HUMAN 0.12 U -BARD1_HUMAN RRP1_HUMAN 0.12 U -BCKD_HUMAN STAT3_HUMAN 0.12 U -BCL2_HUMAN BNIP3_HUMAN 0.08 U -BMP2K_HUMAN TERF1_HUMAN 0.12 U -BNI3L_HUMAN BNIP3_HUMAN 0.08 U -BNI3L_HUMAN SMCO4_HUMAN 0.12 U -BNIP3_HUMAN TMM11_HUMAN 0.08 U -BPL1_HUMAN DDX52_HUMAN 0.12 U -BRCA1_HUMAN NELFB_HUMAN 0.12 U -BRCA1_HUMAN RWDD4_HUMAN 0.12 U -BRCA1_HUMAN ZCHC8_HUMAN 0.12 U -BRD1_HUMAN VIME_HUMAN 0.04 U -BUD13_HUMAN G4XH65_HUMAN 0.12 U -C2CD5_HUMAN CDK5_HUMAN 0.12 U -C2TA_HUMAN IRF1_HUMAN 0.12 U -C2TA_HUMAN IRF2_HUMAN 0.12 U -CA174_HUMAN CSN6_HUMAN 0.12 U -CAMP1_HUMAN SMAD1_HUMAN 0.12 U -CASP3_HUMAN PARG_HUMAN 0.12 U -CASP3_HUMAN PARP1_HUMAN 0.08 U -CATG_HUMAN PARP1_HUMAN 0.12 U -CATIN_HUMAN NELFE_HUMAN 0.15 U -CBX5_HUMAN H31T_HUMAN 0.12 U -CBX5_HUMAN SENP7_HUMAN 0.12 U -CCAR2_HUMAN CIAO1_HUMAN 0.12 U -CCD92_HUMAN CE164_HUMAN 0.12 U -CCDC9_HUMAN TERF1_HUMAN 0.12 U -CCND3_HUMAN CDK4_HUMAN 0.12 U -CCND3_HUMAN DTBP1_HUMAN 0.12 U -CCNE1_HUMAN CDN1A_HUMAN 0.08 U -CCNE1_HUMAN CDN1B_HUMAN 0.04 U -CCNE1_HUMAN FBXW7_HUMAN 0.08 U -CCNE1_HUMAN RB_HUMAN 0.08 U -CCNF_HUMAN SKP1_HUMAN 0.12 U -CD2A2_HUMAN CK5P3_HUMAN 0.12 U -CD2AP_HUMAN RAB4A_HUMAN 0.12 U -CDA7L_HUMAN MYC_HUMAN 0.12 U -CDC20_HUMAN MD2L1_HUMAN 0.12 U -CDC37_HUMAN HS90A_HUMAN 0.04 U -CDC37_HUMAN NCOA5_HUMAN 0.12 U -CDC37_HUMAN STK11_HUMAN 0.12 U -CDC73_HUMAN KDIS_HUMAN 0.12 U -CDC73_HUMAN VTDB_HUMAN 0.12 U -CDK1_HUMAN AAK1_HUMAN 0.12 D -CDK1_HUMAN LAP2A_HUMAN 0.12 D -CDK1_HUMAN NDEL1_HUMAN 0.12 D -CDK1_HUMAN PHF8_HUMAN 0.12 D -CDK2_HUMAN C1TM_HUMAN 0.12 D -CDK2_HUMAN CT2NL_HUMAN 0.12 D -CDK2_HUMAN GUAA_HUMAN 0.12 D -CDK2_HUMAN HNRL1_HUMAN 0.12 D -CDK2_HUMAN JIP4_HUMAN 0.04 D -CDK2_HUMAN KDM2A_HUMAN 0.12 D -CDK2_HUMAN KIF22_HUMAN 0.12 D -CDK2_HUMAN LMNB2_HUMAN 0.12 D -CDK2_HUMAN LRCH3_HUMAN 0.12 D -CDK2_HUMAN MARE2_HUMAN 0.12 U -CDK2_HUMAN NOSIP_HUMAN 0.12 D -CDK2_HUMAN NUCKS_HUMAN 0.12 D -CDK2_HUMAN PHF6_HUMAN 0.12 D -CDK2_HUMAN PRDX6_HUMAN 0.12 U -CDK2_HUMAN PRP16_HUMAN 0.12 D -CDK2_HUMAN RALY_HUMAN 0.12 D -CDK2_HUMAN RL35_HUMAN 0.12 U -CDK2_HUMAN SRS11_HUMAN 0.12 D -CDK2_HUMAN SRSF9_HUMAN 0.12 D -CDK2_HUMAN TAGL2_HUMAN 0.12 U -CDK2_HUMAN TANC1_HUMAN 0.12 D -CDK2_HUMAN TBCE_HUMAN 0.12 D -CDK2_HUMAN TPX2_HUMAN 0.12 D -CDK2_HUMAN UBE2O_HUMAN 0.12 D -CDK2_HUMAN UHRF2_HUMAN 0.12 U -CDK2_HUMAN ZN609_HUMAN 0.12 D -CDK4_HUMAN CDN1B_HUMAN 0.12 U -CDK4_HUMAN ZN335_HUMAN 0.12 U -CDK5_HUMAN ADDB_HUMAN 0.12 D -CDK5_HUMAN AGAP2_HUMAN 0.12 D -CDK5_HUMAN CDN1B_HUMAN 0.12 U -CDK5_HUMAN HD_HUMAN 0.12 D -CDK5_HUMAN RL34_HUMAN 0.12 U -CDN1A_HUMAN PCNA_HUMAN 0.12 U -CDS2_HUMAN TS101_HUMAN 0.12 U -CE022_HUMAN WBP11_HUMAN 0.15 U -CENPF_HUMAN NDEL1_HUMAN 0.12 U -CHERP_HUMAN WBP4_HUMAN 0.12 U -CIAO1_HUMAN KTNA1_HUMAN 0.12 U -CIC_HUMAN SEC62_HUMAN 0.08 U -CIC_HUMAN SETD2_HUMAN 0.08 U -CIR1_HUMAN SNW1_HUMAN 0.12 U -CIRBP_HUMAN RBMX_HUMAN 0.12 U -CK5P3_HUMAN DDRGK_HUMAN 0.12 U -CK5P3_HUMAN UFL1_HUMAN 0.12 U -CLH1_HUMAN EPN4_HUMAN 0.12 U -CLH1_HUMAN HERC1_HUMAN 0.12 U -CLH1_HUMAN HGS_HUMAN 0.12 U -CLH1_HUMAN TOM1_HUMAN 0.12 U -CLPX_HUMAN CUL1_HUMAN 0.08 U -CLUS_HUMAN CO7_HUMAN 0.12 U -CLUS_HUMAN CO9_HUMAN 0.12 U -CLUS_HUMAN PRIO_HUMAN 0.12 U -CLUS_HUMAN XRCC6_HUMAN 0.12 U -CNBP_HUMAN RL1D1_HUMAN 0.12 U -CNBP_HUMAN RL34_HUMAN 0.12 U -CND2_HUMAN SMC4_HUMAN 0.04 U -CO3_HUMAN MCP_HUMAN 0.12 U -COF1_HUMAN HS105_HUMAN 0.12 U -CREB1_HUMAN CRTC1_HUMAN 0.12 U -CREB1_HUMAN IRX1_HUMAN 0.12 U -CRKL_HUMAN PKHA1_HUMAN 0.12 U -CSK21_HUMAN DDX58_HUMAN 0.12 D -CSK21_HUMAN IKBA_HUMAN 0.12 D -CSK21_HUMAN INF2_HUMAN 0.12 U -CSK21_HUMAN LS14A_HUMAN 0.12 U -CSK21_HUMAN PEDF_HUMAN 0.12 D -CSK21_HUMAN RM38_HUMAN 0.12 U -CSK21_HUMAN S39A7_HUMAN 0.12 U -CSK21_HUMAN SEPT2_HUMAN 0.12 D -CSK21_HUMAN SPTB2_HUMAN 0.12 D -CSK21_HUMAN TERF1_HUMAN 0.08 D -CSK21_HUMAN TLE1_HUMAN 0.12 D -CSKI1_HUMAN NPM_HUMAN 0.12 U -CSN5_HUMAN CSN6_HUMAN 0.12 U -CSN5_HUMAN CUL1_HUMAN 0.12 U -CSN5_HUMAN MNX1_HUMAN 0.12 U -CSN6_HUMAN EHBP1_HUMAN 0.12 U -CSN6_HUMAN IFG15_HUMAN 0.12 U -CSN6_HUMAN MA7D1_HUMAN 0.12 U -CTNB1_HUMAN IBP2_HUMAN 0.12 U -CTNB1_HUMAN RUVB1_HUMAN 0.04 U -CUL1_HUMAN SKP1_HUMAN 0.12 U -CUL2_HUMAN FEM1A_HUMAN 0.12 U -CUL2_HUMAN LAGE3_HUMAN 0.12 U -CUL3_HUMAN KCTD9_HUMAN 0.12 U -CUL3_HUMAN MCES_HUMAN 0.12 U -CUL3_HUMAN TISD_HUMAN 0.12 U -CUL4A_HUMAN DDB1_HUMAN 0.12 U -CUTC_HUMAN I2BP2_HUMAN 0.18 U -CWC15_HUMAN PRIO_HUMAN 0.12 U -CYTSA_HUMAN RIPK3_HUMAN 0.12 U -D0PNI1_HUMAN KLC4_HUMAN 0.12 U -D0PNI1_HUMAN MADD_HUMAN 0.12 U -D0VY79_HUMAN SEPT9_HUMAN 0.12 U -D3DU92_HUMAN PININ_HUMAN 0.12 U -D3DU92_HUMAN SFSWA_HUMAN 0.12 U -DAPK1_HUMAN KKCC2_HUMAN 0.12 D -DAPK1_HUMAN MCM3_HUMAN 0.12 D -DAXX_HUMAN NSD3_HUMAN 0.12 U -DC1L1_HUMAN RAB4A_HUMAN 0.12 U -DCA10_HUMAN DDB1_HUMAN 0.12 U -DDB1_HUMAN DDB2_HUMAN 0.12 U -DDB2_HUMAN UBP24_HUMAN 0.12 U -DDX21_HUMAN LYAR_HUMAN 0.08 U -DDX23_HUMAN WBP4_HUMAN 0.12 U -DDX58_HUMAN ZCCHV_HUMAN 0.12 U -DDX5_HUMAN RNC_HUMAN 0.12 U -DEFI6_HUMAN RHOA_HUMAN 0.12 U -DENR_HUMAN UBC_HUMAN 0.12 U -DGCR8_HUMAN RNC_HUMAN 0.12 U -DLGP4_HUMAN SRC_HUMAN 0.12 U -DMAP1_HUMAN RUVB1_HUMAN 0.04 U -DNJB2_HUMAN SMAD4_HUMAN 0.12 U -DPOA2_HUMAN PARP1_HUMAN 0.04 U -DYL1_HUMAN GEPH_HUMAN 0.12 U -DYL1_HUMAN MYO5A_HUMAN 0.12 U -E2F1_HUMAN TOPB1_HUMAN 0.12 U -E2F4_HUMAN PCM1_HUMAN 0.12 U -E2F4_HUMAN RBL1_HUMAN 0.12 U -E2F4_HUMAN RB_HUMAN 0.12 U -E9KL35_HUMAN LAR4B_HUMAN 0.12 U -E9KL35_HUMAN SRC_HUMAN 0.12 U -EF2_HUMAN SMG1_HUMAN 0.04 U -EF2_HUMAN SUMO1_HUMAN 0.12 U -EGFR_HUMAN ITIH2_HUMAN 0.12 U -EGFR_HUMAN JAK2_HUMAN 0.12 U -EGFR_HUMAN NBEL2_HUMAN 0.12 U -EGFR_HUMAN SC61B_HUMAN 0.12 U -EGFR_HUMAN SH3L3_HUMAN 0.12 U -EI24_HUMAN UB2D2_HUMAN 0.12 U -EIF3A_HUMAN EIF3F_HUMAN 0.12 U -EIF3F_HUMAN GLE1_HUMAN 0.12 U -ELP1_HUMAN ELP4_HUMAN 0.12 U -ELP1_HUMAN IKKA_HUMAN 0.12 U -EP300_HUMAN IRF1_HUMAN 0.12 U -EP300_HUMAN RECQ4_HUMAN 0.12 U -EP400_HUMAN KAT5_HUMAN 0.08 U -ERBB2_HUMAN PLXB1_HUMAN 0.12 D -ERIC1_HUMAN SUMO2_HUMAN 0.12 U -ESYT2_HUMAN KKCC2_HUMAN 0.08 U -EVL_HUMAN SRC_HUMAN 0.12 U -EXOC4_HUMAN MYC_HUMAN 0.12 U -EZRI_HUMAN ICAM2_HUMAN 0.12 U -F110C_HUMAN KC1E_HUMAN 0.12 U -F6KD01_HUMAN MAST3_HUMAN 0.12 U -F6KD01_HUMAN NEDD4_HUMAN 0.08 U -FBX41_HUMAN SKP1_HUMAN 0.12 U -FBX42_HUMAN P53_HUMAN 0.12 U -FBXW7_HUMAN MYC_HUMAN 0.12 U -FBXW7_HUMAN NOTC1_HUMAN 0.12 U -FGD6_HUMAN NPM_HUMAN 0.12 U -G4XH65_HUMAN KDM6B_HUMAN 0.12 U -G4XH65_HUMAN TMX1_HUMAN 0.12 U -GATA4_HUMAN JARD2_HUMAN 0.09 U -GATA4_HUMAN SP1_HUMAN 0.09 U -GBRAP_HUMAN GBRG2_HUMAN 0.12 U -GBRAP_HUMAN SQSTM_HUMAN 0.12 U -GBRL1_HUMAN TBC15_HUMAN 0.12 U -GIPC1_HUMAN ZN408_HUMAN 0.12 U -GIT1_HUMAN PCLO_HUMAN 0.12 U -GLYR1_HUMAN KDM1A_HUMAN 0.12 U -GNL1_HUMAN RAD21_HUMAN 0.12 U -GOGA2_HUMAN GORS2_HUMAN 0.12 U -GOGA2_HUMAN RAB1A_HUMAN 0.12 U -GOLP3_HUMAN MY18A_HUMAN 0.18 U -GON4L_HUMAN SUMO2_HUMAN 0.12 U -GORS2_HUMAN PRPS1_HUMAN 0.12 U -GORS2_HUMAN TMED2_HUMAN 0.12 U -GSK3B_HUMAN GYS1_HUMAN 0.12 D -H31T_HUMAN KAT6A_HUMAN 0.12 U -H31T_HUMAN PHF2_HUMAN 0.12 U -H31_HUMAN MPP8_HUMAN 0.12 U -H31_HUMAN NASP_HUMAN 0.12 U -HDAC1_HUMAN IPYR_HUMAN 0.12 U -HDAC1_HUMAN TAL1_HUMAN 0.12 U -HDAC1_HUMAN TREF1_HUMAN 0.12 U -HDAC1_HUMAN ZBT16_HUMAN 0.12 U -HDAC2_HUMAN RFX5_HUMAN 0.12 U -HDAC4_HUMAN IKZF2_HUMAN 0.12 U -HD_HUMAN PALM_HUMAN 0.04 U -HEBP2_HUMAN PDCD6_HUMAN 0.12 U -HGS_HUMAN TS101_HUMAN 0.12 U -HGS_HUMAN UBC_HUMAN 0.12 U -HMGN3_HUMAN SRPK2_HUMAN 0.12 U -HNRH3_HUMAN SUMO1_HUMAN 0.12 U -HNRL2_HUMAN SUMO2_HUMAN 0.12 U -HNRPD_HUMAN PABP1_HUMAN 0.12 U -HOMEZ_HUMAN SUMO2_HUMAN 0.12 U -HS90A_HUMAN KAPCB_HUMAN 0.12 U -HS90A_HUMAN TTC4_HUMAN 0.12 U -HTF4_HUMAN TAL1_HUMAN 0.12 U -HXB4_HUMAN RBX1_HUMAN 0.12 U -I2BP2_HUMAN IRF2_HUMAN 0.12 U -IF4A1_HUMAN IF4G1_HUMAN 0.12 U -IF4A1_HUMAN IF4H_HUMAN 0.12 U -IF4G1_HUMAN PABP1_HUMAN 0.12 U -IFNB_HUMAN INAR1_HUMAN 0.12 U -IFNB_HUMAN IRF3_HUMAN 0.12 U -IKBA_HUMAN NFKB1_HUMAN 0.12 U -IKBA_HUMAN TERA_HUMAN 0.12 U -IKKA_HUMAN NEMO_HUMAN 0.12 U -IN80E_HUMAN RUVB2_HUMAN 0.04 U -INT1_HUMAN SUMO2_HUMAN 0.12 U -INT3_HUMAN NFKB1_HUMAN 0.12 U -IRF1_HUMAN IRF8_HUMAN 0.12 U -IRF3_HUMAN IRF7_HUMAN 0.12 U -IRF7_HUMAN TLK2_HUMAN 0.12 U -IRF8_HUMAN NF1_HUMAN 0.12 U -IWS1_HUMAN SUMO2_HUMAN 0.12 U -J3KNL6_HUMAN TERF1_HUMAN 0.12 U -JAK2_HUMAN ARHG1_HUMAN 0.12 D -JKIP1_HUMAN NFKB1_HUMAN 0.12 U -JUN_HUMAN PRC2A_HUMAN 0.04 U -K1C10_HUMAN SRC_HUMAN 0.12 U -K1C16_HUMAN L7RT18_HUMAN 0.12 U -K7PPA8_HUMAN PIN1_HUMAN 0.12 U -K7PPA8_HUMAN SOX4_HUMAN 0.12 U -K7PPA8_HUMAN UBC_HUMAN 0.12 U -KAPCA_HUMAN PDE4A_HUMAN 0.12 D -KAT2A_HUMAN TRRAP_HUMAN 0.12 U -KAT2A_HUMAN WDHD1_HUMAN 0.12 U -KAT8_HUMAN MSL1_HUMAN 0.12 U -KAT8_HUMAN P53_HUMAN 0.12 U -KC1A_HUMAN CREB1_HUMAN 0.08 D -KC1E_HUMAN PER1_HUMAN 0.12 U -KC1E_HUMAN VP13B_HUMAN 0.12 U -KCRM_HUMAN PSMD4_HUMAN 0.12 U -KDM1A_HUMAN KLDC4_HUMAN 0.12 U -KDM1A_HUMAN LMBL3_HUMAN 0.12 U -KDM1A_HUMAN RCOR1_HUMAN 0.12 U -KDM1A_HUMAN SRGP3_HUMAN 0.12 U -KDM2B_HUMAN SKP1_HUMAN 0.12 U -KHDR1_HUMAN MIA2_HUMAN 0.12 U -KI13B_HUMAN MARK2_HUMAN 0.12 U -KIF14_HUMAN SUMO1_HUMAN 0.12 U -KIF2A_HUMAN NOTC1_HUMAN 0.12 U -KNOP1_HUMAN SUMO2_HUMAN 0.12 U -KPBB_HUMAN UBE3A_HUMAN 0.12 U -KPCA_HUMAN LEUK_HUMAN 0.12 D -KPCA_HUMAN PP14B_HUMAN 0.12 D -KSYK_HUMAN IKZF1_HUMAN 0.12 D -KSYK_HUMAN LCK_HUMAN 0.12 U -KTNB1_HUMAN NDEL1_HUMAN 0.12 U -LCAP_HUMAN TNKS2_HUMAN 0.12 U -LDB1_HUMAN TAL1_HUMAN 0.12 U -LMO7_HUMAN UBAC2_HUMAN 0.3 U -LSM12_HUMAN OXSR1_HUMAN 0.12 U -LSM2_HUMAN LSM7_HUMAN 0.12 U -LSM2_HUMAN PRCC_HUMAN 0.12 U -LSM2_HUMAN RSRC1_HUMAN 0.12 U -LSM2_HUMAN ZBT16_HUMAN 0.12 U -LSM2_HUMAN ZN408_HUMAN 0.12 U -LSM7_HUMAN TACC1_HUMAN 0.12 U -LUZP1_HUMAN SP1_HUMAN 0.12 U -M3K14_HUMAN RRP12_HUMAN 0.12 U -M3K14_HUMAN TRAF2_HUMAN 0.12 U -M3K1_HUMAN RHG04_HUMAN 0.12 U -MAP1S_HUMAN MLP3A_HUMAN 0.12 U -MAPK2_HUMAN CPZIP_HUMAN 0.12 D -MAST4_HUMAN SMAD1_HUMAN 0.12 U -MAX_HUMAN MGAP_HUMAN 0.12 U -MAX_HUMAN MYC_HUMAN 0.12 U -MD2L1_HUMAN UBD_HUMAN 0.12 U -MDM2_HUMAN PDLI7_HUMAN 0.12 U -MDM2_HUMAN PRC2C_HUMAN 0.12 U -MDN1_HUMAN SUMO1_HUMAN 0.12 U -MK01_HUMAN CIC_HUMAN 0.08 D -MK01_HUMAN DAPK1_HUMAN 0.12 D -MK01_HUMAN GORS2_HUMAN 0.08 D -MK01_HUMAN MBP_HUMAN 0.04 D -MK08_HUMAN BCL2_HUMAN 0.04 D -MK08_HUMAN STAT3_HUMAN 0.12 D -MLP3A_HUMAN SQSTM_HUMAN 0.12 U -MLP3A_HUMAN TB10A_HUMAN 0.12 U -MLP3A_HUMAN TM160_HUMAN 0.12 U -MMTA2_HUMAN SRPK2_HUMAN 0.12 U -MS18A_HUMAN NDEL1_HUMAN 0.12 U -MTFR1_HUMAN PIN1_HUMAN 0.12 U -MTMR4_HUMAN NEDD4_HUMAN 0.12 U -MTOR_HUMAN DAP1_HUMAN 0.12 D -MYC_HUMAN SMC4_HUMAN 0.08 U -N0E4C7_HUMAN PACS1_HUMAN 0.12 U -NCK1_HUMAN WASP_HUMAN 0.04 U -NCOA7_HUMAN Q658J6_HUMAN 0.12 U -NDUB8_HUMAN ZAP70_HUMAN 0.12 U -NEK1_HUMAN TP53B_HUMAN 0.12 U -NELFB_HUMAN NELFE_HUMAN 0.12 U -NEMO_HUMAN RLA2_HUMAN 0.04 U -NFIC_HUMAN SUMO2_HUMAN 0.12 U -NINL_HUMAN ZC3H1_HUMAN 0.08 U -NKTR_HUMAN SUMO1_HUMAN 0.12 U -NOLC1_HUMAN NOP56_HUMAN 0.08 U -NOTC1_HUMAN SNW1_HUMAN 0.12 U -NOTC1_HUMAN ZBED4_HUMAN 0.12 U -NPM_HUMAN NUCL_HUMAN 0.12 U -NPM_HUMAN UBP36_HUMAN 0.12 U -NSE2_HUMAN RAD21_HUMAN 0.12 U -NSRP1_HUMAN SRPK2_HUMAN 0.04 U -NU188_HUMAN SUMO1_HUMAN 0.12 U -NUCL_HUMAN TRFL_HUMAN 0.04 U -NUP93_HUMAN SUMO2_HUMAN 0.12 U -NUP98_HUMAN RAE1L_HUMAN 0.12 U -OXSR1_HUMAN RELL1_HUMAN 0.12 U -P53_HUMAN PARP1_HUMAN 0.12 U -P53_HUMAN TBP_HUMAN 0.08 U -P53_HUMAN UBC9_HUMAN 0.12 U -P63_HUMAN ROAA_HUMAN 0.12 U -P85A_HUMAN PXK_HUMAN 0.12 U -P85A_HUMAN TBA1B_HUMAN 0.12 U -PABP1_HUMAN PAN3_HUMAN 0.12 U -PABP1_HUMAN PCBP2_HUMAN 0.12 U -PAK1_HUMAN DYL1_HUMAN 0.12 D -PAK1_HUMAN GIT1_HUMAN 0.08 D -PAPOA_HUMAN SMAD2_HUMAN 0.12 U -PARP1_HUMAN XRCC5_HUMAN 0.12 U -PARP6_HUMAN PLIN3_HUMAN 0.12 U -PAXI1_HUMAN SCPDL_HUMAN 0.12 U -PAXI1_HUMAN TP53B_HUMAN 0.12 U -PCF11_HUMAN SUMO2_HUMAN 0.12 U -PCNA_HUMAN TDT_HUMAN 0.12 U -PCNA_HUMAN TPIS_HUMAN 0.12 U -PCNP_HUMAN UHRF2_HUMAN 0.12 U -PCY1A_HUMAN SUMO2_HUMAN 0.12 U -PDC6I_HUMAN PDCD6_HUMAN 0.12 U -PDC6I_HUMAN TS101_HUMAN 0.12 U -PEX19_HUMAN SMAD2_HUMAN 0.11 U -PGM2_HUMAN TERF1_HUMAN 0.12 U -PHAX_HUMAN SUMO2_HUMAN 0.12 U -PIAS1_HUMAN SUMO2_HUMAN 0.12 U -PIN1_HUMAN RAI1_HUMAN 0.12 U -PIN1_HUMAN REPS1_HUMAN 0.12 U -PIN1_HUMAN VIR_HUMAN 0.12 U -PLCG1_HUMAN SHAN2_HUMAN 0.12 U -PLCG1_HUMAN SNX17_HUMAN 0.12 U -PLCL2_HUMAN PP1A_HUMAN 0.12 U -PLIN3_HUMAN SMAD2_HUMAN 0.12 U -PLK1_HUMAN CCNB1_HUMAN 0.08 D -PLK1_HUMAN TP53B_HUMAN 0.08 U -PLK1_HUMAN VRK3_HUMAN 0.12 U -PLMN_HUMAN PRIO_HUMAN 0.12 U -PLXB1_HUMAN SEM4D_HUMAN 0.12 U -PP16B_HUMAN TGFR1_HUMAN 0.12 U -PP1A_HUMAN RBM26_HUMAN 0.12 U -PP1A_HUMAN RB_HUMAN 0.12 U -PP1A_HUMAN RRP1B_HUMAN 0.12 U -PP1A_HUMAN YLPM1_HUMAN 0.12 U -PP6R3_HUMAN PRKDC_HUMAN 0.12 U -PPM1G_HUMAN SUMO2_HUMAN 0.12 U -PRIO_HUMAN RBM22_HUMAN 0.12 U -PRIO_HUMAN ZKSC8_HUMAN 0.12 U -PRR12_HUMAN PUM1_HUMAN 0.39 U -PRS7_HUMAN PSMD2_HUMAN 0.04 U -PRS7_HUMAN PSMD4_HUMAN 0.04 U -PRSR1_HUMAN SUMO2_HUMAN 0.12 U -PSA2_HUMAN PSA5_HUMAN 0.12 U -PSA2_HUMAN PSA7_HUMAN 0.12 U -PSA7_HUMAN PSMD4_HUMAN 0.12 U -PSD11_HUMAN ZBT16_HUMAN 0.12 U -PSMD4_HUMAN UBQL1_HUMAN 0.12 U -PUM1_HUMAN SMAD1_HUMAN 0.12 U -PZP_HUMAN TGFB2_HUMAN 0.12 U -Q9H836_HUMAN RBCC1_HUMAN 0.08 U -Q9H836_HUMAN SMRC1_HUMAN 0.08 U -RAB4A_HUMAN RFIP1_HUMAN 0.12 U -RAB4A_HUMAN RUFY1_HUMAN 0.12 U -RAB4A_HUMAN STX4_HUMAN 0.12 U -RAD21_HUMAN SMC3_HUMAN 0.12 U -RAD21_HUMAN WAPL_HUMAN 0.12 U -RAD51_HUMAN SFR1_HUMAN 0.12 U -RAE1L_HUMAN WDR75_HUMAN 0.12 U -RB12B_HUMAN SUMO2_HUMAN 0.12 U -RB15B_HUMAN SUMO1_HUMAN 0.12 U -RBM15_HUMAN SUMO2_HUMAN 0.12 U -RBM39_HUMAN SRPK2_HUMAN 0.12 U -RBM6_HUMAN SUMO2_HUMAN 0.12 U -RBP56_HUMAN SAFB1_HUMAN 0.12 U -RED_HUMAN SUMO2_HUMAN 0.12 U -RENT1_HUMAN RPRD2_HUMAN 0.12 U -REPS1_HUMAN TPC2A_HUMAN 0.12 U -RFTN1_HUMAN UBD_HUMAN 0.12 U -RIC8A_HUMAN UBQL1_HUMAN 0.12 U -RIPK1_HUMAN RIPK3_HUMAN 0.12 U -RL28_HUMAN SMAD4_HUMAN 0.12 U -RL28_HUMAN TM230_HUMAN 0.12 U -RL35_HUMAN TBB2B_HUMAN 0.12 U -RN114_HUMAN UB2D2_HUMAN 0.12 U -RNF10_HUMAN UB2D2_HUMAN 0.12 U -RRP15_HUMAN SUMO2_HUMAN 0.12 U -RSRC2_HUMAN UBQL4_HUMAN 0.12 U -RUVB1_HUMAN RUVB2_HUMAN 0.04 U -RUVB2_HUMAN TFPT_HUMAN 0.04 U -SC22B_HUMAN STX4_HUMAN 0.12 U -SCAFB_HUMAN U2AF2_HUMAN 0.12 U -SCMC1_HUMAN UBD_HUMAN 0.12 U -SCML2_HUMAN SUMO2_HUMAN 0.12 U -SEPT2_HUMAN SEPT6_HUMAN 0.12 U -SF3B5_HUMAN SRRM2_HUMAN 0.12 U -SFR19_HUMAN UBQL4_HUMAN 0.12 U -SGT1_HUMAN SKP1_HUMAN 0.12 U -SIX6_HUMAN TLE1_HUMAN 0.12 U -SMAD1_HUMAN SMAD4_HUMAN 0.12 U -SMAD1_HUMAN SMUF2_HUMAN 0.08 U -SMAD2_HUMAN SMAD4_HUMAN 0.12 U -SMAD3_HUMAN SP130_HUMAN 0.12 U -SMAD4_HUMAN UBC9_HUMAN 0.08 U -SMAD7_HUMAN SMUF2_HUMAN 0.12 U -SMAD7_HUMAN TGFR1_HUMAN 0.12 U -SND1_HUMAN TIA1_HUMAN 0.12 U -SOX1_HUMAN STAT3_HUMAN 0.12 U -SP16H_HUMAN UIF_HUMAN 0.12 U -SPAST_HUMAN TERA_HUMAN 0.12 U -SR140_HUMAN SUMO2_HUMAN 0.12 U -SRC_HUMAN EZRI_HUMAN 0.12 D -SRC_HUMAN MCP_HUMAN 0.12 D -SRPK2_HUMAN ACINU_HUMAN 0.12 D -SRPK2_HUMAN SRSF8_HUMAN 0.12 U -SRPK2_HUMAN U2AF2_HUMAN 0.12 U -SRPK2_HUMAN ZRAB2_HUMAN 0.04 U -SRSF4_HUMAN SRSF6_HUMAN 0.12 U -STK11_HUMAN AAPK1_HUMAN 0.12 D -STK11_HUMAN SNRK_HUMAN 0.12 D -SUGP1_HUMAN U2AF2_HUMAN 0.12 U -SUMO1_HUMAN ZC3HD_HUMAN 0.12 U -SUMO1_HUMAN ZN592_HUMAN 0.12 U -SUMO2_HUMAN SYMPK_HUMAN 0.12 U -SUMO2_HUMAN UBE2T_HUMAN 0.12 U -SUMO2_HUMAN UBN2_HUMAN 0.12 U -SUMO2_HUMAN VPS72_HUMAN 0.08 U -SUMO2_HUMAN Z280C_HUMAN 0.12 U -SUMO2_HUMAN ZBT40_HUMAN 0.12 U -SUMO2_HUMAN ZN318_HUMAN 0.12 U -SUMO2_HUMAN ZN644_HUMAN 0.12 U -SUMO2_HUMAN ZZZ3_HUMAN 0.12 U -SYTC_HUMAN UBD_HUMAN 0.12 U -TB182_HUMAN TNKS1_HUMAN 0.12 U -TBB4A_HUMAN TNR1A_HUMAN 0.12 U -TBK1_HUMAN IRF3_HUMAN 0.12 D -TBK1_HUMAN TRAF2_HUMAN 0.12 U -TBP_HUMAN TF3B_HUMAN 0.12 U -TCF25_HUMAN XIAP_HUMAN 0.12 U -TERF1_HUMAN TNKS1_HUMAN 0.12 U -TERF1_HUMAN TNKS2_HUMAN 0.12 U -TERF1_HUMAN TYB10_HUMAN 0.12 U -TETN_HUMAN TR150_HUMAN 0.12 U -TGFR1_HUMAN P63_HUMAN 0.08 D -TICRR_HUMAN TOPB1_HUMAN 0.12 U -TIM50_HUMAN TNR1A_HUMAN 0.12 U -TMCO6_HUMAN UBQL1_HUMAN 0.12 U -TRAF2_HUMAN UBP31_HUMAN 0.12 U -UBA1_HUMAN UBD_HUMAN 0.12 U -UBQL1_HUMAN UBQL4_HUMAN 0.12 U -UBQL4_HUMAN WAC_HUMAN 0.12 U -WBP11_HUMAN WBP4_HUMAN 0.12 U -WNK1_HUMAN OXSR1_HUMAN 0.12 D -ZN330_HUMAN ZN408_HUMAN 0.12 U -41_HUMAN C2C2L_HUMAN 0.08 U -41_HUMAN GLPC_HUMAN 0.08 U -A0A5E8_HUMAN POTE1_HUMAN 0.08 U -A2RUM7_HUMAN RENT2_HUMAN 0.04 U -A4_HUMAN PSN1_HUMAN 0.04 U -ABCF2_HUMAN E9KL44_HUMAN 0.08 U -ABHGA_HUMAN SAFB1_HUMAN 0.08 U -ABHGA_HUMAN SPAG7_HUMAN 0.08 U -ACD_HUMAN L2GL1_HUMAN 0.08 U -ACD_HUMAN POTE1_HUMAN 0.08 U -ACK1_HUMAN CDC42_HUMAN 0.08 U -ACK1_HUMAN ITFG2_HUMAN 0.08 U -ACOC_HUMAN C10_HUMAN 0.08 U -AF9_HUMAN AFF4_HUMAN 0.08 U -AKTIP_HUMAN B0LPE5_HUMAN 0.08 U -AKTIP_HUMAN DMXL2_HUMAN 0.08 U -AKTIP_HUMAN DPOA2_HUMAN 0.08 U -ALBU_HUMAN TFR1_HUMAN 0.04 U -ALG3_HUMAN CREB3_HUMAN 0.08 U -ARC1A_HUMAN EXOC7_HUMAN 0.08 U -ARF6_HUMAN ARRB1_HUMAN 0.08 U -ARF6_HUMAN ASAP3_HUMAN 0.08 U -ARF6_HUMAN JIP4_HUMAN 0.08 U -ARRB1_HUMAN MDM2_HUMAN 0.08 U -ARRB1_HUMAN ZRAB2_HUMAN 0.08 U -ATP9B_HUMAN LSM2_HUMAN 0.08 U -ATR_HUMAN TREX1_HUMAN 0.08 U -AURKB_HUMAN INCE_HUMAN 0.04 D -B0LPE5_HUMAN IKKA_HUMAN 0.08 U -B0LPF3_HUMAN DEN1B_HUMAN 0.08 U -B0LPF3_HUMAN EGFR_HUMAN 0.08 U -B0LPF3_HUMAN PRC2A_HUMAN 0.08 U -B0LPF3_HUMAN UCK2_HUMAN 0.08 U -B2R4R0_HUMAN H31_HUMAN 0.04 U -B2R812_HUMAN B7Z2P9_HUMAN 0.08 U -B2R812_HUMAN NEDD4_HUMAN 0.08 U -B4DJ51_HUMAN IQCB1_HUMAN 0.08 U -B4DJ51_HUMAN IQGA1_HUMAN 0.08 U -B4DJ51_HUMAN MBP_HUMAN 0.08 U -B4DJ51_HUMAN TRFL_HUMAN 0.08 U -B7Z2P9_HUMAN NSRP1_HUMAN 0.08 U -B7Z2P9_HUMAN SGK1_HUMAN 0.08 U -BAD_HUMAN BCL2_HUMAN 0.08 U -BCL2_HUMAN BNI3L_HUMAN 0.04 U -BNI3L_HUMAN TMM11_HUMAN 0.04 U -BRD1_HUMAN Z512B_HUMAN 0.08 U -CC85B_HUMAN CDN1A_HUMAN 0.04 U -CC85B_HUMAN NDUA5_HUMAN 0.04 U -CC85B_HUMAN Q7Z372_HUMAN 0.04 U -CC85B_HUMAN VPS72_HUMAN 0.04 U -CC85B_HUMAN ZC3H1_HUMAN 0.04 U -CD2A2_HUMAN CDK4_HUMAN 0.08 U -CDC37_HUMAN CDK4_HUMAN 0.08 U -CDC42_HUMAN IQGA1_HUMAN 0.08 U -CDK1_HUMAN 41_HUMAN 0.08 D -CDK1_HUMAN CND3_HUMAN 0.04 D -CDK9_HUMAN HS90A_HUMAN 0.04 U -CND2_HUMAN CND3_HUMAN 0.04 U -CND3_HUMAN SMC4_HUMAN 0.04 U -CO039_HUMAN RLA1_HUMAN 0.08 U -CPPED_HUMAN POTE1_HUMAN 0.08 U -CREB3_HUMAN HCFC1_HUMAN 0.08 U -CREB3_HUMAN PTSS1_HUMAN 0.08 U -CSK21_HUMAN CDK1_HUMAN 0.04 D -CSK21_HUMAN MGMT_HUMAN 0.04 U -CUL2_HUMAN TIM13_HUMAN 0.08 U -D4PHA4_HUMAN Q7Z372_HUMAN 0.08 U -DMAP1_HUMAN TS101_HUMAN 0.08 U -DREB_HUMAN F6KD01_HUMAN 0.08 U -DREB_HUMAN ZN598_HUMAN 0.08 U -E9KL44_HUMAN TRAF6_HUMAN 0.08 U -EDF1_HUMAN NRL_HUMAN 0.08 U -EXOC7_HUMAN ZC3HE_HUMAN 0.08 U -FIZ1_HUMAN NRL_HUMAN 0.08 U -FLII_HUMAN G4XH65_HUMAN 0.08 U -FLII_HUMAN LRRF1_HUMAN 0.08 U -G3XAN8_HUMAN TIM13_HUMAN 0.08 U -GSK3B_HUMAN PSN1_HUMAN 0.04 D -H12_HUMAN Q53T99_HUMAN 0.08 U -HCFC1_HUMAN WDR5_HUMAN 0.08 U -HOIL1_HUMAN MKRN2_HUMAN 0.08 U -HOIL1_HUMAN NEMO_HUMAN 0.08 U -HOIL1_HUMAN RNF31_HUMAN 0.08 U -HS90A_HUMAN P53_HUMAN 0.04 U -IKKA_HUMAN M3K1_HUMAN 0.08 U -IKKA_HUMAN M3K7_HUMAN 0.08 U -IN80E_HUMAN Q7Z372_HUMAN 0.08 U -IN80E_HUMAN TFPT_HUMAN 0.11 U -ITCH_HUMAN UB2L3_HUMAN 0.08 U -ITCH_HUMAN UBAP2_HUMAN 0.08 U -KDM3B_HUMAN Z512B_HUMAN 0.08 U -KPCA_HUMAN ACOC_HUMAN 0.08 D -L7RRS6_HUMAN RB_HUMAN 0.04 U -LYAR_HUMAN SRP14_HUMAN 0.08 U -MED1_HUMAN MED4_HUMAN 0.04 U -MED4_HUMAN PUM2_HUMAN 0.08 U -MK01_HUMAN EXOC7_HUMAN 0.08 D -NELL1_HUMAN NEXN_HUMAN 0.08 U -NELL1_HUMAN SLTM_HUMAN 0.08 U -NELL1_HUMAN TDIF2_HUMAN 0.08 U -NEMF_HUMAN NOP56_HUMAN 0.08 U -NFAC2_HUMAN VIME_HUMAN 0.08 U -NFYA_HUMAN PAPOG_HUMAN 0.08 U -NFYA_HUMAN SP1_HUMAN 0.08 U -PAK1_HUMAN PLK1_HUMAN 0.04 D -PALM_HUMAN POTE1_HUMAN 0.08 U -POTE1_HUMAN TERF1_HUMAN 0.08 U -PSMD2_HUMAN PSMD4_HUMAN 0.08 U -Q53T99_HUMAN TBC13_HUMAN 0.08 U -Q9HBD4_HUMAN RENT1_HUMAN 0.08 U -RENT2_HUMAN SMG1_HUMAN 0.08 U -RLA1_HUMAN RLA2_HUMAN 0.08 U -RLA1_HUMAN XRCC6_HUMAN 0.08 U -SGK1_HUMAN T184C_HUMAN 0.08 U -SRC_HUMAN CDC42_HUMAN 0.04 D -SRP14_HUMAN SZRD1_HUMAN 0.08 U -SUMO1_HUMAN UCKL1_HUMAN 0.04 U -TNR8_HUMAN TRAF2_HUMAN 0.08 U -XRCC6_HUMAN Z512B_HUMAN 0.08 U -A2RUM7_HUMAN RL11_HUMAN 0.04 U -A4_HUMAN TPC2L_HUMAN 0.04 U -ARFG1_HUMAN RL11_HUMAN 0.04 U -ATM_HUMAN CREB1_HUMAN 0.04 D -ATM_HUMAN TERF1_HUMAN 0.04 D -ATX1_HUMAN RPGF4_HUMAN 0.04 U -AURKB_HUMAN SKA1_HUMAN 0.04 U -B2R5T5_HUMAN GRB2_HUMAN 0.04 U -BCL2_HUMAN L7RRS6_HUMAN 0.04 U -BIRC2_HUMAN CASP3_HUMAN 0.04 U -BIRC2_HUMAN TRAF2_HUMAN 0.04 U -BRCA1_HUMAN G4XH65_HUMAN 0.04 U -BRCA1_HUMAN P53_HUMAN 0.04 U -CBL_HUMAN GRB2_HUMAN 0.04 U -CCND1_HUMAN CDK4_HUMAN 0.04 U -CCND1_HUMAN CDN1A_HUMAN 0.04 U -CCND1_HUMAN RB_HUMAN 0.04 U -CCNT1_HUMAN MYC_HUMAN 0.04 U -CLN8_HUMAN RRP15_HUMAN 0.04 U -CLN8_HUMAN SELK_HUMAN 0.04 U -CLPX_HUMAN GRB2_HUMAN 0.04 U -CTNB1_HUMAN RBCC1_HUMAN 0.04 U -DCAKD_HUMAN RPB9_HUMAN 0.04 U -DCP2_HUMAN RENT1_HUMAN 0.04 U -ECT2_HUMAN ESYT2_HUMAN 0.04 U -EIF3A_HUMAN EIF3B_HUMAN 0.04 U -EIF3A_HUMAN RENT1_HUMAN 0.04 U -EIF3B_HUMAN MTOR_HUMAN 0.04 U -ERBB2_HUMAN CDK1_HUMAN 0.04 D -EZRI_HUMAN NHRF1_HUMAN 0.04 U -F6KD01_HUMAN NHRF1_HUMAN 0.04 U -G4XH65_HUMAN HS90A_HUMAN 0.04 U -GORS2_HUMAN TRAF2_HUMAN 0.04 U -GRB2_HUMAN MY18A_HUMAN 0.04 U -ITCH_HUMAN P63_HUMAN 0.04 U -JUN_HUMAN TBP_HUMAN 0.04 U -L7RRS6_HUMAN STK3_HUMAN 0.01 U -LYAR_HUMAN ZBT16_HUMAN 0.04 U -MDM2_HUMAN RL11_HUMAN 0.04 U -MED19_HUMAN MED1_HUMAN 0.04 U -MED19_HUMAN MED4_HUMAN 0.04 U -MED19_HUMAN RPAB2_HUMAN 0.04 U -MED19_HUMAN RPB9_HUMAN 0.04 U -MGMT_HUMAN UBA1_HUMAN 0.04 U -NNTM_HUMAN PRPF3_HUMAN 0.04 U -NNTM_HUMAN S26A2_HUMAN 0.04 U -NOP56_HUMAN RL11_HUMAN 0.04 U -NSUN5_HUMAN RPAB2_HUMAN 0.04 U -PEX19_HUMAN STK3_HUMAN 0.01 U -POSTN_HUMAN TPC2L_HUMAN 0.04 U -Q7Z372_HUMAN UBR5_HUMAN 0.04 U -RASF5_HUMAN STK3_HUMAN 0.01 U -RENT1_HUMAN RENT2_HUMAN 0.04 U -RPGF4_HUMAN S39AA_HUMAN 0.04 U -SEC62_HUMAN ZNF24_HUMAN 0.04 U -SETD2_HUMAN SMAD3_HUMAN 0.04 U -SKA1_HUMAN SKA3_HUMAN 0.04 U -SMAD3_HUMAN SMUF2_HUMAN 0.04 U -SYTC_HUMAN UCKL1_HUMAN 0.04 U -ZBT16_HUMAN ZNF24_HUMAN 0.04 U -ZN397_HUMAN ZN446_HUMAN 0.04 U -ZN446_HUMAN ZNF24_HUMAN 0.04 U -CENPF_HUMAN NDE1_HUMAN 0.12 U -EMSY_HUMAN ZN335_HUMAN 0.17 U -IWS1_HUMAN SETD2_HUMAN 0.12 U -KTNA1_HUMAN KTNB1_HUMAN 0.18 U -NOL8_HUMAN RRAGC_HUMAN 0.12 U -NOL8_HUMAN RRAGD_HUMAN 0.15 U -PATL1_HUMAN PHF20_HUMAN 0.12 U -IBP2_HUMAN TRFE_HUMAN 0.08 U -HDAC2_HUMAN JARD2_HUMAN 0.03 U -AFF4_HUMAN ELL2_HUMAN 0.06 U -ATRX_HUMAN NEK1_HUMAN 0.06 U -BTF3_HUMAN RWDD4_HUMAN 0.06 U -DCP1A_HUMAN DCP1B_HUMAN 0.04 U -DCP1A_HUMAN TIA1_HUMAN 0.06 U -DCP1B_HUMAN EDC3_HUMAN 0.06 U -GLYR1_HUMAN NSD3_HUMAN 0.06 U -KLC4_HUMAN RUFY1_HUMAN 0.06 U -LRRC1_HUMAN MARE2_HUMAN 0.06 U -NSE2_HUMAN PDS5A_HUMAN 0.04 U -RB15B_HUMAN RBM15_HUMAN 0.06 U -VPS72_HUMAN ZC3H1_HUMAN 0.09 U -ARI4B_HUMAN SP130_HUMAN 0.04 U -CO3_HUMAN VTDB_HUMAN 0.04 U -SASH3_HUMAN SC22B_HUMAN 0.06 U -NU153_HUMAN SENP2_HUMAN 0.04 U -2A5A_HUMAN NEK1_HUMAN 0.03 U -ARHG1_HUMAN GBF1_HUMAN 0.03 U -CAF1A_HUMAN CAF1B_HUMAN 0.03 U -CENPF_HUMAN NU133_HUMAN 0.03 U -COASY_HUMAN EDC4_HUMAN 0.03 U -CUL4A_HUMAN RBBP5_HUMAN 0.03 U -CWC15_HUMAN SF3B5_HUMAN 0.03 U -DCP1A_HUMAN EDC3_HUMAN 0.01 U -DCP1B_HUMAN EDC4_HUMAN 0.03 U -EDC4_HUMAN FBLN1_HUMAN 0.03 U -ELF1_HUMAN NFAC1_HUMAN 0.03 U -GPTC8_HUMAN NUMBL_HUMAN 0.03 U -KAT6A_HUMAN RERE_HUMAN 0.03 U -NSD3_HUMAN SEPT6_HUMAN 0.03 U -PDS5A_HUMAN WAPL_HUMAN 0.03 U -PRC2A_HUMAN RERE_HUMAN 0.03 U -PRC2B_HUMAN RERE_HUMAN 0.03 U -RAF1_HUMAN MYPT1_HUMAN 0.03 D -RBM5_HUMAN WBP11_HUMAN 0.03 U -RCOR1_HUMAN SMRC2_HUMAN 0.03 U -RN168_HUMAN TRIPC_HUMAN 0.03 U -TDIF2_HUMAN TDT_HUMAN 0.03 U -WBP11_HUMAN ZC3HD_HUMAN 0.03 U -APOB_HUMAN SC61B_HUMAN 0.02 U -ARC1A_HUMAN SC22B_HUMAN 0.02 U -ARHG1_HUMAN CUX1_HUMAN 0.02 U -ARHG1_HUMAN MY18A_HUMAN 0.02 U -CNOT3_HUMAN CNOT4_HUMAN 0.02 U -DDRGK_HUMAN UFL1_HUMAN 0.02 U -EP400_HUMAN TBCD4_HUMAN 0.02 U -NFIC_HUMAN TDT_HUMAN 0.02 U -NSE2_HUMAN WAPL_HUMAN 0.02 U -PCBP2_HUMAN PTBP1_HUMAN 0.02 U -SMRC2_HUMAN SRGP3_HUMAN 0.02 U -SR140_HUMAN TBCD4_HUMAN 0.02 U -ANT3_HUMAN PLMN_HUMAN 0.01 U -CO7_HUMAN PLMN_HUMAN 0.01 U -DCP1A_HUMAN EDC4_HUMAN 0.01 U -EDC4_HUMAN YTDC1_HUMAN 0.01 U -PLMN_HUMAN TETN_HUMAN 0.01 U -PLMN_HUMAN YTDC1_HUMAN 0.01 U diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/omicsintegrator1-hac-clusters-horizontal.txt b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/omicsintegrator1-hac-clusters-horizontal.txt deleted file mode 100644 index 81ef75d..0000000 --- a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/omicsintegrator1-hac-clusters-horizontal.txt +++ /dev/null @@ -1,101 +0,0 @@ -algorithm labels -hiv-omicsintegrator1-params-NQQFMSW 5 -hiv-omicsintegrator1-params-7F2UHHY 5 -hiv-omicsintegrator1-params-DLZY2UU 5 -hiv-omicsintegrator1-params-F2GW4FM 5 -hiv-omicsintegrator1-params-GJJHAWR 5 -hiv-omicsintegrator1-params-EKFAHXJ 5 -hiv-omicsintegrator1-params-O245LF3 5 -hiv-omicsintegrator1-params-K2C44YG 5 -hiv-omicsintegrator1-params-MKUCXSX 5 -hiv-omicsintegrator1-params-CXULPPY 5 -hiv-omicsintegrator1-params-D2CFK7Y 5 -hiv-omicsintegrator1-params-GB464QK 5 -hiv-omicsintegrator1-params-QLA7PZM 5 -hiv-omicsintegrator1-params-BK5Y6AV 5 -hiv-omicsintegrator1-params-E4PGYJE 5 -hiv-omicsintegrator1-params-YH53Z7I 5 -hiv-omicsintegrator1-params-V6TRFD5 5 -hiv-omicsintegrator1-params-VNZPBKY 5 -hiv-omicsintegrator1-params-HXBNO4P 5 -hiv-omicsintegrator1-params-OW2ZQVJ 5 -hiv-omicsintegrator1-params-UG35EN3 5 -hiv-omicsintegrator1-params-7VVKFFW 5 -hiv-omicsintegrator1-params-Y7FVD5Y 5 -hiv-omicsintegrator1-params-X7OTY3Z 5 -hiv-omicsintegrator1-params-6ZYKM5I 11 -hiv-omicsintegrator1-params-LW2V34U 5 -hiv-omicsintegrator1-params-5PV5R4M 5 -hiv-omicsintegrator1-params-5OAENKB 5 -hiv-omicsintegrator1-params-4S6QYO2 7 -hiv-omicsintegrator1-params-SUBCPCC 4 -hiv-omicsintegrator1-params-WERUDAF 5 -hiv-omicsintegrator1-params-TQAZEEK 5 -hiv-omicsintegrator1-params-C4N3KE7 10 -hiv-omicsintegrator1-params-J5PMCRQ 4 -hiv-omicsintegrator1-params-2NL4RDV 5 -hiv-omicsintegrator1-params-OJVVFSK 5 -hiv-omicsintegrator1-params-VZM7OSX 12 -hiv-omicsintegrator1-params-UAYBOVK 4 -hiv-omicsintegrator1-params-XJNUGEC 5 -hiv-omicsintegrator1-params-5E56FMM 5 -hiv-omicsintegrator1-params-BHLRRSP 5 -hiv-omicsintegrator1-params-VGIOBOX 5 -hiv-omicsintegrator1-params-LIWRFPS 5 -hiv-omicsintegrator1-params-UWSVCXO 5 -hiv-omicsintegrator1-params-EONPKPH 11 -hiv-omicsintegrator1-params-6BGQ7PL 16 -hiv-omicsintegrator1-params-5I2I6FM 5 -hiv-omicsintegrator1-params-XAQM3RR 5 -hiv-omicsintegrator1-params-EBEEP6T 7 -hiv-omicsintegrator1-params-W2DOD4H 21 -hiv-omicsintegrator1-params-BF65QO6 4 -hiv-omicsintegrator1-params-XOXO56K 5 -hiv-omicsintegrator1-params-4G6HWVJ 10 -hiv-omicsintegrator1-params-UNEWALJ 9 -hiv-omicsintegrator1-params-Y5XCKB2 4 -hiv-omicsintegrator1-params-KPIH42T 5 -hiv-omicsintegrator1-params-5YCE7NJ 6 -hiv-omicsintegrator1-params-DXTK7ZU 9 -hiv-omicsintegrator1-params-SHAKIBL 4 -hiv-omicsintegrator1-params-VXGL3EA 5 -hiv-omicsintegrator1-params-WCP7GIZ 5 -hiv-omicsintegrator1-params-L4IUEVV 5 -hiv-omicsintegrator1-params-PMY3CCQ 5 -hiv-omicsintegrator1-params-LIECIRU 5 -hiv-omicsintegrator1-params-UA2CL6Z 11 -hiv-omicsintegrator1-params-CUD2SWJ 18 -hiv-omicsintegrator1-params-EE47ACK 5 -hiv-omicsintegrator1-params-5E3SBY6 5 -hiv-omicsintegrator1-params-NFOUAB6 7 -hiv-omicsintegrator1-params-2G7CMNV 15 -hiv-omicsintegrator1-params-422WXNM 3 -hiv-omicsintegrator1-params-R3TNGIE 4 -hiv-omicsintegrator1-params-VNZUFFN 10 -hiv-omicsintegrator1-params-L7CHKLI 2 -hiv-omicsintegrator1-params-LWUMKKP 3 -hiv-omicsintegrator1-params-L2HU4XD 4 -hiv-omicsintegrator1-params-OA2LKJB 6 -hiv-omicsintegrator1-params-I6LVYQ7 2 -hiv-omicsintegrator1-params-D7XEWKT 3 -hiv-omicsintegrator1-params-7M4YEVF 4 -hiv-omicsintegrator1-params-ZZYQSRD 5 -hiv-omicsintegrator1-params-WQ6V5PX 5 -hiv-omicsintegrator1-params-XQ2C7V7 5 -hiv-omicsintegrator1-params-CML462S 5 -hiv-omicsintegrator1-params-ZWKBRYR 11 -hiv-omicsintegrator1-params-T77D7QZ 14 -hiv-omicsintegrator1-params-SWWL7WP 16 -hiv-omicsintegrator1-params-FYCKMYA 5 -hiv-omicsintegrator1-params-H766NCA 7 -hiv-omicsintegrator1-params-EAX635F 19 -hiv-omicsintegrator1-params-2NKIR7L 17 -hiv-omicsintegrator1-params-JZPC2XQ 0 -hiv-omicsintegrator1-params-PI44E6Y 10 -hiv-omicsintegrator1-params-Y3DQROJ 13 -hiv-omicsintegrator1-params-RCIIWF5 1 -hiv-omicsintegrator1-params-2NFVB7W 0 -hiv-omicsintegrator1-params-OWG4JUJ 6 -hiv-omicsintegrator1-params-PQYTDPN 8 -hiv-omicsintegrator1-params-BS7GMXF 1 -hiv-omicsintegrator1-params-7JTTPPE 20 diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/omicsintegrator1-hac-clusters-vertical.txt b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/omicsintegrator1-hac-clusters-vertical.txt deleted file mode 100644 index 0de193e..0000000 --- a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/omicsintegrator1-hac-clusters-vertical.txt +++ /dev/null @@ -1,101 +0,0 @@ -algorithm labels -hiv-omicsintegrator1-params-NQQFMSW 10 -hiv-omicsintegrator1-params-7F2UHHY 10 -hiv-omicsintegrator1-params-DLZY2UU 10 -hiv-omicsintegrator1-params-F2GW4FM 10 -hiv-omicsintegrator1-params-GJJHAWR 10 -hiv-omicsintegrator1-params-EKFAHXJ 10 -hiv-omicsintegrator1-params-O245LF3 10 -hiv-omicsintegrator1-params-K2C44YG 10 -hiv-omicsintegrator1-params-MKUCXSX 10 -hiv-omicsintegrator1-params-CXULPPY 10 -hiv-omicsintegrator1-params-D2CFK7Y 10 -hiv-omicsintegrator1-params-GB464QK 10 -hiv-omicsintegrator1-params-QLA7PZM 10 -hiv-omicsintegrator1-params-BK5Y6AV 10 -hiv-omicsintegrator1-params-E4PGYJE 10 -hiv-omicsintegrator1-params-YH53Z7I 10 -hiv-omicsintegrator1-params-V6TRFD5 10 -hiv-omicsintegrator1-params-VNZPBKY 10 -hiv-omicsintegrator1-params-HXBNO4P 10 -hiv-omicsintegrator1-params-OW2ZQVJ 10 -hiv-omicsintegrator1-params-UG35EN3 10 -hiv-omicsintegrator1-params-7VVKFFW 10 -hiv-omicsintegrator1-params-Y7FVD5Y 10 -hiv-omicsintegrator1-params-X7OTY3Z 10 -hiv-omicsintegrator1-params-6ZYKM5I 5 -hiv-omicsintegrator1-params-LW2V34U 10 -hiv-omicsintegrator1-params-5PV5R4M 10 -hiv-omicsintegrator1-params-5OAENKB 10 -hiv-omicsintegrator1-params-4S6QYO2 1 -hiv-omicsintegrator1-params-SUBCPCC 9 -hiv-omicsintegrator1-params-WERUDAF 10 -hiv-omicsintegrator1-params-TQAZEEK 10 -hiv-omicsintegrator1-params-C4N3KE7 2 -hiv-omicsintegrator1-params-J5PMCRQ 9 -hiv-omicsintegrator1-params-2NL4RDV 10 -hiv-omicsintegrator1-params-OJVVFSK 10 -hiv-omicsintegrator1-params-VZM7OSX 4 -hiv-omicsintegrator1-params-UAYBOVK 9 -hiv-omicsintegrator1-params-XJNUGEC 10 -hiv-omicsintegrator1-params-5E56FMM 10 -hiv-omicsintegrator1-params-BHLRRSP 10 -hiv-omicsintegrator1-params-VGIOBOX 10 -hiv-omicsintegrator1-params-LIWRFPS 10 -hiv-omicsintegrator1-params-UWSVCXO 10 -hiv-omicsintegrator1-params-EONPKPH 5 -hiv-omicsintegrator1-params-6BGQ7PL 11 -hiv-omicsintegrator1-params-5I2I6FM 10 -hiv-omicsintegrator1-params-XAQM3RR 10 -hiv-omicsintegrator1-params-EBEEP6T 1 -hiv-omicsintegrator1-params-W2DOD4H 21 -hiv-omicsintegrator1-params-BF65QO6 9 -hiv-omicsintegrator1-params-XOXO56K 10 -hiv-omicsintegrator1-params-4G6HWVJ 2 -hiv-omicsintegrator1-params-UNEWALJ 20 -hiv-omicsintegrator1-params-Y5XCKB2 9 -hiv-omicsintegrator1-params-KPIH42T 10 -hiv-omicsintegrator1-params-5YCE7NJ 3 -hiv-omicsintegrator1-params-DXTK7ZU 20 -hiv-omicsintegrator1-params-SHAKIBL 9 -hiv-omicsintegrator1-params-VXGL3EA 10 -hiv-omicsintegrator1-params-WCP7GIZ 10 -hiv-omicsintegrator1-params-L4IUEVV 10 -hiv-omicsintegrator1-params-PMY3CCQ 10 -hiv-omicsintegrator1-params-LIECIRU 10 -hiv-omicsintegrator1-params-UA2CL6Z 5 -hiv-omicsintegrator1-params-CUD2SWJ 12 -hiv-omicsintegrator1-params-EE47ACK 10 -hiv-omicsintegrator1-params-5E3SBY6 10 -hiv-omicsintegrator1-params-NFOUAB6 1 -hiv-omicsintegrator1-params-2G7CMNV 15 -hiv-omicsintegrator1-params-422WXNM 16 -hiv-omicsintegrator1-params-R3TNGIE 9 -hiv-omicsintegrator1-params-VNZUFFN 2 -hiv-omicsintegrator1-params-L7CHKLI 14 -hiv-omicsintegrator1-params-LWUMKKP 16 -hiv-omicsintegrator1-params-L2HU4XD 9 -hiv-omicsintegrator1-params-OA2LKJB 3 -hiv-omicsintegrator1-params-I6LVYQ7 14 -hiv-omicsintegrator1-params-D7XEWKT 16 -hiv-omicsintegrator1-params-7M4YEVF 9 -hiv-omicsintegrator1-params-ZZYQSRD 10 -hiv-omicsintegrator1-params-WQ6V5PX 10 -hiv-omicsintegrator1-params-XQ2C7V7 10 -hiv-omicsintegrator1-params-CML462S 10 -hiv-omicsintegrator1-params-ZWKBRYR 5 -hiv-omicsintegrator1-params-T77D7QZ 13 -hiv-omicsintegrator1-params-SWWL7WP 11 -hiv-omicsintegrator1-params-FYCKMYA 10 -hiv-omicsintegrator1-params-H766NCA 1 -hiv-omicsintegrator1-params-EAX635F 8 -hiv-omicsintegrator1-params-2NKIR7L 22 -hiv-omicsintegrator1-params-JZPC2XQ 17 -hiv-omicsintegrator1-params-PI44E6Y 2 -hiv-omicsintegrator1-params-Y3DQROJ 6 -hiv-omicsintegrator1-params-RCIIWF5 19 -hiv-omicsintegrator1-params-2NFVB7W 17 -hiv-omicsintegrator1-params-OWG4JUJ 3 -hiv-omicsintegrator1-params-PQYTDPN 7 -hiv-omicsintegrator1-params-BS7GMXF 19 -hiv-omicsintegrator1-params-7JTTPPE 18 diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/omicsintegrator1-hac-horizontal.png b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/omicsintegrator1-hac-horizontal.png deleted file mode 100644 index bef2c1c..0000000 Binary files a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/omicsintegrator1-hac-horizontal.png and /dev/null differ diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/omicsintegrator1-hac-vertical.png b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/omicsintegrator1-hac-vertical.png deleted file mode 100644 index f207761..0000000 Binary files a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/omicsintegrator1-hac-vertical.png and /dev/null differ diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/omicsintegrator1-pca-coordinates.txt b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/omicsintegrator1-pca-coordinates.txt deleted file mode 100644 index b07a4fa..0000000 --- a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/omicsintegrator1-pca-coordinates.txt +++ /dev/null @@ -1,101 +0,0 @@ -algorithm PC1 PC2 -hiv-omicsintegrator1-params-NQQFMSW -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-7F2UHHY -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-DLZY2UU -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-F2GW4FM -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-GJJHAWR -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-EKFAHXJ -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-O245LF3 -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-K2C44YG -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-MKUCXSX -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-CXULPPY -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-D2CFK7Y -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-GB464QK -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-QLA7PZM -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-BK5Y6AV -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-E4PGYJE -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-YH53Z7I -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-V6TRFD5 -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-VNZPBKY -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-HXBNO4P -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-OW2ZQVJ -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-UG35EN3 -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-7VVKFFW -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-Y7FVD5Y -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-X7OTY3Z -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-6ZYKM5I 25.076603162559145 54.4181546653047 -hiv-omicsintegrator1-params-LW2V34U -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-5PV5R4M -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-5OAENKB -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-4S6QYO2 81.4502794979121 3.75730527486823 -hiv-omicsintegrator1-params-SUBCPCC -13.555154138590558 -1.584981265616543 -hiv-omicsintegrator1-params-WERUDAF -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-TQAZEEK -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-C4N3KE7 88.17538504907355 -8.956028115843473 -hiv-omicsintegrator1-params-J5PMCRQ -13.555154138590558 -1.584981265616543 -hiv-omicsintegrator1-params-2NL4RDV -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-OJVVFSK -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-VZM7OSX 90.29056173902705 -15.072464634410562 -hiv-omicsintegrator1-params-UAYBOVK -13.555154138590558 -1.584981265616543 -hiv-omicsintegrator1-params-XJNUGEC -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-5E56FMM -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-BHLRRSP -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-VGIOBOX -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-LIWRFPS -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-UWSVCXO -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-EONPKPH 25.076603162559145 54.4181546653047 -hiv-omicsintegrator1-params-6BGQ7PL -13.542096195174759 -1.5074565576872931 -hiv-omicsintegrator1-params-5I2I6FM -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-XAQM3RR -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-EBEEP6T 81.4502794979121 3.75730527486823 -hiv-omicsintegrator1-params-W2DOD4H -13.582930340432696 -1.715353186024235 -hiv-omicsintegrator1-params-BF65QO6 -13.555154138590558 -1.584981265616543 -hiv-omicsintegrator1-params-XOXO56K -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-4G6HWVJ 88.17538504907355 -8.956028115843473 -hiv-omicsintegrator1-params-UNEWALJ -13.596565988216694 -1.7329228286755658 -hiv-omicsintegrator1-params-Y5XCKB2 -13.555154138590558 -1.584981265616543 -hiv-omicsintegrator1-params-KPIH42T -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-5YCE7NJ 90.1291082757478 -14.879681533431373 -hiv-omicsintegrator1-params-DXTK7ZU -13.596565988216694 -1.7329228286755658 -hiv-omicsintegrator1-params-SHAKIBL -13.555154138590558 -1.584981265616543 -hiv-omicsintegrator1-params-VXGL3EA -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-WCP7GIZ -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-L4IUEVV -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-PMY3CCQ -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-LIECIRU -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-UA2CL6Z 25.076603162559145 54.4181546653047 -hiv-omicsintegrator1-params-CUD2SWJ -13.43746355051825 -1.4092031029738035 -hiv-omicsintegrator1-params-EE47ACK -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-5E3SBY6 -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-NFOUAB6 81.4502794979121 3.75730527486823 -hiv-omicsintegrator1-params-2G7CMNV -13.457245551643418 -1.993512331257163 -hiv-omicsintegrator1-params-422WXNM -13.565238983137323 -1.6800015673844673 -hiv-omicsintegrator1-params-R3TNGIE -13.555154138590558 -1.584981265616543 -hiv-omicsintegrator1-params-VNZUFFN 88.17538504907355 -8.956028115843473 -hiv-omicsintegrator1-params-L7CHKLI -13.510264143409955 -2.0694134113536133 -hiv-omicsintegrator1-params-LWUMKKP -13.565238983137323 -1.6800015673844673 -hiv-omicsintegrator1-params-L2HU4XD -13.555154138590558 -1.584981265616543 -hiv-omicsintegrator1-params-OA2LKJB 90.1291082757478 -14.879681533431373 -hiv-omicsintegrator1-params-I6LVYQ7 -13.510264143409955 -2.0694134113536133 -hiv-omicsintegrator1-params-D7XEWKT -13.565238983137323 -1.6800015673844673 -hiv-omicsintegrator1-params-7M4YEVF -13.555154138590558 -1.584981265616543 -hiv-omicsintegrator1-params-ZZYQSRD -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-WQ6V5PX -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-XQ2C7V7 -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-CML462S -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-ZWKBRYR 25.076603162559145 54.4181546653047 -hiv-omicsintegrator1-params-T77D7QZ -13.324889359467463 -1.3097428182660877 -hiv-omicsintegrator1-params-SWWL7WP -13.542096195174759 -1.5074565576872931 -hiv-omicsintegrator1-params-FYCKMYA -13.581329648119572 -1.5439976955282315 -hiv-omicsintegrator1-params-H766NCA 81.4502794979121 3.75730527486823 -hiv-omicsintegrator1-params-EAX635F -13.345709912731564 -2.628559765355614 -hiv-omicsintegrator1-params-2NKIR7L -13.596675365122344 -1.7337866222493954 -hiv-omicsintegrator1-params-JZPC2XQ -13.550500399421505 -1.6621532672793409 -hiv-omicsintegrator1-params-PI44E6Y 88.17538504907355 -8.956028115843473 -hiv-omicsintegrator1-params-Y3DQROJ -13.539511588037278 -2.9656364554364103 -hiv-omicsintegrator1-params-RCIIWF5 -13.623646142273659 -1.769678978434162 -hiv-omicsintegrator1-params-2NFVB7W -13.550500399421505 -1.6621532672793409 -hiv-omicsintegrator1-params-OWG4JUJ 90.1291082757478 -14.879681533431373 -hiv-omicsintegrator1-params-PQYTDPN -13.518404310809952 -3.1461999950604325 -hiv-omicsintegrator1-params-BS7GMXF -13.623646142273659 -1.769678978434162 -hiv-omicsintegrator1-params-7JTTPPE -13.535406141631153 -1.6442597434311566 diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/omicsintegrator1-pca-variance.txt b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/omicsintegrator1-pca-variance.txt deleted file mode 100644 index 4fd5a72..0000000 --- a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/omicsintegrator1-pca-variance.txt +++ /dev/null @@ -1,2 +0,0 @@ -PC1: 76.14884548402526 -PC2: 9.397399605395258 diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/omicsintegrator1-pca.png b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/omicsintegrator1-pca.png deleted file mode 100644 index 73203f5..0000000 Binary files a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/omicsintegrator1-pca.png and /dev/null differ diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/pca-coordinates.txt b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/pca-coordinates.txt deleted file mode 100644 index 820b45e..0000000 --- a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/pca-coordinates.txt +++ /dev/null @@ -1,101 +0,0 @@ -algorithm PC1 PC2 -hiv-omicsintegrator1-params-NQQFMSW -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-7F2UHHY -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-DLZY2UU -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-F2GW4FM -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-GJJHAWR -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-EKFAHXJ -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-O245LF3 -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-K2C44YG -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-MKUCXSX -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-CXULPPY -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-D2CFK7Y -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-GB464QK -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-QLA7PZM -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-BK5Y6AV -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-E4PGYJE -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-YH53Z7I -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-V6TRFD5 -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-VNZPBKY -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-HXBNO4P -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-OW2ZQVJ -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-UG35EN3 -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-7VVKFFW -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-Y7FVD5Y -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-X7OTY3Z -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-6ZYKM5I 25.076603162559366 54.418154665304584 -hiv-omicsintegrator1-params-LW2V34U -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-5PV5R4M -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-5OAENKB -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-4S6QYO2 81.45027949791229 3.757305274868049 -hiv-omicsintegrator1-params-SUBCPCC -13.555154138590574 -1.5849812656165128 -hiv-omicsintegrator1-params-WERUDAF -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-TQAZEEK -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-C4N3KE7 88.1753850490737 -8.956028115843566 -hiv-omicsintegrator1-params-J5PMCRQ -13.555154138590574 -1.5849812656165128 -hiv-omicsintegrator1-params-2NL4RDV -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-OJVVFSK -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-VZM7OSX 90.2905617390272 -15.072464634410615 -hiv-omicsintegrator1-params-UAYBOVK -13.555154138590574 -1.5849812656165128 -hiv-omicsintegrator1-params-XJNUGEC -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-5E56FMM -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-BHLRRSP -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-VGIOBOX -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-LIWRFPS -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-UWSVCXO -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-EONPKPH 25.076603162559366 54.418154665304584 -hiv-omicsintegrator1-params-6BGQ7PL -13.542096195174775 -1.507456557687263 -hiv-omicsintegrator1-params-5I2I6FM -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-XAQM3RR -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-EBEEP6T 81.45027949791229 3.757305274868049 -hiv-omicsintegrator1-params-W2DOD4H -13.582930340432714 -1.7153531860242044 -hiv-omicsintegrator1-params-BF65QO6 -13.555154138590574 -1.5849812656165128 -hiv-omicsintegrator1-params-XOXO56K -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-4G6HWVJ 88.1753850490737 -8.956028115843566 -hiv-omicsintegrator1-params-UNEWALJ -13.59656598821671 -1.7329228286755347 -hiv-omicsintegrator1-params-Y5XCKB2 -13.555154138590574 -1.5849812656165128 -hiv-omicsintegrator1-params-KPIH42T -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-5YCE7NJ 90.12910827574794 -14.879681533431427 -hiv-omicsintegrator1-params-DXTK7ZU -13.59656598821671 -1.7329228286755347 -hiv-omicsintegrator1-params-SHAKIBL -13.555154138590574 -1.5849812656165128 -hiv-omicsintegrator1-params-VXGL3EA -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-WCP7GIZ -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-L4IUEVV -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-PMY3CCQ -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-LIECIRU -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-UA2CL6Z 25.076603162559366 54.418154665304584 -hiv-omicsintegrator1-params-CUD2SWJ -13.437463550518268 -1.4092031029737733 -hiv-omicsintegrator1-params-EE47ACK -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-5E3SBY6 -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-NFOUAB6 81.45027949791229 3.757305274868049 -hiv-omicsintegrator1-params-2G7CMNV -13.457245551643437 -1.993512331257131 -hiv-omicsintegrator1-params-422WXNM -13.565238983137341 -1.6800015673844362 -hiv-omicsintegrator1-params-R3TNGIE -13.555154138590574 -1.5849812656165128 -hiv-omicsintegrator1-params-VNZUFFN 88.1753850490737 -8.956028115843566 -hiv-omicsintegrator1-params-L7CHKLI -13.510264143409973 -2.0694134113535814 -hiv-omicsintegrator1-params-LWUMKKP -13.565238983137341 -1.6800015673844362 -hiv-omicsintegrator1-params-L2HU4XD -13.555154138590574 -1.5849812656165128 -hiv-omicsintegrator1-params-OA2LKJB 90.12910827574794 -14.879681533431427 -hiv-omicsintegrator1-params-I6LVYQ7 -13.510264143409973 -2.0694134113535814 -hiv-omicsintegrator1-params-D7XEWKT -13.565238983137341 -1.6800015673844362 -hiv-omicsintegrator1-params-7M4YEVF -13.555154138590574 -1.5849812656165128 -hiv-omicsintegrator1-params-ZZYQSRD -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-WQ6V5PX -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-XQ2C7V7 -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-CML462S -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-ZWKBRYR 25.076603162559366 54.418154665304584 -hiv-omicsintegrator1-params-T77D7QZ -13.32488935946748 -1.3097428182660575 -hiv-omicsintegrator1-params-SWWL7WP -13.542096195174775 -1.507456557687263 -hiv-omicsintegrator1-params-FYCKMYA -13.581329648119588 -1.5439976955282013 -hiv-omicsintegrator1-params-H766NCA 81.45027949791229 3.757305274868049 -hiv-omicsintegrator1-params-EAX635F -13.345709912731582 -2.628559765355583 -hiv-omicsintegrator1-params-2NKIR7L -13.596675365122358 -1.7337866222493643 -hiv-omicsintegrator1-params-JZPC2XQ -13.550500399421523 -1.6621532672793107 -hiv-omicsintegrator1-params-PI44E6Y 88.1753850490737 -8.956028115843566 -hiv-omicsintegrator1-params-Y3DQROJ -13.5395115880373 -2.9656364554363774 -hiv-omicsintegrator1-params-RCIIWF5 -13.623646142273675 -1.769678978434131 -hiv-omicsintegrator1-params-2NFVB7W -13.550500399421523 -1.6621532672793107 -hiv-omicsintegrator1-params-OWG4JUJ 90.12910827574794 -14.879681533431427 -hiv-omicsintegrator1-params-PQYTDPN -13.51840431080997 -3.146199995060399 -hiv-omicsintegrator1-params-BS7GMXF -13.623646142273675 -1.769678978434131 -hiv-omicsintegrator1-params-7JTTPPE -13.53540614163117 -1.6442597434311264 diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/pca-variance.txt b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/pca-variance.txt deleted file mode 100644 index d418494..0000000 --- a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/pca-variance.txt +++ /dev/null @@ -1,2 +0,0 @@ -PC1: 76.1488454840256 -PC2: 9.397399605395192 diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/pca.png b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/pca.png deleted file mode 100644 index 531c2d7..0000000 Binary files a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-ml/pca.png and /dev/null differ diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-pathway-summary.txt b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-pathway-summary.txt deleted file mode 100644 index 4ca801c..0000000 --- a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv05-pathway-summary.txt +++ /dev/null @@ -1,101 +0,0 @@ -Name Number of nodes Number of undirected edges Number of connected components Nodes in prize Nodes in sources Nodes in targets -output/hiv-omicsintegrator1-params-2G7CMNV/pathway.txt 51 27 24 51 0 0 -output/hiv-omicsintegrator1-params-2NFVB7W/pathway.txt 8 4 4 8 0 0 -output/hiv-omicsintegrator1-params-2NKIR7L/pathway.txt 21 11 10 21 0 0 -output/hiv-omicsintegrator1-params-2NL4RDV/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-422WXNM/pathway.txt 10 5 5 10 0 0 -output/hiv-omicsintegrator1-params-4G6HWVJ/pathway.txt 1196 1195 1 891 0 0 -output/hiv-omicsintegrator1-params-4S6QYO2/pathway.txt 1126 1125 1 849 0 0 -output/hiv-omicsintegrator1-params-5E3SBY6/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-5E56FMM/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-5I2I6FM/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-5OAENKB/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-5PV5R4M/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-5YCE7NJ/pathway.txt 1217 1216 1 899 0 0 -output/hiv-omicsintegrator1-params-6BGQ7PL/pathway.txt 2 1 1 2 0 0 -output/hiv-omicsintegrator1-params-6ZYKM5I/pathway.txt 536 527 9 380 0 0 -output/hiv-omicsintegrator1-params-7F2UHHY/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-7JTTPPE/pathway.txt 6 3 3 6 0 0 -output/hiv-omicsintegrator1-params-7M4YEVF/pathway.txt 2 1 1 2 0 0 -output/hiv-omicsintegrator1-params-7VVKFFW/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-BF65QO6/pathway.txt 2 1 1 2 0 0 -output/hiv-omicsintegrator1-params-BHLRRSP/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-BK5Y6AV/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-BS7GMXF/pathway.txt 25 13 12 25 0 0 -output/hiv-omicsintegrator1-params-C4N3KE7/pathway.txt 1196 1195 1 891 0 0 -output/hiv-omicsintegrator1-params-CML462S/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-CUD2SWJ/pathway.txt 6 3 3 6 0 0 -output/hiv-omicsintegrator1-params-CXULPPY/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-D2CFK7Y/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-D7XEWKT/pathway.txt 10 5 5 10 0 0 -output/hiv-omicsintegrator1-params-DLZY2UU/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-DXTK7ZU/pathway.txt 21 11 10 21 0 0 -output/hiv-omicsintegrator1-params-E4PGYJE/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-EAX635F/pathway.txt 96 56 40 96 0 0 -output/hiv-omicsintegrator1-params-EBEEP6T/pathway.txt 1126 1125 1 849 0 0 -output/hiv-omicsintegrator1-params-EE47ACK/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-EKFAHXJ/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-EONPKPH/pathway.txt 536 527 9 380 0 0 -output/hiv-omicsintegrator1-params-F2GW4FM/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-FYCKMYA/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-GB464QK/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-GJJHAWR/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-H766NCA/pathway.txt 1126 1125 1 849 0 0 -output/hiv-omicsintegrator1-params-HXBNO4P/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-I6LVYQ7/pathway.txt 59 31 28 59 0 0 -output/hiv-omicsintegrator1-params-J5PMCRQ/pathway.txt 2 1 1 2 0 0 -output/hiv-omicsintegrator1-params-JZPC2XQ/pathway.txt 8 4 4 8 0 0 -output/hiv-omicsintegrator1-params-K2C44YG/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-KPIH42T/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-L2HU4XD/pathway.txt 2 1 1 2 0 0 -output/hiv-omicsintegrator1-params-L4IUEVV/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-L7CHKLI/pathway.txt 59 31 28 59 0 0 -output/hiv-omicsintegrator1-params-LIECIRU/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-LIWRFPS/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-LW2V34U/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-LWUMKKP/pathway.txt 10 5 5 10 0 0 -output/hiv-omicsintegrator1-params-MKUCXSX/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-NFOUAB6/pathway.txt 1126 1125 1 849 0 0 -output/hiv-omicsintegrator1-params-NQQFMSW/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-O245LF3/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-OA2LKJB/pathway.txt 1217 1216 1 899 0 0 -output/hiv-omicsintegrator1-params-OJVVFSK/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-OW2ZQVJ/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-OWG4JUJ/pathway.txt 1217 1216 1 899 0 0 -output/hiv-omicsintegrator1-params-PI44E6Y/pathway.txt 1196 1195 1 891 0 0 -output/hiv-omicsintegrator1-params-PMY3CCQ/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-PQYTDPN/pathway.txt 123 77 46 123 0 0 -output/hiv-omicsintegrator1-params-QLA7PZM/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-R3TNGIE/pathway.txt 2 1 1 2 0 0 -output/hiv-omicsintegrator1-params-RCIIWF5/pathway.txt 25 13 12 25 0 0 -output/hiv-omicsintegrator1-params-SHAKIBL/pathway.txt 2 1 1 2 0 0 -output/hiv-omicsintegrator1-params-SUBCPCC/pathway.txt 2 1 1 2 0 0 -output/hiv-omicsintegrator1-params-SWWL7WP/pathway.txt 2 1 1 2 0 0 -output/hiv-omicsintegrator1-params-T77D7QZ/pathway.txt 12 6 6 12 0 0 -output/hiv-omicsintegrator1-params-TQAZEEK/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-UA2CL6Z/pathway.txt 536 527 9 380 0 0 -output/hiv-omicsintegrator1-params-UAYBOVK/pathway.txt 2 1 1 2 0 0 -output/hiv-omicsintegrator1-params-UG35EN3/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-UNEWALJ/pathway.txt 21 11 10 21 0 0 -output/hiv-omicsintegrator1-params-UWSVCXO/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-V6TRFD5/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-VGIOBOX/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-VNZPBKY/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-VNZUFFN/pathway.txt 1196 1195 1 891 0 0 -output/hiv-omicsintegrator1-params-VXGL3EA/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-VZM7OSX/pathway.txt 1219 1218 1 899 0 0 -output/hiv-omicsintegrator1-params-W2DOD4H/pathway.txt 19 10 9 19 0 0 -output/hiv-omicsintegrator1-params-WCP7GIZ/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-WERUDAF/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-WQ6V5PX/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-X7OTY3Z/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-XAQM3RR/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-XJNUGEC/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-XOXO56K/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-XQ2C7V7/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-Y3DQROJ/pathway.txt 117 71 46 117 0 0 -output/hiv-omicsintegrator1-params-Y5XCKB2/pathway.txt 2 1 1 2 0 0 -output/hiv-omicsintegrator1-params-Y7FVD5Y/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-YH53Z7I/pathway.txt 0 0 0 0 0 0 -output/hiv-omicsintegrator1-params-ZWKBRYR/pathway.txt 536 527 9 380 0 0 -output/hiv-omicsintegrator1-params-ZZYQSRD/pathway.txt 0 0 0 0 0 0 diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-cytoscape.cys b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-cytoscape.cys deleted file mode 100644 index 33d2b90..0000000 Binary files a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-cytoscape.cys and /dev/null differ diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-merged.pickle b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-merged.pickle deleted file mode 100644 index 6c09e8b..0000000 Binary files a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-merged.pickle and /dev/null differ diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/ensemble-pathway.txt b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/ensemble-pathway.txt deleted file mode 100644 index 6ab7aa1..0000000 --- a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/ensemble-pathway.txt +++ /dev/null @@ -1,1101 +0,0 @@ -Node1 Node2 Frequency Direction -1433B_HUMAN FRYL_HUMAN 0.04 U -1433B_HUMAN L7RRS6_HUMAN 0.04 U -1433B_HUMAN PI3R4_HUMAN 0.04 U -1433B_HUMAN WEE1_HUMAN 0.04 U -1433E_HUMAN HDAC4_HUMAN 0.04 U -1433E_HUMAN KIF1C_HUMAN 0.04 U -1433E_HUMAN L7RRS6_HUMAN 0.04 U -1433G_HUMAN 3BP5L_HUMAN 0.04 U -1433G_HUMAN CCNY_HUMAN 0.04 U -1433G_HUMAN CDK17_HUMAN 0.04 U -1433G_HUMAN CLAP1_HUMAN 0.04 U -1433G_HUMAN CLK3_HUMAN 0.04 U -1433G_HUMAN DYR1A_HUMAN 0.04 U -1433G_HUMAN EDC3_HUMAN 0.04 U -1433G_HUMAN L7RRS6_HUMAN 0.04 U -1433G_HUMAN LC7L2_HUMAN 0.04 U -1433G_HUMAN LIPB1_HUMAN 0.04 U -1433G_HUMAN MFAP1_HUMAN 0.04 U -1433G_HUMAN MYCB2_HUMAN 0.04 U -1433G_HUMAN NOLC1_HUMAN 0.04 U -1433G_HUMAN OSBL3_HUMAN 0.04 U -1433G_HUMAN PR38B_HUMAN 0.04 U -1433G_HUMAN PRP19_HUMAN 0.04 U -1433G_HUMAN SON_HUMAN 0.04 U -1433G_HUMAN SRS10_HUMAN 0.04 U -1433G_HUMAN TR150_HUMAN 0.04 U -1433G_HUMAN TRA2A_HUMAN 0.04 U -1433G_HUMAN ZBT21_HUMAN 0.04 U -1433T_HUMAN CBL_HUMAN 0.04 U -1433T_HUMAN KLC2_HUMAN 0.04 U -1433T_HUMAN MPRIP_HUMAN 0.04 U -2A5A_HUMAN 2AAB_HUMAN 0.04 U -2A5E_HUMAN 2AAB_HUMAN 0.04 U -2AAB_HUMAN B3KUN1_HUMAN 0.04 U -4EBP1_HUMAN IF4E_HUMAN 0.04 U -4EBP1_HUMAN RPTOR_HUMAN 0.04 U -5NTC_HUMAN FXR2_HUMAN 0.04 U -A2ABF8_HUMAN CBX5_HUMAN 0.04 U -A2RUM7_HUMAN MDM2_HUMAN 0.04 U -A2RUM7_HUMAN N0E4C7_HUMAN 0.04 U -A4QPA9_HUMAN L7RRS6_HUMAN 0.04 U -A4QPA9_HUMAN M3K1_HUMAN 0.04 U -A4QPA9_HUMAN MK01_HUMAN 0.04 U -A8K3Y2_HUMAN M3K4_HUMAN 0.04 U -A8K3Y2_HUMAN M3K7_HUMAN 0.04 U -A8K3Y2_HUMAN MK14_HUMAN 0.04 U -AAPK1_HUMAN F263_HUMAN 0.04 D -AAPK1_HUMAN GBF1_HUMAN 0.04 D -AAPK1_HUMAN HS90A_HUMAN 0.04 U -AAPK1_HUMAN TBCD1_HUMAN 0.04 D -ABL1_HUMAN ABL2_HUMAN 0.04 D -ABL1_HUMAN L7RT18_HUMAN 0.04 U -ABL1_HUMAN PSA7_HUMAN 0.04 D -ACTB_HUMAN EMD_HUMAN 0.04 U -ACTS_HUMAN COF1_HUMAN 0.04 U -ACTS_HUMAN GELS_HUMAN 0.04 U -ADNP_HUMAN CBX5_HUMAN 0.04 U -ADRM1_HUMAN UBQL1_HUMAN 0.04 U -AFF4_HUMAN CDK9_HUMAN 0.04 U -AGFG1_HUMAN B7Z240_HUMAN 0.04 U -AKA10_HUMAN B2R5T5_HUMAN 0.04 U -AKA11_HUMAN GSK3B_HUMAN 0.04 U -AKAP1_HUMAN B2R5T5_HUMAN 0.04 U -AKP8L_HUMAN LAP2B_HUMAN 0.08 U -AKT1_HUMAN ACAP1_HUMAN 0.04 D -AKT1_HUMAN ACINU_HUMAN 0.04 D -AKT1_HUMAN CHSP1_HUMAN 0.04 D -AKT1_HUMAN FYV1_HUMAN 0.04 D -AKT1_HUMAN GRDN_HUMAN 0.04 D -AKT1_HUMAN MTOR_HUMAN 0.04 U -AKT1_HUMAN PALLD_HUMAN 0.04 D -AKT1_HUMAN PDCD4_HUMAN 0.04 D -AKT1_HUMAN PEA15_HUMAN 0.04 D -AKT1_HUMAN PHF20_HUMAN 0.04 D -AKT1_HUMAN PRPK_HUMAN 0.04 D -AKT1_HUMAN ROA1_HUMAN 0.04 D -AKT1_HUMAN TBCD4_HUMAN 0.04 D -AKT1_HUMAN TERA_HUMAN 0.04 D -AKT1_HUMAN TRMB_HUMAN 0.04 D -AKT1_HUMAN WNK1_HUMAN 0.04 D -AKT1_HUMAN ZYX_HUMAN 0.04 D -AKT2_HUMAN DP13A_HUMAN 0.04 U -AMFR_HUMAN INSI1_HUMAN 0.04 U -AMFR_HUMAN TERA_HUMAN 0.04 U -AMFR_HUMAN UB2G2_HUMAN 0.04 U -AMRA1_HUMAN BECN1_HUMAN 0.04 U -ANKH1_HUMAN IF4E_HUMAN 0.04 U -ANKZ1_HUMAN TERA_HUMAN 0.04 U -APC1_HUMAN B4DL80_HUMAN 0.04 U -APC_HUMAN CTNB1_HUMAN 0.04 U -ARF4_HUMAN EGFR_HUMAN 0.04 U -ARHG7_HUMAN GIT1_HUMAN 0.04 U -ARHG7_HUMAN PAK1_HUMAN 0.04 U -ARHGC_HUMAN RHOA_HUMAN 0.04 U -ARI2_HUMAN UB2L3_HUMAN 0.04 U -ARID2_HUMAN SMCE1_HUMAN 0.04 U -ARNT_HUMAN HIF1A_HUMAN 0.04 U -ASF1A_HUMAN B2R4R0_HUMAN 0.04 U -ASPP2_HUMAN K7PPA8_HUMAN 0.04 U -ASXL2_HUMAN BAP1_HUMAN 0.04 U -AT7L3_HUMAN UBP22_HUMAN 0.04 U -ATAD2_HUMAN SUMO2_HUMAN 0.04 U -ATF2_HUMAN JUN_HUMAN 0.04 U -ATM_HUMAN BAG6_HUMAN 0.04 D -ATM_HUMAN BRCA1_HUMAN 0.04 D -ATM_HUMAN DBF4A_HUMAN 0.04 D -ATM_HUMAN DYRK2_HUMAN 0.04 D -ATM_HUMAN HUWE1_HUMAN 0.04 D -ATM_HUMAN PRKDC_HUMAN 0.04 D -ATM_HUMAN RASF1_HUMAN 0.04 D -ATM_HUMAN RIF1_HUMAN 0.04 D -ATM_HUMAN SMC1A_HUMAN 0.04 D -ATM_HUMAN TAOK3_HUMAN 0.04 D -ATM_HUMAN UBR5_HUMAN 0.04 D -ATN1_HUMAN RERE_HUMAN 0.04 U -ATN1_HUMAN SIAH1_HUMAN 0.04 U -ATPG_HUMAN EGFR_HUMAN 0.04 U -AUP1_HUMAN UB2G2_HUMAN 0.04 U -AURKB_HUMAN ATM_HUMAN 0.04 D -AURKB_HUMAN DSN1_HUMAN 0.04 D -AURKB_HUMAN H33_HUMAN 0.04 D -AURKB_HUMAN HMGN2_HUMAN 0.04 D -AURKB_HUMAN J3KNL2_HUMAN 0.04 U -AURKB_HUMAN MBB1A_HUMAN 0.04 D -AURKB_HUMAN PARD3_HUMAN 0.04 D -AXIN1_HUMAN CTNB1_HUMAN 0.04 U -AXIN1_HUMAN GSK3B_HUMAN 0.04 U -B0LPE5_HUMAN B3KUN1_HUMAN 0.04 U -B0LPE5_HUMAN GSK3B_HUMAN 0.04 U -B0LPE5_HUMAN MDM2_HUMAN 0.04 U -B0LPE5_HUMAN MTOR_HUMAN 0.04 U -B0QZ35_HUMAN P53_HUMAN 0.04 U -B0QZ35_HUMAN UBP22_HUMAN 0.04 U -B1AHB0_HUMAN B4DWW4_HUMAN 0.04 U -B1AHB0_HUMAN MCM2_HUMAN 0.04 U -B1AHB0_HUMAN MCM3_HUMAN 0.04 U -B2R4R0_HUMAN BPTF_HUMAN 0.04 U -B2R4R0_HUMAN CENPA_HUMAN 0.04 U -B2R4R0_HUMAN EP300_HUMAN 0.04 U -B2R4R0_HUMAN KAT5_HUMAN 0.04 U -B2R5T5_HUMAN BIG2_HUMAN 0.04 U -B2R5T5_HUMAN KAPCA_HUMAN 0.04 U -B2RBV7_HUMAN DDB1_HUMAN 0.04 U -B2RBV7_HUMAN PHIP_HUMAN 0.04 U -B2RBV7_HUMAN RBX1_HUMAN 0.04 U -B3KTM8_HUMAN SIN3B_HUMAN 0.04 U -B3KUN1_HUMAN IGBP1_HUMAN 0.04 U -B4DL80_HUMAN CDC20_HUMAN 0.04 U -B4DL80_HUMAN CDC26_HUMAN 0.04 U -B4DP61_HUMAN COIL_HUMAN 0.04 U -B4DP61_HUMAN DDX20_HUMAN 0.04 U -B4DP61_HUMAN P53_HUMAN 0.04 U -B4DP61_HUMAN SMD1_HUMAN 0.04 U -B4DQB3_HUMAN NCOA1_HUMAN 0.04 U -B4DQB3_HUMAN SND1_HUMAN 0.04 U -B4DWW4_HUMAN GANP_HUMAN 0.04 U -B4E1U9_HUMAN J3KN59_HUMAN 0.04 U -B4E1U9_HUMAN PAK2_HUMAN 0.04 U -B4E1U9_HUMAN PAK4_HUMAN 0.04 U -B4E1U9_HUMAN WASP_HUMAN 0.04 U -B7Z240_HUMAN EPN1_HUMAN 0.04 U -B7Z240_HUMAN HGS_HUMAN 0.04 U -B7Z3D6_HUMAN CCNB1_HUMAN 0.04 U -B7Z3D6_HUMAN H15_HUMAN 0.04 U -B7Z3D6_HUMAN RB_HUMAN 0.04 U -BAD_HUMAN BCL2_HUMAN 0.04 U -BAD_HUMAN D0PNI1_HUMAN 0.04 U -BAP1_HUMAN FOXK1_HUMAN 0.04 U -BAP1_HUMAN HCFC1_HUMAN 0.04 U -BAZ1A_HUMAN SMCA5_HUMAN 0.04 U -BAZ1A_HUMAN SUMO2_HUMAN 0.04 U -BAZ1B_HUMAN SMCA5_HUMAN 0.04 U -BAZ2A_HUMAN SMCA5_HUMAN 0.04 U -BCL2_HUMAN BECN1_HUMAN 0.04 U -BCL2_HUMAN BNIP3_HUMAN 0.04 U -BCL2_HUMAN FKBP8_HUMAN 0.04 U -BCL6_HUMAN BCOR_HUMAN 0.04 U -BCL6_HUMAN HDAC1_HUMAN 0.04 U -BCL9_HUMAN CTNB1_HUMAN 0.04 U -BCR_HUMAN GRB2_HUMAN 0.04 U -BECN1_HUMAN UVRAG_HUMAN 0.04 U -BICD1_HUMAN GSK3B_HUMAN 0.04 U -BIRC5_HUMAN BOREA_HUMAN 0.04 U -BLK_HUMAN CBL_HUMAN 0.04 U -BLM_HUMAN MLH1_HUMAN 0.04 U -BLM_HUMAN P53_HUMAN 0.04 U -BLM_HUMAN RMI1_HUMAN 0.04 U -BMI1_HUMAN CBX4_HUMAN 0.04 U -BMI1_HUMAN CBX8_HUMAN 0.04 U -BMI1_HUMAN RING1_HUMAN 0.04 U -BNI3L_HUMAN BNIP3_HUMAN 0.04 U -BNIP3_HUMAN TMM11_HUMAN 0.04 U -BOREA_HUMAN INCE_HUMAN 0.08 U -BRAP_HUMAN RASH_HUMAN 0.04 U -BRCA1_HUMAN MYC_HUMAN 0.04 U -BRPF1_HUMAN KAT6A_HUMAN 0.2 U -BTF3_HUMAN G4XH65_HUMAN 0.04 U -C1QBP_HUMAN KPCA_HUMAN 0.04 U -C1QBP_HUMAN KPCD1_HUMAN 0.04 U -C1QBP_HUMAN KPCD_HUMAN 0.04 U -C8AP2_HUMAN SUMO2_HUMAN 0.04 U -CADH1_HUMAN CTNB1_HUMAN 0.04 U -CADH1_HUMAN HAKAI_HUMAN 0.04 U -CAF1A_HUMAN PCNA_HUMAN 0.04 U -CAF1B_HUMAN H31_HUMAN 0.04 U -CALX_HUMAN CFTR_HUMAN 0.04 U -CBL_HUMAN CD2AP_HUMAN 0.04 U -CBL_HUMAN CRKL_HUMAN 0.04 U -CBL_HUMAN EGFR_HUMAN 0.04 U -CBL_HUMAN GRB2_HUMAN 0.04 U -CBL_HUMAN L7RT18_HUMAN 0.04 U -CBL_HUMAN NCK1_HUMAN 0.04 U -CBL_HUMAN PLCG1_HUMAN 0.04 U -CBL_HUMAN UB2D2_HUMAN 0.04 U -CBP_HUMAN IRF3_HUMAN 0.04 U -CBP_HUMAN STAT1_HUMAN 0.04 U -CBX4_HUMAN CTBP1_HUMAN 0.04 U -CBX5_HUMAN H31_HUMAN 0.04 U -CBX5_HUMAN LBR_HUMAN 0.04 U -CBX5_HUMAN NIPBL_HUMAN 0.04 U -CBX5_HUMAN TIF1B_HUMAN 0.04 U -CBX8_HUMAN MOV10_HUMAN 0.04 U -CCAR2_HUMAN SIR1_HUMAN 0.04 U -CCNB1_HUMAN CDC20_HUMAN 0.04 U -CCND3_HUMAN CDK4_HUMAN 0.04 U -CCNE1_HUMAN CDN1A_HUMAN 0.04 U -CCNE1_HUMAN FBXW7_HUMAN 0.04 U -CCNT1_HUMAN CDK9_HUMAN 0.04 U -CCNT1_HUMAN MYC_HUMAN 0.04 U -CD2A2_HUMAN CDK4_HUMAN 0.04 U -CD2A2_HUMAN MDM2_HUMAN 0.04 U -CD2A2_HUMAN TRIPC_HUMAN 0.04 U -CD2AP_HUMAN CD2_HUMAN 0.04 U -CD2AP_HUMAN MB12A_HUMAN 0.04 U -CD2B2_HUMAN CD2_HUMAN 0.04 U -CD2B2_HUMAN PRP6_HUMAN 0.04 U -CD3E_HUMAN NCK1_HUMAN 0.04 U -CD3Z_HUMAN ZAP70_HUMAN 0.04 U -CDAN1_HUMAN PCNA_HUMAN 0.04 U -CDC20_HUMAN PTTG1_HUMAN 0.04 U -CDC42_HUMAN GDIR1_HUMAN 0.04 U -CDC42_HUMAN PAK1_HUMAN 0.04 U -CDC42_HUMAN WASP_HUMAN 0.04 U -CDC5L_HUMAN PRP19_HUMAN 0.04 U -CDC5L_HUMAN TTF2_HUMAN 0.04 U -CDC6_HUMAN ORC1_HUMAN 0.04 U -CDC73_HUMAN CTNB1_HUMAN 0.04 U -CDC73_HUMAN CTR9_HUMAN 0.04 U -CDC73_HUMAN LEO1_HUMAN 0.04 U -CDC7_HUMAN DBF4A_HUMAN 0.04 U -CDC7_HUMAN MCM2_HUMAN 0.04 D -CDC7_HUMAN PSIP1_HUMAN 0.04 D -CDK1_HUMAN CND3_HUMAN 0.04 D -CDK1_HUMAN DDX3X_HUMAN 0.04 D -CDK1_HUMAN DLGP5_HUMAN 0.04 D -CDK1_HUMAN FOXK2_HUMAN 0.04 D -CDK1_HUMAN MAP4_HUMAN 0.04 D -CDK1_HUMAN MK06_HUMAN 0.04 D -CDK1_HUMAN MPLKI_HUMAN 0.04 D -CDK1_HUMAN NPM_HUMAN 0.04 D -CDK1_HUMAN NUP98_HUMAN 0.04 D -CDK1_HUMAN NUSAP_HUMAN 0.04 D -CDK2_HUMAN ARI4A_HUMAN 0.04 D -CDK2_HUMAN ASHWN_HUMAN 0.04 D -CDK2_HUMAN BAP18_HUMAN 0.04 D -CDK2_HUMAN BD1L1_HUMAN 0.04 D -CDK2_HUMAN CDC6_HUMAN 0.04 D -CDK2_HUMAN CI040_HUMAN 0.04 D -CDK2_HUMAN DNLI1_HUMAN 0.04 D -CDK2_HUMAN DNLI3_HUMAN 0.04 D -CDK2_HUMAN H10_HUMAN 0.04 U -CDK2_HUMAN H15_HUMAN 0.04 U -CDK2_HUMAN HIRA_HUMAN 0.04 D -CDK2_HUMAN MILK1_HUMAN 0.04 D -CDK2_HUMAN NPAT_HUMAN 0.04 D -CDK2_HUMAN NU133_HUMAN 0.04 D -CDK2_HUMAN PB1_HUMAN 0.04 D -CDK2_HUMAN PRP31_HUMAN 0.04 D -CDK2_HUMAN PTN2_HUMAN 0.04 D -CDK2_HUMAN TCOF_HUMAN 0.04 D -CDK4_HUMAN CDN1A_HUMAN 0.04 U -CDK9_HUMAN DHX30_HUMAN 0.04 U -CDK9_HUMAN ELL2_HUMAN 0.04 U -CDK9_HUMAN RPB1_HUMAN 0.04 D -CDN1A_HUMAN PCNA_HUMAN 0.04 U -CDT1_HUMAN PCNA_HUMAN 0.04 U -CENPA_HUMAN HJURP_HUMAN 0.04 U -CEP55_HUMAN TS101_HUMAN 0.04 U -CEP72_HUMAN PCM1_HUMAN 0.2 U -CFTR_HUMAN NHRF1_HUMAN 0.04 U -CHAP1_HUMAN SUMO2_HUMAN 0.04 U -CHD3_HUMAN SUMO2_HUMAN 0.04 U -CHD4_HUMAN HDAC1_HUMAN 0.04 U -CHERP_HUMAN SNR27_HUMAN 0.04 U -CHIP_HUMAN HS90A_HUMAN 0.04 U -CHIP_HUMAN HSP74_HUMAN 0.04 U -CHK1_HUMAN 2A5D_HUMAN 0.04 D -CHK1_HUMAN AURKB_HUMAN 0.04 D -CHK1_HUMAN CLSPN_HUMAN 0.04 D -CHK1_HUMAN MPIP1_HUMAN 0.04 D -CHK1_HUMAN P53_HUMAN 0.04 D -CIR1_HUMAN SRSF2_HUMAN 0.04 U -CLK4_HUMAN UBL5_HUMAN 0.2 U -CND1_HUMAN CND3_HUMAN 0.1 U -CND2_HUMAN CND3_HUMAN 0.12 U -CND3_HUMAN SMC4_HUMAN 0.04 U -CNOT2_HUMAN CNOT3_HUMAN 0.08 U -COIL_HUMAN VRK1_HUMAN 0.04 U -COMD1_HUMAN COMD6_HUMAN 0.04 U -COMD1_HUMAN CUL2_HUMAN 0.04 U -CPSF5_HUMAN RLA1_HUMAN 0.04 U -CSK21_HUMAN AN32B_HUMAN 0.04 D -CSK21_HUMAN CD5_HUMAN 0.04 D -CSK21_HUMAN CTDP1_HUMAN 0.04 D -CSK21_HUMAN EF1B_HUMAN 0.04 U -CSK21_HUMAN HIRP3_HUMAN 0.04 U -CSK21_HUMAN HMGN1_HUMAN 0.04 D -CSK21_HUMAN IKBA_HUMAN 0.04 D -CSK21_HUMAN LA_HUMAN 0.04 D -CSK21_HUMAN MRP1_HUMAN 0.04 D -CSK21_HUMAN N0E4C7_HUMAN 0.04 U -CSK21_HUMAN PRPF3_HUMAN 0.04 D -CSK21_HUMAN RNPS1_HUMAN 0.04 D -CSK21_HUMAN ROA2_HUMAN 0.04 U -CSK21_HUMAN RRN3_HUMAN 0.04 D -CSN1_HUMAN CSN3_HUMAN 0.04 U -CSN3_HUMAN CSN5_HUMAN 0.04 U -CSN5_HUMAN CUL1_HUMAN 0.04 U -CTBP1_HUMAN HDAC1_HUMAN 0.04 U -CTBP1_HUMAN LCOR_HUMAN 0.04 U -CTBP1_HUMAN ZEB1_HUMAN 0.04 U -CTCF_HUMAN SUMO2_HUMAN 0.04 U -CTNB1_HUMAN HINT1_HUMAN 0.04 U -CTNB1_HUMAN PSN1_HUMAN 0.04 U -CTRO_HUMAN RHOA_HUMAN 0.04 U -CUL1_HUMAN RBX1_HUMAN 0.04 U -CUL2_HUMAN VHL_HUMAN 0.04 U -CUL3_HUMAN KCTD5_HUMAN 0.04 U -CUL3_HUMAN KEAP1_HUMAN 0.04 U -CUL3_HUMAN SHKB1_HUMAN 0.04 U -CUL4A_HUMAN DDB1_HUMAN 0.04 U -CYBP_HUMAN SIAH1_HUMAN 0.04 U -D0PNI1_HUMAN L7RRS6_HUMAN 0.04 U -D0PNI1_HUMAN MPIP2_HUMAN 0.04 U -D0PNI1_HUMAN RGS3_HUMAN 0.04 U -D0PNI1_HUMAN TSC2_HUMAN 0.04 U -D0PNI1_HUMAN VIME_HUMAN 0.04 U -DAXX_HUMAN ETS1_HUMAN 0.04 U -DAXX_HUMAN MCRS1_HUMAN 0.04 U -DAXX_HUMAN MDM2_HUMAN 0.04 U -DCAF5_HUMAN DDB1_HUMAN 0.04 U -DCP1A_HUMAN DCP2_HUMAN 0.08 U -DCP1A_HUMAN RENT1_HUMAN 0.04 U -DCP1B_HUMAN DCP2_HUMAN 0.08 U -DCP2_HUMAN EDC4_HUMAN 0.08 U -DDA1_HUMAN DDB1_HUMAN 0.04 U -DDX21_HUMAN JUN_HUMAN 0.04 U -DHX15_HUMAN RBM5_HUMAN 0.04 U -DMAP1_HUMAN RMP_HUMAN 0.04 U -DMAP1_HUMAN TS101_HUMAN 0.04 U -DNM3B_HUMAN DNMT1_HUMAN 0.04 U -DNMT1_HUMAN PCNA_HUMAN 0.04 U -DNMT1_HUMAN UHRF1_HUMAN 0.04 U -DOCK2_HUMAN RAC2_HUMAN 0.15 U -DOK2_HUMAN NCK1_HUMAN 0.04 U -DP13A_HUMAN HDAC2_HUMAN 0.04 U -DP13A_HUMAN RAB5A_HUMAN 0.04 U -DPOE1_HUMAN PCNA_HUMAN 0.04 U -DTX3L_HUMAN UB2D2_HUMAN 0.04 U -DX39B_HUMAN THOC5_HUMAN 0.04 U -DYR1A_HUMAN SF3B1_HUMAN 0.04 D -DYRK2_HUMAN KTNA1_HUMAN 0.04 D -E2F1_HUMAN RBL1_HUMAN 0.04 U -E2F1_HUMAN RB_HUMAN 0.04 U -E2F1_HUMAN SP2_HUMAN 0.04 U -E2F1_HUMAN TFDP2_HUMAN 0.04 U -E2F2_HUMAN RB_HUMAN 0.04 U -E2F3_HUMAN RB_HUMAN 0.04 U -E9KL35_HUMAN LAR4B_HUMAN 0.04 U -E9KL35_HUMAN SRC_HUMAN 0.04 U -E9KL35_HUMAN TYK2_HUMAN 0.04 U -EDF1_HUMAN TBP_HUMAN 0.04 U -EF1B_HUMAN EF1G_HUMAN 0.04 U -EGFR_HUMAN HGS_HUMAN 0.04 U -EGFR_HUMAN NCK2_HUMAN 0.04 U -EGFR_HUMAN PTN1_HUMAN 0.04 D -EGFR_HUMAN SH3L1_HUMAN 0.04 U -EGFR_HUMAN STA5B_HUMAN 0.04 U -EIF3A_HUMAN EIF3C_HUMAN 0.04 U -EIF3A_HUMAN EIF3F_HUMAN 0.04 U -EIF3A_HUMAN IF4B_HUMAN 0.04 U -EIF3A_HUMAN RENT1_HUMAN 0.04 U -EIF3F_HUMAN EIF3M_HUMAN 0.04 U -ELF1_HUMAN SP1_HUMAN 0.04 U -ELOA1_HUMAN ELOB_HUMAN 0.04 U -ELOB_HUMAN VHL_HUMAN 0.04 U -EMD_HUMAN LMNA_HUMAN 0.04 U -EMD_HUMAN YTDC1_HUMAN 0.04 U -EP300_HUMAN G4XH65_HUMAN 0.04 U -EP300_HUMAN H31_HUMAN 0.04 U -EP300_HUMAN HIF1A_HUMAN 0.04 U -EP300_HUMAN JMY_HUMAN 0.04 U -EP300_HUMAN JUN_HUMAN 0.04 U -EP300_HUMAN NP1L1_HUMAN 0.04 U -EP300_HUMAN P53_HUMAN 0.04 U -EP300_HUMAN SMAD3_HUMAN 0.04 U -EP400_HUMAN KAT5_HUMAN 0.04 U -ERBB2_HUMAN DOCK7_HUMAN 0.04 D -ERBB2_HUMAN HS90A_HUMAN 0.04 U -EXOS5_HUMAN EXOSX_HUMAN 0.04 U -EXOS5_HUMAN PO210_HUMAN 0.04 U -EXOS5_HUMAN SFPQ_HUMAN 0.04 U -FADD_HUMAN RIPK1_HUMAN 0.04 U -FADD_HUMAN TNR6_HUMAN 0.04 U -FBXW7_HUMAN NOTC1_HUMAN 0.04 U -FEN1_HUMAN PCNA_HUMAN 0.04 U -FEN1_HUMAN WRN_HUMAN 0.04 U -FINC_HUMAN TSP1_HUMAN 0.04 U -FKBP4_HUMAN HS90A_HUMAN 0.04 U -FLII_HUMAN LRRF1_HUMAN 0.05 U -FNBP4_HUMAN KHDR1_HUMAN 0.04 U -FOSL1_HUMAN JUN_HUMAN 0.04 U -FOSL1_HUMAN USF1_HUMAN 0.04 U -FXR1_HUMAN FXR2_HUMAN 0.04 U -FYN_HUMAN AGAP2_HUMAN 0.04 D -FYN_HUMAN ITPR1_HUMAN 0.04 D -FYN_HUMAN KHDR1_HUMAN 0.04 U -G45IP_HUMAN GA45G_HUMAN 0.04 U -G4XH65_HUMAN MED1_HUMAN 0.04 U -G4XH65_HUMAN NCOA1_HUMAN 0.04 U -G4XH65_HUMAN NCOA2_HUMAN 0.04 U -G4XH65_HUMAN NCOA3_HUMAN 0.04 U -G4XH65_HUMAN PHB2_HUMAN 0.04 U -G4XH65_HUMAN SAFB1_HUMAN 0.04 U -G4XH65_HUMAN SRC_HUMAN 0.04 U -G4XH65_HUMAN TADA3_HUMAN 0.04 U -G4XH65_HUMAN TDIF2_HUMAN 0.04 U -G4XH65_HUMAN TRAM1_HUMAN 0.04 U -GA45G_HUMAN PCNA_HUMAN 0.04 U -GA45G_HUMAN UT14A_HUMAN 0.04 U -GBRL2_HUMAN NIPS2_HUMAN 0.04 U -GBRL2_HUMAN SQSTM_HUMAN 0.04 U -GDIR1_HUMAN RAC2_HUMAN 0.04 U -GDIR1_HUMAN RHOA_HUMAN 0.04 U -GGA3_HUMAN RABE1_HUMAN 0.04 U -GRAP2_HUMAN LCP2_HUMAN 0.12 U -GSE1_HUMAN RCOR3_HUMAN 0.04 U -GSK3B_HUMAN CLAP2_HUMAN 0.04 D -GSK3B_HUMAN IPP2_HUMAN 0.04 D -GSK3B_HUMAN SPAG5_HUMAN 0.04 D -H12_HUMAN SUMO2_HUMAN 0.04 U -H13_HUMAN SUMO1_HUMAN 0.04 U -H2AX_HUMAN MDC1_HUMAN 0.04 U -H2AX_HUMAN TP53B_HUMAN 0.04 U -H31_HUMAN WDR5_HUMAN 0.04 U -H32_HUMAN UHRF1_HUMAN 0.04 U -HCFC1_HUMAN OGT1_HUMAN 0.04 U -HCFC1_HUMAN WDR5_HUMAN 0.04 U -HCK_HUMAN ELMO1_HUMAN 0.04 D -HCK_HUMAN WASP_HUMAN 0.04 U -HDAC1_HUMAN HDAC2_HUMAN 0.04 U -HDAC1_HUMAN KDM1A_HUMAN 0.04 U -HDAC1_HUMAN MTA2_HUMAN 0.04 U -HDAC1_HUMAN NSD2_HUMAN 0.04 U -HDAC1_HUMAN P66A_HUMAN 0.04 U -HDAC1_HUMAN P66B_HUMAN 0.04 U -HDAC1_HUMAN RB_HUMAN 0.04 U -HDAC1_HUMAN SIN3A_HUMAN 0.04 U -HDAC1_HUMAN SIN3B_HUMAN 0.04 U -HDAC1_HUMAN SP1_HUMAN 0.04 U -HDAC4_HUMAN MEF2D_HUMAN 0.04 U -HERC2_HUMAN RNF8_HUMAN 0.05 U -HGS_HUMAN TS101_HUMAN 0.04 U -HIF1A_HUMAN HS90A_HUMAN 0.04 U -HIF1A_HUMAN VHL_HUMAN 0.04 U -HIRA_HUMAN UBN1_HUMAN 0.04 U -HMGA1_HUMAN SP1_HUMAN 0.04 U -HNRH3_HUMAN ROA1_HUMAN 0.04 U -HNRPF_HUMAN SUMO1_HUMAN 0.04 U -HNRPK_HUMAN RBM42_HUMAN 0.04 U -HNRPK_HUMAN RBMX_HUMAN 0.04 U -HP1B3_HUMAN SUMO2_HUMAN 0.04 U -HS90A_HUMAN HS90B_HUMAN 0.04 U -HS90A_HUMAN HSF1_HUMAN 0.04 U -HSF1_HUMAN SYMPK_HUMAN 0.04 U -HSP74_HUMAN SODC_HUMAN 0.04 U -I2BPL_HUMAN SUMO2_HUMAN 0.04 U -ICLN_HUMAN SMD1_HUMAN 0.04 U -IF16_HUMAN K7PPA8_HUMAN 0.04 U -IF4E_HUMAN IF4G1_HUMAN 0.04 U -IGBP1_HUMAN PP4C_HUMAN 0.04 U -IKBA_HUMAN NFKB1_HUMAN 0.04 U -IKKA_HUMAN IKKB_HUMAN 0.04 U -IKKA_HUMAN NEMO_HUMAN 0.04 U -IKKA_HUMAN TRAF2_HUMAN 0.04 U -IKKB_HUMAN CYLD_HUMAN 0.04 D -IKKB_HUMAN DOK1_HUMAN 0.04 D -IMA1_HUMAN IMB1_HUMAN 0.04 U -IMB1_HUMAN RAN_HUMAN 0.04 U -INSI1_HUMAN PGRC1_HUMAN 0.04 U -INSI1_HUMAN SCAP_HUMAN 0.04 U -INT12_HUMAN SUMO2_HUMAN 0.04 U -IRAK1_HUMAN Q6FIE9_HUMAN 0.04 U -IRAK1_HUMAN TRAF6_HUMAN 0.04 U -K7PPA8_HUMAN MDM2_HUMAN 0.04 U -K7PPA8_HUMAN NOC2L_HUMAN 0.04 U -K7PPA8_HUMAN PPIF_HUMAN 0.04 U -K7PPA8_HUMAN SIR1_HUMAN 0.04 U -K7PPA8_HUMAN TOPK_HUMAN 0.04 U -KAPCA_HUMAN AKP13_HUMAN 0.04 D -KAPCA_HUMAN CBX3_HUMAN 0.04 D -KAPCA_HUMAN CDK16_HUMAN 0.04 D -KAPCA_HUMAN CFTR_HUMAN 0.04 D -KAPCA_HUMAN GDIR1_HUMAN 0.04 D -KAPCA_HUMAN GRP2_HUMAN 0.04 D -KAPCA_HUMAN H14_HUMAN 0.04 D -KAPCA_HUMAN KC1A_HUMAN 0.04 D -KAPCA_HUMAN LASP1_HUMAN 0.04 D -KAPCA_HUMAN NDE1_HUMAN 0.04 D -KAPCA_HUMAN NFAC1_HUMAN 0.04 D -KAPCA_HUMAN PTBP1_HUMAN 0.04 D -KAPCA_HUMAN PTN7_HUMAN 0.04 D -KAPCA_HUMAN PYR1_HUMAN 0.04 D -KAPCA_HUMAN SUN2_HUMAN 0.04 D -KAT6A_HUMAN RUNX1_HUMAN 0.04 U -KC1A_HUMAN NFAC3_HUMAN 0.04 D -KC1A_HUMAN TADBP_HUMAN 0.04 D -KC1D_HUMAN DVL2_HUMAN 0.04 D -KC1D_HUMAN MDM2_HUMAN 0.04 D -KCC4_HUMAN HNRPL_HUMAN 0.04 D -KDM1A_HUMAN RCOR3_HUMAN 0.04 U -KDM1A_HUMAN ZN217_HUMAN 0.04 U -KEAP1_HUMAN SQSTM_HUMAN 0.04 U -KEAP1_HUMAN T22D4_HUMAN 0.04 U -KHDR1_HUMAN LCK_HUMAN 0.04 U -KHDR1_HUMAN SRC_HUMAN 0.04 U -KHDR1_HUMAN WBP4_HUMAN 0.04 U -KIF22_HUMAN SIAH1_HUMAN 0.04 U -KLF10_HUMAN SP1_HUMAN 0.04 U -KMT2A_HUMAN MEN1_HUMAN 0.04 U -KMT2A_HUMAN WDR5_HUMAN 0.04 U -KMT2B_HUMAN WDR5_HUMAN 0.04 U -KPCA_HUMAN CD3G_HUMAN 0.04 D -KPCA_HUMAN COF1_HUMAN 0.04 D -KPCA_HUMAN LRP1_HUMAN 0.04 D -KPCA_HUMAN MARCS_HUMAN 0.04 D -KPCA_HUMAN SRF_HUMAN 0.04 D -KPCA_HUMAN THOC5_HUMAN 0.04 D -KPCA_HUMAN VTNC_HUMAN 0.04 D -KPCD1_HUMAN ARFP1_HUMAN 0.04 D -KPCD1_HUMAN OSBP1_HUMAN 0.04 D -KPCD1_HUMAN PI4KB_HUMAN 0.04 D -KPCD_HUMAN CXCR4_HUMAN 0.04 D -KPCD_HUMAN ELAV1_HUMAN 0.04 D -KPCL_HUMAN KPCD1_HUMAN 0.04 D -KS6B1_HUMAN EF2K_HUMAN 0.04 D -KS6B1_HUMAN NCBP1_HUMAN 0.04 D -KS6B1_HUMAN RPTOR_HUMAN 0.04 U -KS6B1_HUMAN RS6_HUMAN 0.04 D -KS6B1_HUMAN TCPB_HUMAN 0.04 D -KSYK_HUMAN HCLS1_HUMAN 0.04 D -KSYK_HUMAN IKZF1_HUMAN 0.04 D -KSYK_HUMAN LCK_HUMAN 0.04 U -KTN1_HUMAN RHOA_HUMAN 0.04 U -L7RRS6_HUMAN RASH_HUMAN 0.04 U -L7RRS6_HUMAN RB_HUMAN 0.04 U -L7RT18_HUMAN RPGF1_HUMAN 0.04 U -LAP2B_HUMAN LMNA_HUMAN 0.04 U -LAT_HUMAN PLCG1_HUMAN 0.04 U -LCK_HUMAN G3BP1_HUMAN 0.04 D -LCK_HUMAN KPCT_HUMAN 0.04 D -LCK_HUMAN PPAC_HUMAN 0.04 D -LCK_HUMAN PTN6_HUMAN 0.04 D -LCK_HUMAN SSBP3_HUMAN 0.04 D -LCK_HUMAN ZAP70_HUMAN 0.04 D -LCP2_HUMAN NCK1_HUMAN 0.04 U -LMNA_HUMAN LMNB1_HUMAN 0.04 U -LMNA_HUMAN TOIP1_HUMAN 0.04 U -LRP1_HUMAN TSP1_HUMAN 0.04 U -M3K1_HUMAN MP2K4_HUMAN 0.04 U -M3K2_HUMAN MP2K4_HUMAN 0.04 U -M3K5_HUMAN TRAF2_HUMAN 0.04 U -M3K5_HUMAN ZN622_HUMAN 0.04 U -M3K7_HUMAN TAB3_HUMAN 0.04 U -M3K7_HUMAN TRAF6_HUMAN 0.04 U -MAML1_HUMAN NOTC1_HUMAN 0.04 U -MAPK2_HUMAN PLK1_HUMAN 0.04 D -MAPK2_HUMAN RTN4_HUMAN 0.04 D -MARH7_HUMAN UBP7_HUMAN 0.04 U -MCM10_HUMAN MCM6_HUMAN 0.04 U -MCM2_HUMAN MCM6_HUMAN 0.04 U -MCM4_HUMAN MCM6_HUMAN 0.04 U -MCM4_HUMAN MCM7_HUMAN 0.04 U -MDM2_HUMAN MDM4_HUMAN 0.04 U -MDM2_HUMAN MTBP_HUMAN 0.04 U -MDM2_HUMAN RB_HUMAN 0.04 U -MDM2_HUMAN UB2D2_HUMAN 0.04 U -MED13_HUMAN MED1_HUMAN 0.04 U -MED17_HUMAN MED1_HUMAN 0.04 U -MERL_HUMAN NHRF1_HUMAN 0.04 U -MK01_HUMAN ABI1_HUMAN 0.04 D -MK01_HUMAN CENPE_HUMAN 0.04 D -MK01_HUMAN ERF_HUMAN 0.04 D -MK01_HUMAN EXOC7_HUMAN 0.04 D -MK01_HUMAN NU153_HUMAN 0.04 D -MK01_HUMAN PML_HUMAN 0.04 D -MK01_HUMAN RHG09_HUMAN 0.04 U -MK01_HUMAN RUNX1_HUMAN 0.04 D -MK01_HUMAN VINEX_HUMAN 0.04 D -MK08_HUMAN 4ET_HUMAN 0.04 D -MK14_HUMAN MAPK2_HUMAN 0.04 D -MK14_HUMAN MEF2A_HUMAN 0.04 D -MK14_HUMAN SL9A1_HUMAN 0.04 D -MK14_HUMAN ZNHI1_HUMAN 0.04 D -MLH1_HUMAN PMS2_HUMAN 0.04 U -MLH1_HUMAN ZC11A_HUMAN 0.04 U -MORC3_HUMAN SUMO2_HUMAN 0.04 U -MP2K4_HUMAN MK08_HUMAN 0.04 D -MSH6_HUMAN PCNA_HUMAN 0.04 U -MTG8R_HUMAN MTG8_HUMAN 0.04 U -MTG8_HUMAN NCOR1_HUMAN 0.04 U -MTOR_HUMAN 4EBP1_HUMAN 0.04 D -MTOR_HUMAN AKTS1_HUMAN 0.04 D -MTOR_HUMAN ANR17_HUMAN 0.04 D -MTOR_HUMAN BRD9_HUMAN 0.04 D -MTOR_HUMAN ELL_HUMAN 0.04 D -MTOR_HUMAN LARP1_HUMAN 0.04 D -MTOR_HUMAN PATL1_HUMAN 0.04 D -MTOR_HUMAN RICTR_HUMAN 0.04 U -MTOR_HUMAN SRRM2_HUMAN 0.04 D -MTOR_HUMAN UBR4_HUMAN 0.04 D -MTOR_HUMAN ULK1_HUMAN 0.04 D -MYB_HUMAN SUMO1_HUMAN 0.04 U -NAB1_HUMAN SUMO2_HUMAN 0.04 U -NCOA1_HUMAN RARA_HUMAN 0.04 U -NCOR1_HUMAN RARA_HUMAN 0.04 U -NEDD4_HUMAN SGK1_HUMAN 0.04 U -NEDD4_HUMAN UB2D2_HUMAN 0.04 U -NEDD4_HUMAN UB2E1_HUMAN 0.04 U -NEDD4_HUMAN UB2L3_HUMAN 0.04 U -NEDD4_HUMAN WBP2_HUMAN 0.04 U -NFYA_HUMAN SP1_HUMAN 0.04 U -NHRF1_HUMAN PHAG1_HUMAN 0.04 U -NOL8_HUMAN RRAGA_HUMAN 0.04 U -NONO_HUMAN SFPQ_HUMAN 0.04 U -NOTC1_HUMAN SNW1_HUMAN 0.04 U -NPM_HUMAN NUCL_HUMAN 0.04 U -NSF1C_HUMAN TERA_HUMAN 0.04 U -NSF1C_HUMAN VCIP1_HUMAN 0.04 U -NTF2_HUMAN RAN_HUMAN 0.04 U -NU107_HUMAN NU133_HUMAN 0.11 U -NUMA1_HUMAN SUMO2_HUMAN 0.04 U -NUMBL_HUMAN TRAF6_HUMAN 0.04 U -NUP88_HUMAN NUP98_HUMAN 0.04 U -P53_HUMAN RAD51_HUMAN 0.04 U -P53_HUMAN SUMO1_HUMAN 0.04 U -P53_HUMAN TP53B_HUMAN 0.04 U -P53_HUMAN UBP7_HUMAN 0.04 U -PAK1_HUMAN FLNA_HUMAN 0.04 D -PAK1_HUMAN FXR1_HUMAN 0.04 D -PAK1_HUMAN MINT_HUMAN 0.04 D -PAK1_HUMAN PA2G4_HUMAN 0.04 D -PAK1_HUMAN STMN1_HUMAN 0.04 D -PCNA_HUMAN RAD18_HUMAN 0.04 U -PCNA_HUMAN RFC1_HUMAN 0.04 U -PCNA_HUMAN UBP1_HUMAN 0.04 U -PDS5A_HUMAN SMC3_HUMAN 0.04 U -PDS5B_HUMAN RAD21_HUMAN 0.04 U -PEX10_HUMAN PEX19_HUMAN 0.04 U -PEX19_HUMAN PEX3_HUMAN 0.04 U -PININ_HUMAN PNISR_HUMAN 0.08 U -PININ_HUMAN SRRM2_HUMAN 0.04 U -PKHO1_HUMAN PRS8_HUMAN 0.04 U -PKN1_HUMAN RHOA_HUMAN 0.04 U -PLEC_HUMAN VIME_HUMAN 0.04 U -PLK1_HUMAN ATX10_HUMAN 0.04 D -PLK1_HUMAN BIRC5_HUMAN 0.04 D -PLK1_HUMAN CLIP1_HUMAN 0.04 D -PLK1_HUMAN GTSE1_HUMAN 0.04 D -PLK1_HUMAN NUDC_HUMAN 0.04 D -PLK1_HUMAN PCNT_HUMAN 0.04 D -PLK1_HUMAN PMYT1_HUMAN 0.04 D -PLK1_HUMAN TERF1_HUMAN 0.04 D -PLK1_HUMAN TOP2A_HUMAN 0.04 D -PMYT1_HUMAN CDK1_HUMAN 0.04 D -PP4C_HUMAN PP4R2_HUMAN 0.04 U -PPIP1_HUMAN PTN18_HUMAN 0.04 U -PPIP1_HUMAN WASP_HUMAN 0.04 U -PR40A_HUMAN SF3A1_HUMAN 0.04 U -PRKDC_HUMAN CASP2_HUMAN 0.04 D -PRKDC_HUMAN HNRPU_HUMAN 0.04 D -PRKN2_HUMAN PSMD4_HUMAN 0.04 U -PRKN2_HUMAN UB2J1_HUMAN 0.04 U -PRKN2_HUMAN UB2L3_HUMAN 0.04 U -PRP19_HUMAN RBM5_HUMAN 0.04 U -PRPF3_HUMAN SF3B2_HUMAN 0.04 U -PRPF3_HUMAN U2AF2_HUMAN 0.04 U -PRS6B_HUMAN PRS8_HUMAN 0.04 U -PRS8_HUMAN RARA_HUMAN 0.04 U -PSA2_HUMAN PSA5_HUMAN 0.04 U -PSA2_HUMAN PSA7_HUMAN 0.04 U -PSD11_HUMAN PSD13_HUMAN 0.04 U -PSD12_HUMAN PSD13_HUMAN 0.04 U -PSD13_HUMAN PSMD4_HUMAN 0.04 U -PSMD4_HUMAN RD23A_HUMAN 0.04 U -PSMD4_HUMAN RD23B_HUMAN 0.04 U -PSMD4_HUMAN UBQL1_HUMAN 0.04 U -PTTG1_HUMAN PTTG_HUMAN 0.04 U -PTTG1_HUMAN RS10_HUMAN 0.04 U -Q56A76_HUMAN SIN3A_HUMAN 0.04 U -Q56A76_HUMAN SMRC1_HUMAN 0.04 U -Q6FIE9_HUMAN TOM1_HUMAN 0.04 U -R51A1_HUMAN RAD51_HUMAN 0.04 U -RAB5A_HUMAN RABE1_HUMAN 0.04 U -RAD21_HUMAN SMC3_HUMAN 0.04 U -RAD21_HUMAN STAG2_HUMAN 0.04 U -RAD21_HUMAN WAPL_HUMAN 0.04 U -RAGP1_HUMAN SUMO1_HUMAN 0.04 U -RAGP1_HUMAN UBC9_HUMAN 0.04 U -RANG_HUMAN RAN_HUMAN 0.04 U -RAN_HUMAN RBP2_HUMAN 0.04 U -RAN_HUMAN TNPO1_HUMAN 0.04 U -RBM5_HUMAN SR140_HUMAN 0.2 U -RBMX_HUMAN TRA2B_HUMAN 0.04 U -RBP2_HUMAN UBC9_HUMAN 0.04 U -RBX1_HUMAN UB2D2_HUMAN 0.04 U -RB_HUMAN TAF1_HUMAN 0.04 U -RB_HUMAN TRIPB_HUMAN 0.04 U -RB_HUMAN UBF1_HUMAN 0.04 U -RD23B_HUMAN XPC_HUMAN 0.04 U -REN3B_HUMAN RENT1_HUMAN 0.04 U -RENT1_HUMAN SMG5_HUMAN 0.04 U -RENT1_HUMAN STAU1_HUMAN 0.04 U -RHOA_HUMAN ROCK1_HUMAN 0.04 U -RHOA_HUMAN TRIO_HUMAN 0.04 U -RIC8A_HUMAN UBQL1_HUMAN 0.04 U -RIPK1_HUMAN TNR1A_HUMAN 0.04 U -RIPK1_HUMAN TRAF2_HUMAN 0.04 U -RN168_HUMAN UBE2N_HUMAN 0.04 U -RN169_HUMAN SUMO2_HUMAN 0.04 U -RNF25_HUMAN UB2D2_HUMAN 0.04 U -RNF31_HUMAN TNFA_HUMAN 0.04 U -RNF8_HUMAN UBE2N_HUMAN 0.04 U -ROCK1_HUMAN ADDA_HUMAN 0.04 D -ROCK1_HUMAN MYPT1_HUMAN 0.04 D -ROCK1_HUMAN RHG35_HUMAN 0.04 D -RPTOR_HUMAN RRAGA_HUMAN 0.04 U -RRAGA_HUMAN RRAGC_HUMAN 0.04 U -RRAGA_HUMAN RRAGD_HUMAN 0.04 U -RSF1_HUMAN SMCA5_HUMAN 0.04 U -SAFB1_HUMAN SAFB2_HUMAN 0.04 U -SATB1_HUMAN UBC9_HUMAN 0.04 U -SCAFB_HUMAN U2AF2_HUMAN 0.04 U -SENP1_HUMAN SUMO2_HUMAN 0.04 U -SENP2_HUMAN SUMO1_HUMAN 0.04 U -SENP3_HUMAN SUMO2_HUMAN 0.04 U -SET1A_HUMAN WDR5_HUMAN 0.04 U -SF3A1_HUMAN SF3A3_HUMAN 0.04 U -SFPQ_HUMAN SUMO1_HUMAN 0.04 U -SGK1_HUMAN NDRG1_HUMAN 0.04 D -SGK1_HUMAN NDRG2_HUMAN 0.04 D -SGK3_HUMAN FLII_HUMAN 0.05 D -SIAH1_HUMAN UB2D2_HUMAN 0.04 U -SMAD3_HUMAN SMAD4_HUMAN 0.04 U -SMAD3_HUMAN UBP15_HUMAN 0.04 U -SMAD4_HUMAN TGFA1_HUMAN 0.04 U -SMC1A_HUMAN SMC3_HUMAN 0.04 U -SMCE1_HUMAN SMRC1_HUMAN 0.04 U -SMRCD_HUMAN SUMO2_HUMAN 0.04 U -SNUT1_HUMAN SUMO2_HUMAN 0.04 U -SNUT1_HUMAN UBL5_HUMAN 0.04 U -SP16H_HUMAN SSRP1_HUMAN 0.04 U -SQSTM_HUMAN TRAF6_HUMAN 0.04 U -SRC_HUMAN BCLF1_HUMAN 0.04 D -SRC_HUMAN EMD_HUMAN 0.04 D -SRC_HUMAN FIP1_HUMAN 0.04 D -SRC_HUMAN GDIR2_HUMAN 0.04 D -SRC_HUMAN GTF2I_HUMAN 0.04 D -SRC_HUMAN HNRPK_HUMAN 0.04 D -SRC_HUMAN SPD2B_HUMAN 0.04 D -SRC_HUMAN SRRT_HUMAN 0.04 D -SRC_HUMAN ZC3H4_HUMAN 0.04 D -SSRP1_HUMAN SUMO2_HUMAN 0.04 U -STK39_HUMAN S12A2_HUMAN 0.08 D -STK39_HUMAN S4A4_HUMAN 0.08 D -SUGP1_HUMAN U2AF2_HUMAN 0.04 U -SUMO1_HUMAN TOP2B_HUMAN 0.04 U -SUMO2_HUMAN TF3C1_HUMAN 0.04 U -SUMO2_HUMAN TFR1_HUMAN 0.04 U -SUMO2_HUMAN TPR_HUMAN 0.04 U -SUMO2_HUMAN UBC9_HUMAN 0.04 U -SUMO2_HUMAN ZN451_HUMAN 0.04 U -T2EA_HUMAN T2EB_HUMAN 0.04 U -T2EA_HUMAN TBP_HUMAN 0.04 U -T2FA_HUMAN TAF1_HUMAN 0.04 U -TAF1_HUMAN TBP_HUMAN 0.04 U -TANK_HUMAN TBK1_HUMAN 0.04 U -TB182_HUMAN TNKS1_HUMAN 0.04 U -TBK1_HUMAN IRF3_HUMAN 0.04 D -TBK1_HUMAN TRAF2_HUMAN 0.04 U -TBP_HUMAN TF2B_HUMAN 0.04 U -TDIF1_HUMAN TDT_HUMAN 0.21 U -TERF1_HUMAN TNKS1_HUMAN 0.04 U -TF3C1_HUMAN TF3C2_HUMAN 0.04 U -TFR1_HUMAN TRFE_HUMAN 0.12 U -TNFA_HUMAN TNR1A_HUMAN 0.04 U -TNIK_HUMAN TRAF2_HUMAN 0.04 U -TOPK_HUMAN PRC1_HUMAN 0.04 D -TRAF2_HUMAN TRAF6_HUMAN 0.04 U -TRAF6_HUMAN UBE2N_HUMAN 0.04 U -UBE2N_HUMAN ZNRF2_HUMAN 0.04 U -UBP11_HUMAN UBP7_HUMAN 0.04 U -VRK1_HUMAN BAF_HUMAN 0.04 D -WASP_HUMAN WIPF1_HUMAN 0.04 U -WASP_HUMAN WIPF2_HUMAN 0.04 U -WRN_HUMAN XRCC6_HUMAN 0.04 U -ZAP70_HUMAN DBNL_HUMAN 0.05 D -ZAP70_HUMAN DUS3_HUMAN 0.05 D -ESYT1_HUMAN ESYT2_HUMAN 0.26 U -PRR12_HUMAN PUM1_HUMAN 0.33 U -SASH3_HUMAN SC22B_HUMAN 0.18 U -2A5D_HUMAN NEK1_HUMAN 0.12 U -5NTC_HUMAN SZRD1_HUMAN 0.12 U -AFF4_HUMAN ELL2_HUMAN 0.12 U -CENPF_HUMAN NDE1_HUMAN 0.18 U -CENPF_HUMAN NU133_HUMAN 0.12 U -CHAP1_HUMAN TXLNG_HUMAN 0.12 U -CLAP1_HUMAN SPAG5_HUMAN 0.13 U -CPIN1_HUMAN ENY2_HUMAN 0.18 U -DCP1B_HUMAN EDC4_HUMAN 0.09 U -EDC4_HUMAN FBLN1_HUMAN 0.12 U -FNBP4_HUMAN LBR_HUMAN 0.12 U -FOXK1_HUMAN GAPD1_HUMAN 0.12 U -FOXK1_HUMAN UBP24_HUMAN 0.12 U -IWS1_HUMAN SETD2_HUMAN 0.18 U -KCC4_HUMAN STMN1_HUMAN 0.12 D -KTNA1_HUMAN KTNB1_HUMAN 0.21 U -LMO7_HUMAN UBAC2_HUMAN 0.15 U -MADD_HUMAN VP13D_HUMAN 0.12 U -MPLKI_HUMAN RBM27_HUMAN 0.15 U -MPLKI_HUMAN SCAM3_HUMAN 0.12 U -NF2IP_HUMAN NFAC2_HUMAN 0.12 U -NIPBL_HUMAN SCC4_HUMAN 0.15 U -NOL8_HUMAN RRAGD_HUMAN 0.12 U -NUCKS_HUMAN RBM42_HUMAN 0.12 U -PATL1_HUMAN PHF20_HUMAN 0.24 U -PDS5B_HUMAN WAPL_HUMAN 0.12 U -PHF8_HUMAN SET1A_HUMAN 0.15 U -RALY_HUMAN WDR62_HUMAN 0.12 U -RB15B_HUMAN RBM15_HUMAN 0.18 U -RBM27_HUMAN ZC11A_HUMAN 0.12 U -SERF2_HUMAN VTDB_HUMAN 0.18 U -TBCD5_HUMAN VP26B_HUMAN 0.21 U -TDIF1_HUMAN TREF1_HUMAN 0.13 U -TXLNG_HUMAN WIPF2_HUMAN 0.12 U -TXLNG_HUMAN ZC11A_HUMAN 0.12 U -VPS72_HUMAN ZC3H1_HUMAN 0.12 U -4ET_HUMAN SPAG5_HUMAN 0.09 U -DEFI6_HUMAN RAC2_HUMAN 0.09 U -GDIR2_HUMAN RAC2_HUMAN 0.11 U -IBP2_HUMAN TRFE_HUMAN 0.14 U -ICMT_HUMAN RAC2_HUMAN 0.09 U -LIPA3_HUMAN LIPB1_HUMAN 0.1 U -NFX1_HUMAN SCPDL_HUMAN 0.08 U -2A5A_HUMAN NEK1_HUMAN 0.08 U -CE022_HUMAN WBP11_HUMAN 0.08 U -DDRGK_HUMAN UFL1_HUMAN 0.07 U -IF2B1_HUMAN UFL1_HUMAN 0.07 U -PDS5A_HUMAN WAPL_HUMAN 0.07 U -RBM5_HUMAN WBP11_HUMAN 0.08 U -MPRIP_HUMAN MYPT1_HUMAN 0.08 U -NU153_HUMAN SENP2_HUMAN 0.08 U -AB1IP_HUMAN EVL_HUMAN 0.05 U -AB1IP_HUMAN LCP2_HUMAN 0.06 U -ACAP1_HUMAN TFR1_HUMAN 0.06 U -AFF4_HUMAN ELL_HUMAN 0.06 U -AKA10_HUMAN KAP3_HUMAN 0.06 U -AKA11_HUMAN KAP3_HUMAN 0.06 U -AKP13_HUMAN KPCL_HUMAN 0.06 U -AMPD2_HUMAN PP4R2_HUMAN 0.06 U -ARI3A_HUMAN E2F2_HUMAN 0.06 U -ARID2_HUMAN PB1_HUMAN 0.06 U -AT7L3_HUMAN ENY2_HUMAN 0.06 U -ATX2L_HUMAN G3BP2_HUMAN 0.06 U -BANP_HUMAN SP2_HUMAN 0.09 U -BCLF1_HUMAN CHD1_HUMAN 0.06 U -BRAP_HUMAN KSR1_HUMAN 0.06 U -BTF3_HUMAN PDCD4_HUMAN 0.06 U -BTF3_HUMAN RWDD4_HUMAN 0.06 U -CAF1A_HUMAN CAF1B_HUMAN 0.06 U -CENPE_HUMAN CENPF_HUMAN 0.06 U -CND2_HUMAN DDX3X_HUMAN 0.05 U -DC1L1_HUMAN PCNT_HUMAN 0.06 U -DCP1A_HUMAN EDC3_HUMAN 0.02 U -DCP1A_HUMAN ZCCHV_HUMAN 0.03 U -DCP1B_HUMAN EDC3_HUMAN 0.09 U -DNJB6_HUMAN SPT6H_HUMAN 0.06 U -DNMBP_HUMAN EVL_HUMAN 0.06 U -DNMBP_HUMAN WIPF2_HUMAN 0.06 U -ELF1_HUMAN NFAC1_HUMAN 0.06 U -EPN4_HUMAN STALP_HUMAN 0.06 U -FRYL_HUMAN HOME3_HUMAN 0.06 U -GPTC8_HUMAN NUMBL_HUMAN 0.06 U -GRAP2_HUMAN LAX1_HUMAN 0.06 U -HAUS6_HUMAN YBOX3_HUMAN 0.09 U -HMGB3_HUMAN THIC_HUMAN 0.06 U -IWS1_HUMAN SPT6H_HUMAN 0.06 U -LAP2B_HUMAN LMNB1_HUMAN 0.05 U -LARP1_HUMAN RRP1B_HUMAN 0.06 U -LCP2_HUMAN PHAG1_HUMAN 0.06 U -MTMR2_HUMAN MTMR5_HUMAN 0.06 U -MTMR2_HUMAN SZRD1_HUMAN 0.06 U -NOL8_HUMAN RRAGC_HUMAN 0.06 U -NPAT_HUMAN WEE1_HUMAN 0.06 U -NU107_HUMAN NU153_HUMAN 0.06 U -NU107_HUMAN WRIP1_HUMAN 0.06 U -ORC1_HUMAN ORC3_HUMAN 0.06 U -OSB11_HUMAN WDR44_HUMAN 0.06 U -P66A_HUMAN PAK4_HUMAN 0.06 U -PCM1_HUMAN PCNT_HUMAN 0.06 U -PPAC_HUMAN SMBT1_HUMAN 0.06 U -PRC2A_HUMAN SSRG_HUMAN 0.06 U -PRC2A_HUMAN UBP2L_HUMAN 0.06 U -REN3B_HUMAN WBP11_HUMAN 0.06 U -RN168_HUMAN TRIPC_HUMAN 0.04 U -RRP1B_HUMAN SDF2L_HUMAN 0.06 U -RRP1B_HUMAN SRSF6_HUMAN 0.06 U -SH3K1_HUMAN SHKB1_HUMAN 0.06 U -SLK_HUMAN TTC4_HUMAN 0.06 U -SNP23_HUMAN STXB5_HUMAN 0.06 U -SNX2_HUMAN TBC15_HUMAN 0.06 U -SRS10_HUMAN SRSF6_HUMAN 0.05 U -SRS10_HUMAN TCOF_HUMAN 0.05 U -TCOF_HUMAN TTC4_HUMAN 0.06 U -TDIF2_HUMAN TDT_HUMAN 0.06 U -TTC4_HUMAN TXLNG_HUMAN 0.05 U -WBP11_HUMAN ZC3HD_HUMAN 0.06 U -AKAP1_HUMAN KAP3_HUMAN 0.04 U -ARI4B_HUMAN SP130_HUMAN 0.06 U -ARP10_HUMAN HINT1_HUMAN 0.04 U -BRAP_HUMAN CENPF_HUMAN 0.04 U -CEP55_HUMAN MB12A_HUMAN 0.05 U -CEP55_HUMAN P121A_HUMAN 0.05 U -CEP55_HUMAN PCNT_HUMAN 0.04 U -CND1_HUMAN NU153_HUMAN 0.04 U -CO3_HUMAN VTDB_HUMAN 0.04 U -DCP1A_HUMAN DCP1B_HUMAN 0.01 U -E2F2_HUMAN TFDP2_HUMAN 0.04 U -EP400_HUMAN TBCD4_HUMAN 0.05 U -EXOC1_HUMAN EXOC4_HUMAN 0.05 U -EXOC1_HUMAN TRIO_HUMAN 0.05 U -I2BP2_HUMAN RIC8A_HUMAN 0.04 U -IKZF1_HUMAN IKZF2_HUMAN 0.04 U -KAP3_HUMAN LASP1_HUMAN 0.04 U -LAP2A_HUMAN LMNB1_HUMAN 0.04 U -LBR_HUMAN LMNB1_HUMAN 0.03 U -LGUL_HUMAN PPAC_HUMAN 0.04 U -LMNB1_HUMAN TOIP1_HUMAN 0.04 U -MB12A_HUMAN SH3K1_HUMAN 0.04 U -PACS1_HUMAN WDR37_HUMAN 0.04 U -PCBP2_HUMAN PTBP1_HUMAN 0.04 U -SCAM2_HUMAN SNP23_HUMAN 0.04 U -SR140_HUMAN TBCD4_HUMAN 0.05 U -COR1A_HUMAN YTDC1_HUMAN 0.04 U -EDC4_HUMAN YTDC1_HUMAN 0.04 U -KAT6A_HUMAN RERE_HUMAN 0.04 U -KIF2A_HUMAN KLC2_HUMAN 0.03 U -KLC2_HUMAN PATL1_HUMAN 0.04 U -KLC2_HUMAN SLAI2_HUMAN 0.04 U -MPRIP_HUMAN YTDC1_HUMAN 0.04 U -PRC2A_HUMAN RERE_HUMAN 0.04 U -PRC2B_HUMAN RERE_HUMAN 0.04 U -PRSR2_HUMAN YTDC1_HUMAN 0.04 U -AKP8L_HUMAN LBR_HUMAN 0.03 U -ATAD2_HUMAN E2F2_HUMAN 0.03 U -ATAD5_HUMAN BAZ1B_HUMAN 0.03 U -ATAD5_HUMAN UBP1_HUMAN 0.03 U -BAZ1A_HUMAN BAZ1B_HUMAN 0.03 U -BAZ1B_HUMAN CAF1B_HUMAN 0.03 U -BIG2_HUMAN EXOC7_HUMAN 0.03 U -BIG2_HUMAN KAP3_HUMAN 0.03 U -BIG2_HUMAN NUP88_HUMAN 0.03 U -BPL1_HUMAN DDX52_HUMAN 0.03 U -CD82_HUMAN NUP88_HUMAN 0.03 U -CDK12_HUMAN ELOA1_HUMAN 0.03 U -CHD1L_HUMAN UBE2O_HUMAN 0.03 U -CLCA_HUMAN TACC3_HUMAN 0.03 U -COX5A_HUMAN RAB8A_HUMAN 0.03 U -CPIN1_HUMAN IPP2_HUMAN 0.03 U -CPSF7_HUMAN VINEX_HUMAN 0.03 U -DCP2_HUMAN ZCCHV_HUMAN 0.03 U -DDX23_HUMAN THOC5_HUMAN 0.03 U -DDX3X_HUMAN IF4B_HUMAN 0.02 U -DIDO1_HUMAN WWP2_HUMAN 0.03 U -DLG5_HUMAN VINEX_HUMAN 0.03 U -DNJB6_HUMAN MLF2_HUMAN 0.03 U -DNJC8_HUMAN PIN4_HUMAN 0.03 U -EHMT1_HUMAN JARD2_HUMAN 0.03 U -EHMT1_HUMAN MPP8_HUMAN 0.03 U -EM55_HUMAN GLPC_HUMAN 0.03 U -EXOC7_HUMAN ZC3HE_HUMAN 0.03 U -FXL19_HUMAN MTG8R_HUMAN 0.03 U -H1X_HUMAN RRP1B_HUMAN 0.03 U -HIRP3_HUMAN SNX2_HUMAN 0.03 U -IF4B_HUMAN PHAX_HUMAN 0.03 U -IPP2_HUMAN ZN622_HUMAN 0.03 U -KMT2B_HUMAN MEN1_HUMAN 0.03 U -LAGE3_HUMAN MCFD2_HUMAN 0.03 U -LAGE3_HUMAN PTMS_HUMAN 0.03 U -LSM3_HUMAN THOC5_HUMAN 0.03 U -MAML1_HUMAN NOTC2_HUMAN 0.03 U -MCMBP_HUMAN RPR1A_HUMAN 0.03 U -MFAP1_HUMAN RL37_HUMAN 0.03 U -MFAP1_HUMAN SR140_HUMAN 0.03 U -MTG8R_HUMAN RERE_HUMAN 0.03 U -NUP88_HUMAN RBM42_HUMAN 0.03 U -PARP6_HUMAN RPR1A_HUMAN 0.03 U -PHP14_HUMAN PTMS_HUMAN 0.03 U -PI3R4_HUMAN UVRAG_HUMAN 0.03 U -PININ_HUMAN TOE1_HUMAN 0.03 U -PRCC_HUMAN TOE1_HUMAN 0.03 U -RAB8A_HUMAN TFR1_HUMAN 0.03 U -RBM23_HUMAN RBM39_HUMAN 0.03 U -RBM39_HUMAN TOE1_HUMAN 0.03 U -REN3B_HUMAN TR150_HUMAN 0.03 U -RNF10_HUMAN UBE2O_HUMAN 0.03 U -SEPT3_HUMAN WBP2_HUMAN 0.03 U -SRSF6_HUMAN TOE1_HUMAN 0.03 U -TAGL2_HUMAN UBP1_HUMAN 0.03 U -TETN_HUMAN TR150_HUMAN 0.03 U -TGFA1_HUMAN UVRAG_HUMAN 0.03 U -THOC5_HUMAN ZC3HF_HUMAN 0.03 U -UBP45_HUMAN YLPM1_HUMAN 0.03 U -AASD1_HUMAN ARC1A_HUMAN 0.02 U -APOB_HUMAN SC61B_HUMAN 0.02 U -ARC1A_HUMAN EXOC7_HUMAN 0.02 U -ARC1A_HUMAN SC22B_HUMAN 0.02 U -BAZ1B_HUMAN SMRC2_HUMAN 0.02 U -BMP2K_HUMAN MBP_HUMAN 0.02 U -BNI3L_HUMAN DUS3_HUMAN 0.02 U -BNI3L_HUMAN SMCO4_HUMAN 0.02 U -BNI3L_HUMAN TMM11_HUMAN 0.02 U -DCP2_HUMAN NU107_HUMAN 0.01 U -DCP2_HUMAN SPT6H_HUMAN 0.02 U -DDX42_HUMAN NOSIP_HUMAN 0.02 U -DDX42_HUMAN PHF20_HUMAN 0.02 U -DDX42_HUMAN PIN4_HUMAN 0.02 U -DDX42_HUMAN RECQ5_HUMAN 0.02 U -DDX42_HUMAN SF3A1_HUMAN 0.02 U -DDX42_HUMAN SR140_HUMAN 0.02 U -EXOC4_HUMAN EXOC7_HUMAN 0.02 U -HMGN1_HUMAN HMGN2_HUMAN 0.02 U -IF4B_HUMAN NU107_HUMAN 0.01 U -LDB1_HUMAN SSBP3_HUMAN 0.02 U -MBP_HUMAN STK39_HUMAN 0.02 U -MTG16_HUMAN MTG8R_HUMAN 0.02 U -SC61B_HUMAN TRAM1_HUMAN 0.02 U -SMRC2_HUMAN SRGP3_HUMAN 0.02 U -SR140_HUMAN TRA2A_HUMAN 0.02 U -SRS10_HUMAN TRA2A_HUMAN 0.02 U -TOM1_HUMAN TRIO_HUMAN 0.02 U -TOM1_HUMAN WBP2_HUMAN 0.02 U -TRA2A_HUMAN YTDC1_HUMAN 0.02 U -CAF1A_HUMAN WNK1_HUMAN 0.01 U -CD3E_HUMAN ZAP70_HUMAN 0.01 U -CD5_HUMAN ZAP70_HUMAN 0.01 U -CE170_HUMAN HERC2_HUMAN 0.01 U -CHAP1_HUMAN TTC4_HUMAN 0.01 U -CIRBP_HUMAN CNOT3_HUMAN 0.01 U -CIRBP_HUMAN LAP2B_HUMAN 0.01 U -CIRBP_HUMAN NUP88_HUMAN 0.01 U -CIRBP_HUMAN RTN4_HUMAN 0.01 U -CLSPN_HUMAN HERC2_HUMAN 0.01 U -CND3_HUMAN PLEC_HUMAN 0.01 U -DBNL_HUMAN HERC2_HUMAN 0.01 U -DEFI6_HUMAN ZAP70_HUMAN 0.01 U -FA53C_HUMAN WNK1_HUMAN 0.01 U -FLII_HUMAN LRRF2_HUMAN 0.01 U -HERC2_HUMAN RN168_HUMAN 0.01 U -IF4B_HUMAN NU153_HUMAN 0.01 U -IF4H_HUMAN TRA2B_HUMAN 0.01 U -LCP2_HUMAN WNK1_HUMAN 0.01 U -LYRIC_HUMAN PLEC_HUMAN 0.01 U -MADD_HUMAN WNK1_HUMAN 0.01 U -MEF2A_HUMAN MEF2D_HUMAN 0.01 U -MEF2D_HUMAN NFAC2_HUMAN 0.01 U -MEF2D_HUMAN SENP3_HUMAN 0.01 U -NS1BP_HUMAN TRA2B_HUMAN 0.01 U -PP4R2_HUMAN TRA2B_HUMAN 0.01 U -RASL3_HUMAN WNK1_HUMAN 0.01 U -SH2B3_HUMAN ZAP70_HUMAN 0.01 U -SIT1_HUMAN ZAP70_HUMAN 0.01 U -SLAF6_HUMAN ZAP70_HUMAN 0.01 U -SRSF6_HUMAN TRA2B_HUMAN 0.01 U -SRSF9_HUMAN TRA2B_HUMAN 0.01 U -TRA2B_HUMAN YTDC1_HUMAN 0.01 U -WNK1_HUMAN STK39_HUMAN 0.01 D -WNK1_HUMAN WNK2_HUMAN 0.01 U -WNK1_HUMAN ZEP2_HUMAN 0.01 U -ZAP70_HUMAN LCP2_HUMAN 0.01 D diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/hac-clusters-horizontal.txt b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/hac-clusters-horizontal.txt deleted file mode 100644 index 016f96e..0000000 --- a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/hac-clusters-horizontal.txt +++ /dev/null @@ -1,101 +0,0 @@ -algorithm labels -hiv060-omicsintegrator1-params-NQQFMSW 4 -hiv060-omicsintegrator1-params-7F2UHHY 4 -hiv060-omicsintegrator1-params-DLZY2UU 4 -hiv060-omicsintegrator1-params-F2GW4FM 4 -hiv060-omicsintegrator1-params-GJJHAWR 4 -hiv060-omicsintegrator1-params-EKFAHXJ 4 -hiv060-omicsintegrator1-params-O245LF3 4 -hiv060-omicsintegrator1-params-K2C44YG 4 -hiv060-omicsintegrator1-params-MKUCXSX 4 -hiv060-omicsintegrator1-params-CXULPPY 4 -hiv060-omicsintegrator1-params-D2CFK7Y 4 -hiv060-omicsintegrator1-params-GB464QK 4 -hiv060-omicsintegrator1-params-QLA7PZM 4 -hiv060-omicsintegrator1-params-BK5Y6AV 4 -hiv060-omicsintegrator1-params-E4PGYJE 4 -hiv060-omicsintegrator1-params-YH53Z7I 4 -hiv060-omicsintegrator1-params-V6TRFD5 4 -hiv060-omicsintegrator1-params-VNZPBKY 4 -hiv060-omicsintegrator1-params-HXBNO4P 4 -hiv060-omicsintegrator1-params-OW2ZQVJ 4 -hiv060-omicsintegrator1-params-UG35EN3 4 -hiv060-omicsintegrator1-params-7VVKFFW 4 -hiv060-omicsintegrator1-params-Y7FVD5Y 4 -hiv060-omicsintegrator1-params-X7OTY3Z 4 -hiv060-omicsintegrator1-params-6ZYKM5I 0 -hiv060-omicsintegrator1-params-LW2V34U 4 -hiv060-omicsintegrator1-params-5PV5R4M 4 -hiv060-omicsintegrator1-params-5OAENKB 4 -hiv060-omicsintegrator1-params-4S6QYO2 4 -hiv060-omicsintegrator1-params-SUBCPCC 29 -hiv060-omicsintegrator1-params-WERUDAF 9 -hiv060-omicsintegrator1-params-TQAZEEK 4 -hiv060-omicsintegrator1-params-C4N3KE7 4 -hiv060-omicsintegrator1-params-J5PMCRQ 16 -hiv060-omicsintegrator1-params-2NL4RDV 9 -hiv060-omicsintegrator1-params-OJVVFSK 4 -hiv060-omicsintegrator1-params-VZM7OSX 4 -hiv060-omicsintegrator1-params-UAYBOVK 27 -hiv060-omicsintegrator1-params-XJNUGEC 9 -hiv060-omicsintegrator1-params-5E56FMM 4 -hiv060-omicsintegrator1-params-BHLRRSP 4 -hiv060-omicsintegrator1-params-VGIOBOX 4 -hiv060-omicsintegrator1-params-LIWRFPS 4 -hiv060-omicsintegrator1-params-UWSVCXO 4 -hiv060-omicsintegrator1-params-EONPKPH 0 -hiv060-omicsintegrator1-params-6BGQ7PL 1 -hiv060-omicsintegrator1-params-5I2I6FM 4 -hiv060-omicsintegrator1-params-XAQM3RR 4 -hiv060-omicsintegrator1-params-EBEEP6T 4 -hiv060-omicsintegrator1-params-W2DOD4H 24 -hiv060-omicsintegrator1-params-BF65QO6 28 -hiv060-omicsintegrator1-params-XOXO56K 9 -hiv060-omicsintegrator1-params-4G6HWVJ 4 -hiv060-omicsintegrator1-params-UNEWALJ 18 -hiv060-omicsintegrator1-params-Y5XCKB2 10 -hiv060-omicsintegrator1-params-KPIH42T 9 -hiv060-omicsintegrator1-params-5YCE7NJ 4 -hiv060-omicsintegrator1-params-DXTK7ZU 21 -hiv060-omicsintegrator1-params-SHAKIBL 10 -hiv060-omicsintegrator1-params-VXGL3EA 9 -hiv060-omicsintegrator1-params-WCP7GIZ 4 -hiv060-omicsintegrator1-params-L4IUEVV 4 -hiv060-omicsintegrator1-params-PMY3CCQ 4 -hiv060-omicsintegrator1-params-LIECIRU 4 -hiv060-omicsintegrator1-params-UA2CL6Z 0 -hiv060-omicsintegrator1-params-CUD2SWJ 17 -hiv060-omicsintegrator1-params-EE47ACK 4 -hiv060-omicsintegrator1-params-5E3SBY6 4 -hiv060-omicsintegrator1-params-NFOUAB6 4 -hiv060-omicsintegrator1-params-2G7CMNV 19 -hiv060-omicsintegrator1-params-422WXNM 23 -hiv060-omicsintegrator1-params-R3TNGIE 26 -hiv060-omicsintegrator1-params-VNZUFFN 4 -hiv060-omicsintegrator1-params-L7CHKLI 15 -hiv060-omicsintegrator1-params-LWUMKKP 14 -hiv060-omicsintegrator1-params-L2HU4XD 5 -hiv060-omicsintegrator1-params-OA2LKJB 4 -hiv060-omicsintegrator1-params-I6LVYQ7 7 -hiv060-omicsintegrator1-params-D7XEWKT 20 -hiv060-omicsintegrator1-params-7M4YEVF 5 -hiv060-omicsintegrator1-params-ZZYQSRD 4 -hiv060-omicsintegrator1-params-WQ6V5PX 4 -hiv060-omicsintegrator1-params-XQ2C7V7 4 -hiv060-omicsintegrator1-params-CML462S 4 -hiv060-omicsintegrator1-params-ZWKBRYR 0 -hiv060-omicsintegrator1-params-T77D7QZ 25 -hiv060-omicsintegrator1-params-SWWL7WP 1 -hiv060-omicsintegrator1-params-FYCKMYA 4 -hiv060-omicsintegrator1-params-H766NCA 4 -hiv060-omicsintegrator1-params-EAX635F 13 -hiv060-omicsintegrator1-params-2NKIR7L 6 -hiv060-omicsintegrator1-params-JZPC2XQ 12 -hiv060-omicsintegrator1-params-PI44E6Y 4 -hiv060-omicsintegrator1-params-Y3DQROJ 8 -hiv060-omicsintegrator1-params-RCIIWF5 3 -hiv060-omicsintegrator1-params-2NFVB7W 2 -hiv060-omicsintegrator1-params-OWG4JUJ 4 -hiv060-omicsintegrator1-params-PQYTDPN 22 -hiv060-omicsintegrator1-params-BS7GMXF 11 -hiv060-omicsintegrator1-params-7JTTPPE 2 diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/hac-clusters-vertical.txt b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/hac-clusters-vertical.txt deleted file mode 100644 index 4333ea6..0000000 --- a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/hac-clusters-vertical.txt +++ /dev/null @@ -1,101 +0,0 @@ -algorithm labels -hiv060-omicsintegrator1-params-NQQFMSW 22 -hiv060-omicsintegrator1-params-7F2UHHY 22 -hiv060-omicsintegrator1-params-DLZY2UU 22 -hiv060-omicsintegrator1-params-F2GW4FM 22 -hiv060-omicsintegrator1-params-GJJHAWR 22 -hiv060-omicsintegrator1-params-EKFAHXJ 22 -hiv060-omicsintegrator1-params-O245LF3 22 -hiv060-omicsintegrator1-params-K2C44YG 22 -hiv060-omicsintegrator1-params-MKUCXSX 22 -hiv060-omicsintegrator1-params-CXULPPY 22 -hiv060-omicsintegrator1-params-D2CFK7Y 22 -hiv060-omicsintegrator1-params-GB464QK 22 -hiv060-omicsintegrator1-params-QLA7PZM 22 -hiv060-omicsintegrator1-params-BK5Y6AV 22 -hiv060-omicsintegrator1-params-E4PGYJE 22 -hiv060-omicsintegrator1-params-YH53Z7I 22 -hiv060-omicsintegrator1-params-V6TRFD5 22 -hiv060-omicsintegrator1-params-VNZPBKY 22 -hiv060-omicsintegrator1-params-HXBNO4P 22 -hiv060-omicsintegrator1-params-OW2ZQVJ 22 -hiv060-omicsintegrator1-params-UG35EN3 22 -hiv060-omicsintegrator1-params-7VVKFFW 22 -hiv060-omicsintegrator1-params-Y7FVD5Y 22 -hiv060-omicsintegrator1-params-X7OTY3Z 22 -hiv060-omicsintegrator1-params-6ZYKM5I 1 -hiv060-omicsintegrator1-params-LW2V34U 22 -hiv060-omicsintegrator1-params-5PV5R4M 22 -hiv060-omicsintegrator1-params-5OAENKB 22 -hiv060-omicsintegrator1-params-4S6QYO2 22 -hiv060-omicsintegrator1-params-SUBCPCC 28 -hiv060-omicsintegrator1-params-WERUDAF 25 -hiv060-omicsintegrator1-params-TQAZEEK 22 -hiv060-omicsintegrator1-params-C4N3KE7 22 -hiv060-omicsintegrator1-params-J5PMCRQ 29 -hiv060-omicsintegrator1-params-2NL4RDV 25 -hiv060-omicsintegrator1-params-OJVVFSK 22 -hiv060-omicsintegrator1-params-VZM7OSX 22 -hiv060-omicsintegrator1-params-UAYBOVK 30 -hiv060-omicsintegrator1-params-XJNUGEC 25 -hiv060-omicsintegrator1-params-5E56FMM 22 -hiv060-omicsintegrator1-params-BHLRRSP 22 -hiv060-omicsintegrator1-params-VGIOBOX 22 -hiv060-omicsintegrator1-params-LIWRFPS 22 -hiv060-omicsintegrator1-params-UWSVCXO 22 -hiv060-omicsintegrator1-params-EONPKPH 1 -hiv060-omicsintegrator1-params-6BGQ7PL 19 -hiv060-omicsintegrator1-params-5I2I6FM 22 -hiv060-omicsintegrator1-params-XAQM3RR 22 -hiv060-omicsintegrator1-params-EBEEP6T 22 -hiv060-omicsintegrator1-params-W2DOD4H 8 -hiv060-omicsintegrator1-params-BF65QO6 27 -hiv060-omicsintegrator1-params-XOXO56K 25 -hiv060-omicsintegrator1-params-4G6HWVJ 22 -hiv060-omicsintegrator1-params-UNEWALJ 12 -hiv060-omicsintegrator1-params-Y5XCKB2 26 -hiv060-omicsintegrator1-params-KPIH42T 25 -hiv060-omicsintegrator1-params-5YCE7NJ 22 -hiv060-omicsintegrator1-params-DXTK7ZU 10 -hiv060-omicsintegrator1-params-SHAKIBL 26 -hiv060-omicsintegrator1-params-VXGL3EA 25 -hiv060-omicsintegrator1-params-WCP7GIZ 22 -hiv060-omicsintegrator1-params-L4IUEVV 22 -hiv060-omicsintegrator1-params-PMY3CCQ 22 -hiv060-omicsintegrator1-params-LIECIRU 22 -hiv060-omicsintegrator1-params-UA2CL6Z 1 -hiv060-omicsintegrator1-params-CUD2SWJ 20 -hiv060-omicsintegrator1-params-EE47ACK 22 -hiv060-omicsintegrator1-params-5E3SBY6 22 -hiv060-omicsintegrator1-params-NFOUAB6 22 -hiv060-omicsintegrator1-params-2G7CMNV 4 -hiv060-omicsintegrator1-params-422WXNM 16 -hiv060-omicsintegrator1-params-R3TNGIE 24 -hiv060-omicsintegrator1-params-VNZUFFN 22 -hiv060-omicsintegrator1-params-L7CHKLI 2 -hiv060-omicsintegrator1-params-LWUMKKP 17 -hiv060-omicsintegrator1-params-L2HU4XD 23 -hiv060-omicsintegrator1-params-OA2LKJB 22 -hiv060-omicsintegrator1-params-I6LVYQ7 3 -hiv060-omicsintegrator1-params-D7XEWKT 18 -hiv060-omicsintegrator1-params-7M4YEVF 23 -hiv060-omicsintegrator1-params-ZZYQSRD 22 -hiv060-omicsintegrator1-params-WQ6V5PX 22 -hiv060-omicsintegrator1-params-XQ2C7V7 22 -hiv060-omicsintegrator1-params-CML462S 22 -hiv060-omicsintegrator1-params-ZWKBRYR 1 -hiv060-omicsintegrator1-params-T77D7QZ 21 -hiv060-omicsintegrator1-params-SWWL7WP 19 -hiv060-omicsintegrator1-params-FYCKMYA 22 -hiv060-omicsintegrator1-params-H766NCA 22 -hiv060-omicsintegrator1-params-EAX635F 7 -hiv060-omicsintegrator1-params-2NKIR7L 9 -hiv060-omicsintegrator1-params-JZPC2XQ 15 -hiv060-omicsintegrator1-params-PI44E6Y 22 -hiv060-omicsintegrator1-params-Y3DQROJ 5 -hiv060-omicsintegrator1-params-RCIIWF5 13 -hiv060-omicsintegrator1-params-2NFVB7W 14 -hiv060-omicsintegrator1-params-OWG4JUJ 22 -hiv060-omicsintegrator1-params-PQYTDPN 6 -hiv060-omicsintegrator1-params-BS7GMXF 11 -hiv060-omicsintegrator1-params-7JTTPPE 14 diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/hac-horizontal.png b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/hac-horizontal.png deleted file mode 100644 index f2fbdb8..0000000 Binary files a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/hac-horizontal.png and /dev/null differ diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/hac-vertical.png b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/hac-vertical.png deleted file mode 100644 index 7b6c8ff..0000000 Binary files a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/hac-vertical.png and /dev/null differ diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/omicsintegrator1-ensemble-pathway.txt b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/omicsintegrator1-ensemble-pathway.txt deleted file mode 100644 index 6ab7aa1..0000000 --- a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/omicsintegrator1-ensemble-pathway.txt +++ /dev/null @@ -1,1101 +0,0 @@ -Node1 Node2 Frequency Direction -1433B_HUMAN FRYL_HUMAN 0.04 U -1433B_HUMAN L7RRS6_HUMAN 0.04 U -1433B_HUMAN PI3R4_HUMAN 0.04 U -1433B_HUMAN WEE1_HUMAN 0.04 U -1433E_HUMAN HDAC4_HUMAN 0.04 U -1433E_HUMAN KIF1C_HUMAN 0.04 U -1433E_HUMAN L7RRS6_HUMAN 0.04 U -1433G_HUMAN 3BP5L_HUMAN 0.04 U -1433G_HUMAN CCNY_HUMAN 0.04 U -1433G_HUMAN CDK17_HUMAN 0.04 U -1433G_HUMAN CLAP1_HUMAN 0.04 U -1433G_HUMAN CLK3_HUMAN 0.04 U -1433G_HUMAN DYR1A_HUMAN 0.04 U -1433G_HUMAN EDC3_HUMAN 0.04 U -1433G_HUMAN L7RRS6_HUMAN 0.04 U -1433G_HUMAN LC7L2_HUMAN 0.04 U -1433G_HUMAN LIPB1_HUMAN 0.04 U -1433G_HUMAN MFAP1_HUMAN 0.04 U -1433G_HUMAN MYCB2_HUMAN 0.04 U -1433G_HUMAN NOLC1_HUMAN 0.04 U -1433G_HUMAN OSBL3_HUMAN 0.04 U -1433G_HUMAN PR38B_HUMAN 0.04 U -1433G_HUMAN PRP19_HUMAN 0.04 U -1433G_HUMAN SON_HUMAN 0.04 U -1433G_HUMAN SRS10_HUMAN 0.04 U -1433G_HUMAN TR150_HUMAN 0.04 U -1433G_HUMAN TRA2A_HUMAN 0.04 U -1433G_HUMAN ZBT21_HUMAN 0.04 U -1433T_HUMAN CBL_HUMAN 0.04 U -1433T_HUMAN KLC2_HUMAN 0.04 U -1433T_HUMAN MPRIP_HUMAN 0.04 U -2A5A_HUMAN 2AAB_HUMAN 0.04 U -2A5E_HUMAN 2AAB_HUMAN 0.04 U -2AAB_HUMAN B3KUN1_HUMAN 0.04 U -4EBP1_HUMAN IF4E_HUMAN 0.04 U -4EBP1_HUMAN RPTOR_HUMAN 0.04 U -5NTC_HUMAN FXR2_HUMAN 0.04 U -A2ABF8_HUMAN CBX5_HUMAN 0.04 U -A2RUM7_HUMAN MDM2_HUMAN 0.04 U -A2RUM7_HUMAN N0E4C7_HUMAN 0.04 U -A4QPA9_HUMAN L7RRS6_HUMAN 0.04 U -A4QPA9_HUMAN M3K1_HUMAN 0.04 U -A4QPA9_HUMAN MK01_HUMAN 0.04 U -A8K3Y2_HUMAN M3K4_HUMAN 0.04 U -A8K3Y2_HUMAN M3K7_HUMAN 0.04 U -A8K3Y2_HUMAN MK14_HUMAN 0.04 U -AAPK1_HUMAN F263_HUMAN 0.04 D -AAPK1_HUMAN GBF1_HUMAN 0.04 D -AAPK1_HUMAN HS90A_HUMAN 0.04 U -AAPK1_HUMAN TBCD1_HUMAN 0.04 D -ABL1_HUMAN ABL2_HUMAN 0.04 D -ABL1_HUMAN L7RT18_HUMAN 0.04 U -ABL1_HUMAN PSA7_HUMAN 0.04 D -ACTB_HUMAN EMD_HUMAN 0.04 U -ACTS_HUMAN COF1_HUMAN 0.04 U -ACTS_HUMAN GELS_HUMAN 0.04 U -ADNP_HUMAN CBX5_HUMAN 0.04 U -ADRM1_HUMAN UBQL1_HUMAN 0.04 U -AFF4_HUMAN CDK9_HUMAN 0.04 U -AGFG1_HUMAN B7Z240_HUMAN 0.04 U -AKA10_HUMAN B2R5T5_HUMAN 0.04 U -AKA11_HUMAN GSK3B_HUMAN 0.04 U -AKAP1_HUMAN B2R5T5_HUMAN 0.04 U -AKP8L_HUMAN LAP2B_HUMAN 0.08 U -AKT1_HUMAN ACAP1_HUMAN 0.04 D -AKT1_HUMAN ACINU_HUMAN 0.04 D -AKT1_HUMAN CHSP1_HUMAN 0.04 D -AKT1_HUMAN FYV1_HUMAN 0.04 D -AKT1_HUMAN GRDN_HUMAN 0.04 D -AKT1_HUMAN MTOR_HUMAN 0.04 U -AKT1_HUMAN PALLD_HUMAN 0.04 D -AKT1_HUMAN PDCD4_HUMAN 0.04 D -AKT1_HUMAN PEA15_HUMAN 0.04 D -AKT1_HUMAN PHF20_HUMAN 0.04 D -AKT1_HUMAN PRPK_HUMAN 0.04 D -AKT1_HUMAN ROA1_HUMAN 0.04 D -AKT1_HUMAN TBCD4_HUMAN 0.04 D -AKT1_HUMAN TERA_HUMAN 0.04 D -AKT1_HUMAN TRMB_HUMAN 0.04 D -AKT1_HUMAN WNK1_HUMAN 0.04 D -AKT1_HUMAN ZYX_HUMAN 0.04 D -AKT2_HUMAN DP13A_HUMAN 0.04 U -AMFR_HUMAN INSI1_HUMAN 0.04 U -AMFR_HUMAN TERA_HUMAN 0.04 U -AMFR_HUMAN UB2G2_HUMAN 0.04 U -AMRA1_HUMAN BECN1_HUMAN 0.04 U -ANKH1_HUMAN IF4E_HUMAN 0.04 U -ANKZ1_HUMAN TERA_HUMAN 0.04 U -APC1_HUMAN B4DL80_HUMAN 0.04 U -APC_HUMAN CTNB1_HUMAN 0.04 U -ARF4_HUMAN EGFR_HUMAN 0.04 U -ARHG7_HUMAN GIT1_HUMAN 0.04 U -ARHG7_HUMAN PAK1_HUMAN 0.04 U -ARHGC_HUMAN RHOA_HUMAN 0.04 U -ARI2_HUMAN UB2L3_HUMAN 0.04 U -ARID2_HUMAN SMCE1_HUMAN 0.04 U -ARNT_HUMAN HIF1A_HUMAN 0.04 U -ASF1A_HUMAN B2R4R0_HUMAN 0.04 U -ASPP2_HUMAN K7PPA8_HUMAN 0.04 U -ASXL2_HUMAN BAP1_HUMAN 0.04 U -AT7L3_HUMAN UBP22_HUMAN 0.04 U -ATAD2_HUMAN SUMO2_HUMAN 0.04 U -ATF2_HUMAN JUN_HUMAN 0.04 U -ATM_HUMAN BAG6_HUMAN 0.04 D -ATM_HUMAN BRCA1_HUMAN 0.04 D -ATM_HUMAN DBF4A_HUMAN 0.04 D -ATM_HUMAN DYRK2_HUMAN 0.04 D -ATM_HUMAN HUWE1_HUMAN 0.04 D -ATM_HUMAN PRKDC_HUMAN 0.04 D -ATM_HUMAN RASF1_HUMAN 0.04 D -ATM_HUMAN RIF1_HUMAN 0.04 D -ATM_HUMAN SMC1A_HUMAN 0.04 D -ATM_HUMAN TAOK3_HUMAN 0.04 D -ATM_HUMAN UBR5_HUMAN 0.04 D -ATN1_HUMAN RERE_HUMAN 0.04 U -ATN1_HUMAN SIAH1_HUMAN 0.04 U -ATPG_HUMAN EGFR_HUMAN 0.04 U -AUP1_HUMAN UB2G2_HUMAN 0.04 U -AURKB_HUMAN ATM_HUMAN 0.04 D -AURKB_HUMAN DSN1_HUMAN 0.04 D -AURKB_HUMAN H33_HUMAN 0.04 D -AURKB_HUMAN HMGN2_HUMAN 0.04 D -AURKB_HUMAN J3KNL2_HUMAN 0.04 U -AURKB_HUMAN MBB1A_HUMAN 0.04 D -AURKB_HUMAN PARD3_HUMAN 0.04 D -AXIN1_HUMAN CTNB1_HUMAN 0.04 U -AXIN1_HUMAN GSK3B_HUMAN 0.04 U -B0LPE5_HUMAN B3KUN1_HUMAN 0.04 U -B0LPE5_HUMAN GSK3B_HUMAN 0.04 U -B0LPE5_HUMAN MDM2_HUMAN 0.04 U -B0LPE5_HUMAN MTOR_HUMAN 0.04 U -B0QZ35_HUMAN P53_HUMAN 0.04 U -B0QZ35_HUMAN UBP22_HUMAN 0.04 U -B1AHB0_HUMAN B4DWW4_HUMAN 0.04 U -B1AHB0_HUMAN MCM2_HUMAN 0.04 U -B1AHB0_HUMAN MCM3_HUMAN 0.04 U -B2R4R0_HUMAN BPTF_HUMAN 0.04 U -B2R4R0_HUMAN CENPA_HUMAN 0.04 U -B2R4R0_HUMAN EP300_HUMAN 0.04 U -B2R4R0_HUMAN KAT5_HUMAN 0.04 U -B2R5T5_HUMAN BIG2_HUMAN 0.04 U -B2R5T5_HUMAN KAPCA_HUMAN 0.04 U -B2RBV7_HUMAN DDB1_HUMAN 0.04 U -B2RBV7_HUMAN PHIP_HUMAN 0.04 U -B2RBV7_HUMAN RBX1_HUMAN 0.04 U -B3KTM8_HUMAN SIN3B_HUMAN 0.04 U -B3KUN1_HUMAN IGBP1_HUMAN 0.04 U -B4DL80_HUMAN CDC20_HUMAN 0.04 U -B4DL80_HUMAN CDC26_HUMAN 0.04 U -B4DP61_HUMAN COIL_HUMAN 0.04 U -B4DP61_HUMAN DDX20_HUMAN 0.04 U -B4DP61_HUMAN P53_HUMAN 0.04 U -B4DP61_HUMAN SMD1_HUMAN 0.04 U -B4DQB3_HUMAN NCOA1_HUMAN 0.04 U -B4DQB3_HUMAN SND1_HUMAN 0.04 U -B4DWW4_HUMAN GANP_HUMAN 0.04 U -B4E1U9_HUMAN J3KN59_HUMAN 0.04 U -B4E1U9_HUMAN PAK2_HUMAN 0.04 U -B4E1U9_HUMAN PAK4_HUMAN 0.04 U -B4E1U9_HUMAN WASP_HUMAN 0.04 U -B7Z240_HUMAN EPN1_HUMAN 0.04 U -B7Z240_HUMAN HGS_HUMAN 0.04 U -B7Z3D6_HUMAN CCNB1_HUMAN 0.04 U -B7Z3D6_HUMAN H15_HUMAN 0.04 U -B7Z3D6_HUMAN RB_HUMAN 0.04 U -BAD_HUMAN BCL2_HUMAN 0.04 U -BAD_HUMAN D0PNI1_HUMAN 0.04 U -BAP1_HUMAN FOXK1_HUMAN 0.04 U -BAP1_HUMAN HCFC1_HUMAN 0.04 U -BAZ1A_HUMAN SMCA5_HUMAN 0.04 U -BAZ1A_HUMAN SUMO2_HUMAN 0.04 U -BAZ1B_HUMAN SMCA5_HUMAN 0.04 U -BAZ2A_HUMAN SMCA5_HUMAN 0.04 U -BCL2_HUMAN BECN1_HUMAN 0.04 U -BCL2_HUMAN BNIP3_HUMAN 0.04 U -BCL2_HUMAN FKBP8_HUMAN 0.04 U -BCL6_HUMAN BCOR_HUMAN 0.04 U -BCL6_HUMAN HDAC1_HUMAN 0.04 U -BCL9_HUMAN CTNB1_HUMAN 0.04 U -BCR_HUMAN GRB2_HUMAN 0.04 U -BECN1_HUMAN UVRAG_HUMAN 0.04 U -BICD1_HUMAN GSK3B_HUMAN 0.04 U -BIRC5_HUMAN BOREA_HUMAN 0.04 U -BLK_HUMAN CBL_HUMAN 0.04 U -BLM_HUMAN MLH1_HUMAN 0.04 U -BLM_HUMAN P53_HUMAN 0.04 U -BLM_HUMAN RMI1_HUMAN 0.04 U -BMI1_HUMAN CBX4_HUMAN 0.04 U -BMI1_HUMAN CBX8_HUMAN 0.04 U -BMI1_HUMAN RING1_HUMAN 0.04 U -BNI3L_HUMAN BNIP3_HUMAN 0.04 U -BNIP3_HUMAN TMM11_HUMAN 0.04 U -BOREA_HUMAN INCE_HUMAN 0.08 U -BRAP_HUMAN RASH_HUMAN 0.04 U -BRCA1_HUMAN MYC_HUMAN 0.04 U -BRPF1_HUMAN KAT6A_HUMAN 0.2 U -BTF3_HUMAN G4XH65_HUMAN 0.04 U -C1QBP_HUMAN KPCA_HUMAN 0.04 U -C1QBP_HUMAN KPCD1_HUMAN 0.04 U -C1QBP_HUMAN KPCD_HUMAN 0.04 U -C8AP2_HUMAN SUMO2_HUMAN 0.04 U -CADH1_HUMAN CTNB1_HUMAN 0.04 U -CADH1_HUMAN HAKAI_HUMAN 0.04 U -CAF1A_HUMAN PCNA_HUMAN 0.04 U -CAF1B_HUMAN H31_HUMAN 0.04 U -CALX_HUMAN CFTR_HUMAN 0.04 U -CBL_HUMAN CD2AP_HUMAN 0.04 U -CBL_HUMAN CRKL_HUMAN 0.04 U -CBL_HUMAN EGFR_HUMAN 0.04 U -CBL_HUMAN GRB2_HUMAN 0.04 U -CBL_HUMAN L7RT18_HUMAN 0.04 U -CBL_HUMAN NCK1_HUMAN 0.04 U -CBL_HUMAN PLCG1_HUMAN 0.04 U -CBL_HUMAN UB2D2_HUMAN 0.04 U -CBP_HUMAN IRF3_HUMAN 0.04 U -CBP_HUMAN STAT1_HUMAN 0.04 U -CBX4_HUMAN CTBP1_HUMAN 0.04 U -CBX5_HUMAN H31_HUMAN 0.04 U -CBX5_HUMAN LBR_HUMAN 0.04 U -CBX5_HUMAN NIPBL_HUMAN 0.04 U -CBX5_HUMAN TIF1B_HUMAN 0.04 U -CBX8_HUMAN MOV10_HUMAN 0.04 U -CCAR2_HUMAN SIR1_HUMAN 0.04 U -CCNB1_HUMAN CDC20_HUMAN 0.04 U -CCND3_HUMAN CDK4_HUMAN 0.04 U -CCNE1_HUMAN CDN1A_HUMAN 0.04 U -CCNE1_HUMAN FBXW7_HUMAN 0.04 U -CCNT1_HUMAN CDK9_HUMAN 0.04 U -CCNT1_HUMAN MYC_HUMAN 0.04 U -CD2A2_HUMAN CDK4_HUMAN 0.04 U -CD2A2_HUMAN MDM2_HUMAN 0.04 U -CD2A2_HUMAN TRIPC_HUMAN 0.04 U -CD2AP_HUMAN CD2_HUMAN 0.04 U -CD2AP_HUMAN MB12A_HUMAN 0.04 U -CD2B2_HUMAN CD2_HUMAN 0.04 U -CD2B2_HUMAN PRP6_HUMAN 0.04 U -CD3E_HUMAN NCK1_HUMAN 0.04 U -CD3Z_HUMAN ZAP70_HUMAN 0.04 U -CDAN1_HUMAN PCNA_HUMAN 0.04 U -CDC20_HUMAN PTTG1_HUMAN 0.04 U -CDC42_HUMAN GDIR1_HUMAN 0.04 U -CDC42_HUMAN PAK1_HUMAN 0.04 U -CDC42_HUMAN WASP_HUMAN 0.04 U -CDC5L_HUMAN PRP19_HUMAN 0.04 U -CDC5L_HUMAN TTF2_HUMAN 0.04 U -CDC6_HUMAN ORC1_HUMAN 0.04 U -CDC73_HUMAN CTNB1_HUMAN 0.04 U -CDC73_HUMAN CTR9_HUMAN 0.04 U -CDC73_HUMAN LEO1_HUMAN 0.04 U -CDC7_HUMAN DBF4A_HUMAN 0.04 U -CDC7_HUMAN MCM2_HUMAN 0.04 D -CDC7_HUMAN PSIP1_HUMAN 0.04 D -CDK1_HUMAN CND3_HUMAN 0.04 D -CDK1_HUMAN DDX3X_HUMAN 0.04 D -CDK1_HUMAN DLGP5_HUMAN 0.04 D -CDK1_HUMAN FOXK2_HUMAN 0.04 D -CDK1_HUMAN MAP4_HUMAN 0.04 D -CDK1_HUMAN MK06_HUMAN 0.04 D -CDK1_HUMAN MPLKI_HUMAN 0.04 D -CDK1_HUMAN NPM_HUMAN 0.04 D -CDK1_HUMAN NUP98_HUMAN 0.04 D -CDK1_HUMAN NUSAP_HUMAN 0.04 D -CDK2_HUMAN ARI4A_HUMAN 0.04 D -CDK2_HUMAN ASHWN_HUMAN 0.04 D -CDK2_HUMAN BAP18_HUMAN 0.04 D -CDK2_HUMAN BD1L1_HUMAN 0.04 D -CDK2_HUMAN CDC6_HUMAN 0.04 D -CDK2_HUMAN CI040_HUMAN 0.04 D -CDK2_HUMAN DNLI1_HUMAN 0.04 D -CDK2_HUMAN DNLI3_HUMAN 0.04 D -CDK2_HUMAN H10_HUMAN 0.04 U -CDK2_HUMAN H15_HUMAN 0.04 U -CDK2_HUMAN HIRA_HUMAN 0.04 D -CDK2_HUMAN MILK1_HUMAN 0.04 D -CDK2_HUMAN NPAT_HUMAN 0.04 D -CDK2_HUMAN NU133_HUMAN 0.04 D -CDK2_HUMAN PB1_HUMAN 0.04 D -CDK2_HUMAN PRP31_HUMAN 0.04 D -CDK2_HUMAN PTN2_HUMAN 0.04 D -CDK2_HUMAN TCOF_HUMAN 0.04 D -CDK4_HUMAN CDN1A_HUMAN 0.04 U -CDK9_HUMAN DHX30_HUMAN 0.04 U -CDK9_HUMAN ELL2_HUMAN 0.04 U -CDK9_HUMAN RPB1_HUMAN 0.04 D -CDN1A_HUMAN PCNA_HUMAN 0.04 U -CDT1_HUMAN PCNA_HUMAN 0.04 U -CENPA_HUMAN HJURP_HUMAN 0.04 U -CEP55_HUMAN TS101_HUMAN 0.04 U -CEP72_HUMAN PCM1_HUMAN 0.2 U -CFTR_HUMAN NHRF1_HUMAN 0.04 U -CHAP1_HUMAN SUMO2_HUMAN 0.04 U -CHD3_HUMAN SUMO2_HUMAN 0.04 U -CHD4_HUMAN HDAC1_HUMAN 0.04 U -CHERP_HUMAN SNR27_HUMAN 0.04 U -CHIP_HUMAN HS90A_HUMAN 0.04 U -CHIP_HUMAN HSP74_HUMAN 0.04 U -CHK1_HUMAN 2A5D_HUMAN 0.04 D -CHK1_HUMAN AURKB_HUMAN 0.04 D -CHK1_HUMAN CLSPN_HUMAN 0.04 D -CHK1_HUMAN MPIP1_HUMAN 0.04 D -CHK1_HUMAN P53_HUMAN 0.04 D -CIR1_HUMAN SRSF2_HUMAN 0.04 U -CLK4_HUMAN UBL5_HUMAN 0.2 U -CND1_HUMAN CND3_HUMAN 0.1 U -CND2_HUMAN CND3_HUMAN 0.12 U -CND3_HUMAN SMC4_HUMAN 0.04 U -CNOT2_HUMAN CNOT3_HUMAN 0.08 U -COIL_HUMAN VRK1_HUMAN 0.04 U -COMD1_HUMAN COMD6_HUMAN 0.04 U -COMD1_HUMAN CUL2_HUMAN 0.04 U -CPSF5_HUMAN RLA1_HUMAN 0.04 U -CSK21_HUMAN AN32B_HUMAN 0.04 D -CSK21_HUMAN CD5_HUMAN 0.04 D -CSK21_HUMAN CTDP1_HUMAN 0.04 D -CSK21_HUMAN EF1B_HUMAN 0.04 U -CSK21_HUMAN HIRP3_HUMAN 0.04 U -CSK21_HUMAN HMGN1_HUMAN 0.04 D -CSK21_HUMAN IKBA_HUMAN 0.04 D -CSK21_HUMAN LA_HUMAN 0.04 D -CSK21_HUMAN MRP1_HUMAN 0.04 D -CSK21_HUMAN N0E4C7_HUMAN 0.04 U -CSK21_HUMAN PRPF3_HUMAN 0.04 D -CSK21_HUMAN RNPS1_HUMAN 0.04 D -CSK21_HUMAN ROA2_HUMAN 0.04 U -CSK21_HUMAN RRN3_HUMAN 0.04 D -CSN1_HUMAN CSN3_HUMAN 0.04 U -CSN3_HUMAN CSN5_HUMAN 0.04 U -CSN5_HUMAN CUL1_HUMAN 0.04 U -CTBP1_HUMAN HDAC1_HUMAN 0.04 U -CTBP1_HUMAN LCOR_HUMAN 0.04 U -CTBP1_HUMAN ZEB1_HUMAN 0.04 U -CTCF_HUMAN SUMO2_HUMAN 0.04 U -CTNB1_HUMAN HINT1_HUMAN 0.04 U -CTNB1_HUMAN PSN1_HUMAN 0.04 U -CTRO_HUMAN RHOA_HUMAN 0.04 U -CUL1_HUMAN RBX1_HUMAN 0.04 U -CUL2_HUMAN VHL_HUMAN 0.04 U -CUL3_HUMAN KCTD5_HUMAN 0.04 U -CUL3_HUMAN KEAP1_HUMAN 0.04 U -CUL3_HUMAN SHKB1_HUMAN 0.04 U -CUL4A_HUMAN DDB1_HUMAN 0.04 U -CYBP_HUMAN SIAH1_HUMAN 0.04 U -D0PNI1_HUMAN L7RRS6_HUMAN 0.04 U -D0PNI1_HUMAN MPIP2_HUMAN 0.04 U -D0PNI1_HUMAN RGS3_HUMAN 0.04 U -D0PNI1_HUMAN TSC2_HUMAN 0.04 U -D0PNI1_HUMAN VIME_HUMAN 0.04 U -DAXX_HUMAN ETS1_HUMAN 0.04 U -DAXX_HUMAN MCRS1_HUMAN 0.04 U -DAXX_HUMAN MDM2_HUMAN 0.04 U -DCAF5_HUMAN DDB1_HUMAN 0.04 U -DCP1A_HUMAN DCP2_HUMAN 0.08 U -DCP1A_HUMAN RENT1_HUMAN 0.04 U -DCP1B_HUMAN DCP2_HUMAN 0.08 U -DCP2_HUMAN EDC4_HUMAN 0.08 U -DDA1_HUMAN DDB1_HUMAN 0.04 U -DDX21_HUMAN JUN_HUMAN 0.04 U -DHX15_HUMAN RBM5_HUMAN 0.04 U -DMAP1_HUMAN RMP_HUMAN 0.04 U -DMAP1_HUMAN TS101_HUMAN 0.04 U -DNM3B_HUMAN DNMT1_HUMAN 0.04 U -DNMT1_HUMAN PCNA_HUMAN 0.04 U -DNMT1_HUMAN UHRF1_HUMAN 0.04 U -DOCK2_HUMAN RAC2_HUMAN 0.15 U -DOK2_HUMAN NCK1_HUMAN 0.04 U -DP13A_HUMAN HDAC2_HUMAN 0.04 U -DP13A_HUMAN RAB5A_HUMAN 0.04 U -DPOE1_HUMAN PCNA_HUMAN 0.04 U -DTX3L_HUMAN UB2D2_HUMAN 0.04 U -DX39B_HUMAN THOC5_HUMAN 0.04 U -DYR1A_HUMAN SF3B1_HUMAN 0.04 D -DYRK2_HUMAN KTNA1_HUMAN 0.04 D -E2F1_HUMAN RBL1_HUMAN 0.04 U -E2F1_HUMAN RB_HUMAN 0.04 U -E2F1_HUMAN SP2_HUMAN 0.04 U -E2F1_HUMAN TFDP2_HUMAN 0.04 U -E2F2_HUMAN RB_HUMAN 0.04 U -E2F3_HUMAN RB_HUMAN 0.04 U -E9KL35_HUMAN LAR4B_HUMAN 0.04 U -E9KL35_HUMAN SRC_HUMAN 0.04 U -E9KL35_HUMAN TYK2_HUMAN 0.04 U -EDF1_HUMAN TBP_HUMAN 0.04 U -EF1B_HUMAN EF1G_HUMAN 0.04 U -EGFR_HUMAN HGS_HUMAN 0.04 U -EGFR_HUMAN NCK2_HUMAN 0.04 U -EGFR_HUMAN PTN1_HUMAN 0.04 D -EGFR_HUMAN SH3L1_HUMAN 0.04 U -EGFR_HUMAN STA5B_HUMAN 0.04 U -EIF3A_HUMAN EIF3C_HUMAN 0.04 U -EIF3A_HUMAN EIF3F_HUMAN 0.04 U -EIF3A_HUMAN IF4B_HUMAN 0.04 U -EIF3A_HUMAN RENT1_HUMAN 0.04 U -EIF3F_HUMAN EIF3M_HUMAN 0.04 U -ELF1_HUMAN SP1_HUMAN 0.04 U -ELOA1_HUMAN ELOB_HUMAN 0.04 U -ELOB_HUMAN VHL_HUMAN 0.04 U -EMD_HUMAN LMNA_HUMAN 0.04 U -EMD_HUMAN YTDC1_HUMAN 0.04 U -EP300_HUMAN G4XH65_HUMAN 0.04 U -EP300_HUMAN H31_HUMAN 0.04 U -EP300_HUMAN HIF1A_HUMAN 0.04 U -EP300_HUMAN JMY_HUMAN 0.04 U -EP300_HUMAN JUN_HUMAN 0.04 U -EP300_HUMAN NP1L1_HUMAN 0.04 U -EP300_HUMAN P53_HUMAN 0.04 U -EP300_HUMAN SMAD3_HUMAN 0.04 U -EP400_HUMAN KAT5_HUMAN 0.04 U -ERBB2_HUMAN DOCK7_HUMAN 0.04 D -ERBB2_HUMAN HS90A_HUMAN 0.04 U -EXOS5_HUMAN EXOSX_HUMAN 0.04 U -EXOS5_HUMAN PO210_HUMAN 0.04 U -EXOS5_HUMAN SFPQ_HUMAN 0.04 U -FADD_HUMAN RIPK1_HUMAN 0.04 U -FADD_HUMAN TNR6_HUMAN 0.04 U -FBXW7_HUMAN NOTC1_HUMAN 0.04 U -FEN1_HUMAN PCNA_HUMAN 0.04 U -FEN1_HUMAN WRN_HUMAN 0.04 U -FINC_HUMAN TSP1_HUMAN 0.04 U -FKBP4_HUMAN HS90A_HUMAN 0.04 U -FLII_HUMAN LRRF1_HUMAN 0.05 U -FNBP4_HUMAN KHDR1_HUMAN 0.04 U -FOSL1_HUMAN JUN_HUMAN 0.04 U -FOSL1_HUMAN USF1_HUMAN 0.04 U -FXR1_HUMAN FXR2_HUMAN 0.04 U -FYN_HUMAN AGAP2_HUMAN 0.04 D -FYN_HUMAN ITPR1_HUMAN 0.04 D -FYN_HUMAN KHDR1_HUMAN 0.04 U -G45IP_HUMAN GA45G_HUMAN 0.04 U -G4XH65_HUMAN MED1_HUMAN 0.04 U -G4XH65_HUMAN NCOA1_HUMAN 0.04 U -G4XH65_HUMAN NCOA2_HUMAN 0.04 U -G4XH65_HUMAN NCOA3_HUMAN 0.04 U -G4XH65_HUMAN PHB2_HUMAN 0.04 U -G4XH65_HUMAN SAFB1_HUMAN 0.04 U -G4XH65_HUMAN SRC_HUMAN 0.04 U -G4XH65_HUMAN TADA3_HUMAN 0.04 U -G4XH65_HUMAN TDIF2_HUMAN 0.04 U -G4XH65_HUMAN TRAM1_HUMAN 0.04 U -GA45G_HUMAN PCNA_HUMAN 0.04 U -GA45G_HUMAN UT14A_HUMAN 0.04 U -GBRL2_HUMAN NIPS2_HUMAN 0.04 U -GBRL2_HUMAN SQSTM_HUMAN 0.04 U -GDIR1_HUMAN RAC2_HUMAN 0.04 U -GDIR1_HUMAN RHOA_HUMAN 0.04 U -GGA3_HUMAN RABE1_HUMAN 0.04 U -GRAP2_HUMAN LCP2_HUMAN 0.12 U -GSE1_HUMAN RCOR3_HUMAN 0.04 U -GSK3B_HUMAN CLAP2_HUMAN 0.04 D -GSK3B_HUMAN IPP2_HUMAN 0.04 D -GSK3B_HUMAN SPAG5_HUMAN 0.04 D -H12_HUMAN SUMO2_HUMAN 0.04 U -H13_HUMAN SUMO1_HUMAN 0.04 U -H2AX_HUMAN MDC1_HUMAN 0.04 U -H2AX_HUMAN TP53B_HUMAN 0.04 U -H31_HUMAN WDR5_HUMAN 0.04 U -H32_HUMAN UHRF1_HUMAN 0.04 U -HCFC1_HUMAN OGT1_HUMAN 0.04 U -HCFC1_HUMAN WDR5_HUMAN 0.04 U -HCK_HUMAN ELMO1_HUMAN 0.04 D -HCK_HUMAN WASP_HUMAN 0.04 U -HDAC1_HUMAN HDAC2_HUMAN 0.04 U -HDAC1_HUMAN KDM1A_HUMAN 0.04 U -HDAC1_HUMAN MTA2_HUMAN 0.04 U -HDAC1_HUMAN NSD2_HUMAN 0.04 U -HDAC1_HUMAN P66A_HUMAN 0.04 U -HDAC1_HUMAN P66B_HUMAN 0.04 U -HDAC1_HUMAN RB_HUMAN 0.04 U -HDAC1_HUMAN SIN3A_HUMAN 0.04 U -HDAC1_HUMAN SIN3B_HUMAN 0.04 U -HDAC1_HUMAN SP1_HUMAN 0.04 U -HDAC4_HUMAN MEF2D_HUMAN 0.04 U -HERC2_HUMAN RNF8_HUMAN 0.05 U -HGS_HUMAN TS101_HUMAN 0.04 U -HIF1A_HUMAN HS90A_HUMAN 0.04 U -HIF1A_HUMAN VHL_HUMAN 0.04 U -HIRA_HUMAN UBN1_HUMAN 0.04 U -HMGA1_HUMAN SP1_HUMAN 0.04 U -HNRH3_HUMAN ROA1_HUMAN 0.04 U -HNRPF_HUMAN SUMO1_HUMAN 0.04 U -HNRPK_HUMAN RBM42_HUMAN 0.04 U -HNRPK_HUMAN RBMX_HUMAN 0.04 U -HP1B3_HUMAN SUMO2_HUMAN 0.04 U -HS90A_HUMAN HS90B_HUMAN 0.04 U -HS90A_HUMAN HSF1_HUMAN 0.04 U -HSF1_HUMAN SYMPK_HUMAN 0.04 U -HSP74_HUMAN SODC_HUMAN 0.04 U -I2BPL_HUMAN SUMO2_HUMAN 0.04 U -ICLN_HUMAN SMD1_HUMAN 0.04 U -IF16_HUMAN K7PPA8_HUMAN 0.04 U -IF4E_HUMAN IF4G1_HUMAN 0.04 U -IGBP1_HUMAN PP4C_HUMAN 0.04 U -IKBA_HUMAN NFKB1_HUMAN 0.04 U -IKKA_HUMAN IKKB_HUMAN 0.04 U -IKKA_HUMAN NEMO_HUMAN 0.04 U -IKKA_HUMAN TRAF2_HUMAN 0.04 U -IKKB_HUMAN CYLD_HUMAN 0.04 D -IKKB_HUMAN DOK1_HUMAN 0.04 D -IMA1_HUMAN IMB1_HUMAN 0.04 U -IMB1_HUMAN RAN_HUMAN 0.04 U -INSI1_HUMAN PGRC1_HUMAN 0.04 U -INSI1_HUMAN SCAP_HUMAN 0.04 U -INT12_HUMAN SUMO2_HUMAN 0.04 U -IRAK1_HUMAN Q6FIE9_HUMAN 0.04 U -IRAK1_HUMAN TRAF6_HUMAN 0.04 U -K7PPA8_HUMAN MDM2_HUMAN 0.04 U -K7PPA8_HUMAN NOC2L_HUMAN 0.04 U -K7PPA8_HUMAN PPIF_HUMAN 0.04 U -K7PPA8_HUMAN SIR1_HUMAN 0.04 U -K7PPA8_HUMAN TOPK_HUMAN 0.04 U -KAPCA_HUMAN AKP13_HUMAN 0.04 D -KAPCA_HUMAN CBX3_HUMAN 0.04 D -KAPCA_HUMAN CDK16_HUMAN 0.04 D -KAPCA_HUMAN CFTR_HUMAN 0.04 D -KAPCA_HUMAN GDIR1_HUMAN 0.04 D -KAPCA_HUMAN GRP2_HUMAN 0.04 D -KAPCA_HUMAN H14_HUMAN 0.04 D -KAPCA_HUMAN KC1A_HUMAN 0.04 D -KAPCA_HUMAN LASP1_HUMAN 0.04 D -KAPCA_HUMAN NDE1_HUMAN 0.04 D -KAPCA_HUMAN NFAC1_HUMAN 0.04 D -KAPCA_HUMAN PTBP1_HUMAN 0.04 D -KAPCA_HUMAN PTN7_HUMAN 0.04 D -KAPCA_HUMAN PYR1_HUMAN 0.04 D -KAPCA_HUMAN SUN2_HUMAN 0.04 D -KAT6A_HUMAN RUNX1_HUMAN 0.04 U -KC1A_HUMAN NFAC3_HUMAN 0.04 D -KC1A_HUMAN TADBP_HUMAN 0.04 D -KC1D_HUMAN DVL2_HUMAN 0.04 D -KC1D_HUMAN MDM2_HUMAN 0.04 D -KCC4_HUMAN HNRPL_HUMAN 0.04 D -KDM1A_HUMAN RCOR3_HUMAN 0.04 U -KDM1A_HUMAN ZN217_HUMAN 0.04 U -KEAP1_HUMAN SQSTM_HUMAN 0.04 U -KEAP1_HUMAN T22D4_HUMAN 0.04 U -KHDR1_HUMAN LCK_HUMAN 0.04 U -KHDR1_HUMAN SRC_HUMAN 0.04 U -KHDR1_HUMAN WBP4_HUMAN 0.04 U -KIF22_HUMAN SIAH1_HUMAN 0.04 U -KLF10_HUMAN SP1_HUMAN 0.04 U -KMT2A_HUMAN MEN1_HUMAN 0.04 U -KMT2A_HUMAN WDR5_HUMAN 0.04 U -KMT2B_HUMAN WDR5_HUMAN 0.04 U -KPCA_HUMAN CD3G_HUMAN 0.04 D -KPCA_HUMAN COF1_HUMAN 0.04 D -KPCA_HUMAN LRP1_HUMAN 0.04 D -KPCA_HUMAN MARCS_HUMAN 0.04 D -KPCA_HUMAN SRF_HUMAN 0.04 D -KPCA_HUMAN THOC5_HUMAN 0.04 D -KPCA_HUMAN VTNC_HUMAN 0.04 D -KPCD1_HUMAN ARFP1_HUMAN 0.04 D -KPCD1_HUMAN OSBP1_HUMAN 0.04 D -KPCD1_HUMAN PI4KB_HUMAN 0.04 D -KPCD_HUMAN CXCR4_HUMAN 0.04 D -KPCD_HUMAN ELAV1_HUMAN 0.04 D -KPCL_HUMAN KPCD1_HUMAN 0.04 D -KS6B1_HUMAN EF2K_HUMAN 0.04 D -KS6B1_HUMAN NCBP1_HUMAN 0.04 D -KS6B1_HUMAN RPTOR_HUMAN 0.04 U -KS6B1_HUMAN RS6_HUMAN 0.04 D -KS6B1_HUMAN TCPB_HUMAN 0.04 D -KSYK_HUMAN HCLS1_HUMAN 0.04 D -KSYK_HUMAN IKZF1_HUMAN 0.04 D -KSYK_HUMAN LCK_HUMAN 0.04 U -KTN1_HUMAN RHOA_HUMAN 0.04 U -L7RRS6_HUMAN RASH_HUMAN 0.04 U -L7RRS6_HUMAN RB_HUMAN 0.04 U -L7RT18_HUMAN RPGF1_HUMAN 0.04 U -LAP2B_HUMAN LMNA_HUMAN 0.04 U -LAT_HUMAN PLCG1_HUMAN 0.04 U -LCK_HUMAN G3BP1_HUMAN 0.04 D -LCK_HUMAN KPCT_HUMAN 0.04 D -LCK_HUMAN PPAC_HUMAN 0.04 D -LCK_HUMAN PTN6_HUMAN 0.04 D -LCK_HUMAN SSBP3_HUMAN 0.04 D -LCK_HUMAN ZAP70_HUMAN 0.04 D -LCP2_HUMAN NCK1_HUMAN 0.04 U -LMNA_HUMAN LMNB1_HUMAN 0.04 U -LMNA_HUMAN TOIP1_HUMAN 0.04 U -LRP1_HUMAN TSP1_HUMAN 0.04 U -M3K1_HUMAN MP2K4_HUMAN 0.04 U -M3K2_HUMAN MP2K4_HUMAN 0.04 U -M3K5_HUMAN TRAF2_HUMAN 0.04 U -M3K5_HUMAN ZN622_HUMAN 0.04 U -M3K7_HUMAN TAB3_HUMAN 0.04 U -M3K7_HUMAN TRAF6_HUMAN 0.04 U -MAML1_HUMAN NOTC1_HUMAN 0.04 U -MAPK2_HUMAN PLK1_HUMAN 0.04 D -MAPK2_HUMAN RTN4_HUMAN 0.04 D -MARH7_HUMAN UBP7_HUMAN 0.04 U -MCM10_HUMAN MCM6_HUMAN 0.04 U -MCM2_HUMAN MCM6_HUMAN 0.04 U -MCM4_HUMAN MCM6_HUMAN 0.04 U -MCM4_HUMAN MCM7_HUMAN 0.04 U -MDM2_HUMAN MDM4_HUMAN 0.04 U -MDM2_HUMAN MTBP_HUMAN 0.04 U -MDM2_HUMAN RB_HUMAN 0.04 U -MDM2_HUMAN UB2D2_HUMAN 0.04 U -MED13_HUMAN MED1_HUMAN 0.04 U -MED17_HUMAN MED1_HUMAN 0.04 U -MERL_HUMAN NHRF1_HUMAN 0.04 U -MK01_HUMAN ABI1_HUMAN 0.04 D -MK01_HUMAN CENPE_HUMAN 0.04 D -MK01_HUMAN ERF_HUMAN 0.04 D -MK01_HUMAN EXOC7_HUMAN 0.04 D -MK01_HUMAN NU153_HUMAN 0.04 D -MK01_HUMAN PML_HUMAN 0.04 D -MK01_HUMAN RHG09_HUMAN 0.04 U -MK01_HUMAN RUNX1_HUMAN 0.04 D -MK01_HUMAN VINEX_HUMAN 0.04 D -MK08_HUMAN 4ET_HUMAN 0.04 D -MK14_HUMAN MAPK2_HUMAN 0.04 D -MK14_HUMAN MEF2A_HUMAN 0.04 D -MK14_HUMAN SL9A1_HUMAN 0.04 D -MK14_HUMAN ZNHI1_HUMAN 0.04 D -MLH1_HUMAN PMS2_HUMAN 0.04 U -MLH1_HUMAN ZC11A_HUMAN 0.04 U -MORC3_HUMAN SUMO2_HUMAN 0.04 U -MP2K4_HUMAN MK08_HUMAN 0.04 D -MSH6_HUMAN PCNA_HUMAN 0.04 U -MTG8R_HUMAN MTG8_HUMAN 0.04 U -MTG8_HUMAN NCOR1_HUMAN 0.04 U -MTOR_HUMAN 4EBP1_HUMAN 0.04 D -MTOR_HUMAN AKTS1_HUMAN 0.04 D -MTOR_HUMAN ANR17_HUMAN 0.04 D -MTOR_HUMAN BRD9_HUMAN 0.04 D -MTOR_HUMAN ELL_HUMAN 0.04 D -MTOR_HUMAN LARP1_HUMAN 0.04 D -MTOR_HUMAN PATL1_HUMAN 0.04 D -MTOR_HUMAN RICTR_HUMAN 0.04 U -MTOR_HUMAN SRRM2_HUMAN 0.04 D -MTOR_HUMAN UBR4_HUMAN 0.04 D -MTOR_HUMAN ULK1_HUMAN 0.04 D -MYB_HUMAN SUMO1_HUMAN 0.04 U -NAB1_HUMAN SUMO2_HUMAN 0.04 U -NCOA1_HUMAN RARA_HUMAN 0.04 U -NCOR1_HUMAN RARA_HUMAN 0.04 U -NEDD4_HUMAN SGK1_HUMAN 0.04 U -NEDD4_HUMAN UB2D2_HUMAN 0.04 U -NEDD4_HUMAN UB2E1_HUMAN 0.04 U -NEDD4_HUMAN UB2L3_HUMAN 0.04 U -NEDD4_HUMAN WBP2_HUMAN 0.04 U -NFYA_HUMAN SP1_HUMAN 0.04 U -NHRF1_HUMAN PHAG1_HUMAN 0.04 U -NOL8_HUMAN RRAGA_HUMAN 0.04 U -NONO_HUMAN SFPQ_HUMAN 0.04 U -NOTC1_HUMAN SNW1_HUMAN 0.04 U -NPM_HUMAN NUCL_HUMAN 0.04 U -NSF1C_HUMAN TERA_HUMAN 0.04 U -NSF1C_HUMAN VCIP1_HUMAN 0.04 U -NTF2_HUMAN RAN_HUMAN 0.04 U -NU107_HUMAN NU133_HUMAN 0.11 U -NUMA1_HUMAN SUMO2_HUMAN 0.04 U -NUMBL_HUMAN TRAF6_HUMAN 0.04 U -NUP88_HUMAN NUP98_HUMAN 0.04 U -P53_HUMAN RAD51_HUMAN 0.04 U -P53_HUMAN SUMO1_HUMAN 0.04 U -P53_HUMAN TP53B_HUMAN 0.04 U -P53_HUMAN UBP7_HUMAN 0.04 U -PAK1_HUMAN FLNA_HUMAN 0.04 D -PAK1_HUMAN FXR1_HUMAN 0.04 D -PAK1_HUMAN MINT_HUMAN 0.04 D -PAK1_HUMAN PA2G4_HUMAN 0.04 D -PAK1_HUMAN STMN1_HUMAN 0.04 D -PCNA_HUMAN RAD18_HUMAN 0.04 U -PCNA_HUMAN RFC1_HUMAN 0.04 U -PCNA_HUMAN UBP1_HUMAN 0.04 U -PDS5A_HUMAN SMC3_HUMAN 0.04 U -PDS5B_HUMAN RAD21_HUMAN 0.04 U -PEX10_HUMAN PEX19_HUMAN 0.04 U -PEX19_HUMAN PEX3_HUMAN 0.04 U -PININ_HUMAN PNISR_HUMAN 0.08 U -PININ_HUMAN SRRM2_HUMAN 0.04 U -PKHO1_HUMAN PRS8_HUMAN 0.04 U -PKN1_HUMAN RHOA_HUMAN 0.04 U -PLEC_HUMAN VIME_HUMAN 0.04 U -PLK1_HUMAN ATX10_HUMAN 0.04 D -PLK1_HUMAN BIRC5_HUMAN 0.04 D -PLK1_HUMAN CLIP1_HUMAN 0.04 D -PLK1_HUMAN GTSE1_HUMAN 0.04 D -PLK1_HUMAN NUDC_HUMAN 0.04 D -PLK1_HUMAN PCNT_HUMAN 0.04 D -PLK1_HUMAN PMYT1_HUMAN 0.04 D -PLK1_HUMAN TERF1_HUMAN 0.04 D -PLK1_HUMAN TOP2A_HUMAN 0.04 D -PMYT1_HUMAN CDK1_HUMAN 0.04 D -PP4C_HUMAN PP4R2_HUMAN 0.04 U -PPIP1_HUMAN PTN18_HUMAN 0.04 U -PPIP1_HUMAN WASP_HUMAN 0.04 U -PR40A_HUMAN SF3A1_HUMAN 0.04 U -PRKDC_HUMAN CASP2_HUMAN 0.04 D -PRKDC_HUMAN HNRPU_HUMAN 0.04 D -PRKN2_HUMAN PSMD4_HUMAN 0.04 U -PRKN2_HUMAN UB2J1_HUMAN 0.04 U -PRKN2_HUMAN UB2L3_HUMAN 0.04 U -PRP19_HUMAN RBM5_HUMAN 0.04 U -PRPF3_HUMAN SF3B2_HUMAN 0.04 U -PRPF3_HUMAN U2AF2_HUMAN 0.04 U -PRS6B_HUMAN PRS8_HUMAN 0.04 U -PRS8_HUMAN RARA_HUMAN 0.04 U -PSA2_HUMAN PSA5_HUMAN 0.04 U -PSA2_HUMAN PSA7_HUMAN 0.04 U -PSD11_HUMAN PSD13_HUMAN 0.04 U -PSD12_HUMAN PSD13_HUMAN 0.04 U -PSD13_HUMAN PSMD4_HUMAN 0.04 U -PSMD4_HUMAN RD23A_HUMAN 0.04 U -PSMD4_HUMAN RD23B_HUMAN 0.04 U -PSMD4_HUMAN UBQL1_HUMAN 0.04 U -PTTG1_HUMAN PTTG_HUMAN 0.04 U -PTTG1_HUMAN RS10_HUMAN 0.04 U -Q56A76_HUMAN SIN3A_HUMAN 0.04 U -Q56A76_HUMAN SMRC1_HUMAN 0.04 U -Q6FIE9_HUMAN TOM1_HUMAN 0.04 U -R51A1_HUMAN RAD51_HUMAN 0.04 U -RAB5A_HUMAN RABE1_HUMAN 0.04 U -RAD21_HUMAN SMC3_HUMAN 0.04 U -RAD21_HUMAN STAG2_HUMAN 0.04 U -RAD21_HUMAN WAPL_HUMAN 0.04 U -RAGP1_HUMAN SUMO1_HUMAN 0.04 U -RAGP1_HUMAN UBC9_HUMAN 0.04 U -RANG_HUMAN RAN_HUMAN 0.04 U -RAN_HUMAN RBP2_HUMAN 0.04 U -RAN_HUMAN TNPO1_HUMAN 0.04 U -RBM5_HUMAN SR140_HUMAN 0.2 U -RBMX_HUMAN TRA2B_HUMAN 0.04 U -RBP2_HUMAN UBC9_HUMAN 0.04 U -RBX1_HUMAN UB2D2_HUMAN 0.04 U -RB_HUMAN TAF1_HUMAN 0.04 U -RB_HUMAN TRIPB_HUMAN 0.04 U -RB_HUMAN UBF1_HUMAN 0.04 U -RD23B_HUMAN XPC_HUMAN 0.04 U -REN3B_HUMAN RENT1_HUMAN 0.04 U -RENT1_HUMAN SMG5_HUMAN 0.04 U -RENT1_HUMAN STAU1_HUMAN 0.04 U -RHOA_HUMAN ROCK1_HUMAN 0.04 U -RHOA_HUMAN TRIO_HUMAN 0.04 U -RIC8A_HUMAN UBQL1_HUMAN 0.04 U -RIPK1_HUMAN TNR1A_HUMAN 0.04 U -RIPK1_HUMAN TRAF2_HUMAN 0.04 U -RN168_HUMAN UBE2N_HUMAN 0.04 U -RN169_HUMAN SUMO2_HUMAN 0.04 U -RNF25_HUMAN UB2D2_HUMAN 0.04 U -RNF31_HUMAN TNFA_HUMAN 0.04 U -RNF8_HUMAN UBE2N_HUMAN 0.04 U -ROCK1_HUMAN ADDA_HUMAN 0.04 D -ROCK1_HUMAN MYPT1_HUMAN 0.04 D -ROCK1_HUMAN RHG35_HUMAN 0.04 D -RPTOR_HUMAN RRAGA_HUMAN 0.04 U -RRAGA_HUMAN RRAGC_HUMAN 0.04 U -RRAGA_HUMAN RRAGD_HUMAN 0.04 U -RSF1_HUMAN SMCA5_HUMAN 0.04 U -SAFB1_HUMAN SAFB2_HUMAN 0.04 U -SATB1_HUMAN UBC9_HUMAN 0.04 U -SCAFB_HUMAN U2AF2_HUMAN 0.04 U -SENP1_HUMAN SUMO2_HUMAN 0.04 U -SENP2_HUMAN SUMO1_HUMAN 0.04 U -SENP3_HUMAN SUMO2_HUMAN 0.04 U -SET1A_HUMAN WDR5_HUMAN 0.04 U -SF3A1_HUMAN SF3A3_HUMAN 0.04 U -SFPQ_HUMAN SUMO1_HUMAN 0.04 U -SGK1_HUMAN NDRG1_HUMAN 0.04 D -SGK1_HUMAN NDRG2_HUMAN 0.04 D -SGK3_HUMAN FLII_HUMAN 0.05 D -SIAH1_HUMAN UB2D2_HUMAN 0.04 U -SMAD3_HUMAN SMAD4_HUMAN 0.04 U -SMAD3_HUMAN UBP15_HUMAN 0.04 U -SMAD4_HUMAN TGFA1_HUMAN 0.04 U -SMC1A_HUMAN SMC3_HUMAN 0.04 U -SMCE1_HUMAN SMRC1_HUMAN 0.04 U -SMRCD_HUMAN SUMO2_HUMAN 0.04 U -SNUT1_HUMAN SUMO2_HUMAN 0.04 U -SNUT1_HUMAN UBL5_HUMAN 0.04 U -SP16H_HUMAN SSRP1_HUMAN 0.04 U -SQSTM_HUMAN TRAF6_HUMAN 0.04 U -SRC_HUMAN BCLF1_HUMAN 0.04 D -SRC_HUMAN EMD_HUMAN 0.04 D -SRC_HUMAN FIP1_HUMAN 0.04 D -SRC_HUMAN GDIR2_HUMAN 0.04 D -SRC_HUMAN GTF2I_HUMAN 0.04 D -SRC_HUMAN HNRPK_HUMAN 0.04 D -SRC_HUMAN SPD2B_HUMAN 0.04 D -SRC_HUMAN SRRT_HUMAN 0.04 D -SRC_HUMAN ZC3H4_HUMAN 0.04 D -SSRP1_HUMAN SUMO2_HUMAN 0.04 U -STK39_HUMAN S12A2_HUMAN 0.08 D -STK39_HUMAN S4A4_HUMAN 0.08 D -SUGP1_HUMAN U2AF2_HUMAN 0.04 U -SUMO1_HUMAN TOP2B_HUMAN 0.04 U -SUMO2_HUMAN TF3C1_HUMAN 0.04 U -SUMO2_HUMAN TFR1_HUMAN 0.04 U -SUMO2_HUMAN TPR_HUMAN 0.04 U -SUMO2_HUMAN UBC9_HUMAN 0.04 U -SUMO2_HUMAN ZN451_HUMAN 0.04 U -T2EA_HUMAN T2EB_HUMAN 0.04 U -T2EA_HUMAN TBP_HUMAN 0.04 U -T2FA_HUMAN TAF1_HUMAN 0.04 U -TAF1_HUMAN TBP_HUMAN 0.04 U -TANK_HUMAN TBK1_HUMAN 0.04 U -TB182_HUMAN TNKS1_HUMAN 0.04 U -TBK1_HUMAN IRF3_HUMAN 0.04 D -TBK1_HUMAN TRAF2_HUMAN 0.04 U -TBP_HUMAN TF2B_HUMAN 0.04 U -TDIF1_HUMAN TDT_HUMAN 0.21 U -TERF1_HUMAN TNKS1_HUMAN 0.04 U -TF3C1_HUMAN TF3C2_HUMAN 0.04 U -TFR1_HUMAN TRFE_HUMAN 0.12 U -TNFA_HUMAN TNR1A_HUMAN 0.04 U -TNIK_HUMAN TRAF2_HUMAN 0.04 U -TOPK_HUMAN PRC1_HUMAN 0.04 D -TRAF2_HUMAN TRAF6_HUMAN 0.04 U -TRAF6_HUMAN UBE2N_HUMAN 0.04 U -UBE2N_HUMAN ZNRF2_HUMAN 0.04 U -UBP11_HUMAN UBP7_HUMAN 0.04 U -VRK1_HUMAN BAF_HUMAN 0.04 D -WASP_HUMAN WIPF1_HUMAN 0.04 U -WASP_HUMAN WIPF2_HUMAN 0.04 U -WRN_HUMAN XRCC6_HUMAN 0.04 U -ZAP70_HUMAN DBNL_HUMAN 0.05 D -ZAP70_HUMAN DUS3_HUMAN 0.05 D -ESYT1_HUMAN ESYT2_HUMAN 0.26 U -PRR12_HUMAN PUM1_HUMAN 0.33 U -SASH3_HUMAN SC22B_HUMAN 0.18 U -2A5D_HUMAN NEK1_HUMAN 0.12 U -5NTC_HUMAN SZRD1_HUMAN 0.12 U -AFF4_HUMAN ELL2_HUMAN 0.12 U -CENPF_HUMAN NDE1_HUMAN 0.18 U -CENPF_HUMAN NU133_HUMAN 0.12 U -CHAP1_HUMAN TXLNG_HUMAN 0.12 U -CLAP1_HUMAN SPAG5_HUMAN 0.13 U -CPIN1_HUMAN ENY2_HUMAN 0.18 U -DCP1B_HUMAN EDC4_HUMAN 0.09 U -EDC4_HUMAN FBLN1_HUMAN 0.12 U -FNBP4_HUMAN LBR_HUMAN 0.12 U -FOXK1_HUMAN GAPD1_HUMAN 0.12 U -FOXK1_HUMAN UBP24_HUMAN 0.12 U -IWS1_HUMAN SETD2_HUMAN 0.18 U -KCC4_HUMAN STMN1_HUMAN 0.12 D -KTNA1_HUMAN KTNB1_HUMAN 0.21 U -LMO7_HUMAN UBAC2_HUMAN 0.15 U -MADD_HUMAN VP13D_HUMAN 0.12 U -MPLKI_HUMAN RBM27_HUMAN 0.15 U -MPLKI_HUMAN SCAM3_HUMAN 0.12 U -NF2IP_HUMAN NFAC2_HUMAN 0.12 U -NIPBL_HUMAN SCC4_HUMAN 0.15 U -NOL8_HUMAN RRAGD_HUMAN 0.12 U -NUCKS_HUMAN RBM42_HUMAN 0.12 U -PATL1_HUMAN PHF20_HUMAN 0.24 U -PDS5B_HUMAN WAPL_HUMAN 0.12 U -PHF8_HUMAN SET1A_HUMAN 0.15 U -RALY_HUMAN WDR62_HUMAN 0.12 U -RB15B_HUMAN RBM15_HUMAN 0.18 U -RBM27_HUMAN ZC11A_HUMAN 0.12 U -SERF2_HUMAN VTDB_HUMAN 0.18 U -TBCD5_HUMAN VP26B_HUMAN 0.21 U -TDIF1_HUMAN TREF1_HUMAN 0.13 U -TXLNG_HUMAN WIPF2_HUMAN 0.12 U -TXLNG_HUMAN ZC11A_HUMAN 0.12 U -VPS72_HUMAN ZC3H1_HUMAN 0.12 U -4ET_HUMAN SPAG5_HUMAN 0.09 U -DEFI6_HUMAN RAC2_HUMAN 0.09 U -GDIR2_HUMAN RAC2_HUMAN 0.11 U -IBP2_HUMAN TRFE_HUMAN 0.14 U -ICMT_HUMAN RAC2_HUMAN 0.09 U -LIPA3_HUMAN LIPB1_HUMAN 0.1 U -NFX1_HUMAN SCPDL_HUMAN 0.08 U -2A5A_HUMAN NEK1_HUMAN 0.08 U -CE022_HUMAN WBP11_HUMAN 0.08 U -DDRGK_HUMAN UFL1_HUMAN 0.07 U -IF2B1_HUMAN UFL1_HUMAN 0.07 U -PDS5A_HUMAN WAPL_HUMAN 0.07 U -RBM5_HUMAN WBP11_HUMAN 0.08 U -MPRIP_HUMAN MYPT1_HUMAN 0.08 U -NU153_HUMAN SENP2_HUMAN 0.08 U -AB1IP_HUMAN EVL_HUMAN 0.05 U -AB1IP_HUMAN LCP2_HUMAN 0.06 U -ACAP1_HUMAN TFR1_HUMAN 0.06 U -AFF4_HUMAN ELL_HUMAN 0.06 U -AKA10_HUMAN KAP3_HUMAN 0.06 U -AKA11_HUMAN KAP3_HUMAN 0.06 U -AKP13_HUMAN KPCL_HUMAN 0.06 U -AMPD2_HUMAN PP4R2_HUMAN 0.06 U -ARI3A_HUMAN E2F2_HUMAN 0.06 U -ARID2_HUMAN PB1_HUMAN 0.06 U -AT7L3_HUMAN ENY2_HUMAN 0.06 U -ATX2L_HUMAN G3BP2_HUMAN 0.06 U -BANP_HUMAN SP2_HUMAN 0.09 U -BCLF1_HUMAN CHD1_HUMAN 0.06 U -BRAP_HUMAN KSR1_HUMAN 0.06 U -BTF3_HUMAN PDCD4_HUMAN 0.06 U -BTF3_HUMAN RWDD4_HUMAN 0.06 U -CAF1A_HUMAN CAF1B_HUMAN 0.06 U -CENPE_HUMAN CENPF_HUMAN 0.06 U -CND2_HUMAN DDX3X_HUMAN 0.05 U -DC1L1_HUMAN PCNT_HUMAN 0.06 U -DCP1A_HUMAN EDC3_HUMAN 0.02 U -DCP1A_HUMAN ZCCHV_HUMAN 0.03 U -DCP1B_HUMAN EDC3_HUMAN 0.09 U -DNJB6_HUMAN SPT6H_HUMAN 0.06 U -DNMBP_HUMAN EVL_HUMAN 0.06 U -DNMBP_HUMAN WIPF2_HUMAN 0.06 U -ELF1_HUMAN NFAC1_HUMAN 0.06 U -EPN4_HUMAN STALP_HUMAN 0.06 U -FRYL_HUMAN HOME3_HUMAN 0.06 U -GPTC8_HUMAN NUMBL_HUMAN 0.06 U -GRAP2_HUMAN LAX1_HUMAN 0.06 U -HAUS6_HUMAN YBOX3_HUMAN 0.09 U -HMGB3_HUMAN THIC_HUMAN 0.06 U -IWS1_HUMAN SPT6H_HUMAN 0.06 U -LAP2B_HUMAN LMNB1_HUMAN 0.05 U -LARP1_HUMAN RRP1B_HUMAN 0.06 U -LCP2_HUMAN PHAG1_HUMAN 0.06 U -MTMR2_HUMAN MTMR5_HUMAN 0.06 U -MTMR2_HUMAN SZRD1_HUMAN 0.06 U -NOL8_HUMAN RRAGC_HUMAN 0.06 U -NPAT_HUMAN WEE1_HUMAN 0.06 U -NU107_HUMAN NU153_HUMAN 0.06 U -NU107_HUMAN WRIP1_HUMAN 0.06 U -ORC1_HUMAN ORC3_HUMAN 0.06 U -OSB11_HUMAN WDR44_HUMAN 0.06 U -P66A_HUMAN PAK4_HUMAN 0.06 U -PCM1_HUMAN PCNT_HUMAN 0.06 U -PPAC_HUMAN SMBT1_HUMAN 0.06 U -PRC2A_HUMAN SSRG_HUMAN 0.06 U -PRC2A_HUMAN UBP2L_HUMAN 0.06 U -REN3B_HUMAN WBP11_HUMAN 0.06 U -RN168_HUMAN TRIPC_HUMAN 0.04 U -RRP1B_HUMAN SDF2L_HUMAN 0.06 U -RRP1B_HUMAN SRSF6_HUMAN 0.06 U -SH3K1_HUMAN SHKB1_HUMAN 0.06 U -SLK_HUMAN TTC4_HUMAN 0.06 U -SNP23_HUMAN STXB5_HUMAN 0.06 U -SNX2_HUMAN TBC15_HUMAN 0.06 U -SRS10_HUMAN SRSF6_HUMAN 0.05 U -SRS10_HUMAN TCOF_HUMAN 0.05 U -TCOF_HUMAN TTC4_HUMAN 0.06 U -TDIF2_HUMAN TDT_HUMAN 0.06 U -TTC4_HUMAN TXLNG_HUMAN 0.05 U -WBP11_HUMAN ZC3HD_HUMAN 0.06 U -AKAP1_HUMAN KAP3_HUMAN 0.04 U -ARI4B_HUMAN SP130_HUMAN 0.06 U -ARP10_HUMAN HINT1_HUMAN 0.04 U -BRAP_HUMAN CENPF_HUMAN 0.04 U -CEP55_HUMAN MB12A_HUMAN 0.05 U -CEP55_HUMAN P121A_HUMAN 0.05 U -CEP55_HUMAN PCNT_HUMAN 0.04 U -CND1_HUMAN NU153_HUMAN 0.04 U -CO3_HUMAN VTDB_HUMAN 0.04 U -DCP1A_HUMAN DCP1B_HUMAN 0.01 U -E2F2_HUMAN TFDP2_HUMAN 0.04 U -EP400_HUMAN TBCD4_HUMAN 0.05 U -EXOC1_HUMAN EXOC4_HUMAN 0.05 U -EXOC1_HUMAN TRIO_HUMAN 0.05 U -I2BP2_HUMAN RIC8A_HUMAN 0.04 U -IKZF1_HUMAN IKZF2_HUMAN 0.04 U -KAP3_HUMAN LASP1_HUMAN 0.04 U -LAP2A_HUMAN LMNB1_HUMAN 0.04 U -LBR_HUMAN LMNB1_HUMAN 0.03 U -LGUL_HUMAN PPAC_HUMAN 0.04 U -LMNB1_HUMAN TOIP1_HUMAN 0.04 U -MB12A_HUMAN SH3K1_HUMAN 0.04 U -PACS1_HUMAN WDR37_HUMAN 0.04 U -PCBP2_HUMAN PTBP1_HUMAN 0.04 U -SCAM2_HUMAN SNP23_HUMAN 0.04 U -SR140_HUMAN TBCD4_HUMAN 0.05 U -COR1A_HUMAN YTDC1_HUMAN 0.04 U -EDC4_HUMAN YTDC1_HUMAN 0.04 U -KAT6A_HUMAN RERE_HUMAN 0.04 U -KIF2A_HUMAN KLC2_HUMAN 0.03 U -KLC2_HUMAN PATL1_HUMAN 0.04 U -KLC2_HUMAN SLAI2_HUMAN 0.04 U -MPRIP_HUMAN YTDC1_HUMAN 0.04 U -PRC2A_HUMAN RERE_HUMAN 0.04 U -PRC2B_HUMAN RERE_HUMAN 0.04 U -PRSR2_HUMAN YTDC1_HUMAN 0.04 U -AKP8L_HUMAN LBR_HUMAN 0.03 U -ATAD2_HUMAN E2F2_HUMAN 0.03 U -ATAD5_HUMAN BAZ1B_HUMAN 0.03 U -ATAD5_HUMAN UBP1_HUMAN 0.03 U -BAZ1A_HUMAN BAZ1B_HUMAN 0.03 U -BAZ1B_HUMAN CAF1B_HUMAN 0.03 U -BIG2_HUMAN EXOC7_HUMAN 0.03 U -BIG2_HUMAN KAP3_HUMAN 0.03 U -BIG2_HUMAN NUP88_HUMAN 0.03 U -BPL1_HUMAN DDX52_HUMAN 0.03 U -CD82_HUMAN NUP88_HUMAN 0.03 U -CDK12_HUMAN ELOA1_HUMAN 0.03 U -CHD1L_HUMAN UBE2O_HUMAN 0.03 U -CLCA_HUMAN TACC3_HUMAN 0.03 U -COX5A_HUMAN RAB8A_HUMAN 0.03 U -CPIN1_HUMAN IPP2_HUMAN 0.03 U -CPSF7_HUMAN VINEX_HUMAN 0.03 U -DCP2_HUMAN ZCCHV_HUMAN 0.03 U -DDX23_HUMAN THOC5_HUMAN 0.03 U -DDX3X_HUMAN IF4B_HUMAN 0.02 U -DIDO1_HUMAN WWP2_HUMAN 0.03 U -DLG5_HUMAN VINEX_HUMAN 0.03 U -DNJB6_HUMAN MLF2_HUMAN 0.03 U -DNJC8_HUMAN PIN4_HUMAN 0.03 U -EHMT1_HUMAN JARD2_HUMAN 0.03 U -EHMT1_HUMAN MPP8_HUMAN 0.03 U -EM55_HUMAN GLPC_HUMAN 0.03 U -EXOC7_HUMAN ZC3HE_HUMAN 0.03 U -FXL19_HUMAN MTG8R_HUMAN 0.03 U -H1X_HUMAN RRP1B_HUMAN 0.03 U -HIRP3_HUMAN SNX2_HUMAN 0.03 U -IF4B_HUMAN PHAX_HUMAN 0.03 U -IPP2_HUMAN ZN622_HUMAN 0.03 U -KMT2B_HUMAN MEN1_HUMAN 0.03 U -LAGE3_HUMAN MCFD2_HUMAN 0.03 U -LAGE3_HUMAN PTMS_HUMAN 0.03 U -LSM3_HUMAN THOC5_HUMAN 0.03 U -MAML1_HUMAN NOTC2_HUMAN 0.03 U -MCMBP_HUMAN RPR1A_HUMAN 0.03 U -MFAP1_HUMAN RL37_HUMAN 0.03 U -MFAP1_HUMAN SR140_HUMAN 0.03 U -MTG8R_HUMAN RERE_HUMAN 0.03 U -NUP88_HUMAN RBM42_HUMAN 0.03 U -PARP6_HUMAN RPR1A_HUMAN 0.03 U -PHP14_HUMAN PTMS_HUMAN 0.03 U -PI3R4_HUMAN UVRAG_HUMAN 0.03 U -PININ_HUMAN TOE1_HUMAN 0.03 U -PRCC_HUMAN TOE1_HUMAN 0.03 U -RAB8A_HUMAN TFR1_HUMAN 0.03 U -RBM23_HUMAN RBM39_HUMAN 0.03 U -RBM39_HUMAN TOE1_HUMAN 0.03 U -REN3B_HUMAN TR150_HUMAN 0.03 U -RNF10_HUMAN UBE2O_HUMAN 0.03 U -SEPT3_HUMAN WBP2_HUMAN 0.03 U -SRSF6_HUMAN TOE1_HUMAN 0.03 U -TAGL2_HUMAN UBP1_HUMAN 0.03 U -TETN_HUMAN TR150_HUMAN 0.03 U -TGFA1_HUMAN UVRAG_HUMAN 0.03 U -THOC5_HUMAN ZC3HF_HUMAN 0.03 U -UBP45_HUMAN YLPM1_HUMAN 0.03 U -AASD1_HUMAN ARC1A_HUMAN 0.02 U -APOB_HUMAN SC61B_HUMAN 0.02 U -ARC1A_HUMAN EXOC7_HUMAN 0.02 U -ARC1A_HUMAN SC22B_HUMAN 0.02 U -BAZ1B_HUMAN SMRC2_HUMAN 0.02 U -BMP2K_HUMAN MBP_HUMAN 0.02 U -BNI3L_HUMAN DUS3_HUMAN 0.02 U -BNI3L_HUMAN SMCO4_HUMAN 0.02 U -BNI3L_HUMAN TMM11_HUMAN 0.02 U -DCP2_HUMAN NU107_HUMAN 0.01 U -DCP2_HUMAN SPT6H_HUMAN 0.02 U -DDX42_HUMAN NOSIP_HUMAN 0.02 U -DDX42_HUMAN PHF20_HUMAN 0.02 U -DDX42_HUMAN PIN4_HUMAN 0.02 U -DDX42_HUMAN RECQ5_HUMAN 0.02 U -DDX42_HUMAN SF3A1_HUMAN 0.02 U -DDX42_HUMAN SR140_HUMAN 0.02 U -EXOC4_HUMAN EXOC7_HUMAN 0.02 U -HMGN1_HUMAN HMGN2_HUMAN 0.02 U -IF4B_HUMAN NU107_HUMAN 0.01 U -LDB1_HUMAN SSBP3_HUMAN 0.02 U -MBP_HUMAN STK39_HUMAN 0.02 U -MTG16_HUMAN MTG8R_HUMAN 0.02 U -SC61B_HUMAN TRAM1_HUMAN 0.02 U -SMRC2_HUMAN SRGP3_HUMAN 0.02 U -SR140_HUMAN TRA2A_HUMAN 0.02 U -SRS10_HUMAN TRA2A_HUMAN 0.02 U -TOM1_HUMAN TRIO_HUMAN 0.02 U -TOM1_HUMAN WBP2_HUMAN 0.02 U -TRA2A_HUMAN YTDC1_HUMAN 0.02 U -CAF1A_HUMAN WNK1_HUMAN 0.01 U -CD3E_HUMAN ZAP70_HUMAN 0.01 U -CD5_HUMAN ZAP70_HUMAN 0.01 U -CE170_HUMAN HERC2_HUMAN 0.01 U -CHAP1_HUMAN TTC4_HUMAN 0.01 U -CIRBP_HUMAN CNOT3_HUMAN 0.01 U -CIRBP_HUMAN LAP2B_HUMAN 0.01 U -CIRBP_HUMAN NUP88_HUMAN 0.01 U -CIRBP_HUMAN RTN4_HUMAN 0.01 U -CLSPN_HUMAN HERC2_HUMAN 0.01 U -CND3_HUMAN PLEC_HUMAN 0.01 U -DBNL_HUMAN HERC2_HUMAN 0.01 U -DEFI6_HUMAN ZAP70_HUMAN 0.01 U -FA53C_HUMAN WNK1_HUMAN 0.01 U -FLII_HUMAN LRRF2_HUMAN 0.01 U -HERC2_HUMAN RN168_HUMAN 0.01 U -IF4B_HUMAN NU153_HUMAN 0.01 U -IF4H_HUMAN TRA2B_HUMAN 0.01 U -LCP2_HUMAN WNK1_HUMAN 0.01 U -LYRIC_HUMAN PLEC_HUMAN 0.01 U -MADD_HUMAN WNK1_HUMAN 0.01 U -MEF2A_HUMAN MEF2D_HUMAN 0.01 U -MEF2D_HUMAN NFAC2_HUMAN 0.01 U -MEF2D_HUMAN SENP3_HUMAN 0.01 U -NS1BP_HUMAN TRA2B_HUMAN 0.01 U -PP4R2_HUMAN TRA2B_HUMAN 0.01 U -RASL3_HUMAN WNK1_HUMAN 0.01 U -SH2B3_HUMAN ZAP70_HUMAN 0.01 U -SIT1_HUMAN ZAP70_HUMAN 0.01 U -SLAF6_HUMAN ZAP70_HUMAN 0.01 U -SRSF6_HUMAN TRA2B_HUMAN 0.01 U -SRSF9_HUMAN TRA2B_HUMAN 0.01 U -TRA2B_HUMAN YTDC1_HUMAN 0.01 U -WNK1_HUMAN STK39_HUMAN 0.01 D -WNK1_HUMAN WNK2_HUMAN 0.01 U -WNK1_HUMAN ZEP2_HUMAN 0.01 U -ZAP70_HUMAN LCP2_HUMAN 0.01 D diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/omicsintegrator1-hac-clusters-horizontal.txt b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/omicsintegrator1-hac-clusters-horizontal.txt deleted file mode 100644 index 016f96e..0000000 --- a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/omicsintegrator1-hac-clusters-horizontal.txt +++ /dev/null @@ -1,101 +0,0 @@ -algorithm labels -hiv060-omicsintegrator1-params-NQQFMSW 4 -hiv060-omicsintegrator1-params-7F2UHHY 4 -hiv060-omicsintegrator1-params-DLZY2UU 4 -hiv060-omicsintegrator1-params-F2GW4FM 4 -hiv060-omicsintegrator1-params-GJJHAWR 4 -hiv060-omicsintegrator1-params-EKFAHXJ 4 -hiv060-omicsintegrator1-params-O245LF3 4 -hiv060-omicsintegrator1-params-K2C44YG 4 -hiv060-omicsintegrator1-params-MKUCXSX 4 -hiv060-omicsintegrator1-params-CXULPPY 4 -hiv060-omicsintegrator1-params-D2CFK7Y 4 -hiv060-omicsintegrator1-params-GB464QK 4 -hiv060-omicsintegrator1-params-QLA7PZM 4 -hiv060-omicsintegrator1-params-BK5Y6AV 4 -hiv060-omicsintegrator1-params-E4PGYJE 4 -hiv060-omicsintegrator1-params-YH53Z7I 4 -hiv060-omicsintegrator1-params-V6TRFD5 4 -hiv060-omicsintegrator1-params-VNZPBKY 4 -hiv060-omicsintegrator1-params-HXBNO4P 4 -hiv060-omicsintegrator1-params-OW2ZQVJ 4 -hiv060-omicsintegrator1-params-UG35EN3 4 -hiv060-omicsintegrator1-params-7VVKFFW 4 -hiv060-omicsintegrator1-params-Y7FVD5Y 4 -hiv060-omicsintegrator1-params-X7OTY3Z 4 -hiv060-omicsintegrator1-params-6ZYKM5I 0 -hiv060-omicsintegrator1-params-LW2V34U 4 -hiv060-omicsintegrator1-params-5PV5R4M 4 -hiv060-omicsintegrator1-params-5OAENKB 4 -hiv060-omicsintegrator1-params-4S6QYO2 4 -hiv060-omicsintegrator1-params-SUBCPCC 29 -hiv060-omicsintegrator1-params-WERUDAF 9 -hiv060-omicsintegrator1-params-TQAZEEK 4 -hiv060-omicsintegrator1-params-C4N3KE7 4 -hiv060-omicsintegrator1-params-J5PMCRQ 16 -hiv060-omicsintegrator1-params-2NL4RDV 9 -hiv060-omicsintegrator1-params-OJVVFSK 4 -hiv060-omicsintegrator1-params-VZM7OSX 4 -hiv060-omicsintegrator1-params-UAYBOVK 27 -hiv060-omicsintegrator1-params-XJNUGEC 9 -hiv060-omicsintegrator1-params-5E56FMM 4 -hiv060-omicsintegrator1-params-BHLRRSP 4 -hiv060-omicsintegrator1-params-VGIOBOX 4 -hiv060-omicsintegrator1-params-LIWRFPS 4 -hiv060-omicsintegrator1-params-UWSVCXO 4 -hiv060-omicsintegrator1-params-EONPKPH 0 -hiv060-omicsintegrator1-params-6BGQ7PL 1 -hiv060-omicsintegrator1-params-5I2I6FM 4 -hiv060-omicsintegrator1-params-XAQM3RR 4 -hiv060-omicsintegrator1-params-EBEEP6T 4 -hiv060-omicsintegrator1-params-W2DOD4H 24 -hiv060-omicsintegrator1-params-BF65QO6 28 -hiv060-omicsintegrator1-params-XOXO56K 9 -hiv060-omicsintegrator1-params-4G6HWVJ 4 -hiv060-omicsintegrator1-params-UNEWALJ 18 -hiv060-omicsintegrator1-params-Y5XCKB2 10 -hiv060-omicsintegrator1-params-KPIH42T 9 -hiv060-omicsintegrator1-params-5YCE7NJ 4 -hiv060-omicsintegrator1-params-DXTK7ZU 21 -hiv060-omicsintegrator1-params-SHAKIBL 10 -hiv060-omicsintegrator1-params-VXGL3EA 9 -hiv060-omicsintegrator1-params-WCP7GIZ 4 -hiv060-omicsintegrator1-params-L4IUEVV 4 -hiv060-omicsintegrator1-params-PMY3CCQ 4 -hiv060-omicsintegrator1-params-LIECIRU 4 -hiv060-omicsintegrator1-params-UA2CL6Z 0 -hiv060-omicsintegrator1-params-CUD2SWJ 17 -hiv060-omicsintegrator1-params-EE47ACK 4 -hiv060-omicsintegrator1-params-5E3SBY6 4 -hiv060-omicsintegrator1-params-NFOUAB6 4 -hiv060-omicsintegrator1-params-2G7CMNV 19 -hiv060-omicsintegrator1-params-422WXNM 23 -hiv060-omicsintegrator1-params-R3TNGIE 26 -hiv060-omicsintegrator1-params-VNZUFFN 4 -hiv060-omicsintegrator1-params-L7CHKLI 15 -hiv060-omicsintegrator1-params-LWUMKKP 14 -hiv060-omicsintegrator1-params-L2HU4XD 5 -hiv060-omicsintegrator1-params-OA2LKJB 4 -hiv060-omicsintegrator1-params-I6LVYQ7 7 -hiv060-omicsintegrator1-params-D7XEWKT 20 -hiv060-omicsintegrator1-params-7M4YEVF 5 -hiv060-omicsintegrator1-params-ZZYQSRD 4 -hiv060-omicsintegrator1-params-WQ6V5PX 4 -hiv060-omicsintegrator1-params-XQ2C7V7 4 -hiv060-omicsintegrator1-params-CML462S 4 -hiv060-omicsintegrator1-params-ZWKBRYR 0 -hiv060-omicsintegrator1-params-T77D7QZ 25 -hiv060-omicsintegrator1-params-SWWL7WP 1 -hiv060-omicsintegrator1-params-FYCKMYA 4 -hiv060-omicsintegrator1-params-H766NCA 4 -hiv060-omicsintegrator1-params-EAX635F 13 -hiv060-omicsintegrator1-params-2NKIR7L 6 -hiv060-omicsintegrator1-params-JZPC2XQ 12 -hiv060-omicsintegrator1-params-PI44E6Y 4 -hiv060-omicsintegrator1-params-Y3DQROJ 8 -hiv060-omicsintegrator1-params-RCIIWF5 3 -hiv060-omicsintegrator1-params-2NFVB7W 2 -hiv060-omicsintegrator1-params-OWG4JUJ 4 -hiv060-omicsintegrator1-params-PQYTDPN 22 -hiv060-omicsintegrator1-params-BS7GMXF 11 -hiv060-omicsintegrator1-params-7JTTPPE 2 diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/omicsintegrator1-hac-clusters-vertical.txt b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/omicsintegrator1-hac-clusters-vertical.txt deleted file mode 100644 index 4333ea6..0000000 --- a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/omicsintegrator1-hac-clusters-vertical.txt +++ /dev/null @@ -1,101 +0,0 @@ -algorithm labels -hiv060-omicsintegrator1-params-NQQFMSW 22 -hiv060-omicsintegrator1-params-7F2UHHY 22 -hiv060-omicsintegrator1-params-DLZY2UU 22 -hiv060-omicsintegrator1-params-F2GW4FM 22 -hiv060-omicsintegrator1-params-GJJHAWR 22 -hiv060-omicsintegrator1-params-EKFAHXJ 22 -hiv060-omicsintegrator1-params-O245LF3 22 -hiv060-omicsintegrator1-params-K2C44YG 22 -hiv060-omicsintegrator1-params-MKUCXSX 22 -hiv060-omicsintegrator1-params-CXULPPY 22 -hiv060-omicsintegrator1-params-D2CFK7Y 22 -hiv060-omicsintegrator1-params-GB464QK 22 -hiv060-omicsintegrator1-params-QLA7PZM 22 -hiv060-omicsintegrator1-params-BK5Y6AV 22 -hiv060-omicsintegrator1-params-E4PGYJE 22 -hiv060-omicsintegrator1-params-YH53Z7I 22 -hiv060-omicsintegrator1-params-V6TRFD5 22 -hiv060-omicsintegrator1-params-VNZPBKY 22 -hiv060-omicsintegrator1-params-HXBNO4P 22 -hiv060-omicsintegrator1-params-OW2ZQVJ 22 -hiv060-omicsintegrator1-params-UG35EN3 22 -hiv060-omicsintegrator1-params-7VVKFFW 22 -hiv060-omicsintegrator1-params-Y7FVD5Y 22 -hiv060-omicsintegrator1-params-X7OTY3Z 22 -hiv060-omicsintegrator1-params-6ZYKM5I 1 -hiv060-omicsintegrator1-params-LW2V34U 22 -hiv060-omicsintegrator1-params-5PV5R4M 22 -hiv060-omicsintegrator1-params-5OAENKB 22 -hiv060-omicsintegrator1-params-4S6QYO2 22 -hiv060-omicsintegrator1-params-SUBCPCC 28 -hiv060-omicsintegrator1-params-WERUDAF 25 -hiv060-omicsintegrator1-params-TQAZEEK 22 -hiv060-omicsintegrator1-params-C4N3KE7 22 -hiv060-omicsintegrator1-params-J5PMCRQ 29 -hiv060-omicsintegrator1-params-2NL4RDV 25 -hiv060-omicsintegrator1-params-OJVVFSK 22 -hiv060-omicsintegrator1-params-VZM7OSX 22 -hiv060-omicsintegrator1-params-UAYBOVK 30 -hiv060-omicsintegrator1-params-XJNUGEC 25 -hiv060-omicsintegrator1-params-5E56FMM 22 -hiv060-omicsintegrator1-params-BHLRRSP 22 -hiv060-omicsintegrator1-params-VGIOBOX 22 -hiv060-omicsintegrator1-params-LIWRFPS 22 -hiv060-omicsintegrator1-params-UWSVCXO 22 -hiv060-omicsintegrator1-params-EONPKPH 1 -hiv060-omicsintegrator1-params-6BGQ7PL 19 -hiv060-omicsintegrator1-params-5I2I6FM 22 -hiv060-omicsintegrator1-params-XAQM3RR 22 -hiv060-omicsintegrator1-params-EBEEP6T 22 -hiv060-omicsintegrator1-params-W2DOD4H 8 -hiv060-omicsintegrator1-params-BF65QO6 27 -hiv060-omicsintegrator1-params-XOXO56K 25 -hiv060-omicsintegrator1-params-4G6HWVJ 22 -hiv060-omicsintegrator1-params-UNEWALJ 12 -hiv060-omicsintegrator1-params-Y5XCKB2 26 -hiv060-omicsintegrator1-params-KPIH42T 25 -hiv060-omicsintegrator1-params-5YCE7NJ 22 -hiv060-omicsintegrator1-params-DXTK7ZU 10 -hiv060-omicsintegrator1-params-SHAKIBL 26 -hiv060-omicsintegrator1-params-VXGL3EA 25 -hiv060-omicsintegrator1-params-WCP7GIZ 22 -hiv060-omicsintegrator1-params-L4IUEVV 22 -hiv060-omicsintegrator1-params-PMY3CCQ 22 -hiv060-omicsintegrator1-params-LIECIRU 22 -hiv060-omicsintegrator1-params-UA2CL6Z 1 -hiv060-omicsintegrator1-params-CUD2SWJ 20 -hiv060-omicsintegrator1-params-EE47ACK 22 -hiv060-omicsintegrator1-params-5E3SBY6 22 -hiv060-omicsintegrator1-params-NFOUAB6 22 -hiv060-omicsintegrator1-params-2G7CMNV 4 -hiv060-omicsintegrator1-params-422WXNM 16 -hiv060-omicsintegrator1-params-R3TNGIE 24 -hiv060-omicsintegrator1-params-VNZUFFN 22 -hiv060-omicsintegrator1-params-L7CHKLI 2 -hiv060-omicsintegrator1-params-LWUMKKP 17 -hiv060-omicsintegrator1-params-L2HU4XD 23 -hiv060-omicsintegrator1-params-OA2LKJB 22 -hiv060-omicsintegrator1-params-I6LVYQ7 3 -hiv060-omicsintegrator1-params-D7XEWKT 18 -hiv060-omicsintegrator1-params-7M4YEVF 23 -hiv060-omicsintegrator1-params-ZZYQSRD 22 -hiv060-omicsintegrator1-params-WQ6V5PX 22 -hiv060-omicsintegrator1-params-XQ2C7V7 22 -hiv060-omicsintegrator1-params-CML462S 22 -hiv060-omicsintegrator1-params-ZWKBRYR 1 -hiv060-omicsintegrator1-params-T77D7QZ 21 -hiv060-omicsintegrator1-params-SWWL7WP 19 -hiv060-omicsintegrator1-params-FYCKMYA 22 -hiv060-omicsintegrator1-params-H766NCA 22 -hiv060-omicsintegrator1-params-EAX635F 7 -hiv060-omicsintegrator1-params-2NKIR7L 9 -hiv060-omicsintegrator1-params-JZPC2XQ 15 -hiv060-omicsintegrator1-params-PI44E6Y 22 -hiv060-omicsintegrator1-params-Y3DQROJ 5 -hiv060-omicsintegrator1-params-RCIIWF5 13 -hiv060-omicsintegrator1-params-2NFVB7W 14 -hiv060-omicsintegrator1-params-OWG4JUJ 22 -hiv060-omicsintegrator1-params-PQYTDPN 6 -hiv060-omicsintegrator1-params-BS7GMXF 11 -hiv060-omicsintegrator1-params-7JTTPPE 14 diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/omicsintegrator1-hac-horizontal.png b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/omicsintegrator1-hac-horizontal.png deleted file mode 100644 index f2fbdb8..0000000 Binary files a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/omicsintegrator1-hac-horizontal.png and /dev/null differ diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/omicsintegrator1-hac-vertical.png b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/omicsintegrator1-hac-vertical.png deleted file mode 100644 index 7b6c8ff..0000000 Binary files a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/omicsintegrator1-hac-vertical.png and /dev/null differ diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/omicsintegrator1-pca-coordinates.txt b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/omicsintegrator1-pca-coordinates.txt deleted file mode 100644 index a2bb72a..0000000 --- a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/omicsintegrator1-pca-coordinates.txt +++ /dev/null @@ -1,101 +0,0 @@ -algorithm PC1 PC2 -hiv060-omicsintegrator1-params-NQQFMSW -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-7F2UHHY -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-DLZY2UU -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-F2GW4FM -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-GJJHAWR -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-EKFAHXJ -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-O245LF3 -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-K2C44YG -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-MKUCXSX -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-CXULPPY -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-D2CFK7Y -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-GB464QK -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-QLA7PZM -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-BK5Y6AV -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-E4PGYJE -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-YH53Z7I -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-V6TRFD5 -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-VNZPBKY -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-HXBNO4P -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-OW2ZQVJ -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-UG35EN3 -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-7VVKFFW -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-Y7FVD5Y -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-X7OTY3Z -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-6ZYKM5I 138.96696619352736 0.19952348044886037 -hiv060-omicsintegrator1-params-LW2V34U -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-5PV5R4M -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-5OAENKB -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-4S6QYO2 -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-SUBCPCC -5.779176915181483 -3.7999947541907986 -hiv060-omicsintegrator1-params-WERUDAF -5.769180254643629 -3.874905833209996 -hiv060-omicsintegrator1-params-TQAZEEK -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-C4N3KE7 -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-J5PMCRQ -5.788221970655945 -3.725548590481882 -hiv060-omicsintegrator1-params-2NL4RDV -5.769180254643629 -3.874905833209996 -hiv060-omicsintegrator1-params-OJVVFSK -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-VZM7OSX -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-UAYBOVK -5.778225310118091 -3.8004596695010795 -hiv060-omicsintegrator1-params-XJNUGEC -5.769180254643629 -3.874905833209996 -hiv060-omicsintegrator1-params-5E56FMM -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-BHLRRSP -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-VGIOBOX -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-LIWRFPS -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-UWSVCXO -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-EONPKPH 138.96696619352736 0.19952348044886037 -hiv060-omicsintegrator1-params-6BGQ7PL -5.580574041153288 -3.428846367835781 -hiv060-omicsintegrator1-params-5I2I6FM -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-XAQM3RR -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-EBEEP6T -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-W2DOD4H -5.91737855246934 1.7249882191196162 -hiv060-omicsintegrator1-params-BF65QO6 -5.788933543749428 -3.718758257625848 -hiv060-omicsintegrator1-params-XOXO56K -5.769180254643629 -3.874905833209996 -hiv060-omicsintegrator1-params-4G6HWVJ -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-UNEWALJ -5.9373015389677555 3.053179716951986 -hiv060-omicsintegrator1-params-Y5XCKB2 -5.797978599223891 -3.6443120939169313 -hiv060-omicsintegrator1-params-KPIH42T -5.769180254643629 -3.874905833209996 -hiv060-omicsintegrator1-params-5YCE7NJ -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-DXTK7ZU -5.986962010652875 4.341348734359972 -hiv060-omicsintegrator1-params-SHAKIBL -5.797978599223891 -3.6443120939169313 -hiv060-omicsintegrator1-params-VXGL3EA -5.769180254643629 -3.874905833209996 -hiv060-omicsintegrator1-params-WCP7GIZ -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-L4IUEVV -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-PMY3CCQ -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-LIECIRU -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-UA2CL6Z 138.96696619352736 0.19952348044886037 -hiv060-omicsintegrator1-params-CUD2SWJ -5.377238748608867 -2.2711629904699144 -hiv060-omicsintegrator1-params-EE47ACK -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-5E3SBY6 -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-NFOUAB6 -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-2G7CMNV -6.231858739659499 21.77036563459511 -hiv060-omicsintegrator1-params-422WXNM -5.88878618935828 -2.477022695330446 -hiv060-omicsintegrator1-params-R3TNGIE -5.807783048949592 -3.532990935144099 -hiv060-omicsintegrator1-params-VNZUFFN -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-L7CHKLI -6.414558747868467 30.16607114642671 -hiv060-omicsintegrator1-params-LWUMKKP -5.91493456543747 -2.1663681837541806 -hiv060-omicsintegrator1-params-L2HU4XD -5.825525863935776 -3.360664119803647 -hiv060-omicsintegrator1-params-OA2LKJB -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-I6LVYQ7 -6.494215468414257 33.52681728714544 -hiv060-omicsintegrator1-params-D7XEWKT -5.906473122376458 -1.6204544838237103 -hiv060-omicsintegrator1-params-7M4YEVF -5.825525863935776 -3.360664119803647 -hiv060-omicsintegrator1-params-ZZYQSRD -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-WQ6V5PX -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-XQ2C7V7 -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-CML462S -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-ZWKBRYR 138.96696619352736 0.19952348044886037 -hiv060-omicsintegrator1-params-T77D7QZ -4.429657506536267 -0.5911063122590277 -hiv060-omicsintegrator1-params-SWWL7WP -5.580574041153288 -3.428846367835781 -hiv060-omicsintegrator1-params-FYCKMYA -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-H766NCA -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-EAX635F -5.909330349384268 50.595239042512475 -hiv060-omicsintegrator1-params-2NKIR7L -5.9425118496122415 2.3210093297209506 -hiv060-omicsintegrator1-params-JZPC2XQ -5.8533997480358275 -2.992314447204819 -hiv060-omicsintegrator1-params-PI44E6Y -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-Y3DQROJ -6.339299998210552 69.61891149770925 -hiv060-omicsintegrator1-params-RCIIWF5 -6.009924436218091 3.5579928552566704 -hiv060-omicsintegrator1-params-2NFVB7W -5.871142563022012 -2.8199876318643664 -hiv060-omicsintegrator1-params-OWG4JUJ -5.758210890527096 -3.933514742723412 -hiv060-omicsintegrator1-params-PQYTDPN -5.859703201602219 86.14654193251093 -hiv060-omicsintegrator1-params-BS7GMXF -6.012023008412009 4.910047248464368 -hiv060-omicsintegrator1-params-7JTTPPE -5.871142563022012 -2.8199876318643664 diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/omicsintegrator1-pca-variance.txt b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/omicsintegrator1-pca-variance.txt deleted file mode 100644 index 691f571..0000000 --- a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/omicsintegrator1-pca-variance.txt +++ /dev/null @@ -1,2 +0,0 @@ -PC1: 73.15430630825797 -PC2: 16.907157588430998 diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/omicsintegrator1-pca.png b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/omicsintegrator1-pca.png deleted file mode 100644 index 92ff990..0000000 Binary files a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/omicsintegrator1-pca.png and /dev/null differ diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/pca-coordinates.txt b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/pca-coordinates.txt deleted file mode 100644 index 39786d7..0000000 --- a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/pca-coordinates.txt +++ /dev/null @@ -1,101 +0,0 @@ -algorithm PC1 PC2 -hiv060-omicsintegrator1-params-NQQFMSW -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-7F2UHHY -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-DLZY2UU -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-F2GW4FM -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-GJJHAWR -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-EKFAHXJ -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-O245LF3 -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-K2C44YG -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-MKUCXSX -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-CXULPPY -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-D2CFK7Y -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-GB464QK -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-QLA7PZM -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-BK5Y6AV -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-E4PGYJE -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-YH53Z7I -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-V6TRFD5 -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-VNZPBKY -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-HXBNO4P -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-OW2ZQVJ -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-UG35EN3 -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-7VVKFFW -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-Y7FVD5Y -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-X7OTY3Z -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-6ZYKM5I 138.9669661935279 0.19952348044810275 -hiv060-omicsintegrator1-params-LW2V34U -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-5PV5R4M -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-5OAENKB -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-4S6QYO2 -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-SUBCPCC -5.779176915181504 -3.799994754190774 -hiv060-omicsintegrator1-params-WERUDAF -5.769180254643651 -3.874905833209973 -hiv060-omicsintegrator1-params-TQAZEEK -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-C4N3KE7 -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-J5PMCRQ -5.788221970655965 -3.7255485904818566 -hiv060-omicsintegrator1-params-2NL4RDV -5.769180254643651 -3.874905833209973 -hiv060-omicsintegrator1-params-OJVVFSK -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-VZM7OSX -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-UAYBOVK -5.778225310118112 -3.800459669501055 -hiv060-omicsintegrator1-params-XJNUGEC -5.769180254643651 -3.874905833209973 -hiv060-omicsintegrator1-params-5E56FMM -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-BHLRRSP -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-VGIOBOX -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-LIWRFPS -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-UWSVCXO -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-EONPKPH 138.9669661935279 0.19952348044810275 -hiv060-omicsintegrator1-params-6BGQ7PL -5.580574041153306 -3.4288463678357575 -hiv060-omicsintegrator1-params-5I2I6FM -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-XAQM3RR -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-EBEEP6T -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-W2DOD4H -5.91737855246933 1.7249882191196815 -hiv060-omicsintegrator1-params-BF65QO6 -5.788933543749448 -3.718758257625822 -hiv060-omicsintegrator1-params-XOXO56K -5.769180254643651 -3.874905833209973 -hiv060-omicsintegrator1-params-4G6HWVJ -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-UNEWALJ -5.937301538967738 3.0531797169520623 -hiv060-omicsintegrator1-params-Y5XCKB2 -5.79797859922391 -3.6443120939169047 -hiv060-omicsintegrator1-params-KPIH42T -5.769180254643651 -3.874905833209973 -hiv060-omicsintegrator1-params-5YCE7NJ -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-DXTK7ZU -5.986962010652851 4.341348734360054 -hiv060-omicsintegrator1-params-SHAKIBL -5.79797859922391 -3.6443120939169047 -hiv060-omicsintegrator1-params-VXGL3EA -5.769180254643651 -3.874905833209973 -hiv060-omicsintegrator1-params-WCP7GIZ -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-L4IUEVV -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-PMY3CCQ -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-LIECIRU -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-UA2CL6Z 138.9669661935279 0.19952348044810275 -hiv060-omicsintegrator1-params-CUD2SWJ -5.377238748608878 -2.2711629904698856 -hiv060-omicsintegrator1-params-EE47ACK -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-5E3SBY6 -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-NFOUAB6 -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-2G7CMNV -6.231858739659382 21.77036563459523 -hiv060-omicsintegrator1-params-422WXNM -5.888786189358292 -2.477022695330406 -hiv060-omicsintegrator1-params-R3TNGIE -5.807783048949611 -3.5329909351440705 -hiv060-omicsintegrator1-params-VNZUFFN -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-L7CHKLI -6.4145587478683055 30.16607114642683 -hiv060-omicsintegrator1-params-LWUMKKP -5.914934565437481 -2.166368183754139 -hiv060-omicsintegrator1-params-L2HU4XD -5.825525863935795 -3.3606641198036162 -hiv060-omicsintegrator1-params-OA2LKJB -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-I6LVYQ7 -6.494215468414076 33.526817287145555 -hiv060-omicsintegrator1-params-D7XEWKT -5.906473122376467 -1.620454483823666 -hiv060-omicsintegrator1-params-7M4YEVF -5.825525863935795 -3.3606641198036162 -hiv060-omicsintegrator1-params-ZZYQSRD -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-WQ6V5PX -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-XQ2C7V7 -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-CML462S -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-ZWKBRYR 138.9669661935279 0.19952348044810275 -hiv060-omicsintegrator1-params-T77D7QZ -4.4296575065362696 -0.5911063122590059 -hiv060-omicsintegrator1-params-SWWL7WP -5.580574041153306 -3.4288463678357575 -hiv060-omicsintegrator1-params-FYCKMYA -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-H766NCA -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-EAX635F -5.909330349383996 50.595239042512546 -hiv060-omicsintegrator1-params-2NKIR7L -5.942511849612228 2.3210093297210177 -hiv060-omicsintegrator1-params-JZPC2XQ -5.8533997480358435 -2.992314447204783 -hiv060-omicsintegrator1-params-PI44E6Y -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-Y3DQROJ -6.339299998210178 69.61891149770916 -hiv060-omicsintegrator1-params-RCIIWF5 -6.009924436218071 3.557992855256746 -hiv060-omicsintegrator1-params-2NFVB7W -5.871142563022027 -2.819987631864329 -hiv060-omicsintegrator1-params-OWG4JUJ -5.758210890527117 -3.9335147427233896 -hiv060-omicsintegrator1-params-PQYTDPN -5.859703201601755 86.14654193251057 -hiv060-omicsintegrator1-params-BS7GMXF -6.0120230084119815 4.910047248464451 -hiv060-omicsintegrator1-params-7JTTPPE -5.871142563022027 -2.819987631864329 diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/pca-variance.txt b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/pca-variance.txt deleted file mode 100644 index 1629b57..0000000 --- a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/pca-variance.txt +++ /dev/null @@ -1,2 +0,0 @@ -PC1: 73.15430630825784 -PC2: 16.90715758843092 diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/pca.png b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/pca.png deleted file mode 100644 index 6992354..0000000 Binary files a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-ml/pca.png and /dev/null differ diff --git a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-pathway-summary.txt b/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-pathway-summary.txt deleted file mode 100644 index 152df84..0000000 --- a/hiv-benchmarking/spras-hiv-results/hiv-benchmarking-05-060-modified-v2/hiv060-pathway-summary.txt +++ /dev/null @@ -1,101 +0,0 @@ -Name Number of nodes Number of undirected edges Number of connected components Nodes in prize Nodes in sources Nodes in targets -output/hiv060-omicsintegrator1-params-2G7CMNV/pathway.txt 188 122 66 188 0 0 -output/hiv060-omicsintegrator1-params-2NFVB7W/pathway.txt 24 12 12 24 0 0 -output/hiv060-omicsintegrator1-params-2NKIR7L/pathway.txt 82 46 36 82 0 0 -output/hiv060-omicsintegrator1-params-2NL4RDV/pathway.txt 2 1 1 2 0 0 -output/hiv060-omicsintegrator1-params-422WXNM/pathway.txt 28 14 14 28 0 0 -output/hiv060-omicsintegrator1-params-4G6HWVJ/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-4S6QYO2/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-5E3SBY6/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-5E56FMM/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-5I2I6FM/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-5OAENKB/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-5PV5R4M/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-5YCE7NJ/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-6BGQ7PL/pathway.txt 10 5 5 10 0 0 -output/hiv060-omicsintegrator1-params-6ZYKM5I/pathway.txt 835 818 17 653 0 0 -output/hiv060-omicsintegrator1-params-7F2UHHY/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-7JTTPPE/pathway.txt 24 12 12 24 0 0 -output/hiv060-omicsintegrator1-params-7M4YEVF/pathway.txt 14 7 7 14 0 0 -output/hiv060-omicsintegrator1-params-7VVKFFW/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-BF65QO6/pathway.txt 6 3 3 6 0 0 -output/hiv060-omicsintegrator1-params-BHLRRSP/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-BK5Y6AV/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-BS7GMXF/pathway.txt 104 61 43 104 0 0 -output/hiv060-omicsintegrator1-params-C4N3KE7/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-CML462S/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-CUD2SWJ/pathway.txt 23 12 11 23 0 0 -output/hiv060-omicsintegrator1-params-CXULPPY/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-D2CFK7Y/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-D7XEWKT/pathway.txt 40 21 19 40 0 0 -output/hiv060-omicsintegrator1-params-DLZY2UU/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-DXTK7ZU/pathway.txt 98 58 40 98 0 0 -output/hiv060-omicsintegrator1-params-E4PGYJE/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-EAX635F/pathway.txt 288 204 84 288 0 0 -output/hiv060-omicsintegrator1-params-EBEEP6T/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-EE47ACK/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-EKFAHXJ/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-EONPKPH/pathway.txt 835 818 17 653 0 0 -output/hiv060-omicsintegrator1-params-F2GW4FM/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-FYCKMYA/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-GB464QK/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-GJJHAWR/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-H766NCA/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-HXBNO4P/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-I6LVYQ7/pathway.txt 234 164 70 234 0 0 -output/hiv060-omicsintegrator1-params-J5PMCRQ/pathway.txt 6 3 3 6 0 0 -output/hiv060-omicsintegrator1-params-JZPC2XQ/pathway.txt 20 10 10 20 0 0 -output/hiv060-omicsintegrator1-params-K2C44YG/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-KPIH42T/pathway.txt 2 1 1 2 0 0 -output/hiv060-omicsintegrator1-params-L2HU4XD/pathway.txt 14 7 7 14 0 0 -output/hiv060-omicsintegrator1-params-L4IUEVV/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-L7CHKLI/pathway.txt 226 154 72 226 0 0 -output/hiv060-omicsintegrator1-params-LIECIRU/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-LIWRFPS/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-LW2V34U/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-LWUMKKP/pathway.txt 34 17 17 34 0 0 -output/hiv060-omicsintegrator1-params-MKUCXSX/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-NFOUAB6/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-NQQFMSW/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-O245LF3/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-OA2LKJB/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-OJVVFSK/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-OW2ZQVJ/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-OWG4JUJ/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-PI44E6Y/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-PMY3CCQ/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-PQYTDPN/pathway.txt 375 296 79 375 0 0 -output/hiv060-omicsintegrator1-params-QLA7PZM/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-R3TNGIE/pathway.txt 10 5 5 10 0 0 -output/hiv060-omicsintegrator1-params-RCIIWF5/pathway.txt 96 54 42 96 0 0 -output/hiv060-omicsintegrator1-params-SHAKIBL/pathway.txt 8 4 4 8 0 0 -output/hiv060-omicsintegrator1-params-SUBCPCC/pathway.txt 4 2 2 4 0 0 -output/hiv060-omicsintegrator1-params-SWWL7WP/pathway.txt 10 5 5 10 0 0 -output/hiv060-omicsintegrator1-params-T77D7QZ/pathway.txt 41 23 18 41 0 0 -output/hiv060-omicsintegrator1-params-TQAZEEK/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-UA2CL6Z/pathway.txt 835 818 17 653 0 0 -output/hiv060-omicsintegrator1-params-UAYBOVK/pathway.txt 4 2 2 4 0 0 -output/hiv060-omicsintegrator1-params-UG35EN3/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-UNEWALJ/pathway.txt 91 52 39 91 0 0 -output/hiv060-omicsintegrator1-params-UWSVCXO/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-V6TRFD5/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-VGIOBOX/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-VNZPBKY/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-VNZUFFN/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-VXGL3EA/pathway.txt 2 1 1 2 0 0 -output/hiv060-omicsintegrator1-params-VZM7OSX/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-W2DOD4H/pathway.txt 77 43 34 77 0 0 -output/hiv060-omicsintegrator1-params-WCP7GIZ/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-WERUDAF/pathway.txt 2 1 1 2 0 0 -output/hiv060-omicsintegrator1-params-WQ6V5PX/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-X7OTY3Z/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-XAQM3RR/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-XJNUGEC/pathway.txt 2 1 1 2 0 0 -output/hiv060-omicsintegrator1-params-XOXO56K/pathway.txt 2 1 1 2 0 0 -output/hiv060-omicsintegrator1-params-XQ2C7V7/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-Y3DQROJ/pathway.txt 344 258 86 344 0 0 -output/hiv060-omicsintegrator1-params-Y5XCKB2/pathway.txt 8 4 4 8 0 0 -output/hiv060-omicsintegrator1-params-Y7FVD5Y/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-YH53Z7I/pathway.txt 0 0 0 0 0 0 -output/hiv060-omicsintegrator1-params-ZWKBRYR/pathway.txt 835 818 17 653 0 0 -output/hiv060-omicsintegrator1-params-ZZYQSRD/pathway.txt 0 0 0 0 0 0 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..282099e --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,20 @@ +[project] +name = "spras-benchmarking" +version = "0.1.0" +description = "SPRAS Benchmarking Repository" +readme = "README.md" +requires-python = ">=3.13" +dependencies = [ + "bioservices>=1.12.1", + "more-itertools>=10.7.0", + "pandas>=2.3.0", +] + +[dependency-groups] +dev = [ + "pre-commit>=4.2.0", + "snakemake>=9.6.0", +] + +[tool.ruff] +line-length = 150 diff --git a/run_snakemake.sh b/run_snakemake.sh new file mode 100755 index 0000000..d908fa3 --- /dev/null +++ b/run_snakemake.sh @@ -0,0 +1,9 @@ +#!/bin/sh +# Snakemake does not support importing and orchestrating multiple Snakefiles +# in a way that respects the origin directory. +# Instead, we provide a shell script. + +uv tool run snakemake --cores 1 -d datasets/rn-muscle-skeletal -s datasets/rn-muscle-skeletal/Snakefile +uv tool run snakemake --cores 1 -d datasets/yeast-osmotic-stress -s datasets/yeast-osmotic-stress/Snakefile +uv tool run snakemake --cores 1 -d datasets/synthetic-data -s datasets/synthetic-data/Snakefile +uv tool run snakemake --cores 1 -d datasets/hiv -s datasets/hiv/Snakefile diff --git a/spras b/spras new file mode 160000 index 0000000..5d6f215 --- /dev/null +++ b/spras @@ -0,0 +1 @@ +Subproject commit 5d6f2154489977dff7eceb98bc4b5a47946fd81c diff --git a/uv.lock b/uv.lock new file mode 100644 index 0000000..0356995 --- /dev/null +++ b/uv.lock @@ -0,0 +1,1445 @@ +version = 1 +revision = 2 +requires-python = ">=3.13" + +[[package]] +name = "appdirs" +version = "1.4.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d7/d8/05696357e0311f5b5c316d7b95f46c669dd9c15aaeecbb48c7d0aeb88c40/appdirs-1.4.4.tar.gz", hash = "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41", size = 13470, upload-time = "2020-05-11T07:59:51.037Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3b/00/2344469e2084fb287c2e0b57b72910309874c3245463acd6cf5e3db69324/appdirs-1.4.4-py2.py3-none-any.whl", hash = "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128", size = 9566, upload-time = "2020-05-11T07:59:49.499Z" }, +] + +[[package]] +name = "argparse-dataclass" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1a/ff/a2e4e328075ddef2ac3c9431eb12247e4ba707a70324894f1e6b4f43c286/argparse_dataclass-2.0.0.tar.gz", hash = "sha256:09ab641c914a2f12882337b9c3e5086196dbf2ee6bf0ef67895c74002cc9297f", size = 6395, upload-time = "2023-06-11T20:32:54.465Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/66/e6c0a808950ba5a4042e2fcedd577fc7401536c7db063de4d7c36be06f84/argparse_dataclass-2.0.0-py3-none-any.whl", hash = "sha256:3ffc8852a88d9d98d1364b4441a712491320afb91fb56049afd8a51d74bb52d2", size = 8762, upload-time = "2023-06-11T20:32:52.724Z" }, +] + +[[package]] +name = "attrs" +version = "25.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5a/b0/1367933a8532ee6ff8d63537de4f1177af4bff9f3e829baf7331f595bb24/attrs-25.3.0.tar.gz", hash = "sha256:75d7cefc7fb576747b2c81b4442d4d4a1ce0900973527c011d1030fd3bf4af1b", size = 812032, upload-time = "2025-03-13T11:10:22.779Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/77/06/bb80f5f86020c4551da315d78b3ab75e8228f89f0162f2c3a819e407941a/attrs-25.3.0-py3-none-any.whl", hash = "sha256:427318ce031701fea540783410126f03899a97ffc6f61596ad581ac2e40e3bc3", size = 63815, upload-time = "2025-03-13T11:10:21.14Z" }, +] + +[[package]] +name = "beautifulsoup4" +version = "4.13.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "soupsieve" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d8/e4/0c4c39e18fd76d6a628d4dd8da40543d136ce2d1752bd6eeeab0791f4d6b/beautifulsoup4-4.13.4.tar.gz", hash = "sha256:dbb3c4e1ceae6aefebdaf2423247260cd062430a410e38c66f2baa50a8437195", size = 621067, upload-time = "2025-04-15T17:05:13.836Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/50/cd/30110dc0ffcf3b131156077b90e9f60ed75711223f306da4db08eff8403b/beautifulsoup4-4.13.4-py3-none-any.whl", hash = "sha256:9bbbb14bfde9d79f38b8cd5f8c7c85f4b8f2523190ebed90e950a8dea4cb1c4b", size = 187285, upload-time = "2025-04-15T17:05:12.221Z" }, +] + +[[package]] +name = "bioservices" +version = "1.12.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "appdirs" }, + { name = "beautifulsoup4" }, + { name = "click" }, + { name = "colorlog" }, + { name = "easydev" }, + { name = "grequests" }, + { name = "lxml" }, + { name = "matplotlib" }, + { name = "pandas" }, + { name = "requests" }, + { name = "requests-cache" }, + { name = "rich-click" }, + { name = "suds-community" }, + { name = "tqdm" }, + { name = "wrapt" }, + { name = "xmltodict" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5e/51/1a8dc87ffc6c27e0a896b982da3ff1b483f5ef85a47ae1ffafbc6a479bb4/bioservices-1.12.1.tar.gz", hash = "sha256:0f31782ae50930d4ab82b43f98d1ca2cc9befaa699f3a7a6cba512a8f9e2cab0", size = 218752, upload-time = "2025-02-27T22:38:58.628Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b8/c9/656854139abbdc0a09d544bacc6fa3132245ebf9847dd45da9a8e416c5a5/bioservices-1.12.1-py3-none-any.whl", hash = "sha256:898033fe0158a0e31ea5ad93ff02f5000aa67ff9d06e9dc6477583d3f60ace80", size = 258032, upload-time = "2025-02-27T22:38:56.406Z" }, +] + +[[package]] +name = "cattrs" +version = "25.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/57/2b/561d78f488dcc303da4639e02021311728fb7fda8006dd2835550cddd9ed/cattrs-25.1.1.tar.gz", hash = "sha256:c914b734e0f2d59e5b720d145ee010f1fd9a13ee93900922a2f3f9d593b8382c", size = 435016, upload-time = "2025-06-04T20:27:15.44Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/b0/215274ef0d835bbc1056392a367646648b6084e39d489099959aefcca2af/cattrs-25.1.1-py3-none-any.whl", hash = "sha256:1b40b2d3402af7be79a7e7e097a9b4cd16d4c06e6d526644b0b26a063a1cc064", size = 69386, upload-time = "2025-06-04T20:27:13.969Z" }, +] + +[[package]] +name = "certifi" +version = "2025.6.15" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/73/f7/f14b46d4bcd21092d7d3ccef689615220d8a08fb25e564b65d20738e672e/certifi-2025.6.15.tar.gz", hash = "sha256:d747aa5a8b9bbbb1bb8c22bb13e22bd1f18e9796defa16bab421f7f7a317323b", size = 158753, upload-time = "2025-06-15T02:45:51.329Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/84/ae/320161bd181fc06471eed047ecce67b693fd7515b16d495d8932db763426/certifi-2025.6.15-py3-none-any.whl", hash = "sha256:2e0c7ce7cb5d8f8634ca55d2ba7e6ec2689a2fd6537d8dec1296a477a4910057", size = 157650, upload-time = "2025-06-15T02:45:49.977Z" }, +] + +[[package]] +name = "cffi" +version = "1.17.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pycparser" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/fc/97/c783634659c2920c3fc70419e3af40972dbaf758daa229a7d6ea6135c90d/cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824", size = 516621, upload-time = "2024-09-04T20:45:21.852Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bf/ee/f94057fa6426481d663b88637a9a10e859e492c73d0384514a17d78ee205/cffi-1.17.1-cp313-cp313-win32.whl", hash = "sha256:e03eab0a8677fa80d646b5ddece1cbeaf556c313dcfac435ba11f107ba117b5d", size = 172475, upload-time = "2024-09-04T20:44:43.733Z" }, + { url = "https://files.pythonhosted.org/packages/7c/fc/6a8cb64e5f0324877d503c854da15d76c1e50eb722e320b15345c4d0c6de/cffi-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:f6a16c31041f09ead72d69f583767292f750d24913dadacf5756b966aacb3f1a", size = 182009, upload-time = "2024-09-04T20:44:45.309Z" }, +] + +[[package]] +name = "cfgv" +version = "3.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/11/74/539e56497d9bd1d484fd863dd69cbbfa653cd2aa27abfe35653494d85e94/cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560", size = 7114, upload-time = "2023-08-12T20:38:17.776Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c5/55/51844dd50c4fc7a33b653bfaba4c2456f06955289ca770a5dbd5fd267374/cfgv-3.4.0-py2.py3-none-any.whl", hash = "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9", size = 7249, upload-time = "2023-08-12T20:38:16.269Z" }, +] + +[[package]] +name = "charset-normalizer" +version = "3.4.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz", hash = "sha256:5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63", size = 126367, upload-time = "2025-05-02T08:34:42.01Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ea/12/a93df3366ed32db1d907d7593a94f1fe6293903e3e92967bebd6950ed12c/charset_normalizer-3.4.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:926ca93accd5d36ccdabd803392ddc3e03e6d4cd1cf17deff3b989ab8e9dbcf0", size = 199622, upload-time = "2025-05-02T08:32:56.363Z" }, + { url = "https://files.pythonhosted.org/packages/04/93/bf204e6f344c39d9937d3c13c8cd5bbfc266472e51fc8c07cb7f64fcd2de/charset_normalizer-3.4.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eba9904b0f38a143592d9fc0e19e2df0fa2e41c3c3745554761c5f6447eedabf", size = 143435, upload-time = "2025-05-02T08:32:58.551Z" }, + { url = "https://files.pythonhosted.org/packages/22/2a/ea8a2095b0bafa6c5b5a55ffdc2f924455233ee7b91c69b7edfcc9e02284/charset_normalizer-3.4.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3fddb7e2c84ac87ac3a947cb4e66d143ca5863ef48e4a5ecb83bd48619e4634e", size = 153653, upload-time = "2025-05-02T08:33:00.342Z" }, + { url = "https://files.pythonhosted.org/packages/b6/57/1b090ff183d13cef485dfbe272e2fe57622a76694061353c59da52c9a659/charset_normalizer-3.4.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98f862da73774290f251b9df8d11161b6cf25b599a66baf087c1ffe340e9bfd1", size = 146231, upload-time = "2025-05-02T08:33:02.081Z" }, + { url = "https://files.pythonhosted.org/packages/e2/28/ffc026b26f441fc67bd21ab7f03b313ab3fe46714a14b516f931abe1a2d8/charset_normalizer-3.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c9379d65defcab82d07b2a9dfbfc2e95bc8fe0ebb1b176a3190230a3ef0e07c", size = 148243, upload-time = "2025-05-02T08:33:04.063Z" }, + { url = "https://files.pythonhosted.org/packages/c0/0f/9abe9bd191629c33e69e47c6ef45ef99773320e9ad8e9cb08b8ab4a8d4cb/charset_normalizer-3.4.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e635b87f01ebc977342e2697d05b56632f5f879a4f15955dfe8cef2448b51691", size = 150442, upload-time = "2025-05-02T08:33:06.418Z" }, + { url = "https://files.pythonhosted.org/packages/67/7c/a123bbcedca91d5916c056407f89a7f5e8fdfce12ba825d7d6b9954a1a3c/charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:1c95a1e2902a8b722868587c0e1184ad5c55631de5afc0eb96bc4b0d738092c0", size = 145147, upload-time = "2025-05-02T08:33:08.183Z" }, + { url = "https://files.pythonhosted.org/packages/ec/fe/1ac556fa4899d967b83e9893788e86b6af4d83e4726511eaaad035e36595/charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ef8de666d6179b009dce7bcb2ad4c4a779f113f12caf8dc77f0162c29d20490b", size = 153057, upload-time = "2025-05-02T08:33:09.986Z" }, + { url = "https://files.pythonhosted.org/packages/2b/ff/acfc0b0a70b19e3e54febdd5301a98b72fa07635e56f24f60502e954c461/charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:32fc0341d72e0f73f80acb0a2c94216bd704f4f0bce10aedea38f30502b271ff", size = 156454, upload-time = "2025-05-02T08:33:11.814Z" }, + { url = "https://files.pythonhosted.org/packages/92/08/95b458ce9c740d0645feb0e96cea1f5ec946ea9c580a94adfe0b617f3573/charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:289200a18fa698949d2b39c671c2cc7a24d44096784e76614899a7ccf2574b7b", size = 154174, upload-time = "2025-05-02T08:33:13.707Z" }, + { url = "https://files.pythonhosted.org/packages/78/be/8392efc43487ac051eee6c36d5fbd63032d78f7728cb37aebcc98191f1ff/charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4a476b06fbcf359ad25d34a057b7219281286ae2477cc5ff5e3f70a246971148", size = 149166, upload-time = "2025-05-02T08:33:15.458Z" }, + { url = "https://files.pythonhosted.org/packages/44/96/392abd49b094d30b91d9fbda6a69519e95802250b777841cf3bda8fe136c/charset_normalizer-3.4.2-cp313-cp313-win32.whl", hash = "sha256:aaeeb6a479c7667fbe1099af9617c83aaca22182d6cf8c53966491a0f1b7ffb7", size = 98064, upload-time = "2025-05-02T08:33:17.06Z" }, + { url = "https://files.pythonhosted.org/packages/e9/b0/0200da600134e001d91851ddc797809e2fe0ea72de90e09bec5a2fbdaccb/charset_normalizer-3.4.2-cp313-cp313-win_amd64.whl", hash = "sha256:aa6af9e7d59f9c12b33ae4e9450619cf2488e2bbe9b44030905877f0b2324980", size = 105641, upload-time = "2025-05-02T08:33:18.753Z" }, + { url = "https://files.pythonhosted.org/packages/20/94/c5790835a017658cbfabd07f3bfb549140c3ac458cfc196323996b10095a/charset_normalizer-3.4.2-py3-none-any.whl", hash = "sha256:7f56930ab0abd1c45cd15be65cc741c28b1c9a34876ce8c17a2fa107810c0af0", size = 52626, upload-time = "2025-05-02T08:34:40.053Z" }, +] + +[[package]] +name = "click" +version = "8.2.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/60/6c/8ca2efa64cf75a977a0d7fac081354553ebe483345c734fb6b6515d96bbc/click-8.2.1.tar.gz", hash = "sha256:27c491cc05d968d271d5a1db13e3b5a184636d9d930f148c50b038f0d0646202", size = 286342, upload-time = "2025-05-20T23:19:49.832Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/85/32/10bb5764d90a8eee674e9dc6f4db6a0ab47c8c4d0d83c27f7c39ac415a4d/click-8.2.1-py3-none-any.whl", hash = "sha256:61a3265b914e850b85317d0b3109c7f8cd35a670f963866005d6ef1d5175a12b", size = 102215, upload-time = "2025-05-20T23:19:47.796Z" }, +] + +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697, upload-time = "2022-10-25T02:36:22.414Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" }, +] + +[[package]] +name = "colorlog" +version = "6.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d3/7a/359f4d5df2353f26172b3cc39ea32daa39af8de522205f512f458923e677/colorlog-6.9.0.tar.gz", hash = "sha256:bfba54a1b93b94f54e1f4fe48395725a3d92fd2a4af702f6bd70946bdc0c6ac2", size = 16624, upload-time = "2024-10-29T18:34:51.011Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e3/51/9b208e85196941db2f0654ad0357ca6388ab3ed67efdbfc799f35d1f83aa/colorlog-6.9.0-py3-none-any.whl", hash = "sha256:5906e71acd67cb07a71e779c47c4bcb45fb8c2993eebe9e5adcd6a6f1b283eff", size = 11424, upload-time = "2024-10-29T18:34:49.815Z" }, +] + +[[package]] +name = "conda-inject" +version = "1.3.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyyaml" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b1/a8/8dc86113c65c949cc72d651461d6e4c544b3302a85ed14a5298829e6a419/conda_inject-1.3.2.tar.gz", hash = "sha256:0b8cde8c47998c118d8ff285a04977a3abcf734caf579c520fca469df1cd0aac", size = 3635, upload-time = "2024-05-27T12:20:58.873Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/87/4c/fc30b69fb4062aee57e3ab7ff493647c4220144908f0839c619f912045bf/conda_inject-1.3.2-py3-none-any.whl", hash = "sha256:6e641b408980c2814e3e527008c30749117909a21ff47392f07ef807da93a564", size = 4133, upload-time = "2024-05-27T12:20:57.332Z" }, +] + +[[package]] +name = "configargparse" +version = "1.7.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/85/4d/6c9ef746dfcc2a32e26f3860bb4a011c008c392b83eabdfb598d1a8bbe5d/configargparse-1.7.1.tar.gz", hash = "sha256:79c2ddae836a1e5914b71d58e4b9adbd9f7779d4e6351a637b7d2d9b6c46d3d9", size = 43958, upload-time = "2025-05-23T14:26:17.369Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/31/28/d28211d29bcc3620b1fece85a65ce5bb22f18670a03cd28ea4b75ede270c/configargparse-1.7.1-py3-none-any.whl", hash = "sha256:8b586a31f9d873abd1ca527ffbe58863c99f36d896e2829779803125e83be4b6", size = 25607, upload-time = "2025-05-23T14:26:15.923Z" }, +] + +[[package]] +name = "connection-pool" +version = "0.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bd/df/c9b4e25dce00f6349fd28aadba7b6c3f7431cc8bd4308a158fbe57b6a22e/connection_pool-0.0.3.tar.gz", hash = "sha256:bf429e7aef65921c69b4ed48f3d48d3eac1383b05d2df91884705842d974d0dc", size = 3795, upload-time = "2020-09-17T02:48:28.824Z" } + +[[package]] +name = "contourpy" +version = "1.3.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/54/eb9bfc647b19f2009dd5c7f5ec51c4e6ca831725f1aea7a993034f483147/contourpy-1.3.2.tar.gz", hash = "sha256:b6945942715a034c671b7fc54f9588126b0b8bf23db2696e3ca8328f3ff0ab54", size = 13466130, upload-time = "2025-04-15T17:47:53.79Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2e/61/5673f7e364b31e4e7ef6f61a4b5121c5f170f941895912f773d95270f3a2/contourpy-1.3.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:de39db2604ae755316cb5967728f4bea92685884b1e767b7c24e983ef5f771cb", size = 271630, upload-time = "2025-04-15T17:38:19.142Z" }, + { url = "https://files.pythonhosted.org/packages/ff/66/a40badddd1223822c95798c55292844b7e871e50f6bfd9f158cb25e0bd39/contourpy-1.3.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3f9e896f447c5c8618f1edb2bafa9a4030f22a575ec418ad70611450720b5b08", size = 255670, upload-time = "2025-04-15T17:38:23.688Z" }, + { url = "https://files.pythonhosted.org/packages/1e/c7/cf9fdee8200805c9bc3b148f49cb9482a4e3ea2719e772602a425c9b09f8/contourpy-1.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:71e2bd4a1c4188f5c2b8d274da78faab884b59df20df63c34f74aa1813c4427c", size = 306694, upload-time = "2025-04-15T17:38:28.238Z" }, + { url = "https://files.pythonhosted.org/packages/dd/e7/ccb9bec80e1ba121efbffad7f38021021cda5be87532ec16fd96533bb2e0/contourpy-1.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de425af81b6cea33101ae95ece1f696af39446db9682a0b56daaa48cfc29f38f", size = 345986, upload-time = "2025-04-15T17:38:33.502Z" }, + { url = "https://files.pythonhosted.org/packages/dc/49/ca13bb2da90391fa4219fdb23b078d6065ada886658ac7818e5441448b78/contourpy-1.3.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:977e98a0e0480d3fe292246417239d2d45435904afd6d7332d8455981c408b85", size = 318060, upload-time = "2025-04-15T17:38:38.672Z" }, + { url = "https://files.pythonhosted.org/packages/c8/65/5245ce8c548a8422236c13ffcdcdada6a2a812c361e9e0c70548bb40b661/contourpy-1.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:434f0adf84911c924519d2b08fc10491dd282b20bdd3fa8f60fd816ea0b48841", size = 322747, upload-time = "2025-04-15T17:38:43.712Z" }, + { url = "https://files.pythonhosted.org/packages/72/30/669b8eb48e0a01c660ead3752a25b44fdb2e5ebc13a55782f639170772f9/contourpy-1.3.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c66c4906cdbc50e9cba65978823e6e00b45682eb09adbb78c9775b74eb222422", size = 1308895, upload-time = "2025-04-15T17:39:00.224Z" }, + { url = "https://files.pythonhosted.org/packages/05/5a/b569f4250decee6e8d54498be7bdf29021a4c256e77fe8138c8319ef8eb3/contourpy-1.3.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8b7fc0cd78ba2f4695fd0a6ad81a19e7e3ab825c31b577f384aa9d7817dc3bef", size = 1379098, upload-time = "2025-04-15T17:43:29.649Z" }, + { url = "https://files.pythonhosted.org/packages/19/ba/b227c3886d120e60e41b28740ac3617b2f2b971b9f601c835661194579f1/contourpy-1.3.2-cp313-cp313-win32.whl", hash = "sha256:15ce6ab60957ca74cff444fe66d9045c1fd3e92c8936894ebd1f3eef2fff075f", size = 178535, upload-time = "2025-04-15T17:44:44.532Z" }, + { url = "https://files.pythonhosted.org/packages/12/6e/2fed56cd47ca739b43e892707ae9a13790a486a3173be063681ca67d2262/contourpy-1.3.2-cp313-cp313-win_amd64.whl", hash = "sha256:e1578f7eafce927b168752ed7e22646dad6cd9bca673c60bff55889fa236ebf9", size = 223096, upload-time = "2025-04-15T17:44:48.194Z" }, + { url = "https://files.pythonhosted.org/packages/54/4c/e76fe2a03014a7c767d79ea35c86a747e9325537a8b7627e0e5b3ba266b4/contourpy-1.3.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:0475b1f6604896bc7c53bb070e355e9321e1bc0d381735421a2d2068ec56531f", size = 285090, upload-time = "2025-04-15T17:43:34.084Z" }, + { url = "https://files.pythonhosted.org/packages/7b/e2/5aba47debd55d668e00baf9651b721e7733975dc9fc27264a62b0dd26eb8/contourpy-1.3.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:c85bb486e9be652314bb5b9e2e3b0d1b2e643d5eec4992c0fbe8ac71775da739", size = 268643, upload-time = "2025-04-15T17:43:38.626Z" }, + { url = "https://files.pythonhosted.org/packages/a1/37/cd45f1f051fe6230f751cc5cdd2728bb3a203f5619510ef11e732109593c/contourpy-1.3.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:745b57db7758f3ffc05a10254edd3182a2a83402a89c00957a8e8a22f5582823", size = 310443, upload-time = "2025-04-15T17:43:44.522Z" }, + { url = "https://files.pythonhosted.org/packages/8b/a2/36ea6140c306c9ff6dd38e3bcec80b3b018474ef4d17eb68ceecd26675f4/contourpy-1.3.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:970e9173dbd7eba9b4e01aab19215a48ee5dd3f43cef736eebde064a171f89a5", size = 349865, upload-time = "2025-04-15T17:43:49.545Z" }, + { url = "https://files.pythonhosted.org/packages/95/b7/2fc76bc539693180488f7b6cc518da7acbbb9e3b931fd9280504128bf956/contourpy-1.3.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c6c4639a9c22230276b7bffb6a850dfc8258a2521305e1faefe804d006b2e532", size = 321162, upload-time = "2025-04-15T17:43:54.203Z" }, + { url = "https://files.pythonhosted.org/packages/f4/10/76d4f778458b0aa83f96e59d65ece72a060bacb20cfbee46cf6cd5ceba41/contourpy-1.3.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc829960f34ba36aad4302e78eabf3ef16a3a100863f0d4eeddf30e8a485a03b", size = 327355, upload-time = "2025-04-15T17:44:01.025Z" }, + { url = "https://files.pythonhosted.org/packages/43/a3/10cf483ea683f9f8ab096c24bad3cce20e0d1dd9a4baa0e2093c1c962d9d/contourpy-1.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:d32530b534e986374fc19eaa77fcb87e8a99e5431499949b828312bdcd20ac52", size = 1307935, upload-time = "2025-04-15T17:44:17.322Z" }, + { url = "https://files.pythonhosted.org/packages/78/73/69dd9a024444489e22d86108e7b913f3528f56cfc312b5c5727a44188471/contourpy-1.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:e298e7e70cf4eb179cc1077be1c725b5fd131ebc81181bf0c03525c8abc297fd", size = 1372168, upload-time = "2025-04-15T17:44:33.43Z" }, + { url = "https://files.pythonhosted.org/packages/0f/1b/96d586ccf1b1a9d2004dd519b25fbf104a11589abfd05484ff12199cca21/contourpy-1.3.2-cp313-cp313t-win32.whl", hash = "sha256:d0e589ae0d55204991450bb5c23f571c64fe43adaa53f93fc902a84c96f52fe1", size = 189550, upload-time = "2025-04-15T17:44:37.092Z" }, + { url = "https://files.pythonhosted.org/packages/b0/e6/6000d0094e8a5e32ad62591c8609e269febb6e4db83a1c75ff8868b42731/contourpy-1.3.2-cp313-cp313t-win_amd64.whl", hash = "sha256:78e9253c3de756b3f6a5174d024c4835acd59eb3f8e2ca13e775dbffe1558f69", size = 238214, upload-time = "2025-04-15T17:44:40.827Z" }, +] + +[[package]] +name = "cycler" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a9/95/a3dbbb5028f35eafb79008e7522a75244477d2838f38cbb722248dabc2a8/cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c", size = 7615, upload-time = "2023-10-07T05:32:18.335Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30", size = 8321, upload-time = "2023-10-07T05:32:16.783Z" }, +] + +[[package]] +name = "distlib" +version = "0.3.9" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0d/dd/1bec4c5ddb504ca60fc29472f3d27e8d4da1257a854e1d96742f15c1d02d/distlib-0.3.9.tar.gz", hash = "sha256:a60f20dea646b8a33f3e7772f74dc0b2d0772d2837ee1342a00645c81edf9403", size = 613923, upload-time = "2024-10-09T18:35:47.551Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/91/a1/cf2472db20f7ce4a6be1253a81cfdf85ad9c7885ffbed7047fb72c24cf87/distlib-0.3.9-py2.py3-none-any.whl", hash = "sha256:47f8c22fd27c27e25a65601af709b38e4f0a45ea4fc2e710f65755fa8caaaf87", size = 468973, upload-time = "2024-10-09T18:35:44.272Z" }, +] + +[[package]] +name = "docutils" +version = "0.21.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ae/ed/aefcc8cd0ba62a0560c3c18c33925362d46c6075480bfa4df87b28e169a9/docutils-0.21.2.tar.gz", hash = "sha256:3a6b18732edf182daa3cd12775bbb338cf5691468f91eeeb109deff6ebfa986f", size = 2204444, upload-time = "2024-04-23T18:57:18.24Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8f/d7/9322c609343d929e75e7e5e6255e614fcc67572cfd083959cdef3b7aad79/docutils-0.21.2-py3-none-any.whl", hash = "sha256:dafca5b9e384f0e419294eb4d2ff9fa826435bf15f15b7bd45723e8ad76811b2", size = 587408, upload-time = "2024-04-23T18:57:14.835Z" }, +] + +[[package]] +name = "dpath" +version = "2.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b5/ce/e1fd64d36e4a5717bd5e6b2ad188f5eaa2e902fde871ea73a79875793fc9/dpath-2.2.0.tar.gz", hash = "sha256:34f7e630dc55ea3f219e555726f5da4b4b25f2200319c8e6902c394258dd6a3e", size = 28266, upload-time = "2024-06-12T22:08:03.686Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/05/d1/8952806fbf9583004ab479d8f58a9496c3d35f6b6009ddd458bdd9978eaf/dpath-2.2.0-py3-none-any.whl", hash = "sha256:b330a375ded0a0d2ed404440f6c6a715deae5313af40bbb01c8a41d891900576", size = 17618, upload-time = "2024-06-12T22:08:01.881Z" }, +] + +[[package]] +name = "easydev" +version = "0.13.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama" }, + { name = "colorlog" }, + { name = "line-profiler" }, + { name = "pexpect" }, + { name = "platformdirs" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c6/fd/7d39b21b8d65f8e5b06b7026130ed4710067ca44906cfe1ce3d1b8803dc8/easydev-0.13.3.tar.gz", hash = "sha256:111644afca6785d406e7819ebce56b928d7fd9be15156d6f38f8274b3ccbe249", size = 35457, upload-time = "2025-01-10T10:33:09.359Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5f/29/21ea27a4772d1c275a7c96244d43e8dc11f2533c01cbe22b9cb2ef2ce83d/easydev-0.13.3-py3-none-any.whl", hash = "sha256:be7b4c56ce6028ce624f95209590f6601435173283656fabca82448d1e0b9d56", size = 57011, upload-time = "2025-01-10T10:33:04.857Z" }, +] + +[[package]] +name = "fastjsonschema" +version = "2.21.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8b/50/4b769ce1ac4071a1ef6d86b1a3fb56cdc3a37615e8c5519e1af96cdac366/fastjsonschema-2.21.1.tar.gz", hash = "sha256:794d4f0a58f848961ba16af7b9c85a3e88cd360df008c59aac6fc5ae9323b5d4", size = 373939, upload-time = "2024-12-02T10:55:15.133Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/90/2b/0817a2b257fe88725c25589d89aec060581aabf668707a8d03b2e9e0cb2a/fastjsonschema-2.21.1-py3-none-any.whl", hash = "sha256:c9e5b7e908310918cf494a434eeb31384dd84a98b57a30bcb1f535015b554667", size = 23924, upload-time = "2024-12-02T10:55:07.599Z" }, +] + +[[package]] +name = "filelock" +version = "3.18.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0a/10/c23352565a6544bdc5353e0b15fc1c563352101f30e24bf500207a54df9a/filelock-3.18.0.tar.gz", hash = "sha256:adbc88eabb99d2fec8c9c1b229b171f18afa655400173ddc653d5d01501fb9f2", size = 18075, upload-time = "2025-03-14T07:11:40.47Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4d/36/2a115987e2d8c300a974597416d9de88f2444426de9571f4b59b2cca3acc/filelock-3.18.0-py3-none-any.whl", hash = "sha256:c401f4f8377c4464e6db25fff06205fd89bdd83b65eb0488ed1b160f780e21de", size = 16215, upload-time = "2025-03-14T07:11:39.145Z" }, +] + +[[package]] +name = "fonttools" +version = "4.58.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2e/5a/1124b2c8cb3a8015faf552e92714040bcdbc145dfa29928891b02d147a18/fonttools-4.58.4.tar.gz", hash = "sha256:928a8009b9884ed3aae17724b960987575155ca23c6f0b8146e400cc9e0d44ba", size = 3525026, upload-time = "2025-06-13T17:25:15.426Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d4/4f/c05cab5fc1a4293e6bc535c6cb272607155a0517700f5418a4165b7f9ec8/fonttools-4.58.4-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:5f4a64846495c543796fa59b90b7a7a9dff6839bd852741ab35a71994d685c6d", size = 2745197, upload-time = "2025-06-13T17:24:40.645Z" }, + { url = "https://files.pythonhosted.org/packages/3e/d3/49211b1f96ae49308f4f78ca7664742377a6867f00f704cdb31b57e4b432/fonttools-4.58.4-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e80661793a5d4d7ad132a2aa1eae2e160fbdbb50831a0edf37c7c63b2ed36574", size = 2317272, upload-time = "2025-06-13T17:24:43.428Z" }, + { url = "https://files.pythonhosted.org/packages/b2/11/c9972e46a6abd752a40a46960e431c795ad1f306775fc1f9e8c3081a1274/fonttools-4.58.4-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:fe5807fc64e4ba5130f1974c045a6e8d795f3b7fb6debfa511d1773290dbb76b", size = 4877184, upload-time = "2025-06-13T17:24:45.527Z" }, + { url = "https://files.pythonhosted.org/packages/ea/24/5017c01c9ef8df572cc9eaf9f12be83ad8ed722ff6dc67991d3d752956e4/fonttools-4.58.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b610b9bef841cb8f4b50472494158b1e347d15cad56eac414c722eda695a6cfd", size = 4939445, upload-time = "2025-06-13T17:24:47.647Z" }, + { url = "https://files.pythonhosted.org/packages/79/b0/538cc4d0284b5a8826b4abed93a69db52e358525d4b55c47c8cef3669767/fonttools-4.58.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:2daa7f0e213c38f05f054eb5e1730bd0424aebddbeac094489ea1585807dd187", size = 4878800, upload-time = "2025-06-13T17:24:49.766Z" }, + { url = "https://files.pythonhosted.org/packages/5a/9b/a891446b7a8250e65bffceb248508587958a94db467ffd33972723ab86c9/fonttools-4.58.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:66cccb6c0b944496b7f26450e9a66e997739c513ffaac728d24930df2fd9d35b", size = 5021259, upload-time = "2025-06-13T17:24:51.754Z" }, + { url = "https://files.pythonhosted.org/packages/17/b2/c4d2872cff3ace3ddd1388bf15b76a1d8d5313f0a61f234e9aed287e674d/fonttools-4.58.4-cp313-cp313-win32.whl", hash = "sha256:94d2aebb5ca59a5107825520fde596e344652c1f18170ef01dacbe48fa60c889", size = 2185824, upload-time = "2025-06-13T17:24:54.324Z" }, + { url = "https://files.pythonhosted.org/packages/98/57/cddf8bcc911d4f47dfca1956c1e3aeeb9f7c9b8e88b2a312fe8c22714e0b/fonttools-4.58.4-cp313-cp313-win_amd64.whl", hash = "sha256:b554bd6e80bba582fd326ddab296e563c20c64dca816d5e30489760e0c41529f", size = 2236382, upload-time = "2025-06-13T17:24:56.291Z" }, + { url = "https://files.pythonhosted.org/packages/0b/2f/c536b5b9bb3c071e91d536a4d11f969e911dbb6b227939f4c5b0bca090df/fonttools-4.58.4-py3-none-any.whl", hash = "sha256:a10ce13a13f26cbb9f37512a4346bb437ad7e002ff6fa966a7ce7ff5ac3528bd", size = 1114660, upload-time = "2025-06-13T17:25:13.321Z" }, +] + +[[package]] +name = "gevent" +version = "25.5.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "platform_python_implementation == 'CPython' and sys_platform == 'win32'" }, + { name = "greenlet", marker = "platform_python_implementation == 'CPython'" }, + { name = "zope-event" }, + { name = "zope-interface" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f1/58/267e8160aea00ab00acd2de97197eecfe307064a376fb5c892870a8a6159/gevent-25.5.1.tar.gz", hash = "sha256:582c948fa9a23188b890d0bc130734a506d039a2e5ad87dae276a456cc683e61", size = 6388207, upload-time = "2025-05-12T12:57:59.833Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/10/25/2162b38d7b48e08865db6772d632bd1648136ce2bb50e340565e45607cad/gevent-25.5.1-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:a022a9de9275ce0b390b7315595454258c525dc8287a03f1a6cacc5878ab7cbc", size = 2928044, upload-time = "2025-05-12T11:11:36.33Z" }, + { url = "https://files.pythonhosted.org/packages/1b/e0/dbd597a964ed00176da122ea759bf2a6c1504f1e9f08e185379f92dc355f/gevent-25.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3fae8533f9d0ef3348a1f503edcfb531ef7a0236b57da1e24339aceb0ce52922", size = 1788751, upload-time = "2025-05-12T11:52:32.643Z" }, + { url = "https://files.pythonhosted.org/packages/f1/74/960cc4cf4c9c90eafbe0efc238cdf588862e8e278d0b8c0d15a0da4ed480/gevent-25.5.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c7b32d9c3b5294b39ea9060e20c582e49e1ec81edbfeae6cf05f8ad0829cb13d", size = 1869766, upload-time = "2025-05-12T11:54:23.903Z" }, + { url = "https://files.pythonhosted.org/packages/56/78/fa84b1c7db79b156929685db09a7c18c3127361dca18a09e998e98118506/gevent-25.5.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7b95815fe44f318ebbfd733b6428b4cb18cc5e68f1c40e8501dd69cc1f42a83d", size = 1835358, upload-time = "2025-05-12T12:00:06.794Z" }, + { url = "https://files.pythonhosted.org/packages/00/5c/bfefe3822bbca5b83bfad256c82251b3f5be13d52d14e17a786847b9b625/gevent-25.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2d316529b70d325b183b2f3f5cde958911ff7be12eb2b532b5c301f915dbbf1e", size = 2073071, upload-time = "2025-05-12T11:33:04.2Z" }, + { url = "https://files.pythonhosted.org/packages/20/e4/08a77a3839a37db96393dea952e992d5846a881b887986dde62ead6b48a1/gevent-25.5.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f6ba33c13db91ffdbb489a4f3d177a261ea1843923e1d68a5636c53fe98fa5ce", size = 1809805, upload-time = "2025-05-12T12:00:00.537Z" }, + { url = "https://files.pythonhosted.org/packages/2b/ac/28848348f790c1283df74b0fc0a554271d0606676470f848eccf84eae42a/gevent-25.5.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:37ee34b77c7553777c0b8379915f75934c3f9c8cd32f7cd098ea43c9323c2276", size = 2138305, upload-time = "2025-05-12T11:40:56.566Z" }, + { url = "https://files.pythonhosted.org/packages/52/9e/0e9e40facd2d714bfb00f71fc6dacaacc82c24c1c2e097bf6461e00dec9f/gevent-25.5.1-cp313-cp313-win_amd64.whl", hash = "sha256:9fa6aa0da224ed807d3b76cdb4ee8b54d4d4d5e018aed2478098e685baae7896", size = 1637444, upload-time = "2025-05-12T12:17:45.995Z" }, + { url = "https://files.pythonhosted.org/packages/60/16/b71171e97ec7b4ded8669542f4369d88d5a289e2704efbbde51e858e062a/gevent-25.5.1-cp314-cp314-macosx_11_0_universal2.whl", hash = "sha256:0bacf89a65489d26c7087669af89938d5bfd9f7afb12a07b57855b9fad6ccbd0", size = 2937113, upload-time = "2025-05-12T11:12:03.191Z" }, +] + +[[package]] +name = "gitdb" +version = "4.0.12" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "smmap" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/72/94/63b0fc47eb32792c7ba1fe1b694daec9a63620db1e313033d18140c2320a/gitdb-4.0.12.tar.gz", hash = "sha256:5ef71f855d191a3326fcfbc0d5da835f26b13fbcba60c32c21091c349ffdb571", size = 394684, upload-time = "2025-01-02T07:20:46.413Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl", hash = "sha256:67073e15955400952c6565cc3e707c554a4eea2e428946f7a4c162fab9bd9bcf", size = 62794, upload-time = "2025-01-02T07:20:43.624Z" }, +] + +[[package]] +name = "gitpython" +version = "3.1.44" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "gitdb" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c0/89/37df0b71473153574a5cdef8f242de422a0f5d26d7a9e231e6f169b4ad14/gitpython-3.1.44.tar.gz", hash = "sha256:c87e30b26253bf5418b01b0660f818967f3c503193838337fe5e573331249269", size = 214196, upload-time = "2025-01-02T07:32:43.59Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1d/9a/4114a9057db2f1462d5c8f8390ab7383925fe1ac012eaa42402ad65c2963/GitPython-3.1.44-py3-none-any.whl", hash = "sha256:9e0e10cda9bed1ee64bc9a6de50e7e38a9c9943241cd7f585f6df3ed28011110", size = 207599, upload-time = "2025-01-02T07:32:40.731Z" }, +] + +[[package]] +name = "greenlet" +version = "3.2.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c9/92/bb85bd6e80148a4d2e0c59f7c0c2891029f8fd510183afc7d8d2feeed9b6/greenlet-3.2.3.tar.gz", hash = "sha256:8b0dd8ae4c0d6f5e54ee55ba935eeb3d735a9b58a8a1e5b5cbab64e01a39f365", size = 185752, upload-time = "2025-06-05T16:16:09.955Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b1/cf/f5c0b23309070ae93de75c90d29300751a5aacefc0a3ed1b1d8edb28f08b/greenlet-3.2.3-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:500b8689aa9dd1ab26872a34084503aeddefcb438e2e7317b89b11eaea1901ad", size = 270732, upload-time = "2025-06-05T16:10:08.26Z" }, + { url = "https://files.pythonhosted.org/packages/48/ae/91a957ba60482d3fecf9be49bc3948f341d706b52ddb9d83a70d42abd498/greenlet-3.2.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:a07d3472c2a93117af3b0136f246b2833fdc0b542d4a9799ae5f41c28323faef", size = 639033, upload-time = "2025-06-05T16:38:53.983Z" }, + { url = "https://files.pythonhosted.org/packages/6f/df/20ffa66dd5a7a7beffa6451bdb7400d66251374ab40b99981478c69a67a8/greenlet-3.2.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:8704b3768d2f51150626962f4b9a9e4a17d2e37c8a8d9867bbd9fa4eb938d3b3", size = 652999, upload-time = "2025-06-05T16:41:37.89Z" }, + { url = "https://files.pythonhosted.org/packages/51/b4/ebb2c8cb41e521f1d72bf0465f2f9a2fd803f674a88db228887e6847077e/greenlet-3.2.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:5035d77a27b7c62db6cf41cf786cfe2242644a7a337a0e155c80960598baab95", size = 647368, upload-time = "2025-06-05T16:48:21.467Z" }, + { url = "https://files.pythonhosted.org/packages/8e/6a/1e1b5aa10dced4ae876a322155705257748108b7fd2e4fae3f2a091fe81a/greenlet-3.2.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:2d8aa5423cd4a396792f6d4580f88bdc6efcb9205891c9d40d20f6e670992efb", size = 650037, upload-time = "2025-06-05T16:13:06.402Z" }, + { url = "https://files.pythonhosted.org/packages/26/f2/ad51331a157c7015c675702e2d5230c243695c788f8f75feba1af32b3617/greenlet-3.2.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2c724620a101f8170065d7dded3f962a2aea7a7dae133a009cada42847e04a7b", size = 608402, upload-time = "2025-06-05T16:12:51.91Z" }, + { url = "https://files.pythonhosted.org/packages/26/bc/862bd2083e6b3aff23300900a956f4ea9a4059de337f5c8734346b9b34fc/greenlet-3.2.3-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:873abe55f134c48e1f2a6f53f7d1419192a3d1a4e873bace00499a4e45ea6af0", size = 1119577, upload-time = "2025-06-05T16:36:49.787Z" }, + { url = "https://files.pythonhosted.org/packages/86/94/1fc0cc068cfde885170e01de40a619b00eaa8f2916bf3541744730ffb4c3/greenlet-3.2.3-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:024571bbce5f2c1cfff08bf3fbaa43bbc7444f580ae13b0099e95d0e6e67ed36", size = 1147121, upload-time = "2025-06-05T16:12:42.527Z" }, + { url = "https://files.pythonhosted.org/packages/27/1a/199f9587e8cb08a0658f9c30f3799244307614148ffe8b1e3aa22f324dea/greenlet-3.2.3-cp313-cp313-win_amd64.whl", hash = "sha256:5195fb1e75e592dd04ce79881c8a22becdfa3e6f500e7feb059b1e6fdd54d3e3", size = 297603, upload-time = "2025-06-05T16:20:12.651Z" }, + { url = "https://files.pythonhosted.org/packages/d8/ca/accd7aa5280eb92b70ed9e8f7fd79dc50a2c21d8c73b9a0856f5b564e222/greenlet-3.2.3-cp314-cp314-macosx_11_0_universal2.whl", hash = "sha256:3d04332dddb10b4a211b68111dabaee2e1a073663d117dc10247b5b1642bac86", size = 271479, upload-time = "2025-06-05T16:10:47.525Z" }, + { url = "https://files.pythonhosted.org/packages/55/71/01ed9895d9eb49223280ecc98a557585edfa56b3d0e965b9fa9f7f06b6d9/greenlet-3.2.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:8186162dffde068a465deab08fc72c767196895c39db26ab1c17c0b77a6d8b97", size = 683952, upload-time = "2025-06-05T16:38:55.125Z" }, + { url = "https://files.pythonhosted.org/packages/ea/61/638c4bdf460c3c678a0a1ef4c200f347dff80719597e53b5edb2fb27ab54/greenlet-3.2.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:f4bfbaa6096b1b7a200024784217defedf46a07c2eee1a498e94a1b5f8ec5728", size = 696917, upload-time = "2025-06-05T16:41:38.959Z" }, + { url = "https://files.pythonhosted.org/packages/22/cc/0bd1a7eb759d1f3e3cc2d1bc0f0b487ad3cc9f34d74da4b80f226fde4ec3/greenlet-3.2.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:ed6cfa9200484d234d8394c70f5492f144b20d4533f69262d530a1a082f6ee9a", size = 692443, upload-time = "2025-06-05T16:48:23.113Z" }, + { url = "https://files.pythonhosted.org/packages/67/10/b2a4b63d3f08362662e89c103f7fe28894a51ae0bc890fabf37d1d780e52/greenlet-3.2.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:02b0df6f63cd15012bed5401b47829cfd2e97052dc89da3cfaf2c779124eb892", size = 692995, upload-time = "2025-06-05T16:13:07.972Z" }, + { url = "https://files.pythonhosted.org/packages/5a/c6/ad82f148a4e3ce9564056453a71529732baf5448ad53fc323e37efe34f66/greenlet-3.2.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:86c2d68e87107c1792e2e8d5399acec2487a4e993ab76c792408e59394d52141", size = 655320, upload-time = "2025-06-05T16:12:53.453Z" }, + { url = "https://files.pythonhosted.org/packages/5c/4f/aab73ecaa6b3086a4c89863d94cf26fa84cbff63f52ce9bc4342b3087a06/greenlet-3.2.3-cp314-cp314-win_amd64.whl", hash = "sha256:8c47aae8fbbfcf82cc13327ae802ba13c9c36753b67e760023fd116bc124a62a", size = 301236, upload-time = "2025-06-05T16:15:20.111Z" }, +] + +[[package]] +name = "grequests" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "gevent" }, + { name = "requests" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8a/6a/95616ce27c8b7c58f7dd0e5eba61ac873ecaae082d73e515904803fe73e7/grequests-0.7.0.tar.gz", hash = "sha256:5c33f14268df5b8fa1107d8537815be6febbad6ec560524d6a404b7778cf6ba6", size = 6524, upload-time = "2023-06-08T00:04:29.222Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1c/6a/bb015faedfb65ed728d7ccf15888e82ab46f980430d3c506fb3824388d1d/grequests-0.7.0-py2.py3-none-any.whl", hash = "sha256:4733edfcece027de25ae8eff86a87f563d7e829fdacbf3ce8b3aeea507694287", size = 5687, upload-time = "2023-06-08T00:04:27.669Z" }, +] + +[[package]] +name = "humanfriendly" +version = "10.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyreadline3", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cc/3f/2c29224acb2e2df4d2046e4c73ee2662023c58ff5b113c4c1adac0886c43/humanfriendly-10.0.tar.gz", hash = "sha256:6b0b831ce8f15f7300721aa49829fc4e83921a9a301cc7f606be6686a2288ddc", size = 360702, upload-time = "2021-09-17T21:40:43.31Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f0/0f/310fb31e39e2d734ccaa2c0fb981ee41f7bd5056ce9bc29b2248bd569169/humanfriendly-10.0-py2.py3-none-any.whl", hash = "sha256:1697e1a8a8f550fd43c2865cd84542fc175a61dcb779b6fee18cf6b6ccba1477", size = 86794, upload-time = "2021-09-17T21:40:39.897Z" }, +] + +[[package]] +name = "identify" +version = "2.6.12" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a2/88/d193a27416618628a5eea64e3223acd800b40749a96ffb322a9b55a49ed1/identify-2.6.12.tar.gz", hash = "sha256:d8de45749f1efb108badef65ee8386f0f7bb19a7f26185f74de6367bffbaf0e6", size = 99254, upload-time = "2025-05-23T20:37:53.3Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7a/cd/18f8da995b658420625f7ef13f037be53ae04ec5ad33f9b718240dcfd48c/identify-2.6.12-py2.py3-none-any.whl", hash = "sha256:ad9672d5a72e0d2ff7c5c8809b62dfa60458626352fb0eb7b55e69bdc45334a2", size = 99145, upload-time = "2025-05-23T20:37:51.495Z" }, +] + +[[package]] +name = "idna" +version = "3.10" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", size = 190490, upload-time = "2024-09-15T18:07:39.745Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", size = 70442, upload-time = "2024-09-15T18:07:37.964Z" }, +] + +[[package]] +name = "immutables" +version = "0.21" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/69/41/0ccaa6ef9943c0609ec5aa663a3b3e681c1712c1007147b84590cec706a0/immutables-0.21.tar.gz", hash = "sha256:b55ffaf0449790242feb4c56ab799ea7af92801a0a43f9e2f4f8af2ab24dfc4a", size = 89008, upload-time = "2024-10-10T00:55:01.434Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5e/db/60da6f5a3c3f64e0b3940c4ad86e1971d9d2eb8b13a179c26eda5ec6a298/immutables-0.21-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:79674b51aa8dd983f9ac55f7f67b433b1df84a6b4f28ab860588389a5659485b", size = 31922, upload-time = "2024-10-10T00:54:29.305Z" }, + { url = "https://files.pythonhosted.org/packages/9b/89/5420f1d16a652024fcccc9c07d46d4157fcaf33ff37c82412c83fc16ef36/immutables-0.21-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:93c8350f8f7d0d9693f708229d9d0578e6f3b785ce6da4bced1da97137aacfad", size = 31552, upload-time = "2024-10-10T00:54:30.282Z" }, + { url = "https://files.pythonhosted.org/packages/d2/d0/a5fb7c164ddb298ec37537e618b70dfa30c7cae9fac01de374c36489cbc9/immutables-0.21-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:583d2a63e444ce1538cc2bda56ae1f4a1a11473dbc0377c82b516bc7eec3b81e", size = 104334, upload-time = "2024-10-10T00:54:31.284Z" }, + { url = "https://files.pythonhosted.org/packages/f3/a5/5fda0ee4a261a85124011ac0750fec678f00e1b2d4a5502b149a3b4d86d9/immutables-0.21-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b274a52da9b106db55eceb93fc1aea858c4e6f4740189e3548e38613eafc2021", size = 104898, upload-time = "2024-10-10T00:54:32.295Z" }, + { url = "https://files.pythonhosted.org/packages/93/fa/d46bfe92f2c66d35916344176ff87fa839aac9c16849652947e722b7a15f/immutables-0.21-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:338bede057250b33716a3e4892e15df0bf5a5ddbf1d67ead996b3e680b49ef9e", size = 99966, upload-time = "2024-10-10T00:54:34.046Z" }, + { url = "https://files.pythonhosted.org/packages/d7/f5/2a19e2e095f7a39d8d77dcc10669734d2d99773ce00c99bdcfeeb7d714e6/immutables-0.21-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8781c89583b68f604cf30f0978b722165824c3075888639fde771bf1a3e12dc0", size = 101773, upload-time = "2024-10-10T00:54:35.851Z" }, + { url = "https://files.pythonhosted.org/packages/86/80/5b6ee53f836cf2067ced997efbf2ce20890627f150c3089ea50cf607e783/immutables-0.21-cp313-cp313-win32.whl", hash = "sha256:e97ea83befad873712f283c0cccd630f70cba753e207b4868af28d5b85e9dc54", size = 30988, upload-time = "2024-10-10T00:54:37.618Z" }, + { url = "https://files.pythonhosted.org/packages/ff/07/f623e6da78368fc0b1772f4877afbf60f34c4cc93f1a8f1006507afa21ec/immutables-0.21-cp313-cp313-win_amd64.whl", hash = "sha256:cfcb23bd898f5a4ef88692b42c51f52ca7373a35ba4dcc215060a668639eb5da", size = 35147, upload-time = "2024-10-10T00:54:38.558Z" }, +] + +[[package]] +name = "jinja2" +version = "3.1.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/df/bf/f7da0350254c0ed7c72f3e33cef02e048281fec7ecec5f032d4aac52226b/jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d", size = 245115, upload-time = "2025-03-05T20:05:02.478Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67", size = 134899, upload-time = "2025-03-05T20:05:00.369Z" }, +] + +[[package]] +name = "jsonschema" +version = "4.24.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs" }, + { name = "jsonschema-specifications" }, + { name = "referencing" }, + { name = "rpds-py" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bf/d3/1cf5326b923a53515d8f3a2cd442e6d7e94fcc444716e879ea70a0ce3177/jsonschema-4.24.0.tar.gz", hash = "sha256:0b4e8069eb12aedfa881333004bccaec24ecef5a8a6a4b6df142b2cc9599d196", size = 353480, upload-time = "2025-05-26T18:48:10.459Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a2/3d/023389198f69c722d039351050738d6755376c8fd343e91dc493ea485905/jsonschema-4.24.0-py3-none-any.whl", hash = "sha256:a462455f19f5faf404a7902952b6f0e3ce868f3ee09a359b05eca6673bd8412d", size = 88709, upload-time = "2025-05-26T18:48:08.417Z" }, +] + +[[package]] +name = "jsonschema-specifications" +version = "2025.4.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "referencing" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bf/ce/46fbd9c8119cfc3581ee5643ea49464d168028cfb5caff5fc0596d0cf914/jsonschema_specifications-2025.4.1.tar.gz", hash = "sha256:630159c9f4dbea161a6a2205c3011cc4f18ff381b189fff48bb39b9bf26ae608", size = 15513, upload-time = "2025-04-23T12:34:07.418Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/01/0e/b27cdbaccf30b890c40ed1da9fd4a3593a5cf94dae54fb34f8a4b74fcd3f/jsonschema_specifications-2025.4.1-py3-none-any.whl", hash = "sha256:4653bffbd6584f7de83a67e0d620ef16900b390ddc7939d56684d6c81e33f1af", size = 18437, upload-time = "2025-04-23T12:34:05.422Z" }, +] + +[[package]] +name = "jupyter-core" +version = "5.8.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "platformdirs" }, + { name = "pywin32", marker = "platform_python_implementation != 'PyPy' and sys_platform == 'win32'" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/99/1b/72906d554acfeb588332eaaa6f61577705e9ec752ddb486f302dafa292d9/jupyter_core-5.8.1.tar.gz", hash = "sha256:0a5f9706f70e64786b75acba995988915ebd4601c8a52e534a40b51c95f59941", size = 88923, upload-time = "2025-05-27T07:38:16.655Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2f/57/6bffd4b20b88da3800c5d691e0337761576ee688eb01299eae865689d2df/jupyter_core-5.8.1-py3-none-any.whl", hash = "sha256:c28d268fc90fb53f1338ded2eb410704c5449a358406e8a948b75706e24863d0", size = 28880, upload-time = "2025-05-27T07:38:15.137Z" }, +] + +[[package]] +name = "kiwisolver" +version = "1.4.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/82/59/7c91426a8ac292e1cdd53a63b6d9439abd573c875c3f92c146767dd33faf/kiwisolver-1.4.8.tar.gz", hash = "sha256:23d5f023bdc8c7e54eb65f03ca5d5bb25b601eac4d7f1a042888a1f45237987e", size = 97538, upload-time = "2024-12-24T18:30:51.519Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/79/b3/e62464a652f4f8cd9006e13d07abad844a47df1e6537f73ddfbf1bc997ec/kiwisolver-1.4.8-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:1c8ceb754339793c24aee1c9fb2485b5b1f5bb1c2c214ff13368431e51fc9a09", size = 124156, upload-time = "2024-12-24T18:29:45.368Z" }, + { url = "https://files.pythonhosted.org/packages/8d/2d/f13d06998b546a2ad4f48607a146e045bbe48030774de29f90bdc573df15/kiwisolver-1.4.8-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:54a62808ac74b5e55a04a408cda6156f986cefbcf0ada13572696b507cc92fa1", size = 66555, upload-time = "2024-12-24T18:29:46.37Z" }, + { url = "https://files.pythonhosted.org/packages/59/e3/b8bd14b0a54998a9fd1e8da591c60998dc003618cb19a3f94cb233ec1511/kiwisolver-1.4.8-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:68269e60ee4929893aad82666821aaacbd455284124817af45c11e50a4b42e3c", size = 65071, upload-time = "2024-12-24T18:29:47.333Z" }, + { url = "https://files.pythonhosted.org/packages/f0/1c/6c86f6d85ffe4d0ce04228d976f00674f1df5dc893bf2dd4f1928748f187/kiwisolver-1.4.8-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34d142fba9c464bc3bbfeff15c96eab0e7310343d6aefb62a79d51421fcc5f1b", size = 1378053, upload-time = "2024-12-24T18:29:49.636Z" }, + { url = "https://files.pythonhosted.org/packages/4e/b9/1c6e9f6dcb103ac5cf87cb695845f5fa71379021500153566d8a8a9fc291/kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ddc373e0eef45b59197de815b1b28ef89ae3955e7722cc9710fb91cd77b7f47", size = 1472278, upload-time = "2024-12-24T18:29:51.164Z" }, + { url = "https://files.pythonhosted.org/packages/ee/81/aca1eb176de671f8bda479b11acdc42c132b61a2ac861c883907dde6debb/kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77e6f57a20b9bd4e1e2cedda4d0b986ebd0216236f0106e55c28aea3d3d69b16", size = 1478139, upload-time = "2024-12-24T18:29:52.594Z" }, + { url = "https://files.pythonhosted.org/packages/49/f4/e081522473671c97b2687d380e9e4c26f748a86363ce5af48b4a28e48d06/kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08e77738ed7538f036cd1170cbed942ef749137b1311fa2bbe2a7fda2f6bf3cc", size = 1413517, upload-time = "2024-12-24T18:29:53.941Z" }, + { url = "https://files.pythonhosted.org/packages/8f/e9/6a7d025d8da8c4931522922cd706105aa32b3291d1add8c5427cdcd66e63/kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a5ce1e481a74b44dd5e92ff03ea0cb371ae7a0268318e202be06c8f04f4f1246", size = 1474952, upload-time = "2024-12-24T18:29:56.523Z" }, + { url = "https://files.pythonhosted.org/packages/82/13/13fa685ae167bee5d94b415991c4fc7bb0a1b6ebea6e753a87044b209678/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:fc2ace710ba7c1dfd1a3b42530b62b9ceed115f19a1656adefce7b1782a37794", size = 2269132, upload-time = "2024-12-24T18:29:57.989Z" }, + { url = "https://files.pythonhosted.org/packages/ef/92/bb7c9395489b99a6cb41d502d3686bac692586db2045adc19e45ee64ed23/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3452046c37c7692bd52b0e752b87954ef86ee2224e624ef7ce6cb21e8c41cc1b", size = 2425997, upload-time = "2024-12-24T18:29:59.393Z" }, + { url = "https://files.pythonhosted.org/packages/ed/12/87f0e9271e2b63d35d0d8524954145837dd1a6c15b62a2d8c1ebe0f182b4/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:7e9a60b50fe8b2ec6f448fe8d81b07e40141bfced7f896309df271a0b92f80f3", size = 2376060, upload-time = "2024-12-24T18:30:01.338Z" }, + { url = "https://files.pythonhosted.org/packages/02/6e/c8af39288edbce8bf0fa35dee427b082758a4b71e9c91ef18fa667782138/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:918139571133f366e8362fa4a297aeba86c7816b7ecf0bc79168080e2bd79957", size = 2520471, upload-time = "2024-12-24T18:30:04.574Z" }, + { url = "https://files.pythonhosted.org/packages/13/78/df381bc7b26e535c91469f77f16adcd073beb3e2dd25042efd064af82323/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e063ef9f89885a1d68dd8b2e18f5ead48653176d10a0e324e3b0030e3a69adeb", size = 2338793, upload-time = "2024-12-24T18:30:06.25Z" }, + { url = "https://files.pythonhosted.org/packages/d0/dc/c1abe38c37c071d0fc71c9a474fd0b9ede05d42f5a458d584619cfd2371a/kiwisolver-1.4.8-cp313-cp313-win_amd64.whl", hash = "sha256:a17b7c4f5b2c51bb68ed379defd608a03954a1845dfed7cc0117f1cc8a9b7fd2", size = 71855, upload-time = "2024-12-24T18:30:07.535Z" }, + { url = "https://files.pythonhosted.org/packages/a0/b6/21529d595b126ac298fdd90b705d87d4c5693de60023e0efcb4f387ed99e/kiwisolver-1.4.8-cp313-cp313-win_arm64.whl", hash = "sha256:3cd3bc628b25f74aedc6d374d5babf0166a92ff1317f46267f12d2ed54bc1d30", size = 65430, upload-time = "2024-12-24T18:30:08.504Z" }, + { url = "https://files.pythonhosted.org/packages/34/bd/b89380b7298e3af9b39f49334e3e2a4af0e04819789f04b43d560516c0c8/kiwisolver-1.4.8-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:370fd2df41660ed4e26b8c9d6bbcad668fbe2560462cba151a721d49e5b6628c", size = 126294, upload-time = "2024-12-24T18:30:09.508Z" }, + { url = "https://files.pythonhosted.org/packages/83/41/5857dc72e5e4148eaac5aa76e0703e594e4465f8ab7ec0fc60e3a9bb8fea/kiwisolver-1.4.8-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:84a2f830d42707de1d191b9490ac186bf7997a9495d4e9072210a1296345f7dc", size = 67736, upload-time = "2024-12-24T18:30:11.039Z" }, + { url = "https://files.pythonhosted.org/packages/e1/d1/be059b8db56ac270489fb0b3297fd1e53d195ba76e9bbb30e5401fa6b759/kiwisolver-1.4.8-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:7a3ad337add5148cf51ce0b55642dc551c0b9d6248458a757f98796ca7348712", size = 66194, upload-time = "2024-12-24T18:30:14.886Z" }, + { url = "https://files.pythonhosted.org/packages/e1/83/4b73975f149819eb7dcf9299ed467eba068ecb16439a98990dcb12e63fdd/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7506488470f41169b86d8c9aeff587293f530a23a23a49d6bc64dab66bedc71e", size = 1465942, upload-time = "2024-12-24T18:30:18.927Z" }, + { url = "https://files.pythonhosted.org/packages/c7/2c/30a5cdde5102958e602c07466bce058b9d7cb48734aa7a4327261ac8e002/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2f0121b07b356a22fb0414cec4666bbe36fd6d0d759db3d37228f496ed67c880", size = 1595341, upload-time = "2024-12-24T18:30:22.102Z" }, + { url = "https://files.pythonhosted.org/packages/ff/9b/1e71db1c000385aa069704f5990574b8244cce854ecd83119c19e83c9586/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d6d6bd87df62c27d4185de7c511c6248040afae67028a8a22012b010bc7ad062", size = 1598455, upload-time = "2024-12-24T18:30:24.947Z" }, + { url = "https://files.pythonhosted.org/packages/85/92/c8fec52ddf06231b31cbb779af77e99b8253cd96bd135250b9498144c78b/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:291331973c64bb9cce50bbe871fb2e675c4331dab4f31abe89f175ad7679a4d7", size = 1522138, upload-time = "2024-12-24T18:30:26.286Z" }, + { url = "https://files.pythonhosted.org/packages/0b/51/9eb7e2cd07a15d8bdd976f6190c0164f92ce1904e5c0c79198c4972926b7/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:893f5525bb92d3d735878ec00f781b2de998333659507d29ea4466208df37bed", size = 1582857, upload-time = "2024-12-24T18:30:28.86Z" }, + { url = "https://files.pythonhosted.org/packages/0f/95/c5a00387a5405e68ba32cc64af65ce881a39b98d73cc394b24143bebc5b8/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:b47a465040146981dc9db8647981b8cb96366fbc8d452b031e4f8fdffec3f26d", size = 2293129, upload-time = "2024-12-24T18:30:30.34Z" }, + { url = "https://files.pythonhosted.org/packages/44/83/eeb7af7d706b8347548313fa3a3a15931f404533cc54fe01f39e830dd231/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:99cea8b9dd34ff80c521aef46a1dddb0dcc0283cf18bde6d756f1e6f31772165", size = 2421538, upload-time = "2024-12-24T18:30:33.334Z" }, + { url = "https://files.pythonhosted.org/packages/05/f9/27e94c1b3eb29e6933b6986ffc5fa1177d2cd1f0c8efc5f02c91c9ac61de/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:151dffc4865e5fe6dafce5480fab84f950d14566c480c08a53c663a0020504b6", size = 2390661, upload-time = "2024-12-24T18:30:34.939Z" }, + { url = "https://files.pythonhosted.org/packages/d9/d4/3c9735faa36ac591a4afcc2980d2691000506050b7a7e80bcfe44048daa7/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:577facaa411c10421314598b50413aa1ebcf5126f704f1e5d72d7e4e9f020d90", size = 2546710, upload-time = "2024-12-24T18:30:37.281Z" }, + { url = "https://files.pythonhosted.org/packages/4c/fa/be89a49c640930180657482a74970cdcf6f7072c8d2471e1babe17a222dc/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:be4816dc51c8a471749d664161b434912eee82f2ea66bd7628bd14583a833e85", size = 2349213, upload-time = "2024-12-24T18:30:40.019Z" }, +] + +[[package]] +name = "line-profiler" +version = "4.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/55/3f/f0659eb67f76022b5f7722cdc71a6059536e11f20c9dcc5a96a2f923923d/line_profiler-4.2.0.tar.gz", hash = "sha256:09e10f25f876514380b3faee6de93fb0c228abba85820ba1a591ddb3eb451a96", size = 199037, upload-time = "2024-12-03T17:12:20.08Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/34/33/44bdf36948154a76aee5652dd405ce50a45fa4177c987c1694eea13eac31/line_profiler-4.2.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:49db0804e9e330076f0b048d63fd3206331ca0104dd549f61b2466df0f10ecda", size = 218791, upload-time = "2024-12-03T17:11:41.16Z" }, + { url = "https://files.pythonhosted.org/packages/51/78/7a41c05af37e0b7230593f3ae8d06d45a122fb84e1e70dcbba319c080887/line_profiler-4.2.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:2e983ed4fb2cd68bb8896f6bad7f29ddf9112b978f700448510477bc9fde18db", size = 140191, upload-time = "2024-12-03T17:11:43.044Z" }, + { url = "https://files.pythonhosted.org/packages/d9/03/ac68ebaffa41d4fda12d8ecb47b686d8c1a0fad6db03bdfb3490ad6035c7/line_profiler-4.2.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d6b27c5880b29369e6bebfe434a16c60cbcd290aa4c384ac612e5777737893f8", size = 133297, upload-time = "2024-12-03T17:11:44.976Z" }, + { url = "https://files.pythonhosted.org/packages/da/19/2ae0d8f9e39ad3413a219f69acb23a371c99863d48cce0273926d9dc4204/line_profiler-4.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae2584dc0af3107efa60bd2ccaa7233dca98e3dff4b11138c0ac30355bc87f1a", size = 691235, upload-time = "2024-12-03T17:11:46.932Z" }, + { url = "https://files.pythonhosted.org/packages/e4/36/ecc106dd448a112455a8585db0994886b0439bbf808215249a89302dd626/line_profiler-4.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6767d8b922a7368b6917a47c164c3d96d48b82109ad961ef518e78800947cef4", size = 718497, upload-time = "2024-12-03T17:11:48.961Z" }, + { url = "https://files.pythonhosted.org/packages/8a/61/6293341fbcc6c5b4469f49bd94f37fea5d2efc8cce441809012346a5b7d0/line_profiler-4.2.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:3137672a769717be4da3a6e006c3bd7b66ad4a341ba89ee749ef96c158a15b22", size = 1701191, upload-time = "2024-12-03T17:11:50.41Z" }, + { url = "https://files.pythonhosted.org/packages/23/9c/ab8a94c30c082caca87bc0db78efe91372e45d35a700ef07ffe78ed10cda/line_profiler-4.2.0-cp313-cp313-win_amd64.whl", hash = "sha256:727e970d358616a1a33d51d696efec932a5ef7730785df62658bd7e74aa58951", size = 128232, upload-time = "2024-12-03T17:11:51.741Z" }, +] + +[[package]] +name = "lxml" +version = "5.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/76/3d/14e82fc7c8fb1b7761f7e748fd47e2ec8276d137b6acfe5a4bb73853e08f/lxml-5.4.0.tar.gz", hash = "sha256:d12832e1dbea4be280b22fd0ea7c9b87f0d8fc51ba06e92dc62d52f804f78ebd", size = 3679479, upload-time = "2025-04-23T01:50:29.322Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/87/cb/2ba1e9dd953415f58548506fa5549a7f373ae55e80c61c9041b7fd09a38a/lxml-5.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:773e27b62920199c6197130632c18fb7ead3257fce1ffb7d286912e56ddb79e0", size = 8110086, upload-time = "2025-04-23T01:46:52.218Z" }, + { url = "https://files.pythonhosted.org/packages/b5/3e/6602a4dca3ae344e8609914d6ab22e52ce42e3e1638c10967568c5c1450d/lxml-5.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:ce9c671845de9699904b1e9df95acfe8dfc183f2310f163cdaa91a3535af95de", size = 4404613, upload-time = "2025-04-23T01:46:55.281Z" }, + { url = "https://files.pythonhosted.org/packages/4c/72/bf00988477d3bb452bef9436e45aeea82bb40cdfb4684b83c967c53909c7/lxml-5.4.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9454b8d8200ec99a224df8854786262b1bd6461f4280064c807303c642c05e76", size = 5012008, upload-time = "2025-04-23T01:46:57.817Z" }, + { url = "https://files.pythonhosted.org/packages/92/1f/93e42d93e9e7a44b2d3354c462cd784dbaaf350f7976b5d7c3f85d68d1b1/lxml-5.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cccd007d5c95279e529c146d095f1d39ac05139de26c098166c4beb9374b0f4d", size = 4760915, upload-time = "2025-04-23T01:47:00.745Z" }, + { url = "https://files.pythonhosted.org/packages/45/0b/363009390d0b461cf9976a499e83b68f792e4c32ecef092f3f9ef9c4ba54/lxml-5.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0fce1294a0497edb034cb416ad3e77ecc89b313cff7adbee5334e4dc0d11f422", size = 5283890, upload-time = "2025-04-23T01:47:04.702Z" }, + { url = "https://files.pythonhosted.org/packages/19/dc/6056c332f9378ab476c88e301e6549a0454dbee8f0ae16847414f0eccb74/lxml-5.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:24974f774f3a78ac12b95e3a20ef0931795ff04dbb16db81a90c37f589819551", size = 4812644, upload-time = "2025-04-23T01:47:07.833Z" }, + { url = "https://files.pythonhosted.org/packages/ee/8a/f8c66bbb23ecb9048a46a5ef9b495fd23f7543df642dabeebcb2eeb66592/lxml-5.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:497cab4d8254c2a90bf988f162ace2ddbfdd806fce3bda3f581b9d24c852e03c", size = 4921817, upload-time = "2025-04-23T01:47:10.317Z" }, + { url = "https://files.pythonhosted.org/packages/04/57/2e537083c3f381f83d05d9b176f0d838a9e8961f7ed8ddce3f0217179ce3/lxml-5.4.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:e794f698ae4c5084414efea0f5cc9f4ac562ec02d66e1484ff822ef97c2cadff", size = 4753916, upload-time = "2025-04-23T01:47:12.823Z" }, + { url = "https://files.pythonhosted.org/packages/d8/80/ea8c4072109a350848f1157ce83ccd9439601274035cd045ac31f47f3417/lxml-5.4.0-cp313-cp313-manylinux_2_28_ppc64le.whl", hash = "sha256:2c62891b1ea3094bb12097822b3d44b93fc6c325f2043c4d2736a8ff09e65f60", size = 5289274, upload-time = "2025-04-23T01:47:15.916Z" }, + { url = "https://files.pythonhosted.org/packages/b3/47/c4be287c48cdc304483457878a3f22999098b9a95f455e3c4bda7ec7fc72/lxml-5.4.0-cp313-cp313-manylinux_2_28_s390x.whl", hash = "sha256:142accb3e4d1edae4b392bd165a9abdee8a3c432a2cca193df995bc3886249c8", size = 4874757, upload-time = "2025-04-23T01:47:19.793Z" }, + { url = "https://files.pythonhosted.org/packages/2f/04/6ef935dc74e729932e39478e44d8cfe6a83550552eaa072b7c05f6f22488/lxml-5.4.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:1a42b3a19346e5601d1b8296ff6ef3d76038058f311902edd574461e9c036982", size = 4947028, upload-time = "2025-04-23T01:47:22.401Z" }, + { url = "https://files.pythonhosted.org/packages/cb/f9/c33fc8daa373ef8a7daddb53175289024512b6619bc9de36d77dca3df44b/lxml-5.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:4291d3c409a17febf817259cb37bc62cb7eb398bcc95c1356947e2871911ae61", size = 4834487, upload-time = "2025-04-23T01:47:25.513Z" }, + { url = "https://files.pythonhosted.org/packages/8d/30/fc92bb595bcb878311e01b418b57d13900f84c2b94f6eca9e5073ea756e6/lxml-5.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4f5322cf38fe0e21c2d73901abf68e6329dc02a4994e483adbcf92b568a09a54", size = 5381688, upload-time = "2025-04-23T01:47:28.454Z" }, + { url = "https://files.pythonhosted.org/packages/43/d1/3ba7bd978ce28bba8e3da2c2e9d5ae3f8f521ad3f0ca6ea4788d086ba00d/lxml-5.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:0be91891bdb06ebe65122aa6bf3fc94489960cf7e03033c6f83a90863b23c58b", size = 5242043, upload-time = "2025-04-23T01:47:31.208Z" }, + { url = "https://files.pythonhosted.org/packages/ee/cd/95fa2201041a610c4d08ddaf31d43b98ecc4b1d74b1e7245b1abdab443cb/lxml-5.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:15a665ad90054a3d4f397bc40f73948d48e36e4c09f9bcffc7d90c87410e478a", size = 5021569, upload-time = "2025-04-23T01:47:33.805Z" }, + { url = "https://files.pythonhosted.org/packages/2d/a6/31da006fead660b9512d08d23d31e93ad3477dd47cc42e3285f143443176/lxml-5.4.0-cp313-cp313-win32.whl", hash = "sha256:d5663bc1b471c79f5c833cffbc9b87d7bf13f87e055a5c86c363ccd2348d7e82", size = 3485270, upload-time = "2025-04-23T01:47:36.133Z" }, + { url = "https://files.pythonhosted.org/packages/fc/14/c115516c62a7d2499781d2d3d7215218c0731b2c940753bf9f9b7b73924d/lxml-5.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:bcb7a1096b4b6b24ce1ac24d4942ad98f983cd3810f9711bcd0293f43a9d8b9f", size = 3814606, upload-time = "2025-04-23T01:47:39.028Z" }, +] + +[[package]] +name = "markdown-it-py" +version = "3.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mdurl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/38/71/3b932df36c1a044d397a1f92d1cf91ee0a503d91e470cbd670aa66b07ed0/markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb", size = 74596, upload-time = "2023-06-03T06:41:14.443Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1", size = 87528, upload-time = "2023-06-03T06:41:11.019Z" }, +] + +[[package]] +name = "markupsafe" +version = "3.0.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b2/97/5d42485e71dfc078108a86d6de8fa46db44a1a9295e89c5d6d4a06e23a62/markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0", size = 20537, upload-time = "2024-10-18T15:21:54.129Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/83/0e/67eb10a7ecc77a0c2bbe2b0235765b98d164d81600746914bebada795e97/MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd", size = 14274, upload-time = "2024-10-18T15:21:24.577Z" }, + { url = "https://files.pythonhosted.org/packages/2b/6d/9409f3684d3335375d04e5f05744dfe7e9f120062c9857df4ab490a1031a/MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430", size = 12352, upload-time = "2024-10-18T15:21:25.382Z" }, + { url = "https://files.pythonhosted.org/packages/d2/f5/6eadfcd3885ea85fe2a7c128315cc1bb7241e1987443d78c8fe712d03091/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094", size = 24122, upload-time = "2024-10-18T15:21:26.199Z" }, + { url = "https://files.pythonhosted.org/packages/0c/91/96cf928db8236f1bfab6ce15ad070dfdd02ed88261c2afafd4b43575e9e9/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396", size = 23085, upload-time = "2024-10-18T15:21:27.029Z" }, + { url = "https://files.pythonhosted.org/packages/c2/cf/c9d56af24d56ea04daae7ac0940232d31d5a8354f2b457c6d856b2057d69/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79", size = 22978, upload-time = "2024-10-18T15:21:27.846Z" }, + { url = "https://files.pythonhosted.org/packages/2a/9f/8619835cd6a711d6272d62abb78c033bda638fdc54c4e7f4272cf1c0962b/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a", size = 24208, upload-time = "2024-10-18T15:21:28.744Z" }, + { url = "https://files.pythonhosted.org/packages/f9/bf/176950a1792b2cd2102b8ffeb5133e1ed984547b75db47c25a67d3359f77/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca", size = 23357, upload-time = "2024-10-18T15:21:29.545Z" }, + { url = "https://files.pythonhosted.org/packages/ce/4f/9a02c1d335caabe5c4efb90e1b6e8ee944aa245c1aaaab8e8a618987d816/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c", size = 23344, upload-time = "2024-10-18T15:21:30.366Z" }, + { url = "https://files.pythonhosted.org/packages/ee/55/c271b57db36f748f0e04a759ace9f8f759ccf22b4960c270c78a394f58be/MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1", size = 15101, upload-time = "2024-10-18T15:21:31.207Z" }, + { url = "https://files.pythonhosted.org/packages/29/88/07df22d2dd4df40aba9f3e402e6dc1b8ee86297dddbad4872bd5e7b0094f/MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f", size = 15603, upload-time = "2024-10-18T15:21:32.032Z" }, + { url = "https://files.pythonhosted.org/packages/62/6a/8b89d24db2d32d433dffcd6a8779159da109842434f1dd2f6e71f32f738c/MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c", size = 14510, upload-time = "2024-10-18T15:21:33.625Z" }, + { url = "https://files.pythonhosted.org/packages/7a/06/a10f955f70a2e5a9bf78d11a161029d278eeacbd35ef806c3fd17b13060d/MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb", size = 12486, upload-time = "2024-10-18T15:21:34.611Z" }, + { url = "https://files.pythonhosted.org/packages/34/cf/65d4a571869a1a9078198ca28f39fba5fbb910f952f9dbc5220afff9f5e6/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c", size = 25480, upload-time = "2024-10-18T15:21:35.398Z" }, + { url = "https://files.pythonhosted.org/packages/0c/e3/90e9651924c430b885468b56b3d597cabf6d72be4b24a0acd1fa0e12af67/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d", size = 23914, upload-time = "2024-10-18T15:21:36.231Z" }, + { url = "https://files.pythonhosted.org/packages/66/8c/6c7cf61f95d63bb866db39085150df1f2a5bd3335298f14a66b48e92659c/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe", size = 23796, upload-time = "2024-10-18T15:21:37.073Z" }, + { url = "https://files.pythonhosted.org/packages/bb/35/cbe9238ec3f47ac9a7c8b3df7a808e7cb50fe149dc7039f5f454b3fba218/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5", size = 25473, upload-time = "2024-10-18T15:21:37.932Z" }, + { url = "https://files.pythonhosted.org/packages/e6/32/7621a4382488aa283cc05e8984a9c219abad3bca087be9ec77e89939ded9/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a", size = 24114, upload-time = "2024-10-18T15:21:39.799Z" }, + { url = "https://files.pythonhosted.org/packages/0d/80/0985960e4b89922cb5a0bac0ed39c5b96cbc1a536a99f30e8c220a996ed9/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9", size = 24098, upload-time = "2024-10-18T15:21:40.813Z" }, + { url = "https://files.pythonhosted.org/packages/82/78/fedb03c7d5380df2427038ec8d973587e90561b2d90cd472ce9254cf348b/MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6", size = 15208, upload-time = "2024-10-18T15:21:41.814Z" }, + { url = "https://files.pythonhosted.org/packages/4f/65/6079a46068dfceaeabb5dcad6d674f5f5c61a6fa5673746f42a9f4c233b3/MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f", size = 15739, upload-time = "2024-10-18T15:21:42.784Z" }, +] + +[[package]] +name = "matplotlib" +version = "3.10.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "contourpy" }, + { name = "cycler" }, + { name = "fonttools" }, + { name = "kiwisolver" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pillow" }, + { name = "pyparsing" }, + { name = "python-dateutil" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/26/91/d49359a21893183ed2a5b6c76bec40e0b1dcbf8ca148f864d134897cfc75/matplotlib-3.10.3.tar.gz", hash = "sha256:2f82d2c5bb7ae93aaaa4cd42aca65d76ce6376f83304fa3a630b569aca274df0", size = 34799811, upload-time = "2025-05-08T19:10:54.39Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3b/c1/23cfb566a74c696a3b338d8955c549900d18fe2b898b6e94d682ca21e7c2/matplotlib-3.10.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:9f2efccc8dcf2b86fc4ee849eea5dcaecedd0773b30f47980dc0cbeabf26ec84", size = 8180318, upload-time = "2025-05-08T19:10:20.426Z" }, + { url = "https://files.pythonhosted.org/packages/6c/0c/02f1c3b66b30da9ee343c343acbb6251bef5b01d34fad732446eaadcd108/matplotlib-3.10.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3ddbba06a6c126e3301c3d272a99dcbe7f6c24c14024e80307ff03791a5f294e", size = 8051132, upload-time = "2025-05-08T19:10:22.569Z" }, + { url = "https://files.pythonhosted.org/packages/b4/ab/8db1a5ac9b3a7352fb914133001dae889f9fcecb3146541be46bed41339c/matplotlib-3.10.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:748302b33ae9326995b238f606e9ed840bf5886ebafcb233775d946aa8107a15", size = 8457633, upload-time = "2025-05-08T19:10:24.749Z" }, + { url = "https://files.pythonhosted.org/packages/f5/64/41c4367bcaecbc03ef0d2a3ecee58a7065d0a36ae1aa817fe573a2da66d4/matplotlib-3.10.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a80fcccbef63302c0efd78042ea3c2436104c5b1a4d3ae20f864593696364ac7", size = 8601031, upload-time = "2025-05-08T19:10:27.03Z" }, + { url = "https://files.pythonhosted.org/packages/12/6f/6cc79e9e5ab89d13ed64da28898e40fe5b105a9ab9c98f83abd24e46d7d7/matplotlib-3.10.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:55e46cbfe1f8586adb34f7587c3e4f7dedc59d5226719faf6cb54fc24f2fd52d", size = 9406988, upload-time = "2025-05-08T19:10:29.056Z" }, + { url = "https://files.pythonhosted.org/packages/b1/0f/eed564407bd4d935ffabf561ed31099ed609e19287409a27b6d336848653/matplotlib-3.10.3-cp313-cp313-win_amd64.whl", hash = "sha256:151d89cb8d33cb23345cd12490c76fd5d18a56581a16d950b48c6ff19bb2ab93", size = 8068034, upload-time = "2025-05-08T19:10:31.221Z" }, + { url = "https://files.pythonhosted.org/packages/3e/e5/2f14791ff69b12b09e9975e1d116d9578ac684460860ce542c2588cb7a1c/matplotlib-3.10.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:c26dd9834e74d164d06433dc7be5d75a1e9890b926b3e57e74fa446e1a62c3e2", size = 8218223, upload-time = "2025-05-08T19:10:33.114Z" }, + { url = "https://files.pythonhosted.org/packages/5c/08/30a94afd828b6e02d0a52cae4a29d6e9ccfcf4c8b56cc28b021d3588873e/matplotlib-3.10.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:24853dad5b8c84c8c2390fc31ce4858b6df504156893292ce8092d190ef8151d", size = 8094985, upload-time = "2025-05-08T19:10:35.337Z" }, + { url = "https://files.pythonhosted.org/packages/89/44/f3bc6b53066c889d7a1a3ea8094c13af6a667c5ca6220ec60ecceec2dabe/matplotlib-3.10.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68f7878214d369d7d4215e2a9075fef743be38fa401d32e6020bab2dfabaa566", size = 8483109, upload-time = "2025-05-08T19:10:37.611Z" }, + { url = "https://files.pythonhosted.org/packages/ba/c7/473bc559beec08ebee9f86ca77a844b65747e1a6c2691e8c92e40b9f42a8/matplotlib-3.10.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6929fc618cb6db9cb75086f73b3219bbb25920cb24cee2ea7a12b04971a4158", size = 8618082, upload-time = "2025-05-08T19:10:39.892Z" }, + { url = "https://files.pythonhosted.org/packages/d8/e9/6ce8edd264c8819e37bbed8172e0ccdc7107fe86999b76ab5752276357a4/matplotlib-3.10.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:6c7818292a5cc372a2dc4c795e5c356942eb8350b98ef913f7fda51fe175ac5d", size = 9413699, upload-time = "2025-05-08T19:10:42.376Z" }, + { url = "https://files.pythonhosted.org/packages/1b/92/9a45c91089c3cf690b5badd4be81e392ff086ccca8a1d4e3a08463d8a966/matplotlib-3.10.3-cp313-cp313t-win_amd64.whl", hash = "sha256:4f23ffe95c5667ef8a2b56eea9b53db7f43910fa4a2d5472ae0f72b64deab4d5", size = 8139044, upload-time = "2025-05-08T19:10:44.551Z" }, +] + +[[package]] +name = "mdurl" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729, upload-time = "2022-08-14T12:40:10.846Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979, upload-time = "2022-08-14T12:40:09.779Z" }, +] + +[[package]] +name = "more-itertools" +version = "10.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ce/a0/834b0cebabbfc7e311f30b46c8188790a37f89fc8d756660346fe5abfd09/more_itertools-10.7.0.tar.gz", hash = "sha256:9fddd5403be01a94b204faadcff459ec3568cf110265d3c54323e1e866ad29d3", size = 127671, upload-time = "2025-04-22T14:17:41.838Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2b/9f/7ba6f94fc1e9ac3d2b853fdff3035fb2fa5afbed898c4a72b8a020610594/more_itertools-10.7.0-py3-none-any.whl", hash = "sha256:d43980384673cb07d2f7d2d918c616b30c659c089ee23953f601d6609c67510e", size = 65278, upload-time = "2025-04-22T14:17:40.49Z" }, +] + +[[package]] +name = "nbformat" +version = "5.10.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "fastjsonschema" }, + { name = "jsonschema" }, + { name = "jupyter-core" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6d/fd/91545e604bc3dad7dca9ed03284086039b294c6b3d75c0d2fa45f9e9caf3/nbformat-5.10.4.tar.gz", hash = "sha256:322168b14f937a5d11362988ecac2a4952d3d8e3a2cbeb2319584631226d5b3a", size = 142749, upload-time = "2024-04-04T11:20:37.371Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl", hash = "sha256:3b48d6c8fbca4b299bf3982ea7db1af21580e4fec269ad087b9e81588891200b", size = 78454, upload-time = "2024-04-04T11:20:34.895Z" }, +] + +[[package]] +name = "nodeenv" +version = "1.9.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/16/fc88b08840de0e0a72a2f9d8c6bae36be573e475a6326ae854bcc549fc45/nodeenv-1.9.1.tar.gz", hash = "sha256:6ec12890a2dab7946721edbfbcd91f3319c6ccc9aec47be7c7e6b7011ee6645f", size = 47437, upload-time = "2024-06-04T18:44:11.171Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d2/1d/1b658dbd2b9fa9c4c9f32accbfc0205d532c8c6194dc0f2a4c0428e7128a/nodeenv-1.9.1-py2.py3-none-any.whl", hash = "sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9", size = 22314, upload-time = "2024-06-04T18:44:08.352Z" }, +] + +[[package]] +name = "numpy" +version = "2.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f3/db/8e12381333aea300890829a0a36bfa738cac95475d88982d538725143fd9/numpy-2.3.0.tar.gz", hash = "sha256:581f87f9e9e9db2cba2141400e160e9dd644ee248788d6f90636eeb8fd9260a6", size = 20382813, upload-time = "2025-06-07T14:54:32.608Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/73/fc/1d67f751fd4dbafc5780244fe699bc4084268bad44b7c5deb0492473127b/numpy-2.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5754ab5595bfa2c2387d241296e0381c21f44a4b90a776c3c1d39eede13a746a", size = 20889633, upload-time = "2025-06-07T14:44:06.839Z" }, + { url = "https://files.pythonhosted.org/packages/e8/95/73ffdb69e5c3f19ec4530f8924c4386e7ba097efc94b9c0aff607178ad94/numpy-2.3.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d11fa02f77752d8099573d64e5fe33de3229b6632036ec08f7080f46b6649959", size = 14151683, upload-time = "2025-06-07T14:44:28.847Z" }, + { url = "https://files.pythonhosted.org/packages/64/d5/06d4bb31bb65a1d9c419eb5676173a2f90fd8da3c59f816cc54c640ce265/numpy-2.3.0-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:aba48d17e87688a765ab1cd557882052f238e2f36545dfa8e29e6a91aef77afe", size = 5102683, upload-time = "2025-06-07T14:44:38.417Z" }, + { url = "https://files.pythonhosted.org/packages/12/8b/6c2cef44f8ccdc231f6b56013dff1d71138c48124334aded36b1a1b30c5a/numpy-2.3.0-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:4dc58865623023b63b10d52f18abaac3729346a7a46a778381e0e3af4b7f3beb", size = 6640253, upload-time = "2025-06-07T14:44:49.359Z" }, + { url = "https://files.pythonhosted.org/packages/62/aa/fca4bf8de3396ddb59544df9b75ffe5b73096174de97a9492d426f5cd4aa/numpy-2.3.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:df470d376f54e052c76517393fa443758fefcdd634645bc9c1f84eafc67087f0", size = 14258658, upload-time = "2025-06-07T14:45:10.156Z" }, + { url = "https://files.pythonhosted.org/packages/1c/12/734dce1087eed1875f2297f687e671cfe53a091b6f2f55f0c7241aad041b/numpy-2.3.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:87717eb24d4a8a64683b7a4e91ace04e2f5c7c77872f823f02a94feee186168f", size = 16628765, upload-time = "2025-06-07T14:45:35.076Z" }, + { url = "https://files.pythonhosted.org/packages/48/03/ffa41ade0e825cbcd5606a5669962419528212a16082763fc051a7247d76/numpy-2.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:d8fa264d56882b59dcb5ea4d6ab6f31d0c58a57b41aec605848b6eb2ef4a43e8", size = 15564335, upload-time = "2025-06-07T14:45:58.797Z" }, + { url = "https://files.pythonhosted.org/packages/07/58/869398a11863310aee0ff85a3e13b4c12f20d032b90c4b3ee93c3b728393/numpy-2.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e651756066a0eaf900916497e20e02fe1ae544187cb0fe88de981671ee7f6270", size = 18360608, upload-time = "2025-06-07T14:46:25.687Z" }, + { url = "https://files.pythonhosted.org/packages/2f/8a/5756935752ad278c17e8a061eb2127c9a3edf4ba2c31779548b336f23c8d/numpy-2.3.0-cp313-cp313-win32.whl", hash = "sha256:e43c3cce3b6ae5f94696669ff2a6eafd9a6b9332008bafa4117af70f4b88be6f", size = 6310005, upload-time = "2025-06-07T14:50:13.138Z" }, + { url = "https://files.pythonhosted.org/packages/08/60/61d60cf0dfc0bf15381eaef46366ebc0c1a787856d1db0c80b006092af84/numpy-2.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:81ae0bf2564cf475f94be4a27ef7bcf8af0c3e28da46770fc904da9abd5279b5", size = 12729093, upload-time = "2025-06-07T14:50:31.82Z" }, + { url = "https://files.pythonhosted.org/packages/66/31/2f2f2d2b3e3c32d5753d01437240feaa32220b73258c9eef2e42a0832866/numpy-2.3.0-cp313-cp313-win_arm64.whl", hash = "sha256:c8738baa52505fa6e82778580b23f945e3578412554d937093eac9205e845e6e", size = 9885689, upload-time = "2025-06-07T14:50:47.888Z" }, + { url = "https://files.pythonhosted.org/packages/f1/89/c7828f23cc50f607ceb912774bb4cff225ccae7131c431398ad8400e2c98/numpy-2.3.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:39b27d8b38942a647f048b675f134dd5a567f95bfff481f9109ec308515c51d8", size = 20986612, upload-time = "2025-06-07T14:46:56.077Z" }, + { url = "https://files.pythonhosted.org/packages/dd/46/79ecf47da34c4c50eedec7511e53d57ffdfd31c742c00be7dc1d5ffdb917/numpy-2.3.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:0eba4a1ea88f9a6f30f56fdafdeb8da3774349eacddab9581a21234b8535d3d3", size = 14298953, upload-time = "2025-06-07T14:47:18.053Z" }, + { url = "https://files.pythonhosted.org/packages/59/44/f6caf50713d6ff4480640bccb2a534ce1d8e6e0960c8f864947439f0ee95/numpy-2.3.0-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:b0f1f11d0a1da54927436505a5a7670b154eac27f5672afc389661013dfe3d4f", size = 5225806, upload-time = "2025-06-07T14:47:27.524Z" }, + { url = "https://files.pythonhosted.org/packages/a6/43/e1fd1aca7c97e234dd05e66de4ab7a5be54548257efcdd1bc33637e72102/numpy-2.3.0-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:690d0a5b60a47e1f9dcec7b77750a4854c0d690e9058b7bef3106e3ae9117808", size = 6735169, upload-time = "2025-06-07T14:47:38.057Z" }, + { url = "https://files.pythonhosted.org/packages/84/89/f76f93b06a03177c0faa7ca94d0856c4e5c4bcaf3c5f77640c9ed0303e1c/numpy-2.3.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:8b51ead2b258284458e570942137155978583e407babc22e3d0ed7af33ce06f8", size = 14330701, upload-time = "2025-06-07T14:47:59.113Z" }, + { url = "https://files.pythonhosted.org/packages/aa/f5/4858c3e9ff7a7d64561b20580cf7cc5d085794bd465a19604945d6501f6c/numpy-2.3.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:aaf81c7b82c73bd9b45e79cfb9476cb9c29e937494bfe9092c26aece812818ad", size = 16692983, upload-time = "2025-06-07T14:48:24.196Z" }, + { url = "https://files.pythonhosted.org/packages/08/17/0e3b4182e691a10e9483bcc62b4bb8693dbf9ea5dc9ba0b77a60435074bb/numpy-2.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:f420033a20b4f6a2a11f585f93c843ac40686a7c3fa514060a97d9de93e5e72b", size = 15641435, upload-time = "2025-06-07T14:48:47.712Z" }, + { url = "https://files.pythonhosted.org/packages/4e/d5/463279fda028d3c1efa74e7e8d507605ae87f33dbd0543cf4c4527c8b882/numpy-2.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:d344ca32ab482bcf8735d8f95091ad081f97120546f3d250240868430ce52555", size = 18433798, upload-time = "2025-06-07T14:49:14.866Z" }, + { url = "https://files.pythonhosted.org/packages/0e/1e/7a9d98c886d4c39a2b4d3a7c026bffcf8fbcaf518782132d12a301cfc47a/numpy-2.3.0-cp313-cp313t-win32.whl", hash = "sha256:48a2e8eaf76364c32a1feaa60d6925eaf32ed7a040183b807e02674305beef61", size = 6438632, upload-time = "2025-06-07T14:49:25.67Z" }, + { url = "https://files.pythonhosted.org/packages/fe/ab/66fc909931d5eb230107d016861824f335ae2c0533f422e654e5ff556784/numpy-2.3.0-cp313-cp313t-win_amd64.whl", hash = "sha256:ba17f93a94e503551f154de210e4d50c5e3ee20f7e7a1b5f6ce3f22d419b93bb", size = 12868491, upload-time = "2025-06-07T14:49:44.898Z" }, + { url = "https://files.pythonhosted.org/packages/ee/e8/2c8a1c9e34d6f6d600c83d5ce5b71646c32a13f34ca5c518cc060639841c/numpy-2.3.0-cp313-cp313t-win_arm64.whl", hash = "sha256:f14e016d9409680959691c109be98c436c6249eaf7f118b424679793607b5944", size = 9935345, upload-time = "2025-06-07T14:50:02.311Z" }, +] + +[[package]] +name = "packaging" +version = "25.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a1/d4/1fc4078c65507b51b96ca8f8c3ba19e6a61c8253c72794544580a7b6c24d/packaging-25.0.tar.gz", hash = "sha256:d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f", size = 165727, upload-time = "2025-04-19T11:48:59.673Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/20/12/38679034af332785aac8774540895e234f4d07f7545804097de4b666afd8/packaging-25.0-py3-none-any.whl", hash = "sha256:29572ef2b1f17581046b3a2227d5c611fb25ec70ca1ba8554b24b0e69331a484", size = 66469, upload-time = "2025-04-19T11:48:57.875Z" }, +] + +[[package]] +name = "pandas" +version = "2.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "python-dateutil" }, + { name = "pytz" }, + { name = "tzdata" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/72/51/48f713c4c728d7c55ef7444ba5ea027c26998d96d1a40953b346438602fc/pandas-2.3.0.tar.gz", hash = "sha256:34600ab34ebf1131a7613a260a61dbe8b62c188ec0ea4c296da7c9a06b004133", size = 4484490, upload-time = "2025-06-05T03:27:54.133Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d3/57/5cb75a56a4842bbd0511c3d1c79186d8315b82dac802118322b2de1194fe/pandas-2.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:2c7e2fc25f89a49a11599ec1e76821322439d90820108309bf42130d2f36c983", size = 11518913, upload-time = "2025-06-05T03:27:02.757Z" }, + { url = "https://files.pythonhosted.org/packages/05/01/0c8785610e465e4948a01a059562176e4c8088aa257e2e074db868f86d4e/pandas-2.3.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:c6da97aeb6a6d233fb6b17986234cc723b396b50a3c6804776351994f2a658fd", size = 10655249, upload-time = "2025-06-05T16:50:20.17Z" }, + { url = "https://files.pythonhosted.org/packages/e8/6a/47fd7517cd8abe72a58706aab2b99e9438360d36dcdb052cf917b7bf3bdc/pandas-2.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb32dc743b52467d488e7a7c8039b821da2826a9ba4f85b89ea95274f863280f", size = 11328359, upload-time = "2025-06-05T03:27:06.431Z" }, + { url = "https://files.pythonhosted.org/packages/2a/b3/463bfe819ed60fb7e7ddffb4ae2ee04b887b3444feee6c19437b8f834837/pandas-2.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:213cd63c43263dbb522c1f8a7c9d072e25900f6975596f883f4bebd77295d4f3", size = 12024789, upload-time = "2025-06-05T03:27:09.875Z" }, + { url = "https://files.pythonhosted.org/packages/04/0c/e0704ccdb0ac40aeb3434d1c641c43d05f75c92e67525df39575ace35468/pandas-2.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:1d2b33e68d0ce64e26a4acc2e72d747292084f4e8db4c847c6f5f6cbe56ed6d8", size = 12480734, upload-time = "2025-06-06T00:00:22.246Z" }, + { url = "https://files.pythonhosted.org/packages/e9/df/815d6583967001153bb27f5cf075653d69d51ad887ebbf4cfe1173a1ac58/pandas-2.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:430a63bae10b5086995db1b02694996336e5a8ac9a96b4200572b413dfdfccb9", size = 13223381, upload-time = "2025-06-05T03:27:15.641Z" }, + { url = "https://files.pythonhosted.org/packages/79/88/ca5973ed07b7f484c493e941dbff990861ca55291ff7ac67c815ce347395/pandas-2.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:4930255e28ff5545e2ca404637bcc56f031893142773b3468dc021c6c32a1390", size = 10970135, upload-time = "2025-06-05T03:27:24.131Z" }, + { url = "https://files.pythonhosted.org/packages/24/fb/0994c14d1f7909ce83f0b1fb27958135513c4f3f2528bde216180aa73bfc/pandas-2.3.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:f925f1ef673b4bd0271b1809b72b3270384f2b7d9d14a189b12b7fc02574d575", size = 12141356, upload-time = "2025-06-05T03:27:34.547Z" }, + { url = "https://files.pythonhosted.org/packages/9d/a2/9b903e5962134497ac4f8a96f862ee3081cb2506f69f8e4778ce3d9c9d82/pandas-2.3.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:e78ad363ddb873a631e92a3c063ade1ecfb34cae71e9a2be6ad100f875ac1042", size = 11474674, upload-time = "2025-06-05T03:27:39.448Z" }, + { url = "https://files.pythonhosted.org/packages/81/3a/3806d041bce032f8de44380f866059437fb79e36d6b22c82c187e65f765b/pandas-2.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:951805d146922aed8357e4cc5671b8b0b9be1027f0619cea132a9f3f65f2f09c", size = 11439876, upload-time = "2025-06-05T03:27:43.652Z" }, + { url = "https://files.pythonhosted.org/packages/15/aa/3fc3181d12b95da71f5c2537c3e3b3af6ab3a8c392ab41ebb766e0929bc6/pandas-2.3.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1a881bc1309f3fce34696d07b00f13335c41f5f5a8770a33b09ebe23261cfc67", size = 11966182, upload-time = "2025-06-05T03:27:47.652Z" }, + { url = "https://files.pythonhosted.org/packages/37/e7/e12f2d9b0a2c4a2cc86e2aabff7ccfd24f03e597d770abfa2acd313ee46b/pandas-2.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:e1991bbb96f4050b09b5f811253c4f3cf05ee89a589379aa36cd623f21a31d6f", size = 12547686, upload-time = "2025-06-06T00:00:26.142Z" }, + { url = "https://files.pythonhosted.org/packages/39/c2/646d2e93e0af70f4e5359d870a63584dacbc324b54d73e6b3267920ff117/pandas-2.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bb3be958022198531eb7ec2008cfc78c5b1eed51af8600c6c5d9160d89d8d249", size = 13231847, upload-time = "2025-06-05T03:27:51.465Z" }, +] + +[[package]] +name = "pexpect" +version = "4.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ptyprocess" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/42/92/cc564bf6381ff43ce1f4d06852fc19a2f11d180f23dc32d9588bee2f149d/pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f", size = 166450, upload-time = "2023-11-25T09:07:26.339Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523", size = 63772, upload-time = "2023-11-25T06:56:14.81Z" }, +] + +[[package]] +name = "pillow" +version = "11.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f3/0d/d0d6dea55cd152ce3d6767bb38a8fc10e33796ba4ba210cbab9354b6d238/pillow-11.3.0.tar.gz", hash = "sha256:3828ee7586cd0b2091b6209e5ad53e20d0649bbe87164a459d0676e035e8f523", size = 47113069, upload-time = "2025-07-01T09:16:30.666Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1e/93/0952f2ed8db3a5a4c7a11f91965d6184ebc8cd7cbb7941a260d5f018cd2d/pillow-11.3.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl", hash = "sha256:1c627742b539bba4309df89171356fcb3cc5a9178355b2727d1b74a6cf155fbd", size = 2128328, upload-time = "2025-07-01T09:14:35.276Z" }, + { url = "https://files.pythonhosted.org/packages/4b/e8/100c3d114b1a0bf4042f27e0f87d2f25e857e838034e98ca98fe7b8c0a9c/pillow-11.3.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:30b7c02f3899d10f13d7a48163c8969e4e653f8b43416d23d13d1bbfdc93b9f8", size = 2170652, upload-time = "2025-07-01T09:14:37.203Z" }, + { url = "https://files.pythonhosted.org/packages/aa/86/3f758a28a6e381758545f7cdb4942e1cb79abd271bea932998fc0db93cb6/pillow-11.3.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:7859a4cc7c9295f5838015d8cc0a9c215b77e43d07a25e460f35cf516df8626f", size = 2227443, upload-time = "2025-07-01T09:14:39.344Z" }, + { url = "https://files.pythonhosted.org/packages/01/f4/91d5b3ffa718df2f53b0dc109877993e511f4fd055d7e9508682e8aba092/pillow-11.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:ec1ee50470b0d050984394423d96325b744d55c701a439d2bd66089bff963d3c", size = 5278474, upload-time = "2025-07-01T09:14:41.843Z" }, + { url = "https://files.pythonhosted.org/packages/f9/0e/37d7d3eca6c879fbd9dba21268427dffda1ab00d4eb05b32923d4fbe3b12/pillow-11.3.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7db51d222548ccfd274e4572fdbf3e810a5e66b00608862f947b163e613b67dd", size = 4686038, upload-time = "2025-07-01T09:14:44.008Z" }, + { url = "https://files.pythonhosted.org/packages/ba/c9/09e6746630fe6372c67c648ff9deae52a2bc20897d51fa293571977ceb5d/pillow-11.3.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c37d8ba9411d6003bba9e518db0db0c58a680ab9fe5179f040b0463644bc9805", size = 5973503, upload-time = "2025-07-01T09:14:45.698Z" }, + { url = "https://files.pythonhosted.org/packages/d5/1c/a2a29649c0b1983d3ef57ee87a66487fdeb45132df66ab30dd37f7dbe162/pillow-11.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:13f87d581e71d9189ab21fe0efb5a23e9f28552d5be6979e84001d3b8505abe8", size = 6642574, upload-time = "2025-07-01T09:14:47.415Z" }, + { url = "https://files.pythonhosted.org/packages/36/de/d5cc31cc4b055b6c6fd990e3e7f0f8aaf36229a2698501bcb0cdf67c7146/pillow-11.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:023f6d2d11784a465f09fd09a34b150ea4672e85fb3d05931d89f373ab14abb2", size = 6084060, upload-time = "2025-07-01T09:14:49.636Z" }, + { url = "https://files.pythonhosted.org/packages/d5/ea/502d938cbaeec836ac28a9b730193716f0114c41325db428e6b280513f09/pillow-11.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:45dfc51ac5975b938e9809451c51734124e73b04d0f0ac621649821a63852e7b", size = 6721407, upload-time = "2025-07-01T09:14:51.962Z" }, + { url = "https://files.pythonhosted.org/packages/45/9c/9c5e2a73f125f6cbc59cc7087c8f2d649a7ae453f83bd0362ff7c9e2aee2/pillow-11.3.0-cp313-cp313-win32.whl", hash = "sha256:a4d336baed65d50d37b88ca5b60c0fa9d81e3a87d4a7930d3880d1624d5b31f3", size = 6273841, upload-time = "2025-07-01T09:14:54.142Z" }, + { url = "https://files.pythonhosted.org/packages/23/85/397c73524e0cd212067e0c969aa245b01d50183439550d24d9f55781b776/pillow-11.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:0bce5c4fd0921f99d2e858dc4d4d64193407e1b99478bc5cacecba2311abde51", size = 6978450, upload-time = "2025-07-01T09:14:56.436Z" }, + { url = "https://files.pythonhosted.org/packages/17/d2/622f4547f69cd173955194b78e4d19ca4935a1b0f03a302d655c9f6aae65/pillow-11.3.0-cp313-cp313-win_arm64.whl", hash = "sha256:1904e1264881f682f02b7f8167935cce37bc97db457f8e7849dc3a6a52b99580", size = 2423055, upload-time = "2025-07-01T09:14:58.072Z" }, + { url = "https://files.pythonhosted.org/packages/dd/80/a8a2ac21dda2e82480852978416cfacd439a4b490a501a288ecf4fe2532d/pillow-11.3.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4c834a3921375c48ee6b9624061076bc0a32a60b5532b322cc0ea64e639dd50e", size = 5281110, upload-time = "2025-07-01T09:14:59.79Z" }, + { url = "https://files.pythonhosted.org/packages/44/d6/b79754ca790f315918732e18f82a8146d33bcd7f4494380457ea89eb883d/pillow-11.3.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:5e05688ccef30ea69b9317a9ead994b93975104a677a36a8ed8106be9260aa6d", size = 4689547, upload-time = "2025-07-01T09:15:01.648Z" }, + { url = "https://files.pythonhosted.org/packages/98/3c/da78805cbdbee9cb43efe8261dd7cc0b4b93f2ac79b676c03159e9db2187/pillow-11.3.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1f85acb69adf2aaee8b7da124efebbdb959a104db34d3a2cb0f3793dbae422a8", size = 6005001, upload-time = "2025-07-01T09:15:03.365Z" }, + { url = "https://files.pythonhosted.org/packages/6c/fa/ce044b91faecf30e635321351bba32bab5a7e034c60187fe9698191aef4f/pillow-11.3.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:05f6ecbeff5005399bb48d198f098a9b4b6bdf27b8487c7f38ca16eeb070cd59", size = 6668814, upload-time = "2025-07-01T09:15:05.655Z" }, + { url = "https://files.pythonhosted.org/packages/7b/51/90f9291406d09bf93686434f9183aba27b831c10c87746ff49f127ee80cb/pillow-11.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:a7bc6e6fd0395bc052f16b1a8670859964dbd7003bd0af2ff08342eb6e442cfe", size = 6113124, upload-time = "2025-07-01T09:15:07.358Z" }, + { url = "https://files.pythonhosted.org/packages/cd/5a/6fec59b1dfb619234f7636d4157d11fb4e196caeee220232a8d2ec48488d/pillow-11.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:83e1b0161c9d148125083a35c1c5a89db5b7054834fd4387499e06552035236c", size = 6747186, upload-time = "2025-07-01T09:15:09.317Z" }, + { url = "https://files.pythonhosted.org/packages/49/6b/00187a044f98255225f172de653941e61da37104a9ea60e4f6887717e2b5/pillow-11.3.0-cp313-cp313t-win32.whl", hash = "sha256:2a3117c06b8fb646639dce83694f2f9eac405472713fcb1ae887469c0d4f6788", size = 6277546, upload-time = "2025-07-01T09:15:11.311Z" }, + { url = "https://files.pythonhosted.org/packages/e8/5c/6caaba7e261c0d75bab23be79f1d06b5ad2a2ae49f028ccec801b0e853d6/pillow-11.3.0-cp313-cp313t-win_amd64.whl", hash = "sha256:857844335c95bea93fb39e0fa2726b4d9d758850b34075a7e3ff4f4fa3aa3b31", size = 6985102, upload-time = "2025-07-01T09:15:13.164Z" }, + { url = "https://files.pythonhosted.org/packages/f3/7e/b623008460c09a0cb38263c93b828c666493caee2eb34ff67f778b87e58c/pillow-11.3.0-cp313-cp313t-win_arm64.whl", hash = "sha256:8797edc41f3e8536ae4b10897ee2f637235c94f27404cac7297f7b607dd0716e", size = 2424803, upload-time = "2025-07-01T09:15:15.695Z" }, + { url = "https://files.pythonhosted.org/packages/73/f4/04905af42837292ed86cb1b1dabe03dce1edc008ef14c473c5c7e1443c5d/pillow-11.3.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:d9da3df5f9ea2a89b81bb6087177fb1f4d1c7146d583a3fe5c672c0d94e55e12", size = 5278520, upload-time = "2025-07-01T09:15:17.429Z" }, + { url = "https://files.pythonhosted.org/packages/41/b0/33d79e377a336247df6348a54e6d2a2b85d644ca202555e3faa0cf811ecc/pillow-11.3.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:0b275ff9b04df7b640c59ec5a3cb113eefd3795a8df80bac69646ef699c6981a", size = 4686116, upload-time = "2025-07-01T09:15:19.423Z" }, + { url = "https://files.pythonhosted.org/packages/09/b5/0487044b7c096f1b48f0d7ad416472c02e0e4bf6919541b111efd3cae690/pillow-11.3.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:41742638139424703b4d01665b807c6468e23e699e8e90cffefe291c5832b027", size = 5973336, upload-time = "2025-07-01T09:15:21.237Z" }, + { url = "https://files.pythonhosted.org/packages/a8/2d/524f9318f6cbfcc79fbc004801ea6b607ec3f843977652fdee4857a7568b/pillow-11.3.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:93efb0b4de7e340d99057415c749175e24c8864302369e05914682ba642e5d77", size = 6642699, upload-time = "2025-07-01T09:15:23.186Z" }, + { url = "https://files.pythonhosted.org/packages/6f/d2/a9a4f280c6aefedce1e8f615baaa5474e0701d86dd6f1dede66726462bbd/pillow-11.3.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7966e38dcd0fa11ca390aed7c6f20454443581d758242023cf36fcb319b1a874", size = 6083789, upload-time = "2025-07-01T09:15:25.1Z" }, + { url = "https://files.pythonhosted.org/packages/fe/54/86b0cd9dbb683a9d5e960b66c7379e821a19be4ac5810e2e5a715c09a0c0/pillow-11.3.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:98a9afa7b9007c67ed84c57c9e0ad86a6000da96eaa638e4f8abe5b65ff83f0a", size = 6720386, upload-time = "2025-07-01T09:15:27.378Z" }, + { url = "https://files.pythonhosted.org/packages/e7/95/88efcaf384c3588e24259c4203b909cbe3e3c2d887af9e938c2022c9dd48/pillow-11.3.0-cp314-cp314-win32.whl", hash = "sha256:02a723e6bf909e7cea0dac1b0e0310be9d7650cd66222a5f1c571455c0a45214", size = 6370911, upload-time = "2025-07-01T09:15:29.294Z" }, + { url = "https://files.pythonhosted.org/packages/2e/cc/934e5820850ec5eb107e7b1a72dd278140731c669f396110ebc326f2a503/pillow-11.3.0-cp314-cp314-win_amd64.whl", hash = "sha256:a418486160228f64dd9e9efcd132679b7a02a5f22c982c78b6fc7dab3fefb635", size = 7117383, upload-time = "2025-07-01T09:15:31.128Z" }, + { url = "https://files.pythonhosted.org/packages/d6/e9/9c0a616a71da2a5d163aa37405e8aced9a906d574b4a214bede134e731bc/pillow-11.3.0-cp314-cp314-win_arm64.whl", hash = "sha256:155658efb5e044669c08896c0c44231c5e9abcaadbc5cd3648df2f7c0b96b9a6", size = 2511385, upload-time = "2025-07-01T09:15:33.328Z" }, + { url = "https://files.pythonhosted.org/packages/1a/33/c88376898aff369658b225262cd4f2659b13e8178e7534df9e6e1fa289f6/pillow-11.3.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:59a03cdf019efbfeeed910bf79c7c93255c3d54bc45898ac2a4140071b02b4ae", size = 5281129, upload-time = "2025-07-01T09:15:35.194Z" }, + { url = "https://files.pythonhosted.org/packages/1f/70/d376247fb36f1844b42910911c83a02d5544ebd2a8bad9efcc0f707ea774/pillow-11.3.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:f8a5827f84d973d8636e9dc5764af4f0cf2318d26744b3d902931701b0d46653", size = 4689580, upload-time = "2025-07-01T09:15:37.114Z" }, + { url = "https://files.pythonhosted.org/packages/70/ff/4727d3b71a8578b4587d9c276e90efad2d6fe0335fd76742a6da08132e8c/pillow-11.3.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4c96f993ab8c98460cd0c001447bff6194403e8b1d7e149ade5f00594918128b", size = 6005888, upload-time = "2025-07-01T09:15:39.436Z" }, + { url = "https://files.pythonhosted.org/packages/05/ae/716592277934f85d3be51d7256f3636672d7b1abfafdc42cf3f8cbd4b4c8/pillow-11.3.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:41342b64afeba938edb034d122b2dda5db2139b9a4af999729ba8818e0056477", size = 6670330, upload-time = "2025-07-01T09:15:41.269Z" }, + { url = "https://files.pythonhosted.org/packages/e7/bb/7fe6cddcc8827b01b1a9766f5fdeb7418680744f9082035bdbabecf1d57f/pillow-11.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:068d9c39a2d1b358eb9f245ce7ab1b5c3246c7c8c7d9ba58cfa5b43146c06e50", size = 6114089, upload-time = "2025-07-01T09:15:43.13Z" }, + { url = "https://files.pythonhosted.org/packages/8b/f5/06bfaa444c8e80f1a8e4bff98da9c83b37b5be3b1deaa43d27a0db37ef84/pillow-11.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:a1bc6ba083b145187f648b667e05a2534ecc4b9f2784c2cbe3089e44868f2b9b", size = 6748206, upload-time = "2025-07-01T09:15:44.937Z" }, + { url = "https://files.pythonhosted.org/packages/f0/77/bc6f92a3e8e6e46c0ca78abfffec0037845800ea38c73483760362804c41/pillow-11.3.0-cp314-cp314t-win32.whl", hash = "sha256:118ca10c0d60b06d006be10a501fd6bbdfef559251ed31b794668ed569c87e12", size = 6377370, upload-time = "2025-07-01T09:15:46.673Z" }, + { url = "https://files.pythonhosted.org/packages/4a/82/3a721f7d69dca802befb8af08b7c79ebcab461007ce1c18bd91a5d5896f9/pillow-11.3.0-cp314-cp314t-win_amd64.whl", hash = "sha256:8924748b688aa210d79883357d102cd64690e56b923a186f35a82cbc10f997db", size = 7121500, upload-time = "2025-07-01T09:15:48.512Z" }, + { url = "https://files.pythonhosted.org/packages/89/c7/5572fa4a3f45740eaab6ae86fcdf7195b55beac1371ac8c619d880cfe948/pillow-11.3.0-cp314-cp314t-win_arm64.whl", hash = "sha256:79ea0d14d3ebad43ec77ad5272e6ff9bba5b679ef73375ea760261207fa8e0aa", size = 2512835, upload-time = "2025-07-01T09:15:50.399Z" }, +] + +[[package]] +name = "plac" +version = "1.4.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/23/09/26ef2d614cabdcc52a7f383d0dc7967bf46be3c9700898c594e37b710c3d/plac-1.4.5.tar.gz", hash = "sha256:5f05bf85235c017fcd76c73c8101d4ff8e96beb3dc58b9a37de49cac7de82d14", size = 38988, upload-time = "2025-04-04T14:03:25.651Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/15/36/38676114a0dbee137ec366daa86603d667a07e9a52667d5ebf5c580100ba/plac-1.4.5-py2.py3-none-any.whl", hash = "sha256:87187786b4e446688b1cf5112e18fed8a23ab3b316c25fe91266a10bd1736b16", size = 22468, upload-time = "2025-04-04T14:03:24.761Z" }, +] + +[[package]] +name = "platformdirs" +version = "4.3.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/fe/8b/3c73abc9c759ecd3f1f7ceff6685840859e8070c4d947c93fae71f6a0bf2/platformdirs-4.3.8.tar.gz", hash = "sha256:3d512d96e16bcb959a814c9f348431070822a6496326a4be0911c40b5a74c2bc", size = 21362, upload-time = "2025-05-07T22:47:42.121Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fe/39/979e8e21520d4e47a0bbe349e2713c0aac6f3d853d0e5b34d76206c439aa/platformdirs-4.3.8-py3-none-any.whl", hash = "sha256:ff7059bb7eb1179e2685604f4aaf157cfd9535242bd23742eadc3c13542139b4", size = 18567, upload-time = "2025-05-07T22:47:40.376Z" }, +] + +[[package]] +name = "pre-commit" +version = "4.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cfgv" }, + { name = "identify" }, + { name = "nodeenv" }, + { name = "pyyaml" }, + { name = "virtualenv" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/08/39/679ca9b26c7bb2999ff122d50faa301e49af82ca9c066ec061cfbc0c6784/pre_commit-4.2.0.tar.gz", hash = "sha256:601283b9757afd87d40c4c4a9b2b5de9637a8ea02eaff7adc2d0fb4e04841146", size = 193424, upload-time = "2025-03-18T21:35:20.987Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/74/a88bf1b1efeae488a0c0b7bdf71429c313722d1fc0f377537fbe554e6180/pre_commit-4.2.0-py2.py3-none-any.whl", hash = "sha256:a009ca7205f1eb497d10b845e52c838a98b6cdd2102a6c8e4540e94ee75c58bd", size = 220707, upload-time = "2025-03-18T21:35:19.343Z" }, +] + +[[package]] +name = "psutil" +version = "7.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2a/80/336820c1ad9286a4ded7e845b2eccfcb27851ab8ac6abece774a6ff4d3de/psutil-7.0.0.tar.gz", hash = "sha256:7be9c3eba38beccb6495ea33afd982a44074b78f28c434a1f51cc07fd315c456", size = 497003, upload-time = "2025-02-13T21:54:07.946Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ed/e6/2d26234410f8b8abdbf891c9da62bee396583f713fb9f3325a4760875d22/psutil-7.0.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:101d71dc322e3cffd7cea0650b09b3d08b8e7c4109dd6809fe452dfd00e58b25", size = 238051, upload-time = "2025-02-13T21:54:12.36Z" }, + { url = "https://files.pythonhosted.org/packages/04/8b/30f930733afe425e3cbfc0e1468a30a18942350c1a8816acfade80c005c4/psutil-7.0.0-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:39db632f6bb862eeccf56660871433e111b6ea58f2caea825571951d4b6aa3da", size = 239535, upload-time = "2025-02-13T21:54:16.07Z" }, + { url = "https://files.pythonhosted.org/packages/2a/ed/d362e84620dd22876b55389248e522338ed1bf134a5edd3b8231d7207f6d/psutil-7.0.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1fcee592b4c6f146991ca55919ea3d1f8926497a713ed7faaf8225e174581e91", size = 275004, upload-time = "2025-02-13T21:54:18.662Z" }, + { url = "https://files.pythonhosted.org/packages/bf/b9/b0eb3f3cbcb734d930fdf839431606844a825b23eaf9a6ab371edac8162c/psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b1388a4f6875d7e2aff5c4ca1cc16c545ed41dd8bb596cefea80111db353a34", size = 277986, upload-time = "2025-02-13T21:54:21.811Z" }, + { url = "https://files.pythonhosted.org/packages/eb/a2/709e0fe2f093556c17fbafda93ac032257242cabcc7ff3369e2cb76a97aa/psutil-7.0.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5f098451abc2828f7dc6b58d44b532b22f2088f4999a937557b603ce72b1993", size = 279544, upload-time = "2025-02-13T21:54:24.68Z" }, + { url = "https://files.pythonhosted.org/packages/50/e6/eecf58810b9d12e6427369784efe814a1eec0f492084ce8eb8f4d89d6d61/psutil-7.0.0-cp37-abi3-win32.whl", hash = "sha256:ba3fcef7523064a6c9da440fc4d6bd07da93ac726b5733c29027d7dc95b39d99", size = 241053, upload-time = "2025-02-13T21:54:34.31Z" }, + { url = "https://files.pythonhosted.org/packages/50/1b/6921afe68c74868b4c9fa424dad3be35b095e16687989ebbb50ce4fceb7c/psutil-7.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:4cf3d4eb1aa9b348dec30105c55cd9b7d4629285735a102beb4441e38db90553", size = 244885, upload-time = "2025-02-13T21:54:37.486Z" }, +] + +[[package]] +name = "ptyprocess" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/e5/16ff212c1e452235a90aeb09066144d0c5a6a8c0834397e03f5224495c4e/ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220", size = 70762, upload-time = "2020-12-28T15:15:30.155Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35", size = 13993, upload-time = "2020-12-28T15:15:28.35Z" }, +] + +[[package]] +name = "pulp" +version = "3.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2f/cd/cb1308632ad5b092ebbfe64d0cd0b9906caec6e52bff88f54ddd3d434694/pulp-3.2.1.tar.gz", hash = "sha256:fc6c02c47c06342c586b175924add753cad7638ff6149b3b43e87ac6709ac469", size = 16297436, upload-time = "2025-05-29T09:25:51.647Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/84/45/2bb878df73b5545405faff0b0b30f72929222356387a41b50ca268951d5d/pulp-3.2.1-py3-none-any.whl", hash = "sha256:c6cf7fe84cef15795bc7c27e2f3c6784db5cf6ebf68e94d5a659b02415f982c5", size = 16383592, upload-time = "2025-05-29T09:25:49.262Z" }, +] + +[[package]] +name = "pycparser" +version = "2.22" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1d/b2/31537cf4b1ca988837256c910a668b553fceb8f069bedc4b1c826024b52c/pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6", size = 172736, upload-time = "2024-03-30T13:22:22.564Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc", size = 117552, upload-time = "2024-03-30T13:22:20.476Z" }, +] + +[[package]] +name = "pygments" +version = "2.19.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b0/77/a5b8c569bf593b0140bde72ea885a803b82086995367bf2037de0159d924/pygments-2.19.2.tar.gz", hash = "sha256:636cb2477cec7f8952536970bc533bc43743542f70392ae026374600add5b887", size = 4968631, upload-time = "2025-06-21T13:39:12.283Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c7/21/705964c7812476f378728bdf590ca4b771ec72385c533964653c68e86bdc/pygments-2.19.2-py3-none-any.whl", hash = "sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b", size = 1225217, upload-time = "2025-06-21T13:39:07.939Z" }, +] + +[[package]] +name = "pyparsing" +version = "3.2.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bb/22/f1129e69d94ffff626bdb5c835506b3a5b4f3d070f17ea295e12c2c6f60f/pyparsing-3.2.3.tar.gz", hash = "sha256:b9c13f1ab8b3b542f72e28f634bad4de758ab3ce4546e4301970ad6fa77c38be", size = 1088608, upload-time = "2025-03-25T05:01:28.114Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/05/e7/df2285f3d08fee213f2d041540fa4fc9ca6c2d44cf36d3a035bf2a8d2bcc/pyparsing-3.2.3-py3-none-any.whl", hash = "sha256:a749938e02d6fd0b59b356ca504a24982314bb090c383e3cf201c95ef7e2bfcf", size = 111120, upload-time = "2025-03-25T05:01:24.908Z" }, +] + +[[package]] +name = "pyreadline3" +version = "3.5.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0f/49/4cea918a08f02817aabae639e3d0ac046fef9f9180518a3ad394e22da148/pyreadline3-3.5.4.tar.gz", hash = "sha256:8d57d53039a1c75adba8e50dd3d992b28143480816187ea5efbd5c78e6c885b7", size = 99839, upload-time = "2024-09-19T02:40:10.062Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5a/dc/491b7661614ab97483abf2056be1deee4dc2490ecbf7bff9ab5cdbac86e1/pyreadline3-3.5.4-py3-none-any.whl", hash = "sha256:eaf8e6cc3c49bcccf145fc6067ba8643d1df34d604a1ec0eccbf7a18e6d3fae6", size = 83178, upload-time = "2024-09-19T02:40:08.598Z" }, +] + +[[package]] +name = "python-dateutil" +version = "2.9.0.post0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432, upload-time = "2024-03-01T18:36:20.211Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload-time = "2024-03-01T18:36:18.57Z" }, +] + +[[package]] +name = "pytz" +version = "2025.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f8/bf/abbd3cdfb8fbc7fb3d4d38d320f2441b1e7cbe29be4f23797b4a2b5d8aac/pytz-2025.2.tar.gz", hash = "sha256:360b9e3dbb49a209c21ad61809c7fb453643e048b38924c765813546746e81c3", size = 320884, upload-time = "2025-03-25T02:25:00.538Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/81/c4/34e93fe5f5429d7570ec1fa436f1986fb1f00c3e0f43a589fe2bbcd22c3f/pytz-2025.2-py2.py3-none-any.whl", hash = "sha256:5ddf76296dd8c44c26eb8f4b6f35488f3ccbf6fbbd7adee0b7262d43f0ec2f00", size = 509225, upload-time = "2025-03-25T02:24:58.468Z" }, +] + +[[package]] +name = "pywin32" +version = "310" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1c/09/9c1b978ffc4ae53999e89c19c77ba882d9fce476729f23ef55211ea1c034/pywin32-310-cp313-cp313-win32.whl", hash = "sha256:5d241a659c496ada3253cd01cfaa779b048e90ce4b2b38cd44168ad555ce74ab", size = 8794384, upload-time = "2025-03-17T00:56:04.383Z" }, + { url = "https://files.pythonhosted.org/packages/45/3c/b4640f740ffebadd5d34df35fecba0e1cfef8fde9f3e594df91c28ad9b50/pywin32-310-cp313-cp313-win_amd64.whl", hash = "sha256:667827eb3a90208ddbdcc9e860c81bde63a135710e21e4cb3348968e4bd5249e", size = 9503039, upload-time = "2025-03-17T00:56:06.207Z" }, + { url = "https://files.pythonhosted.org/packages/b4/f4/f785020090fb050e7fb6d34b780f2231f302609dc964672f72bfaeb59a28/pywin32-310-cp313-cp313-win_arm64.whl", hash = "sha256:e308f831de771482b7cf692a1f308f8fca701b2d8f9dde6cc440c7da17e47b33", size = 8458152, upload-time = "2025-03-17T00:56:07.819Z" }, +] + +[[package]] +name = "pyyaml" +version = "6.0.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17/pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e", size = 130631, upload-time = "2024-08-06T20:33:50.674Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ef/e3/3af305b830494fa85d95f6d95ef7fa73f2ee1cc8ef5b495c7c3269fb835f/PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba", size = 181309, upload-time = "2024-08-06T20:32:43.4Z" }, + { url = "https://files.pythonhosted.org/packages/45/9f/3b1c20a0b7a3200524eb0076cc027a970d320bd3a6592873c85c92a08731/PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1", size = 171679, upload-time = "2024-08-06T20:32:44.801Z" }, + { url = "https://files.pythonhosted.org/packages/7c/9a/337322f27005c33bcb656c655fa78325b730324c78620e8328ae28b64d0c/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133", size = 733428, upload-time = "2024-08-06T20:32:46.432Z" }, + { url = "https://files.pythonhosted.org/packages/a3/69/864fbe19e6c18ea3cc196cbe5d392175b4cf3d5d0ac1403ec3f2d237ebb5/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484", size = 763361, upload-time = "2024-08-06T20:32:51.188Z" }, + { url = "https://files.pythonhosted.org/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5", size = 759523, upload-time = "2024-08-06T20:32:53.019Z" }, + { url = "https://files.pythonhosted.org/packages/2b/b2/e3234f59ba06559c6ff63c4e10baea10e5e7df868092bf9ab40e5b9c56b6/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc", size = 726660, upload-time = "2024-08-06T20:32:54.708Z" }, + { url = "https://files.pythonhosted.org/packages/fe/0f/25911a9f080464c59fab9027482f822b86bf0608957a5fcc6eaac85aa515/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652", size = 751597, upload-time = "2024-08-06T20:32:56.985Z" }, + { url = "https://files.pythonhosted.org/packages/14/0d/e2c3b43bbce3cf6bd97c840b46088a3031085179e596d4929729d8d68270/PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183", size = 140527, upload-time = "2024-08-06T20:33:03.001Z" }, + { url = "https://files.pythonhosted.org/packages/fa/de/02b54f42487e3d3c6efb3f89428677074ca7bf43aae402517bc7cca949f3/PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563", size = 156446, upload-time = "2024-08-06T20:33:04.33Z" }, +] + +[[package]] +name = "referencing" +version = "0.36.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs" }, + { name = "rpds-py" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2f/db/98b5c277be99dd18bfd91dd04e1b759cad18d1a338188c936e92f921c7e2/referencing-0.36.2.tar.gz", hash = "sha256:df2e89862cd09deabbdba16944cc3f10feb6b3e6f18e902f7cc25609a34775aa", size = 74744, upload-time = "2025-01-25T08:48:16.138Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c1/b1/3baf80dc6d2b7bc27a95a67752d0208e410351e3feb4eb78de5f77454d8d/referencing-0.36.2-py3-none-any.whl", hash = "sha256:e8699adbbf8b5c7de96d8ffa0eb5c158b3beafce084968e2ea8bb08c6794dcd0", size = 26775, upload-time = "2025-01-25T08:48:14.241Z" }, +] + +[[package]] +name = "requests" +version = "2.32.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "charset-normalizer" }, + { name = "idna" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e1/0a/929373653770d8a0d7ea76c37de6e41f11eb07559b103b1c02cafb3f7cf8/requests-2.32.4.tar.gz", hash = "sha256:27d0316682c8a29834d3264820024b62a36942083d52caf2f14c0591336d3422", size = 135258, upload-time = "2025-06-09T16:43:07.34Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7c/e4/56027c4a6b4ae70ca9de302488c5ca95ad4a39e190093d6c1a8ace08341b/requests-2.32.4-py3-none-any.whl", hash = "sha256:27babd3cda2a6d50b30443204ee89830707d396671944c998b5975b031ac2b2c", size = 64847, upload-time = "2025-06-09T16:43:05.728Z" }, +] + +[[package]] +name = "requests-cache" +version = "1.2.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs" }, + { name = "cattrs" }, + { name = "platformdirs" }, + { name = "requests" }, + { name = "url-normalize" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1a/be/7b2a95a9e7a7c3e774e43d067c51244e61dea8b120ae2deff7089a93fb2b/requests_cache-1.2.1.tar.gz", hash = "sha256:68abc986fdc5b8d0911318fbb5f7c80eebcd4d01bfacc6685ecf8876052511d1", size = 3018209, upload-time = "2024-06-18T17:18:03.774Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4e/2e/8f4051119f460cfc786aa91f212165bb6e643283b533db572d7b33952bd2/requests_cache-1.2.1-py3-none-any.whl", hash = "sha256:1285151cddf5331067baa82598afe2d47c7495a1334bfe7a7d329b43e9fd3603", size = 61425, upload-time = "2024-06-18T17:17:45Z" }, +] + +[[package]] +name = "reretry" +version = "0.11.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/40/1d/25d562a62b7471616bccd7c15a7533062eb383927e68667bf331db990415/reretry-0.11.8.tar.gz", hash = "sha256:f2791fcebe512ea2f1d153a2874778523a8064860b591cd90afc21a8bed432e3", size = 4836, upload-time = "2022-12-18T11:08:50.641Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/66/11/e295e07d4ae500144177f875a8de11daa4d86b8246ab41c76a98ce9280ca/reretry-0.11.8-py2.py3-none-any.whl", hash = "sha256:5ec1084cd9644271ee386d34cd5dd24bdb3e91d55961b076d1a31d585ad68a79", size = 5609, upload-time = "2022-12-18T11:08:49.1Z" }, +] + +[[package]] +name = "rich" +version = "14.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown-it-py" }, + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a1/53/830aa4c3066a8ab0ae9a9955976fb770fe9c6102117c8ec4ab3ea62d89e8/rich-14.0.0.tar.gz", hash = "sha256:82f1bc23a6a21ebca4ae0c45af9bdbc492ed20231dcb63f297d6d1021a9d5725", size = 224078, upload-time = "2025-03-30T14:15:14.23Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0d/9b/63f4c7ebc259242c89b3acafdb37b41d1185c07ff0011164674e9076b491/rich-14.0.0-py3-none-any.whl", hash = "sha256:1c9491e1951aac09caffd42f448ee3d04e58923ffe14993f6e83068dc395d7e0", size = 243229, upload-time = "2025-03-30T14:15:12.283Z" }, +] + +[[package]] +name = "rich-click" +version = "1.8.9" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, + { name = "rich" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b7/a8/dcc0a8ec9e91d76ecad9413a84b6d3a3310c6111cfe012d75ed385c78d96/rich_click-1.8.9.tar.gz", hash = "sha256:fd98c0ab9ddc1cf9c0b7463f68daf28b4d0033a74214ceb02f761b3ff2af3136", size = 39378, upload-time = "2025-05-19T21:33:05.569Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/c2/9fce4c8a9587c4e90500114d742fe8ef0fd92d7bad29d136bb9941add271/rich_click-1.8.9-py3-none-any.whl", hash = "sha256:c3fa81ed8a671a10de65a9e20abf642cfdac6fdb882db1ef465ee33919fbcfe2", size = 36082, upload-time = "2025-05-19T21:33:04.195Z" }, +] + +[[package]] +name = "rpds-py" +version = "0.25.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8c/a6/60184b7fc00dd3ca80ac635dd5b8577d444c57e8e8742cecabfacb829921/rpds_py-0.25.1.tar.gz", hash = "sha256:8960b6dac09b62dac26e75d7e2c4a22efb835d827a7278c34f72b2b84fa160e3", size = 27304, upload-time = "2025-05-21T12:46:12.502Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2b/da/323848a2b62abe6a0fec16ebe199dc6889c5d0a332458da8985b2980dffe/rpds_py-0.25.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:659d87430a8c8c704d52d094f5ba6fa72ef13b4d385b7e542a08fc240cb4a559", size = 364498, upload-time = "2025-05-21T12:43:54.841Z" }, + { url = "https://files.pythonhosted.org/packages/1f/b4/4d3820f731c80fd0cd823b3e95b9963fec681ae45ba35b5281a42382c67d/rpds_py-0.25.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:68f6f060f0bbdfb0245267da014d3a6da9be127fe3e8cc4a68c6f833f8a23bb1", size = 350083, upload-time = "2025-05-21T12:43:56.428Z" }, + { url = "https://files.pythonhosted.org/packages/d5/b1/3a8ee1c9d480e8493619a437dec685d005f706b69253286f50f498cbdbcf/rpds_py-0.25.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:083a9513a33e0b92cf6e7a6366036c6bb43ea595332c1ab5c8ae329e4bcc0a9c", size = 389023, upload-time = "2025-05-21T12:43:57.995Z" }, + { url = "https://files.pythonhosted.org/packages/3b/31/17293edcfc934dc62c3bf74a0cb449ecd549531f956b72287203e6880b87/rpds_py-0.25.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:816568614ecb22b18a010c7a12559c19f6fe993526af88e95a76d5a60b8b75fb", size = 403283, upload-time = "2025-05-21T12:43:59.546Z" }, + { url = "https://files.pythonhosted.org/packages/d1/ca/e0f0bc1a75a8925024f343258c8ecbd8828f8997ea2ac71e02f67b6f5299/rpds_py-0.25.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3c6564c0947a7f52e4792983f8e6cf9bac140438ebf81f527a21d944f2fd0a40", size = 524634, upload-time = "2025-05-21T12:44:01.087Z" }, + { url = "https://files.pythonhosted.org/packages/3e/03/5d0be919037178fff33a6672ffc0afa04ea1cfcb61afd4119d1b5280ff0f/rpds_py-0.25.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c4a128527fe415d73cf1f70a9a688d06130d5810be69f3b553bf7b45e8acf79", size = 416233, upload-time = "2025-05-21T12:44:02.604Z" }, + { url = "https://files.pythonhosted.org/packages/05/7c/8abb70f9017a231c6c961a8941403ed6557664c0913e1bf413cbdc039e75/rpds_py-0.25.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a49e1d7a4978ed554f095430b89ecc23f42014a50ac385eb0c4d163ce213c325", size = 390375, upload-time = "2025-05-21T12:44:04.162Z" }, + { url = "https://files.pythonhosted.org/packages/7a/ac/a87f339f0e066b9535074a9f403b9313fd3892d4a164d5d5f5875ac9f29f/rpds_py-0.25.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d74ec9bc0e2feb81d3f16946b005748119c0f52a153f6db6a29e8cd68636f295", size = 424537, upload-time = "2025-05-21T12:44:06.175Z" }, + { url = "https://files.pythonhosted.org/packages/1f/8f/8d5c1567eaf8c8afe98a838dd24de5013ce6e8f53a01bd47fe8bb06b5533/rpds_py-0.25.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3af5b4cc10fa41e5bc64e5c198a1b2d2864337f8fcbb9a67e747e34002ce812b", size = 566425, upload-time = "2025-05-21T12:44:08.242Z" }, + { url = "https://files.pythonhosted.org/packages/95/33/03016a6be5663b389c8ab0bbbcca68d9e96af14faeff0a04affcb587e776/rpds_py-0.25.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:79dc317a5f1c51fd9c6a0c4f48209c6b8526d0524a6904fc1076476e79b00f98", size = 595197, upload-time = "2025-05-21T12:44:10.449Z" }, + { url = "https://files.pythonhosted.org/packages/33/8d/da9f4d3e208c82fda311bff0cf0a19579afceb77cf456e46c559a1c075ba/rpds_py-0.25.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:1521031351865e0181bc585147624d66b3b00a84109b57fcb7a779c3ec3772cd", size = 561244, upload-time = "2025-05-21T12:44:12.387Z" }, + { url = "https://files.pythonhosted.org/packages/e2/b3/39d5dcf7c5f742ecd6dbc88f6f84ae54184b92f5f387a4053be2107b17f1/rpds_py-0.25.1-cp313-cp313-win32.whl", hash = "sha256:5d473be2b13600b93a5675d78f59e63b51b1ba2d0476893415dfbb5477e65b31", size = 222254, upload-time = "2025-05-21T12:44:14.261Z" }, + { url = "https://files.pythonhosted.org/packages/5f/19/2d6772c8eeb8302c5f834e6d0dfd83935a884e7c5ce16340c7eaf89ce925/rpds_py-0.25.1-cp313-cp313-win_amd64.whl", hash = "sha256:a7b74e92a3b212390bdce1d93da9f6488c3878c1d434c5e751cbc202c5e09500", size = 234741, upload-time = "2025-05-21T12:44:16.236Z" }, + { url = "https://files.pythonhosted.org/packages/5b/5a/145ada26cfaf86018d0eb304fe55eafdd4f0b6b84530246bb4a7c4fb5c4b/rpds_py-0.25.1-cp313-cp313-win_arm64.whl", hash = "sha256:dd326a81afe332ede08eb39ab75b301d5676802cdffd3a8f287a5f0b694dc3f5", size = 224830, upload-time = "2025-05-21T12:44:17.749Z" }, + { url = "https://files.pythonhosted.org/packages/4b/ca/d435844829c384fd2c22754ff65889c5c556a675d2ed9eb0e148435c6690/rpds_py-0.25.1-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:a58d1ed49a94d4183483a3ce0af22f20318d4a1434acee255d683ad90bf78129", size = 359668, upload-time = "2025-05-21T12:44:19.322Z" }, + { url = "https://files.pythonhosted.org/packages/1f/01/b056f21db3a09f89410d493d2f6614d87bb162499f98b649d1dbd2a81988/rpds_py-0.25.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:f251bf23deb8332823aef1da169d5d89fa84c89f67bdfb566c49dea1fccfd50d", size = 345649, upload-time = "2025-05-21T12:44:20.962Z" }, + { url = "https://files.pythonhosted.org/packages/e0/0f/e0d00dc991e3d40e03ca36383b44995126c36b3eafa0ccbbd19664709c88/rpds_py-0.25.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8dbd586bfa270c1103ece2109314dd423df1fa3d9719928b5d09e4840cec0d72", size = 384776, upload-time = "2025-05-21T12:44:22.516Z" }, + { url = "https://files.pythonhosted.org/packages/9f/a2/59374837f105f2ca79bde3c3cd1065b2f8c01678900924949f6392eab66d/rpds_py-0.25.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6d273f136e912aa101a9274c3145dcbddbe4bac560e77e6d5b3c9f6e0ed06d34", size = 395131, upload-time = "2025-05-21T12:44:24.147Z" }, + { url = "https://files.pythonhosted.org/packages/9c/dc/48e8d84887627a0fe0bac53f0b4631e90976fd5d35fff8be66b8e4f3916b/rpds_py-0.25.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:666fa7b1bd0a3810a7f18f6d3a25ccd8866291fbbc3c9b912b917a6715874bb9", size = 520942, upload-time = "2025-05-21T12:44:25.915Z" }, + { url = "https://files.pythonhosted.org/packages/7c/f5/ee056966aeae401913d37befeeab57a4a43a4f00099e0a20297f17b8f00c/rpds_py-0.25.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:921954d7fbf3fccc7de8f717799304b14b6d9a45bbeec5a8d7408ccbf531faf5", size = 411330, upload-time = "2025-05-21T12:44:27.638Z" }, + { url = "https://files.pythonhosted.org/packages/ab/74/b2cffb46a097cefe5d17f94ede7a174184b9d158a0aeb195f39f2c0361e8/rpds_py-0.25.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3d86373ff19ca0441ebeb696ef64cb58b8b5cbacffcda5a0ec2f3911732a194", size = 387339, upload-time = "2025-05-21T12:44:29.292Z" }, + { url = "https://files.pythonhosted.org/packages/7f/9a/0ff0b375dcb5161c2b7054e7d0b7575f1680127505945f5cabaac890bc07/rpds_py-0.25.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c8980cde3bb8575e7c956a530f2c217c1d6aac453474bf3ea0f9c89868b531b6", size = 418077, upload-time = "2025-05-21T12:44:30.877Z" }, + { url = "https://files.pythonhosted.org/packages/0d/a1/fda629bf20d6b698ae84c7c840cfb0e9e4200f664fc96e1f456f00e4ad6e/rpds_py-0.25.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:8eb8c84ecea987a2523e057c0d950bcb3f789696c0499290b8d7b3107a719d78", size = 562441, upload-time = "2025-05-21T12:44:32.541Z" }, + { url = "https://files.pythonhosted.org/packages/20/15/ce4b5257f654132f326f4acd87268e1006cc071e2c59794c5bdf4bebbb51/rpds_py-0.25.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:e43a005671a9ed5a650f3bc39e4dbccd6d4326b24fb5ea8be5f3a43a6f576c72", size = 590750, upload-time = "2025-05-21T12:44:34.557Z" }, + { url = "https://files.pythonhosted.org/packages/fb/ab/e04bf58a8d375aeedb5268edcc835c6a660ebf79d4384d8e0889439448b0/rpds_py-0.25.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:58f77c60956501a4a627749a6dcb78dac522f249dd96b5c9f1c6af29bfacfb66", size = 558891, upload-time = "2025-05-21T12:44:37.358Z" }, + { url = "https://files.pythonhosted.org/packages/90/82/cb8c6028a6ef6cd2b7991e2e4ced01c854b6236ecf51e81b64b569c43d73/rpds_py-0.25.1-cp313-cp313t-win32.whl", hash = "sha256:2cb9e5b5e26fc02c8a4345048cd9998c2aca7c2712bd1b36da0c72ee969a3523", size = 218718, upload-time = "2025-05-21T12:44:38.969Z" }, + { url = "https://files.pythonhosted.org/packages/b6/97/5a4b59697111c89477d20ba8a44df9ca16b41e737fa569d5ae8bff99e650/rpds_py-0.25.1-cp313-cp313t-win_amd64.whl", hash = "sha256:401ca1c4a20cc0510d3435d89c069fe0a9ae2ee6495135ac46bdd49ec0495763", size = 232218, upload-time = "2025-05-21T12:44:40.512Z" }, +] + +[[package]] +name = "setuptools" +version = "80.9.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/18/5d/3bf57dcd21979b887f014ea83c24ae194cfcd12b9e0fda66b957c69d1fca/setuptools-80.9.0.tar.gz", hash = "sha256:f36b47402ecde768dbfafc46e8e4207b4360c654f1f3bb84475f0a28628fb19c", size = 1319958, upload-time = "2025-05-27T00:56:51.443Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a3/dc/17031897dae0efacfea57dfd3a82fdd2a2aeb58e0ff71b77b87e44edc772/setuptools-80.9.0-py3-none-any.whl", hash = "sha256:062d34222ad13e0cc312a4c02d73f059e86a4acbfbdea8f8f76b28c99f306922", size = 1201486, upload-time = "2025-05-27T00:56:49.664Z" }, +] + +[[package]] +name = "six" +version = "1.17.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031, upload-time = "2024-12-04T17:35:28.174Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050, upload-time = "2024-12-04T17:35:26.475Z" }, +] + +[[package]] +name = "smart-open" +version = "7.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "wrapt" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/21/30/1f41c3d3b8cec82024b4b277bfd4e5b18b765ae7279eb9871fa25c503778/smart_open-7.1.0.tar.gz", hash = "sha256:a4f09f84f0f6d3637c6543aca7b5487438877a21360e7368ccf1f704789752ba", size = 72044, upload-time = "2024-12-17T13:19:17.71Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7a/18/9a8d9f01957aa1f8bbc5676d54c2e33102d247e146c1a3679d3bd5cc2e3a/smart_open-7.1.0-py3-none-any.whl", hash = "sha256:4b8489bb6058196258bafe901730c7db0dcf4f083f316e97269c66f45502055b", size = 61746, upload-time = "2024-12-17T13:19:21.076Z" }, +] + +[[package]] +name = "smmap" +version = "5.0.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/44/cd/a040c4b3119bbe532e5b0732286f805445375489fceaec1f48306068ee3b/smmap-5.0.2.tar.gz", hash = "sha256:26ea65a03958fa0c8a1c7e8c7a58fdc77221b8910f6be2131affade476898ad5", size = 22329, upload-time = "2025-01-02T07:14:40.909Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/be/d09147ad1ec7934636ad912901c5fd7667e1c858e19d355237db0d0cd5e4/smmap-5.0.2-py3-none-any.whl", hash = "sha256:b30115f0def7d7531d22a0fb6502488d879e75b260a9db4d0819cfb25403af5e", size = 24303, upload-time = "2025-01-02T07:14:38.724Z" }, +] + +[[package]] +name = "snakemake" +version = "9.6.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "appdirs" }, + { name = "conda-inject" }, + { name = "configargparse" }, + { name = "connection-pool" }, + { name = "docutils" }, + { name = "dpath" }, + { name = "gitpython" }, + { name = "humanfriendly" }, + { name = "immutables" }, + { name = "jinja2" }, + { name = "jsonschema" }, + { name = "nbformat" }, + { name = "packaging" }, + { name = "psutil" }, + { name = "pulp" }, + { name = "pyyaml" }, + { name = "referencing" }, + { name = "requests" }, + { name = "reretry" }, + { name = "smart-open" }, + { name = "snakemake-interface-common" }, + { name = "snakemake-interface-executor-plugins" }, + { name = "snakemake-interface-logger-plugins" }, + { name = "snakemake-interface-report-plugins" }, + { name = "snakemake-interface-storage-plugins" }, + { name = "tabulate" }, + { name = "throttler" }, + { name = "wrapt" }, + { name = "yte" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/01/59/b3e9d89c09af0710fc45f51a9032d5d4f56e4442327c72a3585e39a0688d/snakemake-9.6.0.tar.gz", hash = "sha256:df7c24dd278d2420d04f15f14189427d0d4dae8ab55ca7094f53f92f1930b37c", size = 5979335, upload-time = "2025-06-16T11:01:36.573Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/61/1b/12100e339499b4fce8f11f7119591d49929e386dee2208ae249a9a5a558f/snakemake-9.6.0-py3-none-any.whl", hash = "sha256:766cf9cb72925f727c02927b76dbc7241752c8e82e2079b668ae19cd71071ed8", size = 1101136, upload-time = "2025-06-16T11:01:34.667Z" }, +] + +[[package]] +name = "snakemake-interface-common" +version = "1.18.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "argparse-dataclass" }, + { name = "configargparse" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ab/b8/80d90564ca618d7af43b409c90881bac3ecf566ba41239bfb08582f5011c/snakemake_interface_common-1.18.0.tar.gz", hash = "sha256:2810abb68c1d2e5da69f271c9a0fc819dd9e62249c01db63793504011c7ad39a", size = 11801, upload-time = "2025-05-15T08:30:01.08Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/db/86/503051d3c1141cd32543223084fa2f4b7393fd1cd663a2f4852915747615/snakemake_interface_common-1.18.0-py3-none-any.whl", hash = "sha256:793fc01a55bd6dd28ad15a35ef71a895bfdbc9cf4776868e157687b7fbc2ba3e", size = 14274, upload-time = "2025-05-15T08:30:00.035Z" }, +] + +[[package]] +name = "snakemake-interface-executor-plugins" +version = "9.3.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "argparse-dataclass" }, + { name = "snakemake-interface-common" }, + { name = "throttler" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6a/62/0bf04bc7cf11d9019040e2a0957830ae5bee48ad5ee817c260145f3d99fc/snakemake_interface_executor_plugins-9.3.6.tar.gz", hash = "sha256:9c99540fd3f0ae751440b7e0a4f82323561f89e6205b12613d409374a450b84b", size = 16415, upload-time = "2025-06-18T11:02:35.628Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c6/44/09cbad8402a355c840dcbc976de8493103705d3a7a27adb9910340a49f83/snakemake_interface_executor_plugins-9.3.6-py3-none-any.whl", hash = "sha256:5f9d10878c877f9b82cc7ea573d057b030676f5ead553de03a36e6648bada220", size = 22369, upload-time = "2025-06-18T11:02:34.421Z" }, +] + +[[package]] +name = "snakemake-interface-logger-plugins" +version = "1.2.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "snakemake-interface-common" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b2/30/96e98e0d3feedcaf40820f7604cc86dfb9a0174408e7f70a7fd876a9b8c8/snakemake_interface_logger_plugins-1.2.3.tar.gz", hash = "sha256:9228cc01f2cc0b35e9144c02d10f71cc9874296272896aeb86f9fac7db5e2c69", size = 8125, upload-time = "2025-03-20T11:59:28.389Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fa/36/3e631b82c4822569e7af783e05e0feb29d33b3bd886977b0d70183f9ed4a/snakemake_interface_logger_plugins-1.2.3-py3-none-any.whl", hash = "sha256:95dd1dd83f04f2c7191c9cfdea78bf1dd7e216b838d91f86d4780aa11a4ce276", size = 6217, upload-time = "2025-03-20T11:59:26.923Z" }, +] + +[[package]] +name = "snakemake-interface-report-plugins" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "snakemake-interface-common" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5e/ae/ee9a6c9475e380bb55020dc161ab08698fe85da9e866477bfb333b15a0ed/snakemake_interface_report_plugins-1.1.0.tar.gz", hash = "sha256:b1ee444b2fca51225cf8a102f8e56633791d01433cd00cf07a1d9713a12313a5", size = 4383, upload-time = "2024-10-04T14:56:36.732Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/35/89/f5f4e48b72fca04458a2fe4f4b02e10f95fb47772b0d0ea889ac929c3b1e/snakemake_interface_report_plugins-1.1.0-py3-none-any.whl", hash = "sha256:00749eb3c5c7ce465757d0fc9f04e6c4d3f5af4f463809c34b92c8b5efea0fd5", size = 7076, upload-time = "2024-10-04T14:56:35.658Z" }, +] + +[[package]] +name = "snakemake-interface-storage-plugins" +version = "4.2.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "reretry" }, + { name = "snakemake-interface-common" }, + { name = "throttler" }, + { name = "wrapt" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/25/82/29b9212ece305f2a8db47c1b8fabb14174aa7fdde8005a4912c011c3bb54/snakemake_interface_storage_plugins-4.2.1.tar.gz", hash = "sha256:41f23c1940942d45fe6afa6578b50a7181b2d4d32013421ef2fc1ea0e4bbe137", size = 14052, upload-time = "2025-03-20T13:20:58.101Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/20/91/5dab248aa54f523184d6289bbfa9ce763ef4c9556ffcd1f8c8c5b394e65c/snakemake_interface_storage_plugins-4.2.1-py3-none-any.whl", hash = "sha256:780904853a80ea96e69bc8047fec8281b1f18c2b525044ffffb2b053fc29f50b", size = 16958, upload-time = "2025-03-20T13:20:56.968Z" }, +] + +[[package]] +name = "soupsieve" +version = "2.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3f/f4/4a80cd6ef364b2e8b65b15816a843c0980f7a5a2b4dc701fc574952aa19f/soupsieve-2.7.tar.gz", hash = "sha256:ad282f9b6926286d2ead4750552c8a6142bc4c783fd66b0293547c8fe6ae126a", size = 103418, upload-time = "2025-04-20T18:50:08.518Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/9c/0e6afc12c269578be5c0c1c9f4b49a8d32770a080260c333ac04cc1c832d/soupsieve-2.7-py3-none-any.whl", hash = "sha256:6e60cc5c1ffaf1cebcc12e8188320b72071e922c2e897f737cadce79ad5d30c4", size = 36677, upload-time = "2025-04-20T18:50:07.196Z" }, +] + +[[package]] +name = "spras-benchmarking" +version = "0.1.0" +source = { virtual = "." } +dependencies = [ + { name = "bioservices" }, + { name = "more-itertools" }, + { name = "pandas" }, +] + +[package.dev-dependencies] +dev = [ + { name = "pre-commit" }, + { name = "snakemake" }, +] + +[package.metadata] +requires-dist = [ + { name = "bioservices", specifier = ">=1.12.1" }, + { name = "more-itertools", specifier = ">=10.7.0" }, + { name = "pandas", specifier = ">=2.3.0" }, +] + +[package.metadata.requires-dev] +dev = [ + { name = "pre-commit", specifier = ">=4.2.0" }, + { name = "snakemake", specifier = ">=9.6.0" }, +] + +[[package]] +name = "suds-community" +version = "1.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9e/5d/da767935b4cb869417307fbd6dec93d2bf3723228214302b6e6b277f474b/suds_community-1.2.0.tar.gz", hash = "sha256:ab3b24dc9ba06b5e6598e2a5d34d2a7d06c79e613d81cedc028475bfbd3bb90c", size = 271408, upload-time = "2024-08-24T20:07:23.122Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a3/0e/513c353018247dc846074d9460f3c9adeeea360ac85abd5a7750eb53fc03/suds_community-1.2.0-py3-none-any.whl", hash = "sha256:505b191865bca125f12e8ff9598b24d9c0108b98826671bdd700ed51def44e36", size = 145270, upload-time = "2024-08-24T20:07:21.588Z" }, +] + +[[package]] +name = "tabulate" +version = "0.9.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ec/fe/802052aecb21e3797b8f7902564ab6ea0d60ff8ca23952079064155d1ae1/tabulate-0.9.0.tar.gz", hash = "sha256:0095b12bf5966de529c0feb1fa08671671b3368eec77d7ef7ab114be2c068b3c", size = 81090, upload-time = "2022-10-06T17:21:48.54Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/40/44/4a5f08c96eb108af5cb50b41f76142f0afa346dfa99d5296fe7202a11854/tabulate-0.9.0-py3-none-any.whl", hash = "sha256:024ca478df22e9340661486f85298cff5f6dcdba14f3813e8830015b9ed1948f", size = 35252, upload-time = "2022-10-06T17:21:44.262Z" }, +] + +[[package]] +name = "throttler" +version = "1.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b4/22/638451122136d5280bc477c8075ea448b9ebdfbd319f0f120edaecea2038/throttler-1.2.2.tar.gz", hash = "sha256:d54db406d98e1b54d18a9ba2b31ab9f093ac64a0a59d730c1cf7bb1cdfc94a58", size = 7970, upload-time = "2022-11-22T19:08:57.847Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/df/d4/36bf6010b184286000b2334622bfb3446a40c22c1d2a9776bff025cb0fe5/throttler-1.2.2-py3-none-any.whl", hash = "sha256:fc6ae612a2529e01110b32335af40375258b98e3b81232ec77cd07f51bf71392", size = 7609, upload-time = "2022-11-22T19:08:55.699Z" }, +] + +[[package]] +name = "tqdm" +version = "4.67.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a8/4b/29b4ef32e036bb34e4ab51796dd745cdba7ed47ad142a9f4a1eb8e0c744d/tqdm-4.67.1.tar.gz", hash = "sha256:f8aef9c52c08c13a65f30ea34f4e5aac3fd1a34959879d7e59e63027286627f2", size = 169737, upload-time = "2024-11-24T20:12:22.481Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d0/30/dc54f88dd4a2b5dc8a0279bdd7270e735851848b762aeb1c1184ed1f6b14/tqdm-4.67.1-py3-none-any.whl", hash = "sha256:26445eca388f82e72884e0d580d5464cd801a3ea01e63e5601bdff9ba6a48de2", size = 78540, upload-time = "2024-11-24T20:12:19.698Z" }, +] + +[[package]] +name = "traitlets" +version = "5.14.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/eb/79/72064e6a701c2183016abbbfedaba506d81e30e232a68c9f0d6f6fcd1574/traitlets-5.14.3.tar.gz", hash = "sha256:9ed0579d3502c94b4b3732ac120375cda96f923114522847de4b3bb98b96b6b7", size = 161621, upload-time = "2024-04-19T11:11:49.746Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl", hash = "sha256:b74e89e397b1ed28cc831db7aea759ba6640cb3de13090ca145426688ff1ac4f", size = 85359, upload-time = "2024-04-19T11:11:46.763Z" }, +] + +[[package]] +name = "typing-extensions" +version = "4.14.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d1/bc/51647cd02527e87d05cb083ccc402f93e441606ff1f01739a62c8ad09ba5/typing_extensions-4.14.0.tar.gz", hash = "sha256:8676b788e32f02ab42d9e7c61324048ae4c6d844a399eebace3d4979d75ceef4", size = 107423, upload-time = "2025-06-02T14:52:11.399Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/e0/552843e0d356fbb5256d21449fa957fa4eff3bbc135a74a691ee70c7c5da/typing_extensions-4.14.0-py3-none-any.whl", hash = "sha256:a1514509136dd0b477638fc68d6a91497af5076466ad0fa6c338e44e359944af", size = 43839, upload-time = "2025-06-02T14:52:10.026Z" }, +] + +[[package]] +name = "tzdata" +version = "2025.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/95/32/1a225d6164441be760d75c2c42e2780dc0873fe382da3e98a2e1e48361e5/tzdata-2025.2.tar.gz", hash = "sha256:b60a638fcc0daffadf82fe0f57e53d06bdec2f36c4df66280ae79bce6bd6f2b9", size = 196380, upload-time = "2025-03-23T13:54:43.652Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5c/23/c7abc0ca0a1526a0774eca151daeb8de62ec457e77262b66b359c3c7679e/tzdata-2025.2-py2.py3-none-any.whl", hash = "sha256:1a403fada01ff9221ca8044d701868fa132215d84beb92242d9acd2147f667a8", size = 347839, upload-time = "2025-03-23T13:54:41.845Z" }, +] + +[[package]] +name = "url-normalize" +version = "2.2.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/80/31/febb777441e5fcdaacb4522316bf2a527c44551430a4873b052d545e3279/url_normalize-2.2.1.tar.gz", hash = "sha256:74a540a3b6eba1d95bdc610c24f2c0141639f3ba903501e61a52a8730247ff37", size = 18846, upload-time = "2025-04-26T20:37:58.553Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bc/d9/5ec15501b675f7bc07c5d16aa70d8d778b12375686b6efd47656efdc67cd/url_normalize-2.2.1-py3-none-any.whl", hash = "sha256:3deb687587dc91f7b25c9ae5162ffc0f057ae85d22b1e15cf5698311247f567b", size = 14728, upload-time = "2025-04-26T20:37:57.217Z" }, +] + +[[package]] +name = "urllib3" +version = "2.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/15/22/9ee70a2574a4f4599c47dd506532914ce044817c7752a79b6a51286319bc/urllib3-2.5.0.tar.gz", hash = "sha256:3fc47733c7e419d4bc3f6b3dc2b4f890bb743906a30d56ba4a5bfa4bbff92760", size = 393185, upload-time = "2025-06-18T14:07:41.644Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/c2/fe1e52489ae3122415c51f387e221dd0773709bad6c6cdaa599e8a2c5185/urllib3-2.5.0-py3-none-any.whl", hash = "sha256:e6b01673c0fa6a13e374b50871808eb3bf7046c4b125b216f6bf1cc604cff0dc", size = 129795, upload-time = "2025-06-18T14:07:40.39Z" }, +] + +[[package]] +name = "virtualenv" +version = "20.31.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "distlib" }, + { name = "filelock" }, + { name = "platformdirs" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/56/2c/444f465fb2c65f40c3a104fd0c495184c4f2336d65baf398e3c75d72ea94/virtualenv-20.31.2.tar.gz", hash = "sha256:e10c0a9d02835e592521be48b332b6caee6887f332c111aa79a09b9e79efc2af", size = 6076316, upload-time = "2025-05-08T17:58:23.811Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f3/40/b1c265d4b2b62b58576588510fc4d1fe60a86319c8de99fd8e9fec617d2c/virtualenv-20.31.2-py3-none-any.whl", hash = "sha256:36efd0d9650ee985f0cad72065001e66d49a6f24eb44d98980f630686243cf11", size = 6057982, upload-time = "2025-05-08T17:58:21.15Z" }, +] + +[[package]] +name = "wrapt" +version = "1.17.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c3/fc/e91cc220803d7bc4db93fb02facd8461c37364151b8494762cc88b0fbcef/wrapt-1.17.2.tar.gz", hash = "sha256:41388e9d4d1522446fe79d3213196bd9e3b301a336965b9e27ca2788ebd122f3", size = 55531, upload-time = "2025-01-14T10:35:45.465Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ce/b9/0ffd557a92f3b11d4c5d5e0c5e4ad057bd9eb8586615cdaf901409920b14/wrapt-1.17.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:6ed6ffac43aecfe6d86ec5b74b06a5be33d5bb9243d055141e8cabb12aa08125", size = 53800, upload-time = "2025-01-14T10:34:21.571Z" }, + { url = "https://files.pythonhosted.org/packages/c0/ef/8be90a0b7e73c32e550c73cfb2fa09db62234227ece47b0e80a05073b375/wrapt-1.17.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:35621ae4c00e056adb0009f8e86e28eb4a41a4bfa8f9bfa9fca7d343fe94f998", size = 38824, upload-time = "2025-01-14T10:34:22.999Z" }, + { url = "https://files.pythonhosted.org/packages/36/89/0aae34c10fe524cce30fe5fc433210376bce94cf74d05b0d68344c8ba46e/wrapt-1.17.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a604bf7a053f8362d27eb9fefd2097f82600b856d5abe996d623babd067b1ab5", size = 38920, upload-time = "2025-01-14T10:34:25.386Z" }, + { url = "https://files.pythonhosted.org/packages/3b/24/11c4510de906d77e0cfb5197f1b1445d4fec42c9a39ea853d482698ac681/wrapt-1.17.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cbabee4f083b6b4cd282f5b817a867cf0b1028c54d445b7ec7cfe6505057cf8", size = 88690, upload-time = "2025-01-14T10:34:28.058Z" }, + { url = "https://files.pythonhosted.org/packages/71/d7/cfcf842291267bf455b3e266c0c29dcb675b5540ee8b50ba1699abf3af45/wrapt-1.17.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:49703ce2ddc220df165bd2962f8e03b84c89fee2d65e1c24a7defff6f988f4d6", size = 80861, upload-time = "2025-01-14T10:34:29.167Z" }, + { url = "https://files.pythonhosted.org/packages/d5/66/5d973e9f3e7370fd686fb47a9af3319418ed925c27d72ce16b791231576d/wrapt-1.17.2-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8112e52c5822fc4253f3901b676c55ddf288614dc7011634e2719718eaa187dc", size = 89174, upload-time = "2025-01-14T10:34:31.702Z" }, + { url = "https://files.pythonhosted.org/packages/a7/d3/8e17bb70f6ae25dabc1aaf990f86824e4fd98ee9cadf197054e068500d27/wrapt-1.17.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:9fee687dce376205d9a494e9c121e27183b2a3df18037f89d69bd7b35bcf59e2", size = 86721, upload-time = "2025-01-14T10:34:32.91Z" }, + { url = "https://files.pythonhosted.org/packages/6f/54/f170dfb278fe1c30d0ff864513cff526d624ab8de3254b20abb9cffedc24/wrapt-1.17.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:18983c537e04d11cf027fbb60a1e8dfd5190e2b60cc27bc0808e653e7b218d1b", size = 79763, upload-time = "2025-01-14T10:34:34.903Z" }, + { url = "https://files.pythonhosted.org/packages/4a/98/de07243751f1c4a9b15c76019250210dd3486ce098c3d80d5f729cba029c/wrapt-1.17.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:703919b1633412ab54bcf920ab388735832fdcb9f9a00ae49387f0fe67dad504", size = 87585, upload-time = "2025-01-14T10:34:36.13Z" }, + { url = "https://files.pythonhosted.org/packages/f9/f0/13925f4bd6548013038cdeb11ee2cbd4e37c30f8bfd5db9e5a2a370d6e20/wrapt-1.17.2-cp313-cp313-win32.whl", hash = "sha256:abbb9e76177c35d4e8568e58650aa6926040d6a9f6f03435b7a522bf1c487f9a", size = 36676, upload-time = "2025-01-14T10:34:37.962Z" }, + { url = "https://files.pythonhosted.org/packages/bf/ae/743f16ef8c2e3628df3ddfd652b7d4c555d12c84b53f3d8218498f4ade9b/wrapt-1.17.2-cp313-cp313-win_amd64.whl", hash = "sha256:69606d7bb691b50a4240ce6b22ebb319c1cfb164e5f6569835058196e0f3a845", size = 38871, upload-time = "2025-01-14T10:34:39.13Z" }, + { url = "https://files.pythonhosted.org/packages/3d/bc/30f903f891a82d402ffb5fda27ec1d621cc97cb74c16fea0b6141f1d4e87/wrapt-1.17.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:4a721d3c943dae44f8e243b380cb645a709ba5bd35d3ad27bc2ed947e9c68192", size = 56312, upload-time = "2025-01-14T10:34:40.604Z" }, + { url = "https://files.pythonhosted.org/packages/8a/04/c97273eb491b5f1c918857cd26f314b74fc9b29224521f5b83f872253725/wrapt-1.17.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:766d8bbefcb9e00c3ac3b000d9acc51f1b399513f44d77dfe0eb026ad7c9a19b", size = 40062, upload-time = "2025-01-14T10:34:45.011Z" }, + { url = "https://files.pythonhosted.org/packages/4e/ca/3b7afa1eae3a9e7fefe499db9b96813f41828b9fdb016ee836c4c379dadb/wrapt-1.17.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:e496a8ce2c256da1eb98bd15803a79bee00fc351f5dfb9ea82594a3f058309e0", size = 40155, upload-time = "2025-01-14T10:34:47.25Z" }, + { url = "https://files.pythonhosted.org/packages/89/be/7c1baed43290775cb9030c774bc53c860db140397047cc49aedaf0a15477/wrapt-1.17.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d615e4fe22f4ad3528448c193b218e077656ca9ccb22ce2cb20db730f8d306", size = 113471, upload-time = "2025-01-14T10:34:50.934Z" }, + { url = "https://files.pythonhosted.org/packages/32/98/4ed894cf012b6d6aae5f5cc974006bdeb92f0241775addad3f8cd6ab71c8/wrapt-1.17.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a5aaeff38654462bc4b09023918b7f21790efb807f54c000a39d41d69cf552cb", size = 101208, upload-time = "2025-01-14T10:34:52.297Z" }, + { url = "https://files.pythonhosted.org/packages/ea/fd/0c30f2301ca94e655e5e057012e83284ce8c545df7661a78d8bfca2fac7a/wrapt-1.17.2-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a7d15bbd2bc99e92e39f49a04653062ee6085c0e18b3b7512a4f2fe91f2d681", size = 109339, upload-time = "2025-01-14T10:34:53.489Z" }, + { url = "https://files.pythonhosted.org/packages/75/56/05d000de894c4cfcb84bcd6b1df6214297b8089a7bd324c21a4765e49b14/wrapt-1.17.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:e3890b508a23299083e065f435a492b5435eba6e304a7114d2f919d400888cc6", size = 110232, upload-time = "2025-01-14T10:34:55.327Z" }, + { url = "https://files.pythonhosted.org/packages/53/f8/c3f6b2cf9b9277fb0813418e1503e68414cd036b3b099c823379c9575e6d/wrapt-1.17.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:8c8b293cd65ad716d13d8dd3624e42e5a19cc2a2f1acc74b30c2c13f15cb61a6", size = 100476, upload-time = "2025-01-14T10:34:58.055Z" }, + { url = "https://files.pythonhosted.org/packages/a7/b1/0bb11e29aa5139d90b770ebbfa167267b1fc548d2302c30c8f7572851738/wrapt-1.17.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:4c82b8785d98cdd9fed4cac84d765d234ed3251bd6afe34cb7ac523cb93e8b4f", size = 106377, upload-time = "2025-01-14T10:34:59.3Z" }, + { url = "https://files.pythonhosted.org/packages/6a/e1/0122853035b40b3f333bbb25f1939fc1045e21dd518f7f0922b60c156f7c/wrapt-1.17.2-cp313-cp313t-win32.whl", hash = "sha256:13e6afb7fe71fe7485a4550a8844cc9ffbe263c0f1a1eea569bc7091d4898555", size = 37986, upload-time = "2025-01-14T10:35:00.498Z" }, + { url = "https://files.pythonhosted.org/packages/09/5e/1655cf481e079c1f22d0cabdd4e51733679932718dc23bf2db175f329b76/wrapt-1.17.2-cp313-cp313t-win_amd64.whl", hash = "sha256:eaf675418ed6b3b31c7a989fd007fa7c3be66ce14e5c3b27336383604c9da85c", size = 40750, upload-time = "2025-01-14T10:35:03.378Z" }, + { url = "https://files.pythonhosted.org/packages/2d/82/f56956041adef78f849db6b289b282e72b55ab8045a75abad81898c28d19/wrapt-1.17.2-py3-none-any.whl", hash = "sha256:b18f2d1533a71f069c7f82d524a52599053d4c7166e9dd374ae2136b7f40f7c8", size = 23594, upload-time = "2025-01-14T10:35:44.018Z" }, +] + +[[package]] +name = "xmltodict" +version = "0.14.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/50/05/51dcca9a9bf5e1bce52582683ce50980bcadbc4fa5143b9f2b19ab99958f/xmltodict-0.14.2.tar.gz", hash = "sha256:201e7c28bb210e374999d1dde6382923ab0ed1a8a5faeece48ab525b7810a553", size = 51942, upload-time = "2024-10-16T06:10:29.683Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d6/45/fc303eb433e8a2a271739c98e953728422fa61a3c1f36077a49e395c972e/xmltodict-0.14.2-py2.py3-none-any.whl", hash = "sha256:20cc7d723ed729276e808f26fb6b3599f786cbc37e06c65e192ba77c40f20aac", size = 9981, upload-time = "2024-10-16T06:10:27.649Z" }, +] + +[[package]] +name = "yte" +version = "1.8.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "dpath" }, + { name = "plac" }, + { name = "pyyaml" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f3/19/a56a000125ade3e9b4d25122f1725c8fdaf24cc907eb296b80f7991d81f9/yte-1.8.1.tar.gz", hash = "sha256:6eefbdceae56e156ba9881ecb63f3c9217cfe5d5cc6f85fdb061c266a8eff112", size = 7105, upload-time = "2025-06-11T10:15:36.496Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/37/85/6bab533b2eaa21714f312cb9eb758c869dfbed06bc13a4f3bfc3688197d6/yte-1.8.1-py3-none-any.whl", hash = "sha256:4fa0ddfff047984bda0bc521d85cba32a8a7ca4c4cdb16938b6911c049485733", size = 9021, upload-time = "2025-06-11T10:15:35.519Z" }, +] + +[[package]] +name = "zope-event" +version = "5.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "setuptools" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8b/c7/31e6f40282a2c548602c177826df281177caf79efaa101dd14314fb4ee73/zope_event-5.1.tar.gz", hash = "sha256:a153660e0c228124655748e990396b9d8295d6e4f546fa1b34f3319e1c666e7f", size = 18632, upload-time = "2025-06-26T07:14:22.72Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/ed/d8c3f56c1edb0ee9b51461dd08580382e9589850f769b69f0dedccff5215/zope_event-5.1-py3-none-any.whl", hash = "sha256:53de8f0e9f61dc0598141ac591f49b042b6d74784dab49971b9cc91d0f73a7df", size = 6905, upload-time = "2025-06-26T07:14:21.779Z" }, +] + +[[package]] +name = "zope-interface" +version = "7.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "setuptools" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/30/93/9210e7606be57a2dfc6277ac97dcc864fd8d39f142ca194fdc186d596fda/zope.interface-7.2.tar.gz", hash = "sha256:8b49f1a3d1ee4cdaf5b32d2e738362c7f5e40ac8b46dd7d1a65e82a4872728fe", size = 252960, upload-time = "2024-11-28T08:45:39.224Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c6/3b/e309d731712c1a1866d61b5356a069dd44e5b01e394b6cb49848fa2efbff/zope.interface-7.2-cp313-cp313-macosx_10_9_x86_64.whl", hash = "sha256:3e0350b51e88658d5ad126c6a57502b19d5f559f6cb0a628e3dc90442b53dd98", size = 208961, upload-time = "2024-11-28T08:48:29.865Z" }, + { url = "https://files.pythonhosted.org/packages/49/65/78e7cebca6be07c8fc4032bfbb123e500d60efdf7b86727bb8a071992108/zope.interface-7.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:15398c000c094b8855d7d74f4fdc9e73aa02d4d0d5c775acdef98cdb1119768d", size = 209356, upload-time = "2024-11-28T08:48:33.297Z" }, + { url = "https://files.pythonhosted.org/packages/11/b1/627384b745310d082d29e3695db5f5a9188186676912c14b61a78bbc6afe/zope.interface-7.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:802176a9f99bd8cc276dcd3b8512808716492f6f557c11196d42e26c01a69a4c", size = 264196, upload-time = "2024-11-28T09:18:17.584Z" }, + { url = "https://files.pythonhosted.org/packages/b8/f6/54548df6dc73e30ac6c8a7ff1da73ac9007ba38f866397091d5a82237bd3/zope.interface-7.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb23f58a446a7f09db85eda09521a498e109f137b85fb278edb2e34841055398", size = 259237, upload-time = "2024-11-28T08:48:31.71Z" }, + { url = "https://files.pythonhosted.org/packages/b6/66/ac05b741c2129fdf668b85631d2268421c5cd1a9ff99be1674371139d665/zope.interface-7.2-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a71a5b541078d0ebe373a81a3b7e71432c61d12e660f1d67896ca62d9628045b", size = 264696, upload-time = "2024-11-28T08:48:41.161Z" }, + { url = "https://files.pythonhosted.org/packages/0a/2f/1bccc6f4cc882662162a1158cda1a7f616add2ffe322b28c99cb031b4ffc/zope.interface-7.2-cp313-cp313-win_amd64.whl", hash = "sha256:4893395d5dd2ba655c38ceb13014fd65667740f09fa5bb01caa1e6284e48c0cd", size = 212472, upload-time = "2024-11-28T08:49:56.587Z" }, +] diff --git a/web/.gitignore b/web/.gitignore new file mode 100644 index 0000000..4925699 --- /dev/null +++ b/web/.gitignore @@ -0,0 +1,21 @@ +# build output +dist/ +# generated types +.astro/ + +# dependencies +node_modules/ + +# logs +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + + +# environment variables +.env +.env.production + +# public data +public/data \ No newline at end of file diff --git a/web/astro.config.mts b/web/astro.config.mts new file mode 100644 index 0000000..f34facc --- /dev/null +++ b/web/astro.config.mts @@ -0,0 +1,8 @@ +// @ts-check +import { defineConfig } from 'astro/config'; + +// https://astro.build/config +export default defineConfig({ + base: '/spras-benchmarking', + trailingSlash: 'always' +}); diff --git a/web/package.json b/web/package.json new file mode 100644 index 0000000..56c8106 --- /dev/null +++ b/web/package.json @@ -0,0 +1,20 @@ +{ + "name": "", + "type": "module", + "version": "0.0.1", + "scripts": { + "prepare-output": "mkdir -p public/data && cp -r ../output/ public/data", + "dev": "pnpm prepare-output && astro dev", + "build": "pnpm prepare-output && astro build", + "preview": "astro preview", + "astro": "astro" + }, + "dependencies": { + "@fontsource-variable/noto-sans": "^5.2.7", + "astro": "^5.9.4", + "cytoscape": "^3.32.0", + "dayjs": "^1.11.13", + "medium-zoom": "^1.1.0", + "sass": "^1.89.2" + } +} \ No newline at end of file diff --git a/web/pnpm-lock.yaml b/web/pnpm-lock.yaml new file mode 100644 index 0000000..8679594 --- /dev/null +++ b/web/pnpm-lock.yaml @@ -0,0 +1,3371 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + dependencies: + '@fontsource-variable/noto-sans': + specifier: ^5.2.7 + version: 5.2.7 + astro: + specifier: ^5.9.4 + version: 5.9.4(@types/node@24.0.3)(rollup@4.43.0)(sass@1.89.2)(typescript@5.8.3) + cytoscape: + specifier: ^3.32.0 + version: 3.32.0 + dayjs: + specifier: ^1.11.13 + version: 1.11.13 + medium-zoom: + specifier: ^1.1.0 + version: 1.1.0 + sass: + specifier: ^1.89.2 + version: 1.89.2 + +packages: + + '@astrojs/compiler@2.12.2': + resolution: {integrity: sha512-w2zfvhjNCkNMmMMOn5b0J8+OmUaBL1o40ipMvqcG6NRpdC+lKxmTi48DT8Xw0SzJ3AfmeFLB45zXZXtmbsjcgw==} + + '@astrojs/internal-helpers@0.6.1': + resolution: {integrity: sha512-l5Pqf6uZu31aG+3Lv8nl/3s4DbUzdlxTWDof4pEpto6GUJNhhCbelVi9dEyurOVyqaelwmS9oSyOWOENSfgo9A==} + + '@astrojs/markdown-remark@6.3.2': + resolution: {integrity: sha512-bO35JbWpVvyKRl7cmSJD822e8YA8ThR/YbUsciWNA7yTcqpIAL2hJDToWP5KcZBWxGT6IOdOkHSXARSNZc4l/Q==} + + '@astrojs/prism@3.3.0': + resolution: {integrity: sha512-q8VwfU/fDZNoDOf+r7jUnMC2//H2l0TuQ6FkGJL8vD8nw/q5KiL3DS1KKBI3QhI9UQhpJ5dc7AtqfbXWuOgLCQ==} + engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0} + + '@astrojs/telemetry@3.3.0': + resolution: {integrity: sha512-UFBgfeldP06qu6khs/yY+q1cDAaArM2/7AEIqQ9Cuvf7B1hNLq0xDrZkct+QoIGyjq56y8IaE2I3CTvG99mlhQ==} + engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0} + + '@babel/helper-string-parser@7.27.1': + resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-identifier@7.27.1': + resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} + engines: {node: '>=6.9.0'} + + '@babel/parser@7.27.5': + resolution: {integrity: sha512-OsQd175SxWkGlzbny8J3K8TnnDD0N3lrIUtB92xwyRpzaenGZhxDvxN/JgU00U3CDZNj9tPuDJ5H0WS4Nt3vKg==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/types@7.27.6': + resolution: {integrity: sha512-ETyHEk2VHHvl9b9jZP5IHPavHYk57EhanlRRuae9XCpb/j5bDCbPPMOBfCWhnl/7EDJz0jEMCi/RhccCE8r1+Q==} + engines: {node: '>=6.9.0'} + + '@capsizecss/unpack@2.4.0': + resolution: {integrity: sha512-GrSU71meACqcmIUxPYOJvGKF0yryjN/L1aCuE9DViCTJI7bfkjgYDPD1zbNDcINJwSSP6UaBZY9GAbYDO7re0Q==} + + '@emnapi/runtime@1.4.3': + resolution: {integrity: sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==} + + '@esbuild/aix-ppc64@0.25.5': + resolution: {integrity: sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + + '@esbuild/android-arm64@0.25.5': + resolution: {integrity: sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm@0.25.5': + resolution: {integrity: sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.25.5': + resolution: {integrity: sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.25.5': + resolution: {integrity: sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.25.5': + resolution: {integrity: sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.25.5': + resolution: {integrity: sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.25.5': + resolution: {integrity: sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.25.5': + resolution: {integrity: sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.25.5': + resolution: {integrity: sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.25.5': + resolution: {integrity: sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.25.5': + resolution: {integrity: sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.25.5': + resolution: {integrity: sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.25.5': + resolution: {integrity: sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.25.5': + resolution: {integrity: sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.25.5': + resolution: {integrity: sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.25.5': + resolution: {integrity: sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-arm64@0.25.5': + resolution: {integrity: sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.25.5': + resolution: {integrity: sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-arm64@0.25.5': + resolution: {integrity: sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.25.5': + resolution: {integrity: sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + + '@esbuild/sunos-x64@0.25.5': + resolution: {integrity: sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.25.5': + resolution: {integrity: sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.25.5': + resolution: {integrity: sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.25.5': + resolution: {integrity: sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g==} + engines: {node: '>=18'} + cpu: [x64] + os: [win32] + + '@fontsource-variable/noto-sans@5.2.7': + resolution: {integrity: sha512-VaA+clV7xTOx+pSOdyjr9nR7khjrJGr7ZHs2KXlx+AqLyG/SUVBadNwauCH0rvF/eZkZr67neNxdKMOLtVxweg==} + + '@img/sharp-darwin-arm64@0.33.5': + resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [darwin] + + '@img/sharp-darwin-x64@0.33.5': + resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [darwin] + + '@img/sharp-libvips-darwin-arm64@1.0.4': + resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==} + cpu: [arm64] + os: [darwin] + + '@img/sharp-libvips-darwin-x64@1.0.4': + resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==} + cpu: [x64] + os: [darwin] + + '@img/sharp-libvips-linux-arm64@1.0.4': + resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==} + cpu: [arm64] + os: [linux] + + '@img/sharp-libvips-linux-arm@1.0.5': + resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==} + cpu: [arm] + os: [linux] + + '@img/sharp-libvips-linux-s390x@1.0.4': + resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==} + cpu: [s390x] + os: [linux] + + '@img/sharp-libvips-linux-x64@1.0.4': + resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==} + cpu: [x64] + os: [linux] + + '@img/sharp-libvips-linuxmusl-arm64@1.0.4': + resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==} + cpu: [arm64] + os: [linux] + + '@img/sharp-libvips-linuxmusl-x64@1.0.4': + resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==} + cpu: [x64] + os: [linux] + + '@img/sharp-linux-arm64@0.33.5': + resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [linux] + + '@img/sharp-linux-arm@0.33.5': + resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm] + os: [linux] + + '@img/sharp-linux-s390x@0.33.5': + resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [s390x] + os: [linux] + + '@img/sharp-linux-x64@0.33.5': + resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [linux] + + '@img/sharp-linuxmusl-arm64@0.33.5': + resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [linux] + + '@img/sharp-linuxmusl-x64@0.33.5': + resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [linux] + + '@img/sharp-wasm32@0.33.5': + resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [wasm32] + + '@img/sharp-win32-ia32@0.33.5': + resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [ia32] + os: [win32] + + '@img/sharp-win32-x64@0.33.5': + resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [win32] + + '@jridgewell/sourcemap-codec@1.5.0': + resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + + '@oslojs/encoding@1.1.0': + resolution: {integrity: sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==} + + '@parcel/watcher-android-arm64@2.5.1': + resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [android] + + '@parcel/watcher-darwin-arm64@2.5.1': + resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [darwin] + + '@parcel/watcher-darwin-x64@2.5.1': + resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [darwin] + + '@parcel/watcher-freebsd-x64@2.5.1': + resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [freebsd] + + '@parcel/watcher-linux-arm-glibc@2.5.1': + resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==} + engines: {node: '>= 10.0.0'} + cpu: [arm] + os: [linux] + + '@parcel/watcher-linux-arm-musl@2.5.1': + resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==} + engines: {node: '>= 10.0.0'} + cpu: [arm] + os: [linux] + + '@parcel/watcher-linux-arm64-glibc@2.5.1': + resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [linux] + + '@parcel/watcher-linux-arm64-musl@2.5.1': + resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [linux] + + '@parcel/watcher-linux-x64-glibc@2.5.1': + resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [linux] + + '@parcel/watcher-linux-x64-musl@2.5.1': + resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [linux] + + '@parcel/watcher-win32-arm64@2.5.1': + resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [win32] + + '@parcel/watcher-win32-ia32@2.5.1': + resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==} + engines: {node: '>= 10.0.0'} + cpu: [ia32] + os: [win32] + + '@parcel/watcher-win32-x64@2.5.1': + resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [win32] + + '@parcel/watcher@2.5.1': + resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==} + engines: {node: '>= 10.0.0'} + + '@rollup/pluginutils@5.2.0': + resolution: {integrity: sha512-qWJ2ZTbmumwiLFomfzTyt5Kng4hwPi9rwCYN4SHb6eaRU1KNO4ccxINHr/VhH4GgPlt1XfSTLX2LBTme8ne4Zw==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/rollup-android-arm-eabi@4.43.0': + resolution: {integrity: sha512-Krjy9awJl6rKbruhQDgivNbD1WuLb8xAclM4IR4cN5pHGAs2oIMMQJEiC3IC/9TZJ+QZkmZhlMO/6MBGxPidpw==} + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm64@4.43.0': + resolution: {integrity: sha512-ss4YJwRt5I63454Rpj+mXCXicakdFmKnUNxr1dLK+5rv5FJgAxnN7s31a5VchRYxCFWdmnDWKd0wbAdTr0J5EA==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-darwin-arm64@4.43.0': + resolution: {integrity: sha512-eKoL8ykZ7zz8MjgBenEF2OoTNFAPFz1/lyJ5UmmFSz5jW+7XbH1+MAgCVHy72aG59rbuQLcJeiMrP8qP5d/N0A==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.43.0': + resolution: {integrity: sha512-SYwXJgaBYW33Wi/q4ubN+ldWC4DzQY62S4Ll2dgfr/dbPoF50dlQwEaEHSKrQdSjC6oIe1WgzosoaNoHCdNuMg==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-freebsd-arm64@4.43.0': + resolution: {integrity: sha512-SV+U5sSo0yujrjzBF7/YidieK2iF6E7MdF6EbYxNz94lA+R0wKl3SiixGyG/9Klab6uNBIqsN7j4Y/Fya7wAjQ==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.43.0': + resolution: {integrity: sha512-J7uCsiV13L/VOeHJBo5SjasKiGxJ0g+nQTrBkAsmQBIdil3KhPnSE9GnRon4ejX1XDdsmK/l30IYLiAaQEO0Cg==} + cpu: [x64] + os: [freebsd] + + '@rollup/rollup-linux-arm-gnueabihf@4.43.0': + resolution: {integrity: sha512-gTJ/JnnjCMc15uwB10TTATBEhK9meBIY+gXP4s0sHD1zHOaIh4Dmy1X9wup18IiY9tTNk5gJc4yx9ctj/fjrIw==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm-musleabihf@4.43.0': + resolution: {integrity: sha512-ZJ3gZynL1LDSIvRfz0qXtTNs56n5DI2Mq+WACWZ7yGHFUEirHBRt7fyIk0NsCKhmRhn7WAcjgSkSVVxKlPNFFw==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.43.0': + resolution: {integrity: sha512-8FnkipasmOOSSlfucGYEu58U8cxEdhziKjPD2FIa0ONVMxvl/hmONtX/7y4vGjdUhjcTHlKlDhw3H9t98fPvyA==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-musl@4.43.0': + resolution: {integrity: sha512-KPPyAdlcIZ6S9C3S2cndXDkV0Bb1OSMsX0Eelr2Bay4EsF9yi9u9uzc9RniK3mcUGCLhWY9oLr6er80P5DE6XA==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-loongarch64-gnu@4.43.0': + resolution: {integrity: sha512-HPGDIH0/ZzAZjvtlXj6g+KDQ9ZMHfSP553za7o2Odegb/BEfwJcR0Sw0RLNpQ9nC6Gy8s+3mSS9xjZ0n3rhcYg==} + cpu: [loong64] + os: [linux] + + '@rollup/rollup-linux-powerpc64le-gnu@4.43.0': + resolution: {integrity: sha512-gEmwbOws4U4GLAJDhhtSPWPXUzDfMRedT3hFMyRAvM9Mrnj+dJIFIeL7otsv2WF3D7GrV0GIewW0y28dOYWkmw==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.43.0': + resolution: {integrity: sha512-XXKvo2e+wFtXZF/9xoWohHg+MuRnvO29TI5Hqe9xwN5uN8NKUYy7tXUG3EZAlfchufNCTHNGjEx7uN78KsBo0g==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-riscv64-musl@4.43.0': + resolution: {integrity: sha512-ruf3hPWhjw6uDFsOAzmbNIvlXFXlBQ4nk57Sec8E8rUxs/AI4HD6xmiiasOOx/3QxS2f5eQMKTAwk7KHwpzr/Q==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.43.0': + resolution: {integrity: sha512-QmNIAqDiEMEvFV15rsSnjoSmO0+eJLoKRD9EAa9rrYNwO/XRCtOGM3A5A0X+wmG+XRrw9Fxdsw+LnyYiZWWcVw==} + cpu: [s390x] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.43.0': + resolution: {integrity: sha512-jAHr/S0iiBtFyzjhOkAics/2SrXE092qyqEg96e90L3t9Op8OTzS6+IX0Fy5wCt2+KqeHAkti+eitV0wvblEoQ==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-musl@4.43.0': + resolution: {integrity: sha512-3yATWgdeXyuHtBhrLt98w+5fKurdqvs8B53LaoKD7P7H7FKOONLsBVMNl9ghPQZQuYcceV5CDyPfyfGpMWD9mQ==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-win32-arm64-msvc@4.43.0': + resolution: {integrity: sha512-wVzXp2qDSCOpcBCT5WRWLmpJRIzv23valvcTwMHEobkjippNf+C3ys/+wf07poPkeNix0paTNemB2XrHr2TnGw==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.43.0': + resolution: {integrity: sha512-fYCTEyzf8d+7diCw8b+asvWDCLMjsCEA8alvtAutqJOJp/wL5hs1rWSqJ1vkjgW0L2NB4bsYJrpKkiIPRR9dvw==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.43.0': + resolution: {integrity: sha512-SnGhLiE5rlK0ofq8kzuDkM0g7FN1s5VYY+YSMTibP7CqShxCQvqtNxTARS4xX4PFJfHjG0ZQYX9iGzI3FQh5Aw==} + cpu: [x64] + os: [win32] + + '@shikijs/core@3.6.0': + resolution: {integrity: sha512-9By7Xb3olEX0o6UeJyPLI1PE1scC4d3wcVepvtv2xbuN9/IThYN4Wcwh24rcFeASzPam11MCq8yQpwwzCgSBRw==} + + '@shikijs/engine-javascript@3.6.0': + resolution: {integrity: sha512-7YnLhZG/TU05IHMG14QaLvTW/9WiK8SEYafceccHUSXs2Qr5vJibUwsDfXDLmRi0zHdzsxrGKpSX6hnqe0k8nA==} + + '@shikijs/engine-oniguruma@3.6.0': + resolution: {integrity: sha512-nmOhIZ9yT3Grd+2plmW/d8+vZ2pcQmo/UnVwXMUXAKTXdi+LK0S08Ancrz5tQQPkxvjBalpMW2aKvwXfelauvA==} + + '@shikijs/langs@3.6.0': + resolution: {integrity: sha512-IdZkQJaLBu1LCYCwkr30hNuSDfllOT8RWYVZK1tD2J03DkiagYKRxj/pDSl8Didml3xxuyzUjgtioInwEQM/TA==} + + '@shikijs/themes@3.6.0': + resolution: {integrity: sha512-Fq2j4nWr1DF4drvmhqKq8x5vVQ27VncF8XZMBuHuQMZvUSS3NBgpqfwz/FoGe36+W6PvniZ1yDlg2d4kmYDU6w==} + + '@shikijs/types@3.6.0': + resolution: {integrity: sha512-cLWFiToxYu0aAzJqhXTQsFiJRTFDAGl93IrMSBNaGSzs7ixkLfdG6pH11HipuWFGW5vyx4X47W8HDQ7eSrmBUg==} + + '@shikijs/vscode-textmate@10.0.2': + resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==} + + '@swc/helpers@0.5.17': + resolution: {integrity: sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==} + + '@types/debug@4.1.12': + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + + '@types/estree@1.0.7': + resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==} + + '@types/estree@1.0.8': + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} + + '@types/fontkit@2.0.8': + resolution: {integrity: sha512-wN+8bYxIpJf+5oZdrdtaX04qUuWHcKxcDEgRS9Qm9ZClSHjzEn13SxUC+5eRM+4yXIeTYk8mTzLAWGF64847ew==} + + '@types/hast@3.0.4': + resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} + + '@types/mdast@4.0.4': + resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} + + '@types/ms@2.1.0': + resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} + + '@types/nlcst@2.0.3': + resolution: {integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==} + + '@types/node@24.0.3': + resolution: {integrity: sha512-R4I/kzCYAdRLzfiCabn9hxWfbuHS573x+r0dJMkkzThEa7pbrcDWK+9zu3e7aBOouf+rQAciqPFMnxwr0aWgKg==} + + '@types/unist@3.0.3': + resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} + + '@ungap/structured-clone@1.3.0': + resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} + + acorn@8.15.0: + resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} + engines: {node: '>=0.4.0'} + hasBin: true + + ansi-align@3.0.1: + resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-regex@6.1.0: + resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} + engines: {node: '>=12'} + + ansi-styles@6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} + + anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + aria-query@5.3.2: + resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} + engines: {node: '>= 0.4'} + + array-iterate@2.0.1: + resolution: {integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==} + + astro@5.9.4: + resolution: {integrity: sha512-AEulm16C9IijMYrFb3VIFx9z17p/wfDSHUHdbbvSEX+rBca64xV+f67tnsql3s4CE8u2cwYpdX+5yH7l53W4iA==} + engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'} + hasBin: true + + axobject-query@4.1.0: + resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} + engines: {node: '>= 0.4'} + + bail@2.0.2: + resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} + + base-64@1.0.0: + resolution: {integrity: sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==} + + base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + + blob-to-buffer@1.2.9: + resolution: {integrity: sha512-BF033y5fN6OCofD3vgHmNtwZWRcq9NLyyxyILx9hfMy1sXYy4ojFl765hJ2lP0YaN2fuxPaLO2Vzzoxy0FLFFA==} + + boxen@8.0.1: + resolution: {integrity: sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==} + engines: {node: '>=18'} + + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} + + brotli@1.3.3: + resolution: {integrity: sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==} + + camelcase@8.0.0: + resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==} + engines: {node: '>=16'} + + ccount@2.0.1: + resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} + + chalk@5.4.1: + resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + + character-entities-html4@2.1.0: + resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} + + character-entities-legacy@3.0.0: + resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} + + character-entities@2.0.2: + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} + + chokidar@4.0.3: + resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} + engines: {node: '>= 14.16.0'} + + ci-info@4.2.0: + resolution: {integrity: sha512-cYY9mypksY8NRqgDB1XD1RiJL338v/551niynFTGkZOO2LHuB2OmOYxDIe/ttN9AHwrqdum1360G3ald0W9kCg==} + engines: {node: '>=8'} + + cli-boxes@3.0.0: + resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} + engines: {node: '>=10'} + + clone@2.1.2: + resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} + engines: {node: '>=0.8'} + + clsx@2.1.1: + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} + engines: {node: '>=6'} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + color-string@1.9.1: + resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} + + color@4.2.3: + resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} + engines: {node: '>=12.5.0'} + + comma-separated-tokens@2.0.3: + resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} + + common-ancestor-path@1.0.1: + resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} + + cookie-es@1.2.2: + resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==} + + cookie@1.0.2: + resolution: {integrity: sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==} + engines: {node: '>=18'} + + cross-fetch@3.2.0: + resolution: {integrity: sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==} + + crossws@0.3.5: + resolution: {integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==} + + css-tree@3.1.0: + resolution: {integrity: sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + + cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + + cytoscape@3.32.0: + resolution: {integrity: sha512-5JHBC9n75kz5851jeklCPmZWcg3hUe6sjqJvyk3+hVqFaKcHwHgxsjeN1yLmggoUc6STbtm9/NQyabQehfjvWQ==} + engines: {node: '>=0.10'} + + dayjs@1.11.13: + resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==} + + debug@4.4.1: + resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + decode-named-character-reference@1.2.0: + resolution: {integrity: sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==} + + defu@6.1.4: + resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} + + dequal@2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} + + destr@2.0.5: + resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==} + + detect-libc@1.0.3: + resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==} + engines: {node: '>=0.10'} + hasBin: true + + detect-libc@2.0.4: + resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==} + engines: {node: '>=8'} + + deterministic-object-hash@2.0.2: + resolution: {integrity: sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==} + engines: {node: '>=18'} + + devalue@5.1.1: + resolution: {integrity: sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==} + + devlop@1.1.0: + resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} + + dfa@1.2.0: + resolution: {integrity: sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==} + + diff@5.2.0: + resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==} + engines: {node: '>=0.3.1'} + + dlv@1.1.3: + resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} + + dset@3.1.4: + resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==} + engines: {node: '>=4'} + + emoji-regex@10.4.0: + resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==} + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + entities@6.0.1: + resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==} + engines: {node: '>=0.12'} + + es-module-lexer@1.7.0: + resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} + + esbuild@0.25.5: + resolution: {integrity: sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==} + engines: {node: '>=18'} + hasBin: true + + escape-string-regexp@5.0.0: + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} + engines: {node: '>=12'} + + estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + + estree-walker@3.0.3: + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} + + eventemitter3@5.0.1: + resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} + + extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + + fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + + fdir@6.4.6: + resolution: {integrity: sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + + flattie@1.1.1: + resolution: {integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==} + engines: {node: '>=8'} + + fontace@0.3.0: + resolution: {integrity: sha512-czoqATrcnxgWb/nAkfyIrRp6Q8biYj7nGnL6zfhTcX+JKKpWHFBnb8uNMw/kZr7u++3Y3wYSYoZgHkCcsuBpBg==} + + fontkit@2.0.4: + resolution: {integrity: sha512-syetQadaUEDNdxdugga9CpEYVaQIxOwk7GlwZWWZ19//qW4zE5bknOKeMBDYAASwnpaSHKJITRLMF9m1fp3s6g==} + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + get-east-asian-width@1.3.0: + resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==} + engines: {node: '>=18'} + + github-slugger@2.0.0: + resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} + + h3@1.15.3: + resolution: {integrity: sha512-z6GknHqyX0h9aQaTx22VZDf6QyZn+0Nh+Ym8O/u0SGSkyF5cuTJYKlc8MkzW3Nzf9LE1ivcpmYC3FUGpywhuUQ==} + + hast-util-from-html@2.0.3: + resolution: {integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==} + + hast-util-from-parse5@8.0.3: + resolution: {integrity: sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==} + + hast-util-is-element@3.0.0: + resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==} + + hast-util-parse-selector@4.0.0: + resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} + + hast-util-raw@9.1.0: + resolution: {integrity: sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==} + + hast-util-to-html@9.0.5: + resolution: {integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==} + + hast-util-to-parse5@8.0.0: + resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==} + + hast-util-to-text@4.0.2: + resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==} + + hast-util-whitespace@3.0.0: + resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} + + hastscript@9.0.1: + resolution: {integrity: sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==} + + html-escaper@3.0.3: + resolution: {integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==} + + html-void-elements@3.0.0: + resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} + + http-cache-semantics@4.2.0: + resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==} + + immutable@5.1.3: + resolution: {integrity: sha512-+chQdDfvscSF1SJqv2gn4SRO2ZyS3xL3r7IW/wWEEzrzLisnOlKiQu5ytC/BVNcS15C39WT2Hg/bjKjDMcu+zg==} + + import-meta-resolve@4.1.0: + resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} + + iron-webcrypto@1.2.1: + resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==} + + is-arrayish@0.3.2: + resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} + + is-docker@3.0.0: + resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + hasBin: true + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-inside-container@1.0.0: + resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} + engines: {node: '>=14.16'} + hasBin: true + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-plain-obj@4.1.0: + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} + engines: {node: '>=12'} + + is-wsl@3.1.0: + resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} + engines: {node: '>=16'} + + js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + + kleur@3.0.3: + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} + engines: {node: '>=6'} + + kleur@4.1.5: + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} + engines: {node: '>=6'} + + longest-streak@3.1.0: + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} + + lru-cache@10.4.3: + resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + + magic-string@0.30.17: + resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} + + magicast@0.3.5: + resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==} + + markdown-table@3.0.4: + resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} + + mdast-util-definitions@6.0.0: + resolution: {integrity: sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==} + + mdast-util-find-and-replace@3.0.2: + resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==} + + mdast-util-from-markdown@2.0.2: + resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==} + + mdast-util-gfm-autolink-literal@2.0.1: + resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} + + mdast-util-gfm-footnote@2.1.0: + resolution: {integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==} + + mdast-util-gfm-strikethrough@2.0.0: + resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} + + mdast-util-gfm-table@2.0.0: + resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} + + mdast-util-gfm-task-list-item@2.0.0: + resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} + + mdast-util-gfm@3.1.0: + resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==} + + mdast-util-phrasing@4.1.0: + resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} + + mdast-util-to-hast@13.2.0: + resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} + + mdast-util-to-markdown@2.1.2: + resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} + + mdast-util-to-string@4.0.0: + resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} + + mdn-data@2.12.2: + resolution: {integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==} + + medium-zoom@1.1.0: + resolution: {integrity: sha512-ewyDsp7k4InCUp3jRmwHBRFGyjBimKps/AJLjRSox+2q/2H4p/PNpQf+pwONWlJiOudkBXtbdmVbFjqyybfTmQ==} + + micromark-core-commonmark@2.0.3: + resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==} + + micromark-extension-gfm-autolink-literal@2.1.0: + resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} + + micromark-extension-gfm-footnote@2.1.0: + resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} + + micromark-extension-gfm-strikethrough@2.1.0: + resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} + + micromark-extension-gfm-table@2.1.1: + resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==} + + micromark-extension-gfm-tagfilter@2.0.0: + resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} + + micromark-extension-gfm-task-list-item@2.1.0: + resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} + + micromark-extension-gfm@3.0.0: + resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} + + micromark-factory-destination@2.0.1: + resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} + + micromark-factory-label@2.0.1: + resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} + + micromark-factory-space@2.0.1: + resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} + + micromark-factory-title@2.0.1: + resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} + + micromark-factory-whitespace@2.0.1: + resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} + + micromark-util-character@2.1.1: + resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} + + micromark-util-chunked@2.0.1: + resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} + + micromark-util-classify-character@2.0.1: + resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} + + micromark-util-combine-extensions@2.0.1: + resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} + + micromark-util-decode-numeric-character-reference@2.0.2: + resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} + + micromark-util-decode-string@2.0.1: + resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} + + micromark-util-encode@2.0.1: + resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} + + micromark-util-html-tag-name@2.0.1: + resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} + + micromark-util-normalize-identifier@2.0.1: + resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} + + micromark-util-resolve-all@2.0.1: + resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} + + micromark-util-sanitize-uri@2.0.1: + resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} + + micromark-util-subtokenize@2.1.0: + resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==} + + micromark-util-symbol@2.0.1: + resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} + + micromark-util-types@2.0.2: + resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==} + + micromark@4.0.2: + resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==} + + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} + + mrmime@2.0.1: + resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==} + engines: {node: '>=10'} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + nanoid@3.3.11: + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + neotraverse@0.6.18: + resolution: {integrity: sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==} + engines: {node: '>= 10'} + + nlcst-to-string@4.0.0: + resolution: {integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==} + + node-addon-api@7.1.1: + resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==} + + node-fetch-native@1.6.6: + resolution: {integrity: sha512-8Mc2HhqPdlIfedsuZoc3yioPuzp6b+L5jRCRY1QzuWZh2EGJVQrGppC6V6cF0bLdbW0+O2YpqCA25aF/1lvipQ==} + + node-fetch@2.7.0: + resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} + engines: {node: 4.x || >=6.0.0} + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + + node-mock-http@1.0.0: + resolution: {integrity: sha512-0uGYQ1WQL1M5kKvGRXWQ3uZCHtLTO8hln3oBjIusM75WoesZ909uQJs/Hb946i2SS+Gsrhkaa6iAO17jRIv6DQ==} + + normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + + ofetch@1.4.1: + resolution: {integrity: sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==} + + ohash@2.0.11: + resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==} + + oniguruma-parser@0.12.1: + resolution: {integrity: sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==} + + oniguruma-to-es@4.3.3: + resolution: {integrity: sha512-rPiZhzC3wXwE59YQMRDodUwwT9FZ9nNBwQQfsd1wfdtlKEyCdRV0avrTcSZ5xlIvGRVPd/cx6ZN45ECmS39xvg==} + + p-limit@6.2.0: + resolution: {integrity: sha512-kuUqqHNUqoIWp/c467RI4X6mmyuojY5jGutNU0wVTmEOOfcuwLqyMVoAi9MKi2Ak+5i9+nhmrK4ufZE8069kHA==} + engines: {node: '>=18'} + + p-queue@8.1.0: + resolution: {integrity: sha512-mxLDbbGIBEXTJL0zEx8JIylaj3xQ7Z/7eEVjcF9fJX4DBiH9oqe+oahYnlKKxm0Ci9TlWTyhSHgygxMxjIB2jw==} + engines: {node: '>=18'} + + p-timeout@6.1.4: + resolution: {integrity: sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==} + engines: {node: '>=14.16'} + + package-manager-detector@1.3.0: + resolution: {integrity: sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ==} + + pako@0.2.9: + resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} + + parse-latin@7.0.0: + resolution: {integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==} + + parse5@7.3.0: + resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==} + + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + picomatch@4.0.2: + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} + engines: {node: '>=12'} + + postcss@8.5.6: + resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} + engines: {node: ^10 || ^12 || >=14} + + prismjs@1.30.0: + resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==} + engines: {node: '>=6'} + + prompts@2.4.2: + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} + engines: {node: '>= 6'} + + property-information@6.5.0: + resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} + + property-information@7.1.0: + resolution: {integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==} + + radix3@1.1.2: + resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==} + + readdirp@4.1.2: + resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==} + engines: {node: '>= 14.18.0'} + + regex-recursion@6.0.2: + resolution: {integrity: sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==} + + regex-utilities@2.3.0: + resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==} + + regex@6.0.1: + resolution: {integrity: sha512-uorlqlzAKjKQZ5P+kTJr3eeJGSVroLKoHmquUj4zHWuR+hEyNqlXsSKlYYF5F4NI6nl7tWCs0apKJ0lmfsXAPA==} + + rehype-parse@9.0.1: + resolution: {integrity: sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==} + + rehype-raw@7.0.0: + resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==} + + rehype-stringify@10.0.1: + resolution: {integrity: sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==} + + rehype@13.0.2: + resolution: {integrity: sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==} + + remark-gfm@4.0.1: + resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==} + + remark-parse@11.0.0: + resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} + + remark-rehype@11.1.2: + resolution: {integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==} + + remark-smartypants@3.0.2: + resolution: {integrity: sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==} + engines: {node: '>=16.0.0'} + + remark-stringify@11.0.0: + resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} + + restructure@3.0.2: + resolution: {integrity: sha512-gSfoiOEA0VPE6Tukkrr7I0RBdE0s7H1eFCDBk05l1KIQT1UIKNc5JZy6jdyW6eYH3aR3g5b3PuL77rq0hvwtAw==} + + retext-latin@4.0.0: + resolution: {integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==} + + retext-smartypants@6.2.0: + resolution: {integrity: sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==} + + retext-stringify@4.0.0: + resolution: {integrity: sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==} + + retext@9.0.0: + resolution: {integrity: sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==} + + rollup@4.43.0: + resolution: {integrity: sha512-wdN2Kd3Twh8MAEOEJZsuxuLKCsBEo4PVNLK6tQWAn10VhsVewQLzcucMgLolRlhFybGxfclbPeEYBaP6RvUFGg==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + sass@1.89.2: + resolution: {integrity: sha512-xCmtksBKd/jdJ9Bt9p7nPKiuqrlBMBuuGkQlkhZjjQk3Ty48lv93k5Dq6OPkKt4XwxDJ7tvlfrTa1MPA9bf+QA==} + engines: {node: '>=14.0.0'} + hasBin: true + + semver@7.7.2: + resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} + engines: {node: '>=10'} + hasBin: true + + sharp@0.33.5: + resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + + shiki@3.6.0: + resolution: {integrity: sha512-tKn/Y0MGBTffQoklaATXmTqDU02zx8NYBGQ+F6gy87/YjKbizcLd+Cybh/0ZtOBX9r1NEnAy/GTRDKtOsc1L9w==} + + simple-swizzle@0.2.2: + resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} + + sisteransi@1.0.5: + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + + smol-toml@1.3.4: + resolution: {integrity: sha512-UOPtVuYkzYGee0Bd2Szz8d2G3RfMfJ2t3qVdZUAozZyAk+a0Sxa+QKix0YCwjL/A1RR0ar44nCxaoN9FxdJGwA==} + engines: {node: '>= 18'} + + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + + space-separated-tokens@2.0.2: + resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + string-width@7.2.0: + resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} + engines: {node: '>=18'} + + stringify-entities@4.0.4: + resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} + + tiny-inflate@1.0.3: + resolution: {integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==} + + tinyexec@0.3.2: + resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} + + tinyglobby@0.2.14: + resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==} + engines: {node: '>=12.0.0'} + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + tr46@0.0.3: + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + + trim-lines@3.0.1: + resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} + + trough@2.2.0: + resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} + + tsconfck@3.1.6: + resolution: {integrity: sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==} + engines: {node: ^18 || >=20} + hasBin: true + peerDependencies: + typescript: ^5.0.0 + peerDependenciesMeta: + typescript: + optional: true + + tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + + type-fest@4.41.0: + resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==} + engines: {node: '>=16'} + + typescript@5.8.3: + resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==} + engines: {node: '>=14.17'} + hasBin: true + + ufo@1.6.1: + resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==} + + ultrahtml@1.6.0: + resolution: {integrity: sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==} + + uncrypto@0.1.3: + resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==} + + undici-types@7.8.0: + resolution: {integrity: sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw==} + + unicode-properties@1.4.1: + resolution: {integrity: sha512-CLjCCLQ6UuMxWnbIylkisbRj31qxHPAurvena/0iwSVbQ2G1VY5/HjV0IRabOEbDHlzZlRdCrD4NhB0JtU40Pg==} + + unicode-trie@2.0.0: + resolution: {integrity: sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==} + + unified@11.0.5: + resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} + + unifont@0.5.0: + resolution: {integrity: sha512-4DueXMP5Hy4n607sh+vJ+rajoLu778aU3GzqeTCqsD/EaUcvqZT9wPC8kgK6Vjh22ZskrxyRCR71FwNOaYn6jA==} + + unist-util-find-after@5.0.0: + resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==} + + unist-util-is@6.0.0: + resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} + + unist-util-modify-children@4.0.0: + resolution: {integrity: sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==} + + unist-util-position@5.0.0: + resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} + + unist-util-remove-position@5.0.0: + resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} + + unist-util-stringify-position@4.0.0: + resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} + + unist-util-visit-children@3.0.0: + resolution: {integrity: sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==} + + unist-util-visit-parents@6.0.1: + resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} + + unist-util-visit@5.0.0: + resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} + + unstorage@1.16.0: + resolution: {integrity: sha512-WQ37/H5A7LcRPWfYOrDa1Ys02xAbpPJq6q5GkO88FBXVSQzHd7+BjEwfRqyaSWCv9MbsJy058GWjjPjcJ16GGA==} + peerDependencies: + '@azure/app-configuration': ^1.8.0 + '@azure/cosmos': ^4.2.0 + '@azure/data-tables': ^13.3.0 + '@azure/identity': ^4.6.0 + '@azure/keyvault-secrets': ^4.9.0 + '@azure/storage-blob': ^12.26.0 + '@capacitor/preferences': ^6.0.3 || ^7.0.0 + '@deno/kv': '>=0.9.0' + '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0 + '@planetscale/database': ^1.19.0 + '@upstash/redis': ^1.34.3 + '@vercel/blob': '>=0.27.1' + '@vercel/kv': ^1.0.1 + aws4fetch: ^1.0.20 + db0: '>=0.2.1' + idb-keyval: ^6.2.1 + ioredis: ^5.4.2 + uploadthing: ^7.4.4 + peerDependenciesMeta: + '@azure/app-configuration': + optional: true + '@azure/cosmos': + optional: true + '@azure/data-tables': + optional: true + '@azure/identity': + optional: true + '@azure/keyvault-secrets': + optional: true + '@azure/storage-blob': + optional: true + '@capacitor/preferences': + optional: true + '@deno/kv': + optional: true + '@netlify/blobs': + optional: true + '@planetscale/database': + optional: true + '@upstash/redis': + optional: true + '@vercel/blob': + optional: true + '@vercel/kv': + optional: true + aws4fetch: + optional: true + db0: + optional: true + idb-keyval: + optional: true + ioredis: + optional: true + uploadthing: + optional: true + + vfile-location@5.0.3: + resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==} + + vfile-message@4.0.2: + resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} + + vfile@6.0.3: + resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} + + vite@6.3.5: + resolution: {integrity: sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} + hasBin: true + peerDependencies: + '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 + jiti: '>=1.21.0' + less: '*' + lightningcss: ^1.21.0 + sass: '*' + sass-embedded: '*' + stylus: '*' + sugarss: '*' + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + '@types/node': + optional: true + jiti: + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + + vitefu@1.0.6: + resolution: {integrity: sha512-+Rex1GlappUyNN6UfwbVZne/9cYC4+R2XDk9xkNXBKMw6HQagdX9PgZ8V2v1WUSK1wfBLp7qbI1+XSNIlB1xmA==} + peerDependencies: + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 + peerDependenciesMeta: + vite: + optional: true + + web-namespaces@2.0.1: + resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} + + webidl-conversions@3.0.1: + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + + whatwg-url@5.0.0: + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + + which-pm-runs@1.1.0: + resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==} + engines: {node: '>=4'} + + widest-line@5.0.0: + resolution: {integrity: sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==} + engines: {node: '>=18'} + + wrap-ansi@9.0.0: + resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==} + engines: {node: '>=18'} + + xxhash-wasm@1.1.0: + resolution: {integrity: sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==} + + yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + + yocto-queue@1.2.1: + resolution: {integrity: sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==} + engines: {node: '>=12.20'} + + yocto-spinner@0.2.3: + resolution: {integrity: sha512-sqBChb33loEnkoXte1bLg45bEBsOP9N1kzQh5JZNKj/0rik4zAPTNSAVPj3uQAdc6slYJ0Ksc403G2XgxsJQFQ==} + engines: {node: '>=18.19'} + + yoctocolors@2.1.1: + resolution: {integrity: sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==} + engines: {node: '>=18'} + + zod-to-json-schema@3.24.5: + resolution: {integrity: sha512-/AuWwMP+YqiPbsJx5D6TfgRTc4kTLjsh5SOcd4bLsfUg2RcEXrFMJl1DGgdHy2aCfsIA/cr/1JM0xcB2GZji8g==} + peerDependencies: + zod: ^3.24.1 + + zod-to-ts@1.2.0: + resolution: {integrity: sha512-x30XE43V+InwGpvTySRNz9kB7qFU8DlyEy7BsSTCHPH1R0QasMmHWZDCzYm6bVXtj/9NNJAZF3jW8rzFvH5OFA==} + peerDependencies: + typescript: ^4.9.4 || ^5.0.2 + zod: ^3 + + zod@3.25.67: + resolution: {integrity: sha512-idA2YXwpCdqUSKRCACDE6ItZD9TZzy3OZMtpfLoh6oPR47lipysRrJfjzMqFxQ3uJuUPyUeWe1r9vLH33xO/Qw==} + + zwitch@2.0.4: + resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} + +snapshots: + + '@astrojs/compiler@2.12.2': {} + + '@astrojs/internal-helpers@0.6.1': {} + + '@astrojs/markdown-remark@6.3.2': + dependencies: + '@astrojs/internal-helpers': 0.6.1 + '@astrojs/prism': 3.3.0 + github-slugger: 2.0.0 + hast-util-from-html: 2.0.3 + hast-util-to-text: 4.0.2 + import-meta-resolve: 4.1.0 + js-yaml: 4.1.0 + mdast-util-definitions: 6.0.0 + rehype-raw: 7.0.0 + rehype-stringify: 10.0.1 + remark-gfm: 4.0.1 + remark-parse: 11.0.0 + remark-rehype: 11.1.2 + remark-smartypants: 3.0.2 + shiki: 3.6.0 + smol-toml: 1.3.4 + unified: 11.0.5 + unist-util-remove-position: 5.0.0 + unist-util-visit: 5.0.0 + unist-util-visit-parents: 6.0.1 + vfile: 6.0.3 + transitivePeerDependencies: + - supports-color + + '@astrojs/prism@3.3.0': + dependencies: + prismjs: 1.30.0 + + '@astrojs/telemetry@3.3.0': + dependencies: + ci-info: 4.2.0 + debug: 4.4.1 + dlv: 1.1.3 + dset: 3.1.4 + is-docker: 3.0.0 + is-wsl: 3.1.0 + which-pm-runs: 1.1.0 + transitivePeerDependencies: + - supports-color + + '@babel/helper-string-parser@7.27.1': {} + + '@babel/helper-validator-identifier@7.27.1': {} + + '@babel/parser@7.27.5': + dependencies: + '@babel/types': 7.27.6 + + '@babel/types@7.27.6': + dependencies: + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + + '@capsizecss/unpack@2.4.0': + dependencies: + blob-to-buffer: 1.2.9 + cross-fetch: 3.2.0 + fontkit: 2.0.4 + transitivePeerDependencies: + - encoding + + '@emnapi/runtime@1.4.3': + dependencies: + tslib: 2.8.1 + optional: true + + '@esbuild/aix-ppc64@0.25.5': + optional: true + + '@esbuild/android-arm64@0.25.5': + optional: true + + '@esbuild/android-arm@0.25.5': + optional: true + + '@esbuild/android-x64@0.25.5': + optional: true + + '@esbuild/darwin-arm64@0.25.5': + optional: true + + '@esbuild/darwin-x64@0.25.5': + optional: true + + '@esbuild/freebsd-arm64@0.25.5': + optional: true + + '@esbuild/freebsd-x64@0.25.5': + optional: true + + '@esbuild/linux-arm64@0.25.5': + optional: true + + '@esbuild/linux-arm@0.25.5': + optional: true + + '@esbuild/linux-ia32@0.25.5': + optional: true + + '@esbuild/linux-loong64@0.25.5': + optional: true + + '@esbuild/linux-mips64el@0.25.5': + optional: true + + '@esbuild/linux-ppc64@0.25.5': + optional: true + + '@esbuild/linux-riscv64@0.25.5': + optional: true + + '@esbuild/linux-s390x@0.25.5': + optional: true + + '@esbuild/linux-x64@0.25.5': + optional: true + + '@esbuild/netbsd-arm64@0.25.5': + optional: true + + '@esbuild/netbsd-x64@0.25.5': + optional: true + + '@esbuild/openbsd-arm64@0.25.5': + optional: true + + '@esbuild/openbsd-x64@0.25.5': + optional: true + + '@esbuild/sunos-x64@0.25.5': + optional: true + + '@esbuild/win32-arm64@0.25.5': + optional: true + + '@esbuild/win32-ia32@0.25.5': + optional: true + + '@esbuild/win32-x64@0.25.5': + optional: true + + '@fontsource-variable/noto-sans@5.2.7': {} + + '@img/sharp-darwin-arm64@0.33.5': + optionalDependencies: + '@img/sharp-libvips-darwin-arm64': 1.0.4 + optional: true + + '@img/sharp-darwin-x64@0.33.5': + optionalDependencies: + '@img/sharp-libvips-darwin-x64': 1.0.4 + optional: true + + '@img/sharp-libvips-darwin-arm64@1.0.4': + optional: true + + '@img/sharp-libvips-darwin-x64@1.0.4': + optional: true + + '@img/sharp-libvips-linux-arm64@1.0.4': + optional: true + + '@img/sharp-libvips-linux-arm@1.0.5': + optional: true + + '@img/sharp-libvips-linux-s390x@1.0.4': + optional: true + + '@img/sharp-libvips-linux-x64@1.0.4': + optional: true + + '@img/sharp-libvips-linuxmusl-arm64@1.0.4': + optional: true + + '@img/sharp-libvips-linuxmusl-x64@1.0.4': + optional: true + + '@img/sharp-linux-arm64@0.33.5': + optionalDependencies: + '@img/sharp-libvips-linux-arm64': 1.0.4 + optional: true + + '@img/sharp-linux-arm@0.33.5': + optionalDependencies: + '@img/sharp-libvips-linux-arm': 1.0.5 + optional: true + + '@img/sharp-linux-s390x@0.33.5': + optionalDependencies: + '@img/sharp-libvips-linux-s390x': 1.0.4 + optional: true + + '@img/sharp-linux-x64@0.33.5': + optionalDependencies: + '@img/sharp-libvips-linux-x64': 1.0.4 + optional: true + + '@img/sharp-linuxmusl-arm64@0.33.5': + optionalDependencies: + '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 + optional: true + + '@img/sharp-linuxmusl-x64@0.33.5': + optionalDependencies: + '@img/sharp-libvips-linuxmusl-x64': 1.0.4 + optional: true + + '@img/sharp-wasm32@0.33.5': + dependencies: + '@emnapi/runtime': 1.4.3 + optional: true + + '@img/sharp-win32-ia32@0.33.5': + optional: true + + '@img/sharp-win32-x64@0.33.5': + optional: true + + '@jridgewell/sourcemap-codec@1.5.0': {} + + '@oslojs/encoding@1.1.0': {} + + '@parcel/watcher-android-arm64@2.5.1': + optional: true + + '@parcel/watcher-darwin-arm64@2.5.1': + optional: true + + '@parcel/watcher-darwin-x64@2.5.1': + optional: true + + '@parcel/watcher-freebsd-x64@2.5.1': + optional: true + + '@parcel/watcher-linux-arm-glibc@2.5.1': + optional: true + + '@parcel/watcher-linux-arm-musl@2.5.1': + optional: true + + '@parcel/watcher-linux-arm64-glibc@2.5.1': + optional: true + + '@parcel/watcher-linux-arm64-musl@2.5.1': + optional: true + + '@parcel/watcher-linux-x64-glibc@2.5.1': + optional: true + + '@parcel/watcher-linux-x64-musl@2.5.1': + optional: true + + '@parcel/watcher-win32-arm64@2.5.1': + optional: true + + '@parcel/watcher-win32-ia32@2.5.1': + optional: true + + '@parcel/watcher-win32-x64@2.5.1': + optional: true + + '@parcel/watcher@2.5.1': + dependencies: + detect-libc: 1.0.3 + is-glob: 4.0.3 + micromatch: 4.0.8 + node-addon-api: 7.1.1 + optionalDependencies: + '@parcel/watcher-android-arm64': 2.5.1 + '@parcel/watcher-darwin-arm64': 2.5.1 + '@parcel/watcher-darwin-x64': 2.5.1 + '@parcel/watcher-freebsd-x64': 2.5.1 + '@parcel/watcher-linux-arm-glibc': 2.5.1 + '@parcel/watcher-linux-arm-musl': 2.5.1 + '@parcel/watcher-linux-arm64-glibc': 2.5.1 + '@parcel/watcher-linux-arm64-musl': 2.5.1 + '@parcel/watcher-linux-x64-glibc': 2.5.1 + '@parcel/watcher-linux-x64-musl': 2.5.1 + '@parcel/watcher-win32-arm64': 2.5.1 + '@parcel/watcher-win32-ia32': 2.5.1 + '@parcel/watcher-win32-x64': 2.5.1 + optional: true + + '@rollup/pluginutils@5.2.0(rollup@4.43.0)': + dependencies: + '@types/estree': 1.0.8 + estree-walker: 2.0.2 + picomatch: 4.0.2 + optionalDependencies: + rollup: 4.43.0 + + '@rollup/rollup-android-arm-eabi@4.43.0': + optional: true + + '@rollup/rollup-android-arm64@4.43.0': + optional: true + + '@rollup/rollup-darwin-arm64@4.43.0': + optional: true + + '@rollup/rollup-darwin-x64@4.43.0': + optional: true + + '@rollup/rollup-freebsd-arm64@4.43.0': + optional: true + + '@rollup/rollup-freebsd-x64@4.43.0': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.43.0': + optional: true + + '@rollup/rollup-linux-arm-musleabihf@4.43.0': + optional: true + + '@rollup/rollup-linux-arm64-gnu@4.43.0': + optional: true + + '@rollup/rollup-linux-arm64-musl@4.43.0': + optional: true + + '@rollup/rollup-linux-loongarch64-gnu@4.43.0': + optional: true + + '@rollup/rollup-linux-powerpc64le-gnu@4.43.0': + optional: true + + '@rollup/rollup-linux-riscv64-gnu@4.43.0': + optional: true + + '@rollup/rollup-linux-riscv64-musl@4.43.0': + optional: true + + '@rollup/rollup-linux-s390x-gnu@4.43.0': + optional: true + + '@rollup/rollup-linux-x64-gnu@4.43.0': + optional: true + + '@rollup/rollup-linux-x64-musl@4.43.0': + optional: true + + '@rollup/rollup-win32-arm64-msvc@4.43.0': + optional: true + + '@rollup/rollup-win32-ia32-msvc@4.43.0': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.43.0': + optional: true + + '@shikijs/core@3.6.0': + dependencies: + '@shikijs/types': 3.6.0 + '@shikijs/vscode-textmate': 10.0.2 + '@types/hast': 3.0.4 + hast-util-to-html: 9.0.5 + + '@shikijs/engine-javascript@3.6.0': + dependencies: + '@shikijs/types': 3.6.0 + '@shikijs/vscode-textmate': 10.0.2 + oniguruma-to-es: 4.3.3 + + '@shikijs/engine-oniguruma@3.6.0': + dependencies: + '@shikijs/types': 3.6.0 + '@shikijs/vscode-textmate': 10.0.2 + + '@shikijs/langs@3.6.0': + dependencies: + '@shikijs/types': 3.6.0 + + '@shikijs/themes@3.6.0': + dependencies: + '@shikijs/types': 3.6.0 + + '@shikijs/types@3.6.0': + dependencies: + '@shikijs/vscode-textmate': 10.0.2 + '@types/hast': 3.0.4 + + '@shikijs/vscode-textmate@10.0.2': {} + + '@swc/helpers@0.5.17': + dependencies: + tslib: 2.8.1 + + '@types/debug@4.1.12': + dependencies: + '@types/ms': 2.1.0 + + '@types/estree@1.0.7': {} + + '@types/estree@1.0.8': {} + + '@types/fontkit@2.0.8': + dependencies: + '@types/node': 24.0.3 + + '@types/hast@3.0.4': + dependencies: + '@types/unist': 3.0.3 + + '@types/mdast@4.0.4': + dependencies: + '@types/unist': 3.0.3 + + '@types/ms@2.1.0': {} + + '@types/nlcst@2.0.3': + dependencies: + '@types/unist': 3.0.3 + + '@types/node@24.0.3': + dependencies: + undici-types: 7.8.0 + + '@types/unist@3.0.3': {} + + '@ungap/structured-clone@1.3.0': {} + + acorn@8.15.0: {} + + ansi-align@3.0.1: + dependencies: + string-width: 4.2.3 + + ansi-regex@5.0.1: {} + + ansi-regex@6.1.0: {} + + ansi-styles@6.2.1: {} + + anymatch@3.1.3: + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + + argparse@2.0.1: {} + + aria-query@5.3.2: {} + + array-iterate@2.0.1: {} + + astro@5.9.4(@types/node@24.0.3)(rollup@4.43.0)(sass@1.89.2)(typescript@5.8.3): + dependencies: + '@astrojs/compiler': 2.12.2 + '@astrojs/internal-helpers': 0.6.1 + '@astrojs/markdown-remark': 6.3.2 + '@astrojs/telemetry': 3.3.0 + '@capsizecss/unpack': 2.4.0 + '@oslojs/encoding': 1.1.0 + '@rollup/pluginutils': 5.2.0(rollup@4.43.0) + acorn: 8.15.0 + aria-query: 5.3.2 + axobject-query: 4.1.0 + boxen: 8.0.1 + ci-info: 4.2.0 + clsx: 2.1.1 + common-ancestor-path: 1.0.1 + cookie: 1.0.2 + cssesc: 3.0.0 + debug: 4.4.1 + deterministic-object-hash: 2.0.2 + devalue: 5.1.1 + diff: 5.2.0 + dlv: 1.1.3 + dset: 3.1.4 + es-module-lexer: 1.7.0 + esbuild: 0.25.5 + estree-walker: 3.0.3 + flattie: 1.1.1 + fontace: 0.3.0 + github-slugger: 2.0.0 + html-escaper: 3.0.3 + http-cache-semantics: 4.2.0 + import-meta-resolve: 4.1.0 + js-yaml: 4.1.0 + kleur: 4.1.5 + magic-string: 0.30.17 + magicast: 0.3.5 + mrmime: 2.0.1 + neotraverse: 0.6.18 + p-limit: 6.2.0 + p-queue: 8.1.0 + package-manager-detector: 1.3.0 + picomatch: 4.0.2 + prompts: 2.4.2 + rehype: 13.0.2 + semver: 7.7.2 + shiki: 3.6.0 + tinyexec: 0.3.2 + tinyglobby: 0.2.14 + tsconfck: 3.1.6(typescript@5.8.3) + ultrahtml: 1.6.0 + unifont: 0.5.0 + unist-util-visit: 5.0.0 + unstorage: 1.16.0 + vfile: 6.0.3 + vite: 6.3.5(@types/node@24.0.3)(sass@1.89.2) + vitefu: 1.0.6(vite@6.3.5(@types/node@24.0.3)(sass@1.89.2)) + xxhash-wasm: 1.1.0 + yargs-parser: 21.1.1 + yocto-spinner: 0.2.3 + zod: 3.25.67 + zod-to-json-schema: 3.24.5(zod@3.25.67) + zod-to-ts: 1.2.0(typescript@5.8.3)(zod@3.25.67) + optionalDependencies: + sharp: 0.33.5 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@types/node' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - db0 + - encoding + - idb-keyval + - ioredis + - jiti + - less + - lightningcss + - rollup + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - tsx + - typescript + - uploadthing + - yaml + + axobject-query@4.1.0: {} + + bail@2.0.2: {} + + base-64@1.0.0: {} + + base64-js@1.5.1: {} + + blob-to-buffer@1.2.9: {} + + boxen@8.0.1: + dependencies: + ansi-align: 3.0.1 + camelcase: 8.0.0 + chalk: 5.4.1 + cli-boxes: 3.0.0 + string-width: 7.2.0 + type-fest: 4.41.0 + widest-line: 5.0.0 + wrap-ansi: 9.0.0 + + braces@3.0.3: + dependencies: + fill-range: 7.1.1 + optional: true + + brotli@1.3.3: + dependencies: + base64-js: 1.5.1 + + camelcase@8.0.0: {} + + ccount@2.0.1: {} + + chalk@5.4.1: {} + + character-entities-html4@2.1.0: {} + + character-entities-legacy@3.0.0: {} + + character-entities@2.0.2: {} + + chokidar@4.0.3: + dependencies: + readdirp: 4.1.2 + + ci-info@4.2.0: {} + + cli-boxes@3.0.0: {} + + clone@2.1.2: {} + + clsx@2.1.1: {} + + color-convert@2.0.1: + dependencies: + color-name: 1.1.4 + optional: true + + color-name@1.1.4: + optional: true + + color-string@1.9.1: + dependencies: + color-name: 1.1.4 + simple-swizzle: 0.2.2 + optional: true + + color@4.2.3: + dependencies: + color-convert: 2.0.1 + color-string: 1.9.1 + optional: true + + comma-separated-tokens@2.0.3: {} + + common-ancestor-path@1.0.1: {} + + cookie-es@1.2.2: {} + + cookie@1.0.2: {} + + cross-fetch@3.2.0: + dependencies: + node-fetch: 2.7.0 + transitivePeerDependencies: + - encoding + + crossws@0.3.5: + dependencies: + uncrypto: 0.1.3 + + css-tree@3.1.0: + dependencies: + mdn-data: 2.12.2 + source-map-js: 1.2.1 + + cssesc@3.0.0: {} + + cytoscape@3.32.0: {} + + dayjs@1.11.13: {} + + debug@4.4.1: + dependencies: + ms: 2.1.3 + + decode-named-character-reference@1.2.0: + dependencies: + character-entities: 2.0.2 + + defu@6.1.4: {} + + dequal@2.0.3: {} + + destr@2.0.5: {} + + detect-libc@1.0.3: + optional: true + + detect-libc@2.0.4: + optional: true + + deterministic-object-hash@2.0.2: + dependencies: + base-64: 1.0.0 + + devalue@5.1.1: {} + + devlop@1.1.0: + dependencies: + dequal: 2.0.3 + + dfa@1.2.0: {} + + diff@5.2.0: {} + + dlv@1.1.3: {} + + dset@3.1.4: {} + + emoji-regex@10.4.0: {} + + emoji-regex@8.0.0: {} + + entities@6.0.1: {} + + es-module-lexer@1.7.0: {} + + esbuild@0.25.5: + optionalDependencies: + '@esbuild/aix-ppc64': 0.25.5 + '@esbuild/android-arm': 0.25.5 + '@esbuild/android-arm64': 0.25.5 + '@esbuild/android-x64': 0.25.5 + '@esbuild/darwin-arm64': 0.25.5 + '@esbuild/darwin-x64': 0.25.5 + '@esbuild/freebsd-arm64': 0.25.5 + '@esbuild/freebsd-x64': 0.25.5 + '@esbuild/linux-arm': 0.25.5 + '@esbuild/linux-arm64': 0.25.5 + '@esbuild/linux-ia32': 0.25.5 + '@esbuild/linux-loong64': 0.25.5 + '@esbuild/linux-mips64el': 0.25.5 + '@esbuild/linux-ppc64': 0.25.5 + '@esbuild/linux-riscv64': 0.25.5 + '@esbuild/linux-s390x': 0.25.5 + '@esbuild/linux-x64': 0.25.5 + '@esbuild/netbsd-arm64': 0.25.5 + '@esbuild/netbsd-x64': 0.25.5 + '@esbuild/openbsd-arm64': 0.25.5 + '@esbuild/openbsd-x64': 0.25.5 + '@esbuild/sunos-x64': 0.25.5 + '@esbuild/win32-arm64': 0.25.5 + '@esbuild/win32-ia32': 0.25.5 + '@esbuild/win32-x64': 0.25.5 + + escape-string-regexp@5.0.0: {} + + estree-walker@2.0.2: {} + + estree-walker@3.0.3: + dependencies: + '@types/estree': 1.0.8 + + eventemitter3@5.0.1: {} + + extend@3.0.2: {} + + fast-deep-equal@3.1.3: {} + + fdir@6.4.6(picomatch@4.0.2): + optionalDependencies: + picomatch: 4.0.2 + + fill-range@7.1.1: + dependencies: + to-regex-range: 5.0.1 + optional: true + + flattie@1.1.1: {} + + fontace@0.3.0: + dependencies: + '@types/fontkit': 2.0.8 + fontkit: 2.0.4 + + fontkit@2.0.4: + dependencies: + '@swc/helpers': 0.5.17 + brotli: 1.3.3 + clone: 2.1.2 + dfa: 1.2.0 + fast-deep-equal: 3.1.3 + restructure: 3.0.2 + tiny-inflate: 1.0.3 + unicode-properties: 1.4.1 + unicode-trie: 2.0.0 + + fsevents@2.3.3: + optional: true + + get-east-asian-width@1.3.0: {} + + github-slugger@2.0.0: {} + + h3@1.15.3: + dependencies: + cookie-es: 1.2.2 + crossws: 0.3.5 + defu: 6.1.4 + destr: 2.0.5 + iron-webcrypto: 1.2.1 + node-mock-http: 1.0.0 + radix3: 1.1.2 + ufo: 1.6.1 + uncrypto: 0.1.3 + + hast-util-from-html@2.0.3: + dependencies: + '@types/hast': 3.0.4 + devlop: 1.1.0 + hast-util-from-parse5: 8.0.3 + parse5: 7.3.0 + vfile: 6.0.3 + vfile-message: 4.0.2 + + hast-util-from-parse5@8.0.3: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + devlop: 1.1.0 + hastscript: 9.0.1 + property-information: 7.1.0 + vfile: 6.0.3 + vfile-location: 5.0.3 + web-namespaces: 2.0.1 + + hast-util-is-element@3.0.0: + dependencies: + '@types/hast': 3.0.4 + + hast-util-parse-selector@4.0.0: + dependencies: + '@types/hast': 3.0.4 + + hast-util-raw@9.1.0: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + '@ungap/structured-clone': 1.3.0 + hast-util-from-parse5: 8.0.3 + hast-util-to-parse5: 8.0.0 + html-void-elements: 3.0.0 + mdast-util-to-hast: 13.2.0 + parse5: 7.3.0 + unist-util-position: 5.0.0 + unist-util-visit: 5.0.0 + vfile: 6.0.3 + web-namespaces: 2.0.1 + zwitch: 2.0.4 + + hast-util-to-html@9.0.5: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + ccount: 2.0.1 + comma-separated-tokens: 2.0.3 + hast-util-whitespace: 3.0.0 + html-void-elements: 3.0.0 + mdast-util-to-hast: 13.2.0 + property-information: 7.1.0 + space-separated-tokens: 2.0.2 + stringify-entities: 4.0.4 + zwitch: 2.0.4 + + hast-util-to-parse5@8.0.0: + dependencies: + '@types/hast': 3.0.4 + comma-separated-tokens: 2.0.3 + devlop: 1.1.0 + property-information: 6.5.0 + space-separated-tokens: 2.0.2 + web-namespaces: 2.0.1 + zwitch: 2.0.4 + + hast-util-to-text@4.0.2: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + hast-util-is-element: 3.0.0 + unist-util-find-after: 5.0.0 + + hast-util-whitespace@3.0.0: + dependencies: + '@types/hast': 3.0.4 + + hastscript@9.0.1: + dependencies: + '@types/hast': 3.0.4 + comma-separated-tokens: 2.0.3 + hast-util-parse-selector: 4.0.0 + property-information: 7.1.0 + space-separated-tokens: 2.0.2 + + html-escaper@3.0.3: {} + + html-void-elements@3.0.0: {} + + http-cache-semantics@4.2.0: {} + + immutable@5.1.3: {} + + import-meta-resolve@4.1.0: {} + + iron-webcrypto@1.2.1: {} + + is-arrayish@0.3.2: + optional: true + + is-docker@3.0.0: {} + + is-extglob@2.1.1: + optional: true + + is-fullwidth-code-point@3.0.0: {} + + is-glob@4.0.3: + dependencies: + is-extglob: 2.1.1 + optional: true + + is-inside-container@1.0.0: + dependencies: + is-docker: 3.0.0 + + is-number@7.0.0: + optional: true + + is-plain-obj@4.1.0: {} + + is-wsl@3.1.0: + dependencies: + is-inside-container: 1.0.0 + + js-yaml@4.1.0: + dependencies: + argparse: 2.0.1 + + kleur@3.0.3: {} + + kleur@4.1.5: {} + + longest-streak@3.1.0: {} + + lru-cache@10.4.3: {} + + magic-string@0.30.17: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.0 + + magicast@0.3.5: + dependencies: + '@babel/parser': 7.27.5 + '@babel/types': 7.27.6 + source-map-js: 1.2.1 + + markdown-table@3.0.4: {} + + mdast-util-definitions@6.0.0: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + unist-util-visit: 5.0.0 + + mdast-util-find-and-replace@3.0.2: + dependencies: + '@types/mdast': 4.0.4 + escape-string-regexp: 5.0.0 + unist-util-is: 6.0.0 + unist-util-visit-parents: 6.0.1 + + mdast-util-from-markdown@2.0.2: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + decode-named-character-reference: 1.2.0 + devlop: 1.1.0 + mdast-util-to-string: 4.0.0 + micromark: 4.0.2 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-decode-string: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + unist-util-stringify-position: 4.0.0 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-autolink-literal@2.0.1: + dependencies: + '@types/mdast': 4.0.4 + ccount: 2.0.1 + devlop: 1.1.0 + mdast-util-find-and-replace: 3.0.2 + micromark-util-character: 2.1.1 + + mdast-util-gfm-footnote@2.1.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + micromark-util-normalize-identifier: 2.0.1 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-strikethrough@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-table@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + markdown-table: 3.0.4 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-task-list-item@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm@3.1.0: + dependencies: + mdast-util-from-markdown: 2.0.2 + mdast-util-gfm-autolink-literal: 2.0.1 + mdast-util-gfm-footnote: 2.1.0 + mdast-util-gfm-strikethrough: 2.0.0 + mdast-util-gfm-table: 2.0.0 + mdast-util-gfm-task-list-item: 2.0.0 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-phrasing@4.1.0: + dependencies: + '@types/mdast': 4.0.4 + unist-util-is: 6.0.0 + + mdast-util-to-hast@13.2.0: + dependencies: + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + '@ungap/structured-clone': 1.3.0 + devlop: 1.1.0 + micromark-util-sanitize-uri: 2.0.1 + trim-lines: 3.0.1 + unist-util-position: 5.0.0 + unist-util-visit: 5.0.0 + vfile: 6.0.3 + + mdast-util-to-markdown@2.1.2: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + longest-streak: 3.1.0 + mdast-util-phrasing: 4.1.0 + mdast-util-to-string: 4.0.0 + micromark-util-classify-character: 2.0.1 + micromark-util-decode-string: 2.0.1 + unist-util-visit: 5.0.0 + zwitch: 2.0.4 + + mdast-util-to-string@4.0.0: + dependencies: + '@types/mdast': 4.0.4 + + mdn-data@2.12.2: {} + + medium-zoom@1.1.0: {} + + micromark-core-commonmark@2.0.3: + dependencies: + decode-named-character-reference: 1.2.0 + devlop: 1.1.0 + micromark-factory-destination: 2.0.1 + micromark-factory-label: 2.0.1 + micromark-factory-space: 2.0.1 + micromark-factory-title: 2.0.1 + micromark-factory-whitespace: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-chunked: 2.0.1 + micromark-util-classify-character: 2.0.1 + micromark-util-html-tag-name: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-subtokenize: 2.1.0 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-autolink-literal@2.1.0: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-footnote@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-core-commonmark: 2.0.3 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-strikethrough@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-util-chunked: 2.0.1 + micromark-util-classify-character: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-table@2.1.1: + dependencies: + devlop: 1.1.0 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-tagfilter@2.0.0: + dependencies: + micromark-util-types: 2.0.2 + + micromark-extension-gfm-task-list-item@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm@3.0.0: + dependencies: + micromark-extension-gfm-autolink-literal: 2.1.0 + micromark-extension-gfm-footnote: 2.1.0 + micromark-extension-gfm-strikethrough: 2.1.0 + micromark-extension-gfm-table: 2.1.1 + micromark-extension-gfm-tagfilter: 2.0.0 + micromark-extension-gfm-task-list-item: 2.1.0 + micromark-util-combine-extensions: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-destination@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-label@2.0.1: + dependencies: + devlop: 1.1.0 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-space@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-types: 2.0.2 + + micromark-factory-title@2.0.1: + dependencies: + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-whitespace@2.0.1: + dependencies: + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-character@2.1.1: + dependencies: + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-chunked@2.0.1: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-classify-character@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-combine-extensions@2.0.1: + dependencies: + micromark-util-chunked: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-decode-numeric-character-reference@2.0.2: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-decode-string@2.0.1: + dependencies: + decode-named-character-reference: 1.2.0 + micromark-util-character: 2.1.1 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-symbol: 2.0.1 + + micromark-util-encode@2.0.1: {} + + micromark-util-html-tag-name@2.0.1: {} + + micromark-util-normalize-identifier@2.0.1: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-resolve-all@2.0.1: + dependencies: + micromark-util-types: 2.0.2 + + micromark-util-sanitize-uri@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-encode: 2.0.1 + micromark-util-symbol: 2.0.1 + + micromark-util-subtokenize@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-util-chunked: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-symbol@2.0.1: {} + + micromark-util-types@2.0.2: {} + + micromark@4.0.2: + dependencies: + '@types/debug': 4.1.12 + debug: 4.4.1 + decode-named-character-reference: 1.2.0 + devlop: 1.1.0 + micromark-core-commonmark: 2.0.3 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-chunked: 2.0.1 + micromark-util-combine-extensions: 2.0.1 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-encode: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-subtokenize: 2.1.0 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + transitivePeerDependencies: + - supports-color + + micromatch@4.0.8: + dependencies: + braces: 3.0.3 + picomatch: 2.3.1 + optional: true + + mrmime@2.0.1: {} + + ms@2.1.3: {} + + nanoid@3.3.11: {} + + neotraverse@0.6.18: {} + + nlcst-to-string@4.0.0: + dependencies: + '@types/nlcst': 2.0.3 + + node-addon-api@7.1.1: + optional: true + + node-fetch-native@1.6.6: {} + + node-fetch@2.7.0: + dependencies: + whatwg-url: 5.0.0 + + node-mock-http@1.0.0: {} + + normalize-path@3.0.0: {} + + ofetch@1.4.1: + dependencies: + destr: 2.0.5 + node-fetch-native: 1.6.6 + ufo: 1.6.1 + + ohash@2.0.11: {} + + oniguruma-parser@0.12.1: {} + + oniguruma-to-es@4.3.3: + dependencies: + oniguruma-parser: 0.12.1 + regex: 6.0.1 + regex-recursion: 6.0.2 + + p-limit@6.2.0: + dependencies: + yocto-queue: 1.2.1 + + p-queue@8.1.0: + dependencies: + eventemitter3: 5.0.1 + p-timeout: 6.1.4 + + p-timeout@6.1.4: {} + + package-manager-detector@1.3.0: {} + + pako@0.2.9: {} + + parse-latin@7.0.0: + dependencies: + '@types/nlcst': 2.0.3 + '@types/unist': 3.0.3 + nlcst-to-string: 4.0.0 + unist-util-modify-children: 4.0.0 + unist-util-visit-children: 3.0.0 + vfile: 6.0.3 + + parse5@7.3.0: + dependencies: + entities: 6.0.1 + + picocolors@1.1.1: {} + + picomatch@2.3.1: {} + + picomatch@4.0.2: {} + + postcss@8.5.6: + dependencies: + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + prismjs@1.30.0: {} + + prompts@2.4.2: + dependencies: + kleur: 3.0.3 + sisteransi: 1.0.5 + + property-information@6.5.0: {} + + property-information@7.1.0: {} + + radix3@1.1.2: {} + + readdirp@4.1.2: {} + + regex-recursion@6.0.2: + dependencies: + regex-utilities: 2.3.0 + + regex-utilities@2.3.0: {} + + regex@6.0.1: + dependencies: + regex-utilities: 2.3.0 + + rehype-parse@9.0.1: + dependencies: + '@types/hast': 3.0.4 + hast-util-from-html: 2.0.3 + unified: 11.0.5 + + rehype-raw@7.0.0: + dependencies: + '@types/hast': 3.0.4 + hast-util-raw: 9.1.0 + vfile: 6.0.3 + + rehype-stringify@10.0.1: + dependencies: + '@types/hast': 3.0.4 + hast-util-to-html: 9.0.5 + unified: 11.0.5 + + rehype@13.0.2: + dependencies: + '@types/hast': 3.0.4 + rehype-parse: 9.0.1 + rehype-stringify: 10.0.1 + unified: 11.0.5 + + remark-gfm@4.0.1: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-gfm: 3.1.0 + micromark-extension-gfm: 3.0.0 + remark-parse: 11.0.0 + remark-stringify: 11.0.0 + unified: 11.0.5 + transitivePeerDependencies: + - supports-color + + remark-parse@11.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-from-markdown: 2.0.2 + micromark-util-types: 2.0.2 + unified: 11.0.5 + transitivePeerDependencies: + - supports-color + + remark-rehype@11.1.2: + dependencies: + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + mdast-util-to-hast: 13.2.0 + unified: 11.0.5 + vfile: 6.0.3 + + remark-smartypants@3.0.2: + dependencies: + retext: 9.0.0 + retext-smartypants: 6.2.0 + unified: 11.0.5 + unist-util-visit: 5.0.0 + + remark-stringify@11.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-to-markdown: 2.1.2 + unified: 11.0.5 + + restructure@3.0.2: {} + + retext-latin@4.0.0: + dependencies: + '@types/nlcst': 2.0.3 + parse-latin: 7.0.0 + unified: 11.0.5 + + retext-smartypants@6.2.0: + dependencies: + '@types/nlcst': 2.0.3 + nlcst-to-string: 4.0.0 + unist-util-visit: 5.0.0 + + retext-stringify@4.0.0: + dependencies: + '@types/nlcst': 2.0.3 + nlcst-to-string: 4.0.0 + unified: 11.0.5 + + retext@9.0.0: + dependencies: + '@types/nlcst': 2.0.3 + retext-latin: 4.0.0 + retext-stringify: 4.0.0 + unified: 11.0.5 + + rollup@4.43.0: + dependencies: + '@types/estree': 1.0.7 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.43.0 + '@rollup/rollup-android-arm64': 4.43.0 + '@rollup/rollup-darwin-arm64': 4.43.0 + '@rollup/rollup-darwin-x64': 4.43.0 + '@rollup/rollup-freebsd-arm64': 4.43.0 + '@rollup/rollup-freebsd-x64': 4.43.0 + '@rollup/rollup-linux-arm-gnueabihf': 4.43.0 + '@rollup/rollup-linux-arm-musleabihf': 4.43.0 + '@rollup/rollup-linux-arm64-gnu': 4.43.0 + '@rollup/rollup-linux-arm64-musl': 4.43.0 + '@rollup/rollup-linux-loongarch64-gnu': 4.43.0 + '@rollup/rollup-linux-powerpc64le-gnu': 4.43.0 + '@rollup/rollup-linux-riscv64-gnu': 4.43.0 + '@rollup/rollup-linux-riscv64-musl': 4.43.0 + '@rollup/rollup-linux-s390x-gnu': 4.43.0 + '@rollup/rollup-linux-x64-gnu': 4.43.0 + '@rollup/rollup-linux-x64-musl': 4.43.0 + '@rollup/rollup-win32-arm64-msvc': 4.43.0 + '@rollup/rollup-win32-ia32-msvc': 4.43.0 + '@rollup/rollup-win32-x64-msvc': 4.43.0 + fsevents: 2.3.3 + + sass@1.89.2: + dependencies: + chokidar: 4.0.3 + immutable: 5.1.3 + source-map-js: 1.2.1 + optionalDependencies: + '@parcel/watcher': 2.5.1 + + semver@7.7.2: {} + + sharp@0.33.5: + dependencies: + color: 4.2.3 + detect-libc: 2.0.4 + semver: 7.7.2 + optionalDependencies: + '@img/sharp-darwin-arm64': 0.33.5 + '@img/sharp-darwin-x64': 0.33.5 + '@img/sharp-libvips-darwin-arm64': 1.0.4 + '@img/sharp-libvips-darwin-x64': 1.0.4 + '@img/sharp-libvips-linux-arm': 1.0.5 + '@img/sharp-libvips-linux-arm64': 1.0.4 + '@img/sharp-libvips-linux-s390x': 1.0.4 + '@img/sharp-libvips-linux-x64': 1.0.4 + '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 + '@img/sharp-libvips-linuxmusl-x64': 1.0.4 + '@img/sharp-linux-arm': 0.33.5 + '@img/sharp-linux-arm64': 0.33.5 + '@img/sharp-linux-s390x': 0.33.5 + '@img/sharp-linux-x64': 0.33.5 + '@img/sharp-linuxmusl-arm64': 0.33.5 + '@img/sharp-linuxmusl-x64': 0.33.5 + '@img/sharp-wasm32': 0.33.5 + '@img/sharp-win32-ia32': 0.33.5 + '@img/sharp-win32-x64': 0.33.5 + optional: true + + shiki@3.6.0: + dependencies: + '@shikijs/core': 3.6.0 + '@shikijs/engine-javascript': 3.6.0 + '@shikijs/engine-oniguruma': 3.6.0 + '@shikijs/langs': 3.6.0 + '@shikijs/themes': 3.6.0 + '@shikijs/types': 3.6.0 + '@shikijs/vscode-textmate': 10.0.2 + '@types/hast': 3.0.4 + + simple-swizzle@0.2.2: + dependencies: + is-arrayish: 0.3.2 + optional: true + + sisteransi@1.0.5: {} + + smol-toml@1.3.4: {} + + source-map-js@1.2.1: {} + + space-separated-tokens@2.0.2: {} + + string-width@4.2.3: + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + + string-width@7.2.0: + dependencies: + emoji-regex: 10.4.0 + get-east-asian-width: 1.3.0 + strip-ansi: 7.1.0 + + stringify-entities@4.0.4: + dependencies: + character-entities-html4: 2.1.0 + character-entities-legacy: 3.0.0 + + strip-ansi@6.0.1: + dependencies: + ansi-regex: 5.0.1 + + strip-ansi@7.1.0: + dependencies: + ansi-regex: 6.1.0 + + tiny-inflate@1.0.3: {} + + tinyexec@0.3.2: {} + + tinyglobby@0.2.14: + dependencies: + fdir: 6.4.6(picomatch@4.0.2) + picomatch: 4.0.2 + + to-regex-range@5.0.1: + dependencies: + is-number: 7.0.0 + optional: true + + tr46@0.0.3: {} + + trim-lines@3.0.1: {} + + trough@2.2.0: {} + + tsconfck@3.1.6(typescript@5.8.3): + optionalDependencies: + typescript: 5.8.3 + + tslib@2.8.1: {} + + type-fest@4.41.0: {} + + typescript@5.8.3: {} + + ufo@1.6.1: {} + + ultrahtml@1.6.0: {} + + uncrypto@0.1.3: {} + + undici-types@7.8.0: {} + + unicode-properties@1.4.1: + dependencies: + base64-js: 1.5.1 + unicode-trie: 2.0.0 + + unicode-trie@2.0.0: + dependencies: + pako: 0.2.9 + tiny-inflate: 1.0.3 + + unified@11.0.5: + dependencies: + '@types/unist': 3.0.3 + bail: 2.0.2 + devlop: 1.1.0 + extend: 3.0.2 + is-plain-obj: 4.1.0 + trough: 2.2.0 + vfile: 6.0.3 + + unifont@0.5.0: + dependencies: + css-tree: 3.1.0 + ohash: 2.0.11 + + unist-util-find-after@5.0.0: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.0 + + unist-util-is@6.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-modify-children@4.0.0: + dependencies: + '@types/unist': 3.0.3 + array-iterate: 2.0.1 + + unist-util-position@5.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-remove-position@5.0.0: + dependencies: + '@types/unist': 3.0.3 + unist-util-visit: 5.0.0 + + unist-util-stringify-position@4.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-visit-children@3.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-visit-parents@6.0.1: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.0 + + unist-util-visit@5.0.0: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.0 + unist-util-visit-parents: 6.0.1 + + unstorage@1.16.0: + dependencies: + anymatch: 3.1.3 + chokidar: 4.0.3 + destr: 2.0.5 + h3: 1.15.3 + lru-cache: 10.4.3 + node-fetch-native: 1.6.6 + ofetch: 1.4.1 + ufo: 1.6.1 + + vfile-location@5.0.3: + dependencies: + '@types/unist': 3.0.3 + vfile: 6.0.3 + + vfile-message@4.0.2: + dependencies: + '@types/unist': 3.0.3 + unist-util-stringify-position: 4.0.0 + + vfile@6.0.3: + dependencies: + '@types/unist': 3.0.3 + vfile-message: 4.0.2 + + vite@6.3.5(@types/node@24.0.3)(sass@1.89.2): + dependencies: + esbuild: 0.25.5 + fdir: 6.4.6(picomatch@4.0.2) + picomatch: 4.0.2 + postcss: 8.5.6 + rollup: 4.43.0 + tinyglobby: 0.2.14 + optionalDependencies: + '@types/node': 24.0.3 + fsevents: 2.3.3 + sass: 1.89.2 + + vitefu@1.0.6(vite@6.3.5(@types/node@24.0.3)(sass@1.89.2)): + optionalDependencies: + vite: 6.3.5(@types/node@24.0.3)(sass@1.89.2) + + web-namespaces@2.0.1: {} + + webidl-conversions@3.0.1: {} + + whatwg-url@5.0.0: + dependencies: + tr46: 0.0.3 + webidl-conversions: 3.0.1 + + which-pm-runs@1.1.0: {} + + widest-line@5.0.0: + dependencies: + string-width: 7.2.0 + + wrap-ansi@9.0.0: + dependencies: + ansi-styles: 6.2.1 + string-width: 7.2.0 + strip-ansi: 7.1.0 + + xxhash-wasm@1.1.0: {} + + yargs-parser@21.1.1: {} + + yocto-queue@1.2.1: {} + + yocto-spinner@0.2.3: + dependencies: + yoctocolors: 2.1.1 + + yoctocolors@2.1.1: {} + + zod-to-json-schema@3.24.5(zod@3.25.67): + dependencies: + zod: 3.25.67 + + zod-to-ts@1.2.0(typescript@5.8.3)(zod@3.25.67): + dependencies: + typescript: 5.8.3 + zod: 3.25.67 + + zod@3.25.67: {} + + zwitch@2.0.4: {} diff --git a/web/public/favicon.svg b/web/public/favicon.svg new file mode 100644 index 0000000..f157bd1 --- /dev/null +++ b/web/public/favicon.svg @@ -0,0 +1,9 @@ + + + + diff --git a/web/src/components/Colors.astro b/web/src/components/Colors.astro new file mode 100644 index 0000000..07d9091 --- /dev/null +++ b/web/src/components/Colors.astro @@ -0,0 +1,18 @@ + diff --git a/web/src/components/MediumZoom.astro b/web/src/components/MediumZoom.astro new file mode 100644 index 0000000..8944f2b --- /dev/null +++ b/web/src/components/MediumZoom.astro @@ -0,0 +1,5 @@ + diff --git a/web/src/components/Visualization.astro b/web/src/components/Visualization.astro new file mode 100644 index 0000000..b96fa65 --- /dev/null +++ b/web/src/components/Visualization.astro @@ -0,0 +1,42 @@ +--- +import VisualizationScript from './VisualizationScript.astro'; + +interface Props { + interactome: string; +} + +const { interactome } = Astro.props; + +const noHeaderInteractome = interactome.trim().split("\n").slice(1).join("\n") +--- + + + +
+ { + noHeaderInteractome === '' ?

There is nothing to visualize.

: + + } +
+ +{noHeaderInteractome !== '' && } \ No newline at end of file diff --git a/web/src/components/VisualizationScript.astro b/web/src/components/VisualizationScript.astro new file mode 100644 index 0000000..b137e19 --- /dev/null +++ b/web/src/components/VisualizationScript.astro @@ -0,0 +1,32 @@ + diff --git a/web/src/layouts/BaseLayout.astro b/web/src/layouts/BaseLayout.astro new file mode 100644 index 0000000..2d029ba --- /dev/null +++ b/web/src/layouts/BaseLayout.astro @@ -0,0 +1,51 @@ +--- +import dayjs from 'dayjs' +import { revision, shortRevision } from "../lib/commit"; +import '@fontsource-variable/noto-sans'; +const buildDate = dayjs() +--- + + + + + + + + SPRAS Benchmark Results + + + + + +
+
+ +
+ +
+ + diff --git a/web/src/lib/commit.ts b/web/src/lib/commit.ts new file mode 100644 index 0000000..ae5cd9f --- /dev/null +++ b/web/src/lib/commit.ts @@ -0,0 +1,6 @@ +import { execSync } from 'child_process'; + +const decoder = new TextDecoder() + +export const revision = decoder.decode(execSync('git rev-parse HEAD')).trim(); +export const shortRevision = revision.substring(0, 6); diff --git a/web/src/lib/outputStyle.ts b/web/src/lib/outputStyle.ts new file mode 100644 index 0000000..05809ff --- /dev/null +++ b/web/src/lib/outputStyle.ts @@ -0,0 +1,80 @@ +const dataTypes = [ + 'pra', + 'dmmm' +] + +interface Output { + dataType: string; + datasetName: string; + algorithm: string; + paramsHash: string; +} + +export function extractDatasetType(name: string): { type: string, name: string } { + let newType; + let newName; + + for (let type of dataTypes) { + if (name.startsWith(type)) { + newType = type; + newName = name.substring(type.length); + break; + } + } + + // We add the !newName there for type-checking purposes. + if (!newType || !newName) { + throw new Error(`Dataset name should begin with a type (one of ${dataTypes})`) + } + + return { + type: newType, + name: newName + } +} + +export function parseOutputString(str: string): Output { + const components = str.split("-"); + let dataType; + let datasetName; + let algorithm; + let paramsHash; + + if (components.length === 4) { + if (dataTypes.includes(components[0])) { + // This is a slug URL (type-...) + [dataType, datasetName, algorithm, paramsHash] = components + } else { + // This is fetched straight from the folder - we ignore -params- + [datasetName, algorithm, , paramsHash] = components + } + } else if (components.length === 3) { + [datasetName, algorithm, paramsHash] = components + } else { + throw new Error(`Unexpected length of components in ${components}.`) + } + + + // We didn't get a data type in the first passthrough - lets extract the data + // type from the name + if (!dataType) { + const { type, name } = extractDatasetType(datasetName); + dataType = type; + datasetName = name; + } + + return { + dataType, + datasetName, + algorithm, + paramsHash + } +} + +export function styleOutput(output: Output): string { + return `${output.dataType}-${output.datasetName}-${output.algorithm}-${output.paramsHash}` +} + +export function asFolderName(output: Output): string { + return `${output.dataType}${output.datasetName}-${output.algorithm}-params-${output.paramsHash}` +} diff --git a/web/src/lib/paths.ts b/web/src/lib/paths.ts new file mode 100644 index 0000000..db41bff --- /dev/null +++ b/web/src/lib/paths.ts @@ -0,0 +1,15 @@ +import { extractDatasetType } from "./outputStyle"; + +export function getDataFiles() { + const dataFiles = import.meta.glob('../../public/data/output/**', { query: '?raw' }); + return Object.keys(dataFiles) + .map(path => path.substring("../../public/data/output/".length)) +} + +export function getDatasets() { + const files = getDataFiles(); + return files.filter(file => file.startsWith("logs/datasets-")) + .map(file => file.substring("logs/datasets-".length)) + .map(file => file.slice(0, -".yaml".length)) + .map(file => extractDatasetType(file)) +} diff --git a/web/src/pages/[uid]/index.astro b/web/src/pages/[uid]/index.astro new file mode 100644 index 0000000..6cceff0 --- /dev/null +++ b/web/src/pages/[uid]/index.astro @@ -0,0 +1,70 @@ +--- +import BaseLayout from '../../layouts/BaseLayout.astro'; +import Visualization from '../../components/Visualization.astro' +import { asFolderName, parseOutputString, styleOutput } from '../../lib/outputStyle'; +import { getDataFiles } from '../../lib/paths'; +import { Code } from 'astro:components'; + +export function getStaticPaths() { + const filteredPaths = new Set(getDataFiles() + // We can safely filter for these prefixes, as datasets start with their type. + // Specifically, we do not want to make pages for our prepared inputs and logs. + .filter(path => !path.startsWith('prepared')) + .filter(path => !path.startsWith('logs')) + // Then, we don't want to make pages for our root-level files + .filter(path => path.includes("/")) + // We specifically want the folder names + .map(path => path.split("/")[0]) + // And we want to only have the dataset a-b-c-d params, not analysis ones + .filter(path => path.split("-").length === 4) + // Then, we exclude -params- + .map(path => path.replace("-params", ""))); + + return [...filteredPaths] + .map(path => ({ params: { uid: styleOutput(parseOutputString(path)) }})); +} + +const { uid } = Astro.params; +const output = parseOutputString(uid); +// We get the raw files associated to this specific run +const subPaths = getDataFiles().filter(path => path.startsWith(asFolderName(output))) + +// The paramater config content +const parametersCode = (await import(`../../../../output/logs/parameters-${output.algorithm}-params-${output.paramsHash}.yaml?raw`)).default + +// The interactome content +const interactome = (await import(`../../../../output/${asFolderName(output)}/pathway.txt?raw`)).default +--- + + + + +

{uid}

+ + (go to home) + +

Parameters

+ + + + For information about the dataset itself, go to the respective dataset page. + +

Output Files

+ + + +

Visualization

+ + +
diff --git a/web/src/pages/description.md b/web/src/pages/description.md new file mode 100644 index 0000000..a2595c9 --- /dev/null +++ b/web/src/pages/description.md @@ -0,0 +1,21 @@ +# SPRAS Benchmarking + +[SPRAS](https://github.com/Reed-CompBio/spras) is a +utility software designed for performing [signaling pathway](https://en.wikipedia.org/wiki/Cell_signaling#Signal_transduction_pathways) reconstruction +with various algorithms. [SPRAS's documentation](https://spras.readthedocs.io/en/latest/) has more information about its inner workings software. + +This benchmarking repository ([see the GitHub](https://github.com/Reed-CompBio/spras-benchmarking/)) is meant to display the performance +of all of the algorithms currently supported by SPRAS on signaling pathways and diseases (to test out DMMMs), +comparing their reconstructions with manually curated golden datasets, or synthetically provided datasets from various databases. + +All information provided is orchestrated through our GitHub Actions pipeline, and heavy processing is soon to be moved to [HTCondor](https://htcondor.org/). + +## Format + +Each run's slug has the type, the dataset, the +algorithm, and the paramaters [hash](https://en.wikipedia.org/wiki/Hash_function). + +There are also pages related to different categories of these runs: +- type-dataset + +The type classifies a dataset and the algorithms it runs on. For example, PRA datasets run on all algorithms, while disease module datasets only run on DMMM algorithms. diff --git a/web/src/pages/index.astro b/web/src/pages/index.astro new file mode 100644 index 0000000..c5df82d --- /dev/null +++ b/web/src/pages/index.astro @@ -0,0 +1,57 @@ +--- +import Colors from '../components/Colors.astro'; +import BaseLayout from '../layouts/BaseLayout.astro'; +import { parseOutputString } from '../lib/outputStyle'; +import { getStaticPaths } from './[uid]/index.astro' + +import Description from './description.md' +--- + + + + + + + + + +

Runs ({getStaticPaths().length})

+ +
diff --git a/web/src/pages/type-dataset/[type]-[name]/index.astro b/web/src/pages/type-dataset/[type]-[name]/index.astro new file mode 100644 index 0000000..967ebf1 --- /dev/null +++ b/web/src/pages/type-dataset/[type]-[name]/index.astro @@ -0,0 +1,38 @@ +--- +import MediumZoom from "../../../components/MediumZoom.astro"; +import BaseLayout from "../../../layouts/BaseLayout.astro"; +import { getDatasets } from "../../../lib/paths"; + +export function getStaticPaths() { + return getDatasets().map(({ name, type }) => ({ params: { type, name }})); +} + +const { type, name } = Astro.params; +--- + + + + +

{type}-{name}

+ + (go to home)
+ (go to type-datasets) + +

Principal Component Analysis

+ + +

Jaccard Similarity Heatmap

+ +
+ + \ No newline at end of file diff --git a/web/src/pages/type-dataset/index.astro b/web/src/pages/type-dataset/index.astro new file mode 100644 index 0000000..d21fbb8 --- /dev/null +++ b/web/src/pages/type-dataset/index.astro @@ -0,0 +1,17 @@ +--- +import BaseLayout from "../../layouts/BaseLayout.astro" +import { getStaticPaths } from "./[type]-[name]/index.astro" + +--- + + +

Type-Datasets

+ +

This contains analysis associated with datasets running on a particular algorithm type.

+ +
    + {getStaticPaths().map(({ params: { type, name }}) => (
  • + {type}-{name} +
  • ))} +
+
diff --git a/web/tsconfig.json b/web/tsconfig.json new file mode 100644 index 0000000..8bf91d3 --- /dev/null +++ b/web/tsconfig.json @@ -0,0 +1,5 @@ +{ + "extends": "astro/tsconfigs/strict", + "include": [".astro/types.d.ts", "**/*"], + "exclude": ["dist"] +} diff --git a/yeast-osmotic-stress/1_Dummy_Node_Add.ipynb b/yeast-osmotic-stress/1_Dummy_Node_Add.ipynb deleted file mode 100644 index b4c7482..0000000 --- a/yeast-osmotic-stress/1_Dummy_Node_Add.ipynb +++ /dev/null @@ -1,372 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [], - "source": [ - "#imports\n", - "import pandas as pd" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [], - "source": [ - "#create df for yeast data and create df2 for dummy nodes to append later\n", - "df = pd.read_csv(\"Raw_data\\prizes.txt\", sep = '\\t', names=['NODEID','prize'])\n", - "df2 = pd.DataFrame(data={\"NODEID\": ['YGR014W','YDR420W','YER118C'],\"prize\": 10.051863}, index=[1596,1597,1598])\n", - "\n" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "RangeIndex: 1596 entries, 0 to 1595\n", - "Data columns (total 2 columns):\n", - " # Column Non-Null Count Dtype \n", - "--- ------ -------------- ----- \n", - " 0 NODEID 1596 non-null object \n", - " 1 prize 1596 non-null float64\n", - "dtypes: float64(1), object(1)\n", - "memory usage: 25.1+ KB\n" - ] - } - ], - "source": [ - "#Inspect\n", - "df.info()" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
NODEIDprize
1596YGR014W10.051863
1597YDR420W10.051863
1598YER118C10.051863
\n", - "
" - ], - "text/plain": [ - " NODEID prize\n", - "1596 YGR014W 10.051863\n", - "1597 YDR420W 10.051863\n", - "1598 YER118C 10.051863" - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "#Inspect\n", - "df2" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
NODEIDprize
564YGR008C10.051863
\n", - "
" - ], - "text/plain": [ - " NODEID prize\n", - "564 YGR008C 10.051863" - ] - }, - "execution_count": 5, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "#Confirm Maximum Prize to assign later\n", - "\n", - "df[df['prize']==df['prize'].max()]\n" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [], - "source": [ - "#Assign the max prize to the dummy nodes \n", - "# YIL147C and YPR075C are already in the prize set \n", - "#YER118C,YGR014W,YDR420W assigned here\n", - "\n", - "df = pd.concat([df, df2])" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
NODEIDprize
1596YGR014W10.051863
1597YDR420W10.051863
1598YER118C10.051863
\n", - "
" - ], - "text/plain": [ - " NODEID prize\n", - "1596 YGR014W 10.051863\n", - "1597 YDR420W 10.051863\n", - "1598 YER118C 10.051863" - ] - }, - "execution_count": 7, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "#Verify all the highest prizes are what they should be, for some reason doesn't show index 564, the protein with the original hi prize. Likely due to floating point rounding.\n", - "df[df['prize']==df['prize'].max()]" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
NODEIDprize
564YGR008C10.051863
\n", - "
" - ], - "text/plain": [ - " NODEID prize\n", - "564 YGR008C 10.051863" - ] - }, - "execution_count": 8, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "df[df['NODEID'] == 'YGR008C']" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "Index: 1599 entries, 0 to 1598\n", - "Data columns (total 2 columns):\n", - " # Column Non-Null Count Dtype \n", - "--- ------ -------------- ----- \n", - " 0 NODEID 1599 non-null object \n", - " 1 prize 1599 non-null float64\n", - "dtypes: float64(1), object(1)\n", - "memory usage: 37.5+ KB\n" - ] - } - ], - "source": [ - "df.info()" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": {}, - "outputs": [], - "source": [ - "#This code creates a directory in the current folder called input and creates the txt file there. \n", - "from pathlib import Path \n", - "filepath = Path('Processed_data/prizes1_dummies.txt') \n", - "filepath.parent.mkdir(parents=True, exist_ok=True) \n", - "\n", - "\n", - "df.to_csv(filepath, sep='\\t',index=False,\n", - " columns=['NODEID','prize'],\n", - " header=['NODEID','prize'])" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "base", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.8.19" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/yeast-osmotic-stress/2_Node_Summary_Histo.ipynb b/yeast-osmotic-stress/2_Node_Summary_Histo.ipynb deleted file mode 100644 index ede2356..0000000 --- a/yeast-osmotic-stress/2_Node_Summary_Histo.ipynb +++ /dev/null @@ -1,214 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [], - "source": [ - "#imports\n", - "import pandas as pd\n", - "import seaborn as sns\n", - "import matplotlib.pyplot as plt" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [], - "source": [ - "#Load Data\n", - "df = pd.read_csv(\"SPRAS_output\\data0-pathway-summary.txt\", sep = '\\t')" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
NameNumber of nodesNumber of undirected edgesNumber of connected componentsNodes in prizeNodes in sourcesNodes in targets
0output/data0-omicsintegrator1-params-23OYCFU/p...212207521000
1output/data0-omicsintegrator1-params-2CCPVKC/p...154151315200
2output/data0-omicsintegrator1-params-2DRJMCG/p...185181418300
3output/data0-omicsintegrator1-params-2GTWYUF/p...172168417000
4output/data0-omicsintegrator1-params-2IYXGCY/p...283278527800
\n", - "
" - ], - "text/plain": [ - " Name Number of nodes \\\n", - "0 output/data0-omicsintegrator1-params-23OYCFU/p... 212 \n", - "1 output/data0-omicsintegrator1-params-2CCPVKC/p... 154 \n", - "2 output/data0-omicsintegrator1-params-2DRJMCG/p... 185 \n", - "3 output/data0-omicsintegrator1-params-2GTWYUF/p... 172 \n", - "4 output/data0-omicsintegrator1-params-2IYXGCY/p... 283 \n", - "\n", - " Number of undirected edges Number of connected components Nodes in prize \\\n", - "0 207 5 210 \n", - "1 151 3 152 \n", - "2 181 4 183 \n", - "3 168 4 170 \n", - "4 278 5 278 \n", - "\n", - " Nodes in sources Nodes in targets \n", - "0 0 0 \n", - "1 0 0 \n", - "2 0 0 \n", - "3 0 0 \n", - "4 0 0 " - ] - }, - "execution_count": 3, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "#Inspect\n", - "df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "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jTVyc3MNwzCMkSNHGqGhoa725R3zkydPGsHBwW7jYhiG8dVXXxUZ85SUFKNGjRrGtm3b3Nr+85//NCQZH330kWEYhvGXv/zFkGScOnWqzO0yM+93hdt9++23u7V77733DEnG119/XWp/06ZNMyQZEyZMcJv/zjvvGJKMt99+2+29a9asaezbt6/MuswK9/3XX3/dNe+hhx4yrrjiCsNms7m1LRyfPXv2lFo7AHgDl94BQDm89dZb2rZtW5FX4SVgpbnxxhu1e/duPfroo/r000+L/Da9NKmpqZJU5KlhN954o1q2bKkvvvhCkrR161Y5HA4NHjzYrd3NN99c5Kl8he66665i5y9atEjt27dXcHCwAgICFBgYqC+++EJ79+4t0vb2229XjRr/909Jy5YtJUl33HGHW7vC+YcOHSphS6V9+/bp6NGjuvfee936vOKKK3TXXXdp69atOnfuXInrl9esWbN0+PBh16WPZuUd86+//lrnz5/X8OHD3dp16tRJjRs3dpv3n//8R23atNG1114rp9Ppet12221ul1necMMNkqTBgwfrvffe05EjRy51c3XnnXe6Tbdt21aSZLPZyrW+efsGDx6sgIAA1zj9vt/yPFDj91asWKGnnnpKzz33nB544AHX/P/85z/q1q2bYmJi3MarT58+kqSNGzde1PsAgCcISgBQDi1btlSHDh2KvCIiIspcd/LkyfrLX/6irVu3qk+fPoqKilKPHj1KfOT472VnZ0uS63K834uJiXEtL/xvgwYNirQrbl5Jfc6dO1ePPPKIbrrpJq1atUpbt27Vtm3b1Lt3b+Xm5hZpX6dOHbfpoKCgUuefP3++2Fp+vw0lbWtBQYFOnjxZ4vrl1alTJw0YMEAzZ84str+LHfPo6Ogi7czzjh8/ru+++06BgYFur7CwMBmGof/973+SpC5dumjt2rVyOp0aMWKEYmNj1aZNG61YscLj7Y2KinKbtlqtklTsz7M45m0JCAhQVFSUa/sLFTdepUlNTdWoUaM0YsQIvfjii27Ljh8/rn//+99Fxqt169aS5BovAPAl7lECAB8LCAhQYmKiEhMTderUKX3++eeaMmWKbrvtNmVkZKhWrVolrlv4JffYsWOKjY11W3b06FHXvTKF7Y4fP16kj8zMzGLPKlksliLz3n77bSUkJGjhwoVu88+cOVP6RnrB77fV7OjRo6pRo4Zq167tlfdKSUlRmzZtNGPGjFLrKM+YZ2ZmFunDPOZ169ZVSEiI3nzzzWLrKexTkvr376/+/fvL4XBo69atSklJ0bBhw9SkSRN17Njx4jbUCzIzM3XllVe6pp1Op7Kzs4sEsOL2p5J89913GjBggLp27aq///3vRZbXrVtXbdu21fTp04tdPyYmptzvBQCe4owSAFSgyMhI/elPf9Jjjz2mX3/9VQcPHpRU8m/5u3fvLum3APN727Zt0969e9WjRw9J0k033SSr1ap3333Xrd3WrVvLfYmV9NuX3cJaCn333XfF/qFWb2vevLmuvPJKLV++3O0hGTk5OVq1apXrSXje0KJFC40ePVqvvvpqkcsByzvmN998s4KDg/XOO++4tduyZUuRMe/bt69+/vlnRUVFFXtmsrgga7Va1bVrV82aNUuStHPnzkvaZk+Zt++9996T0+n0+A/qHjp0SH369NEf/vAHrVq1yu2BEIX69u2rH374Qc2aNSt2vAhKACoCZ5QAwMf69eunNm3aqEOHDqpXr55sNpvmzZunxo0b6+qrr5YkXXPNNZKkV155RSNHjlRgYKCaN2+u5s2b68EHH9Srr76qGjVqqE+fPq4nsMXFxWnChAmSfrvULTExUSkpKapdu7YGDhyow4cPKzk5WQ0bNnS756c0ffv21Ysvvqhp06apa9eu2rdvn1544QU1bdrU549lrlGjhmbPnq3hw4erb9++euihh+RwODRnzhydOnVKM2fO9Or7JSUl6Z133lFqaqrbE9rKO+a1a9fWpEmT9NJLL2nMmDH685//rIyMDCUlJRW5XG38+PFatWqVunTpogkTJqht27YqKCjQoUOH9Nlnn2nixIm66aab9Pzzz+vw4cPq0aOHYmNjderUKb3yyisKDAws99+L8rbVq1crICBAPXv2dD31rl27dkXuhyuvPn366NSpU5o/f7727NnjtqxZs2aqV6+eXnjhBa1bt06dOnXSuHHj1Lx5c50/f14HDx7URx99pEWLFhU52wcA3kZQAgAf69atm1atWuV6PHN0dLR69uypqVOnun6bnpCQoMmTJ2vZsmX6+9//roKCAqWmproug2vWrJkWL16sv/3tb4qIiFDv3r2VkpLidvnT9OnTFRoaqkWLFmnJkiVq0aKFFi5cqGeffVaRkZHlqvXZZ5/VuXPntHjx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", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "image/png": "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vlxjxoxxfc29vb31+uuvq1+/fvroo4/Uu3dvSdLo0aO1e/duPf/882rZsqWOHz+u3bt36+jRo2UeHwC4sQAAJVqyZIklqdQpKirKbZuoqCgrPj7eNT9o0CCrQ4cOpe5nzpw5liQrLS3NbbndbrckWQ888IDb8i+++MKSZD355JOWZVnWsWPHLB8fH2vEiBFu7T7//HNLktWzZ0/XspSUFEuS1aNHjzKPPz8/38rLy7N69+5tDR061LU8LS3NkmS1b9/eKigocC1PTk62JFm33HKLWz+PPPKIJck6ceJEifsqKCiwIiIirHbt2rn1efLkSSs0NNTq3r17kWP4xz/+UeYxnN/2+uuvt5o0aWL9/vvvlmVZVnx8vFW/fn23bSRZU6dOLdLX+V/bs+fHgw8+6Nbu1ltvtSRZc+fOdVveoUMHq2PHjq75s+MYERHhqseyLCszM9Nq1KiRddNNN7mW9evXz2rSpEmRMZw4caLl6+trHTt2zO14y/P1tSzLWrhwoSXJeu+999yWz5o1y5JkrV+/3rWsZ8+eVps2bcrV77ltN27caEmy5s2b53bcc+bMcbW/4447LB8fH8vhcLj1M2DAAMvf3986fvy4ZVmW9Ze//MWy2WzW3r173dr16dPHkmSlpKRYlmVZp0+ftho1amQNHjzYrV1BQYHVvn17q0uXLq5lDRo0sB555JFyHRcAlIbHAgGgHN58803t2LGjyHT28bTSdOnSRfv27dMDDzygjz76SJmZmeXeb0pKiiQVeftgly5dFBsb63q8afv27crJydHtt9/u1q5r165F3mZ41m233Vbs8oULF6pjx47y9fVV3bp15e3trY8//lh2u71I24EDB8rL67/fSmJjYyVJN998s1u7s8sdDkcJR3rmzsXhw4c1evRotz4bNGig2267Tdu3b1dWVlaJ25fXrFmz9NNPP7keyzRh0KBBbvOljcPBgweLbD9s2DD5+vq65gMCAjR48GBt3bpVBQUFys7O1scff6yhQ4fK399f+fn5rmngwIHKzs7W9u3b3fos6et7vk2bNql+/foaPny42/Kz51xxjydWVO/evdW3b18988wzJT6+t2nTJvXu3VtNmzYtUkdWVpbr0dCUlBS1adNG7du3d2s3cuRIt/lt27bp2LFjio+PdxuvwsJC9e/fXzt27NDp06clnfn3tHTpUj333HPa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AAAYQLgCAAAAAAMIVwAAAABgAOEKAAAAAAwgXAEAAACAAYQrAAAAADCAcAUAAAAABtSIcPXqq6+qWbNm8vX1VadOnfTJJ5+U2n7Lli3q1KmTfH19deWVV2rhwoUXqVIAAAAAtVW1D1fvvvuuHnnkET311FPas2ePbrjhBg0YMEAOh6PY9mlpaRo4cKBuuOEG7dmzR08++aQeeughrVy58iJXDgAAAKA2qfbhau7cubr77rs1fvx4xcbGKjk5WU2bNtVrr71WbPuFCxcqMjJSycnJio2N1fjx4zVu3Di98MILF7lyAAAAALVJ3aouoDS5ubnatWuXnnjiCbflffv21bZt24rd5vPPP1ffvn3dlvXr10+LFi1SXl6evL29i2yTk5OjnJwc1/yJEyckSZmZmRd6CEacOnVKknTy5C4VFJwy2vfp0/b//+deHT9u1Zi+Pd0/tVdN/9ReNf17uvasrFRJ0q5du1zXM5O8vLxUWFhovF9JSk09U3tNu/56un9Pf00Z94vft6f7p/aq6b8m1372OnPq1Kkq/5n87P4tqxzHaFVjP//8syXJ+uyzz9yWP//881bLli2L3aZFixbW888/77bss88+syRZhw8fLnabqVOnWpKYmJiYmJiYmJiYmJiKnQ4dOlRmfqnWd67OstlsbvOWZRVZVlb74paflZiYqISEBNd8YWGhjh07puDg4FL3UxGZmZlq2rSpDh06pMDAQCN94r8YX89ifD2HsfUsxtezGF/PYWw9i/H1rEttfC3L0smTJxUREVFm22odrkJCQlSnTh1lZGS4LT9y5IgaN25c7DZhYWHFtq9bt66Cg4OL3cbHx0c+Pj5uyxo2bFj5wksRGBh4SZxk1RXj61mMr+cwtp7F+HoW4+s5jK1nMb6edSmNb1BQULnaVesXWtSrV0+dOnXShg0b3JZv2LBB3bt3L3abbt26FWm/fv16de7cudjPWwEAAACACdU6XElSQkKC3njjDS1evFh2u12PPvqoHA6H7rvvPklnHukbM2aMq/19992ngwcPKiEhQXa7XYsXL9aiRYs0efLkqjoEAAAAALVAtX4sUJJGjBiho0eP6plnnlF6erratm2rdevWKSoqSpKUnp7u9juvmjVrpnXr1unRRx/VggULFBERoVdeeUW33XZbVR2CpDOPHk6dOrXI44cwg/H1LMbXcxhbz2J8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dOjQIbftHnvsMU2aNEl79uxR9+7ddcstt+jo0aOSpPT0dPXs2VMdOnTQzp079eGHH+qXX37R7bff7tbHsmXLVLduXX322Wd6/fXXi63v5Zdf1osvvqgXXnhBX375pfr166dbbrlF+/fvd+2rTZs2mjRpktLT0zV58uQSj7U847Zr1y7dfvvtuuOOO/TVV19p2rRpmjJlipYuXepqM3bsWB04cECbNm3SP//5T7366qs6cuSIa71lWbr55puVkZGhdevWadeuXerYsaN69+6tY8eOSZLuuusuNWnSRDt27NCuXbv0xBNPyNvbu8TaAQDlYAEAUAHx8fHWkCFDLMuyrK5du1rjxo2zLMuyVq9ebZ37bWXq1KlW+/bt3bZ96aWXrKioKLe+oqKirIKCAteymJgY64YbbnDN5+fnW/Xr17feeecdy7IsKy0tzZJkzZw509UmLy/PatKkiTVr1izLsixrypQpVt++fd32fejQIUuSlZqaalmWZfXs2dPq0KFDmccbERFhPf/8827LrrnmGuuBBx5wzbdv396aOnVqqf2Ud9xGjhxp9enTx23bxx57zGrdurVlWZaVmppqSbK2b9/uWm+32y1J1ksvvWRZlmV9/PHHVmBgoJWdne3WT/Pmza3XX3/dsizLCggIsJYuXVrG0QMAKoI7VwCASps1a5aWLVumb7/9ttJ9tGnTRl5e//121LhxY7Vr1841X6dOHQUHB7vdmZGkbt26uf5et25dde7cWXa7XdKZuz8pKSlq0KCBa2rVqpWkM5+POqtz586l1paZmanDhw/ruuuuc1t+3XXXufZVGaWNm91uL3Z/+/fvV0FBgex2u+t4z2rVqpUaNmzomt+1a5dOnTql4OBgtzFIS0tzHX9CQoLGjx+vm266STNnznQbFwBA5RCuAACV1qNHD/Xr109PPvlkkXVeXl6yLMttWV5eXpF25z+KZrPZil1WWFhYZj1n37pXWFiowYMHa+/evW7T/v371aNHD1f7+vXrl9nnuf2eZVnWBb3hr7RxK67vc8fx7N9L239hYaHCw8OLHH9qaqoee+wxSWc+E/fNN9/o5ptv1qZNm9S6dWutXr260scEAJDqVnUBAICabebMmerQoYNatmzptvzyyy9XRkaGW1gw+buptm/f7gpK+fn52rVrlyZOnChJ6tixo1auXKno6GjVrVv5b3WBgYGKiIjQp59+6hbKtm3bpi5dulxQ/SWNW+vWrfXpp5+6Ldu2bZtatmypOnXqKDY2Vvn5+dq5c6erhtTUVB0/ftzVvmPHjsrIyFDdunXdXiByvpYtW6ply5Z69NFHdeedd2rJkiUaOnToBR0XANRm3LkCAFyQdu3a6a677tK8efPclsfFxenXX3/V7Nmz9eOPP2rBggX697//bWy/CxYs0OrVq/Xdd99pwoQJ+u233zRu3DhJ0oQJE3Ts2DHdeeed+s9//qP/+7//0/r16zVu3DgVFBRUaD+PPfaYZs2apXfffVepqal64okntHfvXj388MMXVH9J4zZp0iR9/PHHevbZZ/X9999r2bJlmj9/vutFGTExMerfv7/uueceffHFF9q1a5fGjx8vPz8/Vx833XSTunXrpltvvVUfffSRDhw4oG3btunpp5/Wzp079fvvv2vixInavHmzDh48qM8++0w7duxQbGzsBR0TANR2hCsAwAV79tlnizwCGBsbq1dffVULFixQ+/bt9Z///KfUN+lV1MyZMzVr1iy1b99en3zyiT744AOFhIRIkiIiIvTZZ5+poKBA/fr1U9u2bfXwww8rKCjI7fNd5fHQQw9p0qRJmjRpktq1a6cPP/xQa9asUYsWLS74GIobt44dO+q9997TihUr1LZtW/31r3/VM888o7Fjx7raLFmyRE2bNlXPnj01bNgw1yvXz7LZbFq3bp169OihcePGqWXLlrrjjjt04MABNW7cWHXq1NHRo0c1ZswYtWzZUrfffrsGDBig6dOnX/AxAUBtZrPOv6oDAAAAACqMO1cAAAAAYADhCgAAAAAMIFwBAAAAgAGEKwAAAAAwgHAFAAAAAAYQrgAAAADAAMIVAAAAABhAuAIAAAAAAwhXAAAAAGAA4QoAAAAADCBcAQAAAIAB/w+pJBPaPIiAwAAAAABJRU5ErkJggg==", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# Plot a histogram for the \"Number of nodes\" column using Matplotlib\n", - "plt.figure(figsize=(10, 6))\n", - "plt.hist(df['Nodes in prize'], bins=30, color='blue', edgecolor='black', alpha=0.7)\n", - "plt.title('Histogram of Nodes in prize')\n", - "plt.xlabel('Nodes in prize')\n", - "plt.ylabel('Frequency')\n", - "plt.show()\n", - "\n", - "# Alternatively, using Seaborn for a more styled plot\n", - "plt.figure(figsize=(10, 6))\n", - "sns.histplot(df['Number of nodes'], bins=30, color='blue')\n", - "plt.title('Histogram of Number of Nodes')\n", - "plt.xlabel('Number of Nodes')\n", - "plt.ylabel('Frequency')\n", - "plt.show()\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "base", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.8.19" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/yeast-osmotic-stress/3_Oi1_Output_eval.ipynb b/yeast-osmotic-stress/3_Oi1_Output_eval.ipynb deleted file mode 100644 index d176fbc..0000000 --- a/yeast-osmotic-stress/3_Oi1_Output_eval.ipynb +++ /dev/null @@ -1,407 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 25, - "metadata": {}, - "outputs": [], - "source": [ - "#imports\n", - "\n", - "import pandas as pd\n", - "from matplotlib_venn import venn2, venn2_circles \n", - "from matplotlib import pyplot as plt \n", - " " - ] - }, - { - "cell_type": "code", - "execution_count": 26, - "metadata": {}, - "outputs": [], - "source": [ - "#Load data\n", - "\n", - "#Yeast Osmotic Stress Study edge results\n", - "df = pd.read_csv(\"Raw_data\\yeast_pcsf_network.sif\", sep = '\\t', names=['Edge'])\n", - "\n", - "#My Ensemble network output\n", - "df_ens = pd.read_csv(\"SPRAS_output\\ensemble-pathway.txt\", sep = '\\t', names = ['Node1','Node2','Frequency','Direction'])\n", - "\n", - "#Gold Standard ID's\n", - "gold = pd.read_csv(\"Raw_data\\goldStandardUnionDetailed.txt\", sep = '\\t')\n", - "\n", - "# #Edge Freq from Yeast study\n", - "edge_freq = pd.read_csv(\"Raw_data\\_edgeFreq.eda\", sep = '\\t')" - ] - }, - { - "cell_type": "code", - "execution_count": 27, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
EdgeFrequency
0YJR059W pp YPR074C1.000000
1YBR160W pp YDR239C1.000000
2YJR059W pp YPR091C0.325000
3YNL166C pp YPL031C1.000000
4YJR059W pp YKL064W0.327000
\n", - "
" - ], - "text/plain": [ - " Edge Frequency\n", - "0 YJR059W pp YPR074C 1.000000\n", - "1 YBR160W pp YDR239C 1.000000\n", - "2 YJR059W pp YPR091C 0.325000\n", - "3 YNL166C pp YPL031C 1.000000\n", - "4 YJR059W pp YKL064W 0.327000" - ] - }, - "execution_count": 27, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "#Split the freq by = and then concat the freq to the Yeast Osmotic Stress network df\n", - "\n", - "edge_freq[['Edge', 'Frequency']] = edge_freq[\"EdgeFrequency\"].str.split('=', expand=True)\n", - "\n", - "edge_freq = edge_freq.drop(columns=['EdgeFrequency','Edge'])\n", - "\n", - "df = pd.concat([df,edge_freq], axis=1)\n", - "\n", - "df.head()\n" - ] - }, - { - "cell_type": "code", - "execution_count": 28, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "RangeIndex: 368 entries, 0 to 367\n", - "Data columns (total 4 columns):\n", - " # Column Non-Null Count Dtype \n", - "--- ------ -------------- ----- \n", - " 0 Node1 368 non-null object\n", - " 1 Node2 368 non-null object\n", - " 2 Frequency 368 non-null object\n", - " 3 Direction 368 non-null object\n", - "dtypes: object(4)\n", - "memory usage: 11.6+ KB\n" - ] - } - ], - "source": [ - "df_ens.info()" - ] - }, - { - "cell_type": "code", - "execution_count": 29, - "metadata": {}, - "outputs": [], - "source": [ - "#Split the Edge column into component parts to work with Nodes later\n", - "\n", - "df[['Node1', 'pp', 'Node2']] = df[\"Edge\"].str.split(' ', expand=True)\n" - ] - }, - { - "cell_type": "code", - "execution_count": 30, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "RangeIndex: 344 entries, 0 to 343\n", - "Data columns (total 5 columns):\n", - " # Column Non-Null Count Dtype \n", - "--- ------ -------------- ----- \n", - " 0 Edge 344 non-null object\n", - " 1 Frequency 344 non-null object\n", - " 2 Node1 344 non-null object\n", - " 3 pp 344 non-null object\n", - " 4 Node2 344 non-null object\n", - "dtypes: object(5)\n", - "memory usage: 13.6+ KB\n" - ] - } - ], - "source": [ - "df.info()" - ] - }, - { - "cell_type": "code", - "execution_count": 31, - "metadata": {}, - "outputs": [], - "source": [ - "#Assign gold ID column to its own df in order to do set intersect later\n", - "\n", - "gold['Node1'] = gold['ORF']\n", - "\n", - "gold_id = gold['Node1']\n" - ] - }, - { - "cell_type": "code", - "execution_count": 32, - "metadata": {}, - "outputs": [], - "source": [ - "df_ens = df_ens.sort_values(by='Frequency', ascending=False)" - ] - }, - { - "cell_type": "code", - "execution_count": 33, - "metadata": {}, - "outputs": [], - "source": [ - "#Set intersection Func & Ratio Func\n", - "\n", - "def gen_stats(df1,column, denom):\n", - "\n", - " num = df1[column].nunique()\n", - " ratio = ((num/denom) * 100)\n", - " ratio = round(ratio,1)\n", - " print(f'{ratio}% of the edges were in the output')\n", - "\n", - "def intersect(df1, df2, on, how, sort, freq=False):\n", - " merge_df = pd.merge(df1,df2, on=on, how=how)\n", - "\n", - " if freq != False:\n", - " merge_df = merge_df.sort_values(by=sort, ascending=False)\n", - " \n", - " return merge_df" - ] - }, - { - "cell_type": "code", - "execution_count": 34, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "46.2% of the edges were in the output\n" - ] - } - ], - "source": [ - "#Overlap my ensemble with the Study results\n", - "\n", - "merge_df = intersect(df,df_ens,['Node1','Node2',], 'inner', 'Frequency_y', freq=True)\n", - "\n", - "\n", - "gen_stats(merge_df, 'Edge', 344)\n" - ] - }, - { - "cell_type": "code", - "execution_count": 35, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "Edge 159\n", - "Frequency_x 44\n", - "Node1 21\n", - "pp 1\n", - "Node2 149\n", - "Frequency_y 67\n", - "Direction 2\n", - "dtype: int64" - ] - }, - "execution_count": 35, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "merge_df.nunique()" - ] - }, - { - "cell_type": "code", - "execution_count": 36, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "40.5% of the edges were in the output\n" - ] - } - ], - "source": [ - "#Concat Node2 to Node1 column and then do set intersection with Gold Standard Dataset\n", - "\n", - "df_combined = pd.concat([df_ens['Node1'], df_ens['Node2']], ignore_index=True)\n", - "df_combined.rename('Node1', inplace =True)\n", - "\n", - "intersect_df = intersect(gold_id, df_combined, 'Node1', 'inner', False)\n", - " \n", - "gen_stats(intersect_df, 'Node1', 42)" - ] - }, - { - "cell_type": "code", - "execution_count": 37, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "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", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# depict venn diagram \n", - "venn = venn2(subsets=(56,42,17), \n", - " set_labels=('SPRAS Nodes', 'Gold Standard Nodes'), \n", - " set_colors=(\"red\",\"green\"), alpha=0.7) \n", - " \n", - "# add outline \n", - "venn2_circles(subsets=(56,42,17), \n", - " linestyle=\"solid\", \n", - " linewidth=2) \n", - "\n", - "\n", - "for text in venn.set_labels:\n", - " text.set_fontsize(18) # Set the desired font size\n", - "\n", - "for text in venn.subset_labels:\n", - " text.set_fontsize(20) # Set the desired font size\n", - "plt.show() \n", - "# assign title of the venn diagram \n", - "plt.show() " - ] - }, - { - "cell_type": "code", - "execution_count": 38, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "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", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# depict venn diagram \n", - "venn = venn2(subsets=(367,344,159), \n", - " set_labels=('SPRAS Edges', 'Study Edges'), \n", - " set_colors=(\"red\", \"green\"), alpha=0.7) \n", - " \n", - "# add outline \n", - "venn2_circles(subsets=(367,344,159), \n", - " linestyle=\"solid\", \n", - " linewidth=2) \n", - " \n", - "\n", - "\n", - "\n", - "for text in venn.set_labels:\n", - " text.set_fontsize(18) # Set the desired font size\n", - "\n", - "for text in venn.subset_labels:\n", - " text.set_fontsize(20) # Set the desired font size\n", - "plt.show() " - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "base", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.8.19" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/yeast-osmotic-stress/File_compare.py b/yeast-osmotic-stress/File_compare.py deleted file mode 100644 index 8fc290d..0000000 --- a/yeast-osmotic-stress/File_compare.py +++ /dev/null @@ -1,9 +0,0 @@ - -import filecmp - -f1 = r"C:\Users\dnachreiner\Desktop\BDS_Project\Scripts\Raw_data\network1.txt" -f2 = r"C:\Users\dnachreiner\Desktop\BDS_Project\Scripts\Raw_data\network2.txt" - -# deep comparison -result = filecmp.cmp(f1, f2, shallow=False) -print(result) \ No newline at end of file diff --git a/yeast-osmotic-stress/Processed_data/prizes1_dummies.txt b/yeast-osmotic-stress/Processed_data/prizes1_dummies.txt deleted file mode 100644 index f6357eb..0000000 --- a/yeast-osmotic-stress/Processed_data/prizes1_dummies.txt +++ /dev/null @@ -1,1600 +0,0 @@ -NODEID prize -YAL001C 0.492109552653 -YAL003W 0.260868738616 -YAL005C 0.16658691407 -YAL011W 0.316114941083 -YAL013W 0.341043650428 -YAL016W 0.423739507165 -YAL017W 0.147046143417 -YAL019W 0.280362489974 -YAL021C 0.147393840192 -YAL022C 0.494779774549 -YAL023C 0.281431196996 -YAL024C 0.890252115157 -YAL025C 0.0476962570919 -YAL026C 1.37048950066 -YAL029C 0.127777989296 -YAL031C 0.872001311483 -YAL035W 1.91096286083 -YAL038W 1.71406519206 -YAL041W 0.654893757473 -YAL043C 0.367594721961 -YAL047C 0.731530837054 -YAL051W 0.145481822266 -YAL053W 0.589615474067 -YAL056W 0.36914725056 -YAR002W 0.521639043604 -YAR007C 0.0938944440439 -YAR014C 2.97789500336 -YAR019C 0.13216677882 -YAR042W 0.501617480543 -YBL002W 0.238221145521 -YBL004W 0.178681630887 -YBL007C 1.93738205994 -YBL008W 0.142740172116 -YBL017C 0.283447708378 -YBL024W 0.105275783416 -YBL027W 0.215948369734 -YBL031W 0.286286591422 -YBL032W 0.140778655783 -YBL034C 0.64228568306 -YBL035C 0.446679711228 -YBL037W 0.67446065156 -YBL042C 0.348371920167 -YBL046W 0.956459509109 -YBL047C 2.20469851279 -YBL051C 1.40201265915 -YBL054W 2.09437183384 -YBL058W 0.245659757072 -YBL060W 0.43578769602 -YBL063W 0.494466814282 -YBL066C 0.144960004721 -YBL067C 0.392866916231 -YBL072C 0.348004621251 -YBL084C 0.0877793671951 -YBL085W 1.12362254116 -YBL086C 0.383275739764 -YBL091C 0.539133990335 -YBL092W 0.123666196454 -YBL097W 0.221690480542 -YBL099W 0.210112196494 -YBL101C 2.69105671187 -YBL103C 0.992976770975 -YBL104C 0.362862770067 -YBL105C 0.668868077783 -YBR001C 0.578650112785 -YBR007C 0.277627747659 -YBR009C 0.212382570122 -YBR011C 0.294076649192 -YBR021W 0.517667979253 -YBR023C 0.988418489013 -YBR028C 0.944304557252 -YBR029C 0.380014251045 -YBR031W 0.848798181244 -YBR038W 0.381947800689 -YBR042C 0.406254232591 -YBR043C 1.38492275708 -YBR048W 0.438825113176 -YBR049C 0.225919309225 -YBR054W 0.434207878528 -YBR059C 1.90954271528 -YBR060C 0.292428392887 -YBR068C 0.549683471512 -YBR069C 0.696439020656 -YBR072W 0.534600116703 -YBR073W 0.16320329859 -YBR074W 0.220967261888 -YBR079C 0.656450606305 -YBR080C 1.58983259373 -YBR081C 0.449323656991 -YBR086C 0.758306228435 -YBR095C 0.197739606006 -YBR098W 0.824417915804 -YBR102C 0.806064287469 -YBR105C 0.180020521466 -YBR106W 0.374622206191 -YBR108W 0.816722571001 -YBR109C 0.539133990335 -YBR112C 0.473029785591 -YBR114W 0.280837568612 -YBR118W 0.404358194833 -YBR121C 0.139076515046 -YBR127C 0.494466814282 -YBR130C 0.936741573781 -YBR133C 0.338651711258 -YBR142W 0.0574156124272 -YBR143C 0.228356954201 -YBR151W 0.227248183781 -YBR156C 0.435475496164 -YBR157C 0.80050039634 -YBR160W 0.192513180425 -YBR161W 0.642819625185 -YBR172C 1.3426685182 -YBR181C 0.205779625574 -YBR188C 0.371503105204 -YBR189W 0.360195694732 -YBR196C 0.293553436749 -YBR198C 0.0907179597678 -YBR200W 0.23295545735 -YBR207W 0.421592586246 -YBR211C 0.488572443791 -YBR212W 0.456029070526 -YBR214W 2.5821663837 -YBR215W 0.169144353995 -YBR218C 0.2555611589 -YBR225W 0.426747808907 -YBR235W 1.27889862332 -YBR238C 0.155749232678 -YBR239C 0.302055788099 -YBR245C 0.396802150855 -YBR247C 0.50185127379 -YBR255W 0.797713937212 -YBR270C 1.3888465097 -YBR275C 0.415866810523 -YBR276C 0.49661573803 -YBR279W 0.179285935275 -YBR287W 0.842102570547 -YBR289W 0.08800587129 -YBR290W 0.299435993486 -YCL005W 0.957246013602 -YCL010C 0.0729975598 -YCL011C 0.408277085153 -YCL012C 0.309395176351 -YCL014W 0.826335254689 -YCL024W 0.513337106747 -YCL029C 0.493339908814 -YCL032W 0.208392399791 -YCL037C 0.430499386223 -YCL051W 0.873529267849 -YCL054W 0.327687364176 -YCL061C 0.980610305079 -YCL063W 0.245008800404 -YCR002C 0.334911461262 -YCR007C 0.599986782203 -YCR011C 1.08577227222 -YCR012W 0.557679658892 -YCR023C 1.22266655944 -YCR028C 0.229466921769 -YCR030C 2.14681811887 -YCR033W 1.33613624047 -YCR034W 0.390447577993 -YCR042C 0.6531517595 -YCR048W 0.31606105858 -YCR057C 0.320305975238 -YCR061W 0.450794143059 -YCR065W 0.796936697353 -YCR073WA 0.562750951126 -YCR077C 0.137457358247 -YCR084C 0.719898869976 -YCR087CA 0.211136826982 -YCR088W 1.01314063249 -YCR091W 1.14763232682 -YCR093W 0.416538682872 -YDL003W 0.136847604193 -YDL005C 0.164142648848 -YDL006W 0.135379997548 -YDL013W 0.408473763861 -YDL019C 0.579318191793 -YDL020C 1.15939577665 -YDL022W 0.525968621033 -YDL025C 0.319279575333 -YDL031W 0.347582343068 -YDL035C 0.462813288616 -YDL042C 0.15898325116 -YDL051W 0.18398199396 -YDL055C 0.308826824348 -YDL056W 0.333080194007 -YDL061C 0.386487205964 -YDL063C 0.274530044672 -YDL065C 0.366364182946 -YDL070W 0.407861138234 -YDL075W 0.333316112689 -YDL081C 0.101918959711 -YDL083C 0.359045967244 -YDL084W 2.09372917927 -YDL088C 0.179122584802 -YDL089W 0.176805001908 -YDL092W 0.406863157977 -YDL097C 0.637086920572 -YDL099W 0.418176368643 -YDL101C 0.864491397115 -YDL102W 0.345986147027 -YDL105W 0.410581650784 -YDL108W 0.0651586751285 -YDL110C 0.0257375614136 -YDL115C 0.259784684683 -YDL117W 0.613122851068 -YDL121C 0.911653237309 -YDL122W 0.221196549945 -YDL126C 0.179236928191 -YDL127W 0.450274292554 -YDL129W 1.01908266231 -YDL131W 9.11770723061 -YDL133W 0.588996402006 -YDL136W 0.343677541313 -YDL140C 2.8787458279 -YDL148C 0.115222363807 -YDL149W 0.327227467761 -YDL150W 0.27536469615 -YDL153C 0.176705738189 -YDL155W 0.853344777881 -YDL156W 0.407937702213 -YDL160C 0.314754522281 -YDL160CA 0.171206827418 -YDL161W 0.641730978135 -YDL164C 0.610038557175 -YDL166C 0.167328684606 -YDL167C 0.511265612583 -YDL173W 1.18339123151 -YDL175C 1.89142870866 -YDL176W 0.289439292997 -YDL180W 0.580892633216 -YDL182W 0.105504272466 -YDL185W 0.0866479127552 -YDL188C 0.475294377478 -YDL189W 1.20559661107 -YDL192W 0.249599302895 -YDL195W 1.28942136451 -YDL201W 0.367880715546 -YDL206W 1.04578879735 -YDL207W 0.298541018517 -YDL211C 0.531768206912 -YDL213C 0.315450299985 -YDL220C 0.474151616913 -YDL223C 0.962322591673 -YDL224C 2.15341441869 -YDL225W 0.783330923824 -YDL226C 0.936364684351 -YDL229W 0.477366480067 -YDL231C 0.213805139549 -YDL233W 0.405718994866 -YDL240W 0.517275603041 -YDR001C 0.857495069079 -YDR002W 1.25223397847 -YDR005C 0.454565329134 -YDR006C 0.921608772023 -YDR011W 1.60081796635 -YDR017C 2.68956754395 -YDR022C 0.290070469602 -YDR027C 0.510455621662 -YDR028C 0.64043583662 -YDR033W 0.396954113467 -YDR037W 0.444985039522 -YDR039C 0.215981882982 -YDR050C 0.18599337007 -YDR052C 2.77112591108 -YDR054C 0.111699072197 -YDR060W 0.292598899219 -YDR063W 0.0705267208767 -YDR072C 0.526971644121 -YDR074W 0.505077914752 -YDR080W 0.316725021579 -YDR088C 0.241867414691 -YDR089W 0.793354900512 -YDR090C 0.411559989756 -YDR093W 0.516721188566 -YDR096W 1.08956594507 -YDR097C 0.734947233632 -YDR103W 0.750227017752 -YDR108W 0.53610555957 -YDR113C 0.258476924863 -YDR119W 0.511012053801 -YDR122W 1.35534996932 -YDR127W 0.318577153796 -YDR128W 1.49260619933 -YDR129C 0.638231640581 -YDR130C 0.480368537347 -YDR135C 0.910447613525 -YDR137W 0.362157939676 -YDR138W 0.392427338214 -YDR141C 0.233141975834 -YDR145W 0.269981813878 -YDR146C 0.37993915468 -YDR147W 0.199625235658 -YDR150W 4.32629162616 -YDR153C 2.32768736418 -YDR155C 0.275891113299 -YDR156W 0.143181588906 -YDR158W 0.18116617427 -YDR159W 0.365916453858 -YDR162C 1.05206804724 -YDR166C 0.250233980827 -YDR167W 0.0640550644104 -YDR168W 0.489234634532 -YDR169C 1.03274284101 -YDR170C 0.580461108486 -YDR172W 2.44004857014 -YDR174W 0.100304905796 -YDR176W 0.146435429846 -YDR181C 0.32162155476 -YDR182W 2.21712179686 -YDR186C 0.816149113949 -YDR192C 0.307311939064 -YDR195W 0.367706537116 -YDR200C 0.428249610706 -YDR201W 0.223669671388 -YDR207C 0.385486258913 -YDR208W 0.653518670754 -YDR211W 0.300299473666 -YDR213W 0.292810964098 -YDR216W 0.450168697308 -YDR217C 2.41012148544 -YDR219C 0.183719790056 -YDR226W 0.23204671335 -YDR227W 0.6555805139 -YDR229W 1.02183366392 -YDR233C 2.15652605853 -YDR239C 1.35417002602 -YDR243C 0.662296662337 -YDR251W 0.734707140596 -YDR264C 0.252157197401 -YDR266C 0.266697727515 -YDR283C 1.38078421425 -YDR289C 0.236520435613 -YDR293C 8.57913885763 -YDR299W 0.491530780164 -YDR302W 1.85634833382 -YDR303C 0.27681717791 -YDR309C 0.273081613695 -YDR310C 0.680954413646 -YDR320C 0.371907676303 -YDR325W 0.382005730386 -YDR326C 0.651132077917 -YDR328C 1.2354839862 -YDR330W 0.369494402007 -YDR333C 0.259061529259 -YDR348C 1.02680005934 -YDR351W 0.802184921469 -YDR352W 0.126375761797 -YDR353W 0.221815227874 -YDR356W 0.189203206731 -YDR358W 0.271545198486 -YDR359C 0.181558424236 -YDR361C 0.227185312501 -YDR363W 0.297909895269 -YDR365C 0.337666874203 -YDR369C 0.285090720533 -YDR372C 0.173511248064 -YDR379W 1.25265786419 -YDR381W 0.175428790822 -YDR385W 0.446403572644 -YDR386W 0.892818427795 -YDR388W 0.462197028366 -YDR389W 1.69692859032 -YDR390C 0.265556915603 -YDR397C 0.491409085095 -YDR398W 0.762436281682 -YDR407C 1.41635335823 -YDR418W 0.0645251652666 -YDR422C 1.59780174098 -YDR428C 0.163881962981 -YDR429C 0.292781749228 -YDR430C 0.49733133523 -YDR432W 0.100170319757 -YDR436W 0.493662107248 -YDR439W 0.133958010101 -YDR443C 2.2177256455 -YDR447C 0.318230060076 -YDR450W 0.525662605935 -YDR451C 0.391107799975 -YDR454C 0.133563525741 -YDR456W 0.315935340565 -YDR457W 0.571257281156 -YDR458C 0.541316585367 -YDR460W 0.078883046522 -YDR464W 0.187261004842 -YDR465C 0.0732262898184 -YDR466W 0.839363733233 -YDR475C 1.20751807698 -YDR477W 0.158724796297 -YDR479C 0.25219156242 -YDR480W 0.232906301007 -YDR481C 0.0618572612917 -YDR485C 0.46693507813 -YDR490C 0.115033242946 -YDR497C 0.850298397226 -YDR499W 0.385695345101 -YDR505C 1.02758672291 -YDR507C 0.425946945958 -YDR508C 0.44210472239 -YDR517W 0.261109528909 -YDR524C 0.248707681358 -YDR528W 0.56120392077 -YEL013W 0.105612927258 -YEL015W 0.396175474223 -YEL017W 0.375066256707 -YEL022W 0.202605121798 -YEL032W 1.01981379978 -YEL037C 2.45300432356 -YEL043W 1.56592961109 -YEL046C 0.224435280483 -YEL055C 0.162983392023 -YEL061C 0.372075710512 -YEL062W 0.251567620608 -YEL063C 0.112880300542 -YER002W 0.303576199697 -YER008C 0.879470525087 -YER013W 0.443575489599 -YER016W 1.02547068752 -YER018C 0.200755431596 -YER020W 1.61499246689 -YER023W 0.262676661822 -YER025W 0.421371433001 -YER026C 0.174670246653 -YER027C 0.813360504133 -YER028C 0.27333684715 -YER032W 0.423584284415 -YER033C 1.7062763901 -YER038C 0.197930891195 -YER040W 2.28250891175 -YER041W 0.227725812206 -YER042W 0.153416242255 -YER043C 0.1039374492 -YER047C 0.367117606396 -YER048C 1.05734629042 -YER052C 0.222548721766 -YER054C 0.333881659468 -YER056C 0.248467723526 -YER059W 0.197110514713 -YER063W 0.395795802644 -YER068W 0.429459350122 -YER070W 0.0284277045727 -YER074W 0.288417627312 -YER075C 3.2108967825 -YER079W 0.297954390183 -YER083C 0.242055088996 -YER087CB 0.266036893995 -YER088C 2.26567692517 -YER089C 0.270588741972 -YER091C 0.27953072573 -YER093C 1.12377972659 -YER100W 0.272506428553 -YER104W 0.173767067737 -YER111C 0.361768359419 -YER114C 1.45990369613 -YER116C 0.18738770708 -YER120W 0.240375394498 -YER122C 0.386479888596 -YER123W 1.52217763319 -YER124C 0.359408719043 -YER127W 0.208517259806 -YER129W 0.202762485276 -YER130C 0.753895990116 -YER131W 0.2040154774 -YER132C 1.78428413296 -YER140W 0.228858139728 -YER149C 0.880524295066 -YER151C 0.225398337341 -YER155C 5.84344287714 -YER157W 0.55424501955 -YER158C 0.562495256138 -YER161C 0.350044565863 -YER162C 0.0867837661421 -YER164W 0.495490510515 -YER165W 0.551983510418 -YER166W 0.875380708225 -YER167W 0.231819910664 -YER169W 0.775598429708 -YER176W 0.312549009861 -YER177W 0.375400928906 -YER178W 0.224040274218 -YFL001W 0.558091635996 -YFL004W 0.413633959051 -YFL005W 0.129639226255 -YFL007W 0.290956452475 -YFL013C 0.379544962883 -YFL014W 0.480161699348 -YFL021W 1.51556278876 -YFL023W 0.0382956981815 -YFL026W 0.264596479491 -YFL033C 1.58553969418 -YFL034CB 0.354903461136 -YFL034W 0.286638506888 -YFL042C 1.15280481341 -YFL045C 0.100708588597 -YFR002W 0.382438207023 -YFR003C 0.308710351168 -YFR005C 0.512842976691 -YFR010W 0.345964030343 -YFR014C 0.387921202801 -YFR015C 0.224287289892 -YFR016C 0.820567033484 -YFR017C 0.286526343087 -YFR019W 0.78550870356 -YFR024CA 1.34241486855 -YFR028C 0.669671072698 -YFR029W 0.1264545025 -YFR034C 3.61835613412 -YFR037C 0.293040736232 -YFR053C 0.278828609973 -YGL003C 0.367594721961 -YGL008C 0.499197946943 -YGL009C 0.486559928185 -YGL013C 0.283921772308 -YGL014W 0.99553456323 -YGL021W 0.742458278043 -YGL023C 2.27963396868 -YGL030W 0.145220937086 -YGL031C 0.25420334199 -YGL035C 0.808614222931 -YGL049C 0.820403647862 -YGL056C 0.217306279352 -YGL061C 0.335254565241 -YGL068W 0.508022916738 -YGL071W 0.164657575254 -YGL073W 0.90079919893 -YGL075C 0.136191386287 -YGL076C 0.302368500169 -YGL077C 0.252140015198 -YGL083W 0.137457358247 -YGL086W 0.41821492482 -YGL092W 0.414345171805 -YGL093W 0.398459827122 -YGL113W 0.332392869058 -YGL120C 0.229652989754 -YGL122C 0.534958026584 -YGL124C 0.353874217308 -YGL131C 0.553150931036 -YGL135W 0.308360875199 -YGL139W 0.50228034631 -YGL140C 2.39813236674 -YGL148W 0.178491567822 -YGL150C 1.42878558985 -YGL153W 0.442651610775 -YGL171W 0.270643009967 -YGL173C 0.848878284242 -YGL178W 1.00731856854 -YGL180W 0.652765232492 -YGL181W 0.689925310856 -YGL190C 0.238816867956 -YGL197W 1.05514155419 -YGL201C 0.211748624758 -YGL202W 0.217354813682 -YGL206C 1.62566714076 -YGL207W 0.130381235594 -YGL209W 0.234133395612 -YGL215W 0.827006009639 -YGL222C 0.0637790297706 -YGL227W 1.1122330576 -YGL229C 0.229218742449 -YGL232W 1.00239686372 -YGL237C 0.904575125813 -YGL244W 2.01106451057 -YGL253W 0.683344479656 -YGR002C 0.45428119555 -YGR004W 0.875539513726 -YGR008C 10.051862803 -YGR009C 0.891496958067 -YGR010W 0.0808201199533 -YGR014W 0.302757715638 -YGR034W 0.494576497899 -YGR041W 0.428429970401 -YGR044C 0.394514141956 -YGR048W 1.84321509245 -YGR055W 0.34949275976 -YGR056W 0.569296645562 -YGR058W 0.370052655716 -YGR068C 2.93704301445 -YGR080W 0.221567788538 -YGR083C 0.264236151044 -YGR086C 0.421766508535 -YGR093W 0.242206148571 -YGR097W 2.27485800106 -YGR100W 0.630572602956 -YGR103W 0.245300594785 -YGR113W 0.565304708027 -YGR116W 0.342440963779 -YGR119C 0.164544776781 -YGR125W 2.30407743285 -YGR126W 2.15585541894 -YGR128C 0.300377300506 -YGR130C 0.365244599589 -YGR134W 0.281431196996 -YGR136W 0.167743280109 -YGR138C 0.988630158685 -YGR140W 0.257476323188 -YGR143W 0.250903434095 -YGR145W 0.062812492405 -YGR148C 0.357946052859 -YGR152C 0.205892927508 -YGR155W 0.409508159872 -YGR159C 3.03717708535 -YGR162W 0.58178507518 -YGR167W 1.23599362237 -YGR170W 1.36668969744 -YGR173W 0.30649557226 -YGR178C 0.381172604717 -YGR179C 0.518837242437 -YGR184C 0.293376622885 -YGR186W 0.373532827396 -YGR188C 0.529371205254 -YGR191W 0.292987708646 -YGR192C 0.289480386138 -YGR196C 1.08161232286 -YGR197C 0.225649372248 -YGR202C 0.351741388547 -YGR206W 0.124857467256 -YGR211W 0.278698481668 -YGR217W 0.533889758823 -YGR229C 0.480368537347 -YGR237C 1.27076484231 -YGR238C 0.558267634056 -YGR240C 0.331819848023 -YGR241C 0.851119364368 -YGR245C 0.155490197748 -YGR246C 0.426962447759 -YGR250C 0.795308359068 -YGR251W 0.175175132512 -YGR253C 0.172896404369 -YGR258C 1.29130885983 -YGR260W 0.418099259379 -YGR261C 0.219586744573 -YGR270W 0.328721595402 -YGR278W 0.0681505604462 -YGR281W 0.708019316091 -YGR285C 7.67079601697 -YHL002W 0.165300974917 -YHL007C 0.891652487934 -YHL008C 1.15733487538 -YHL009C 0.434134457909 -YHL023C 0.573788927973 -YHL024W 0.222680931495 -YHL027W 0.271784213569 -YHL028W 0.677981733855 -YHL031C 0.581130026846 -YHL034C 0.427498905222 -YHL048W 0.472389130562 -YHR009C 0.671746266863 -YHR010W 0.416519427041 -YHR012W 0.263334517615 -YHR016C 0.979629370851 -YHR021C 0.385265359351 -YHR023W 0.198619873219 -YHR027C 0.213876043383 -YHR031C 2.84923238237 -YHR032W 2.38179893955 -YHR036W 0.199750856716 -YHR042W 0.199106310798 -YHR052W 0.251204022915 -YHR058C 0.169387697606 -YHR064C 0.468635445967 -YHR066W 0.397277087173 -YHR069C 0.302510833934 -YHR073W 1.52100046791 -YHR082C 2.18434377795 -YHR084W 0.315334360334 -YHR090C 0.393306360353 -YHR094C 0.280718813618 -YHR097C 0.317193013972 -YHR099W 0.230617544773 -YHR102W 1.53855525967 -YHR103W 1.2211522368 -YHR107C 0.317336817911 -YHR114W 0.403594950642 -YHR117W 0.376732435107 -YHR118C 0.107290353399 -YHR119W 0.695442231982 -YHR127W 0.102341350314 -YHR131C 3.70763521955 -YHR132WA 1.59392738818 -YHR133C 0.89762767428 -YHR135C 0.632454357689 -YHR146W 0.733180772875 -YHR149C 1.54409811788 -YHR152W 0.209890007234 -YHR154W 0.430071127951 -YHR155W 0.475434778923 -YHR158C 1.05050241879 -YHR159W 1.12004335205 -YHR164C 0.367035516155 -YHR170W 0.184260637833 -YHR174W 0.203568368934 -YHR179W 0.214995134615 -YHR182W 0.419931718715 -YHR183W 0.417271945344 -YHR186C 0.374579870926 -YHR195W 0.528323485151 -YHR196W 0.214373524436 -YHR203C 0.361319201557 -YHR205W 2.39805632136 -YHR214CB 0.284869433096 -YIL002WA 0.204748392477 -YIL003W 0.0840642647885 -YIL026C 0.296899300396 -YIL030C 0.178619042533 -YIL031W 0.443948322117 -YIL033C 1.06815056045 -YIL036W 0.782719643514 -YIL038C 0.645332753625 -YIL041W 0.644225472439 -YIL044C 0.979293710446 -YIL045W 0.102725310011 -YIL046W 0.374972708244 -YIL047C 3.63906718608 -YIL048W 0.512884231408 -YIL063C 0.121517907013 -YIL078W 0.351515260797 -YIL079C 0.158606490056 -YIL084C 0.678856944765 -YIL088C 1.47076874285 -YIL091C 0.274232672395 -YIL095W 1.01374198942 -YIL097W 0.376376572513 -YIL105C 1.8745075903 -YIL106W 0.439187239008 -YIL107C 2.62202116251 -YIL112W 0.340277404766 -YIL115C 0.342780746929 -YIL117C 0.256131779716 -YIL119C 0.131984508757 -YIL121W 1.02211920416 -YIL122W 0.412788648663 -YIL129C 0.817459538147 -YIL130W 0.263455734303 -YIL133C 0.359970888337 -YIL135C 0.978548700358 -YIL138C 0.192809966798 -YIL140W 0.639759348192 -YIL144W 0.833001827363 -YIL147C 0.591375083664 -YIL151C 0.635562038751 -YIL153W 0.0768326955574 -YIL154C 0.660654852035 -YIL159W 0.226256801487 -YIR003W 1.25863952114 -YIR006C 0.571836164439 -YIR010W 0.565545239768 -YIR023W 0.434561511873 -YIR033W 0.139600464586 -YJL005W 3.27369190923 -YJL014W 0.129260475011 -YJL016W 3.26160396174 -YJL020C 1.2237780738 -YJL026W 0.187134291475 -YJL029C 1.77871322109 -YJL033W 0.439558939056 -YJL041W 1.02005765234 -YJL042W 1.42194045179 -YJL044C 0.375512140704 -YJL050W 0.374056254174 -YJL051W 0.379188405946 -YJL053W 0.219958397585 -YJL058C 1.64616265716 -YJL070C 0.876466227709 -YJL071W 0.5585615318 -YJL076W 0.740432223886 -YJL080C 0.428356822465 -YJL081C 0.844354375713 -YJL082W 0.679784089066 -YJL084C 0.996887139392 -YJL090C 0.277508728145 -YJL092W 1.45426880574 -YJL094C 0.503956995402 -YJL095W 0.441058469993 -YJL098W 0.430742246863 -YJL110C 0.721153887008 -YJL112W 0.149389449359 -YJL115W 0.194717462894 -YJL121C 0.537743345049 -YJL123C 2.65299206777 -YJL125C 0.330011758253 -YJL128C 2.76822667851 -YJL129C 0.466237329453 -YJL130C 0.240008964735 -YJL136C 0.247562997071 -YJL138C 4.58543578232 -YJL140W 0.459496541375 -YJL141C 0.530280698484 -YJL146W 2.92587823726 -YJL155C 0.285336848224 -YJL157C 0.483581358366 -YJL162C 0.536948088339 -YJL165C 2.60656183251 -YJL168C 0.0781999199214 -YJL176C 0.192199972143 -YJL187C 1.93280186796 -YJL191W 0.333538228788 -YJL193W 0.635965527112 -YJL197W 0.470748749435 -YJL201W 0.343009782554 -YJL203W 0.484086559412 -YJL212C 0.357677344194 -YJR001W 2.90238920337 -YJR002W 0.389897162115 -YJR005W 0.584782175111 -YJR007W 0.273217473103 -YJR012C 0.168513676197 -YJR016C 0.37795663381 -YJR025C 0.501320217888 -YJR027W 0.183454754175 -YJR033C 0.479230792038 -YJR045C 0.224300444445 -YJR049C 0.488450997999 -YJR052W 0.393416200472 -YJR053W 1.03660882861 -YJR059W 2.37213172626 -YJR060W 0.353774944932 -YJR070C 0.285461405137 -YJR072C 0.467175122614 -YJR076C 0.564426948638 -YJR083C 0.278986144784 -YJR089W 0.660634539032 -YJR090C 0.260946894408 -YJR091C 0.715556937227 -YJR092W 2.27441076932 -YJR093C 0.711406800446 -YJR098C 0.204891924837 -YJR104C 0.427820683977 -YJR110W 0.223546115953 -YJR125C 0.044136711427 -YJR127C 1.00242576588 -YJR132W 1.65890233839 -YJR134C 1.2083942753 -YJR138W 0.256648389881 -YJR140C 0.193354233769 -YKL005C 0.962808111018 -YKL009W 0.529970829137 -YKL010C 0.588920910635 -YKL021C 0.357326150355 -YKL027W 0.248930535087 -YKL033W 0.42255595596 -YKL035W 0.536152393019 -YKL038W 1.20842761352 -YKL042W 0.629768748711 -YKL043W 0.222062624777 -YKL048C 0.485838966879 -YKL051W 0.483077148722 -YKL052C 0.363085419644 -YKL054C 0.450168697308 -YKL058W 0.146915848087 -YKL060C 0.681260897708 -YKL062W 2.92825660858 -YKL064W 2.90001812179 -YKL068W 0.0691522018694 -YKL072W 0.595312688891 -YKL079W 0.203389117367 -YKL088W 0.510961919277 -YKL089W 0.50171937658 -YKL090W 0.208142647338 -YKL092C 1.75404197002 -YKL101W 1.02318436925 -YKL104C 0.0698303918499 -YKL105C 0.869871406178 -YKL108W 0.23942986777 -YKL112W 0.388685507495 -YKL116C 0.294119386781 -YKL121W 0.500299505644 -YKL124W 0.123386795122 -YKL126W 2.53675422046 -YKL127W 1.184293423 -YKL129C 0.133037378747 -YKL135C 0.678441282325 -YKL139W 0.312665173558 -YKL140W 0.224856724343 -YKL142W 0.550112629647 -YKL143W 0.202887386235 -YKL144C 0.403594950642 -YKL145W 0.270708333719 -YKL146W 0.866515384076 -YKL152C 0.282261866588 -YKL159C 0.424169648803 -YKL166C 0.26643740566 -YKL168C 1.79148070239 -YKL171W 1.04162500074 -YKL172W 0.394075065626 -YKL173W 0.307195343514 -YKL175W 0.453859939969 -YKL176C 0.621310825206 -YKL179C 1.14630768989 -YKL180W 0.41283571005 -YKL181W 0.0842003616747 -YKL182W 0.266992815747 -YKL185W 0.228356954201 -YKL186C 1.28214322878 -YKL196C 0.463429812219 -YKL198C 0.543845707248 -YKL204W 1.47134355961 -YKL213C 0.308127844179 -YKL215C 0.185612862342 -YKR001C 0.277627747659 -YKR002W 0.197318727944 -YKR003W 0.163849638389 -YKR007W 0.178436714714 -YKR008W 0.321235435016 -YKR010C 0.909146569549 -YKR018C 0.153574883953 -YKR019C 1.02370969244 -YKR021W 0.505266954811 -YKR022C 0.217977323722 -YKR023W 0.349818171976 -YKR025W 0.246207223979 -YKR028W 0.332171441019 -YKR031C 0.290479963121 -YKR048C 0.45511900259 -YKR056W 0.100035721162 -YKR060W 0.299826650147 -YKR062W 0.0726799811153 -YKR067W 0.237421562152 -YKR069W 0.279887254841 -YKR071C 0.281088254326 -YKR072C 0.141040345434 -YKR077W 0.439735040931 -YKR079C 0.456911259794 -YKR082W 0.1831463851 -YKR084C 0.029116903204 -YKR089C 0.837197020566 -YKR090W 0.460925581264 -YKR091W 0.12512206057 -YKR092C 0.626869665063 -YKR093W 0.515851554662 -YKR095W 0.818768773144 -YKR096W 0.290070469602 -YKR099W 0.159758338056 -YKR100C 0.63552224146 -YLL001W 0.279292990698 -YLL010C 0.176250639692 -YLL013C 0.612328658414 -YLL015W 0.458801941589 -YLL018C 0.985719003904 -YLL021W 7.14990149613 -YLL022C 0.376732435107 -YLL024C 0.478667789088 -YLL028W 0.906845512093 -YLL029W 1.33445386232 -YLL032C 0.109561151953 -YLL034C 0.71281142537 -YLL036C 0.198368423103 -YLL038C 0.568344951041 -YLL040C 0.140386032283 -YLL043W 1.2605074778 -YLL045C 0.351700234816 -YLL048C 0.287800437354 -YLL054C 0.187007566977 -YLR003C 0.488412175996 -YLR005W 0.53664975402 -YLR006C 0.344519937527 -YLR014C 0.746140750801 -YLR015W 0.366923648979 -YLR018C 0.383607533634 -YLR020C 0.161056298452 -YLR024C 0.544855614857 -YLR025W 0.556797246593 -YLR035C 0.380064458844 -YLR044C 0.32171170686 -YLR045C 0.996167526125 -YLR047C 0.640703741108 -YLR055C 0.313333642452 -YLR058C 0.217423689588 -YLR069C 0.300181884385 -YLR071C 0.280720163981 -YLR072W 0.401596679063 -YLR075W 0.291132012009 -YLR079W 0.113700499165 -YLR082C 0.329295848103 -YLR086W 0.286881147788 -YLR093C 0.621088916504 -YLR095C 0.347325491634 -YLR096W 0.488187900516 -YLR102C 0.631430278309 -YLR106C 0.319009591418 -YLR113W 2.8742854905 -YLR114C 0.482996491529 -YLR116W 0.176723464692 -YLR130C 0.206143069691 -YLR131C 0.385154896884 -YLR133W 2.08705543454 -YLR135W 0.474669659161 -YLR136C 0.407554922948 -YLR138W 0.826719028433 -YLR143W 0.222433640606 -YLR146C 3.04025951491 -YLR148W 1.44365969076 -YLR149C 0.228790513134 -YLR150W 0.679757957767 -YLR166C 0.287945038645 -YLR167W 0.361319201557 -YLR173W 0.276345334868 -YLR175W 0.217602976587 -YLR177W 0.677587240998 -YLR180W 0.45491284838 -YLR182W 0.271548295955 -YLR187W 1.01785518489 -YLR189C 0.111445713915 -YLR190W 0.761531057397 -YLR192C 0.762476388047 -YLR196W 0.614403303988 -YLR206W 0.824890023979 -YLR219W 0.85128711483 -YLR220W 0.546961862371 -YLR221C 0.645525271039 -YLR223C 1.53140625705 -YLR226W 0.268295396605 -YLR227WB 0.155148388767 -YLR228C 0.10755397029 -YLR247C 0.344146747733 -YLR248W 5.68627640181 -YLR249W 0.541514839461 -YLR256W 0.311022965479 -YLR257W 3.89994898619 -YLR258W 0.244034582394 -YLR260W 0.467014842328 -YLR271W 0.109293689023 -YLR272C 0.207194611967 -YLR277C 0.167085688018 -YLR278C 0.138171646236 -YLR309C 0.50923978196 -YLR310C 1.14506281772 -YLR314C 0.417271945344 -YLR319C 0.711393380559 -YLR323C 0.487843922342 -YLR324W 0.399254502038 -YLR326W 0.248964823332 -YLR327C 0.387031609526 -YLR330W 1.91713394174 -YLR335W 0.476537225818 -YLR336C 0.609508397807 -YLR337C 1.41115503696 -YLR350W 0.232802869251 -YLR352W 2.23046520373 -YLR355C 0.170393953539 -YLR357W 0.34173823806 -YLR361CA 0.225645120619 -YLR362W 0.163332543386 -YLR371W 0.800274266621 -YLR386W 0.381704953518 -YLR388W 0.147218083959 -YLR398C 0.196858801366 -YLR399C 0.528571318871 -YLR403W 1.00158783802 -YLR410W 0.298423711931 -YLR410WB 0.241718174597 -YLR413W 0.114644301515 -YLR421C 0.0564448010197 -YLR425W 0.331372526104 -YLR429W 4.07084529157 -YLR432W 0.354790649231 -YLR436C 1.22877360698 -YLR441C 0.336740406967 -YLR442C 0.513852005586 -YLR449W 0.34582112405 -YLR452C 0.592745154202 -YLR455W 0.150949541472 -YLR457C 0.274250119743 -YML006C 1.08494866514 -YML007W 0.197488002406 -YML008C 0.365778488315 -YML010W 0.722919823425 -YML016C 0.646360536353 -YML017W 0.594051194039 -YML020W 0.126047755206 -YML023C 0.593114696485 -YML027W 0.983218449767 -YML028W 0.253142152564 -YML029W 0.407733430988 -YML031W 0.522965164437 -YML032C 0.0647449200354 -YML034W 1.82427906632 -YML035C 0.325647825829 -YML045W 2.94897599698 -YML052W 3.98912279157 -YML057W 0.21400042973 -YML059C 0.142146365642 -YML062C 0.323888827147 -YML063W 0.81020706218 -YML065W 0.0745054363636 -YML070W 0.294194309759 -YML071C 0.292663973397 -YML072C 0.304950481504 -YML073C 0.102140026382 -YML074C 0.334534459291 -YML076C 1.09412541938 -YML088W 0.264116021559 -YML092C 0.13842131042 -YML093W 0.654435540845 -YML097C 0.625364016005 -YML100W 0.690193577825 -YML101C 0.230956138023 -YML109W 0.631287516272 -YML111W 3.97874477454 -YML113W 0.316761688139 -YML115C 0.241474125701 -YML117W 2.56592961109 -YML118W 0.784756296287 -YML119W 2.6511783834 -YML127W 3.63191913415 -YMR001C 0.607858459337 -YMR004W 0.271914053309 -YMR005W 1.02075019674 -YMR011W 0.168203811368 -YMR014W 0.135666196969 -YMR016C 0.261831658752 -YMR021C 0.179383654356 -YMR029C 0.0329471640991 -YMR031C 0.897355304741 -YMR032W 0.329295848103 -YMR036C 0.18485154568 -YMR037C 1.94908664744 -YMR039C 0.394960876713 -YMR043W 0.348518865921 -YMR044W 0.474773476312 -YMR045C 0.224873584659 -YMR047C 0.415922623703 -YMR049C 0.321369158846 -YMR054W 0.353855779957 -YMR068W 3.05301467913 -YMR071C 0.214742411007 -YMR074C 0.267715561952 -YMR075W 0.446619834856 -YMR076C 0.535654860497 -YMR080C 0.452254061313 -YMR086W 0.866156275674 -YMR091C 0.130667339816 -YMR093W 0.338452940355 -YMR094W 0.411675132088 -YMR100W 0.390777726751 -YMR102C 0.570560078936 -YMR105C 2.00972763225 -YMR109W 0.816087965173 -YMR110C 0.209390977467 -YMR111C 0.180020521466 -YMR114C 0.32481060342 -YMR116C 0.472175803672 -YMR117C 0.135403530598 -YMR124W 0.77660936934 -YMR129W 0.245933464557 -YMR137C 0.16731248356 -YMR139W 0.0931247932207 -YMR140W 0.731206324878 -YMR153W 0.148999162588 -YMR155W 0.247970794944 -YMR162C 0.640883695585 -YMR165C 0.50954383796 -YMR167W 0.237217484204 -YMR172W 0.328262028609 -YMR173W 0.365741308328 -YMR179W 1.22471946558 -YMR184W 0.17984146527 -YMR186W 0.600555219006 -YMR189W 0.934403270586 -YMR192W 0.342286833032 -YMR196W 0.530769940168 -YMR204C 0.428571222085 -YMR205C 0.360953106436 -YMR212C 0.254581938873 -YMR213W 0.112099579776 -YMR216C 3.85377230642 -YMR217W 0.409037856973 -YMR219W 2.10358088561 -YMR221C 1.82107506411 -YMR224C 0.466131128762 -YMR231W 0.405336803744 -YMR233W 0.209444799653 -YMR235C 0.0687395906723 -YMR240C 0.102456576651 -YMR243C 2.50315932174 -YMR255W 0.407593196304 -YMR261C 0.305095010667 -YMR266W 0.394404385401 -YMR268C 0.194591402774 -YMR273C 2.86964895975 -YMR275C 1.03752279445 -YMR278W 1.77078125755 -YMR285C 0.262312877916 -YMR291W 0.990954860397 -YMR295C 0.191057239926 -YMR300C 0.047259175478 -YMR307W 0.55541773771 -YMR311C 0.198758551732 -YMR313C 0.239021172288 -YMR318C 0.318397814866 -YMR319C 0.662023157004 -YNL004W 1.0955737074 -YNL015W 0.0496307677246 -YNL020C 0.152637739651 -YNL023C 0.446600173315 -YNL027W 0.699958299004 -YNL035C 0.144176924347 -YNL039W 2.16443159189 -YNL040W 0.532965215934 -YNL041C 0.175428790822 -YNL042W 0.235604532763 -YNL047C 0.179596352138 -YNL049C 0.207767937572 -YNL050C 0.0997664862929 -YNL053W 3.35558014738 -YNL054W 2.04222407376 -YNL058C 0.402722176846 -YNL059C 0.296881576978 -YNL061W 0.313728081055 -YNL065W 0.875618923032 -YNL068C 0.358361493425 -YNL069C 0.444890644189 -YNL074C 3.06664032388 -YNL076W 1.06787833957 -YNL077W 0.1631709892 -YNL078W 0.162210036314 -YNL079C 0.20251175621 -YNL082W 0.127104965139 -YNL084C 0.598651047885 -YNL088W 0.996461060176 -YNL091W 0.822477608248 -YNL095C 0.993752251352 -YNL096C 0.335254565241 -YNL097C 0.0865120465743 -YNL098C 0.127897364486 -YNL101W 1.50573801216 -YNL102W 0.901553491337 -YNL103W 1.43019784831 -YNL104C 0.651472952002 -YNL106C 2.8234436722 -YNL112W 0.0796914534226 -YNL113W 0.18599337007 -YNL115C 1.52267497133 -YNL116W 0.176625626115 -YNL118C 0.908036189515 -YNL121C 0.6386762828 -YNL124W 0.154778942668 -YNL126W 0.147827668377 -YNL127W 0.406101238212 -YNL128W 0.632874996349 -YNL132W 0.329525485197 -YNL136W 0.250840333562 -YNL149C 0.302866729794 -YNL151C 0.253240088913 -YNL152W 0.237930769596 -YNL154C 0.267096978947 -YNL155W 0.980537192445 -YNL156C 0.610605579994 -YNL157W 1.67292312731 -YNL159C 0.0963755130509 -YNL161W 1.32233199296 -YNL163C 0.17632277264 -YNL164C 2.59152724949 -YNL166C 2.66154705964 -YNL167C 2.37934370731 -YNL173C 0.367259224489 -YNL175C 0.445938537289 -YNL178W 0.266396773025 -YNL180C 0.482754547003 -YNL183C 1.98068238104 -YNL189W 0.523234681743 -YNL192W 2.82183991915 -YNL197C 1.53767540148 -YNL206C 0.5681294165 -YNL209W 1.13323470636 -YNL212W 0.239764626511 -YNL215W 0.478402378037 -YNL216W 0.635429371072 -YNL221C 0.351289097599 -YNL223W 0.257976116011 -YNL224C 0.341985747229 -YNL225C 0.254594043033 -YNL227C 0.247902266501 -YNL230C 0.181084012242 -YNL231C 0.181293412885 -YNL232W 0.377290364537 -YNL233W 0.961845549175 -YNL234W 0.283329168052 -YNL242W 0.273814244587 -YNL243W 0.319639632497 -YNL244C 0.244399991246 -YNL246W 0.0965317426936 -YNL247W 0.343732465206 -YNL248C 0.676718744118 -YNL251C 0.345736995164 -YNL254C 0.219462838957 -YNL265C 0.212584252788 -YNL267W 1.56471959444 -YNL268W 1.35982333126 -YNL271C 0.555325358989 -YNL272C 0.594857175028 -YNL273W 0.16117825008 -YNL277W 0.20414071678 -YNL278W 0.476018699758 -YNL283C 0.504467852705 -YNL287W 0.252778951528 -YNL289W 0.115144233745 -YNL293W 0.508732879512 -YNL297C 0.490980803674 -YNL298W 1.53156860881 -YNL302C 0.150112798869 -YNL304W 0.105814736441 -YNL307C 9.38931051956 -YNL308C 0.0337929888493 -YNL309W 2.92347249053 -YNL311C 0.711759192983 -YNL312W 0.142348082145 -YNL321W 0.460071956647 -YNL323W 0.259391874992 -YNL330C 0.347215245091 -YNR006W 0.140255134035 -YNR010W 0.15968582714 -YNR012W 0.280600048848 -YNR013C 0.571321590052 -YNR014W 0.319549609781 -YNR016C 0.828144102366 -YNR023W 0.210946876946 -YNR024W 0.273848884111 -YNR031C 1.83547113912 -YNR039C 1.59989931698 -YNR047W 1.08345166987 -YNR049C 0.150819598212 -YNR051C 0.184588523071 -YNR052C 0.0458781532143 -YNR053C 0.510151757784 -YOL004W 0.342213373458 -YOL006C 0.0822938359514 -YOL007C 0.18523225423 -YOL013C 0.265153838198 -YOL019W 0.833953040772 -YOL022C 0.475755747828 -YOL036W 3.35365298465 -YOL039W 0.158724796297 -YOL041C 0.0784732093787 -YOL045W 5.41094988877 -YOL051W 1.73339772929 -YOL054W 0.25725205324 -YOL059W 0.386185493431 -YOL060C 1.55843153352 -YOL061W 0.40936377927 -YOL070C 0.985136067368 -YOL078W 0.32238968345 -YOL081W 0.706935628 -YOL082W 0.299755613795 -YOL086C 0.242937800201 -YOL087C 2.66507436058 -YOL089C 0.721503907036 -YOL100W 0.94343378387 -YOL103W 0.518701058452 -YOL109W 0.141694361965 -YOL113W 0.448528279019 -YOL115W 0.164787345738 -YOL116W 0.26167314413 -YOL123W 0.209144571771 -YOL127W 0.428993124915 -YOL130W 2.33247880259 -YOL137W 0.500381136053 -YOL138C 0.643856189775 -YOL139C 0.113167056733 -YOL144W 0.0747794264966 -YOL145C 0.288181352329 -YOL148C 0.462157047847 -YOL158C 0.451445005182 -YOR001W 0.238102030547 -YOR008C 0.258579224184 -YOR014W 0.369314963544 -YOR018W 1.11163231012 -YOR023C 0.616967624248 -YOR028C 1.20154297424 -YOR038C 0.163251764032 -YOR039W 0.245574234131 -YOR042W 0.665385961537 -YOR048C 0.320657964312 -YOR051C 0.20576784015 -YOR052C 0.229957008584 -YOR054C 0.761455492823 -YOR056C 0.280243695866 -YOR057W 1.34454447395 -YOR058C 0.357045212967 -YOR063W 0.587461007378 -YOR069W 0.381291487686 -YOR070C 0.320954604251 -YOR073W 0.556797246593 -YOR077W 0.226015216403 -YOR078W 0.104356136329 -YOR081C 0.839389547042 -YOR083W 0.889529844804 -YOR087W 0.441810748789 -YOR092W 0.827128499648 -YOR093C 0.208110931479 -YOR096W 0.237115456054 -YOR098C 0.338452940355 -YOR104W 0.23768607912 -YOR109W 0.387693396253 -YOR110W 0.426916368815 -YOR113W 1.25116096777 -YOR123C 0.249204863866 -YOR124C 0.085832523675 -YOR127W 0.657731456828 -YOR129C 0.417540340439 -YOR132W 0.418135963959 -YOR140W 0.365574010242 -YOR144C 0.569685512152 -YOR148C 0.157431827004 -YOR153W 0.486456955769 -YOR156C 0.806291326618 -YOR158W 0.649231212346 -YOR171C 0.236462003838 -YOR173W 0.191112513518 -YOR174W 0.26579547918 -YOR175C 0.244765307569 -YOR176W 0.279649578557 -YOR181W 3.13997693582 -YOR187W 0.275722256161 -YOR188W 0.584962500721 -YOR189W 0.989936316655 -YOR191W 0.328262028609 -YOR195W 0.236094578638 -YOR198C 0.296075574953 -YOR204W 1.93345933315 -YOR206W 0.238340270331 -YOR208W 0.274887811578 -YOR209C 0.372172051912 -YOR211C 0.124460486274 -YOR216C 0.27926624915 -YOR217W 0.103128316217 -YOR219C 0.245591338314 -YOR220W 0.380396991988 -YOR227W 0.514635003942 -YOR233W 0.467488173508 -YOR239W 0.472799671808 -YOR245C 0.438825113176 -YOR254C 0.117489978144 -YOR259C 0.280842850328 -YOR260W 0.0343080507753 -YOR261C 0.0644690173684 -YOR264W 0.214622200649 -YOR265W 0.292192773902 -YOR267C 2.57920428941 -YOR273C 1.02948822387 -YOR276W 0.549007864673 -YOR281C 0.506703486801 -YOR290C 0.129744605508 -YOR291W 3.35506946025 -YOR295W 0.487280529384 -YOR296W 0.411100789085 -YOR298CA 1.08140780614 -YOR301W 0.370340300073 -YOR304W 0.396597931575 -YOR308C 1.78488057548 -YOR310C 0.285706118511 -YOR315W 0.342341704004 -YOR316C 2.922264791 -YOR322C 2.71718836006 -YOR326W 0.545613509771 -YOR329C 0.238420026079 -YOR337W 0.21449129644 -YOR340C 0.187263569956 -YOR344C 0.854022625826 -YOR352W 0.386921028304 -YOR353C 0.463413203818 -YOR355W 0.232497741461 -YOR357C 0.182082094443 -YOR359W 2.22249822285 -YOR361C 0.630778212743 -YOR367W 0.212880566344 -YOR370C 1.25274151408 -YOR371C 0.524565221077 -YOR372C 0.644317778338 -YOR373W 0.462594585491 -YOR380W 1.77225892416 -YPL004C 0.279055216483 -YPL009C 0.424599662231 -YPL011C 0.13789693239 -YPL015C 0.197991165735 -YPL016W 0.137241191712 -YPL019C 1.4975675526 -YPL020C 0.70681784734 -YPL022W 0.875989557598 -YPL030W 0.126312130329 -YPL032C 0.581496984762 -YPL037C 0.505484479511 -YPL039W 0.565207205575 -YPL043W 0.17274351676 -YPL049C 0.379842727492 -YPL055C 0.336740406967 -YPL057C 0.297448834359 -YPL058C 2.24357769114 -YPL061W 0.484808396765 -YPL064C 0.290868201832 -YPL070W 2.50578932791 -YPL071C 0.281596724008 -YPL074W 0.334110567845 -YPL075W 0.123533772291 -YPL077C 0.379057065074 -YPL082C 0.244787660859 -YPL085W 2.1609433869 -YPL089C 0.212133507534 -YPL093W 0.430742246863 -YPL101W 0.690707376942 -YPL105C 0.874678949207 -YPL106C 0.234746551744 -YPL110C 0.151858816727 -YPL112C 0.518635847163 -YPL115C 1.63343438429 -YPL116W 0.542703792243 -YPL118W 0.152507948365 -YPL120W 0.728239686157 -YPL124W 0.514140429226 -YPL127C 0.426640477504 -YPL131W 0.190298791627 -YPL133C 0.267475871796 -YPL137C 0.643486812562 -YPL138C 0.25869981557 -YPL141C 0.657365615558 -YPL143W 0.756428401721 -YPL146C 0.153863766411 -YPL150W 0.48950386799 -YPL155C 0.590896952677 -YPL158C 0.557029972073 -YPL160W 1.52495663405 -YPL179W 0.250840333562 -YPL180W 0.756083908497 -YPL181W 0.240861214395 -YPL186C 0.776626879436 -YPL190C 0.297289270676 -YPL191C 0.971176277022 -YPL193W 0.314406507555 -YPL194W 0.328032190304 -YPL195W 0.365220889091 -YPL196W 0.419646752531 -YPL204W 0.184597684156 -YPL209C 3.53255773637 -YPL217C 0.115456779385 -YPL219W 0.215228023146 -YPL221W 0.527158746574 -YPL226W 0.272262124974 -YPL228W 0.586404474895 -YPL231W 0.544683205384 -YPL237W 0.114500293165 -YPL242C 0.397145797393 -YPL247C 2.00254138034 -YPL249C 0.222804561045 -YPL255W 0.364124146721 -YPL260W 0.194691032963 -YPL263C 0.415326009437 -YPL265W 0.189713205154 -YPL267W 0.113300435833 -YPL269W 0.485317186513 -YPL274W 0.236877418428 -YPR008W 0.779049552837 -YPR016C 1.23949799494 -YPR018W 0.291909903564 -YPR019W 0.372952097912 -YPR022C 0.417212798945 -YPR028W 0.266276823322 -YPR032W 0.453241329565 -YPR036WA 0.16459328731 -YPR040W 0.411100789085 -YPR041W 0.343578377147 -YPR042C 2.21739014283 -YPR065W 0.346417993544 -YPR070W 0.455633318274 -YPR072W 0.30999103926 -YPR074C 0.397693455237 -YPR075C 0.0936327166927 -YPR079W 0.262590124177 -YPR083W 0.466026687814 -YPR089W 0.13834630377 -YPR091C 1.82766610705 -YPR095C 1.74613171956 -YPR104C 0.381141165849 -YPR105C 0.228570748593 -YPR108W 0.127501219216 -YPR111W 0.278698481668 -YPR112C 0.17006927816 -YPR115W 2.20882773233 -YPR133C 0.609565867862 -YPR135W 0.326077084923 -YPR141C 0.167912043461 -YPR143W 0.10884526667 -YPR148C 0.405556763344 -YPR149W 0.106497992452 -YPR156C 0.727615550941 -YPR159W 0.373663666288 -YPR160W 0.368793253828 -YPR161C 0.251809968172 -YPR162C 0.277341629013 -YPR163C 0.693587315403 -YPR164W 1.22404027422 -YPR171W 0.235348113623 -YPR173C 0.277151610677 -YPR174C 0.430800587466 -YPR181C 0.76536500755 -YPR184W 0.371403691072 -YPR185W 1.4045345318 -YPR186C 0.362714356103 -YPR190C 0.52366231396 -YGR014W 10.051863 -YDR420W 10.051863 -YER118C 10.051863 diff --git a/yeast-osmotic-stress/SPRAS_output/data0-omicsintegrator1-params-NFVKQDZ/pathway.txt b/yeast-osmotic-stress/SPRAS_output/data0-omicsintegrator1-params-NFVKQDZ/pathway.txt deleted file mode 100644 index ae3c4f5..0000000 --- a/yeast-osmotic-stress/SPRAS_output/data0-omicsintegrator1-params-NFVKQDZ/pathway.txt +++ /dev/null @@ -1,275 +0,0 @@ -YAL041W YER118C 1 U -YBR023C YER118C 1 U -YBR160W YAL024C 1 D -YBR160W YAL031C 1 D -YBR160W YAR002W 1 D -YBR160W YBL063W 1 D -YBR160W YBR098W 1 D -YBR160W YBR102C 1 D -YBR160W YCL051W 1 D -YBR160W YCR065W 1 D -YBR160W YDL140C 1 D -YBR160W YDL189W 1 D -YBR160W YDR027C 1 D -YBR160W YDR052C 1 D -YBR160W YDR093W 1 D -YBR160W YDR097C 1 D -YBR160W YDR130C 1 D -YBR160W YDR217C 1 D -YBR160W YDR227W 1 D -YBR160W YDR239C 1 D -YBR160W YDR293C 1 D -YBR160W YDR348C 1 D -YBR160W YDR379W 1 D -YBR160W YDR389W 1 D -YBR160W YDR507C 1 D -YBR160W YEL032W 1 D -YBR160W YEL061C 1 D -YBR160W YER008C 1 D -YBR160W YER032W 1 D -YBR160W YER158C 1 D -YBR160W YGR188C 1 D -YBR160W YGR238C 1 D -YBR160W YHR149C 1 D -YBR160W YHR158C 1 D -YBR160W YHR159W 1 D -YBR160W YHR164C 1 D -YBR160W YIL122W 1 D -YBR160W YIL140W 1 D -YBR160W YIR023W 1 D -YBR160W YJL076W 1 D -YBR160W YJL092W 1 D -YBR160W YJR033C 1 D -YBR160W YJR091C 1 D -YBR160W YJR092W 1 D -YBR160W YKL048C 1 D -YBR160W YKL168C 1 D -YBR160W YKR089C 1 D -YBR160W YKR095W 1 D -YBR160W YLL021W 1 D -YBR160W YLR045C 1 D -YBR160W YLR096W 1 D -YBR160W YLR187W 1 D -YBR160W YLR190W 1 D -YBR160W YLR219W 1 D -YBR160W YLR223C 1 D -YBR160W YLR425W 1 D -YBR160W YML027W 1 D -YBR160W YML034W 1 D -YBR160W YML119W 1 D -YBR160W YMR005W 1 D -YBR160W YMR273C 1 D -YBR160W YMR291W 1 D -YBR160W YNL058C 1 D -YBR160W YNL102W 1 D -YBR160W YNL278W 1 D -YBR160W YNL309W 1 D -YBR160W YNL321W 1 D -YBR160W YOL036W 1 D -YBR160W YOL100W 1 D -YBR160W YOR081C 1 D -YBR160W YOR083W 1 D -YBR160W YOR127W 1 D -YBR160W YOR315W 1 D -YBR160W YOR372C 1 D -YBR160W YPL115C 1 D -YBR160W YPL124W 1 D -YBR160W YPL155C 1 D -YBR160W YPL209C 1 D -YBR160W YPL269W 1 D -YBR160W YPR174C 1 D -YCL032W YNR031C 1 D -YDL117W YER118C 1 U -YDR054C YNL103W 1 D -YDR420W YER118C 1 U -YDR420W YHR154W 1 U -YDR420W YOR153W 1 U -YDR477W YAR014C 1 D -YDR477W YDR422C 1 D -YDR477W YER027C 1 D -YDR477W YER040W 1 D -YDR477W YGL023C 1 D -YDR477W YGL035C 1 D -YDR477W YGL073W 1 D -YDR477W YGL253W 1 D -YDR477W YHR073W 1 D -YDR477W YHR103W 1 D -YDR477W YHR133C 1 D -YDR477W YIL044C 1 D -YDR477W YIL107C 1 D -YDR477W YJL110C 1 D -YDR477W YML111W 1 D -YDR477W YMR037C 1 D -YDR477W YNR016C 1 D -YDR477W YOR018W 1 D -YDR477W YPR156C 1 D -YDR490C YDR283C 1 D -YDR490C YHR205W 1 D -YDR490C YKL126W 1 D -YDR490C YMR104C 1 D -YDR507C YMR086W 1 D -YER075C YBR160W 1 D -YER075C YHR030C 1 D -YER089C YHR079C 1 D -YER089C YLR113W 1 D -YER118C YGR014W 1 U -YER118C YJL128C 1 U -YER118C YLR452C 1 U -YER118C YOR181W 1 U -YER118C YOR188W 1 U -YER125W YBL101C 1 D -YER125W YBR290W 1 D -YER125W YGR068C 1 D -YER125W YMR275C 1 D -YER125W YNL271C 1 D -YER125W YPR181C 1 D -YFL033C YHR132WA 1 D -YFL033C YNL157W 1 D -YFL033C YOR380W 1 D -YFL033C YPL031C 1 D -YHR030C YGL122C 1 D -YHR030C YLR371W 1 D -YHR030C YLR442C 1 D -YHR030C YNL053W 1 D -YHR079C YDR328C 1 D -YHR079C YLR257W 1 D -YHR079C YLR429W 1 D -YHR079C YNL155W 1 D -YHR079C YNL192W 1 D -YHR079C YNL224C 1 D -YHR079C YNR047W 1 D -YHR079C YOR113W 1 D -YHR205W YDR054C 1 D -YHR205W YFL033C 1 D -YHR205W YNL167C 1 D -YJR059W YAL038W 1 D -YJR059W YBR028C 1 D -YJR059W YBR157C 1 D -YJR059W YBR270C 1 D -YJR059W YCR023C 1 D -YJR059W YDL223C 1 D -YJR059W YDR001C 1 D -YJR059W YDR153C 1 D -YJR059W YDR169C 1 D -YJR059W YDR208W 1 D -YJR059W YDR251W 1 D -YJR059W YDR505C 1 D -YJR059W YGL014W 1 D -YJR059W YGR008C 1 D -YJR059W YGR100W 1 D -YJR059W YGR159C 1 D -YJR059W YGR241C 1 D -YJR059W YHL034C 1 D -YJR059W YIL144W 1 D -YJR059W YJL020C 1 D -YJR059W YJL070C 1 D -YJR059W YJL123C 1 D -YJR059W YKL062W 1 D -YJR059W YKL166C 1 D -YJR059W YKR100C 1 D -YJR059W YLL029W 1 D -YJR059W YLL038C 1 D -YJR059W YLR133W 1 D -YJR059W YLR319C 1 D -YJR059W YML031W 1 D -YJR059W YML118W 1 D -YJR059W YMR068W 1 D -YJR059W YNL101W 1 D -YJR059W YNR013C 1 D -YJR059W YNR039C 1 D -YJR059W YOL130W 1 D -YJR059W YOR209C 1 D -YJR059W YPL019C 1 D -YJR059W YPR040W 1 D -YJR059W YPR074C 1 D -YKL048C YDR477W 1 D -YKL048C YJR053W 1 D -YKL126W YDL022W 1 D -YKL166C YDR172W 1 D -YKL166C YDR443C 1 D -YKL166C YGR285C 1 D -YKL166C YJR001W 1 D -YKL166C YKL038W 1 D -YKL166C YPR185W 1 D -YLR096W YGR009C 1 D -YLR096W YNL054W 1 D -YLR113W YBL103C 1 D -YLR113W YCL032W 1 D -YLR113W YCL061C 1 D -YLR113W YER118C 1 D -YLR113W YIR006C 1 D -YLR113W YLL043W 1 D -YLR113W YLR138W 1 D -YLR113W YLR248W 1 D -YLR113W YMR172W 1 D -YLR248W YBL007C 1 D -YLR248W YDR385W 1 D -YLR248W YHR031C 1 D -YLR248W YHR131C 1 D -YLR248W YNL267W 1 D -YLR248W YPR091C 1 D -YMR104C YMR109W 1 D -YMR291W YJR059W 1 D -YNL183C YNL180C 1 D -YNL183C YOR322C 1 D -YNL307C YBL037W 1 D -YNL307C YBR043C 1 D -YNL307C YDL156W 1 D -YNL307C YDR002W 1 D -YNL307C YDR072C 1 D -YNL307C YGR126W 1 D -YNL307C YKL146W 1 D -YNL307C YLL034C 1 D -YNL307C YLR249W 1 D -YNL307C YNL065W 1 D -YNL307C YNL074C 1 D -YNL307C YOR028C 1 D -YOL045W YCL037C 1 D -YOL045W YKL035W 1 D -YPL031C YBL047C 1 D -YPL031C YBR130C 1 D -YPL031C YBR287W 1 D -YPL031C YCL014W 1 D -YPL031C YDL131W 1 D -YPL031C YDL173W 1 D -YPL031C YDL225W 1 D -YPL031C YDR229W 1 D -YPL031C YER033C 1 D -YPL031C YER048C 1 D -YPL031C YER089C 1 D -YPL031C YER125W 1 D -YPL031C YFR024CA 1 D -YPL031C YFR034C 1 D -YPL031C YGR167W 1 D -YPL031C YHR009C 1 D -YPL031C YHR183W 1 D -YPL031C YIL033C 1 D -YPL031C YIL047C 1 D -YPL031C YIL084C 1 D -YPL031C YIR003W 1 D -YPL031C YJL146W 1 D -YPL031C YKL064W 1 D -YPL031C YKL127W 1 D -YPL031C YLL024C 1 D -YPL031C YLR018C 1 D -YPL031C YLR093C 1 D -YPL031C YLR146C 1 D -YPL031C YML016C 1 D -YPL031C YML117W 1 D -YPL031C YNL104C 1 D -YPL031C YNL166C 1 D -YPL031C YNL233W 1 D -YPL031C YOL060C 1 D -YPL031C YOL070C 1 D -YPL031C YOR110W 1 D -YPL031C YOR298CA 1 D -YPL031C YOR301W 1 D -YPL031C YOR359W 1 D -YPL031C YPL193W 1 D -YPL031C YPR042C 1 D -YPL209C YER016W 1 D -YPL209C YIR010W 1 D -YPL209C YLL018C 1 D -YPL209C YLR150W 1 D -YPL209C YLR192C 1 D -YPL209C YPR115W 1 D diff --git a/yeast-osmotic-stress/SPRAS_output/data0-pathway-summary.txt b/yeast-osmotic-stress/SPRAS_output/data0-pathway-summary.txt deleted file mode 100644 index fc31fa7..0000000 --- a/yeast-osmotic-stress/SPRAS_output/data0-pathway-summary.txt +++ /dev/null @@ -1,251 +0,0 @@ -Name Number of nodes Number of undirected edges Number of connected components Nodes in prize Nodes in sources Nodes in targets -output/data0-omicsintegrator1-params-23OYCFU/pathway.txt 212 207 5 210 0 0 -output/data0-omicsintegrator1-params-2CCPVKC/pathway.txt 154 151 3 152 0 0 -output/data0-omicsintegrator1-params-2DRJMCG/pathway.txt 185 181 4 183 0 0 -output/data0-omicsintegrator1-params-2GTWYUF/pathway.txt 172 168 4 170 0 0 -output/data0-omicsintegrator1-params-2IYXGCY/pathway.txt 283 278 5 278 0 0 -output/data0-omicsintegrator1-params-2KTOJ6S/pathway.txt 242 238 4 239 0 0 -output/data0-omicsintegrator1-params-2OYFTXM/pathway.txt 186 182 4 184 0 0 -output/data0-omicsintegrator1-params-2RDJ7E2/pathway.txt 270 265 5 265 0 0 -output/data0-omicsintegrator1-params-2UNEBMK/pathway.txt 130 128 2 129 0 0 -output/data0-omicsintegrator1-params-2UVVGYP/pathway.txt 245 241 4 242 0 0 -output/data0-omicsintegrator1-params-2VUNGUO/pathway.txt 141 139 2 140 0 0 -output/data0-omicsintegrator1-params-2Y7MUKM/pathway.txt 211 206 5 209 0 0 -output/data0-omicsintegrator1-params-2YADJQI/pathway.txt 154 151 3 152 0 0 -output/data0-omicsintegrator1-params-3A5WFWO/pathway.txt 193 189 4 191 0 0 -output/data0-omicsintegrator1-params-3A7UVBW/pathway.txt 266 261 5 261 0 0 -output/data0-omicsintegrator1-params-3GSE2ZK/pathway.txt 132 130 2 131 0 0 -output/data0-omicsintegrator1-params-3LVRXZR/pathway.txt 200 196 4 198 0 0 -output/data0-omicsintegrator1-params-3OICS6O/pathway.txt 186 182 4 184 0 0 -output/data0-omicsintegrator1-params-47TUII5/pathway.txt 238 234 4 235 0 0 -output/data0-omicsintegrator1-params-4CXR3LW/pathway.txt 319 312 7 314 0 0 -output/data0-omicsintegrator1-params-4D4BHFT/pathway.txt 155 152 3 153 0 0 -output/data0-omicsintegrator1-params-4OWB3QP/pathway.txt 245 241 4 242 0 0 -output/data0-omicsintegrator1-params-5EGB4IL/pathway.txt 309 302 7 304 0 0 -output/data0-omicsintegrator1-params-5NKQXXX/pathway.txt 151 148 3 149 0 0 -output/data0-omicsintegrator1-params-5NR7SQ2/pathway.txt 133 131 2 132 0 0 -output/data0-omicsintegrator1-params-5NY7SRS/pathway.txt 325 318 7 320 0 0 -output/data0-omicsintegrator1-params-5PUUQBP/pathway.txt 200 196 4 198 0 0 -output/data0-omicsintegrator1-params-5QT7LI2/pathway.txt 152 149 3 150 0 0 -output/data0-omicsintegrator1-params-5TQ2RUR/pathway.txt 318 311 7 313 0 0 -output/data0-omicsintegrator1-params-5U2WEFY/pathway.txt 190 186 4 188 0 0 -output/data0-omicsintegrator1-params-5W5CLPE/pathway.txt 131 129 2 130 0 0 -output/data0-omicsintegrator1-params-5Y6ALDD/pathway.txt 272 267 5 267 0 0 -output/data0-omicsintegrator1-params-644GZW6/pathway.txt 139 137 2 138 0 0 -output/data0-omicsintegrator1-params-66LIB2E/pathway.txt 287 282 5 282 0 0 -output/data0-omicsintegrator1-params-6B4AP3K/pathway.txt 270 265 5 265 0 0 -output/data0-omicsintegrator1-params-6OTB4RE/pathway.txt 206 201 5 204 0 0 -output/data0-omicsintegrator1-params-6QOC62R/pathway.txt 178 174 4 176 0 0 -output/data0-omicsintegrator1-params-6SHFQQR/pathway.txt 136 134 2 135 0 0 -output/data0-omicsintegrator1-params-6WTOEDG/pathway.txt 206 201 5 204 0 0 -output/data0-omicsintegrator1-params-6WVG66L/pathway.txt 141 139 2 140 0 0 -output/data0-omicsintegrator1-params-74V74TK/pathway.txt 281 276 5 276 0 0 -output/data0-omicsintegrator1-params-7JAQFOU/pathway.txt 240 236 4 237 0 0 -output/data0-omicsintegrator1-params-7LF6ZF3/pathway.txt 265 260 5 260 0 0 -output/data0-omicsintegrator1-params-7LIUA23/pathway.txt 131 129 2 130 0 0 -output/data0-omicsintegrator1-params-7VGCSO4/pathway.txt 287 282 5 282 0 0 -output/data0-omicsintegrator1-params-7ZLATBH/pathway.txt 298 292 6 293 0 0 -output/data0-omicsintegrator1-params-A5GX3FB/pathway.txt 164 161 3 162 0 0 -output/data0-omicsintegrator1-params-A7WNTJT/pathway.txt 279 274 5 274 0 0 -output/data0-omicsintegrator1-params-ACYMXBU/pathway.txt 291 286 5 286 0 0 -output/data0-omicsintegrator1-params-AI6LZYR/pathway.txt 274 269 5 269 0 0 -output/data0-omicsintegrator1-params-AIORQ7R/pathway.txt 290 285 5 285 0 0 -output/data0-omicsintegrator1-params-AL3HOZS/pathway.txt 279 274 5 274 0 0 -output/data0-omicsintegrator1-params-ALWEAVI/pathway.txt 288 283 5 283 0 0 -output/data0-omicsintegrator1-params-AOX7LMB/pathway.txt 280 275 5 275 0 0 -output/data0-omicsintegrator1-params-ASCPEX3/pathway.txt 295 289 6 290 0 0 -output/data0-omicsintegrator1-params-ATLPRXI/pathway.txt 280 275 5 275 0 0 -output/data0-omicsintegrator1-params-AUZQKGQ/pathway.txt 212 207 5 210 0 0 -output/data0-omicsintegrator1-params-AVN2XCG/pathway.txt 260 255 5 255 0 0 -output/data0-omicsintegrator1-params-AXQXIUT/pathway.txt 265 260 5 260 0 0 -output/data0-omicsintegrator1-params-AZNP4CA/pathway.txt 261 256 5 256 0 0 -output/data0-omicsintegrator1-params-B2JW75I/pathway.txt 191 187 4 189 0 0 -output/data0-omicsintegrator1-params-B4T5AHL/pathway.txt 263 258 5 258 0 0 -output/data0-omicsintegrator1-params-BDX4EO6/pathway.txt 285 280 5 280 0 0 -output/data0-omicsintegrator1-params-BEQXBTA/pathway.txt 132 130 2 131 0 0 -output/data0-omicsintegrator1-params-BF6N6KF/pathway.txt 197 193 4 195 0 0 -output/data0-omicsintegrator1-params-BFUUSKS/pathway.txt 152 149 3 150 0 0 -output/data0-omicsintegrator1-params-BSPY7MS/pathway.txt 153 150 3 151 0 0 -output/data0-omicsintegrator1-params-BUVC6AW/pathway.txt 149 146 3 147 0 0 -output/data0-omicsintegrator1-params-BYKNB3E/pathway.txt 193 189 4 191 0 0 -output/data0-omicsintegrator1-params-C2BNFS5/pathway.txt 262 257 5 257 0 0 -output/data0-omicsintegrator1-params-CGSDT7T/pathway.txt 319 312 7 314 0 0 -output/data0-omicsintegrator1-params-CIUXMLD/pathway.txt 309 302 7 304 0 0 -output/data0-omicsintegrator1-params-CLONESS/pathway.txt 310 303 7 305 0 0 -output/data0-omicsintegrator1-params-CLX7C33/pathway.txt 172 168 4 170 0 0 -output/data0-omicsintegrator1-params-CS4NHE7/pathway.txt 141 139 2 140 0 0 -output/data0-omicsintegrator1-params-CWLV2ZG/pathway.txt 313 306 7 308 0 0 -output/data0-omicsintegrator1-params-CY7QKFU/pathway.txt 234 230 4 231 0 0 -output/data0-omicsintegrator1-params-D6ALNWJ/pathway.txt 148 145 3 146 0 0 -output/data0-omicsintegrator1-params-DDZEC6U/pathway.txt 279 274 5 274 0 0 -output/data0-omicsintegrator1-params-DMZBNZF/pathway.txt 148 145 3 146 0 0 -output/data0-omicsintegrator1-params-DPRRWEP/pathway.txt 279 274 5 274 0 0 -output/data0-omicsintegrator1-params-DSJNE5K/pathway.txt 155 152 3 153 0 0 -output/data0-omicsintegrator1-params-DWSQMOQ/pathway.txt 132 130 2 131 0 0 -output/data0-omicsintegrator1-params-E4SWIES/pathway.txt 320 313 7 315 0 0 -output/data0-omicsintegrator1-params-E64HT6R/pathway.txt 279 274 5 274 0 0 -output/data0-omicsintegrator1-params-EB4PLQR/pathway.txt 268 263 5 263 0 0 -output/data0-omicsintegrator1-params-EK7SM7R/pathway.txt 185 181 4 183 0 0 -output/data0-omicsintegrator1-params-EP2CE5V/pathway.txt 279 274 5 274 0 0 -output/data0-omicsintegrator1-params-EUK44FP/pathway.txt 273 268 5 268 0 0 -output/data0-omicsintegrator1-params-EXIH3IT/pathway.txt 288 283 5 283 0 0 -output/data0-omicsintegrator1-params-F37SCX4/pathway.txt 136 134 2 135 0 0 -output/data0-omicsintegrator1-params-FB4XA5V/pathway.txt 200 196 4 198 0 0 -output/data0-omicsintegrator1-params-FFZIV76/pathway.txt 309 302 7 304 0 0 -output/data0-omicsintegrator1-params-FKONCUE/pathway.txt 148 145 3 146 0 0 -output/data0-omicsintegrator1-params-FQO4HUL/pathway.txt 245 241 4 242 0 0 -output/data0-omicsintegrator1-params-FW3OONY/pathway.txt 277 272 5 272 0 0 -output/data0-omicsintegrator1-params-G6PQ2OL/pathway.txt 131 129 2 130 0 0 -output/data0-omicsintegrator1-params-GBV5CR6/pathway.txt 260 255 5 255 0 0 -output/data0-omicsintegrator1-params-GDWUEKM/pathway.txt 154 151 3 152 0 0 -output/data0-omicsintegrator1-params-GGD5HVW/pathway.txt 238 234 4 235 0 0 -output/data0-omicsintegrator1-params-GRC74NC/pathway.txt 237 233 4 234 0 0 -output/data0-omicsintegrator1-params-GRLMV3U/pathway.txt 148 145 3 146 0 0 -output/data0-omicsintegrator1-params-GV3MWNC/pathway.txt 245 241 4 242 0 0 -output/data0-omicsintegrator1-params-GVJXCZQ/pathway.txt 178 174 4 176 0 0 -output/data0-omicsintegrator1-params-GXC4EJE/pathway.txt 308 301 7 303 0 0 -output/data0-omicsintegrator1-params-GYGDQD4/pathway.txt 280 275 5 275 0 0 -output/data0-omicsintegrator1-params-HBIQTJJ/pathway.txt 136 134 2 135 0 0 -output/data0-omicsintegrator1-params-HHA22CN/pathway.txt 206 201 5 204 0 0 -output/data0-omicsintegrator1-params-HIKHRBP/pathway.txt 190 186 4 188 0 0 -output/data0-omicsintegrator1-params-HM3V6ST/pathway.txt 133 131 2 132 0 0 -output/data0-omicsintegrator1-params-HOW24WE/pathway.txt 212 207 5 210 0 0 -output/data0-omicsintegrator1-params-HQQAA5R/pathway.txt 258 253 5 253 0 0 -output/data0-omicsintegrator1-params-IG3Q5WP/pathway.txt 317 310 7 312 0 0 -output/data0-omicsintegrator1-params-IKK46D6/pathway.txt 192 188 4 190 0 0 -output/data0-omicsintegrator1-params-IPBTH3Q/pathway.txt 210 205 5 208 0 0 -output/data0-omicsintegrator1-params-ISIN3C5/pathway.txt 309 302 7 304 0 0 -output/data0-omicsintegrator1-params-IT7E42H/pathway.txt 323 316 7 318 0 0 -output/data0-omicsintegrator1-params-IY3MYXP/pathway.txt 311 304 7 306 0 0 -output/data0-omicsintegrator1-params-J2PEFBM/pathway.txt 285 280 5 280 0 0 -output/data0-omicsintegrator1-params-J3RBMTT/pathway.txt 212 207 5 210 0 0 -output/data0-omicsintegrator1-params-J55O4GL/pathway.txt 270 265 5 265 0 0 -output/data0-omicsintegrator1-params-J6K4YN3/pathway.txt 236 232 4 233 0 0 -output/data0-omicsintegrator1-params-J7OQH3P/pathway.txt 244 240 4 241 0 0 -output/data0-omicsintegrator1-params-JACXO3Y/pathway.txt 274 269 5 269 0 0 -output/data0-omicsintegrator1-params-JGTSRYT/pathway.txt 240 236 4 237 0 0 -output/data0-omicsintegrator1-params-JRHLSP2/pathway.txt 187 183 4 185 0 0 -output/data0-omicsintegrator1-params-JRUMVAR/pathway.txt 305 298 7 300 0 0 -output/data0-omicsintegrator1-params-JWNKVNW/pathway.txt 276 271 5 271 0 0 -output/data0-omicsintegrator1-params-K3QEHFU/pathway.txt 136 134 2 135 0 0 -output/data0-omicsintegrator1-params-K6BJU7E/pathway.txt 155 152 3 153 0 0 -output/data0-omicsintegrator1-params-KCLENH3/pathway.txt 321 314 7 316 0 0 -output/data0-omicsintegrator1-params-KEEFHIT/pathway.txt 323 316 7 318 0 0 -output/data0-omicsintegrator1-params-KLPKYR5/pathway.txt 151 148 3 149 0 0 -output/data0-omicsintegrator1-params-KQPZUZL/pathway.txt 150 147 3 148 0 0 -output/data0-omicsintegrator1-params-KXWSSXJ/pathway.txt 181 177 4 179 0 0 -output/data0-omicsintegrator1-params-L2NP3YC/pathway.txt 287 282 5 282 0 0 -output/data0-omicsintegrator1-params-L3FLK27/pathway.txt 191 187 4 189 0 0 -output/data0-omicsintegrator1-params-L46EEOS/pathway.txt 283 278 5 278 0 0 -output/data0-omicsintegrator1-params-L5JIPCL/pathway.txt 277 272 5 272 0 0 -output/data0-omicsintegrator1-params-L77IVYZ/pathway.txt 327 319 8 322 0 0 -output/data0-omicsintegrator1-params-LA6WGBO/pathway.txt 238 234 4 235 0 0 -output/data0-omicsintegrator1-params-LIFQRWP/pathway.txt 297 291 6 292 0 0 -output/data0-omicsintegrator1-params-LIRGDZ2/pathway.txt 187 183 4 185 0 0 -output/data0-omicsintegrator1-params-LMGEY65/pathway.txt 181 177 4 179 0 0 -output/data0-omicsintegrator1-params-LR2SWDF/pathway.txt 206 201 5 204 0 0 -output/data0-omicsintegrator1-params-LYSEJ7K/pathway.txt 285 280 5 280 0 0 -output/data0-omicsintegrator1-params-LZ7L45D/pathway.txt 321 314 7 316 0 0 -output/data0-omicsintegrator1-params-LZTCEP6/pathway.txt 274 269 5 269 0 0 -output/data0-omicsintegrator1-params-LZZ6KM7/pathway.txt 201 197 4 199 0 0 -output/data0-omicsintegrator1-params-MCSO2G5/pathway.txt 263 258 5 258 0 0 -output/data0-omicsintegrator1-params-MELFAYW/pathway.txt 132 130 2 131 0 0 -output/data0-omicsintegrator1-params-MHJGNTV/pathway.txt 280 275 5 275 0 0 -output/data0-omicsintegrator1-params-MKLW7E3/pathway.txt 288 283 5 283 0 0 -output/data0-omicsintegrator1-params-MLOAWX3/pathway.txt 206 201 5 204 0 0 -output/data0-omicsintegrator1-params-MUKNIGT/pathway.txt 283 278 5 278 0 0 -output/data0-omicsintegrator1-params-MWQXLRR/pathway.txt 200 196 4 198 0 0 -output/data0-omicsintegrator1-params-MZGZBAP/pathway.txt 234 230 4 231 0 0 -output/data0-omicsintegrator1-params-N3I6W6F/pathway.txt 131 129 2 130 0 0 -output/data0-omicsintegrator1-params-N52PQ2A/pathway.txt 330 322 8 325 0 0 -output/data0-omicsintegrator1-params-NA5X3CY/pathway.txt 306 299 7 301 0 0 -output/data0-omicsintegrator1-params-NLZEBLZ/pathway.txt 320 313 7 315 0 0 -output/data0-omicsintegrator1-params-NPL7VAC/pathway.txt 244 240 4 241 0 0 -output/data0-omicsintegrator1-params-NTAK37S/pathway.txt 187 183 4 185 0 0 -output/data0-omicsintegrator1-params-NTFETWL/pathway.txt 180 176 4 178 0 0 -output/data0-omicsintegrator1-params-NWTO3ON/pathway.txt 244 240 4 241 0 0 -output/data0-omicsintegrator1-params-O2C5QMV/pathway.txt 183 179 4 181 0 0 -output/data0-omicsintegrator1-params-O7Q5OR2/pathway.txt 272 267 5 267 0 0 -output/data0-omicsintegrator1-params-OCZWG4W/pathway.txt 231 227 4 228 0 0 -output/data0-omicsintegrator1-params-OK6APTT/pathway.txt 267 262 5 262 0 0 -output/data0-omicsintegrator1-params-OMEEDBF/pathway.txt 323 316 7 318 0 0 -output/data0-omicsintegrator1-params-OMELBQH/pathway.txt 272 267 5 267 0 0 -output/data0-omicsintegrator1-params-OQILG4K/pathway.txt 139 137 2 138 0 0 -output/data0-omicsintegrator1-params-P4AGOUA/pathway.txt 184 180 4 182 0 0 -output/data0-omicsintegrator1-params-P4UFUTD/pathway.txt 135 133 2 134 0 0 -output/data0-omicsintegrator1-params-PA74BX4/pathway.txt 266 261 5 261 0 0 -output/data0-omicsintegrator1-params-PAMUTBL/pathway.txt 173 169 4 171 0 0 -output/data0-omicsintegrator1-params-PCX4WQP/pathway.txt 245 241 4 242 0 0 -output/data0-omicsintegrator1-params-PQWWUQR/pathway.txt 200 196 4 198 0 0 -output/data0-omicsintegrator1-params-PYHILQ7/pathway.txt 207 202 5 205 0 0 -output/data0-omicsintegrator1-params-PZ36PKJ/pathway.txt 320 313 7 315 0 0 -output/data0-omicsintegrator1-params-PZFDI5X/pathway.txt 150 147 3 148 0 0 -output/data0-omicsintegrator1-params-Q3KKG2F/pathway.txt 150 147 3 148 0 0 -output/data0-omicsintegrator1-params-Q5LZI3M/pathway.txt 236 232 4 233 0 0 -output/data0-omicsintegrator1-params-QDIKJA3/pathway.txt 198 194 4 196 0 0 -output/data0-omicsintegrator1-params-QFG36AK/pathway.txt 236 232 4 233 0 0 -output/data0-omicsintegrator1-params-QG4UMOI/pathway.txt 198 194 4 196 0 0 -output/data0-omicsintegrator1-params-QJVMQQ6/pathway.txt 190 186 4 188 0 0 -output/data0-omicsintegrator1-params-QMQRJ2Z/pathway.txt 172 168 4 170 0 0 -output/data0-omicsintegrator1-params-QXYANUB/pathway.txt 245 241 4 242 0 0 -output/data0-omicsintegrator1-params-R2EZS4B/pathway.txt 271 266 5 266 0 0 -output/data0-omicsintegrator1-params-RG5OZZ5/pathway.txt 242 238 4 239 0 0 -output/data0-omicsintegrator1-params-RJFEMWD/pathway.txt 245 241 4 242 0 0 -output/data0-omicsintegrator1-params-RLSD3TK/pathway.txt 211 206 5 209 0 0 -output/data0-omicsintegrator1-params-RPBOY7L/pathway.txt 320 313 7 315 0 0 -output/data0-omicsintegrator1-params-RXKLNEC/pathway.txt 163 160 3 161 0 0 -output/data0-omicsintegrator1-params-S3OIA2T/pathway.txt 323 316 7 318 0 0 -output/data0-omicsintegrator1-params-S443KAM/pathway.txt 184 180 4 182 0 0 -output/data0-omicsintegrator1-params-S5N6EBP/pathway.txt 244 240 4 241 0 0 -output/data0-omicsintegrator1-params-SBV7OXV/pathway.txt 200 196 4 198 0 0 -output/data0-omicsintegrator1-params-SP2OX3F/pathway.txt 210 205 5 208 0 0 -output/data0-omicsintegrator1-params-SZWFKHV/pathway.txt 270 265 5 265 0 0 -output/data0-omicsintegrator1-params-TBGYFXF/pathway.txt 162 159 3 160 0 0 -output/data0-omicsintegrator1-params-TENESUS/pathway.txt 258 253 5 253 0 0 -output/data0-omicsintegrator1-params-TH3MDY2/pathway.txt 173 169 4 171 0 0 -output/data0-omicsintegrator1-params-TIGYFM4/pathway.txt 135 133 2 134 0 0 -output/data0-omicsintegrator1-params-TM6E3JM/pathway.txt 207 202 5 205 0 0 -output/data0-omicsintegrator1-params-TNVYOS2/pathway.txt 268 263 5 263 0 0 -output/data0-omicsintegrator1-params-TOMF5MK/pathway.txt 234 230 4 231 0 0 -output/data0-omicsintegrator1-params-U2NRNB3/pathway.txt 200 196 4 198 0 0 -output/data0-omicsintegrator1-params-UC7257I/pathway.txt 323 316 7 318 0 0 -output/data0-omicsintegrator1-params-UL76SHI/pathway.txt 162 159 3 160 0 0 -output/data0-omicsintegrator1-params-UPH3THP/pathway.txt 279 274 5 274 0 0 -output/data0-omicsintegrator1-params-VCIF7EM/pathway.txt 148 145 3 146 0 0 -output/data0-omicsintegrator1-params-VG4G5P3/pathway.txt 141 139 2 140 0 0 -output/data0-omicsintegrator1-params-VLBYCLM/pathway.txt 312 305 7 307 0 0 -output/data0-omicsintegrator1-params-VUHY7OZ/pathway.txt 240 236 4 237 0 0 -output/data0-omicsintegrator1-params-VX4YIAT/pathway.txt 185 181 4 183 0 0 -output/data0-omicsintegrator1-params-W62FVZF/pathway.txt 129 127 2 128 0 0 -output/data0-omicsintegrator1-params-WBMYQHQ/pathway.txt 213 208 5 211 0 0 -output/data0-omicsintegrator1-params-WBPIV77/pathway.txt 324 317 7 319 0 0 -output/data0-omicsintegrator1-params-WILSTXF/pathway.txt 286 281 5 281 0 0 -output/data0-omicsintegrator1-params-WJE5YDV/pathway.txt 279 274 5 274 0 0 -output/data0-omicsintegrator1-params-WMBGPC3/pathway.txt 236 232 4 233 0 0 -output/data0-omicsintegrator1-params-WNSL55S/pathway.txt 306 299 7 301 0 0 -output/data0-omicsintegrator1-params-WPBAVIZ/pathway.txt 325 318 7 320 0 0 -output/data0-omicsintegrator1-params-WRQE3FZ/pathway.txt 294 288 6 289 0 0 -output/data0-omicsintegrator1-params-WRTX7V2/pathway.txt 156 153 3 154 0 0 -output/data0-omicsintegrator1-params-WV4QDSP/pathway.txt 306 299 7 301 0 0 -output/data0-omicsintegrator1-params-X435WK4/pathway.txt 212 207 5 210 0 0 -output/data0-omicsintegrator1-params-XDHFW5V/pathway.txt 178 174 4 176 0 0 -output/data0-omicsintegrator1-params-XQU2OXM/pathway.txt 328 320 8 323 0 0 -output/data0-omicsintegrator1-params-XRX5OSO/pathway.txt 330 322 8 325 0 0 -output/data0-omicsintegrator1-params-XTRV4UE/pathway.txt 310 303 7 305 0 0 -output/data0-omicsintegrator1-params-YC623S4/pathway.txt 232 228 4 229 0 0 -output/data0-omicsintegrator1-params-YDHHD7D/pathway.txt 187 183 4 185 0 0 -output/data0-omicsintegrator1-params-YEKX3W3/pathway.txt 200 196 4 198 0 0 -output/data0-omicsintegrator1-params-YGE6V2K/pathway.txt 295 289 6 290 0 0 -output/data0-omicsintegrator1-params-YPACM5T/pathway.txt 244 240 4 241 0 0 -output/data0-omicsintegrator1-params-YR3MNHR/pathway.txt 136 134 2 135 0 0 -output/data0-omicsintegrator1-params-YVUVVHA/pathway.txt 262 257 5 257 0 0 -output/data0-omicsintegrator1-params-YXT3T47/pathway.txt 238 234 4 235 0 0 -output/data0-omicsintegrator1-params-YYP27WP/pathway.txt 242 238 4 239 0 0 -output/data0-omicsintegrator1-params-YZLHFDD/pathway.txt 295 289 6 290 0 0 -output/data0-omicsintegrator1-params-Z5DUP7V/pathway.txt 234 230 4 231 0 0 -output/data0-omicsintegrator1-params-Z6JA7O5/pathway.txt 330 322 8 325 0 0 -output/data0-omicsintegrator1-params-ZCXWOC4/pathway.txt 315 308 7 310 0 0 -output/data0-omicsintegrator1-params-ZGBQZ7E/pathway.txt 190 186 4 188 0 0 -output/data0-omicsintegrator1-params-ZIH2KYL/pathway.txt 317 310 7 312 0 0 -output/data0-omicsintegrator1-params-ZMAVAXH/pathway.txt 200 196 4 198 0 0 -output/data0-omicsintegrator1-params-ZP54GI4/pathway.txt 241 237 4 238 0 0 diff --git a/yeast-osmotic-stress/SPRAS_output/ensemble-pathway.txt b/yeast-osmotic-stress/SPRAS_output/ensemble-pathway.txt deleted file mode 100644 index 3fa7027..0000000 --- a/yeast-osmotic-stress/SPRAS_output/ensemble-pathway.txt +++ /dev/null @@ -1,368 +0,0 @@ -Node1 Node2 Frequency Direction -YBR023C YER118C 1.0 U -YBR160W YAL024C 1.0 D -YBR160W YAL031C 1.0 D -YBR160W YBL063W 1.0 D -YBR160W YBR098W 1.0 D -YBR160W YBR102C 1.0 D -YBR160W YCL051W 1.0 D -YBR160W YCR065W 1.0 D -YBR160W YDL189W 1.0 D -YBR160W YDR052C 1.0 D -YBR160W YDR093W 1.0 D -YBR160W YDR097C 1.0 D -YBR160W YDR217C 1.0 D -YBR160W YDR239C 0.772 D -YBR160W YDR293C 1.0 D -YBR160W YDR348C 1.0 D -YBR160W YDR379W 1.0 D -YBR160W YDR389W 1.0 D -YBR160W YER008C 1.0 D -YBR160W YER129W 0.456 D -YBR160W YER158C 1.0 D -YBR160W YGR014W 0.18 D -YBR160W YHR149C 1.0 D -YBR160W YHR158C 1.0 D -YBR160W YHR159W 1.0 D -YBR160W YIL140W 1.0 D -YBR160W YJL092W 1.0 D -YBR160W YJR091C 1.0 D -YBR160W YJR092W 0.844 D -YBR160W YKL168C 1.0 D -YBR160W YKR089C 1.0 D -YBR160W YKR095W 1.0 D -YBR160W YLL021W 1.0 D -YBR160W YLR045C 1.0 D -YBR160W YLR187W 1.0 D -YBR160W YLR190W 1.0 D -YBR160W YLR219W 1.0 D -YBR160W YLR223C 1.0 D -YBR160W YML027W 1.0 D -YBR160W YML034W 1.0 D -YBR160W YML119W 1.0 D -YBR160W YMR005W 1.0 D -YBR160W YMR273C 1.0 D -YBR160W YNL102W 1.0 D -YBR160W YNL233W 0.448 D -YBR160W YNL309W 1.0 D -YBR160W YOL036W 1.0 D -YBR160W YOR081C 1.0 D -YBR160W YOR127W 1.0 D -YBR160W YPL115C 1.0 D -YBR160W YPL155C 1.0 D -YDR420W YER118C 1.0 U -YDR477W YAR014C 1.0 D -YDR477W YDR422C 1.0 D -YDR477W YER040W 1.0 D -YDR477W YGL023C 1.0 D -YDR477W YGL253W 1.0 D -YDR477W YHR073W 1.0 D -YDR477W YHR103W 1.0 D -YDR477W YHR133C 1.0 D -YDR477W YHR205W 0.584 D -YDR477W YIL044C 1.0 D -YDR477W YIL107C 1.0 D -YDR477W YML111W 1.0 D -YDR477W YMR037C 1.0 D -YDR477W YNR016C 1.0 D -YDR477W YOR018W 1.0 D -YDR477W YPR156C 1.0 D -YER075C YBR160W 1.0 D -YER075C YHR030C 1.0 D -YER118C YGR014W 1.0 U -YER118C YJL128C 1.0 U -YER118C YLR452C 1.0 U -YER118C YOR181W 1.0 U -YER129W YDR477W 0.456 D -YFL033C YHR132WA 1.0 D -YFL033C YNL157W 1.0 D -YFL033C YOR380W 1.0 D -YHR030C YLR371W 1.0 D -YHR030C YNL053W 1.0 D -YHR205W YFL033C 1.0 D -YHR205W YNL167C 1.0 D -YJL128C YJR059W 0.076 D -YJL128C YKL038W 0.184 D -YJL128C YLR113W 0.184 D -YJR059W YAL038W 1.0 D -YJR059W YBR028C 1.0 D -YJR059W YBR157C 1.0 D -YJR059W YBR270C 1.0 D -YJR059W YCR023C 1.0 D -YJR059W YDR153C 1.0 D -YJR059W YDR251W 1.0 D -YJR059W YDR505C 1.0 D -YJR059W YGL014W 1.0 D -YJR059W YGR008C 1.0 D -YJR059W YGR159C 1.0 D -YJR059W YGR241C 1.0 D -YJR059W YJL020C 1.0 D -YJR059W YJL123C 1.0 D -YJR059W YJL146W 0.448 D -YJR059W YJR001W 0.184 D -YJR059W YKL062W 1.0 D -YJR059W YKL064W 0.38 D -YJR059W YKL127W 0.448 D -YJR059W YLL029W 1.0 D -YJR059W YLR133W 0.752 D -YJR059W YML031W 1.0 D -YJR059W YMR068W 1.0 D -YJR059W YNL074C 0.2 D -YJR059W YNL101W 1.0 D -YJR059W YNR039C 1.0 D -YJR059W YOL130W 1.0 D -YJR059W YOR028C 0.184 D -YJR059W YOR113W 0.584 D -YJR059W YPL019C 1.0 D -YJR059W YPR115W 0.292 D -YLR113W YBL103C 1.0 D -YLR113W YCL061C 1.0 D -YLR113W YLR138W 1.0 D -YLR113W YLR248W 1.0 D -YLR248W YBL007C 1.0 D -YLR248W YHR031C 1.0 D -YLR248W YHR131C 1.0 D -YLR248W YLR257W 0.328 D -YLR248W YNL267W 1.0 D -YLR248W YPR091C 1.0 D -YOL045W YKL035W 1.0 D -YJR059W YJL070C 0.996 D -YJR059W YML118W 0.992 D -YBR160W YPL269W 0.976 D -YBR160W YNL278W 0.96 D -YCL032W YER118C 0.42 U -YCL032W YNR031C 0.952 D -YJR059W YIL144W 0.944 D -YLR113W YCL032W 0.94 D -YBR160W YMR291W 0.924 D -YBR160W YNL321W 0.924 D -YLR113W YLL043W 0.924 D -YMR291W YJR059W 0.904 D -YBR160W YOL070C 0.364 D -YDR477W YGL073W 0.916 D -YDR477W YER125W 0.388 D -YER125W YBL101C 0.9 D -YER125W YGR068C 0.9 D -YER125W YMR275C 0.9 D -YNL183C YNL180C 0.9 D -YNL183C YOR322C 0.9 D -YLR248W YDR385W 0.88 D -YDL117W YER118C 0.876 U -YJR059W YDR001C 0.864 D -YJR059W YDR229W 0.076 D -YBR160W YIR023W 0.848 D -YBR160W YPR174C 0.844 D -YBR160W YER032W 0.832 D -YBR160W YOR188W 0.004 D -YER118C YOR188W 0.82 U -YBR160W YCL014W 0.264 D -YJR059W YKL166C 0.816 D -YKL166C YDR172W 0.816 D -YKL166C YDR443C 0.816 D -YKL166C YGR285C 0.816 D -YKL166C YJR001W 0.816 D -YKL166C YKL038W 0.816 D -YKL166C YLR113W 0.4 D -YKL166C YOR028C 0.016 D -YKL166C YPR185W 0.816 D -YAL041W YER118C 0.808 U -YBR160W YDL140C 0.804 D -YNL307C YBL037W 0.8 D -YNL307C YBR043C 0.8 D -YNL307C YDR002W 0.8 D -YNL307C YDR072C 0.8 D -YNL307C YGR126W 0.8 D -YNL307C YLL034C 0.8 D -YNL307C YNL065W 0.8 D -YNL307C YNL074C 0.8 D -YNL307C YOR028C 0.8 D -YBR160W YOR372C 0.788 D -YBR059C YBL047C 0.228 D -YBR059C YDR229W 0.228 D -YBR059C YDR239C 0.228 D -YBR059C YFR024CA 0.228 D -YBR059C YLL018C 0.072 D -YBR059C YLR206W 0.228 D -YKL166C YBR059C 0.228 D -YBR160W YIL122W 0.768 D -YNL307C YDL156W 0.768 D -YBR160W YOL100W 0.764 D -YBR160W YNL058C 0.756 D -YJR059W YGR100W 0.756 D -YNL307C YNR047W 0.336 D -YJR059W YPR074C 0.744 D -YER125W YPR181C 0.732 D -YNL307C YLR249W 0.724 D -YBR160W YPL209C 0.708 D -YPL209C YER016W 0.708 D -YPL209C YIR010W 0.708 D -YPL209C YLL018C 0.46 D -YPL209C YPR115W 0.708 D -YER129W YER027C 0.148 D -YBR160W YAR002W 0.684 D -YBR160W YJL076W 0.68 D -YBR160W YEL032W 0.672 D -YBR160W YLR096W 0.672 D -YLR096W YGR009C 0.672 D -YLR096W YLR257W 0.256 D -YLR096W YNL054W 0.672 D -YBR160W YEL061C 0.668 D -YBR160W YDR027C 0.66 D -YJR059W YOR209C 0.66 D -YBR160W YHR164C 0.624 D -YJR059W YLL038C 0.62 D -YMR216C YCL011C 0.248 D -YMR216C YKL064W 0.248 D -YMR216C YLL018C 0.248 D -YMR216C YLR133W 0.112 D -YMR216C YNL004W 0.248 D -YMR216C YPR042C 0.248 D -YBR160W YJR059W 0.02 D -YBR160W YGR238C 0.6 D -YER125W YNL271C 0.592 D -YJR059W YDL223C 0.436 D -YJR059W YDR169C 0.592 D -YBR160W YOR083W 0.584 D -YMR216C YLR150W 0.204 D -YBR160W YJR033C 0.556 D -YFL033C YPL031C 0.552 D -YPL031C YBL047C 0.396 D -YPL031C YBR287W 0.552 D -YPL031C YCL014W 0.552 D -YPL031C YDL131W 0.552 D -YPL031C YDL173W 0.552 D -YPL031C YDR229W 0.552 D -YPL031C YER033C 0.552 D -YPL031C YER048C 0.552 D -YPL031C YFR024CA 0.552 D -YPL031C YFR034C 0.552 D -YPL031C YGR167W 0.552 D -YPL031C YHR009C 0.552 D -YPL031C YIL047C 0.552 D -YPL031C YIL084C 0.552 D -YPL031C YIR003W 0.552 D -YPL031C YJL146W 0.552 D -YPL031C YKL064W 0.372 D -YPL031C YKL127W 0.552 D -YPL031C YLR018C 0.552 D -YPL031C YLR093C 0.552 D -YPL031C YLR146C 0.552 D -YPL031C YML016C 0.552 D -YPL031C YML117W 0.552 D -YPL031C YNL104C 0.552 D -YPL031C YNL166C 0.552 D -YPL031C YNL233W 0.552 D -YPL031C YOL060C 0.552 D -YPL031C YOL070C 0.552 D -YPL031C YOR298CA 0.552 D -YPL031C YOR301W 0.552 D -YPL031C YOR359W 0.552 D -YPL031C YPR042C 0.372 D -YPL209C YLR150W 0.372 D -YBR160W YDR130C 0.548 D -YPL031C YER125W 0.512 D -YBR160W YKL048C 0.544 D -YBR160W YOR315W 0.544 D -YDR477W YER027C 0.544 D -YKL048C YDR477W 0.544 D -YKL048C YJR053W 0.544 D -YBR160W YGR188C 0.528 D -YDR477W YJL110C 0.528 D -YBR160W YDR227W 0.512 D -YJR059W YDR208W 0.508 D -YBR160W YDR507C 0.492 D -YDR507C YMR086W 0.492 D -YLR113W YMR172W 0.48 D -YJR059W YKR100C 0.476 D -YBR160W YLR425W 0.464 D -YJR059W YNR013C 0.464 D -YNL307C YKL146W 0.444 D -YDR490C YDR283C 0.416 D -YDR490C YHR205W 0.416 D -YDR490C YKL126W 0.416 D -YDR490C YMR104C 0.416 D -YER089C YHR079C 0.416 D -YER089C YLR113W 0.416 D -YHR079C YDR328C 0.416 D -YHR079C YLR257W 0.416 D -YHR079C YLR429W 0.416 D -YHR079C YNL155W 0.416 D -YHR079C YNL192W 0.416 D -YHR079C YNL224C 0.416 D -YHR079C YNR047W 0.416 D -YHR079C YOR113W 0.416 D -YKL126W YDL022W 0.416 D -YMR104C YMR109W 0.416 D -YPL031C YER089C 0.416 D -YDR420W YHR154W 0.408 U -YLR113W YER118C 0.408 D -YPL031C YPL193W 0.408 D -YPL031C YDL225W 0.4 D -YOL045W YCL037C 0.396 D -YJR059W YHL034C 0.388 D -YDR420W YOR153W 0.38 U -YPL031C YOR110W 0.38 D -YPL031C YIL033C 0.372 D -YJR059W YLR319C 0.364 D -YPL031C YLL024C 0.36 D -YHR030C YGL122C 0.352 D -YPL209C YLR192C 0.352 D -YPL031C YHR183W 0.336 D -YDR477W YGL035C 0.332 D -YJR059W YPR040W 0.32 D -YER125W YBR290W 0.316 D -YDR054C YNL103W 0.304 D -YHR205W YDR054C 0.304 D -YHR030C YLR442C 0.3 D -YBR160W YPL124W 0.292 D -YLR113W YIR006C 0.292 D -YPL031C YBR130C 0.26 D -YPL031C YJR070C 0.244 D -YBR160W YIL031W 0.24 D -YJR059W YGL008C 0.24 D -YBR160W YAL019W 0.228 D -YBR160W YJR083C 0.228 D -YOL045W YOR276W 0.216 D -YPL031C YBL086C 0.212 D -YDR477W YOL059W 0.2 D -YDR477W YER028C 0.188 D -YPL031C YBR109C 0.188 D -YBR160W YBR038W 0.184 D -YBR160W YJL157C 0.176 D -YJR059W YMR196W 0.164 D -YPL209C YJL080C 0.164 D -YNL307C YKL159C 0.16 D -YIL095W YBL047C 0.156 D -YIL095W YCR030C 0.156 D -YIL095W YDL161W 0.156 D -YIL095W YDL223C 0.156 D -YIL095W YER155C 0.156 D -YIL095W YJL044C 0.156 D -YIL095W YJL129C 0.156 D -YIL095W YJR092W 0.156 D -YIL095W YNL243W 0.156 D -YDR490C YGR086C 0.152 D -YBR160W YOR014W 0.14 D -YPL031C YBR188C 0.14 D -YBL105C YLR133W 0.136 D -YBR160W YBL105C 0.136 D -YIL095W YDR159W 0.12 D -YPL031C YJR076C 0.112 D -YBR160W YPL255W 0.108 D -YBR160W YOR373W 0.104 D -YIL095W YML088W 0.1 D -YPL209C YGR113W 0.1 D -YJR059W YDR137W 0.096 D -YPL031C YOR054C 0.096 D -YPL031C YFL001W 0.088 D -YNL307C YBR086C 0.084 D -YPL031C YKR021W 0.076 D -YPL209C YKL089W 0.06 D -YBR160W YGL124C 0.052 D -YHR079C YHR114W 0.052 D -YNL307C YEL015W 0.032 D -YJR059W YDL102W 0.028 D -YHR102W YNL161W 0.02 D -YPL031C YMR039C 0.016 D -YBR160W YLR102C 0.012 D -YPL031C YGL153W 0.012 D diff --git a/yeast-osmotic-stress/config.yaml b/yeast-osmotic-stress/config.yaml deleted file mode 100644 index 476fe0d..0000000 --- a/yeast-osmotic-stress/config.yaml +++ /dev/null @@ -1,160 +0,0 @@ -# Global workflow control - -# The length of the hash used to identify a parameter combination -hash_length: 7 - -# Specify the container framework. Current supported versions include 'docker' and -# 'singularity'. If container_framework is not specified, SPRAS will default to docker. -container_framework: docker - -# Only used if container_framework is set to singularity, this will unpack the singularity containers -# to the local filesystem. This is useful when PRM containers need to run inside another container, -# such as would be the case in an HTCondor/OSPool environment. -# NOTE: This unpacks singularity containers to the local filesystem, which will take up space in a way -# that persists after the workflow is complete. To clean up the unpacked containers, the user must -# manually delete them. -unpack_singularity: false - -# Allow the user to configure which container registry containers should be pulled from -# Note that this assumes container names are consistent across registries, and that the -# registry being passed doesn't require authentication for pull actions -container_registry: - base_url: docker.io - # The owner or project of the registry - # For example, "reedcompbio" if the image is available as docker.io/reedcompbio/allpairs - owner: reedcompbio - -# This list of algorithms should be generated by a script which checks the filesystem for installs. -# It shouldn't be changed by mere mortals. (alternatively, we could add a path to executable for each algorithm -# in the list to reduce the number of assumptions of the program at the cost of making the config a little more involved) -# Each algorithm has an 'include' parameter. By toggling 'include' to true/false the user can change -# which algorithms are run in a given experiment. -# -# algorithm-specific parameters are embedded in lists so that users can specify multiple. If multiple -# parameters are specified then the algorithm will be run as many times as needed to cover all parameter -# combinations. For instance if we have the following: -# - name: "myAlg" -# params: -# include: true -# a: [1,2] -# b: [0.5,0.75] -# -# then myAlg will be run on (a=1,b=0.5),(a=1,b=0.75),(a=2,b=0.5), and (a=2,b=0,75). Pretty neat, but be -# careful: too many parameters might make your runs take a long time. - -algorithms: - - name: "pathlinker" - params: - include: false - run1: - k: range(100,201,100) - - - name: "omicsintegrator1" - params: - include: true - run1: - b: np.linspace(1,2,250) - w: [4.5] - d: [10] - mu: [0.095] - r: [0.01] - - - name: "omicsintegrator2" - params: - include: false - run1: - b: [4] - g: [0] - run2: - b: [2] - g: [3] - - - name: "meo" - params: - include: false - run1: - max_path_length: [3] - local_search: ["Yes"] - rand_restarts: [10] - - - name: "mincostflow" - params: - include: false - run1: - flow: [1] # The flow must be an int - capacity: [1] - - - name: "allpairs" - params: - include: false - - - name: "domino" - params: - include: false - run1: - slice_threshold: [0.3] - module_threshold: [0.05] - - -# Here we specify which pathways to run and other file location information. -# DataLoader.py can currently only load a single dataset -# Assume that if a dataset label does not change, the lists of associated input files do not change -datasets: - - - label: data0 - node_files: ["prizes1_dummies.txt"] - # DataLoader.py can currently only load a single edge file, which is the primary network - edge_files: ["network1.txt"] - # Placeholder - other_files: [] - # Relative path from the spras directory - data_dir: "input" - # - - # label: data1 - # # Reuse some of the same sources file as 'data0' but different network and targets - # node_files: ["node-prizes.txt", "sources.txt", "alternative-targets.txt"] - # edge_files: ["alternative-network.txt"] - # other_files: [] - # # Relative path from the spras directory - # data_dir: "input" - -# If we want to reconstruct then we should set run to true. -# TODO: if include is true above but run is false here, algs are not run. -# is this the behavior we want? -reconstruction_settings: - - #set where everything is saved - locations: - - #place the save path here - # TODO move to global - reconstruction_dir: "output" - - run: true - -analysis: - # Create one summary per pathway file and a single summary table for all pathways for each dataset - summary: - include: true - # Create output files for each pathway that can be visualized with GraphSpace - graphspace: - include: false - # Create Cytoscape session file with all pathway graphs for each dataset - cytoscape: - include: false - # Machine learning analysis (e.g. clustering) of the pathway output files for each dataset - ml: - # ml analysis per dataset - include: true - # adds ml analysis per algorithm output - # only runs for algorithms with multiple parameter combinations chosen - aggregate_per_algorithm: false - # specify how many principal components to calculate - components: 2 - # boolean to show the labels on the pca graph - labels: true - # 'ward', 'complete', 'average', 'single' - # if linkage: ward, must use metric: euclidean - linkage: 'ward' - # 'euclidean', 'manhattan', 'cosine' - metric: 'euclidean' diff --git a/yeast-osmotic-stress/environment.yml b/yeast-osmotic-stress/environment.yml deleted file mode 100644 index e3d912d..0000000 --- a/yeast-osmotic-stress/environment.yml +++ /dev/null @@ -1,10 +0,0 @@ -name: yeast_env -channels: - - conda-forge -dependencies: - - notebook - - matplotlib=3.7 - - numpy=1.24 - - pandas=2.0 - - seaborn=0.13.2 - - matplotlib-venn=1.1.1