diff --git a/_modules/ete4/gtdb_taxonomy/gtdbquery.html b/_modules/ete4/gtdb_taxonomy/gtdbquery.html new file mode 100644 index 000000000..d4c94accb --- /dev/null +++ b/_modules/ete4/gtdb_taxonomy/gtdbquery.html @@ -0,0 +1,985 @@ + + + + + + + ete4.gtdb_taxonomy.gtdbquery — ETE Toolkit 4.0.0-beta documentation + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+ +

Source code for ete4.gtdb_taxonomy.gtdbquery

+#!/usr/bin/env python3
+
+import sys
+import os
+
+import pickle
+from collections import defaultdict, Counter
+
+from hashlib import md5
+
+import sqlite3
+import math
+import tarfile
+import warnings
+
+from ete4 import ETE_DATA_HOME, update_ete_data
+
+
+__all__ = ["GTDBTaxa", "is_taxadb_up_to_date"]
+
+DB_VERSION = 2
+DEFAULT_GTDBTAXADB = ETE_DATA_HOME + '/gtdbtaxa.sqlite'
+DEFAULT_GTDBTAXADUMP = ETE_DATA_HOME + '/gtdb202dump.tar.gz'
+
+
+def is_taxadb_up_to_date(dbfile=DEFAULT_GTDBTAXADB):
+    """Check if a valid and up-to-date gtdbtaxa.sqlite database exists
+    If dbfile= is not specified, DEFAULT_TAXADB is assumed
+    """
+    db = sqlite3.connect(dbfile)
+    try:
+        r = db.execute('SELECT version FROM stats;')
+        version = r.fetchone()[0]
+    except (sqlite3.OperationalError, ValueError, IndexError, TypeError):
+        version = None
+
+    db.close()
+
+    if version != DB_VERSION:
+        return False
+    return True
+
+
+
+[docs] +class GTDBTaxa: + """ + Local transparent connector to the GTDB taxonomy database. + """ + +
+[docs] + def __init__(self, dbfile=None, taxdump_file=None, memory=False): + + if not dbfile: + self.dbfile = DEFAULT_GTDBTAXADB + else: + self.dbfile = dbfile + + if taxdump_file: + self.update_taxonomy_database(taxdump_file) + + if dbfile != DEFAULT_GTDBTAXADB and not os.path.exists(self.dbfile): + print('GTDB database not present yet (first time used?)', file=sys.stderr) + urlbase = ('https://github.com/etetoolkit/ete-data/raw/main' + '/gtdb_taxonomy/gtdb202') + update_ete_data(f'{DEFAULT_GTDBTAXADB}.traverse.pkl', f'{urlbase}/gtdbtaxa.sqlite.traverse.pkl') + update_ete_data(f'{DEFAULT_GTDBTAXADUMP}', f'{urlbase}/gtdb202dump.tar.gz') + + self.update_taxonomy_database(taxdump_file=DEFAULT_GTDBTAXADUMP) + + if not os.path.exists(self.dbfile): + raise ValueError("Cannot open taxonomy database: %s" % self.dbfile) + + self.db = None + self._connect() + + if not is_taxadb_up_to_date(self.dbfile): + print('GTDB database format is outdated. Upgrading', file=sys.stderr) + self.update_taxonomy_database(taxdump_file) + + if memory: + filedb = self.db + self.db = sqlite3.connect(':memory:') + filedb.backup(self.db)
+ + +
+[docs] + def update_taxonomy_database(self, taxdump_file=None): + """Update the GTDB taxonomy database. + + It updates it by downloading and parsing the latest + gtdbtaxdump.tar.gz file. + + :param taxdump_file: Alternative location of gtdbtaxdump.tar.gz. + """ + update_db(self.dbfile, targz_file=taxdump_file)
+ + + def _connect(self): + self.db = sqlite3.connect(self.dbfile) + + def _translate_merged(self, all_taxids): + conv_all_taxids = set((list(map(int, all_taxids)))) + cmd = 'select taxid_old, taxid_new FROM merged WHERE taxid_old IN (%s)' %','.join(map(str, all_taxids)) + + result = self.db.execute(cmd) + conversion = {} + for old, new in result.fetchall(): + conv_all_taxids.discard(int(old)) + conv_all_taxids.add(int(new)) + conversion[int(old)] = int(new) + return conv_all_taxids, conversion + + + # def get_fuzzy_name_translation(self, name, sim=0.9): + # ''' + # Given an inexact species name, returns the best match in the NCBI database of taxa names. + # :argument 0.9 sim: Min word similarity to report a match (from 0 to 1). + # :return: taxid, species-name-match, match-score + # ''' + + + # import sqlite3.dbapi2 as dbapi2 + # _db = dbapi2.connect(self.dbfile) + # _db.enable_load_extension(True) + # module_path = os.path.split(os.path.realpath(__file__))[0] + # _db.execute("select load_extension('%s')" % os.path.join(module_path, + # "SQLite-Levenshtein/levenshtein.sqlext")) + + # print("Trying fuzzy search for %s" % name) + # maxdiffs = math.ceil(len(name) * (1-sim)) + # cmd = 'SELECT taxid, spname, LEVENSHTEIN(spname, "%s") AS sim FROM species WHERE sim<=%s ORDER BY sim LIMIT 1;' % (name, maxdiffs) + # taxid, spname, score = None, None, len(name) + # result = _db.execute(cmd) + # try: + # taxid, spname, score = result.fetchone() + # except TypeError: + # cmd = 'SELECT taxid, spname, LEVENSHTEIN(spname, "%s") AS sim FROM synonym WHERE sim<=%s ORDER BY sim LIMIT 1;' % (name, maxdiffs) + # result = _db.execute(cmd) + # try: + # taxid, spname, score = result.fetchone() + # except: + # pass + # else: + # taxid = int(taxid) + # else: + # taxid = int(taxid) + + # norm_score = 1 - (float(score)/len(name)) + # if taxid: + # print("FOUND! %s taxid:%s score:%s (%s)" %(spname, taxid, score, norm_score)) + + # return taxid, spname, norm_score + +
+[docs] + def get_rank(self, taxids): + """Return dictionary converting taxids to their GTDB taxonomy rank.""" + ids = ','.join('"%s"' % v for v in set(taxids) - {None, ''}) + result = self.db.execute('SELECT taxid, rank FROM species WHERE taxid IN (%s)' % ids) + return {tax: spname for tax, spname in result.fetchall()}
+ + +
+[docs] + def get_lineage_translator(self, taxids): + """Given a valid taxid number, return its corresponding lineage track as a + hierarchically sorted list of parent taxids. + """ + all_ids = set(taxids) + all_ids.discard(None) + all_ids.discard("") + query = ','.join(['"%s"' %v for v in all_ids]) + result = self.db.execute('SELECT taxid, track FROM species WHERE taxid IN (%s);' %query) + id2lineages = {} + for tax, track in result.fetchall(): + id2lineages[tax] = list(map(int, reversed(track.split(",")))) + + return id2lineages
+ + +
+[docs] + def get_name_lineage(self, taxnames): + """Given a valid taxname, return its corresponding lineage track as a + hierarchically sorted list of parent taxnames. + """ + name_lineages = [] + name2taxid = self.get_name_translator(taxnames) + for key, value in name2taxid.items(): + lineage = self.get_lineage(value[0]) + names = self.get_taxid_translator(lineage) + name_lineages.append({key:[names[taxid] for taxid in lineage]}) + + return name_lineages
+ + +
+[docs] + def get_lineage(self, taxid): + """Given a valid taxid number, return its corresponding lineage track as a + hierarchically sorted list of parent taxids. + """ + if not taxid: + return None + taxid = int(taxid) + result = self.db.execute('SELECT track FROM species WHERE taxid=%s' %taxid) + raw_track = result.fetchone() + if not raw_track: + #perhaps is an obsolete taxid + _, merged_conversion = self._translate_merged([taxid]) + if taxid in merged_conversion: + result = self.db.execute('SELECT track FROM species WHERE taxid=%s' %merged_conversion[taxid]) + raw_track = result.fetchone() + # if not raise error + if not raw_track: + #raw_track = ["1"] + raise ValueError("%s taxid not found" %taxid) + else: + warnings.warn("taxid %s was translated into %s" %(taxid, merged_conversion[taxid])) + + track = list(map(int, raw_track[0].split(","))) + return list(reversed(track))
+ + +
+[docs] + def get_common_names(self, taxids): + query = ','.join(['"%s"' %v for v in taxids]) + cmd = "select taxid, common FROM species WHERE taxid IN (%s);" %query + result = self.db.execute(cmd) + id2name = {} + for tax, common_name in result.fetchall(): + if common_name: + id2name[tax] = common_name + return id2name
+ + +
+[docs] + def get_taxid_translator(self, taxids, try_synonyms=True): + """Given a list of taxids, returns a dictionary with their corresponding + scientific names. + """ + + all_ids = set(map(int, taxids)) + all_ids.discard(None) + all_ids.discard("") + query = ','.join(['"%s"' %v for v in all_ids]) + cmd = "select taxid, spname FROM species WHERE taxid IN (%s);" %query + result = self.db.execute(cmd) + id2name = {} + for tax, spname in result.fetchall(): + id2name[tax] = spname + + # any taxid without translation? lets tray in the merged table + # if len(all_ids) != len(id2name) and try_synonyms: + # not_found_taxids = all_ids - set(id2name.keys()) + # taxids, old2new = self._translate_merged(not_found_taxids) + # new2old = {v: k for k,v in old2new.items()} + + # if old2new: + # query = ','.join(['"%s"' %v for v in new2old]) + # cmd = "select taxid, spname FROM species WHERE taxid IN (%s);" %query + # result = self.db.execute(cmd) + # for tax, spname in result.fetchall(): + # id2name[new2old[tax]] = spname + + return id2name
+ + +
+[docs] + def get_name_translator(self, names): + """ + Given a list of taxid scientific names, returns a dictionary translating them into their corresponding taxids. + Exact name match is required for translation. + """ + + name2id = {} + #name2realname = {} + name2origname = {} + for n in names: + name2origname[n.lower()] = n + + names = set(name2origname.keys()) + + query = ','.join(['"%s"' %n for n in name2origname.keys()]) + cmd = 'select spname, taxid from species where spname IN (%s)' %query + result = self.db.execute('select spname, taxid from species where spname IN (%s)' %query) + for sp, taxid in result.fetchall(): + oname = name2origname[sp.lower()] + name2id.setdefault(oname, []).append(taxid) + #name2realname[oname] = sp + missing = names - set([n.lower() for n in name2id.keys()]) + if missing: + query = ','.join(['"%s"' %n for n in missing]) + result = self.db.execute('select spname, taxid from synonym where spname IN (%s)' %query) + for sp, taxid in result.fetchall(): + oname = name2origname[sp.lower()] + name2id.setdefault(oname, []).append(taxid) + #name2realname[oname] = sp + return name2id
+ + +
+[docs] + def translate_to_names(self, taxids): + """ + Given a list of taxid numbers, returns another list with their corresponding scientific names. + """ + id2name = self.get_taxid_translator(taxids) + names = [] + for sp in taxids: + names.append(id2name.get(sp, sp)) + return names
+ + + +
+[docs] + def get_descendant_taxa(self, parent, intermediate_nodes=False, rank_limit=None, collapse_subspecies=False, return_tree=False): + """ + given a parent taxid or scientific species name, returns a list of all its descendants taxids. + If intermediate_nodes is set to True, internal nodes will also be dumped. + """ + try: + taxid = int(parent) + except ValueError: + try: + taxid = self.get_name_translator([parent])[parent][0] + except KeyError: + raise ValueError('%s not found!' %parent) + + # checks if taxid is a deprecated one, and converts into the right one. + _, conversion = self._translate_merged([taxid]) #try to find taxid in synonyms table + if conversion: + taxid = conversion[taxid] + + with open(self.dbfile+".traverse.pkl", "rb") as CACHED_TRAVERSE: + prepostorder = pickle.load(CACHED_TRAVERSE) + descendants = {} + found = 0 + for tid in prepostorder: + if tid == taxid: + found += 1 + elif found == 1: + descendants[tid] = descendants.get(tid, 0) + 1 + elif found == 2: + break + + if not found: + raise ValueError("taxid not found:%s" %taxid) + elif found == 1: + return [taxid] + if rank_limit or collapse_subspecies or return_tree: + descendants_spnames = self.get_taxid_translator(list(descendants.keys())) + #tree = self.get_topology(list(descendants.keys()), intermediate_nodes=intermediate_nodes, collapse_subspecies=collapse_subspecies, rank_limit=rank_limit) + tree = self.get_topology(list(descendants_spnames.values()), intermediate_nodes=intermediate_nodes, collapse_subspecies=collapse_subspecies, rank_limit=rank_limit) + if return_tree: + return tree + elif intermediate_nodes: + return [n.name for n in tree.get_descendants()] + else: + return [n.name for n in tree] + + elif intermediate_nodes: + return self.translate_to_names([tid for tid, count in descendants.items()]) + else: + self.translate_to_names([tid for tid, count in descendants.items() if count == 1]) + return self.translate_to_names([tid for tid, count in descendants.items() if count == 1])
+ + +
+[docs] + def get_topology(self, taxnames, intermediate_nodes=False, rank_limit=None, + collapse_subspecies=False, annotate=True): + """Return minimal pruned GTDB taxonomy tree containing all given taxids. + + :param intermediate_nodes: If True, single child nodes + representing the complete lineage of leaf nodes are kept. + Otherwise, the tree is pruned to contain the first common + ancestor of each group. + :param rank_limit: If valid NCBI rank name is provided, the + tree is pruned at that given level. For instance, use + rank="species" to get rid of sub-species or strain leaf + nodes. + :param collapse_subspecies: If True, any item under the + species rank will be collapsed into the species upper + node. + """ + from .. import PhyloTree + #taxids, merged_conversion = self._translate_merged(taxids) + tax2id = self.get_name_translator(taxnames) #{'f__Korarchaeaceae': [2174], 'o__Peptococcales': [205487], 'p__Huberarchaeota': [610]} + taxids = [i[0] for i in tax2id.values()] + + if len(taxids) == 1: + root_taxid = int(list(taxids)[0]) + with open(self.dbfile+".traverse.pkl", "rb") as CACHED_TRAVERSE: + prepostorder = pickle.load(CACHED_TRAVERSE) + descendants = {} + found = 0 + nodes = {} + hit = 0 + visited = set() + start = prepostorder.index(root_taxid) + try: + end = prepostorder.index(root_taxid, start+1) + subtree = prepostorder[start:end+1] + except ValueError: + # If root taxid is not found in postorder, must be a tip node + subtree = [root_taxid] + leaves = set([v for v, count in Counter(subtree).items() if count == 1]) + tax2name = self.get_taxid_translator(list(subtree)) + name2tax ={spname:taxid for taxid,spname in tax2name.items()} + nodes[root_taxid] = PhyloTree(name=root_taxid) + current_parent = nodes[root_taxid] + for tid in subtree: + if tid in visited: + current_parent = nodes[tid].up + else: + visited.add(tid) + nodes[tid] = PhyloTree(name=tax2name.get(tid, '')) + current_parent.add_child(nodes[tid]) + if tid not in leaves: + current_parent = nodes[tid] + root = nodes[root_taxid] + else: + taxids = set(map(int, taxids)) + sp2track = {} + elem2node = {} + id2lineage = self.get_lineage_translator(taxids) + all_taxids = set() + for lineage in id2lineage.values(): + all_taxids.update(lineage) + id2rank = self.get_rank(all_taxids) + + tax2name = self.get_taxid_translator(taxids) + all_taxid_codes = set([_tax for _lin in list(id2lineage.values()) for _tax in _lin]) + extra_tax2name = self.get_taxid_translator(list(all_taxid_codes - set(tax2name.keys()))) + tax2name.update(extra_tax2name) + name2tax ={spname:taxid for taxid,spname in tax2name.items()} + + for sp in taxids: + track = [] + lineage = id2lineage[sp] + + for elem in lineage: + spanme = tax2name[elem] + if elem not in elem2node: + node = elem2node.setdefault(elem, PhyloTree()) + node.name = str(tax2name[elem]) + node.taxid = str(tax2name[elem]) + node.add_prop("rank", str(id2rank.get(int(elem), "no rank"))) + else: + node = elem2node[elem] + track.append(node) + sp2track[sp] = track + # generate parent child relationships + for sp, track in sp2track.items(): + parent = None + for elem in track: + if parent and elem not in parent.children: + parent.add_child(elem) + if rank_limit and elem.props.get('rank') == rank_limit: + break + parent = elem + root = elem2node[1] + #remove onechild-nodes + + if not intermediate_nodes: + for n in root.descendants(): + if len(n.children) == 1 and int(name2tax.get(n.name, n.name)) not in taxids: + n.delete(prevent_nondicotomic=False) + + if len(root.children) == 1: + tree = root.children[0].detach() + else: + tree = root + + if collapse_subspecies: + to_detach = [] + for node in tree.traverse(): + if node.props.get('rank') == 'species': + to_detach.extend(node.children) + for n in to_detach: + n.detach() + + if annotate: + self.annotate_tree(tree) + + return tree
+ + +
+[docs] + def annotate_tree(self, t, taxid_attr='name', + tax2name=None, tax2track=None, tax2rank=None): + """Annotate a tree containing taxids as leaf names. + + It annotates by adding the properties 'taxid', 'sci_name', + 'lineage', 'named_lineage' and 'rank'. + + :param t: Tree to annotate. + :param taxid_attr: Node attribute (property) containing the + taxid number associated to each node (i.e. species in + PhyloTree instances). + :param tax2name, tax2track, tax2rank: Pre-calculated + dictionaries with translations from taxid number to names, + track lineages and ranks. + """ + taxids = set() + if taxid_attr == "taxid": + for n in t.traverse(): + if taxid_attr in n.props: + taxids.add(n.props[taxid_attr]) + else: + for n in t.traverse(): + try: + # translate gtdb name -> id + taxaname = n.props.get(taxid_attr) + tid = self.get_name_translator([taxaname])[taxaname][0] + taxids.add(tid) + except (KeyError, ValueError, AttributeError): + pass + merged_conversion = {} + + taxids, merged_conversion = self._translate_merged(taxids) + + if not tax2name or taxids - set(map(int, list(tax2name.keys()))): + tax2name = self.get_taxid_translator(taxids) + if not tax2track or taxids - set(map(int, list(tax2track.keys()))): + tax2track = self.get_lineage_translator(taxids) + + all_taxid_codes = set([_tax for _lin in list(tax2track.values()) for _tax in _lin]) + extra_tax2name = self.get_taxid_translator(list(all_taxid_codes - set(tax2name.keys()))) + tax2name.update(extra_tax2name) + + tax2common_name = self.get_common_names(tax2name.keys()) + + if not tax2rank: + tax2rank = self.get_rank(list(tax2name.keys())) + + name2tax ={spname:taxid for taxid,spname in tax2name.items()} + n2leaves = t.get_cached_content() + + for node in t.traverse('postorder'): + node_taxid = node.props.get(taxid_attr) + + node.add_prop('taxid', node_taxid) + + if node_taxid: + tmp_taxid = self.get_name_translator([node_taxid]).get(node_taxid, [None])[0] + + if node_taxid in merged_conversion: + node_taxid = merged_conversion[node_taxid] + + rank = tax2rank.get(tmp_taxid, 'Unknown') + if rank != 'subspecies': + sci_name = tax2name.get(tmp_taxid, '') + else: + # For subspecies, gtdb taxid (like 'RS_GCF_0062.1') is not informative. Better use the species one. + track = tax2track[tmp_taxid] # like ['root', 'd__Bacteria', ..., 's__Moorella', 'RS_GCF_0062.1'] + sci_name = tax2name.get(track[-2], '') + + node.add_props(sci_name = sci_name, + common_name = tax2common_name.get(node_taxid, ''), + lineage = tax2track.get(tmp_taxid, []), + rank = tax2rank.get(tmp_taxid, 'Unknown'), + named_lineage = [tax2name.get(tax, str(tax)) for tax in tax2track.get(tmp_taxid, [])]) + elif node.is_leaf: + node.add_props(sci_name = node.props.get(taxid_attr, 'NA'), + common_name = '', + lineage = [], + rank = 'Unknown', + named_lineage = []) + else: + lineage = self._common_lineage([lf.props.get('lineage') for lf in n2leaves[node]]) + if lineage[-1]: + ancestor = self.get_taxid_translator([lineage[-1]])[lineage[-1]] + else: + ancestor = None + node.add_props(sci_name = tax2name.get(ancestor, str(ancestor)), + common_name = tax2common_name.get(lineage[-1], ''), + taxid = ancestor, + lineage = lineage, + rank = tax2rank.get(lineage[-1], 'Unknown'), + named_lineage = [tax2name.get(tax, str(tax)) for tax in lineage]) + + return tax2name, tax2track, tax2rank
+ + + def _common_lineage(self, vectors): + occurrence = defaultdict(int) + pos = defaultdict(set) + for v in vectors: + for i, taxid in enumerate(v): + occurrence[taxid] += 1 + pos[taxid].add(i) + + common = [taxid for taxid, ocu in occurrence.items() if ocu == len(vectors)] + if not common: + return [""] + else: + sorted_lineage = sorted(common, key=lambda x: min(pos[x])) + return sorted_lineage + + # OLD APPROACH: + + # visited = defaultdict(int) + # for index, name in [(ei, e) for v in vectors for ei, e in enumerate(v)]: + # visited[(name, index)] += 1 + + # def _sort(a, b): + # if a[1] > b[1]: + # return 1 + # elif a[1] < b[1]: + # return -1 + # else: + # if a[0][1] > b[0][1]: + # return 1 + # elif a[0][1] < b[0][1]: + # return -1 + # return 0 + + # matches = sorted(visited.items(), _sort) + + # if matches: + # best_match = matches[-1] + # else: + # return "", set() + + # if best_match[1] != len(vectors): + # return "", set() + # else: + # return best_match[0][0], [m[0][0] for m in matches if m[1] == len(vectors)] + + +
+[docs] + def get_broken_branches(self, t, taxa_lineages, n2content=None): + """Returns a list of GTDB lineage names that are not monophyletic in the + provided tree, as well as the list of affected branches and their size. + CURRENTLY EXPERIMENTAL + """ + if not n2content: + n2content = t.get_cached_content() + + tax2node = defaultdict(set) + + unknown = set() + for leaf in t.iter_leaves(): + if leaf.sci_name.lower() != "unknown": + lineage = taxa_lineages[leaf.taxid] + for index, tax in enumerate(lineage): + tax2node[tax].add(leaf) + else: + unknown.add(leaf) + + broken_branches = defaultdict(set) + broken_clades = set() + for tax, leaves in tax2node.items(): + if len(leaves) > 1: + common = t.get_common_ancestor(leaves) + else: + common = list(leaves)[0] + if (leaves ^ set(n2content[common])) - unknown: + broken_branches[common].add(tax) + broken_clades.add(tax) + + broken_clade_sizes = [len(tax2node[tax]) for tax in broken_clades] + return broken_branches, broken_clades, broken_clade_sizes
+
+ + + + # TODO: See why this code is commented out and comment it properly or remove it. + # + # def annotate_tree_with_taxa(self, t, name2taxa_file, tax2name=None, tax2track=None, attr_name="name"): + # if name2taxa_file: + # names2taxid = dict([map(strip, line.split("\t")) + # for line in open(name2taxa_file)]) + # else: + # names2taxid = dict([(n.name, getattr(n, attr_name)) for n in t.iter_leaves()]) + + # not_found = 0 + # for n in t.iter_leaves(): + # n.add_features(taxid=names2taxid.get(n.name, 0)) + # n.add_features(species=n.taxid) + # if n.taxid == 0: + # not_found += 1 + # if not_found: + # print >>sys.stderr, "WARNING: %s nodes where not found within NCBI taxonomy!!" %not_found + + # return self.annotate_tree(t, tax2name, tax2track, attr_name="taxid") + + +def load_gtdb_tree_from_dump(tar): + from .. import Tree + # Download: gtdbdump/gtdbr202dump.tar.z + parent2child = {} + name2node = {} + node2taxname = {} + synonyms = set() + name2rank = {} + node2common = {} + print("Loading node names...") + unique_nocase_synonyms = set() + for line in tar.extractfile("names.dmp"): + line = str(line.decode()) + fields = [_f.strip() for _f in line.split("|")] + nodename = fields[0] + name_type = fields[3].lower() + taxname = fields[1] + + # Clean up tax names so we make sure the don't include quotes. See https://github.com/etetoolkit/ete/issues/469 + taxname = taxname.rstrip('"').lstrip('"') + + if name_type == "scientific name": + node2taxname[nodename] = taxname + if name_type == "genbank common name": + node2common[nodename] = taxname + elif name_type in set(["synonym", "equivalent name", "genbank equivalent name", + "anamorph", "genbank synonym", "genbank anamorph", "teleomorph"]): + + # Keep track synonyms, but ignore duplicate case-insensitive names. See https://github.com/etetoolkit/ete/issues/469 + synonym_key = (nodename, taxname.lower()) + if synonym_key not in unique_nocase_synonyms: + unique_nocase_synonyms.add(synonym_key) + synonyms.add((nodename, taxname)) + + print(len(node2taxname), "names loaded.") + print(len(synonyms), "synonyms loaded.") + + print("Loading nodes...") + for line in tar.extractfile("nodes.dmp"): + line = str(line.decode()) + fields = line.split("|") + nodename = fields[0].strip() + parentname = fields[1].strip() + try: + n = Tree() + except: + from .. import Tree + n = Tree() + n.name = nodename + #n.taxname = node2taxname[nodename] + n.add_prop('taxname', node2taxname[nodename]) + if nodename in node2common: + n.add_prop('common_name', node2taxname[nodename]) + n.add_prop('rank', fields[2].strip()) + parent2child[nodename] = parentname + name2node[nodename] = n + print(len(name2node), "nodes loaded.") + + print("Linking nodes...") + for node in name2node: + if node == "1": + t = name2node[node] + else: + parent = parent2child[node] + parent_node = name2node[parent] + parent_node.add_child(name2node[node]) + print("Tree is loaded.") + return t, synonyms + +def generate_table(t): + OUT = open("taxa.tab", "w") + for j, n in enumerate(t.traverse()): + if j%1000 == 0: + print("\r",j,"generating entries...", end=' ') + temp_node = n + track = [] + while temp_node: + track.append(temp_node.name) + temp_node = temp_node.up + if n.up: + print('\t'.join([n.name, n.up.name, n.props.get('taxname'), n.props.get("common_name", ''), n.props.get("rank"), ','.join(track)]), file=OUT) + else: + print('\t'.join([n.name, "", n.props.get('taxname'), n.props.get("common_name", ''), n.props.get("rank"), ','.join(track)]), file=OUT) + OUT.close() + + +def update_db(dbfile, targz_file=None): + basepath = os.path.split(dbfile)[0] + if basepath and not os.path.exists(basepath): + os.mkdir(basepath) + + try: + tar = tarfile.open(targz_file, 'r') + except: + raise ValueError("Please provide taxa dump tar.gz file") + + t, synonyms = load_gtdb_tree_from_dump(tar) + + prepostorder = [int(node.name) for post, node in t.iter_prepostorder()] + + with open(dbfile+'.traverse.pkl', 'wb') as fout: + pickle.dump(prepostorder, fout, 2) + + print("Updating database: %s ..." %dbfile) + generate_table(t) + + upload_data(dbfile) + + os.system("rm taxa.tab") + +def upload_data(dbfile): + print() + print('Uploading to', dbfile) + basepath = os.path.split(dbfile)[0] + if basepath and not os.path.exists(basepath): + os.mkdir(basepath) + + db = sqlite3.connect(dbfile) + + create_cmd = """ + DROP TABLE IF EXISTS stats; + DROP TABLE IF EXISTS species; + DROP TABLE IF EXISTS synonym; + DROP TABLE IF EXISTS merged; + CREATE TABLE stats (version INT PRIMARY KEY); + CREATE TABLE species (taxid INT PRIMARY KEY, parent INT, spname VARCHAR(50) COLLATE NOCASE, common VARCHAR(50) COLLATE NOCASE, rank VARCHAR(50), track TEXT); + CREATE TABLE synonym (taxid INT,spname VARCHAR(50) COLLATE NOCASE, PRIMARY KEY (spname, taxid)); + CREATE TABLE merged (taxid_old INT, taxid_new INT); + CREATE INDEX spname1 ON species (spname COLLATE NOCASE); + CREATE INDEX spname2 ON synonym (spname COLLATE NOCASE); + """ + for cmd in create_cmd.split(';'): + db.execute(cmd) + print() + + db.execute("INSERT INTO stats (version) VALUES (%d);" %DB_VERSION) + db.commit() + + # for i, line in enumerate(open("syn.tab")): + # if i%5000 == 0 : + # print('\rInserting synonyms: % 6d' %i, end=' ', file=sys.stderr) + # sys.stderr.flush() + # taxid, spname = line.strip('\n').split('\t') + # db.execute("INSERT INTO synonym (taxid, spname) VALUES (?, ?);", (taxid, spname)) + # print() + # db.commit() + # for i, line in enumerate(open("merged.tab")): + # if i%5000 == 0 : + # print('\rInserting taxid merges: % 6d' %i, end=' ', file=sys.stderr) + # sys.stderr.flush() + # taxid_old, taxid_new = line.strip('\n').split('\t') + # db.execute("INSERT INTO merged (taxid_old, taxid_new) VALUES (?, ?);", (taxid_old, taxid_new)) + # print() + # db.commit() + + with open('taxa.tab') as f_taxa: + for i, line in enumerate(f_taxa): + if i % 5000 == 0: + print('\rInserting taxids: %8d' % i, end=' ', file=sys.stderr) + sys.stderr.flush() + taxid, parentid, spname, common, rank, lineage = line.strip('\n').split('\t') + db.execute(('INSERT INTO species (taxid, parent, spname, common, rank, track) ' + 'VALUES (?, ?, ?, ?, ?, ?)'), (taxid, parentid, spname, common, rank, lineage)) + print() + db.commit() + +if __name__ == "__main__": + #from .. import PhyloTree + gtdb = GTDBTaxa() + gtdb.update_taxonomy_database(DEFAULT_GTDBTAXADUMP) + + descendants = gtdb.get_descendant_taxa('c__Thorarchaeia', collapse_subspecies=True, return_tree=True) + print(descendants.write(properties=None)) + print(descendants.get_ascii(properties=['sci_name', 'taxid','rank'])) + tree = gtdb.get_topology(["p__Huberarchaeota", "o__Peptococcales", "f__Korarchaeaceae", "s__Korarchaeum"], intermediate_nodes=True, collapse_subspecies=True, annotate=True) + print(tree.get_ascii(properties=["taxid", "sci_name", "rank"])) + + tree = PhyloTree('((c__Thorarchaeia, c__Lokiarchaeia_A), s__Caballeronia udeis);', sp_naming_function=lambda name: name) + tax2name, tax2track, tax2rank = gtdb.annotate_tree(tree, taxid_attr="name") + print(tree.get_ascii(properties=["taxid","name", "sci_name", "rank"])) + + print(gtdb.get_name_lineage(['RS_GCF_006228565.1','GB_GCA_001515945.1'])) +
+ +
+ +
+
+ +
+
+ + + + + + + \ No newline at end of file diff --git a/_modules/ete4/ncbi_taxonomy/ncbiquery.html b/_modules/ete4/ncbi_taxonomy/ncbiquery.html index efb6ec5ff..9efbdc345 100644 --- a/_modules/ete4/ncbi_taxonomy/ncbiquery.html +++ b/_modules/ete4/ncbi_taxonomy/ncbiquery.html @@ -55,8 +55,6 @@

Source code for ete4.ncbi_taxonomy.ncbiquery

DEFAULT_TAXDUMP = ETE_DATA_HOME + '/taxdump.tar.gz'
 
 
-
-[docs] def is_taxadb_up_to_date(dbfile=DEFAULT_TAXADB): """Return True if a valid and up-to-date taxa.sqlite database exists. @@ -71,19 +69,18 @@

Source code for ete4.ncbi_taxonomy.ncbiquery

db.close()
 
-    return version == DB_VERSION
- + return version == DB_VERSION
-[docs] +[docs] class NCBITaxa: """ A local transparent connector to the NCBI taxonomy database. """
-[docs] +[docs] def __init__(self, dbfile=None, taxdump_file=None, memory=False, update=True): """Open and keep a connection to the NCBI taxonomy database. @@ -120,7 +117,7 @@

Source code for ete4.ncbi_taxonomy.ncbiquery

-[docs]
+[docs]
     def update_taxonomy_database(self, taxdump_file=None):
         """Update the ncbi taxonomy database.
 
@@ -154,7 +151,7 @@ 

Source code for ete4.ncbi_taxonomy.ncbiquery

return conv_all_taxids, conversion
 
 
-[docs] +[docs] def get_fuzzy_name_translation(self, name, sim=0.9): """Return taxid, species name and match score from the NCBI database. @@ -203,7 +200,7 @@

Source code for ete4.ncbi_taxonomy.ncbiquery

-[docs]
+[docs]
     def get_rank(self, taxids):
         """Return dict with NCBI taxonomy ranks for each list of taxids."""
         all_ids = set(taxids)
@@ -222,7 +219,7 @@ 

Source code for ete4.ncbi_taxonomy.ncbiquery

-[docs]
+[docs]
     def get_lineage_translator(self, taxids):
         """Return dict with lineage tracks corresponding to the given taxids.
 
@@ -244,7 +241,7 @@ 

Source code for ete4.ncbi_taxonomy.ncbiquery

-[docs]
+[docs]
     def get_lineage(self, taxid):
         """Return lineage track corresponding to the given taxid.
 
@@ -276,7 +273,7 @@ 

Source code for ete4.ncbi_taxonomy.ncbiquery

-[docs]
+[docs]
     def get_common_names(self, taxids):
         query = ','.join('"%s"' % v for v in taxids)
         cmd = 'SELECT taxid, common FROM species WHERE taxid IN (%s);' % query
@@ -291,7 +288,7 @@ 

Source code for ete4.ncbi_taxonomy.ncbiquery

-[docs]
+[docs]
     def get_taxid_translator(self, taxids, try_synonyms=True):
         """Return dict with the scientific names corresponding to the taxids."""
         all_ids = set(map(int, taxids))
@@ -323,7 +320,7 @@ 

Source code for ete4.ncbi_taxonomy.ncbiquery

-[docs]
+[docs]
     def get_name_translator(self, names):
         """Return dict with taxids corresponding to the given scientific names.
 
@@ -357,7 +354,7 @@ 

Source code for ete4.ncbi_taxonomy.ncbiquery

-[docs]
+[docs]
     def translate_to_names(self, taxids):
         """Return list of scientific names corresponding to taxids."""
         id2name = self.get_taxid_translator(taxids)
@@ -368,7 +365,7 @@ 

Source code for ete4.ncbi_taxonomy.ncbiquery

-[docs]
+[docs]
     def get_descendant_taxa(self, parent, intermediate_nodes=False,
                             rank_limit=None, collapse_subspecies=False,
                             return_tree=False):
@@ -424,7 +421,7 @@ 

Source code for ete4.ncbi_taxonomy.ncbiquery

-[docs]
+[docs]
     def get_topology(self, taxids, intermediate_nodes=False, rank_limit=None,
                      collapse_subspecies=False, annotate=True):
         """Return the minimal pruned NCBI taxonomy tree containing taxids.
@@ -532,7 +529,7 @@ 

Source code for ete4.ncbi_taxonomy.ncbiquery

-[docs]
+[docs]
     def annotate_tree(self, t, taxid_attr="name", tax2name=None,
                       tax2track=None, tax2rank=None):
         """Annotate a tree containing taxids as leaf names.
@@ -625,7 +622,7 @@ 

Source code for ete4.ncbi_taxonomy.ncbiquery

return sorted_lineage
 
 
-[docs] +[docs] def get_broken_branches(self, t, taxa_lineages, n2content=None): """Returns a list of NCBI lineage names that are not monophyletic in the provided tree, as well as the list of affected branches and their size. diff --git a/_modules/index.html b/_modules/index.html index 8734c95de..f7ad41bd3 100644 --- a/_modules/index.html +++ b/_modules/index.html @@ -35,6 +35,7 @@

All modules for which code is available

  • ete4.core.operations
  • ete4.core.seqgroup
  • ete4.core.tree
  • +
  • ete4.gtdb_taxonomy.gtdbquery
  • ete4.ncbi_taxonomy.ncbiquery
  • ete4.parser.newick
  • ete4.parser.nexus
  • diff --git a/_sources/reference/index.rst.txt b/_sources/reference/index.rst.txt index 4d95c594b..8e94bd376 100644 --- a/_sources/reference/index.rst.txt +++ b/_sources/reference/index.rst.txt @@ -10,6 +10,6 @@ Reference Guide reference_phylo reference_clustering reference_seqgroup - reference_ncbi + reference_taxonomy reference_smartview reference_treeview diff --git a/_sources/reference/reference_ncbi.rst.txt b/_sources/reference/reference_ncbi.rst.txt deleted file mode 100644 index e79cc6d92..000000000 --- a/_sources/reference/reference_ncbi.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -NCBITaxa -======== - -.. automodule:: ete4.ncbi_taxonomy.ncbiquery - :members: - :undoc-members: - :special-members: __init__ diff --git a/_sources/reference/reference_phylo.rst.txt b/_sources/reference/reference_phylo.rst.txt index cc285cef8..3f565b6c4 100644 --- a/_sources/reference/reference_phylo.rst.txt +++ b/_sources/reference/reference_phylo.rst.txt @@ -1,12 +1,19 @@ Phylogenetic trees ================== +PhyloTree +--------- + .. autoclass:: ete4.PhyloTree :members: :undoc-members: :show-inheritance: :special-members: __init__ + +EvolEvent +--------- + .. autoclass:: ete4.phylo.EvolEvent :members: :undoc-members: diff --git a/_sources/reference/reference_taxonomy.rst.txt b/_sources/reference/reference_taxonomy.rst.txt new file mode 100644 index 000000000..58b5d03e0 --- /dev/null +++ b/_sources/reference/reference_taxonomy.rst.txt @@ -0,0 +1,19 @@ +Taxonomy databases +================== + +NCBITaxa +-------- + +.. autoclass:: ete4.NCBITaxa + :members: + :undoc-members: + :special-members: __init__ + + +GTDBTaxa +-------- + +.. autoclass:: ete4.GTDBTaxa + :members: + :undoc-members: + :special-members: __init__ diff --git a/_sources/tutorial/index.rst.txt b/_sources/tutorial/index.rst.txt index a7a6ea1bf..b95647d7f 100644 --- a/_sources/tutorial/index.rst.txt +++ b/_sources/tutorial/index.rst.txt @@ -9,3 +9,4 @@ Contents: tutorial_trees tutorial_phylogeny tutorial_drawing + tutorial_taxonomy diff --git a/_sources/tutorial/tutorial_taxonomy.rst.txt b/_sources/tutorial/tutorial_taxonomy.rst.txt index ddba7256a..eda99887e 100644 --- a/_sources/tutorial/tutorial_taxonomy.rst.txt +++ b/_sources/tutorial/tutorial_taxonomy.rst.txt @@ -1,60 +1,74 @@ .. currentmodule:: ete4 -Connecting with Taxonomy Databases +Taxonomy databases ================== .. contents:: Overview -------- -ETE4 contains *ncbi_taxonomy* and *gtdb_taxonomy* modules which provide -utilities to efficiently query a local copy of the NCBI or GTDB taxonomy -databases. The class ``NCBITaxa`` and ``GTDBTaxa`` offer methods to convert -from taxid to names (and vice versa), to fetch pruned topologies connecting -a given set of species, or to download rank, names and lineage track information. -It is also fully integrated with PhyloTree instances through the -``PhyloNode.annotate_ncbi_taxa()`` and ``PhyloNode.annotate_gtdb_taxa()``method. +ETE4 contains the *ncbi_taxonomy* and *gtdb_taxonomy* modules which +provide utilities to efficiently query a local copy of the NCBI or +GTDB taxonomy databases. The classes :class:`NCBITaxa` and +:class:`GTDBTaxa` offer methods to convert from taxid to names (and +vice versa), to fetch pruned topologies connecting a given set of +species, or to download rank, names and lineage track information. + +It is also fully integrated with :class:`PhyloTree` instances through +the :func:`~PhyloTree.annotate_ncbi_taxa` and +:func:`~PhyloTree.annotate_gtdb_taxa` methods. + Differences between NCBI and GTDB taxonomies in ETE4 ---------------------------------------------------- -The NCBI taxonomy database is a comprehensive resource for organism names and -classifications.It is updated daily and offers multiple access points including a web -portal, an FTP server. The database releases its data in a package called "taxdump.tar.gz" which -contains several .dmp files. +The NCBI taxonomy database is a comprehensive resource for organism +names and classifications.It is updated daily and offers multiple +access points including a web portal, an FTP server. The database +releases its data in a package called "taxdump.tar.gz" which contains +several .dmp files. -Taxon in NCBI taxonomyis usually a numeric identifier, commonly representing -taxa ("TaxID"), but it can also signify other entities like genetic codes or citations, such as -9606 represents Homo Sapiens. +Taxon in NCBI taxonomyis usually a numeric identifier, commonly +representing taxa ("TaxID"), but it can also signify other entities +like genetic codes or citations, such as 9606 represents Homo Sapiens. -On the other hand, GTDB taxonomy is distributed as simple text files, uses a genome-based -approach for classification, and the identifiers are usually specific to genomes rather -than taxa. +On the other hand, GTDB taxonomy is distributed as simple text files, +uses a genome-based approach for classification, and the identifiers +are usually specific to genomes rather than taxa. -Since ETE Toolkit version 3, ete3 parses taxdump file to local sqlite database to fullfill the -methods in ncbi_taxonomy module. We applied the same strategy to GTDBTaxa. While the original GTDB -taxonomy data differs from NCBI taxonomy files, a conversion step is essential for integration. +Since ETE Toolkit version 3, ETE parses taxdump file and stores it in +a local sqlite database to fullfill the methods in ncbi_taxonomy +module. We applied the same strategy to GTDBTaxa. While the original +GTDB taxonomy data differs from NCBI taxonomy files, a conversion step +is essential for integration. + +To integrate GTDB into the ETE Toolkit v4, a conversion process is +necessary. A third-party script +(https://github.com/nick-youngblut/gtdb_to_taxdump) is employed to +convert the GTDB taxonomy to the NCBI-like taxdump format. We already +preprared GTDB taxonomy dump file from different releases version and +store in +https://github.com/etetoolkit/ete-data/tree/main/gtdb_taxonomy. -To integrate GTDB into the ETE Toolkit v4, a conversion process was necessary. A third-party script -(https://github.com/nick-youngblut/gtdb_to_taxdump) was employed to convert the GTDB taxonomy to the -NCBI-like taxdump format. We already preprared GTDB taxonomy dump file from different releases version -and store in https://github.com/etetoolkit/ete-data/tree/main/gtdb_taxonomy. Setting up local copies of the NCBI and GTDB taxonomy databases -------------------------------------------------------------- -The first time you attempt to use NCBITaxa or GTDBTaxa, ETE will detect that your local -database is empty and it will attempt to download the latest taxonomy database(NCBI ~600MB;GTDB ~72MB) and will -store a parsed version of it in your home directory: ~/.local/share/ete/. -All future imports of NCBITaxa or GTDBTaxa will detect the local database and will -skip this step. +--------------------------------------------------------------- + +The first time you attempt to use NCBITaxa or GTDBTaxa, ETE will +detect that your local database is empty and will attempt to download +the latest taxonomy database (NCBI ~600MB, GTDB ~72MB) and will store +a parsed version of it in `~/.local/share/ete/` by default. All future +imports of NCBITaxa or GTDBTaxa will detect the local database and +will skip this step. Example:: + # Load NCBI module from ete4 import NCBITaxa ncbi = NCBITaxa() ncbi.update_taxonomy_database() - + # Load GTDB module from ete4 import GTDBTaxa gtdb = GTDBTaxa() @@ -66,279 +80,280 @@ Example:: # latest release updated in https://github.com/dengzq1234/ete-data/tree/main/gtdb_taxonomy gtdb.update_taxonomy_database() - # or - gtdb.update_taxonomy_database("gtdbdump.tar.gz") + # or + gtdb.update_taxonomy_database("gtdbdump.tar.gz") # update with custom release 202 gtdb.update_taxonomy_database('gtdb202dump.tar.gz') + Getting taxid information ------------------------- NCBI taxonomy ~~~~~~~~~~~~~ -you can fetch species names, ranks and linage track information for your taxids using the following -methods: -- NCBITaxa.get_rank() -- NCBITaxa.get_lineage() -- NCBITaxa.get_taxid_translator() -- NCBITaxa.get_name_translator() -- NCBITaxa.translate_to_names() -The so called get-translator-functions will return a dictionary converting between taxids and species names. -Either species or linage names/taxids are accepted as input. +You can fetch species names, ranks and linage track information for +your taxids using the following methods: + +.. autosummary:: + + NCBITaxa.get_rank + NCBITaxa.get_lineage + NCBITaxa.get_taxid_translator + NCBITaxa.get_name_translator + NCBITaxa.translate_to_names + +The so called get-translator functions will return a dictionary +converting between taxids and species names. Either species or linage +names/taxids are accepted as input. Example:: - from ete4 import NCBITaxa - ncbi = NCBITaxa() - taxid2name = ncbi.get_taxid_translator([9606, 9443]) - print(taxid2name) - # {9443: 'Primates', 9606: 'Homo sapiens'} - name2taxid = ncbi.get_name_translator(['Homo sapiens', 'primates']) - print(name2taxid) - # {'Homo sapiens': [9606], 'primates': [9443]} + from ete4 import NCBITaxa + ncbi = NCBITaxa() + taxid2name = ncbi.get_taxid_translator([9606, 9443]) + print(taxid2name) + # {9443: 'Primates', 9606: 'Homo sapiens'} - # when the same name points to several taxa, all taxids are returned - name2taxid = ncbi.get_name_translator(['Bacteria']) - print(name2taxid) - # {'Bacteria': [2, 629395]} + name2taxid = ncbi.get_name_translator(['Homo sapiens', 'primates']) + print(name2taxid) + # {'Homo sapiens': [9606], 'primates': [9443]} -Other functions allow to extract further information using taxid numbers as a query. + # when the same name points to several taxa, all taxids are returned + name2taxid = ncbi.get_name_translator(['Bacteria']) + print(name2taxid) + # {'Bacteria': [2, 629395]} + +Other functions allow to extract further information using taxid +numbers as a query. Example:: - from ete4 import NCBITaxa - ncbi = NCBITaxa() - print(ncbi.get_rank([9606, 9443])) - # {9443: u'order', 9606: u'species'} + from ete4 import NCBITaxa + ncbi = NCBITaxa() - print(ncbi.get_lineage(9606)) - # [1, 131567, 2759, 33154, 33208, 6072, 33213, 33511, 7711, 89593, 7742, - # 7776, 117570, 117571, 8287, 1338369, 32523, 32524, 40674, 32525, 9347, - # 1437010, 314146, 9443, 376913, 314293, 9526, 314295, 9604, 207598, 9605, - # 9606] + print(ncbi.get_rank([9606, 9443])) + # {9443: 'order', 9606: 'species'} -Combine combine all at once: + print(ncbi.get_lineage(9606)) + # [1, 131567, 2759, 33154, 33208, 6072, 33213, 33511, 7711, 89593, 7742, + # 7776, 117570, 117571, 8287, 1338369, 32523, 32524, 40674, 32525, 9347, + # 1437010, 314146, 9443, 376913, 314293, 9526, 314295, 9604, 207598, 9605, + # 9606] -Example:: - from ete4 import NCBITaxa - ncbi = NCBITaxa() +Example combining all at once:: + + from ete4 import NCBITaxa + ncbi = NCBITaxa() - lineage = ncbi.get_lineage(9606) - print(lineage) + lineage = ncbi.get_lineage(9606) + print(lineage) - # [1, 131567, 2759, 33154, 33208, 6072, 33213, 33511, 7711, 89593, 7742, - # 7776, 117570, 117571, 8287, 1338369, 32523, 32524, 40674, 32525, 9347, - # 1437010, 314146, 9443, 376913, 314293, 9526, 314295, 9604, 207598, 9605, - # 9606] + # [1, 131567, 2759, 33154, 33208, 6072, 33213, 33511, 7711, 89593, 7742, + # 7776, 117570, 117571, 8287, 1338369, 32523, 32524, 40674, 32525, 9347, + # 1437010, 314146, 9443, 376913, 314293, 9526, 314295, 9604, 207598, 9605, + # 9606] - names = ncbi.get_taxid_translator(lineage) - print([names[taxid] for taxid in lineage]) + names = ncbi.get_taxid_translator(lineage) + print([names[taxid] for taxid in lineage]) - # [u'root', u'cellular organisms', u'Eukaryota', u'Opisthokonta', u'Metazoa', - # u'Eumetazoa', u'Bilateria', u'Deuterostomia', u'Chordata', u'Craniata', - # u'Vertebrata', u'Gnathostomata', u'Teleostomi', u'Euteleostomi', - # u'Sarcopterygii', u'Dipnotetrapodomorpha', u'Tetrapoda', u'Amniota', - # u'Mammalia', u'Theria', u'Eutheria', u'Boreoeutheria', u'Euarchontoglires', - # u'Primates', u'Haplorrhini', u'Simiiformes', u'Catarrhini', u'Hominoidea', - # u'Hominidae', u'Homininae', u'Homo', u'Homo sapiens'] + # ['root', 'cellular organisms', 'Eukaryota', 'Opisthokonta', 'Metazoa', + # 'Eumetazoa', 'Bilateria', 'Deuterostomia', 'Chordata', 'Craniata', + # 'Vertebrata', 'Gnathostomata', 'Teleostomi', 'Euteleostomi', + # 'Sarcopterygii', 'Dipnotetrapodomorpha', 'Tetrapoda', 'Amniota', + # 'Mammalia', 'Theria', 'Eutheria', 'Boreoeutheria', 'Euarchontoglires', + # 'Primates', 'Haplorrhini', 'Simiiformes', 'Catarrhini', 'Hominoidea', + # 'Hominidae', 'Homininae', 'Homo', 'Homo sapiens'] GTDB taxonomy ~~~~~~~~~~~~~ -In the NCBI taxonomy database, each species is assigned a unique numeric taxid. -For example, the taxid 9606 refers to Homo sapiens. These taxids serve as + +In the NCBI taxonomy database, each species is assigned a unique numeric taxid. +For example, the taxid 9606 refers to Homo sapiens. These taxids serve as essential keys for tracking lineages within the database. -However, the GTDB database doesn't originally offer numeric taxids like NCBI -does. In the GTDBTaxa module, we've introduced taxids for each species to -facilitate lineage tracking. These taxids, while not officially recognized in -the GTDB database, serve as convenient keys. They help in connecting the lineage -and taxonomic ranks within the local database, making it easier for users to +However, the GTDB database doesn't originally offer numeric taxids like NCBI +does. In the GTDBTaxa module, we've introduced taxids for each species to +facilitate lineage tracking. These taxids, while not officially recognized in +the GTDB database, serve as convenient keys. They help in connecting the lineage +and taxonomic ranks within the local database, making it easier for users to fetch and relate taxonomic information. Like NCBITaxa, GTDBTaxa contains similar methods: -- GTDBTaxa.get_rank() -- GTDBTaxa.get_lineage() -- GTDBTaxa.get_taxid_translator() -- GTDBTaxa.get_name_translator() -- GTDBTaxa.translate_to_names() -- GTDBTaxa.get_name_lineage() +.. autosummary:: + + GTDBTaxa.get_rank + GTDBTaxa.get_lineage + GTDBTaxa.get_taxid_translator + GTDBTaxa.get_name_translator + GTDBTaxa.translate_to_names + GTDBTaxa.get_name_lineage + Getting descendant taxa ----------------------- -Given a taxid or a taxa name from an internal node in the NCBI/GTDB taxonomy tree, + +Given a taxid or a taxa name from an internal node in the NCBI/GTDB taxonomy tree, their descendants can be retrieved as follows: -NCBI taxonomy -Example:: - # example in NCBI taxonomy - from ete4 import NCBITaxa - ncbi = NCBITaxa() +NCBI taxonomy example:: - descendants = ncbi.get_descendant_taxa('Homo') - print(ncbi.translate_to_names(descendants)) + from ete4 import NCBITaxa + ncbi = NCBITaxa() - # [u'Homo heidelbergensis', u'Homo sapiens ssp. Denisova', - # u'Homo sapiens neanderthalensis'] + descendants = ncbi.get_descendant_taxa('Homo') + print(ncbi.translate_to_names(descendants)) - # you can easily ignore subspecies, so only taxa labeled as "species" will be reported: - descendants = ncbi.get_descendant_taxa('Homo', collapse_subspecies=True) - print(ncbi.translate_to_names(descendants)) + # ['Homo heidelbergensis', 'Homo sapiens ssp. Denisova', + # 'Homo sapiens neanderthalensis'] - # [u'Homo sapiens', u'Homo heidelbergensis'] + # You can easily ignore subspecies, so only taxa labeled as "species" will be reported: + descendants = ncbi.get_descendant_taxa('Homo', collapse_subspecies=True) + print(ncbi.translate_to_names(descendants)) - # or even returned as an annotated tree - tree = ncbi.get_descendant_taxa('Homo', collapse_subspecies=True, return_tree=True) + # ['Homo sapiens', 'Homo heidelbergensis'] - print(tree.to_str(props=['sci_name','taxid'])) + # or even returned as an annotated tree + tree = ncbi.get_descendant_taxa('Homo', collapse_subspecies=True, return_tree=True) + + print(tree.to_str(props=['sci_name','taxid'])) + # ╭╴environmental samples,2665952╶╌╴Homo sapiens environmental sample,2665953 + # │ + # ├╴Homo sapiens,9606 + # ╴Homo,9605╶┤ + # ├╴Homo heidelbergensis,1425170 + # │ + # ╰╴unclassified Homo,2813598╶╌╴Homo sp.,2813599 + +GTDB taxonomy example:: + + from ete4 import GTDBTaxa + gtdb = GTDBTaxa() + descendants = gtdb.get_descendant_taxa('f__Thorarchaeaceae') + print(descendants) + # ['GB_GCA_003662765.1', 'GB_GCA_003662805.1', ..., 'GB_GCA_013138615.1'] + + # Ignore subspecies, so only taxa labeled as "species" will be reported. + descendants = gtdb.get_descendant_taxa('f__Thorarchaeaceae', collapse_subspecies=True) + print(descendants) + # ['s__MP8T-1 sp002825535', 's__MP8T-1 sp003345545', ..., 's__TEKIR-12S sp004524435'] + + # Returned as an annotated tree. + descendants = gtdb.get_descendant_taxa('f__Thorarchaeaceae', collapse_subspecies=True, return_tree=True) + print(descendants.to_str(props=['sci_name','rank'])) + # ╭╴s__MP8T-1 sp002825535,species + # │ + # ├╴s__MP8T-1 sp003345545,species + # │ + # ╭╴g__MP8T-1,genus╶┼╴s__MP8T-1 sp002825465,species + # │ │ + # │ ├╴s__MP8T-1 sp004524565,species + # │ │ + # │ ╰╴s__MP8T-1 sp004524595,species + # │ + # │ ╭╴s__SMTZ1-83 sp011364985,species + # │ │ + # ├╴g__SMTZ1-83,genus╶┼╴s__SMTZ1-83 sp011365025,species + # │ │ + # │ ╰╴s__SMTZ1-83 sp001563325,species + # │ + # ├╴g__TEKIR-14,genus╶╌╴s__TEKIR-14 sp004524445,species + # │ + # ├╴g__SHMX01,genus╶╌╴s__SHMX01 sp008080745,species + # │ + # │ ╭╴s__OWC5 sp003345595,species + # ├╴g__OWC5,genus╶┤ + # ╴f__Tho[...]╶┤ ╰╴s__OWC5 sp003345555,species + # │ + # ├╴g__JACAEL01,genus╶╌╴s__JACAEL01 sp013388835,species + # │ + # ├╴g__B65-G9,genus╶╌╴s__B65-G9 sp003662765,species + # │ + # │ ╭╴s__SMTZ1-45 sp001563335,species + # │ │ + # │ ├╴s__SMTZ1-45 sp011364905,species + # │ │ + # ├╴g__SMTZ1-45,genus╶┼╴s__SMTZ1-45 sp001940705,species + # │ │ + # │ ├╴s__SMTZ1-45 sp004376265,species + # │ │ + # │ ╰╴s__SMTZ1-45 sp002825515,species + # │ + # ├╴g__WTCK01,genus╶╌╴s__WTCK01 sp013138615,species + # │ + # ╰╴g__TEKIR-12S,genus╶╌╴s__TEKIR-12S sp004524435,species - """ - ╭╴environmental samples,2665952╶╌╴Homo sapiens environmental sample,2665953 - │ - ├╴Homo sapiens,9606 - ╴Homo,9605╶┤ - ├╴Homo heidelbergensis,1425170 - │ - ╰╴unclassified Homo,2813598╶╌╴Homo sp.,2813599 - """ - -GTDB taxonomy -Example:: - from ete4 import GTDBTaxa - gtdb = GTDBTaxa() - descendants = gtdb.get_descendant_taxa('f__Thorarchaeaceae') - print(descendants) - # ['GB_GCA_003662765.1', 'GB_GCA_003662805.1', 'GB_GCA_003345555.1', 'GB_GCA_003345595.1', 'GB_GCA_001940705.1', 'GB_GCA_001563335.1', 'GB_GCA_011364905.1', 'GB_GCA_004376265.1', 'GB_GCA_002825515.1', 'GB_GCA_001563325.1', 'GB_GCA_011364985.1', 'GB_GCA_011365025.1', 'GB_GCA_004524565.1', 'GB_GCA_004524595.1', 'GB_GCA_002825465.1', 'GB_GCA_002825535.1', 'GB_GCA_003345545.1', 'GB_GCA_004524445.1', 'GB_GCA_013388835.1', 'GB_GCA_008080745.1', 'GB_GCA_004524435.1', 'GB_GCA_013138615.1'] - - #ignore subspecies, so only taxa labeled as "species" will be reported - descendants = gtdb.get_descendant_taxa('f__Thorarchaeaceae', collapse_subspecies=True) - - print(descendants) - - #['s__MP8T-1 sp002825535', 's__MP8T-1 sp003345545', 's__MP8T-1 sp002825465', 's__MP8T-1 sp004524565', 's__MP8T-1 sp004524595', 's__SMTZ1-83 sp011364985', 's__SMTZ1-83 sp011365025', 's__SMTZ1-83 sp001563325', 's__TEKIR-14 sp004524445', 's__SHMX01 sp008080745', 's__OWC5 sp003345595', 's__OWC5 sp003345555', 's__JACAEL01 sp013388835', 's__B65-G9 sp003662765', 's__SMTZ1-45 sp001563335', 's__SMTZ1-45 sp011364905', 's__SMTZ1-45 sp001940705', 's__SMTZ1-45 sp004376265', 's__SMTZ1-45 sp002825515', 's__WTCK01 sp013138615', 's__TEKIR-12S sp004524435'] - - - #returned as an annotated tree - descendants = gtdb.get_descendant_taxa('f__Thorarchaeaceae', collapse_subspecies=True, return_tree=True) - print(descendants.to_str(props=['sci_name','rank'])) - """ - ╭╴s__MP8T-1 sp002825535,species - │ - ├╴s__MP8T-1 sp003345545,species - │ - ╭╴g__MP8T-1,genus╶┼╴s__MP8T-1 sp002825465,species - │ │ - │ ├╴s__MP8T-1 sp004524565,species - │ │ - │ ╰╴s__MP8T-1 sp004524595,species - │ - │ ╭╴s__SMTZ1-83 sp011364985,species - │ │ - ├╴g__SMTZ1-83,genus╶┼╴s__SMTZ1-83 sp011365025,species - │ │ - │ ╰╴s__SMTZ1-83 sp001563325,species - │ - ├╴g__TEKIR-14,genus╶╌╴s__TEKIR-14 sp004524445,species - │ - ├╴g__SHMX01,genus╶╌╴s__SHMX01 sp008080745,species - │ - │ ╭╴s__OWC5 sp003345595,species - ├╴g__OWC5,genus╶┤ - ╴f__Thorarchaeaceae,family╶┤ ╰╴s__OWC5 sp003345555,species - │ - ├╴g__JACAEL01,genus╶╌╴s__JACAEL01 sp013388835,species - │ - ├╴g__B65-G9,genus╶╌╴s__B65-G9 sp003662765,species - │ - │ ╭╴s__SMTZ1-45 sp001563335,species - │ │ - │ ├╴s__SMTZ1-45 sp011364905,species - │ │ - ├╴g__SMTZ1-45,genus╶┼╴s__SMTZ1-45 sp001940705,species - │ │ - │ ├╴s__SMTZ1-45 sp004376265,species - │ │ - │ ╰╴s__SMTZ1-45 sp002825515,species - │ - ├╴g__WTCK01,genus╶╌╴s__WTCK01 sp013138615,species - │ - ╰╴g__TEKIR-12S,genus╶╌╴s__TEKIR-12S sp004524435,species - """ Getting species tree topology ----------------------------------- -Getting the taxonomy tree for a given set of species is one of the most useful ways -to get all information at once. The method NCBITaxa.get_topology() or GTDBTaxa.get_topology() allows to query your -local NCBI/GTDB database and extract the smallest tree that connects all your query taxids. -It returns a normal ETE tree in which all nodes, internal or leaves, are annotated for -lineage, scientific names, ranks, and so on. +----------------------------- -NCBI taxonomy -Example:: - from ete4 import NCBITaxa - ncbi = NCBITaxa() - - tree = ncbi.get_topology([9606, 9598, 10090, 7707, 8782]) - - print(tree.to_str(props=["sci_name", "rank"])) - """ - ╭╴Dendrochirotida,order - │ - │ ╭╴Homo sapiens,species - ╴Deuterostomia,clade╶┤ ╭╴Homininae,subfamily╶┤ - │ ╭╴Euarchontoglires,superorder╶┤ ╰╴Pan troglodytes,species - │ │ │ - ╰╴Amniota,clade╶┤ ╰╴Mus musculus,species - │ - ╰╴Aves,class - """ - - # all intermediate nodes connecting the species can also be kept in the tree - tree = ncbi.get_topology([2, 33208], intermediate_nodes=True) - print(tree.to_str(props=["sci_name"])) - """ - ╭╴Eukaryota╶╌╴Opisthokonta╶╌╴Metazoa - ╴cellular organisms╶┤ - ╰╴Bacteria - """ +Getting the taxonomy tree for a given set of species is one of the +most useful ways to get all information at once. The methods +:func:`NCBITaxa.get_topology` or :func:`GTDBTaxa.get_topology` allow +to query your local NCBI/GTDB database and extract the smallest tree +that connects all your query taxids. It returns a normal ETE tree in +which all nodes, internal or leaves, are annotated for lineage, +scientific names, ranks, and so on. + +NCBI taxonomy example:: + + from ete4 import NCBITaxa + ncbi = NCBITaxa() + + tree = ncbi.get_topology([9606, 9598, 10090, 7707, 8782]) + + print(tree.to_str(props=["sci_name", "rank"])) + # ╭╴Dendrochirotida,order + # │ + # │ ╭╴Homo sapiens,species + # ╴Deuterostomia,clade╶┤ ╭╴Homininae,subfamily╶┤ + # │ ╭╴Euarchontoglires,superorder╶┤ ╰╴Pan troglodytes,species + # │ │ │ + # ╰╴Amniota,clade╶┤ ╰╴Mus musculus,species + # │ + # ╰╴Aves,class + + # All intermediate nodes connecting the species can also be kept in the tree. + tree = ncbi.get_topology([2, 33208], intermediate_nodes=True) + print(tree.to_str(props=["sci_name"])) + # ╭╴Eukaryota╶╌╴Opisthokonta╶╌╴Metazoa + # ╴cellular organisms╶┤ + # ╰╴Bacteria + +GTDB taxonomy example:: + + from ete4 import GTDBTaxa + gtdb = GTDBTaxa() + + tree = gtdb.get_topology(["p__Huberarchaeota", "o__Peptococcales", "f__Korarchaeaceae"]) + print(tree.to_str(props=['sci_name', 'rank'])) + # ╭╴p__Huberarchaeota,phylum + # ╭╴d__Archaea,superkingdom╶┤ + # ╴root,no rank╶┤ ╰╴f__Korarchaeaceae,family + # │ + # ╰╴o__Peptococcales,order + + # All intermediate nodes connecting the species can also be kept in the tree. + tree = gtdb.get_topology(["p__Huberarchaeota", "o__Peptococcales", "f__Korarchaeaceae"], intermediate_nodes=True, collapse_subspecies=True, annotate=True) + print(tree.to_str(props=['sci_name', 'rank'])) + # ╭╴p__Huberarchaeota,phylum + # ╭╴d__Archaea,superkingdom╶┤ + # ╴root,no rank╶┤ ╰╴p__Thermoproteota,phylum╶╌╴c__Korarchaeia,class╶╌╴o__Korarchaeales,order╶╌╴f__Korarchaeaceae,family + # │ + # ╰╴d__Bacteria,superkingdom╶╌╴p__Firmicutes_B,phylum╶╌╴c__Peptococcia,class╶╌╴o__Peptococcales,order -GTDB taxonomy -Example:: - from ete4 import GTDBTaxa - gtdb = GTDBTaxa() - - tree = gtdb.get_topology(["p__Huberarchaeota", "o__Peptococcales", "f__Korarchaeaceae"]) - print(tree.to_str(props=['sci_name', 'rank'])) - - """ - ╭╴p__Huberarchaeota,phylum - ╭╴d__Archaea,superkingdom╶┤ - ╴root,no rank╶┤ ╰╴f__Korarchaeaceae,family - │ - ╰╴o__Peptococcales,order - - """ - - # all intermediate nodes connecting the species can also be kept in the tree - tree = gtdb.get_topology(["p__Huberarchaeota", "o__Peptococcales", "f__Korarchaeaceae"], intermediate_nodes=True, collapse_subspecies=True, annotate=True) - print(tree.to_str(props=['sci_name', 'rank'])) - """ - ╭╴p__Huberarchaeota,phylum - ╭╴d__Archaea,superkingdom╶┤ - ╴root,no rank╶┤ ╰╴p__Thermoproteota,phylum╶╌╴c__Korarchaeia,class╶╌╴o__Korarchaeales,order╶╌╴f__Korarchaeaceae,family - │ - ╰╴d__Bacteria,superkingdom╶╌╴p__Firmicutes_B,phylum╶╌╴c__Peptococcia,class╶╌╴o__Peptococcales,order - """ Automatic tree annotation using NCBI/GTDB taxonomy ---------------------------------------------- -NCBI/GTDB taxonomy annotation consists of adding additional information to any internal a leaf node -in a give user tree. Only an property containing the taxid associated to each node -is required for the nodes in the query tree. The annotation process will add the -following features to the nodes: +-------------------------------------------------- + +NCBI/GTDB taxonomy annotation consists of adding additional +information to any internal or leaf node in a tree. Only a property +containing the taxid associated to each node is required for the nodes +in the query tree. The annotation process will add the following +features to the nodes: - sci_name - taxid @@ -346,53 +361,50 @@ following features to the nodes: - lineage - rank -Note that, for internal nodes, taxid can be automatically inferred based on their sibling -nodes. The easiest way to annotate a tree is to use a PhyloTree instance where the species -name attribute is transparently used as the taxid attribute. Note that -the :PhyloNode:`annotate_ncbi_taxa`: or :PhyloNode:`annotate_gtdb_taxa`: function will also return the used name, lineage and -rank translators. +Note that, for internal nodes, taxid can be automatically inferred +based on their sibling nodes. The easiest way to annotate a tree is to +use a PhyloTree instance where the species name attribute is +transparently used as the taxid attribute. Note that the +:func:`~PhyloTree.annotate_ncbi_taxa` or +:func:`~PhyloTree.annotate_gtdb_taxa` function will also return the +used name, lineage and rank translators. -Remember that species names in PhyloTree instances are automatically extracted from leaf names. The parsing method can be easily adapted to any formatting: +Remember that species names in PhyloTree instances are automatically +extracted from leaf names. The parsing method can be easily adapted to +any formatting: -NCBI taxonomy -Example:: - from ete4 import PhyloTree +NCBI taxonomy example:: - # load the whole leaf name as species taxid - tree = PhyloTree('((9606, 9598), 10090);', sp_naming_function=lambda name: name) - tax2names, tax2lineages, tax2rank = tree.annotate_ncbi_taxa() + from ete4 import PhyloTree + # Load the whole leaf name as species taxid. + tree = PhyloTree('((9606, 9598), 10090);', sp_naming_function=lambda name: name) + tax2names, tax2lineages, tax2rank = tree.annotate_ncbi_taxa() - # split names by '|' and return the first part as the species taxid - tree = PhyloTree('((9606|protA, 9598|protA), 10090|protB);', sp_naming_function=lambda name: name.split('|')[0]) - tax2names, tax2lineages, tax2rank = tree.annotate_ncbi_taxa() + # Split names by '|' and return the first part as the species taxid. + tree = PhyloTree('((9606|protA, 9598|protA), 10090|protB);', sp_naming_function=lambda name: name.split('|')[0]) + tax2names, tax2lineages, tax2rank = tree.annotate_ncbi_taxa() - print(tree.to_str(props=["name", "sci_name", "taxid"])) + print(tree.to_str(props=["name", "sci_name", "taxid"])) + # ╭╴9606|protA,Homo sapiens,9606 + # ╭╴(empty),Homininae,207598╶┤ + # ╴(empty),Euarchontoglires,314146╶┤ ╰╴9598|protA,Pan troglodytes,9598 + # │ + # ╰╴10090|protB,Mus musculus,10090 - """ - ╭╴9606|protA,Homo sapiens,9606 - ╭╴(empty),Homininae,207598╶┤ - ╴(empty),Euarchontoglires,314146╶┤ ╰╴9598|protA,Pan troglodytes,9598 - │ - ╰╴10090|protB,Mus musculus,10090 - """ - -GTDB taxonomy -Example:: - from ete4 import PhyloTree +GTDB taxonomy example:: - # load the whole leaf name as species taxid - newick = '((p__Huberarchaeota,f__Korarchaeaceae)d__Archaea,o__Peptococcales);' + from ete4 import PhyloTree - tree= PhyloTree(newick) - tax2name, tax2track, tax2rank = gtdb.annotate_tree(tree, taxid_attr="name") + # Load the whole leaf name as species taxid. + newick = '((p__Huberarchaeota,f__Korarchaeaceae)d__Archaea,o__Peptococcales);' - print(tree.to_str(props=['sci_name', 'rank'])) + tree = PhyloTree(newick) + tax2name, tax2track, tax2rank = gtdb.annotate_tree(tree, taxid_attr="name") - """ - ╭╴p__Huberarchaeota,phylum - ╭╴d__Archaea,superkingdom╶┤ - ╴root,no rank╶┤ ╰╴f__Korarchaeaceae,family - │ - ╰╴o__Peptococcales,order - """ \ No newline at end of file + print(tree.to_str(props=['sci_name', 'rank'])) + # ╭╴p__Huberarchaeota,phylum + # ╭╴d__Archaea,superkingdom╶┤ + # ╴root,no rank╶┤ ╰╴f__Korarchaeaceae,family + # │ + # ╰╴o__Peptococcales,order diff --git a/genindex.html b/genindex.html index 45b5d0d26..bb1482316 100644 --- a/genindex.html +++ b/genindex.html @@ -85,6 +85,8 @@

    _

  • (DrawerCirc method)
  • (Face method) +
  • +
  • (GTDBTaxa method)
  • (HTMLFace method)
  • @@ -158,7 +160,7 @@

    _

  • (LegendFace method)
  • -
  • (NCBITaxa method) +
  • (NCBITaxa method)
  • (NodeStyle method)
  • @@ -237,10 +239,10 @@

    A

  • add_prop() (Tree method)
  • - - + -
  • get_broken_branches() (NCBITaxa method) +
  • get_broken_branches() (GTDBTaxa method) + +
  • get_cached_content() (Tree method)
  • get_children() (Tree method) @@ -839,8 +842,12 @@

    G

  • get_commands() (in module ete4.parser.nexus)
  • -
  • get_common_names() (NCBITaxa method) +
  • get_common_names() (GTDBTaxa method) + +
  • get_content() (AttrFace method) - + @@ -1071,8 +1110,6 @@

    I

  • (DrawerRect method)
  • -
  • is_taxadb_up_to_date() (in module ete4.ncbi_taxonomy.ncbiquery) -
  • iter_entries() (SeqGroup method)
  • iter_prepostorder() (Tree method) @@ -1252,8 +1289,6 @@

    M

  • ete4.core.operations
  • ete4.core.seqgroup -
  • -
  • ete4.ncbi_taxonomy.ncbiquery
  • ete4.parser.newick
  • @@ -1320,7 +1355,7 @@

    N

  • ncbi_compare() (PhyloTree method)
  • -
  • NCBITaxa (class in ete4.ncbi_taxonomy.ncbiquery) +
  • NCBITaxa (class in ete4)
  • NewickError
  • @@ -1652,14 +1687,18 @@

    T

  • touch_and_get() (in module ete4.smartview.gui.server)
  • -
  • translate_to_names() (NCBITaxa method) +
  • translate_to_names() (GTDBTaxa method) + +
  • traverse() (Tree method) -
  • -
  • tree (AppTree attribute)
  • - + diff --git a/index.html b/index.html index 994c4447e..dd4474d20 100644 --- a/index.html +++ b/index.html @@ -53,6 +53,7 @@

    Welcome to ETE’s documentation!Working with the Tree structure
  • Phylogenetic trees
  • Programmable tree drawing
  • +
  • Taxonomy databases
  • Reference Guide diff --git a/objects.inv b/objects.inv index 2af9d160f..b63808f0d 100644 Binary files a/objects.inv and b/objects.inv differ diff --git a/py-modindex.html b/py-modindex.html index 636cf500f..b45468efd 100644 --- a/py-modindex.html +++ b/py-modindex.html @@ -66,11 +66,6 @@

    Python Module Index

        ete4.core.seqgroup - - -     - ete4.ncbi_taxonomy.ncbiquery -     diff --git a/reference/index.html b/reference/index.html index da4e002a6..02bcdff04 100644 --- a/reference/index.html +++ b/reference/index.html @@ -16,7 +16,7 @@ - + @@ -69,8 +69,8 @@

    Reference GuidePhylogenetic trees

  • Clustering
      @@ -81,9 +81,9 @@

      Reference GuideSeqGroup

  • -
  • NCBITaxa diff --git a/reference/reference_operations.html b/reference/reference_operations.html index 0611491ce..98d04d838 100644 --- a/reference/reference_operations.html +++ b/reference/reference_operations.html @@ -274,7 +274,7 @@

    Navigation

  • Phylogenetic trees
  • Clustering
  • Multiple Sequence Alignments (SeqGroup)
  • -
  • NCBITaxa
  • +
  • Taxonomy databases
  • Smartview (web graphics)
  • Treeview (qt graphics)
  • diff --git a/reference/reference_parsers.html b/reference/reference_parsers.html index 1194a8f02..4ebb3b80c 100644 --- a/reference/reference_parsers.html +++ b/reference/reference_parsers.html @@ -228,7 +228,7 @@

    Navigation

  • Phylogenetic trees
  • Clustering
  • Multiple Sequence Alignments (SeqGroup)
  • -
  • NCBITaxa
  • +
  • Taxonomy databases
  • Smartview (web graphics)
  • Treeview (qt graphics)
  • diff --git a/reference/reference_phylo.html b/reference/reference_phylo.html index 0160b42f5..919fee9b7 100644 --- a/reference/reference_phylo.html +++ b/reference/reference_phylo.html @@ -35,6 +35,8 @@

    Phylogenetic trees

    +
    +

    PhyloTree

    class PhyloTree(newick=None, children=None, alignment=None, alg_format='fasta', sp_naming_function=<function _parse_species>, parser=None)[source]
    @@ -329,6 +331,9 @@

    Phylogenetic trees +

    EvolEvent

    class EvolEvent[source]
    @@ -340,6 +345,7 @@

    Phylogenetic treesnode : link to the event node in the tree

    +

    @@ -371,7 +377,7 @@

    Navigation

  • Phylogenetic trees
  • Clustering
  • Multiple Sequence Alignments (SeqGroup)
  • -
  • NCBITaxa
  • +
  • Taxonomy databases
  • Smartview (web graphics)
  • Treeview (qt graphics)
  • diff --git a/reference/reference_seqgroup.html b/reference/reference_seqgroup.html index af24fa11a..d1f2087b7 100644 --- a/reference/reference_seqgroup.html +++ b/reference/reference_seqgroup.html @@ -15,7 +15,7 @@ - + @@ -144,7 +144,7 @@

    Navigation

  • Phylogenetic trees
  • Clustering
  • Multiple Sequence Alignments (SeqGroup)
  • -
  • NCBITaxa
  • +
  • Taxonomy databases
  • Smartview (web graphics)
  • Treeview (qt graphics)
  • @@ -157,7 +157,7 @@

    Related Topics

  • Documentation overview
  • diff --git a/reference/reference_smartview.html b/reference/reference_smartview.html index 3109e0a7d..0e4172006 100644 --- a/reference/reference_smartview.html +++ b/reference/reference_smartview.html @@ -16,7 +16,7 @@ - + @@ -86,7 +86,7 @@

    Smartview (web graphi
    -class AppTree(tree: ete4.core.tree.Tree = None, name: str = None, style: ete4.smartview.renderer.treestyle.TreeStyle = None, nodestyles: dict = None, include_props: list = None, exclude_props: list = None, layouts: list = None, timer: float = None, initialized: bool = False, selected: dict = None, active: <function namedtuple at 0x7f005af47e20> = None, searches: dict = None)[source]
    +class AppTree(tree: ete4.core.tree.Tree = None, name: str = None, style: ete4.smartview.renderer.treestyle.TreeStyle = None, nodestyles: dict = None, include_props: list = None, exclude_props: list = None, layouts: list = None, timer: float = None, initialized: bool = False, selected: dict = None, active: <function namedtuple at 0x7f81c0547e20> = None, searches: dict = None)[source]
    __init__(tree: Tree = None, name: str = None, style: TreeStyle = None, nodestyles: dict = None, include_props: list = None, exclude_props: list = None, layouts: list = None, timer: float = None, initialized: bool = False, selected: dict = None, active: namedtuple = None, searches: dict = None) None
    @@ -2380,7 +2380,7 @@

    Navigation

  • Phylogenetic trees
  • Clustering
  • Multiple Sequence Alignments (SeqGroup)
  • -
  • NCBITaxa
  • +
  • Taxonomy databases
  • Smartview (web graphics)
  • Treeview (qt graphics)
  • @@ -2392,7 +2392,7 @@

    Related Topics

    • Documentation overview
    • diff --git a/reference/reference_ncbi.html b/reference/reference_taxonomy.html similarity index 50% rename from reference/reference_ncbi.html rename to reference/reference_taxonomy.html index 7b3d98439..e8e2fc742 100644 --- a/reference/reference_ncbi.html +++ b/reference/reference_taxonomy.html @@ -5,7 +5,7 @@ - NCBITaxa — ETE Toolkit 4.0.0-beta documentation + Taxonomy databases — ETE Toolkit 4.0.0-beta documentation @@ -33,15 +33,17 @@
      -
      -

      NCBITaxa

      +
      +

      Taxonomy databases

      +
      +

      NCBITaxa

      -
      -class NCBITaxa(dbfile=None, taxdump_file=None, memory=False, update=True)[source]
      +
      +class NCBITaxa(dbfile=None, taxdump_file=None, memory=False, update=True)[source]

      A local transparent connector to the NCBI taxonomy database.

      -
      -__init__(dbfile=None, taxdump_file=None, memory=False, update=True)[source]
      +
      +__init__(dbfile=None, taxdump_file=None, memory=False, update=True)[source]

      Open and keep a connection to the NCBI taxonomy database.

      If it is not present in the system, it will download the database from the NCBI site first, and convert it to ete’s @@ -49,8 +51,8 @@

      -
      -annotate_tree(t, taxid_attr='name', tax2name=None, tax2track=None, tax2rank=None)[source]
      +
      +annotate_tree(t, taxid_attr='name', tax2name=None, tax2track=None, tax2rank=None)[source]

      Annotate a tree containing taxids as leaf names.

      The annotation adds the properties: ‘taxid’, ‘sci_name’, ‘lineage’, ‘named_lineage’ and ‘rank’.

      @@ -70,29 +72,29 @@
      -
      -get_broken_branches(t, taxa_lineages, n2content=None)[source]
      +
      +get_broken_branches(t, taxa_lineages, n2content=None)[source]

      Returns a list of NCBI lineage names that are not monophyletic in the provided tree, as well as the list of affected branches and their size.

      CURRENTLY EXPERIMENTAL

      -
      -get_common_names(taxids)[source]
      +
      +get_common_names(taxids)[source]
      -
      -get_descendant_taxa(parent, intermediate_nodes=False, rank_limit=None, collapse_subspecies=False, return_tree=False)[source]
      +
      +get_descendant_taxa(parent, intermediate_nodes=False, rank_limit=None, collapse_subspecies=False, return_tree=False)[source]

      Return list of descendant taxids of the given parent.

      Parent can be given as taxid or scientific species name.

      If intermediate_nodes=True, the list will also have the internal nodes.

      -
      -get_fuzzy_name_translation(name, sim=0.9)[source]
      +
      +get_fuzzy_name_translation(name, sim=0.9)[source]

      Return taxid, species name and match score from the NCBI database.

      The results are for the best match for name in the NCBI database of taxa names, with a word similarity >= sim.

      @@ -107,41 +109,41 @@
      -
      -get_lineage(taxid)[source]
      +
      +get_lineage(taxid)[source]

      Return lineage track corresponding to the given taxid.

      The lineage track is a hierarchically sorted list of parent taxids.

      -
      -get_lineage_translator(taxids)[source]
      +
      +get_lineage_translator(taxids)[source]

      Return dict with lineage tracks corresponding to the given taxids.

      The lineage tracks are a hierarchically sorted list of parent taxids.

      -
      -get_name_translator(names)[source]
      +
      +get_name_translator(names)[source]

      Return dict with taxids corresponding to the given scientific names.

      Exact name match is required for translation.

      -
      -get_rank(taxids)[source]
      +
      +get_rank(taxids)[source]

      Return dict with NCBI taxonomy ranks for each list of taxids.

      -
      -get_taxid_translator(taxids, try_synonyms=True)[source]
      +
      +get_taxid_translator(taxids, try_synonyms=True)[source]

      Return dict with the scientific names corresponding to the taxids.

      -
      -get_topology(taxids, intermediate_nodes=False, rank_limit=None, collapse_subspecies=False, annotate=True)[source]
      +
      +get_topology(taxids, intermediate_nodes=False, rank_limit=None, collapse_subspecies=False, annotate=True)[source]

      Return the minimal pruned NCBI taxonomy tree containing taxids.

      Parameters:
      @@ -163,14 +165,14 @@
      -
      -translate_to_names(taxids)[source]
      +
      +translate_to_names(taxids)[source]

      Return list of scientific names corresponding to taxids.

      -
      -update_taxonomy_database(taxdump_file=None)[source]
      +
      +update_taxonomy_database(taxdump_file=None)[source]

      Update the ncbi taxonomy database.

      It does it by downloading and parsing the latest taxdump.tar.gz file from the NCBI site.

      @@ -184,13 +186,145 @@
      -
      -
      -is_taxadb_up_to_date(dbfile='/home/runner/.local/share/ete/taxa.sqlite')[source]
      -

      Return True if a valid and up-to-date taxa.sqlite database exists.

      -

      If dbfile is not specified, DEFAULT_TAXADB is assumed.

      +
      +
      +

      GTDBTaxa

      +
      +
      +class GTDBTaxa(dbfile=None, taxdump_file=None, memory=False)[source]
      +

      Local transparent connector to the GTDB taxonomy database.

      +
      +
      +__init__(dbfile=None, taxdump_file=None, memory=False)[source]
      +
      + +
      +
      +annotate_tree(t, taxid_attr='name', tax2name=None, tax2track=None, tax2rank=None)[source]
      +

      Annotate a tree containing taxids as leaf names.

      +

      It annotates by adding the properties ‘taxid’, ‘sci_name’, +‘lineage’, ‘named_lineage’ and ‘rank’.

      +
      +
      Parameters:
      +
        +
      • t – Tree to annotate.

      • +
      • taxid_attr – Node attribute (property) containing the +taxid number associated to each node (i.e. species in +PhyloTree instances).

      • +
      • tax2rank (tax2name, tax2track,) – Pre-calculated +dictionaries with translations from taxid number to names, +track lineages and ranks.

      • +
      +
      +
      +
      + +
      +
      +get_broken_branches(t, taxa_lineages, n2content=None)[source]
      +

      Returns a list of GTDB lineage names that are not monophyletic in the +provided tree, as well as the list of affected branches and their size. +CURRENTLY EXPERIMENTAL

      +
      + +
      +
      +get_common_names(taxids)[source]
      +
      + +
      +
      +get_descendant_taxa(parent, intermediate_nodes=False, rank_limit=None, collapse_subspecies=False, return_tree=False)[source]
      +

      given a parent taxid or scientific species name, returns a list of all its descendants taxids. +If intermediate_nodes is set to True, internal nodes will also be dumped.

      +
      + +
      +
      +get_lineage(taxid)[source]
      +

      Given a valid taxid number, return its corresponding lineage track as a +hierarchically sorted list of parent taxids.

      +
      + +
      +
      +get_lineage_translator(taxids)[source]
      +

      Given a valid taxid number, return its corresponding lineage track as a +hierarchically sorted list of parent taxids.

      +
      + +
      +
      +get_name_lineage(taxnames)[source]
      +

      Given a valid taxname, return its corresponding lineage track as a +hierarchically sorted list of parent taxnames.

      +
      + +
      +
      +get_name_translator(names)[source]
      +

      Given a list of taxid scientific names, returns a dictionary translating them into their corresponding taxids. +Exact name match is required for translation.

      +
      +
      +get_rank(taxids)[source]
      +

      Return dictionary converting taxids to their GTDB taxonomy rank.

      +
      + +
      +
      +get_taxid_translator(taxids, try_synonyms=True)[source]
      +

      Given a list of taxids, returns a dictionary with their corresponding +scientific names.

      +
      + +
      +
      +get_topology(taxnames, intermediate_nodes=False, rank_limit=None, collapse_subspecies=False, annotate=True)[source]
      +

      Return minimal pruned GTDB taxonomy tree containing all given taxids.

      +
      +
      Parameters:
      +
        +
      • intermediate_nodes – If True, single child nodes +representing the complete lineage of leaf nodes are kept. +Otherwise, the tree is pruned to contain the first common +ancestor of each group.

      • +
      • rank_limit – If valid NCBI rank name is provided, the +tree is pruned at that given level. For instance, use +rank=”species” to get rid of sub-species or strain leaf +nodes.

      • +
      • collapse_subspecies – If True, any item under the +species rank will be collapsed into the species upper +node.

      • +
      +
      +
      +
      + +
      +
      +translate_to_names(taxids)[source]
      +

      Given a list of taxid numbers, returns another list with their corresponding scientific names.

      +
      + +
      +
      +update_taxonomy_database(taxdump_file=None)[source]
      +

      Update the GTDB taxonomy database.

      +

      It updates it by downloading and parsing the latest +gtdbtaxdump.tar.gz file.

      +
      +
      Parameters:
      +

      taxdump_file – Alternative location of gtdbtaxdump.tar.gz.

      +
      +
      +
      + +
      + +
      @@ -222,7 +356,7 @@

      Navigation

    • Phylogenetic trees
    • Clustering
    • Multiple Sequence Alignments (SeqGroup)
    • -
    • NCBITaxa
    • +
    • Taxonomy databases
    • Smartview (web graphics)
    • Treeview (qt graphics)
    @@ -270,7 +404,7 @@

    Quick search

    & Alabaster 0.7.13 | - Page source

    diff --git a/reference/reference_tree.html b/reference/reference_tree.html index 00dc70c1a..e13356545 100644 --- a/reference/reference_tree.html +++ b/reference/reference_tree.html @@ -1129,7 +1129,7 @@

    Navigation

  • Phylogenetic trees
  • Clustering
  • Multiple Sequence Alignments (SeqGroup)
  • -
  • NCBITaxa
  • +
  • Taxonomy databases
  • Smartview (web graphics)
  • Treeview (qt graphics)
  • diff --git a/reference/reference_treeview.html b/reference/reference_treeview.html index 9e4b9d5b0..c4c0268e2 100644 --- a/reference/reference_treeview.html +++ b/reference/reference_treeview.html @@ -86,7 +86,7 @@

    Navigation

  • Phylogenetic trees
  • Clustering
  • Multiple Sequence Alignments (SeqGroup)
  • -
  • NCBITaxa
  • +
  • Taxonomy databases
  • Smartview (web graphics)
  • Treeview (qt graphics)
  • diff --git a/searchindex.js b/searchindex.js index 6ff0ee712..cc94ffd91 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["about", "faqs", "index", "reference/index", "reference/reference_clustering", "reference/reference_ncbi", "reference/reference_operations", "reference/reference_parsers", "reference/reference_phylo", "reference/reference_seqgroup", "reference/reference_smartview", "reference/reference_tree", "reference/reference_treeview", "tutorial/index", "tutorial/tutorial_drawing", "tutorial/tutorial_phylogeny", "tutorial/tutorial_taxonomy", "tutorial/tutorial_trees"], "filenames": ["about.rst", "faqs.rst", "index.rst", "reference/index.rst", "reference/reference_clustering.rst", "reference/reference_ncbi.rst", "reference/reference_operations.rst", "reference/reference_parsers.rst", "reference/reference_phylo.rst", "reference/reference_seqgroup.rst", "reference/reference_smartview.rst", "reference/reference_tree.rst", "reference/reference_treeview.rst", "tutorial/index.rst", "tutorial/tutorial_drawing.rst", "tutorial/tutorial_phylogeny.rst", "tutorial/tutorial_taxonomy.rst", "tutorial/tutorial_trees.rst"], "titles": ["About", "Frequently Asked Questions (FAQs)", "Welcome to ETE\u2019s documentation!", "Reference Guide", "Clustering", "NCBITaxa", "Tree operations", "Parsers", "Phylogenetic trees", "Multiple Sequence Alignments (SeqGroup)", "Smartview (web graphics)", "Tree (main class)", "Treeview (qt graphics)", "Tutorial", "Programmable tree drawing", "Phylogenetic trees", "Connecting with Taxonomy Databases", "Working with the Tree structure"], "terms": {"The": [0, 1, 5, 6, 8, 10, 11, 14, 15, 16], "toolkit": [0, 14, 16, 17], "wa": [0, 7, 14, 16, 17], "origin": [0, 6, 8, 11, 14, 15, 16, 17], "develop": 0, "bioinformat": [0, 8, 17], "depart": 0, "cipf": 0, "valencia": 0, "spain": 0, "greatli": 0, "improv": [0, 15], "compar": [0, 11, 13, 15], "genom": [0, 8, 10, 15, 16], "group": [0, 5, 8, 11, 15, 17], "crg": 0, "barcelona": 0, "structur": [0, 2, 4, 8, 10, 11, 13, 14, 15], "comput": [0, 4, 10, 11, 17], "biologi": [0, 15], "unit": [0, 11, 14], "embl": 0, "heidelberg": 0, "germani": 0, "At": 0, "present": [0, 1, 5, 8, 10, 11, 15, 17], "i": [0, 4, 5, 6, 8, 9, 10, 11, 14, 15, 16, 17], "maintain": [0, 14], "metagenom": 0, "cbgp": 0, "madrid": 0, "citat": [0, 4, 8, 16], "3": [0, 1, 8, 10, 11, 14, 15, 16, 17], "reconstruct": 0, "analysi": [0, 4, 14, 15, 17], "visual": [0, 2, 11, 13, 17], "phylogenom": 0, "data": [0, 4, 10, 11, 14, 15, 16, 17], "jaim": 0, "huerta": [0, 8, 15], "cepa": [0, 8, 15], "francoi": 0, "serra": 0, "peer": 0, "bork": 0, "mol": 0, "biol": [0, 8], "evol": 0, "2016": 0, "doi": 0, "10": [0, 1, 9, 10, 14, 17], "1093": 0, "molbev": 0, "msw046": 0, "support": [0, 6, 7, 9, 10, 11, 17], "etetoolkit": [0, 16], "googlegroup": 0, "com": [0, 10, 11, 16], "contact": 0, "jhcepa": [0, 11], "gmail": 0, "eggnog": 0, "orthologi": [0, 15], "databas": [0, 5, 8, 10], "phylomedb": 0, "phylogenet": [0, 1, 2, 3, 13, 17], "polyphoni": 0, "3d": [0, 10], "compars": 0, "phylemon": 0, "speci": [0, 1, 5, 8, 11, 14, 17], "delimit": 0, "method": [0, 8, 9, 10, 11, 14, 15, 16, 17], "treeko": [0, 8, 17], "duplic": [0, 1, 8, 11, 13], "awar": [0, 15], "tree": [0, 2, 3, 4, 5, 7, 10, 13], "agp": [0, 10], "align": [0, 2, 3, 8, 10, 11, 13, 14], "free": 0, "phylogeni": [0, 15], "itep": 0, "explor": [0, 1, 10, 11, 14, 15, 17], "microbi": 0, "pan": [0, 14, 15, 16], "t": [0, 1, 5, 6, 7, 8, 10, 11, 14, 15, 16, 17], "rmsd": 0, "protein": [0, 10], "classif": [0, 16], "cansnper": 0, "genotyp": 0, "classifi": 0, "clonal": 0, "pathogen": 0, "reprophylo": 0, "reproduc": [0, 14], "analys": [0, 14, 15, 17], "avocado": 0, "linux": 0, "autom": [0, 17], "test": 0, "streptomedb": 0, "2": [0, 1, 8, 10, 11, 14, 15, 16, 17], "0": [0, 1, 4, 5, 6, 7, 8, 10, 11, 14, 15, 16, 17], "natur": [0, 17], "product": 0, "produc": [0, 11, 17], "streptomycet": 0, "iq": [0, 10], "web": [0, 2, 3, 16], "server": [0, 3, 16], "fast": [0, 17], "accur": 0, "under": [0, 4, 5, 11, 15, 17], "maximum": [0, 9, 10, 17], "likelihood": 0, "A": [0, 1, 4, 5, 8, 10, 11, 14, 16, 17], "brief": 0, "introduct": 0, "its": [0, 6, 7, 8, 10, 11, 14, 15, 16, 17], "programmat": 0, "featur": [0, 1, 4, 8, 11, 14, 15, 16, 17], "scipi": 0, "confer": 0, "2015": 0, "littl": 0, "comparison": [0, 15, 17], "how": [0, 4, 11, 14, 15], "handl": [0, 14, 17], "r": [0, 7, 10, 15, 17], "v": [0, 10, 14], "python": [0, 1, 11, 14, 15, 17], "climateecologi": 0, "blog": 0, "sever": [0, 1, 11, 14, 15, 16, 17], "wai": [0, 1, 11, 14, 15, 16, 17], "displai": 0, "associ": [0, 4, 5, 8, 9, 10, 11, 15, 16], "bacpathgenom": 0, "pars": [0, 4, 5, 8, 11, 15, 16, 17], "list": [0, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15], "word": [0, 5, 15, 17], "build": [0, 10], "trie": 0, "stackoverflow": 0, "annot": [0, 5, 8, 13], "holt": 0, "lab": 0, "script": [0, 1, 16], "guid": [0, 2], "ete3": [0, 16], "api": [0, 10], "exampl": [0, 1, 4, 6, 7, 8, 9, 10, 11, 14, 15, 16, 17], "e": [0, 1, 5, 6, 10, 11, 14, 17], "noutahi": 0, "plot": [0, 14], "avrilom": 0, "includ": [1, 8, 9, 14, 15, 16, 17], "basic": [1, 8, 10, 13, 14, 15], "standalon": [1, 15], "program": [1, 11, 14, 17], "quickli": [1, 17], "your": [1, 15, 16, 17], "type": [1, 10, 11, 14, 15, 17], "ete4": [1, 10, 11, 14, 15, 17], "file": [1, 4, 5, 7, 8, 9, 10, 11, 14, 15, 16, 17], "termin": [1, 11, 14, 15, 17], "run": [1, 10], "For": [1, 5, 8, 11, 14, 15, 16, 17], "instanc": [1, 5, 8, 11, 14, 15, 16, 17], "mytreefil": 1, "nw": [1, 4, 10, 11, 14, 15, 17], "simpl": [1, 4, 10, 14, 15, 16, 17], "implement": [1, 8, 14, 17], "doe": [1, 5, 14, 15, 16, 17], "allow": [1, 5, 8, 10, 11, 14, 15, 16, 17], "fanci": 1, "custom": [1, 5, 11, 13, 16], "howev": [1, 14, 15, 16, 17], "more": [1, 8, 11, 14, 15, 17], "than": [1, 6, 11, 14, 15, 16, 17], "main": [1, 2, 3, 10, 14, 16, 17], "goal": 1, "provid": [1, 5, 8, 9, 10, 11, 14, 15, 16, 17], "librari": 1, "so": [1, 6, 8, 10, 16, 17], "you": [1, 8, 9, 14, 15, 16, 17], "creat": [1, 4, 6, 10, 11, 15], "own": [1, 14, 15, 17], "manipul": [1, 14, 17], "shell": 1, "could": [1, 4, 11, 14, 15, 17], "from": [1, 5, 6, 7, 8, 10, 11, 14, 15, 16], "import": [1, 11, 14, 15, 16, 17], "t1": [1, 4, 11, 17], "b": [1, 4, 6, 10, 11, 14, 17], "c": [1, 4, 6, 10, 11, 14, 17], "string": [1, 4, 8, 9, 11, 15, 17], "t2": [1, 4, 11, 15, 17], "open": [1, 4, 5, 10, 11, 17], "mani": [1, 8, 10, 11, 14, 15, 17], "tutori": [1, 2], "follow": [1, 4, 8, 11, 14, 15, 16, 17], "shortcut": 1, "note": [1, 8, 11, 14, 15, 16, 17], "assum": [1, 5, 8, 17], "tip1": 1, "There": [1, 11, 14, 15, 17], "thi": [1, 4, 8, 9, 10, 11, 14, 15, 16, 17], "easiest": [1, 16], "one": [1, 4, 8, 10, 11, 14, 15, 16, 17], "travers": [1, 6, 11, 13, 14], "print": [1, 6, 9, 11, 15, 16, 17], "ye": [1, 15], "current": [1, 5, 6, 8, 9, 10, 11, 15, 17], "strategi": [1, 11, 16, 17], "pre": [1, 5, 10, 11, 14, 17], "post": [1, 10, 11, 17], "level": [1, 5, 11, 15, 17], "over": [1, 8, 9, 11, 14, 15, 17], "check": [1, 11, 13, 14, 15], "differ": [1, 8, 10, 11, 14, 15, 17], "http": [1, 11, 16, 17], "packag": [1, 15, 16], "org": [1, 11, 17], "tutorial_tre": 1, "html": [1, 10], "slightli": [1, 17], "across": 1, "subformat": 1, "label": [1, 8, 10, 14, 15, 16, 17], "descript": [1, 4, 11, 14, 17], "flexibl": [1, 17], "d": [1, 4, 6, 8, 10, 11, 14, 15, 17], "7": [1, 10, 11, 17], "f": [1, 6, 10, 11, 14, 15, 17], "5": [1, 4, 10, 11, 14, 15, 17], "1": [1, 4, 5, 6, 7, 8, 10, 11, 14, 15, 16, 17], "6": [1, 8, 10, 11, 14, 17], "h": [1, 8, 10, 11, 14, 15, 17], "8": [1, 8, 10, 11, 14, 17], "w": [1, 10, 11, 14, 17], "length": [1, 7, 10, 11, 15, 17], "4": [1, 10, 11, 14, 15, 17], "leav": [1, 4, 6, 8, 10, 11, 14, 15, 16], "onli": [1, 6, 8, 10, 11, 14, 15, 16, 17], "9": [1, 5, 10, 11, 15, 17], "100": [1, 14, 17], "topologi": [1, 6, 8, 11, 13, 14, 15], "In": [1, 11, 14, 15, 16, 17], "specifi": [1, 4, 5, 10, 11, 15, 17], "parser": [1, 2, 3, 4, 8, 10, 11, 15, 17], "my_tre": 1, "when": [1, 6, 8, 11, 14, 15, 16, 17], "default": [1, 4, 7, 8, 11, 14, 15, 17], "": [1, 4, 5, 7, 8, 10, 11, 14, 15], "distanc": [1, 4, 6, 10, 11, 13, 15], "depend": [1, 14, 15, 17], "If": [1, 5, 6, 8, 9, 11, 14, 15, 17], "want": [1, 6, 14, 17], "save": [1, 10, 14, 15, 17], "other": [1, 6, 8, 11, 14, 15, 16, 17], "properti": [1, 4, 5, 6, 7, 8, 10, 11, 13, 15, 16], "need": [1, 5, 7, 10, 14, 15, 17], "them": [1, 6, 9, 11, 14, 15, 17], "call": [1, 10, 11, 14, 15, 16, 17], "prop": [1, 6, 7, 8, 10, 11, 14, 15, 16, 17], "size": [1, 5, 6, 8, 10, 11, 14, 17], "none": [1, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 17], "start": [1, 7, 10, 11, 14, 17], "version": [1, 8, 10, 15, 16, 17], "render": [1, 3, 11, 13, 15], "mode": [1, 11, 14], "automat": [1, 8, 11, 13, 14, 17], "detect": [1, 8, 11, 13, 16, 17], "filenam": [1, 10], "extens": [1, 11, 14, 15], "code": [1, 6, 8, 10, 14, 15, 16, 17], "vector": [1, 14], "mytre": [1, 14], "chang": [1, 6, 7, 11, 15, 17], "layout": [1, 11, 13, 15], "By": [1, 4, 8, 15, 17], "function": [1, 4, 8, 10, 11, 15, 16], "abl": [1, 17], "add": [1, 4, 5, 6, 8, 9, 10, 11, 16, 17], "remov": [1, 3, 6, 10, 11], "modifi": [1, 10, 11, 13, 14], "almost": 1, "ani": [1, 5, 6, 7, 10, 11, 14, 15, 16, 17], "element": [1, 10, 11, 14, 17], "face": [1, 3, 11, 13], "attrfac": [1, 10, 14], "treestyl": [1, 3, 11, 14, 15], "def": [1, 8, 14, 15, 17], "my_layout": 1, "is_leaf": [1, 7, 11, 14, 17], "name_fac": 1, "els": [1, 14, 17], "fsize": [1, 14], "small": [1, 10, 14, 17], "font": 1, "prefer": [1, 10, 15], "posit": [1, 6, 7, 11, 17], "add_face_to_nod": [1, 14], "column": [1, 10, 11, 14], "right": [1, 10, 11, 14, 17], "show_leaf_nam": [1, 11, 14], "fals": [1, 5, 6, 8, 10, 11, 14, 15, 17], "again": [1, 15, 17], "layout_fn": [1, 14], "g": [1, 7, 10, 11, 14, 17], "m1_t1": 1, "m_1_t2": 1, "m2_t3": 1, "m2_t1": 1, "m2_t2": 1, "show": [1, 10, 11, 15, 17], "tree_styl": [1, 10, 11, 14, 15], "style": [1, 10, 11, 13], "experi": 1, "extrem": 1, "convert": [1, 5, 6, 8, 11, 15, 16, 17], "ultrametr": [1, 6, 10, 11], "make": [1, 11, 14, 16, 17], "end": [1, 7, 10, 11, 14, 17], "same": [1, 8, 10, 11, 14, 15, 16, 17], "popul": [1, 3, 6, 11, 14, 17], "50": [1, 7, 10, 14, 17], "random_branch": [1, 6, 11, 14], "true": [1, 5, 6, 7, 8, 9, 10, 11, 14, 16, 17], "to_ultrametr": [1, 3, 6, 11], "enabl": 1, "force_topologi": 1, "option": [1, 8, 14, 17], "seen": [1, 8, 11, 17], "engin": [1, 14, 15], "case": [1, 11, 14, 15, 17], "actual": [1, 17], "about": [2, 8, 10, 14, 15, 17], "highlight": [2, 14], "tool": [2, 17], "us": [2, 4, 5, 6, 8, 9, 10, 11, 14, 15, 17], "relat": [2, 6, 10, 11, 16, 17], "link": [2, 4, 8, 10, 13, 14, 17], "resourc": [2, 16], "frequent": [2, 17], "ask": [2, 10, 15], "question": 2, "faq": 2, "gener": [2, 6, 11, 14, 15, 17], "brows": [2, 13], "read": [2, 7, 8, 10, 13, 14, 15], "write": [2, 8, 9, 11, 13, 15], "work": [2, 8, 13, 14], "programm": [2, 13, 15], "draw": [2, 13, 15], "refer": [2, 6, 8, 11, 14, 15, 16, 17], "class": [2, 3, 4, 5, 6, 8, 9, 10, 14, 15, 16, 17], "oper": [2, 3, 9, 11, 13, 14], "cluster": [2, 3, 17], "multipl": [2, 3, 8, 13, 16], "sequenc": [2, 3, 6, 8, 10, 13], "seqgroup": [2, 3, 15], "ncbitaxa": [2, 3, 16], "smartview": [2, 3, 11], "graphic": [2, 3, 4, 14, 17], "treeview": [2, 3, 14], "qt": [2, 3, 14], "index": [2, 4], "modul": [2, 9, 10, 14, 16, 17], "search": [2, 10, 11], "page": [2, 14, 15], "walker": [3, 6], "assert_root_consist": [3, 6], "common_ancestor": [3, 6, 11, 14, 15, 17], "insert_intermedi": [3, 6], "join_branch": [3, 6], "ladder": [3, 6, 11], "maybe_convert_internal_nodes_to_support": [3, 6], "move": [3, 6], "rehang": [3, 6], "set_outgroup": [3, 6, 11, 17], "sort": [3, 5, 6, 10, 11, 14], "swap_prop": [3, 6], "update_s": [3, 6], "update_sizes_al": [3, 6], "update_sizes_from": [3, 6], "walk": [3, 6], "newick": [3, 4, 8, 10, 11, 13, 15, 16], "nexu": 3, "phylotre": [3, 5, 8, 15, 16, 17], "evolev": [3, 8, 15], "clustertre": [3, 4], "is_taxadb_up_to_d": [3, 5], "nodestyl": [3, 14], "children": [4, 8, 10, 11, 14, 17], "text_arrai": 4, "fdist": 4, "spearman_dist": 4, "sourc": [4, 5, 7, 8, 9, 10, 14, 17], "base": [4, 8, 10, 11, 14, 15, 16, 17], "repres": [4, 5, 6, 7, 10, 11, 14, 15, 16, 17], "result": [4, 5, 9, 10, 11, 15, 17], "__init__": [4, 5, 8, 9, 10, 11, 14], "paramet": [4, 5, 6, 8, 9, 10, 11, 14], "object": [4, 7, 8, 10, 11, 14, 17], "dict": [4, 5, 7, 10, 11], "content": [4, 7, 8, 11, 13], "singl": [4, 5, 8, 11, 14, 15, 17], "node": [4, 5, 6, 7, 8, 10, 11, 13, 16], "It": [4, 5, 8, 10, 11, 14, 15, 16, 17], "can": [4, 5, 8, 9, 10, 11, 14, 15, 16, 17], "number": [4, 5, 6, 7, 8, 10, 11, 14, 15, 16, 17], "format": [4, 5, 7, 8, 9, 10, 11, 14, 15, 16, 17], "fine": [4, 11], "grain": [4, 11], "interpret": [4, 10, 11, 15, 17], "see": [4, 8, 10, 11, 14, 15, 17], "pyx": [4, 11], "empti": [4, 11, 14, 15, 16, 17], "name": [4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 17], "t3": [4, 10, 11, 17], "t4": [4, 11], "home": [4, 5, 11, 16], "user": [4, 11, 14, 16, 17], "my": [4, 11, 14], "deviat": 4, "get_dunn": 4, "calcul": [4, 5, 8, 11, 15, 17], "dunn": 4, "given": [4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 16], "set": [4, 5, 6, 8, 9, 10, 11, 14, 15, 17], "descend": [4, 5, 8, 11], "get_silhouett": 4, "silhouett": 4, "valu": [4, 6, 8, 10, 11, 14, 15, 17], "euclidean": 4, "also": [4, 5, 8, 10, 11, 14, 15, 16, 17], "profil": [4, 14], "mean": [4, 10, 14, 15], "inter": 4, "intra": 4, "analyz": [4, 17], "intraclust": 4, "interclust": 4, "silhouet": 4, "ar": [4, 5, 8, 9, 11, 14, 15, 16, 17], "centroid": 4, "diamet": [4, 14], "linkag": 4, "rousseeuw": 4, "p": [4, 10, 15, 17], "j": [4, 8, 11, 17], "1987": 4, "aid": [4, 10], "valid": [4, 5, 6, 8, 10, 11, 17], "appl": [4, 10], "math": [4, 10], "20": [4, 10, 14], "53": [4, 10], "65": [4, 14], "intercluster_dist": 4, "intracluster_dist": 4, "leaf_profil": 4, "yield": [4, 6, 10, 11, 17], "link_to_arrayt": 4, "arraytbl": 4, "arrayt": 4, "return": [4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 16, 17], "been": [4, 15], "found": [4, 8, 14, 15, 17], "row": [4, 10, 11], "expect": [4, 8, 11, 15, 17], "match": [4, 5, 8, 10, 11, 15], "leaf": [4, 5, 7, 8, 10, 11, 15, 16, 17], "set_distance_funct": 4, "fn": [4, 8], "silouett": 4, "acept": 4, "two": [4, 6, 11, 14, 15, 17], "numpi": 4, "arrai": [4, 10, 11], "argument": [4, 5, 7, 8, 14, 15, 17], "my_dist_fn": 4, "lambda": [4, 11, 15, 16, 17], "x": [4, 7, 10, 11], "y": [4, 7, 10, 11, 17], "ab": [4, 17], "dbfile": [5, 8], "taxdump_fil": 5, "memori": [5, 10, 17], "updat": [5, 6, 9, 10, 11, 15, 16], "local": [5, 8], "transpar": [5, 14, 16], "connector": 5, "ncbi": [5, 8], "taxonomi": [5, 8], "keep": [5, 10, 11, 14, 15, 17], "connect": [5, 11, 17], "system": [5, 14], "download": [5, 15, 16], "site": 5, "first": [5, 6, 8, 10, 11, 14, 15, 16], "et": [5, 10, 11, 13, 14, 15, 16], "annotate_tre": [5, 16], "taxid_attr": [5, 8, 16], "tax2nam": [5, 8, 16], "tax2track": [5, 8, 16], "tax2rank": [5, 8, 16], "contain": [5, 8, 9, 10, 11, 14, 15, 16, 17], "taxid": [5, 8, 10], "sci_nam": [5, 8, 10, 11, 16], "lineag": [5, 6, 8, 11, 15, 16], "named_lineag": [5, 8, 16], "rank": [5, 8, 16], "deriv": [5, 14], "attribut": [5, 10, 11, 13, 14, 15, 16], "each": [5, 6, 7, 8, 9, 10, 11, 14, 15, 16, 17], "dictionari": [5, 8, 10, 11, 14, 15, 16, 17], "translat": [5, 7, 8, 15, 16], "track": [5, 8, 16], "get_broken_branch": 5, "taxa_lineag": 5, "n2content": 5, "monophylet": [5, 11, 17], "well": [5, 15, 17], "affect": [5, 11, 14, 15, 17], "branch": [5, 6, 10, 11, 13, 15], "experiment": 5, "get_common_nam": 5, "get_descendant_taxa": [5, 16], "parent": [5, 6, 10, 11, 17], "intermediate_nod": [5, 16], "rank_limit": 5, "collapse_subspeci": [5, 16], "return_tre": [5, 16], "scientif": [5, 8, 10, 14, 16], "have": [5, 6, 11, 15, 17], "intern": [5, 6, 8, 10, 11, 14, 15, 16, 17], "get_fuzzy_name_transl": 5, "sim": 5, "score": [5, 15, 17], "best": [5, 10, 14, 15], "taxa": 5, "similar": [5, 16, 17], "exact": [5, 15, 17], "min": [5, 6], "report": [5, 16], "get_lineag": [5, 16], "correspond": [5, 7, 8, 10, 14, 15, 17], "hierarch": [5, 11, 14, 17], "get_lineage_transl": 5, "get_name_transl": [5, 16], "requir": [5, 8, 10, 11, 14, 15, 16, 17], "get_rank": [5, 16], "get_taxid_transl": [5, 16], "try_synonym": 5, "get_topologi": [5, 16], "minim": [5, 10], "prune": [5, 8, 10, 11, 13, 15, 16], "child": [5, 6, 8, 11, 17], "complet": [5, 14, 15, 17], "kept": [5, 11, 14, 16, 17], "otherwis": [5, 11, 15], "common": [5, 6, 8, 10, 11, 14, 15], "ancestor": [5, 6, 10, 11], "get": [5, 8, 10, 13, 15], "rid": 5, "sub": [5, 10, 17], "strain": 5, "item": [5, 9, 10, 11, 14, 17], "collaps": [5, 8, 10, 11], "upper": [5, 17], "translate_to_nam": [5, 16], "update_taxonomy_databas": [5, 16], "latest": [5, 16], "taxdump": [5, 16], "tar": [5, 16], "gz": [5, 16], "altern": [5, 9, 15, 17], "locat": [5, 14, 17], "tax": 5, "runner": 5, "share": [5, 11, 16, 17], "sqlite": [5, 16], "up": [5, 11, 14, 17], "date": [5, 13], "exist": [5, 17], "default_taxadb": 5, "root": [6, 8, 11, 13, 14, 16], "prun": 6, "add_next_branch": 6, "self": [6, 8, 10, 11, 14, 17], "first_visit": 6, "go_back": 6, "has_unvisited_branch": 6, "node_id": [6, 10, 11], "bprop": [6, 11], "rais": [6, 10, 11, 17], "assertionerror": 6, "look": [6, 17], "inconsist": 6, "last": [6, 10, 11, 17], "don": 6, "whose": [6, 14, 17], "we": [6, 11, 14, 15, 16, 17], "find": [6, 11, 15], "intermedi": [6, 16], "insert": 6, "between": [6, 8, 11, 15], "an": [6, 8, 9, 10, 11, 14, 15, 16, 17], "substitut": [6, 15], "topolog": [6, 8, 11, 15, 17], "revers": [6, 10, 11], "accord": [6, 7, 8, 10, 11, 14, 15, 17], "partit": [6, 8, 11, 15, 17], "instead": [6, 11, 14, 17], "sum": [6, 11, 17], "lenght": [6, 11, 17], "biggest": 6, "possibl": [6, 8, 11, 14, 15, 17], "shift": 6, "respect": [6, 17], "names_librari": [6, 11, 17], "dist_rang": [6, 11], "support_rang": [6, 11], "random": [6, 11, 14, 17], "all": [6, 7, 8, 9, 10, 11, 14, 15, 16, 17], "ad": [6, 8, 10, 11, 13, 14, 16, 17], "either": [6, 10, 16, 17], "necessari": [6, 15, 16, 17], "too": [6, 8, 11, 17], "collect": [6, 9, 11, 14, 17], "short": 6, "letter": [6, 8, 15], "rang": [6, 10, 14, 15], "tupl": [6, 9, 10, 11, 14], "max": [6, 14], "child_po": 6, "reroot": [6, 11], "outgroup": [6, 11, 13], "new": [6, 8, 10, 11, 15, 17], "still": [6, 11], "where": [6, 7, 8, 10, 11, 14, 15, 16, 17], "futur": [6, 16], "dist": [6, 7, 10, 11, 14, 17], "kei": [6, 8, 16, 17], "place": [6, 11, 14, 15, 17], "n1": [6, 10, 14, 17], "n2": [6, 10, 14, 17], "swap": [6, 10], "equidist": [6, 11], "iter": [6, 8, 9, 11], "except": [7, 10, 17], "newickerror": 7, "content_repr": 7, "dump": [7, 15, 16], "fp": 7, "format_root_nod": [7, 8, 11], "is_leaf_fn": [7, 8, 11, 17], "represent": [7, 8, 9, 10, 11, 14, 17], "error": [7, 10, 11], "text": [7, 9, 10, 11, 14, 15, 16, 17], "get_extended_prop": 7, "extract": [7, 10, 16], "nhx": [7, 15, 17], "foo": 7, "bar": [7, 10], "get_prop": [7, 11], "abc": [7, 10], "123": 7, "load": [7, 10, 11, 14, 15, 16, 17], "tree_text": 7, "tree_class": 7, "make_pars": 7, "int": [7, 10, 14], "prop_repr": 7, "accept": [7, 11, 14, 16, 17], "quot": 7, "escaped_char": 7, "n": [7, 9, 10, 11, 14, 15, 17], "ha": [7, 10, 11, 15, 17], "charact": [7, 15], "escap": 7, "read_cont": 7, "po": [7, 10], "read_nod": 7, "nodes_text": 7, "thei": [7, 8, 11, 14, 15, 16, 17], "repr_short": 7, "obj": 7, "max_len": 7, "limit": [7, 10, 14, 15, 17], "skip_quoted_nam": 7, "skip_spaces_and_com": 7, "after": [7, 8, 11, 14, 15, 17], "whitespac": 7, "comment": [7, 9], "unquot": 7, "nexuserror": 7, "apply_transl": 7, "get_command": 7, "text_sect": 7, "command": [7, 10, 17], "get_sect": 7, "section_nam": 7, "arg": [7, 10, 14], "section": [7, 17], "full": [7, 11, 15, 17], "get_tre": 7, "transform": [7, 10], "done": [7, 15, 17], "alg_format": [8, 15], "fasta": [8, 9, 15], "sp_naming_funct": [8, 15, 16], "_parse_speci": 8, "store": [8, 9, 10, 11, 15, 16, 17], "extend": [8, 10, 11, 15, 17], "standard": [8, 11, 14, 17], "specif": [8, 10, 14, 16, 17], "phylogent": 8, "initi": [8, 10, 14, 15], "which": [8, 11, 14, 15, 16, 17], "phylip": [8, 9], "iphylip": [8, 9, 15], "interleav": [8, 9], "set_species_naming_funct": [8, 15], "identifi": [8, 10, 15, 16], "annotate_gtdb_taxa": [8, 16], "annotate_ncbi_taxa": [8, 16], "encod": [8, 9, 11, 15, 17], "spname": 8, "spci": 8, "inform": [8, 10, 11, 13, 14, 17], "should": [8, 11, 14, 15, 17], "access": [8, 14, 15, 16, 17], "Its": [8, 17], "avoid": [8, 9, 17], "queri": [8, 16, 17], "param": 8, "copi": [8, 11, 13, 14], "tax2lineag": [8, 16], "collapse_lineage_specific_expans": [8, 15], "return_copi": 8, "expans": [8, 15], "tip": [8, 10, 17], "randomli": [8, 11, 17], "chosen": 8, "within": [8, 10, 11, 13, 15, 16], "suppli": [8, 11], "criteria": [8, 11], "process": [8, 10, 15, 16, 17], "get_ag": [8, 15], "species2ag": [8, 15], "phylostratigraf": 8, "describ": [8, 11, 15], "gabaldon": [8, 15], "2011": [8, 15], "assign": [8, 10, 11, 15, 16], "event": [8, 10, 13], "rel": [8, 10, 11, 13], "tempor": [8, 15], "scale": [8, 10, 15], "wide": [8, 10, 15, 17], "studi": [8, 15], "27": 8, "38": [8, 10], "45": [8, 14, 16], "get_age_balanced_outgroup": 8, "better": [8, 17], "balanc": [8, 11, 17], "ag": [8, 15], "get_descendant_evol_ev": [8, 15], "sos_thr": [8, 15], "speciat": [8, 15, 17], "overlap": [8, 17], "linag": [8, 16], "detail": [8, 14, 17], "human": [8, 10, 11, 14, 15, 17], "phylom": 8, "dopazo": 8, "2007": [8, 15], "r109": 8, "get_farthest_oldest_leaf": [8, 15], "farthest": [8, 11, 15, 17], "oldest": [8, 15], "estim": [8, 14], "pointer": [8, 14, 17], "receiv": [8, 11, 14], "uniqu": [8, 10, 11, 16], "dynam": [8, 11, 14, 15, 17], "get_farthest_oldest_nod": [8, 15], "seq": [8, 9, 14], "get_my_evol_ev": [8, 15], "involv": [8, 15, 17], "scan": [8, 10, 15], "dup": [8, 10, 15], "algorithm": [8, 17], "leafnam": 8, "get_speciation_tre": [8, 15], "map_properti": 8, "autodetect_dupl": [8, 15], "newick_onli": [8, 15], "gene": [8, 10, 11, 13], "famili": [8, 11, 13, 14, 16], "marcet": [8, 15], "map": [8, 10, 11, 15], "subtre": [8, 10, 14, 17], "get_descendants_evol_ev": 8, "evoltyp": [8, 15], "get_speci": [8, 15], "cover": 8, "iter_speci": 8, "link_to_align": [8, 15], "kwarg": [8, 9, 10], "ncbi_compar": 8, "cached_cont": [8, 11], "reconcil": [8, 15], "species_tre": 8, "reconcili": 8, "evolutionari": [8, 10, 13, 17], "infer": [8, 15, 16, 17], "take": [8, 15, 17], "nodenam": 8, "parse_sp_nam": 8, "node_nam": 8, "split": [8, 11, 16, 17], "_": [8, 15, 17], "split_by_dup": [8, 15], "outfil": [8, 9, 11, 17], "str": [8, 10, 11], "output": [8, 9, 11, 15], "instad": [8, 11], "avail": [8, 11, 14, 15, 17], "bool": [8, 10, 11], "compat": [8, 11, 17], "reason": [8, 11, 15, 17], "ocur": 8, "etyp": [8, 15], "l": [8, 10, 14, 15, 17], "loss": [8, 15], "in_seq": [8, 15], "side": [8, 11], "out_seq": [8, 15], "sequenci": 9, "fix_dupl": 9, "path": [9, 11, 14, 15, 17], "forc": 9, "char": 9, "To": [9, 11, 14, 15, 16, 17], "effect": [9, 11], "relax": 9, "phylip_relax": 9, "iphylip_relax": 9, "seqs_str": 9, "seq1": 9, "aaaaaaaaaaa": 9, "seq2": 9, "ttttttttttttt": 9, "get_seq": [9, 10], "get_entri": 9, "entri": 9, "iter_entri": 9, "set_seq": 9, "written": [9, 14], "rest": [10, 14, 17], "talk": 10, "world": 10, "id": [10, 11, 17], "put": 10, "delet": [10, 11], "apptre": 10, "core": [10, 11, 15], "include_prop": [10, 11], "exclude_prop": [10, 11], "timer": 10, "float": [10, 11, 14], "select": [10, 11, 17], "activ": 10, "namedtupl": 10, "0x7f005af47e20": 10, "globalstuff": 10, "activate_clad": 10, "tree_id": 10, "activate_nod": 10, "add_tre": 10, "add_trees_from_request": 10, "app": 10, "callback": 10, "change_selection_nam": 10, "tid": 10, "copy_styl": 10, "deactivate_clad": 10, "deactivate_nod": 10, "del_tre": 10, "everywher": 10, "appear": [10, 11, 15, 17], "referenc": 10, "find_nod": 10, "get_active_clad": 10, "get_command_search": 10, "appropri": [10, 15], "get_draw": 10, "get_eval_search": 10, "express": 10, "evalu": 10, "get_field": 10, "valid_extra": 10, "field": 10, "miss": [10, 15, 17], "invalid": 10, "get_layout": 10, "get_layouts_from_gett": 10, "layout1": 10, "submodul": 10, "get_newick": 10, "max_mb": 10, "get_nodes_info": 10, "get_par": 10, "count_leav": 10, "get_pars": 10, "get_search_funct": 10, "get_selection_info": 10, "info": [10, 11, 14], "get_select": 10, "get_stat": 10, "pname": 10, "some": [10, 14, 15, 17], "statist": 10, "get_tid": 10, "get_topological_search": 10, "pattern": [10, 17], "get_trees_from_fil": 10, "fileobject": 10, "get_trees_from_form": 10, "form": [10, 11], "request": [10, 11], "get_trees_from_nexus_or_newick": 10, "btext": 10, "name_newick": 10, "safe_mod": 10, "compress": [10, 11], "global": 10, "initialize_tree_styl": 10, "json_error": 10, "load_tre": 10, "load_tree_from_newick": 10, "mainten": 10, "check_interv": 10, "60": [10, 14], "max_tim": 10, "1800": 10, "perform": [10, 14, 15, 17], "task": [10, 17], "everi": [10, 11, 15, 17], "second": [10, 15, 17], "make_nam": 10, "like": [10, 11, 16, 17], "modify_tree_field": 10, "nice_html": 10, "titl": 10, "open_browser_window": 10, "host": [10, 11], "port": [10, 11], "try": 10, "browser": 10, "window": 10, "prune_by_select": 10, "remove_act": 10, "idx": 10, "remove_active_clad": 10, "remove_search": 10, "remove_select": 10, "req_json": 10, "what": [10, 17], "json": 10, "would": [10, 15, 17], "gracefulli": 10, "abort": 10, "retrieve_layout": 10, "retrieve_tre": 10, "retriev": [10, 15, 16, 17], "previous": [10, 14, 15, 17], "pickl": [10, 17], "tmp": 10, "run_smartview": 10, "localhost": [10, 11], "5000": [10, 11], "quiet": [10, 11], "keep_serv": [10, 11], "open_brows": [10, 11], "safer_ev": 10, "safer": 10, "eval": 10, "search_to_select": 10, "key_text": 10, "store_act": 10, "store_search": 10, "store_select": 10, "touch_and_get": 10, "unselect_nod": 10, "update_app_available_layout": 10, "update_layout": 10, "active_layout": 10, "front": [10, 11], "statu": 10, "update_node_prop": 10, "update_node_styl": 10, "update_select": 10, "alia": 10, "viewport": 10, "panel": 10, "zoom": 10, "collapsed_id": 10, "subclass": 10, "extra": [10, 11, 14, 17], "collapse_s": 10, "min_siz": 10, "npanel": 10, "draw_aligned_head": 10, "draw_collaps": 10, "collapsed_nod": 10, "active_children": 10, "selected_children": 10, "draw_cont": 10, "point": [10, 11, 15, 16, 17], "draw_nod": 10, "bdx": 10, "bdy": 10, "bdy0": 10, "bdy1": 10, "flush_outlin": 10, "minimum_dx": 10, "box": 10, "outlin": 10, "reset": 10, "get_active_children": 10, "get_collapsed_nod": 10, "get_outlin": 10, "get_popup_prop": 10, "safe": [10, 17], "popup": [10, 11], "get_selected_children": 10, "is_fully_collaps": 10, "utterli": 10, "width": [10, 11, 14], "on_first_visit": 10, "on_last_visit": 10, "draweraligncircfac": 10, "draweralignrectfac": 10, "drawercirc": 10, "circular": [10, 17], "circ": 10, "content_s": 10, "draw_childrenlin": 10, "p1": 10, "p2": 10, "arc": 10, "span": 10, "draw_lengthlin": 10, "parent_of": 10, "line": [10, 14, 17], "draw_nodebox": 10, "searched_bi": 10, "draw_nodedot": 10, "center": [10, 14], "max_siz": 10, "active_nod": 10, "minimum_dr": 10, "get_box": 10, "in_viewport": 10, "is_smal": 10, "node_s": 10, "drawercircfac": 10, "bdr": 10, "bda": 10, "bda0": 10, "bda1": 10, "drawerrect": 10, "rectangular": [10, 14], "rect": [10, 14], "circl": [10, 14], "squar": 10, "sm_style": [10, 11], "drawerrectfac": 10, "dx": 10, "dy": 10, "treeactiv": 10, "clade": [10, 16], "drawn_siz": 10, "min_x": 10, "get_asec": 10, "annular": 10, "sector": 10, "get_empty_act": 10, "get_rect": 10, "rectangl": 10, "make_box": 10, "safe_str": 10, "stack": 10, "box1": 10, "box2": 10, "pad": 10, "cartesian": 10, "circumasec": 10, "circumscrib": 10, "circumrect": 10, "asec": 10, "clip_angl": 10, "a1": [10, 14], "a2": [10, 14], "angl": 10, "pi": 10, "draw_arc": 10, "larg": [10, 11, 17], "arc_typ": 10, "draw_arrai": 10, "tooltip": 10, "draw_arrow": 10, "orient": 10, "arrow_typ": 10, "arrow": 10, "bound": 10, "draw_circl": 10, "radiu": [10, 14], "circle_typ": 10, "draw_ellips": 10, "rx": 10, "ry": 10, "ellipse_typ": 10, "draw_html": 10, "html_type": 10, "draw_img": 10, "img": 10, "img_typ": 10, "draw_lin": 10, "line_typ": 10, "draw_outlin": 10, "draw_rect": 10, "rect_typ": 10, "draw_rhombu": 10, "rhombus_typ": 10, "rhombu": 10, "draw_slic": 10, "da": 10, "slice_typ": 10, "draw_text": 10, "text_typ": 10, "rotat": 10, "anchor": 10, "draw_triangl": 10, "triangle_typ": 10, "triangl": 10, "defin": [10, 14, 15, 17], "top": [10, 11, 14, 17], "left": [10, 17], "first_valu": 10, "get_line_typ": 10, "get_x": 10, "get_i": 10, "intersects_angl": 10, "part": [10, 14, 15, 16, 17], "intersects_box": 10, "b1": [10, 14], "b2": [10, 14], "kind": [10, 17], "intersect": 10, "intersects_seg": 10, "s1": 10, "s2": 10, "segment": 10, "split_thru_negative_xaxi": 10, "cut": [10, 11, 17], "summari": 10, "summar": 10, "alignlinkfac": 10, "stroke_color": 10, "grai": [10, 14], "stroke_width": 10, "opac": [10, 14], "solid": [10, 14], "dot": [10, 11, 14], "dash": [10, 14], "compute_bounding_box": 10, "dx_to_closest_child": 10, "n_row": 10, "n_col": 10, "dx_befor": 10, "dy_befor": 10, "fit": 10, "overriden": 10, "inherit": 10, "alignmentfac": 10, "seqtyp": 10, "aa": [10, 17], "gap_format": [10, 14], "seq_format": [10, 14], "height": [10, 11, 14, 17], "fgcolor": [10, 14], "black": [10, 14, 17], "bgcolor": [10, 14], "bcc3d0": 10, "gapcolor": [10, 14], "gap_linewidth": 10, "max_fsiz": 10, "12": [10, 14, 16, 17], "ftype": 10, "san": 10, "serif": 10, "padding_x": 10, "padding_i": 10, "build_block": 10, "arrowfac": 10, "color": [10, 14, 17], "5px": 10, "min_fsiz": 10, "15": [10, 11, 14, 17], "attr": 10, "formatt": 10, "get_cont": 10, "circlefac": [10, 14], "piec": [10, 14], "compute_fs": 10, "zx": 10, "zy": 10, "in_aligned_viewport": 10, "htmlface": 10, "imgfac": [10, 14], "img_path": [10, 14], "legendfac": 10, "colormap": 10, "outlinefac": 10, "collapsing_height": 10, "piechartfac": 10, "compute_pi": 10, "rectfac": 10, "scalefac": 10, "scale_rang": 10, "tick_width": 10, "80": 10, "line_width": 10, "0f": 10, "selectedcirclefac": 10, "selectedfac": 10, "selectedrectfac": 10, "seqfac": [10, 14], "poswidth": 10, "seqmotiffac": [10, 14], "motif": [10, 14], "build_region": 10, "region": 10, "stackedbarfac": 10, "seri": 10, "whatev": 10, "textfac": [10, 14], "alignedgrid": 10, "facecontain": 10, "grid": 10, "horizont": 10, "idea": [10, 11, 17], "header": [10, 11], "footer": 10, "col": [10, 14], "face1": 10, "face2": 10, "add_fac": [10, 11, 14], "make_fac": 10, "karg": [10, 14], "0030c1": 10, "rgb": [10, 14], "svg_color": 10, "ffffff": 10, "node_bgcolor": 10, "partition_bgcolor": 10, "faces_bgcolor": 10, "vt_line_color": [10, 14], "000000": [10, 14], "hz_line_color": [10, 14], "hz_line_typ": [10, 14], "integ": [10, 11], "vt_line_typ": [10, 14], "shape": [10, 14], "sphere": [10, 14], "draw_descend": 10, "mark": 10, "hz_line_width": [10, 14], "pixel": [10, 11, 14], "zero": [10, 11, 17], "indic": 10, "cosmet": 10, "pen": 10, "alwai": [10, 11, 15, 17], "drawn": [10, 14], "independ": [10, 11, 14, 17], "painter": 10, "vt_line_width": [10, 14], "init": 10, "aligned_fac": 10, "legend": 10, "set_node_styl": 10, "set_tree_styl": 10, "cased_nam": 10, "txt": 10, "active_fac": 10, "active_face_po": 10, "add_legend": 10, "variabl": 10, "discret": 10, "value_rang": 10, "color_rang": 10, "aligned_panel_foot": 10, "aligned_panel_head": 10, "get_legend": 10, "selected_fac": 10, "selected_face_po": 10, "layoutgenomiccontext": 10, "nside": 10, "conservation_threshold": 10, "70": [10, 14], "gene_nam": 10, "tooltip_prop": 10, "anchor_stroke_color": 10, "anchor_stroke_width": 10, "3px": 10, "non_conserved_color": 10, "d0d0d0": 10, "collapse_conserv": 10, "collapse_by_conserv": 10, "get_context": 10, "get_tooltip": 10, "layoutbranchlength": 10, "branch_top": 10, "8d8d8d": 10, "layoutbranchsupport": 10, "branch_bottom": 10, "fa8072": 10, "layoutleafnam": 10, "branch_right": 10, "layoutnumberleav": 10, "collapsed_onli": [10, 11], "layoutoutlin": 10, "lightgrai": 10, "layoutpfamdomain": 10, "pfam": 10, "bf5c3f": 10, "cysprx_c": 10, "55bf3f": 10, "120_rick_ant": 10, "3fb6bf": 10, "12tm_1": 10, "bf3f60": 10, "14": [10, 14, 16], "97bf3f": 10, "17kda_anti_2": 10, "67bf3f": 10, "hacid_dh": 10, "afbf3f": 10, "hacid_dh_c": 10, "3fbf5c": 10, "oxoacid_dh": 10, "7bbf3f": 10, "oxogl_dehyd_n": 10, "bfad3f": 10, "ph_phosp": 10, "46bf3f": 10, "thiour_desulf": 10, "6f3fbf": 10, "23isl": 10, "3fb8bf": 10, "23s_rrna_ivp": 10, "3fbf98": 10, "2csk_n": 10, "3f99bf": 10, "2c_adapt": 10, "3fbfa4": 10, "2exr": 10, "3fbf4b": 10, "2fe": 10, "2s_ferredox": 10, "bf3fa9": 10, "2s_thioredx": 10, "3fafbf": 10, "2h": 10, "phosphodiest": 10, "3fbfb2": 10, "2hct": 10, "bebf3f": 10, "2og": 10, "feii_oxi": 10, "bf703f": 10, "feii_oxy_2": 10, "3fbf8a": 10, "feii_oxy_3": 10, "3fbcbf": 10, "feii_oxy_4": 10, "bf633f": 10, "feii_oxy_5": 10, "3f88bf": 10, "feii_oxy_6": 10, "3f64bf": 10, "fe_oxy_2": 10, "a83fbf": 10, "2tm": 10, "883fbf": 10, "2_5_rna_ligase2": 10, "973fbf": 10, "hao": 10, "bf493f": 10, "pap": 10, "3fbf82": 10, "alpha": 10, "bf693f": 10, "dmu": 10, "9_3": 10, "mt": 10, "aebf3f": 10, "3beta_hsd": 10, "bf3f9d": 10, "bf3f58": 10, "3h": 10, "3f74bf": 10, "3hboh": 10, "5ebf3f": 10, "3hcdh": 10, "3fbf89": 10, "3hcdh_n": 10, "893fbf": 10, "3hcdh_rff": 10, "bfb43f": 10, "3keto": 10, "disac_hyd": 10, "3fbf75": 10, "40s_s4_c": 10, "bfab3f": 10, "40s_sa_c": 10, "bf3f49": 10, "4f5": 10, "52bf3f": 10, "4hb": 10, "3fa8bf": 10, "4hbt": 10, "3f76bf": 10, "4hbt_2": 10, "4hbt_3": 10, "4hb_mcp_1": 10, "3fb0bf": 10, "4hfcp_synth": 10, "3fa5bf": 10, "4hpad_g_n": 10, "4ppt_n": 10, "bf433f": 10, "4_1_ctd": 10, "3fbf42": 10, "fthf_cyc": 10, "lig": 10, "bf793f": 10, "nucleotidas": 10, "3f77bf": 10, "bp1_tudor": 10, "bf3f96": 10, "5ht_transport_n": 10, "59bf3f": 10, "5tm": 10, "5tmr_lyt": 10, "bf3f5d": 10, "5_3_exonuc": 10, "3fbf73": 10, "5_3_exonuc_n": 10, "a53fbf": 10, "5_nucleotid": 10, "bf913f": 10, "5_nucleotid_c": 10, "3f8dbf": 10, "60kd_imp": 10, "3fbfb3": 10, "6pf2k": 10, "bfb03f": 10, "6pgd": 10, "3f50bf": 10, "7tm": 10, "7tmr_hd": 10, "a4bf3f": 10, "7tmr": 10, "dismed2": 10, "3f8ebf": 10, "dism_7tm": 10, "hded": 10, "b13fbf": 10, "7tm_gpcr_sra": 10, "bf823f": 10, "7tm_gpcr_srab": 10, "3fbfad": 10, "7tm_gpcr_srb": 10, "aabf3f": 10, "7tm_gpcr_srbc": 10, "bfa73f": 10, "7tm_gpcr_srd": 10, "bf563f": 10, "7tm_gpcr_srh": 10, "7tm_gpcr_sri": 10, "8b3fbf": 10, "7tm_gpcr_srj": 10, "3fbf65": 10, "7tm_gpcr_srsx": 10, "7tm_gpcr_srt": 10, "3f5fbf": 10, "7tm_gpcr_sru": 10, "9a3fbf": 10, "7tm_gpcr_srv": 10, "5e3fbf": 10, "7tm_gpcr_srw": 10, "bf8b3f": 10, "7tm_gpcr_srx": 10, "7tm_gpcr_srz": 10, "78bf3f": 10, "7tm_gpcr_str": 10, "bf7c3f": 10, "7tm_transglut": 10, "3fa1bf": 10, "7kd_dna_bind": 10, "7tm_1": 10, "3fbf4e": 10, "7tm_2": 10, "4c3fbf": 10, "7tm_3": 10, "bf3f83": 10, "7tm_4": 10, "3f81bf": 10, "7tm_6": 10, "3fbf8d": 10, "7tm_7": 10, "8tm_micro": 10, "3f96bf": 10, "2_8": 10, "polyst": 10, "a1_propeptid": 10, "3fbf47": 10, "a2l_zn_ribbon": 10, "bfa83f": 10, "a2m": 10, "bf3fb1": 10, "a2m_brd": 10, "58bf3f": 10, "a2m_recep": 10, "bf3fa3": 10, "aa9": 10, "b8bf3f": 10, "aaa": 10, "a23fbf": 10, "atpase_lik": 10, "bf7d3f": 10, "aaa_10": 10, "3fbf90": 10, "aaa_11": 10, "aaa_12": 10, "aaa_13": 10, "bf3f99": 10, "aaa_14": 10, "3f79bf": 10, "aaa_15": 10, "bf3f68": 10, "aaa_16": 10, "bf3fb3": 10, "aaa_17": 10, "3fbfaf": 10, "aaa_18": 10, "3fbfa9": 10, "aaa_19": 10, "3fbfb0": 10, "aaa_2": 10, "bfaa3f": 10, "aaa_21": 10, "aaa_22": 10, "bf3f82": 10, "aaa_23": 10, "3fbf7b": 10, "aaa_24": 10, "83bf3f": 10, "aaa_25": 10, "50bf3f": 10, "aaa_26": 10, "443fbf": 10, "aaa_27": 10, "6dbf3f": 10, "aaa_28": 10, "aaa_29": 10, "3f90bf": 10, "aaa_3": 10, "bf3f41": 10, "aaa_30": 10, "aaa_31": 10, "833fbf": 10, "aaa_32": 10, "aaa_33": 10, "bdbf3f": 10, "aaa_34": 10, "aaa_35": 10, "aaa_5": 10, "a0bf3f": 10, "aaa_6": 10, "3fbfa0": 10, "aaa_7": 10, "7ebf3f": 10, "aaa_8": 10, "773fbf": 10, "aaa_9": 10, "723fbf": 10, "aaa_prka": 10, "3fadbf": 10, "aaa_assoc": 10, "bf9f3f": 10, "aaa_assoc_2": 10, "b83fbf": 10, "aaa_assoc_c": 10, "3fa2bf": 10, "aaa_lid_1": 10, "bf3f74": 10, "aaa_lid_10": 10, "3fbf64": 10, "aaa_lid_11": 10, "aaa_lid_2": 10, "3fbf7f": 10, "aaa_lid_3": 10, "bf3f77": 10, "aaa_lid_4": 10, "aaa_lid_5": 10, "3fbfb8": 10, "aaa_lid_6": 10, "aaa_lid_7": 10, "bf3f54": 10, "aaa_lid_8": 10, "bf3f7c": 10, "aaa_lid_9": 10, "7d3fbf": 10, "aal_decarboxi": 10, "bf3f71": 10, "aar2": 10, "bf483f": 10, "aarp2cn": 10, "42bf3f": 10, "aat": 10, "3fbf81": 10, "aatf": 10, "che1": 10, "3f70bf": 10, "aatas": 10, "bf943f": 10, "aa_kinas": 10, "aa_permeas": 10, "bf3f85": 10, "aa_permease_2": 10, "bf3f66": 10, "aa_permease_c": 10, "aa_permease_n": 10, "3f65bf": 10, "aa_synth": 10, "7b3fbf": 10, "aba4": 10, "3fbf5b": 10, "abat": 10, "3fbf61": 10, "aba_gpcr": 10, "aba_wd": 10, "3fbf48": 10, "abc1": 10, "bf3fae": 10, "abc2_membran": 10, "abc2_membrane_2": 10, "3f67bf": 10, "abc2_membrane_3": 10, "abc2_membrane_4": 10, "783fbf": 10, "abc2_membrane_5": 10, "abc2_membrane_6": 10, "abc2_membrane_7": 10, "7dbf3f": 10, "abc_atpas": 10, "bf9a3f": 10, "abc_n": 10, "3f9cbf": 10, "abc_cobalt": 10, "b73fbf": 10, "abc_export": 10, "3f68bf": 10, "abc_membran": 10, "abc_membrane_2": 10, "3f9bbf": 10, "abc_membrane_3": 10, "3fbf4a": 10, "abc_sub_bind": 10, "abc_toxin_n": 10, "5bbf3f": 10, "abc_tran": 10, "bfb33f": 10, "abc_tran_2": 10, "b53fbf": 10, "abc_tran_ctd": 10, "a1bf3f": 10, "abc_tran_xtn": 10, "abc_trans_cmpb": 10, "92bf3f": 10, "abc_trans_n": 10, "bfa13f": 10, "abc_trans_aux": 10, "bf3fbf": 10, "abc_transp_aux": 10, "3fa4bf": 10, "abg_transport": 10, "643fbf": 10, "abhd18": 10, "abm": 10, "acas_n": 10, "bf3f91": 10, "acbp": 10, "acca": 10, "90bf3f": 10, "acc_centr": 10, "3f43bf": 10, "acc_epsilon": 10, "acd": 10, "663fbf": 10, "acdc": 10, "af3fbf": 10, "acdh_c": 10, "bf3fa8": 10, "aci44": 10, "5d3fbf": 10, "acox": 10, "acp": 10, "923fbf": 10, "acp53ea": 10, "673fbf": 10, "acp_pd": 10, "bf993f": 10, "acp_syn_iii": 10, "bf763f": 10, "acp_syn_iii_c": 10, "acr_tran": 10, "bf423f": 10, "acs_codh_b_c": 10, "70bf3f": 10, "act": [10, 14], "acth_domain": 10, "actl7a_n": 10, "3f9ebf": 10, "act_3": 10, "9b3fbf": 10, "act_4": 10, "6a3fbf": 10, "act_5": 10, "bf3f8b": 10, "act_6": 10, "3fbfa7": 10, "act_7": 10, "3fbf56": 10, "act_8": 10, "3fbebf": 10, "ac_1": 10, "bf3fb0": 10, "ac_n": 10, "ache_tetra": 10, "bf3f62": 10, "adam17_mpd": 10, "adamts_cr_2": 10, "adamts_cr_3": 10, "adamts_spacer1": 10, "60bf3f": 10, "adam_cr": 10, "bf3f69": 10, "adc": 10, "bf3f6e": 10, "add_atrx": 10, "bf3f97": 10, "add_dnmt3": 10, "adh_n": 10, "6c3fbf": 10, "adh_n_2": 10, "bf6e3f": 10, "adh_n_assoc": 10, "743fbf": 10, "adh_zinc_n": 10, "3f4bbf": 10, "adh_zinc_n_2": 10, "6fbf3f": 10, "adi": 10, "adip": 10, "9e3fbf": 10, "adk": 10, "3fbfaa": 10, "adk_lid": 10, "adnp_n": 10, "adprts_tse2": 10, "53bf3f": 10, "adp_pfk_gk": 10, "adp_ribosyl_gh": 10, "bfbc3f": 10, "adprib_exo_tox": 10, "3f85bf": 10, "adsl_c": 10, "bf4f3f": 10, "adyc": 10, "aep1": 10, "953fbf": 10, "af": 10, "3faabf": 10, "4_c": 10, "af0941": 10, "af2212": 10, "af2331": 10, "3fbf58": 10, "af4_int": 10, "bf3f8f": 10, "afg1_atpas": 10, "bf7f3f": 10, "afor_c": 10, "bf683f": 10, "afor_n": 10, "afp": 10, "3fbf87": 10, "afp_2": 10, "3fbf7c": 10, "aft": 10, "3fbf92": 10, "aga2": 10, "47bf3f": 10, "agh": 10, "agk_c": 10, "agl_n": 10, "3fbf51": 10, "agog": 10, "ago_n": 10, "agrb_n": 10, "ags_c": 10, "a3bf3f": 10, "agt": 10, "bf523f": 10, "agtrap": 10, "ahd": 10, "ahh": 10, "bf453f": 10, "ahjr": 10, "72bf3f": 10, "ahl_synthas": 10, "3fbfbe": 10, "ahsa1": 10, "ahsp": 10, "ai": 10, "2e_transport": 10, "a7bf3f": 10, "aib": 10, "bf3fa5": 10, "aicarft_impcha": 10, "3f57bf": 10, "aida": 10, "4abf3f": 10, "aif": 10, "ml": 10, "aif_c": 10, "aig1": 10, "3fa7bf": 10, "aig2_2": 10, "aim24": 10, "aim3": 10, "523fbf": 10, "aim5": 10, "7e3fbf": 10, "aimp2_lysrs_bd": 10, "aip3": 10, "bf3f7a": 10, "aipr": 10, "airc": 10, "76bf3f": 10, "air": 10, "bf653f": 10, "airs_c": 10, "ajap1_panp_c": 10, "akap28": 10, "803fbf": 10, "akap2_c": 10, "a33fbf": 10, "akap7_nl": 10, "bf3fbc": 10, "akap7_ririi_bdg": 10, "akap95": 10, "4a3fbf": 10, "akap_110": 10, "3fbfba": 10, "akna": 10, "9dbf3f": 10, "alad": 10, "753fbf": 10, "alf": 10, "bfbb3f": 10, "alg11_n": 10, "alg3": 10, "algx": 10, "bf963f": 10, "alix_lypxl_bnd": 10, "80bf3f": 10, "alkbh8_n": 10, "alms_motif": 10, "543fbf": 10, "alms_repeat": 10, "almt": 10, "alo": 10, "a9bf3f": 10, "alog_dom": 10, "alp_n": 10, "als2cr11": 10, "als2cr8": 10, "als_ss_c": 10, "8cbf3f": 10, "alttaq_rpt": 10, "a93fbf": 10, "ama": 10, "bf4e3f": 10, "amh_n": 10, "bf3fbd": 10, "amin": 10, "ba3fbf": 10, "ammecr1": 10, "bfbe3f": 10, "amnp_n": 10, "amo": 10, "413fbf": 10, "amop": 10, "amp": 10, "bind": 10, "3fbf70": 10, "binding_c": 10, "binding_c_2": 10, "ampk1_cbm": 10, "8dbf3f": 10, "ampkbi": 10, "3fbfac": 10, "amp_n": 10, "amp_deaminas": 10, "b1bf3f": 10, "amt4_dom_c": 10, "anapc1": 10, "anapc10": 10, "bf3fb6": 10, "anapc15": 10, "anapc16": 10, "anapc2": 10, "bf3f6c": 10, "anapc3": 10, "babf3f": 10, "anapc4": 10, "49bf3f": 10, "anapc4_wd40": 10, "anapc5": 10, "anapc8": 10, "3f54bf": 10, "anapc9": 10, "anapc_cdc26": 10, "3fbfbb": 10, "anato": 10, "3fbfb6": 10, "anf_receptor": 10, "bfa53f": 10, "angel2_n": 10, "anis5_c": 10, "bd": 10, "bf3f94": 10, "ankh": 10, "3fbf7e": 10, "anp": 10, "98bf3f": 10, "ant": 10, "antar": 10, "anth": 10, "b2bf3f": 10, "anxa2r": 10, "4d3fbf": 10, "aoc_lik": 10, "3f5dbf": 10, "aox": 10, "ap": [10, 14], "5_subunit_s1": 10, "ap1ar": 10, "3f45bf": 10, "ap2": 10, "ap3b1_c": 10, "ap3d1": 10, "64bf3f": 10, "ap4e_app_platf": 10, "bf6d3f": 10, "apaf1_c": 10, "apc1_c": 10, "5a3fbf": 10, "apcddc": 10, "apc_15aa": 10, "bf663f": 10, "apc_n_cc": 10, "863fbf": 10, "apc_bas": 10, "apc_r": 10, "bf603f": 10, "apc_rep": 10, "apc_u13": 10, "bf7a3f": 10, "apc_u14": 10, "6e3fbf": 10, "apc_u15": 10, "73bf3f": 10, "apc_u5": 10, "apc_u9": 10, "613fbf": 10, "apeh_n": 10, "3fbf68": 10, "apg12": 10, "3fbbbf": 10, "apg5": 10, "3f4abf": 10, "apg6": 10, "apg6_n": 10, "bfae3f": 10, "aph": 10, "aph_6_hur": 10, "api5": 10, "b7bf3f": 10, "apobec1": 10, "3f42bf": 10, "apobec2": 10, "apobec3": 10, "apobec4": 10, "apobec4_lik": 10, "bf3fba": 10, "apobec_c": 10, "3fbf5f": 10, "apobec_n": 10, "apoc4": 10, "apo_rna": 10, "app1_cat": 10, "app_cu_bd": 10, "bc3fbf": 10, "app_e2": 10, "bf3f44": 10, "app_n": 10, "app_amyloid": 10, "3fb5bf": 10, "reductase_c": 10, "aps_kinas": 10, "56bf3f": 10, "apt": 10, "ap_endonuc_2": 10, "bf3f4c": 10, "ara70": 10, "arc6": 10, "like_im": 10, "ard": 10, "63bf3f": 10, "arf7ep_c": 10, "b43fbf": 10, "arglu": 10, "3fbf53": 10, "arhgef5_35": 10, "3f4dbf": 10, "arid": 10, "arl17": 10, "arl2_bind_bart": 10, "bf773f": 10, "arl6ip6": 10, "4f3fbf": 10, "armet_c": 10, "armet_n": 10, "913fbf": 10, "armh2": 10, "armh3_c": 10, "armh4": 10, "armt1": 10, "like_dom": 10, "aro": 10, "arpc4": 10, "3fbfa3": 10, "ars2": 10, "bf4c3f": 10, "art": 10, "polyv": 10, "artd15_n": 10, "asc": 10, "3f6abf": 10, "asch": 10, "asd1": 10, "bf3f79": 10, "asd2": 10, "bf853f": 10, "asf1_hist_chap": 10, "asfv_j13l": 10, "ash": 10, "bf3f9c": 10, "ask_ph": 10, "asl_c": 10, "asl_c2": 10, "bf3f89": 10, "asmase_c": 10, "aspr": 10, "asrt": 10, "aster": 10, "astn1_2_egf_fn": 10, "3f40bf": 10, "astn_1_2_n": 10, "astn_2_hairpin": 10, "3fbf76": 10, "asxh": 10, "3fbf55": 10, "asy3": 10, "atad3_n": 10, "4dbf3f": 10, "atad4": 10, "713fbf": 10, "atc_hydrolas": 10, "3fbf6d": 10, "ate_c": 10, "ate_n": 10, "atf7ip_bd": 10, "atg101": 10, "86bf3f": 10, "atg11": 10, "atg13": 10, "bf623f": 10, "atg14": 10, "bf6b3f": 10, "atg16": 10, "bf933f": 10, "atg17_lik": 10, "atg19": 10, "atg22": 10, "3fbf4d": 10, "atg27": 10, "atg29_n": 10, "bf3fa6": 10, "atg2_cad": 10, "atg31": 10, "bf4b3f": 10, "atg43": 10, "bf3f57": 10, "atg4_lir": 10, "atg7_n": 10, "atg8": 10, "atg9": 10, "bf3f7f": 10, "atg_c": 10, "3fbf6a": 10, "athila": 10, "atlf": 10, "3fbf8c": 10, "atp": 10, "cone": 10, "grasp": 10, "grasp_2": 10, "b23fbf": 10, "grasp_3": 10, "433fbf": 10, "grasp_4": 10, "grasp_5": 10, "3f7ebf": 10, "grasp_6": 10, "gua_ptran": 10, "gua_ptransn": 10, "sulfurylas": 10, "3f8abf": 10, "synt": 10, "bf3f4f": 10, "synt_10": 10, "synt_8": 10, "synt_a": 10, "synt_b": 10, "3f9fbf": 10, "synt_c": 10, "synt_d": 10, "synt_de_n": 10, "synt_": 10, "3f93bf": 10, "synt_e_2": 10, "synt_ep": 10, "synt_f": 10, "3fbf45": 10, "synt_f6": 10, "synt_g": 10, "843fbf": 10, "synt_i": 10, "3fbfb5": 10, "synt_j": 10, "3fbf99": 10, "synt_z": 10, "69bf3f": 10, "synt_ab": 10, "synt_ab_c": 10, "synt_ab_n": 10, "synt_ab_xtn": 10, "atp11": 10, "atp12": 10, "atp13": 10, "3f7bbf": 10, "atp19": 10, "atp1g1_plm_mat8": 10, "3f8bbf": 10, "atp_ca_trans_c": 10, "atp_bind_1": 10, "atp_bind_2": 10, "atp_bind_3": 10, "atp_sub_h": 10, "atp_synt_h": 10, "atp_synth_reg": 10, "atp_transf": 10, "bf3f6f": 10, "atpas": 10, "cat_bd": 10, "atpase_2": 10, "atpase_rava_c": 10, "atpase_gene1": 10, "atpgrasp_n": 10, "atpgrasp_st": 10, "3fbf72": 10, "atpgrasp_t": 10, "atpgrasp_tupa": 10, "7a3fbf": 10, "atpgrasp_yhecd": 10, "bfb93f": 10, "atr13": 10, "ATS": 10, "ats3": 10, "bf903f": 10, "atxn": 10, "1_c": 10, "at_hook": 10, "audh_cupin": 10, "aux_iaa": 10, "3fbf78": 10, "awpm": 10, "19": 10, "aw": 10, "3f95bf": 10, "axe1": 10, "axh": 10, "983fbf": 10, "axin1_tnks_bd": 10, "3f6bbf": 10, "azul": 10, "a_amylase_dom_c": 10, "a_amylase_inhib": 10, "a_deamin": 10, "a_deaminas": 10, "a_deaminase_n": 10, "a_thal_3526": 10, "aa_tran": 10, "aada_c": 10, "3f4ebf": 10, "aalphay_mdb": 10, "ablim_anchor": 10, "bf8d3f": 10, "abba_antirepr": 10, "abdomin": 10, "abfb": 10, "abfs_sensor": 10, "abhydro_lipas": 10, "abhydrolase_1": 10, "abhydrolase_10": 10, "abhydrolase_11": 10, "abhydrolase_2": 10, "abhydrolase_3": 10, "abhydrolase_4": 10, "4fbf3f": 10, "abhydrolase_5": 10, "abhydrolase_6": 10, "bf9d3f": 10, "abhydrolase_7": 10, "abhydrolase_8": 10, "abhydrolase_9": 10, "abhydrolase_9_n": 10, "abiei_1": 10, "abiei_2": 10, "abiei_3": 10, "b5bf3f": 10, "abiei_3_n": 10, "abiei_4": 10, "abieii": 10, "3fbf59": 10, "abigi": 10, "abigii_2": 10, "abih": 10, "abij_ntd3": 10, "abij_ntd4": 10, "bf3f86": 10, "abij_ntd5": 10, "bf3f72": 10, "abitii": 10, "abi_2": 10, "bf873f": 10, "abi_c": 10, "abi_hhr": 10, "abi_alpha": 10, "3f98bf": 10, "abp2": 10, "abrb": 10, "abrb_c": 10, "bf3fb9": 10, "ac45": 10, "voa1_tm": 10, "ac76": 10, "acab": 10, "acatn": 10, "acek_kinas": 10, "bf3f80": 10, "acek_regulatori": 10, "acetdehyd": 10, "dimer": 10, "acetate_kinas": 10, "bf3f9a": 10, "acetone_carb_g": 10, "bf3f51": 10, "acetylcoa_hyd_c": 10, "acetylcoa_hydro": 10, "acetyltransf_1": 10, "9ebf3f": 10, "acetyltransf_10": 10, "acetyltransf_11": 10, "acetyltransf_13": 10, "bf3fa0": 10, "acetyltransf_14": 10, "9abf3f": 10, "acetyltransf_15": 10, "acetyltransf_16": 10, "acetyltransf_17": 10, "ae3fbf": 10, "acetyltransf_18": 10, "acetyltransf_19": 10, "acetyltransf_2": 10, "acetyltransf_3": 10, "bf743f": 10, "acetyltransf_4": 10, "acetyltransf_5": 10, "3f62bf": 10, "acetyltransf_6": 10, "acetyltransf_7": 10, "bf3f8e": 10, "acetyltransf_8": 10, "acetyltransf_9": 10, "acetyltransf_cg": 10, "acid_ppas": 10, "6abf3f": 10, "acid_phosphat_b": 10, "acnx": 10, "463fbf": 10, "acnx_swivel_put": 10, "aconitas": 10, "aconitase_2_n": 10, "aconitase_b_n": 10, "87bf3f": 10, "aconitase_c": 10, "acp26ab": 10, "acrz": 10, "frag_catali": 10, "acta": 10, "actd": 10, "actin": 10, "actin_micro": 10, "actino_peptid": 10, "tram": 10, "activator_lag": 10, "3f59bf": 10, "activin_recp": 10, "acyl": 10, "acp_t": 10, "5b3fbf": 10, "coa_dh_1": 10, "coa_dh_2": 10, "coa_dh_c": 10, "3f51bf": 10, "coa_dh_m": 10, "coa_dh_n": 10, "coa_ox_n": 10, "thio_n": 10, "acylcoa_dh_n": 10, "3fbfa1": 10, "acylcoa_dehyd_c": 10, "acyl_coa_thio": 10, "3f7cbf": 10, "acyl_transf_1": 10, "acyl_transf_2": 10, "acyl_transf_3": 10, "bfb13f": 10, "acylphosphatas": 10, "acyltransf_2": 10, "acyltransf_c": 10, "acyltransferas": 10, "ad_cy_reg": 10, "ad_cyc_g": 10, "bf593f": 10, "ada3": 10, "ada_zn_bind": 10, "adap_comp_sub": 10, "adaptin_n": 10, "9d3fbf": 10, "adaptin_bind": 10, "adcy_cons_dom": 10, "bfa23f": 10, "adet1_2": 10, "bf3f40": 10, "adenine_deam_c": 10, "adenine_glyco": 10, "3fbf50": 10, "adeno_52k": 10, "adeno_e1b_55k": 10, "66bf3f": 10, "adeno_gp19k": 10, "adeno_iva2": 10, "adeno_l433k_22k": 10, "adeno_pv": 10, "adeno_px": 10, "adeno_penton_b": 10, "3fbf6f": 10, "adeno_shaft": 10, "adenosine_kin": 10, "adenyl_cycl_n": 10, "adenyl_transf": 10, "adenylatesensor": 10, "adenylate_cycl": 10, "adenylsucc_synt": 10, "adh": 10, "ig_lik": 10, "3f61bf": 10, "adhesin_": 10, "bf3f9f": 10, "adhesin_p1_c": 10, "adhesin_p1_n": 10, "adipogenin": 10, "adipokin_hormo": 10, "4cbf3f": 10, "adohcyas": 10, "3fbf44": 10, "adohcyase_nad": 10, "adometdc_lead": 10, "adomet_mtas": 10, "adomet_synthas": 10, "adomet_dc": 10, "aegerolysin": 10, "aerolysin": 10, "afad": 10, "afaf": 10, "afi1": 10, "aflr": 10, "afsa": 10, "aft1_hra": 10, "aft1_hrr": 10, "acbf3f": 10, "aft1_osa": 10, "afta_c": 10, "bbbf3f": 10, "afta_n": 10, "ag332": 10, "agi_ii_c2": 10, "agarase_cbm": 10, "41bf3f": 10, "agenet": 10, "3f6dbf": 10, "agglutinin": 10, "agglutinin_c": 10, "aglb_l1": 10, "ago_n_1": 10, "ago_hook": 10, "agouti": 10, "bf3fab": 10, "agrb": 10, "agrd": 10, "agro_vird5": 10, "a03fbf": 10, "aha1_n": 10, "ahpc": 10, "tsa": 10, "tsa_2": 10, "aidb_n": 10, "aida_c2": 10, "aida_n": 10, "ail_lom": 10, "493fbf": 10, "aim19": 10, "3f87bf": 10, "aim21": 10, "aladh_pnt_c": 10, "aladh_pnt_n": 10, "ala": 10, "ala_racemase_c": 10, "bf713f": 10, "ala_racemase_n": 10, "633fbf": 10, "alanine_zipp": 10, "alb1": 10, "alba_2": 10, "alba": 10, "albumin_i": 10, "bf3f52": 10, "albumin_i_a": 10, "alccbm31": 10, "3fbf41": 10, "ald_xan_dh_c": 10, "bf3f4b": 10, "ald_decoas": 10, "aldedh": 10, "aldo_ket_r": 10, "aldolas": 10, "aldolase_ii": 10, "aldose_epim": 10, "alfin": 10, "alg14": 10, "alg6_alg8": 10, "algf": 10, "alginate_exp": 10, "alginate_lyas": 10, "alginate_lyase2": 10, "89bf3f": 10, "alka_n": 10, "alk_phosphatas": 10, "alkyl_sulf_c": 10, "a6bf3f": 10, "alkyl_sulf_dimr": 10, "allantoicas": 10, "allatostatin": 10, "allene_ox_cyc": 10, "alliinase_c": 10, "alph_pro_tm": 10, "bf3f93": 10, "mrap_c": 10, "3f56bf": 10, "mrap_n": 10, "af_c": 10, "amy_c_pro": 10, "amyl_c": 10, "amyl_c2": 10, "amylas": 10, "amylase_c": 10, "amylase_n": 10, "mann_mid": 10, "alphac_n": 10, "alphac_n2": 10, "alpha_gj": 10, "bf3f63": 10, "alpha_hel": 10, "alpha_l_fuco": 10, "alpha_adaptinc2": 10, "alpha_adaptin_c": 10, "alpha_kinas": 10, "alta1": 10, "alveol": 10, "reg_p311": 10, "amastin": 10, "amdas": 10, "bf3f48": 10, "amelin": 10, "amelogenin": 10, "amelotin": 10, "amis_urei": 10, "amidas": 10, "amidase_2": 10, "amidase_3": 10, "amidase_5": 10, "amidase_6": 10, "amido_atzd_trzd": 10, "amidohydro_1": 10, "amidohydro_2": 10, "amidohydro_3": 10, "amidoligase_2": 10, "amino_oxidas": 10, "aminoglyc_resit": 10, "aminopep": 10, "aminotran_1_2": 10, "aminotran_3": 10, "aminotran_4": 10, "aminotran_5": 10, "amj": 10, "ammonium_transp": 10, "amnionless": 10, "473fbf": 10, "amoc": 10, "amphi": 10, "trp": 10, "amya": 10, "a_gluct_m": 10, "glutrfs_c": 10, "an_peroxidas": 10, "androgen_recep": 10, "anemone_cytotox": 10, "anfg_vnfg": 10, "anfo_nitrog": 10, "angiomotin_c": 10, "3f84bf": 10, "anillin": 10, "anillin_n": 10, "ank": 10, "ankubd": 10, "ank_2": 10, "ank_3": 10, "ank_4": 10, "ank_5": 10, "bf513f": 10, "anmk": 10, "annexin": 10, "annexin_lik": 10, "anoct_dim": 10, "anoctamin": 10, "bd3fbf": 10, "anophelin": 10, "anp1": 10, "anta": 10, "ant_c": 10, "anth_ig": 10, "anth_synt_i_n": 10, "anthrax": 10, "tox_m": 10, "anthrax_toxa": 10, "anthrone_oxi": 10, "anti": 10, "lp": 10, "scyg": 10, "84bf3f": 10, "recbcd_p2": 10, "trap": 10, "3f5abf": 10, "adapt_irap": 10, "antibiotic_nat": 10, "anticodon_1": 10, "anticodon_2": 10, "anticodon_3": 10, "antifungal_pept": 10, "antifungal_prot": 10, "antigen_c": 10, "antimicrobial10": 10, "3fbf9e": 10, "antimicrobial12": 10, "antimicrobial17": 10, "antimicrobial21": 10, "antimicrobial25": 10, "antimicrobial_5": 10, "antimicrobial_6": 10, "antirestrict": 10, "antistasin": 10, "antiterm": 10, "antitox_rhh": 10, "ap4a_phos_n": 10, "apba": 10, "apba_c": 10, "apb": 10, "apc13p": 10, "44bf3f": 10, "apc15p": 10, "apc1_midn": 10, "apc1_n": 10, "apea_ntd1": 10, "apec": 10, "apelin": 10, "apex": 10, "apha_lik": 10, "3f7fbf": 10, "apidaecin": 10, "apis_csd": 10, "apo": 10, "cii": 10, "ciii": 10, "vldl": 10, "ii": 10, "apoa": 10, "apob100_c": 10, "apoc": 10, "apol": 10, "apolp": 10, "iii": 10, "bf8a3f": 10, "apom": 10, "apoo": 10, "apocytochr_f_c": 10, "apocytochr_f_n": 10, "apolipo_f": 10, "b4bf3f": 10, "apolipoprotein": 10, "apq12": 10, "apt1": 10, "apyras": 10, "aquarius_n": 10, "3fbf62": 10, "arae_1": 10, "arae_1_c": 10, "693fbf": 10, "arae_2": 10, "arae_2_n": 10, "arac_n": 10, "arac_bind": 10, "arac_binding_2": 10, "bf3f4e": 10, "arar_c": 10, "bf573f": 10, "arabfuran": 10, "catal": 10, "9bbf3f": 10, "arabino_trans_c": 10, "arabino_trans_n": 10, "arabinose_iso_c": 10, "arabinose_isom": 10, "arabinose_bd": 10, "arabinose_tran": 10, "arb1": 10, "arb2": 10, "arc_c": 10, "arc_ma": 10, "arc_pepc": 10, "arc_pepc_ii": 10, "arc_trans_trash": 10, "arcadin_1": 10, "arch_fla_d": 10, "arch_flagellin": 10, "archaeal_amoa": 10, "archeas": 10, "arda": 10, "ardcn": 10, "area_n": 10, "arf": 10, "arfa": 10, "arfgap": 10, "arfaptin": 10, "argj": 10, "arg_decarb_hb": 10, "arg_decarbox_c": 10, "bf3f46": 10, "arg_repressor": 10, "arg_repressor_c": 10, "arg_trna_synt_n": 10, "3fbf5e": 10, "arginas": 10, "arginosuc_synth": 10, "argol1": 10, "argol2": 10, "argomid": 10, "3fbf3f": 10, "argon": 10, "argo": 10, "ariadn": 10, "arls_n": 10, "8fbf3f": 10, "arm": 10, "dna": 10, "bind_1": 10, "bind_2": 10, "bind_3": 10, "bind_4": 10, "bind_5": 10, "arm_2": 10, "arm_3": 10, "bf3f75": 10, "arm_apc_u3": 10, "arm_vescicular": 10, "arnb_c": 10, "arnt_c": 10, "3f53bf": 10, "arom": 10, "bf733f": 10, "aromatic_hydrox": 10, "583fbf": 10, "arr": 10, "m": [10, 17], "arrestin_c": 10, "arrestin_n": 10, "arsa_atpas": 10, "arsa_hsp20": 10, "arsb": 10, "arsc": 10, "arsd": 10, "arsp_1": 10, "arsp_2": 10, "arsr": 10, "bf5d3f": 10, "arv1": 10, "arylesteras": 10, "arylsulfotran_2": 10, "arylsulfotran_n": 10, "arylsulfotran": 10, "ashwin": 10, "asma": 10, "asma_1": 10, "asma_2": 10, "bf833f": 10, "asna": 10, "asnc_trans_reg": 10, "3fb9bf": 10, "asnc_trans_reg2": 10, "asn_synthas": 10, "asp": 10, "al_ex": 10, "hydro_n": 10, "94bf3f": 10, "asp1": 10, "asp2": 10, "asp23": 10, "asp4": 10, "5cbf3f": 10, "asp5": 10, "asp_arg_hydrox": 10, "asp_dh_c": 10, "603fbf": 10, "asp_glu_rac": 10, "asp_glu_race_2": 10, "asp_aminotransf": 10, "bf3f8c": 10, "asp_decarbox": 10, "asp_proteas": 10, "asp_protease_2": 10, "75bf3f": 10, "asparaginas": 10, "asparaginase_2": 10, "asparaginase_c": 10, "asparaginase_ii": 10, "aspzincin_m35": 10, "asr": 10, "asta": 10, "astb": 10, "aste_aspa": 10, "astacin": 10, "astro_capsid_p": 10, "at2g31720": 10, "atal": 10, "atg11_middl": 10, "atpr": 10, "atrophin": 10, "attachment_p66": 10, "attacin_c": 10, "3f82bf": 10, "atthog": 10, "atu4866": 10, "atua": 10, "573fbf": 10, "atx10homo_assoc": 10, "atypical_card": 10, "atzg": 10, "augurin": 10, "aurf": 10, "aurora": 10, "a_bind": 10, "auto_anti": 10, "p27": 10, "autoind_bind": 10, "autoind_synth": 10, "autophagy_act_c": 10, "autotransport": 10, "auts2": 10, "auxin_bp": 10, "bfa43f": 10, "auxin_canali": 10, "auxin_induc": 10, "auxin_repress": 10, "auxin_resp": 10, "avec_lik": 10, "avira": 10, "avian_gp85": 10, "avidin": 10, "avl9": 10, "avrb_avrc": 10, "avrd": 10, "avre_t3": 10, "avrl567": 10, "bf3f55": 10, "avrlm4": 10, "avrm": 10, "avrm_n": 10, "avrpphf": 10, "orf": 10, "avrpto": 10, "avrptob": 10, "e3_ubiq": 10, "avrptob_bdg": 10, "avrrpt": 10, "cleavag": 10, "ax_dynein_light": 10, "axin_b": 10, "cat_bind": 10, "3f48bf": 10, "azlc": 10, "azld": 10, "3fbf93": 10, "block_tfiiic": 10, "b12": 10, "binding_2": 10, "b12d": 10, "adapt": [10, 16], "app_c": 10, "b277": 10, "b3": [10, 14], "b3galt2_n": 10, "b3_4": 10, "b5": 10, "b56": 10, "b9": 10, "c2": [10, 14], "ba14k": 10, "6cbf3f": 10, "baalc_n": 10, "3f47bf": 10, "baat_c": 10, "back": 10, "bacon": 10, "bacon_2": 10, "baf": 10, "baf1_abf1": 10, "baf250_c": 10, "bf3f43": 10, "bag": 10, "bag6": 10, "bage": 10, "bah": 10, "balf1": 10, "a63fbf": 10, "bambi": 10, "bambi_c": 10, "bap": 10, "bar_2": 10, "bar_3": 10, "bfb63f": 10, "bar_3_wasp_bdg": 10, "bar_4": 10, "basp1": 10, "bat": 10, "bat2_n": 10, "bbe": 10, "bbip10": 10, "bbl5": 10, "bbp1_c": 10, "bbp1_n": 10, "bbp2": 10, "bbp2_2": 10, "bbp7": 10, "bbs1": 10, "bbs2_c": 10, "bbs2_mid": 10, "8c3fbf": 10, "bbs2_n": 10, "bb_pf": 10, "bc10": 10, "bcas2": 10, "bcas3": 10, "bca_abc_tp_c": 10, "bf973f": 10, "bccip": 10, "bcct": 10, "bcd": 10, "bcdhk_adom3": 10, "bchf": 10, "bcl9": 10, "bclp": 10, "bcl_n": 10, "3facbf": 10, "bcma": 10, "tall_bind": 10, "bcnt": 10, "bcor": 10, "bcs1_n": 10, "bcsc_c": 10, "bfb73f": 10, "bchl_a": 10, "fae": 10, "bdhct": 10, "bdhct_assoc": 10, "bdm": 10, "bdv_p40": 10, "bd_b_sandwich": 10, "ben": 10, "bes1_n": 10, "bess": 10, "bet": 10, "bex": 10, "be_c": 10, "bfn_dom": 10, "bh3": 10, "bh4": 10, "bhd_1": 10, "bhd_2": 10, "bhd_3": 10, "bid": 10, "big2_c": 10, "bilbo1_n": 10, "bing4ct": 10, "bir": 10, "birc6": 10, "biv_env": 10, "big21": 10, "bkace": 10, "bk_channel_a": 10, "blact_wh": 10, "blf1": 10, "blh_phosphatas": 10, "3fbf85": 10, "bli1": 10, "blip": 10, "blm10_n": 10, "blm10_mid": 10, "blm_n": 10, "3fbfbd": 10, "bloc1s3": 10, "bloc1_2": 10, "bluf": 10, "blyb": 10, "bmc": 10, "bmf": 10, "bmfp": 10, "bmp2k_c": 10, "bf3f7d": 10, "bmt": 10, "bmt5": 10, "bnip2": 10, "bnip3": 10, "bnr": 10, "bnr_2": 10, "bnr_3": 10, "bnr_4": 10, "bnr_6": 10, "bnr_assoc_n": 10, "bf3fb4": 10, "bof": 10, "bofc_n": 10, "bon": 10, "bop1nt": 10, "bora_n": 10, "borcs6": 10, "borcs7": 10, "3fb3bf": 10, "borcs8": 10, "borg_cep": 10, "bp28ct": 10, "bpa": 10, "bpa_c": 10, "bpd_transp_1": 10, "bpd_transp_1_n": 10, "bf403f": 10, "bpd_transp_2": 10, "bpl_c": 10, "bpl_lpla_lipb": 10, "bpl_lpla_lipb_2": 10, "bpl_n": 10, "bp": 10, "bf883f": 10, "bps1": 10, "bpta": 10, "brap2": 10, "brca": 10, "2_ob1": 10, "2_ob3": 10, "2_helic": 10, "brca2": 10, "brcc36_c": 10, "brct": 10, "brct_2": 10, "brct_3": 10, "brct_assoc": 10, "brd4_cdt": 10, "bre": 10, "bre1": 10, "brf1": 10, "bri3": 10, "bri3bp": 10, "bricho": 10, "brinp": 10, "brk": 10, "bf463f": 10, "bro1": 10, "bromi": 10, "bf3f88": 10, "brx": 10, "brx_n": 10, "brx_assoc": 10, "bsd": 10, "bsmap": 10, "bsp": 10, "bsp_ii": 10, "bst2": 10, "bt1": 10, "btad": 10, "btb": 10, "btb_2": 10, "3fbf84": 10, "btb_3": 10, "btd": 10, "btg": 10, "bthb": 10, "btk": 10, "btp": 10, "btrd1": 10, "bud22": 10, "buran": 10, "burp": 10, "b_lectin": 10, "b_solenoid_dext": 10, "b_solenoid_ydck": 10, "baca": 10, "813fbf": 10, "bac_a_amyl_c": 10, "bac_dna_bind": 10, "bac_dnaa": 10, "bac_dnaa_c": 10, "bac_gdh": 10, "bf3fad": 10, "bac_gh3_c": 10, "bac_repa_c": 10, "bac_chlorc": 10, "bac_export_1": 10, "bac_export_2": 10, "bac_export_3": 10, "bac_globin": 10, "bac_luciferas": 10, "bac_rhamnosid": 10, "bac_rhamnosid6h": 10, "bf8e3f": 10, "bac_rhamnosid_c": 10, "bac_rhamnosid_n": 10, "bac_rhodopsin": 10, "bac_small_yrzi": 10, "bac_thur_toxin": 10, "bac_transf": 10, "95bf3f": 10, "bacillus_hbl": 10, "bacillus_papr": 10, "bact_hydrolas": 10, "bact_lectin": 10, "bact_transglu_n": 10, "bacteriociic_ci": 10, "bacteriocin_ii": 10, "bacteriocin_i": 10, "bacteriocin_iid": 10, "bacteriocin_iii": 10, "bacteroid_pep": 10, "bactofilin": 10, "baculo_f": 10, "bf9c3f": 10, "baculo_fp": 10, "baculo_gp64": 10, "baculo_p24": 10, "baculo_p74": 10, "baculo_p74_n": 10, "baffr": 10, "bamhi": 10, "band_3_cyto": 10, "band_7": 10, "band_7_1": 10, "band_7_c": 10, "bap31": 10, "bap31_bap29_c": 10, "barstar": 10, "barttin": 10, "barwin": 10, "basepl": 10, "baseplate_j": 10, "bata": 10, "batd": 10, "bax1": 10, "baxi_1": 10, "bcl": 10, "2_bad": 10, "bcla_c": 10, "bclt": 10, "bclx_interact": 10, "553fbf": 10, "bcr": 10, "abl_oligo": 10, "943fbf": 10, "bcrad_badfg": 10, "bcsb": 10, "bd3614": 10, "deam": 10, "bd3614_n": 10, "beach": 10, "bee_toxin": 10, "bene": 10, "bep_c_termin": 10, "bestrophin": 10, "betr": 10, "bet_v_1": 10, "beta": 10, "casp": 10, "trcp_d": 10, "lactamas": 10, "lactamase2": 10, "prism_lec": 10, "betagal_dom2": 10, "betagal_dom3": 10, "betagal_dom4_5": 10, "beta_elim_lyas": 10, "beta_helix": 10, "beta_helix_2": 10, "beta_helix_3": 10, "beta_lactamase3": 10, "beta_propel": 10, "beta_protein": 10, "bfii_dbd": 10, "bgal_small_n": 10, "bipbp_c": 10, "3fbf8f": 10, "bicd": 10, "big_1": 10, "big_10": 10, "big_11": 10, "big_12": 10, "big_13": 10, "big_14": 10, "big_15": 10, "big_2": 10, "big_3": 10, "big_3_2": 10, "big_3_3": 10, "big_3_4": 10, "big_3_5": 10, "big_4": 10, "ab3fbf": 10, "big_5": 10, "big_6": 10, "61bf3f": 10, "big_7": 10, "big_8": 10, "big_9": 10, "bile_hydr_tran": 10, "biliv": 10, "reduc_cat": 10, "bim_n": 10, "bin3": 10, "binary_toxb": 10, "binary_toxb_2": 10, "binary_toxb_3": 10, "bindin": 10, "biot2": 10, "biow": 10, "bioi": 10, "biopterin_h": 10, "biotin_carb_c": 10, "biotin_carb_n": 10, "biotin_lipoyl": 10, "biotin_lipoyl_2": 10, "blo": 10, "blt1": 10, "blt1_c": 10, "bmkx": 10, "bmp": 10, "bmt2": 10, "bf3f5b": 10, "bofa": 10, "7abf3f": 10, "bofc_c": 10, "bola": 10, "bombesin": 10, "borealin": 10, "borrelia_p13": 10, "borrelia_p83": 10, "borrelia_orfa": 10, "borrelia_orfd": 10, "borrelia_orfx": 10, "bot1p": 10, "botulinum_ha": 10, "17": 10, "bowman": 10, "birk_leg": 10, "bphx": 10, "bppl_n": 10, "bppu_igg": 10, "bppu_n": 10, "bpsa_c": 10, "bpuji_n": 10, "bpusi_n": 10, "403fbf": 10, "branch_aa_tran": 10, "bravo_figei": 10, "brix": 10, "brkdbd": 10, "brme1": 10, "brna_antitoxin": 10, "brnt_toxin": 10, "bro": 10, "bromo_tp": 10, "bromo_tp_lik": 10, "bromodomain": 10, "brr6_like_c_c": 10, "brucella_omp2": 10, "brxa": 10, "brxb": 10, "brxc_brxd": 10, "brxl_atpas": 10, "brxl_n": 10, "bse634i": 10, "bshc": 10, "bsla": 10, "bspa_v": 10, "bssb_tutg": 10, "bssc_tutf": 10, "bsss": 10, "bsubi_psti_r": 10, "bsubi_psti_re_n": 10, "bsupi": 10, "81bf3f": 10, "btpa": 10, "btrh_n": 10, "btz": 10, "bubbl": 10, "bf3f5e": 10, "bud13": 10, "bud3_n": 10, "bf3f65": 10, "bul1_c": 10, "ac3fbf": 10, "bul1_n": 10, "bundlin": 10, "bunya_g2": 10, "bunya_rdrp": 10, "bunya_nucleocap": 10, "but2": 10, "bys1": 10, "bystin": 10, "c_bond_lyas": 10, "jid": 10, "c1": [10, 14], "c12orf66_lik": 10, "c166": 10, "c1orf64": 10, "c1_1": 10, "c1_2": 10, "c1_4": 10, "c1q": 10, "c2_1": 10, "set_2": 10, "c2orf69": 10, "c4": 10, "c4bp_oligo": 10, "c5": 10, "epim_c": 10, "c5hch": 10, "c6": 10, "c6_dpf": 10, "c8": 10, "c9orf72": 10, "caad": 10, "caap1": 10, "caax_1": 10, "cabit": 10, "cabs1": 10, "cac1f_c": 10, "cadh_i": 10, "type_lir": 10, "caf": 10, "1_p150": 10, "1_p60_c": 10, "caf1": 10, "p150_c2": 10, "p150_n": 10, "caf1a": 10, "caf1c_h4": 10, "caf20": 10, "bf3fa2": 10, "cage1": 10, "calcoco1": 10, "camp_factor": 10, "camsap_cc1": 10, "camsap_ch": 10, "camsap_ckk": 10, "canin": 10, "cap": 10, "zip_m": 10, "cap160": 10, "cap18_c": 10, "cap59_mtransf": 10, "cap_c": 10, "cap_gli": 10, "cap_n": 10, "cap_assoc_n": 10, "card": 10, "cardb": 10, "card_2": 10, "carm1": 10, "carm": 10, "3f5cbf": 10, "carmil_c": 10, "cart": 10, "casp_c": 10, "casp_dom": 10, "cas_c": 10, "cas_cse1": 10, "cat": 10, "catasp": 10, "catra": 10, "catsperb": 10, "catsperd": 10, "catsperg": 10, "cat_rbd": 10, "ca_lik": 10, "cbah": 10, "cbd_plyg": 10, "cbf": 10, "cbfb_nfya": 10, "cbfd_nfyb_hmf": 10, "3f6ebf": 10, "cbfnt": 10, "cbf_beta": 10, "cbl": 10, "cbm": 10, "cbm26": 10, "cbm27": 10, "cbm32": 10, "cbm39": 10, "3f73bf": 10, "cbm46": 10, "cbm49": 10, "cbm53": 10, "cbm60": 10, "cbm64": 10, "cbm65_1": 10, "cbm77": 10, "cbm9_1": 10, "cbm9_2": 10, "cbm_1": 10, "cbm_10": 10, "cbm_11": 10, "cbm_14": 10, "cbm_15": 10, "8abf3f": 10, "cbm_17_28": 10, "3fbf79": 10, "cbm_19": 10, "cbm_2": 10, "cbm_20": 10, "cbm_21": 10, "8e3fbf": 10, "cbm_25": 10, "cbm_26": 10, "cbm_3": 10, "cbm_35": 10, "cbm_48": 10, "cbm_4_9": 10, "cbm_5_12": 10, "cbm_5_12_2": 10, "cbm_6": 10, "cbm_x2": 10, "cbp": 10, "cbp110": 10, "cbp30": 10, "cbp4": 10, "cbp66": 10, "cbp_bcsf": 10, "cbp_bcsg": 10, "3fbf95": 10, "cbp_bcsn": 10, "cbp_bcso": 10, "cbp_bcsq": 10, "cbp_bcsr": 10, "cbp_bcss": 10, "cbp_ccpa": 10, "cbp_gil": 10, "bf5f3f": 10, "cb": 10, "cbx7_c": 10, "cc": 10, "cc149": 10, "cc190": 10, "cc2": 10, "lz": 10, "cc2d2an": 10, "ccap": 10, "ccb1": 10, "ccb2_ccb4": 10, "cccap": 10, "ccd": 10, "ccd48": 10, "503fbf": 10, "ccd97": 10, "like_c": 10, "ccdc": 10, "167": 10, "ccdc106": 10, "ccdc117": 10, "ccdc14": 10, "ccdc142": 10, "ccdc144c": 10, "ccdc154": 10, "ccdc158": 10, "ccdc168_n": 10, "ccdc22": 10, "ccdc23": 10, "ccdc24": 10, "ccdc28": 10, "ccdc32": 10, "ccdc34": 10, "ccdc47": 10, "ccdc50_n": 10, "ccdc53": 10, "ccdc66": 10, "ccdc71l": 10, "ccdc73": 10, "ccdc74_c": 10, "ccdc84": 10, "ccdc85": 10, "ccdc90": 10, "ccdc92": 10, "ccdc93_cc": 10, "ccer1": 10, "ccg": 10, "ccm2_c": 10, "ccp_maug": 10, "ccsap": 10, "ccsmst1": 10, "3f91bf": 10, "cct": 10, "cd20": 10, "cd225": 10, "cd24": 10, "cd34_antigen": 10, "cd36": 10, "cd4": 10, "extracel": 10, "cd45": 10, "cd47": 10, "cd52": 10, "cd99l2": 10, "cdc13_n": 10, "cdc14": 10, "cdc24": 10, "cdc24_ob1": 10, "cdc24_ob2": 10, "cdc24_ob3": 10, "cdc27": 10, "cdc37_c": 10, "cdc37_m": 10, "cdc37_n": 10, "cdc45": 10, "cdc48_2": 10, "cdc48_n": 10, "cdc4_d": 10, "cdc50": 10, "cdc73_c": 10, "cdc73_n": 10, "cdca": 10, "3fbf9c": 10, "cdh": 10, "cyt": 10, "cdh1_2_sant_hl1": 10, "cdi": 10, "cdk2ap": 10, "cdk5rap3": 10, "cdk5_activ": 10, "cdkn3": 10, "cdo_i": 10, "cdp": 10, "oh_p_tran_2": 10, "oh_p_transf": 10, "cdrt4": 10, "cdt1": 10, "cdt1_c": 10, "bf3fb7": 10, "cdv3": 10, "cdtoxina": 10, "ce2_n": 10, "cebp1_n": 10, "cebp_zz": 10, "cecr6_tmem121": 10, "cel_iii_c": 10, "cend1": 10, "cenp": 10, "b_n": 10, "b_dimeri": 10, "c_c": 10, "c_mid": 10, "f_c_rb_bdg": 10, "f_n": 10, "f_leu_zip": 10, "k": [10, 11, 17], "o": [10, 11, 14, 17], "q": [10, 17], "t_c": 10, "t_n": 10, "u": [10, 14, 16, 17], "8f3fbf": 10, "cenp_c_n": 10, "cep1": 10, "dna_bind": 10, "cep170_c": 10, "cep19": 10, "cep209_cc5": 10, "cep44": 10, "cep63": 10, "cep76": 10, "cerk_c": 10, "cf222": 10, "cfa20_dom": 10, "cfap298": 10, "cfap300": 10, "cfap54_n": 10, "cfap61_n": 10, "cfap77": 10, "cfap91": 10, "cfc": 10, "cfem": 10, "cfia_pcf11": 10, "cfsr": 10, "cftr_r": 10, "cg": 10, "cggc": 10, "cgi": 10, "121": 10, "cgld27": 10, "ch": 10, "chad": 10, "chap": 10, "chase": 10, "chase2": 10, "chase3": 10, "chase4": 10, "chase5": 10, "chase6_c": 10, "chase7": 10, "chase8": 10, "chase9": 10, "chat": 10, "chb_hex": 10, "chb_hex_c": 10, "chb_hex_c_1": 10, "chch": 10, "chd5": 10, "chdct2": 10, "chdii_sant": 10, "chdnt": 10, "chgn": 10, "chip": 10, "chip_tpr_n": 10, "chmi": 10, "chord": 10, "chrd": 10, "chrdl_1_2_c": 10, "chs5_n": 10, "chu_c": 10, "chz": 10, "ch_2": 10, "ci": 10, "b14_5a": 10, "cia30": 10, "ciapin1": 10, "cid": 10, "cide": 10, "cidr1_gamma": 10, "cid_ganp": 10, "cif": 10, "cimr": 10, "cis_tmp": 10, "3fbf96": 10, "cis_spike_tip": 10, "cis_tub": 10, "cite": 10, "ck1gamma_c": 10, "ck2": 10, "ckap2_c": 10, "ck": 10, "ck_ii_beta": 10, "clag": 10, "clamp": 10, "clasp_n": 10, "clca": 10, "clec16a_c": 10, "clip": [10, 14], "3f71bf": 10, "clip1_znf": 10, "clip_1": 10, "clip_sph_scar": 10, "clip_sph_ma": 10, "cllac": 10, "cln3": 10, "cln5": 10, "cln6": 10, "clp1_n": 10, "clp1_p": 10, "clptm1": 10, "3fb2bf": 10, "clp_proteas": 10, "clstn_c": 10, "clu": 10, "clu_n": 10, "clz": 10, "cma": 10, "cmd": 10, "cms1": 10, "cm_1": 10, "cm_2": 10, "cndh2_c": 10, "cndh2_m": 10, "cndh2_n": 10, "cnf1": 10, "cnh": 10, "cnk2_3_dom": 10, "cnnm": 10, "cnot11": 10, "cnot1_caf1_bind": 10, "cnot1_heat": 10, "cnot1_ttp_bind": 10, "cnp1": 10, "cnp_c_termin": 10, "cnpase": 10, "cnrip1": 10, "cntf": 10, "cn_hydrolas": 10, "coa2": 10, "coa8": 10, "cobra": 10, "cobra1": 10, "codh_a_n": 10, "coe1_dbd": 10, "coe1_hlh": 10, "cog2": 10, "cog2_c": 10, "cog4": 10, "cog5": 10, "cog6": 10, "cog7": 10, "colfi": 10, "commd1_n": 10, "comm_domain": 10, "comp": 10, "compass": 10, "shg1": 10, "cooh": 10, "nh2_lig": 10, "cop": 10, "gamma_platf": 10, "cop23": 10, "copiicoated_erv": 10, "copi_c": 10, "bf3f6b": 10, "copi_assoc": 10, "copr5": 10, "coq7": 10, "coq9": 10, "cor": 10, "co": 10, "cox1": 10, "cox14": 10, "cox15": 10, "ctaa": 10, "cox16": 10, "cox17": 10, "cox2": 10, "transmemb": 10, "cox24_c": 10, "cox2_tm": 10, "cox3": 10, "cox4": 10, "cox4_pro": 10, "cox4_pro_2": 10, "cox5a": 10, "cox5b": 10, "cox6a": 10, "cox6b": 10, "cox6c": 10, "cox7b": 10, "cox7c": 10, "cox7a": 10, "cox8": 10, "3fbf6b": 10, "coxg": 10, "cox_arm": 10, "co_deh_flav_c": 10, "co_dh": 10, "coesteras": 10, "cp12": 10, "cp2": 10, "cpcfc": 10, "cpdase": 10, "cpg4": 10, "cpl": 10, "cpp1": 10, "cpsf100_c": 10, "cpsf73": 10, "100_c": 10, "cpsf_a": 10, "cpsase_l_d2": 10, "cpsase_l_d3": 10, "cpsase_sm_chain": 10, "cpt": 10, "cpt_n": 10, "cpw_wpc": 10, "cp_atpgrasp_1": 10, "cp_atpgrasp_2": 10, "cpxcg_zf": 10, "cr6_interact": 10, "cra": 10, "cral_trio": 10, "cral_trio_2": 10, "cral_trio_n": 10, "cram_rpt": 10, "cra_rpt": 10, "crcb": 10, "crc_subunit": 10, "crept": 10, "crf": 10, "crf1": 10, "cric_ras_sig": 10, "crim": 10, "crim1_c": 10, "crispr_cas2": 10, "crispr_cas6": 10, "crispr_cas6_n": 10, "crispr_cas9_w": 10, "crispr_cse1": 10, "crispr_cse2": 10, "crispr_assoc": 10, "crm1_c": 10, "crm1_repeat": 10, "crm1_repeat_2": 10, "crm1_repeat_3": 10, "crpa": 10, "crr7": 10, "crs1_yhbi": 10, "crt": 10, "crt10": 10, "crep_n": 10, "csd": 10, "csd2": 10, "csf": 10, "csg2": 10, "csm2": 10, "csn4_rpn5_eif3a": 10, "csn5_c": 10, "csn7a_helixi": 10, "csn8_psd8_eif3k": 10, "csrnp_n": 10, "css": 10, "cst": 10, "cstf1_dimer": 10, "cstf2_hing": 10, "cstf_c": 10, "ct47": 10, "ctc1": 10, "ctc1_2": 10, "ctd": 10, "ctd1": 10, "ctd10": 10, "ctd11": 10, "ctd12": 10, "ctd2": 10, "ctd3": 10, "ctd4": 10, "ctd5": 10, "ctd6": 10, "ctd7": 10, "ctd8": 10, "ctd9": 10, "ctf_nfi": 10, "cti": 10, "ctk3": 10, "ctk3_c": 10, "ctlh": 10, "ctnnb1_bind": 10, "ctnnbl": 10, "ctp": 10, "dep_rfkas": 10, "ctp_synth_n": 10, "ctp_transf_1": 10, "ctp_transf_3": 10, "ctp_transf_lik": 10, "ctu2": 10, "ctx_rstb": 10, "ctxphi_piii": 10, "ct_a_b": 10, "ct_c_d": 10, "cub": 10, "cub_2": 10, "cue": 10, "bf803f": 10, "cupid": 10, "cutl": 10, "cvnh": 10, "cwc25": 10, "cw_7": 10, "cw_binding_2": 10, "cx": 10, "cx9c": 10, "cxcl17": 10, "cxcr4_n": 10, "cxcxc": 10, "cxxc_zn": 10, "b_euk": 10, "cyld_phos_sit": 10, "cyria": 10, "b_rac1": 10, "cystm": 10, "cyth": 10, "cytl1": 10, "cyyr1": 10, "czb": 10, "c_gcaxxg_c_c": 10, "c_lfy_flo": 10, "c_triplex": 10, "caatp_nai": 10, "cakb": 10, "cam": 10, "kiin": 10, "cambd": 10, "camkii_ad": 10, "cam_bdg_c0": 10, "cam_bind": 10, "ca_bind_sso6904": 10, "ca_chan_iq": 10, "ca_hom_mod": 10, "caa3_ctag": 10, "bf3f5a": 10, "cache_3": 10, "cache_2": 10, "cactinc_cactu": 10, "cactin_mid": 10, "cad": 10, "cadc_c1": 10, "cadherin": 10, "cadherin_2": 10, "cadherin_3": 10, "cadherin_4": 10, "cadherin_5": 10, "cadherin_c_2": 10, "cadherin_pro": 10, "cadherin_tail": 10, "caenor_h": 10, "caf4": 10, "cag12": 10, "caga": 10, "caga_n": 10, "cagd": 10, "cage_trbe_virb": 10, "cag": 10, "cagx": 10, "cagy_i": 10, "cagy_m": 10, "cagz": 10, "caif_grla": 10, "calc_cgrp_iapp": 10, "calci_bind_ccbp": 10, "calcipressin": 10, "calcyon": 10, "caldesmon": 10, "caleosin": 10, "calici_pp_n": 10, "calmod_bind_c": 10, "calmod_bind_m": 10, "calmodulin_bind": 10, "calpain_iii": 10, "calpain_inhib": 10, "calpain_u2": 10, "calponin": 10, "calreticulin": 10, "calsarcin": 10, "calsequestrin": 10, "calx": 10, "calycin_lik": 10, "campylo_momp": 10, "candida_": 10, "candida_als_n": 10, "cap4_nucleas": 10, "caprin": 10, "1_dimer": 10, "caps_assemb_wzi": 10, "caps_syn_gfcc_c": 10, "caps_syn_gfcc_n": 10, "caps_synth": 10, "caps_synth_capc": 10, "capsid_n": 10, "capsid_ncldv": 10, "capsule_synth": 10, "cara_n": 10, "card_cdnl_trcf": 10, "car": 10, "carb_anhydras": 10, "carb_bind": 10, "carb_kinas": 10, "carbam_trans_c": 10, "carbam_trans_n": 10, "carbopepd_reg_2": 10, "carboxyl_tran": 10, "carboxypepd_reg": 10, "carbpepa_inh": 10, "carbpep_y_n": 10, "carla_c4": 10, "carm_ph": 10, "carn_acyltransf": 10, "carot_n": 10, "caroten_synth": 10, "cas1_acylt": 10, "cas3_c": 10, "cas5fv_hel": 10, "cas6": 10, "cas6_n": 10, "cas6b_c": 10, "cas6b_n": 10, "cas9": 10, "bh": 10, "cas9_c": 10, "cas9_pi": 10, "cas9_pi2": 10, "cas9_rec": 10, "cas9_topo": 10, "cas9_a": 10, "cas9_b_hairpin": 10, "cas_ape2256": 10, "cas_ct1975": 10, "cas_cxxc_cxxc": 10, "cas_cas02710": 10, "cas_cas1": 10, "cas_cas2ct1978": 10, "cas_cas4": 10, "cas_cas5d": 10, "cas_cas6_c": 10, "cas_cas7": 10, "cas_cmr3": 10, "cas_cmr5": 10, "cas_csa4": 10, "cas_csa5": 10, "cas_csd1": 10, "cas_csm6": 10, "cas_csn2": 10, "cas_csx8": 10, "cas_csx9": 10, "cas_csy1": 10, "cas_csy2": 10, "cas_csy3": 10, "cas_csy4": 10, "cas_dxthg": 10, "cas_gsu0053": 10, "cas_gsu0054": 10, "cas_ne0113": 10, "cas_st_csn2": 10, "cas_tm1802": 10, "cas_vva1548": 10, "cas_csx3": 10, "casc1_c": 10, "casc1_n": 10, "casein": 10, "casein_kappa": 10, "caskin": 10, "pro": 10, "rich": 10, "tail": 10, "caskin1": 10, "cass2": 10, "cast": 10, "castor1_n": 10, "castor_poll_mid": 10, "catalas": 10, "catalase_c": 10, "cathelicidin": 10, "cathepsinc_exc": 10, "cation_atpas": 10, "cation_atpase_c": 10, "cation_atpase_n": 10, "cation_efflux": 10, "caud_tail_n": 10, "caudal_act": 10, "caudo_tap": 10, "caudo_bapla16": 10, "caudo_bapla_rbp": 10, "cauli_at": 10, "cauli_dna": 10, "cauli_vi": 10, "caveolin": 10, "cbbq_c": 10, "cbea_antitoxin": 10, "cbia": 10, "cbic": 10, "cbid": 10, "cbig_c": 10, "cbig_n": 10, "cbig_mid": 10, "cbij": 10, "cbik": 10, "cbim": 10, "cbin": 10, "cbiq": 10, "cbix": 10, "cbiz": 10, "cbld": 10, "cbl_n": 10, "cbl_n2": 10, "cbl_n3": 10, "cbta": 10, "cbta_toxin": 10, "cbtb": 10, "ccda": 10, "ccdb": 10, "ccdc124": 10, "ccla_1": 10, "ccmb": 10, "ccmd": 10, "ccmd_alt": 10, "ccme": 10, "ccmf_c": 10, "ccmh": 10, "cdamp_rec": 10, "cdaa_n": 10, "cdc13_ob2": 10, "cdc13_ob4_dim": 10, "cdc6_c": 10, "cdd1": 10, "cdh1_dbd_1": 10, "cdhc": 10, "cdhd": 10, "cdia_c": 10, "cdia_c_trnas": 10, "cdii": 10, "cdii_2": 10, "cdii_3": 10, "cdii_4": 10, "cdii_n": 10, "cdva": 10, "cecr_c": 10, "cecropin": 10, "ceda": 10, "celd_n": 10, "celto": 10, "cellsynth_d": 10, "cellulas": 10, "cellulose_synt": 10, "cema": 10, "cementoin": 10, "centro_c10orf90": 10, "cep3": 10, "cep57_cld": 10, "cep57_cld_2": 10, "cep57_mt_bd": 10, "ceramidas": 10, "ceramidase_alk": 10, "ceramidse_alk_c": 10, "cerato": 10, "platanin": 10, "cest": 10, "cfaa_b_c": 10, "cg6151": 10, "cgr1": 10, "cgta": 10, "chw": 10, "chab": 10, "chac": 10, "chal_sti_synt_c": 10, "chal_sti_synt_n": 10, "chalcon": 10, "chalcone_2": 10, "chalcone_3": 10, "chalcone_n": 10, "channel_tsx": 10, "chapflga": 10, "chapflga_n": 10, "chaperone_iii": 10, "cheb_methylest": 10, "chec": 10, "ched": 10, "chef": 10, "arch": 10, "cher": 10, "cher_n": 10, "chew": 10, "chex": 10, "bf543f": 10, "chei": 10, "chez": 10, "chic": 10, "chiw_ig_lik": 10, "chibbi": 10, "chisel": 10, "chitin_bind_1": 10, "chitin_bind_4": 10, "chitin_synth_1": 10, "chitin_synth_1n": 10, "chitin_synth_2": 10, "chitinasea_n": 10, "chli": 10, "chlampmp_m": 10, "chlam_omp": 10, "chlam_omp3": 10, "chlam_omp6": 10, "chlam_pmp": 10, "chlam_vir": 10, "chlamy_scaf": 10, "chlor_dismutas": 10, "chloroa_b": 10, "chlorophyllas": 10, "chlorophyllase2": 10, "chloroplast_duf": 10, "chlorosome_csmc": 10, "chol_subst": 10, "cholecysa": 10, "rec_n": 10, "choline_bind_1": 10, "choline_bind_2": 10, "choline_bind_3": 10, "choline_kin_n": 10, "choline_kinas": 10, "choline_sulf_c": 10, "3fbfa6": 10, "choline_transpo": 10, "chon_sulph_att": 10, "chondroitinas_b": 10, "chor_lyas": 10, "chordopox_a13l": 10, "chordopox_a33r": 10, "chordopox_g3": 10, "chorein_n": 10, "chorion_1": 10, "chorion_2": 10, "chorion_3": 10, "chorion_s16": 10, "chorismate_bind": 10, "chorismate_synt": 10, "chpa": 10, "chpxy": 10, "bf5a3f": 10, "chrb_n": 10, "chromadorea_alt": 10, "chromate_transp": 10, "chrome_resist": 10, "chromo": 10, "chromo_2": 10, "chromo_shadow": 10, "chromosome_seg": 10, "chs7": 10, "chux_hutx": 10, "churchil": 10, "cipc": 10, "ciart": 10, "cina": 10, "cina_kh": 10, "cir_bir_yir": 10, "cir_n": 10, "citf": 10, "citg": 10, "citmh": 10, "citmhs_2": 10, "citt": 10, "citx": 10, "citrate_bind": 10, "citrate_ly_lig": 10, "citrate_synt": 10, "class_iiisign": 10, "clat_adaptor_": 10, "clathrin": 10, "clathrin_h_link": 10, "clathrin_bdg": 10, "clathrin_lg_ch": 10, "clathrin_propel": 10, "claudin_2": 10, "claudin_3": 10, "clavanin": 10, "clc": 10, "cleaved_adhesin": 10, "clenterotox": 10, "cloacin": 10, "cloacin_immun": 10, "closter_coat": 10, "clostridium_p47": 10, "clp1": 10, "clpb_d2": 10, "clp": 10, "clp_n": 10, "clr2": 10, "clr2_transil": 10, "clr5": 10, "cluap1": 10, "clusterin": 10, "cm_res_lead": 10, "cmc1": 10, "cmci": 10, "cmla_n": 10, "cmr2_n": 10, "cmr7a": 10, "cmyb_c": 10, "cna_b": 10, "cnd1": 10, "cnd1_n": 10, "cnd2": 10, "cnd3": 10, "cnl2_nkp2": 10, "cnn_1n": 10, "cnry": 10, "coa_bind": 10, "coa_binding_2": 10, "coa_binding_3": 10, "coa_tran": 10, "coa_transf_3": 10, "co_at_n": 10, "coa1": 10, "coa3_cc": 10, "coae": 10, "coagulas": 10, "coat_f": 10, "coat_x": 10, "coatamer_beta_c": 10, "coatomer_": 10, "coatomer_wdad": 10, "coatomer_b_cpla": 10, "coatomer_g_cpla": 10, "coba_cobo_btur": 10, "cobd_cbib": 10, "cobn": 10, "mg_chel": 10, "cob": 10, "cobs_n": 10, "cobt": 10, "cobt_c": 10, "cobu": 10, "cobw_c": 10, "cob_adeno_tran": 10, "cobalamin_bind": 10, "cobl": 10, "codi": 10, "codanin": 10, "cofc": 10, "cofd": 10, "cofh_c": 10, "cofac_haem_bdg": 10, "cofilin_adf": 10, "cohesin": 10, "cohesin_heat": 10, "cohesin_load": 10, "coia": 10, "coil": 10, "coilin_n": 10, "colg_sub": 10, "col_cuticle_n": 10, "coleoptericin": 10, "colicin": 10, "dnase": 10, "colicin_d": 10, "colicin_e5": 10, "colicin_ia": 10, "colicin_m": 10, "colicin_pyocin": 10, "colicin_v": 10, "colicin_im": 10, "colicin_immun": 10, "colipas": 10, "colipase_c": 10, "collagen": 10, "collagen_bind": 10, "collagen_bind_2": 10, "collagen_mid": 10, "collagen_trim": 10, "collar": 10, "collectrin": 10, "coma": 10, "comc": 10, "comfb": 10, "comgf": 10, "comgg": 10, "comj": 10, "comk": 10, "comp_du": 10, "comr_tpr": 10, "comx": 10, "comz": 10, "com_ylbf": 10, "comm": 10, "compinhib_scin": 10, "compet": 10, "complex1_30kda": 10, "complex1_49kda": 10, "complex1_51k": 10, "complex1_lyr": 10, "complex1_lyr_1": 10, "complex1_lyr_2": 10, "con": 10, "condens": 10, "condensin2nsmc": 10, "connexin": 10, "connexin40_c": 10, "connexin43": 10, "connexin50": 10, "conotoxin": 10, "cons_hypoth698": 10, "cons_hypoth95": 10, "consortin_c": 10, "cooc_c": 10, "coot": 10, "copb": 10, "copc": 10, "copd": 10, "copg_antitoxin": 10, "copk": 10, "copin": 10, "copper": 10, "fist": 10, "coprogen_oxida": 10, "coq4": 10, "cor1": 10, "cora": 10, "corc_hlyc": 10, "corazonin": 10, "cornichon": 10, "cornifin": 10, "cortbp2": 10, "cortex": 10, "i_coil": 10, "cortexin": 10, "costar": 10, "cote": 10, "coth": 10, "cotja": 10, "cotjb": 10, "couple_hipa": 10, "cown": 10, "cox20": 10, "coxiia": 10, "cpg_bind_c": 10, "cpxc": 10, "cpcd": 10, "cpe": 10, "cpet": 10, "cpn10": 10, "cpn60_tcp1": 10, "cppa_c": 10, "cppa_n": 10, "cpsb_capc": 10, "cpta_toxin": 10, "cpxa_peri": 10, "crea": 10, "cred": 10, "creatinase_n": 10, "creatinase_n_2": 10, "creatininas": 10, "creb_bind": 10, "cren7": 10, "crescentin": 10, "crga": 10, "crinkler": 10, "cript": 10, "crisp": 10, "crl": 10, "cro": 10, "croc_4": 10, "crp": 10, "crr6": 10, "crtc": 10, "crto": 10, "crust_neuro_h": 10, "crust_neurohorm": 10, "cry1ac_d5": 10, "crybp1": 10, "cryptochrome_c": 10, "crystal": 10, "crystall_2": 10, "crystall_3": 10, "crystall_4": 10, "crystallin": 10, "csa1": 10, "csbd": 10, "csc2": 10, "csd3_n": 10, "csd3_n2": 10, "cse1": 10, "csga": 10, "csge": 10, "csgf": 10, "csgg": 10, "csha_nr2": 10, "csha_repeat": 10, "csid": 10, "csiv": 10, "csm1": 10, "csm1_b": 10, "csm1_n": 10, "csm2_iii": 10, "csm4_c": 10, "csos2_m": 10, "csosca": 10, "cspb_prodomain": 10, "csra": 10, "csta": 10, "csta_5tm": 10, "ctip_n": 10, "ctag_cox11": 10, "ctf8": 10, "cthe_2159": 10, "ctndot_traj": 10, "ctr": 10, "ctsr": 10, "ctsr_c": 10, "ctta_n": 10, "cu": 10, "binding_mop": 10, "oxidas": 10, "oxidase_2": 10, "oxidase_3": 10, "oxidase_4": 10, "cu2_monoox_c": 10, "cu2_monooxygen": 10, "cu_amine_oxid": 10, "cu_amine_oxidn1": 10, "cu_amine_oxidn2": 10, "cu_amine_oxidn3": 10, "cu_bind_cora": 10, "cu_bind_lik": 10, "cucumo_coat": 10, "cucumopine_c": 10, "cue1_u7br": 10, "cul7": 10, "cullin": 10, "cullin_nedd8": 10, "cullin_bind": 10, "cupin_1": 10, "cupin_2": 10, "cupin_3": 10, "cupin_5": 10, "cupin_6": 10, "cupin_7": 10, "cupin_8": 10, "cupredoxin_1": 10, "curlin_rpt": 10, "cusb_dom_1": 10, "cusf_ec": 10, "cut12": 10, "cut8": 10, "cuta1": 10, "cutc": 10, "cuticle_1": 10, "cuticle_3": 10, "cuticle_4": 10, "cutinas": 10, "cvfb_wh": 10, "cwfj_c_1": 10, "cwfj_c_2": 10, "cwf_cwc_15": 10, "cwsa": 10, "cxc1": 10, "cxc2": 10, "cxc3": 10, "cxc4": 10, "cxc5": 10, "cxc6": 10, "cxc7": 10, "cxxcxxcc": 10, "cyrpa": 10, "cyanate_lyas": 10, "cyanophycin_syn": 10, "cyb": 10, "cybc1_ero": 10, "cyc": 10, "maltodext_c": 10, "maltodext_n": 10, "cyclas": 10, "cyclase_polyket": 10, "cyclin": 10, "cyclin_c": 10, "cyclin_c_2": 10, "cyclin_d1_bind": 10, "cyclin_n": 10, "cyclin_n2": 10, "cyclophil_lik": 10, "cyclophil_like2": 10, "cyclotid": 10, "cyd_oper_ybg": 10, "cylicin_n": 10, "cyma": 10, "cypi": 10, "cysa_c_termin": 10, "cysg_dimeris": 10, "cys_met_meta_pp": 10, "cys_box": 10, "cys_knot": 10, "cys_rich_cpcc": 10, "cys_rich_cpxg": 10, "cys_rich_cwc": 10, "cys_rich_fgfr": 10, "cys_rich_ktr": 10, "cys_rich_vlp": 10, "cystatin": 10, "cyt_b": 10, "c1_8": 10, "cyt_bd_oxida_i": 10, "cyt_bd_oxida_ii": 10, "cyt_c_ox_iv": 10, "cytadhesin_p30": 10, "cytidylate_kin": 10, "cytidylate_kin2": 10, "cytoc_rc": 10, "cyto_heme_lyas": 10, "cytochromb561_n": 10, "cytochrom_b558a": 10, "cytochrom_b559": 10, "cytochrom_b559a": 10, "cytochrom_b561": 10, "cytochrom_b562": 10, "cytochrom_b_c": 10, "cytochrom_b_n_2": 10, "cytochrom_c": 10, "cytochrom_c1": 10, "cytochrom_c550": 10, "cytochrom_c552": 10, "cytochrom_ciii": 10, "cytochrom_c_2": 10, "cytochrom_c_asm": 10, "cytochrom_d1": 10, "cytochrom_nnt": 10, "cytochrom_c3_2": 10, "cytochrom": 10, "c551": 10, "cytochrome_b": 10, "cytochrome_c554": 10, "cytochrome_c7": 10, "cytochrome_cbb3": 10, "cytochrome_p460": 10, "cytochrome_cb": 10, "3fbf67": 10, "cytokin": 10, "cytokin_check_n": 10, "cytomega_trl10": 10, "cytotox": 10, "czce": 10, "glu_cyclas": 10, "ser_dehydrat": 10, "d123": 10, "d27": 10, "d5_n": 10, "da1": 10, "daad": 10, "daap1": 10, "dac": 10, "dacz_n": 10, "dad": 10, "dag1": 10, "dagat": 10, "dagk_acc": 10, "dagk_cat": 10, "dagk_prokar": 10, "dag_kinase_n": 10, "dahl": 10, "dahp_snth_fxd": 10, "dahp_synth_1": 10, "dahp_synth_2": 10, "dalr_1": 10, "dalr_2": 10, "dan": 10, "dao": 10, "daoa": 10, "dao_c": 10, "dap": 10, "dap10": 10, "dap3": 10, "dapdh_c": 10, "dapg_hydrolas": 10, "dap_b": 10, "dap_dh_c": 10, "dap_epimeras": 10, "darpp": 10, "32": 10, "dash_ask1": 10, "dash_dad1": 10, "dash_dad2": 10, "dash_dad3": 10, "dash_dad4": 10, "dash_dam1": 10, "dash_duo1": 10, "dash_hsk3": 10, "dash_spc19": 10, "dash_spc34": 10, "dazap2": 10, "db": 10, "dbb": 10, "dbc1": 10, "dbd_hth": 10, "dbd_tnp_herm": 10, "dbd_tnp_mut": 10, "dbino": 10, "dbi_prt": 10, "dbp": 10, "dbp10ct": 10, "dbr1": 10, "db_jbp1": 10, "dca16": 10, "dcaf15_wd40": 10, "dcaf17": 10, "dcb": 10, "dcc1": 10, "dcd": 10, "dcp1": 10, "dcp2": 10, "dcr": 10, "dcx": 10, "dc_stamp": 10, "dda1": 10, "ddah_eukar": 10, "dddd": 10, "dde_1": 10, "dde_2": 10, "dde_3": 10, "dde_5": 10, "dde_tnp_1": 10, "dde_tnp_1_2": 10, "dde_tnp_1_3": 10, "dde_tnp_1_4": 10, "dde_tnp_1_5": 10, "dde_tnp_1_6": 10, "dde_tnp_1_7": 10, "dde_tnp_1_assoc": 10, "dde_tnp_2": 10, "dde_tnp_4": 10, "dde_tnp_is1": 10, "dde_tnp_is1595": 10, "dde_tnp_is240": 10, "dde_tnp_is66": 10, "dde_tnp_is66_c": 10, "dde_tnp_isaz013": 10, "dde_tnp_isl3": 10, "dde_tnp_tn3": 10, "ddhd": 10, "ddost_48kd": 10, "ddr": 10, "ddrgk": 10, "ddr_swivel": 10, "ddt": 10, "dd_k": 10, "dead": 10, "dead_2": 10, "dead_assoc": 10, "dec": 10, "1_n": 10, "dec1": 10, "ded": 10, "dedd_tnp_is110": 10, "defb136": 10, "dek_c": 10, "della": 10, "denn": 10, "dennd11": 10, "dep": 10, "depdc5_ctd": 10, "depp": 10, "der1": 10, "derm": 10, "dff": 10, "dff40": 10, "dfp": 10, "dfrp_c": 10, "dgc": 10, "dgcr6": 10, "dgf": 10, "1_4": 10, "1_5": 10, "dgok": 10, "dhbp_synthas": 10, "dhc": 10, "dhc_n1": 10, "dhc_n2": 10, "dhdp": 10, "dhfr_1": 10, "dhfr_2": 10, "dhh": 10, "dhha1": 10, "dhha2": 10, "dhhc": 10, "dhhw": 10, "dhna": 10, "dhodb_f": 10, "s_bind": 10, "dhor": 10, "dho_dh": 10, "dhoas": 10, "dhq": 10, "dhq_synthas": 10, "dhr": 10, "2_lobe_a": 10, "2_lobe_b": 10, "2_lobe_c": 10, "dhquinase_i": 10, "dhquinase_ii": 10, "die2_alg10": 10, "dil": 10, "dim": 10, "dim1": 10, "dimco_n": 10, "diox_n": 10, "dipsi": 10, "dirp": 10, "dit1_pvca": 10, "dix": 10, "dj": 10, "1_pfpi": 10, "djc28_cd": 10, "dkcld": 10, "dknyi": 10, "dleu7": 10, "dlh": 10, "dlic": 10, "dll_n": 10, "dlp_helic": 10, "dm": 10, "dm10_dom": 10, "dm13": 10, "dm4_12": 10, "dma": 10, "dmap1": 10, "dmap1_lik": 10, "dmap_bind": 10, "dmp1": 10, "dmp12": 10, "dmpk_coil": 10, "dmrl_synthas": 10, "dmrt": 10, "dmrt5_dmb": 10, "dmsp_lyas": 10, "dmtf1_n": 10, "dmt_6": 10, "dmt_ydcz": 10, "pkcs_n": 10, "dnaj_rel": 10, "dnapkcs_cc1": 10, "dnapkcs_cc3": 10, "dnapkcs_cc5": 10, "dna_iii_psi": 10, "dna_ppf": 10, "dna_packaging_2": 10, "dna_rnapol_7kd": 10, "dna_alkyl": 10, "dna_binding_1": 10, "dna_binding_2": 10, "dna_circ_n": 10, "dna_gyrasea_c": 10, "dna_gyraseb": 10, "dna_gyraseb_c": 10, "dna_ligase_a_c": 10, "dna_ligase_a_m": 10, "dna_ligase_a_n": 10, "dna_ligase_c": 10, "dna_ligase_iv": 10, "dna_ligase_ob": 10, "dna_ligase_ob_2": 10, "dna_ligase_zbd": 10, "dna_ligase_aden": 10, "dna_meth_n": 10, "dna_methylas": 10, "dna_mis_repair": 10, "dna_pack_n": 10, "dna_photolyas": 10, "dna_pol3_a_ni": 10, "dna_pol3_a_nii": 10, "dna_pol3_alpha": 10, "dna_pol3_beta": 10, "dna_pol3_beta_2": 10, "dna_pol3_beta_3": 10, "dna_pol3_chi": 10, "dna_pol3_delt_c": 10, "dna_pol3_delta": 10, "dna_pol3_delta2": 10, "dna_pol3_fing": 10, "dna_pol3_gamma3": 10, "dna_pol3_tau_4": 10, "dna_pol3_tau_5": 10, "dna_pol3_theta": 10, "dna_pol_a": 10, "dna_pol_a_exo1": 10, "dna_pol_a_exon": 10, "dna_pol_b": 10, "dna_pol_b_2": 10, "dna_pol_b_n": 10, "dna_pol_b_exo1": 10, "dna_pol_b_exo2": 10, "dna_pol_b_palm": 10, "dna_pol_b_thumb": 10, "dna_pol_d_n": 10, "dna_pol_e_b": 10, "dna_pol_p_exo": 10, "dna_pol_alpha_n": 10, "dna_pol_delta_4": 10, "dna_pol_lambd_f": 10, "dna_pol_phi": 10, "dna_primase_": 10, "dna_primase_lrg": 10, "dna_processg_a": 10, "dna_repr_rex1b": 10, "dna_topoisoiv": 10, "dnapol3": 10, "delta_c": 10, "dnapol_exo": 10, "dnd1_dsrm": 10, "dner_c": 10, "dnmt1": 10, "rfd": 10, "dnttip1_dim": 10, "dnase_ii": 10, "dnase_nuca_nucb": 10, "do": [10, 14, 15, 17], "gtpase1": 10, "gtpase2": 10, "dock": 10, "dock_c": 10, "d_n": 10, "dock_n": 10, "dog1": 10, "domon": 10, "dopa_dioxygen": 10, "dor": 10, "dot1": 10, "dp": 10, "ep": 10, "dpbb_1": 10, "dpcd": 10, "dpf1": 10, "3_n": 10, "dpm2": 10, "dpm3": 10, "dppiv_n": 10, "dppiv_rep": 10, "dprp": 10, "dr2241": 10, "drat": 10, "dre2_n": 10, "drepp": 10, "drev": 10, "drhyd": 10, "drim": 10, "drmbl": 10, "drtgg": 10, "dry_eeri": 10, "dsba": 10, "dshct": 10, "dsl": 10, "dspc": 10, "dspn": 10, "dsrb": 10, "dss1_sem1": 10, "dsx_dimer": 10, "dtc": 10, "dthct": 10, "dtw": 10, "duf1002": 10, "duf1003": 10, "duf1005": 10, "duf1007": 10, "duf1010": 10, "duf1011": 10, "duf1015": 10, "duf1016_n": 10, "duf1024": 10, "duf1028": 10, "duf1031": 10, "duf1033": 10, "duf1036": 10, "duf1039": 10, "duf1040": 10, "duf1043": 10, "duf1045": 10, "duf1048": 10, "duf1054": 10, "duf1056": 10, "duf1057": 10, "duf1059": 10, "duf1062": 10, "duf1064": 10, "duf1067": 10, "duf1068": 10, "duf1071": 10, "duf1073": 10, "duf1075": 10, "duf1077": 10, "duf1079": 10, "duf1081": 10, "duf1087": 10, "duf1088": 10, "duf1090": 10, "duf1091": 10, "duf1093": 10, "duf1096": 10, "duf1097": 10, "duf11": 10, "duf1102": 10, "duf1103": 10, "duf1104": 10, "duf1106": 10, "duf1107": 10, "duf1108": 10, "duf1110": 10, "duf1115": 10, "duf1116": 10, "duf1117": 10, "duf1118": 10, "duf1120": 10, "duf1122": 10, "duf1125": 10, "duf1127": 10, "duf1128": 10, "duf1129": 10, "duf1131": 10, "duf1132": 10, "duf1133": 10, "duf1137": 10, "duf1138": 10, "duf1139": 10, "duf1140": 10, "duf1143": 10, "duf1145": 10, "duf1146": 10, "duf1149": 10, "duf1150": 10, "duf1151": 10, "duf1152": 10, "duf1153": 10, "duf1154": 10, "duf1156": 10, "duf1157": 10, "duf1158": 10, "duf116": 10, "duf1161": 10, "duf1163": 10, "duf1168": 10, "duf1173": 10, "duf1174": 10, "duf1175": 10, "duf1176": 10, "duf1177": 10, "duf1178": 10, "duf1179": 10, "duf1180": 10, "duf1181": 10, "duf1182": 10, "duf1184": 10, "duf1186": 10, "duf1187": 10, "duf1189": 10, "duf1190": 10, "duf1191": 10, "duf1192": 10, "duf1194": 10, "duf1195": 10, "duf1198": 10, "duf1202": 10, "duf1203": 10, "duf1204": 10, "duf1205": 10, "duf1206": 10, "duf1207": 10, "duf1213": 10, "duf1214": 10, "duf1216": 10, "duf1217": 10, "duf1218": 10, "duf1221": 10, "duf1223": 10, "duf1229": 10, "duf123": 10, "duf1232": 10, "duf1233": 10, "duf1235": 10, "duf1236": 10, "duf1240": 10, "duf1241": 10, "duf1242": 10, "duf1244": 10, "duf1246": 10, "duf1248": 10, "duf1249": 10, "duf1254": 10, "duf1256": 10, "duf1257": 10, "duf1258": 10, "duf1262": 10, "duf1263": 10, "duf1264": 10, "duf1265": 10, "duf1266": 10, "duf1269": 10, "duf1270": 10, "duf1272": 10, "duf1275": 10, "duf1280": 10, "duf1281": 10, "duf1281_c": 10, "duf1283": 10, "duf1284": 10, "duf1285": 10, "duf1286": 10, "duf1287": 10, "duf1289": 10, "duf1290": 10, "duf1292": 10, "duf1293": 10, "duf1294": 10, "duf1295": 10, "duf1297": 10, "duf1299": 10, "duf1302": 10, "duf1304": 10, "duf1307": 10, "duf1308": 10, "duf131": 10, "duf1310": 10, "duf1315": 10, "duf1317": 10, "duf1318": 10, "duf1319": 10, "duf1322": 10, "duf1323": 10, "duf1325": 10, "duf1326": 10, "duf1327": 10, "duf1328": 10, "duf1329": 10, "duf1330": 10, "duf1338": 10, "duf134": 10, "duf1343": 10, "duf1344": 10, "duf1345": 10, "duf1347": 10, "duf1348": 10, "duf1349": 10, "duf1350": 10, "duf1351": 10, "duf1353": 10, "duf1356": 10, "duf1357": 10, "duf1358": 10, "duf1360": 10, "duf1361": 10, "duf1365": 10, "duf1366": 10, "duf1367": 10, "duf1368": 10, "duf1372": 10, "duf1373": 10, "duf1374": 10, "duf1375": 10, "duf1376": 10, "duf1378": 10, "duf1380": 10, "duf1381": 10, "duf1382": 10, "duf1385": 10, "duf1387": 10, "duf1388": 10, "duf1389": 10, "duf1391": 10, "duf1392": 10, "duf1397": 10, "duf1398": 10, "duf1400": 10, "duf1402": 10, "duf1403": 10, "duf1404": 10, "duf1405": 10, "duf1406": 10, "duf1409": 10, "duf1410": 10, "duf1411": 10, "duf1412": 10, "duf1413": 10, "duf1414": 10, "duf1415": 10, "duf1416": 10, "duf1418": 10, "duf1419": 10, "duf1420": 10, "duf1421": 10, "duf1422": 10, "duf1424": 10, "duf1425": 10, "duf1427": 10, "duf1428": 10, "duf1430": 10, "duf1431": 10, "duf1433": 10, "duf1435": 10, "duf1438": 10, "duf1439": 10, "duf1440": 10, "duf1441": 10, "duf1442": 10, "duf1444": 10, "duf1449": 10, "duf1450": 10, "duf1451": 10, "duf1453": 10, "duf1454": 10, "duf1455": 10, "duf1456": 10, "duf1459": 10, "duf1460": 10, "duf1461": 10, "duf1462": 10, "duf1463": 10, "duf1464": 10, "duf1465": 10, "duf1467": 10, "duf1473": 10, "duf1474": 10, "duf1475": 10, "duf1476": 10, "duf1479": 10, "duf1480": 10, "duf1481": 10, "duf1482": 10, "duf1484": 10, "duf1485": 10, "duf1487": 10, "duf1488": 10, "duf1489": 10, "duf1490": 10, "duf1491": 10, "duf1492": 10, "duf1493": 10, "duf1494": 10, "duf1495": 10, "duf1496": 10, "duf1497": 10, "duf1499": 10, "duf1501": 10, "duf1502": 10, "duf1505": 10, "duf1506": 10, "duf1507": 10, "duf1508": 10, "duf150_c": 10, "duf1510": 10, "duf1512": 10, "duf1513": 10, "duf1514": 10, "duf1515": 10, "duf1516": 10, "duf1517": 10, "duf1518": 10, "duf1521": 10, "duf1522": 10, "duf1523": 10, "duf1524": 10, "duf1525": 10, "duf1529": 10, "duf1533": 10, "duf1538": 10, "duf1539": 10, "duf1540": 10, "duf1541": 10, "duf1542": 10, "duf1543": 10, "duf1547": 10, "duf1548": 10, "duf155": 10, "duf1554": 10, "duf1556": 10, "duf1561": 10, "duf1563": 10, "duf1564": 10, "duf1565": 10, "duf1566": 10, "duf1569": 10, "duf1570": 10, "duf1571": 10, "duf1572": 10, "duf1573": 10, "duf1574": 10, "duf1576": 10, "duf1577": 10, "duf1579": 10, "duf1580": 10, "duf1581": 10, "duf1582": 10, "duf1583": 10, "duf1583_n": 10, "duf1589": 10, "duf1593": 10, "duf1598": 10, "duf1599": 10, "duf16": 10, "duf1600": 10, "duf1601": 10, "duf1604": 10, "duf1609": 10, "duf1611": 10, "duf1611_n": 10, "duf1612": 10, "duf1614": 10, "duf1615": 10, "duf1616": 10, "duf1617": 10, "duf1618": 10, "duf1622": 10, "duf1627": 10, "duf1629": 10, "duf1631": 10, "duf1633": 10, "duf1634": 10, "duf1635": 10, "duf1636": 10, "duf1638": 10, "duf1639": 10, "duf1641": 10, "duf1642": 10, "duf1643": 10, "duf1644": 10, "duf1645": 10, "duf1646": 10, "duf1647": 10, "duf1648": 10, "duf1651": 10, "duf1652": 10, "duf1653": 10, "duf1654": 10, "duf1655": 10, "duf1656": 10, "duf1657": 10, "duf1659": 10, "duf166": 10, "duf1660": 10, "duf1661": 10, "duf1663": 10, "duf1664": 10, "duf1666": 10, "duf1667": 10, "duf1668": 10, "duf167": 10, "duf1670": 10, "duf1672": 10, "duf1673": 10, "duf1674": 10, "duf1676": 10, "duf1677": 10, "duf1678": 10, "duf1679": 10, "duf1681": 10, "duf1684": 10, "duf1685": 10, "duf1686": 10, "duf1687": 10, "duf1688": 10, "duf1689": 10, "duf169": 10, "duf1690": 10, "duf1694": 10, "duf1697": 10, "duf1699": 10, "duf1700": 10, "duf1702": 10, "duf1704": 10, "duf1706": 10, "duf1707": 10, "duf1719": 10, "duf1720": 10, "duf1722": 10, "duf1725": 10, "duf1729": 10, "duf1731": 10, "duf1732": 10, "duf1735": 10, "duf1737": 10, "duf1743": 10, "duf1744": 10, "duf1746": 10, "duf1748": 10, "duf1749": 10, "duf1751": 10, "duf1752": 10, "duf1757": 10, "duf1758": 10, "duf1759": 10, "duf1761": 10, "duf1764": 10, "duf1765": 10, "duf1769": 10, "duf1771": 10, "duf1773": 10, "duf1774": 10, "duf1775": 10, "duf1776": 10, "duf1778": 10, "duf1779": 10, "duf1780": 10, "duf1786": 10, "duf179": 10, "duf1793": 10, "duf1796": 10, "duf1797": 10, "duf1798": 10, "duf1799": 10, "duf1800": 10, "duf1801": 10, "duf1802": 10, "duf1803": 10, "duf1804": 10, "duf1805": 10, "duf1806": 10, "duf1810": 10, "duf1811": 10, "duf1815": 10, "duf1816": 10, "duf1818": 10, "duf1820": 10, "duf1822": 10, "duf1823": 10, "duf1824": 10, "duf1825": 10, "duf1826": 10, "duf1827": 10, "duf1828": 10, "duf1829": 10, "duf1830": 10, "duf1831": 10, "duf1833": 10, "duf1835": 10, "duf1836": 10, "duf1838": 10, "duf1839": 10, "duf1840": 10, "duf1841": 10, "duf1842": 10, "duf1843": 10, "duf1844": 10, "duf1846": 10, "duf1847": 10, "duf1848": 10, "duf1850": 10, "duf1851": 10, "duf1853": 10, "duf1854": 10, "duf1858": 10, "duf1861": 10, "duf1863": 10, "duf1864": 10, "duf1866": 10, "duf1869": 10, "duf1870": 10, "duf1871": 10, "duf1877": 10, "duf1878": 10, "duf188": 10, "duf1882": 10, "duf1883": 10, "duf1884": 10, "duf1885": 10, "duf1887": 10, "duf1889": 10, "duf1890": 10, "duf1892": 10, "duf1894": 10, "duf1896": 10, "duf1897": 10, "duf1899": 10, "duf19": 10, "duf190": 10, "duf1902": 10, "duf1904": 10, "duf1905": 10, "duf1906": 10, "duf1907": 10, "duf1908": 10, "duf1910": 10, "duf1911": 10, "duf1912": 10, "duf1917": 10, "duf1918": 10, "duf1919": 10, "duf192": 10, "duf1922": 10, "duf1923": 10, "duf1924": 10, "duf1930": 10, "duf1931": 10, "duf1932": 10, "duf1934": 10, "duf1935": 10, "duf1936": 10, "duf1937": 10, "duf1940": 10, "duf1942": 10, "duf1947": 10, "duf1948": 10, "duf1949": 10, "duf1951": 10, "duf1952": 10, "duf1953": 10, "duf1955": 10, "duf1958": 10, "duf1959": 10, "duf1961": 10, "duf1963": 10, "duf1964": 10, "duf1965": 10, "duf1967": 10, "duf1968": 10, "duf1970": 10, "duf1971": 10, "duf1972": 10, "duf1977": 10, "duf1978": 10, "duf1979": 10, "duf1980": 10, "duf1981": 10, "duf1983": 10, "duf1985": 10, "duf1986": 10, "duf1989": 10, "duf1990": 10, "duf1993": 10, "duf1995": 10, "duf1996": 10, "duf1997": 10, "duf1999": 10, "duf2000": 10, "duf2001": 10, "duf2002": 10, "duf2004": 10, "duf2007": 10, "duf2009": 10, "duf2011": 10, "duf2014": 10, "duf2015": 10, "duf2016": 10, "duf2017": 10, "duf2018": 10, "duf2019": 10, "duf202": 10, "duf2020": 10, "duf2023": 10, "duf2024": 10, "duf2025": 10, "duf2026": 10, "duf2027": 10, "duf2028": 10, "duf2031": 10, "duf2034": 10, "duf2039": 10, "duf2043": 10, "duf2045": 10, "duf2046": 10, "duf2053": 10, "duf2057": 10, "duf2058": 10, "duf2059": 10, "duf2061": 10, "duf2062": 10, "duf2063": 10, "duf2064": 10, "duf2065": 10, "duf2066": 10, "duf2067": 10, "duf2069": 10, "duf2070": 10, "duf2071": 10, "duf2072": 10, "duf2073": 10, "duf2075": 10, "duf2076": 10, "duf2079": 10, "duf2080": 10, "duf2085": 10, "duf2087": 10, "duf2089": 10, "duf2090": 10, "duf2092": 10, "duf2093": 10, "duf2095": 10, "duf2096": 10, "duf2097": 10, "duf2098": 10, "duf2099": 10, "duf2100": 10, "duf2101": 10, "duf2102": 10, "duf2103": 10, "duf2105": 10, "duf2106": 10, "duf2107": 10, "duf2108": 10, "duf2109": 10, "duf211": 10, "duf2110": 10, "duf2111": 10, "duf2112": 10, "duf2113": 10, "duf2114": 10, "duf2115": 10, "duf2116": 10, "duf2117": 10, "duf2118": 10, "duf2119": 10, "duf212": 10, "duf2120": 10, "duf2121": 10, "duf2122": 10, "duf2124": 10, "duf2125": 10, "duf2126": 10, "duf2127": 10, "duf2129": 10, "duf2130": 10, "duf2135": 10, "duf2138": 10, "duf2139": 10, "duf2140": 10, "duf2141": 10, "duf2142": 10, "duf2145": 10, "duf2147": 10, "duf2148": 10, "duf2149": 10, "duf2150": 10, "duf2152": 10, "duf2153": 10, "duf2154": 10, "duf2155": 10, "duf2157": 10, "duf2158": 10, "duf2160": 10, "duf2161": 10, "duf2162": 10, "duf2163": 10, "duf2164": 10, "duf2165": 10, "duf2167": 10, "duf2169": 10, "duf2170": 10, "duf2171": 10, "duf2172": 10, "duf2173": 10, "duf2175": 10, "duf2177": 10, "duf2178": 10, "duf2179": 10, "duf218": 10, "duf2180": 10, "duf2181": 10, "duf2182": 10, "duf2184": 10, "duf2185": 10, "duf2187": 10, "duf2188": 10, "duf2189": 10, "duf2190": 10, "duf2192": 10, "duf2193": 10, "duf2194": 10, "duf2195": 10, "duf2196": 10, "duf2197": 10, "duf2198": 10, "duf2199": 10, "duf22": 10, "duf220": 10, "duf2200": 10, "duf2201": 10, "duf2201_n": 10, "duf2202": 10, "duf2203": 10, "duf2204": 10, "duf2205": 10, "duf2206": 10, "duf2207": 10, "duf2208": 10, "duf2209": 10, "duf2213": 10, "duf2214": 10, "duf2218": 10, "duf2219": 10, "duf222": 10, "duf2220": 10, "duf2225": 10, "duf2226": 10, "duf2227": 10, "duf2228": 10, "duf2229": 10, "duf223": 10, "duf2231": 10, "duf2232": 10, "duf2235": 10, "duf2237": 10, "duf2238": 10, "duf2239": 10, "duf2240": 10, "duf2242": 10, "duf2243": 10, "duf2244": 10, "duf2247": 10, "duf2249": 10, "duf2250": 10, "duf2251": 10, "duf2252": 10, "duf2254": 10, "duf2255": 10, "duf2256": 10, "duf2258": 10, "duf2259": 10, "duf226": 10, "duf2262": 10, "duf2263": 10, "duf2264": 10, "duf2267": 10, "duf2268": 10, "duf2269": 10, "duf2270": 10, "duf2271": 10, "duf2272": 10, "duf2273": 10, "duf2274": 10, "duf2275": 10, "duf2277": 10, "duf2278": 10, "duf2279": 10, "duf228": 10, "duf2280": 10, "duf2281": 10, "duf2282": 10, "duf2283": 10, "duf2284": 10, "duf2285": 10, "duf2286": 10, "duf2288": 10, "duf229": 10, "duf2290": 10, "duf2291": 10, "duf2292": 10, "duf2293": 10, "duf2298": 10, "duf2299": 10, "duf2300": 10, "duf2301": 10, "duf2303": 10, "duf2304": 10, "duf2306": 10, "duf2310": 10, "duf2312": 10, "duf2314": 10, "duf2316": 10, "duf2321": 10, "duf2322": 10, "duf2325": 10, "duf2326": 10, "duf2330": 10, "duf2332": 10, "duf2333": 10, "duf2334": 10, "duf2335": 10, "duf2336": 10, "duf2339": 10, "duf234": 10, "duf2340": 10, "duf2341": 10, "duf2344": 10, "duf2345": 10, "duf2357": 10, "duf2358": 10, "duf236": 10, "duf2362": 10, "duf2368": 10, "duf237": 10, "duf2370": 10, "duf2371": 10, "duf2374": 10, "duf2375": 10, "duf2378": 10, "duf2379": 10, "duf2380": 10, "duf2381": 10, "duf2382": 10, "duf2383": 10, "duf2385": 10, "duf2387": 10, "duf2388": 10, "duf2389": 10, "duf2390": 10, "duf2391": 10, "duf2393": 10, "duf2396": 10, "duf2397": 10, "duf2398": 10, "duf2399": 10, "duf240": 10, "duf2400": 10, "duf2405": 10, "duf2406": 10, "duf2408": 10, "duf2415": 10, "duf2417": 10, "duf2418": 10, "duf2420": 10, "duf2423": 10, "duf2427": 10, "duf2428": 10, "duf243": 10, "duf2430": 10, "duf2433": 10, "duf2434": 10, "duf2436": 10, "duf2437": 10, "duf2439": 10, "duf244": 10, "duf2441": 10, "duf2442": 10, "duf2443": 10, "duf2448": 10, "duf2451": 10, "duf2452": 10, "duf2456": 10, "duf2457": 10, "duf2458": 10, "duf2459": 10, "duf2460": 10, "duf2461": 10, "duf2462": 10, "duf2463": 10, "duf2464": 10, "duf2465": 10, "duf2469": 10, "duf247": 10, "duf2470": 10, "duf2471": 10, "duf2474": 10, "duf2475": 10, "duf2476": 10, "duf2477": 10, "duf2478": 10, "duf2480": 10, "duf2481": 10, "duf2482": 10, "duf2483": 10, "duf2484": 10, "duf2486": 10, "duf2487": 10, "duf2489": 10, "duf2490": 10, "duf2491": 10, "duf2492": 10, "duf2496": 10, "duf2497": 10, "duf2498": 10, "duf2499": 10, "duf2500": 10, "duf2501": 10, "duf2502": 10, "duf2505": 10, "duf2507": 10, "duf2508": 10, "duf2509": 10, "duf2510": 10, "duf2511": 10, "duf2512": 10, "duf2513": 10, "duf2514": 10, "duf2515": 10, "duf2516": 10, "duf2517": 10, "duf2518": 10, "duf2520": 10, "duf2521": 10, "duf2523": 10, "duf2524": 10, "duf2525": 10, "duf2526": 10, "duf2527": 10, "duf2528": 10, "duf2529": 10, "duf2530": 10, "duf2532": 10, "duf2533": 10, "duf2534": 10, "duf2535": 10, "duf2536": 10, "duf2537": 10, "duf2538": 10, "duf2540": 10, "duf2541": 10, "duf2542": 10, "duf2543": 10, "duf2544": 10, "duf2545": 10, "duf2550": 10, "duf2551": 10, "duf2552": 10, "duf2553": 10, "duf2554": 10, "duf2555": 10, "duf2556": 10, "duf2559": 10, "duf2560": 10, "duf2561": 10, "duf2563": 10, "duf2564": 10, "duf2567": 10, "duf2568": 10, "duf2569": 10, "duf257": 10, "duf2570": 10, "duf2572": 10, "duf2573": 10, "duf2574": 10, "duf2576": 10, "duf2577": 10, "duf2582": 10, "duf2583": 10, "duf2584": 10, "duf2585": 10, "duf2586": 10, "duf2589": 10, "duf2590": 10, "duf2593": 10, "duf2594": 10, "duf2599": 10, "duf2600": 10, "duf2603": 10, "duf2604": 10, "duf2605": 10, "duf2606": 10, "duf2607": 10, "duf2608": 10, "duf261": 10, "duf2610": 10, "duf2612": 10, "duf2613": 10, "duf2614": 10, "duf2615": 10, "duf2617": 10, "duf2619": 10, "duf262": 10, "duf2620": 10, "duf2621": 10, "duf2623": 10, "duf2624": 10, "duf2625": 10, "duf2626": 10, "duf2627": 10, "duf2628": 10, "duf2630": 10, "duf2631": 10, "duf2633": 10, "duf2634": 10, "duf2635": 10, "duf2637": 10, "duf2639": 10, "duf2642": 10, "duf2644": 10, "duf2645": 10, "duf2647": 10, "duf2649": 10, "duf2650": 10, "duf2651": 10, "duf2652": 10, "duf2653": 10, "duf2656": 10, "duf2659": 10, "duf2660": 10, "duf2663": 10, "duf2666": 10, "duf267": 10, "3fbf9b": 10, "duf2670": 10, "duf2671": 10, "duf2672": 10, "duf2673": 10, "duf2674": 10, "duf2678": 10, "duf268": 10, "duf2680": 10, "duf2681": 10, "duf2683": 10, "duf2686": 10, "duf2688": 10, "duf2689": 10, "duf269": 10, "duf2690": 10, "duf2691": 10, "duf2694": 10, "duf2695": 10, "duf2700": 10, "duf2703": 10, "duf2704": 10, "duf2705": 10, "duf2706": 10, "duf2709": 10, "duf2710": 10, "duf2711": 10, "duf2712": 10, "duf2713": 10, "duf2714": 10, "duf2715": 10, "duf2716": 10, "duf272": 10, "duf2721": 10, "duf2722": 10, "duf2723": 10, "duf2726": 10, "duf273": 10, "duf2730": 10, "duf2732": 10, "duf2735": 10, "duf2737": 10, "duf2738": 10, "duf2740": 10, "duf2742": 10, "duf2744": 10, "duf2746": 10, "duf2748": 10, "duf2749": 10, "duf2750": 10, "duf2752": 10, "duf2753": 10, "duf2754": 10, "duf2755": 10, "duf2756": 10, "duf2759": 10, "duf276": 10, "duf2760": 10, "duf2761": 10, "duf2764": 10, "duf2766": 10, "duf2767": 10, "duf2768": 10, "duf2769": 10, "duf2770": 10, "duf2771": 10, "duf2773": 10, "duf2776": 10, "duf2777": 10, "duf2778": 10, "duf2779": 10, "duf2780": 10, "duf2782": 10, "duf2783": 10, "duf2784": 10, "duf2785": 10, "duf2786": 10, "duf2787": 10, "duf2788": 10, "duf2789": 10, "duf2790": 10, "duf2793": 10, "duf2794": 10, "duf2795": 10, "duf2796": 10, "duf2797": 10, "duf2798": 10, "duf2799": 10, "duf2800": 10, "duf2802": 10, "duf2804": 10, "duf2805": 10, "duf2806": 10, "duf2807": 10, "duf2808": 10, "duf2809": 10, "duf281": 10, "duf2810": 10, "duf2811": 10, "duf2812": 10, "duf2813": 10, "duf2815": 10, "duf2817": 10, "duf2818": 10, "duf282": 10, "duf2824": 10, "duf2826": 10, "duf2827": 10, "duf2828": 10, "duf2829": 10, "duf2834": 10, "duf2835": 10, "duf2838": 10, "duf2839": 10, "duf2840": 10, "duf2841": 10, "duf2842": 10, "duf2844": 10, "duf2845": 10, "duf2846": 10, "duf2847": 10, "duf2848": 10, "duf2849": 10, "duf285": 10, "duf2850": 10, "duf2851": 10, "duf2852": 10, "duf2853": 10, "duf2854": 10, "duf2855": 10, "duf2857": 10, "duf2859": 10, "duf2860": 10, "duf2861": 10, "duf2862": 10, "duf2863": 10, "duf2865": 10, "duf2866": 10, "duf2867": 10, "duf2868": 10, "duf287": 10, "duf2871": 10, "duf2875": 10, "duf2877": 10, "duf2878": 10, "duf2880": 10, "duf2884": 10, "duf2887": 10, "duf2889": 10, "duf2891": 10, "duf2892": 10, "duf2894": 10, "duf2895": 10, "duf2897": 10, "duf29": 10, "duf2905": 10, "duf2909": 10, "duf2911": 10, "duf2913": 10, "duf2914": 10, "duf2917": 10, "duf2919": 10, "duf2920": 10, "duf2921": 10, "duf2922": 10, "duf2924": 10, "duf2927": 10, "duf2929": 10, "duf2931": 10, "duf2933": 10, "duf2934": 10, "duf2935": 10, "duf2937": 10, "duf2938": 10, "duf2939": 10, "duf294": 10, "duf2944": 10, "duf2946": 10, "duf2947": 10, "duf2948": 10, "duf2949": 10, "duf294_c": 10, "duf295": 10, "duf2950": 10, "duf2951": 10, "duf2953": 10, "duf2955": 10, "duf2956": 10, "duf2957": 10, "duf2958": 10, "duf2959": 10, "duf2960": 10, "duf2961": 10, "duf2963": 10, "duf2964": 10, "duf2967": 10, "duf2968": 10, "duf2969": 10, "duf2970": 10, "duf2971": 10, "duf2972": 10, "duf2973": 10, "duf2975": 10, "duf2976": 10, "duf2977": 10, "duf2981": 10, "duf2982": 10, "duf2985": 10, "duf2986": 10, "duf2987": 10, "duf2989": 10, "duf2990": 10, "duf2992": 10, "duf2996": 10, "duf2997": 10, "duf2999": 10, "duf3000": 10, "duf3005": 10, "duf3006": 10, "duf3007": 10, "duf3008": 10, "duf3010": 10, "duf3011": 10, "duf3012": 10, "duf3013": 10, "duf3014": 10, "duf3015": 10, "duf3016": 10, "duf3017": 10, "duf3019": 10, "duf302": 10, "duf3020": 10, "duf3021": 10, "duf3022": 10, "duf3023": 10, "duf3024": 10, "duf3025": 10, "duf3027": 10, "duf3029": 10, "duf3034": 10, "duf3035": 10, "duf3037": 10, "duf3038": 10, "duf3039": 10, "duf3040": 10, "duf3042": 10, "duf3043": 10, "duf3046": 10, "duf3047": 10, "duf3048": 10, "duf3048_c": 10, "duf305": 10, "duf3050": 10, "duf3052": 10, "duf3053": 10, "duf3054": 10, "duf3055": 10, "duf3060": 10, "duf3067": 10, "duf3069": 10, "duf3071": 10, "duf3072": 10, "duf3073": 10, "duf3074": 10, "duf3077": 10, "duf3078": 10, "duf3079": 10, "duf308": 10, "duf3080": 10, "duf3081": 10, "duf3082": 10, "duf3083": 10, "duf3084": 10, "duf3085": 10, "duf3086": 10, "duf3087": 10, "duf3088": 10, "duf3089": 10, "duf309": 10, "duf3090": 10, "duf3091": 10, "duf3093": 10, "duf3094": 10, "duf3095": 10, "duf3096": 10, "duf3097": 10, "duf3098": 10, "duf3099": 10, "duf3100": 10, "duf3102": 10, "duf3103": 10, "duf3104": 10, "duf3105": 10, "duf3106": 10, "duf3107": 10, "duf3108": 10, "duf3109": 10, "duf3110": 10, "duf3112": 10, "duf3113": 10, "duf3114": 10, "duf3116": 10, "duf3117": 10, "duf3119": 10, "duf3120": 10, "duf3122": 10, "duf3123": 10, "duf3124": 10, "duf3126": 10, "duf3127": 10, "duf3128": 10, "duf3130": 10, "duf3131": 10, "duf3134": 10, "duf3135": 10, "duf3136": 10, "duf3137": 10, "duf3138": 10, "duf3139": 10, "duf3140": 10, "duf3141": 10, "duf3142": 10, "duf3143": 10, "duf3144": 10, "duf3145": 10, "duf3146": 10, "duf3147": 10, "duf3148": 10, "duf3149": 10, "duf3150": 10, "duf3151": 10, "duf3152": 10, "duf3153": 10, "duf3155": 10, "duf3156": 10, "duf3157": 10, "duf3158": 10, "duf3159": 10, "duf316": 10, "duf3160": 10, "duf3161": 10, "duf3164": 10, "duf3165": 10, "duf3168": 10, "duf3169": 10, "duf3172": 10, "duf3173": 10, "duf3175": 10, "duf3176": 10, "duf3177": 10, "duf3179": 10, "duf3180": 10, "duf3181": 10, "duf3182": 10, "duf3185": 10, "duf3187": 10, "duf3188": 10, "duf3189": 10, "duf3192": 10, "duf3194": 10, "duf3195": 10, "duf3196": 10, "duf3197": 10, "duf3198": 10, "duf3199": 10, "duf3201": 10, "duf3203": 10, "duf3206": 10, "duf3208": 10, "duf3209": 10, "duf321": 10, "duf3211": 10, "duf3212": 10, "duf3213": 10, "duf3215": 10, "duf3216": 10, "duf3217": 10, "duf3218": 10, "duf3219": 10, "duf3220": 10, "duf3221": 10, "duf3222": 10, "duf3223": 10, "duf3224": 10, "duf3225": 10, "duf3226": 10, "duf3228": 10, "duf3231": 10, "duf3232": 10, "duf3234": 10, "duf3237": 10, "duf3238": 10, "duf3239": 10, "duf3240": 10, "duf3242": 10, "duf3243": 10, "duf3244": 10, "duf3245": 10, "duf3246": 10, "duf3247": 10, "duf3248": 10, "duf3251": 10, "duf3253": 10, "duf3255": 10, "duf3256": 10, "duf3258": 10, "duf326": 10, "duf3261": 10, "duf3262": 10, "duf3263": 10, "duf3265": 10, "duf3267": 10, "duf3268": 10, "duf3269": 10, "duf327": 10, "duf3270": 10, "duf3271": 10, "duf3272": 10, "duf3273": 10, "duf3274": 10, "duf3275": 10, "duf3276": 10, "duf3278": 10, "duf3280": 10, "duf3281": 10, "duf3283": 10, "duf3284": 10, "duf3285": 10, "duf3287": 10, "duf3288": 10, "duf3289": 10, "duf3290": 10, "duf3291": 10, "duf3292": 10, "duf3293": 10, "duf3294": 10, "duf3295": 10, "duf3297": 10, "duf3298": 10, "duf3299": 10, "duf3300": 10, "duf3301": 10, "duf3302": 10, "duf3303": 10, "duf3304": 10, "duf3305": 10, "duf3306": 10, "duf3307": 10, "duf3309": 10, "duf3310": 10, "duf3311": 10, "duf3313": 10, "duf3314": 10, "duf3316": 10, "duf3318": 10, "duf3319": 10, "duf3320": 10, "duf3322": 10, "duf3323": 10, "duf3324": 10, "duf3325": 10, "duf3326": 10, "duf333": 10, "duf3330": 10, "duf3331": 10, "duf3332": 10, "duf3333": 10, "duf3334": 10, "duf3335": 10, "duf3336": 10, "duf3337": 10, "duf3339": 10, "duf334": 10, "duf3340": 10, "duf3344": 10, "duf3346": 10, "duf3347": 10, "duf3348": 10, "duf3349": 10, "duf3350": 10, "duf3352": 10, "duf3360": 10, "duf3362": 10, "duf3363": 10, "duf3365": 10, "duf3367": 10, "duf3368": 10, "duf3369": 10, "duf3370": 10, "duf3371": 10, "duf3373": 10, "duf3375": 10, "duf3376": 10, "duf3377": 10, "duf3378": 10, "duf3379": 10, "duf3381": 10, "duf3382": 10, "duf3383": 10, "duf3384": 10, "duf3385": 10, "duf3386": 10, "duf3387": 10, "duf3388": 10, "duf3389": 10, "duf3391": 10, "duf3392": 10, "duf3394": 10, "duf3396": 10, "duf3397": 10, "duf3399": 10, "duf3400": 10, "duf3402": 10, "duf3403": 10, "duf3404": 10, "duf3405": 10, "duf3408": 10, "duf3410": 10, "duf3412": 10, "duf3413": 10, "duf3417": 10, "duf3418": 10, "duf3419": 10, "duf3420": 10, "duf3421": 10, "duf3422": 10, "duf3425": 10, "duf3426": 10, "duf3427": 10, "duf3429": 10, "duf3431": 10, "duf3432": 10, "duf3433": 10, "duf3435": 10, "duf3437": 10, "duf3438": 10, "duf3439": 10, "duf3440": 10, "duf3443": 10, "duf3444": 10, "duf3445": 10, "duf3446": 10, "duf3447": 10, "duf3450": 10, "duf3452": 10, "duf3455": 10, "duf3456": 10, "duf3458": 10, "duf3458_c": 10, "duf3459": 10, "duf346": 10, "duf3460": 10, "duf3461": 10, "duf3463": 10, "duf3464": 10, "duf3465": 10, "duf3466": 10, "duf3467": 10, "duf347": 10, "duf3470": 10, "duf3471": 10, "duf3472": 10, "duf3473": 10, "duf3474": 10, "duf3475": 10, "duf3479": 10, "duf348": 10, "duf3480": 10, "duf3481": 10, "duf3482": 10, "duf3483": 10, "duf3485": 10, "duf3487": 10, "duf3489": 10, "duf349": 10, "duf3490": 10, "duf3491": 10, "duf3492": 10, "duf3493": 10, "duf3496": 10, "duf3498": 10, "duf3499": 10, "duf350": 10, "duf3500": 10, "duf3501": 10, "duf3502": 10, "duf3504": 10, "duf3509": 10, "duf3511": 10, "duf3512": 10, "duf3514": 10, "duf3515": 10, "duf3516": 10, "duf3517": 10, "duf3519": 10, "duf3520": 10, "duf3522": 10, "duf3524": 10, "duf3526": 10, "duf3527": 10, "duf3528": 10, "duf3530": 10, "duf3531": 10, "duf3533": 10, "duf3535": 10, "duf3536": 10, "duf3537": 10, "duf3539": 10, "duf354": 10, "duf3540": 10, "duf3541": 10, "duf3543": 10, "duf3544": 10, "duf3545": 10, "duf3549": 10, "duf3551": 10, "duf3553": 10, "duf3556": 10, "duf3557": 10, "duf3558": 10, "duf356": 10, "duf3560": 10, "duf3561": 10, "duf3562": 10, "duf3563": 10, "duf3564": 10, "duf3565": 10, "duf3566": 10, "duf3567": 10, "duf3568": 10, "duf357": 10, "duf3570": 10, "duf3572": 10, "duf3573": 10, "duf3574": 10, "duf3575": 10, "duf3576": 10, "duf3577": 10, "duf3579": 10, "duf3581": 10, "duf3583": 10, "duf3584": 10, "duf3586": 10, "duf359": 10, "duf3591": 10, "duf3592": 10, "duf3593": 10, "duf3597": 10, "duf3598": 10, "duf3599": 10, "duf35_n": 10, "duf3600": 10, "duf3601": 10, "duf3602": 10, "duf3603": 10, "duf3604": 10, "duf3605": 10, "duf3606": 10, "duf3611": 10, "duf3612": 10, "duf3613": 10, "duf3615": 10, "duf3616": 10, "duf3617": 10, "duf3618": 10, "duf3619": 10, "duf362": 10, "duf3622": 10, "duf3623": 10, "duf3624": 10, "duf3626": 10, "duf3627": 10, "duf3629": 10, "duf3630": 10, "duf3631": 10, "duf3632": 10, "duf3634": 10, "duf3636": 10, "duf3638": 10, "duf364": 10, "duf3641": 10, "duf3642": 10, "duf3644": 10, "duf3645": 10, "duf3646": 10, "duf3648": 10, "duf3649": 10, "duf365": 10, "duf3652": 10, "duf3653": 10, "duf3654": 10, "duf3656": 10, "duf3657": 10, "duf3658": 10, "duf3659": 10, "duf366": 10, "duf3660": 10, "duf3663": 10, "duf3664": 10, "duf3666": 10, "duf3667": 10, "duf3668": 10, "duf3669": 10, "duf3670": 10, "duf3671": 10, "duf3672": 10, "duf3673": 10, "duf3675": 10, "duf3676": 10, "duf3677": 10, "duf3678": 10, "duf3679": 10, "duf368": 10, "duf3681": 10, "duf3682": 10, "duf3683": 10, "duf3684": 10, "duf3685": 10, "duf3686": 10, "duf3687": 10, "duf3688": 10, "duf3689": 10, "duf3693": 10, "duf3694": 10, "duf3695": 10, "duf3696": 10, "duf3697": 10, "duf3698": 10, "duf3699": 10, "duf370": 10, "duf3700": 10, "duf3701": 10, "duf3703": 10, "duf3704": 10, "duf3707": 10, "duf3708": 10, "duf3709": 10, "duf371": 10, "duf3710": 10, "duf3712": 10, "duf3713": 10, "duf3715": 10, "duf3716": 10, "duf3717": 10, "duf3718": 10, "duf3719": 10, "duf3720": 10, "duf3721": 10, "duf3723": 10, "duf3726": 10, "duf3727": 10, "duf373": 10, "duf3730": 10, "duf3731": 10, "duf3732": 10, "duf3734": 10, "duf3736": 10, "duf3737": 10, "duf3738": 10, "duf3739": 10, "duf374": 10, "duf3740": 10, "duf3741": 10, "duf3742": 10, "duf3744": 10, "duf3747": 10, "duf3748": 10, "duf3750": 10, "duf3751": 10, "duf3752": 10, "duf3754": 10, "duf3755": 10, "duf3757": 10, "duf3759": 10, "duf3760": 10, "duf3761": 10, "duf3764": 10, "duf3768": 10, "duf3769": 10, "duf3770": 10, "duf3772": 10, "duf3774": 10, "duf3775": 10, "duf3776": 10, "duf3778": 10, "duf378": 10, "duf3780": 10, "duf3781": 10, "duf3782": 10, "duf3783": 10, "duf3784": 10, "duf3785": 10, "duf3786": 10, "duf3787": 10, "duf3788": 10, "duf3789": 10, "duf3791": 10, "duf3792": 10, "duf3793": 10, "duf3794": 10, "duf3795": 10, "duf3796": 10, "duf3797": 10, "duf3798": 10, "duf3799": 10, "duf3800": 10, "duf3801": 10, "duf3802": 10, "duf3804": 10, "duf3805": 10, "duf3806": 10, "duf3807": 10, "duf3809": 10, "duf3810": 10, "duf3811": 10, "duf3813": 10, "duf3817": 10, "duf3818": 10, "duf3819": 10, "duf382": 10, "duf3821": 10, "duf3822": 10, "duf3823": 10, "duf3823_c": 10, "duf3824": 10, "duf3825": 10, "duf3826": 10, "duf3827": 10, "duf3828": 10, "duf3829": 10, "duf383": 10, "duf3830": 10, "duf3833": 10, "duf3834": 10, "duf3835": 10, "duf3836": 10, "duf3837": 10, "duf3839": 10, "duf384": 10, "duf3841": 10, "duf3842": 10, "duf3843": 10, "duf3844": 10, "duf3845": 10, "duf3846": 10, "duf3847": 10, "duf3848": 10, "duf3849": 10, "duf3850": 10, "duf3851": 10, "duf3852": 10, "duf3853": 10, "duf3854": 10, "duf3855": 10, "duf3856": 10, "duf3857": 10, "duf3858": 10, "duf3859": 10, "duf386": 10, "duf3860": 10, "duf3861": 10, "duf3862": 10, "duf3863": 10, "duf3864": 10, "duf3865": 10, "duf3866": 10, "duf3867": 10, "duf3868": 10, "duf3869": 10, "duf3870": 10, "duf3871": 10, "duf3873": 10, "duf3874": 10, "duf3875": 10, "duf3876": 10, "duf3877": 10, "duf3878": 10, "duf3879": 10, "duf3880": 10, "duf3881": 10, "duf3882": 10, "duf3884": 10, "duf3885": 10, "duf3886": 10, "duf3887": 10, "duf3888": 10, "duf3889": 10, "duf389": 10, "duf3890": 10, "duf3891": 10, "duf3892": 10, "duf3894": 10, "duf3895": 10, "duf3896": 10, "duf3898": 10, "duf3899": 10, "duf3900": 10, "duf3902": 10, "duf3903": 10, "duf3905": 10, "duf3906": 10, "duf3907": 10, "duf3908": 10, "duf3909": 10, "duf3910": 10, "duf3911": 10, "duf3912": 10, "duf3913": 10, "duf3914": 10, "duf3915": 10, "duf3916": 10, "duf3917": 10, "duf3918": 10, "duf3919": 10, "duf3920": 10, "duf3921": 10, "duf3922": 10, "duf3923": 10, "duf3924": 10, "duf3925": 10, "duf3926": 10, "duf3927": 10, "duf3928": 10, "duf3929": 10, "duf3930": 10, "duf3931": 10, "duf3932": 10, "duf3933": 10, "duf3934": 10, "duf3935": 10, "duf3937": 10, "duf3938": 10, "duf3939": 10, "duf3941": 10, "duf3942": 10, "duf3943": 10, "duf3944": 10, "duf3945": 10, "duf3947": 10, "duf3948": 10, "duf3949": 10, "duf3950": 10, "duf3951": 10, "duf3952": 10, "duf3953": 10, "duf3954": 10, "duf3955": 10, "duf3956": 10, "duf3958": 10, "duf3959": 10, "duf3960": 10, "duf3961": 10, "duf3963": 10, "duf3964": 10, "duf3965": 10, "duf3966": 10, "duf3967": 10, "duf3969": 10, "duf397": 10, "duf3970": 10, "duf3971": 10, "duf3972": 10, "duf3973": 10, "duf3974": 10, "duf3975": 10, "duf3976": 10, "duf3977": 10, "duf3978": 10, "duf3979": 10, "duf3980": 10, "duf3981": 10, "duf3982": 10, "duf3983": 10, "duf3984": 10, "duf3985": 10, "duf3986": 10, "duf3987": 10, "duf3990": 10, "duf3991": 10, "duf3993": 10, "duf3994": 10, "duf3995": 10, "duf3996": 10, "duf3997": 10, "duf3999": 10, "duf4003": 10, "duf4004": 10, "duf4005": 10, "duf4006": 10, "duf4007": 10, "duf401": 10, "duf4010": 10, "duf4011": 10, "duf4012": 10, "duf4013": 10, "duf4014": 10, "duf4015": 10, "duf4017": 10, "duf4018": 10, "duf4019": 10, "duf402": 10, "duf4020": 10, "duf4021": 10, "duf4022": 10, "duf4023": 10, "duf4024": 10, "duf4025": 10, "duf4026": 10, "duf4027": 10, "duf4028": 10, "duf4029": 10, "duf4030": 10, "duf4031": 10, "duf4032": 10, "duf4034": 10, "duf4035": 10, "duf4037": 10, "duf4038": 10, "duf4041": 10, "duf4042": 10, "duf4043": 10, "duf4044": 10, "duf4045": 10, "duf4046": 10, "duf4047": 10, "duf4048": 10, "duf4049": 10, "duf4050": 10, "duf4052": 10, "duf4054": 10, "duf4055": 10, "duf4056": 10, "duf4057": 10, "duf4058": 10, "duf4059": 10, "duf406": 10, "duf4060": 10, "duf4062": 10, "duf4064": 10, "duf4065": 10, "duf4070": 10, "duf4072": 10, "duf4073": 10, "duf4074": 10, "duf4075": 10, "duf4077": 10, "duf4078": 10, "duf4079": 10, "duf4080": 10, "duf4081": 10, "duf4082": 10, "duf4083": 10, "duf4084": 10, "duf4085": 10, "duf4087": 10, "duf4088": 10, "duf4090": 10, "duf4091": 10, "duf4092": 10, "duf4093": 10, "duf4094": 10, "duf4096": 10, "duf4097": 10, "duf4099": 10, "duf4100": 10, "duf4105": 10, "duf4106": 10, "duf4107": 10, "duf4108": 10, "duf411": 10, "duf4110": 10, "duf4111": 10, "duf4112": 10, "duf4113": 10, "duf4114": 10, "duf4115": 10, "duf4116": 10, "duf4118": 10, "duf4119": 10, "duf412": 10, "duf4120": 10, "duf4121": 10, "duf4122": 10, "duf4123": 10, "duf4124": 10, "duf4125": 10, "duf4126": 10, "duf4127": 10, "duf4128": 10, "duf4129": 10, "duf413": 10, "duf4130": 10, "duf4131": 10, "duf4132": 10, "duf4133": 10, "duf4134": 10, "duf4135": 10, "duf4136": 10, "duf4138": 10, "duf4139": 10, "duf4140": 10, "duf4141": 10, "duf4142": 10, "duf4143": 10, "duf4144": 10, "duf4145": 10, "duf4147": 10, "duf4148": 10, "duf4149": 10, "duf4152": 10, "duf4153": 10, "duf4154": 10, "duf4156": 10, "duf4157": 10, "duf4158": 10, "duf4159": 10, "duf416": 10, "duf4160": 10, "duf4162": 10, "duf4164": 10, "duf4165": 10, "duf4166": 10, "duf4167": 10, "duf4168": 10, "duf4169": 10, "duf417": 10, "duf4170": 10, "duf4171": 10, "duf4172": 10, "duf4174": 10, "duf4175": 10, "duf4176": 10, "duf4177": 10, "duf4178": 10, "duf4179": 10, "duf418": 10, "duf4180": 10, "duf4181": 10, "duf4183": 10, "duf4184": 10, "duf4185": 10, "duf4186": 10, "duf4187": 10, "duf4188": 10, "duf4189": 10, "duf4190": 10, "duf4191": 10, "duf4192": 10, "duf4193": 10, "duf4194": 10, "duf4195": 10, "duf4196": 10, "duf4197": 10, "duf4198": 10, "duf4199": 10, "duf420": 10, "duf4200": 10, "duf4201": 10, "duf4202": 10, "duf4203": 10, "duf4208": 10, "duf4209": 10, "duf421": 10, "duf4210": 10, "duf4211": 10, "duf4212": 10, "duf4213": 10, "duf4214": 10, "duf4215": 10, "duf4216": 10, "duf4217": 10, "duf4218": 10, "duf4219": 10, "duf4220": 10, "duf4221": 10, "duf4222": 10, "duf4223": 10, "duf4224": 10, "duf4225": 10, "duf4226": 10, "duf4227": 10, "duf4229": 10, "duf423": 10, "duf4230": 10, "duf4231": 10, "duf4232": 10, "duf4233": 10, "duf4234": 10, "duf4235": 10, "duf4236": 10, "duf4238": 10, "duf4239": 10, "duf424": 10, "duf4240": 10, "duf4241": 10, "duf4242": 10, "duf4244": 10, "duf4245": 10, "duf4246": 10, "duf4247": 10, "duf4248": 10, "duf4249": 10, "duf4250": 10, "duf4251": 10, "duf4252": 10, "duf4253": 10, "duf4254": 10, "duf4256": 10, "duf4257": 10, "duf4258": 10, "duf4259": 10, "duf4260": 10, "duf4261": 10, "duf4262": 10, "duf4263": 10, "duf4264": 10, "duf4265": 10, "duf4266": 10, "duf4267": 10, "duf4268": 10, "duf4269": 10, "duf4270": 10, "duf4271": 10, "duf4272": 10, "duf4274": 10, "duf4275": 10, "duf4276": 10, "duf4277": 10, "duf4278": 10, "duf4279": 10, "duf4280": 10, "duf4282": 10, "duf4283": 10, "duf4284": 10, "duf4286": 10, "duf4287": 10, "duf4288": 10, "duf429": 10, "duf4290": 10, "duf4291": 10, "duf4292": 10, "duf4293": 10, "duf4294": 10, "duf4295": 10, "duf4296": 10, "duf4298": 10, "duf4299": 10, "duf4300": 10, "duf4301": 10, "duf4302": 10, "duf4303": 10, "duf4304": 10, "duf4305": 10, "duf4306": 10, "duf4307": 10, "duf4309": 10, "duf4310": 10, "duf4311": 10, "duf4312": 10, "duf4313": 10, "duf4314": 10, "duf4315": 10, "duf4316": 10, "duf4317": 10, "duf4318": 10, "duf432": 10, "duf4320": 10, "duf4321": 10, "duf4322": 10, "duf4325": 10, "duf4326": 10, "duf4327": 10, "duf4328": 10, "duf4329": 10, "duf433": 10, "duf4330": 10, "duf4331": 10, "duf4332": 10, "duf4333": 10, "duf4334": 10, "duf4335": 10, "duf4336": 10, "duf4337": 10, "duf4338": 10, "duf434": 10, "duf4340": 10, "duf4342": 10, "duf4344": 10, "duf4345": 10, "duf4346": 10, "duf4347": 10, "duf4348": 10, "duf4349": 10, "duf4350": 10, "duf4351": 10, "duf4352": 10, "duf4354": 10, "duf4355": 10, "duf4357": 10, "duf4358": 10, "duf4359": 10, "duf436": 10, "duf4360": 10, "duf4361": 10, "duf4362": 10, "duf4363": 10, "duf4364": 10, "duf4365": 10, "duf4366": 10, "duf4367": 10, "duf4368": 10, "duf4369": 10, "duf4371": 10, "duf4372": 10, "duf4373": 10, "duf4374": 10, "duf4375": 10, "duf4376": 10, "duf4377": 10, "duf4378": 10, "duf4379": 10, "duf438": 10, "duf4380": 10, "duf4381": 10, "duf4382": 10, "duf4383": 10, "duf4384": 10, "duf4385": 10, "duf4386": 10, "duf4387": 10, "duf4388": 10, "duf4389": 10, "duf4390": 10, "duf4391": 10, "duf4392": 10, "duf4394": 10, "duf4395": 10, "duf4396": 10, "duf4397": 10, "duf4398": 10, "duf4399": 10, "duf440": 10, "duf4400": 10, "duf4401": 10, "duf4402": 10, "duf4403": 10, "duf4404": 10, "duf4405": 10, "duf4406": 10, "duf4407": 10, "duf4408": 10, "duf441": 10, "duf4410": 10, "duf4411": 10, "duf4412": 10, "duf4413": 10, "duf4416": 10, "duf4417": 10, "duf4418": 10, "duf4419": 10, "duf4420": 10, "duf4421": 10, "duf4422": 10, "duf4423": 10, "duf4424": 10, "duf4426": 10, "duf4427": 10, "duf4428": 10, "duf4429": 10, "duf443": 10, "duf4430": 10, "duf4431": 10, "duf4432": 10, "duf4434": 10, "duf4435": 10, "duf4436": 10, "duf4437": 10, "duf4438": 10, "duf4439": 10, "duf444": 10, "duf4440": 10, "duf4441": 10, "duf4442": 10, "duf4443": 10, "duf4444": 10, "duf4446": 10, "duf4447": 10, "duf4449": 10, "duf445": 10, "duf4450": 10, "duf4452": 10, "duf4453": 10, "duf4454": 10, "duf4455": 10, "duf4456": 10, "duf4457": 10, "duf4458": 10, "duf4459": 10, "duf446": 10, "duf4460": 10, "duf4461": 10, "duf4462": 10, "duf4464": 10, "duf4465": 10, "duf4466": 10, "duf4467": 10, "duf4468": 10, "duf4469": 10, "duf447": 10, "duf4470": 10, "duf4471": 10, "duf4472": 10, "duf4473": 10, "duf4474": 10, "duf4476": 10, "duf4477": 10, "duf4478": 10, "duf4479": 10, "duf4481": 10, "duf4482": 10, "duf4484": 10, "duf4485": 10, "duf4487": 10, "duf4488": 10, "duf4489": 10, "duf4490": 10, "duf4491": 10, "duf4492": 10, "duf4493": 10, "duf4494": 10, "duf4495": 10, "duf4497": 10, "duf4500": 10, "duf4501": 10, "duf4502": 10, "duf4503": 10, "duf4504": 10, "duf4505": 10, "duf4507": 10, "duf4508": 10, "duf4512": 10, "duf4513": 10, "duf4514": 10, "duf4515": 10, "duf4516": 10, "duf4517": 10, "duf4518": 10, "duf4519": 10, "duf452": 10, "duf4520": 10, "duf4521": 10, "duf4522": 10, "duf4523": 10, "duf4524": 10, "duf4525": 10, "duf4527": 10, "duf4528": 10, "duf4529": 10, "duf4530": 10, "duf4531": 10, "duf4532": 10, "duf4533": 10, "duf4534": 10, "duf4535": 10, "duf4536": 10, "duf4537": 10, "duf4538": 10, "duf454": 10, "duf4541": 10, "duf4542": 10, "duf4543": 10, "duf4545": 10, "duf4547": 10, "duf4548": 10, "duf4549": 10, "duf455": 10, "duf4550": 10, "duf4551": 10, "duf4552": 10, "duf4553": 10, "duf4554": 10, "duf4555": 10, "duf4556": 10, "duf4558": 10, "duf4559": 10, "duf456": 10, "duf4560": 10, "duf4562": 10, "duf4566": 10, "duf4567": 10, "duf4568": 10, "duf4570": 10, "duf4571": 10, "duf4572": 10, "duf4573": 10, "duf4575": 10, "duf4576": 10, "duf4577": 10, "duf4578": 10, "duf4579": 10, "duf4581": 10, "duf4585": 10, "duf4586": 10, "duf4587": 10, "duf4588": 10, "duf4589": 10, "duf459": 10, "duf4590": 10, "duf4592": 10, "duf4594": 10, "duf4595": 10, "duf4596": 10, "duf4597": 10, "duf4599": 10, "duf460": 10, "duf4600": 10, "duf4601": 10, "duf4602": 10, "duf4603": 10, "duf4604": 10, "duf4605": 10, "duf4606": 10, "duf4607": 10, "duf4609": 10, "duf4611": 10, "duf4612": 10, "duf4614": 10, "duf4615": 10, "duf4616": 10, "duf4617": 10, "duf4618": 10, "duf4619": 10, "duf4620": 10, "duf4621": 10, "duf4623": 10, "duf4624": 10, "duf4625": 10, "duf4627": 10, "duf4628": 10, "duf4629": 10, "duf463": 10, "duf4630": 10, "duf4632": 10, "duf4633": 10, "duf4634": 10, "duf4635": 10, "duf4636": 10, "duf4637": 10, "duf4638": 10, "duf4639": 10, "duf4640": 10, "duf4641": 10, "duf4642": 10, "duf4643": 10, "duf4644": 10, "duf4645": 10, "duf4646": 10, "duf4647": 10, "duf4649": 10, "duf465": 10, "duf4650": 10, "duf4651": 10, "duf4652": 10, "duf4653": 10, "duf4655": 10, "duf4656": 10, "duf4657": 10, "duf4658": 10, "duf4659": 10, "duf4660": 10, "duf4661": 10, "duf4662": 10, "duf4663": 10, "duf4665": 10, "duf4666": 10, "duf4667": 10, "duf4668": 10, "duf4670": 10, "duf4672": 10, "duf4674": 10, "duf4675": 10, "duf4677": 10, "duf4678": 10, "duf4679": 10, "duf468": 10, "duf4680": 10, "duf4681": 10, "duf4682": 10, "duf4683": 10, "duf4684": 10, "duf4685": 10, "duf4686": 10, "duf4687": 10, "duf4688": 10, "duf4689": 10, "duf4690": 10, "duf4691": 10, "duf4692": 10, "duf4693": 10, "duf4694": 10, "duf4695": 10, "duf4698": 10, "duf4699": 10, "duf4702": 10, "duf4703": 10, "duf4704": 10, "duf4705": 10, "duf4706": 10, "duf4707": 10, "duf4708": 10, "duf4709": 10, "duf4710": 10, "duf4711": 10, "duf4712": 10, "duf4713": 10, "duf4714": 10, "duf4715": 10, "duf4716": 10, "duf4718": 10, "duf4719": 10, "duf4720": 10, "duf4722": 10, "duf4723": 10, "duf4724": 10, "duf4726": 10, "duf4727": 10, "duf4728": 10, "duf4729": 10, "duf473": 10, "duf4730": 10, "duf4731": 10, "duf4732": 10, "duf4733": 10, "duf4734": 10, "duf4735": 10, "duf4736": 10, "duf4738": 10, "duf4739": 10, "duf4741": 10, "duf4743": 10, "duf4744": 10, "duf4745": 10, "duf4746": 10, "duf4747": 10, "duf4748": 10, "duf4749": 10, "duf475": 10, "duf4750": 10, "duf4751": 10, "duf4752": 10, "duf4754": 10, "duf4755": 10, "duf4756": 10, "duf4757": 10, "duf4758": 10, "duf4760": 10, "duf4761": 10, "duf4762": 10, "duf4763": 10, "duf4764": 10, "duf4765": 10, "duf4766": 10, "duf4767": 10, "duf4768": 10, "duf4769": 10, "duf4770": 10, "duf4771": 10, "duf4772": 10, "duf4773": 10, "duf4774": 10, "duf4775": 10, "duf4776": 10, "duf4777": 10, "duf4778": 10, "duf4779": 10, "duf4780": 10, "duf4781": 10, "duf4783": 10, "duf4784": 10, "duf4784_n": 10, "duf4785": 10, "duf4786": 10, "duf4787": 10, "duf4788": 10, "duf4789": 10, "duf4790": 10, "duf4791": 10, "duf4792": 10, "duf4793": 10, "duf4794": 10, "duf4795": 10, "duf4796": 10, "duf4797": 10, "duf4798": 10, "duf4799": 10, "duf480": 10, "duf4800": 10, "duf4802": 10, "duf4803": 10, "duf4804": 10, "duf4805": 10, "duf4806": 10, "duf4807": 10, "duf4808": 10, "duf4809": 10, "duf481": 10, "duf4810": 10, "duf4811": 10, "duf4812": 10, "duf4813": 10, "duf4815": 10, "duf4816": 10, "duf4817": 10, "duf4818": 10, "duf4819": 10, "duf4820": 10, "duf4822": 10, "duf4823": 10, "duf4824": 10, "duf4825": 10, "duf4826": 10, "duf4827": 10, "duf4828": 10, "duf4829": 10, "duf483": 10, "duf4830": 10, "duf4831": 10, "duf4832": 10, "duf4833": 10, "duf4834": 10, "duf4835": 10, "duf4836": 10, "duf4837": 10, "duf4838": 10, "duf4839": 10, "duf484": 10, "duf4840": 10, "duf4841": 10, "duf4842": 10, "duf4843": 10, "duf4844": 10, "duf4845": 10, "duf4846": 10, "duf4847": 10, "duf4848": 10, "duf4849": 10, "duf485": 10, "duf4850": 10, "duf4851": 10, "duf4852": 10, "duf4853": 10, "duf4854": 10, "duf4855": 10, "duf4856": 10, "duf4857": 10, "duf4858": 10, "duf4859": 10, "duf4860": 10, "duf4861": 10, "duf4862": 10, "duf4863": 10, "duf4864": 10, "duf4865": 10, "duf4866": 10, "duf4867": 10, "duf4868": 10, "duf4869": 10, "duf4870": 10, "duf4871": 10, "duf4872": 10, "duf4873": 10, "duf4874": 10, "duf4875": 10, "duf4876": 10, "duf4878": 10, "duf4879": 10, "duf488": 10, "duf4880": 10, "duf4881": 10, "duf4882": 10, "duf4883": 10, "duf4884": 10, "duf4885": 10, "duf4886": 10, "duf4887": 10, "duf4888": 10, "duf4889": 10, "duf489": 10, "duf4890": 10, "duf4891": 10, "duf4892": 10, "duf4893": 10, "duf4894": 10, "duf4895": 10, "duf4896": 10, "duf4897": 10, "duf4898": 10, "duf4899": 10, "duf4900": 10, "duf4901": 10, "duf4902": 10, "duf4903": 10, "duf4904": 10, "duf4905": 10, "duf4906": 10, "duf4907": 10, "duf4908": 10, "duf4909": 10, "duf4910": 10, "duf4911": 10, "duf4912": 10, "duf4913": 10, "duf4914": 10, "duf4915": 10, "duf4916": 10, "duf4917": 10, "duf4918": 10, "duf4919": 10, "duf4920": 10, "duf4921": 10, "duf4922": 10, "duf4923": 10, "duf4924": 10, "duf4925": 10, "duf4926": 10, "duf4927": 10, "duf4928": 10, "duf4929": 10, "duf493": 10, "duf4930": 10, "duf4931": 10, "duf4932": 10, "duf4933": 10, "duf4934": 10, "duf4936": 10, "duf4937": 10, "duf4938": 10, "duf4939": 10, "duf494": 10, "duf4940": 10, "duf4941": 10, "duf4942": 10, "duf4943": 10, "duf4944": 10, "duf4945": 10, "duf4946": 10, "duf4947": 10, "duf4948": 10, "duf4949": 10, "duf4950": 10, "duf4951": 10, "duf4952": 10, "duf4953": 10, "duf4954": 10, "duf4955": 10, "duf4956": 10, "duf4957": 10, "duf4958": 10, "duf4959": 10, "duf496": 10, "duf4960": 10, "duf4961": 10, "duf4962": 10, "duf4964": 10, "duf4965": 10, "duf4969": 10, "duf4971": 10, "duf4972": 10, "duf4973": 10, "duf4974": 10, "duf4975": 10, "duf4976": 10, "duf4978": 10, "duf4979": 10, "duf498": 10, "duf4980": 10, "duf4982": 10, "duf4983": 10, "duf4984": 10, "duf4985": 10, "duf4986": 10, "duf4987": 10, "duf4988": 10, "duf4989": 10, "duf499": 10, "duf4990": 10, "duf4992": 10, "duf4994": 10, "duf4995": 10, "duf4996": 10, "duf4998": 10, "duf4999": 10, "duf5000": 10, "duf5001": 10, "duf5003": 10, "duf5004": 10, "duf5005": 10, "duf5006": 10, "duf5007": 10, "duf5008": 10, "duf5009": 10, "duf501": 10, "duf5010": 10, "duf5010_c": 10, "duf5011": 10, "duf5012": 10, "duf5013": 10, "duf5014": 10, "duf5016": 10, "duf5017": 10, "duf5018": 10, "duf502": 10, "duf5020": 10, "duf5021": 10, "duf5022": 10, "duf5023": 10, "duf5024": 10, "duf5025": 10, "duf5026": 10, "duf5027": 10, "duf5028": 10, "duf5029": 10, "duf503": 10, "duf5030": 10, "duf5031": 10, "duf5032": 10, "duf5033": 10, "duf5034": 10, "duf5035": 10, "duf5036": 10, "duf5037": 10, "duf5038": 10, "duf5039": 10, "duf5040": 10, "duf5041": 10, "duf5042": 10, "duf5043": 10, "duf5044": 10, "duf5045": 10, "duf5046": 10, "duf5047": 10, "duf5048": 10, "duf5049": 10, "duf505": 10, "duf5050": 10, "duf5052": 10, "duf5053": 10, "duf5054": 10, "duf5055": 10, "duf5056": 10, "duf5057": 10, "duf5058": 10, "duf5059": 10, "duf5060": 10, "duf5061": 10, "duf5062": 10, "duf5063": 10, "duf5064": 10, "duf5065": 10, "duf5066": 10, "duf5067": 10, "duf5068": 10, "duf5069": 10, "duf507": 10, "duf5070": 10, "duf5071": 10, "duf5072": 10, "duf5073": 10, "duf5074": 10, "duf5075": 10, "duf5076": 10, "duf5077": 10, "duf5078": 10, "duf5079": 10, "duf508": 10, "duf5080": 10, "duf5081": 10, "duf5082": 10, "duf5083": 10, "duf5084": 10, "duf5085": 10, "duf5086": 10, "duf5087": 10, "duf5088": 10, "duf5089": 10, "duf5090": 10, "duf5091": 10, "duf5092": 10, "duf5093": 10, "duf5094": 10, "duf5095": 10, "duf5096": 10, "duf5097": 10, "duf5098": 10, "duf5099": 10, "duf5100": 10, "duf5101": 10, "duf5102": 10, "duf5103": 10, "duf5104": 10, "duf5105": 10, "duf5106": 10, "duf5107": 10, "duf5108": 10, "duf5109": 10, "duf5110": 10, "duf5111": 10, "duf5112": 10, "duf5113": 10, "duf5114": 10, "duf5115": 10, "duf5117": 10, "duf5118": 10, "duf5119": 10, "duf512": 10, "duf5121": 10, "duf5122": 10, "duf5123": 10, "duf5124": 10, "duf5125": 10, "duf5126": 10, "duf5127": 10, "duf5128": 10, "duf5129": 10, "duf5130": 10, "duf5131": 10, "duf5132": 10, "duf5133": 10, "duf5134": 10, "duf5136": 10, "duf5137": 10, "duf515": 10, "duf520": 10, "duf525": 10, "duf530": 10, "duf5300": 10, "duf5301": 10, "duf5302": 10, "duf5304": 10, "duf5305": 10, "duf5308": 10, "duf5309": 10, "duf531": 10, "duf5311": 10, "duf5312": 10, "duf5313": 10, "duf5315": 10, "duf5316": 10, "duf5317": 10, "duf5318": 10, "duf5319": 10, "duf5320": 10, "duf5321": 10, "duf5323": 10, "duf5324": 10, "duf5325": 10, "duf5326": 10, "duf5327": 10, "duf5329": 10, "duf533": 10, "duf5330": 10, "duf5331": 10, "duf5332": 10, "duf5333": 10, "duf5334": 10, "duf5335": 10, "duf5336": 10, "duf5337": 10, "duf5338": 10, "duf5339": 10, "duf5340": 10, "duf5341": 10, "duf5342": 10, "duf5343": 10, "duf5344": 10, "duf5345": 10, "duf5346": 10, "duf5347": 10, "duf5348": 10, "duf5349": 10, "duf535": 10, "duf5350": 10, "duf5351": 10, "duf5352": 10, "duf5353": 10, "duf5354": 10, "duf5355": 10, "duf5356": 10, "duf5357": 10, "duf5358": 10, "duf5359": 10, "duf536": 10, "duf5360": 10, "duf5361": 10, "duf5362": 10, "duf5363": 10, "duf5364": 10, "duf5365": 10, "duf5366": 10, "duf5367": 10, "duf5368": 10, "duf5370": 10, "duf5371": 10, "duf5372": 10, "duf5373": 10, "duf5374": 10, "duf5375": 10, "duf5376": 10, "duf5377": 10, "duf5378": 10, "duf538": 10, "duf5380": 10, "duf5381": 10, "duf5382": 10, "duf5383": 10, "duf5384": 10, "duf5385": 10, "duf5386": 10, "duf5387": 10, "duf5388": 10, "duf5389": 10, "duf5390": 10, "duf5391": 10, "duf5392": 10, "duf5393": 10, "duf5394": 10, "duf5395": 10, "duf5396": 10, "duf5397": 10, "duf5398": 10, "duf5399": 10, "duf5400": 10, "duf5401": 10, "duf5402": 10, "duf5403": 10, "duf5404": 10, "duf5405": 10, "duf5406": 10, "duf5407": 10, "duf5408": 10, "duf5410": 10, "duf5411": 10, "duf5412": 10, "duf5413": 10, "duf5414": 10, "duf5415": 10, "duf5416": 10, "duf5417": 10, "duf5418": 10, "duf5419": 10, "duf5420": 10, "duf5421": 10, "duf5422": 10, "duf5423": 10, "duf5424": 10, "duf5426": 10, "duf5427": 10, "duf543": 10, "duf5431": 10, "duf5443": 10, "duf5444": 10, "duf5445": 10, "duf5446": 10, "duf5447": 10, "duf5448": 10, "duf5450": 10, "duf5452": 10, "duf5453": 10, "duf5454": 10, "duf5455": 10, "duf5456": 10, "duf5457": 10, "duf5460": 10, "duf5462": 10, "duf547": 10, "duf5474": 10, "duf5482": 10, "duf5483": 10, "duf5484": 10, "duf5489": 10, "duf5493": 10, "duf5494": 10, "duf5502": 10, "duf5503": 10, "duf5504": 10, "duf5507": 10, "duf5508": 10, "duf551": 10, "duf5510": 10, "duf5516": 10, "duf5517": 10, "duf5518": 10, "duf5519": 10, "duf5520": 10, "duf5521": 10, "duf5522": 10, "duf5523": 10, "duf5524": 10, "duf5525": 10, "duf5527": 10, "duf5528": 10, "duf5529": 10, "duf553": 10, "duf5530": 10, "duf5531": 10, "duf5532": 10, "duf5533": 10, "duf5534": 10, "duf5535": 10, "duf5536": 10, "duf5537": 10, "duf5538": 10, "duf5539": 10, "duf554": 10, "duf5540": 10, "duf5541": 10, "duf5542": 10, "duf5543": 10, "duf5544": 10, "duf5545": 10, "duf5546": 10, "duf5547": 10, "duf5548": 10, "duf5549": 10, "duf555": 10, "duf5550": 10, "duf5551": 10, "duf5552": 10, "duf5553": 10, "duf5554": 10, "duf5555": 10, "duf5556": 10, "duf5557": 10, "duf5558": 10, "duf5559": 10, "duf5560": 10, "duf5561": 10, "duf5562": 10, "duf5563": 10, "duf5564": 10, "duf5565": 10, "duf5566": 10, "duf5568": 10, "duf5569": 10, "duf5570": 10, "duf5571": 10, "duf5572": 10, "duf5575": 10, "duf5576": 10, "duf5577": 10, "duf5578": 10, "duf5579": 10, "duf5580": 10, "duf5581": 10, "duf5582": 10, "duf5583": 10, "duf5585": 10, "duf5586": 10, "duf5587": 10, "duf5588": 10, "duf559": 10, "duf5590": 10, "duf5591": 10, "duf5592": 10, "duf5593": 10, "duf5594": 10, "duf5595": 10, "duf5597": 10, "duf5600": 10, "duf5601": 10, "duf5602": 10, "duf5603": 10, "duf5604": 10, "duf5605": 10, "duf5606": 10, "duf5609": 10, "duf561": 10, "duf5610": 10, "duf5611": 10, "duf5612": 10, "duf5613": 10, "duf5614": 10, "duf5615": 10, "duf5616": 10, "duf5617": 10, "duf5618": 10, "duf5619": 10, "duf562": 10, "duf5620": 10, "duf5621": 10, "duf5622": 10, "duf5623": 10, "duf5624": 10, "duf5625": 10, "duf5626": 10, "duf5627": 10, "duf5628": 10, "duf5629": 10, "duf5630": 10, "duf5631": 10, "duf5632": 10, "duf5633": 10, "duf5634": 10, "duf5635": 10, "duf5636": 10, "duf5637": 10, "duf5638": 10, "duf5639": 10, "duf5640": 10, "duf5641": 10, "duf5642": 10, "duf5643": 10, "duf5644": 10, "duf5645": 10, "duf5646": 10, "duf5647": 10, "duf5648": 10, "duf5649": 10, "duf565": 10, "duf5650": 10, "duf5651": 10, "duf5652": 10, "duf5654": 10, "duf5655": 10, "duf5656": 10, "duf5657": 10, "duf5658": 10, "duf5659": 10, "duf5660": 10, "duf5661": 10, "duf5662": 10, "duf5663": 10, "duf5665": 10, "duf5666": 10, "duf5667": 10, "duf5668": 10, "duf5669": 10, "duf5670": 10, "duf5671": 10, "duf5672": 10, "duf5673": 10, "duf5674": 10, "duf5675": 10, "duf5676": 10, "duf5677": 10, "duf5678": 10, "duf5679": 10, "duf568": 10, "duf5680": 10, "duf5681": 10, "duf5682": 10, "duf5683": 10, "duf5684": 10, "duf5685": 10, "duf5686": 10, "duf5687": 10, "duf5688": 10, "duf5689": 10, "duf569": 10, "duf5690": 10, "duf5691": 10, "duf5692": 10, "duf5693": 10, "duf5694": 10, "duf5695": 10, "duf5696": 10, "duf5697": 10, "duf5698": 10, "duf5699": 10, "duf5700": 10, "duf5701": 10, "duf5702": 10, "duf5703": 10, "duf5703_n": 10, "duf5704": 10, "duf5706": 10, "duf5707": 10, "duf5708": 10, "duf5709": 10, "duf5710": 10, "duf5711": 10, "duf5712": 10, "duf5713": 10, "duf5714": 10, "duf5715": 10, "duf5716": 10, "duf5716_c": 10, "duf5717": 10, "duf5717_n": 10, "duf5718": 10, "duf5719": 10, "duf5720": 10, "duf5721": 10, "duf5722": 10, "duf5723": 10, "duf5724": 10, "duf5725": 10, "duf5726": 10, "duf5727": 10, "duf5728": 10, "duf5729": 10, "duf573": 10, "duf5730": 10, "duf5731": 10, "duf5732": 10, "duf5733": 10, "duf5734": 10, "duf5735": 10, "duf5736": 10, "duf5737": 10, "duf5738": 10, "duf5739": 10, "duf5740": 10, "duf5741": 10, "duf5742": 10, "duf5743": 10, "duf5744": 10, "duf5745": 10, "duf5746": 10, "duf5748": 10, "duf5749": 10, "duf575": 10, "duf5750": 10, "duf5751": 10, "duf5752": 10, "duf5753": 10, "duf5754": 10, "duf5755": 10, "duf5757": 10, "duf5758": 10, "duf5759": 10, "duf576": 10, "duf5760": 10, "duf5761": 10, "duf5762": 10, "duf5763": 10, "duf5764": 10, "duf5765": 10, "duf5767": 10, "duf577": 10, "duf5776": 10, "duf5777": 10, "duf5778": 10, "duf5779": 10, "duf5780": 10, "duf5781": 10, "duf5783": 10, "duf5784": 10, "duf5785": 10, "duf5786": 10, "duf5787": 10, "duf5788": 10, "duf5789": 10, "duf5790": 10, "duf5791": 10, "duf5793": 10, "duf5794": 10, "duf5795": 10, "duf5796": 10, "duf5797": 10, "duf5798": 10, "duf5799": 10, "duf58": 10, "duf5800": 10, "duf5801": 10, "duf5802": 10, "duf5803": 10, "duf5804": 10, "duf5805": 10, "duf5806": 10, "duf5807": 10, "duf5808": 10, "duf5809": 10, "duf5810": 10, "duf5811": 10, "duf5812": 10, "duf5813": 10, "duf5814": 10, "duf5815": 10, "duf5816": 10, "duf5817": 10, "duf5818": 10, "duf5819": 10, "duf5820": 10, "duf5821": 10, "duf5822": 10, "duf5823": 10, "duf5824": 10, "duf5825": 10, "duf5827": 10, "duf5828": 10, "duf5829": 10, "duf5830": 10, "duf5832": 10, "duf5834": 10, "duf5837": 10, "duf5838": 10, "duf5839": 10, "duf5840": 10, "duf5841": 10, "duf5845": 10, "duf5849": 10, "duf5850": 10, "duf5856": 10, "duf5857": 10, "duf5859": 10, "duf5860": 10, "duf5862": 10, "duf5871": 10, "duf5872": 10, "duf5880": 10, "duf5881": 10, "duf5889": 10, "duf5895": 10, "duf5898": 10, "duf5899": 10, "duf5900": 10, "duf5901": 10, "duf5906": 10, "duf5907": 10, "duf5908": 10, "duf5909": 10, "duf591": 10, "duf5910": 10, "duf5914": 10, "duf5915": 10, "duf5916": 10, "duf5917": 10, "duf5918": 10, "duf5919": 10, "duf592": 10, "duf5920": 10, "duf5921": 10, "duf5923": 10, "duf5924": 10, "duf5925": 10, "duf5926": 10, "duf5927": 10, "duf5928": 10, "duf5929": 10, "duf5930": 10, "duf5931": 10, "duf5932": 10, "duf5933": 10, "duf5934": 10, "duf5935": 10, "duf5936": 10, "duf5937": 10, "duf5938": 10, "duf5939": 10, "duf594": 10, "duf5940": 10, "duf5941": 10, "duf5942": 10, "duf5943": 10, "duf5944": 10, "duf5945": 10, "duf5946": 10, "duf5947": 10, "duf5948": 10, "duf5949": 10, "duf5950": 10, "duf5951": 10, "duf5952": 10, "duf5953": 10, "duf5954": 10, "duf5955": 10, "duf5956": 10, "duf5957": 10, "duf5958": 10, "duf5959": 10, "duf596": 10, "duf5960": 10, "duf5961": 10, "duf5962": 10, "duf5963": 10, "duf5964": 10, "duf5965": 10, "duf5966": 10, "duf5967": 10, "duf5968": 10, "duf5969": 10, "duf5970": 10, "duf5971": 10, "duf5972": 10, "duf5973": 10, "duf5974": 10, "duf5975": 10, "duf5976": 10, "duf5977": 10, "duf5978": 10, "duf5979": 10, "duf5980": 10, "duf5981": 10, "duf5982": 10, "duf5983": 10, "duf5984": 10, "duf5985": 10, "duf5986": 10, "duf5987": 10, "duf5988": 10, "duf5989": 10, "duf599": 10, "duf5990": 10, "duf5991": 10, "duf5992": 10, "duf5993": 10, "duf5994": 10, "duf5995": 10, "duf5996": 10, "duf5997": 10, "duf5998": 10, "duf5999": 10, "duf600": 10, "duf6000": 10, "duf6001": 10, "duf6002": 10, "duf6003": 10, "duf6004": 10, "duf6005": 10, "duf6006": 10, "duf6007": 10, "duf6008": 10, "duf6009": 10, "duf601": 10, "duf6010": 10, "duf6011": 10, "duf6012": 10, "duf6013": 10, "duf6014": 10, "duf6015": 10, "duf6016": 10, "duf6017": 10, "duf6018": 10, "duf6019": 10, "duf6020": 10, "duf6021": 10, "duf6022": 10, "duf6023": 10, "duf6024": 10, "duf6025": 10, "duf6026": 10, "duf6027": 10, "duf6029": 10, "duf603": 10, "duf6030": 10, "duf6031": 10, "duf6033": 10, "duf6034": 10, "duf6035": 10, "duf6036": 10, "duf6037": 10, "duf6038": 10, "duf6039": 10, "duf604": 10, "duf6040": 10, "duf6041": 10, "duf6042": 10, "duf6043": 10, "duf6044": 10, "duf6045": 10, "duf6046": 10, "duf6047": 10, "duf6048": 10, "duf6049": 10, "duf6050": 10, "duf6051": 10, "duf6052": 10, "duf6053": 10, "duf6054": 10, "duf6055": 10, "duf6056": 10, "duf6057": 10, "duf6058": 10, "duf6059": 10, "duf6060": 10, "duf6061": 10, "duf6062": 10, "duf6063": 10, "duf6064": 10, "duf6065": 10, "duf6066": 10, "duf6067": 10, "duf6068": 10, "duf6069": 10, "duf6070": 10, "duf6071": 10, "duf6072": 10, "duf6073": 10, "duf6074": 10, "duf6075": 10, "duf6076": 10, "duf6077": 10, "duf6078": 10, "duf6079": 10, "duf608": 10, "duf6080": 10, "duf6081": 10, "duf6082": 10, "duf6083": 10, "duf6084": 10, "duf6085": 10, "duf6086": 10, "duf6087": 10, "duf6088": 10, "duf6089": 10, "duf6090": 10, "duf6092": 10, "duf6093": 10, "duf6094": 10, "duf6095": 10, "duf6096": 10, "duf6097": 10, "duf6098": 10, "duf6099": 10, "duf61": 10, "duf6100": 10, "duf6101": 10, "duf6102": 10, "duf6103": 10, "duf6104": 10, "duf6105": 10, "duf6106": 10, "duf6107": 10, "duf6108": 10, "duf6109": 10, "duf6110": 10, "duf6111": 10, "duf6112": 10, "duf6113": 10, "duf6114": 10, "duf6115": 10, "duf6116": 10, "duf6117": 10, "duf6118": 10, "duf6119": 10, "duf612": 10, "duf6120": 10, "duf6121": 10, "duf6122": 10, "duf6123": 10, "duf6124": 10, "duf6125": 10, "duf6126": 10, "duf6127": 10, "duf6128": 10, "duf6129": 10, "duf6130": 10, "duf6131": 10, "duf6132": 10, "duf6133": 10, "duf6134": 10, "duf6136": 10, "duf6137": 10, "duf6138": 10, "duf6139": 10, "duf6140": 10, "duf6141": 10, "duf6142": 10, "duf6143": 10, "duf6144": 10, "duf6145": 10, "duf6146": 10, "duf6147": 10, "duf6148": 10, "duf6149": 10, "duf615": 10, "duf6150": 10, "duf6151": 10, "duf6152": 10, "duf6153": 10, "duf6154": 10, "duf6155": 10, "duf6156": 10, "duf6157": 10, "duf6158": 10, "duf6159": 10, "duf616": 10, "duf6160": 10, "duf6161": 10, "duf6162": 10, "duf6163": 10, "duf6164": 10, "duf6165": 10, "duf6166": 10, "duf6167": 10, "duf6168": 10, "duf6169": 10, "duf617": 10, "duf6170": 10, "duf6171": 10, "duf6172": 10, "duf6173": 10, "duf6174": 10, "duf6175": 10, "duf6176": 10, "duf6177": 10, "duf6178": 10, "duf6179": 10, "duf6180": 10, "duf6181": 10, "duf6182": 10, "duf6183": 10, "duf6184": 10, "duf6185": 10, "duf6186": 10, "duf6187": 10, "duf6188": 10, "duf6189": 10, "duf6190": 10, "duf6191": 10, "duf6192": 10, "duf6193": 10, "duf6194": 10, "duf6195": 10, "duf6196": 10, "duf6197": 10, "duf6198": 10, "duf6199": 10, "duf620": 10, "duf6200": 10, "duf6201": 10, "duf6202": 10, "duf6203": 10, "duf6204": 10, "duf6205": 10, "duf6206": 10, "duf6207": 10, "duf6208": 10, "duf6209": 10, "duf621": 10, "duf6210": 10, "duf6211": 10, "duf6212": 10, "duf6213": 10, "duf6214": 10, "duf6215": 10, "duf6216": 10, "duf6217": 10, "duf6218": 10, "duf6219": 10, "duf6220": 10, "duf6221": 10, "duf6222": 10, "duf6223": 10, "duf6224": 10, "duf6225": 10, "duf6226": 10, "duf6227": 10, "duf6228": 10, "duf6229": 10, "duf6230": 10, "duf6231": 10, "duf6232": 10, "duf6233": 10, "duf6234": 10, "duf6235": 10, "duf6236": 10, "duf6237": 10, "duf6238": 10, "duf6239": 10, "duf624": 10, "duf6240": 10, "duf6241": 10, "duf6242": 10, "duf6243": 10, "duf6244": 10, "duf6245": 10, "duf6246": 10, "duf6247": 10, "duf6248": 10, "duf6249": 10, "duf6250": 10, "duf6251": 10, "duf6252": 10, "duf6253": 10, "duf6254": 10, "duf6255": 10, "duf6256": 10, "duf6257": 10, "duf6258": 10, "duf6259": 10, "duf6260": 10, "duf6261": 10, "duf6262": 10, "duf6263": 10, "duf6264": 10, "duf6265": 10, "duf6266": 10, "duf6268": 10, "duf6269": 10, "duf627": 10, "duf6270": 10, "duf6271": 10, "duf6272": 10, "duf6273": 10, "duf6274": 10, "duf6275": 10, "duf6276": 10, "duf6277": 10, "duf6278": 10, "duf6279": 10, "duf6280": 10, "duf6281": 10, "duf6282": 10, "duf6283": 10, "duf6284": 10, "duf6285": 10, "duf6286": 10, "duf6287": 10, "duf6288": 10, "duf6289": 10, "duf629": 10, "duf6290": 10, "duf6291": 10, "duf6292": 10, "duf6293": 10, "duf6294": 10, "duf6295": 10, "duf6296": 10, "duf6297": 10, "duf6298": 10, "duf6299": 10, "duf63": 10, "duf630": 10, "duf6300": 10, "duf6301": 10, "duf6302": 10, "duf6303": 10, "duf6304": 10, "duf6305": 10, "duf6306": 10, "duf6307": 10, "duf6308": 10, "duf6309": 10, "duf6310": 10, "duf6311": 10, "duf6312": 10, "duf6313": 10, "duf6314": 10, "duf6315": 10, "duf6316": 10, "duf6317": 10, "duf6318": 10, "duf6319": 10, "duf632": 10, "duf6320": 10, "duf6321": 10, "duf6323": 10, "duf6324": 10, "duf6325": 10, "duf6326": 10, "duf6327": 10, "duf6328": 10, "duf6329": 10, "duf6330": 10, "duf6331": 10, "duf6332": 10, "duf6333": 10, "duf6334": 10, "duf6335": 10, "duf6336": 10, "duf6337": 10, "duf6338": 10, "duf6339": 10, "duf6340": 10, "duf6341": 10, "duf6342": 10, "duf6343": 10, "duf6344": 10, "duf6345": 10, "duf6346": 10, "duf6347": 10, "duf6348": 10, "duf6349": 10, "duf6350": 10, "duf6351": 10, "duf6352": 10, "duf6353": 10, "duf6354": 10, "duf6355": 10, "duf6356": 10, "duf6357": 10, "duf6358": 10, "duf6359": 10, "duf6360": 10, "duf6361": 10, "duf6362": 10, "duf6363": 10, "duf6364": 10, "duf6365": 10, "duf6366": 10, "duf6367": 10, "duf6368": 10, "duf6369": 10, "duf637": 10, "duf6370": 10, "duf6371": 10, "duf6372": 10, "duf6373": 10, "duf6374": 10, "duf6375": 10, "duf6376": 10, "duf6377": 10, "duf6378": 10, "duf6379": 10, "duf6380": 10, "duf6381": 10, "duf6382": 10, "duf6383": 10, "duf6384": 10, "duf6385": 10, "duf6386": 10, "duf6387": 10, "duf6388": 10, "duf6389": 10, "duf639": 10, "duf6390": 10, "duf6391": 10, "duf6392": 10, "duf6393": 10, "duf6394": 10, "duf6395": 10, "duf6396": 10, "duf6397": 10, "duf6398": 10, "duf6399": 10, "duf6400": 10, "duf6401": 10, "duf6402": 10, "duf6403": 10, "duf6404": 10, "duf6405": 10, "duf6406": 10, "duf6407": 10, "duf6408": 10, "duf6409": 10, "duf641": 10, "duf6410": 10, "duf6411": 10, "duf6412": 10, "duf6413": 10, "duf6414": 10, "duf6415": 10, "duf6416": 10, "duf6417": 10, "duf6418": 10, "duf6419": 10, "duf642": 10, "duf6420": 10, "duf6421": 10, "duf6422": 10, "duf6423": 10, "duf6424": 10, "duf6425": 10, "duf6426": 10, "duf6427": 10, "duf6428": 10, "duf6429": 10, "duf6430": 10, "duf6431": 10, "duf6432": 10, "duf6434": 10, "duf6435": 10, "duf6436": 10, "duf6437": 10, "duf6438": 10, "duf6439": 10, "duf6440": 10, "duf6441": 10, "duf6442": 10, "duf6443": 10, "duf6444": 10, "duf6445": 10, "duf6446": 10, "duf6447": 10, "duf6448": 10, "duf6449": 10, "duf645": 10, "duf6451": 10, "duf6452": 10, "duf6453": 10, "duf6454": 10, "duf6455": 10, "duf6456": 10, "duf6457": 10, "duf6458": 10, "duf6459": 10, "duf6460": 10, "duf6461": 10, "duf6462": 10, "duf6463": 10, "duf6464": 10, "duf6465": 10, "duf6466": 10, "duf6467": 10, "duf6468": 10, "duf6469": 10, "duf6470": 10, "duf6471": 10, "duf6472": 10, "duf6473": 10, "duf6474": 10, "duf6475": 10, "duf6476": 10, "duf6477": 10, "duf6478": 10, "duf6479": 10, "duf648": 10, "duf6480": 10, "duf6481": 10, "duf6482": 10, "duf6483": 10, "duf6484": 10, "duf6485": 10, "duf6486": 10, "duf6487": 10, "duf6488": 10, "duf6489": 10, "duf6490": 10, "duf6491": 10, "duf6492": 10, "duf6493": 10, "duf6494": 10, "duf6495": 10, "duf6496": 10, "duf6497": 10, "duf6498": 10, "duf6499": 10, "duf6500": 10, "duf6501": 10, "duf6502": 10, "duf6503": 10, "duf6504": 10, "duf6505": 10, "duf6506": 10, "duf6507": 10, "duf6508": 10, "duf6509": 10, "duf6510": 10, "duf6511": 10, "duf6512": 10, "duf6513": 10, "duf6514": 10, "duf6515": 10, "duf6516": 10, "duf6517": 10, "duf6518": 10, "duf6519": 10, "duf6520": 10, "duf6522": 10, "duf6524": 10, "duf6525": 10, "duf6526": 10, "duf6527": 10, "duf6528": 10, "duf6529": 10, "duf6530": 10, "duf6531": 10, "duf6532": 10, "duf6533": 10, "duf6534": 10, "duf6535": 10, "duf6536": 10, "duf6537": 10, "duf6538": 10, "duf6539": 10, "duf6540": 10, "duf6541": 10, "duf6542": 10, "duf6543": 10, "duf6544": 10, "duf6545": 10, "duf6546": 10, "duf6547": 10, "duf6548": 10, "duf6549": 10, "duf655": 10, "duf6550": 10, "duf6551": 10, "duf6552": 10, "duf6553": 10, "duf6554": 10, "duf6555": 10, "duf6556": 10, "duf6557": 10, "duf6558": 10, "duf6559": 10, "duf6560": 10, "duf6561": 10, "duf6562": 10, "duf6563": 10, "duf6564": 10, "duf6565": 10, "duf6566": 10, "duf6567": 10, "duf6568": 10, "duf6569": 10, "duf6570": 10, "duf6571": 10, "duf6572": 10, "duf6573": 10, "duf6574": 10, "duf6575": 10, "duf6576": 10, "duf6577": 10, "duf6578": 10, "duf6579": 10, "duf6580": 10, "duf6581": 10, "duf6582": 10, "duf6583": 10, "duf6584": 10, "duf6585": 10, "duf6586": 10, "duf6587": 10, "duf6588": 10, "duf6589": 10, "duf659": 10, "duf6590": 10, "duf6591": 10, "duf6592": 10, "duf6593": 10, "duf6594": 10, "duf6595": 10, "duf6596": 10, "duf6597": 10, "duf6598": 10, "duf6599": 10, "duf6600": 10, "duf6601": 10, "duf6602": 10, "duf6603": 10, "duf6604": 10, "duf6605": 10, "duf6606": 10, "duf6607": 10, "duf6608": 10, "duf6609": 10, "duf6610": 10, "duf6611": 10, "duf6612": 10, "duf6613": 10, "duf6614": 10, "duf6615": 10, "duf6616": 10, "duf6617": 10, "duf6618": 10, "duf6619": 10, "duf6620": 10, "duf6621": 10, "duf6622": 10, "duf6623": 10, "duf6624": 10, "duf6625": 10, "duf6626": 10, "duf6627": 10, "duf6628": 10, "duf6629": 10, "duf6630": 10, "duf6631": 10, "duf6632": 10, "duf6633": 10, "duf6634": 10, "duf6635": 10, "duf6636": 10, "duf6637": 10, "duf6638": 10, "duf6639": 10, "duf664": 10, "duf6640": 10, "duf6641": 10, "duf6642": 10, "duf6643": 10, "duf6644": 10, "duf6645": 10, "duf6646": 10, "duf6647": 10, "duf6648": 10, "duf6649": 10, "duf6650": 10, "duf6651": 10, "duf6652": 10, "duf6653": 10, "duf6655": 10, "duf6656": 10, "duf6657": 10, "duf6658": 10, "duf6659": 10, "duf6660": 10, "duf6661": 10, "duf6662": 10, "duf6663": 10, "duf6664": 10, "duf6665": 10, "duf6666": 10, "duf6667": 10, "duf6668": 10, "duf6669": 10, "duf6670": 10, "duf6671": 10, "duf6672": 10, "duf6673": 10, "duf6674": 10, "duf6675": 10, "duf6676": 10, "duf6677": 10, "duf6678": 10, "duf6679": 10, "duf668": 10, "duf6680": 10, "duf6681": 10, "duf6682": 10, "duf6683": 10, "duf6684": 10, "duf6685": 10, "duf6686": 10, "duf6687": 10, "duf6688": 10, "duf6689": 10, "duf669": 10, "duf6690": 10, "duf6691": 10, "duf6692": 10, "duf6693": 10, "duf6694": 10, "duf6695": 10, "duf6696": 10, "duf6697": 10, "duf6698": 10, "duf6699": 10, "duf6700": 10, "duf6701": 10, "duf6702": 10, "duf6703": 10, "duf6704": 10, "duf6705": 10, "duf6706": 10, "duf6707": 10, "duf6708": 10, "duf6709": 10, "duf6710": 10, "duf6711": 10, "duf6712": 10, "duf6713": 10, "duf6714": 10, "duf6715": 10, "duf6716": 10, "duf6717": 10, "duf6718": 10, "duf6719": 10, "duf6720": 10, "duf6721": 10, "duf6722": 10, "duf6723": 10, "duf6724": 10, "duf6725": 10, "duf6726": 10, "duf6727": 10, "duf6728": 10, "duf6729": 10, "duf6730": 10, "duf6731": 10, "duf6732": 10, "duf6733": 10, "duf6734": 10, "duf6735": 10, "duf6736": 10, "duf6737": 10, "duf6738": 10, "duf6739": 10, "duf674": 10, "duf6741": 10, "duf6744": 10, "duf6745": 10, "duf6746": 10, "duf6747": 10, "duf6748": 10, "duf6749": 10, "duf6750": 10, "duf6751": 10, "duf6752": 10, "duf6753": 10, "duf6754": 10, "duf6755": 10, "duf6756": 10, "duf6757": 10, "duf6758": 10, "duf6759": 10, "duf676": 10, "duf6760": 10, "duf6761": 10, "duf6762": 10, "duf6763": 10, "duf6764": 10, "duf6765": 10, "duf6766": 10, "duf6767": 10, "duf6768": 10, "duf6769": 10, "duf677": 10, "duf6770": 10, "duf6771": 10, "duf6772": 10, "duf6773": 10, "duf6774": 10, "duf6775": 10, "duf6776": 10, "duf6777": 10, "duf6778": 10, "duf6779": 10, "duf6780": 10, "duf6781": 10, "duf6782": 10, "duf6783": 10, "duf6784": 10, "duf6785": 10, "duf6786": 10, "duf6787": 10, "duf6788": 10, "duf6789": 10, "duf679": 10, "duf6790": 10, "duf6791": 10, "duf6792": 10, "duf6793": 10, "duf6794": 10, "duf6795": 10, "duf6796": 10, "duf6797": 10, "duf6798": 10, "duf6799": 10, "duf680": 10, "duf6800": 10, "duf6801": 10, "duf6802": 10, "duf6803": 10, "duf6804": 10, "duf6805": 10, "duf6806": 10, "duf6807": 10, "duf684": 10, "duf685": 10, "duf687": 10, "duf688": 10, "duf692": 10, "duf693": 10, "duf695": 10, "duf697": 10, "duf702": 10, "duf705": 10, "duf707": 10, "duf711": 10, "duf713": 10, "duf716": 10, "duf719": 10, "duf72": 10, "duf720": 10, "duf722": 10, "duf723": 10, "duf724": 10, "duf725": 10, "duf726": 10, "duf730": 10, "duf732": 10, "duf733": 10, "duf735": 10, "duf736": 10, "duf739": 10, "duf740": 10, "duf742": 10, "duf745": 10, "duf746": 10, "duf747": 10, "duf748": 10, "duf749": 10, "duf751": 10, "duf753": 10, "duf758": 10, "duf759": 10, "duf760": 10, "duf761": 10, "duf762": 10, "duf763": 10, "duf764": 10, "duf768": 10, "duf769": 10, "duf771": 10, "duf772": 10, "duf775": 10, "duf776": 10, "duf777": 10, "duf778": 10, "duf779": 10, "duf780": 10, "duf787": 10, "duf789": 10, "duf790": 10, "duf792": 10, "duf799": 10, "duf802": 10, "duf805": 10, "duf806": 10, "duf808": 10, "duf815": 10, "duf817": 10, "duf818": 10, "duf819": 10, "duf825": 10, "duf826": 10, "duf829": 10, "duf834": 10, "duf835": 10, "duf839": 10, "duf842": 10, "duf846": 10, "duf851": 10, "duf859": 10, "duf863": 10, "duf868": 10, "duf87": 10, "duf870": 10, "duf874": 10, "duf881": 10, "duf883": 10, "duf883_c": 10, "duf885": 10, "duf892": 10, "duf896": 10, "duf898": 10, "duf899": 10, "duf900": 10, "duf903": 10, "duf905": 10, "duf908": 10, "duf910": 10, "duf913": 10, "duf915": 10, "duf916": 10, "duf917": 10, "duf918": 10, "duf919": 10, "duf92": 10, "duf922": 10, "duf924": 10, "duf927": 10, "duf928": 10, "duf929": 10, "duf930": 10, "duf932": 10, "duf934": 10, "duf935": 10, "duf936": 10, "duf937": 10, "duf938": 10, "duf943": 10, "duf945": 10, "duf948": 10, "duf951": 10, "duf952": 10, "duf953": 10, "duf956": 10, "duf959": 10, "duf960": 10, "duf961": 10, "duf963": 10, "duf968": 10, "duf969": 10, "duf973": 10, "duf974": 10, "duf975": 10, "duf977": 10, "duf979": 10, "duf981": 10, "duf982": 10, "duf983": 10, "duf986": 10, "duf987": 10, "duf99": 10, "duf992": 10, "duf993": 10, "duf995": 10, "duf996": 10, "duf997": 10, "duf998": 10, "duf999": 10, "dusp": 10, "dvl": 10, "dvnp": 10, "dwnn": 10, "dxpr_c": 10, "dxp_redisom_c": 10, "dxp_reductoisom": 10, "dxp_synthase_n": 10, "dyw_deaminas": 10, "dzf": 10, "dzr": 10, "dzr_2": 10, "daba": 10, "dabb": 10, "dak1": 10, "dak1_2": 10, "dak2": 10, "dala_dala_lig_c": 10, "dala_dala_lig_n": 10, "dam": 10, "dapb_c": 10, "dapb_n": 10, "daph_n": 10, "dapper": 10, "dara_c": 10, "dara_n": 10, "dart": 10, "darcynin": 10, "daxx": 10, "daz": 10, "dbl7": 10, "dbpa": 10, "dcap": 10, "dcia": 10, "dcp": 10, "dcps_c": 10, "dcrb": 10, "dcta": 10, "ydbh": 10, "dctm": 10, "dctp": 10, "dctq": 10, "dcua_dcub": 10, "dcuc": 10, "ddda": 10, "ddrb": 10, "dead_c": 10, "death": 10, "death_2": 10, "defb50": 10, "defensin_1": 10, "defensin_2": 10, "defensin_3": 10, "defensin_5": 10, "defensin_rk": 10, "defensin_beta": 10, "defensin_beta_2": 10, "defensin_big": 10, "defensin_lik": 10, "defensin_propep": 10, "degq": 10, "deg": 10, "degt_dnrj_eryc1": 10, "degv": 10, "dehi": 10, "dehalogenas": 10, "dehyd": 10, "heme_bind": 10, "dehydratase_lu": 10, "dehydratase_mu": 10, "dehydratase_su": 10, "dehydratase_hem": 10, "dehydrin": 10, "delta_lysin": 10, "deltameth_r": 10, "dendrin": 10, "denso_vp4": 10, "deoc": 10, "deorc": 10, "dermcidin": 10, "destabilas": 10, "desulfoferrod_n": 10, "desulfoferrodox": 10, "det1": 10, "devr": 10, "dev_cell_death": 10, "dexa_ind": 10, "dfp1_him1_m": 10, "di19_c": 10, "disb": 10, "orf2_chro": 10, "dis_p_di": 10, "diacid_rec": 10, "dicb": 10, "dicer_n": 10, "dicer_dim": 10, "dickkopf_n": 10, "stat": 10, "dicty_cad": 10, "dicty_car": 10, "dicty_ctdc": 10, "dicty_rep": 10, "dicty_spore_n": 10, "diedel": 10, "dimer_tnp_tn5": 10, "dimer_tnp_hat": 10, "dimeris": 10, "dimerisation2": 10, "dimeth_pyl": 10, "dinb": 10, "dinb_2": 10, "dini": 10, "dioxygenase_c": 10, "dioxygenase_n": 10, "diphthami_syn_2": 10, "diphthamide_syn": 10, "diphtheria_c": 10, "diphtheria_r": 10, "diphtheria_t": 10, "dirig": 10, "dis3l2_c_term": 10, "disa": 10, "linker": 10, "disaggr_assoc": 10, "disaggr_repeat": 10, "dishevel": 10, "disintegrin": 10, "disulph_isom": 10, "divic": 10, "diviva": 10, "dltd": 10, "dmpg_comm": 10, "dmrt1": 10, "dmsc": 10, "dna2": 10, "dnaa_n": 10, "dnab": 10, "dnab_2": 10, "dnab_c": 10, "dnab_bind": 10, "dnag_dnab_bind": 10, "dnagprimase_hbd": 10, "dnai_n": 10, "dnaj": 10, "like_c11_c": 10, "dnaj_c": 10, "dnaj_cxxcxgxg": 10, "dnat": 10, "dnat_2": 10, "dndb": 10, "dnde": 10, "dockerin_1": 10, "dodecin": 10, "dopey_n": 10, "doppel": 10, "dor1": 10, "dota": 10, "dotd": 10, "dotu": 10, "dot_icm_icmq": 10, "doxa": 10, "doxd": 10, "doxx": 10, "doxx_2": 10, "doxx_3": 10, "dpaa_n": 10, "dpnd": 10, "pcfm": 10, "dpni": 10, "dpnii": 10, "mboi": 10, "dpni_c": 10, "dpoe2nt": 10, "dpp_8_9_n": 10, "dppa2_a": 10, "dpra_wh": 10, "dpy": 10, "30": [10, 14], "dpy19": 10, "drak_hk_n": 10, "draxin": 10, "drc1": 10, "sld2": 10, "drf_dad": 10, "drf_fh1": 10, "drf_fh3": 10, "drf_gbd": 10, "drra_p4m": 10, "drse": 10, "drse_2": 10, "dsbb": 10, "dsbc": 10, "dsbc_n": 10, "dsbd": 10, "dsbd_2": 10, "dsbg_n": 10, "dsc3_c": 10, "dsc3_n": 10, "dscam_c": 10, "dsh_c": 10, "dsl1_c": 10, "dsl1_n": 10, "dsrc": 10, "dsrd": 10, "dsrh": 10, "dtxr": 10, "duffybp_n": 10, "duffy_bind": 10, "duoxa": 10, "du": 10, "dymeclin": 10, "dynactin": 10, "dynactin_p22": 10, "dynactin_p62": 10, "dynamin_m": 10, "dynamin_n": 10, "dynamitin": 10, "dynein_aaa_lid": 10, "dynein_c": 10, "dynein_ic2": 10, "dynein_attach_n": 10, "dynein_heavi": 10, "dynein_light": 10, "dyp_perox": 10, "dysbindin": 10, "dzip": 10, "like_n": 10, "e1": 10, "e2_atpas": 10, "e1_4hb": 10, "e1_derp2_derf2": 10, "e1_fcch": 10, "e1_ufd": 10, "e1_dh": 10, "e2": 10, "crich": 10, "e1mid": 10, "ntca": 10, "e2f_cc": 10, "mb": 10, "e2f_tdp": 10, "e2r135": 10, "e2_bind": 10, "e3_ubr4_n": 10, "e3_ufm1_ligas": 10, "e3_ubligase_edd": 10, "e3_ubligase_r4": 10, "e3_ubligase_rbr": 10, "e3_bind": 10, "e6": 10, "eabr": 10, "eacc1": 10, "ead1": 10, "ead10": 10, "ead11": 10, "ead2": 10, "ead4": 10, "ead5": 10, "ead6": 10, "ead7": 10, "ead8": 10, "ead9": 10, "eaf": 10, "eagr_box": 10, "eal": 10, "eap30": 10, "ear": 10, "eb": 10, "eb1": 10, "eb1_bind": 10, "eba": 10, "175_vi": 10, "ebp": 10, "ebp50_c": 10, "ebv": 10, "na3": 10, "eb_dh": 10, "ec042_2821": 10, "ecd": 10, "ecf": 10, "ribofla_tr": 10, "ecf_trnsprt": 10, "ech_1": 10, "ech_2": 10, "ecm1": 10, "ecm11": 10, "ecr1_n": 10, "ecscr": 10, "ecsit": 10, "ecsit_c": 10, "edr1": 10, "edr2_c": 10, "eds1_ep": 10, "eelm2": 10, "ef": [10, 15, 17], "1_beta_acid": 10, "binding_n": 10, "hand_1": 10, "hand_10": 10, "hand_11": 10, "hand_12": 10, "hand_13": 10, "hand_14": 10, "hand_2": 10, "hand_3": 10, "hand_4": 10, "hand_5": 10, "hand_6": 10, "hand_7": 10, "hand_8": 10, "hand_9": 10, "hand_lik": 10, "ef1g": 10, "ef1_gn": 10, "eff": 10, "aff": 10, "efg_c": 10, "efg_iii": 10, "efg_iv": 10, "efp": 10, "efp_n": 10, "eftud2": 10, "ef_t": 10, "ef_assoc_1": 10, "ef_assoc_2": 10, "efhand_ca_insen": 10, "egf": 10, "egf_2": 10, "egf_3": 10, "egf_ca": 10, "egf_msp1_1": 10, "egf_tenascin": 10, "egf_alliinas": 10, "egl": 10, "ehd_n": 10, "ehn": 10, "eh_signatur": 10, "ei24": 10, "eif4": 10, "eif_2_alpha": 10, "eii": 10, "gut": 10, "sor": 10, "eiia": 10, "man": 10, "eiibc": 10, "gut_c": 10, "gut_n": 10, "eiic": 10, "gat": 10, "eiid": 10, "aga": 10, "ein3": 10, "ekal": 10, "eklf_tad1": 10, "eklf_tad2": 10, "ekr": 10, "elf": 10, "elfv_dehydrog": 10, "elfv_dehydrog_n": 10, "elh": 10, "elk": 10, "ell": 10, "elm2": 10, "elmo_arm": 10, "elmo_ced12": 10, "elo": 10, "elp6": 10, "eli": 10, "bb": 10, "ema": 10, "emc1_c": 10, "emc3_tmco1": 10, "emc6": 10, "emc6_arch": 10, "emc7_beta": 10, "sandw": 10, "emg1": 10, "emi": 10, "emp24_gp25l": 10, "emp70": 10, "enod40": 10, "enod93": 10, "ent": 10, "enth": 10, "eos1": 10, "ep400_n": 10, "epf": 10, "epl1": 10, "epop": 10, "epo_tpo": 10, "epsp_synthas": 10, "eptp": 10, "er": 10, "erap1_c": 10, "ercc3_rad25_c": 10, "ercc4": 10, "erf": 10, "erg2_sigma1r": 10, "erg4_erg24": 10, "ergic_n": 10, "erk": 10, "jnk_inhib": 10, "erm_c": 10, "erm_hel": 10, "ero1": 10, "er_lumen_recept": 10, "erbeta_n": 10, "erp29": 10, "erp29_n": 10, "esag1": 10, "escrt": 10, "esf1": 10, "esm4": 10, "esp": 10, "espr": 10, "esr1_c": 10, "esss": 10, "est1": 10, "est1_dna_bind": 10, "esx": 10, "1_espg": 10, "etaa1": 10, "etc_c1_ndufa5": 10, "etf": 10, "etf_qo": 10, "etf_alpha": 10, "etramp": 10, "ets_pea3_n": 10, "etx_mtx2": 10, "eurl": 10, "evc2_lik": 10, "ev": [10, 15], "evi2a": 10, "exosc1": 10, "ex": 10, "ezh2_n": 10, "ezh2_wd": 10, "e_pc_c": 10, "e_motif": 10, "ead_ea22": 10, "eaf7": 10, "eama": 10, "eap1": 10, "eapp_c": 10, "earp": 10, "ebp2": 10, "ebsa": 10, "eckl": 10, "eccd": 10, "ecc": 10, "ecl1": 10, "eclos": 10, "ecm29": 10, "ecm33": 10, "eco57i": 10, "ecoei_r_c": 10, "ecor124_c": 10, "ecori": 10, "ecorii": 10, "ecori_methylas": 10, "ecotin": 10, "ecpb_c": 10, "ecsb": 10, "ecsc": 10, "ectoine_synth": 10, "edc3_link": 10, "effector_1": 10, "efg1": 10, "egh16": 10, "ehal": 10, "ehbp": 10, "ehrlichia_rpt": 10, "eipa": 10, "eipb_lik": 10, "eisosome1": 10, "elf1": 10, "elf4": 10, "elicitin": 10, "eloa": 10, "bp1": 10, "elong": 10, "fact": [10, 17], "p_c": 10, "elong_iki1": 10, "elongin_a": 10, "emfourin": 10, "emr1": 10, "emr": 10, "eny2": 10, "enamelin": 10, "ena": 10, "end3": 10, "endiii_4f": 10, "end_n_termin": 10, "end_beta_propel": 10, "end_tail_spik": 10, "endou_bacteria": 10, "endomucin": 10, "endonuc": 10, "bglii": 10, "bsobi": 10, "ecorv": 10, "hincii": 10, "mspi": 10, "pvuii": 10, "dimeri": 10, "endonuc_bgli": 10, "endonuc_hol": 10, "endonuc_subdom": 10, "endonuclea_ns_2": 10, "endonuclease_1": 10, "endonuclease_5": 10, "endonuclease_7": 10, "endonuclease_n": 10, "endopep_inhib": 10, "endostatin": 10, "endosulfin": 10, "endothelin": 10, "endotoxin_c": 10, "endotoxin_c2": 10, "endotoxin_m": 10, "endotoxin_n": 10, "engrail_1_c_sig": 10, "enkurin": 10, "eno": 10, "rase_fad_bd": 10, "rase_nadh_b": 10, "enolase_c": 10, "enolase_n": 10, "enolase_like_n": 10, "enoyl_reductas": 10, "enta_immun": 10, "entericidin": 10, "enterochelin_n": 10, "enterotoxin_st": 10, "enterotoxin_a": 10, "enterotoxin_b": 10, "epcam_n": 10, "ependymin": 10, "epha2_tm": 10, "ephrin": 10, "ephrin_lbd": 10, "ephrin_rec_lik": 10, "epiglycanin_c": 10, "epiglycanin_tr": 10, "epimeras": 10, "epimerase_2": 10, "epiplasmin": 10, "eplus_motif": 10, "epmc": 10, "epor_lig": 10, "epsg": 10, "epsilon_antitox": 10, "epta_b_n": 10, "epua": 10, "erf4": 10, "erg28": 10, "ermc": 10, "ermin": 10, "erp_c": 10, "erv26": 10, "ery_res_leader1": 10, "erythro": 10, "erythro_estera": 10, "es2": 10, "esv_1_7_ci": 10, "espa": 10, "espa_esp": 10, "espb": 10, "espb_p": 10, "espf": 10, "espg": 10, "essa": 10, "esta_ig_lik": 10, "esteras": 10, "esterase_phb": 10, "etd1": 10, "ethd": 10, "ets1_n_flank": 10, "euta": 10, "eutb": 10, "eutc": 10, "euth": 10, "eutk_c": 10, "eutn_ccml": 10, "eutq": 10, "evf": 10, "evr1_alr": 10, "exbd": 10, "exc": 10, "excalibur": 10, "exo5": 10, "exo70": 10, "exo84_c": 10, "exod": 10, "exox": 10, "exo_endo_pho": 10, "exo_endo_phos_2": 10, "exo_endo_phos_3": 10, "exog_c": 10, "exonuc_viii": 10, "exonuc_vii_l": 10, "exonuc_vii_": 10, "exonuc_v_gamma": 10, "exonuc_x": 10, "exop_c": 10, "exosortase_epsh": 10, "exostosin": 10, "exotox": 10, "a_catali": 10, "a_target": 10, "expansin_c": 10, "exportin": 10, "exsd": 10, "extensin": 10, "extensin_1": 10, "extensin_2": 10, "ezh2_mcss": 10, "ezra": 10, "112": 10, "actin_cap_a": 10, "like_2": 10, "box_4": 10, "box_5": 10, "f1f0": 10, "atpsyn_f": 10, "f420h2_quin_r": 10, "f420_ligas": 10, "f420_oxidor": 10, "f5_f8_type_c": 10, "fa": 10, "faa_hydro_n_2": 10, "faa_hydrolas": 10, "faa_hydrolase_n": 10, "spt16_nlob": 10, "fad": 10, "sldh": 10, "oxidase_c": 10, "fad_sox": 10, "fad_binding_1": 10, "fad_binding_2": 10, "fad_binding_3": 10, "fad_binding_4": 10, "fad_binding_5": 10, "fad_binding_6": 10, "fad_binding_7": 10, "fad_binding_8": 10, "fad_binding_9": 10, "fad_oxidor": 10, "fad_syn": 10, "fae1_cut1_rppa": 10, "faf": 10, "faim1": 10, "faint": 10, "fam101": 10, "fam104": 10, "fam110_c": 10, "fam110_n": 10, "fam117": 10, "fam124": 10, "fam131": 10, "fam150": 10, "fam153": 10, "fam163": 10, "fam165": 10, "fam167": 10, "fam176": 10, "fam177": 10, "fam180": 10, "fam181": 10, "fam183": 10, "fam184": 10, "fam192a_fyv6_n": 10, "fam193_c": 10, "fam194": 10, "fam195": 10, "fam196": 10, "fam198": 10, "fam199x": 10, "fam209": 10, "fam210a": 10, "b_dom": 10, "fam212": 10, "fam216b": 10, "fam217": 10, "fam219a": 10, "fam220": 10, "fam221": 10, "fam222a": 10, "fam24": 10, "fam25": 10, "fam27": 10, "fam32a": 10, "fam35_c": 10, "fam47": 10, "fam53": 10, "fam60a": 10, "fam70": 10, "fam72": 10, "fam75": 10, "fam76": 10, "fam83": 10, "fam86": 10, "fam91_c": 10, "fam91_n": 10, "fam92": 10, "fancaa": 10, "fanca_interact": 10, "fancd2o": 10, "fancf": 10, "fanci_hd1": 10, "fanci_hd2": 10, "fanci_s1": 10, "fanci_s2": 10, "fanci_s3": 10, "fanci_s4": 10, "fancl_c": 10, "fancl_d1": 10, "fancl_d2": 10, "fancl_d3": 10, "fancm": 10, "mhf_bd": 10, "fanc_sap": 10, "fao_m": 10, "fap": 10, "fap206": 10, "far1": 10, "farp": 10, "fast_1": 10, "fast_2": 10, "fas_i_h": 10, "fas_n": 10, "fas_meand": 10, "fat": 10, "fatc": 10, "faxc_n": 10, "fa_fanc": 10, "fa_desaturas": 10, "fa_desaturase_2": 10, "fa_hydroxylas": 10, "fa_synthesi": 10, "fba": 10, "fba_1": 10, "fba_2": 10, "fba_3": 10, "fbd": 10, "fbo_c": 10, "fbp_c": 10, "fbpase": 10, "fbpase_2": 10, "fbpase_3": 10, "fbpase_c": 10, "fbpase_glpx": 10, "fbxl18_lrr": 10, "fb_lectin": 10, "fcd": 10, "fch": 10, "fcp1_c": 10, "fcsd": 10, "flav_bind": 10, "fdc": 10, "sp": [10, 16], "fdf": 10, "fdx": 10, "acb": 10, "ferm_c": 10, "ferm_f1": 10, "ferm_f2": 10, "ferm_m": 10, "ferm_n": 10, "ferm_n_2": 10, "ferm_f0": 10, "fez": 10, "ff": 10, "fg": 10, "gap": 10, "gap_2": 10, "gap_3": 10, "fgar": 10, "at_n": 10, "at_link": 10, "fge": 10, "sulfatas": 10, "fgf": 10, "fggy_c": 10, "fggy_n": 10, "fgase": 10, "fh2": 10, "fha": 10, "fha_2": 10, "fhipep": 10, "fibp": 10, "fiind": 10, "fimp": 10, "fin1": 10, "fisna": 10, "fist_c": 10, "fit1_2": 10, "fivar": 10, "fkbp26_c": 10, "fkbp_c": 10, "fkbp_n": 10, "fkbp_n_2": 10, "fks1_dom1": 10, "fktn_n": 10, "flilhelta": 10, "flywch": 10, "flywch_n": 10, "flywch_u": 10, "flgd_tudor": 10, "fmn_bind": 10, "fmn_bind_2": 10, "fmn_dh": 10, "fmn_red": 10, "fmo": 10, "fmp23": 10, "fn3_7": 10, "fnip": 10, "fnip_c": 10, "fnip_m": 10, "fnip_n": 10, "fog_n": 10, "foln": 10, "fop_dim": 10, "foxo": 10, "tad": 10, "foxo_kix_bdg": 10, "foxp": 10, "fpl": 10, "fpn1": 10, "fpp": 10, "fprl1_inhibitor": 10, "fr47": 10, "frb_dom": 10, "frg": 10, "frg1": 10, "frg2": 10, "frp": 10, "frq": 10, "fsap_sig_propep": 10, "fsa_c": 10, "fsh1": 10, "fsip1": 10, "fsip2": 10, "fta2": 10, "fta4": 10, "ftcd": 10, "ftcd_c": 10, "ftcd_n": 10, "fth": 10, "fthf": 10, "fto_ctd": 10, "fto_ntd": 10, "ftp": [10, 16], "ftr": 10, "ftr1": 10, "ftr_c": 10, "ftsw_roda_spov": 10, "ftz": 10, "fun14": 10, "fur": 10, "fusc": 10, "fusc_2": 10, "fut8_n_cat": 10, "fwwh": 10, "fxmrp1_c_core": 10, "fxmr_c2": 10, "fxr_c1": 10, "fxr_c3": 10, "fxa_inhibit": 10, "fydln_acid": 10, "fyrc": 10, "fyrn": 10, "fytt": 10, "fyve": 10, "fyve_2": 10, "f_actin_bind": 10, "f_actin_bund_c": 10, "f_actin_cap_b": 10, "f_bp_aldolas": 10, "faba": 10, "fada": 10, "fadr_c": 10, "faea": 10, "fam20c": 10, "fancd2": 10, "fanconi_a": 10, "fanconi_a_n": 10, "fanconi_c": 10, "fapa": 10, "fapa_n": 10, "fapy_dna_glyco": 10, "far": 10, "17a_aig1": 10, "fas_alpha_acp": 10, "fasciclin": 10, "fascin": 10, "fbpc_c_termin": 10, "fcf1": 10, "fcf2": 10, "fcot": 10, "fcta": 10, "fdhd": 10, "narq": 10, "fdhe": 10, "fdsd": 10, "fdta": 10, "fe": 10, "adh_2": 10, "s_assembli": 10, "s_biosyn": 10, "fes_assembly_p": 10, "fethred_a": 10, "fethred_b": 10, "fe_bilin_r": 10, "fe_dep_repr_c": 10, "fe_dep_repress": 10, "fe_hyd_ssu": 10, "fe_hyd_lg_c": 10, "fea1": 10, "feccd": 10, "fecr": 10, "feld": 10, "i_b": 10, "fels1": 10, "femab": 10, "femab_lik": 10, "feoa": 10, "feob_c": 10, "feob_cyto": 10, "feob_n": 10, "feob_associ": 10, "feoc": 10, "fer2": 10, "fer2_2": 10, "fer2_3": 10, "fer2_4": 10, "fer2_bfd": 10, "fer4": 10, "fer4_10": 10, "fer4_11": 10, "fer4_12": 10, "fer4_13": 10, "fer4_14": 10, "fer4_15": 10, "fer4_16": 10, "fer4_17": 10, "fer4_18": 10, "fer4_19": 10, "fer4_2": 10, "fer4_20": 10, "fer4_21": 10, "fer4_22": 10, "fer4_23": 10, "fer4_24": 10, "fer4_3": 10, "fer4_4": 10, "fer4_5": 10, "fer4_6": 10, "fer4_7": 10, "fer4_8": 10, "fer4_9": 10, "fer4_nifh": 10, "fera": 10, "ferb": 10, "feri": 10, "ferlin_c": 10, "ferredoxin_n": 10, "ferric_reduct": 10, "ferritin": 10, "ferritin_2": 10, "ferrochelatas": 10, "fes1": 10, "fez1": 10, "fhaa_n": 10, "fhuf": 10, "fhuf_c": 10, "fib_alpha": 10, "fib_succ_major": 10, "fibin": 10, "fibrillarin": 10, "fibrillarin_2": 10, "fibrillin_u_n": 10, "fibrinogen_bp": 10, "fibrinogen_c": 10, "fibrinogen_ac": 10, "fibritin_c": 10, "fibroin_p25": 10, "fic": 10, "fic_n": 10, "fidl_lik": 10, "fig1": 10, "filr1_middl": 10, "fil_haemagg": 10, "fil_haemagg_2": 10, "filaggrin": 10, "filament": 10, "filament_head": 10, "filamin": 10, "filo_vp35": 10, "fima": 10, "fimh_man": 10, "fimbrial": 10, "fimbrial_cs1": 10, "fimbrial_k88": 10, "fimbrial_pily2": 10, "fimbrillin_c": 10, "fin": 10, "fino_n": 10, "fip1": 10, "fis1_tpr_c": 10, "fis1_tpr_n": 10, "fixg_c": 10, "fixh": 10, "fixo": 10, "fixp_n": 10, "fixq": 10, "fix": [10, 11, 15], "flaa": 10, "flac_arch": 10, "flae": 10, "flaf": 10, "flag": [10, 11, 15, 17], "flag1_repress": 10, "flagellar_put": 10, "flagellar_rod": 10, "flagellin_c": 10, "flagellin_d3": 10, "flagellin_in": 10, "flagellin_n": 10, "flavi_dead": 10, "flavi_ns1": 10, "flavi_ns5": 10, "flavin_reduct": 10, "flavodoxin_1": 10, "flavodoxin_2": 10, "flavodoxin_3": 10, "flavodoxin_4": 10, "flavodoxin_5": 10, "flavodoxin_ndri": 10, "flavokinas": 10, "flavoprotein": 10, "flbd": 10, "flbt": 10, "fleq": 10, "flgd": 10, "flgd_ig": 10, "flgh": 10, "flgi": 10, "flgm": 10, "flgn": 10, "flgo": 10, "flgt_c": 10, "flgt_m": 10, "flgt_n": 10, "flg_bb_rod": 10, "flg_bbr_c": 10, "flg_hook": 10, "flg_new": 10, "flg_new_2": 10, "flhc": 10, "flhd": 10, "flhe": 10, "flic": 10, "flic_sp": 10, "flid_c": 10, "flid_n": 10, "flie": 10, "flig_c": 10, "flig_m": 10, "flig_n": 10, "flih": 10, "flij": 10, "flil": 10, "flim": 10, "flimn_c": 10, "flin_n": 10, "flio": 10, "flip": 10, "fli": [10, 14], "flis_cochap": 10, "flit": 10, "fliw": 10, "flix": 10, "flo11": 10, "floa": 10, "flocculin": 10, "flocculin_t3": 10, "flot": 10, "flp1_like": 10, "flpd": 10, "flp_c": 10, "flp_fap": 10, "flp_n": 10, "flt3_lig": 10, "flumu_n": 10, "flu_m1": 10, "flu_m1_c": 10, "flu_ns2": 10, "flu_pa": 10, "flu_pb1": 10, "flxa": 10, "fmda_amda": 10, "fmde": 10, "fmip_thoc5": 10, "fmp27": 10, "fmp27_gfwdk": 10, "fmp27_sw": 10, "fmp27_wppw": 10, "fmro": 10, "fn3": 10, "fn3_assoc": 10, "fn_bind": 10, "fop_dupl": 10, "foamy_virus_env": 10, "focadhesin": 10, "focal_at": 10, "foie": 10, "gras_1": 10, "foki_d1": 10, "foki_d3": 10, "foki_cleav_dom": 10, "foki_dom_2": 10, "folb": 10, "folate_carri": 10, "folate_rec": 10, "folliculin": 10, "folliculin_c": 10, "forkhead": 10, "forkhead_n": 10, "deh_tran": 10, "form_nir_tran": 10, "formin_gbd_n": 10, "formyl_trans_c": 10, "formyl_trans_n": 10, "fox": 10, "fpoo": 10, "fra10ac1": 10, "frag1": 10, "fragx_ip": 10, "frankia_peptid": 10, "frataxin_cyai": 10, "frem_n": 10, "frhb_fdhb_c": 10, "frhb_fdhb_n": 10, "frigida": 10, "fring": 10, "frizzl": 10, "frpc": 10, "frsa": 10, "frtz": 10, "fructosamin_kin": 10, "fry_c": 10, "fst_toxin": 10, "ftrd": 10, "ftsa": 10, "ftsa_c": 10, "ftsh_ext": 10, "ftsj": 10, "ftsk_4tm": 10, "ftsk_spoiiie": 10, "ftsk_spoiiie_n": 10, "ftsk_alpha": 10, "ftsk_gamma": 10, "ftsl": 10, "ftsl_2": 10, "ftsq_divib_c": 10, "ftsx": 10, "ftsx_ecd": 10, "ftsz_c": 10, "fuct_n": 10, "fucokinas": 10, "fucose_iso_c": 10, "fucose_iso_n1": 10, "fucose_iso_n2": 10, "fucosidase_c": 10, "fumarasec_c": 10, "fumarate_red_c": 10, "fumarate_red_d": 10, "fumbl": 10, "fumeras": 10, "fumerase_c": 10, "fun_atp": 10, "fungal_ka1": 10, "fungal_tacc": 10, "fungal_lectin": 10, "fungal_lectin_2": 10, "fungal_tran": 10, "fungal_trans_2": 10, "fungu": 10, "induc": 10, "fur_reg_fbpa": 10, "fur_reg_fbpb": 10, "furin": 10, "fuseless": 10, "fusion_gli": 10, "fuz_longin_1": 10, "fuz_longin_2": 10, "fuz_longin_3": 10, "fve": 10, "fxsa": 10, "fz": 10, "fzo_mitofusin": 10, "gamma": 10, "patch": 10, "patch_2": 10, "g0": 10, "g1_switch_2": 10, "g10": 10, "g2br": 10, "g2f": 10, "g3p_acyltransf": 10, "g3p_antiterm": 10, "g5": 10, "g6b": 10, "g6pd_c": 10, "g6pd_n": 10, "g6pd_bact": 10, "g8": 10, "ga": 10, "gaad": 10, "gabp": 10, "gad": 10, "gaf": 10, "gaf_2": 10, "gaf_3": 10, "gaga": 10, "gaga_bind": 10, "gagbd": 10, "gage": 10, "gain": 10, "gain_a": 10, "gap1": 10, "gapes1": 10, "gapes2": 10, "gapes3": 10, "gapes4": 10, "gapt": 10, "garp": 10, "gars_a": 10, "gars_c": 10, "gars_n": 10, "gas2": 10, "gasa": 10, "gash": 10, "gata": 10, "gatas": 10, "gatase1_lik": 10, "gatase_2": 10, "gatase_3": 10, "gatase_4": 10, "gatase_5": 10, "gatase_6": 10, "gatase_7": 10, "gbbh": 10, "gbp": 10, "gbp_c": 10, "gbp_psp": 10, "gbp_repeat": 10, "gbr2_cc": 10, "gbs_bsp": 10, "gbv": 10, "c_env": 10, "gcd14": 10, "gcd14_n": 10, "gcfc": 10, "gchy": 10, "gch_iii": 10, "gcip": 10, "gck": 10, "gcm": 10, "gcn5l1": 10, "gcom2": 10, "gcp5": 10, "mod21": 10, "gcp6_n": 10, "gcp_c_termin": 10, "gcp_n_termin": 10, "gcr": 10, "gcr1_c": 10, "gc": 10, "gcs2": 10, "gcsf": 10, "gcv_h": 10, "gcv_t": 10, "gcv_t_c": 10, "gda1_cd39": 10, "gdc": 10, "gde_c": 10, "gde_n": 10, "gde_n_bi": 10, "gdh_n": 10, "gdi": 10, "gdnf": 10, "gdpd": 10, "gdpd_2": 10, "gdp_man_dehyd": 10, "gdwwsh": 10, "gdyxxlxi": 10, "gd_ah_c": 10, "gd_n": 10, "ged": 10, "gemin8": 10, "gen1_c": 10, "gep5": 10, "get2": 10, "get4": 10, "gethr": 10, "geve": 10, "gfa": 10, "gfd1": 10, "gfo_idh_moca": 10, "gfo_idh_moca_c": 10, "gfo_idh_moca_c2": 10, "gfp": 10, "gfrp": 10, "gf_recep_iv": 10, "ggact": 10, "gga_n": 10, "ggdef": 10, "ggdef_2": 10, "gggtgrt": 10, "ggn": 10, "gh": 10, "gh101_n": 10, "gh114_assoc": 10, "gh115_c": 10, "gh131_n": 10, "gh3": 10, "gh43_c": 10, "gh43_c2": 10, "gh97_c": 10, "gh97_n": 10, "ghbp": 10, "ghd": 10, "ghl10": 10, "ghl13": 10, "ghl15": 10, "ghl5": 10, "ghl6": 10, "ghmp_kinases_c": 10, "ghmp_kinases_n": 10, "gida": 10, "gida_c": 10, "gide": 10, "giim": 10, "gilt": 10, "gip1_n": 10, "git1_c": 10, "git_cc": 10, "git_shd": 10, "gii": 10, "yig": 10, "giy_yig_domain": 10, "gkap": 10, "gle1": 10, "gleya": 10, "glf": 10, "gltp": 10, "gltscr1": 10, "gltt": 10, "glycam": 10, "gm130_c": 10, "gmap": 10, "gmc_oxred_c": 10, "gmc_oxred_n": 10, "gmp_pde_delta": 10, "gmp_synt_c": 10, "gm_csf": 10, "gn3l_grn1": 10, "gnat_c": 10, "gnat_acetyltr_2": 10, "gnat_acetyltran": 10, "gnat_lik": 10, "gnt": 10, "gnvr": 10, "go": [10, 11, 17], "like_e_set": 10, "gold_2": 10, "golga2l5": 10, "gon": 10, "gp17": 10, "gp24_25": 10, "gp38": 10, "gp3_packag": 10, "gp40": 10, "gp41": 10, "gp44": 10, "gp46": 10, "gp52": 10, "gp63": 10, "gp68": 10, "gp70": 10, "gp79": 10, "gp88": 10, "gpat_c": 10, "gpat_n": 10, "gpcr_chapero_1": 10, "gpdpase_memb": 10, "gpd_nad_c_bact": 10, "gphh": 10, "gphr_n": 10, "gpi": 10, "gpi2": 10, "gpp34": 10, "gpr15l": 10, "gpr_gpa2_c": 10, "gp": 10, "gps2_interact": 10, "gpw_gp25": 10, "gra6": 10, "grab": 10, "gram": 10, "gra": 10, "grasp55_65": 10, "grda": 10, "grdb": 10, "grdp": 10, "greb1": 10, "greb1_c": 10, "grim": 10, "grin_c": 10, "grip": 10, "grp": 10, "gsap": 10, "16": [10, 14], "gscfa": 10, "gsdh": 10, "gsg": 10, "gsh": 10, "s_atp": 10, "s_n": 10, "gshpx": 10, "gsh_synth_atp": 10, "gsh_synthas": 10, "gsiii_n": 10, "gsk": 10, "3_bind": 10, "gskip_dom": 10, "gsp_synth": 10, "gst_c": 10, "gst_c_2": 10, "gst_c_3": 10, "gst_c_4": 10, "gst_c_5": 10, "gst_c_6": 10, "gst_n": 10, "gst_n_2": 10, "gst_n_3": 10, "gst_n_4": 10, "gst_n_5": 10, "gsu_c4xc__c2xch": 10, "gt": 10, "gt87": 10, "gta_tim": 10, "gta_holin_3tm": 10, "gtf2i": 10, "gtp": 10, "bdg_m": 10, "bdg_n": 10, "gtp1_obg": 10, "gtp_ch_n": 10, "gtp_eftu": 10, "gtp_eftu_d2": 10, "gtp_eftu_d3": 10, "gtp_eftu_d4": 10, "gtp_cyclohydro2": 10, "gtp_cyclohydroi": 10, "gtpase_bind": 10, "gtse1_n": 10, "gub_wak_bind": 10, "guct": 10, "gun4": 10, "gun4_n": 10, "gw": 10, "gwt1": 10, "gwxtd_dom": 10, "gxgxg": 10, "gxwxg": 10, "gyd": 10, "gyf": 10, "gyf_2": 10, "gyr": 10, "g_glu_transpept": 10, "g_path_suppress": 10, "gaa1": 10, "gag_ma": 10, "gag_p10": 10, "gag_p12": 10, "gag_p17": 10, "gag_p24": 10, "gag_p24_c": 10, "gag_p30": 10, "gal": 10, "0_sulfotr": 10, "bind_lectin": 10, "gal11_abd1": 10, "gal4_dim": 10, "galbd_lik": 10, "galkase_gal_bdg": 10, "galp_udp_tr_c": 10, "galp_udp_transf": 10, "gal_galnac_35kd": 10, "gal_lectin": 10, "gal_mutarotas_2": 10, "gal_mutarotas_3": 10, "galactosyl_t": 10, "galanin": 10, "gallidermin": 10, "gam": 10, "thionin": 10, "gamma_pga_hydro": 10, "gar1": 10, "gas_vesicl": 10, "gas_vesicle_c": 10, "gasdermin": 10, "gasdermin_c": 10, "gastrin": 10, "gatb_n": 10, "gatb_yqei": 10, "gatd_n": 10, "gatz_kbaz": 10, "gate": 10, "gb3_synth": 10, "gbpa_2": 10, "gbpc": 10, "gcd10p": 10, "gcn1_n": 10, "gcna_n": 10, "gcpe": 10, "gcra": 10, "gcw_chp": 10, "ge1_wd40": 10, "gelsolin": 10, "gema": 10, "gemin6": 10, "gemin6_c": 10, "gemin7": 10, "gemini_al1": 10, "gemini_al1_m": 10, "gemini_al2": 10, "gemini_bl1": 10, "gemini_v2": 10, "gemini_coat": 10, "geminin": 10, "gene66": 10, "gera": 10, "gerd": 10, "gere": 10, "gerpb": 10, "gerpc": 10, "gerp": 10, "german": 10, "get2_lik": 10, "get5_c": 10, "get5_bdg": 10, "gho": 10, "gidb": 10, "gifsi": 10, "gin": 10, "git3": 10, "gla": 10, "glcnac": 10, "1_reg": 10, "glcnac_2": 10, "epim": 10, "glcv_c_termin": 10, "gldc": 10, "gldh_lipo": 10, "gldm_c": 10, "gldm_n": 10, "gldn": 10, "glft2_domain3": 10, "glft2_n": 10, "glge_dom_n_": 10, "glg": 10, "glgx_c": 10, "gliadin": 10, "gln": 10, "ter": 10, "synt_n": 10, "synt_n_2": 10, "glnd_ur_utas": 10, "glne": 10, "gln_amidas": 10, "gln_deamidase_2": 10, "globin": 10, "gloverin": 10, "glpm": 10, "glrx": 10, "glt_symport": 10, "glu": 10, "trnagln": 10, "glurs_n": 10, "glur_hom": 10, "bdg": 10, "glu_cyclase_2": 10, "glu_cys_ligas": 10, "glu_dehyd_c": 10, "glu_syn_centr": 10, "glu_synthas": 10, "glucan_synthas": 10, "glucodextran_b": 10, "glucodextran_c": 10, "glucodextran_n": 10, "glucokinas": 10, "gluconate_2": 10, "dh3": 10, "glucos_trans_ii": 10, "glucosamine_iso": 10, "glucosaminidas": 10, "glug": 10, "glutr_n": 10, "glutr_dim": 10, "glutaminas": 10, "glutaredoxin": 10, "glutaredoxin2_c": 10, "glutenin_hmw": 10, "gly": 10, "rich_ago1": 10, "zipper_omp": 10, "zipper_ompa": 10, "zipper_ymgg": 10, "gly_acyl_tr_c": 10, "gly_acyl_tr_n": 10, "gly_kinas": 10, "gly_rad": 10, "gly_reductas": 10, "gly_rich": 10, "gly_rich_sfcg": 10, "gly_transf_sug": 10, "gly_transport": 10, "glyc_hyd_38c_2": 10, "glyco_h_20c_c": 10, "glyco_hyd_101c": 10, "glyco_hyd_65n_2": 10, "glyco_hydr_116n": 10, "glyco_hydr_30_2": 10, "glyco_hydro2_c5": 10, "glyco_hydro38c2": 10, "glyco_hydro81c": 10, "glyco_hydro_1": 10, "glyco_hydro_10": 10, "glyco_hydro_100": 10, "glyco_hydro_101": 10, "glyco_hydro_106": 10, "glyco_hydro_108": 10, "glyco_hydro_11": 10, "glyco_hydro_114": 10, "glyco_hydro_115": 10, "glyco_hydro_12": 10, "glyco_hydro_125": 10, "glyco_hydro_127": 10, "glyco_hydro_129": 10, "glyco_hydro_130": 10, "glyco_hydro_14": 10, "glyco_hydro_15": 10, "glyco_hydro_16": 10, "glyco_hydro_17": 10, "glyco_hydro_18": 10, "glyco_hydro_19": 10, "glyco_hydro_2": 10, "glyco_hydro_20": 10, "glyco_hydro_20b": 10, "glyco_hydro_25": 10, "glyco_hydro_26": 10, "glyco_hydro_28": 10, "glyco_hydro_2_c": 10, "glyco_hydro_2_n": 10, "glyco_hydro_3": 10, "glyco_hydro_30": 10, "glyco_hydro_30c": 10, "glyco_hydro_31": 10, "glyco_hydro_32c": 10, "glyco_hydro_32n": 10, "glyco_hydro_35": 10, "glyco_hydro_36": 10, "glyco_hydro_36c": 10, "glyco_hydro_36n": 10, "glyco_hydro_38": 10, "glyco_hydro_38c": 10, "glyco_hydro_38n": 10, "glyco_hydro_39": 10, "glyco_hydro_3_c": 10, "glyco_hydro_4": 10, "glyco_hydro_42": 10, "glyco_hydro_42c": 10, "glyco_hydro_42m": 10, "glyco_hydro_43": 10, "glyco_hydro_44": 10, "glyco_hydro_45": 10, "glyco_hydro_46": 10, "glyco_hydro_47": 10, "glyco_hydro_48": 10, "glyco_hydro_49": 10, "glyco_hydro_49n": 10, "glyco_hydro_4c": 10, "glyco_hydro_52": 10, "glyco_hydro_53": 10, "glyco_hydro_56": 10, "glyco_hydro_57": 10, "glyco_hydro_59": 10, "glyco_hydro_59m": 10, "glyco_hydro_5_c": 10, "glyco_hydro_6": 10, "glyco_hydro_62": 10, "glyco_hydro_63": 10, "glyco_hydro_63n": 10, "glyco_hydro_64": 10, "glyco_hydro_65c": 10, "glyco_hydro_65n": 10, "glyco_hydro_65m": 10, "glyco_hydro_66": 10, "glyco_hydro_67c": 10, "glyco_hydro_67m": 10, "glyco_hydro_67n": 10, "glyco_hydro_68": 10, "glyco_hydro_7": 10, "glyco_hydro_70": 10, "glyco_hydro_71": 10, "glyco_hydro_72": 10, "glyco_hydro_75": 10, "glyco_hydro_76": 10, "glyco_hydro_77": 10, "glyco_hydro_79c": 10, "glyco_hydro_79n": 10, "glyco_hydro_8": 10, "glyco_hydro_80": 10, "glyco_hydro_81": 10, "glyco_hydro_85": 10, "glyco_hydro_88": 10, "glyco_hydro_9": 10, "glyco_hydro_92": 10, "glyco_hydro_92n": 10, "glyco_hydro_97": 10, "glyco_hydro_98c": 10, "glyco_hydro_98m": 10, "glyco_hydro_99": 10, "glyco_hydro_cc": 10, "glyco_tran_10_n": 10, "glyco_tran_28_c": 10, "glyco_tran_wbsx": 10, "glyco_tran_wecg": 10, "glyco_tranf_2_2": 10, "glyco_tranf_2_3": 10, "glyco_tranf_2_4": 10, "glyco_tranf_2_5": 10, "glyco_trans_1_2": 10, "glyco_trans_1_3": 10, "glyco_trans_1_4": 10, "glyco_trans_2_3": 10, "glyco_trans_4_2": 10, "glyco_trans_4_3": 10, "glyco_trans_4_4": 10, "glyco_trans_4_5": 10, "glyco_trans_a_1": 10, "glyco_transf_10": 10, "glyco_transf_11": 10, "glyco_transf_15": 10, "glyco_transf_17": 10, "glyco_transf_18": 10, "glyco_transf_20": 10, "glyco_transf_21": 10, "glyco_transf_22": 10, "glyco_transf_24": 10, "glyco_transf_25": 10, "glyco_transf_28": 10, "glyco_transf_29": 10, "glyco_transf_34": 10, "glyco_transf_36": 10, "glyco_transf_4": 10, "glyco_transf_41": 10, "glyco_transf_43": 10, "glyco_transf_49": 10, "glyco_transf_5": 10, "glyco_transf_52": 10, "glyco_transf_54": 10, "glyco_transf_56": 10, "glyco_transf_6": 10, "glyco_transf_61": 10, "glyco_transf_64": 10, "glyco_transf_7c": 10, "glyco_transf_7n": 10, "glyco_transf_8": 10, "glyco_transf_88": 10, "glyco_transf_8c": 10, "glyco_transf_9": 10, "glyco_transf_90": 10, "glyco_transf_92": 10, "glycoamylas": 10, "glycogen_syn": 10, "glycohydro_20b2": 10, "glycolipid_bind": 10, "glycolyt": 10, "glycophorin_a": 10, "glycoprotein": 10, "glycoprotein_b": 10, "glycos_trans_3n": 10, "glycos_transf_1": 10, "glycos_transf_2": 10, "glycos_transf_3": 10, "glycos_transf_4": 10, "glycos_transf_n": 10, "glyoxal_oxid_n": 10, "glyoxalas": 10, "glyoxalase_2": 10, "glyoxalase_3": 10, "glyoxalase_4": 10, "glyoxalase_5": 10, "glyoxalase_6": 10, "glyoxalase_7": 10, "glyoxalase_8": 10, "glyphos_transf": 10, "glypican": 10, "gmad1": 10, "gmad2": 10, "gmx_para_cxxcg": 10, "gnhr_tran": 10, "gnrh": 10, "gnsab_toxin": 10, "gntp_permeas": 10, "gntr": 10, "goloco": 10, "golgin_a5": 10, "gon7": 10, "goodby": 10, "got1": 10, "gp13": 10, "gp138_n": 10, "gp23": 10, "gp3": 10, "gp37": 10, "gp49": 10, "gp58": 10, "gp5_c": 10, "gpa_atpas": 10, "gpa_nucleas": 10, "gp_dh_c": 10, "gp_dh_n": 10, "gpcrrhopsn4": 10, "gpi1": 10, "gpi16": 10, "gpr1_fun34_yaah": 10, "grampos_pilinbb": 10, "grampos_pilind1": 10, "grampos_pilind3": 10, "gram_pos_anchor": 10, "granin": 10, "granulin": 10, "grea_greb": 10, "grea_greb_n": 10, "grg1": 10, "grlr": 10, "ground": 10, "grp7_allergen": 10, "grpb": 10, "grpe": 10, "gryzun": 10, "gsf2": 10, "gsha": 10, "gspa_srpa_n": 10, "gsph": 10, "gspl_c": 10, "gti1_pac2": 10, "gtr1_raga": 10, "gtra": 10, "guanylate_cyc": 10, "guanylate_cyc_2": 10, "guanylate_kin": 10, "guanylin": 10, "gutm": 10, "gvpd_p": 10, "loop": [10, 17], "gvpd_br2": 10, "gvpg": 10, "gvph": 10, "gvpk": 10, "gvpl_gvpf": 10, "gvpo": 10, "gxdly": 10, "gxgyxyp_c": 10, "gxgyxyp_n": 10, "gypsi": 10, "gyrb_insert": 10, "gyri": 10, "k_atpase_n": 10, "kinase_dim": 10, "h2o2_yaad": 10, "h2th": 10, "ha1": 10, "ha2": 10, "habp4_pai": 10, "rbp1": 10, "had": 10, "had_2": 10, "had_sak_1": 10, "had_sak_2": 10, "hagh_c": 10, "halz": 10, "hamp": 10, "hamp_2": 10, "hamp_n3": 10, "hand": [10, 16], "hap": 10, "hap1_n": 10, "hap2": 10, "gcs1": 10, "hare": 10, "hth": 10, "harp": 10, "barrel": 10, "hat": 10, "hatpase_c": 10, "hatpase_c_2": 10, "hatpase_c_3": 10, "hatpase_c_4": 10, "hatpase_c_5": 10, "hat_kat11": 10, "hau": 10, "augmin3": 10, "haus2": 10, "haus4": 10, "haus5": 10, "haus6_n": 10, "hbb": 10, "hbd": 10, "hbm": 10, "hbs1_n": 10, "hc2": 10, "hcbp_relat": 10, "hcmv_ul139": 10, "hcngp": 10, "hco3_cotransp": 10, "hcr": 10, "hd": 10, "zip_n": 10, "hda2": 10, "hdac4_gln": 10, "hdc": 10, "hdnr": 10, "hdod": 10, "hdpd": 10, "hd_3": 10, "hd_4": 10, "hd_5": 10, "hd_6": 10, "hd_assoc": 10, "hd_assoc_2": 10, "heat": 10, "heat_2": 10, "heat_ez": 10, "heat_pb": 10, "heat_uf": 10, "heca": 10, "hect": 10, "hect_2": 10, "hecw1_helix": 10, "hecw_n": 10, "hef_hk": 10, "help": [10, 16], "hem4": 10, "hepn": 10, "like_int": 10, "hepn_abia_ctd": 10, "hepn_abiu2": 10, "hepn_abiv": 10, "hepn_apea": 10, "hepn_cthe2314": 10, "hepn_dzip3": 10, "hepn_la2681": 10, "hepn_mae_28990": 10, "hepn_res_ntd1": 10, "hepn_ribol": 10, "psp": 10, "hepn_rnasel": 10, "hepn_sav2148": 10, "hepn_sav_6107": 10, "hepn_sty4199": 10, "hepn_swt1": 10, "hepn_toprim_n": 10, "heppp_synt_1": 10, "herv": 10, "k_rec": 10, "k_env_2": 10, "het": 10, "s_218": 10, "289": 10, "hewd": 10, "hexim": 10, "hgal": 10, "hgd": 10, "hgsnat_cat": 10, "hgtp_anticodon": 10, "hgtp_anticodon2": 10, "hgwp": 10, "hha": 10, "hhh": 10, "hhh_2": 10, "hhh_3": 10, "hhh_4": 10, "hhh_5": 10, "hhh_6": 10, "hhh_7": 10, "hhh_8": 10, "hhh_9": 10, "hhl1": 10, "hhv": 10, "1_vabd": 10, "hh_signal": 10, "hi0933_lik": 10, "hif": 10, "1a_ctad": 10, "high_ntase1": 10, "high_ntase1_ass": 10, "hig_1_n": 10, "hilpda": 10, "him1": 10, "hin": 10, "hind": [10, 14], "hip1_clath_bdg": 10, "hipip": 10, "hiran": 10, "hira_b": 10, "hit": 10, "hjurp_c": 10, "hjurp_mid": 10, "hk": 10, "hk97": 10, "gp10_like": 10, "hkr_arcb_tm": 10, "hk_sensor": 10, "hlh": 10, "hma": 10, "hma_2": 10, "hmbd": 10, "hmd": 10, "hmg": 10, "coa_r": 10, "hmg14_17": 10, "hmgl": 10, "hmg_coa_synt_c": 10, "hmg_coa_synt_n": 10, "hmg_box": 10, "hmg_box_2": 10, "hmg_box_5": 10, "hmmr_c": 10, "hmmr_n": 10, "hmw1c_n": 10, "hmw1_d2": 10, "hnf": 10, "1a_c": 10, "1b_c": 10, "hnf_c": 10, "hnh": 10, "hnh_2": 10, "hnh_3": 10, "hnh_4": 10, "hnh_5": 10, "hnh_repeat": 10, "hnhc_6": 10, "hnob": 10, "hnoba": 10, "hoasn": 10, "hoatz": 10, "hochob": 10, "hoip": 10, "uba": 10, "hok_gef": 10, "hook": [10, 14], "hook_n": 10, "horma": 10, "hp0268": 10, "hp1451_c": 10, "hpd": 10, "hphlawli": 10, "hpih": 10, "hpip": 10, "hpip_lik": 10, "hpp": 10, "hppk": 10, "hps3_c": 10, "hps3_mid": 10, "hps3_n": 10, "hps6": 10, "hps6_c": 10, "hptransfas": 10, "hp_omp": 10, "hp_omp_2": 10, "hr1": 10, "hrct1": 10, "hrdc": 10, "hrg": 10, "hri1": 10, "hrm": 10, "hrob": 10, "hrxxh": 10, "hr_lesion": 10, "hs1_rep": 10, "hsa": [10, 14, 15], "hsbp1": 10, "hscb_c": 10, "hsd3": 10, "hsdr_n": 10, "hsdr_n_2": 10, "hsf_dna": 10, "hsl_n": 10, "hsm3_c": 10, "hsm3_n": 10, "hsnsd": 10, "hsp20": 10, "hsp33": 10, "hsp70": 10, "hsp90": 10, "hsp9_hsp12": 10, "hsr": 10, "hthp": 10, "hth_1": 10, "hth_10": 10, "hth_11": 10, "hth_12": 10, "hth_13": 10, "hth_15": 10, "hth_16": 10, "hth_17": 10, "hth_18": 10, "hth_19": 10, "hth_20": 10, "hth_21": 10, "hth_22": 10, "hth_23": 10, "hth_24": 10, "hth_25": 10, "hth_26": 10, "hth_27": 10, "hth_28": 10, "hth_29": 10, "hth_3": 10, "hth_30": 10, "hth_31": 10, "hth_32": 10, "hth_33": 10, "hth_34": 10, "hth_35": 10, "hth_36": 10, "hth_37": 10, "hth_38": 10, "hth_39": 10, "hth_40": 10, "hth_41": 10, "hth_42": 10, "hth_43": 10, "hth_44": 10, "hth_45": 10, "hth_46": 10, "hth_47": 10, "hth_48": 10, "hth_49": 10, "hth_5": 10, "hth_50": 10, "hth_51": 10, "hth_52": 10, "hth_53": 10, "hth_54": 10, "hth_55": 10, "hth_56": 10, "hth_57": 10, "hth_58": 10, "hth_59": 10, "hth_6": 10, "hth_60": 10, "hth_61": 10, "hth_62": 10, "hth_63": 10, "hth_7": 10, "hth_8": 10, "hth_9": 10, "hth_abp1_n": 10, "hth_arac": 10, "hth_asnc": 10, "hth_codi": 10, "hth_crp_2": 10, "hth_deor": 10, "hth_iclr": 10, "hth_mga": 10, "hth_orfb_is605": 10, "hth_pafc": 10, "hth_parb": 10, "hth_sun2": 10, "hth_tnp_1": 10, "hth_tnp_1_2": 10, "hth_tnp_2": 10, "hth_tnp_4": 10, "hth_tnp_is1": 10, "hth_tnp_is630": 10, "hth_tnp_isl3": 10, "hth_tnp_mu_1": 10, "hth_tnp_mu_2": 10, "hth_tnp_tc3_1": 10, "hth_tnp_tc3_2": 10, "hth_tnp_tc5": 10, "hth_whia": 10, "hth_micro": 10, "hth_psq": 10, "ht": 10, "hu": 10, "ccdc81_bac_1": 10, "ccdc81_bac_2": 10, "ccdc81_euk_1": 10, "ccdc81_euk_2": 10, "dna_bdg": 10, "hig": 10, "hun": 10, "hvo_2753_zbp": 10, "hvsl": 10, "hwe_hk": 10, "hxxee": 10, "hxxshh": 10, "hyls1_c": 10, "hypk_uba": 10, "hyr": 10, "hzs_alpha": 10, "h_ppase": 10, "h_lectin": 10, "haem_bd": 10, "haem_oxygenas_2": 10, "haemocyan_bet_": 10, "hairy_orang": 10, "halod1": 10, "halod2": 10, "halx": 10, "halo_gvpc": 10, "halogen_hydrol": 10, "ham1p_lik": 10, "hama": 10, "hamartin": 10, "hap4_hap_bind": 10, "hapk": 10, "harakiri": 10, "harpin": 10, "hasa": 10, "haspin_kinas": 10, "hat1_n": 10, "hbp": 10, "hbrb": 10, "hc1": 10, "hce2": 10, "hcgb": 10, "hcgc": 10, "hcgf": 10, "hcybio": 10, "hdcb": 10, "hdea": 10, "heh": 10, "helo": 10, "he_pig": 10, "head": 10, "tail_con": 10, "head_bind": 10, "headcas": 10, "helicase_c": 10, "helicase_c_2": 10, "helicase_c_3": 10, "helicase_c_4": 10, "helicase_iv_n": 10, "helicase_pwi": 10, "helicase_recd": 10, "helicase_sgs1": 10, "heliorhodopsin": 10, "helitron_like_n": 10, "helo_like_n": 10, "helveticin_j": 10, "hemn_c": 10, "hem": 10, "hemx": 10, "hemy_n": 10, "hemagglutinin": 10, "hemebinding_shp": 10, "heme_oxygenas": 10, "hemerythrin": 10, "hemocyanin_c": 10, "hemocyanin_m": 10, "hemocyanin_n": 10, "hemolysincabind": 10, "hemolysin_n": 10, "hemopexin": 10, "hen1_l": 10, "hen1_lam_c": 10, "hepii_c": 10, "hept": 10, "hep_59": 10, "hep_core_n": 10, "hepar_ii_iii": 10, "hepar_ii_iii_n": 10, "hepatitis_cor": 10, "hepcidin": 10, "hepsin": 10, "srcr": 10, "hera_c": 10, "herpes_bllf1": 10, "herpes_blrf2": 10, "herpes_helicas": 10, "herpes_ie68": 10, "herpes_lmp1": 10, "herpes_lmp2": 10, "herpes_taf50": 10, "herpes_u55": 10, "herpes_ul52": 10, "herpes_ul92": 10, "herpes_us12": 10, "herpes_glycop_h": 10, "herpes_ori_bp": 10, "herpes_pp38": 10, "herpes_pp85": 10, "herpes_teg_n": 10, "herpeto_peptid": 10, "hetr_c": 10, "hex_iiia": 10, "hexapep": 10, "hexapep_2": 10, "hexapep_loop": 10, "hexokinase_1": 10, "hexokinase_2": 10, "hexose_dehydrat": 10, "hflk_n": 10, "hflx_c": 10, "hfq": 10, "hfx_cass5": 10, "hgma_c": 10, "hgma_n": 10, "gpd": 10, "hiabd2": 10, "hica_toxin": 10, "hicb": 10, "hicb_lk_antitox": 10, "hid1": 10, "higb": 10, "like_toxin": 10, "higb_toxin": 10, "hint": 10, "hint_2": 10, "hipa_2": 10, "hipa_c": 10, "hipn": 10, "hira": 10, "hisg": 10, "hisg_c": 10, "hisk": 10, "hiska": 10, "hiska_2": 10, "hiska_3": 10, "hiska_4tm": 10, "hiska_7tm": 10, "hisk_n": 10, "hisk_sensor": 10, "his_me_b4a2": 10, "his_phos_1": 10, "his_phos_2": 10, "his_bind": 10, "his_biosynth": 10, "his_kinas": 10, "his_lead": 10, "hist_deacetyl": 10, "hist_rich_ca": 10, "histidinol_dh": 10, "histon": 10, "histone_h2a_c": 10, "histone_hn": 10, "hit1_c": 10, "hjc": 10, "hlyc": 10, "hlyd_2": 10, "hlyd_3": 10, "hlyd_d23": 10, "hlyd_d4": 10, "hlye": 10, "hlyiii": 10, "hlyu": 10, "hmui": 10, "hmw_cfap97": 10, "hnrnpa1": 10, "hnrnp_m_nl": 10, "hoba": 10, "hofp": 10, "hol_tox": 10, "holin_2": 10, "holin_9": 10, "holin_bhla": 10, "holin_blya": 10, "holin_spp1": 10, "hom_end": 10, "hom_end_hint": 10, "homeobox_kn": 10, "homeodomain": 10, "homez": 10, "homoserine_dh": 10, "hopa1": 10, "hopj": 10, "hopw1": 10, "hormone_1": 10, "hormone_2": 10, "hormone_3": 10, "hormone_4": 10, "hormone_5": 10, "hormone_6": 10, "hormone_recep": 10, "host_attach": 10, "hox9_act": 10, "hoxa13_n": 10, "hpab": 10, "hpab_n": 10, "hpap": 10, "hpch_hpai": 10, "hph": 10, "hpr_kinase_c": 10, "hpr_kinase_n": 10, "hpre_dip_synt_i": 10, "hpt": 10, "hpua": 10, "hrca": 10, "hrca_dna": 10, "hrpa_pilin": 10, "hrpb1_hrpk": 10, "hrpb2": 10, "hrpb4": 10, "hrpb7": 10, "hrpb_c": 10, "hrpe": 10, "hrpf": 10, "hrpj": 10, "hrs_helic": 10, "hs1pro": 10, "hsba": 10, "hscb_4_cy": 10, "hsdm_n": 10, "htaa": 10, "htr2": 10, "htrl_yibb": 10, "hum_adeno_e3a": 10, "humanin": 10, "hupe_urej": 10, "hupe_urej_2": 10, "hupf_hypc": 10, "huph_c": 10, "hus1": 10, "hutd": 10, "hutp": 10, "hva1_tudor": 10, "hxlr": 10, "hyae": 10, "hyaluronidase_1": 10, "hyca_repressor": 10, "hych": 10, "hyci": 10, "hyccin": 10, "hydf_dim": 10, "hydf_tetram": 10, "hyd_wa": 10, "hydant_a_c": 10, "hydant_a_n": 10, "hydantoinase_a": 10, "hydantoinase_b": 10, "hydin_adk": 10, "hydrolas": 10, "hydrolase_2": 10, "hydrolase_3": 10, "hydrolase_4": 10, "hydrolase_6": 10, "hydrolase_lik": 10, "hydrophob_se": 10, "hydrophobin": 10, "hydrophobin_2": 10, "hypa": 10, "hypd": 10, "hypf_c": 10, "hyphal_reg_cwp": 10, "hypoth_ymh": 10, "hyr1": 10, "egf_1": 10, "iatp": 10, "iat_beta": 10, "ibb": 10, "ibd": 10, "ibn_n": 10, "ibp39": 10, "ibr": 10, "ica69": 10, "icam_n": 10, "icap": 10, "1_inte_bdg": 10, "icat": 10, "ice2": 10, "icea": 10, "icl": 10, "icmt": 10, "ideal": 10, "idh": 10, "ido": 10, "ier": 10, "ies5": 10, "IF": 10, "2b": 10, "if2_n": 10, "if2_assoc": 10, "if3_c": 10, "if3_n": 10, "if4": 10, "ifn": 10, "ifngr1": 10, "ifp_35_n": 10, "ifrd": 10, "ifrd_c": 10, "IFS": 10, "ift20": 10, "ift43": 10, "ift46_b_c": 10, "ift57": 10, "ift81_ch": 10, "iftap": 10, "igf2_c": 10, "igfbp": 10, "igfl": 10, "igpd": 10, "igp": 10, "igr": 10, "ihabp4_n": 10, "iho1": 10, "iigp": 10, "ikbkb_sdd": 10, "iki3": 10, "ikkbetanemobind": 10, "il1": 10, "il10": 10, "il11": 10, "il12": 10, "il12p40_c": 10, "il13": 10, "il15": 10, "il17": 10, "il17r_d_n": 10, "il17r_fniii_d1": 10, "il17r_fniii_d2": 10, "il17_r_n": 10, "il1_propep": 10, "il2": 10, "il22": 10, "il23": 10, "il28a": 10, "il2rb_n1": 10, "il3": 10, "il31": 10, "il32": 10, "il33": 10, "il34": 10, "il3ra_n": 10, "il4": 10, "il4ra_n": 10, "il4_i_ig": 10, "il5": 10, "il6": 10, "il6ra": 10, "il7": 10, "il8": 10, "ilei": 10, "ilvd_edd": 10, "imcp": 10, "imd": 10, "iml1": 10, "imp2_c": 10, "imp2_n": 10, "impdh": 10, "imp_cyclohyd": 10, "impa_n_2": 10, "impa_hel": 10, "im": 10, "ims_c": 10, "ims_hhh": 10, "imup": 10, "inca1": 10, "incenp_ark": 10, "incenp_n": 10, "ing": 10, "ino80_ies4": 10, "inpp5b_ph": 10, "insc_lbd": 10, "insig": 10, "intap": 10, "ints2": 10, "ints5_c": 10, "ints5_n": 10, "int_sg_ddx_ct_c": 10, "int_rpt": 10, "inv_n": 10, "in_dbd_c": 10, "ipk": 10, "ipp": 10, "ippt": 10, "ipt": 10, "iptl": 10, "cterm": 10, "ipu_b_solenoid": 10, "ip_tran": 10, "iqcj": 10, "schip1": 10, "iq_sec7_ph": 10, "ir1": 10, "irf": 10, "2bp1_2": 10, "irk": 10, "irk_c": 10, "irk_n": 10, "ir": 10, "iset": 10, "fn3_linker": 10, "isg65": 10, "75": 10, "isk_channel": 10, "isn1": 10, "isp1_c": 10, "isp3_c": 10, "ispd_c": 10, "itam": 10, "iti_hc_c": 10, "iu_nuc_hydro": 10, "izumo": 10, "i_lweq": 10, "ialb": 10, "ibs_toxin": 10, "icea2": 10, "ice_bind": 10, "ice_nucl": 10, "iclr": 10, "icmf": 10, "related_n": 10, "icmf_c": 10, "ifi": 10, "iggfc_bind": 10, "igg_binding_b": 10, "ig_2": 10, "ig_3": 10, "ig_4": 10, "ig_5": 10, "ig_6": 10, "ig_7": 10, "ig_c17orf99": 10, "ig_c19orf38": 10, "ig_glcnas": 10, "ig_j_chain": 10, "ig_tie2_1": 10, "ig_mannosidas": 10, "igaa": 10, "iglc": 10, "il13ra_ig": 10, "il2rg": 10, "ilm1": 10, "ilvb_lead": 10, "ilvc": 10, "ilvgeda_lead": 10, "ilvn": 10, "ima1_n": 10, "img2": 10, "iml2": 10, "tpr_39": 10, "imm": 10, "ntf2": 10, "imm1": 10, "imm10": 10, "imm12": 10, "imm15": 10, "imm17": 10, "imm19": 10, "imm2": 10, "imm21": 10, "imm25": 10, "imm26": 10, "imm27": 10, "imm3": 10, "imm30": 10, "imm31": 10, "imm32": 10, "imm35": 10, "imm39": 10, "imm40": 10, "imm41": 10, "imm42": 10, "imm43": 10, "imm44": 10, "imm45": 10, "imm47": 10, "imm48": 10, "imm49": 10, "imm5": 10, "imm50": 10, "imm51": 10, "imm52": 10, "imm53": 10, "imm57": 10, "imm58": 10, "imm59": 10, "imm6": 10, "imm61": 10, "imm63": 10, "imm64": 10, "imm65": 10, "imm68": 10, "imm7": 10, "imm70": 10, "imm71": 10, "imm72": 10, "imm74": 10, "imm8": 10, "imm9": 10, "imme5": 10, "imm_superinfect": 10, "imp": 10, "ygjv": 10, "impa_n": 10, "importin_rep": 10, "importin_rep_2": 10, "importin_rep_3": 10, "importin_rep_4": 10, "importin_rep_5": 10, "importin_rep_6": 10, "inpas": 10, "inaf": 10, "incd": 10, "inc": 10, "incf": 10, "incfii_repa": 10, "indigoidine_a": 10, "inh": 10, "inhibitor_g39p": 10, "inhibitor_i10": 10, "inhibitor_i29": 10, "inhibitor_i34": 10, "inhibitor_i36": 10, "inhibitor_i42": 10, "inhibitor_i48": 10, "inhibitor_i53": 10, "inhibitor_i66": 10, "inhibitor_i67": 10, "inhibitor_i68": 10, "inhibitor_i69": 10, "inhibitor_i71": 10, "inhibitor_i78": 10, "inhibitor_i9": 10, "inhibitor_mig": 10, "init_trna_pt": 10, "inj_translocas": 10, "inlk_d3": 10, "innexin": 10, "ino80_iec3": 10, "ino": 10, "p_synth": 10, "inositol_p": 10, "inovirus_g7p_1": 10, "inovirus_g7p_2": 10, "inovirus_gp2": 10, "inp1": 10, "ins134_p3_kin": 10, "ins134_p3_kin_n": 10, "ins145_p3_rec": 10, "ins_p5_2": 10, "kin": 10, "ins_allergen_rp": 10, "ins_beta": 10, "insc_c": 10, "insulin": 10, "insulin_tmd": 10, "ints14_c": 10, "ints14_b": 10, "integrase_1": 10, "integrase_2": 10, "integrase_dna": 10, "integrase_h2c2": 10, "integrase_zn": 10, "integrin_b_tail": 10, "integrin_alpha": 10, "integrin_alpha2": 10, "integrin_b_cyt": 10, "integrin_beta": 10, "intein_spl": 10, "interf": 10, "interferon": 10, "internalin_n": 10, "intg_mem_tp0381": 10, "intimin_c": 10, "intron_maturas2": 10, "ints3_n": 10, "intu_longin_1": 10, "intu_longin_2": 10, "intu_longin_3": 10, "inv": 10, "aad": 10, "inve_ad": 10, "invh": 10, "invas_spak": 10, "invasin_d3": 10, "involucrin": 10, "involucrin2": 10, "involucrin_n": 10, "ion_tran": 10, "ion_trans_2": 10, "ion_trans_n": 10, "ipab_evca": 10, "ipac_sipc": 10, "ipgd": 10, "ipi1_n": 10, "ireb": 10, "irma": 10, "iron_permeas": 10, "iron_traff": 10, "iron_transport": 10, "ish1": 10, "island": 10, "iso_dh": 10, "isochorismatas": 10, "ispa": 10, "ispd": 10, "ist1": 10, "istb_is21": 10, "isy1": 10, "itfg2": 10, "iuca_iucc": 10, "ivi": 10, "iwr1": 10, "ig": 10, "jab": 10, "jakmip_cc3": 10, "jamp": 10, "jcad": 10, "jhbp": 10, "jhd": 10, "jhy": 10, "jip_lzii": 10, "jlpa": 10, "jmy": 10, "jsrp": 10, "jtb": 10, "jupit": 10, "jacalin": 10, "jag_n": 10, "jagun": 10, "jak1_phl": 10, "jas_motif": 10, "jiraiya": 10, "jiv90": 10, "jmjc": 10, "jmjc_2": 10, "jmjn": 10, "jnk": 10, "sapk_ap_n": 10, "josephin": 10, "joubert": 10, "jun": 10, "k1377": 10, "ka1": 10, "kaag1": 10, "kap": 10, "kap_ntpas": 10, "kar": 10, "kar9": 10, "kash": 10, "kash_ccd": 10, "kasynt_c_assoc": 10, "kbp_c": 10, "kbtb_w": 10, "lir": 10, "kch": 10, "kcnq2_u3": 10, "kcnqc3": 10, "g_bd": 10, "kcnq_channel": 10, "kct2": 10, "kctd11_21_c": 10, "kctd18_c": 10, "kctd4_c": 10, "kdgp_aldolas": 10, "kdz": 10, "kelaa": 10, "kelk": 10, "kgg": 10, "kgk": 10, "kha": 10, "kh_1": 10, "kh_10": 10, "kh_2": 10, "kh_4": 10, "kh_5": 10, "kh_6": 10, "kh_7": 10, "kh_8": 10, "kh_9": 10, "kh_dom": 10, "ki67r": 10, "kiaa1328": 10, "kid": 10, "kif1b": 10, "kip1": 10, "kix": 10, "kix_2": 10, "kklcag1": 10, "klraq": 10, "kmp11": 10, "kn17_sh3": 10, "knox1": 10, "knox2": 10, "kntase_c": 10, "kn_motif": 10, "kora": 10, "kow": 10, "kpbb_c": 10, "kpp10_orf10": 10, "kr": 10, "krab": 10, "krap_ip3r_bind": 10, "krba1": 10, "kre1": 10, "krtap": 10, "krtap7": 10, "krtdap": 10, "kti12": 10, "ktsc": 10, "k_channel_tid": 10, "k_tran": 10, "kaia": 10, "kaib": 10, "kapb": 10, "katanin_con80": 10, "kazal_1": 10, "kazal_2": 10, "kazal_3": 10, "kbaa": 10, "kcnmb2_inactiv": 10, "kdgm": 10, "kdgt": 10, "kdo": 10, "kdo_hydroxi": 10, "kdpa": 10, "kdpc": 10, "kdpd": 10, "kdui": 10, "kei1": 10, "kelch_1": 10, "kelch_2": 10, "kelch_3": 10, "kelch_4": 10, "kelch_5": 10, "kelch_6": 10, "keratin": 10, "keratin_2_head": 10, "keratin_2_tail": 10, "keratin_b2": 10, "keratin_b2_2": 10, "keratin_assoc": 10, "keratin_matx": 10, "ketoacyl": 10, "synt_2": 10, "kfra_n": 10, "kfrb": 10, "kiaa1109_n": 10, "kicb": 10, "kila": 10, "kin17_mid": 10, "kinb_sensor": 10, "kinas": 10, "pppase": 10, "kindlin_2_n": 10, "kinesin": 10, "kinesin_assoc": 10, "kinetochor_ybp2": 10, "kinocilin": 10, "kisspeptin": 10, "klee": 10, "knl1_rwd_c": 10, "korb": 10, "korb_c": 10, "kp4": 10, "kpta_kdcl": 10, "kre28": 10, "kre9_knh": 10, "kre9_knh1_c": 10, "kri1": 10, "kri1_c": 10, "kringl": 10, "ksha_c": 10, "ku": 10, "ku_c": 10, "ku_n": 10, "ku_pk_bind": 10, "kunitz_bpti": 10, "kunitz_legum": 10, "kv2channel": 10, "kxdl": 10, "kxykxgkxw_sig": 10, "fibroin": 10, "l27": 10, "l27_1": 10, "l27_2": 10, "l27_n": 10, "l31": 10, "l51_s25_ci": 10, "b8": 10, "l6_membran": 10, "l71": 10, "la": 10, "virus_coat": 10, "lab_n": 10, "lag1": 10, "dnabind": 10, "laglidadg_1": 10, "laglidadg_2": 10, "laglidadg_3": 10, "laglidadg_whia": 10, "laika": 10, "lal_c2": 10, "lamtor": 10, "lamtor5": 10, "lam_c": 10, "lanc_lik": 10, "lap1_c": 10, "lap1_n": 10, "lap2alpha": 10, "lara_dom": 10, "las2": 10, "lat": 10, "lat2": 10, "lax": 10, "lbp_bpi_cetp": 10, "lbp_bpi_cetp_c": 10, "lbp_c": 10, "lbp_m": 10, "lbr_tudor": 10, "lcat": 10, "lccl": 10, "lcd1": 10, "lce": 10, "lce6a": 10, "lcib_c_ca": 10, "lcm": 10, "ldb19": 10, "ld_cluster2": 10, "ld_cluster3": 10, "ldcluster4": 10, "leap": 10, "lea_1": 10, "lea_2": 10, "lea_3": 10, "lea_4": 10, "lea_5": 10, "lea_6": 10, "ledgf": 10, "lef": 10, "leh": 10, "lelp1": 10, "lem": 10, "lep503": 10, "letm1_rbd": 10, "letm2_n": 10, "lgfp": 10, "lgt": 10, "lhc": 10, "lhh": 10, "lias_n": 10, "lid": 10, "lidhydrolas": 10, "lifr_d2": 10, "lifr_n": 10, "lif_osm": 10, "lig3_brct": 10, "lim": 10, "lime1": 10, "lim_bind": 10, "lin37": 10, "lin52": 10, "lin9_c": 10, "lines_c": 10, "lines_n": 10, "lip": 10, "lip1": 10, "lix1": 10, "lkaaear": 10, "llc1": 10, "llcfc1": 10, "llgl": 10, "lmbr1": 10, "lmf1": 10, "lmp": 10, "lmsten": 10, "lmwpc": 10, "lmwslp_n": 10, "lnp1": 10, "lns2": 10, "lnt_n": 10, "lob": 10, "loh1cr12": 10, "lon_substr_bdg": 10, "lor": 10, "lpam_1": 10, "lpam_2": 10, "lpd1": 10, "lpd11": 10, "lpd13": 10, "lpd14": 10, "lpd15": 10, "lpd16": 10, "lpd18": 10, "lpd22": 10, "lpd23": 10, "lpd24": 10, "lpd25": 10, "lpd26": 10, "lpd28": 10, "lpd29": 10, "lpd3": 10, "lpd30": 10, "lpd34": 10, "lpd37": 10, "lpd38": 10, "lpd39": 10, "lpd5": 10, "lpd7": 10, "lpg_synthase_c": 10, "lpg_synthase_tm": 10, "lpmo_10": 10, "lpp": 10, "lpp20": 10, "lrat": 10, "lrif1": 10, "lrr19": 10, "tm": 10, "lrrc37": 10, "lrrc37ab_c": 10, "lrrct": 10, "lrrct_2": 10, "lrrfip": 10, "lrrnt": 10, "lrrnt_2": 10, "lrr_1": 10, "lrr_10": 10, "lrr_11": 10, "lrr_2": 10, "lrr_3": 10, "lrr_4": 10, "lrr_5": 10, "lrr_6": 10, "lrr_8": 10, "lrr_9": 10, "lrr_ri_cap": 10, "lrr_adjac": 10, "lrs4": 10, "lrv": 10, "lrv_fe": 10, "lsdat_euk": 10, "lsdat_prok": 10, "lsm": 10, "lsm14": 10, "lsm_int_assoc": 10, "lspr": 10, "lsr": 10, "lst1": 10, "ltd": 10, "ltp_2": 10, "ltv": 10, "ltxxq": 10, "luc7": 10, "lud_dom": 10, "lurap": 10, "lvivd": 10, "lxg": 10, "lyric": 10, "lyrm2": 10, "lytb": 10, "lz3wch": 10, "lz_tnp_is481": 10, "lz_tnp_is66": 10, "l_hmgic_fpl": 10, "l_biotic_typea": 10, "l_lac_phage_msp": 10, "l_lactis_repb_c": 10, "l_protein_n": 10, "la_hth_kdcl": 10, "laa1_sip1_htr5": 10, "lacab_rpib": 10, "laci": 10, "lacy_symp": 10, "lacz_4": 10, "lac_bphage_repr": 10, "lact": 10, "deh": 10, "memb": 10, "lact_bio_phlas": 10, "lactamase_b": 10, "lactamase_b_2": 10, "lactamase_b_3": 10, "lactamase_b_4": 10, "lactamase_b_5": 10, "lactamase_b_6": 10, "lactate_perm": 10, "lactococcin": 10, "lactococcin_972": 10, "lactonas": 10, "lamb": 10, "lamb_ycsf": 10, "lambda_bor": 10, "lambda_ciii": 10, "lambda_kil": 10, "lambda_tail_i": 10, "laminin_b": 10, "laminin_egf": 10, "laminin_g_1": 10, "laminin_g_2": 10, "laminin_g_3": 10, "laminin_i": 10, "laminin_ii": 10, "laminin_n": 10, "lamp": 10, "lamprin": 10, "lant_dehydr_c": 10, "lant_dehydr_n": 10, "lantibiotic_a": 10, "lapa": 10, "lapa_dom": 10, "lapd_moxy_n": 10, "lap": 10, "lar_n": 10, "lar_restr_allev": 10, "las1": 10, "late_protein_l2": 10, "laterosporulin": 10, "latexin": 10, "latrophilin": 10, "latrotoxin_c": 10, "lbh": 10, "lcng": 10, "lcrg": 10, "lcrr": 10, "lcrv": 10, "ldh_1_c": 10, "ldh_1_n": 10, "ldh_2": 10, "ldi": 10, "ldl_recept_a": 10, "ldl_recept_b": 10, "ldpa_c": 10, "ldr_toxin": 10, "ldt_c": 10, "leader_cpa1": 10, "leader_erm": 10, "leader_thr": 10, "leader_trp": 10, "lebercilin": 10, "lectin_c": 10, "lectin_c_term": 10, "lectin_n": 10, "lectin_leg": 10, "lectin_legb": 10, "lectin_lik": 10, "leg1": 10, "legc3_n": 10, "legionella_omp": 10, "lema": 10, "leo1": 10, "lepa_c": 10, "lepb_gap_c": 10, "lepb_gap_n": 10, "lepb_n": 10, "lep_receptor_ig": 10, "leptin": 10, "leua_dim": 10, "leu_phe_tran": 10, "leu_lead": 10, "leu_zip": 10, "leucyl": 10, "leuk": 10, "a4": [10, 14], "hydro_c": 10, "leukocidin": 10, "lexa_dna_bind": 10, "lge1": 10, "lgl_c": 10, "lhr_wh": 10, "licd": 10, "lida_long_cc": 10, "liga": 10, "ligb": 10, "ligd_n": 10, "ligt_peas": 10, "ligxa_c": 10, "lig_c": 10, "lig_chan": 10, "glu_bd": 10, "ligase_coa": 10, "ligase_coa_2": 10, "lin": 10, "lin0512_fam": 10, "linker_histon": 10, "linocin_m18": 10, "lip_a_acyltran": 10, "lip_prot_lig_c": 10, "lipas": 10, "lipase3_n": 10, "lipase_2": 10, "lipase_3": 10, "lipase_c": 10, "lipase_gdsl": 10, "lipase_gdsl_2": 10, "lipase_gdsl_3": 10, "lipase_gdsl_lk": 10, "lipase_bact_n": 10, "lipase_chap": 10, "lipid_d": 10, "lipid_bd": 10, "lipid_desat": 10, "lipin_n": 10, "lipin_mid": 10, "lipl32": 10, "lipocalin": 10, "lipocalin_2": 10, "lipocalin_3": 10, "lipocalin_4": 10, "lipocalin_5": 10, "lipocalin_7": 10, "lipocalin_8": 10, "lipocalin_9": 10, "lipoprot_c": 10, "lipoprotein_10": 10, "lipoprotein_11": 10, "lipoprotein_15": 10, "lipoprotein_16": 10, "lipoprotein_17": 10, "lipoprotein_18": 10, "lipoprotein_19": 10, "lipoprotein_2": 10, "lipoprotein_20": 10, "lipoprotein_21": 10, "lipoprotein_22": 10, "lipoprotein_23": 10, "lipoprotein_3": 10, "lipoprotein_6": 10, "lipoprotein_7": 10, "lipoprotein_8": 10, "lipoprotein_9": 10, "lipoprotein_ltp": 10, "lipoprotein_x": 10, "lipoxygenas": 10, "lir1": 10, "lish": 10, "lish_2": 10, "lish_tpl": 10, "lktc": 10, "lmea": 10, "lmjf365940": 10, "lnmk_n_hdf": 10, "loda_c": 10, "loda_n": 10, "lola": 10, "lola_2": 10, "lola_3": 10, "lola_lik": 10, "lolb": 10, "lonb_aaa": 10, "lonc_hel": 10, "lon_c": 10, "longin": 10, "longin_2": 10, "loricrin": 10, "lpob": 10, "lpqn": 10, "lppa": 10, "lppc": 10, "lppx_lprafg": 10, "lpqv": 10, "lpri": 10, "lptc": 10, "lptd": 10, "lptd_2": 10, "lptd_n": 10, "lpte": 10, "lptf_lptg": 10, "lpxb": 10, "lpxc": 10, "lpxd": 10, "lpxi_c": 10, "lpxi_n": 10, "lpxk": 10, "lrga": 10, "lrgb": 10, "lsmad": 10, "lsm_c": 10, "lsm_interact": 10, "lsr2": 10, "lssy_c": 10, "ltra": 10, "ltua": 10, "ltub": 10, "lum_bind": 10, "lumazine_bd_2": 10, "lung_7": 10, "tm_r": 10, "lupa": 10, "lustrin_cystein": 10, "lutb_c": 10, "luxc": 10, "lux": 10, "luxq": 10, "periplasm": 10, "luxt_c": 10, "ly": 10, "6_relat": 10, "ly49": 10, "lyase_1": 10, "lyase_8": 10, "lyase_8_c": 10, "lyase_8_n": 10, "lyase_n": 10, "lyase_aromat": 10, "lyase_catalyt": 10, "lycopene_cyc": 10, "lycopene_cycl": 10, "lydb": 10, "aminomut_a": 10, "lyse": 10, "lysm": 10, "lysr_substr": 10, "lys_orn_oxgnas": 10, "lys_export": 10, "lysine_decarbox": 10, "lysozyme_lik": 10, "lysyl_oxidas": 10, "lytb_ww": 10, "lytr_c": 10, "lytr_cpsa_psr": 10, "lyttr": 10, "lyx_isom": 10, "lzipper": 10, "mip1": 10, "factor": 10, "inducer_phosp": 10, "m16c_assoc": 10, "m20_dimer": 10, "m60": 10, "m64_n": 10, "ma": 10, "mit": 10, "ma3": 10, "maal_c": 10, "maal_n": 10, "macpf": 10, "mad": 10, "madf_dna_bdg": 10, "mage": 10, "mage_n": 10, "magi_u1": 10, "magi_u5": 10, "magp": 10, "magsp": 10, "maguk_n_pest": 10, "majin": 10, "malt1_ig": 10, "mam": 10, "mam1": 10, "mam33": 10, "manec": 10, "map17": 10, "map1b_neuraxin": 10, "map2_projctn": 10, "map3k_traf_bd": 10, "map65_ase1": 10, "map7": 10, "map70": 10, "mapeg": 10, "mapkk1_int": 10, "marck": 10, "marf1_lotu": 10, "marf1_rrm1": 10, "marvel": 10, "mar_sialic_bdg": 10, "mas20": 10, "mase1": 10, "mase2": 10, "mase3": 10, "mase4": 10, "mase5": 10, "mat1": 10, "matalpha_hmgbox": 10, "mba1": 10, "mbd": 10, "mbd_c": 10, "mbda": 10, "mbf1": 10, "mbf2": 10, "mbg": 10, "mbg_2": 10, "mbg_3": 10, "mboat": 10, "mboat_2": 10, "mbr1": 10, "mbt": 10, "mc1": 10, "mc2": 10, "mc3": 10, "mc4": 10, "mc5": 10, "mc6": 10, "mc7": 10, "mc8": 10, "mcafunc": 10, "mcc": 10, "bdg_pdz": 10, "mcca_bt": 10, "mccd1": 10, "mcd": 10, "mcd_n": 10, "mch": 10, "mclc": 10, "mcm": 10, "mcm2_n": 10, "mcm3ap_ganp": 10, "mcm6_c": 10, "mcm_n": 10, "mcm_ob": 10, "mcm_bind": 10, "mcm_lid": 10, "mcp1_tm": 10, "mcpsignal": 10, "mcr": 10, "mcra": 10, "mcrs_n": 10, "mcr_c": 10, "mcr_d": 10, "mcr_alpha": 10, "mcr_alpha_n": 10, "mcr_beta": 10, "mcr_beta_n": 10, "mcr_gamma": 10, "mcu": 10, "mc_hydratas": 10, "mcomp1": 10, "mdd_c": 10, "mdfi": 10, "mdh": 10, "mdm1": 10, "mdm10": 10, "mdm31_mdm32": 10, "mdmpi_c": 10, "mdmpi_n": 10, "mea1": 10, "med": 10, "mef2_bind": 10, "meioc": 10, "mekhla": 10, "mekk4_n": 10, "melt": 10, "melt_2": 10, "mental": 10, "meta": 10, "mfa1_2": 10, "mfap1": 10, "mfmr": 10, "mfmr_assoc": 10, "mfp2b": 10, "mfs18": 10, "mfs_1": 10, "mfs_1_like": 10, "mfs_2": 10, "mfs_3": 10, "mfs_4": 10, "mfs_5": 10, "mfs_mot1": 10, "mfs_mycoplasma": 10, "mf_alpha": 10, "mf_alpha_n": 10, "mg1": 10, "mg2": 10, "mg3": 10, "mg4": 10, "mgat2": 10, "mga_dom": 10, "mgc": 10, "24": 10, "mgdg_synth": 10, "mgmt_n": 10, "mgp3_c": 10, "mg": 10, "mgta_c": 10, "mgtl": 10, "mh1": 10, "mh2": 10, "mhb": 10, "mhc2": 10, "interact": [10, 11, 13], "mhc_i": 10, "mhc_ii_alpha": 10, "mhc_ii_beta": 10, "mhc_i_2": 10, "mhc_i_3": 10, "mhc_i_c": 10, "mhcassoc_trim": 10, "mhyt": 10, "mib_herc2": 10, "mic19_mic25": 10, "micswap": 10, "mid_medpiwi": 10, "mid_ppiwi_r": 10, "mieap": 10, "mier1_3_c": 10, "mif": 10, "mif4g": 10, "mif4g_lik": 10, "mif4g_like_2": 10, "mig": 10, "14_wnt": 10, "miip": 10, "minar1_c": 10, "mindi": 10, "3_4_cd": 10, "mindy_dub": 10, "miox": 10, "mip": 10, "t3_c": 10, "mir": 10, "mis13": 10, "mitf_tfeb_c_3_n": 10, "mit_c": 10, "mit_like_actx": 10, "mix": 10, "mix23": 10, "mias": 10, "mj1316": 10, "mklp1_arf_bdg": 10, "mkrn1_c": 10, "mkt1_c": 10, "mkt1_n": 10, "mlana": 10, "mld": 10, "mlip": 10, "mltd_n": 10, "mltr_lbd": 10, "mlvin_c": 10, "mmachc": 10, "mmadhc": 10, "mmm1": 10, "mmpl": 10, "mmr1": 10, "mmr_hsr1": 10, "mmr_hsr1_c": 10, "mmr_hsr1_xtn": 10, "mms19_c": 10, "mms19_n": 10, "mms1_n": 10, "mms22l_c": 10, "mms22l_n": 10, "mmtv_sag": 10, "mmu163": 10, "mm_coa_mutas": 10, "mmgt": 10, "mmtag": 10, "mne1": 10, "mnhe": 10, "mnnl": 10, "mnr": 10, "moep19": 10, "mofrl": 10, "molo1": 10, "mor2": 10, "pag1_c": 10, "pag1_n": 10, "pag1_mid": 10, "morn": 10, "morn_2": 10, "mosc": 10, "mosc_n": 10, "mosp_c": 10, "mosp_n": 10, "mozart1": 10, "mozart2": 10, "moz_sa": 10, "mp": 10, "mpab_lcp_cat": 10, "mpc": 10, "mpdz_u10": 10, "mplkip": 10, "mpm1": 10, "mpp6": 10, "mps2": 10, "mptase": 10, "mp_p6": 10, "mrap": 10, "mrc1": 10, "mreg": 10, "mrfap1": 10, "mrf_c2": 10, "mrg": 10, "mri": 10, "mrjp": 10, "mrnip": 10, "mrp": 10, "63": 10, "l20": 10, "l28": 10, "l46": 10, "l47": 10, "l51": 10, "s22": 10, "s23": 10, "s24": 10, "s25": 10, "s26": 10, "s27": 10, "s28": 10, "s31": 10, "s32": 10, "s33": 10, "s34": 10, "s35": 10, "mrpl52": 10, "mrp_l53": 10, "mrvi1": 10, "mr_mle_c": 10, "mr_mle_n": 10, "msa": [10, 15], "2c": 10, "msa_2": 10, "msc": 10, "msg": 10, "msl1_dimer": 10, "msl2": 10, "cxc": 10, "msp": 10, "msp1_c": 10, "msp1a": 10, "msp1b": 10, "msp7_c": 10, "mss51_c": 10, "mssp": 10, "msss": 10, "msv199": 10, "ms_channel": 10, "a70": 10, "mt0933_antitox": 10, "mtabc_n": 10, "mta_r1": 10, "mtbp_c": 10, "mtbp_n": 10, "mtbp_mid": 10, "mtcp1": 10, "mtd": 10, "mtes_1575": 10, "mth865": 10, "mthfr": 10, "mthfr_2": 10, "mtp18": 10, "mtp_lip_bd": 10, "mts_n": 10, "mttb": 10, "mtax1": 10, "mu117": 10, "mu2_fha": 10, "mug113": 10, "mule": 10, "mun": 10, "mvl": 10, "mvp_shoulder": 10, "mwfe": 10, "mycbpap": 10, "myeov2": 10, "myo10_cc": 10, "myrf_ica": 10, "myt1": 10, "mzb": 10, "m_domain": 10, "maaimp_sm": 10, "mab": 10, "21": 10, "21_c": 10, "mac": 10, "macb_pcd": 10, "mac_assoc": 10, "macin": 10, "macoilin": 10, "macro": 10, "macro_2": 10, "macscav_rec": 10, "mad3_bub1_i": 10, "mad3_bub1_ii": 10, "mad3_bub1_i_2": 10, "madl": 10, "madm": 10, "maelstrom": 10, "maf": 10, "maf1": 10, "mafb": 10, "mafb19": 10, "maf_c": 10, "maf_n": 10, "maf_flag10_n": 10, "maff2": 10, "mago": 10, "mago_nashi": 10, "mak10": 10, "mak16": 10, "mak_n_cap": 10, "malf_p2": 10, "malm": 10, "mal_decarbox_": 10, "malate_dh": 10, "malate_synthas": 10, "malectin": 10, "malectin_lik": 10, "malic_m": 10, "malt_amylase_c": 10, "maml": 10, "p_recep": 10, "mannitol_dh": 10, "mannitol_dh_c": 10, "mannosep_isom": 10, "mannosidase_ig": 10, "mannosyl_tran": 10, "mannosyl_trans2": 10, "mannosyl_trans3": 10, "mannosyl_trans4": 10, "maoc_dehydrat_n": 10, "maoc_dehydrata": 10, "mapz_c2": 10, "mapz_ec1": 10, "marb": 10, "marc": 10, "marr": 10, "marr_2": 10, "mat89bb": 10, "matb": 10, "matc_n": 10, "mate": 10, "matk_n": 10, "matp": 10, "matp_c": 10, "mating_c": 10, "mating_n": 10, "matrilin_ccoil": 10, "maue": 10, "mauj": 10, "maze": 10, "maze_antitoxin": 10, "mazg": 10, "mazg_c": 10, "mbeb_n": 10, "mbed_mobd": 10, "mbeg1": 10, "mbhd": 10, "mbhe": 10, "mbnp": 10, "mbth": 10, "mccv": 10, "mce4_cup1": 10, "mciz": 10, "mcl1_mid": 10, "mcm10": 10, "mcp5_ph": 10, "mcrbc": 10, "mctb": 10, "mcya_c": 10, "mdce": 10, "mdcg": 10, "mdog": 10, "mdv1": 10, "me": 10, "dh_h": 10, "dh_l": 10, "memo_hyd_g": 10, "meab": 10, "meca": 10, "meca_n": 10, "meckelin": 10, "med1": 10, "med10": 10, "med11": 10, "med12": 10, "lcewav": 10, "pql": 10, "med13_c": 10, "med13_n": 10, "med14": 10, "med15": 10, "med15_fungi": 10, "med16": 10, "med17": 10, "med18": 10, "med19": 10, "med2": 10, "med20": 10, "med21": 10, "med22": 10, "med23": 10, "med24_n": 10, "med25": 10, "med25_nr": 10, "med25_sd1": 10, "med25_vwa": 10, "med26": 10, "med26_c": 10, "med26_m": 10, "med27": 10, "med28": 10, "med29": 10, "med3": 10, "med30": 10, "med31": 10, "med4": 10, "med5": 10, "med6": 10, "med7": 10, "med8": 10, "med9": 10, "mei4": 10, "mei5": 10, "mei5_lik": 10, "meiosis_expr": 10, "meiotic_rec114": 10, "meis_pknox_n": 10, "melc1": 10, "meleagrin": 10, "melibias": 10, "melibiase_2": 10, "melibiase_2_c": 10, "melibiase_c": 10, "melittin": 10, "mem_tran": 10, "membralin": 10, "membrane_bind": 10, "memo": 10, "menin": 10, "mepb": 10, "mer2": 10, "merb": 10, "merc": 10, "mere": 10, "merr": 10, "merr_1": 10, "merr_2": 10, "mert": 10, "merozoite_spam": 10, "mersacidin": 10, "mesx": 10, "mesd": 10, "mesothelin": 10, "metj": 10, "metod1": 10, "metod2": 10, "metr": 10, "metw": 10, "met_10": 10, "met_asp_mut_": 10, "met_gamma_lyas": 10, "met_synt_b12": 10, "metal_cehh": 10, "metal_hydrol": 10, "metal_resist": 10, "metalloenzym": 10, "metallopep": 10, "metallopho": 10, "metallophosc": 10, "metallophosn": 10, "metallophos_2": 10, "metallophos_3": 10, "metallophos_c": 10, "metallothi_euk2": 10, "metallothio": 10, "metallothio_11": 10, "metallothio_2": 10, "metallothio_5": 10, "metallothio_6": 10, "metallothio_cad": 10, "metallothio_euk": 10, "metallothio_pec": 10, "metallothio_pro": 10, "meth_synt_1": 10, "meth_synt_2": 10, "methuselah_n": 10, "methytransf_reg": 10, "methylase_": 10, "methyltr_rsmb": 10, "methyltr_rsmf_n": 10, "methyltranf_pua": 10, "methyltrans_mon": 10, "methyltrans_rna": 10, "methyltrans_sam": 10, "methyltransfd12": 10, "methyltransf_10": 10, "methyltransf_11": 10, "methyltransf_12": 10, "methyltransf_13": 10, "methyltransf_14": 10, "methyltransf_15": 10, "methyltransf_16": 10, "methyltransf_17": 10, "methyltransf_18": 10, "methyltransf_19": 10, "methyltransf_1n": 10, "methyltransf_2": 10, "methyltransf_20": 10, "methyltransf_21": 10, "methyltransf_22": 10, "methyltransf_23": 10, "methyltransf_24": 10, "methyltransf_25": 10, "methyltransf_28": 10, "methyltransf_29": 10, "methyltransf_3": 10, "methyltransf_30": 10, "methyltransf_31": 10, "methyltransf_32": 10, "methyltransf_33": 10, "methyltransf_34": 10, "methyltransf_35": 10, "methyltransf_4": 10, "methyltransf_5": 10, "methyltransf_7": 10, "methyltransf_8": 10, "methyltransf_9": 10, "methyltransf_fa": 10, "methyltransf_pk": 10, "methyltrn_rna_2": 10, "methyltrn_rna_3": 10, "methyltrn_rna_4": 10, "mfa1": 10, "mfa2": 10, "mfa_like_1": 10, "mfa_like_2": 10, "mfp": 10, "por_mtran_c": 10, "mg296": 10, "mg_chelatas": 10, "mg_chelatase_c": 10, "mg_trans_nipa": 10, "mga": 10, "mgm101p": 10, "mgpc": 10, "mgr1": 10, "mgrb": 10, "mgsa_c": 10, "mgtc": 10, "mgte": 10, "mgte_n": 10, "mhr1": 10, "miamp1": 10, "miae": 10, "miae_2": 10, "mic1": 10, "microcephalin": 10, "microcin": 10, "microtub_bd": 10, "microtub_bind": 10, "microvir_h": 10, "microvir_j": 10, "microvir_lysi": 10, "mid1": 10, "mid2": 10, "mif2_n": 10, "miff": 10, "miga": 10, "milton": 10, "mim2": 10, "minc_c": 10, "minc_n": 10, "mine": 10, "minor_capsid_1": 10, "minor_capsid_2": 10, "minor_capsid_3": 10, "minor_tail_z": 10, "mipa": 10, "mipz": 10, "mis12": 10, "mis14": 10, "misat_tub_segii": 10, "mistic": 10, "mitmem_reg": 10, "mit_khe1": 10, "mit_proteolip": 10, "mit_ribos_mrp51": 10, "mitoneet_n": 10, "mito_carr": 10, "mito_fiss_elm1": 10, "mito_fiss_reg": 10, "mito_morph_reg": 10, "mitoc_l55": 10, "mitoc_ml59": 10, "mitochondr_som1": 10, "mitofilin": 10, "mitovir_rna_pol": 10, "mlaa": 10, "mlac": 10, "mlad": 10, "mlae": 10, "mlf1ip": 10, "mlh1_c": 10, "mlic": 10, "mlo": 10, "mlp": 10, "mlrc_c": 10, "mlta": 10, "mltc_n": 10, "mmcb": 10, "mmei_c": 10, "mmei_mtas": 10, "mmei_n": 10, "mmei_trd": 10, "mmei_hel": 10, "mmge_prpd": 10, "mmge_prpd_c": 10, "mmli": 10, "mmob_dmpm": 10, "mn_catalas": 10, "mnd1": 10, "mnhb": 10, "mnme_hel": 10, "mntp": 10, "mo": 10, "co_dim": 10, "nitro_c": 10, "mo25": 10, "mocf_biosynth": 10, "mocobd_1": 10, "mocobd_2": 10, "moac": 10, "moae": 10, "moaf": 10, "moaf_c": 10, "mob1_phocein": 10, "moba_mobl": 10, "mobb": 10, "mobc": 10, "mobc_2": 10, "mobi": 10, "mobl": 10, "mob_pr": 10, "mob_synth_c": 10, "mobilization_b": 10, "mod_r": 10, "moea_c": 10, "moea_n": 10, "mog1": 10, "mogr_dnabind": 10, "molybdop_fe4s4": 10, "molybdopterin": 10, "molybdopterin_n": 10, "molydop_bind": 10, "mon2_c": 10, "mononeg_rna_pol": 10, "mononeg_mrnacap": 10, "monooxygenase_b": 10, "mor": 10, "morc6_s5": 10, "moricin": 10, "mota_exbb": 10, "mota_n": 10, "motb_plug": 10, "moty_n": 10, "motile_sperm": 10, "motilin_assoc": 10, "motilin_ghrelin": 10, "moulting_cycl": 10, "mppf1": 10, "mppf26": 10, "mpo1": 10, "mpp10": 10, "mpsc": 10, "mpte": 10, "mpt_n": 10, "mpv17_pmp22": 10, "mqo": 10, "mqsa_antitoxin": 10, "mqsr_toxin": 10, "mray_sig1": 10, "mraz": 10, "mrcb_n": 10, "mre11_dna_bind": 10, "mreb_mbl": 10, "mrec": 10, "mred": 10, "mrpf_phaf": 10, "mrpl_c": 10, "mrr_n": 10, "mrr_cat": 10, "mrr_cat_2": 10, "mrx7": 10, "msap1": 10, "msb1": 10, "mug8_dom": 10, "mscl": 10, "mscs_tm": 10, "mscs_porin": 10, "msg2_c": 10, "mso1_c": 10, "mso1_sec1_bdg": 10, "mspa": 10, "mss4": 10, "mst1_sarah": 10, "msyb": 10, "mtn3_slv": 10, "mt_atp": 10, "mt_atp_synt": 10, "mtab": 10, "mtd_n": 10, "mtf2": 10, "mtf2_c": 10, "mtlr": 10, "mtmb": 10, "mto2_bdg": 10, "mtp": 10, "mtr2": 10, "mtra": 10, "mtrb": 10, "mtrb_piob": 10, "mtrc": 10, "mtrd": 10, "mtre": 10, "mtrf": 10, "mtrg": 10, "mtrh": 10, "mu": [10, 14, 15, 16], "like_com": 10, "like_pro": 10, "like_gpt": 10, "transpos_c": 10, "muf_c": 10, "mucbp": 10, "mucbp_2": 10, "mucb_rseb": 10, "mucb_rseb_c": 10, "muc_b2": 10, "mucin": 10, "mucin15": 10, "mucin2_wxxw": 10, "mucin_bdg": 10, "mukb": 10, "mukb_hing": 10, "muke": 10, "mukf_c": 10, "mukf_m": 10, "multi": 10, "haem_cyto": 10, "multi_drug_r": 10, "multi_ubiq": 10, "mupg_c": 10, "mupg_n": 10, "murb_c": 10, "murj": 10, "murt_c": 10, "mur_ligas": 10, "mur_ligase_c": 10, "mur_ligase_m": 10, "muramidas": 10, "mus7": 10, "musclin": 10, "muskelin_n": 10, "mustang": 10, "mut7": 10, "muth": 10, "mutl": 10, "mutl_c": 10, "muts_i": 10, "muts_ii": 10, "muts_iii": 10, "muts_iv": 10, "muts_v": 10, "mute": 10, "mvai_bcni": 10, "mvb12": 10, "mxim": 10, "myth4": 10, "myb_cc_lheql": 10, "myb_cef": 10, "myb_dna": 10, "bind_6": 10, "bind_7": 10, "myc": 10, "myce_n": 10, "myc_n": 10, "myc_target_1": 10, "myco_19_kda": 10, "myco_arth_vir_n": 10, "myco_haema": 10, "mycobact_memb": 10, "mycop_pep_duf31": 10, "myelin": 10, "po_c": 10, "myelin_mbp": 10, "myelin_plp": 10, "myf5": 10, "myofilin": 10, "myosin": 10, "vi_cbd": 10, "myosin_n": 10, "myosin_th1": 10, "myosin_head": 10, "myosin_tail_1": 10, "myotub": 10, "term_ten": 10, "glycanase_c": 10, "glycanase_n": 10, "n1221": 10, "n36": 10, "n6": 10, "adeninemlas": 10, "n6_mtase": 10, "n6_n4_mtase": 10, "na37": 10, "naaa": 10, "nabp": 10, "nac": 10, "nacht": 10, "nacht_n": 10, "nacht_sigma": 10, "nad": 10, "nad1": 10, "nad2": 10, "nad4l": 10, "nadar": 10, "nadh": 10, "g_4fe": 10, "4s_3": 10, "uor_": 10, "u_ox": 10, "rdase": 10, "nadh5_c": 10, "nadh_4f": 10, "nadh_b2": 10, "nadh_oxid_nqo15": 10, "nadh_dehy_s2_c": 10, "nadh_dh_m_c1": 10, "nadh_dhqg_c": 10, "nadh_oxidor": 10, "nadh_u_ox_c": 10, "nadhdeh_rel": 10, "nadhdh": 10, "nadhdh_a3": 10, "nadph_ox": 10, "nad_gly3p_dh_c": 10, "nad_gly3p_dh_n": 10, "nad_binding_1": 10, "nad_binding_10": 10, "nad_binding_11": 10, "nad_binding_2": 10, "nad_binding_3": 10, "nad_binding_4": 10, "nad_binding_5": 10, "nad_binding_6": 10, "nad_binding_7": 10, "nad_binding_8": 10, "nad_binding_9": 10, "nad_kinas": 10, "nad_kinase_c": 10, "nad_synthas": 10, "nadase_nga": 10, "naf": 10, "naglu": 10, "naglu_c": 10, "naglu_n": 10, "nagpa": 10, "nagidas": 10, "nam": 10, "nampt_n": 10, "nap": 10, "naprtas": 10, "naprtase_c": 10, "naprtase_n": 10, "nar2": 10, "narf": 10, "narg2_c": 10, "na": 10, "nat": 10, "nat_n": 10, "nb": 10, "lrr": 10, "nbch_wd40": 10, "nbd94": 10, "nbd_c": 10, "nbp1": 10, "nca2": 10, "ncbp3": 10, "ncd1": 10, "ncd2": 10, "ncd3g": 10, "nce101": 10, "nckap5": 10, "ncoa_u2": 10, "ncu": 10, "g1": 10, "ndc10_ii": 10, "ndk": 10, "ndnf": 10, "ndnf_c": 10, "ndt80_phog": 10, "ndufa12": 10, "ndufb10": 10, "ndufb11": 10, "ndufv3": 10, "nduf_b12": 10, "nduf_b4": 10, "nduf_b5": 10, "nduf_b6": 10, "nduf_b7": 10, "nduf_b8": 10, "nduf_c2": 10, "ndus4": 10, "neat": 10, "necfeshc": 10, "nel": 10, "nemo": 10, "nemp": 10, "nerd": 10, "nesp55": 10, "nes_c_h": 10, "neti": 10, "nexcam_bd": 10, "nfact": 10, "r_1": 10, "r_2": 10, "nfact_n": 10, "nfrkb_wing": 10, "ngf": 10, "ngp1nt": 10, "nhl": 10, "nhr2": 10, "nh": 10, "nhase_alpha": 10, "nhase_beta": 10, "nibrin_brct_ii": 10, "nice": 10, "nid": 10, "nido": 10, "nif": 10, "nif3": 10, "nil": 10, "ninja_b": 10, "nipsnap": 10, "nip_1": 10, "nir_sir": 10, "nir_sir_ferr": 10, "nit": 10, "nkain": 10, "nkap": 10, "nkwy": 10, "nlbh": 10, "nle": 10, "nlpc_p60": 10, "nlrc4_hd": 10, "nlrc4_hd2": 10, "nmd3": 10, "nmdar2_c": 10, "nmn_transport": 10, "nmo": 10, "nmt": 10, "nmt1": 10, "nmt1_2": 10, "nmt1_3": 10, "nmt_c": 10, "nmu": 10, "nnmt_pnmt_temt": 10, "noa36": 10, "nob1_zn_bind": 10, "noc3p": 10, "nod": 10, "nod2_wh": 10, "nodp": 10, "nog1": 10, "nog1_n": 10, "nogct": 10, "nop19": 10, "nop5nt": 10, "nopchap1": 10, "nop": 10, "not2_3_5": 10, "nov_c": 10, "nozzl": 10, "no_synthas": 10, "npa": 10, "npat_c": 10, "npbw": 10, "npc1_n": 10, "npcbm": 10, "npcbm_assoc": 10, "npcc": 10, "npdc1": 10, "npf": 10, "npff": 10, "nph3": 10, "npip": 10, "npl": 10, "npl4": 10, "npm1": 10, "npp": 10, "npp1": 10, "npr": 10, "npr1_interact": 10, "npr1_like_c": 10, "npr2": 10, "npr3": 10, "npv_p10": 10, "nqr2_rnfd_rnfe": 10, "nqra": 10, "nqra_slbb": 10, "nrbf2": 10, "nrbf2_mit": 10, "nrd1_2": 10, "nrdd": 10, "nrde": 10, "nrf": 10, "nrip1_repr_1": 10, "nrip1_repr_2": 10, "nrip1_repr_3": 10, "nrip1_repr_4": 10, "nrn1": 10, "nrp1_c": 10, "nr_repeat": 10, "nrho": 10, "nsf": 10, "nsrp1_n": 10, "nst1": [10, 14], "nt": 10, "nt5c": 10, "ntf": 10, "ntf3_n": 10, "ntnh_c": 10, "ntp_transf_2": 10, "ntp_transf_3": 10, "ntp_transf_4": 10, "ntp_transf_5": 10, "ntp_transf_6": 10, "ntp_transf_7": 10, "ntp_transf_8": 10, "ntp_transf_9": 10, "ntp_transferas": 10, "ntpase_1": 10, "ntpase_i": 10, "ntr": 10, "ntr2": 10, "nts_2": 10, "ntase_sub_bind": 10, "nuc": 10, "nuc129": 10, "nuc130_3nt": 10, "nuc153": 10, "nuc173": 10, "nuc202": 10, "nuc205": 10, "nude_c": 10, "nudix": 10, "nudix_2": 10, "nudix_4": 10, "nudix_5": 10, "nufip1": 10, "nufip2": 10, "numod1": 10, "numod3": 10, "numod4": 10, "nup": 10, "nup214": 10, "nup50": 10, "nusap": 10, "nut": 10, "nveala": 10, "nyap_c": 10, "nyap_n": 10, "nyd": 10, "sp12_n": 10, "sp28": 10, "sp28_assoc": 10, "nyn": 10, "nyn_yacp": 10, "n_asn_amidohyd": 10, "n_brca1_ig": 10, "n_nlpc_p60": 10, "n_formyltrans_c": 10, "n_methyl": 10, "na_ala_symp": 10, "na_ca_ex": 10, "na_ca_ex_c": 10, "na_h_exchang": 10, "na_h_antiport_1": 10, "na_h_antiport_2": 10, "na_h_antiport_3": 10, "na_h_antiport": 10, "na_k": 10, "na_pi_cotran": 10, "na_sulph_symp": 10, "na_trans_assoc": 10, "na_trans_cytopl": 10, "nab1": 10, "nab2": 10, "nab2p_zf1": 10, "nab6_mrnp_bdg": 10, "nada": 10, "naei": 10, "nairo_nucleo": 10, "nane": 10, "napb": 10, "napd": 10, "nape": 10, "nas2_n": 10, "nata_aux_su": 10, "natb_mdm20": 10, "nbas_n": 10, "nbl1_borealin_n": 10, "nbla": 10, "nbs1_c": 10, "nckap1": 10, "ncstrn_small": 10, "ndc1_nup": 10, "ndc80_hec": 10, "ndh2_n": 10, "ndhl": 10, "ndhm": 10, "ndhn": 10, "ndho": 10, "ndh": 10, "ndr": 10, "ndufs5": 10, "nebulin": 10, "neil1": 10, "neisseria_pilc": 10, "neisseria_tspb": 10, "neocarzinostat": 10, "neogenin_c": 10, "nepr": 10, "neprosin": 10, "neprosin_ap": 10, "neub": 10, "neugrin": 10, "neur": 10, "neur_chan_lbd": 10, "neur_chan_memb": 10, "neural_prog_cyt": 10, "neural": 10, "neuraminidas": 10, "neuregulin": 10, "neurensin": 10, "neurexophilin": 10, "neuro_bhlh": 10, "neurobeachin": 10, "neurochondrin": 10, "neurokinin_b": 10, "neuromodulin": 10, "neuromodulin_n": 10, "neuroparsin": 10, "neuropep_lik": 10, "neuropeptide_": 10, "nexin_c": 10, "nfi_dnabd_pr": 10, "nfed": 10, "nfra_c": 10, "nfu_n": 10, "ngomiv_restr": 10, "nha1_c": 10, "nhab": 10, "nife": 10, "hyd_hyb": 10, "nifese_has": 10, "nife_hyd_3_ehaa": 10, "nife_hyd_ssu_c": 10, "ni_hydr_cytb": 10, "ni_insert": 10, "nic96": 10, "nico": 10, "nicastrin": 10, "nif11": 10, "nifq": 10, "nift": 10, "nifu": 10, "nifu_n": 10, "nifw": 10, "nifz": 10, "nigd_c": 10, "nigd_n": 10, "nikr_c": 10, "ninb": 10, "nine": 10, "ninf": 10, "ning": 10, "ninjurin": 10, "nip": 10, "b_c": 10, "nis1": 10, "nit_regul_hom": 10, "nitrod1": 10, "nitrod2": 10, "nitrod5": 10, "nitr_red_alph_n": 10, "nitr_red_assoc": 10, "nitr_red_bet_c": 10, "nitrate_red_del": 10, "nitrate_red_gam": 10, "nitro_femo": 10, "nitrophorin": 10, "nitroreductas": 10, "njmu": 10, "r1": [10, 17], "nkap_c": 10, "nlef_casp_inhib": 10, "nlpe": 10, "nlpe_c": 10, "r2_c_term": 10, "nmad2": 10, "nmad3": 10, "nmad4": 10, "nmad5": 10, "nmra": 10, "nnf1": 10, "nnr": 10, "nnru": 10, "noc2": 10, "nod1": 10, "noda": 10, "nodz": 10, "nod_grp": 10, "nodulin": 10, "nodulin_l": 10, "noelin": 10, "noggin": 10, "nolb": 10, "nolx": 10, "nop10p": 10, "nop14": 10, "nop16": 10, "nop25": 10, "nop52": 10, "nop53": 10, "nopra1": 10, "nore1": 10, "sarah": 10, "nosd": 10, "nosl": 10, "not1": 10, "not3": 10, "noti": 10, "notch": 10, "npa1": 10, "npun_r1517": 10, "npwbp": 10, "nqrm": 10, "nramp": 10, "nrap": 10, "nrap_d2": 10, "nrap_d3": 10, "nrap_d4": 10, "nrap_d5": 10, "nrap_d6": 10, "nre_c": 10, "nre_n": 10, "nrf1_dna": 10, "nrf1_activ_bdg": 10, "nrfd": 10, "nrfd_2": 10, "nro1": 10, "nrsf": 10, "nse4": 10, "nse3_bdg": 10, "nse4_c": 10, "nse5": 10, "nsp1_c": 10, "nsp2_av": 10, "nta": 10, "ntctmgam_n": 10, "nt_gln_amidas": 10, "nterm_is4": 10, "ntox1": 10, "ntox10": 10, "ntox11": 10, "ntox14": 10, "ntox15": 10, "ntox16": 10, "ntox17": 10, "ntox21": 10, "ntox22": 10, "ntox23": 10, "ntox24": 10, "ntox25": 10, "ntox27": 10, "ntox28": 10, "ntox3": 10, "ntox30": 10, "ntox33": 10, "ntox34": 10, "ntox35": 10, "ntox37": 10, "ntox4": 10, "ntox43": 10, "ntox44": 10, "ntox46": 10, "ntox47": 10, "ntox5": 10, "ntox50": 10, "ntox6": 10, "ntox8": 10, "ntry_n": 10, "nua4": 10, "nudc": 10, "nuc_h_symport": 10, "nuc_n": 10, "nuc_deoxyri_tr2": 10, "nuc_deoxyri_tr3": 10, "nuc_deoxyrib_tr": 10, "nuc_rec_co": 10, "nuc_recep": 10, "af1": 10, "nuc_sug_transp": 10, "nucleic_acid_bd": 10, "nucleo_p87": 10, "nucleocapsid": 10, "nucleolin_bd": 10, "nucleoplasmin": 10, "nucleopor_nup85": 10, "nucleoporin2": 10, "nucleoporin_c": 10, "nucleoporin_fg": 10, "nucleoporin_fg2": 10, "nucleoporin_n": 10, "nucleos_tra2_c": 10, "nucleos_tra2_n": 10, "nucleoside_tran": 10, "nucleotid_tran": 10, "nudc_n": 10, "nudix_n": 10, "nudix_n_2": 10, "nudix_hydro": 10, "nuf2": 10, "nuf2_dhr10": 10, "nuia": 10, "numbf": 10, "nup153": 10, "nup160": 10, "nup188": 10, "nup188_c": 10, "nup192": 10, "nup214_fg": 10, "nup35_rrm": 10, "nup35_rrm_2": 10, "nup54": 10, "nup54_57_c": 10, "nup54_c": 10, "nup84_nup100": 10, "nup88": 10, "nup96": 10, "nuph_ganp": 10, "nup_retrotrp_bd": 10, "nura": 10, "nusa_n": 10, "nusb": 10, "nusg": 10, "nusg_ii": 10, "nusg_add": 10, "nyv1_longin": 10, "fuct": 10, "ag_pol_wzi": 10, "antigen_lig": 10, "oad_beta": 10, "oad_gamma": 10, "oaf": 10, "oam_alpha": 10, "oam_dim": 10, "oar": 10, "oas1_c": 10, "oatp": 10, "ob_dis3": 10, "ob_malk": 10, "ob_ntp_bind": 10, "ob_rnb": 10, "ob_acoa_assoc": 10, "occ1": 10, "ocd_mu_crystal": 10, "ocia": 10, "ocr": 10, "ocrl_clath_bd": 10, "odam": 10, "odaph": 10, "odc_az": 10, "odp": 10, "odr4": 10, "oep": 10, "ofcc1": 10, "ofet_1": 10, "ogfr_iii": 10, "ogfr_n": 10, "ogg_n": 10, "oha": 10, "ohcu_decarbox": 10, "okr_dc_1": 10, "okr_dc_1_c": 10, "okr_dc_1_n": 10, "old": [10, 11], "like_toprim": 10, "olf": 10, "omp_b": 10, "brl": 10, "brl_2": 10, "brl_3": 10, "ompdecas": 10, "opa1_c": 10, "opa3": 10, "opt": 10, "orc2": 10, "orc3_n": 10, "orc3_in": 10, "orc4_c": 10, "orc5_c": 10, "orc6": 10, "orc_wh_c": 10, "orf11cd3": 10, "orf6c": 10, "orf6n": 10, "orf_12_n": 10, "orf_2_n": 10, "ormdl": 10, "oscp": 10, "osk": 10, "osr1_c": 10, "ost": 10, "ost3_ost6": 10, "ostmp1": 10, "ost_i": 10, "ost_p2": 10, "ostbeta": 10, "otcac": 10, "otcace_n": 10, "oto": 10, "ott_1508_deam": 10, "otu": 10, "o_spanin_t7": 10, "o_anti_polymas": 10, "oapa": 10, "oapa_n": 10, "obr_ig": 10, "oberon_cc": 10, "occludin_el": 10, "ocnu": 10, "octapeptid": 10, "octopine_dh": 10, "ocular_alb": 10, "oest_recep": 10, "ofd1_ctdd": 10, "ogr_delta": 10, "olduvai": 10, "ole_e_6": 10, "oleosin": 10, "olfactory_mark": 10, "omda": 10, "omega": 10, "toxin": 10, "omega_repress": 10, "omp28": 10, "omp85": 10, "omp85_2": 10, "ompa": 10, "ompa_lik": 10, "ompa_membran": 10, "omph": 10, "ompw": 10, "omp_at": 10, "omptin": 10, "op_neuropeptid": 10, "opca": 10, "opca_g6pd_c": 10, "opca_g6pd_assem": 10, "opgc_c": 10, "opi1": 10, "opiods_neuropep": 10, "oppc_n": 10, "oprb": 10, "oprd": 10, "oprf": 10, "optomotor": 10, "blind": 10, "opuac": 10, "opy2": 10, "orai": 10, "orexin": 10, "orexin_rec2": 10, "orf78": 10, "orfb_is605": 10, "orfb_zn_ribbon": 10, "orga_mxik": 10, "organ_specif": 10, "orn_arg_dec_n": 10, "orn_dap_arg_dec": 10, "orsd": 10, "orthopox_a5l": 10, "orthoreo_p10": 10, "oscp1": 10, "osmc": 10, "osmo_cc": 10, "osmo_mpgsynth": 10, "ost4": 10, "ost5": 10, "osta_2": 10, "osteopontin": 10, "osteoregulin": 10, "osw5": 10, "otopetrin": 10, "ovat": 10, "oxrdtase_c": 10, "oxidor": 10, "oxidored_fmn": 10, "oxidored_molyb": 10, "oxidored_nitro": 10, "oxidored_q2": 10, "oxidored_q3": 10, "oxidored_q4": 10, "oxidored_q5_n": 10, "oxidored_q6": 10, "oxidoreduct_c": 10, "oxodh_e1alpha_n": 10, "oxogdehyase_c": 10, "oxygenas": 10, "oxysterol_bp": 10, "loop_trag": 10, "mevalo_kinas": 10, "p120r": 10, "p16": 10, "p19arf_n": 10, "p1_n": 10, "p21": 10, "p22_ar_c": 10, "p22_ar_n": 10, "p22_coatprotein": 10, "p22_cro": 10, "p22_tail": 10, "p22_portal": 10, "p2rx7_c": 10, "p2x_receptor": 10, "p2_n": 10, "p2_phage_gpr": 10, "p30": 10, "p33monox": 10, "p34": 10, "p3a": 10, "p4ha_n": 10, "p5": 10, "p53": 10, "p53_c": 10, "p53_tad": 10, "p53_tetram": 10, "p5cr_dimer": 10, "p63c": 10, "p66_cc": 10, "p68hr": 10, "pa": 10, "iil": 10, "il": 10, "pa14": 10, "pa26": 10, "pa28_alpha": 10, "pa28_beta": 10, "paar_motif": 10, "paat": 10, "pabp": 10, "pac1": 10, "pac2": 10, "pac3": 10, "pac4": 10, "pact_coil_coil": 10, "padr1": 10, "padr": 10, "pad_m": 10, "pad_n": 10, "pad_porph": 10, "pae": 10, "paf": 10, "ah_p_ii": 10, "pag": 10, "pagk": 10, "pah": 10, "palb2_wd40": 10, "palp": 10, "pam2": 10, "pan_1": 10, "pan_2": 10, "pan_3": 10, "pan_4": 10, "pap1": 10, "pap2": 10, "pap2_3": 10, "pap2_c": 10, "papa": 10, "paps_reduct": 10, "pap_pilo": 10, "pap_rna": 10, "pap_assoc": 10, "pap_centr": 10, "pap_fibrillin": 10, "par1": 10, "parg_cat": 10, "parm": 10, "parp": 10, "parp_reg": 10, "parp_regulatori": 10, "pasta": 10, "pas_10": 10, "pas_11": 10, "pas_12": 10, "pas_2": 10, "pas_3": 10, "pas_4": 10, "pas_5": 10, "pas_6": 10, "pas_7": 10, "pas_8": 10, "pas_9": 10, "pat1": 10, "patr": 10, "paw": 10, "pax": 10, "paxip1_c": 10, "paxneb": 10, "paxx": 10, "paz": 10, "paz_2": 10, "paz_3": 10, "paz_4": 10, "pa_decarbox": 10, "pb1": 10, "pban": 10, "pbc": 10, "pbcv_basic_adap": 10, "pbd": 10, "pbecr1": 10, "pbecr2": 10, "pbecr3": 10, "pbecr4": 10, "pbecr5": 10, "pbp": 10, "tp47_a": 10, "tp47_c": 10, "pbp1_tm": 10, "pbp3": 10, "pbp5_c": 10, "pbp_gobp": 10, "pbp_n": 10, "pbp_dimer": 10, "pbp_like": 10, "pbp_like_2": 10, "pbp_sp32": 10, "pbsx_xtra": 10, "pbs_linker_poli": 10, "pc": 10, "pc4": 10, "pcaf_n": 10, "pcb_ob": 10, "pcc": 10, "pcc_bt": 10, "pcdo_beta_n": 10, "pcema1": 10, "pci": 10, "pcif1_ww": 10, "pclp": 10, "pcm1_c": 10, "pcmd": 10, "pcmt": 10, "pcna_c": 10, "pcna_n": 10, "pcnp": 10, "pco_ado": 10, "pcp_red": 10, "pcrf": 10, "pcsk9_c1": 10, "pcsk9_c2": 10, "pcsk9_c3": 10, "pcycgc": 10, "pc_rep": 10, "pcuac": 10, "pd": 10, "pd40": 10, "pdcd2_c": 10, "pdcd7": 10, "pdcd9": 10, "pddexk_1": 10, "pddexk_10": 10, "pddexk_11": 10, "pddexk_12": 10, "pddexk_2": 10, "pddexk_3": 10, "pddexk_4": 10, "pddexk_5": 10, "pddexk_6": 10, "pddexk_7": 10, "pddexk_9": 10, "pde4_ucr": 10, "pde6_gamma": 10, "pde8": 10, "pdease_i": 10, "pdease_ii": 10, "pdease_i_n": 10, "pdgf": 10, "pdgf_n": 10, "pdgle": 10, "pdh_c": 10, "pdh_e1_m": 10, "pdh_n": 10, "pdr_cdr": 10, "pdr_assoc": 10, "pds5": 10, "pdt": 10, "pdu_lik": 10, "pdz": 10, "pdz_1": 10, "pdz_2": 10, "pdz_3": 10, "pdz_4": 10, "pdz_5": 10, "pdz_6": 10, "pdz_assoc": 10, "pe": 10, "ppe": 10, "pearli": 10, "pega": 10, "pehe": 10, "pelota_1": 10, "pemt": 10, "pep": 10, "utilisers_n": 10, "util": [10, 16], "utilizers_c": 10, "pepck_atp": 10, "pepck_gtp": 10, "pepck_n": 10, "pep_hydrolas": 10, "pep_mutas": 10, "pepcas": 10, "pepcase_2": 10, "pet": 10, "pet117": 10, "pet122": 10, "pex": 10, "1n": 10, "2n": [10, 11], "pex11": 10, "pfk": 10, "pfl": 10, "pfor_ii": 10, "pfo_beta_c": 10, "pfu": 10, "pfam54_60": 10, "pga2": 10, "pgap1": 10, "pga_cap": 10, "pgba_c": 10, "pgba_n": 10, "pgc7_stella": 10, "pgdh_c": 10, "pgdh_inter": 10, "pgdyg": 10, "pgf": 10, "pgg": 10, "pgi": 10, "pgk": 10, "pgm1_c": 10, "pgm_pmm_i": 10, "pgm_pmm_ii": 10, "pgm_pmm_iii": 10, "pgm_pmm_iv": 10, "pgpgw": 10, "pgp_phosphatas": 10, "pg_binding_1": 10, "pg_binding_2": 10, "pg_binding_3": 10, "pg_binding_4": 10, "pg_isomerase_n": 10, "ph": 10, "pha": 10, "phaf1": 10, "phat": 10, "phax_rna": 10, "pha_gran_rgn": 10, "pha_synth_iii_": 10, "phbc_n": 10, "phb_acc": 10, "phb_acc_n": 10, "phb_depo_c": 10, "phc2_sam_assoc": 10, "phd": 10, "phd20l1_u1": 10, "phd_2": 10, "phd_3": 10, "phd_4": 10, "phd_oberon": 10, "phd_like": 10, "phf12_mrg_bd": 10, "phf5": 10, "phl": 10, "phm7_cyt": 10, "phm7_ext": 10, "pho4": 10, "php": [10, 11], "php_c": 10, "phr": 10, "phtb1_c": 10, "phtb1_n": 10, "phtf1": 10, "2_n": 10, "phy": 10, "phyhip_c": 10, "phza_phzb": 10, "ph_10": 10, "ph_11": 10, "ph_12": 10, "ph_13": 10, "ph_14": 10, "ph_15": 10, "ph_16": 10, "ph_17": 10, "ph_18": 10, "ph_19": 10, "ph_2": 10, "ph_20": 10, "ph_3": 10, "ph_4": 10, "ph_5": 10, "ph_6": 10, "ph_8": 10, "ph_9": 10, "ph_beach": 10, "ph_rbd": 10, "ph_tfiih": 10, "phtd_u1": 10, "plc": 10, "tkoii_iv": 10, "pi31_prot_c": 10, "pi31_prot_n": 10, "pi3k_1b_p101": 10, "pi3k_c2": 10, "pi3k_p85_ish2": 10, "pi3k_p85b": 10, "pi3k_rbd": 10, "pi3ka": 10, "pi3_pi4_kinas": 10, "pi4k_n": 10, "pid": 10, "pid_2": 10, "piezo": 10, "pif": 10, "pif1": 10, "pif2": 10, "pif3": 10, "pig": 10, "piga": 10, "pigo_pigg": 10, "pih1": 10, "pih1_c": 10, "pik3cg_abd": 10, "pin": 10, "pin7": 10, "pinit": 10, "pin_10": 10, "pin_11": 10, "pin_12": 10, "pin_2": 10, "pin_3": 10, "pin_4": 10, "pin_5": 10, "pin_6": 10, "pin_8": 10, "pin_9": 10, "pip49_c": 10, "pip49_n": 10, "pip5k": 10, "pir": 10, "pirt": 10, "pith": 10, "pi_pp_c": 10, "pi_pp_i": 10, "pk": 10, "pkat_kld": 10, "pkd": 10, "pkd_2": 10, "pkd_3": 10, "pkd_4": 10, "pkd_5": 10, "pkd_6": 10, "pkd_channel": 10, "pkhd_c": 10, "pki": 10, "pkk": 10, "pks_de": 10, "pk_c": 10, "pk_tyr_ser": 10, "thr": 10, "pkcgmp_cc": 10, "pl48": 10, "pla1": 10, "pla2g12": 10, "pla2_b": 10, "pla2_inh": 10, "plac": 10, "plac8": 10, "plac9": 10, "plat": 10, "platz": 10, "beta_c": 10, "plcc": 10, "pld_c": 10, "pldc": 10, "pldc_2": 10, "pldc_3": 10, "pldc_n": 10, "pll": 10, "pln_propep": 10, "plrv_orf5": 10, "plu": 10, "plipase_c_c": 10, "pm0188": 10, "pmaip1": 10, "pmbr": 10, "pmc2nt": 10, "pmd": 10, "pmei": 10, "pmg": 10, "pmi_typei_c": 10, "pmi_typei_cat": 10, "pmi_typei_hel": 10, "pmm": 10, "pmp1_2": 10, "pmp22_claudin": 10, "pmr5n": 10, "pmsi1": 10, "pmsr": 10, "pmt": 10, "pmt2_n": 10, "pmt_2": 10, "pmt_4tmc": 10, "pnd": 10, "pngasea": 10, "pnisr": 10, "pnk3p": 10, "pnkp": 10, "ligase_c": 10, "pnkp_ligas": 10, "pnma": 10, "pnp_udp_1": 10, "pnp_phzg_c": 10, "pnpase": 10, "pnpase_c": 10, "pnrc": 10, "pntb": 10, "pntb_4tm": 10, "pob3_n": 10, "poc1": 10, "poc3_poc4": 10, "polo_box": 10, "pom121": 10, "pop1": 10, "popld": 10, "por": 10, "porr": 10, "por_n": 10, "pot1": 10, "pot1pc": 10, "potra": 10, "potra_1": 10, "potra_2": 10, "potra_3": 10, "potra_tama_1": 10, "pou2f1_c": 10, "pox": 10, "pp": 10, "pp1": 10, "pp1_bind": 10, "pp1_inhibitor": 10, "pp1c_bdg": 10, "pp2": 10, "pp28": 10, "pp2c": 10, "pp2c_2": 10, "pp2c_c": 10, "pp4r3": 10, "ppak": 10, "ppargamma_n": 10, "ppc": 10, "ppdfl": 10, "ppdk_n": 10, "ppw": 10, "svp": 10, "ppip5k2_n": 10, "ppi_ypi1": 10, "ppk2": 10, "ppl4": 10, "ppl5": 10, "ppo1_dwl": 10, "ppo1_kfdv": 10, "ppp1r26_n": 10, "ppp1r32": 10, "ppp1r35_c": 10, "ppp4r2": 10, "ppp5": 10, "pppi_inhib": 10, "ppr": 10, "ppr_1": 10, "ppr_2": 10, "ppr_3": 10, "ppr_long": 10, "pps_p": 10, "ppta": 10, "ppv_e1_c": 10, "ppv_e1_dbd": 10, "ppv_e1_n": 10, "ppv_e2_c": 10, "ppv_e2_n": 10, "pp_m1": 10, "pp_kinas": 10, "pp_kinase_c": 10, "pp_kinase_c_1": 10, "pp_kinase_n": 10, "pq": 10, "pqq": 10, "pqq_2": 10, "pqq_3": 10, "pra": 10, "pra1": 10, "prai": 10, "pranc": 10, "prap": 10, "prc": 10, "prc2_hth_1": 10, "prcc": 10, "prch": 10, "prd": 10, "prd_mga": 10, "preli": 10, "presan": 10, "pre_c2hc": 10, "prf": 10, "prima1": 10, "prk": 10, "prkcsh": 10, "prkcsh_1": 10, "prkg1_interact": 10, "prmt5": 10, "prmt5_c": 10, "prmt5_tim": 10, "prnt": 10, "pro8nt": 10, "procn": 10, "proct": 10, "prodh": 10, "prol5": 10, "smr": 10, "prone": 10, "prorp": 10, "prp1_n": 10, "prp21_like_p": 10, "prp3": 10, "prp38": 10, "prp38_assoc": 10, "prp4": 10, "prp8_domainiv": 10, "prp9_n": 10, "prr18": 10, "prr20": 10, "prr22": 10, "prt6_c": 10, "prtrc_e": 10, "prt_c": 10, "prtase_1": 10, "prtase_2": 10, "prtase_3": 10, "pry": 10, "pria4_orf3": 10, "dh": 10, "psa_cbd": 10, "pscyt1": 10, "pscyt2": 10, "pscyt3": 10, "psd1": 10, "psd2": 10, "psd3": 10, "psd4": 10, "psd5": 10, "psdc": 10, "psgp": 10, "psi": 10, "psii": 10, "psii_bnr": 10, "psii_pbs27": 10, "psii_pbs31": 10, "psii_ycf12": 10, "psi_8": 10, "psi_psak": 10, "psi_psa": 10, "psi_psaf": 10, "psi_psah": 10, "psi_psaj": 10, "psi_integrin": 10, "psk": 10, "psk_trans_fac": 10, "psmalpha": 10, "psmbeta": 10, "psmdelta": 10, "psp1": 10, "psp94": 10, "psrp": 10, "3_ycf65": 10, "psrt": 10, "pss": 10, "psy3": 10, "ps_dcarbxylas": 10, "ps_pyruv_tran": 10, "pt": 10, "tg": 10, "venn": 10, "ptac": 10, "pta_ptb": 10, "ptb": 10, "ptcb": 10, "ptcra": 10, "pte": 10, "pten_c2": 10, "pth2": 10, "ptn13_u3": 10, "ptn_mk_c": 10, "ptn_mk_n": 10, "ptp2": 10, "ptpa": 10, "ptpla": 10, "ptprcap": 10, "ptp": 10, "ptps_relat": 10, "ptp_n": 10, "ptp_tm": 10, "ptplike_phytas": 10, "ptr": [10, 14, 15], "ptr2": 10, "ptrf_sdpr": 10, "hpr": 10, "ptsiia_guta": 10, "ptsiib_sorb": 10, "pts_2": 10, "rna": 10, "pts_eiia_1": 10, "pts_eiia_2": 10, "pts_eiib": 10, "pts_eiic": 10, "pts_eiic_2": 10, "pts_iia": 10, "pts_iib": 10, "ptase_orf2": 10, "pua": 10, "pua_2": 10, "pua_3": 10, "pua_4": 10, "pub": 10, "pub_1": 10, "pucc": 10, "pud": 10, "pud1_2": 10, "puf": 10, "pufd": 10, "pul": 10, "puma": 10, "punut": 10, "pv": 10, "pvl_orf50": 10, "pwi": 10, "pwwp": 10, "px": [10, 11, 14], "pxa": 10, "pxb": 10, "pxpv": 10, "pxt1": 10, "pyc_oada": 10, "pynp_c": 10, "pyrin": 10, "pyst": 10, "py_rept_46": 10, "p_c10": 10, "p_gingi_fima": 10, "p_proprotein": 10, "pao": 10, "parep1": 10, "parep2a": 10, "parep2b": 10, "paaa_paac": 10, "paab": 10, "paax": 10, "paax_c": 10, "pab87_oct": 10, "pacifastin_i": 10, "packaging_fi": 10, "pac": 10, "paf1": 10, "paf67": 10, "pagl": 10, "pagp": 10, "paired_cxxch_1": 10, "pal1": 10, "palh": 10, "pallilysin": 10, "palm_thioest": 10, "pam16": 10, "pam17": 10, "pan3_pk": 10, "panz": 10, "pan_kinas": 10, "pannexin_lik": 10, "pantoate_ligas": 10, "pantoate_transf": 10, "papa_c": 10, "papb": 10, "papc_c": 10, "papc_n": 10, "papd": 10, "papd_c": 10, "papd_n": 10, "papg_c": 10, "papg_n": 10, "papj": 10, "papilin_u7": 10, "par3_hal_n_term": 10, "para": [10, 17], "parb": 10, "parb_c": 10, "parbc": 10, "parbc_2": 10, "pard": 10, "pard_antitoxin": 10, "pard_lik": 10, "pare": 10, "pare_toxin": 10, "parg": 10, "paralemmin": 10, "paramecium_sa": 10, "paramyxo_ns_c": 10, "paramyxo_p_v_n": 10, "parathyroid": 10, "parcg": 10, "parvo_ns1": 10, "parvo_coat": 10, "pas_saposin": 10, "patg_c": 10, "patg_d": 10, "patatin": 10, "pax2_c": 10, "pax7": 10, "paxillin": 10, "pcf": 10, "pcc1": 10, "pcfj": 10, "pcfk": 10, "pcrb": 10, "pdac": 10, "pdase_m17_n2": 10, "pdtas_gaf": 10, "pduv": 10, "eutp": 10, "pdxa": 10, "pdxj": 10, "pec_lyas": 10, "pec_lyase_n": 10, "pecanex_c": 10, "pectate_lyas": 10, "pectate_lyase22": 10, "pectate_lyase_2": 10, "pectate_lyase_3": 10, "pectate_lyase_4": 10, "pectate_lyase_5": 10, "pectinesteras": 10, "pedibin": 10, "peld_ggdef": 10, "pelg": 10, "pellino": 10, "pemk_toxin": 10, "penaeidin": 10, "penicil_amidas": 10, "penicillinase_r": 10, "pentapeptid": 10, "pentapeptide_2": 10, "pentapeptide_3": 10, "pentapeptide_4": 10, "pentaxin": 10, "pep1_7": 10, "pep3_vps18": 10, "pepsi": 10, "pepsy_2": 10, "pepsy_tm": 10, "pepsy_tm_like_2": 10, "pepsy_lik": 10, "pepx_c": 10, "pepx_n": 10, "pep_m12b_propep": 10, "pep_deformylas": 10, "pepdidase_m14_n": 10, "pepsin": 10, "i3": 10, "pept_s41_n": 10, "pept_trna_hydro": 10, "peptidase_a17": 10, "peptidase_a22b": 10, "peptidase_a24": 10, "peptidase_a25": 10, "peptidase_a2b": 10, "peptidase_a2_2": 10, "peptidase_a3": 10, "peptidase_a4": 10, "peptidase_a8": 10, "peptidase_c1": 10, "peptidase_c10": 10, "peptidase_c101": 10, "peptidase_c11": 10, "peptidase_c12": 10, "peptidase_c13": 10, "peptidase_c14": 10, "peptidase_c15": 10, "peptidase_c1_2": 10, "peptidase_c2": 10, "peptidase_c25": 10, "peptidase_c25_c": 10, "peptidase_c26": 10, "peptidase_c3": 10, "peptidase_c37": 10, "peptidase_c39": 10, "peptidase_c39_2": 10, "peptidase_c47": 10, "peptidase_c48": 10, "peptidase_c5": 10, "peptidase_c50": 10, "peptidase_c54": 10, "peptidase_c57": 10, "peptidase_c58": 10, "peptidase_c65": 10, "peptidase_c69": 10, "peptidase_c70": 10, "peptidase_c71": 10, "peptidase_c78": 10, "peptidase_c80": 10, "peptidase_c92": 10, "peptidase_c93": 10, "peptidase_c97": 10, "peptidase_c98": 10, "peptidase_g2": 10, "peptidase_m1": 10, "peptidase_m10": 10, "peptidase_m10_c": 10, "peptidase_m11": 10, "peptidase_m13": 10, "peptidase_m13_n": 10, "peptidase_m14": 10, "peptidase_m15": 10, "peptidase_m15_2": 10, "peptidase_m15_3": 10, "peptidase_m15_4": 10, "peptidase_m16": 10, "peptidase_m16_c": 10, "peptidase_m16_m": 10, "peptidase_m17": 10, "peptidase_m17_n": 10, "peptidase_m18": 10, "peptidase_m19": 10, "peptidase_m1_n": 10, "peptidase_m2": 10, "peptidase_m20": 10, "peptidase_m23": 10, "peptidase_m23_n": 10, "peptidase_m24": 10, "peptidase_m24_c": 10, "peptidase_m26_c": 10, "peptidase_m26_n": 10, "peptidase_m27": 10, "peptidase_m28": 10, "peptidase_m29": 10, "peptidase_m3": 10, "peptidase_m30": 10, "peptidase_m32": 10, "peptidase_m35": 10, "peptidase_m36": 10, "peptidase_m3_n": 10, "peptidase_m4": 10, "peptidase_m41": 10, "peptidase_m42": 10, "peptidase_m43": 10, "peptidase_m48": 10, "peptidase_m48_n": 10, "peptidase_m49": 10, "peptidase_m4_c": 10, "peptidase_m50": 10, "peptidase_m50b": 10, "peptidase_m54": 10, "peptidase_m55": 10, "peptidase_m56": 10, "peptidase_m57": 10, "peptidase_m6": 10, "peptidase_m60": 10, "peptidase_m60_c": 10, "peptidase_m61": 10, "peptidase_m61_n": 10, "peptidase_m64": 10, "peptidase_m66": 10, "peptidase_m7": 10, "peptidase_m73": 10, "peptidase_m74": 10, "peptidase_m75": 10, "peptidase_m76": 10, "peptidase_m78": 10, "peptidase_m8": 10, "peptidase_m85": 10, "peptidase_m9": 10, "peptidase_m90": 10, "peptidase_m91": 10, "peptidase_m99": 10, "peptidase_m99_c": 10, "peptidase_m99_m": 10, "peptidase_m9_n": 10, "peptidase_ma_2": 10, "peptidase_mx": 10, "peptidase_mx1": 10, "peptidase_prp": 10, "peptidase_s10": 10, "peptidase_s11": 10, "peptidase_s13": 10, "peptidase_s15": 10, "peptidase_s24": 10, "peptidase_s26": 10, "peptidase_s28": 10, "peptidase_s3": 10, "peptidase_s30": 10, "peptidase_s32": 10, "peptidase_s37": 10, "peptidase_s39": 10, "peptidase_s41": 10, "peptidase_s41_n": 10, "peptidase_s46": 10, "peptidase_s48": 10, "peptidase_s49": 10, "peptidase_s49_n": 10, "peptidase_s51": 10, "peptidase_s55": 10, "peptidase_s58": 10, "peptidase_s6": 10, "peptidase_s64": 10, "peptidase_s66": 10, "peptidase_s66c": 10, "peptidase_s68": 10, "peptidase_s7": 10, "peptidase_s74": 10, "peptidase_s77": 10, "peptidase_s78": 10, "peptidase_s78_2": 10, "peptidase_s8": 10, "peptidase_s8_n": 10, "peptidase_s9": 10, "peptidase_s9_n": 10, "peptidase_u32": 10, "peptidase_u32_c": 10, "peptidase_u4": 10, "peptidase_u49": 10, "peptidase_u57": 10, "per1": 10, "perc": 10, "pericardin_rpt": 10, "perilipin": 10, "perilipin_2": 10, "period_c": 10, "peripla_bp_1": 10, "peripla_bp_2": 10, "peripla_bp_3": 10, "peripla_bp_4": 10, "peripla_bp_5": 10, "peripla_bp_6": 10, "peripla_bp_7": 10, "periviscerokin": 10, "perm": 10, "cxxc": 10, "peroxidase_2": 10, "peroxidase_ext": 10, "peroxin": 10, "13_n": 10, "22": 10, "pertactin": 10, "pertu": 10, "s4": 10, "tox": 10, "s5": 10, "pertussis_s1": 10, "pertussis_s2s3": 10, "pescadillo_n": 10, "pesticin": 10, "pet100": 10, "pet127": 10, "pet191_n": 10, "pet20": 10, "petg": 10, "petl": 10, "petm": 10, "petn": 10, "pex14_n": 10, "pex16": 10, "pex19": 10, "pex24p": 10, "pex26": 10, "pex2_pex12": 10, "pfuis3": 10, "pfad_n": 10, "pfg27": 10, "pfkb": 10, "pfk_n": 10, "pga1": 10, "pgad": 10, "pgapase_1": 10, "pgda_n": 10, "pgld_n": 10, "pgll_a": 10, "pglz": 10, "pgpa": 10, "ph1570": 10, "phac_n": 10, "phag_mnhg_yufb": 10, "phap_bmeg": 10, "phage": 10, "a118_gp45": 10, "mub_c": 10, "scaffold": 10, "tail_3": 10, "phagemetallopep": 10, "phagemin_tail": 10, "phage_186_fil": 10, "phage_30_3": 10, "phage_aba_": 10, "phage_ash": 10, "phage_alpa": 10, "phage_arf": 10, "phage_b": 10, "phage_br0599": 10, "phage_c": 10, "phage_cii": 10, "phage_ci_c": 10, "phage_ci_repr": 10, "phage_cp76": 10, "phage_cri": 10, "phage_coat_a": 10, "phage_coat_b": 10, "phage_cox": 10, "phage_dna_bind": 10, "phage_f": 10, "phage_g": 10, "phage_gp20": 10, "phage_gpa": 10, "phage_gpd": 10, "phage_gpl": 10, "phage_gpo": 10, "phage_gp111": 10, "phage_gp15": 10, "phage_gp19": 10, "phage_gp23": 10, "phage_hk97_tltm": 10, "phage_hp1_orf24": 10, "phage_h_t_join": 10, "phage_mu_f": 10, "phage_mu_gam": 10, "phage_mu_gp27": 10, "phage_mu_gp36": 10, "phage_mu_gp37": 10, "phage_mu_gp45": 10, "phage_mu_gp48": 10, "phage_ninh": 10, "phage_nu1": 10, "phage_orf5": 10, "phage_orf51": 10, "phage_p22_ninx": 10, "phage_p2_gp": 10, "phage_p2_gpu": 10, "phage_ssb": 10, "phage_t4_ndd": 10, "phage_t4_gp19": 10, "phage_t4_gp36": 10, "phage_t7_capsid": 10, "phage_t7_gp13": 10, "phage_t7_tail": 10, "phage_tac_1": 10, "phage_tac_10": 10, "phage_tac_11": 10, "phage_tac_12": 10, "phage_tac_13": 10, "phage_tac_14": 10, "phage_tac_2": 10, "phage_tac_3": 10, "phage_tac_4": 10, "phage_tac_5": 10, "phage_tac_6": 10, "phage_tac_7": 10, "phage_tac_8": 10, "phage_tac_9": 10, "phage_ttp_1": 10, "phage_ttp_11": 10, "phage_ttp_12": 10, "phage_ttp_13": 10, "phage_treg": 10, "phage_x": 10, "phage_xkdx": 10, "phage_antiter_q": 10, "phage_antitermq": 10, "phage_attach": 10, "phage_base_v": 10, "phage_cap_": 10, "phage_cap_p2": 10, "phage_capsid": 10, "phage_capsid_2": 10, "phage_coatgp8": 10, "phage_connect_1": 10, "phage_connector": 10, "phage_endo_i": 10, "phage_fib": 10, "phage_fiber_2": 10, "phage_fiber_c": 10, "phage_gp49_66": 10, "phage_gp53": 10, "phage_head_fibr": 10, "phage_holin_1": 10, "phage_holin_2_1": 10, "phage_holin_2_2": 10, "phage_holin_2_3": 10, "phage_holin_2_4": 10, "phage_holin_3_1": 10, "phage_holin_3_2": 10, "phage_holin_3_3": 10, "phage_holin_3_5": 10, "phage_holin_3_6": 10, "phage_holin_3_7": 10, "phage_holin_4_1": 10, "phage_holin_4_2": 10, "phage_holin_5_1": 10, "phage_holin_5_2": 10, "phage_holin_6_1": 10, "phage_holin_7_1": 10, "phage_holin_8": 10, "phage_holin_dp1": 10, "phage_hub_gp28": 10, "phage_int_sam_1": 10, "phage_int_sam_2": 10, "phage_int_sam_3": 10, "phage_int_sam_4": 10, "phage_int_sam_5": 10, "phage_int_sam_6": 10, "phage_integr_3": 10, "phage_integras": 10, "phage_lambda_p": 10, "phage_lysi": 10, "phage_lysozym": 10, "phage_lysozyme2": 10, "phage_min_cap2": 10, "phage_min_tail": 10, "phage_prha": 10, "phage_port": 10, "phage_portal_2": 10, "phage_prot_gp6": 10, "phage_r1t_holin": 10, "phage_rep_o": 10, "phage_rep_org_n": 10, "phage_sheath_1": 10, "phage_sheath_1c": 10, "phage_sheath_1n": 10, "phage_spik": 10, "phage_stabilis": 10, "phage_tail_2": 10, "phage_tail_3": 10, "phage_tail_apc": 10, "phage_tail_l": 10, "phage_tail_nk": 10, "phage_tail_": 10, "phage_tail_t": 10, "phage_tail_u": 10, "phage_tail_x": 10, "phage_term_sma": 10, "phage_term_sm": 10, "phage_terminas": 10, "phage_tub": 10, "phage_tube_2": 10, "phage_tube_c": 10, "phageshock_pspd": 10, "phageshock_pspg": 10, "phasin": 10, "phasin_2": 10, "phdyefm_antitox": 10, "phers_dbd1": 10, "phers_dbd2": 10, "phers_dbd3": 10, "phe_zip": 10, "phe_hydrox_dim": 10, "phe_trna": 10, "phenol_hydrox": 10, "phenol_meta_deg": 10, "phenol_hyd_sub": 10, "phenol_monoox": 10, "phenyl_p_gamma": 10, "pheromon": 10, "phetrs_b1": 10, "phg_2220_c": 10, "phi": 10, "29_gp3": 10, "phi29_phage_ssb": 10, "phi_1": 10, "phlebo_g2_c": 10, "phlebovirus_g1": 10, "phlebovirus_g2": 10, "phng": 10, "phnh": 10, "phni": 10, "phnj": 10, "pho86": 10, "pho88": 10, "phod": 10, "phod_2": 10, "phod_n": 10, "phoh": 10, "pholip_atpase_c": 10, "pholip_atpase_n": 10, "phopq_rel": 10, "phoq_sensor": 10, "phor": 10, "phou": 10, "phou_div": 10, "phos_pyr_kin": 10, "phosducin": 10, "phosphmutas": 10, "phosphatas": 10, "phospho_p8": 10, "phosphoesteras": 10, "phospholamban": 10, "phospholip_a2_1": 10, "phospholip_a2_2": 10, "phospholip_a2_3": 10, "phospholip_a2_4": 10, "phospholip_b": 10, "phosphon": 10, "phosphoprotein": 10, "phosphorylas": 10, "phostensin": 10, "phostensin_n": 10, "photo_rc": 10, "phrc_phrf": 10, "phyh": 10, "phycobilisom": 10, "phycoerythr_ab": 10, "phytas": 10, "phyto": 10, "phytochelatin": 10, "phytochelatin_c": 10, "phzc": 10, "phzf": 10, "pico_p1a": 10, "pico_p2a": 10, "pico_p2b": 10, "piezo_rras_bdg": 10, "pign": 10, "pigment_dh": 10, "pih1_fungal_c": 10, "pik1": 10, "pil1": 10, "pila4": 10, "pili": 10, "pilj": 10, "pilj_c": 10, "pilm": 10, "pilm_2": 10, "piln": 10, "piln_bio_d": 10, "pilo": 10, "pilp": 10, "pil": 10, "pilw": 10, "pilx": 10, "pilx_n": 10, "pilz": 10, "pilzn": 10, "pilzn1": 10, "pilzn3": 10, "pilznr": 10, "pilin": 10, "pilin_gh": 10, "pilin_n": 10, "pilin_pila": 10, "pilin_pilx": 10, "pilosulin": 10, "pilt": 10, "pilus_cpad": 10, "pim": 10, "pinin_sdk_n": 10, "pinin_sdk_mema": 10, "pipa": 10, "pirin": 10, "pirin_c": 10, "pirin_c_2": 10, "piwi": 10, "pixa": 10, "pkinas": 10, "pkinase_c": 10, "pkinase_fung": 10, "pkng_tpr": 10, "pkng_rubr": 10, "pknh_c": 10, "pkr1": 10, "planc_extracel": 10, "plant_nmp1": 10, "plant_all_beta": 10, "plant_tran": 10, "plant_zn_clust": 10, "plasmid_raqprd": 10, "plasmid_parti": 10, "plasmid_stab_b": 10, "plasmo_rep": 10, "plasmod_pvs28": 10, "plasmod_dom_1": 10, "plasmodium_hrp": 10, "plasmodium_vir": 10, "plavaka": 10, "plectin": 10, "plexin_rbd": 10, "plexin_cytopl": 10, "plii": 10, "plk4_pb1": 10, "plk4_pb2": 10, "ploopntkinase3": 10, "plug": 10, "plug_translocon": 10, "plyb_c": 10, "pmba_tldd": 10, "pmba_tldd_c": 10, "pmba_tldd_m": 10, "pmp3": 10, "pmrd": 10, "pnpcd_pnpd_n": 10, "pocr": 10, "podoplanin": 10, "podovirus_gp16": 10, "polc_dp2": 10, "pol_alpha_b_n": 10, "polbeta": 10, "pollen_ole_e_1": 10, "pollen_allerg_2": 10, "polo_box_2": 10, "polo_box_3": 10, "polya_pol": 10, "polya_pol_rnabd": 10, "polya_pol_arg_c": 10, "polyg_pol": 10, "poly_a_pol_cat": 10, "poly_export": 10, "polycystin_dom": 10, "polyketide_cyc": 10, "polyketide_cyc2": 10, "polyoma_lg_t_c": 10, "polysacc_deac_1": 10, "polysacc_deac_2": 10, "polysacc_deac_3": 10, "polysacc_lyas": 10, "polysacc_syn_2c": 10, "polysacc_synt": 10, "polysacc_synt_2": 10, "polysacc_synt_3": 10, "polysacc_synt_4": 10, "polysacc_synt_c": 10, "pom": 10, "pombe_5tm": 10, "popey": 10, "pora": 10, "porb": 10, "porp_sprf": 10, "porv": 10, "por_secre_tail": 10, "porin_1": 10, "porin_10": 10, "porin_2": 10, "porin_3": 10, "porin_4": 10, "porin_5": 10, "porin_6": 10, "porin_7": 10, "porin_8": 10, "porin_o_p": 10, "porin_ompg": 10, "porin_ompg_1_2": 10, "porin_ompl1": 10, "porph_g": 10, "porphobil_deam": 10, "porphobil_deamc": 10, "porphyrn_cat_1": 10, "portal_gp20": 10, "post_transc_reg": 10, "potass_kdpf": 10, "potassium_chann": 10, "pou": 10, "pox_a22": 10, "pox_a32": 10, "pox_a51": 10, "pox_a6": 10, "pox_a8": 10, "pox_a9": 10, "pox_a_type_inc": 10, "pox_d5": 10, "pox_i5": 10, "pox_mcel": 10, "pox_p35": 10, "pox_rna_pol_19": 10, "pox_rna_pol": 10, "pox_vltf3": 10, "pox_int_tran": 10, "pox_ser": 10, "thr_kin": 10, "pox_vil": 10, "18bp": 10, "ppnp": 10, "pput2613": 10, "ppx": 10, "gppa": 10, "pqia": 10, "pqqa": 10, "pqqd": 10, "pr_beta_c": 10, "prcb_c": 10, "preatp": 10, "prefoldin": 10, "prefoldin_2": 10, "prefoldin_3": 10, "prenylcys_lyas": 10, "prenyltran": 10, "prenyltransf": 10, "presenilin": 10, "preseq_ala": 10, "prgh": 10, "prgi": 10, "prgu": 10, "pria_3primebd": 10, "pria_c": 10, "pria_crr": 10, "pric": 10, "prict_1": 10, "prict_2": 10, "prix": 10, "pribosyl_synth": 10, "pribosyltran": 10, "pribosyltran_n": 10, "prim": 10, "pol": 10, "prim_zn_ribbon": 10, "prion": 10, "prion_bprpp": 10, "prion_octapep": 10, "prisman": 10, "prka": 10, "prlf_antitoxin": 10, "prma": 10, "prmc_n": 10, "nt_nn": 10, "kuma_activ": 10, "rich_19": 10, "proq": 10, "proq_c": 10, "pror": 10, "c_1": 10, "c_2": 10, "prosaa": 10, "pro_3_hydrox_c": 10, "pro_al_proteas": 10, "pro_ca": 10, "pro_ca_2": 10, "pro_dh": 10, "pro_isomeras": 10, "pro_racemas": 10, "pro_sub2": 10, "profilin": 10, "prog_receptor": 10, "proho_convert": 10, "prok": 10, "e2_a": 10, "e2_b": 10, "e2_c": 10, "e2_d": 10, "e2_": 10, "ring_1": 10, "ring_2": 10, "ring_4": 10, "prok_ub": 10, "prokineticin": 10, "prolactin_rp": 10, "prolamin_lik": 10, "promethin": 10, "prominin": 10, "propep_m14": 10, "propeptide_c1": 10, "propeptide_c25": 10, "prophage_tail": 10, "prophage_taild1": 10, "prosystemin": 10, "prot_atp_id_ob": 10, "prot_atp_ob_n": 10, "prot_inhib_ii": 10, "protamine_p1": 10, "protamine_p2": 10, "protamine_lik": 10, "proteasom_psmb": 10, "proteasom_rpn13": 10, "proteasom": 10, "proteasome_a_n": 10, "protein_k": 10, "prothymosin": 10, "protocadherin": 10, "protoglobin": 10, "proton_antipo_c": 10, "proton_antipo_m": 10, "proton_antipo_n": 10, "prp18": 10, "prp19": 10, "prp31_c": 10, "prpf": 10, "prpr_n": 10, "prsw": 10, "proteas": 10, "psaa_psab": 10, "psad": 10, "psaf": 10, "psal": 10, "psam": 10, "psan": 10, "psax": 10, "psb28": 10, "psbh": 10, "psbi": 10, "psbj": 10, "psbk": 10, "psbl": 10, "psbm": 10, "psbn": 10, "psbp": 10, "psbp_2": 10, "psbq": 10, "psbr": 10, "psbt": 10, "psbu": 10, "psbw": 10, "psbx": 10, "psby": 10, "pseudou_synth_1": 10, "pseudou_synth_2": 10, "psg1": 10, "psia": 10, "psib": 10, "psie": 10, "psif_repeat": 10, "pspa_im30": 10, "pspb": 10, "pspc": 10, "psu": 10, "pterin_4a": 10, "pterin_bind": 10, "pur_n": 10, "pucr": 10, "pufq": 10, "pula_n1": 10, "pulg": 10, "pullul_strch_c": 10, "pullulanase_in": 10, "pullulanase_n2": 10, "pup": 10, "pup_ligas": 10, "pura": 10, "purk_c": 10, "purl_c": 10, "pur": 10, "pur_dna_glyco": 10, "pur_ac_phosph_n": 10, "puta_n": 10, "put_dna": 10, "bind_n": 10, "put_phosphatas": 10, "putative_g5p": 10, "putative_pnpox": 10, "pvc16_n": 10, "pvlargdc": 10, "pyocinactiv": 10, "pyocin_": 10, "pyrbi_lead": 10, "pyri": 10, "pyri_c": 10, "pyr_excis": 10, "pyr_redox": 10, "pyr_redox_2": 10, "pyr_redox_3": 10, "pyr_redox_dim": 10, "pyrid_ox_lik": 10, "pyrid_oxidase_2": 10, "pyridox_ox_2": 10, "pyridox_oxase_2": 10, "pyridoxal_dec": 10, "pyrophosphatas": 10, "qcr10": 10, "qh": 10, "amdh_gamma": 10, "qil1": 10, "qlq": 10, "qpe": 10, "qrptase_c": 10, "qrptase_n": 10, "qsox_trx1": 10, "qsregvf": 10, "qsregvf_b": 10, "qvr": 10, "qwrf": 10, "q_salvag": 10, "qcra_n": 10, "qn_am_d_aii": 10, "qn_am_d_aiii": 10, "qn_am_d_aiv": 10, "qsla_e": 10, "qua1": 10, "quaking_nl": 10, "quec": 10, "quef": 10, "quef_n": 10, "queg_duf1730": 10, "queh": 10, "quet": 10, "questin_oxidas": 10, "queuosine_synth": 10, "hinp1i": 10, "r2k_2": 10, "r2k_3": 10, "r3h": 10, "assoc": 10, "ra": 10, "rab3gap2_c": 10, "rab3gap2_n": 10, "rac_head": 10, "raco_c_t": 10, "raco_link": 10, "rad51_interact": 10, "rag1": 10, "rag1_imp_bd": 10, "rag2": 10, "rag2_phd": 10, "rai1": 10, "rai16": 10, "ralf": 10, "ralgapb_n": 10, "ram": 10, "rama": 10, "ramp": 10, "ramp4": 10, "rank_crd_2": 10, "rap": 10, "rap1": 10, "rap80_uim": 10, "rawul": 10, "rbb1nt": 10, "rbd": 10, "fip": 10, "rbfa": 10, "rbm1ctr": 10, "rbm39linker": 10, "rbp_receptor": 10, "rbr": 10, "rb_a": 10, "rb_b": 10, "rc": 10, "p840_pscd": 10, "rcc1": 10, "rcc1_2": 10, "rcc_reductas": 10, "rcdg1": 10, "rcr": 10, "rcs1": 10, "rcsd": 10, "rd3": 10, "rdd": 10, "rdm": 10, "rdv": 10, "p3": 10, "rec1": 10, "rec104": 10, "rec114": 10, "red_c": 10, "red_n": 10, "ref": [10, 14], "rej": 10, "relt": 10, "repa_ob_2": 10, "re": [10, 14, 17], "resp18": 10, "reticulata": 10, "ret_cld1": 10, "ret_cld3": 10, "ret_cld4": 10, "rev": 10, "rev1_c": 10, "re_acci": 10, "re_alw26id": 10, "re_alwi": 10, "re_apali": 10, "re_aspbhi_n": 10, "re_bpu10i": 10, "re_bsawi": 10, "re_bsp6i": 10, "re_bstxi": 10, "re_cfrbi": 10, "re_eco29ki": 10, "re_eco47ii": 10, "re_ecoo109i": 10, "re_haeii": 10, "re_haeiii": 10, "re_hindiii": 10, "re_hindvp": 10, "re_hpaii": 10, "re_llaji": 10, "re_llami": 10, "re_mami": 10, "re_mjai": 10, "re_ngobv": 10, "re_ngofvii": 10, "re_ngopii": 10, "re_r_pab1": 10, "re_saci": 10, "re_scai": 10, "re_sini": 10, "re_taqi": 10, "re_tdeiii": 10, "re_xami": 10, "re_xcyi": 10, "re_endonuc": 10, "rf": [10, 11, 17], "rf3_c": 10, "rfc1": 10, "rfx1_trans_act": 10, "rfx5_dna_bdg": 10, "rfx5_n": 10, "rfxa_rfxank_bdg": 10, "rfx_dna_bind": 10, "rfamide_26rfa": 10, "rgcc": 10, "rgi1": 10, "rgi_lyas": 10, "rgm_c": 10, "rgm_n": 10, "rgp": 10, "rg": 10, "rgs12_us1": 10, "rgs12_us2": 10, "rgs12_usc": 10, "rgs_dhex": 10, "rhd3_gtpase": 10, "rhd_dna_bind": 10, "rhd_dimer": 10, "rhh_1": 10, "rhh_3": 10, "rhh_4": 10, "rhh_5": 10, "rhh_6": 10, "rhh_7": 10, "rhh_8": 10, "rhh_9": 10, "rhim": 10, "rhino": 10, "rh": 10, "rhsp": 10, "rhs_n": 10, "rhs_repeat": 10, "rib43a": 10, "ribiop_c": 10, "ric1": 10, "ric3": 10, "rictor_m": 10, "rictor_n": 10, "rictor_v": 10, "rictor_phospho": 10, "rif5_snase_1": 10, "rif5_snase_2": 10, "rifin": 10, "rig": 10, "i_c": 10, "rd": 10, "rih_assoc": 10, "rii_binding_1": 10, "riia": 10, "rilp": 10, "ring_cbp": 10, "p300": 10, "ringv": 10, "rint1_tip1": 10, "rio1": 10, "rip": 10, "rita": 10, "rix1": 10, "rkp_n": 10, "rl": 10, "rl10p_insert": 10, "rlan": 10, "rli": 10, "rll": 10, "rme": 10, "8_n": 10, "rmf": 10, "rmi1_c": 10, "rmi1_n": 10, "rmi2": 10, "rmmbl": 10, "rmp": 10, "rna12": 10, "rna_me_tran": 10, "rna_pol_m_15kd": 10, "rna_bind": 10, "rna_helicas": 10, "rna_lig_t4_1": 10, "rna_ligas": 10, "rna_pol": 10, "rna_poli_a14": 10, "rna_poli_a34": 10, "rna_pol_3_rpc31": 10, "rna_pol_a_ctd": 10, "rna_pol_a_bac": 10, "rna_pol_i_a49": 10, "rna_pol_i_tf": 10, "rna_pol_l": 10, "rna_pol_l_2": 10, "rna_pol_n": 10, "rna_pol_rbc25": 10, "rna_pol_rpa2_4": 10, "rna_pol_rpb1_1": 10, "rna_pol_rpb1_2": 10, "rna_pol_rpb1_3": 10, "rna_pol_rpb1_4": 10, "rna_pol_rpb1_5": 10, "rna_pol_rpb1_6": 10, "rna_pol_rpb1_7": 10, "rna_pol_rpb1_r": 10, "rna_pol_rpb2_1": 10, "rna_pol_rpb2_2": 10, "rna_pol_rpb2_3": 10, "rna_pol_rpb2_4": 10, "rna_pol_rpb2_45": 10, "rna_pol_rpb2_5": 10, "rna_pol_rpb2_6": 10, "rna_pol_rpb2_7": 10, "rna_pol_rpb4": 10, "rna_pol_rpb5_c": 10, "rna_pol_rpb5_n": 10, "rna_pol_rpb6": 10, "rna_pol_rpb8": 10, "rna_pol_rpbg": 10, "rna_pol_rpc34": 10, "rna_pol_rpc4": 10, "rna_pol_rpc82": 10, "rna_pol_rpo13": 10, "rna_pol_inhib": 10, "rnase_a_bac": 10, "rnb": 10, "rnf111_n": 10, "rnf152_c": 10, "rnf180_c": 10, "rnf220": 10, "rnhcp": 10, "rnpp_c": 10, "rnr_alpha": 10, "rnr_n": 10, "rnr_inhib": 10, "rnaseh_c": 10, "rnaseh_lik": 10, "rnaseh_ppiwi_r": 10, "rnase_3_n": 10, "rnase_e_g": 10, "rnase_h": 10, "rnase_h2": 10, "ydr279": 10, "rnase_h2_suc": 10, "rnase_hii": 10, "rnase_h_2": 10, "rnase_ii_c_s1": 10, "rnase_j_c": 10, "rnase_p": 10, "mrp_p29": 10, "rnase_ph": 10, "rnase_ph_c": 10, "rnase_p_rpp14": 10, "rnase_p_p30": 10, "rnase_p_pop3": 10, "rnase_t": 10, "rnase_y_n": 10, "rnase_zc3h12a": 10, "rnase_zc3h12a_2": 10, "rof": 10, "roh1": 10, "rok": 10, "roknt": 10, "roq_ii": 10, "ros_mucr": 10, "roxa": 10, "like_wh": 10, "rp": 10, "rp1": 10, "rp853": 10, "rp854": 10, "rpa": 10, "rpa43_ob": 10, "rpap1_c": 10, "rpap1_n": 10, "rpap2_rtr1": 10, "rpap3_c": 10, "rpa_c": 10, "rpa_interact_c": 10, "rpa_interact_m": 10, "rpa_interact_n": 10, "rpc5": 10, "rpc5_c": 10, "rpe65": 10, "rpel": 10, "rpgr1_c": 10, "rpm2": 10, "rpn13_c": 10, "rpn1_c": 10, "rpn1_rpn2_n": 10, "rpn2_c": 10, "rpn5_c": 10, "rpn6_c_helix": 10, "rpn6_n": 10, "rpn7": 10, "rpol_n": 10, "rps31": 10, "rpt": 10, "rpw8": 10, "rqc": 10, "rrf": 10, "rrf_gi": 10, "rrg8": 10, "rrm": 10, "rrm_1": 10, "rrm_2": 10, "rrm_3": 10, "rrm_4": 10, "rrm_5": 10, "rrm_7": 10, "rrm_8": 10, "rrm_9": 10, "rrm_dme": 10, "rrm_rrp7": 10, "rrm_occlud": 10, "rrn3": 10, "rrn9": 10, "rrp14": 10, "rrp36": 10, "rrp7": 10, "rrs1": 10, "rrt14": 10, "rrxrr": 10, "rr_tm4": 10, "rs4nt": 10, "rsb_motif": 10, "rsd": 10, "rsf": 10, "rsn1_7tm": 10, "rsn1_tm": 10, "rsrp": 10, "rss_p20": 10, "rst": 10, "rta1": 10, "rtc": 10, "rtc4": 10, "rtc_insert": 10, "rtp": 10, "rtp1_c1": 10, "rtp1_c2": 10, "rtp801_c": 10, "rtt107_brct_5": 10, "rtt107_brct_6": 10, "rttn_n": 10, "rtx": 10, "rtx_c": 10, "rt_rnaseh": 10, "rt_rnaseh_2": 10, "rvp": 10, "rvp_2": 10, "rvt_1": 10, "rvt_2": 10, "rvt_3": 10, "rvt_n": 10, "rvt_thumb": 10, "rwd": 10, "rwp": 10, "rk": 10, "rxlr": 10, "rxlr_wy": 10, "rxt2_n": 10, "rydr_itpr": 10, "r_equi_vir": 10, "rab15_effector": 10, "rab3": 10, "gap_cat_c": 10, "gtpase_cat": 10, "rab5": 10, "rabgap": 10, "tbc": 10, "rabggt_insert": 10, "rab_bind": 10, "rab_eff_c": 10, "rabaptin": 10, "rac1": 10, "raco_middl": 10, "rad1": 10, "rad10": 10, "rad17": 10, "rad21_rec8": 10, "rad21_rec8_n": 10, "rad33": 10, "rad4": 10, "rad50_zn_hook": 10, "rad51": 10, "rad52_rad22": 10, "rad54_n": 10, "rad60": 10, "sld": 10, "sld_2": 10, "rad9": 10, "rad9_rad53_bind": 10, "radc": 10, "radial_spok": 10, "radial_spoke_3": 10, "radical_sam": 10, "radical_sam_2": 10, "radical_sam_c": 10, "radical_sam_n": 10, "radical_sam_n2": 10, "raf1_hth": 10, "raf1_n": 10, "raffinose_syn": 10, "raftlin": 10, "ral": 10, "ralf_scd": 10, "ran": 10, "rangap1_c": 10, "ran_bp1": 10, "rap1_c": 10, "rap1a": 10, "rapa_c": 10, "raph_n": 10, "rap_gap": 10, "rapsyn_n": 10, "raptor_n": 10, "rasgap": 10, "rasgap_c": 10, "rasgef": 10, "rasgef_n": 10, "rasgef_n_2": 10, "ras_bdg_2": 10, "rav1p_c": 10, "rax2": 10, "rb_c": 10, "rbc": 10, "rbcx": 10, "rbpa": 10, "rbsd_fucu": 10, "rbsn": 10, "rbx_bind": 10, "rcd1": 10, "rce1": 10, "rcnb": 10, "rcpb": 10, "rcpc": 10, "rcsc": 10, "rcsd_abl": 10, "rcsf": 10, "rddm_rdm1": 10, "rdrp": 10, "rdrp_1": 10, "rdrp_2": 10, "rdrp_4": 10, "rdgc": 10, "rdx": 10, "rebb": 10, "reca": 10, "reca_dep_nuc": 10, "recc_c": 10, "recg_n": 10, "recg_dom3_c": 10, "recg_wedg": 10, "recj_ob": 10, "reco_c": 10, "reco_n": 10, "reco_n_2": 10, "recq5": 10, "recq_zn_bind": 10, "recr": 10, "recu": 10, "recx": 10, "recep_l_domain": 10, "receptor_2b4": 10, "receptor_ia": 10, "recombinas": 10, "red1": 10, "redoxin": 10, "reeler": 10, "reg_prop": 10, "regnase_1_c": 10, "regulator_trmb": 10, "rela_ah_ri": 10, "rela_spot": 10, "relb": 10, "relb_n": 10, "relb_leu_zip": 10, "relb_transactiv": 10, "rele": 10, "relaxas": 10, "remorin_c": 10, "remorin_n": 10, "renin_r": 10, "rep": 10, "a_n": 10, "repa1_lead": 10, "repa_c": 10, "repa_n": 10, "repb": 10, "rcr_reg": 10, "repb_primas": 10, "repc": 10, "repl": 10, "repsa": 10, "rep_1": 10, "rep_2": 10, "rep_3": 10, "rep_4": 10, "rep_n": 10, "rep_org_c": 10, "rep_fac": 10, "a_3": 10, "a_c": 10, "rep_fac_c": 10, "rep_tran": 10, "replic_relax": 10, "replicas": 10, "reprolysin": 10, "reprolysin_2": 10, "reprolysin_3": 10, "reprolysin_4": 10, "reprolysin_5": 10, "rer1": 10, "resb": 10, "resiii": 10, "resistin": 10, "resolvas": 10, "response_reg": 10, "response_reg_2": 10, "restrictionmuni": 10, "restrictionsfii": 10, "ret2_md": 10, "reticulon": 10, "retin": 10, "retinin_c": 10, "retro_m": 10, "retrotran_gag_2": 10, "retrotran_gag_3": 10, "retrotran_gag_4": 10, "retrotrans_gag": 10, "rexa": 10, "rexb": 10, "rft": 10, "rgp1": 10, "rgpf": 10, "rh5": 10, "rhaa": 10, "rhat": 10, "rhabdo_glycop": 10, "rhabdo_ncap": 10, "rhabdo_ncap_2": 10, "rhamno_transf": 10, "rhamnogal_lyas": 10, "rhgb_n": 10, "rhlb": 10, "rhogap": 10, "ff1": 10, "rhogap_pg1_pg2": 10, "rhogef": 10, "rhogef67_u1": 10, "rhogef67_u2": 10, "rho_bind": 10, "rho_gdi": 10, "rho_n": 10, "rho_rna_bind": 10, "rhodanes": 10, "rhodanese_c": 10, "rhodobacterpufx": 10, "rhodopsin_n": 10, "rhomboid": 10, "rhomboid_2": 10, "rhomboid_n": 10, "rhomboid_sp": 10, "rhv": 10, "rib": 10, "ribd_c": 10, "riblong": 10, "rib_5": 10, "p_isom_a": 10, "rib_hydrolays": 10, "rib_recp_kp_reg": 10, "ribo_biogen_c": 10, "ribonuc_2": 10, "5a": 10, "ribonuc_l": 10, "ribonuc_p_40": 10, "ribonuc_red_2_n": 10, "ribonuc_red_lgc": 10, "ribonuc_red_lgn": 10, "ribonuc_red_sm": 10, "ribonucleas_3_2": 10, "ribonucleas_3_3": 10, "ribonucleas": 10, "ribonuclease_3": 10, "ribonuclease_p": 10, "ribonuclease_t2": 10, "ribophorin_i": 10, "ribophorin_ii": 10, "ribos_l4_asso_c": 10, "ribosom_s12_s23": 10, "ribosom_s30ae_c": 10, "ribosomal_60": 10, "ribosomal_l1": 10, "ribosomal_l10": 10, "ribosomal_l11": 10, "ribosomal_l11_n": 10, "ribosomal_l12": 10, "ribosomal_l12_n": 10, "ribosomal_l13": 10, "ribosomal_l14": 10, "ribosomal_l15": 10, "ribosomal_l16": 10, "ribosomal_l17": 10, "ribosomal_l18": 10, "ribosomal_l18a": 10, "ribosomal_l18_c": 10, "ribosomal_l18p": 10, "ribosomal_l19": 10, "ribosomal_l2": 10, "ribosomal_l20": 10, "ribosomal_l21": 10, "ribosomal_l21p": 10, "ribosomal_l22": 10, "ribosomal_l23": 10, "ribosomal_l23en": 10, "ribosomal_l24": 10, "ribosomal_l25p": 10, "ribosomal_l26": 10, "ribosomal_l27": 10, "ribosomal_l27a": 10, "ribosomal_l27_c": 10, "ribosomal_l28": 10, "ribosomal_l29": 10, "ribosomal_l2_c": 10, "ribosomal_l3": 10, "ribosomal_l30": 10, "ribosomal_l30_n": 10, "ribosomal_l31": 10, "ribosomal_l32": 10, "ribosomal_l32p": 10, "ribosomal_l33": 10, "ribosomal_l34": 10, "ribosomal_l35a": 10, "ribosomal_l35p": 10, "ribosomal_l36": 10, "ribosomal_l37": 10, "ribosomal_l37a": 10, "ribosomal_l38": 10, "ribosomal_l39": 10, "ribosomal_l4": 10, "ribosomal_l40": 10, "ribosomal_l41": 10, "ribosomal_l44": 10, "ribosomal_l5": 10, "ribosomal_l50": 10, "ribosomal_l5_c": 10, "ribosomal_l6": 10, "ribosomal_l6e_n": 10, "ribosomal_l7a": 10, "ribosomal_l9_c": 10, "ribosomal_l9_n": 10, "ribosomal_s10": 10, "ribosomal_s11": 10, "ribosomal_s13": 10, "ribosomal_s13_n": 10, "ribosomal_s14": 10, "ribosomal_s15": 10, "ribosomal_s16": 10, "ribosomal_s17": 10, "ribosomal_s17_n": 10, "ribosomal_s18": 10, "ribosomal_s19": 10, "ribosomal_s2": 10, "ribosomal_s20p": 10, "ribosomal_s21": 10, "ribosomal_s22": 10, "ribosomal_s24": 10, "ribosomal_s25": 10, "ribosomal_s26": 10, "ribosomal_s27": 10, "ribosomal_s28": 10, "ribosomal_s30": 10, "ribosomal_s30a": 10, "ribosomal_s3a": 10, "ribosomal_s3_c": 10, "ribosomal_s4": 10, "ribosomal_s4pg": 10, "ribosomal_s5": 10, "ribosomal_s5_c": 10, "ribosomal_s6": 10, "ribosomal_s7": 10, "ribosomal_s8": 10, "ribosomal_s9": 10, "ribosomal_tl5_c": 10, "ribul_p_3_epim": 10, "ric8": 10, "ricinb_lectin_2": 10, "ricin_b_lectin": 10, "rick_17kda_anti": 10, "riesk": 10, "rieske_2": 10, "rieske_3": 10, "rif1_n": 10, "rimk": 10, "rimm": 10, "rimp_n": 10, "rimk_n": 10, "rinb": 10, "ring_hydroxyl_a": 10, "ring_hydroxyl_b": 10, "rio2_n": 10, "rippli": 10, "riss_ppd": 10, "rit1_c": 10, "rlap": 10, "rlmm_fdx": 10, "rlob": 10, "rmld_sub_bind": 10, "rmuc": 10, "rnasea": 10, "rnf": 10, "nqr": 10, "rnfc_n": 10, "rnk_n": 10, "rnla": 10, "toxin_dbd": 10, "rnla_toxin": 10, "rnla_toxin_n": 10, "rnlb_antitoxin": 10, "robl_lc7": 10, "roc": 10, "rod": 10, "rod_c": 10, "rod_cone_degen": 10, "rogdi_lz": 10, "rolb_rolc": 10, "rol_rep_n": 10, "romo1": 10, "root_cap": 10, "rootletin": 10, "rop": 10, "rossmann": 10, "rot1": 10, "rotamas": 10, "rotamase_2": 10, "rotamase_3": 10, "roughex": 10, "rox3": 10, "rpf1_c": 10, "rpn3_c": 10, "rpn9_c": 10, "rpoi": 10, "rpp20": 10, "rpr2": 10, "rraa": 10, "rrab": 10, "rrf2": 10, "rrn6": 10, "rrnaad": 10, "rrp15p": 10, "rrp40_n": 10, "rrp44_csd1": 10, "rrp44_s1": 10, "rsa3": 10, "rsaa_ntd": 10, "rsbrd_n": 10, "rsbu_n": 10, "rsbr_n": 10, "rsc14": 10, "rsda_sigd_bd": 10, "rsd_algq": 10, "rsea_c": 10, "rsea_n": 10, "rsec_mucc": 10, "rsga_gtpas": 10, "rsga_n": 10, "rsgi_n": 10, "rska": 10, "rsm1": 10, "rsm22": 10, "rsmf_methylt_ci": 10, "rsmj": 10, "rtcb": 10, "rtcr": 10, "rtec": 10, "rtf2": 10, "rtt102p": 10, "rtt106": 10, "rtt106_n": 10, "rtxa": 10, "rubisco_larg": 10, "rubisco_large_n": 10, "rubisco_smal": 10, "rubisco_chap_c": 10, "rua1_c": 10, "rubi": 10, "rubredoxin": 10, "rubredoxin_2": 10, "rubredoxin_c": 10, "rubrerythrin": 10, "runt": 10, "runxi": 10, "rusa": 10, "ruva_c": 10, "ruva_n": 10, "ruvb_c": 10, "ruvb_n": 10, "ruvc": 10, "ruvc_1": 10, "ruvc_iii": 10, "ruvx": 10, "rv0078b": 10, "rv2175c_c": 10, "rv2179c": 10, "rv2632c": 10, "rv2949c": 10, "rx_n": 10, "rxt3": 10, "ryr": 10, "rz1": 10, "adomet_synt_c": 10, "adomet_synt_m": 10, "adomet_synt_n": 10, "antigen": 10, "l_sbsc_c": 10, "layer": 10, "methyl_tran": 10, "p1_nucleas": 10, "s100pbpr": 10, "s10_plectin": 10, "s1fa": 10, "s1_2": 10, "s36_mt": 10, "s4_2": 10, "s6os1": 10, "s6pp": 10, "s6pp_c": 10, "s8_pro": 10, "saa": 10, "sab": 10, "sac3": 10, "sac3_ganp": 10, "sad_sra": 10, "sae2": 10, "saf": 10, "sag": 10, "saga": 10, "tad1": 10, "saicar_synt": 10, "sam35": 10, "samp": 10, "sam_1": 10, "sam_2": 10, "sam_3": 10, "sam_4": 10, "sam_drpa": 10, "sam_exu": 10, "sam_hat_c": 10, "sam_hat_n": 10, "sam_ksr1": 10, "sam_ksr1_n": 10, "sam_lfi": 10, "sam_mt": 10, "sam_pnt": 10, "sam_ste50p": 10, "sam_decarbox": 10, "sanbr_btb": 10, "sand": 10, "santa": 10, "sant_damp1_lik": 10, "sap": 10, "sap130_c": 10, "sap18": 10, "sap25": 10, "sap30_sin3_bdg": 10, "sapi": 10, "sap_new25": 10, "sara": 10, "saraf": 10, "sarg": 10, "sart": 10, "sa": 10, "6_n": 10, "sas4": 10, "sasa": 10, "sasp": 10, "sasp_gamma": 10, "sasrp1": 10, "sat": 10, "satase_n": 10, "saugi": 10, "sawade": 10, "saysvfn": 10, "sbbp": 10, "sbd": 10, "sbds_c": 10, "sbds_domain_ii": 10, "sbd_n": 10, "sbe2": 10, "sbf": 10, "sbf2": 10, "sbf_like": 10, "sbp": 10, "sbp56": 10, "sbp_bac_1": 10, "sbp_bac_10": 10, "sbp_bac_11": 10, "sbp_bac_3": 10, "sbp_bac_5": 10, "sbp_bac_6": 10, "sbp_bac_8": 10, "sca7": 10, "scab": 10, "abd": 10, "scab_cc": 10, "scai": 10, "scamp": 10, "scaper_n": 10, "scf": 10, "scfa_tran": 10, "scgb3a": 10, "schip": 10, "sciff": 10, "scimp": 10, "scnm1_acid": 10, "sco1": 10, "senc": 10, "scp": 10, "scp2": 10, "scp2_2": 10, "scpu": 10, "scp_3": 10, "scre": 10, "scrg1": 10, "scrl": 10, "scvp": 10, "sda1": 10, "sde2_2c": 10, "sdf": 10, "sdg2_c": 10, "sdh5_plant": 10, "sdh_c": 10, "sdh_alpha": 10, "sdh_beta": 10, "sdh_sah": 10, "sdp_n": 10, "se": [10, 14], "sea": 10, "sec": 10, "seeeed": 10, "seek1": 10, "sefir": 10, "sen1_n": 10, "senp3_5_n": 10, "seo_c": 10, "seo_n": 10, "sep": 10, "serrate_ars2_n": 10, "serta": 10, "set_assoc": 10, "sf": 10, "assemblin": 10, "sf1": 10, "hh": 10, "sf3a2": 10, "sf3a3": 10, "sf3a60_prp9_c": 10, "sf3a60_bindingd": 10, "sf3b1": 10, "sf3b10": 10, "sfta2": 10, "sfxn": 10, "sgbp_b_xbd": 10, "sgiii": 10, "sgl": 10, "sgnh": 10, "sgp": 10, "sg": 10, "sgt1": 10, "sgta_dim": 10, "sh2": 10, "sh2_2": 10, "sh3": 10, "rhog_link": 10, "ww_linker": 10, "sh3bgr": 10, "sh3bp5": 10, "sh3_1": 10, "sh3_10": 10, "sh3_11": 10, "sh3_12": 10, "sh3_13": 10, "sh3_15": 10, "sh3_16": 10, "sh3_17": 10, "sh3_18": 10, "sh3_19": 10, "sh3_2": 10, "sh3_3": 10, "sh3_4": 10, "sh3_5": 10, "sh3_6": 10, "sh3_7": 10, "sh3_9": 10, "shd1": 10, "she3": 10, "shippo": 10, "shirt": 10, "shmt": 10, "shni": 10, "tpr": 10, "shoct": 10, "shoct_2": 10, "shp": 10, "shq1": 10, "shr": 10, "shr3_chaperon": 10, "shs2_ftsa": 10, "shs2_rpb7": 10, "sica_c": 10, "sica_alpha": 10, "sica_beta": 10, "sid": 10, "1_rna_chan": 10, "sike": 10, "sil1": 10, "sim_c": 10, "sin1": 10, "sin1_ph": 10, "sip": 10, "sip1": 10, "sir2": 10, "sir2_2": 10, "sir4_sid": 10, "si": 10, "sis_2": 10, "sit": 10, "six1_sd": 10, "ska1": 10, "ska2": 10, "skg6": 10, "ski": 10, "skich": 10, "skip_snw": 10, "skn1_kre6_sbg1": 10, "sk_channel": 10, "sl4p": 10, "slac1": 10, "slain": 10, "slam": 10, "slatt_1": 10, "slatt_2": 10, "slatt_3": 10, "slatt_4": 10, "slatt_5": 10, "slatt_6": 10, "slatt_fung": 10, "slbb": 10, "slbp_rna_bind": 10, "slc12": 10, "slc25_like": 10, "slc35f": 10, "slc3a2_n": 10, "sld3": 10, "sld5_c": 10, "sled": 10, "slh": 10, "slide": 10, "slm4": 10, "slr1": 10, "sl": 10, "slt": 10, "slt_2": 10, "slt_3": 10, "slt_4": 10, "slt_l": 10, "slt_beta": 10, "slx9": 10, "sly": 10, "sm": 10, "atx": 10, "smap": 10, "smbp": 10, "smc_n": 10, "smc_nse1": 10, "smc_scpa": 10, "smc_scpb": 10, "smc_hing": 10, "smg1": 10, "smg1_n": 10, "smi1_knr4": 10, "smn": 10, "smod": 10, "smp": 10, "smp_2": 10, "smp_c2cd2l": 10, "smp_lbd": 10, "smrp1": 10, "smyle_n": 10, "snad1": 10, "snad2": 10, "snad3": 10, "snad4": 10, "snap": 10, "25": [10, 14], "snapc1": 10, "snapc2": 10, "snapc3": 10, "snapc5": 10, "snare": 10, "snare_assoc": 10, "sncaip_snca_bd": 10, "snf": 10, "snf2": 10, "rel_dom": 10, "snf2_assoc": 10, "snf5": 10, "snn_cytoplasm": 10, "snn_linker": 10, "snn_transmemb": 10, "sno": 10, "snrnp27": 10, "snurf": 10, "snx17_ferm_c": 10, "snase": 10, "soar": 10, "sobp": 10, "soc": 10, "socs_box": 10, "sog2": 10, "soga": 10, "sok": 10, "sop4": 10, "sor_snz": 10, "sossc": 10, "soti": 10, "soul": 10, "soxp": 10, "so_alpha_a3": 10, "sp24": 10, "spa": 10, "spaca7": 10, "spaca9": 10, "spam": 10, "sparc_ca_bdg": 10, "spark": 10, "spar_c": 10, "spasm": 10, "spata19": 10, "spata1_c": 10, "spata24": 10, "spata25": 10, "spata3": 10, "spata48": 10, "spata6": 10, "spata9": 10, "spatial": 10, "spc12": 10, "spc22": 10, "spc25": 10, "spdy": 10, "spect1": 10, "speg_u2": 10, "spesp1": 10, "spg4": 10, "spg48": 10, "spice": 10, "spin90_lrd": 10, "spk": 10, "spo11_lik": 10, "spo22": 10, "spob_a": 10, "spob_ab": 10, "spoc": 10, "spor": 10, "spout_mtas": 10, "spout_mtase_2": 10, "spp": 10, "spr1": 10, "spring1": 10, "sprr2": 10, "spry": 10, "spt16": 10, "spt2": 10, "spt6_acid": 10, "spt_ssu": 10, "spw": 10, "spx": 10, "sp_c": 10, "propep": 10, "sqapi": 10, "sqhop_cyclase_c": 10, "sqhop_cyclase_n": 10, "sqs_psy": 10, "sr": 10, "sr1p": 10, "sra": 10, "sra1": 10, "srap": 10, "src": 10, "srcr_2": 10, "srf": 10, "tf": 10, "sri": 10, "srp": 10, "alpha_n": 10, "srp14": 10, "srp19": 10, "srp1_tip1": 10, "srp40_c": 10, "srp54": 10, "srp54_n": 10, "srp68": 10, "srp72": 10, "srp9": 10, "srprb": 10, "srp_spb": 10, "srp_tpr_like": 10, "srr": 10, "srr1": 10, "srrm_c": 10, "srtm1": 10, "srx": 10, "ssb": 10, "ssdp": 10, "ssf": 10, "ssfa2_c": 10, "ssi": 10, "ssl_n": 10, "ssl_ob": 10, "ssp160": 10, "sspi": 10, "ssspr": 10, "51": 10, "sstk": 10, "ip": 10, "ssure": 10, "ssv1_orf_d": 10, "335": 10, "ssxrd": 10, "ssxt": 10, "ssrecog": 10, "st7": 10, "stac2_u1": 10, "stag": 10, "stald": 10, "start_2": 10, "star_dim": 10, "sta": 10, "stas_2": 10, "stat1_taz2bind": 10, "stat2_c": 10, "stat6_c": 10, "stat_alpha": 10, "stat_bind": 10, "stat_int": 10, "stata_ig": 10, "std1": 10, "ste": 10, "ste2": 10, "ste3": 10, "stello": 10, "stg": 10, "sti1": 10, "stil_n": 10, "stimat": 10, "stiv_b116": 10, "stn": 10, "stn1_2": 10, "stop": 10, "stppase_n": 10, "stt3": 10, "stt3_pglb_c": 10, "sub1_prodp9": 10, "sufbd": 10, "sufu": 10, "sufu_c": 10, "sui1": 10, "suim_assoc": 10, "sukh": 10, "sukh_5": 10, "sukh_6": 10, "sun": 10, "sur7": 10, "surf1": 10, "surf2": 10, "surf4": 10, "surf6": 10, "surnod19": 10, "suv3_c": 10, "suz": 10, "sua": 10, "sva": 10, "svip": 10, "svm_signal": 10, "svs_qk": 10, "svwc": 10, "swc7": 10, "swi": 10, "snf_ssr4_c": 10, "snf_ssr4_n": 10, "swi2_snf2": 10, "swib": 10, "swim": 10, "swirm": 10, "assoc_1": 10, "assoc_2": 10, "assoc_3": 10, "swm_repeat": 10, "syce1": 10, "sycp2_arld": 10, "sycp2_sld": 10, "syf2": 10, "sympk_pta1_n": 10, "sys1": 10, "s_100": 10, "s_2tmbeta": 10, "s_4tm": 10, "s_layer_c": 10, "s_layer_n": 10, "s_locus_glycop": 10, "s_tail_recep_bd": 10, "sa_nudix": 10, "saba_adhes": 10, "saccharop_dh_n": 10, "sacchrp_dh_c": 10, "sacchrp_dh_nadp": 10, "sad1_unc": 10, "nte_pilin": 10, "saf4_yju2": 10, "safa": 10, "saf_2tm": 10, "salp15": 10, "salt_tol_pas": 10, "sam68": 10, "yy": 10, "sapa": 10, "sapb_1": 10, "sapb_2": 10, "sapc": 10, "sar8_2": 10, "sarcoglycan_1": 10, "sarcoglycan_2": 10, "sarcolipin": 10, "sas10": 10, "sas10_utp3": 10, "sas6_cc": 10, "sasg_": 10, "satd": 10, "saw1": 10, "say1_mug180": 10, "sbcc_walker_b": 10, "sbcd_c": 10, "sbi": 10, "iv": 10, "sbma_baca": 10, "sbsc_c": 10, "sbt_1": 10, "scaffolding_pro": 10, "scda_n": 10, "scfr": 10, "scha_curd": 10, "sclerostin": 10, "scm3": 10, "scramblas": 10, "scs3p": 10, "scsc_n": 10, "scytalone_dh": 10, "sda": 10, "sde2_n_ubi": 10, "sdh5": 10, "sdh_cyt": 10, "sdia": 10, "regul": 10, "sdpa": 10, "sdpi": 10, "sdrd_b": 10, "sdrg_c_c": 10, "sds3": 10, "cys_synth_n": 10, "se_s_carri": 10, "seadorna_vp7": 10, "asp3": 10, "sec1": 10, "sec10": 10, "sec15": 10, "sec16": 10, "sec16_c": 10, "sec16_n": 10, "sec20": 10, "sec23_b": 10, "sec23_hel": 10, "sec23_trunk": 10, "sec2p": 10, "sec3": 10, "pip2_bind": 10, "sec31": 10, "sec34": 10, "sec39": 10, "sec3_c": 10, "sec3_c_2": 10, "sec5": 10, "sec6": 10, "sec61_beta": 10, "sec62": 10, "sec63": 10, "sec66": 10, "sec7": 10, "sec7_n": 10, "sec8_exocyst": 10, "seca_dead": 10, "seca_pp_bind": 10, "seca_sw": 10, "secb": 10, "secd": 10, "tm1": 10, "secd_secf": 10, "sece": 10, "secg": 10, "seciii_sope_n": 10, "secm": 10, "secm_smal": 10, "seci": 10, "sec_gg": 10, "secapin": 10, "secretin": 10, "secretin_n": 10, "secretin_n_2": 10, "secretogranin_v": 10, "securin": 10, "sedlin_n": 10, "sege_gii": 10, "seipin": 10, "sel1": 10, "sela": 10, "selb": 10, "wing_1": 10, "wing_2": 10, "wing_3": 10, "selk_selg": 10, "selo": 10, "selp_c": 10, "selp_n": 10, "selr": 10, "sel_put": 10, "seleniumbind": 10, "selenoprotein_": 10, "incomp_s1": 10, "sema": 10, "sema4f_c": 10, "semenogelin": 10, "semialdhyde_dh": 10, "semialdhyde_dhc": 10, "sen15": 10, "senesc": 10, "senescence_reg": 10, "sensor": 10, "sensor_tm1": 10, "sep15_selm": 10, "sepa": 10, "sepf": 10, "sepq": 10, "seprs_c": 10, "sepsec": 10, "sepz": 10, "septin": 10, "septum_form": 10, "seqa": [10, 15], "seqa_n": 10, "serh": 10, "ser_hydrolas": 10, "serendipity_a": 10, "serglycin": 10, "serinc": 10, "serine_rich": 10, "serpentine_r_xa": 10, "serpin": 10, "serpulina_vsp": 10, "serum_albumin": 10, "seryl_trna_n": 10, "sesa": 10, "ses_b": 10, "sex_peptid": 10, "sey1_3hb": 10, "sflap": 10, "sfi1": 10, "sfi1_c": 10, "sfsa": 10, "sfsa_n": 10, "sgf11": 10, "sgf11_n": 10, "sgo0707_n1": 10, "sgo0707_n2": 10, "sgrr_n": 10, "sgrt": 10, "shk": 10, "shadoo": 10, "shal": 10, "sharpin_ph": 10, "she2p": 10, "she9_mdm33": 10, "shigella_ospc": 10, "shikimate_dh": 10, "shikimate_dh_n": 10, "shisa": 10, "shlb": 10, "shufflon_n": 10, "shugoshin_c": 10, "shugoshin_n": 10, "siac": 10, "siah": 10, "interact_n": 10, "sial": 10, "lect": 10, "inser": 10, "sialidas": 10, "sicp": 10, "sidc_n": 10, "side_dub": 10, "side_pd": 10, "side_mart": 10, "sieb": 10, "sif": 10, "sigma54_aid": 10, "sigma54_cbd": 10, "sigma54_dbd": 10, "sigma54_activ_2": 10, "sigma54_activat": 10, "sigma70_ecf": 10, "sigma70_n": 10, "sigma70_r1_1": 10, "sigma70_r1_2": 10, "sigma70_r2": 10, "sigma70_r3": 10, "sigma70_r4": 10, "sigma70_r4_2": 10, "sigma_1": 10, "sigma_m_inh": 10, "sigma_reg_c": 10, "sigma_reg_n": 10, "silic_transp": 10, "sin3_corepress": 10, "sin3a_c": 10, "sini": 10, "sina": 10, "sipa": 10, "sipa_vb": 10, "sipho_gp157": 10, "sipho_gp37": 10, "sipho_tail": 10, "sir1": 10, "sira": 10, "sirb": 10, "sirohm_synth_c": 10, "sirohm_synth_m": 10, "siva": 10, "ski2_n": 10, "ski_sno": 10, "skp1": 10, "skp1_poz": 10, "sld3_n": 10, "sld5": 10, "sld7_c": 10, "sld7_n": 10, "slipam": 10, "slp": 10, "slpa": 10, "slr4": 10, "slu7": 10, "slx4": 10, "slyx": 10, "smakap": 10, "sm_multidrug_ex": 10, "smai": 10, "smac_diablo": 10, "smg4_upf3": 10, "smg8_smg9": 10, "smim3": 10, "smoa_sbd": 10, "smoothelin": 10, "smpa_omla": 10, "smpb": 10, "snac": 10, "snapin_pallidin": 10, "snf7": 10, "snoal": 10, "snoal_2": 10, "snoal_3": 10, "snoal_4": 10, "snoal_5": 10, "snu56_snrnp": 10, "snurportin1": 10, "snx8_bar_dom": 10, "sodot": 10, "icmss": 10, "sopb_hth": 10, "sod_cu": 10, "sod_fe_c": 10, "sod_fe_n": 10, "sod_ni": 10, "sof1": 10, "solute_trans_a": 10, "somatomedin_b": 10, "somatostatin": 10, "sopa": 10, "sopa_c": 10, "sopd": 10, "sope_gef": 10, "sorb": 10, "sororin": 10, "sortas": 10, "sortilin": 10, "vps10": 10, "sortilin_c": 10, "sorting_nexin": 10, "sox17_18_mid": 10, "soxd": 10, "sox": 10, "soxg": 10, "soxi": 10, "soxz": 10, "sox_n": 10, "dndd": 10, "sp38": 10, "spa1_c": 10, "spaa": 10, "spaa_2": 10, "spaetzl": 10, "spatacsin_c": 10, "spb1_c": 10, "spc110_c": 10, "spc24": 10, "spc29": 10, "spc42p": 10, "spc7": 10, "spdb": 10, "spefl": 10, "spec3": 10, "specificrecomb": 10, "spectrin": 10, "spectrin_lik": 10, "spem1": 10, "speriolin_c": 10, "speriolin_n": 10, "sperm_ag_he2": 10, "spermine_synt_n": 10, "spermine_synth": 10, "spexin": 10, "spheroidin": 10, "spherulin4": 10, "spidroin_masp": 10, "spidroin_n": 10, "spike_torovirin": 10, "spin": 10, "ssty": 10, "spindle_spc25": 10, "spiralin": 10, "spla": 10, "spmsyn_n": 10, "spo0a_c": 10, "spo0m": 10, "spo12": 10, "spo16": 10, "spo7": 10, "spo7_2_n": 10, "spoiiaa": 10, "spoiid": 10, "spoiie": 10, "spoiie_n": 10, "spoiiiac": 10, "spoiiiah": 10, "spoiiid": 10, "spoiim": 10, "spoiip": 10, "spoiisa_toxin": 10, "spoiisb_antitox": 10, "spoiva_atpas": 10, "spoiva_c": 10, "spoiva_middl": 10, "spooe": 10, "spou_methylas_c": 10, "spou_methylas": 10, "spou_sub_bind": 10, "spov": 10, "spovab": 10, "spovac_spovaeb": 10, "spovad": 10, "spova": 10, "spovg": 10, "spovif": 10, "spovr": 10, "spovt_c": 10, "spond_n": 10, "sporv_aa": 10, "spore": 10, "coat_cotd": 10, "coat_cotz": 10, "spore_cse60": 10, "spore_gerac": 10, "spore_gerq": 10, "spore_iii_aa": 10, "spore_iii_ab": 10, "spore_iii_a": 10, "spore_iii_af": 10, "spore_ii_r": 10, "spore_sspj": 10, "spore_yabq": 10, "spore_yh": 10, "spore_yhcn_ylaj": 10, "spore_ypjb": 10, "spore_ytfj": 10, "spore_ytrh": 10, "spore_yunb": 10, "spore_coat_coto": 10, "spore_permeas": 10, "sporozoite_p67": 10, "spot_14": 10, "spra": 10, "spra_n": 10, "sprb": 10, "sprt": 10, "sprouti": 10, "spt20": 10, "spt4": 10, "spt46": 10, "spt5": 10, "ngn": 10, "spt5_n": 10, "spua_c": 10, "spuma_a9ptas": 10, "spvb": 10, "spvd": 10, "spy1": 10, "squash": 10, "sre": 10, "srfb": 10, "srg": 10, "sseb": 10, "sseb_c": 10, "ssec": 10, "ssga": 10, "ssl1": 10, "sspb": 10, "ssph": 10, "sspk": 10, "sspn": 10, "sspo": 10, "sspp": 10, "ssu72": 10, "stanniocalcin": 10, "stap_strp_tox_c": 10, "stap_strp_toxin": 10, "staph_opine_dh": 10, "staphopain_pro": 10, "staphostatin_a": 10, "staphostatin_b": 10, "staphylcoaguls": 10, "staphylokinas": 10, "statherin": 10, "stathmin": 10, "staufen_c": 10, "staygreen": 10, "stb3": 10, "stba": 10, "stc1": 10, "ste5": 10, "ste5_c": 10, "stealth_cr1": 10, "stealth_cr2": 10, "stealth_cr3": 10, "stealth_cr4": 10, "steril": 10, "steroid_dh": 10, "sterol": 10, "sens": 10, "sterol_mt_c": 10, "stevor": 10, "stig1": 10, "stimulus_sens_1": 10, "stirrup": 10, "stk19": 10, "stm1_n": 10, "stn1": 10, "stn1_c": 10, "stomagen": 10, "stomoxyn": 10, "stonin2_n": 10, "stork_head": 10, "str_synth": 10, "strabismu": 10, "strep_sa_rep": 10, "strep_his_triad": 10, "strep_pep": 10, "streptin": 10, "immun": 10, "stress": 10, "antifung": 10, "striatin": 10, "strumpellin": 10, "sua5_c": 10, "sua5_ycio_yrdc": 10, "sublancin": 10, "subtilosin_a": 10, "suc_fer": 10, "succ_coa_lig": 10, "succ_dh_flav_c": 10, "sucrose_synth": 10, "suf": 10, "sufbd_n": 10, "sufe": 10, "sugar": 10, "sugar_tr": 10, "sugar_transport": 10, "sugarporin_n": 10, "sula": 10, "sulf_coat_c": 10, "sulf_transp": 10, "sulfakinin": 10, "sulfatase_c": 10, "sulfate_transp": 10, "sulfolobus_prn": 10, "sulfotransfer_1": 10, "sulfotransfer_2": 10, "sulfotransfer_3": 10, "sulfotransfer_4": 10, "sulfotransfer_5": 10, "sulphotransf": 10, "suppressor_apc": 10, "sura_n": 10, "sura_n_2": 10, "sura_n_3": 10, "sure": [10, 11], "surfac_d": 10, "trimer": 10, "surface_ag_2": 10, "surp": 10, "susd": 10, "like_3": 10, "susd_ragb": 10, "suse": 10, "susf_sus": 10, "sushi": 10, "sushi_2": 10, "suv3_c_1": 10, "suv3_n": 10, "svf1": 10, "svf1_c": 10, "svs_4_5_6": 10, "swi3": 10, "swi5": 10, "swi6_n": 10, "swm2": 10, "swra": 10, "sxtj": 10, "sybindin": 10, "syd": 10, "syja_n": 10, "syme_toxin": 10, "symplekin_c": 10, "synaphin": 10, "synapsin": 10, "synapsin_c": 10, "synapsin_n": 10, "synaptobrevin": 10, "synaptonemal_3": 10, "syncollin": 10, "syndecan": 10, "syntaphilin": 10, "syntaxin": 10, "18_n": 10, "5_n": 10, "syntaxin_2": 10, "synthase_beta": 10, "synuclein": 10, "syra": 10, "box_assoc": 10, "t2ss": 10, "t3ss_pil_n": 10, "t2ssb": 10, "t2ssc": 10, "t2sse": 10, "t2sse_n": 10, "t2ssf": 10, "t2ssg": 10, "t2ssi": 10, "t2ssj": 10, "t2ssk": 10, "t2ssl": 10, "t2ssm": 10, "t2ssm_b": 10, "t2ssn": 10, "t2sss_2": 10, "t2ss_puls_out": 10, "t2ssppdc": 10, "t3rm_ecop15i_c": 10, "t3ss_atpase_c": 10, "t3ss_exs": 10, "t3ss_hrpk1": 10, "t3ss_lee_assoc": 10, "t3ss_nleg": 10, "t3ss_sctl": 10, "t3ss_tc": 10, "t3ss_basalb_i": 10, "t3ss_needle_": 10, "t3ss_needle_f": 10, "t3ss_needle_reg": 10, "t3ssipb": 10, "t3schapcesa": 10, "t4bss_doth_icmk": 10, "t4bss_doti_icml": 10, "t4ss": 10, "dna_transf": 10, "t4ss_cagc": 10, "t4ss_trai": 10, "t4ss_pilin": 10, "t4_rnl2_c": 10, "t4_basepl": 10, "t4_deiodinas": 10, "t4_gp9_10": 10, "t4_tail_cap": 10, "t4bss_icm": 10, "t5orf172": 10, "t6pp_n": 10, "t6ss": 10, "scin": 10, "t6ss_fha_c": 10, "t6ss_hcp": 10, "t6ss_tssf": 10, "t6ss_tssg": 10, "t6ss_vase": 10, "t6ss_vasj": 10, "t6ss_vgr": 10, "t6ss_vipa": 10, "t6_ig_lik": 10, "t7": 10, "like_y65": 10, "like_gp12": 10, "like_gp67": 10, "t7ss_esx1_eccb": 10, "t7ss_esx_espc": 10, "ta0956": 10, "taa": 10, "ring": 10, "tacc_c": 10, "taci": 10, "crd2": 10, "tad2": 10, "taf": 10, "taf1d": 10, "taf1_suba": 10, "taf4": 10, "taf6_c": 10, "taf8_c": 10, "tafa": 10, "tafh": 10, "tafii28": 10, "tafii55_n": 10, "talpid3": 10, "tal_fsa": 10, "tal_effector": 10, "tan": 10, "tango2": 10, "tap35_44": 10, "tap42": 10, "tap_c": 10, "tas2r": 10, "tasl": 10, "tat_sign": 10, "tat_ubiq": 10, "taxi_c": 10, "taxi_n": 10, "tatt": 10, "tb": 10, "tb2_dp1_hva22": 10, "tbc1d23_c": 10, "tbca": 10, "tbcc": 10, "tbcc_n": 10, "tbd": 10, "tbk1_ccd1": 10, "tbk1_uld": 10, "tbp": 10, "tbpip": 10, "tbpip_n": 10, "tbx": 10, "tc1": 10, "tcad2": 10, "tcad3": 10, "tcad7": 10, "tcad9": 10, "tcl1_mtcp1": 10, "tco89": 10, "tcp": 10, "tcr": 10, "tcrp1": 10, "tcr_zetazeta": 10, "tctn_duf1619": 10, "tctp": 10, "tda11": 10, "tdbd": 10, "tdh": 10, "tdp43_n": 10, "tdrp": 10, "tea": 10, "ted": 10, "tedc1": 10, "ted_2": 10, "ted_compl": 10, "tena_thi": 10, "tep1_n": 10, "terb2": 10, "terf2_rbm": 10, "tert_thumb": 10, "te": 10, "tex12": 10, "tex13": 10, "tex15": 10, "tex19": 10, "tex29": 10, "tex33": 10, "tfa2_winged_2": 10, "tfb6": 10, "tfcd_c": 10, "tfiia": 10, "tfiia_gamma_c": 10, "tfiia_gamma_n": 10, "tfiib": 10, "tfiib_c_1": 10, "tfiid": 10, "18kda": 10, "31kda": 10, "tfiid_20kda": 10, "tfiid_30kda": 10, "tfiid_ntd2": 10, "tfiie": 10, "tfiie_alpha": 10, "tfiie_beta": 10, "tfiif_alpha": 10, "tfiif_beta": 10, "tfiif_beta_n": 10, "tfiiic_delta": 10, "tfiiic_sub6": 10, "tfiis_c": 10, "tfiis_m": 10, "tfr_dimer": 10, "tfx_c": 10, "tf_ap": 10, "tf_otx": 10, "tf_zn_ribbon": 10, "tgf_beta": 10, "tgf_beta_g": 10, "tgfb_propeptid": 10, "tgl": 10, "tgt": 10, "tgt_c1": 10, "tgt_c2": 10, "tgase_elicitor": 10, "th1": 10, "thap": 10, "thap4_hem": 10, "thb": 10, "thdps_m": 10, "thdps_n": 10, "thdps_n_2": 10, "theg": 10, "theg4": 10, "thf_dhg_cyh": 10, "thf_dhg_cyh_c": 10, "thh1_tom1": 10, "3_dom": 10, "thoc2_n": 10, "thoc7": 10, "thp2": 10, "thrap3_bclaf1": 10, "thump": 10, "tic20": 10, "tig": 10, "tig_2": 10, "tig_suh": 10, "tig_plexin": 10, "til": 10, "tila": 10, "tim": 10, "tim21": 10, "timeless": 10, "timeless_c": 10, "timp": 10, "tinf2_n": 10, "tip120": 10, "tip39": 10, "tip41": 10, "tip49": 10, "tip49_c": 10, "tip_n": 10, "tir": 10, "tir_2": 10, "tir_3": 10, "tk": 10, "tlc": 10, "tld": 10, "tle_n": 10, "tlp1_add_c": 10, "tlv_coat": 10, "tm140": 10, "tm1506": 10, "tm1586_nirdas": 10, "tm2": 10, "tm231": 10, "tma7": 10, "tmc": 10, "tmccdc2": 10, "tmco5": 10, "tmem100": 10, "tmem101": 10, "tmem107": 10, "tmem108": 10, "tmem117": 10, "tmem119": 10, "tmem125": 10, "tmem126": 10, "tmem127": 10, "tmem128": 10, "tmem131_lik": 10, "tmem131_like_n": 10, "tmem132": 10, "tmem132d_c": 10, "tmem132d_n": 10, "tmem135_c_rich": 10, "tmem138": 10, "tmem141": 10, "tmem144": 10, "tmem151": 10, "tmem154": 10, "tmem156": 10, "tmem164": 10, "tmem169": 10, "tmem171": 10, "tmem173": 10, "tmem174": 10, "tmem175": 10, "tmem18": 10, "tmem187": 10, "tmem190": 10, "tmem191c": 10, "tmem192": 10, "tmem206": 10, "tmem208_snd2": 10, "tmem210": 10, "tmem213": 10, "tmem214": 10, "tmem215": 10, "tmem219": 10, "tmem220": 10, "tmem232": 10, "tmem234": 10, "tmem237": 10, "tmem238": 10, "tmem239": 10, "tmem240": 10, "tmem247": 10, "tmem251": 10, "tmem252": 10, "tmem254": 10, "tmem33_pom33": 10, "tmem37": 10, "tmem40": 10, "tmem43": 10, "tmem51": 10, "tmem52": 10, "tmem61": 10, "tmem65": 10, "tmem70": 10, "tmem71": 10, "tmem72": 10, "tmem82": 10, "tmem89": 10, "tmem95": 10, "tmem_230_134": 10, "tmemspv1": 10, "c74": 10, "tmf_dna_bd": 10, "tmf_tata_bd": 10, "tmie": 10, "teni": 10, "tmpit": 10, "tmp_2": 10, "tmp_3": 10, "tmtc_duf1736": 10, "tm_pbp2_n": 10, "tm_helix": 10, "tnf": 10, "tnfr_16_tm": 10, "tnfr_c6": 10, "tnrc6": 10, "pabc_bdg": 10, "tnt": 10, "tobe": 10, "tobe_2": 10, "tobe_3": 10, "toc159_mad": 10, "toh_n": 10, "tom13": 10, "tom20_plant": 10, "tom6p": 10, "toprim_c": 10, "top_n": 10, "torc_c": 10, "torc_m": 10, "torc_n": 10, "tp1": 10, "tp2": 10, "tp53ip5": 10, "tp6a_n": 10, "tpal": 10, "tpd": 10, "tpd52": 10, "tph": 10, "tpip1": 10, "tpk_b1_bind": 10, "tpk_catalyt": 10, "tpmt": 10, "tpm_phosphatas": 10, "tpp1": 10, "tppii": 10, "tppii_n": 10, "tppk_c": 10, "tpp_enzyme_c": 10, "tpp_enzyme_m": 10, "tpp_enzyme_m_2": 10, "tpp_enzyme_n": 10, "tpr_1": 10, "tpr_10": 10, "tpr_11": 10, "tpr_12": 10, "tpr_14": 10, "tpr_15": 10, "tpr_16": 10, "tpr_17": 10, "tpr_18": 10, "tpr_19": 10, "tpr_2": 10, "tpr_20": 10, "tpr_21": 10, "tpr_22": 10, "tpr_3": 10, "tpr_4": 10, "tpr_5": 10, "tpr_6": 10, "tpr_7": 10, "tpr_8": 10, "tpr_9": 10, "tpr_mlp1_2": 10, "tpr_malt": 10, "tp": 10, "tpt": 10, "tpx2": 10, "tpx2_importin": 10, "tp_methylas": 10, "tq": 10, "tra": 10, "1_regul": 10, "tradd_n": 10, "traf6_z2": 10, "traf_birc3_bd": 10, "tram1": 10, "tram_2": 10, "tram_lag1_cln8": 10, "delta": 10, "trapp": 10, "trappc": 10, "trs85": 10, "trappc10": 10, "trappc9": 10, "trs120": 10, "trap_alpha": 10, "trap_beta": 10, "traub": 10, "trc8_n": 10, "trcf": 10, "treh_n": 10, "trf": 10, "trh": 10, "tri12": 10, "tri5": 10, "tri9": 10, "tric": 10, "trif": 10, "ntd": 10, "triqk": 10, "trl": 10, "trm": 10, "trm13": 10, "trove": 10, "trpm_tetra": 10, "trp_2": 10, "trp_n": 10, "trsp": 10, "tsc21": 10, "tsc22": 10, "tscpd": 10, "tsga13": 10, "tsgp1": 10, "tsk": 10, "tslp": 10, "tsnaxip1_n": 10, "tsnr_n": 10, "tsp1_adamt": 10, "tsp1_ccn": 10, "tsp1_spondin": 10, "tsp3_bac": 10, "tsp9": 10, "tsp_1": 10, "tsp_3": 10, "tsp_c": 10, "tsp_ntd": 10, "tsr": 10, "tssc4": 10, "tt1725": 10, "ttc3_dzip3_dom": 10, "ttc5_ob": 10, "ttc7_n": 10, "ttd": 10, "ttkrsyedq": 10, "ttl": 10, "ttr": 10, "52": 10, "ttrap": 10, "ttsslrr": 10, "tt_orf2": 10, "ttc_toxin_rep": 10, "tudor": 10, "tug": 10, "ubl1": 10, "tusc2": 10, "tutf7_u4": 10, "tutas": 10, "tya": 10, "tyw3": 10, "t_cell_tran_alt": 10, "t_hemolysin": 10, "ta0938": 10, "ta1207": 10, "tab2": 10, "tachykinin": 10, "tachylectin": 10, "tachystatin_a": 10, "tackod1": 10, "tadb_tadc_n": 10, "tade": 10, "tadf": 10, "tadz_n": 10, "tad_c": 10, "tae4": 10, "taeniidae_ag": 10, "tafi": 10, "csgc": 10, "taga": 10, "tagf_n": 10, "tai4": 10, "tail_p2_i": 10, "tail_spike_n": 10, "tail_tub": 10, "takusan": 10, "talin_middl": 10, "tam41_mmp37": 10, "tamb": 10, "tankyrase_bdg_c": 10, "tannas": 10, "tantalu": 10, "tap": 10, "tape_meas_lam_c": 10, "taq": 10, "exonuc": 10, "taqi_c": 10, "tarh": 10, "tars_c1": 10, "tash_pest": 10, "tata_b_": 10, "tatc": 10, "tatd_dnas": 10, "tau95": 10, "tau95_n": 10, "taud": 10, "taue": 10, "tautomeras": 10, "tautomerase_2": 10, "tautomerase_3": 10, "taxilin": 10, "tbpb_a": 10, "tbpb_b_d": 10, "tbpb_c": 10, "tc": 10, "tca_rbd": 10, "tca_tcb_bd": 10, "tcda_tcdb": 10, "tcda_tcdb_por": 10, "tcdb_n": 10, "tcdb_toxin_midc": 10, "tcdb_toxin_midn": 10, "tcell_cd4_c": 10, "tcf25": 10, "tcfc": 10, "tcp10_c": 10, "tcp11": 10, "tcpa": 10, "tcpe": 10, "tcpf": 10, "tcpq": 10, "tcta": 10, "tctb": 10, "tctc": 10, "tctex": 10, "tectonin": 10, "tehb": 10, "tektin": 10, "tela": 10, "telethonin": 10, "telomerase_rbd": 10, "telomere_reg": 10, "telomere_r": 10, "ten1": 10, "ten1_2": 10, "ten_n": 10, "tenui_n": 10, "terb": 10, "terb_c": 10, "terb_n": 10, "terc": 10, "terd": 10, "terl_atpas": 10, "terl_nucleas": 10, "tery_c": 10, "terminase_2": 10, "terminase_3": 10, "terminase_3c": 10, "terminase_4": 10, "terminase_5": 10, "terminase_6c": 10, "terminase_6n": 10, "terpene_syn_c_2": 10, "terpene_synth": 10, "terpene_synth_c": 10, "tetm_lead": 10, "tetr": 10, "tetr_c_1": 10, "tetr_c_10": 10, "tetr_c_11": 10, "tetr_c_12": 10, "tetr_c_13": 10, "tetr_c_14": 10, "tetr_c_15": 10, "tetr_c_16": 10, "tetr_c_17": 10, "tetr_c_18": 10, "tetr_c_19": 10, "tetr_c_2": 10, "tetr_c_20": 10, "tetr_c_21": 10, "tetr_c_22": 10, "tetr_c_23": 10, "tetr_c_24": 10, "tetr_c_25": 10, "tetr_c_26": 10, "tetr_c_27": 10, "tetr_c_28": 10, "tetr_c_29": 10, "tetr_c_3": 10, "tetr_c_30": 10, "tetr_c_31": 10, "tetr_c_32": 10, "tetr_c_33": 10, "tetr_c_34": 10, "tetr_c_35": 10, "tetr_c_36": 10, "tetr_c_37": 10, "tetr_c_38": 10, "tetr_c_4": 10, "tetr_c_5": 10, "tetr_c_6": 10, "tetr_c_7": 10, "tetr_c_8": 10, "tetr_c_9": 10, "tetr_n": 10, "tet_jbp": 10, "tet_res_lead": 10, "tetrabrachion": 10, "tetraspanin": 10, "tex_n": 10, "tex_yqgf": 10, "tfb2": 10, "tfb2_c": 10, "tfb4": 10, "tfb5": 10, "tfox_c": 10, "tfox_n": 10, "tfua": 10, "tgmic1": 10, "tgi2pp": 10, "tgpa_n": 10, "thai": 10, "thaumatin": 10, "thermopsin": 10, "thg1": 10, "thg1c": 10, "thi4": 10, "thic": 10, "thic_rad_sam": 10, "thid2": 10, "thif": 10, "thig": 10, "thii": 10, "thij_lik": 10, "thip_synth": 10, "thiw": 10, "thia_yuaj": 10, "thiamine_bp": 10, "thioesteras": 10, "thiol_cytolys_c": 10, "thiol_cytolysin": 10, "thiolase_c": 10, "thiolase_n": 10, "thiopep_pr": 10, "thioredox_dsbh": 10, "thioredoxin": 10, "thioredoxin_10": 10, "thioredoxin_11": 10, "thioredoxin_12": 10, "thioredoxin_13": 10, "thioredoxin_14": 10, "thioredoxin_15": 10, "thioredoxin_16": 10, "thioredoxin_2": 10, "thioredoxin_3": 10, "thioredoxin_4": 10, "thioredoxin_5": 10, "thioredoxin_6": 10, "thioredoxin_7": 10, "thioredoxin_8": 10, "thioredoxin_9": 10, "tho1_mos11_c": 10, "tho2": 10, "thoc2": 10, "thre": 10, "thre_2": 10, "thr_dehydrat_c": 10, "thr_synth_n": 10, "thrombin_light": 10, "tht1": 10, "thua": 10, "thump_lik": 10, "thx": 10, "thy1": 10, "thylakoidformat": 10, "thymidylat_synt": 10, "thymidylate_kin": 10, "thymopoietin": 10, "thymosin": 10, "thyroglob_assoc": 10, "thyroglobulin_1": 10, "tiam_cc_ex": 10, "tic110": 10, "tic22": 10, "tils_c": 10, "tim17": 10, "tim29": 10, "tim44": 10, "tim54": 10, "tipa": 10, "tipe": 10, "tipalpha": 10, "tir_receptor_c": 10, "tir_receptor_m": 10, "tir_receptor_n": 10, "tis11b_n": 10, "tisb_toxin": 10, "tissue_fac": 10, "titin_z": 10, "sp_n": 10, "tli4_c": 10, "tli4_n": 10, "tlp": 10, "tlr3_tmd": 10, "tma16": 10, "tmca_n": 10, "tme5_egf_lik": 10, "tmem26": 10, "tmemb_14": 10, "tmemb_161ab": 10, "tmemb_170": 10, "tmemb_185a": 10, "tmemb_18a": 10, "tmemb_40": 10, "tmemb_55a": 10, "tmemb_9": 10, "tmemb_cc2": 10, "tmob": 10, "tmp39": 10, "tmpp129": 10, "tn7_tnp_tnsa_c": 10, "tn7_tnsa": 10, "tn7_tnsc_int": 10, "tn916": 10, "xi": 10, "tna_lead": 10, "tnib": 10, "tniq": 10, "tnpb_is66": 10, "tnpv": 10, "tnpw": 10, "tnp_22_dsrbd": 10, "tnp_22_trimer": 10, "tnp_dna_bind": 10, "tnp_p_element": 10, "tnp_p_element_c": 10, "tnp_zf": 10, "ribbon_2": 10, "tnsd": 10, "tnse_c": 10, "toast_rack_n": 10, "tocopherol_cycl": 10, "tola": 10, "tola_bind_tri": 10, "tolb_n": 10, "tolb_lik": 10, "toluene_x": 10, "tom22": 10, "tom37": 10, "tom37_c": 10, "tom5": 10, "tom6": 10, "tom7": 10, "tonb_2": 10, "tonb_c": 10, "tonb_n": 10, "tonb_dep_rec": 10, "top6b_c": 10, "topo": 10, "vib_tran": 10, "topo_c_assoc": 10, "topo_zn_ribbon": 10, "topoisom_i": 10, "topoisom_i_n": 10, "topoisom_bac": 10, "toprim": 10, "toprim_2": 10, "toprim_3": 10, "toprim_4": 10, "toprim_c_rpt": 10, "toprim_crpt": 10, "toprim_n": 10, "torsin": 10, "toru": 10, "totivirus_coat": 10, "tower": 10, "hyd1": 10, "hye1": 10, "ghh": 10, "ghh2": 10, "ehhh": 10, "mptase2": 10, "mptase3": 10, "mptase4": 10, "mptase5": 10, "odyam1": 10, "paar": 10, "pl": 10, "pldmtx": 10, "reas": 10, "shh": 10, "uri2": 10, "wtip": 10, "toxb_n": 10, "toxn_toxin": 10, "jab1": 10, "deaminas": 10, "toxin_10": 10, "toxin_12": 10, "toxin_13": 10, "toxin_15": 10, "toxin_18": 10, "toxin_19": 10, "toxin_2": 10, "toxin_21": 10, "toxin_3": 10, "toxin_30": 10, "toxin_37": 10, "toxin_4": 10, "toxin_6": 10, "toxin_9": 10, "toxin_ghot_ortt": 10, "toxin_r_bind_c": 10, "toxin_r_bind_n": 10, "toxin_tolip": 10, "toxin_toxa": 10, "toxin_yhav": 10, "toxin_tran": 10, "tpcc": 10, "tr": 10, "sialidase_c": 10, "tra1_centr": 10, "tra1_r": 10, "traa": 10, "trab_prgy_gumn": 10, "trac": 10, "trac_f_iv": 10, "trad": 10, "trad_n": 10, "trae": 10, "traf": 10, "traf_2": 10, "trag": 10, "d_c": 10, "trag_n": 10, "trah": 10, "trah_2": 10, "trai": 10, "trai_2": 10, "trai_2b": 10, "trai_2_c": 10, "trak": 10, "tral": 10, "tral_transposon": 10, "tran": 10, "trao": 10, "traq": 10, "traq_transposon": 10, "trat": 10, "trau": 10, "trav": 10, "traw_n": 10, "trax": 10, "tra_m": 10, "trans_coact": 10, "trans_reg_c": 10, "transcrip_act": 10, "transcrip_reg": 10, "transcript_vp30": 10, "transferas": 10, "transferrin": 10, "transglut_c": 10, "transglut_n": 10, "transglut_cor": 10, "transglut_core2": 10, "transglut_core3": 10, "transglut_i_tm": 10, "transglut_prok": 10, "transgli": 10, "transgly_assoc": 10, "transglycosyla": 10, "transket_pyr": 10, "transketolase_c": 10, "transketolase_n": 10, "translin": 10, "transmemb_17": 10, "transp_tc5_c": 10, "transp_cyt_pur": 10, "transp_inhibit": 10, "transpeptidas": 10, "transport_merf": 10, "transpos_assoc": 10, "transposase_1": 10, "transposase_20": 10, "transposase_21": 10, "transposase_22": 10, "transposase_23": 10, "transposase_24": 10, "transposase_28": 10, "transposase_31": 10, "transposase_32": 10, "transposase_mut": 10, "transposon_tram": 10, "transthyretin": 10, "trbc": 10, "trbc_ftype": 10, "trbe": 10, "trbh": 10, "trbi": 10, "trbi_ftyp": 10, "trbk": 10, "trbl": 10, "trbl_2": 10, "trbl_3": 10, "trbm": 10, "trcr": 10, "treacl": 10, "trefoil": 10, "trehalas": 10, "trehalase_ca": 10, "bi": 10, "trehalose_ppas": 10, "trehalose_recp": 10, "trep_strep": 10, "trep_dent_lipo": 10, "treslin_n": 10, "trfa": 10, "tri3": 10, "triabin": 10, "tricho_coat": 10, "tricorn_c1": 10, "tricorn_pdz": 10, "trigger_c": 10, "trigger_n": 10, "trimer_cc": 10, "tristanin_u2": 10, "trka_c": 10, "trka_n": 10, "trka_tmd": 10, "trkh": 10, "trm112p": 10, "trm56": 10, "trm5_n": 10, "trmb": 10, "trme_n": 10, "trmk": 10, "trmo": 10, "trmo_c": 10, "trnau1ap": 10, "trns_repr_met": 10, "tropomodulin": 10, "tropomyosin": 10, "tropomyosin_1": 10, "troponin": 10, "i_n": 10, "trpbp": 10, "trpp": 10, "trp_dmat": 10, "trp_tyr_perm": 10, "trp_dioxygenas": 10, "trp_halogenas": 10, "trp_leader1": 10, "trp_leader2": 10, "trp_oprn_chp": 10, "trp_repressor": 10, "trp_ring": 10, "trp_synta": 10, "trs65": 10, "trub": 10, "trub_c": 10, "trub_c_2": 10, "trub_n": 10, "trud": 10, "trwb_aad_bind": 10, "trwc": 10, "trythra_c": 10, "tryp_alpha_amyl": 10, "tryp_inh": 10, "trypan_parp": 10, "trypan_glycop": 10, "trypan_glycop_c": 10, "trypco1": 10, "trypco2": 10, "trypsin": 10, "trypsin_2": 10, "tsad": 10, "tsae": 10, "tsc35": 10, "tsg": 10, "tsi6": 10, "tsp45i": 10, "tspo_mbr": 10, "tssc": 10, "tssd": 10, "tssn": 10, "tsso": 10, "tssr": 10, "tti2": 10, "tub": 10, "tubc_n": 10, "tub_n": 10, "tube": 10, "tuberin": 10, "tubulin": 10, "tubulin_2": 10, "tubulin_3": 10, "tubulin_c": 10, "knot": 10, "tudor_1_rapa": 10, "tudor_2": 10, "tudor_3": 10, "tudor_4": 10, "tudor_5": 10, "tudor_frx1": 10, "tudor_rapa": 10, "tup_n": 10, "turandot": 10, "tusa": 10, "tweeti": 10, "txde": 10, "ty3_capsid": 10, "tyea": 10, "tylf": 10, "tymo_coat": 10, "tyosinase_c": 10, "typeiii_rm_meth": 10, "type_iii_yscg": 10, "type_iii_yscx": 10, "type_isp_c": 10, "tyr": 10, "dna_phospho": 10, "tyrrss_c": 10, "tyr_deacylas": 10, "tyrosinas": 10, "u1snrnp70_n": 10, "u3_assoc_6": 10, "u3_snorna_assoc": 10, "u3snornp10": 10, "u5_2": 10, "snrna_bdg": 10, "u6": 10, "uaa": 10, "uae_ubl": 10, "uaf_rrn10": 10, "ub2h": 10, "uba2_c": 10, "uba_2": 10, "uba_3": 10, "uba_4": 10, "uba_5": 10, "uba_6": 10, "uba_e1_scch": 10, "ubd": 10, "ubm": 10, "ubn_ab": 10, "ubx": 10, "ubz_faap20": 10, "ubact": 10, "uch": 10, "uch_1": 10, "uch_c": 10, "uch_n": 10, "ucma": 10, "ucr_14kd": 10, "ucr_6": 10, "4kd": 10, "ucr_f": 10, "ucr_tm": 10, "ucr_uqcrx_qcr9": 10, "ucr_hing": 10, "udg": 10, "udp": 10, "g_ggtase": 10, "udpgp": 10, "udpgt": 10, "udpg_mgdp_dh": 10, "udpg_mgdp_dh_c": 10, "udpg_mgdp_dh_n": 10, "uev": 10, "ufc1": 10, "ufd1": 10, "uim": 10, "ul2": 10, "ul42": 10, "ul45": 10, "uld": 10, "um": 10, "ump1": 10, "umph": 10, "unc": 10, "79": 10, "93": 10, "unc119_bdg": 10, "unc45": 10, "central": 10, "unc80": 10, "unc80_c": 10, "unc80_n": 10, "un_npl4": 10, "upa": 10, "upar_ly6": 10, "upar_ly6_2": 10, "upa_2": 10, "upf0004": 10, "upf0014": 10, "upf0016": 10, "upf0020": 10, "upf0029": 10, "upf0047": 10, "upf0058": 10, "upf0060": 10, "upf0093": 10, "upf0102": 10, "upf0113": 10, "upf0113_n": 10, "upf0114": 10, "upf0122": 10, "upf0128": 10, "upf0137": 10, "upf0146": 10, "upf0147": 10, "upf0149": 10, "upf0154": 10, "upf0158": 10, "upf0160": 10, "upf0164": 10, "upf0167": 10, "upf0172": 10, "upf0175": 10, "upf0176_n": 10, "upf0179": 10, "upf0180": 10, "upf0181": 10, "upf0182": 10, "upf0184": 10, "upf0193": 10, "upf0203": 10, "upf0220": 10, "upf0223": 10, "upf0225": 10, "upf0227": 10, "upf0228": 10, "upf0231": 10, "upf0236": 10, "upf0239": 10, "upf0240": 10, "upf0242": 10, "upf0253": 10, "upf0257": 10, "upf0259": 10, "upf0261": 10, "upf0262": 10, "upf0270": 10, "upf0300": 10, "upf0302": 10, "upf0370": 10, "upf0444": 10, "upf0449": 10, "upf0489": 10, "upf0492": 10, "upf0506": 10, "upf0515": 10, "upf0524": 10, "upf0542": 10, "upf0547": 10, "upf0552": 10, "upf0556": 10, "upf0560": 10, "upf0561": 10, "upf0564": 10, "upf0640": 10, "upf0669": 10, "upf0688": 10, "upf0697": 10, "upf0715": 10, "upf0728": 10, "upf0730": 10, "upf0731": 10, "upf0738": 10, "upf0758_n": 10, "upf0767": 10, "upf1_1b_dom": 10, "upf1_zn_bind": 10, "uprtas": 10, "uqcc2_cbp6": 10, "uqcc3": 10, "uq_con": 10, "uro": 10, "us22": 10, "usp19_link": 10, "usp47_c": 10, "usp7_c2": 10, "usp7_icp0_bdg": 10, "usp8_dim": 10, "usp8_interact": 10, "ut": 10, "utp15_c": 10, "utp25": 10, "utra": 10, "uvb_sens_prot": 10, "uvr": 10, "uxs1_n": 10, "ub": 10, "mut7c": 10, "rnfh": 10, "ubia": 10, "ubid": 10, "ubie_methyltran": 10, "ubiq": 10, "cytc": 10, "ubiq_cyt_c_chap": 10, "ubiquitin_2": 10, "ubiquitin_3": 10, "ubiquitin_4": 10, "ubiquitin_5": 10, "ucrq": 10, "uds1": 10, "ufd2p_cor": 10, "ufm1": 10, "uma2": 10, "unbv_asp": 10, "unpair": 10, "unstab_antitox": 10, "upf2": 10, "upxz": 10, "urate_ox_n": 10, "urb2": 10, "ur": 10, "uree_c": 10, "uree_n": 10, "uref": 10, "urease_alpha": 10, "urease_beta": 10, "urease_gamma": 10, "urease_link": 10, "ureide_permeas": 10, "ureidogly_lyas": 10, "uricas": 10, "urm1": 10, "urocanas": 10, "urocanase_c": 10, "urocanase_n": 10, "uroplakin_ii": 10, "urotensin_ii": 10, "use1": 10, "usg": 10, "usher": 10, "usher_tcfc": 10, "uso1_p115_c": 10, "uso1_p115_head": 10, "usp": 10, "uspa1_rep": 10, "uspb": 10, "ustya": 10, "ustilago_m": 10, "uteroglobin": 10, "utp11": 10, "utp12": 10, "utp13": 10, "utp14": 10, "utp21": 10, "utp8": 10, "uvd": 10, "uvra_dna": 10, "uvra_int": 10, "uvrb": 10, "uvrb_int": 10, "uvrc_rnaseh_dom": 10, "uvrd": 10, "helicas": 10, "uvrd_c": 10, "uvrd_c_2": 10, "uxac": 10, "uxa": 10, "uxua": 10, "atpase_c": 10, "atpase_g": 10, "atpase_g_2": 10, "atpase_h_c": 10, "atpase_h_n": 10, "snare_c": 10, "set_cd47": 10, "v1r": 10, "v1r_c": 10, "v4r": 10, "vad1": 10, "vapb_antitox": 10, "var1": 10, "varlmgl": 10, "vas1_ld": 10, "vasp_tetra": 10, "vast": 10, "vatc": 10, "vb": 10, "vch_cass14": 10, "vcip135_n": 10, "vcpo_n": 10, "vcx_vcy": 10, "vde": 10, "vef": 10, "veg": 10, "vegfr": 10, "2_tmd": 10, "vegf_c": 10, "vesa1_n": 10, "vf530": 10, "vgcc_alpha2": 10, "vgcc_beta4aa_n": 10, "vgll4": 10, "vgpc1_c": 10, "vhl": 10, "vhl_c": 10, "vhp": 10, "vh": 10, "vid27": 10, "vid27_n": 10, "vid27_ph": 10, "vigssk": 10, "vir_n": 10, "vit": 10, "vit1": 10, "vit_2": 10, "vkg_carbox": 10, "vkor": 10, "vlpt": 10, "vma21": 10, "vmap": 10, "m0": 10, "m1": 10, "m12": 10, "m14": 10, "m15": 10, "m18": 10, "m19": 10, "m2": 10, "m4": 10, "m5": 10, "m7": 10, "m8": 10, "m9": 10, "vomi": 10, "vp1_vp3": 10, "vpdsg": 10, "vps11_c": 10, "vps13": 10, "vps13_c": 10, "vps13_mid_rpt": 10, "vps28": 10, "vps38": 10, "vps53_c": 10, "vps9": 10, "vq": 10, "vrp1": 10, "vrp3": 10, "vrr_nuc": 10, "vsg_b": 10, "vsp": 10, "vtc": 10, "vwa": 10, "vwa_2": 10, "vwa_3": 10, "vwa_3_c": 10, "vwa_cox": 10, "vwa_n": 10, "vwa_n2": 10, "vwc": 10, "vwd": 10, "v_atpase_i": 10, "v_atpase_i_n": 10, "v_atpase_prox": 10, "v_cholerae_rfbt": 10, "vac14_fab1_bd": 10, "vac14_fig4_bd": 10, "vac17": 10, "vac7": 10, "vaca": 10, "vaca2": 10, "vac_importdeg": 10, "val_trna": 10, "vana_c": 10, "vanw": 10, "vani": 10, "vanz": 10, "vanabin": 10, "vanin_c": 10, "vapb_antitoxin": 10, "vasi": 10, "vasl": 10, "vasx_n": 10, "vasculin": 10, "vasohibin": 10, "vault": 10, "vault_2": 10, "vault_3": 10, "vault_4": 10, "vbha": 10, "vel1p": 10, "velvet": 10, "vert_hs_tf": 10, "vert_il3": 10, "reg_tf": 10, "vexin": 10, "vezatin": 10, "vfa1": 10, "vg_tdu": 10, "vhr1": 10, "vicilin_n": 10, "vinculin": 10, "vint": 10, "vioe": 10, "vip3a_n": 10, "vipb": 10, "vipb_2": 10, "virarc_nucleas": 10, "virb3": 10, "virb7": 10, "virb8": 10, "virc1": 10, "virc2": 10, "vird1": 10, "vire": 10, "vire1": 10, "vire2": 10, "vire3": 10, "vire_n": 10, "virj": 10, "virk": 10, "vir_act_alpha_c": 10, "viral_rep": 10, "viral_alk_exo": 10, "viral_helicase1": 10, "virionassem_t7": 10, "virul_fac": 10, "virul_fac_brkb": 10, "virulence_rhum": 10, "virulence_fact": 10, "vitd": 10, "bind_iii": 10, "vitk2_biosynth": 10, "vit_b": 10, "sht_shell": 10, "vit_open_b": 10, "sht": 10, "vitelline_membr": 10, "vitellogenin_n": 10, "vlpa_repeat": 10, "vma12": 10, "vmethyltransf": 10, "vmethyltransf_c": 10, "voldac": 10, "voltage_clc": 10, "vps16_c": 10, "vps16_n": 10, "vps23_core": 10, "vps26": 10, "vps35": 10, "vps36": 10, "nzf": 10, "vps36_escrt": 10, "vps39_1": 10, "vps39_2": 10, "vps4_c": 10, "vps5": 10, "vps51": 10, "vps52": 10, "vps53_n": 10, "vps54": 10, "vps54_n": 10, "vps55": 10, "vps62": 10, "vps8": 10, "vpsr": 10, "vpu": 10, "vrax": 10, "vsr": 10, "vta1": 10, "vta1_c": 10, "vut_1": 10, "vwaint": 10, "w2": 10, "wac_acf1_dna_bd": 10, "wak": 10, "wak_assoc": 10, "wap": 10, "wapl": 10, "wash": 10, "4_n": 10, "7_c": 10, "7_mid": 10, "wash_wahd": 10, "wbp": 10, "wbs28": 10, "wbs_methylt": 10, "wc": 10, "wcch": 10, "wcob": 10, "wcor413": 10, "wd": 10, "like_fungi": 10, "wd40": 10, "wd40_2": 10, "wd40_3": 10, "wd40_4": 10, "wd40_alt": 10, "wd40_like": 10, "wdcp": 10, "wef": 10, "wembl": 10, "wes_acyltransf": 10, "wgg": 10, "wgr": 10, "wg_beta_rep": 10, "wh1": 10, "wh2": 10, "whamm": 10, "jmy_n": 10, "whep": 10, "whh": 10, "whim1": 10, "wi12": 10, "wif": 10, "wiyld": 10, "wkf": 10, "wlm": 10, "wnd": 10, "wpp": 10, "wrc": 10, "wrky": 10, "wrnplpnid": 10, "wrw": 10, "wsc": 10, "wsd": 10, "wsk": 10, "wslr": 10, "wsn": 10, "ws_dgat_c": 10, "wt1": 10, "wtf": 10, "wtx": 10, "wvell": 10, "ww": 10, "wwe": 10, "ww_1": 10, "ww_fch_linker": 10, "ww_like": 10, "wwamid": 10, "wxg100": 10, "wxxgxw": 10, "wyl": 10, "wyl_2": 10, "wyl_3": 10, "w_rich_c": 10, "waai": 10, "wap1": 10, "wave": 10, "wax2_c": 10, "wbp11": 10, "wbqc": 10, "wcbi": 10, "wheel": 10, "whi5": 10, "whia_n": 10, "whib": 10, "whirli": 10, "wound_ind": 10, "wtap": 10, "wx5_plaf3d7": 10, "wxl": 10, "wyosine_form": 10, "wza_c": 10, "wzt_c": 10, "wzye": 10, "wzy_c": 10, "wzy_c_2": 10, "wzz": 10, "x8": 10, "xaf1_c": 10, "xap5": 10, "xet_c": 10, "xfp": 10, "xfp_c": 10, "xfp_n": 10, "xg_ftase": 10, "xh": 10, "xk": 10, "xlf": 10, "xoo_2897": 10, "xpa_c": 10, "xpa_n": 10, "xpb_drd": 10, "xpc": 10, "xpg_i": 10, "xpg_i_2": 10, "xpg_n": 10, "xrcc1_n": 10, "xrcc4": 10, "xrn1_d1": 10, "xrn1_d2_d3": 10, "xrn1_dbm": 10, "xrn_m": 10, "xrn_n": 10, "xtbd": 10, "xyppx": 10, "xan_ur_permeas": 10, "xdhc_c": 10, "xdhc_coxi": 10, "xendou": 10, "xhla": 10, "xhoi": 10, "xin": 10, "xish": 10, "xisi": 10, "xkdw": 10, "xlink": 10, "xol": 10, "1_ghmp": 10, "xpo1": 10, "xre": 10, "xre_mbca_pars_c": 10, "xrn1_d3": 10, "xylr_n": 10, "xylo_c": 10, "y1_tnp": 10, "y2_tnp": 10, "yabbi": 10, "yaf2_rybp": 10, "yarhg": 10, "yacar": 10, "ybd": 10, "ycf90": 10, "ycii": 10, "ydg": 10, "yeat": 10, "yggt": 10, "yh": 10, "yhyh": 10, "yiegia": 10, "yif1": 10, "yjl171c_tos1_c": 10, "yjl171c_tos1_n": 10, "yl1": 10, "yl1_c": 10, "ylatt": 10, "ylp": 10, "ymf19": 10, "ymf19_c": 10, "ypeb": 10, "ysirk_sign": 10, "yth": 10, "ytv": 10, "ywfcy": 10, "y_y_i": 10, "y_phosphatas": 10, "y_phosphatase2": 10, "y_phosphatase3": 10, "yaac": 10, "yaba": 10, "yabp": 10, "yacg": 10, "yada_anchor": 10, "yada_head": 10, "yada_stalk": 10, "yae1_n": 10, "yaeq": 10, "yafo_toxin": 10, "yafq_toxin": 10, "yaia": 10, "yaio": 10, "yajc": 10, "ybab_dna_bd": 10, "ybaj": 10, "ybbr": 10, "ybco": 10, "ybei": 10, "ybfn": 10, "ybg": 10, "ybgt_yccb": 10, "ybhq": 10, "ybjm": 10, "ybjn": 10, "ybjq_1": 10, "ycao": 10, "ycao_c": 10, "ycbb": 10, "yccf": 10, "yccj": 10, "yccv": 10, "yced": 10, "yceg": 10, "yceg_bac": 10, "ycei": 10, "ycf1": 10, "ycf15": 10, "ycf34": 10, "ycf4": 10, "ycf54": 10, "ycf66_n": 10, "ycf70": 10, "ycf9": 10, "ycgl": 10, "ychf": 10, "gtpase_c": 10, "ycxb": 10, "ydas_antitoxin": 10, "ydat_toxin": 10, "ydc2": 10, "catalyt": 10, "ydfz": 10, "ydgh_bhsa": 10, "ydih": 10, "ydjc": 10, "ydjm": 10, "ydjo": 10, "ydr279_n": 10, "yeast_mt": 10, "yebf": 10, "yebg": 10, "yebo": 10, "yecm": 10, "yecr": 10, "yedd": 10, "yegs_c": 10, "yejg": 10, "yesk": 10, "yeta": 10, "yfaz": 10, "yfbr": 10, "yfbu": 10, "yfcl": 10, "yfdx": 10, "yfhd": 10, "yfhe": 10, "yfho": 10, "yfio": 10, "yfjs_yafi": 10, "yfkb": 10, "yfkd": 10, "yflt": 10, "yfmq": 10, "yfza": 10, "ygab": 10, "ygba_no": 10, "ygbb": 10, "yggl_50s_bp": 10, "ygjp": 10, "yhcg_c": 10, "yhdb": 10, "yhdx": 10, "yhfc": 10, "yhfh": 10, "yhft": 10, "yhfz_c": 10, "yhhn": 10, "yhzd": 10, "yiaab": 10, "yibe_f": 10, "yicc_n": 10, "yidb": 10, "yidc_peripla": 10, "yidd": 10, "yihi": 10, "yiid_c": 10, "yip1": 10, "yippe": 10, "mis18": 10, "yitt_membran": 10, "yjbe": 10, "yjbf": 10, "yjbh": 10, "yjbr": 10, "yjbt": 10, "yjcb": 10, "yjcq": 10, "yjcz": 10, "yjcz_2": 10, "yjdm": 10, "yjdm_zn_ribbon": 10, "yjef_n": 10, "yjej": 10, "yjfb_motil": 10, "yjgf_endoribonc": 10, "yjhx_toxin": 10, "yjzc": 10, "ykof": 10, "ykpc": 10, "ykud": 10, "ykud_2": 10, "ykui_c": 10, "ykya": 10, "ykyb": 10, "ylac": 10, "ylah": 10, "ylbd_coat": 10, "ylbe": 10, "ylih": 10, "ylmh_rbd": 10, "ylqd": 10, "ylxr": 10, "ylzj": 10, "ymaf": 10, "ymce_antitoxin": 10, "ymdb": 10, "ymgb": 10, "ymgd": 10, "ymzc": 10, "yndj": 10, "ynfe": 10, "ynib": 10, "yoap": 10, "yobh": 10, "yodl": 10, "yoeb_toxin": 10, "yojj": 10, "yoku": 10, "yold": 10, "yonk": 10, "yop": 10, "yscd_cpl": 10, "yscd_ppl": 10, "yopd": 10, "yope": 10, "yoph_n": 10, "yopx": 10, "yopt": 10, "yoqo": 10, "yorp": 10, "yos1": 10, "yos9_dd": 10, "yozd": 10, "yoze_sam_lik": 10, "ypjp": 10, "ypmt": 10, "yppf": 10, "yppg": 10, "ypsa": 10, "ypzg": 10, "ypzi": 10, "yqah": 10, "yqaj": 10, "yqai": 10, "yqbf": 10, "yqci_ycgg": 10, "yqec": 10, "yqei": 10, "yqfd": 10, "yqfq": 10, "yqgb": 10, "yqgc": 10, "yqgf": 10, "yqhg": 10, "yqhr": 10, "yqjk": 10, "yqze": 10, "yqzh": 10, "yqzl": 10, "yqzm": 10, "yrbl": 10, "phop_reg": 10, "yrhc": 10, "yrhk": 10, "yrpd": 10, "yrvl": 10, "yrzk": 10, "yrzo": 10, "ysab": 10, "ysc84": 10, "yscj_flif": 10, "yscj_flif_c": 10, "ysck": 10, "ysco": 10, "yscw": 10, "ytca": 10, "ytfj_hi0045": 10, "ytka": 10, "ytp1": 10, "ytpi": 10, "ytxc": 10, "ytxh": 10, "ytzh": 10, "yueh": 10, "yugn": 10, "yuib": 10, "yukc": 10, "yukd": 10, "yuri_gagarin": 10, "yusw": 10, "yutd": 10, "yuzl": 10, "yvbh_ext": 10, "yvfg": 10, "yvrj": 10, "ywce": 10, "ywhd": 10, "ywic": 10, "ywpf": 10, "ywqj": 10, "yxij": 10, "yycc": 10, "yych": 10, "yyci": 10, "yyzf": 10, "z1": 10, "zf": 10, "hd_dimer": 10, "zfyve21_c": 10, "zip4_domain": 10, "znrf_3_ecto": 10, "zt_dimer": 10, "zu5": 10, "zyg": 10, "11_interact": 10, "zz": 10, "zap1_zf2": 10, "zapa": 10, "zapb": 10, "zapc": 10, "zapd": 10, "zds_c": 10, "zea_mays_mudr": 10, "zein": 10, "zeta_toxin": 10, "zfx_zfy_act": 10, "zint": 10, "zincin_1": 10, "zincin_2": 10, "zip": 10, "zipa_c": 10, "zirs_c": 10, "zmiz1_n": 10, "zn": 10, "c2h2_12": 10, "ribbon_8": 10, "zn_tnp_is1": 10, "zn_tnp_is1595": 10, "zn_tnp_is91": 10, "zn_clu": 10, "zn_dep_plpc": 10, "zn_peptidas": 10, "zn_peptidase_2": 10, "zn_proteas": 10, "zn_ribbon_2": 10, "zn_ribbon_sprt": 10, "zn_ribbon_recom": 10, "znua": 10, "zona_pellucida": 10, "zoocina_trd": 10, "zot": 10, "zw10": 10, "zwilch": 10, "zwint": 10, "abig_2": 10, "agpt": 10, "pplase1": 10, "pplase2": 10, "pplase3": 10, "arib": 10, "a_dg1_n2": 10, "acvlrf1": 10, "adh_short": 10, "adh_short_c2": 10, "hel2": 10, "amfpi": 10, "bhlh": 10, "bmerb_dom": 10, "bmg1": 10, "bmg10": 10, "bmg3": 10, "bmg5": 10, "bmg6": 10, "bph_1": 10, "bph_2": 10, "bph_3": 10, "bph_4": 10, "bph_5": 10, "bph_6": 10, "bvlrf1": 10, "bzip_1": 10, "bzip_2": 10, "bzip_c": 10, "bzip_maf": 10, "bachorma_1": 10, "bachorma_2": 10, "bact": 10, "pgi_c": 10, "baerf_family10": 10, "baerf_family11": 10, "baerf_family12": 10, "baerf_family2": 10, "baerf_family3": 10, "baerf_family5": 10, "baerf_family6": 10, "baerf_family7": 10, "baerf_family8": 10, "2i13": 10, "betapix_cc": 10, "bpmoxr": 10, "bpx0": 10, "bpx1": 10, "bpx2": 10, "bpx3": 10, "bpx4": 10, "bpx5": 10, "bpx6": 10, "ski_smad_bind": 10, "cegf": 10, "cnmp_bind": 10, "cnmpbd_u2": 10, "cpla2_c2": 10, "crec_rec": 10, "cobw": 10, "cpypsa": 10, "cwf18": 10, "cwf21": 10, "datp": 10, "dgtp_pphyd": 10, "dcmp_cyt_deam_1": 10, "dcmp_cyt_deam_2": 10, "dcache_1": 10, "dcache_2": 10, "dcache_3": 10, "ddenn": 10, "dgtp_diphyd_n": 10, "dnk": 10, "dtdp_sugar_isom": 10, "dutpas": 10, "dutpase_2": 10, "dbpdz_assoc": 10, "divdnab": 10, "dsdna_bind": 10, "dsrbd2": 10, "dsrm": 10, "eif": 10, "1a": 10, "3_zeta": 10, "3c_n": 10, "4b": 10, "5_eif": 10, "eif2a": 10, "eif2_c": 10, "eif3_n": 10, "eif3_p135": 10, "eif3_subunit": 10, "eif3g": 10, "eif3h_c": 10, "eif3m_c_helix": 10, "eif_4ebp": 10, "eif_4g1": 10, "erf1_1": 10, "erf1_2": 10, "erf1_3": 10, "ectbetar2": 10, "efthoc1": 10, "efb": 10, "fn1": 10, "fn2": 10, "fn3_2": 10, "fn3_3": 10, "fn3_4": 10, "fn3_5": 10, "fn3_6": 10, "fn3_pap": 10, "fvmjab_n": 10, "fvmradsam": 10, "fvmx1": 10, "fvmx2": 10, "fvmx3": 10, "analog": 10, "fvmx5": 10, "fvmx6": 10, "fvmx7": 10, "fvmyukdl_n": 10, "gag": 10, "asp_protea": 10, "gag_pr": 10, "integr": [10, 14, 16], "gerpa": 10, "gp32": 10, "gp37_c": 10, "gp45": 10, "slide_c": 10, "gpw": 10, "hdge_amylas": 10, "hegf": 10, "hgde_n": 10, "hgde_centr": 10, "hnifk_bind": 10, "hsh3": 10, "hsac2": 10, "hemp": 10, "hnrnp_q_acd": 10, "ipgm_n": 10, "istand": 10, "ivwa": 10, "helical_n": 10, "klea_klec": 10, "lci": 10, "mcpol": 10, "mif3": 10, "mrna_cap_c": 10, "mrna_cap_enzym": 10, "mrna_decap_c": 10, "mrna_stabil": 10, "mrna_tripas": 10, "mterf": 10, "malic": 10, "mit_smpdas": 10, "mono": 10, "muhd": 10, "nec1": 10, "nlz1": 10, "nos_propel": 10, "nos_propeller_2": 10, "oligo_hpi": 10, "ox_reductase_c": 10, "p25": 10, "p31comet": 10, "p450": 10, "p47_phox_c": 10, "inducible11": 10, "patom36": 10, "padhesive_10": 10, "padhesive_11": 10, "padhesive_15": 10, "padhesive_17": 10, "padhesive_6": 10, "padhesive_8": 10, "pek499_p136": 10, "pkid": 10, "pntsase1": 10, "ppiwi_re_reas": 10, "ppiwi_re_x": 10, "ppiwi_re_i": 10, "ppiwi_re_z": 10, "pp_pnuc_1": 10, "pp_pnuc_2": 10, "prn1_helic": 10, "pxo2": 10, "34": 10, "72": 10, "pyeat": 10, "partial_cstf": 10, "peroxidas": 10, "phage_tail_n": 10, "phikz_ip": 10, "polyprenyl_synt": 10, "potato_inhibit": 10, "preset_cxc": 10, "prok_st": 10, "protein_ms5": 10, "ptarna1_toxin": 10, "putab": 10, "rompb": 10, "rrna_methylas": 10, "rrna_proc": 10, "rrna_process": 10, "rham": 10, "rve": 10, "rve_2": 10, "rve_3": 10, "s48_45": 10, "scache_2": 10, "scache_3_2": 10, "scache_3_3": 10, "scache_4": 10, "scache_lik": 10, "ssdbp": 10, "ssdbp_dbd": 10, "ssdna": 10, "exonuc_c": 10, "ssdna_dbd": 10, "ssdna_trai_n": 10, "stn_tnfrsf12a": 10, "tpilz": 10, "trna": 10, "thr_ed": 10, "synt_1": 10, "synt_1_2": 10, "synt_1b": 10, "synt_1c": 10, "synt_1c_c": 10, "synt_1d": 10, "synt_1f": 10, "synt_1g": 10, "synt_2_tm": 10, "synt_2b": 10, "synt_2c": 10, "synt_2d": 10, "synt_hi": 10, "trna_me_tran": 10, "trna_me_trans_c": 10, "trna_me_trans_m": 10, "trna_nuctran2_2": 10, "trna_nuctransf2": 10, "trna_sad": 10, "trna_u5": 10, "meth_tr": 10, "trna_anti": 10, "codon": 10, "trna_anti_2": 10, "trna_bind": 10, "trna_bind_2": 10, "trna_bind_3": 10, "trna_bind_4": 10, "trna_deacylas": 10, "trna_edit": 10, "trna_int_end_n2": 10, "trna_int_endo": 10, "trna_int_endo_n": 10, "trna_lig_cpd": 10, "trna_lig_kinas": 10, "trna_m1g_mt": 10, "trna_synt_1c_r1": 10, "trna_synt_1c_r2": 10, "trna_synt_2f": 10, "trna_synthfbeta": 10, "tifi": 10, "udenn": 10, "ubiquitin": 10, "vatp": 10, "synt_ac39": 10, "vmsa": 10, "terf": 10, "vwf_a": 10, "wnt": 10, "xrrm": 10, "ydhr": 10, "z": [10, 11], "3cxxc": 10, "3cxxc_2": 10, "4cxxc_r1": 10, "a20": 10, "acc": 10, "an1": 10, "anapc11": 10, "bed": 10, "b_box": 10, "c2h2": 10, "c2h2_10": 10, "c2h2_11": 10, "c2h2_2": 10, "c2h2_3": 10, "c2h2_3rep": 10, "c2h2_4": 10, "c2h2_6": 10, "c2h2_7": 10, "c2h2_8": 10, "c2h2_9": 10, "c2h2_aberr": 10, "c2h2_assoc": 10, "c2h2_assoc2": 10, "c2h2_assoc3": 10, "c2h2_jaz": 10, "c2hc": 10, "c2hc5": 10, "c2hcix2c": 10, "c2hc_2": 10, "c2he": 10, "c3h1": 10, "c3h2c3": 10, "c3hc": 10, "c3hc4": 10, "c3hc4_2": 10, "c3hc4_3": 10, "c3hc4_4": 10, "c3hc4_5": 10, "c3hc3h": 10, "c4h2": 10, "c4_clpx": 10, "c4_topoisom": 10, "c4pol": 10, "c5hc2": 10, "c6h2": 10, "ccch": 10, "ccch_2": 10, "ccch_3": 10, "ccch_4": 10, "ccch_6": 10, "ccch_8": 10, "cchc": 10, "cchc_2": 10, "cchc_3": 10, "cchc_4": 10, "cchc_5": 10, "cchc_6": 10, "cchh": 10, "cdgsh": 10, "cgnr": 10, "chc2": 10, "chcc": 10, "chy": 10, "crd": 10, "csl": 10, "cw": 10, "dbf": 10, "dna_pol": 10, "dnl": 10, "di19": 10, "dof": 10, "fc": 10, "flz": 10, "fpg_iler": 10, "grf": 10, "h2c2": 10, "h2c2_2": 10, "h2c2_5": 10, "h3c2": 10, "hc3": 10, "hc5hc2h": 10, "hc5hc2h_2": 10, "hypf": 10, "his_me_endon": 10, "is66": 10, "isl3": 10, "litaf": 10, "lsd1": 10, "lyar": 10, "miz": 10, "mynd": 10, "myst": 10, "mss51": 10, "ppase": 10, "nf": 10, "x1": 10, "nosip": 10, "nse": 10, "ring_10": 10, "ring_11": 10, "ring_12": 10, "ring_14": 10, "ring_15": 10, "ring_16": 10, "ring_5": 10, "ring_6": 10, "ring_7": 10, "ring_9": 10, "ring_ubox": 10, "rnphf": 10, "rrn7": 10, "rrpl_c4": 10, "rvt": 10, "ranbp": 10, "sap30": 10, "scnm1": 10, "sec23_sec24": 10, "taz": 10, "tfiiic": 10, "trm13_ccch": 10, "tim10_ddp": 10, "u1": 10, "u11": 10, "48k": 10, "ubp": 10, "ubp_var": 10, "ubr": 10, "wrnip1_ubi": 10, "zpr1": 10, "dska_trar": 10, "met": 10, "met2": 10, "nano": 10, "piccolo": 10, "primas": 10, "rbx1": 10, "ribbon_3": 10, "tcix": 10, "trcl": 10, "zf_c2h2_10": 10, "zf_c2h2_13": 10, "zf_c2h2_6": 10, "zf_c2h2_zhx": 10, "zf_c2hc_14": 10, "zf_ccch_4": 10, "zf_ccch_5": 10, "zf_copz": 10, "zf_hakai": 10, "zf_pr_knuckl": 10, "zf_rg": 10, "zf_ubz": 10, "zf_zic": 10, "zinc": 10, "ribbon_6": 10, "ribbons_6": 10, "zinc_ribbon_10": 10, "zinc_ribbon_11": 10, "zinc_ribbon_12": 10, "zinc_ribbon_13": 10, "zinc_ribbon_15": 10, "zinc_ribbon_16": 10, "zinc_ribbon_2": 10, "zinc_ribbon_4": 10, "zinc_ribbon_5": 10, "zinc_ribbon_6": 10, "zinc_ribbon_9": 10, "ribbon_14": 10, "layoutsmartdomain": 10, "smart": 10, "14_3_3": 10, "35exoc": 10, "3f5ebf": 10, "1m": 10, "53exoc": 10, "3fbf5a": 10, "3fbf9a": 10, "a1pp": 10, "a2m_n_2": 10, "3f60bf": 10, "a4_extra": 10, "533fbf": 10, "bf533f": 10, "aai": 10, "3f7abf": 10, "acr": 10, "bf443f": 10, "3fbfa2": 10, "adeamc": 10, "3f9abf": 10, "adf": 10, "bf3f92": 10, "733fbf": 10, "3f75bf": 10, "ahs1": 10, "bf473f": 10, "ahs2": 10, "3f8cbf": 10, "bf3fb8": 10, "3fbf69": 10, "9c3fbf": 10, "albumin": 10, "bf843f": 10, "623fbf": 10, "b6bf3f": 10, "b9bf3f": 10, "anx": 10, "3fbf4f": 10, "ap2ec": 10, "3f58bf": 10, "apc10": 10, "apc2": 10, "ad3fbf": 10, "8d3fbf": 10, "993fbf": 10, "bfbd3f": 10, "3fabbf": 10, "aami": 10, "aamy_c": 10, "abbf3f": 10, "3f46bf": 10, "bb3fbf": 10, "bf3f4a": 10, "3fbf7a": 10, "3fbf43": 10, "5fbf3f": 10, "88bf3f": 10, "alcb": 10, "bf8f3f": 10, "bf503f": 10, "793fbf": 10, "3f89bf": 10, "a2bf3f": 10, "bf3f67": 10, "amb_al": 10, "bf3f45": 10, "ami_2": 10, "ami_3": 10, "bf3f9b": 10, "bf9e3f": 10, "arac_e_bind": 10, "bf3f5f": 10, "arch1": 10, "563fbf": 10, "arch2": 10, "bf4d3f": 10, "43bf3f": 10, "513fbf": 10, "3fbf60": 10, "bf3f98": 10, "bf953f": 10, "3fbf9d": 10, "b41": 10, "b561": 10, "62bf3f": 10, "6ebf3f": 10, "a8bf3f": 10, "bf3f73": 10, "bbc": 10, "bbox": 10, "b63fbf": 10, "b33fbf": 10, "3fbfa5": 10, "77bf3f": 10, "bhl": 10, "bid_1": 10, "bid_2": 10, "3fbf6c": 10, "85bf3f": 10, "blvr": 10, "bpi1": 10, "3f97bf": 10, "bpi2": 10, "3f44bf": 10, "3fbf63": 10, "bright": 10, "bf673f": 10, "3fbfa8": 10, "brlz": 10, "3fbfb1": 10, "bromo": 10, "bfb83f": 10, "79bf3f": 10, "bf7e3f": 10, "bf3f8d": 10, "65bf3f": 10, "bf3fac": 10, "6bbf3f": 10, "823fbf": 10, "3f69bf": 10, "3f92bf": 10, "bowb": 10, "bfa93f": 10, "3f7dbf": 10, "c345c": 10, "48bf3f": 10, "7cbf3f": 10, "ca": 10, "9cbf3f": 10, "cadg": 10, "9fbf3f": 10, "calcitonin": 10, "cap10": 10, "3fbf71": 10, "3fbf7d": 10, "carp": 10, "cash": 10, "873fbf": 10, "casc": 10, "a13fbf": 10, "cbd_ii": 10, "6b3fbf": 10, "cbd_iv": 10, "bf3f78": 10, "bf8c3f": 10, "3f55bf": 10, "cbm_x": 10, "ccp": 10, "b3bf3f": 10, "bf863f": 10, "3fb1bf": 10, "cenpb": 10, "bf6a3f": 10, "chk": 10, "bf3fb2": 10, "bf5e3f": 10, "clect": 10, "clh": 10, "763fbf": 10, "cla": 10, "3fbabf": 10, "clb": 10, "cnx": 10, "bf3f7e": 10, "bfa33f": 10, "bf3f81": 10, "cpdc": 10, "7f3fbf": 10, "3f94bf": 10, "903fbf": 10, "csf2": 10, "csp": 10, "ct": 10, "bf3fbb": 10, "ctn": 10, "3f4fbf": 10, "853fbf": 10, "cy": 10, "b93fbf": 10, "cycc": 10, "bf3f70": 10, "bf893f": 10, "calx_beta": 10, "bf6f3f": 10, "card_trcf": 10, "bfaf3f": 10, "chsh": 10, "chtbd1": 10, "68bf3f": 10, "chtbd2": 10, "chtbd3": 10, "93bf3f": 10, "bfa03f": 10, "bfa63f": 10, "connexin_ccc": 10, "bf3f56": 10, "3fbf66": 10, "54bf3f": 10, "cu_fist": 10, "bf3f5c": 10, "aa3fbf": 10, "3fa3bf": 10, "cxxc_cxxc_ssss": 10, "cyan": 10, "cyspc": 10, "3fb4bf": 10, "dagka": 10, "dagkc": 10, "3f9dbf": 10, "dax": 10, "bf553f": 10, "57bf3f": 10, "3f52bf": 10, "3f49bf": 10, "5f3fbf": 10, "653fbf": 10, "bf583f": 10, "defsn": 10, "dexdc": 10, "82bf3f": 10, "bf5b3f": 10, "disin": 10, "dm10": 10, "dm11": 10, "dm14": 10, "b03fbf": 10, "dm15": 10, "dm16": 10, "bf3fa4": 10, "dm3": 10, "bf3f87": 10, "dm5": 10, "5dbf3f": 10, "dm6": 10, "7c3fbf": 10, "dm7": 10, "dm8": 10, "dm9": 10, "dnaseic": 10, "3f86bf": 10, "3fbf49": 10, "duf1041": 10, "duf106": 10, "bf3f61": 10, "duf1086": 10, "duf1220": 10, "duf1237": 10, "3f80bf": 10, "duf1693": 10, "3fbf91": 10, "duf1713": 10, "duf1716": 10, "be3fbf": 10, "duf1741": 10, "bf3f9e": 10, "duf1767": 10, "duf1785": 10, "duf1856": 10, "duf1900": 10, "3f6cbf": 10, "duf1943": 10, "duf1944": 10, "3fbfbc": 10, "duf3454": 10, "bfac3f": 10, "duf3585": 10, "duf3635": 10, "duf4205": 10, "duf4206": 10, "bf6c3f": 10, "duf663": 10, "duf862": 10, "dwa": 10, "bf723f": 10, "dwb": 10, "3fbf57": 10, "dync": 10, "bf3f47": 10, "doh": 10, "a5bf3f": 10, "3fbf97": 10, "dysfc": 10, "b0bf3f": 10, "dysfn": 10, "ecsit_cterm": 10, "3fbfb7": 10, "3fbf8e": 10, "bf3f84": 10, "efh": 10, "egf_lam": 10, "egf_lik": 10, "eh": 10, "bf3f8a": 10, "endo3c": 10, "epend": 10, "eph_lbd": 10, "exoiii": 10, "ez_heat": 10, "bf9b3f": 10, "elp3": 10, "40bf3f": 10, "esv_1_7": 10, "933fbf": 10, "fa58c": 10, "683fbf": 10, "fabd": 10, "fas1": 10, "3f78bf": 10, "fbg": 10, "fbox": 10, "3fbf9f": 10, "96bf3f": 10, "bf3fa1": 10, "fh": 10, "fimac": 10, "423fbf": 10, "3f4cbf": 10, "fri": 10, "3fbf80": 10, "9f3fbf": 10, "fu": 10, "bf413f": 10, "703fbf": 10, "3fbf86": 10, "fn3_like": 10, "3fbf83": 10, "bf3f53": 10, "3fbf4c": 10, "4ebf3f": 10, "a43fbf": 10, "gal4": 10, "3fbf5d": 10, "71bf3f": 10, "3fbf74": 10, "gel": 10, "ggl": 10, "gha": 10, "ghb": 10, "gida_assoc_3": 10, "git": 10, "giyc": 10, "glect": 10, "gluca": 10, "gran": 10, "7fbf3f": 10, "bfb23f": 10, "g_alpha": 10, "g_gamma": 10, "g_patch": 10, "453fbf": 10, "glyco_10": 10, "glyco_18": 10, "glyco_25": 10, "glyco_32": 10, "gukc": 10, "h15": 10, "h2a": 10, "a73fbf": 10, "h2b": 10, "h3": 10, "h4": 10, "hdac_interact": 10, "hectc": 10, "helicc": 10, "3fbfb9": 10, "3fbf8b": 10, "hmg17": 10, "hnhc": 10, "hn": 10, "holi": 10, "hox": 10, "hsf": 10, "hth_arsr": 10, "hth_crp": 10, "hth_dtxr": 10, "hth_gntr": 10, "hth_laci": 10, "hth_luxr": 10, "hth_marr": 10, "hth_merr": 10, "hth_xre": 10, "httm": 10, "hx": 10, "hydro": 10, "3fbfae": 10, "haem_oxygenase_2": 10, "haemagg_act": 10, "haemolyt": 10, "hhh1": 10, "hhh2": 10, "3fbdbf": 10, "hintc": 10, "hintn": 10, "hormr": 10, "ib": 10, "963fbf": 10, "ienr1": 10, "ienr2": 10, "bf3faf": 10, "ifabd": 10, "ig_flmn": 10, "bfba3f": 10, "igc1": 10, "igc2": 10, "igv": 10, "il4_13": 10, "74bf3f": 10, "ilweq": 10, "inb": 10, "5abf3f": 10, "ippc": 10, "3fbf6e": 10, "iro": 10, "ilgf": 10, "3fbf88": 10, "int_bpp": 10, "int_brujita": 10, "bf813f": 10, "int_ctndot": 10, "int_d": 10, "int_p2": 10, "int_sxt": 10, "int_tn916": 10, "int_alpha": 10, "bf643f": 10, "integron": 10, "jab_mpn": 10, "3fbf77": 10, "bf753f": 10, "k167r": 10, "3fbf52": 10, "kat11": 10, "kazal": 10, "kh": 10, "kisc": 10, "3fbf46": 10, "bf3f50": 10, "kelch": 10, "bf3f6d": 10, "knot1": 10, "ku78": 10, "3f3fbf": 10, "bf3f76": 10, "lag1_dnabind": 10, "ldla": 10, "lh2": 10, "liganc": 10, "bfbf3f": 10, "lon": 10, "lpd_n": 10, "lrr_cc": 10, "lrr_ri": 10, "lrr_typ": 10, "lrrcap": 10, "lu": 10, "lyz1": 10, "lyz2": 10, "lamg": 10, "lamgl": 10, "lamnt": 10, "m16c_associ": 10, "bf3faa": 10, "madf": 10, "md": 10, "mr_mle": 10, "mutsac": 10, "mutsd": 10, "mysc": 10, "bf3f90": 10, "metrc": 10, "n2227": 10, "nat_pep": 10, "nebu": 10, "neuz": 10, "nl": 10, "nosic": 10, "nuc194": 10, "orang": [10, 14], "osteo": 10, "483fbf": 10, "p4hc": 10, "pa2c": 10, "3fbfb4": 10, "pam": 10, "3f8fbf": 10, "pan_ap": 10, "bf923f": 10, "3f83bf": 10, "3f63bf": 10, "pbpb": 10, "pbpe": 10, "3fa9bf": 10, "pgam": 10, "pgrp": 10, "phb": 10, "pi3kc": 10, "pint": 10, "pinc": 10, "pipkc": 10, "3f41bf": 10, "pks_at": 10, "pks_dh": 10, "pks_er": 10, "pks_kr": 10, "pks_k": 10, "pks_mt": 10, "pks_pp": 10, "pks_pp_betabranch": 10, "pks_te": 10, "plcxc": 10, "plcyc": 10, "plec": 10, "4e3fbf": 10, "plp": 10, "pol3bc": 10, "polac": 10, "polbc": 10, "poliiiac": 10, "polxc": 10, "pop4": 10, "pp2ac": 10, "pp2c_sig": 10, "pp2cc": 10, "prof": 10, "bf613f": 10, "prp": 10, "3fa6bf": 10, "psa": 10, "psn": 10, "ptbi": 10, "pth": 10, "pti": 10, "ptn": 10, "3f6fbf": 10, "ptpc": 10, "ptpc_dspc": 10, "ptpc_motif": 10, "bf3fa7": 10, "ptx": 10, "pug": 10, "bf783f": 10, "pbh1": 10, "pept_c1": 10, "phbp": 10, "phna_zn_ribbon": 10, "plsc": 10, "plus3": 10, "polya": 10, "postset": 10, "preset": 10, "pumilio": 10, "rab": 10, "rec": 10, "rho": 10, "rhod": 10, "riboc": 10, "ricin": 10, "bf983f": 10, "rio": 10, "rl11": 10, "rnase_pc": 10, "rpol4c": 10, "rpol8c": 10, "rpol9": 10, "rpola_n": 10, "rpolcx": 10, "rpold": 10, "rpr": 10, "6d3fbf": 10, "99bf3f": 10, "ranbd": 10, "rapamycin_bind": 10, "rasgefn": 10, "3f72bf": 10, "3fa0bf": 10, "8ebf3f": 10, "3fbfab": 10, "ritb": 10, "ritc": 10, "sam": 10, "sam_hd_adjac": 10, "sant": 10, "sar": 10, "scy": 10, "sec14": 10, "sfm": 10, "sh3b": 10, "signal": 10, "snc": 10, "spec": 10, "8a3fbf": 10, "sti": 10, "stykc": 10, "s_tk_x": 10, "s_tkc": 10, "sapb": 10, "bf7b3f": 10, "shkt": 10, "spc7_n": 10, "spovt_abrb": 10, "synn": 10, "tbox": 10, "tdu": 10, "tecpr": 10, "tfs2m": 10, "tfs2n": 10, "tgfb": 10, "tgc": 10, "thn": 10, "adbf3f": 10, "thy": 10, "tldc": 10, "tnfr": 10, "tog": 10, "top1ac": 10, "top1bc": 10, "top2c": 10, "top4c": 10, "topeuc": 10, "trash": 10, "45bf3f": 10, "tr_fer": 10, "tr_thy": 10, "tsp1": 10, "tspn": 10, "tspc": 10, "ty": 10, "tbf5": 10, "telo_bind": 10, "thiol": 10, "ester_cl": 10, "tn7_tnp_tnsa_n": 10, "tnpa": 10, "tnpr": 10, "8bbf3f": 10, "3f66bf": 10, "tryp_spc": 10, "tyrkc": 10, "ua": 10, "uba_e1_c": 10, "ubcc": 10, "ubq": 10, "bf3fb5": 10, "utg": 10, "ubox": 10, "bcbf3f": 10, "vkc": 10, "why": 10, "wnt1": 10, "wr1": 10, "xpgi": 10, "4bbf3f": 10, "xpgn": 10, "xtalbg": 10, "xer": 10, "bf3f6a": 10, "yqgfc": 10, "zm": 10, "zp": 10, "zalpha": 10, "znf_a20": 10, "znf_an1": 10, "znf_bed": 10, "znf_c2c2": 10, "3fbf40": 10, "znf_c2h2": 10, "bf3f59": 10, "znf_c2hc": 10, "znf_c3h1": 10, "znf_c4": 10, "znf_cdgsh": 10, "znf_chcc": 10, "znf_dbf": 10, "znf_gata": 10, "znf_nfx": 10, "znf_pmz": 10, "znf_rbz": 10, "znf_rad18": 10, "znf_taz": 10, "znf_ttf": 10, "znf_u1": 10, "znf_ubp": 10, "znf_ubr1": 10, "znf_zz": 10, "znmc": 10, "zn_pept": 10, "bf3f4d": 10, "acidppc": 10, "alkppc": 10, "btg1": 10, "cnmp": 10, "cas1": 10, "eif1a": 10, "eif2b_5": 10, "eif5c": 10, "eif6": 10, "fcbd": 10, "huh_y1": 10, "huh_y2": 10, "ser_c": 10, "ser_lsr": 10, "ser_tn": 10, "small_gtpas": 10, "t_snare": 10, "layoutbestnam": 10, "best_nam": 10, "layoutbigg": 10, "bigg": 10, "layoutcard": 10, "layoutcazi": 10, "cazi": 10, "layoutevolev": 10, "speciation_color": 10, "blue": [10, 14], "duplication_color": 10, "red": [10, 14], "layoutkeggenzym": 10, "kegg_enzym": 10, "kegg": 10, "enzym": 10, "layoutkeggmodul": 10, "kegg_modul": 10, "11": [10, 15, 17], "layoutkeggnumb": 10, "kegg_numb": 10, "layoutkeggpathwai": 10, "kegg_pathwai": 10, "pathwai": 10, "layoutlastcommonancestor": 10, "rect_width": 10, "1000": [10, 11], "shown": [10, 14, 15], "get_color": 10, "layoutpdb": 10, "pdb": 10, "layoutproteinnam": 10, "prot_nam": 10, "layoutscientificnam": 10, "layoutetediffdist": 10, "diff": 10, "diff_node_color": 10, "a50000": 10, "diff_node_s": 10, "layouthumanog": 10, "og": 10, "human_orth_prop": 10, "human_orth": 10, "6b92d6": 10, "layoutucsc": 10, "ucsc": 10, "nodecolor": 10, "800000": 10, "nodes": 10, "textcolor": 10, "c43b5d": 10, "layoutucsctran": 10, "ucsc_trans_prop": 10, "ucsc_tran": 10, "get_layout_evoltyp": 10, "get_layout_gnam": 10, "get_layout_lca_rect": 10, "get_layout_ogs_egg5": 10, "get_layout_scinam": 10, "layoutalign": 10, "700": 10, "summarize_inner_nod": 10, "layoutautonam": 10, "auto": 10, "text_color": 10, "grei": 10, "layoutcuratednam": 10, "layouteukog": 10, "euk": 10, "layoutpreferrednam": 10, "fb3640": 10, "layoutscinam": 10, "layoutse": 10, "seed": 10, "layoutbarplot": 10, "200": [10, 14], "size_prop": 10, "color_prop": 10, "color_gradi": 10, "consist": [11, 16, 17], "hampshir": [11, 17], "add_child": [11, 17], "supli": 11, "add_children": 11, "add_face_smartview": 11, "attach": [11, 14, 15], "posibl": 11, "bottom": [11, 14], "add_face_treeview": 11, "behind": 11, "add_featur": 11, "pr_name": 11, "pr_valu": 11, "add_prop": [11, 14, 17], "add_sist": [11, 17], "sister": [11, 17], "include_root": 11, "check_monophyli": [11, 17], "unroot": 11, "is_monophylet": 11, "clade_typ": 11, "leaves_extra": 11, "being": [11, 15, 17], "monophyli": [11, 13], "collapsed_fac": 11, "ref_tre": 11, "use_collater": 11, "min_support_sourc": 11, "min_support_ref": 11, "has_dupl": 11, "expand_polytomi": 11, "max_treeko_splits_to_be_artifact": 11, "ref_tree_attr": 11, "source_tree_attr": 11, "anoth": [11, 17], "robinson": 11, "fould": 11, "symmetr": 11, "edg": [11, 17], "cophenetic_matrix": 11, "cophenet": 11, "matrix": 11, "gist": 11, "github": [11, 16], "279f9009f46bf675e3a890c19191158b": 11, "orderless": 11, "Then": 11, "xor": 11, "both": [11, 14, 15, 17], "those": [11, 15], "One": [11, 14, 17], "optim": 11, "sinc": [11, 15, 16, 17], "itself": [11, 17], "itertool": 11, "combin": [11, 13, 15, 16], "rather": [11, 15, 16], "permut": 11, "our": [11, 14, 15, 17], "theta": 11, "great": 11, "realiti": 11, "speed": [11, 15], "thing": 11, "dimension": 11, "order": [11, 14, 15, 16, 17], "cpickl": [11, 17], "protocol": 11, "serialis": [11, 17], "thu": [11, 14, 15, 17], "exclud": [11, 17], "As": [11, 15, 17], "whole": [11, 14, 15, 16, 17], "clone": [11, 17], "slower": [11, 17], "recommend": [11, 17], "deepcopi": [11, 17], "slowest": [11, 17], "complex": [11, 17], "even": [11, 14, 15, 16, 17], "etc": [11, 14], "del_featur": 11, "perman": 11, "del_prop": [11, 17], "prop_nam": [11, 17], "prevent_nondicotom": 11, "preserve_branch_length": [11, 17], "transfer": [11, 17], "until": 11, "occur": 11, "among": [11, 15, 17], "to_str": [11, 15, 16, 17], "levelord": [11, 17], "detach": 11, "conserv": 11, "mechan": 11, "past": [11, 17], "pair": [11, 14, 15], "lai": 11, "pass": [11, 14, 15, 17], "won": 11, "recomput": 11, "map_prop": 11, "polytomy_size_limit": 11, "skip_large_polytomi": 11, "solut": [11, 17], "multifurc": [11, 13], "polytomi": [11, 17], "pleas": 11, "binari": 11, "grow": [11, 17], "exponenti": 11, "feasibl": 11, "105": [11, 14], "945": 11, "10395": 11, "135135": 11, "2027025": 11, "ajmonlin": 11, "2010": 11, "darwin": 11, "show_branch_length": [11, 14], "show_branch_support": [11, 14], "launch": 11, "session": [11, 14], "__name__": [11, 14], "adress": 11, "static": [11, 14], "from_parent_child_t": 11, "parent_child_t": 11, "tabl": [11, 14], "relationship": [11, 15, 17], "from_skbio": 11, "skbio_tre": 11, "map_attribut": 11, "scikit": 11, "bio": 11, "treenod": 11, "from_skibio": 11, "skbiotre": 11, "get_cached_cont": [11, 17], "container_typ": 11, "leaves_onli": 11, "serv": [11, 16], "cach": [11, 13], "And": [11, 14, 15, 17], "themselv": [11, 17], "get_children": 11, "get_closest_leaf": 11, "closest": 11, "get_dist": [11, 17], "node1": [11, 17], "node2": [11, 17], "target": [11, 17], "target2": 11, "get_farthest_leaf": [11, 17], "get_farthest_nod": [11, 17], "get_midpoint_outgroup": [11, 17], "divid": 11, "get_monophylet": [11, 17], "consid": [11, 15, 17], "exclus": [11, 17], "get_sist": 11, "get_topology_id": 11, "bunch": 11, "without": [11, 15, 17], "befor": [11, 14, 17], "hop": 11, "img_styl": [11, 14], "_get_styl": 11, "init_from_et": 11, "init_from_newick": 11, "is_collaps": 11, "_get_collaps": 11, "is_initi": 11, "_get_initi": 11, "is_root": [11, 17], "iter_prepostord": 11, "postord": [11, 17], "visit": [11, 17], "leaf_nam": [11, 14], "phonehom": 11, "pop_child": 11, "child_idx": 11, "retain": 11, "minimum": 11, "remove_child": [11, 17], "exit": 11, "longer": [11, 14], "remove_children": 11, "remove_sist": 11, "file_nam": 11, "dpi": [11, 14], "90": [11, 14], "imag": [11, 13], "svg": [11, 14], "pdf": [11, 14], "png": [11, 14], "mm": [11, 14, 15], "millimet": [11, 14], "inch": [11, 14], "resolut": [11, 14], "per": [11, 14, 15], "resolve_polytomi": [11, 17], "recurs": [11, 17], "resolv": 11, "arbitrari": [11, 14], "dicotom": 11, "later": [11, 14, 17], "reject": 11, "reverse_children": 11, "robinson_fould": [11, 17], "prop_t1": 11, "prop_t2": 11, "unrooted_tre": [11, 17], "correct_by_polytomy_s": 11, "min_support_t1": 11, "min_support_t2": 11, "rf_max": [11, 17], "edges_t1": 11, "edges_t2": 11, "discarded_edges_t1": 11, "discarded_edges_t2": 11, "expand": [11, 17], "absolut": [11, 15], "search_ancestor": [11, 17], "condit": [11, 17], "search_descend": [11, 17], "search_leaves_by_nam": [11, 17], "search_nod": [11, 15, 17], "set_styl": [11, 14], "node_styl": [11, 14], "doubl": 11, "_get_sm_styl": 11, "sort_descend": 11, "delete_orphan": 11, "swap_children": 11, "show_intern": [11, 15, 17], "compact": [11, 17], "py": [11, 14], "px0": 11, "waterfal": 11, "three": [11, 15, 17], "breadth": 11, "bf": 11, "depth": [11, 17], "df": 11, "preorder": [11, 17], "legaci": 11, "appli": [11, 14, 15, 16, 17], "remain": [11, 17], "just": [11, 15, 17], "drop": 11, "understand": 13, "faster": [13, 15], "lookup": 13, "concaten": 13, "solv": 13, "midpoint": 13, "overview": 13, "taxonom": [13, 16], "aspect": 13, "highli": 14, "although": [14, 15, 17], "predefin": [14, 15], "instal": 14, "easili": [14, 15, 16, 17], "scratch": 14, "through": [14, 15, 16, 17], "four": 14, "graph": [14, 17], "normal": [14, 15, 16, 17], "control": [14, 17], "built": [14, 15, 17], "gui": [14, 17], "invok": 14, "fulli": [14, 16], "interfac": 14, "simpli": 14, "advantag": 14, "interrupt": 14, "continu": 14, "execut": 14, "made": 14, "quit": 14, "special": [14, 17], "dure": 14, "directli": [14, 17], "while": [14, 15, 16], "raster": 14, "pictur": 14, "modif": 14, "determin": [14, 17], "regard": [14, 17], "adjust": [14, 15], "break": 14, "ratio": 14, "183": 14, "choos": 14, "circular_styl": 14, "document": [14, 15], "increas": 14, "120": 14, "branch_vertical_margin": 14, "adjac": 14, "semi": 14, "circumfer": 14, "arc_start": 14, "clock": 14, "arc_span": 14, "hello": 14, "equal": [14, 17], "nstyle": 14, "darkr": 14, "cccccc": 14, "must": [14, 17], "moment": [14, 17], "foreground": 14, "let": [14, 15, 17], "now": [14, 15, 17], "export": [14, 17], "replic": 14, "fly": [14, 15], "extern": [14, 17], "geometr": 14, "molecular": [14, 15], "sequencefac": 14, "heatmap": 14, "profilefac": 14, "area": 14, "around": 14, "below": [14, 17], "hola": 14, "mundo": 14, "pile": 14, "abov": [14, 15, 17], "face_grid_tutori": 14, "onc": [14, 15, 16, 17], "recycl": 14, "apart": 14, "config": 14, "permit": 14, "margin": 14, "border": 14, "here": [14, 15, 17], "veri": [14, 17], "margin_top": 14, "margin_right": 14, "margin_left": 14, "margin_bottom": 14, "inner_bord": 14, "lightgreen": 14, "sent": 14, "understood": [14, 17], "rule": 14, "abc_layout": 14, "vowel": [14, 17], "alreadi": [14, 16, 17], "probabl": 14, "get_example_tre": 14, "time": [14, 15, 16, 17], "design": [14, 17], "bold": 14, "0f0f0f": 14, "ff0000": 14, "style1": 14, "style2": 14, "0000aa": 14, "__main__": 14, "Or": [14, 17], "400": 14, "lightsteelblu": 14, "nst2": 14, "moccasin": 14, "nst3": 14, "darkseagreen": 14, "nst4": 14, "khaki": 14, "a3": 14, "b4": 14, "c3": 14, "n3": 14, "n4": 14, "root_opening_factor": 14, "node_background": 14, "dre": 14, "008339": 14, "dme": [14, 15], "300613": 14, "596401": 14, "cfa": [14, 15], "640858": 14, "753230": 14, "182035": 14, "106234": 14, "271621": 14, "046042": 14, "953250": 14, "061813": 14, "110769": 14, "204419": 14, "973467": 14, "humanfac": 14, "mousefac": 14, "mous": [14, 15], "dogfac": 14, "dog": [14, 15], "chimpfac": 14, "chimp": [14, 15], "fishfac": 14, "fish": [14, 15], "flyfac": 14, "readi": 14, "namefac": 14, "009000": 14, "convers": [14, 16], "real": [14, 15], "code2nam": [14, 15], "drosophila": [14, 15], "melanogast": [14, 15], "danio": 14, "rerio": 14, "homo": [14, 15, 16], "sapien": [14, 15, 16], "troglodyt": [14, 15, 16], "musculu": [14, 15, 16], "cani": [14, 15], "familiari": [14, 15], "code2desc": 14, "zebrafish": 14, "known": 14, "tropic": 14, "freshwat": 14, "belong": [14, 15], "minnow": 14, "cyprinida": 14, "insect": [14, 17], "diptera": 14, "possess": 14, "wing": 14, "mesothorax": 14, "halter": 14, "metathorax": 14, "member": 14, "biped": 14, "primat": [14, 15, 16, 17], "hominida": [14, 16], "chimpanze": 14, "sometim": [14, 17], "colloqui": 14, "extant": 14, "genu": [14, 16], "mammal": [14, 15], "rodent": 14, "lupu": 14, "domest": 14, "subspeci": [14, 16], "wolf": 14, "canida": 14, "ordercarnivora": 14, "mylayout": 14, "longnamefac": 14, "multilin": 14, "descfac": 14, "len": [14, 17], "enumer": 14, "startswith": [14, 15], "elif": [14, 15], "aa0000": 14, "9db0cf": 14, "final": [14, 17], "img_fac": 14, "600": 14, "weight": 14, "proport": 14, "royalblu": 14, "randint": 14, "manual": 14, "bubble_map": 14, "300": 14, "treefac": 14, "small_t": 14, "laef": 14, "tree_fac": 14, "aqak": 14, "ikgskkaikvfssa": 14, "aperlqeygsiftda": 14, "glqrrprhriqsk": 14, "alqeklkdfpvcvstkpepeddaeeglgglpsn": 14, "issvsslllfnttenlykkyvfldplag": 14, "thvmlgaeteeklfdaplsiskreqleqqvpenyfyvpd": 14, "lgqvpeidvpsylpdlpgiandlmyiadlgpgiapsapgtipelptfhtevaeplkvgelgsgmgagpgtp": 14, "ahtpssldtphfvfqtykmgapplppstaapvgqgarqddssssaspsvqgaprevvdpsggwatllesir": 14, "qaggigkaklrsmkerklekqqqkeqeqvratsqgghl": 14, "msdlfnklvmrrkgisgkgpgagdgpggafa": 14, "rvsdsipplpppqqpqaed": 14, "mixed_motif": 14, "rgradient": 14, "arial": 14, "white": 14, "long": [14, 17], "101": 14, "150": 14, "pink": 14, "155": 14, "purpl": [14, 17], "160": 14, "190": 14, "yellow": [14, 17], "191": 14, "201": 14, "250": 14, "brown": 14, "351": 14, "370": 14, "gold": 14, "420": 14, "compactseq": 14, "simple_motif": 14, "box_motif": 14, "85": 14, "green": [14, 17], "110": 14, "125": 14, "blank": 14, "tree_width": 14, "seq_motif_fac": 14, "plai": 14, "colorsi": 14, "pyqt6": 14, "qtcore": 14, "qtgui": 14, "qcolor": 14, "qpen": 14, "qbrush": 14, "qtwidget": 14, "qgraphicsrectitem": 14, "qgraphicssimpletextitem": 14, "qgraphicsellipseitem": 14, "interactiveitem": 14, "super": 14, "setcursor": 14, "pointinghandcursor": 14, "setacceptshoverev": 14, "hoverenterev": 14, "With": [14, 17], "hide": 14, "dynamicitemfac": 14, "setparentitem": 14, "ensur": 14, "zvalu": 14, "setzvalu": 14, "setbrush": 14, "settext": 14, "setrect": 14, "boundingrect": 14, "setvis": 14, "hoverleaveev": 14, "random_color": 14, "hue": 14, "luminos": 14, "satur": 14, "hls_to_rgb": 14, "02x": 14, "255": 14, "ugly_name_fac": 14, "master": [14, 17], "qgraphicsitem": 14, "masteritem": 14, "doc": 14, "No": 14, "setpen": 14, "nopen": 14, "ellips": 14, "tw": 14, "th": 14, "setpo": 14, "master_li": 14, "itemfac": 14, "constructor": [14, 17], "next": [14, 17], "forward": 14, "view": [14, 17], "most": [15, 16, 17], "homolog": 15, "deal": [15, 17], "ancestr": 15, "direct": 15, "consequ": 15, "applic": 15, "unalign": 15, "mai": [15, 17], "fasta_txt": 15, "maeipdetiqqfmalt": 15, "hniavqylsefgtddikdrreeah": 15, "seqb": 15, "maeipdatiqqfmaltnvshniavqi": 15, "efgtddqkdrreeah": 15, "seqc": 15, "maeipdatiq": 15, "altnvshniavqylsefgtddqpdrreeah": 15, "seqd": 15, "maeapdetiqqfmaltnvshniavqylsefg": 15, "reeah": 15, "strict": [15, 17], "perfect": 15, "hniavqylsefgdlnealnsyyasqtddikdrreeah": 15, "efgdlnealnsyyayqtddqkdrreeah": 15, "altnvshniavqylsefgdlnealnsyyasqtddqpdrreeah": 15, "maeapdetiqqfmaltnvshniavqylsefgdln": 15, "iphylip_txt": 15, "76": 15, "maeipdetiq": 15, "qfmalt": 15, "niavqylsef": 15, "gdlnealnsi": 15, "yasqtddikd": 15, "rreeahqfma": 15, "qfmaltnvsh": 15, "niavqi": 15, "yayqtddqkd": 15, "altnvsh": 15, "yasqtddqpd": 15, "maeapdetiq": 15, "gdlneal": 15, "reeahq": 15, "ltnvshqfma": 15, "ltnvsh": 15, "fma": 15, "usual": [15, 16, 17], "fmaltnvsh": 15, "altnvshniavqylsefgdlnealnsyyasqtddqpdrreeahqfmaltnvsh": 15, "hniavqylsefgdlnealnsyyasqtddikdrreeahqfmaltnvshqfmaltnvsh": 15, "efgdlnealnsyyayqtddqkdrreeahqfmaltnvsh": 15, "hniavqylsefgdlnealnsyyasqtddikdrreeahqf": 15, "maltnvshqfmaltnvsh": 15, "efgdlnealnsi": 15, "yayqtddqkdrreeahqfmaltnvsh": 15, "altnvshnia": 15, "vqylsefgdlnealnsyyasqtddqpdrreeahqfmaltnvsh": 15, "maeapd": 15, "etiqqfmaltnvshniavqylsefgdln": 15, "reload": 15, "sametre": 15, "recov": 15, "benefit": 15, "conveni": [15, 16, 17], "alg": 15, "dme_001": 15, "hniavqylsefgdln": 15, "yyasqtddikdrreeah": 15, "dme_002": 15, "cfa_001": 15, "mms_001": 15, "hsa_001": 15, "ptr_002": 15, "fmaltnvshniavqi": 15, "yqtddqkdrreeah": 15, "mmu_002": 15, "hsa_002": 15, "maeapdetiqqfm": 15, "ltnvshniavqylsefgdln": 15, "mmu_001": 15, "ptr_001": 15, "gene_tree_nw": 15, "species_tree_nw": 15, "mmu": 15, "genetre": 15, "sptree": 15, "recon_tre": 15, "separ": [15, 17], "obtain": [15, 17], "often": [15, 17], "establish": [15, 17], "behavior": 15, "get_species_nam": 15, "node_name_str": 15, "underscor": 15, "spcode": 15, "disabl": [15, 17], "overwriten": 15, "mynewick": 15, "charleston": 15, "1997": 15, "paralogi": 15, "houben": 15, "2009": 15, "threshold": 15, "rise": 15, "human_seq": 15, "join": 15, "interest": [15, 17], "filter": [15, 17], "fseq": 15, "slist": 15, "besid": 15, "predict": 15, "labl": 15, "explain": 15, "strictli": [15, 17], "taxonomic_info": 15, "fir": 15, "inparalog": 15, "ortholog": 15, "outparalog": 15, "notic": 15, "state": 15, "addition": [15, 17], "phylo": 15, "paralog": 15, "similarli": [15, 17], "therefor": [15, 17], "certain": [15, 17], "precis": 15, "approach": [15, 16, 17], "synonym": 15, "rate": 15, "proxi": 15, "diverg": 15, "al": 15, "kalinka": 15, "2001": 15, "aim": 15, "gradient": 15, "vertebr": 15, "categori": 15, "orangutan": 15, "relative_dist": 15, "non": 15, "rat": 15, "purpos": 15, "humana": 15, "chimpa": 15, "dup1": 15, "humanb": 15, "chimpb": 15, "mousea": 15, "dup3": 15, "humanc": 15, "chimpc": 15, "dup2": 15, "humand": 15, "ratc": 15, "mousec": 15, "distant": [15, 17], "lett": 15, "hsa_003": 15, "hsa_004": 15, "ptr_004": 15, "mmu_004": 15, "older": 15, "hominid": 15, "macaca": 15, "mulata": 15, "metazoa": [15, 16, 17], "correspondig": 15, "age2nam": 15, "event1": 15, "event2": 15, "lead": 15, "vari": 15, "assist": [15, 17], "autodetect": 15, "useless": 15, "observ": 15, "subpart": [15, 17], "becaus": 15, "combinatori": 15, "background": 15, "enorm": 15, "few": 15, "hundr": 15, "ten": 15, "thousand": 15, "human_1": 15, "chimp_1": 15, "human_2": 15, "chimp_2": 15, "chimp_3": 15, "fish_1": 15, "human_3": 15, "fish_3": 15, "yeast_2": 15, "yeast_1": 15, "yeast": [15, 17], "ignor": [15, 16], "ntree": 15, "ndup": 15, "spt": 15, "map_featur": 15, "effici": [15, 16], "significantli": 15, "much": 15, "simpler": 15, "previou": [15, 17], "ncbi_taxonomi": 16, "gtdb_taxonomi": 16, "gtdbtaxa": 16, "offer": 16, "vice": 16, "versa": 16, "fetch": 16, "phylonod": 16, "comprehens": [16, 17], "organ": 16, "daili": 16, "portal": 16, "releas": 16, "dmp": 16, "taxon": 16, "taxonomyi": 16, "numer": 16, "commonli": [16, 17], "signifi": 16, "entiti": 16, "genet": 16, "9606": 16, "On": 16, "distribut": 16, "fullfil": 16, "step": [16, 17], "essenti": [16, 17], "v4": 16, "third": [16, 17], "parti": 16, "nick": 16, "youngblut": 16, "gtdb_to_taxdump": 16, "emploi": 16, "preprar": 16, "attempt": 16, "600mb": 16, "72mb": 16, "directori": 16, "skip": 16, "dengzq1234": 16, "gtdbdump": 16, "202": 16, "gtdb202dump": 16, "input": [16, 17], "taxid2nam": 16, "9443": 16, "name2taxid": 16, "bacteria": 16, "629395": 16, "further": 16, "131567": 16, "2759": 16, "33154": 16, "33208": 16, "6072": 16, "33213": 16, "33511": 16, "7711": 16, "89593": 16, "7742": 16, "7776": 16, "117570": 16, "117571": 16, "8287": 16, "1338369": 16, "32523": 16, "32524": 16, "40674": 16, "32525": 16, "9347": 16, "1437010": 16, "314146": 16, "376913": 16, "314293": 16, "9526": 16, "314295": 16, "9604": 16, "207598": 16, "9605": 16, "cellular": 16, "eukaryota": 16, "opisthokonta": 16, "eumetazoa": 16, "bilateria": 16, "deuterostomia": 16, "chordata": 16, "craniata": 16, "vertebrata": 16, "gnathostomata": 16, "teleostomi": 16, "euteleostomi": 16, "sarcopterygii": 16, "dipnotetrapodomorpha": 16, "tetrapoda": 16, "amniota": 16, "mammalia": 16, "theria": 16, "eutheria": 16, "boreoeutheria": 16, "euarchontoglir": 16, "haplorrhini": 16, "simiiform": 16, "catarrhini": 16, "hominoidea": 16, "hominina": 16, "These": [16, 17], "doesn": 16, "ve": 16, "introduc": 16, "facilit": [16, 17], "offici": 16, "recogn": 16, "easier": 16, "get_name_lineag": 16, "heidelbergensi": 16, "ssp": 16, "denisova": 16, "neanderthalensi": 16, "environment": 16, "sampl": 16, "2665952": 16, "2665953": 16, "1425170": 16, "unclassifi": 16, "2813598": 16, "2813599": 16, "f__thorarchaeacea": 16, "gb_gca_003662765": 16, "gb_gca_003662805": 16, "gb_gca_003345555": 16, "gb_gca_003345595": 16, "gb_gca_001940705": 16, "gb_gca_001563335": 16, "gb_gca_011364905": 16, "gb_gca_004376265": 16, "gb_gca_002825515": 16, "gb_gca_001563325": 16, "gb_gca_011364985": 16, "gb_gca_011365025": 16, "gb_gca_004524565": 16, "gb_gca_004524595": 16, "gb_gca_002825465": 16, "gb_gca_002825535": 16, "gb_gca_003345545": 16, "gb_gca_004524445": 16, "gb_gca_013388835": 16, "gb_gca_008080745": 16, "gb_gca_004524435": 16, "gb_gca_013138615": 16, "s__mp8t": 16, "sp002825535": 16, "sp003345545": 16, "sp002825465": 16, "sp004524565": 16, "sp004524595": 16, "s__smtz1": 16, "83": 16, "sp011364985": 16, "sp011365025": 16, "sp001563325": 16, "s__tekir": 16, "sp004524445": 16, "s__shmx01": 16, "sp008080745": 16, "s__owc5": 16, "sp003345595": 16, "sp003345555": 16, "s__jacael01": 16, "sp013388835": 16, "s__b65": 16, "g9": 16, "sp003662765": 16, "sp001563335": 16, "sp011364905": 16, "sp001940705": 16, "sp004376265": 16, "sp002825515": 16, "s__wtck01": 16, "sp013138615": 16, "sp004524435": 16, "g__mp8t": 16, "g__smtz1": 16, "g__tekir": 16, "g__shmx01": 16, "g__owc5": 16, "g__jacael01": 16, "g__b65": 16, "g__wtck01": 16, "smallest": 16, "9598": 16, "10090": 16, "7707": 16, "8782": 16, "dendrochirotida": 16, "subfamili": 16, "superord": 16, "av": 16, "p__huberarchaeota": 16, "o__peptococcal": 16, "f__korarchaeacea": 16, "phylum": 16, "d__archaea": 16, "superkingdom": 16, "p__thermoproteota": 16, "c__korarchaeia": 16, "o__korarchaeal": 16, "d__bacteria": 16, "p__firmicutes_b": 16, "c__peptococcia": 16, "addit": [16, 17], "give": 16, "sibl": 16, "rememb": 16, "prota": 16, "protb": 16, "emul": 17, "formal": 17, "acycl": 17, "convent": 17, "down": 17, "superior": 17, "longest": 17, "downward": 17, "topmost": 17, "Being": 17, "begin": 17, "reach": 17, "bottommost": 17, "inner": 17, "portion": 17, "togeth": 17, "compris": 17, "entir": 17, "proper": 17, "analogi": 17, "term": 17, "subset": 17, "entail": 17, "consider": 17, "constant": 17, "nest": 17, "parenthes": 17, "nevertheless": 17, "uncommon": 17, "variat": 17, "definit": 17, "construct": 17, "cool": 17, "high": 17, "did": 17, "familiar": 17, "less": 17, "genes_tre": 17, "notat": 17, "new_tre": 17, "success": 17, "practic": 17, "distinct": 17, "concept": 17, "hang": 17, "review": 17, "moreov": 17, "smaller": 17, "latter": 17, "strongli": 17, "reliabl": 17, "bootstrap": 17, "syntax": 17, "conceptu": 17, "That": 17, "rooted_tre": 17, "navig": 17, "explanatori": 17, "scheme": 17, "lower": 17, "boolean": 17, "decid": 17, "becom": 17, "cd": 17, "node2label": 17, "collapsed_leaf": 17, "sai": 17, "deepest": 17, "larger": 17, "abcd": 17, "efg": 17, "processable_nod": 17, "Will": 17, "along": 17, "node3": 17, "cannot": 17, "statement": 17, "search_by_s": 17, "40": 17, "handi": 17, "matches2": 17, "append": 17, "poli": 17, "phylet": 17, "inde": 17, "paraphylet": 17, "nor": 17, "polyphylet": 17, "signific": 17, "slowdown": 17, "instantan": 17, "node2leav": 17, "ancestor_jfc": 17, "confid": 17, "nodetyp": 17, "overwrit": 17, "is_vowel": 17, "aeiou": 17, "But": 17, "higher": 17, "long_branch_nod": 17, "precomput": 17, "conf": 17, "enclos": 17, "bracket": 17, "plain": 17, "www": 17, "phylosoft": 17, "adh2": 17, "adh1": 17, "05": 17, "adhi": 17, "nematod": 17, "adhx": 17, "adh4": 17, "09": 17, "adh3": 17, "13": 17, "fungi": 17, "tag": 17, "averag": 17, "max_rf": 17, "norm_rf": 17, "effective_tree_s": 17, "ref_edges_in_sourc": 17, "source_edges_in_ref": 17, "source_subtre": 17, "common_edg": 17, "source_edg": 17, "ref_edg": 17, "treeko_dist": 17, "metric": 17, "examin": 17, "discard": 17, "mention": 17, "parts_t1": 17, "parts_t2": 17, "total": 17, "tree2": 17, "were": 17, "tree1": 17, "hold": 17, "partial": 17, "Such": 17, "orphan": 17, "never": 17, "unless": 17, "ok": 17, "r6": 17, "r2": 17, "r3": 17, "r4": 17, "r5": 17, "disconnect": 17, "action": 17, "contrast": 17, "removed_nod": 17, "unnecessari": 17, "hot": 17, "freeli": 17, "serious": 17, "care": 17, "mistak": 17, "intric": 17, "serial": 17, "internal_1": 17, "internal_2": 17, "lose": 17, "lost": 17, "_0_": 17, "1_": 17, "_2_": 17, "3_": 17, "bifurc": 17, "realli": 17, "softwar": 17, "intact": 17, "polynod": 17, "techniqu": 17, "polar": 17, "basal": 17, "crucial": 17, "prior": 17, "differenti": 17, "count": 17, "obvious": 17, "brother": 17, "opposit": 17, "Of": 17, "cours": 17, "toplog": 17, "incorpor": 17, "occurr": 17}, "objects": {"ete4": [[8, 0, 1, "", "PhyloTree"], [11, 0, 1, "", "Tree"]], "ete4.PhyloTree": [[8, 1, 1, "", "__init__"], [8, 1, 1, "", "annotate_gtdb_taxa"], [8, 1, 1, "", "annotate_ncbi_taxa"], [8, 1, 1, "", "collapse_lineage_specific_expansions"], [8, 1, 1, "", "get_age"], [8, 1, 1, "", "get_age_balanced_outgroup"], [8, 1, 1, "", "get_descendant_evol_events"], [8, 1, 1, "", "get_farthest_oldest_leaf"], [8, 1, 1, "", "get_farthest_oldest_node"], [8, 1, 1, "", "get_my_evol_events"], [8, 1, 1, "", "get_speciation_trees"], [8, 1, 1, "", "get_species"], [8, 1, 1, "", "iter_species"], [8, 1, 1, "", "link_to_alignment"], [8, 1, 1, "", "ncbi_compare"], [8, 1, 1, "", "reconcile"], [8, 1, 1, "", "set_species_naming_function"], [8, 2, 1, "", "species"], [8, 1, 1, "", "split_by_dups"], [8, 1, 1, "", "write"]], "ete4.Tree": [[11, 1, 1, "", "__init__"], [11, 1, 1, "", "add_child"], [11, 1, 1, "", "add_children"], [11, 1, 1, "", "add_face"], [11, 1, 1, "", "add_face_smartview"], [11, 1, 1, "", "add_face_treeview"], [11, 1, 1, "", "add_feature"], [11, 1, 1, "", "add_features"], [11, 1, 1, "", "add_prop"], [11, 1, 1, "", "add_props"], [11, 1, 1, "", "add_sister"], [11, 1, 1, "", "ancestors"], [11, 1, 1, "", "check_monophyly"], [11, 3, 1, "", "children"], [11, 3, 1, "", "collapsed_faces"], [11, 1, 1, "", "common_ancestor"], [11, 1, 1, "", "compare"], [11, 1, 1, "", "cophenetic_matrix"], [11, 1, 1, "", "copy"], [11, 1, 1, "", "del_feature"], [11, 1, 1, "", "del_prop"], [11, 1, 1, "", "delete"], [11, 1, 1, "", "descendants"], [11, 1, 1, "", "describe"], [11, 1, 1, "", "detach"], [11, 3, 1, "", "dist"], [11, 1, 1, "", "edges"], [11, 1, 1, "", "expand_polytomies"], [11, 1, 1, "", "explore"], [11, 3, 1, "", "faces"], [11, 1, 1, "", "from_parent_child_table"], [11, 1, 1, "", "from_skbio"], [11, 1, 1, "", "get_cached_content"], [11, 1, 1, "", "get_children"], [11, 1, 1, "", "get_closest_leaf"], [11, 1, 1, "", "get_distance"], [11, 1, 1, "", "get_farthest_leaf"], [11, 1, 1, "", "get_farthest_node"], [11, 1, 1, "", "get_midpoint_outgroup"], [11, 1, 1, "", "get_monophyletic"], [11, 1, 1, "", "get_prop"], [11, 1, 1, "", "get_sisters"], [11, 1, 1, "", "get_topology_id"], [11, 3, 1, "", "id"], [11, 2, 1, "", "img_style"], [11, 1, 1, "", "init_from_ete"], [11, 1, 1, "", "init_from_newick"], [11, 2, 1, "", "is_collapsed"], [11, 2, 1, "", "is_initialized"], [11, 3, 1, "", "is_leaf"], [11, 1, 1, "", "is_monophyletic"], [11, 3, 1, "", "is_root"], [11, 1, 1, "", "iter_prepostorder"], [11, 1, 1, "", "ladderize"], [11, 1, 1, "", "leaf_names"], [11, 1, 1, "", "leaves"], [11, 3, 1, "", "level"], [11, 1, 1, "", "lineage"], [11, 3, 1, "", "name"], [11, 1, 1, "", "phonehome"], [11, 1, 1, "", "pop_child"], [11, 1, 1, "", "populate"], [11, 3, 1, "", "props"], [11, 1, 1, "", "prune"], [11, 1, 1, "", "remove_child"], [11, 1, 1, "", "remove_children"], [11, 1, 1, "", "remove_sister"], [11, 1, 1, "", "render"], [11, 1, 1, "", "resolve_polytomy"], [11, 1, 1, "", "reverse_children"], [11, 1, 1, "", "robinson_foulds"], [11, 3, 1, "", "root"], [11, 1, 1, "", "search_ancestors"], [11, 1, 1, "", "search_descendants"], [11, 1, 1, "", "search_leaves_by_name"], [11, 1, 1, "", "search_nodes"], [11, 1, 1, "", "set_outgroup"], [11, 1, 1, "", "set_style"], [11, 1, 1, "", "show"], [11, 3, 1, "", "size"], [11, 2, 1, "", "sm_style"], [11, 1, 1, "", "sort_descendants"], [11, 1, 1, "", "standardize"], [11, 3, 1, "", "support"], [11, 1, 1, "", "swap_children"], [11, 1, 1, "", "to_str"], [11, 1, 1, "", "to_ultrametric"], [11, 1, 1, "", "traverse"], [11, 1, 1, "", "unroot"], [11, 3, 1, "", "up"], [11, 1, 1, "", "write"]], "ete4.clustering": [[4, 4, 0, "-", "clustertree"]], "ete4.clustering.clustertree": [[4, 0, 1, "", "ClusterTree"]], "ete4.clustering.clustertree.ClusterTree": [[4, 1, 1, "", "__init__"], [4, 2, 1, "", "deviation"], [4, 1, 1, "", "get_dunn"], [4, 1, 1, "", "get_silhouette"], [4, 2, 1, "", "intercluster_dist"], [4, 2, 1, "", "intracluster_dist"], [4, 1, 1, "", "leaf_profiles"], [4, 1, 1, "", "link_to_arraytable"], [4, 2, 1, "", "profile"], [4, 1, 1, "", "set_distance_function"], [4, 2, 1, "", "silhouette"]], "ete4.core": [[6, 4, 0, "-", "operations"], [9, 4, 0, "-", "seqgroup"]], "ete4.core.operations": [[6, 0, 1, "", "Walker"], [6, 5, 1, "", "assert_root_consistency"], [6, 5, 1, "", "common_ancestor"], [6, 5, 1, "", "insert_intermediate"], [6, 5, 1, "", "join_branch"], [6, 5, 1, "", "ladderize"], [6, 5, 1, "", "maybe_convert_internal_nodes_to_support"], [6, 5, 1, "", "move"], [6, 5, 1, "", "populate"], [6, 5, 1, "", "rehang"], [6, 5, 1, "", "remove"], [6, 5, 1, "", "set_outgroup"], [6, 5, 1, "", "sort"], [6, 5, 1, "", "swap_props"], [6, 5, 1, "", "to_ultrametric"], [6, 5, 1, "", "update_size"], [6, 5, 1, "", "update_sizes_all"], [6, 5, 1, "", "update_sizes_from"], [6, 5, 1, "", "walk"]], "ete4.core.operations.Walker": [[6, 1, 1, "", "add_next_branch"], [6, 2, 1, "", "first_visit"], [6, 1, 1, "", "go_back"], [6, 2, 1, "", "has_unvisited_branches"], [6, 2, 1, "", "node"], [6, 2, 1, "", "node_id"]], "ete4.core.seqgroup": [[9, 0, 1, "", "SeqGroup"]], "ete4.core.seqgroup.SeqGroup": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "get_entries"], [9, 1, 1, "", "get_seq"], [9, 1, 1, "", "iter_entries"], [9, 1, 1, "", "set_seq"], [9, 1, 1, "", "write"]], "ete4.ncbi_taxonomy": [[5, 4, 0, "-", "ncbiquery"]], "ete4.ncbi_taxonomy.ncbiquery": [[5, 0, 1, "", "NCBITaxa"], [5, 5, 1, "", "is_taxadb_up_to_date"]], "ete4.ncbi_taxonomy.ncbiquery.NCBITaxa": [[5, 1, 1, "", "__init__"], [5, 1, 1, "", "annotate_tree"], [5, 1, 1, "", "get_broken_branches"], [5, 1, 1, "", "get_common_names"], [5, 1, 1, "", "get_descendant_taxa"], [5, 1, 1, "", "get_fuzzy_name_translation"], [5, 1, 1, "", "get_lineage"], [5, 1, 1, "", "get_lineage_translator"], [5, 1, 1, "", "get_name_translator"], [5, 1, 1, "", "get_rank"], [5, 1, 1, "", "get_taxid_translator"], [5, 1, 1, "", "get_topology"], [5, 1, 1, "", "translate_to_names"], [5, 1, 1, "", "update_taxonomy_database"]], "ete4.parser": [[7, 4, 0, "-", "newick"], [7, 4, 0, "-", "nexus"]], "ete4.parser.newick": [[7, 6, 1, "", "NewickError"], [7, 5, 1, "", "content_repr"], [7, 5, 1, "", "dump"], [7, 5, 1, "", "dumps"], [7, 5, 1, "", "error"], [7, 5, 1, "", "get_extended_props"], [7, 5, 1, "", "get_props"], [7, 5, 1, "", "load"], [7, 5, 1, "", "loads"], [7, 5, 1, "", "make_parser"], [7, 5, 1, "", "prop_repr"], [7, 5, 1, "", "quote"], [7, 5, 1, "", "read_content"], [7, 5, 1, "", "read_nodes"], [7, 5, 1, "", "repr_short"], [7, 5, 1, "", "skip_quoted_name"], [7, 5, 1, "", "skip_spaces_and_comments"], [7, 5, 1, "", "unquote"]], "ete4.parser.nexus": [[7, 6, 1, "", "NexusError"], [7, 5, 1, "", "apply_translations"], [7, 5, 1, "", "get_commands"], [7, 5, 1, "", "get_section"], [7, 5, 1, "", "get_sections"], [7, 5, 1, "", "get_trees"], [7, 5, 1, "", "load"], [7, 5, 1, "", "loads"]], "ete4.phylo": [[8, 0, 1, "", "EvolEvent"]], "ete4.smartview.gui": [[10, 4, 0, "-", "server"]], "ete4.smartview.gui.server": [[10, 0, 1, "", "AppTree"], [10, 0, 1, "", "GlobalStuff"], [10, 5, 1, "", "activate_clade"], [10, 5, 1, "", "activate_node"], [10, 5, 1, "", "add_tree"], [10, 5, 1, "", "add_trees_from_request"], [10, 5, 1, "", "callback"], [10, 5, 1, "", "change_selection_name"], [10, 5, 1, "", "copy_style"], [10, 5, 1, "", "deactivate_clade"], [10, 5, 1, "", "deactivate_node"], [10, 5, 1, "", "del_tree"], [10, 5, 1, "", "find_node"], [10, 5, 1, "", "get_active_clade"], [10, 5, 1, "", "get_active_clades"], [10, 5, 1, "", "get_command_search"], [10, 5, 1, "", "get_drawer"], [10, 5, 1, "", "get_eval_search"], [10, 5, 1, "", "get_fields"], [10, 5, 1, "", "get_layouts"], [10, 5, 1, "", "get_layouts_from_getters"], [10, 5, 1, "", "get_newick"], [10, 5, 1, "", "get_nodes_info"], [10, 5, 1, "", "get_parents"], [10, 5, 1, "", "get_parser"], [10, 5, 1, "", "get_search_function"], [10, 5, 1, "", "get_selection_info"], [10, 5, 1, "", "get_selections"], [10, 5, 1, "", "get_stats"], [10, 5, 1, "", "get_tid"], [10, 5, 1, "", "get_topological_search"], [10, 5, 1, "", "get_trees_from_file"], [10, 5, 1, "", "get_trees_from_form"], [10, 5, 1, "", "get_trees_from_nexus_or_newick"], [10, 5, 1, "", "initialize"], [10, 5, 1, "", "initialize_tree_style"], [10, 5, 1, "", "json_error"], [10, 5, 1, "", "load_tree"], [10, 5, 1, "", "load_tree_from_newick"], [10, 5, 1, "", "maintenance"], [10, 5, 1, "", "make_name"], [10, 5, 1, "", "modify_tree_fields"], [10, 5, 1, "", "nice_html"], [10, 5, 1, "", "open_browser_window"], [10, 5, 1, "", "prune_by_selection"], [10, 5, 1, "", "remove_active"], [10, 5, 1, "", "remove_active_clade"], [10, 5, 1, "", "remove_search"], [10, 5, 1, "", "remove_selection"], [10, 5, 1, "", "req_json"], [10, 5, 1, "", "retrieve_layouts"], [10, 5, 1, "", "retrieve_tree"], [10, 5, 1, "", "run_smartview"], [10, 5, 1, "", "safer_eval"], [10, 5, 1, "", "search_to_selection"], [10, 5, 1, "", "sort"], [10, 5, 1, "", "store_active"], [10, 5, 1, "", "store_search"], [10, 5, 1, "", "store_selection"], [10, 5, 1, "", "touch_and_get"], [10, 5, 1, "", "unselect_node"], [10, 5, 1, "", "update_app_available_layouts"], [10, 5, 1, "", "update_layouts"], [10, 5, 1, "", "update_node_props"], [10, 5, 1, "", "update_node_style"], [10, 5, 1, "", "update_selection"]], "ete4.smartview.gui.server.AppTree": [[10, 1, 1, "", "__init__"], [10, 3, 1, "", "active"], [10, 3, 1, "", "exclude_props"], [10, 3, 1, "", "include_props"], [10, 3, 1, "", "initialized"], [10, 3, 1, "", "layouts"], [10, 3, 1, "", "name"], [10, 3, 1, "", "nodestyles"], [10, 3, 1, "", "searches"], [10, 3, 1, "", "selected"], [10, 3, 1, "", "style"], [10, 3, 1, "", "timer"], [10, 3, 1, "", "tree"]], "ete4.smartview.renderer": [[10, 4, 0, "-", "draw_helpers"], [10, 4, 0, "-", "drawer"], [10, 4, 0, "-", "face_positions"], [10, 4, 0, "-", "faces"], [10, 4, 0, "-", "nodestyle"], [10, 4, 0, "-", "treelayout"], [10, 4, 0, "-", "treestyle"]], "ete4.smartview.renderer.draw_helpers": [[10, 0, 1, "", "Box"], [10, 0, 1, "", "Padding"], [10, 5, 1, "", "cartesian"], [10, 5, 1, "", "circumasec"], [10, 5, 1, "", "circumrect"], [10, 5, 1, "", "clip_angles"], [10, 5, 1, "", "draw_arc"], [10, 5, 1, "", "draw_array"], [10, 5, 1, "", "draw_arrow"], [10, 5, 1, "", "draw_circle"], [10, 5, 1, "", "draw_ellipse"], [10, 5, 1, "", "draw_html"], [10, 5, 1, "", "draw_img"], [10, 5, 1, "", "draw_line"], [10, 5, 1, "", "draw_nodebox"], [10, 5, 1, "", "draw_outline"], [10, 5, 1, "", "draw_rect"], [10, 5, 1, "", "draw_rhombus"], [10, 5, 1, "", "draw_slice"], [10, 5, 1, "", "draw_text"], [10, 5, 1, "", "draw_triangle"], [10, 5, 1, "", "first_value"], [10, 5, 1, "", "get_line_type"], [10, 5, 1, "", "get_xs"], [10, 5, 1, "", "get_ys"], [10, 5, 1, "", "intersects_angles"], [10, 5, 1, "", "intersects_box"], [10, 5, 1, "", "intersects_segment"], [10, 5, 1, "", "split_thru_negative_xaxis"], [10, 5, 1, "", "summary"]], "ete4.smartview.renderer.draw_helpers.Box": [[10, 3, 1, "", "dx"], [10, 3, 1, "", "dy"], [10, 3, 1, "", "x"], [10, 3, 1, "", "y"]], "ete4.smartview.renderer.draw_helpers.Padding": [[10, 3, 1, "", "x"], [10, 3, 1, "", "y"]], "ete4.smartview.renderer.drawer": [[10, 0, 1, "", "Active"], [10, 0, 1, "", "Drawer"], [10, 0, 1, "", "DrawerAlignCircFaces"], [10, 0, 1, "", "DrawerAlignRectFaces"], [10, 0, 1, "", "DrawerCirc"], [10, 0, 1, "", "DrawerCircFaces"], [10, 0, 1, "", "DrawerRect"], [10, 0, 1, "", "DrawerRectFaces"], [10, 0, 1, "", "Size"], [10, 0, 1, "", "TreeActive"], [10, 5, 1, "", "dist"], [10, 5, 1, "", "drawn_size"], [10, 5, 1, "", "get_asec"], [10, 5, 1, "", "get_drawers"], [10, 5, 1, "", "get_empty_active"], [10, 5, 1, "", "get_rect"], [10, 5, 1, "", "make_box"], [10, 5, 1, "", "safe_string"], [10, 5, 1, "", "stack"]], "ete4.smartview.renderer.drawer.Active": [[10, 3, 1, "", "parents"], [10, 3, 1, "", "results"]], "ete4.smartview.renderer.drawer.Drawer": [[10, 3, 1, "", "COLLAPSE_SIZE"], [10, 3, 1, "", "MIN_SIZE"], [10, 3, 1, "", "NPANELS"], [10, 3, 1, "", "TYPE"], [10, 1, 1, "", "__init__"], [10, 1, 1, "", "draw"], [10, 1, 1, "", "draw_aligned_headers"], [10, 1, 1, "", "draw_collapsed"], [10, 1, 1, "", "draw_content"], [10, 1, 1, "", "draw_node"], [10, 1, 1, "", "flush_outline"], [10, 1, 1, "", "get_active_children"], [10, 1, 1, "", "get_collapsed_node"], [10, 1, 1, "", "get_outline"], [10, 1, 1, "", "get_popup_props"], [10, 1, 1, "", "get_selected_children"], [10, 1, 1, "", "is_fully_collapsed"], [10, 1, 1, "", "on_first_visit"], [10, 1, 1, "", "on_last_visit"]], "ete4.smartview.renderer.drawer.DrawerAlignCircFaces": [[10, 3, 1, "", "NPANELS"]], "ete4.smartview.renderer.drawer.DrawerAlignRectFaces": [[10, 3, 1, "", "NPANELS"]], "ete4.smartview.renderer.drawer.DrawerCirc": [[10, 3, 1, "", "TYPE"], [10, 1, 1, "", "__init__"], [10, 1, 1, "", "content_size"], [10, 1, 1, "", "draw_childrenline"], [10, 1, 1, "", "draw_collapsed"], [10, 1, 1, "", "draw_lengthline"], [10, 1, 1, "", "draw_nodebox"], [10, 1, 1, "", "draw_nodedot"], [10, 1, 1, "", "flush_outline"], [10, 1, 1, "", "get_box"], [10, 1, 1, "", "in_viewport"], [10, 1, 1, "", "is_small"], [10, 1, 1, "", "node_size"]], "ete4.smartview.renderer.drawer.DrawerCircFaces": [[10, 1, 1, "", "draw_collapsed"], [10, 1, 1, "", "draw_node"]], "ete4.smartview.renderer.drawer.DrawerRect": [[10, 3, 1, "", "TYPE"], [10, 1, 1, "", "content_size"], [10, 1, 1, "", "draw_childrenline"], [10, 1, 1, "", "draw_collapsed"], [10, 1, 1, "", "draw_lengthline"], [10, 1, 1, "", "draw_nodebox"], [10, 1, 1, "", "draw_nodedot"], [10, 1, 1, "", "get_box"], [10, 1, 1, "", "in_viewport"], [10, 1, 1, "", "is_small"], [10, 1, 1, "", "node_size"]], "ete4.smartview.renderer.drawer.DrawerRectFaces": [[10, 1, 1, "", "draw_collapsed"], [10, 1, 1, "", "draw_node"]], "ete4.smartview.renderer.drawer.Size": [[10, 3, 1, "", "dx"], [10, 3, 1, "", "dy"]], "ete4.smartview.renderer.drawer.TreeActive": [[10, 3, 1, "", "clades"], [10, 3, 1, "", "nodes"]], "ete4.smartview.renderer.face_positions": [[10, 0, 1, "", "AlignedGrid"], [10, 0, 1, "", "Grid"], [10, 5, 1, "", "make_faces"]], "ete4.smartview.renderer.face_positions.AlignedGrid": [[10, 1, 1, "", "__init__"]], "ete4.smartview.renderer.face_positions.Grid": [[10, 1, 1, "", "add_face"]], "ete4.smartview.renderer.faces": [[10, 0, 1, "", "AlignLinkFace"], [10, 0, 1, "", "AlignmentFace"], [10, 0, 1, "", "ArrowFace"], [10, 0, 1, "", "AttrFace"], [10, 0, 1, "", "CircleFace"], [10, 0, 1, "", "Face"], [10, 0, 1, "", "HTMLFace"], [10, 0, 1, "", "ImgFace"], [10, 0, 1, "", "LegendFace"], [10, 0, 1, "", "OutlineFace"], [10, 0, 1, "", "PieChartFace"], [10, 0, 1, "", "RectFace"], [10, 0, 1, "", "ScaleFace"], [10, 0, 1, "", "SelectedCircleFace"], [10, 0, 1, "", "SelectedFace"], [10, 0, 1, "", "SelectedRectFace"], [10, 0, 1, "", "SeqFace"], [10, 0, 1, "", "SeqMotifFace"], [10, 0, 1, "", "StackedBarFace"], [10, 0, 1, "", "TextFace"]], "ete4.smartview.renderer.faces.AlignLinkFace": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "compute_bounding_box"], [10, 1, 1, "", "draw"], [10, 1, 1, "", "fits"], [10, 1, 1, "", "get_box"]], "ete4.smartview.renderer.faces.AlignmentFace": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "build_blocks"], [10, 1, 1, "", "compute_bounding_box"], [10, 1, 1, "", "draw"], [10, 1, 1, "", "get_seq"]], "ete4.smartview.renderer.faces.ArrowFace": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "draw"], [10, 2, 1, "", "orientation"]], "ete4.smartview.renderer.faces.AttrFace": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "get_content"]], "ete4.smartview.renderer.faces.CircleFace": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "compute_bounding_box"], [10, 1, 1, "", "draw"]], "ete4.smartview.renderer.faces.Face": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "compute_bounding_box"], [10, 1, 1, "", "compute_fsize"], [10, 1, 1, "", "fits"], [10, 1, 1, "", "get_box"], [10, 1, 1, "", "get_content"], [10, 1, 1, "", "in_aligned_viewport"]], "ete4.smartview.renderer.faces.HTMLFace": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "draw"]], "ete4.smartview.renderer.faces.ImgFace": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "draw"]], "ete4.smartview.renderer.faces.LegendFace": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "draw"]], "ete4.smartview.renderer.faces.OutlineFace": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "compute_bounding_box"], [10, 1, 1, "", "draw"], [10, 1, 1, "", "fits"], [10, 1, 1, "", "get_box"]], "ete4.smartview.renderer.faces.PieChartFace": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "compute_pie"], [10, 1, 1, "", "draw"]], "ete4.smartview.renderer.faces.RectFace": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "compute_bounding_box"], [10, 1, 1, "", "draw"]], "ete4.smartview.renderer.faces.ScaleFace": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "compute_bounding_box"], [10, 1, 1, "", "draw"]], "ete4.smartview.renderer.faces.SelectedCircleFace": [[10, 1, 1, "", "__init__"]], "ete4.smartview.renderer.faces.SelectedFace": [[10, 1, 1, "", "__init__"]], "ete4.smartview.renderer.faces.SelectedRectFace": [[10, 1, 1, "", "__init__"]], "ete4.smartview.renderer.faces.SeqFace": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "compute_bounding_box"], [10, 1, 1, "", "draw"]], "ete4.smartview.renderer.faces.SeqMotifFace": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "build_regions"], [10, 1, 1, "", "compute_bounding_box"], [10, 1, 1, "", "draw"], [10, 1, 1, "", "fits"]], "ete4.smartview.renderer.faces.StackedBarFace": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "draw"]], "ete4.smartview.renderer.faces.TextFace": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "compute_bounding_box"], [10, 1, 1, "", "draw"], [10, 1, 1, "", "fits"]], "ete4.smartview.renderer.layouts": [[10, 4, 0, "-", "context_layouts"], [10, 4, 0, "-", "default_layouts"], [10, 4, 0, "-", "domain_layouts"], [10, 4, 0, "-", "eggnog6_layouts"], [10, 4, 0, "-", "etecompare_layouts"], [10, 4, 0, "-", "evocell_layouts"], [10, 4, 0, "-", "evol_events_layouts"], [10, 4, 0, "-", "ncbi_taxonomy_layouts"], [10, 4, 0, "-", "phylocloud_egg5_layouts"], [10, 4, 0, "-", "seq_layouts"], [10, 4, 0, "-", "spongilla_layouts"], [10, 4, 0, "-", "staple_layouts"]], "ete4.smartview.renderer.layouts.context_layouts": [[10, 0, 1, "", "LayoutGenomicContext"]], "ete4.smartview.renderer.layouts.context_layouts.LayoutGenomicContext": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "get_context"], [10, 1, 1, "", "get_tooltip"], [10, 1, 1, "", "set_node_style"], [10, 1, 1, "", "set_tree_style"]], "ete4.smartview.renderer.layouts.default_layouts": [[10, 0, 1, "", "LayoutBranchLength"], [10, 0, 1, "", "LayoutBranchSupport"], [10, 0, 1, "", "LayoutLeafName"], [10, 0, 1, "", "LayoutNumberLeaves"], [10, 0, 1, "", "LayoutOutline"]], "ete4.smartview.renderer.layouts.default_layouts.LayoutBranchLength": [[10, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.default_layouts.LayoutBranchSupport": [[10, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.default_layouts.LayoutLeafName": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.default_layouts.LayoutNumberLeaves": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.default_layouts.LayoutOutline": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.domain_layouts": [[10, 0, 1, "", "LayoutPfamDomains"], [10, 0, 1, "", "LayoutSmartDomains"]], "ete4.smartview.renderer.layouts.domain_layouts.LayoutPfamDomains": [[10, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.domain_layouts.LayoutSmartDomains": [[10, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.eggnog6_layouts": [[10, 0, 1, "", "LayoutBestName"], [10, 0, 1, "", "LayoutBigg"], [10, 0, 1, "", "LayoutCard"], [10, 0, 1, "", "LayoutCazy"], [10, 0, 1, "", "LayoutEvolEvents"], [10, 0, 1, "", "LayoutKeggEnzyme"], [10, 0, 1, "", "LayoutKeggModule"], [10, 0, 1, "", "LayoutKeggNumber"], [10, 0, 1, "", "LayoutKeggPathway"], [10, 0, 1, "", "LayoutLastCommonAncestor"], [10, 0, 1, "", "LayoutPdb"], [10, 0, 1, "", "LayoutPfamDomains"], [10, 0, 1, "", "LayoutProteinName"], [10, 0, 1, "", "LayoutScientificName"], [10, 0, 1, "", "LayoutSmartDomains"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutBestName": [[10, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutBigg": [[10, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutCard": [[10, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutCazy": [[10, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutEvolEvents": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "set_node_style"], [10, 1, 1, "", "set_tree_style"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutKeggEnzyme": [[10, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutKeggModule": [[10, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutKeggNumber": [[10, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutKeggPathway": [[10, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutLastCommonAncestor": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "get_color"], [10, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutPdb": [[10, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutPfamDomains": [[10, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutProteinName": [[10, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutScientificName": [[10, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutSmartDomains": [[10, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.etecompare_layouts": [[10, 0, 1, "", "LayoutEteDiffDistance"]], "ete4.smartview.renderer.layouts.etecompare_layouts.LayoutEteDiffDistance": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.evocell_layouts": [[10, 0, 1, "", "LayoutHumanOGs"], [10, 0, 1, "", "LayoutUCSC"], [10, 0, 1, "", "LayoutUCSCtrans"]], "ete4.smartview.renderer.layouts.evocell_layouts.LayoutHumanOGs": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.evocell_layouts.LayoutUCSC": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.evocell_layouts.LayoutUCSCtrans": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.evol_events_layouts": [[10, 0, 1, "", "LayoutEvolEvents"]], "ete4.smartview.renderer.layouts.evol_events_layouts.LayoutEvolEvents": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "set_node_style"], [10, 1, 1, "", "set_tree_style"]], "ete4.smartview.renderer.layouts.ncbi_taxonomy_layouts": [[10, 0, 1, "", "LayoutLastCommonAncestor"]], "ete4.smartview.renderer.layouts.ncbi_taxonomy_layouts.LayoutLastCommonAncestor": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "get_color"], [10, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.phylocloud_egg5_layouts": [[10, 5, 1, "", "get_layout_evoltype"], [10, 5, 1, "", "get_layout_gnames"], [10, 5, 1, "", "get_layout_lca_rects"], [10, 5, 1, "", "get_layout_ogs_egg5"], [10, 5, 1, "", "get_layout_sciname"]], "ete4.smartview.renderer.layouts.seq_layouts": [[10, 0, 1, "", "LayoutAlignment"]], "ete4.smartview.renderer.layouts.seq_layouts.LayoutAlignment": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "get_seq"], [10, 1, 1, "", "set_node_style"], [10, 1, 1, "", "set_tree_style"]], "ete4.smartview.renderer.layouts.spongilla_layouts": [[10, 0, 1, "", "LayoutAutoName"], [10, 0, 1, "", "LayoutCuratedName"], [10, 0, 1, "", "LayoutEukOgs"], [10, 0, 1, "", "LayoutPreferredName"], [10, 0, 1, "", "LayoutSciName"], [10, 0, 1, "", "LayoutSeeds"]], "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutAutoName": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutCuratedName": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutEukOgs": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutPreferredName": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutSciName": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutSeeds": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.staple_layouts": [[10, 0, 1, "", "LayoutBarplot"]], "ete4.smartview.renderer.layouts.staple_layouts.LayoutBarplot": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "set_node_style"], [10, 1, 1, "", "set_tree_style"]], "ete4.smartview.renderer.nodestyle": [[10, 0, 1, "", "NodeStyle"]], "ete4.smartview.renderer.nodestyle.NodeStyle": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "init"]], "ete4.smartview.renderer.treelayout": [[10, 0, 1, "", "TreeLayout"], [10, 5, 1, "", "cased_name"]], "ete4.smartview.renderer.treelayout.TreeLayout": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "set_node_style"], [10, 1, 1, "", "set_tree_style"]], "ete4.smartview.renderer.treestyle": [[10, 0, 1, "", "TreeStyle"]], "ete4.smartview.renderer.treestyle.TreeStyle": [[10, 1, 1, "", "__init__"], [10, 2, 1, "", "active_face"], [10, 2, 1, "", "active_face_pos"], [10, 1, 1, "", "add_legend"], [10, 2, 1, "", "aligned_panel_footer"], [10, 2, 1, "", "aligned_panel_header"], [10, 1, 1, "", "get_legend"], [10, 2, 1, "", "selected_face"], [10, 2, 1, "", "selected_face_pos"]], "": [[12, 4, 0, "-", "treeview"]]}, "objtypes": {"0": "py:class", "1": "py:method", "2": "py:property", "3": "py:attribute", "4": "py:module", "5": "py:function", "6": "py:exception"}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "method", "Python method"], "2": ["py", "property", "Python property"], "3": ["py", "attribute", "Python attribute"], "4": ["py", "module", "Python module"], "5": ["py", "function", "Python function"], "6": ["py", "exception", "Python exception"]}, "titleterms": {"about": 0, "highlight": 0, "tool": 0, "us": [0, 1, 16], "et": [0, 1, 2, 17], "relat": 0, "link": [0, 15], "resourc": 0, "frequent": 1, "ask": 1, "question": 1, "faq": 1, "content": [1, 2, 10, 12, 14, 15, 16, 17], "gener": 1, "how": [1, 17], "do": 1, "i": 1, "tree": [1, 6, 8, 11, 14, 15, 16, 17], "brows": [1, 17], "find": [1, 17], "leaf": [1, 14], "its": 1, "name": [1, 14], "visit": 1, "all": 1, "node": [1, 14, 15, 17], "within": [1, 14, 17], "can": 1, "control": [1, 15], "order": 1, "which": 1, "ar": 1, "read": [1, 17], "write": [1, 17], "load": 1, "intern": 1, "support": [1, 14], "export": 1, "annot": [1, 16, 17], "newick": [1, 7, 17], "format": 1, "visual": [1, 14, 15], "draw": [1, 10, 14], "circular": [1, 14], "imag": [1, 14], "svg": 1, "veri": 1, "unbalanc": 1, "branch": [1, 14, 17], "improv": 1, "welcom": 2, "": [2, 17], "document": 2, "indic": 2, "tabl": 2, "refer": 3, "guid": 3, "cluster": 4, "ncbitaxa": 5, "oper": [6, 17], "parser": 7, "nexu": 7, "phylogenet": [8, 14, 15], "multipl": [9, 15], "sequenc": [9, 14, 15], "align": [9, 15], "seqgroup": 9, "smartview": 10, "web": 10, "graphic": [10, 12], "server": 10, "render": [10, 14], "drawer": 10, "helper": 10, "face": [10, 12, 14], "posit": [10, 14], "nodestyl": [10, 12], "treelayout": 10, "treestyl": [10, 12], "layout": [10, 14], "context": 10, "default": 10, "domain": [10, 14], "eggnog6": 10, "etecompar": 10, "evocel": 10, "evol_ev": 10, "ncbi_taxonomi": 10, "phylocloud_egg5": 10, "seq": 10, "spongilla": 10, "stapl": 10, "main": 11, "class": 11, "treeview": 12, "qt": 12, "tutori": 13, "programm": 14, "overview": [14, 15, 16], "interact": 14, "custom": [14, 15, 17], "aspect": 14, "style": 14, "show": 14, "length": 14, "chang": 14, "scale": 14, "zoom": 14, "x": 14, "separ": 14, "between": [14, 16, 17], "y": 14, "rotat": 14, "180": 14, "degre": 14, "add": 14, "legend": 14, "titl": 14, "properti": [14, 17], "function": [14, 17], "combin": 14, "fix": 14, "background": 14, "img": 14, "bubbl": 14, "map": 14, "creat": [14, 17], "your": 14, "ad": 15, "taxonom": 15, "inform": [15, 16], "automat": [15, 16], "speci": [15, 16], "info": 15, "manual": 15, "detect": 15, "evolutionari": 15, "event": 15, "overlap": 15, "so": 15, "algorithm": 15, "reconcili": 15, "A": 15, "closer": 15, "look": 15, "object": 15, "rel": [15, 17], "date": 15, "implement": 15, "root": [15, 17], "outgroup": [15, 17], "work": [15, 17], "duplic": [15, 17], "gene": 15, "famili": 15, "treeko": 15, "split": 15, "collaps": [15, 17], "specif": 15, "connect": 16, "taxonomi": 16, "databas": 16, "differ": 16, "ncbi": 16, "gtdb": 16, "ete4": 16, "set": 16, "up": 16, "local": 16, "copi": [16, 17], "get": [16, 17], "taxid": 16, "descend": [16, 17], "taxa": 16, "topologi": [16, 17], "structur": 17, "understand": 17, "basic": 17, "attribut": 17, "The": 17, "mean": 17, "unroot": 17, "travers": 17, "leav": 17, "advanc": 17, "while": 17, "iter": 17, "list": 17, "search_al": 17, "match": 17, "given": 17, "criteria": 17, "search": 17, "first": 17, "common": 17, "ancestor": 17, "shortcut": 17, "check": 17, "monophyli": 17, "cach": 17, "faster": 17, "lookup": 17, "compar": 17, "distanc": 17, "robinson": 17, "fould": 17, "modifi": 17, "from": 17, "scratch": 17, "delet": 17, "elimin": 17, "remov": 17, "detach": 17, "prune": 17, "concaten": 17, "solv": 17, "multifurc": 17, "midpoint": 17}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1, "sphinx": 60}, "alltitles": {"About": [[0, "about"]], "Highlighted Tools Using ETE": [[0, "highlighted-tools-using-ete"]], "Related Links and Resources": [[0, "related-links-and-resources"]], "Frequently Asked Questions (FAQs)": [[1, "frequently-asked-questions-faqs"]], "Contents": [[1, "contents"], [10, "contents"], [12, "contents"], [14, "contents"], [15, "contents"], [16, "contents"], [17, "contents"]], "General": [[1, "general"]], "How do I use ETE?": [[1, "how-do-i-use-ete"]], "Tree Browsing": [[1, "tree-browsing"]], "How do I find a leaf by its name?": [[1, "how-do-i-find-a-leaf-by-its-name"]], "How do I visit all nodes within a tree?": [[1, "how-do-i-visit-all-nodes-within-a-tree"]], "Can I control the order in which nodes are visited?": [[1, "can-i-control-the-order-in-which-nodes-are-visited"]], "Reading and writing": [[1, "reading-and-writing"]], "How do I load a tree with internal node names or support?": [[1, "how-do-i-load-a-tree-with-internal-node-names-or-support"]], "How do I export tree node annotations using the Newick format?": [[1, "how-do-i-export-tree-node-annotations-using-the-newick-format"]], "Tree visualization": [[1, "tree-visualization"]], "Can ETE draw circular trees?": [[1, "can-ete-draw-circular-trees"]], "How do I export tree images as SVG?": [[1, "how-do-i-export-tree-images-as-svg"]], "How do I visualize internal node names?": [[1, "how-do-i-visualize-internal-node-names"]], "Can the visualization of trees with very unbalanced tree branches be improved?": [[1, "can-the-visualization-of-trees-with-very-unbalanced-tree-branches-be-improved"]], "Welcome to ETE\u2019s documentation!": [[2, "welcome-to-ete-s-documentation"]], "Contents:": [[2, null]], "Indices and tables": [[2, "indices-and-tables"]], "Reference Guide": [[3, "reference-guide"]], "Clustering": [[4, "module-ete4.clustering.clustertree"]], "NCBITaxa": [[5, "module-ete4.ncbi_taxonomy.ncbiquery"]], "Tree operations": [[6, "module-ete4.core.operations"]], "Parsers": [[7, "parsers"]], "Newick": [[7, "module-ete4.parser.newick"]], "Nexus": [[7, "module-ete4.parser.nexus"]], "Phylogenetic trees": [[8, "phylogenetic-trees"], [15, "phylogenetic-trees"]], "Multiple Sequence Alignments (SeqGroup)": [[9, "module-ete4.core.seqgroup"]], "Smartview (web graphics)": [[10, "smartview-web-graphics"]], "Server": [[10, "module-ete4.smartview.gui.server"]], "Renderer": [[10, "renderer"]], "Drawer": [[10, "module-ete4.smartview.renderer.drawer"]], "Draw helpers": [[10, "module-ete4.smartview.renderer.draw_helpers"]], "Faces": [[10, "module-ete4.smartview.renderer.faces"], [12, "faces"]], "Face positions": [[10, "module-ete4.smartview.renderer.face_positions"]], "NodeStyle": [[10, "module-ete4.smartview.renderer.nodestyle"], [12, "nodestyle"]], "TreeLayout": [[10, "module-ete4.smartview.renderer.treelayout"]], "TreeStyle": [[10, "module-ete4.smartview.renderer.treestyle"], [12, "treestyle"]], "Layouts": [[10, "layouts"]], "context": [[10, "module-ete4.smartview.renderer.layouts.context_layouts"]], "default": [[10, "module-ete4.smartview.renderer.layouts.default_layouts"]], "domain": [[10, "module-ete4.smartview.renderer.layouts.domain_layouts"]], "eggnog6": [[10, "module-ete4.smartview.renderer.layouts.eggnog6_layouts"]], "etecompare": [[10, "module-ete4.smartview.renderer.layouts.etecompare_layouts"]], "evocell": [[10, "module-ete4.smartview.renderer.layouts.evocell_layouts"]], "evol_events": [[10, "module-ete4.smartview.renderer.layouts.evol_events_layouts"]], "ncbi_taxonomy": [[10, "module-ete4.smartview.renderer.layouts.ncbi_taxonomy_layouts"]], "phylocloud_egg5": [[10, "module-ete4.smartview.renderer.layouts.phylocloud_egg5_layouts"]], "seq": [[10, "module-ete4.smartview.renderer.layouts.seq_layouts"]], "spongilla": [[10, "module-ete4.smartview.renderer.layouts.spongilla_layouts"]], "staple": [[10, "module-ete4.smartview.renderer.layouts.staple_layouts"]], "Tree (main class)": [[11, "tree-main-class"]], "Treeview (qt graphics)": [[12, "treeview-qt-graphics"]], "Tutorial": [[13, "tutorial"]], "Programmable tree drawing": [[14, "programmable-tree-drawing"]], "Overview": [[14, "overview"], [15, "overview"], [16, "overview"]], "Interactive visualization of trees": [[14, "interactive-visualization-of-trees"]], "Rendering trees as images": [[14, "rendering-trees-as-images"]], "Customizing the aspect of trees": [[14, "customizing-the-aspect-of-trees"]], "Tree style": [[14, "tree-style"]], "Show leaf node names, branch length and branch support": [[14, "show-leaf-node-names-branch-length-and-branch-support"]], "Change branch length scale (zoom in x)": [[14, "change-branch-length-scale-zoom-in-x"]], "Change branch separation between nodes (zoom in y)": [[14, "change-branch-separation-between-nodes-zoom-in-y"]], "Rotate a tree": [[14, "rotate-a-tree"]], "Circular tree in 180 degrees": [[14, "circular-tree-in-180-degrees"]], "Add legend and title": [[14, "add-legend-and-title"]], "Node style": [[14, "node-style"]], "Node faces": [[14, "node-faces"]], "Faces position": [[14, "faces-position"]], "Face properties": [[14, "face-properties"]], "Layout functions": [[14, "layout-functions"]], "Combining styles, faces and layouts": [[14, "combining-styles-faces-and-layouts"]], "Fixed node styles": [[14, "fixed-node-styles"]], "Node backgrounds": [[14, "node-backgrounds"]], "Img faces": [[14, "img-faces"]], "Bubble tree maps": [[14, "bubble-tree-maps"]], "Trees within trees": [[14, "trees-within-trees"]], "Phylogenetic trees and sequence domains": [[14, "phylogenetic-trees-and-sequence-domains"]], "Creating your custom interactive faces": [[14, "creating-your-custom-interactive-faces"]], "Linking phylogenetic trees with multiple sequence alignments": [[15, "linking-phylogenetic-trees-with-multiple-sequence-alignments"]], "Visualization of phylogenetic trees": [[15, "visualization-of-phylogenetic-trees"]], "Adding taxonomic information": [[15, "adding-taxonomic-information"]], "Automatic control of species info": [[15, "automatic-control-of-species-info"]], "Automatic (custom) control of the species info": [[15, "automatic-custom-control-of-the-species-info"]], "Manual control of the species info": [[15, "manual-control-of-the-species-info"]], "Detecting evolutionary events": [[15, "detecting-evolutionary-events"]], "Species Overlap (SO) algorithm": [[15, "species-overlap-so-algorithm"]], "Tree reconciliation algorithm": [[15, "tree-reconciliation-algorithm"]], "A closer look to the evolutionary event object": [[15, "a-closer-look-to-the-evolutionary-event-object"]], "Relative dating of phylogenetic nodes": [[15, "relative-dating-of-phylogenetic-nodes"]], "Implementation": [[15, "implementation"]], "Automatic rooting (outgroup detection)": [[15, "automatic-rooting-outgroup-detection"]], "Working with duplicated gene families": [[15, "working-with-duplicated-gene-families"]], "TreeKO (splitting gene trees into species trees)": [[15, "treeko-splitting-gene-trees-into-species-trees"]], "Splitting gene trees by duplication events": [[15, "splitting-gene-trees-by-duplication-events"]], "Collapse species specific duplications": [[15, "collapse-species-specific-duplications"]], "Connecting with Taxonomy Databases": [[16, "connecting-with-taxonomy-databases"]], "Differences between NCBI and GTDB taxonomies in ETE4": [[16, "differences-between-ncbi-and-gtdb-taxonomies-in-ete4"]], "Setting up local copies of the NCBI and GTDB taxonomy databases": [[16, "setting-up-local-copies-of-the-ncbi-and-gtdb-taxonomy-databases"]], "Getting taxid information": [[16, "getting-taxid-information"]], "NCBI taxonomy": [[16, "ncbi-taxonomy"]], "GTDB taxonomy": [[16, "gtdb-taxonomy"]], "Getting descendant taxa": [[16, "getting-descendant-taxa"]], "Getting species tree topology": [[16, "getting-species-tree-topology"]], "Automatic tree annotation using NCBI/GTDB taxonomy": [[16, "automatic-tree-annotation-using-ncbi-gtdb-taxonomy"]], "Working with the Tree structure": [[17, "working-with-the-tree-structure"]], "Trees": [[17, "trees"]], "Reading and writing newick trees": [[17, "reading-and-writing-newick-trees"]], "Creating a tree": [[17, "creating-a-tree"]], "Reading newick trees": [[17, "reading-newick-trees"]], "Writing newick trees": [[17, "writing-newick-trees"]], "Understanding ETE trees": [[17, "understanding-ete-trees"]], "Basic tree attributes": [[17, "basic-tree-attributes"]], "The meaning of the \u201croot node\u201d in unrooted trees": [[17, "the-meaning-of-the-root-node-in-unrooted-trees"]], "Browsing trees (traversing)": [[17, "browsing-trees-traversing"]], "Getting leaves, descendants and node\u2019s relatives": [[17, "getting-leaves-descendants-and-node-s-relatives"]], "Traversing (browsing) trees": [[17, "traversing-browsing-trees"]], "Advanced traversing": [[17, "advanced-traversing"]], "Collapsing nodes while traversing": [[17, "collapsing-nodes-while-traversing"]], "Iterators or lists?": [[17, "iterators-or-lists"]], "Finding nodes by their properties": [[17, "finding-nodes-by-their-properties"]], "Search_all nodes matching a given criteria": [[17, "search-all-nodes-matching-a-given-criteria"]], "Search nodes matching a given criteria (iteration)": [[17, "search-nodes-matching-a-given-criteria-iteration"]], "Find the first common ancestor": [[17, "find-the-first-common-ancestor"]], "Custom searching functions": [[17, "custom-searching-functions"]], "Shortcuts": [[17, "shortcuts"]], "Checking the monophyly of properties within a tree": [[17, "checking-the-monophyly-of-properties-within-a-tree"]], "Caching tree content for faster lookup operations": [[17, "caching-tree-content-for-faster-lookup-operations"]], "Node annotation": [[17, "node-annotation"]], "Comparing trees": [[17, "comparing-trees"]], "Distances between trees": [[17, "distances-between-trees"]], "Robinson-Foulds distance": [[17, "robinson-foulds-distance"]], "Modifying tree topology": [[17, "modifying-tree-topology"]], "Creating trees from scratch": [[17, "creating-trees-from-scratch"]], "How to delete/eliminate or remove/detach nodes": [[17, "how-to-delete-eliminate-or-remove-detach-nodes"]], "Pruning trees": [[17, "pruning-trees"]], "Concatenating trees": [[17, "concatenating-trees"]], "Copying (duplicating) trees": [[17, "copying-duplicating-trees"]], "Solving multifurcations": [[17, "solving-multifurcations"]], "Tree rooting": [[17, "tree-rooting"]], "Working with branch distances": [[17, "working-with-branch-distances"]], "Getting distances between nodes": [[17, "getting-distances-between-nodes"]], "Getting midpoint outgroup": [[17, "getting-midpoint-outgroup"]]}, "indexentries": {"clustertree (class in ete4.clustering.clustertree)": [[4, "ete4.clustering.clustertree.ClusterTree"]], "__init__() (clustertree method)": [[4, "ete4.clustering.clustertree.ClusterTree.__init__"]], "deviation (clustertree property)": [[4, "ete4.clustering.clustertree.ClusterTree.deviation"]], "ete4.clustering.clustertree": [[4, "module-ete4.clustering.clustertree"]], "get_dunn() (clustertree method)": [[4, "ete4.clustering.clustertree.ClusterTree.get_dunn"]], "get_silhouette() (clustertree method)": [[4, "ete4.clustering.clustertree.ClusterTree.get_silhouette"]], "intercluster_dist (clustertree property)": [[4, "ete4.clustering.clustertree.ClusterTree.intercluster_dist"]], "intracluster_dist (clustertree property)": [[4, "ete4.clustering.clustertree.ClusterTree.intracluster_dist"]], "leaf_profiles() (clustertree method)": [[4, "ete4.clustering.clustertree.ClusterTree.leaf_profiles"]], "link_to_arraytable() (clustertree method)": [[4, "ete4.clustering.clustertree.ClusterTree.link_to_arraytable"]], "module": [[4, "module-ete4.clustering.clustertree"], [5, "module-ete4.ncbi_taxonomy.ncbiquery"], [6, "module-ete4.core.operations"], [7, "module-ete4.parser.newick"], [7, "module-ete4.parser.nexus"], [9, "module-ete4.core.seqgroup"], [10, "module-ete4.smartview.gui.server"], [10, "module-ete4.smartview.renderer.draw_helpers"], [10, "module-ete4.smartview.renderer.drawer"], [10, "module-ete4.smartview.renderer.face_positions"], [10, "module-ete4.smartview.renderer.faces"], [10, "module-ete4.smartview.renderer.layouts.context_layouts"], [10, "module-ete4.smartview.renderer.layouts.default_layouts"], [10, "module-ete4.smartview.renderer.layouts.domain_layouts"], [10, "module-ete4.smartview.renderer.layouts.eggnog6_layouts"], [10, "module-ete4.smartview.renderer.layouts.etecompare_layouts"], [10, "module-ete4.smartview.renderer.layouts.evocell_layouts"], [10, "module-ete4.smartview.renderer.layouts.evol_events_layouts"], [10, "module-ete4.smartview.renderer.layouts.ncbi_taxonomy_layouts"], [10, "module-ete4.smartview.renderer.layouts.phylocloud_egg5_layouts"], [10, "module-ete4.smartview.renderer.layouts.seq_layouts"], [10, "module-ete4.smartview.renderer.layouts.spongilla_layouts"], [10, "module-ete4.smartview.renderer.layouts.staple_layouts"], [10, "module-ete4.smartview.renderer.nodestyle"], [10, "module-ete4.smartview.renderer.treelayout"], [10, "module-ete4.smartview.renderer.treestyle"], [12, "module-treeview"]], "profile (clustertree property)": [[4, "ete4.clustering.clustertree.ClusterTree.profile"]], "set_distance_function() (clustertree method)": [[4, "ete4.clustering.clustertree.ClusterTree.set_distance_function"]], "silhouette (clustertree property)": [[4, "ete4.clustering.clustertree.ClusterTree.silhouette"]], "ncbitaxa (class in ete4.ncbi_taxonomy.ncbiquery)": [[5, "ete4.ncbi_taxonomy.ncbiquery.NCBITaxa"]], "__init__() (ncbitaxa method)": [[5, "ete4.ncbi_taxonomy.ncbiquery.NCBITaxa.__init__"]], "annotate_tree() (ncbitaxa method)": [[5, "ete4.ncbi_taxonomy.ncbiquery.NCBITaxa.annotate_tree"]], "ete4.ncbi_taxonomy.ncbiquery": [[5, "module-ete4.ncbi_taxonomy.ncbiquery"]], "get_broken_branches() (ncbitaxa method)": [[5, "ete4.ncbi_taxonomy.ncbiquery.NCBITaxa.get_broken_branches"]], "get_common_names() (ncbitaxa method)": [[5, "ete4.ncbi_taxonomy.ncbiquery.NCBITaxa.get_common_names"]], "get_descendant_taxa() (ncbitaxa method)": [[5, "ete4.ncbi_taxonomy.ncbiquery.NCBITaxa.get_descendant_taxa"]], "get_fuzzy_name_translation() (ncbitaxa method)": [[5, "ete4.ncbi_taxonomy.ncbiquery.NCBITaxa.get_fuzzy_name_translation"]], "get_lineage() (ncbitaxa method)": [[5, "ete4.ncbi_taxonomy.ncbiquery.NCBITaxa.get_lineage"]], "get_lineage_translator() (ncbitaxa method)": [[5, "ete4.ncbi_taxonomy.ncbiquery.NCBITaxa.get_lineage_translator"]], "get_name_translator() (ncbitaxa method)": [[5, "ete4.ncbi_taxonomy.ncbiquery.NCBITaxa.get_name_translator"]], "get_rank() (ncbitaxa method)": [[5, "ete4.ncbi_taxonomy.ncbiquery.NCBITaxa.get_rank"]], "get_taxid_translator() (ncbitaxa method)": [[5, "ete4.ncbi_taxonomy.ncbiquery.NCBITaxa.get_taxid_translator"]], "get_topology() (ncbitaxa method)": [[5, "ete4.ncbi_taxonomy.ncbiquery.NCBITaxa.get_topology"]], "is_taxadb_up_to_date() (in module ete4.ncbi_taxonomy.ncbiquery)": [[5, "ete4.ncbi_taxonomy.ncbiquery.is_taxadb_up_to_date"]], "translate_to_names() (ncbitaxa method)": [[5, "ete4.ncbi_taxonomy.ncbiquery.NCBITaxa.translate_to_names"]], "update_taxonomy_database() (ncbitaxa method)": [[5, "ete4.ncbi_taxonomy.ncbiquery.NCBITaxa.update_taxonomy_database"]], "walker (class in ete4.core.operations)": [[6, "ete4.core.operations.Walker"]], "add_next_branch() (walker method)": [[6, "ete4.core.operations.Walker.add_next_branch"]], "assert_root_consistency() (in module ete4.core.operations)": [[6, "ete4.core.operations.assert_root_consistency"]], "common_ancestor() (in module ete4.core.operations)": [[6, "ete4.core.operations.common_ancestor"]], "ete4.core.operations": [[6, "module-ete4.core.operations"]], "first_visit (walker property)": [[6, "ete4.core.operations.Walker.first_visit"]], "go_back() (walker method)": [[6, "ete4.core.operations.Walker.go_back"]], "has_unvisited_branches (walker property)": [[6, "ete4.core.operations.Walker.has_unvisited_branches"]], "insert_intermediate() (in module ete4.core.operations)": [[6, "ete4.core.operations.insert_intermediate"]], "join_branch() (in module ete4.core.operations)": [[6, "ete4.core.operations.join_branch"]], "ladderize() (in module ete4.core.operations)": [[6, "ete4.core.operations.ladderize"]], "maybe_convert_internal_nodes_to_support() (in module ete4.core.operations)": [[6, "ete4.core.operations.maybe_convert_internal_nodes_to_support"]], "move() (in module ete4.core.operations)": [[6, "ete4.core.operations.move"]], "node (walker property)": [[6, "ete4.core.operations.Walker.node"]], "node_id (walker property)": [[6, "ete4.core.operations.Walker.node_id"]], "populate() (in module ete4.core.operations)": [[6, "ete4.core.operations.populate"]], "rehang() (in module ete4.core.operations)": [[6, "ete4.core.operations.rehang"]], "remove() (in module ete4.core.operations)": [[6, "ete4.core.operations.remove"]], "set_outgroup() (in module ete4.core.operations)": [[6, "ete4.core.operations.set_outgroup"]], "sort() (in module ete4.core.operations)": [[6, "ete4.core.operations.sort"]], "swap_props() (in module ete4.core.operations)": [[6, "ete4.core.operations.swap_props"]], "to_ultrametric() (in module ete4.core.operations)": [[6, "ete4.core.operations.to_ultrametric"]], "update_size() (in module ete4.core.operations)": [[6, "ete4.core.operations.update_size"]], "update_sizes_all() (in module ete4.core.operations)": [[6, "ete4.core.operations.update_sizes_all"]], "update_sizes_from() (in module ete4.core.operations)": [[6, "ete4.core.operations.update_sizes_from"]], "walk() (in module ete4.core.operations)": [[6, "ete4.core.operations.walk"]], "newickerror": [[7, "ete4.parser.newick.NewickError"]], "nexuserror": [[7, "ete4.parser.nexus.NexusError"]], "apply_translations() (in module ete4.parser.nexus)": [[7, "ete4.parser.nexus.apply_translations"]], "content_repr() (in module ete4.parser.newick)": [[7, "ete4.parser.newick.content_repr"]], "dump() (in module ete4.parser.newick)": [[7, "ete4.parser.newick.dump"]], "dumps() (in module ete4.parser.newick)": [[7, "ete4.parser.newick.dumps"]], "error() (in module ete4.parser.newick)": [[7, "ete4.parser.newick.error"]], "ete4.parser.newick": [[7, "module-ete4.parser.newick"]], "ete4.parser.nexus": [[7, "module-ete4.parser.nexus"]], "get_commands() (in module ete4.parser.nexus)": [[7, "ete4.parser.nexus.get_commands"]], "get_extended_props() (in module ete4.parser.newick)": [[7, "ete4.parser.newick.get_extended_props"]], "get_props() (in module ete4.parser.newick)": [[7, "ete4.parser.newick.get_props"]], "get_section() (in module ete4.parser.nexus)": [[7, "ete4.parser.nexus.get_section"]], "get_sections() (in module ete4.parser.nexus)": [[7, "ete4.parser.nexus.get_sections"]], "get_trees() (in module ete4.parser.nexus)": [[7, "ete4.parser.nexus.get_trees"]], "load() (in module ete4.parser.newick)": [[7, "ete4.parser.newick.load"]], "load() (in module ete4.parser.nexus)": [[7, "ete4.parser.nexus.load"]], "loads() (in module ete4.parser.newick)": [[7, "ete4.parser.newick.loads"]], "loads() (in module ete4.parser.nexus)": [[7, "ete4.parser.nexus.loads"]], "make_parser() (in module ete4.parser.newick)": [[7, "ete4.parser.newick.make_parser"]], "prop_repr() (in module ete4.parser.newick)": [[7, "ete4.parser.newick.prop_repr"]], "quote() (in module ete4.parser.newick)": [[7, "ete4.parser.newick.quote"]], "read_content() (in module ete4.parser.newick)": [[7, "ete4.parser.newick.read_content"]], "read_nodes() (in module ete4.parser.newick)": [[7, "ete4.parser.newick.read_nodes"]], "repr_short() (in module ete4.parser.newick)": [[7, "ete4.parser.newick.repr_short"]], "skip_quoted_name() (in module ete4.parser.newick)": [[7, "ete4.parser.newick.skip_quoted_name"]], "skip_spaces_and_comments() (in module ete4.parser.newick)": [[7, "ete4.parser.newick.skip_spaces_and_comments"]], "unquote() (in module ete4.parser.newick)": [[7, "ete4.parser.newick.unquote"]], "evolevent (class in ete4.phylo)": [[8, "ete4.phylo.EvolEvent"]], "phylotree (class in ete4)": [[8, "ete4.PhyloTree"]], "__init__() (phylotree method)": [[8, "ete4.PhyloTree.__init__"]], "annotate_gtdb_taxa() (phylotree method)": [[8, "ete4.PhyloTree.annotate_gtdb_taxa"]], "annotate_ncbi_taxa() (phylotree method)": [[8, "ete4.PhyloTree.annotate_ncbi_taxa"]], "collapse_lineage_specific_expansions() (phylotree method)": [[8, "ete4.PhyloTree.collapse_lineage_specific_expansions"]], "get_age() (phylotree method)": [[8, "ete4.PhyloTree.get_age"]], "get_age_balanced_outgroup() (phylotree method)": [[8, "ete4.PhyloTree.get_age_balanced_outgroup"]], "get_descendant_evol_events() (phylotree method)": [[8, "ete4.PhyloTree.get_descendant_evol_events"]], "get_farthest_oldest_leaf() (phylotree method)": [[8, "ete4.PhyloTree.get_farthest_oldest_leaf"]], "get_farthest_oldest_node() (phylotree method)": [[8, "ete4.PhyloTree.get_farthest_oldest_node"]], "get_my_evol_events() (phylotree method)": [[8, "ete4.PhyloTree.get_my_evol_events"]], "get_speciation_trees() (phylotree method)": [[8, "ete4.PhyloTree.get_speciation_trees"]], "get_species() (phylotree method)": [[8, "ete4.PhyloTree.get_species"]], "iter_species() (phylotree method)": [[8, "ete4.PhyloTree.iter_species"]], "link_to_alignment() (phylotree method)": [[8, "ete4.PhyloTree.link_to_alignment"]], "ncbi_compare() (phylotree method)": [[8, "ete4.PhyloTree.ncbi_compare"]], "reconcile() (phylotree method)": [[8, "ete4.PhyloTree.reconcile"]], "set_species_naming_function() (phylotree method)": [[8, "ete4.PhyloTree.set_species_naming_function"]], "species (phylotree property)": [[8, "ete4.PhyloTree.species"]], "split_by_dups() (phylotree method)": [[8, "ete4.PhyloTree.split_by_dups"]], "write() (phylotree method)": [[8, "ete4.PhyloTree.write"]], "seqgroup (class in ete4.core.seqgroup)": [[9, "ete4.core.seqgroup.SeqGroup"]], "__init__() (seqgroup method)": [[9, "ete4.core.seqgroup.SeqGroup.__init__"]], "ete4.core.seqgroup": [[9, "module-ete4.core.seqgroup"]], "get_entries() (seqgroup method)": [[9, "ete4.core.seqgroup.SeqGroup.get_entries"]], "get_seq() (seqgroup method)": [[9, "ete4.core.seqgroup.SeqGroup.get_seq"]], "iter_entries() (seqgroup method)": [[9, "ete4.core.seqgroup.SeqGroup.iter_entries"]], "set_seq() (seqgroup method)": [[9, "ete4.core.seqgroup.SeqGroup.set_seq"]], "write() (seqgroup method)": [[9, "ete4.core.seqgroup.SeqGroup.write"]], "active (class in ete4.smartview.renderer.drawer)": [[10, "ete4.smartview.renderer.drawer.Active"]], "alignlinkface (class in ete4.smartview.renderer.faces)": [[10, "ete4.smartview.renderer.faces.AlignLinkFace"]], "alignedgrid (class in ete4.smartview.renderer.face_positions)": [[10, "ete4.smartview.renderer.face_positions.AlignedGrid"]], "alignmentface (class in ete4.smartview.renderer.faces)": [[10, "ete4.smartview.renderer.faces.AlignmentFace"]], "apptree (class in ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.AppTree"]], "arrowface (class in ete4.smartview.renderer.faces)": [[10, "ete4.smartview.renderer.faces.ArrowFace"]], "attrface (class in ete4.smartview.renderer.faces)": [[10, "ete4.smartview.renderer.faces.AttrFace"]], "box (class in ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.Box"]], "collapse_size (drawer attribute)": [[10, "ete4.smartview.renderer.drawer.Drawer.COLLAPSE_SIZE"]], "circleface (class in ete4.smartview.renderer.faces)": [[10, "ete4.smartview.renderer.faces.CircleFace"]], "drawer (class in ete4.smartview.renderer.drawer)": [[10, "ete4.smartview.renderer.drawer.Drawer"]], "draweraligncircfaces (class in ete4.smartview.renderer.drawer)": [[10, "ete4.smartview.renderer.drawer.DrawerAlignCircFaces"]], "draweralignrectfaces (class in ete4.smartview.renderer.drawer)": [[10, "ete4.smartview.renderer.drawer.DrawerAlignRectFaces"]], "drawercirc (class in ete4.smartview.renderer.drawer)": [[10, "ete4.smartview.renderer.drawer.DrawerCirc"]], "drawercircfaces (class in ete4.smartview.renderer.drawer)": [[10, "ete4.smartview.renderer.drawer.DrawerCircFaces"]], "drawerrect (class in ete4.smartview.renderer.drawer)": [[10, "ete4.smartview.renderer.drawer.DrawerRect"]], "drawerrectfaces (class in ete4.smartview.renderer.drawer)": [[10, "ete4.smartview.renderer.drawer.DrawerRectFaces"]], "face (class in ete4.smartview.renderer.faces)": [[10, "ete4.smartview.renderer.faces.Face"]], "globalstuff (class in ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.GlobalStuff"]], "grid (class in ete4.smartview.renderer.face_positions)": [[10, "ete4.smartview.renderer.face_positions.Grid"]], "htmlface (class in ete4.smartview.renderer.faces)": [[10, "ete4.smartview.renderer.faces.HTMLFace"]], "imgface (class in ete4.smartview.renderer.faces)": [[10, "ete4.smartview.renderer.faces.ImgFace"]], "layoutalignment (class in ete4.smartview.renderer.layouts.seq_layouts)": [[10, "ete4.smartview.renderer.layouts.seq_layouts.LayoutAlignment"]], "layoutautoname (class in ete4.smartview.renderer.layouts.spongilla_layouts)": [[10, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutAutoName"]], "layoutbarplot (class in ete4.smartview.renderer.layouts.staple_layouts)": [[10, "ete4.smartview.renderer.layouts.staple_layouts.LayoutBarplot"]], "layoutbestname (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutBestName"]], "layoutbigg (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutBigg"]], "layoutbranchlength (class in ete4.smartview.renderer.layouts.default_layouts)": [[10, "ete4.smartview.renderer.layouts.default_layouts.LayoutBranchLength"]], "layoutbranchsupport (class in ete4.smartview.renderer.layouts.default_layouts)": [[10, "ete4.smartview.renderer.layouts.default_layouts.LayoutBranchSupport"]], "layoutcard (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutCard"]], "layoutcazy (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutCazy"]], "layoutcuratedname (class in ete4.smartview.renderer.layouts.spongilla_layouts)": [[10, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutCuratedName"]], "layoutetediffdistance (class in ete4.smartview.renderer.layouts.etecompare_layouts)": [[10, "ete4.smartview.renderer.layouts.etecompare_layouts.LayoutEteDiffDistance"]], "layouteukogs (class in ete4.smartview.renderer.layouts.spongilla_layouts)": [[10, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutEukOgs"]], "layoutevolevents (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutEvolEvents"]], "layoutevolevents (class in ete4.smartview.renderer.layouts.evol_events_layouts)": [[10, "ete4.smartview.renderer.layouts.evol_events_layouts.LayoutEvolEvents"]], "layoutgenomiccontext (class in ete4.smartview.renderer.layouts.context_layouts)": [[10, "ete4.smartview.renderer.layouts.context_layouts.LayoutGenomicContext"]], "layouthumanogs (class in ete4.smartview.renderer.layouts.evocell_layouts)": [[10, "ete4.smartview.renderer.layouts.evocell_layouts.LayoutHumanOGs"]], "layoutkeggenzyme (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutKeggEnzyme"]], "layoutkeggmodule (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutKeggModule"]], "layoutkeggnumber (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutKeggNumber"]], "layoutkeggpathway (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutKeggPathway"]], "layoutlastcommonancestor (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutLastCommonAncestor"]], "layoutlastcommonancestor (class in ete4.smartview.renderer.layouts.ncbi_taxonomy_layouts)": [[10, "ete4.smartview.renderer.layouts.ncbi_taxonomy_layouts.LayoutLastCommonAncestor"]], "layoutleafname (class in ete4.smartview.renderer.layouts.default_layouts)": [[10, "ete4.smartview.renderer.layouts.default_layouts.LayoutLeafName"]], "layoutnumberleaves (class in ete4.smartview.renderer.layouts.default_layouts)": [[10, "ete4.smartview.renderer.layouts.default_layouts.LayoutNumberLeaves"]], "layoutoutline (class in ete4.smartview.renderer.layouts.default_layouts)": [[10, "ete4.smartview.renderer.layouts.default_layouts.LayoutOutline"]], "layoutpdb (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutPdb"]], "layoutpfamdomains (class in ete4.smartview.renderer.layouts.domain_layouts)": [[10, "ete4.smartview.renderer.layouts.domain_layouts.LayoutPfamDomains"]], "layoutpfamdomains (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutPfamDomains"]], "layoutpreferredname (class in ete4.smartview.renderer.layouts.spongilla_layouts)": [[10, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutPreferredName"]], "layoutproteinname (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutProteinName"]], "layoutsciname (class in ete4.smartview.renderer.layouts.spongilla_layouts)": [[10, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutSciName"]], "layoutscientificname (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutScientificName"]], "layoutseeds (class in ete4.smartview.renderer.layouts.spongilla_layouts)": [[10, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutSeeds"]], "layoutsmartdomains (class in ete4.smartview.renderer.layouts.domain_layouts)": [[10, "ete4.smartview.renderer.layouts.domain_layouts.LayoutSmartDomains"]], "layoutsmartdomains (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutSmartDomains"]], "layoutucsc (class in ete4.smartview.renderer.layouts.evocell_layouts)": [[10, "ete4.smartview.renderer.layouts.evocell_layouts.LayoutUCSC"]], "layoutucsctrans (class in ete4.smartview.renderer.layouts.evocell_layouts)": [[10, "ete4.smartview.renderer.layouts.evocell_layouts.LayoutUCSCtrans"]], "legendface (class in ete4.smartview.renderer.faces)": [[10, "ete4.smartview.renderer.faces.LegendFace"]], "min_size (drawer attribute)": [[10, "ete4.smartview.renderer.drawer.Drawer.MIN_SIZE"]], "npanels (drawer attribute)": [[10, "ete4.smartview.renderer.drawer.Drawer.NPANELS"]], "npanels (draweraligncircfaces attribute)": [[10, "ete4.smartview.renderer.drawer.DrawerAlignCircFaces.NPANELS"]], "npanels (draweralignrectfaces attribute)": [[10, "ete4.smartview.renderer.drawer.DrawerAlignRectFaces.NPANELS"]], "nodestyle (class in ete4.smartview.renderer.nodestyle)": [[10, "ete4.smartview.renderer.nodestyle.NodeStyle"]], "outlineface (class in ete4.smartview.renderer.faces)": [[10, "ete4.smartview.renderer.faces.OutlineFace"]], "padding (class in ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.Padding"]], "piechartface (class in ete4.smartview.renderer.faces)": [[10, "ete4.smartview.renderer.faces.PieChartFace"]], "rectface (class in ete4.smartview.renderer.faces)": [[10, "ete4.smartview.renderer.faces.RectFace"]], "scaleface (class in ete4.smartview.renderer.faces)": [[10, "ete4.smartview.renderer.faces.ScaleFace"]], "selectedcircleface (class in ete4.smartview.renderer.faces)": [[10, "ete4.smartview.renderer.faces.SelectedCircleFace"]], "selectedface (class in ete4.smartview.renderer.faces)": [[10, "ete4.smartview.renderer.faces.SelectedFace"]], "selectedrectface (class in ete4.smartview.renderer.faces)": [[10, "ete4.smartview.renderer.faces.SelectedRectFace"]], "seqface (class in ete4.smartview.renderer.faces)": [[10, "ete4.smartview.renderer.faces.SeqFace"]], "seqmotifface (class in ete4.smartview.renderer.faces)": [[10, "ete4.smartview.renderer.faces.SeqMotifFace"]], "size (class in ete4.smartview.renderer.drawer)": [[10, "ete4.smartview.renderer.drawer.Size"]], "stackedbarface (class in ete4.smartview.renderer.faces)": [[10, "ete4.smartview.renderer.faces.StackedBarFace"]], "type (drawer attribute)": [[10, "ete4.smartview.renderer.drawer.Drawer.TYPE"]], "type (drawercirc attribute)": [[10, "ete4.smartview.renderer.drawer.DrawerCirc.TYPE"]], "type (drawerrect attribute)": [[10, "ete4.smartview.renderer.drawer.DrawerRect.TYPE"]], "textface (class in ete4.smartview.renderer.faces)": [[10, "ete4.smartview.renderer.faces.TextFace"]], "treeactive (class in ete4.smartview.renderer.drawer)": [[10, "ete4.smartview.renderer.drawer.TreeActive"]], "treelayout (class in ete4.smartview.renderer.treelayout)": [[10, "ete4.smartview.renderer.treelayout.TreeLayout"]], "treestyle (class in ete4.smartview.renderer.treestyle)": [[10, "ete4.smartview.renderer.treestyle.TreeStyle"]], "__init__() (alignlinkface method)": [[10, "ete4.smartview.renderer.faces.AlignLinkFace.__init__"]], "__init__() (alignedgrid method)": [[10, "ete4.smartview.renderer.face_positions.AlignedGrid.__init__"]], "__init__() (alignmentface method)": [[10, "ete4.smartview.renderer.faces.AlignmentFace.__init__"]], "__init__() (apptree method)": [[10, "ete4.smartview.gui.server.AppTree.__init__"]], "__init__() (arrowface method)": [[10, "ete4.smartview.renderer.faces.ArrowFace.__init__"]], "__init__() (attrface method)": [[10, "ete4.smartview.renderer.faces.AttrFace.__init__"]], "__init__() (circleface method)": [[10, "ete4.smartview.renderer.faces.CircleFace.__init__"]], "__init__() (drawer method)": [[10, "ete4.smartview.renderer.drawer.Drawer.__init__"]], "__init__() (drawercirc method)": [[10, "ete4.smartview.renderer.drawer.DrawerCirc.__init__"]], "__init__() (face method)": [[10, "ete4.smartview.renderer.faces.Face.__init__"]], "__init__() (htmlface method)": [[10, "ete4.smartview.renderer.faces.HTMLFace.__init__"]], "__init__() (imgface method)": [[10, "ete4.smartview.renderer.faces.ImgFace.__init__"]], "__init__() (layoutalignment method)": [[10, "ete4.smartview.renderer.layouts.seq_layouts.LayoutAlignment.__init__"]], "__init__() (layoutautoname method)": [[10, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutAutoName.__init__"]], "__init__() (layoutbarplot method)": [[10, "ete4.smartview.renderer.layouts.staple_layouts.LayoutBarplot.__init__"]], "__init__() (layoutbestname method)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutBestName.__init__"]], "__init__() (layoutbigg method)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutBigg.__init__"]], "__init__() (layoutbranchlength method)": [[10, "ete4.smartview.renderer.layouts.default_layouts.LayoutBranchLength.__init__"]], "__init__() (layoutbranchsupport method)": [[10, "ete4.smartview.renderer.layouts.default_layouts.LayoutBranchSupport.__init__"]], "__init__() (layoutcard method)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutCard.__init__"]], "__init__() (layoutcazy method)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutCazy.__init__"]], "__init__() (layoutcuratedname method)": [[10, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutCuratedName.__init__"]], "__init__() (layoutetediffdistance method)": [[10, "ete4.smartview.renderer.layouts.etecompare_layouts.LayoutEteDiffDistance.__init__"]], "__init__() (layouteukogs method)": [[10, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutEukOgs.__init__"]], "__init__() (layoutevolevents method)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutEvolEvents.__init__"], [10, "ete4.smartview.renderer.layouts.evol_events_layouts.LayoutEvolEvents.__init__"]], "__init__() (layoutgenomiccontext method)": [[10, "ete4.smartview.renderer.layouts.context_layouts.LayoutGenomicContext.__init__"]], "__init__() (layouthumanogs method)": [[10, "ete4.smartview.renderer.layouts.evocell_layouts.LayoutHumanOGs.__init__"]], "__init__() (layoutkeggenzyme method)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutKeggEnzyme.__init__"]], "__init__() (layoutkeggmodule method)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutKeggModule.__init__"]], "__init__() (layoutkeggnumber method)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutKeggNumber.__init__"]], "__init__() (layoutkeggpathway method)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutKeggPathway.__init__"]], "__init__() (layoutlastcommonancestor method)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutLastCommonAncestor.__init__"], [10, "ete4.smartview.renderer.layouts.ncbi_taxonomy_layouts.LayoutLastCommonAncestor.__init__"]], "__init__() (layoutleafname method)": [[10, "ete4.smartview.renderer.layouts.default_layouts.LayoutLeafName.__init__"]], "__init__() (layoutnumberleaves method)": [[10, "ete4.smartview.renderer.layouts.default_layouts.LayoutNumberLeaves.__init__"]], "__init__() (layoutoutline method)": [[10, "ete4.smartview.renderer.layouts.default_layouts.LayoutOutline.__init__"]], "__init__() (layoutpdb method)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutPdb.__init__"]], "__init__() (layoutpfamdomains method)": [[10, "ete4.smartview.renderer.layouts.domain_layouts.LayoutPfamDomains.__init__"], [10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutPfamDomains.__init__"]], "__init__() (layoutpreferredname method)": [[10, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutPreferredName.__init__"]], "__init__() (layoutproteinname method)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutProteinName.__init__"]], "__init__() (layoutsciname method)": [[10, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutSciName.__init__"]], "__init__() (layoutscientificname method)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutScientificName.__init__"]], "__init__() (layoutseeds method)": [[10, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutSeeds.__init__"]], "__init__() (layoutsmartdomains method)": [[10, "ete4.smartview.renderer.layouts.domain_layouts.LayoutSmartDomains.__init__"], [10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutSmartDomains.__init__"]], "__init__() (layoutucsc method)": [[10, "ete4.smartview.renderer.layouts.evocell_layouts.LayoutUCSC.__init__"]], "__init__() (layoutucsctrans method)": [[10, "ete4.smartview.renderer.layouts.evocell_layouts.LayoutUCSCtrans.__init__"]], "__init__() (legendface method)": [[10, "ete4.smartview.renderer.faces.LegendFace.__init__"]], "__init__() (nodestyle method)": [[10, "ete4.smartview.renderer.nodestyle.NodeStyle.__init__"]], "__init__() (outlineface method)": [[10, "ete4.smartview.renderer.faces.OutlineFace.__init__"]], "__init__() (piechartface method)": [[10, "ete4.smartview.renderer.faces.PieChartFace.__init__"]], "__init__() (rectface method)": [[10, "ete4.smartview.renderer.faces.RectFace.__init__"]], "__init__() (scaleface method)": [[10, "ete4.smartview.renderer.faces.ScaleFace.__init__"]], "__init__() (selectedcircleface method)": [[10, "ete4.smartview.renderer.faces.SelectedCircleFace.__init__"]], "__init__() (selectedface method)": [[10, "ete4.smartview.renderer.faces.SelectedFace.__init__"]], "__init__() (selectedrectface method)": [[10, "ete4.smartview.renderer.faces.SelectedRectFace.__init__"]], "__init__() (seqface method)": [[10, "ete4.smartview.renderer.faces.SeqFace.__init__"]], "__init__() (seqmotifface method)": [[10, "ete4.smartview.renderer.faces.SeqMotifFace.__init__"]], "__init__() (stackedbarface method)": [[10, "ete4.smartview.renderer.faces.StackedBarFace.__init__"]], "__init__() (textface method)": [[10, "ete4.smartview.renderer.faces.TextFace.__init__"]], "__init__() (treelayout method)": [[10, "ete4.smartview.renderer.treelayout.TreeLayout.__init__"]], "__init__() (treestyle method)": [[10, "ete4.smartview.renderer.treestyle.TreeStyle.__init__"]], "activate_clade() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.activate_clade"]], "activate_node() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.activate_node"]], "active (apptree attribute)": [[10, "ete4.smartview.gui.server.AppTree.active"]], "active_face (treestyle property)": [[10, "ete4.smartview.renderer.treestyle.TreeStyle.active_face"]], "active_face_pos (treestyle property)": [[10, "ete4.smartview.renderer.treestyle.TreeStyle.active_face_pos"]], "add_face() (grid method)": [[10, "ete4.smartview.renderer.face_positions.Grid.add_face"]], "add_legend() (treestyle method)": [[10, "ete4.smartview.renderer.treestyle.TreeStyle.add_legend"]], "add_tree() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.add_tree"]], "add_trees_from_request() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.add_trees_from_request"]], "aligned_panel_footer (treestyle property)": [[10, "ete4.smartview.renderer.treestyle.TreeStyle.aligned_panel_footer"]], "aligned_panel_header (treestyle property)": [[10, "ete4.smartview.renderer.treestyle.TreeStyle.aligned_panel_header"]], "build_blocks() (alignmentface method)": [[10, "ete4.smartview.renderer.faces.AlignmentFace.build_blocks"]], "build_regions() (seqmotifface method)": [[10, "ete4.smartview.renderer.faces.SeqMotifFace.build_regions"]], "callback() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.callback"]], "cartesian() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.cartesian"]], "cased_name() (in module ete4.smartview.renderer.treelayout)": [[10, "ete4.smartview.renderer.treelayout.cased_name"]], "change_selection_name() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.change_selection_name"]], "circumasec() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.circumasec"]], "circumrect() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.circumrect"]], "clades (treeactive attribute)": [[10, "ete4.smartview.renderer.drawer.TreeActive.clades"]], "clip_angles() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.clip_angles"]], "compute_bounding_box() (alignlinkface method)": [[10, "ete4.smartview.renderer.faces.AlignLinkFace.compute_bounding_box"]], "compute_bounding_box() (alignmentface method)": [[10, "ete4.smartview.renderer.faces.AlignmentFace.compute_bounding_box"]], "compute_bounding_box() (circleface method)": [[10, "ete4.smartview.renderer.faces.CircleFace.compute_bounding_box"]], "compute_bounding_box() (face method)": [[10, "ete4.smartview.renderer.faces.Face.compute_bounding_box"]], "compute_bounding_box() (outlineface method)": [[10, "ete4.smartview.renderer.faces.OutlineFace.compute_bounding_box"]], "compute_bounding_box() (rectface method)": [[10, "ete4.smartview.renderer.faces.RectFace.compute_bounding_box"]], "compute_bounding_box() (scaleface method)": [[10, "ete4.smartview.renderer.faces.ScaleFace.compute_bounding_box"]], "compute_bounding_box() (seqface method)": [[10, "ete4.smartview.renderer.faces.SeqFace.compute_bounding_box"]], "compute_bounding_box() (seqmotifface method)": [[10, "ete4.smartview.renderer.faces.SeqMotifFace.compute_bounding_box"]], "compute_bounding_box() (textface method)": [[10, "ete4.smartview.renderer.faces.TextFace.compute_bounding_box"]], "compute_fsize() (face method)": [[10, "ete4.smartview.renderer.faces.Face.compute_fsize"]], "compute_pie() (piechartface method)": [[10, "ete4.smartview.renderer.faces.PieChartFace.compute_pie"]], "content_size() (drawercirc method)": [[10, "ete4.smartview.renderer.drawer.DrawerCirc.content_size"]], "content_size() (drawerrect method)": [[10, "ete4.smartview.renderer.drawer.DrawerRect.content_size"]], "copy_style() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.copy_style"]], "deactivate_clade() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.deactivate_clade"]], "deactivate_node() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.deactivate_node"]], "del_tree() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.del_tree"]], "dist() (in module ete4.smartview.renderer.drawer)": [[10, "ete4.smartview.renderer.drawer.dist"]], "draw() (alignlinkface method)": [[10, "ete4.smartview.renderer.faces.AlignLinkFace.draw"]], "draw() (alignmentface method)": [[10, "ete4.smartview.renderer.faces.AlignmentFace.draw"]], "draw() (arrowface method)": [[10, "ete4.smartview.renderer.faces.ArrowFace.draw"]], "draw() (circleface method)": [[10, "ete4.smartview.renderer.faces.CircleFace.draw"]], "draw() (drawer method)": [[10, "ete4.smartview.renderer.drawer.Drawer.draw"]], "draw() (htmlface method)": [[10, "ete4.smartview.renderer.faces.HTMLFace.draw"]], "draw() (imgface method)": [[10, "ete4.smartview.renderer.faces.ImgFace.draw"]], "draw() (legendface method)": [[10, "ete4.smartview.renderer.faces.LegendFace.draw"]], "draw() (outlineface method)": [[10, "ete4.smartview.renderer.faces.OutlineFace.draw"]], "draw() (piechartface method)": [[10, "ete4.smartview.renderer.faces.PieChartFace.draw"]], "draw() (rectface method)": [[10, "ete4.smartview.renderer.faces.RectFace.draw"]], "draw() (scaleface method)": [[10, "ete4.smartview.renderer.faces.ScaleFace.draw"]], "draw() (seqface method)": [[10, "ete4.smartview.renderer.faces.SeqFace.draw"]], "draw() (seqmotifface method)": [[10, "ete4.smartview.renderer.faces.SeqMotifFace.draw"]], "draw() (stackedbarface method)": [[10, "ete4.smartview.renderer.faces.StackedBarFace.draw"]], "draw() (textface method)": [[10, "ete4.smartview.renderer.faces.TextFace.draw"]], "draw_aligned_headers() (drawer method)": [[10, "ete4.smartview.renderer.drawer.Drawer.draw_aligned_headers"]], "draw_arc() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.draw_arc"]], "draw_array() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.draw_array"]], "draw_arrow() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.draw_arrow"]], "draw_childrenline() (drawercirc method)": [[10, "ete4.smartview.renderer.drawer.DrawerCirc.draw_childrenline"]], "draw_childrenline() (drawerrect method)": [[10, "ete4.smartview.renderer.drawer.DrawerRect.draw_childrenline"]], "draw_circle() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.draw_circle"]], "draw_collapsed() (drawer method)": [[10, "ete4.smartview.renderer.drawer.Drawer.draw_collapsed"]], "draw_collapsed() (drawercirc method)": [[10, "ete4.smartview.renderer.drawer.DrawerCirc.draw_collapsed"]], "draw_collapsed() (drawercircfaces method)": [[10, "ete4.smartview.renderer.drawer.DrawerCircFaces.draw_collapsed"]], "draw_collapsed() (drawerrect method)": [[10, "ete4.smartview.renderer.drawer.DrawerRect.draw_collapsed"]], "draw_collapsed() (drawerrectfaces method)": [[10, "ete4.smartview.renderer.drawer.DrawerRectFaces.draw_collapsed"]], "draw_content() (drawer method)": [[10, "ete4.smartview.renderer.drawer.Drawer.draw_content"]], "draw_ellipse() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.draw_ellipse"]], "draw_html() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.draw_html"]], "draw_img() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.draw_img"]], "draw_lengthline() (drawercirc method)": [[10, "ete4.smartview.renderer.drawer.DrawerCirc.draw_lengthline"]], "draw_lengthline() (drawerrect method)": [[10, "ete4.smartview.renderer.drawer.DrawerRect.draw_lengthline"]], "draw_line() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.draw_line"]], "draw_node() (drawer method)": [[10, "ete4.smartview.renderer.drawer.Drawer.draw_node"]], "draw_node() (drawercircfaces method)": [[10, "ete4.smartview.renderer.drawer.DrawerCircFaces.draw_node"]], "draw_node() (drawerrectfaces method)": [[10, "ete4.smartview.renderer.drawer.DrawerRectFaces.draw_node"]], "draw_nodebox() (drawercirc method)": [[10, "ete4.smartview.renderer.drawer.DrawerCirc.draw_nodebox"]], "draw_nodebox() (drawerrect method)": [[10, "ete4.smartview.renderer.drawer.DrawerRect.draw_nodebox"]], "draw_nodebox() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.draw_nodebox"]], "draw_nodedot() (drawercirc method)": [[10, "ete4.smartview.renderer.drawer.DrawerCirc.draw_nodedot"]], "draw_nodedot() (drawerrect method)": [[10, "ete4.smartview.renderer.drawer.DrawerRect.draw_nodedot"]], "draw_outline() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.draw_outline"]], "draw_rect() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.draw_rect"]], "draw_rhombus() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.draw_rhombus"]], "draw_slice() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.draw_slice"]], "draw_text() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.draw_text"]], "draw_triangle() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.draw_triangle"]], "drawn_size() (in module ete4.smartview.renderer.drawer)": [[10, "ete4.smartview.renderer.drawer.drawn_size"]], "dx (box attribute)": [[10, "ete4.smartview.renderer.draw_helpers.Box.dx"]], "dx (size attribute)": [[10, "ete4.smartview.renderer.drawer.Size.dx"]], "dy (box attribute)": [[10, "ete4.smartview.renderer.draw_helpers.Box.dy"]], "dy (size attribute)": [[10, "ete4.smartview.renderer.drawer.Size.dy"]], "ete4.smartview.gui.server": [[10, "module-ete4.smartview.gui.server"]], "ete4.smartview.renderer.draw_helpers": [[10, "module-ete4.smartview.renderer.draw_helpers"]], "ete4.smartview.renderer.drawer": [[10, "module-ete4.smartview.renderer.drawer"]], "ete4.smartview.renderer.face_positions": [[10, "module-ete4.smartview.renderer.face_positions"]], "ete4.smartview.renderer.faces": [[10, "module-ete4.smartview.renderer.faces"]], "ete4.smartview.renderer.layouts.context_layouts": [[10, "module-ete4.smartview.renderer.layouts.context_layouts"]], "ete4.smartview.renderer.layouts.default_layouts": [[10, "module-ete4.smartview.renderer.layouts.default_layouts"]], "ete4.smartview.renderer.layouts.domain_layouts": [[10, "module-ete4.smartview.renderer.layouts.domain_layouts"]], "ete4.smartview.renderer.layouts.eggnog6_layouts": [[10, "module-ete4.smartview.renderer.layouts.eggnog6_layouts"]], "ete4.smartview.renderer.layouts.etecompare_layouts": [[10, "module-ete4.smartview.renderer.layouts.etecompare_layouts"]], "ete4.smartview.renderer.layouts.evocell_layouts": [[10, "module-ete4.smartview.renderer.layouts.evocell_layouts"]], "ete4.smartview.renderer.layouts.evol_events_layouts": [[10, "module-ete4.smartview.renderer.layouts.evol_events_layouts"]], "ete4.smartview.renderer.layouts.ncbi_taxonomy_layouts": [[10, "module-ete4.smartview.renderer.layouts.ncbi_taxonomy_layouts"]], "ete4.smartview.renderer.layouts.phylocloud_egg5_layouts": [[10, "module-ete4.smartview.renderer.layouts.phylocloud_egg5_layouts"]], "ete4.smartview.renderer.layouts.seq_layouts": [[10, "module-ete4.smartview.renderer.layouts.seq_layouts"]], "ete4.smartview.renderer.layouts.spongilla_layouts": [[10, "module-ete4.smartview.renderer.layouts.spongilla_layouts"]], "ete4.smartview.renderer.layouts.staple_layouts": [[10, "module-ete4.smartview.renderer.layouts.staple_layouts"]], "ete4.smartview.renderer.nodestyle": [[10, "module-ete4.smartview.renderer.nodestyle"]], "ete4.smartview.renderer.treelayout": [[10, "module-ete4.smartview.renderer.treelayout"]], "ete4.smartview.renderer.treestyle": [[10, "module-ete4.smartview.renderer.treestyle"]], "exclude_props (apptree attribute)": [[10, "ete4.smartview.gui.server.AppTree.exclude_props"]], "find_node() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.find_node"]], "first_value() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.first_value"]], "fits() (alignlinkface method)": [[10, "ete4.smartview.renderer.faces.AlignLinkFace.fits"]], "fits() (face method)": [[10, "ete4.smartview.renderer.faces.Face.fits"]], "fits() (outlineface method)": [[10, "ete4.smartview.renderer.faces.OutlineFace.fits"]], "fits() (seqmotifface method)": [[10, "ete4.smartview.renderer.faces.SeqMotifFace.fits"]], "fits() (textface method)": [[10, "ete4.smartview.renderer.faces.TextFace.fits"]], "flush_outline() (drawer method)": [[10, "ete4.smartview.renderer.drawer.Drawer.flush_outline"]], "flush_outline() (drawercirc method)": [[10, "ete4.smartview.renderer.drawer.DrawerCirc.flush_outline"]], "get_active_children() (drawer method)": [[10, "ete4.smartview.renderer.drawer.Drawer.get_active_children"]], "get_active_clade() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.get_active_clade"]], "get_active_clades() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.get_active_clades"]], "get_asec() (in module ete4.smartview.renderer.drawer)": [[10, "ete4.smartview.renderer.drawer.get_asec"]], "get_box() (alignlinkface method)": [[10, "ete4.smartview.renderer.faces.AlignLinkFace.get_box"]], "get_box() (drawercirc method)": [[10, "ete4.smartview.renderer.drawer.DrawerCirc.get_box"]], "get_box() (drawerrect method)": [[10, "ete4.smartview.renderer.drawer.DrawerRect.get_box"]], "get_box() (face method)": [[10, "ete4.smartview.renderer.faces.Face.get_box"]], "get_box() (outlineface method)": [[10, "ete4.smartview.renderer.faces.OutlineFace.get_box"]], "get_collapsed_node() (drawer method)": [[10, "ete4.smartview.renderer.drawer.Drawer.get_collapsed_node"]], "get_color() (layoutlastcommonancestor method)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutLastCommonAncestor.get_color"], [10, "ete4.smartview.renderer.layouts.ncbi_taxonomy_layouts.LayoutLastCommonAncestor.get_color"]], "get_command_search() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.get_command_search"]], "get_content() (attrface method)": [[10, "ete4.smartview.renderer.faces.AttrFace.get_content"]], "get_content() (face method)": [[10, "ete4.smartview.renderer.faces.Face.get_content"]], "get_context() (layoutgenomiccontext method)": [[10, "ete4.smartview.renderer.layouts.context_layouts.LayoutGenomicContext.get_context"]], "get_drawer() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.get_drawer"]], "get_drawers() (in module ete4.smartview.renderer.drawer)": [[10, "ete4.smartview.renderer.drawer.get_drawers"]], "get_empty_active() (in module ete4.smartview.renderer.drawer)": [[10, "ete4.smartview.renderer.drawer.get_empty_active"]], "get_eval_search() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.get_eval_search"]], "get_fields() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.get_fields"]], "get_layout_evoltype() (in module ete4.smartview.renderer.layouts.phylocloud_egg5_layouts)": [[10, "ete4.smartview.renderer.layouts.phylocloud_egg5_layouts.get_layout_evoltype"]], "get_layout_gnames() (in module ete4.smartview.renderer.layouts.phylocloud_egg5_layouts)": [[10, "ete4.smartview.renderer.layouts.phylocloud_egg5_layouts.get_layout_gnames"]], "get_layout_lca_rects() (in module ete4.smartview.renderer.layouts.phylocloud_egg5_layouts)": [[10, "ete4.smartview.renderer.layouts.phylocloud_egg5_layouts.get_layout_lca_rects"]], "get_layout_ogs_egg5() (in module ete4.smartview.renderer.layouts.phylocloud_egg5_layouts)": [[10, "ete4.smartview.renderer.layouts.phylocloud_egg5_layouts.get_layout_ogs_egg5"]], "get_layout_sciname() (in module ete4.smartview.renderer.layouts.phylocloud_egg5_layouts)": [[10, "ete4.smartview.renderer.layouts.phylocloud_egg5_layouts.get_layout_sciname"]], "get_layouts() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.get_layouts"]], "get_layouts_from_getters() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.get_layouts_from_getters"]], "get_legend() (treestyle method)": [[10, "ete4.smartview.renderer.treestyle.TreeStyle.get_legend"]], "get_line_type() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.get_line_type"]], "get_newick() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.get_newick"]], "get_nodes_info() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.get_nodes_info"]], "get_outline() (drawer method)": [[10, "ete4.smartview.renderer.drawer.Drawer.get_outline"]], "get_parents() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.get_parents"]], "get_parser() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.get_parser"]], "get_popup_props() (drawer method)": [[10, "ete4.smartview.renderer.drawer.Drawer.get_popup_props"]], "get_rect() (in module ete4.smartview.renderer.drawer)": [[10, "ete4.smartview.renderer.drawer.get_rect"]], "get_search_function() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.get_search_function"]], "get_selected_children() (drawer method)": [[10, "ete4.smartview.renderer.drawer.Drawer.get_selected_children"]], "get_selection_info() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.get_selection_info"]], "get_selections() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.get_selections"]], "get_seq() (alignmentface method)": [[10, "ete4.smartview.renderer.faces.AlignmentFace.get_seq"]], "get_seq() (layoutalignment method)": [[10, "ete4.smartview.renderer.layouts.seq_layouts.LayoutAlignment.get_seq"]], "get_stats() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.get_stats"]], "get_tid() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.get_tid"]], "get_tooltip() (layoutgenomiccontext method)": [[10, "ete4.smartview.renderer.layouts.context_layouts.LayoutGenomicContext.get_tooltip"]], "get_topological_search() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.get_topological_search"]], "get_trees_from_file() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.get_trees_from_file"]], "get_trees_from_form() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.get_trees_from_form"]], "get_trees_from_nexus_or_newick() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.get_trees_from_nexus_or_newick"]], "get_xs() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.get_xs"]], "get_ys() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.get_ys"]], "in_aligned_viewport() (face method)": [[10, "ete4.smartview.renderer.faces.Face.in_aligned_viewport"]], "in_viewport() (drawercirc method)": [[10, "ete4.smartview.renderer.drawer.DrawerCirc.in_viewport"]], "in_viewport() (drawerrect method)": [[10, "ete4.smartview.renderer.drawer.DrawerRect.in_viewport"]], "include_props (apptree attribute)": [[10, "ete4.smartview.gui.server.AppTree.include_props"]], "init() (nodestyle method)": [[10, "ete4.smartview.renderer.nodestyle.NodeStyle.init"]], "initialize() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.initialize"]], "initialize_tree_style() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.initialize_tree_style"]], "initialized (apptree attribute)": [[10, "ete4.smartview.gui.server.AppTree.initialized"]], "intersects_angles() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.intersects_angles"]], "intersects_box() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.intersects_box"]], "intersects_segment() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.intersects_segment"]], "is_fully_collapsed() (drawer method)": [[10, "ete4.smartview.renderer.drawer.Drawer.is_fully_collapsed"]], "is_small() (drawercirc method)": [[10, "ete4.smartview.renderer.drawer.DrawerCirc.is_small"]], "is_small() (drawerrect method)": [[10, "ete4.smartview.renderer.drawer.DrawerRect.is_small"]], "json_error() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.json_error"]], "layouts (apptree attribute)": [[10, "ete4.smartview.gui.server.AppTree.layouts"]], "load_tree() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.load_tree"]], "load_tree_from_newick() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.load_tree_from_newick"]], "maintenance() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.maintenance"]], "make_box() (in module ete4.smartview.renderer.drawer)": [[10, "ete4.smartview.renderer.drawer.make_box"]], "make_faces() (in module ete4.smartview.renderer.face_positions)": [[10, "ete4.smartview.renderer.face_positions.make_faces"]], "make_name() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.make_name"]], "modify_tree_fields() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.modify_tree_fields"]], "name (apptree attribute)": [[10, "ete4.smartview.gui.server.AppTree.name"]], "nice_html() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.nice_html"]], "node_size() (drawercirc method)": [[10, "ete4.smartview.renderer.drawer.DrawerCirc.node_size"]], "node_size() (drawerrect method)": [[10, "ete4.smartview.renderer.drawer.DrawerRect.node_size"]], "nodes (treeactive attribute)": [[10, "ete4.smartview.renderer.drawer.TreeActive.nodes"]], "nodestyles (apptree attribute)": [[10, "ete4.smartview.gui.server.AppTree.nodestyles"]], "on_first_visit() (drawer method)": [[10, "ete4.smartview.renderer.drawer.Drawer.on_first_visit"]], "on_last_visit() (drawer method)": [[10, "ete4.smartview.renderer.drawer.Drawer.on_last_visit"]], "open_browser_window() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.open_browser_window"]], "orientation (arrowface property)": [[10, "ete4.smartview.renderer.faces.ArrowFace.orientation"]], "parents (active attribute)": [[10, "ete4.smartview.renderer.drawer.Active.parents"]], "prune_by_selection() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.prune_by_selection"]], "remove_active() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.remove_active"]], "remove_active_clade() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.remove_active_clade"]], "remove_search() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.remove_search"]], "remove_selection() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.remove_selection"]], "req_json() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.req_json"]], "results (active attribute)": [[10, "ete4.smartview.renderer.drawer.Active.results"]], "retrieve_layouts() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.retrieve_layouts"]], "retrieve_tree() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.retrieve_tree"]], "run_smartview() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.run_smartview"]], "safe_string() (in module ete4.smartview.renderer.drawer)": [[10, "ete4.smartview.renderer.drawer.safe_string"]], "safer_eval() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.safer_eval"]], "search_to_selection() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.search_to_selection"]], "searches (apptree attribute)": [[10, "ete4.smartview.gui.server.AppTree.searches"]], "selected (apptree attribute)": [[10, "ete4.smartview.gui.server.AppTree.selected"]], "selected_face (treestyle property)": [[10, "ete4.smartview.renderer.treestyle.TreeStyle.selected_face"]], "selected_face_pos (treestyle property)": [[10, "ete4.smartview.renderer.treestyle.TreeStyle.selected_face_pos"]], "set_node_style() (layoutalignment method)": [[10, "ete4.smartview.renderer.layouts.seq_layouts.LayoutAlignment.set_node_style"]], "set_node_style() (layoutautoname method)": [[10, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutAutoName.set_node_style"]], "set_node_style() (layoutbarplot method)": [[10, "ete4.smartview.renderer.layouts.staple_layouts.LayoutBarplot.set_node_style"]], "set_node_style() (layoutcuratedname method)": [[10, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutCuratedName.set_node_style"]], "set_node_style() (layoutetediffdistance method)": [[10, "ete4.smartview.renderer.layouts.etecompare_layouts.LayoutEteDiffDistance.set_node_style"]], "set_node_style() (layouteukogs method)": [[10, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutEukOgs.set_node_style"]], "set_node_style() (layoutevolevents method)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutEvolEvents.set_node_style"], [10, "ete4.smartview.renderer.layouts.evol_events_layouts.LayoutEvolEvents.set_node_style"]], "set_node_style() (layoutgenomiccontext method)": [[10, "ete4.smartview.renderer.layouts.context_layouts.LayoutGenomicContext.set_node_style"]], "set_node_style() (layouthumanogs method)": [[10, "ete4.smartview.renderer.layouts.evocell_layouts.LayoutHumanOGs.set_node_style"]], "set_node_style() (layoutlastcommonancestor method)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutLastCommonAncestor.set_node_style"], [10, "ete4.smartview.renderer.layouts.ncbi_taxonomy_layouts.LayoutLastCommonAncestor.set_node_style"]], "set_node_style() (layoutleafname method)": [[10, "ete4.smartview.renderer.layouts.default_layouts.LayoutLeafName.set_node_style"]], "set_node_style() (layoutnumberleaves method)": [[10, "ete4.smartview.renderer.layouts.default_layouts.LayoutNumberLeaves.set_node_style"]], "set_node_style() (layoutoutline method)": [[10, "ete4.smartview.renderer.layouts.default_layouts.LayoutOutline.set_node_style"]], "set_node_style() (layoutpreferredname method)": [[10, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutPreferredName.set_node_style"]], "set_node_style() (layoutsciname method)": [[10, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutSciName.set_node_style"]], "set_node_style() (layoutseeds method)": [[10, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutSeeds.set_node_style"]], "set_node_style() (layoutucsc method)": [[10, "ete4.smartview.renderer.layouts.evocell_layouts.LayoutUCSC.set_node_style"]], "set_node_style() (layoutucsctrans method)": [[10, "ete4.smartview.renderer.layouts.evocell_layouts.LayoutUCSCtrans.set_node_style"]], "set_node_style() (treelayout method)": [[10, "ete4.smartview.renderer.treelayout.TreeLayout.set_node_style"]], "set_tree_style() (layoutalignment method)": [[10, "ete4.smartview.renderer.layouts.seq_layouts.LayoutAlignment.set_tree_style"]], "set_tree_style() (layoutbarplot method)": [[10, "ete4.smartview.renderer.layouts.staple_layouts.LayoutBarplot.set_tree_style"]], "set_tree_style() (layoutevolevents method)": [[10, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutEvolEvents.set_tree_style"], [10, "ete4.smartview.renderer.layouts.evol_events_layouts.LayoutEvolEvents.set_tree_style"]], "set_tree_style() (layoutgenomiccontext method)": [[10, "ete4.smartview.renderer.layouts.context_layouts.LayoutGenomicContext.set_tree_style"]], "set_tree_style() (treelayout method)": [[10, "ete4.smartview.renderer.treelayout.TreeLayout.set_tree_style"]], "sort() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.sort"]], "split_thru_negative_xaxis() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.split_thru_negative_xaxis"]], "stack() (in module ete4.smartview.renderer.drawer)": [[10, "ete4.smartview.renderer.drawer.stack"]], "store_active() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.store_active"]], "store_search() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.store_search"]], "store_selection() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.store_selection"]], "style (apptree attribute)": [[10, "ete4.smartview.gui.server.AppTree.style"]], "summary() (in module ete4.smartview.renderer.draw_helpers)": [[10, "ete4.smartview.renderer.draw_helpers.summary"]], "timer (apptree attribute)": [[10, "ete4.smartview.gui.server.AppTree.timer"]], "touch_and_get() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.touch_and_get"]], "tree (apptree attribute)": [[10, "ete4.smartview.gui.server.AppTree.tree"]], "unselect_node() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.unselect_node"]], "update_app_available_layouts() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.update_app_available_layouts"]], "update_layouts() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.update_layouts"]], "update_node_props() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.update_node_props"]], "update_node_style() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.update_node_style"]], "update_selection() (in module ete4.smartview.gui.server)": [[10, "ete4.smartview.gui.server.update_selection"]], "x (box attribute)": [[10, "ete4.smartview.renderer.draw_helpers.Box.x"]], "x (padding attribute)": [[10, "ete4.smartview.renderer.draw_helpers.Padding.x"]], "y (box attribute)": [[10, "ete4.smartview.renderer.draw_helpers.Box.y"]], "y (padding attribute)": [[10, "ete4.smartview.renderer.draw_helpers.Padding.y"]], "tree (class in ete4)": [[11, "ete4.Tree"]], "__init__() (tree method)": [[11, "ete4.Tree.__init__"]], "add_child() (tree method)": [[11, "ete4.Tree.add_child"]], "add_children() (tree method)": [[11, "ete4.Tree.add_children"]], "add_face() (tree method)": [[11, "ete4.Tree.add_face"]], "add_face_smartview() (tree method)": [[11, "ete4.Tree.add_face_smartview"]], "add_face_treeview() (tree method)": [[11, "ete4.Tree.add_face_treeview"]], "add_feature() (tree method)": [[11, "ete4.Tree.add_feature"]], "add_features() (tree method)": [[11, "ete4.Tree.add_features"]], "add_prop() (tree method)": [[11, "ete4.Tree.add_prop"]], "add_props() (tree method)": [[11, "ete4.Tree.add_props"]], "add_sister() (tree method)": [[11, "ete4.Tree.add_sister"]], "ancestors() (tree method)": [[11, "ete4.Tree.ancestors"]], "check_monophyly() (tree method)": [[11, "ete4.Tree.check_monophyly"]], "children (tree attribute)": [[11, "ete4.Tree.children"]], "collapsed_faces (tree attribute)": [[11, "ete4.Tree.collapsed_faces"]], "common_ancestor() (tree method)": [[11, "ete4.Tree.common_ancestor"]], "compare() (tree method)": [[11, "ete4.Tree.compare"]], "cophenetic_matrix() (tree method)": [[11, "ete4.Tree.cophenetic_matrix"]], "copy() (tree method)": [[11, "ete4.Tree.copy"]], "del_feature() (tree method)": [[11, "ete4.Tree.del_feature"]], "del_prop() (tree method)": [[11, "ete4.Tree.del_prop"]], "delete() (tree method)": [[11, "ete4.Tree.delete"]], "descendants() (tree method)": [[11, "ete4.Tree.descendants"]], "describe() (tree method)": [[11, "ete4.Tree.describe"]], "detach() (tree method)": [[11, "ete4.Tree.detach"]], "dist (tree attribute)": [[11, "ete4.Tree.dist"]], "edges() (tree method)": [[11, "ete4.Tree.edges"]], "expand_polytomies() (tree method)": [[11, "ete4.Tree.expand_polytomies"]], "explore() (tree method)": [[11, "ete4.Tree.explore"]], "faces (tree attribute)": [[11, "ete4.Tree.faces"]], "from_parent_child_table() (tree static method)": [[11, "ete4.Tree.from_parent_child_table"]], "from_skbio() (tree static method)": [[11, "ete4.Tree.from_skbio"]], "get_cached_content() (tree method)": [[11, "ete4.Tree.get_cached_content"]], "get_children() (tree method)": [[11, "ete4.Tree.get_children"]], "get_closest_leaf() (tree method)": [[11, "ete4.Tree.get_closest_leaf"]], "get_distance() (tree method)": [[11, "ete4.Tree.get_distance"]], "get_farthest_leaf() (tree method)": [[11, "ete4.Tree.get_farthest_leaf"]], "get_farthest_node() (tree method)": [[11, "ete4.Tree.get_farthest_node"]], "get_midpoint_outgroup() (tree method)": [[11, "ete4.Tree.get_midpoint_outgroup"]], "get_monophyletic() (tree method)": [[11, "ete4.Tree.get_monophyletic"]], "get_prop() (tree method)": [[11, "ete4.Tree.get_prop"]], "get_sisters() (tree method)": [[11, "ete4.Tree.get_sisters"]], "get_topology_id() (tree method)": [[11, "ete4.Tree.get_topology_id"]], "id (tree attribute)": [[11, "ete4.Tree.id"]], "img_style (tree property)": [[11, "ete4.Tree.img_style"]], "init_from_ete() (tree method)": [[11, "ete4.Tree.init_from_ete"]], "init_from_newick() (tree method)": [[11, "ete4.Tree.init_from_newick"]], "is_collapsed (tree property)": [[11, "ete4.Tree.is_collapsed"]], "is_initialized (tree property)": [[11, "ete4.Tree.is_initialized"]], "is_leaf (tree attribute)": [[11, "ete4.Tree.is_leaf"]], "is_monophyletic() (tree method)": [[11, "ete4.Tree.is_monophyletic"]], "is_root (tree attribute)": [[11, "ete4.Tree.is_root"]], "iter_prepostorder() (tree method)": [[11, "ete4.Tree.iter_prepostorder"]], "ladderize() (tree method)": [[11, "ete4.Tree.ladderize"]], "leaf_names() (tree method)": [[11, "ete4.Tree.leaf_names"]], "leaves() (tree method)": [[11, "ete4.Tree.leaves"]], "level (tree attribute)": [[11, "ete4.Tree.level"]], "lineage() (tree method)": [[11, "ete4.Tree.lineage"]], "name (tree attribute)": [[11, "ete4.Tree.name"]], "phonehome() (tree method)": [[11, "ete4.Tree.phonehome"]], "pop_child() (tree method)": [[11, "ete4.Tree.pop_child"]], "populate() (tree method)": [[11, "ete4.Tree.populate"]], "props (tree attribute)": [[11, "ete4.Tree.props"]], "prune() (tree method)": [[11, "ete4.Tree.prune"]], "remove_child() (tree method)": [[11, "ete4.Tree.remove_child"]], "remove_children() (tree method)": [[11, "ete4.Tree.remove_children"]], "remove_sister() (tree method)": [[11, "ete4.Tree.remove_sister"]], "render() (tree method)": [[11, "ete4.Tree.render"]], "resolve_polytomy() (tree method)": [[11, "ete4.Tree.resolve_polytomy"]], "reverse_children() (tree method)": [[11, "ete4.Tree.reverse_children"]], "robinson_foulds() (tree method)": [[11, "ete4.Tree.robinson_foulds"]], "root (tree attribute)": [[11, "ete4.Tree.root"]], "search_ancestors() (tree method)": [[11, "ete4.Tree.search_ancestors"]], "search_descendants() (tree method)": [[11, "ete4.Tree.search_descendants"]], "search_leaves_by_name() (tree method)": [[11, "ete4.Tree.search_leaves_by_name"]], "search_nodes() (tree method)": [[11, "ete4.Tree.search_nodes"]], "set_outgroup() (tree method)": [[11, "ete4.Tree.set_outgroup"]], "set_style() (tree method)": [[11, "ete4.Tree.set_style"]], "show() (tree method)": [[11, "ete4.Tree.show"]], "size (tree attribute)": [[11, "ete4.Tree.size"]], "sm_style (tree property)": [[11, "ete4.Tree.sm_style"]], "sort_descendants() (tree method)": [[11, "ete4.Tree.sort_descendants"]], "standardize() (tree method)": [[11, "ete4.Tree.standardize"]], "support (tree attribute)": [[11, "ete4.Tree.support"]], "swap_children() (tree method)": [[11, "ete4.Tree.swap_children"]], "to_str() (tree method)": [[11, "ete4.Tree.to_str"]], "to_ultrametric() (tree method)": [[11, "ete4.Tree.to_ultrametric"]], "traverse() (tree method)": [[11, "ete4.Tree.traverse"]], "unroot() (tree method)": [[11, "ete4.Tree.unroot"]], "up (tree attribute)": [[11, "ete4.Tree.up"]], "write() (tree method)": [[11, "ete4.Tree.write"]], "treeview": [[12, "module-treeview"]]}}) \ No newline at end of file +Search.setIndex({"docnames": ["about", "faqs", "index", "reference/index", "reference/reference_clustering", "reference/reference_operations", "reference/reference_parsers", "reference/reference_phylo", "reference/reference_seqgroup", "reference/reference_smartview", "reference/reference_taxonomy", "reference/reference_tree", "reference/reference_treeview", "tutorial/index", "tutorial/tutorial_drawing", "tutorial/tutorial_phylogeny", "tutorial/tutorial_taxonomy", "tutorial/tutorial_trees"], "filenames": ["about.rst", "faqs.rst", "index.rst", "reference/index.rst", "reference/reference_clustering.rst", "reference/reference_operations.rst", "reference/reference_parsers.rst", "reference/reference_phylo.rst", "reference/reference_seqgroup.rst", "reference/reference_smartview.rst", "reference/reference_taxonomy.rst", "reference/reference_tree.rst", "reference/reference_treeview.rst", "tutorial/index.rst", "tutorial/tutorial_drawing.rst", "tutorial/tutorial_phylogeny.rst", "tutorial/tutorial_taxonomy.rst", "tutorial/tutorial_trees.rst"], "titles": ["About", "Frequently Asked Questions (FAQs)", "Welcome to ETE\u2019s documentation!", "Reference Guide", "Clustering", "Tree operations", "Parsers", "Phylogenetic trees", "Multiple Sequence Alignments (SeqGroup)", "Smartview (web graphics)", "Taxonomy databases", "Tree (main class)", "Treeview (qt graphics)", "Tutorial", "Programmable tree drawing", "Phylogenetic trees", "Taxonomy databases", "Working with the Tree structure"], "terms": {"The": [0, 1, 5, 7, 9, 10, 11, 14, 15, 16], "toolkit": [0, 14, 16, 17], "wa": [0, 6, 14, 17], "origin": [0, 5, 7, 11, 14, 15, 16, 17], "develop": 0, "bioinformat": [0, 7, 17], "depart": 0, "cipf": 0, "valencia": 0, "spain": 0, "greatli": 0, "improv": [0, 15], "compar": [0, 11, 13, 15], "genom": [0, 7, 9, 15, 16], "group": [0, 7, 10, 11, 15, 17], "crg": 0, "barcelona": 0, "structur": [0, 2, 4, 7, 9, 11, 13, 14, 15], "comput": [0, 4, 9, 11, 17], "biologi": [0, 15], "unit": [0, 11, 14], "embl": 0, "heidelberg": 0, "germani": 0, "At": 0, "present": [0, 1, 7, 9, 10, 11, 15, 17], "i": [0, 4, 5, 7, 8, 9, 10, 11, 14, 15, 16, 17], "maintain": [0, 14], "metagenom": 0, "cbgp": 0, "madrid": 0, "citat": [0, 4, 7, 16], "3": [0, 1, 7, 9, 11, 14, 15, 16, 17], "reconstruct": 0, "analysi": [0, 4, 14, 15, 17], "visual": [0, 2, 11, 13, 17], "phylogenom": 0, "data": [0, 4, 9, 11, 14, 15, 16, 17], "jaim": 0, "huerta": [0, 7, 15], "cepa": [0, 7, 15], "francoi": 0, "serra": 0, "peer": 0, "bork": 0, "mol": 0, "biol": [0, 7], "evol": 0, "2016": 0, "doi": 0, "10": [0, 1, 8, 9, 14, 17], "1093": 0, "molbev": 0, "msw046": 0, "support": [0, 5, 6, 8, 9, 11, 17], "etetoolkit": [0, 16], "googlegroup": 0, "com": [0, 9, 11, 16], "contact": 0, "jhcepa": [0, 11], "gmail": 0, "eggnog": 0, "orthologi": [0, 15], "databas": [0, 2, 3, 7, 9, 13], "phylomedb": 0, "phylogenet": [0, 1, 2, 3, 13, 17], "polyphoni": 0, "3d": [0, 9], "compars": 0, "phylemon": 0, "speci": [0, 1, 7, 10, 11, 13, 14, 17], "delimit": 0, "method": [0, 7, 8, 9, 11, 14, 15, 16, 17], "treeko": [0, 7, 17], "duplic": [0, 1, 7, 11, 13], "awar": [0, 15], "tree": [0, 2, 3, 4, 6, 9, 10, 13], "agp": [0, 9], "align": [0, 2, 3, 7, 9, 11, 13, 14], "free": 0, "phylogeni": [0, 15], "itep": 0, "explor": [0, 1, 9, 11, 14, 15, 17], "microbi": 0, "pan": [0, 14, 15, 16], "t": [0, 1, 5, 6, 7, 9, 10, 11, 14, 15, 16, 17], "rmsd": 0, "protein": [0, 9], "classif": [0, 16], "cansnper": 0, "genotyp": 0, "classifi": 0, "clonal": 0, "pathogen": 0, "reprophylo": 0, "reproduc": [0, 14], "analys": [0, 14, 15, 17], "avocado": 0, "linux": 0, "autom": [0, 17], "test": 0, "streptomedb": 0, "2": [0, 1, 7, 9, 11, 14, 15, 16, 17], "0": [0, 1, 4, 5, 6, 7, 9, 10, 11, 14, 15, 16, 17], "natur": [0, 17], "product": 0, "produc": [0, 11, 17], "streptomycet": 0, "iq": [0, 9], "web": [0, 2, 3, 16], "server": [0, 3, 16], "fast": [0, 17], "accur": 0, "under": [0, 4, 10, 11, 15, 17], "maximum": [0, 8, 9, 17], "likelihood": 0, "A": [0, 1, 4, 7, 9, 10, 11, 14, 16, 17], "brief": 0, "introduct": 0, "its": [0, 5, 6, 7, 9, 10, 11, 14, 15, 16, 17], "programmat": 0, "featur": [0, 1, 4, 7, 11, 14, 15, 16, 17], "scipi": 0, "confer": 0, "2015": 0, "littl": 0, "comparison": [0, 15, 17], "how": [0, 4, 11, 14, 15], "handl": [0, 14, 17], "r": [0, 6, 9, 15, 17], "v": [0, 9, 14], "python": [0, 1, 11, 14, 15, 17], "climateecologi": 0, "blog": 0, "sever": [0, 1, 11, 14, 15, 16, 17], "wai": [0, 1, 11, 14, 15, 16, 17], "displai": 0, "associ": [0, 4, 7, 8, 9, 10, 11, 15, 16], "bacpathgenom": 0, "pars": [0, 4, 7, 10, 11, 15, 16, 17], "list": [0, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15], "word": [0, 10, 15, 17], "build": [0, 9], "trie": 0, "stackoverflow": 0, "annot": [0, 7, 10, 13], "holt": 0, "lab": 0, "script": [0, 1, 16], "guid": [0, 2], "ete3": 0, "api": [0, 9], "exampl": [0, 1, 4, 5, 6, 7, 8, 9, 11, 14, 15, 16, 17], "e": [0, 1, 5, 9, 10, 11, 14, 17], "noutahi": 0, "plot": [0, 14], "avrilom": 0, "includ": [1, 7, 8, 14, 15, 16, 17], "basic": [1, 7, 9, 13, 14, 15], "standalon": [1, 15], "program": [1, 11, 14, 17], "quickli": [1, 17], "your": [1, 15, 16, 17], "type": [1, 9, 11, 14, 15, 17], "ete4": [1, 9, 11, 13, 14, 15, 17], "file": [1, 4, 6, 7, 8, 9, 10, 11, 14, 15, 16, 17], "termin": [1, 11, 14, 15, 17], "run": [1, 9], "For": [1, 7, 10, 11, 14, 15, 16, 17], "instanc": [1, 7, 10, 11, 14, 15, 16, 17], "mytreefil": 1, "nw": [1, 4, 9, 11, 14, 15, 17], "simpl": [1, 4, 9, 14, 15, 16, 17], "implement": [1, 7, 14, 17], "doe": [1, 10, 14, 15, 16, 17], "allow": [1, 7, 9, 10, 11, 14, 15, 16, 17], "fanci": 1, "custom": [1, 10, 11, 13, 16], "howev": [1, 14, 15, 16, 17], "more": [1, 7, 11, 14, 15, 17], "than": [1, 5, 11, 14, 15, 16, 17], "main": [1, 2, 3, 9, 14, 16, 17], "goal": 1, "provid": [1, 7, 8, 9, 10, 11, 14, 15, 16, 17], "librari": 1, "so": [1, 5, 7, 9, 16, 17], "you": [1, 7, 8, 14, 15, 16, 17], "creat": [1, 4, 5, 9, 11, 15], "own": [1, 14, 15, 17], "manipul": [1, 14, 17], "shell": 1, "could": [1, 4, 11, 14, 15, 17], "from": [1, 5, 6, 7, 9, 10, 11, 14, 15, 16], "import": [1, 11, 14, 15, 16, 17], "t1": [1, 4, 11, 17], "b": [1, 4, 5, 9, 11, 14, 17], "c": [1, 4, 5, 9, 11, 14, 17], "string": [1, 4, 7, 8, 11, 15, 17], "t2": [1, 4, 11, 15, 17], "open": [1, 4, 9, 10, 11, 17], "mani": [1, 7, 9, 11, 14, 15, 17], "tutori": [1, 2], "follow": [1, 4, 7, 11, 14, 15, 16, 17], "shortcut": 1, "note": [1, 7, 11, 14, 15, 16, 17], "assum": [1, 7, 17], "tip1": 1, "There": [1, 11, 14, 15, 17], "thi": [1, 4, 7, 8, 9, 11, 14, 15, 16, 17], "easiest": [1, 16], "one": [1, 4, 7, 9, 11, 14, 15, 16, 17], "travers": [1, 5, 11, 13, 14], "print": [1, 5, 8, 11, 15, 16, 17], "ye": [1, 15], "current": [1, 5, 7, 8, 9, 10, 11, 15, 17], "strategi": [1, 11, 16, 17], "pre": [1, 9, 10, 11, 14, 17], "post": [1, 9, 11, 17], "level": [1, 10, 11, 15, 17], "over": [1, 7, 8, 11, 14, 15, 17], "check": [1, 11, 13, 14, 15], "differ": [1, 7, 9, 11, 13, 14, 15, 17], "http": [1, 11, 16, 17], "packag": [1, 15, 16], "org": [1, 11, 17], "tutorial_tre": 1, "html": [1, 9], "slightli": [1, 17], "across": 1, "subformat": 1, "label": [1, 7, 9, 14, 15, 16, 17], "descript": [1, 4, 11, 14, 17], "flexibl": [1, 17], "d": [1, 4, 5, 7, 9, 11, 14, 15, 17], "7": [1, 9, 11, 17], "f": [1, 5, 9, 11, 14, 15, 17], "5": [1, 4, 9, 11, 14, 15, 17], "1": [1, 4, 5, 6, 7, 9, 10, 11, 14, 15, 16, 17], "6": [1, 7, 9, 11, 14, 17], "h": [1, 7, 9, 11, 14, 15, 17], "8": [1, 7, 9, 11, 14, 17], "w": [1, 9, 11, 14, 17], "length": [1, 6, 9, 11, 15, 17], "4": [1, 9, 11, 14, 15, 17], "leav": [1, 4, 5, 7, 9, 11, 14, 15, 16], "onli": [1, 5, 7, 9, 11, 14, 15, 16, 17], "9": [1, 9, 10, 11, 15, 17], "100": [1, 14, 17], "topologi": [1, 5, 7, 11, 13, 14, 15], "In": [1, 11, 14, 15, 16, 17], "specifi": [1, 4, 9, 11, 15, 17], "parser": [1, 2, 3, 4, 7, 9, 11, 15, 17], "my_tre": 1, "when": [1, 5, 7, 11, 14, 15, 16, 17], "default": [1, 4, 6, 7, 11, 14, 15, 16, 17], "": [1, 4, 6, 7, 9, 10, 11, 14, 15], "distanc": [1, 4, 5, 9, 11, 13, 15], "depend": [1, 14, 15, 17], "If": [1, 5, 7, 8, 10, 11, 14, 15, 17], "want": [1, 5, 14, 17], "save": [1, 9, 14, 15, 17], "other": [1, 5, 7, 11, 14, 15, 16, 17], "properti": [1, 4, 5, 6, 7, 9, 10, 11, 13, 15, 16], "need": [1, 6, 9, 10, 14, 15, 17], "them": [1, 5, 8, 10, 11, 14, 15, 17], "call": [1, 9, 11, 14, 15, 16, 17], "prop": [1, 5, 6, 7, 9, 11, 14, 15, 16, 17], "size": [1, 5, 7, 9, 10, 11, 14, 17], "none": [1, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 17], "start": [1, 6, 9, 11, 14, 17], "version": [1, 7, 9, 15, 16, 17], "render": [1, 3, 11, 13, 15], "mode": [1, 11, 14], "automat": [1, 7, 11, 13, 14, 17], "detect": [1, 7, 11, 13, 16, 17], "filenam": [1, 9], "extens": [1, 11, 14, 15], "code": [1, 5, 7, 9, 14, 15, 16, 17], "vector": [1, 14], "mytre": [1, 14], "chang": [1, 5, 6, 11, 15, 17], "layout": [1, 11, 13, 15], "By": [1, 4, 7, 15, 17], "function": [1, 4, 7, 9, 11, 15, 16], "abl": [1, 17], "add": [1, 4, 5, 7, 8, 9, 10, 11, 16, 17], "remov": [1, 3, 5, 9, 11], "modifi": [1, 9, 11, 13, 14], "almost": 1, "ani": [1, 5, 6, 9, 10, 11, 14, 15, 16, 17], "element": [1, 9, 11, 14, 17], "face": [1, 3, 11, 13], "attrfac": [1, 9, 14], "treestyl": [1, 3, 11, 14, 15], "def": [1, 7, 14, 15, 17], "my_layout": 1, "is_leaf": [1, 6, 11, 14, 17], "name_fac": 1, "els": [1, 14, 17], "fsize": [1, 14], "small": [1, 9, 14, 17], "font": 1, "prefer": [1, 9, 15], "posit": [1, 5, 6, 11, 17], "add_face_to_nod": [1, 14], "column": [1, 9, 11, 14], "right": [1, 9, 11, 14, 17], "show_leaf_nam": [1, 11, 14], "fals": [1, 5, 7, 9, 10, 11, 14, 15, 17], "again": [1, 15, 17], "layout_fn": [1, 14], "g": [1, 6, 9, 11, 14, 17], "m1_t1": 1, "m_1_t2": 1, "m2_t3": 1, "m2_t1": 1, "m2_t2": 1, "show": [1, 9, 11, 15, 17], "tree_styl": [1, 9, 11, 14, 15], "style": [1, 9, 11, 13], "experi": 1, "extrem": 1, "convert": [1, 5, 7, 10, 11, 15, 16, 17], "ultrametr": [1, 5, 9, 11], "make": [1, 11, 14, 16, 17], "end": [1, 6, 9, 11, 14, 17], "same": [1, 7, 9, 11, 14, 15, 16, 17], "popul": [1, 3, 5, 11, 14, 17], "50": [1, 6, 9, 14, 17], "random_branch": [1, 5, 11, 14], "true": [1, 5, 6, 7, 8, 9, 10, 11, 14, 16, 17], "to_ultrametr": [1, 3, 5, 11], "enabl": 1, "force_topologi": 1, "option": [1, 7, 14, 17], "seen": [1, 7, 11, 17], "engin": [1, 14, 15], "case": [1, 11, 14, 15, 17], "actual": [1, 17], "about": [2, 7, 9, 14, 15, 17], "highlight": [2, 14], "tool": [2, 17], "us": [2, 4, 5, 7, 8, 9, 10, 11, 13, 14, 15, 17], "relat": [2, 5, 9, 11, 16, 17], "link": [2, 4, 7, 9, 13, 14, 17], "resourc": [2, 16], "frequent": [2, 17], "ask": [2, 9, 15], "question": 2, "faq": 2, "gener": [2, 5, 11, 14, 15, 17], "brows": [2, 13], "read": [2, 6, 7, 9, 13, 14, 15], "write": [2, 7, 8, 11, 13, 15], "work": [2, 7, 13, 14], "programm": [2, 13, 15], "draw": [2, 13, 15], "taxonomi": [2, 3, 7, 13], "refer": [2, 5, 7, 11, 14, 15, 16, 17], "class": [2, 3, 4, 5, 7, 8, 9, 10, 14, 15, 16, 17], "oper": [2, 3, 8, 11, 13, 14], "cluster": [2, 3, 17], "multipl": [2, 3, 7, 13, 16], "sequenc": [2, 3, 5, 7, 9, 13], "seqgroup": [2, 3, 15], "smartview": [2, 3, 11], "graphic": [2, 3, 4, 14, 17], "treeview": [2, 3, 14], "qt": [2, 3, 14], "index": [2, 4], "modul": [2, 8, 9, 14, 16, 17], "search": [2, 9, 11], "page": [2, 14, 15], "walker": [3, 5], "assert_root_consist": [3, 5], "common_ancestor": [3, 5, 11, 14, 15, 17], "insert_intermedi": [3, 5], "join_branch": [3, 5], "ladder": [3, 5, 11], "maybe_convert_internal_nodes_to_support": [3, 5], "move": [3, 5], "rehang": [3, 5], "set_outgroup": [3, 5, 11, 17], "sort": [3, 5, 9, 10, 11, 14], "swap_prop": [3, 5], "update_s": [3, 5], "update_sizes_al": [3, 5], "update_sizes_from": [3, 5], "walk": [3, 5], "newick": [3, 4, 7, 9, 11, 13, 15, 16], "nexu": 3, "phylotre": [3, 10, 15, 16, 17], "evolev": [3, 15], "clustertre": [3, 4], "ncbitaxa": [3, 16], "gtdbtaxa": [3, 16], "nodestyl": [3, 14], "children": [4, 7, 9, 11, 14, 17], "text_arrai": 4, "fdist": 4, "spearman_dist": 4, "sourc": [4, 6, 7, 8, 9, 10, 14, 17], "base": [4, 7, 9, 11, 14, 15, 16, 17], "repres": [4, 5, 6, 9, 10, 11, 14, 15, 16, 17], "result": [4, 8, 9, 10, 11, 15, 17], "__init__": [4, 7, 8, 9, 10, 11, 14], "paramet": [4, 5, 7, 8, 9, 10, 11, 14], "object": [4, 6, 7, 9, 11, 14, 17], "dict": [4, 6, 9, 10, 11], "content": [4, 6, 7, 11, 13], "singl": [4, 7, 10, 11, 14, 15, 17], "node": [4, 5, 6, 7, 9, 10, 11, 13, 16], "It": [4, 7, 9, 10, 11, 14, 15, 16, 17], "can": [4, 7, 8, 9, 10, 11, 14, 15, 16, 17], "number": [4, 5, 6, 7, 9, 10, 11, 14, 15, 16, 17], "format": [4, 6, 7, 8, 9, 10, 11, 14, 15, 16, 17], "fine": [4, 11], "grain": [4, 11], "interpret": [4, 9, 11, 15, 17], "see": [4, 7, 9, 11, 14, 15, 17], "pyx": [4, 11], "empti": [4, 11, 14, 15, 16, 17], "name": [4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 17], "t3": [4, 9, 11, 17], "t4": [4, 11], "home": [4, 11], "user": [4, 11, 14, 16, 17], "my": [4, 11, 14], "deviat": 4, "get_dunn": 4, "calcul": [4, 7, 10, 11, 15, 17], "dunn": 4, "given": [4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 16], "set": [4, 5, 7, 8, 9, 10, 11, 13, 14, 15, 17], "descend": [4, 7, 10, 11, 13], "get_silhouett": 4, "silhouett": 4, "valu": [4, 5, 7, 9, 11, 14, 15, 17], "euclidean": 4, "also": [4, 7, 9, 10, 11, 14, 15, 16, 17], "profil": [4, 14], "mean": [4, 9, 14, 15], "inter": 4, "intra": 4, "analyz": [4, 17], "intraclust": 4, "interclust": 4, "silhouet": 4, "ar": [4, 7, 8, 10, 11, 14, 15, 16, 17], "centroid": 4, "diamet": [4, 14], "linkag": 4, "rousseeuw": 4, "p": [4, 9, 15, 17], "j": [4, 7, 11, 17], "1987": 4, "aid": [4, 9], "valid": [4, 5, 7, 9, 10, 11, 17], "appl": [4, 9], "math": [4, 9], "20": [4, 9, 14], "53": [4, 9], "65": [4, 14], "intercluster_dist": 4, "intracluster_dist": 4, "leaf_profil": 4, "yield": [4, 5, 9, 11, 17], "link_to_arrayt": 4, "arraytbl": 4, "arrayt": 4, "return": [4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 16, 17], "been": [4, 15], "found": [4, 7, 14, 15, 17], "row": [4, 9, 11], "expect": [4, 7, 11, 15, 17], "match": [4, 7, 9, 10, 11, 15], "leaf": [4, 6, 7, 9, 10, 11, 15, 16, 17], "set_distance_funct": 4, "fn": [4, 7], "silouett": 4, "acept": 4, "two": [4, 5, 11, 14, 15, 17], "numpi": 4, "arrai": [4, 9, 11], "argument": [4, 6, 7, 10, 14, 15, 17], "my_dist_fn": 4, "lambda": [4, 11, 15, 16, 17], "x": [4, 6, 9, 11], "y": [4, 6, 9, 11, 17], "ab": [4, 17], "root": [5, 7, 11, 13, 14, 16], "branch": [5, 9, 10, 11, 13, 15], "prun": 5, "add_next_branch": 5, "self": [5, 7, 9, 11, 14, 17], "first_visit": 5, "go_back": 5, "has_unvisited_branch": 5, "node_id": [5, 9, 11], "bprop": [5, 11], "rais": [5, 9, 11, 17], "assertionerror": 5, "look": [5, 17], "inconsist": 5, "last": [5, 9, 11, 17], "common": [5, 7, 9, 10, 11, 14, 15], "lineag": [5, 7, 10, 11, 15, 16], "don": 5, "have": [5, 10, 11, 15, 17], "ancestor": [5, 9, 10, 11], "whose": [5, 14, 17], "we": [5, 11, 14, 15, 16, 17], "find": [5, 11, 15], "intermedi": [5, 16], "insert": 5, "between": [5, 7, 11, 13, 15], "parent": [5, 9, 10, 11, 17], "an": [5, 7, 8, 9, 11, 14, 15, 16, 17], "substitut": [5, 15], "child": [5, 7, 10, 11, 17], "topolog": [5, 7, 11, 15, 17], "revers": [5, 9, 11], "accord": [5, 6, 7, 9, 11, 14, 15, 17], "each": [5, 6, 7, 8, 9, 10, 11, 14, 15, 16, 17], "partit": [5, 7, 11, 15, 17], "instead": [5, 11, 14, 17], "sum": [5, 11, 17], "lenght": [5, 11, 17], "biggest": 5, "first": [5, 7, 9, 10, 11, 14, 15, 16], "possibl": [5, 7, 11, 14, 15, 17], "intern": [5, 7, 9, 10, 11, 14, 15, 16, 17], "shift": 5, "respect": [5, 17], "names_librari": [5, 11, 17], "dist_rang": [5, 11], "support_rang": [5, 11], "random": [5, 11, 14, 17], "all": [5, 6, 7, 8, 9, 10, 11, 14, 15, 16, 17], "ad": [5, 7, 9, 10, 11, 13, 14, 16, 17], "either": [5, 9, 16, 17], "necessari": [5, 15, 16, 17], "too": [5, 7, 11, 17], "collect": [5, 8, 11, 14, 17], "short": 5, "letter": [5, 7, 15], "rang": [5, 9, 14, 15], "tupl": [5, 8, 9, 11, 14], "min": [5, 10], "max": [5, 14], "child_po": 5, "reroot": [5, 11], "outgroup": [5, 11, 13], "new": [5, 7, 9, 11, 15, 17], "still": [5, 11], "where": [5, 6, 7, 9, 11, 14, 15, 16, 17], "futur": [5, 16], "dist": [5, 6, 9, 11, 14, 17], "kei": [5, 7, 16, 17], "place": [5, 11, 14, 15, 17], "n1": [5, 9, 14, 17], "n2": [5, 9, 14, 17], "swap": [5, 9], "equidist": [5, 11], "updat": [5, 8, 9, 10, 11, 15, 16], "iter": [5, 7, 8, 11], "except": [6, 9, 17], "newickerror": 6, "content_repr": 6, "dump": [6, 10, 15, 16], "fp": 6, "format_root_nod": [6, 7, 11], "is_leaf_fn": [6, 7, 11, 17], "represent": [6, 7, 8, 9, 11, 14, 17], "error": [6, 9, 11], "text": [6, 8, 9, 11, 14, 15, 16, 17], "get_extended_prop": 6, "extract": [6, 9, 16], "nhx": [6, 15, 17], "foo": 6, "bar": [6, 9], "get_prop": [6, 11], "abc": [6, 9], "123": 6, "load": [6, 9, 11, 14, 15, 16, 17], "tree_text": 6, "tree_class": 6, "make_pars": 6, "int": [6, 9, 14], "prop_repr": 6, "accept": [6, 11, 14, 16, 17], "quot": 6, "escaped_char": 6, "n": [6, 8, 9, 11, 14, 15, 17], "ha": [6, 9, 11, 15, 17], "charact": [6, 15], "escap": 6, "read_cont": 6, "po": [6, 9], "read_nod": 6, "nodes_text": 6, "thei": [6, 7, 11, 14, 15, 16, 17], "repr_short": 6, "obj": 6, "max_len": 6, "limit": [6, 9, 14, 15, 17], "skip_quoted_nam": 6, "skip_spaces_and_com": 6, "after": [6, 7, 11, 14, 15, 17], "whitespac": 6, "comment": [6, 8], "unquot": 6, "nexuserror": 6, "apply_transl": 6, "translat": [6, 7, 10, 15, 16], "get_command": 6, "text_sect": 6, "command": [6, 9, 17], "get_sect": 6, "section_nam": 6, "arg": [6, 9, 14], "correspond": [6, 7, 9, 10, 14, 15, 17], "section": [6, 17], "full": [6, 11, 15, 17], "get_tre": 6, "transform": [6, 9], "done": [6, 15, 17], "alg_format": [7, 15], "fasta": [7, 8, 15], "sp_naming_funct": [7, 15, 16], "_parse_speci": 7, "store": [7, 8, 9, 11, 15, 16, 17], "extend": [7, 9, 11, 15, 17], "standard": [7, 11, 14, 17], "specif": [7, 9, 14, 16, 17], "phylogent": 7, "initi": [7, 9, 14, 15], "which": [7, 11, 14, 15, 16, 17], "contain": [7, 8, 9, 10, 11, 14, 15, 16, 17], "phylip": [7, 8], "iphylip": [7, 8, 15], "interleav": [7, 8], "get": [7, 9, 10, 13, 15], "set_species_naming_funct": [7, 15], "identifi": [7, 9, 15, 16], "annotate_gtdb_taxa": [7, 16], "taxid_attr": [7, 10, 16], "tax2nam": [7, 10, 16], "tax2track": [7, 10, 16], "tax2rank": [7, 10, 16], "dbfile": [7, 10], "annotate_ncbi_taxa": [7, 16], "ncbi": [7, 10, 13], "encod": [7, 8, 11, 15, 17], "taxid": [7, 9, 10, 13], "spname": 7, "scientif": [7, 9, 10, 14, 16], "spci": 7, "named_lineag": [7, 10, 16], "track": [7, 10, 16], "inform": [7, 9, 11, 13, 14, 17], "should": [7, 11, 14, 15, 17], "access": [7, 14, 15, 16, 17], "dictionari": [7, 9, 10, 11, 14, 15, 16, 17], "Its": [7, 17], "avoid": [7, 8, 17], "queri": [7, 16, 17], "rank": [7, 10, 16], "param": 7, "local": [7, 10, 13], "copi": [7, 11, 13, 14], "tax2lineag": [7, 16], "collapse_lineage_specific_expans": [7, 15], "return_copi": 7, "expans": [7, 15], "tip": [7, 9, 17], "randomli": [7, 11, 17], "chosen": 7, "within": [7, 9, 11, 13, 15, 16], "suppli": [7, 11], "criteria": [7, 11], "prune": [7, 9, 10, 11, 13, 15, 16], "process": [7, 9, 15, 16, 17], "get_ag": [7, 15], "species2ag": [7, 15], "phylostratigraf": 7, "describ": [7, 11, 15], "gabaldon": [7, 15], "2011": [7, 15], "assign": [7, 9, 11, 15, 16], "event": [7, 9, 13], "rel": [7, 9, 11, 13], "tempor": [7, 15], "scale": [7, 9, 15], "wide": [7, 9, 15, 17], "studi": [7, 15], "27": 7, "38": [7, 9], "45": [7, 14, 16], "get_age_balanced_outgroup": 7, "better": [7, 17], "balanc": [7, 11, 17], "ag": [7, 15], "get_descendant_evol_ev": [7, 15], "sos_thr": [7, 15], "speciat": [7, 15, 17], "overlap": [7, 17], "linag": [7, 16], "detail": [7, 14, 17], "human": [7, 9, 11, 14, 15, 17], "phylom": 7, "dopazo": 7, "2007": [7, 15], "r109": 7, "get_farthest_oldest_leaf": [7, 15], "farthest": [7, 11, 15, 17], "oldest": [7, 15], "requir": [7, 9, 10, 11, 14, 15, 16, 17], "estim": [7, 14], "pointer": [7, 14, 17], "receiv": [7, 11, 14], "uniqu": [7, 9, 11, 16], "dynam": [7, 11, 14, 15, 17], "collaps": [7, 9, 10, 11], "get_farthest_oldest_nod": [7, 15], "seq": [7, 8, 14], "get_my_evol_ev": [7, 15], "involv": [7, 15, 17], "scan": [7, 9, 15], "dup": [7, 9, 15], "algorithm": [7, 17], "leafnam": 7, "get_speciation_tre": [7, 15], "map_properti": 7, "autodetect_dupl": [7, 15], "newick_onli": [7, 15], "gene": [7, 9, 11, 13], "famili": [7, 11, 13, 14, 16], "marcet": [7, 15], "map": [7, 9, 11, 15], "subtre": [7, 9, 14, 17], "get_descendants_evol_ev": 7, "evoltyp": [7, 15], "get_speci": [7, 15], "cover": 7, "iter_speci": 7, "link_to_align": [7, 15], "kwarg": [7, 8, 9], "ncbi_compar": 7, "cached_cont": [7, 11], "reconcil": [7, 15], "species_tre": 7, "reconcili": 7, "evolutionari": [7, 9, 13, 17], "infer": [7, 15, 16, 17], "take": [7, 15, 17], "nodenam": 7, "parse_sp_nam": 7, "node_nam": 7, "split": [7, 11, 16, 17], "_": [7, 15, 17], "split_by_dup": [7, 15], "outfil": [7, 8, 11, 17], "str": [7, 9, 11], "output": [7, 8, 11, 15], "instad": [7, 11], "avail": [7, 11, 14, 15, 17], "bool": [7, 9, 11], "compat": [7, 11, 17], "reason": [7, 11, 15, 17], "sci_nam": [7, 9, 10, 11, 16], "ocur": 7, "etyp": [7, 15], "l": [7, 9, 14, 15, 17], "loss": [7, 15], "in_seq": [7, 15], "side": [7, 11], "out_seq": [7, 15], "sequenci": 8, "fix_dupl": 8, "path": [8, 11, 14, 15, 17], "altern": [8, 10, 15, 17], "forc": 8, "char": 8, "To": [8, 11, 14, 15, 16, 17], "effect": [8, 11], "relax": 8, "phylip_relax": 8, "iphylip_relax": 8, "seqs_str": 8, "seq1": 8, "aaaaaaaaaaa": 8, "seq2": 8, "ttttttttttttt": 8, "get_seq": [8, 9], "get_entri": 8, "entri": 8, "iter_entri": 8, "item": [8, 9, 10, 11, 14, 17], "set_seq": 8, "written": [8, 14], "keep": [9, 10, 11, 14, 15, 17], "rest": [9, 14, 17], "talk": 9, "world": 9, "id": [9, 11, 17], "put": 9, "delet": [9, 11], "apptre": 9, "core": [9, 11, 15], "include_prop": [9, 11], "exclude_prop": [9, 11], "timer": 9, "float": [9, 11, 14], "select": [9, 11, 17], "activ": 9, "namedtupl": 9, "0x7f81c0547e20": 9, "globalstuff": 9, "activate_clad": 9, "tree_id": 9, "activate_nod": 9, "add_tre": 9, "add_trees_from_request": 9, "app": 9, "callback": 9, "change_selection_nam": 9, "tid": 9, "copy_styl": 9, "deactivate_clad": 9, "deactivate_nod": 9, "del_tre": 9, "everywher": 9, "appear": [9, 11, 15, 17], "referenc": 9, "find_nod": 9, "get_active_clad": 9, "get_command_search": 9, "appropri": [9, 15], "get_draw": 9, "get_eval_search": 9, "express": 9, "evalu": 9, "get_field": 9, "valid_extra": 9, "field": 9, "miss": [9, 15, 17], "invalid": 9, "get_layout": 9, "get_layouts_from_gett": 9, "layout1": 9, "submodul": 9, "get_newick": 9, "max_mb": 9, "get_nodes_info": 9, "get_par": 9, "count_leav": 9, "get_pars": 9, "get_search_funct": 9, "get_selection_info": 9, "info": [9, 11, 14], "get_select": 9, "get_stat": 9, "pname": 9, "some": [9, 14, 15, 17], "statist": 9, "get_tid": 9, "get_topological_search": 9, "pattern": [9, 17], "get_trees_from_fil": 9, "fileobject": 9, "get_trees_from_form": 9, "form": [9, 11], "request": [9, 11], "get_trees_from_nexus_or_newick": 9, "btext": 9, "name_newick": 9, "safe_mod": 9, "compress": [9, 11], "global": 9, "initialize_tree_styl": 9, "json_error": 9, "load_tre": 9, "load_tree_from_newick": 9, "memori": [9, 10, 17], "mainten": 9, "check_interv": 9, "60": [9, 14], "max_tim": 9, "1800": 9, "perform": [9, 14, 15, 17], "task": [9, 17], "everi": [9, 11, 15, 17], "second": [9, 15, 17], "make_nam": 9, "like": [9, 11, 16, 17], "modify_tree_field": 9, "nice_html": 9, "titl": 9, "open_browser_window": 9, "host": [9, 11], "port": [9, 11], "try": 9, "browser": 9, "window": 9, "prune_by_select": 9, "remove_act": 9, "idx": 9, "remove_active_clad": 9, "remove_search": 9, "remove_select": 9, "req_json": 9, "what": [9, 17], "json": 9, "would": [9, 15, 17], "gracefulli": 9, "abort": 9, "retrieve_layout": 9, "retrieve_tre": 9, "retriev": [9, 15, 16, 17], "previous": [9, 14, 15, 17], "pickl": [9, 17], "tmp": 9, "run_smartview": 9, "localhost": [9, 11], "5000": [9, 11], "quiet": [9, 11], "keep_serv": [9, 11], "open_brows": [9, 11], "safer_ev": 9, "safer": 9, "eval": 9, "search_to_select": 9, "key_text": 9, "sub": [9, 10, 17], "store_act": 9, "store_search": 9, "store_select": 9, "touch_and_get": 9, "unselect_nod": 9, "update_app_available_layout": 9, "update_layout": 9, "active_layout": 9, "front": [9, 11], "statu": 9, "update_node_prop": 9, "update_node_styl": 9, "update_select": 9, "alia": 9, "viewport": 9, "panel": 9, "zoom": 9, "collapsed_id": 9, "subclass": 9, "extra": [9, 11, 14, 17], "collapse_s": 9, "min_siz": 9, "npanel": 9, "draw_aligned_head": 9, "draw_collaps": 9, "collapsed_nod": 9, "active_children": 9, "selected_children": 9, "draw_cont": 9, "point": [9, 11, 15, 16, 17], "draw_nod": 9, "bdx": 9, "bdy": 9, "bdy0": 9, "bdy1": 9, "flush_outlin": 9, "minimum_dx": 9, "box": 9, "outlin": 9, "reset": 9, "get_active_children": 9, "get_collapsed_nod": 9, "get_outlin": 9, "get_popup_prop": 9, "safe": [9, 17], "popup": [9, 11], "get_selected_children": 9, "is_fully_collaps": 9, "utterli": 9, "width": [9, 11, 14], "on_first_visit": 9, "on_last_visit": 9, "draweraligncircfac": 9, "draweralignrectfac": 9, "drawercirc": 9, "minim": [9, 10], "circular": [9, 17], "circ": 9, "content_s": 9, "draw_childrenlin": 9, "p1": 9, "p2": 9, "arc": 9, "span": 9, "draw_lengthlin": 9, "parent_of": 9, "line": [9, 14, 17], "draw_nodebox": 9, "searched_bi": 9, "draw_nodedot": 9, "center": [9, 14], "max_siz": 9, "active_nod": 9, "minimum_dr": 9, "get_box": 9, "in_viewport": 9, "is_smal": 9, "node_s": 9, "drawercircfac": 9, "bdr": 9, "bda": 9, "bda0": 9, "bda1": 9, "drawerrect": 9, "rectangular": [9, 14], "rect": [9, 14], "circl": [9, 14], "squar": 9, "sm_style": [9, 11], "drawerrectfac": 9, "dx": 9, "dy": 9, "treeactiv": 9, "clade": [9, 16], "drawn_siz": 9, "min_x": 9, "get_asec": 9, "annular": 9, "sector": 9, "get_empty_act": 9, "get_rect": 9, "rectangl": 9, "make_box": 9, "safe_str": 9, "stack": 9, "box1": 9, "box2": 9, "pad": 9, "cartesian": 9, "circumasec": 9, "circumscrib": 9, "circumrect": 9, "asec": 9, "clip_angl": 9, "a1": [9, 14], "a2": [9, 14], "angl": 9, "pi": 9, "draw_arc": 9, "larg": [9, 11, 17], "arc_typ": 9, "draw_arrai": 9, "tooltip": 9, "draw_arrow": 9, "orient": 9, "arrow_typ": 9, "arrow": 9, "bound": 9, "draw_circl": 9, "radiu": [9, 14], "circle_typ": 9, "draw_ellips": 9, "rx": 9, "ry": 9, "ellipse_typ": 9, "draw_html": 9, "html_type": 9, "draw_img": 9, "img": 9, "img_typ": 9, "draw_lin": 9, "line_typ": 9, "draw_outlin": 9, "draw_rect": 9, "rect_typ": 9, "draw_rhombu": 9, "rhombus_typ": 9, "rhombu": 9, "draw_slic": 9, "da": 9, "slice_typ": 9, "draw_text": 9, "text_typ": 9, "rotat": 9, "anchor": 9, "draw_triangl": 9, "triangle_typ": 9, "triangl": 9, "defin": [9, 14, 15, 17], "top": [9, 11, 14, 17], "left": [9, 17], "first_valu": 9, "get_line_typ": 9, "get_x": 9, "get_i": 9, "intersects_angl": 9, "part": [9, 14, 15, 16, 17], "intersects_box": 9, "b1": [9, 14], "b2": [9, 14], "kind": [9, 17], "intersect": 9, "intersects_seg": 9, "s1": 9, "s2": 9, "segment": 9, "split_thru_negative_xaxi": 9, "cut": [9, 11, 17], "summari": 9, "summar": 9, "alignlinkfac": 9, "stroke_color": 9, "grai": [9, 14], "stroke_width": 9, "opac": [9, 14], "solid": [9, 14], "dot": [9, 11, 14], "dash": [9, 14], "compute_bounding_box": 9, "dx_to_closest_child": 9, "n_row": 9, "n_col": 9, "dx_befor": 9, "dy_befor": 9, "fit": 9, "overriden": 9, "inherit": 9, "alignmentfac": 9, "seqtyp": 9, "aa": [9, 17], "gap_format": [9, 14], "seq_format": [9, 14], "height": [9, 11, 14, 17], "fgcolor": [9, 14], "black": [9, 14, 17], "bgcolor": [9, 14], "bcc3d0": 9, "gapcolor": [9, 14], "gap_linewidth": 9, "max_fsiz": 9, "12": [9, 14, 16, 17], "ftype": 9, "san": 9, "serif": 9, "padding_x": 9, "padding_i": 9, "build_block": 9, "arrowfac": 9, "color": [9, 14, 17], "5px": 9, "min_fsiz": 9, "15": [9, 11, 14, 17], "attr": 9, "formatt": 9, "get_cont": 9, "circlefac": [9, 14], "et": [9, 10, 11, 13, 14, 15, 16], "piec": [9, 14], "compute_fs": 9, "zx": 9, "zy": 9, "in_aligned_viewport": 9, "htmlface": 9, "imgfac": [9, 14], "img_path": [9, 14], "legendfac": 9, "colormap": 9, "outlinefac": 9, "collapsing_height": 9, "piechartfac": 9, "compute_pi": 9, "rectfac": 9, "scalefac": 9, "scale_rang": 9, "tick_width": 9, "80": 9, "line_width": 9, "0f": 9, "selectedcirclefac": 9, "selectedfac": 9, "selectedrectfac": 9, "seqfac": [9, 14], "poswidth": 9, "seqmotiffac": [9, 14], "motif": [9, 14], "build_region": 9, "region": 9, "stackedbarfac": 9, "seri": 9, "whatev": 9, "textfac": [9, 14], "alignedgrid": 9, "facecontain": 9, "grid": 9, "horizont": 9, "idea": [9, 11, 17], "header": [9, 11], "footer": 9, "col": [9, 14], "face1": 9, "face2": 9, "add_fac": [9, 11, 14], "make_fac": 9, "karg": [9, 14], "attribut": [9, 10, 11, 13, 14, 15, 16], "0030c1": 9, "rgb": [9, 14], "svg_color": 9, "ffffff": 9, "node_bgcolor": 9, "partition_bgcolor": 9, "faces_bgcolor": 9, "vt_line_color": [9, 14], "000000": [9, 14], "hz_line_color": [9, 14], "hz_line_typ": [9, 14], "integ": [9, 11], "vt_line_typ": [9, 14], "shape": [9, 14], "sphere": [9, 14], "draw_descend": 9, "mark": 9, "hz_line_width": [9, 14], "pixel": [9, 11, 14], "zero": [9, 11, 17], "indic": 9, "cosmet": 9, "pen": 9, "alwai": [9, 11, 15, 17], "drawn": [9, 14], "independ": [9, 11, 14, 17], "painter": 9, "vt_line_width": [9, 14], "init": 9, "aligned_fac": 9, "legend": 9, "set_node_styl": 9, "set_tree_styl": 9, "cased_nam": 9, "txt": 9, "active_fac": 9, "active_face_po": 9, "add_legend": 9, "variabl": 9, "discret": 9, "value_rang": 9, "color_rang": 9, "aligned_panel_foot": 9, "aligned_panel_head": 9, "get_legend": 9, "selected_fac": 9, "selected_face_po": 9, "layoutgenomiccontext": 9, "nside": 9, "conservation_threshold": 9, "70": [9, 14], "gene_nam": 9, "tooltip_prop": 9, "anchor_stroke_color": 9, "anchor_stroke_width": 9, "3px": 9, "non_conserved_color": 9, "d0d0d0": 9, "collapse_conserv": 9, "collapse_by_conserv": 9, "get_context": 9, "get_tooltip": 9, "layoutbranchlength": 9, "branch_top": 9, "8d8d8d": 9, "layoutbranchsupport": 9, "branch_bottom": 9, "fa8072": 9, "layoutleafnam": 9, "branch_right": 9, "layoutnumberleav": 9, "collapsed_onli": [9, 11], "layoutoutlin": 9, "lightgrai": 9, "layoutpfamdomain": 9, "pfam": 9, "bf5c3f": 9, "cysprx_c": 9, "55bf3f": 9, "120_rick_ant": 9, "3fb6bf": 9, "12tm_1": 9, "bf3f60": 9, "14": [9, 14, 16], "97bf3f": 9, "17kda_anti_2": 9, "67bf3f": 9, "hacid_dh": 9, "afbf3f": 9, "hacid_dh_c": 9, "3fbf5c": 9, "oxoacid_dh": 9, "7bbf3f": 9, "oxogl_dehyd_n": 9, "bfad3f": 9, "ph_phosp": 9, "46bf3f": 9, "thiour_desulf": 9, "6f3fbf": 9, "23isl": 9, "3fb8bf": 9, "23s_rrna_ivp": 9, "3fbf98": 9, "2csk_n": 9, "3f99bf": 9, "2c_adapt": 9, "3fbfa4": 9, "2exr": 9, "3fbf4b": 9, "2fe": 9, "2s_ferredox": 9, "bf3fa9": 9, "2s_thioredx": 9, "3fafbf": 9, "2h": 9, "phosphodiest": 9, "3fbfb2": 9, "2hct": 9, "bebf3f": 9, "2og": 9, "feii_oxi": 9, "bf703f": 9, "feii_oxy_2": 9, "3fbf8a": 9, "feii_oxy_3": 9, "3fbcbf": 9, "feii_oxy_4": 9, "bf633f": 9, "feii_oxy_5": 9, "3f88bf": 9, "feii_oxy_6": 9, "3f64bf": 9, "fe_oxy_2": 9, "a83fbf": 9, "2tm": 9, "883fbf": 9, "2_5_rna_ligase2": 9, "973fbf": 9, "hao": 9, "bf493f": 9, "pap": 9, "3fbf82": 9, "alpha": 9, "bf693f": 9, "dmu": 9, "9_3": 9, "mt": 9, "aebf3f": 9, "3beta_hsd": 9, "bf3f9d": 9, "bf3f58": 9, "3h": 9, "3f74bf": 9, "3hboh": 9, "5ebf3f": 9, "3hcdh": 9, "3fbf89": 9, "3hcdh_n": 9, "893fbf": 9, "3hcdh_rff": 9, "bfb43f": 9, "3keto": 9, "disac_hyd": 9, "3fbf75": 9, "40s_s4_c": 9, "bfab3f": 9, "40s_sa_c": 9, "bf3f49": 9, "4f5": 9, "52bf3f": 9, "4hb": 9, "3fa8bf": 9, "4hbt": 9, "3f76bf": 9, "4hbt_2": 9, "4hbt_3": 9, "4hb_mcp_1": 9, "3fb0bf": 9, "4hfcp_synth": 9, "3fa5bf": 9, "4hpad_g_n": 9, "4ppt_n": 9, "bf433f": 9, "4_1_ctd": 9, "3fbf42": 9, "fthf_cyc": 9, "lig": 9, "bf793f": 9, "nucleotidas": 9, "3f77bf": 9, "bp1_tudor": 9, "bf3f96": 9, "5ht_transport_n": 9, "59bf3f": 9, "5tm": 9, "5tmr_lyt": 9, "bf3f5d": 9, "5_3_exonuc": 9, "3fbf73": 9, "5_3_exonuc_n": 9, "a53fbf": 9, "5_nucleotid": 9, "bf913f": 9, "5_nucleotid_c": 9, "3f8dbf": 9, "60kd_imp": 9, "3fbfb3": 9, "6pf2k": 9, "bfb03f": 9, "6pgd": 9, "3f50bf": 9, "7tm": 9, "7tmr_hd": 9, "a4bf3f": 9, "7tmr": 9, "dismed2": 9, "3f8ebf": 9, "dism_7tm": 9, "hded": 9, "b13fbf": 9, "7tm_gpcr_sra": 9, "bf823f": 9, "7tm_gpcr_srab": 9, "3fbfad": 9, "7tm_gpcr_srb": 9, "aabf3f": 9, "7tm_gpcr_srbc": 9, "bfa73f": 9, "7tm_gpcr_srd": 9, "bf563f": 9, "7tm_gpcr_srh": 9, "7tm_gpcr_sri": 9, "8b3fbf": 9, "7tm_gpcr_srj": 9, "3fbf65": 9, "7tm_gpcr_srsx": 9, "7tm_gpcr_srt": 9, "3f5fbf": 9, "7tm_gpcr_sru": 9, "9a3fbf": 9, "7tm_gpcr_srv": 9, "5e3fbf": 9, "7tm_gpcr_srw": 9, "bf8b3f": 9, "7tm_gpcr_srx": 9, "7tm_gpcr_srz": 9, "78bf3f": 9, "7tm_gpcr_str": 9, "bf7c3f": 9, "7tm_transglut": 9, "3fa1bf": 9, "7kd_dna_bind": 9, "7tm_1": 9, "3fbf4e": 9, "7tm_2": 9, "4c3fbf": 9, "7tm_3": 9, "bf3f83": 9, "7tm_4": 9, "3f81bf": 9, "7tm_6": 9, "3fbf8d": 9, "7tm_7": 9, "8tm_micro": 9, "3f96bf": 9, "2_8": 9, "polyst": 9, "a1_propeptid": 9, "3fbf47": 9, "a2l_zn_ribbon": 9, "bfa83f": 9, "a2m": 9, "bf3fb1": 9, "a2m_brd": 9, "58bf3f": 9, "a2m_recep": 9, "bf3fa3": 9, "aa9": 9, "b8bf3f": 9, "aaa": 9, "a23fbf": 9, "atpase_lik": 9, "bf7d3f": 9, "aaa_10": 9, "3fbf90": 9, "aaa_11": 9, "aaa_12": 9, "aaa_13": 9, "bf3f99": 9, "aaa_14": 9, "3f79bf": 9, "aaa_15": 9, "bf3f68": 9, "aaa_16": 9, "bf3fb3": 9, "aaa_17": 9, "3fbfaf": 9, "aaa_18": 9, "3fbfa9": 9, "aaa_19": 9, "3fbfb0": 9, "aaa_2": 9, "bfaa3f": 9, "aaa_21": 9, "aaa_22": 9, "bf3f82": 9, "aaa_23": 9, "3fbf7b": 9, "aaa_24": 9, "83bf3f": 9, "aaa_25": 9, "50bf3f": 9, "aaa_26": 9, "443fbf": 9, "aaa_27": 9, "6dbf3f": 9, "aaa_28": 9, "aaa_29": 9, "3f90bf": 9, "aaa_3": 9, "bf3f41": 9, "aaa_30": 9, "aaa_31": 9, "833fbf": 9, "aaa_32": 9, "aaa_33": 9, "bdbf3f": 9, "aaa_34": 9, "aaa_35": 9, "aaa_5": 9, "a0bf3f": 9, "aaa_6": 9, "3fbfa0": 9, "aaa_7": 9, "7ebf3f": 9, "aaa_8": 9, "773fbf": 9, "aaa_9": 9, "723fbf": 9, "aaa_prka": 9, "3fadbf": 9, "aaa_assoc": 9, "bf9f3f": 9, "aaa_assoc_2": 9, "b83fbf": 9, "aaa_assoc_c": 9, "3fa2bf": 9, "aaa_lid_1": 9, "bf3f74": 9, "aaa_lid_10": 9, "3fbf64": 9, "aaa_lid_11": 9, "aaa_lid_2": 9, "3fbf7f": 9, "aaa_lid_3": 9, "bf3f77": 9, "aaa_lid_4": 9, "aaa_lid_5": 9, "3fbfb8": 9, "aaa_lid_6": 9, "aaa_lid_7": 9, "bf3f54": 9, "aaa_lid_8": 9, "bf3f7c": 9, "aaa_lid_9": 9, "7d3fbf": 9, "aal_decarboxi": 9, "bf3f71": 9, "aar2": 9, "bf483f": 9, "aarp2cn": 9, "42bf3f": 9, "aat": 9, "3fbf81": 9, "aatf": 9, "che1": 9, "3f70bf": 9, "aatas": 9, "bf943f": 9, "aa_kinas": 9, "aa_permeas": 9, "bf3f85": 9, "aa_permease_2": 9, "bf3f66": 9, "aa_permease_c": 9, "aa_permease_n": 9, "3f65bf": 9, "aa_synth": 9, "7b3fbf": 9, "aba4": 9, "3fbf5b": 9, "abat": 9, "3fbf61": 9, "aba_gpcr": 9, "aba_wd": 9, "3fbf48": 9, "abc1": 9, "bf3fae": 9, "abc2_membran": 9, "abc2_membrane_2": 9, "3f67bf": 9, "abc2_membrane_3": 9, "abc2_membrane_4": 9, "783fbf": 9, "abc2_membrane_5": 9, "abc2_membrane_6": 9, "abc2_membrane_7": 9, "7dbf3f": 9, "abc_atpas": 9, "bf9a3f": 9, "abc_n": 9, "3f9cbf": 9, "abc_cobalt": 9, "b73fbf": 9, "abc_export": 9, "3f68bf": 9, "abc_membran": 9, "abc_membrane_2": 9, "3f9bbf": 9, "abc_membrane_3": 9, "3fbf4a": 9, "abc_sub_bind": 9, "abc_toxin_n": 9, "5bbf3f": 9, "abc_tran": 9, "bfb33f": 9, "abc_tran_2": 9, "b53fbf": 9, "abc_tran_ctd": 9, "a1bf3f": 9, "abc_tran_xtn": 9, "abc_trans_cmpb": 9, "92bf3f": 9, "abc_trans_n": 9, "bfa13f": 9, "abc_trans_aux": 9, "bf3fbf": 9, "abc_transp_aux": 9, "3fa4bf": 9, "abg_transport": 9, "643fbf": 9, "abhd18": 9, "abm": 9, "acas_n": 9, "bf3f91": 9, "acbp": 9, "acca": 9, "90bf3f": 9, "acc_centr": 9, "3f43bf": 9, "acc_epsilon": 9, "acd": 9, "663fbf": 9, "acdc": 9, "af3fbf": 9, "acdh_c": 9, "bf3fa8": 9, "aci44": 9, "5d3fbf": 9, "acox": 9, "acp": 9, "923fbf": 9, "acp53ea": 9, "673fbf": 9, "acp_pd": 9, "bf993f": 9, "acp_syn_iii": 9, "bf763f": 9, "acp_syn_iii_c": 9, "acr_tran": 9, "bf423f": 9, "acs_codh_b_c": 9, "70bf3f": 9, "act": [9, 14], "acth_domain": 9, "actl7a_n": 9, "3f9ebf": 9, "act_3": 9, "9b3fbf": 9, "act_4": 9, "6a3fbf": 9, "act_5": 9, "bf3f8b": 9, "act_6": 9, "3fbfa7": 9, "act_7": 9, "3fbf56": 9, "act_8": 9, "3fbebf": 9, "ac_1": 9, "bf3fb0": 9, "ac_n": 9, "ache_tetra": 9, "bf3f62": 9, "adam17_mpd": 9, "adamts_cr_2": 9, "adamts_cr_3": 9, "adamts_spacer1": 9, "60bf3f": 9, "adam_cr": 9, "bf3f69": 9, "adc": 9, "bf3f6e": 9, "add_atrx": 9, "bf3f97": 9, "add_dnmt3": 9, "adh_n": 9, "6c3fbf": 9, "adh_n_2": 9, "bf6e3f": 9, "adh_n_assoc": 9, "743fbf": 9, "adh_zinc_n": 9, "3f4bbf": 9, "adh_zinc_n_2": 9, "6fbf3f": 9, "adi": 9, "adip": 9, "9e3fbf": 9, "adk": 9, "3fbfaa": 9, "adk_lid": 9, "adnp_n": 9, "adprts_tse2": 9, "53bf3f": 9, "adp_pfk_gk": 9, "adp_ribosyl_gh": 9, "bfbc3f": 9, "adprib_exo_tox": 9, "3f85bf": 9, "adsl_c": 9, "bf4f3f": 9, "adyc": 9, "aep1": 9, "953fbf": 9, "af": 9, "3faabf": 9, "4_c": 9, "af0941": 9, "af2212": 9, "af2331": 9, "3fbf58": 9, "af4_int": 9, "bf3f8f": 9, "afg1_atpas": 9, "bf7f3f": 9, "afor_c": 9, "bf683f": 9, "afor_n": 9, "afp": 9, "3fbf87": 9, "afp_2": 9, "3fbf7c": 9, "aft": 9, "3fbf92": 9, "aga2": 9, "47bf3f": 9, "agh": 9, "agk_c": 9, "agl_n": 9, "3fbf51": 9, "agog": 9, "ago_n": 9, "agrb_n": 9, "ags_c": 9, "a3bf3f": 9, "agt": 9, "bf523f": 9, "agtrap": 9, "ahd": 9, "ahh": 9, "bf453f": 9, "ahjr": 9, "72bf3f": 9, "ahl_synthas": 9, "3fbfbe": 9, "ahsa1": 9, "ahsp": 9, "ai": 9, "2e_transport": 9, "a7bf3f": 9, "aib": 9, "bf3fa5": 9, "aicarft_impcha": 9, "3f57bf": 9, "aida": 9, "4abf3f": 9, "aif": 9, "ml": 9, "aif_c": 9, "aig1": 9, "3fa7bf": 9, "aig2_2": 9, "aim24": 9, "aim3": 9, "523fbf": 9, "aim5": 9, "7e3fbf": 9, "aimp2_lysrs_bd": 9, "aip3": 9, "bf3f7a": 9, "aipr": 9, "airc": 9, "76bf3f": 9, "air": 9, "bf653f": 9, "airs_c": 9, "ajap1_panp_c": 9, "akap28": 9, "803fbf": 9, "akap2_c": 9, "a33fbf": 9, "akap7_nl": 9, "bf3fbc": 9, "akap7_ririi_bdg": 9, "akap95": 9, "4a3fbf": 9, "akap_110": 9, "3fbfba": 9, "akna": 9, "9dbf3f": 9, "alad": 9, "753fbf": 9, "alf": 9, "bfbb3f": 9, "alg11_n": 9, "alg3": 9, "algx": 9, "bf963f": 9, "alix_lypxl_bnd": 9, "80bf3f": 9, "alkbh8_n": 9, "alms_motif": 9, "543fbf": 9, "alms_repeat": 9, "almt": 9, "alo": 9, "a9bf3f": 9, "alog_dom": 9, "alp_n": 9, "als2cr11": 9, "als2cr8": 9, "als_ss_c": 9, "8cbf3f": 9, "alttaq_rpt": 9, "a93fbf": 9, "ama": 9, "bf4e3f": 9, "amh_n": 9, "bf3fbd": 9, "amin": 9, "ba3fbf": 9, "ammecr1": 9, "bfbe3f": 9, "amnp_n": 9, "amo": 9, "413fbf": 9, "amop": 9, "amp": 9, "bind": 9, "3fbf70": 9, "binding_c": 9, "binding_c_2": 9, "ampk1_cbm": 9, "8dbf3f": 9, "ampkbi": 9, "3fbfac": 9, "amp_n": 9, "amp_deaminas": 9, "b1bf3f": 9, "amt4_dom_c": 9, "anapc1": 9, "anapc10": 9, "bf3fb6": 9, "anapc15": 9, "anapc16": 9, "anapc2": 9, "bf3f6c": 9, "anapc3": 9, "babf3f": 9, "anapc4": 9, "49bf3f": 9, "anapc4_wd40": 9, "anapc5": 9, "anapc8": 9, "3f54bf": 9, "anapc9": 9, "anapc_cdc26": 9, "3fbfbb": 9, "anato": 9, "3fbfb6": 9, "anf_receptor": 9, "bfa53f": 9, "angel2_n": 9, "anis5_c": 9, "bd": 9, "bf3f94": 9, "ankh": 9, "3fbf7e": 9, "anp": 9, "98bf3f": 9, "ant": 9, "antar": 9, "anth": 9, "b2bf3f": 9, "anxa2r": 9, "4d3fbf": 9, "aoc_lik": 9, "3f5dbf": 9, "aox": 9, "ap": [9, 14], "5_subunit_s1": 9, "ap1ar": 9, "3f45bf": 9, "ap2": 9, "ap3b1_c": 9, "ap3d1": 9, "64bf3f": 9, "ap4e_app_platf": 9, "bf6d3f": 9, "apaf1_c": 9, "apc1_c": 9, "5a3fbf": 9, "apcddc": 9, "apc_15aa": 9, "bf663f": 9, "apc_n_cc": 9, "863fbf": 9, "apc_bas": 9, "apc_r": 9, "bf603f": 9, "apc_rep": 9, "apc_u13": 9, "bf7a3f": 9, "apc_u14": 9, "6e3fbf": 9, "apc_u15": 9, "73bf3f": 9, "apc_u5": 9, "apc_u9": 9, "613fbf": 9, "apeh_n": 9, "3fbf68": 9, "apg12": 9, "3fbbbf": 9, "apg5": 9, "3f4abf": 9, "apg6": 9, "apg6_n": 9, "bfae3f": 9, "aph": 9, "aph_6_hur": 9, "api5": 9, "b7bf3f": 9, "apobec1": 9, "3f42bf": 9, "apobec2": 9, "apobec3": 9, "apobec4": 9, "apobec4_lik": 9, "bf3fba": 9, "apobec_c": 9, "3fbf5f": 9, "apobec_n": 9, "apoc4": 9, "apo_rna": 9, "app1_cat": 9, "app_cu_bd": 9, "bc3fbf": 9, "app_e2": 9, "bf3f44": 9, "app_n": 9, "app_amyloid": 9, "3fb5bf": 9, "reductase_c": 9, "aps_kinas": 9, "56bf3f": 9, "apt": 9, "ap_endonuc_2": 9, "bf3f4c": 9, "ara70": 9, "arc6": 9, "like_im": 9, "ard": 9, "63bf3f": 9, "arf7ep_c": 9, "b43fbf": 9, "arglu": 9, "3fbf53": 9, "arhgef5_35": 9, "3f4dbf": 9, "arid": 9, "arl17": 9, "arl2_bind_bart": 9, "bf773f": 9, "arl6ip6": 9, "4f3fbf": 9, "armet_c": 9, "armet_n": 9, "913fbf": 9, "armh2": 9, "armh3_c": 9, "armh4": 9, "armt1": 9, "like_dom": 9, "aro": 9, "arpc4": 9, "3fbfa3": 9, "ars2": 9, "bf4c3f": 9, "art": 9, "polyv": 9, "artd15_n": 9, "asc": 9, "3f6abf": 9, "asch": 9, "asd1": 9, "bf3f79": 9, "asd2": 9, "bf853f": 9, "asf1_hist_chap": 9, "asfv_j13l": 9, "ash": 9, "bf3f9c": 9, "ask_ph": 9, "asl_c": 9, "asl_c2": 9, "bf3f89": 9, "asmase_c": 9, "aspr": 9, "asrt": 9, "aster": 9, "astn1_2_egf_fn": 9, "3f40bf": 9, "astn_1_2_n": 9, "astn_2_hairpin": 9, "3fbf76": 9, "asxh": 9, "3fbf55": 9, "asy3": 9, "atad3_n": 9, "4dbf3f": 9, "atad4": 9, "713fbf": 9, "atc_hydrolas": 9, "3fbf6d": 9, "ate_c": 9, "ate_n": 9, "atf7ip_bd": 9, "atg101": 9, "86bf3f": 9, "atg11": 9, "atg13": 9, "bf623f": 9, "atg14": 9, "bf6b3f": 9, "atg16": 9, "bf933f": 9, "atg17_lik": 9, "atg19": 9, "atg22": 9, "3fbf4d": 9, "atg27": 9, "atg29_n": 9, "bf3fa6": 9, "atg2_cad": 9, "atg31": 9, "bf4b3f": 9, "atg43": 9, "bf3f57": 9, "atg4_lir": 9, "atg7_n": 9, "atg8": 9, "atg9": 9, "bf3f7f": 9, "atg_c": 9, "3fbf6a": 9, "athila": 9, "atlf": 9, "3fbf8c": 9, "atp": 9, "cone": 9, "grasp": 9, "grasp_2": 9, "b23fbf": 9, "grasp_3": 9, "433fbf": 9, "grasp_4": 9, "grasp_5": 9, "3f7ebf": 9, "grasp_6": 9, "gua_ptran": 9, "gua_ptransn": 9, "sulfurylas": 9, "3f8abf": 9, "synt": 9, "bf3f4f": 9, "synt_10": 9, "synt_8": 9, "synt_a": 9, "synt_b": 9, "3f9fbf": 9, "synt_c": 9, "synt_d": 9, "synt_de_n": 9, "synt_": 9, "3f93bf": 9, "synt_e_2": 9, "synt_ep": 9, "synt_f": 9, "3fbf45": 9, "synt_f6": 9, "synt_g": 9, "843fbf": 9, "synt_i": 9, "3fbfb5": 9, "synt_j": 9, "3fbf99": 9, "synt_z": 9, "69bf3f": 9, "synt_ab": 9, "synt_ab_c": 9, "synt_ab_n": 9, "synt_ab_xtn": 9, "atp11": 9, "atp12": 9, "atp13": 9, "3f7bbf": 9, "atp19": 9, "atp1g1_plm_mat8": 9, "3f8bbf": 9, "atp_ca_trans_c": 9, "atp_bind_1": 9, "atp_bind_2": 9, "atp_bind_3": 9, "atp_sub_h": 9, "atp_synt_h": 9, "atp_synth_reg": 9, "atp_transf": 9, "bf3f6f": 9, "atpas": 9, "cat_bd": 9, "atpase_2": 9, "atpase_rava_c": 9, "atpase_gene1": 9, "atpgrasp_n": 9, "atpgrasp_st": 9, "3fbf72": 9, "atpgrasp_t": 9, "atpgrasp_tupa": 9, "7a3fbf": 9, "atpgrasp_yhecd": 9, "bfb93f": 9, "atr13": 9, "ATS": 9, "ats3": 9, "bf903f": 9, "atxn": 9, "1_c": 9, "at_hook": 9, "audh_cupin": 9, "aux_iaa": 9, "3fbf78": 9, "awpm": 9, "19": 9, "aw": 9, "3f95bf": 9, "axe1": 9, "axh": 9, "983fbf": 9, "axin1_tnks_bd": 9, "3f6bbf": 9, "azul": 9, "a_amylase_dom_c": 9, "a_amylase_inhib": 9, "a_deamin": 9, "a_deaminas": 9, "a_deaminase_n": 9, "a_thal_3526": 9, "aa_tran": 9, "aada_c": 9, "3f4ebf": 9, "aalphay_mdb": 9, "ablim_anchor": 9, "bf8d3f": 9, "abba_antirepr": 9, "abdomin": 9, "abfb": 9, "abfs_sensor": 9, "abhydro_lipas": 9, "abhydrolase_1": 9, "abhydrolase_10": 9, "abhydrolase_11": 9, "abhydrolase_2": 9, "abhydrolase_3": 9, "abhydrolase_4": 9, "4fbf3f": 9, "abhydrolase_5": 9, "abhydrolase_6": 9, "bf9d3f": 9, "abhydrolase_7": 9, "abhydrolase_8": 9, "abhydrolase_9": 9, "abhydrolase_9_n": 9, "abiei_1": 9, "abiei_2": 9, "abiei_3": 9, "b5bf3f": 9, "abiei_3_n": 9, "abiei_4": 9, "abieii": 9, "3fbf59": 9, "abigi": 9, "abigii_2": 9, "abih": 9, "abij_ntd3": 9, "abij_ntd4": 9, "bf3f86": 9, "abij_ntd5": 9, "bf3f72": 9, "abitii": 9, "abi_2": 9, "bf873f": 9, "abi_c": 9, "abi_hhr": 9, "abi_alpha": 9, "3f98bf": 9, "abp2": 9, "abrb": 9, "abrb_c": 9, "bf3fb9": 9, "ac45": 9, "voa1_tm": 9, "ac76": 9, "acab": 9, "acatn": 9, "acek_kinas": 9, "bf3f80": 9, "acek_regulatori": 9, "acetdehyd": 9, "dimer": 9, "acetate_kinas": 9, "bf3f9a": 9, "acetone_carb_g": 9, "bf3f51": 9, "acetylcoa_hyd_c": 9, "acetylcoa_hydro": 9, "acetyltransf_1": 9, "9ebf3f": 9, "acetyltransf_10": 9, "acetyltransf_11": 9, "acetyltransf_13": 9, "bf3fa0": 9, "acetyltransf_14": 9, "9abf3f": 9, "acetyltransf_15": 9, "acetyltransf_16": 9, "acetyltransf_17": 9, "ae3fbf": 9, "acetyltransf_18": 9, "acetyltransf_19": 9, "acetyltransf_2": 9, "acetyltransf_3": 9, "bf743f": 9, "acetyltransf_4": 9, "acetyltransf_5": 9, "3f62bf": 9, "acetyltransf_6": 9, "acetyltransf_7": 9, "bf3f8e": 9, "acetyltransf_8": 9, "acetyltransf_9": 9, "acetyltransf_cg": 9, "acid_ppas": 9, "6abf3f": 9, "acid_phosphat_b": 9, "acnx": 9, "463fbf": 9, "acnx_swivel_put": 9, "aconitas": 9, "aconitase_2_n": 9, "aconitase_b_n": 9, "87bf3f": 9, "aconitase_c": 9, "acp26ab": 9, "acrz": 9, "frag_catali": 9, "acta": 9, "actd": 9, "actin": 9, "actin_micro": 9, "actino_peptid": 9, "tram": 9, "activator_lag": 9, "3f59bf": 9, "activin_recp": 9, "acyl": 9, "acp_t": 9, "5b3fbf": 9, "coa_dh_1": 9, "coa_dh_2": 9, "coa_dh_c": 9, "3f51bf": 9, "coa_dh_m": 9, "coa_dh_n": 9, "coa_ox_n": 9, "thio_n": 9, "acylcoa_dh_n": 9, "3fbfa1": 9, "acylcoa_dehyd_c": 9, "acyl_coa_thio": 9, "3f7cbf": 9, "acyl_transf_1": 9, "acyl_transf_2": 9, "acyl_transf_3": 9, "bfb13f": 9, "acylphosphatas": 9, "acyltransf_2": 9, "acyltransf_c": 9, "acyltransferas": 9, "ad_cy_reg": 9, "ad_cyc_g": 9, "bf593f": 9, "ada3": 9, "ada_zn_bind": 9, "adap_comp_sub": 9, "adaptin_n": 9, "9d3fbf": 9, "adaptin_bind": 9, "adcy_cons_dom": 9, "bfa23f": 9, "adet1_2": 9, "bf3f40": 9, "adenine_deam_c": 9, "adenine_glyco": 9, "3fbf50": 9, "adeno_52k": 9, "adeno_e1b_55k": 9, "66bf3f": 9, "adeno_gp19k": 9, "adeno_iva2": 9, "adeno_l433k_22k": 9, "adeno_pv": 9, "adeno_px": 9, "adeno_penton_b": 9, "3fbf6f": 9, "adeno_shaft": 9, "adenosine_kin": 9, "adenyl_cycl_n": 9, "adenyl_transf": 9, "adenylatesensor": 9, "adenylate_cycl": 9, "adenylsucc_synt": 9, "adh": 9, "ig_lik": 9, "3f61bf": 9, "adhesin_": 9, "bf3f9f": 9, "adhesin_p1_c": 9, "adhesin_p1_n": 9, "adipogenin": 9, "adipokin_hormo": 9, "4cbf3f": 9, "adohcyas": 9, "3fbf44": 9, "adohcyase_nad": 9, "adometdc_lead": 9, "adomet_mtas": 9, "adomet_synthas": 9, "adomet_dc": 9, "aegerolysin": 9, "aerolysin": 9, "afad": 9, "afaf": 9, "afi1": 9, "aflr": 9, "afsa": 9, "aft1_hra": 9, "aft1_hrr": 9, "acbf3f": 9, "aft1_osa": 9, "afta_c": 9, "bbbf3f": 9, "afta_n": 9, "ag332": 9, "agi_ii_c2": 9, "agarase_cbm": 9, "41bf3f": 9, "agenet": 9, "3f6dbf": 9, "agglutinin": 9, "agglutinin_c": 9, "aglb_l1": 9, "ago_n_1": 9, "ago_hook": 9, "agouti": 9, "bf3fab": 9, "agrb": 9, "agrd": 9, "agro_vird5": 9, "a03fbf": 9, "aha1_n": 9, "ahpc": 9, "tsa": 9, "tsa_2": 9, "aidb_n": 9, "aida_c2": 9, "aida_n": 9, "ail_lom": 9, "493fbf": 9, "aim19": 9, "3f87bf": 9, "aim21": 9, "aladh_pnt_c": 9, "aladh_pnt_n": 9, "ala": 9, "ala_racemase_c": 9, "bf713f": 9, "ala_racemase_n": 9, "633fbf": 9, "alanine_zipp": 9, "alb1": 9, "alba_2": 9, "alba": 9, "albumin_i": 9, "bf3f52": 9, "albumin_i_a": 9, "alccbm31": 9, "3fbf41": 9, "ald_xan_dh_c": 9, "bf3f4b": 9, "ald_decoas": 9, "aldedh": 9, "aldo_ket_r": 9, "aldolas": 9, "aldolase_ii": 9, "aldose_epim": 9, "alfin": 9, "alg14": 9, "alg6_alg8": 9, "algf": 9, "alginate_exp": 9, "alginate_lyas": 9, "alginate_lyase2": 9, "89bf3f": 9, "alka_n": 9, "alk_phosphatas": 9, "alkyl_sulf_c": 9, "a6bf3f": 9, "alkyl_sulf_dimr": 9, "allantoicas": 9, "allatostatin": 9, "allene_ox_cyc": 9, "alliinase_c": 9, "alph_pro_tm": 9, "bf3f93": 9, "mrap_c": 9, "3f56bf": 9, "mrap_n": 9, "af_c": 9, "amy_c_pro": 9, "amyl_c": 9, "amyl_c2": 9, "amylas": 9, "amylase_c": 9, "amylase_n": 9, "mann_mid": 9, "alphac_n": 9, "alphac_n2": 9, "alpha_gj": 9, "bf3f63": 9, "alpha_hel": 9, "alpha_l_fuco": 9, "alpha_adaptinc2": 9, "alpha_adaptin_c": 9, "alpha_kinas": 9, "alta1": 9, "alveol": 9, "reg_p311": 9, "amastin": 9, "amdas": 9, "bf3f48": 9, "amelin": 9, "amelogenin": 9, "amelotin": 9, "amis_urei": 9, "amidas": 9, "amidase_2": 9, "amidase_3": 9, "amidase_5": 9, "amidase_6": 9, "amido_atzd_trzd": 9, "amidohydro_1": 9, "amidohydro_2": 9, "amidohydro_3": 9, "amidoligase_2": 9, "amino_oxidas": 9, "aminoglyc_resit": 9, "aminopep": 9, "aminotran_1_2": 9, "aminotran_3": 9, "aminotran_4": 9, "aminotran_5": 9, "amj": 9, "ammonium_transp": 9, "amnionless": 9, "473fbf": 9, "amoc": 9, "amphi": 9, "trp": 9, "amya": 9, "a_gluct_m": 9, "glutrfs_c": 9, "an_peroxidas": 9, "androgen_recep": 9, "anemone_cytotox": 9, "anfg_vnfg": 9, "anfo_nitrog": 9, "angiomotin_c": 9, "3f84bf": 9, "anillin": 9, "anillin_n": 9, "ank": 9, "ankubd": 9, "ank_2": 9, "ank_3": 9, "ank_4": 9, "ank_5": 9, "bf513f": 9, "anmk": 9, "annexin": 9, "annexin_lik": 9, "anoct_dim": 9, "anoctamin": 9, "bd3fbf": 9, "anophelin": 9, "anp1": 9, "anta": 9, "ant_c": 9, "anth_ig": 9, "anth_synt_i_n": 9, "anthrax": 9, "tox_m": 9, "anthrax_toxa": 9, "anthrone_oxi": 9, "anti": 9, "lp": 9, "scyg": 9, "84bf3f": 9, "recbcd_p2": 9, "trap": 9, "3f5abf": 9, "adapt_irap": 9, "antibiotic_nat": 9, "anticodon_1": 9, "anticodon_2": 9, "anticodon_3": 9, "antifungal_pept": 9, "antifungal_prot": 9, "antigen_c": 9, "antimicrobial10": 9, "3fbf9e": 9, "antimicrobial12": 9, "antimicrobial17": 9, "antimicrobial21": 9, "antimicrobial25": 9, "antimicrobial_5": 9, "antimicrobial_6": 9, "antirestrict": 9, "antistasin": 9, "antiterm": 9, "antitox_rhh": 9, "ap4a_phos_n": 9, "apba": 9, "apba_c": 9, "apb": 9, "apc13p": 9, "44bf3f": 9, "apc15p": 9, "apc1_midn": 9, "apc1_n": 9, "apea_ntd1": 9, "apec": 9, "apelin": 9, "apex": 9, "apha_lik": 9, "3f7fbf": 9, "apidaecin": 9, "apis_csd": 9, "apo": 9, "cii": 9, "ciii": 9, "vldl": 9, "ii": 9, "apoa": 9, "apob100_c": 9, "apoc": 9, "apol": 9, "apolp": 9, "iii": 9, "bf8a3f": 9, "apom": 9, "apoo": 9, "apocytochr_f_c": 9, "apocytochr_f_n": 9, "apolipo_f": 9, "b4bf3f": 9, "apolipoprotein": 9, "apq12": 9, "apt1": 9, "apyras": 9, "aquarius_n": 9, "3fbf62": 9, "arae_1": 9, "arae_1_c": 9, "693fbf": 9, "arae_2": 9, "arae_2_n": 9, "arac_n": 9, "arac_bind": 9, "arac_binding_2": 9, "bf3f4e": 9, "arar_c": 9, "bf573f": 9, "arabfuran": 9, "catal": 9, "9bbf3f": 9, "arabino_trans_c": 9, "arabino_trans_n": 9, "arabinose_iso_c": 9, "arabinose_isom": 9, "arabinose_bd": 9, "arabinose_tran": 9, "arb1": 9, "arb2": 9, "arc_c": 9, "arc_ma": 9, "arc_pepc": 9, "arc_pepc_ii": 9, "arc_trans_trash": 9, "arcadin_1": 9, "arch_fla_d": 9, "arch_flagellin": 9, "archaeal_amoa": 9, "archeas": 9, "arda": 9, "ardcn": 9, "area_n": 9, "arf": 9, "arfa": 9, "arfgap": 9, "arfaptin": 9, "argj": 9, "arg_decarb_hb": 9, "arg_decarbox_c": 9, "bf3f46": 9, "arg_repressor": 9, "arg_repressor_c": 9, "arg_trna_synt_n": 9, "3fbf5e": 9, "arginas": 9, "arginosuc_synth": 9, "argol1": 9, "argol2": 9, "argomid": 9, "3fbf3f": 9, "argon": 9, "argo": 9, "ariadn": 9, "arls_n": 9, "8fbf3f": 9, "arm": 9, "dna": 9, "bind_1": 9, "bind_2": 9, "bind_3": 9, "bind_4": 9, "bind_5": 9, "arm_2": 9, "arm_3": 9, "bf3f75": 9, "arm_apc_u3": 9, "arm_vescicular": 9, "arnb_c": 9, "arnt_c": 9, "3f53bf": 9, "arom": 9, "bf733f": 9, "aromatic_hydrox": 9, "583fbf": 9, "arr": 9, "m": [9, 17], "arrestin_c": 9, "arrestin_n": 9, "arsa_atpas": 9, "arsa_hsp20": 9, "arsb": 9, "arsc": 9, "arsd": 9, "arsp_1": 9, "arsp_2": 9, "arsr": 9, "bf5d3f": 9, "arv1": 9, "arylesteras": 9, "arylsulfotran_2": 9, "arylsulfotran_n": 9, "arylsulfotran": 9, "ashwin": 9, "asma": 9, "asma_1": 9, "asma_2": 9, "bf833f": 9, "asna": 9, "asnc_trans_reg": 9, "3fb9bf": 9, "asnc_trans_reg2": 9, "asn_synthas": 9, "asp": 9, "al_ex": 9, "hydro_n": 9, "94bf3f": 9, "asp1": 9, "asp2": 9, "asp23": 9, "asp4": 9, "5cbf3f": 9, "asp5": 9, "asp_arg_hydrox": 9, "asp_dh_c": 9, "603fbf": 9, "asp_glu_rac": 9, "asp_glu_race_2": 9, "asp_aminotransf": 9, "bf3f8c": 9, "asp_decarbox": 9, "asp_proteas": 9, "asp_protease_2": 9, "75bf3f": 9, "asparaginas": 9, "asparaginase_2": 9, "asparaginase_c": 9, "asparaginase_ii": 9, "aspzincin_m35": 9, "asr": 9, "asta": 9, "astb": 9, "aste_aspa": 9, "astacin": 9, "astro_capsid_p": 9, "at2g31720": 9, "atal": 9, "atg11_middl": 9, "atpr": 9, "atrophin": 9, "attachment_p66": 9, "attacin_c": 9, "3f82bf": 9, "atthog": 9, "atu4866": 9, "atua": 9, "573fbf": 9, "atx10homo_assoc": 9, "atypical_card": 9, "atzg": 9, "augurin": 9, "aurf": 9, "aurora": 9, "a_bind": 9, "auto_anti": 9, "p27": 9, "autoind_bind": 9, "autoind_synth": 9, "autophagy_act_c": 9, "autotransport": 9, "auts2": 9, "auxin_bp": 9, "bfa43f": 9, "auxin_canali": 9, "auxin_induc": 9, "auxin_repress": 9, "auxin_resp": 9, "avec_lik": 9, "avira": 9, "avian_gp85": 9, "avidin": 9, "avl9": 9, "avrb_avrc": 9, "avrd": 9, "avre_t3": 9, "avrl567": 9, "bf3f55": 9, "avrlm4": 9, "avrm": 9, "avrm_n": 9, "avrpphf": 9, "orf": 9, "avrpto": 9, "avrptob": 9, "e3_ubiq": 9, "avrptob_bdg": 9, "avrrpt": 9, "cleavag": 9, "ax_dynein_light": 9, "axin_b": 9, "cat_bind": 9, "3f48bf": 9, "azlc": 9, "azld": 9, "3fbf93": 9, "block_tfiiic": 9, "b12": 9, "binding_2": 9, "b12d": 9, "adapt": [9, 16], "app_c": 9, "b277": 9, "b3": [9, 14], "b3galt2_n": 9, "b3_4": 9, "b5": 9, "b56": 9, "b9": 9, "c2": [9, 14], "ba14k": 9, "6cbf3f": 9, "baalc_n": 9, "3f47bf": 9, "baat_c": 9, "back": 9, "bacon": 9, "bacon_2": 9, "baf": 9, "baf1_abf1": 9, "baf250_c": 9, "bf3f43": 9, "bag": 9, "bag6": 9, "bage": 9, "bah": 9, "balf1": 9, "a63fbf": 9, "bambi": 9, "bambi_c": 9, "bap": 9, "bar_2": 9, "bar_3": 9, "bfb63f": 9, "bar_3_wasp_bdg": 9, "bar_4": 9, "basp1": 9, "bat": 9, "bat2_n": 9, "bbe": 9, "bbip10": 9, "bbl5": 9, "bbp1_c": 9, "bbp1_n": 9, "bbp2": 9, "bbp2_2": 9, "bbp7": 9, "bbs1": 9, "bbs2_c": 9, "bbs2_mid": 9, "8c3fbf": 9, "bbs2_n": 9, "bb_pf": 9, "bc10": 9, "bcas2": 9, "bcas3": 9, "bca_abc_tp_c": 9, "bf973f": 9, "bccip": 9, "bcct": 9, "bcd": 9, "bcdhk_adom3": 9, "bchf": 9, "bcl9": 9, "bclp": 9, "bcl_n": 9, "3facbf": 9, "bcma": 9, "tall_bind": 9, "bcnt": 9, "bcor": 9, "bcs1_n": 9, "bcsc_c": 9, "bfb73f": 9, "bchl_a": 9, "fae": 9, "bdhct": 9, "bdhct_assoc": 9, "bdm": 9, "bdv_p40": 9, "bd_b_sandwich": 9, "ben": 9, "bes1_n": 9, "bess": 9, "bet": 9, "bex": 9, "be_c": 9, "bfn_dom": 9, "bh3": 9, "bh4": 9, "bhd_1": 9, "bhd_2": 9, "bhd_3": 9, "bid": 9, "big2_c": 9, "bilbo1_n": 9, "bing4ct": 9, "bir": 9, "birc6": 9, "biv_env": 9, "big21": 9, "bkace": 9, "bk_channel_a": 9, "blact_wh": 9, "blf1": 9, "blh_phosphatas": 9, "3fbf85": 9, "bli1": 9, "blip": 9, "blm10_n": 9, "blm10_mid": 9, "blm_n": 9, "3fbfbd": 9, "bloc1s3": 9, "bloc1_2": 9, "bluf": 9, "blyb": 9, "bmc": 9, "bmf": 9, "bmfp": 9, "bmp2k_c": 9, "bf3f7d": 9, "bmt": 9, "bmt5": 9, "bnip2": 9, "bnip3": 9, "bnr": 9, "bnr_2": 9, "bnr_3": 9, "bnr_4": 9, "bnr_6": 9, "bnr_assoc_n": 9, "bf3fb4": 9, "bof": 9, "bofc_n": 9, "bon": 9, "bop1nt": 9, "bora_n": 9, "borcs6": 9, "borcs7": 9, "3fb3bf": 9, "borcs8": 9, "borg_cep": 9, "bp28ct": 9, "bpa": 9, "bpa_c": 9, "bpd_transp_1": 9, "bpd_transp_1_n": 9, "bf403f": 9, "bpd_transp_2": 9, "bpl_c": 9, "bpl_lpla_lipb": 9, "bpl_lpla_lipb_2": 9, "bpl_n": 9, "bp": 9, "bf883f": 9, "bps1": 9, "bpta": 9, "brap2": 9, "brca": 9, "2_ob1": 9, "2_ob3": 9, "2_helic": 9, "brca2": 9, "brcc36_c": 9, "brct": 9, "brct_2": 9, "brct_3": 9, "brct_assoc": 9, "brd4_cdt": 9, "bre": 9, "bre1": 9, "brf1": 9, "bri3": 9, "bri3bp": 9, "bricho": 9, "brinp": 9, "brk": 9, "bf463f": 9, "bro1": 9, "bromi": 9, "bf3f88": 9, "brx": 9, "brx_n": 9, "brx_assoc": 9, "bsd": 9, "bsmap": 9, "bsp": 9, "bsp_ii": 9, "bst2": 9, "bt1": 9, "btad": 9, "btb": 9, "btb_2": 9, "3fbf84": 9, "btb_3": 9, "btd": 9, "btg": 9, "bthb": 9, "btk": 9, "btp": 9, "btrd1": 9, "bud22": 9, "buran": 9, "burp": 9, "b_lectin": 9, "b_solenoid_dext": 9, "b_solenoid_ydck": 9, "baca": 9, "813fbf": 9, "bac_a_amyl_c": 9, "bac_dna_bind": 9, "bac_dnaa": 9, "bac_dnaa_c": 9, "bac_gdh": 9, "bf3fad": 9, "bac_gh3_c": 9, "bac_repa_c": 9, "bac_chlorc": 9, "bac_export_1": 9, "bac_export_2": 9, "bac_export_3": 9, "bac_globin": 9, "bac_luciferas": 9, "bac_rhamnosid": 9, "bac_rhamnosid6h": 9, "bf8e3f": 9, "bac_rhamnosid_c": 9, "bac_rhamnosid_n": 9, "bac_rhodopsin": 9, "bac_small_yrzi": 9, "bac_thur_toxin": 9, "bac_transf": 9, "95bf3f": 9, "bacillus_hbl": 9, "bacillus_papr": 9, "bact_hydrolas": 9, "bact_lectin": 9, "bact_transglu_n": 9, "bacteriociic_ci": 9, "bacteriocin_ii": 9, "bacteriocin_i": 9, "bacteriocin_iid": 9, "bacteriocin_iii": 9, "bacteroid_pep": 9, "bactofilin": 9, "baculo_f": 9, "bf9c3f": 9, "baculo_fp": 9, "baculo_gp64": 9, "baculo_p24": 9, "baculo_p74": 9, "baculo_p74_n": 9, "baffr": 9, "bamhi": 9, "band_3_cyto": 9, "band_7": 9, "band_7_1": 9, "band_7_c": 9, "bap31": 9, "bap31_bap29_c": 9, "barstar": 9, "barttin": 9, "barwin": 9, "basepl": 9, "baseplate_j": 9, "bata": 9, "batd": 9, "bax1": 9, "baxi_1": 9, "bcl": 9, "2_bad": 9, "bcla_c": 9, "bclt": 9, "bclx_interact": 9, "553fbf": 9, "bcr": 9, "abl_oligo": 9, "943fbf": 9, "bcrad_badfg": 9, "bcsb": 9, "bd3614": 9, "deam": 9, "bd3614_n": 9, "beach": 9, "bee_toxin": 9, "bene": 9, "bep_c_termin": 9, "bestrophin": 9, "betr": 9, "bet_v_1": 9, "beta": 9, "casp": 9, "trcp_d": 9, "lactamas": 9, "lactamase2": 9, "prism_lec": 9, "betagal_dom2": 9, "betagal_dom3": 9, "betagal_dom4_5": 9, "beta_elim_lyas": 9, "beta_helix": 9, "beta_helix_2": 9, "beta_helix_3": 9, "beta_lactamase3": 9, "beta_propel": 9, "beta_protein": 9, "bfii_dbd": 9, "bgal_small_n": 9, "bipbp_c": 9, "3fbf8f": 9, "bicd": 9, "big_1": 9, "big_10": 9, "big_11": 9, "big_12": 9, "big_13": 9, "big_14": 9, "big_15": 9, "big_2": 9, "big_3": 9, "big_3_2": 9, "big_3_3": 9, "big_3_4": 9, "big_3_5": 9, "big_4": 9, "ab3fbf": 9, "big_5": 9, "big_6": 9, "61bf3f": 9, "big_7": 9, "big_8": 9, "big_9": 9, "bile_hydr_tran": 9, "biliv": 9, "reduc_cat": 9, "bim_n": 9, "bin3": 9, "binary_toxb": 9, "binary_toxb_2": 9, "binary_toxb_3": 9, "bindin": 9, "biot2": 9, "biow": 9, "bioi": 9, "biopterin_h": 9, "biotin_carb_c": 9, "biotin_carb_n": 9, "biotin_lipoyl": 9, "biotin_lipoyl_2": 9, "blo": 9, "blt1": 9, "blt1_c": 9, "bmkx": 9, "bmp": 9, "bmt2": 9, "bf3f5b": 9, "bofa": 9, "7abf3f": 9, "bofc_c": 9, "bola": 9, "bombesin": 9, "borealin": 9, "borrelia_p13": 9, "borrelia_p83": 9, "borrelia_orfa": 9, "borrelia_orfd": 9, "borrelia_orfx": 9, "bot1p": 9, "botulinum_ha": 9, "17": 9, "bowman": 9, "birk_leg": 9, "bphx": 9, "bppl_n": 9, "bppu_igg": 9, "bppu_n": 9, "bpsa_c": 9, "bpuji_n": 9, "bpusi_n": 9, "403fbf": 9, "branch_aa_tran": 9, "bravo_figei": 9, "brix": 9, "brkdbd": 9, "brme1": 9, "brna_antitoxin": 9, "brnt_toxin": 9, "bro": 9, "bromo_tp": 9, "bromo_tp_lik": 9, "bromodomain": 9, "brr6_like_c_c": 9, "brucella_omp2": 9, "brxa": 9, "brxb": 9, "brxc_brxd": 9, "brxl_atpas": 9, "brxl_n": 9, "bse634i": 9, "bshc": 9, "bsla": 9, "bspa_v": 9, "bssb_tutg": 9, "bssc_tutf": 9, "bsss": 9, "bsubi_psti_r": 9, "bsubi_psti_re_n": 9, "bsupi": 9, "81bf3f": 9, "btpa": 9, "btrh_n": 9, "btz": 9, "bubbl": 9, "bf3f5e": 9, "bud13": 9, "bud3_n": 9, "bf3f65": 9, "bul1_c": 9, "ac3fbf": 9, "bul1_n": 9, "bundlin": 9, "bunya_g2": 9, "bunya_rdrp": 9, "bunya_nucleocap": 9, "but2": 9, "bys1": 9, "bystin": 9, "c_bond_lyas": 9, "jid": 9, "c1": [9, 14], "c12orf66_lik": 9, "c166": 9, "c1orf64": 9, "c1_1": 9, "c1_2": 9, "c1_4": 9, "c1q": 9, "c2_1": 9, "set_2": 9, "c2orf69": 9, "c4": 9, "c4bp_oligo": 9, "c5": 9, "epim_c": 9, "c5hch": 9, "c6": 9, "c6_dpf": 9, "c8": 9, "c9orf72": 9, "caad": 9, "caap1": 9, "caax_1": 9, "cabit": 9, "cabs1": 9, "cac1f_c": 9, "cadh_i": 9, "type_lir": 9, "caf": 9, "1_p150": 9, "1_p60_c": 9, "caf1": 9, "p150_c2": 9, "p150_n": 9, "caf1a": 9, "caf1c_h4": 9, "caf20": 9, "bf3fa2": 9, "cage1": 9, "calcoco1": 9, "camp_factor": 9, "camsap_cc1": 9, "camsap_ch": 9, "camsap_ckk": 9, "canin": 9, "cap": 9, "zip_m": 9, "cap160": 9, "cap18_c": 9, "cap59_mtransf": 9, "cap_c": 9, "cap_gli": 9, "cap_n": 9, "cap_assoc_n": 9, "card": 9, "cardb": 9, "card_2": 9, "carm1": 9, "carm": 9, "3f5cbf": 9, "carmil_c": 9, "cart": 9, "casp_c": 9, "casp_dom": 9, "cas_c": 9, "cas_cse1": 9, "cat": 9, "catasp": 9, "catra": 9, "catsperb": 9, "catsperd": 9, "catsperg": 9, "cat_rbd": 9, "ca_lik": 9, "cbah": 9, "cbd_plyg": 9, "cbf": 9, "cbfb_nfya": 9, "cbfd_nfyb_hmf": 9, "3f6ebf": 9, "cbfnt": 9, "cbf_beta": 9, "cbl": 9, "cbm": 9, "cbm26": 9, "cbm27": 9, "cbm32": 9, "cbm39": 9, "3f73bf": 9, "cbm46": 9, "cbm49": 9, "cbm53": 9, "cbm60": 9, "cbm64": 9, "cbm65_1": 9, "cbm77": 9, "cbm9_1": 9, "cbm9_2": 9, "cbm_1": 9, "cbm_10": 9, "cbm_11": 9, "cbm_14": 9, "cbm_15": 9, "8abf3f": 9, "cbm_17_28": 9, "3fbf79": 9, "cbm_19": 9, "cbm_2": 9, "cbm_20": 9, "cbm_21": 9, "8e3fbf": 9, "cbm_25": 9, "cbm_26": 9, "cbm_3": 9, "cbm_35": 9, "cbm_48": 9, "cbm_4_9": 9, "cbm_5_12": 9, "cbm_5_12_2": 9, "cbm_6": 9, "cbm_x2": 9, "cbp": 9, "cbp110": 9, "cbp30": 9, "cbp4": 9, "cbp66": 9, "cbp_bcsf": 9, "cbp_bcsg": 9, "3fbf95": 9, "cbp_bcsn": 9, "cbp_bcso": 9, "cbp_bcsq": 9, "cbp_bcsr": 9, "cbp_bcss": 9, "cbp_ccpa": 9, "cbp_gil": 9, "bf5f3f": 9, "cb": 9, "cbx7_c": 9, "cc": 9, "cc149": 9, "cc190": 9, "cc2": 9, "lz": 9, "cc2d2an": 9, "ccap": 9, "ccb1": 9, "ccb2_ccb4": 9, "cccap": 9, "ccd": 9, "ccd48": 9, "503fbf": 9, "ccd97": 9, "like_c": 9, "ccdc": 9, "167": 9, "ccdc106": 9, "ccdc117": 9, "ccdc14": 9, "ccdc142": 9, "ccdc144c": 9, "ccdc154": 9, "ccdc158": 9, "ccdc168_n": 9, "ccdc22": 9, "ccdc23": 9, "ccdc24": 9, "ccdc28": 9, "ccdc32": 9, "ccdc34": 9, "ccdc47": 9, "ccdc50_n": 9, "ccdc53": 9, "ccdc66": 9, "ccdc71l": 9, "ccdc73": 9, "ccdc74_c": 9, "ccdc84": 9, "ccdc85": 9, "ccdc90": 9, "ccdc92": 9, "ccdc93_cc": 9, "ccer1": 9, "ccg": 9, "ccm2_c": 9, "ccp_maug": 9, "ccsap": 9, "ccsmst1": 9, "3f91bf": 9, "cct": 9, "cd20": 9, "cd225": 9, "cd24": 9, "cd34_antigen": 9, "cd36": 9, "cd4": 9, "extracel": 9, "cd45": 9, "cd47": 9, "cd52": 9, "cd99l2": 9, "cdc13_n": 9, "cdc14": 9, "cdc24": 9, "cdc24_ob1": 9, "cdc24_ob2": 9, "cdc24_ob3": 9, "cdc27": 9, "cdc37_c": 9, "cdc37_m": 9, "cdc37_n": 9, "cdc45": 9, "cdc48_2": 9, "cdc48_n": 9, "cdc4_d": 9, "cdc50": 9, "cdc73_c": 9, "cdc73_n": 9, "cdca": 9, "3fbf9c": 9, "cdh": 9, "cyt": 9, "cdh1_2_sant_hl1": 9, "cdi": 9, "cdk2ap": 9, "cdk5rap3": 9, "cdk5_activ": 9, "cdkn3": 9, "cdo_i": 9, "cdp": 9, "oh_p_tran_2": 9, "oh_p_transf": 9, "cdrt4": 9, "cdt1": 9, "cdt1_c": 9, "bf3fb7": 9, "cdv3": 9, "cdtoxina": 9, "ce2_n": 9, "cebp1_n": 9, "cebp_zz": 9, "cecr6_tmem121": 9, "cel_iii_c": 9, "cend1": 9, "cenp": 9, "b_n": 9, "b_dimeri": 9, "c_c": 9, "c_mid": 9, "f_c_rb_bdg": 9, "f_n": 9, "f_leu_zip": 9, "k": [9, 11, 17], "o": [9, 11, 14, 17], "q": [9, 17], "t_c": 9, "t_n": 9, "u": [9, 14, 17], "8f3fbf": 9, "cenp_c_n": 9, "cep1": 9, "dna_bind": 9, "cep170_c": 9, "cep19": 9, "cep209_cc5": 9, "cep44": 9, "cep63": 9, "cep76": 9, "cerk_c": 9, "cf222": 9, "cfa20_dom": 9, "cfap298": 9, "cfap300": 9, "cfap54_n": 9, "cfap61_n": 9, "cfap77": 9, "cfap91": 9, "cfc": 9, "cfem": 9, "cfia_pcf11": 9, "cfsr": 9, "cftr_r": 9, "cg": 9, "cggc": 9, "cgi": 9, "121": 9, "cgld27": 9, "ch": 9, "chad": 9, "chap": 9, "chase": 9, "chase2": 9, "chase3": 9, "chase4": 9, "chase5": 9, "chase6_c": 9, "chase7": 9, "chase8": 9, "chase9": 9, "chat": 9, "chb_hex": 9, "chb_hex_c": 9, "chb_hex_c_1": 9, "chch": 9, "chd5": 9, "chdct2": 9, "chdii_sant": 9, "chdnt": 9, "chgn": 9, "chip": 9, "chip_tpr_n": 9, "chmi": 9, "chord": 9, "chrd": 9, "chrdl_1_2_c": 9, "chs5_n": 9, "chu_c": 9, "chz": 9, "ch_2": 9, "ci": 9, "b14_5a": 9, "cia30": 9, "ciapin1": 9, "cid": 9, "cide": 9, "cidr1_gamma": 9, "cid_ganp": 9, "cif": 9, "cimr": 9, "cis_tmp": 9, "3fbf96": 9, "cis_spike_tip": 9, "cis_tub": 9, "cite": 9, "ck1gamma_c": 9, "ck2": 9, "ckap2_c": 9, "ck": 9, "ck_ii_beta": 9, "clag": 9, "clamp": 9, "clasp_n": 9, "clca": 9, "clec16a_c": 9, "clip": [9, 14], "3f71bf": 9, "clip1_znf": 9, "clip_1": 9, "clip_sph_scar": 9, "clip_sph_ma": 9, "cllac": 9, "cln3": 9, "cln5": 9, "cln6": 9, "clp1_n": 9, "clp1_p": 9, "clptm1": 9, "3fb2bf": 9, "clp_proteas": 9, "clstn_c": 9, "clu": 9, "clu_n": 9, "clz": 9, "cma": 9, "cmd": 9, "cms1": 9, "cm_1": 9, "cm_2": 9, "cndh2_c": 9, "cndh2_m": 9, "cndh2_n": 9, "cnf1": 9, "cnh": 9, "cnk2_3_dom": 9, "cnnm": 9, "cnot11": 9, "cnot1_caf1_bind": 9, "cnot1_heat": 9, "cnot1_ttp_bind": 9, "cnp1": 9, "cnp_c_termin": 9, "cnpase": 9, "cnrip1": 9, "cntf": 9, "cn_hydrolas": 9, "coa2": 9, "coa8": 9, "cobra": 9, "cobra1": 9, "codh_a_n": 9, "coe1_dbd": 9, "coe1_hlh": 9, "cog2": 9, "cog2_c": 9, "cog4": 9, "cog5": 9, "cog6": 9, "cog7": 9, "colfi": 9, "commd1_n": 9, "comm_domain": 9, "comp": 9, "compass": 9, "shg1": 9, "cooh": 9, "nh2_lig": 9, "cop": 9, "gamma_platf": 9, "cop23": 9, "copiicoated_erv": 9, "copi_c": 9, "bf3f6b": 9, "copi_assoc": 9, "copr5": 9, "coq7": 9, "coq9": 9, "cor": 9, "co": 9, "cox1": 9, "cox14": 9, "cox15": 9, "ctaa": 9, "cox16": 9, "cox17": 9, "cox2": 9, "transmemb": 9, "cox24_c": 9, "cox2_tm": 9, "cox3": 9, "cox4": 9, "cox4_pro": 9, "cox4_pro_2": 9, "cox5a": 9, "cox5b": 9, "cox6a": 9, "cox6b": 9, "cox6c": 9, "cox7b": 9, "cox7c": 9, "cox7a": 9, "cox8": 9, "3fbf6b": 9, "coxg": 9, "cox_arm": 9, "co_deh_flav_c": 9, "co_dh": 9, "coesteras": 9, "cp12": 9, "cp2": 9, "cpcfc": 9, "cpdase": 9, "cpg4": 9, "cpl": 9, "cpp1": 9, "cpsf100_c": 9, "cpsf73": 9, "100_c": 9, "cpsf_a": 9, "cpsase_l_d2": 9, "cpsase_l_d3": 9, "cpsase_sm_chain": 9, "cpt": 9, "cpt_n": 9, "cpw_wpc": 9, "cp_atpgrasp_1": 9, "cp_atpgrasp_2": 9, "cpxcg_zf": 9, "cr6_interact": 9, "cra": 9, "cral_trio": 9, "cral_trio_2": 9, "cral_trio_n": 9, "cram_rpt": 9, "cra_rpt": 9, "crcb": 9, "crc_subunit": 9, "crept": 9, "crf": 9, "crf1": 9, "cric_ras_sig": 9, "crim": 9, "crim1_c": 9, "crispr_cas2": 9, "crispr_cas6": 9, "crispr_cas6_n": 9, "crispr_cas9_w": 9, "crispr_cse1": 9, "crispr_cse2": 9, "crispr_assoc": 9, "crm1_c": 9, "crm1_repeat": 9, "crm1_repeat_2": 9, "crm1_repeat_3": 9, "crpa": 9, "crr7": 9, "crs1_yhbi": 9, "crt": 9, "crt10": 9, "crep_n": 9, "csd": 9, "csd2": 9, "csf": 9, "csg2": 9, "csm2": 9, "csn4_rpn5_eif3a": 9, "csn5_c": 9, "csn7a_helixi": 9, "csn8_psd8_eif3k": 9, "csrnp_n": 9, "css": 9, "cst": 9, "cstf1_dimer": 9, "cstf2_hing": 9, "cstf_c": 9, "ct47": 9, "ctc1": 9, "ctc1_2": 9, "ctd": 9, "ctd1": 9, "ctd10": 9, "ctd11": 9, "ctd12": 9, "ctd2": 9, "ctd3": 9, "ctd4": 9, "ctd5": 9, "ctd6": 9, "ctd7": 9, "ctd8": 9, "ctd9": 9, "ctf_nfi": 9, "cti": 9, "ctk3": 9, "ctk3_c": 9, "ctlh": 9, "ctnnb1_bind": 9, "ctnnbl": 9, "ctp": 9, "dep_rfkas": 9, "ctp_synth_n": 9, "ctp_transf_1": 9, "ctp_transf_3": 9, "ctp_transf_lik": 9, "ctu2": 9, "ctx_rstb": 9, "ctxphi_piii": 9, "ct_a_b": 9, "ct_c_d": 9, "cub": 9, "cub_2": 9, "cue": 9, "bf803f": 9, "cupid": 9, "cutl": 9, "cvnh": 9, "cwc25": 9, "cw_7": 9, "cw_binding_2": 9, "cx": 9, "cx9c": 9, "cxcl17": 9, "cxcr4_n": 9, "cxcxc": 9, "cxxc_zn": 9, "b_euk": 9, "cyld_phos_sit": 9, "cyria": 9, "b_rac1": 9, "cystm": 9, "cyth": 9, "cytl1": 9, "cyyr1": 9, "czb": 9, "c_gcaxxg_c_c": 9, "c_lfy_flo": 9, "c_triplex": 9, "caatp_nai": 9, "cakb": 9, "cam": 9, "kiin": 9, "cambd": 9, "camkii_ad": 9, "cam_bdg_c0": 9, "cam_bind": 9, "ca_bind_sso6904": 9, "ca_chan_iq": 9, "ca_hom_mod": 9, "caa3_ctag": 9, "bf3f5a": 9, "cache_3": 9, "cache_2": 9, "cactinc_cactu": 9, "cactin_mid": 9, "cad": 9, "cadc_c1": 9, "cadherin": 9, "cadherin_2": 9, "cadherin_3": 9, "cadherin_4": 9, "cadherin_5": 9, "cadherin_c_2": 9, "cadherin_pro": 9, "cadherin_tail": 9, "caenor_h": 9, "caf4": 9, "cag12": 9, "caga": 9, "caga_n": 9, "cagd": 9, "cage_trbe_virb": 9, "cag": 9, "cagx": 9, "cagy_i": 9, "cagy_m": 9, "cagz": 9, "caif_grla": 9, "calc_cgrp_iapp": 9, "calci_bind_ccbp": 9, "calcipressin": 9, "calcyon": 9, "caldesmon": 9, "caleosin": 9, "calici_pp_n": 9, "calmod_bind_c": 9, "calmod_bind_m": 9, "calmodulin_bind": 9, "calpain_iii": 9, "calpain_inhib": 9, "calpain_u2": 9, "calponin": 9, "calreticulin": 9, "calsarcin": 9, "calsequestrin": 9, "calx": 9, "calycin_lik": 9, "campylo_momp": 9, "candida_": 9, "candida_als_n": 9, "cap4_nucleas": 9, "caprin": 9, "1_dimer": 9, "caps_assemb_wzi": 9, "caps_syn_gfcc_c": 9, "caps_syn_gfcc_n": 9, "caps_synth": 9, "caps_synth_capc": 9, "capsid_n": 9, "capsid_ncldv": 9, "capsule_synth": 9, "cara_n": 9, "card_cdnl_trcf": 9, "car": 9, "carb_anhydras": 9, "carb_bind": 9, "carb_kinas": 9, "carbam_trans_c": 9, "carbam_trans_n": 9, "carbopepd_reg_2": 9, "carboxyl_tran": 9, "carboxypepd_reg": 9, "carbpepa_inh": 9, "carbpep_y_n": 9, "carla_c4": 9, "carm_ph": 9, "carn_acyltransf": 9, "carot_n": 9, "caroten_synth": 9, "cas1_acylt": 9, "cas3_c": 9, "cas5fv_hel": 9, "cas6": 9, "cas6_n": 9, "cas6b_c": 9, "cas6b_n": 9, "cas9": 9, "bh": 9, "cas9_c": 9, "cas9_pi": 9, "cas9_pi2": 9, "cas9_rec": 9, "cas9_topo": 9, "cas9_a": 9, "cas9_b_hairpin": 9, "cas_ape2256": 9, "cas_ct1975": 9, "cas_cxxc_cxxc": 9, "cas_cas02710": 9, "cas_cas1": 9, "cas_cas2ct1978": 9, "cas_cas4": 9, "cas_cas5d": 9, "cas_cas6_c": 9, "cas_cas7": 9, "cas_cmr3": 9, "cas_cmr5": 9, "cas_csa4": 9, "cas_csa5": 9, "cas_csd1": 9, "cas_csm6": 9, "cas_csn2": 9, "cas_csx8": 9, "cas_csx9": 9, "cas_csy1": 9, "cas_csy2": 9, "cas_csy3": 9, "cas_csy4": 9, "cas_dxthg": 9, "cas_gsu0053": 9, "cas_gsu0054": 9, "cas_ne0113": 9, "cas_st_csn2": 9, "cas_tm1802": 9, "cas_vva1548": 9, "cas_csx3": 9, "casc1_c": 9, "casc1_n": 9, "casein": 9, "casein_kappa": 9, "caskin": 9, "pro": 9, "rich": 9, "tail": 9, "caskin1": 9, "cass2": 9, "cast": 9, "castor1_n": 9, "castor_poll_mid": 9, "catalas": 9, "catalase_c": 9, "cathelicidin": 9, "cathepsinc_exc": 9, "cation_atpas": 9, "cation_atpase_c": 9, "cation_atpase_n": 9, "cation_efflux": 9, "caud_tail_n": 9, "caudal_act": 9, "caudo_tap": 9, "caudo_bapla16": 9, "caudo_bapla_rbp": 9, "cauli_at": 9, "cauli_dna": 9, "cauli_vi": 9, "caveolin": 9, "cbbq_c": 9, "cbea_antitoxin": 9, "cbia": 9, "cbic": 9, "cbid": 9, "cbig_c": 9, "cbig_n": 9, "cbig_mid": 9, "cbij": 9, "cbik": 9, "cbim": 9, "cbin": 9, "cbiq": 9, "cbix": 9, "cbiz": 9, "cbld": 9, "cbl_n": 9, "cbl_n2": 9, "cbl_n3": 9, "cbta": 9, "cbta_toxin": 9, "cbtb": 9, "ccda": 9, "ccdb": 9, "ccdc124": 9, "ccla_1": 9, "ccmb": 9, "ccmd": 9, "ccmd_alt": 9, "ccme": 9, "ccmf_c": 9, "ccmh": 9, "cdamp_rec": 9, "cdaa_n": 9, "cdc13_ob2": 9, "cdc13_ob4_dim": 9, "cdc6_c": 9, "cdd1": 9, "cdh1_dbd_1": 9, "cdhc": 9, "cdhd": 9, "cdia_c": 9, "cdia_c_trnas": 9, "cdii": 9, "cdii_2": 9, "cdii_3": 9, "cdii_4": 9, "cdii_n": 9, "cdva": 9, "cecr_c": 9, "cecropin": 9, "ceda": 9, "celd_n": 9, "celto": 9, "cellsynth_d": 9, "cellulas": 9, "cellulose_synt": 9, "cema": 9, "cementoin": 9, "centro_c10orf90": 9, "cep3": 9, "cep57_cld": 9, "cep57_cld_2": 9, "cep57_mt_bd": 9, "ceramidas": 9, "ceramidase_alk": 9, "ceramidse_alk_c": 9, "cerato": 9, "platanin": 9, "cest": 9, "cfaa_b_c": 9, "cg6151": 9, "cgr1": 9, "cgta": 9, "chw": 9, "chab": 9, "chac": 9, "chal_sti_synt_c": 9, "chal_sti_synt_n": 9, "chalcon": 9, "chalcone_2": 9, "chalcone_3": 9, "chalcone_n": 9, "channel_tsx": 9, "chapflga": 9, "chapflga_n": 9, "chaperone_iii": 9, "cheb_methylest": 9, "chec": 9, "ched": 9, "chef": 9, "arch": 9, "cher": 9, "cher_n": 9, "chew": 9, "chex": 9, "bf543f": 9, "chei": 9, "chez": 9, "chic": 9, "chiw_ig_lik": 9, "chibbi": 9, "chisel": 9, "chitin_bind_1": 9, "chitin_bind_4": 9, "chitin_synth_1": 9, "chitin_synth_1n": 9, "chitin_synth_2": 9, "chitinasea_n": 9, "chli": 9, "chlampmp_m": 9, "chlam_omp": 9, "chlam_omp3": 9, "chlam_omp6": 9, "chlam_pmp": 9, "chlam_vir": 9, "chlamy_scaf": 9, "chlor_dismutas": 9, "chloroa_b": 9, "chlorophyllas": 9, "chlorophyllase2": 9, "chloroplast_duf": 9, "chlorosome_csmc": 9, "chol_subst": 9, "cholecysa": 9, "rec_n": 9, "choline_bind_1": 9, "choline_bind_2": 9, "choline_bind_3": 9, "choline_kin_n": 9, "choline_kinas": 9, "choline_sulf_c": 9, "3fbfa6": 9, "choline_transpo": 9, "chon_sulph_att": 9, "chondroitinas_b": 9, "chor_lyas": 9, "chordopox_a13l": 9, "chordopox_a33r": 9, "chordopox_g3": 9, "chorein_n": 9, "chorion_1": 9, "chorion_2": 9, "chorion_3": 9, "chorion_s16": 9, "chorismate_bind": 9, "chorismate_synt": 9, "chpa": 9, "chpxy": 9, "bf5a3f": 9, "chrb_n": 9, "chromadorea_alt": 9, "chromate_transp": 9, "chrome_resist": 9, "chromo": 9, "chromo_2": 9, "chromo_shadow": 9, "chromosome_seg": 9, "chs7": 9, "chux_hutx": 9, "churchil": 9, "cipc": 9, "ciart": 9, "cina": 9, "cina_kh": 9, "cir_bir_yir": 9, "cir_n": 9, "citf": 9, "citg": 9, "citmh": 9, "citmhs_2": 9, "citt": 9, "citx": 9, "citrate_bind": 9, "citrate_ly_lig": 9, "citrate_synt": 9, "class_iiisign": 9, "clat_adaptor_": 9, "clathrin": 9, "clathrin_h_link": 9, "clathrin_bdg": 9, "clathrin_lg_ch": 9, "clathrin_propel": 9, "claudin_2": 9, "claudin_3": 9, "clavanin": 9, "clc": 9, "cleaved_adhesin": 9, "clenterotox": 9, "cloacin": 9, "cloacin_immun": 9, "closter_coat": 9, "clostridium_p47": 9, "clp1": 9, "clpb_d2": 9, "clp": 9, "clp_n": 9, "clr2": 9, "clr2_transil": 9, "clr5": 9, "cluap1": 9, "clusterin": 9, "cm_res_lead": 9, "cmc1": 9, "cmci": 9, "cmla_n": 9, "cmr2_n": 9, "cmr7a": 9, "cmyb_c": 9, "cna_b": 9, "cnd1": 9, "cnd1_n": 9, "cnd2": 9, "cnd3": 9, "cnl2_nkp2": 9, "cnn_1n": 9, "cnry": 9, "coa_bind": 9, "coa_binding_2": 9, "coa_binding_3": 9, "coa_tran": 9, "coa_transf_3": 9, "co_at_n": 9, "coa1": 9, "coa3_cc": 9, "coae": 9, "coagulas": 9, "coat_f": 9, "coat_x": 9, "coatamer_beta_c": 9, "coatomer_": 9, "coatomer_wdad": 9, "coatomer_b_cpla": 9, "coatomer_g_cpla": 9, "coba_cobo_btur": 9, "cobd_cbib": 9, "cobn": 9, "mg_chel": 9, "cob": 9, "cobs_n": 9, "cobt": 9, "cobt_c": 9, "cobu": 9, "cobw_c": 9, "cob_adeno_tran": 9, "cobalamin_bind": 9, "cobl": 9, "codi": 9, "codanin": 9, "cofc": 9, "cofd": 9, "cofh_c": 9, "cofac_haem_bdg": 9, "cofilin_adf": 9, "cohesin": 9, "cohesin_heat": 9, "cohesin_load": 9, "coia": 9, "coil": 9, "coilin_n": 9, "colg_sub": 9, "col_cuticle_n": 9, "coleoptericin": 9, "colicin": 9, "dnase": 9, "colicin_d": 9, "colicin_e5": 9, "colicin_ia": 9, "colicin_m": 9, "colicin_pyocin": 9, "colicin_v": 9, "colicin_im": 9, "colicin_immun": 9, "colipas": 9, "colipase_c": 9, "collagen": 9, "collagen_bind": 9, "collagen_bind_2": 9, "collagen_mid": 9, "collagen_trim": 9, "collar": 9, "collectrin": 9, "coma": 9, "comc": 9, "comfb": 9, "comgf": 9, "comgg": 9, "comj": 9, "comk": 9, "comp_du": 9, "comr_tpr": 9, "comx": 9, "comz": 9, "com_ylbf": 9, "comm": 9, "compinhib_scin": 9, "compet": 9, "complex1_30kda": 9, "complex1_49kda": 9, "complex1_51k": 9, "complex1_lyr": 9, "complex1_lyr_1": 9, "complex1_lyr_2": 9, "con": 9, "condens": 9, "condensin2nsmc": 9, "connexin": 9, "connexin40_c": 9, "connexin43": 9, "connexin50": 9, "conotoxin": 9, "cons_hypoth698": 9, "cons_hypoth95": 9, "consortin_c": 9, "cooc_c": 9, "coot": 9, "copb": 9, "copc": 9, "copd": 9, "copg_antitoxin": 9, "copk": 9, "copin": 9, "copper": 9, "fist": 9, "coprogen_oxida": 9, "coq4": 9, "cor1": 9, "cora": 9, "corc_hlyc": 9, "corazonin": 9, "cornichon": 9, "cornifin": 9, "cortbp2": 9, "cortex": 9, "i_coil": 9, "cortexin": 9, "costar": 9, "cote": 9, "coth": 9, "cotja": 9, "cotjb": 9, "couple_hipa": 9, "cown": 9, "cox20": 9, "coxiia": 9, "cpg_bind_c": 9, "cpxc": 9, "cpcd": 9, "cpe": 9, "cpet": 9, "cpn10": 9, "cpn60_tcp1": 9, "cppa_c": 9, "cppa_n": 9, "cpsb_capc": 9, "cpta_toxin": 9, "cpxa_peri": 9, "crea": 9, "cred": 9, "creatinase_n": 9, "creatinase_n_2": 9, "creatininas": 9, "creb_bind": 9, "cren7": 9, "crescentin": 9, "crga": 9, "crinkler": 9, "cript": 9, "crisp": 9, "crl": 9, "cro": 9, "croc_4": 9, "crp": 9, "crr6": 9, "crtc": 9, "crto": 9, "crust_neuro_h": 9, "crust_neurohorm": 9, "cry1ac_d5": 9, "crybp1": 9, "cryptochrome_c": 9, "crystal": 9, "crystall_2": 9, "crystall_3": 9, "crystall_4": 9, "crystallin": 9, "csa1": 9, "csbd": 9, "csc2": 9, "csd3_n": 9, "csd3_n2": 9, "cse1": 9, "csga": 9, "csge": 9, "csgf": 9, "csgg": 9, "csha_nr2": 9, "csha_repeat": 9, "csid": 9, "csiv": 9, "csm1": 9, "csm1_b": 9, "csm1_n": 9, "csm2_iii": 9, "csm4_c": 9, "csos2_m": 9, "csosca": 9, "cspb_prodomain": 9, "csra": 9, "csta": 9, "csta_5tm": 9, "ctip_n": 9, "ctag_cox11": 9, "ctf8": 9, "cthe_2159": 9, "ctndot_traj": 9, "ctr": 9, "ctsr": 9, "ctsr_c": 9, "ctta_n": 9, "cu": 9, "binding_mop": 9, "oxidas": 9, "oxidase_2": 9, "oxidase_3": 9, "oxidase_4": 9, "cu2_monoox_c": 9, "cu2_monooxygen": 9, "cu_amine_oxid": 9, "cu_amine_oxidn1": 9, "cu_amine_oxidn2": 9, "cu_amine_oxidn3": 9, "cu_bind_cora": 9, "cu_bind_lik": 9, "cucumo_coat": 9, "cucumopine_c": 9, "cue1_u7br": 9, "cul7": 9, "cullin": 9, "cullin_nedd8": 9, "cullin_bind": 9, "cupin_1": 9, "cupin_2": 9, "cupin_3": 9, "cupin_5": 9, "cupin_6": 9, "cupin_7": 9, "cupin_8": 9, "cupredoxin_1": 9, "curlin_rpt": 9, "cusb_dom_1": 9, "cusf_ec": 9, "cut12": 9, "cut8": 9, "cuta1": 9, "cutc": 9, "cuticle_1": 9, "cuticle_3": 9, "cuticle_4": 9, "cutinas": 9, "cvfb_wh": 9, "cwfj_c_1": 9, "cwfj_c_2": 9, "cwf_cwc_15": 9, "cwsa": 9, "cxc1": 9, "cxc2": 9, "cxc3": 9, "cxc4": 9, "cxc5": 9, "cxc6": 9, "cxc7": 9, "cxxcxxcc": 9, "cyrpa": 9, "cyanate_lyas": 9, "cyanophycin_syn": 9, "cyb": 9, "cybc1_ero": 9, "cyc": 9, "maltodext_c": 9, "maltodext_n": 9, "cyclas": 9, "cyclase_polyket": 9, "cyclin": 9, "cyclin_c": 9, "cyclin_c_2": 9, "cyclin_d1_bind": 9, "cyclin_n": 9, "cyclin_n2": 9, "cyclophil_lik": 9, "cyclophil_like2": 9, "cyclotid": 9, "cyd_oper_ybg": 9, "cylicin_n": 9, "cyma": 9, "cypi": 9, "cysa_c_termin": 9, "cysg_dimeris": 9, "cys_met_meta_pp": 9, "cys_box": 9, "cys_knot": 9, "cys_rich_cpcc": 9, "cys_rich_cpxg": 9, "cys_rich_cwc": 9, "cys_rich_fgfr": 9, "cys_rich_ktr": 9, "cys_rich_vlp": 9, "cystatin": 9, "cyt_b": 9, "c1_8": 9, "cyt_bd_oxida_i": 9, "cyt_bd_oxida_ii": 9, "cyt_c_ox_iv": 9, "cytadhesin_p30": 9, "cytidylate_kin": 9, "cytidylate_kin2": 9, "cytoc_rc": 9, "cyto_heme_lyas": 9, "cytochromb561_n": 9, "cytochrom_b558a": 9, "cytochrom_b559": 9, "cytochrom_b559a": 9, "cytochrom_b561": 9, "cytochrom_b562": 9, "cytochrom_b_c": 9, "cytochrom_b_n_2": 9, "cytochrom_c": 9, "cytochrom_c1": 9, "cytochrom_c550": 9, "cytochrom_c552": 9, "cytochrom_ciii": 9, "cytochrom_c_2": 9, "cytochrom_c_asm": 9, "cytochrom_d1": 9, "cytochrom_nnt": 9, "cytochrom_c3_2": 9, "cytochrom": 9, "c551": 9, "cytochrome_b": 9, "cytochrome_c554": 9, "cytochrome_c7": 9, "cytochrome_cbb3": 9, "cytochrome_p460": 9, "cytochrome_cb": 9, "3fbf67": 9, "cytokin": 9, "cytokin_check_n": 9, "cytomega_trl10": 9, "cytotox": 9, "czce": 9, "glu_cyclas": 9, "ser_dehydrat": 9, "d123": 9, "d27": 9, "d5_n": 9, "da1": 9, "daad": 9, "daap1": 9, "dac": 9, "dacz_n": 9, "dad": 9, "dag1": 9, "dagat": 9, "dagk_acc": 9, "dagk_cat": 9, "dagk_prokar": 9, "dag_kinase_n": 9, "dahl": 9, "dahp_snth_fxd": 9, "dahp_synth_1": 9, "dahp_synth_2": 9, "dalr_1": 9, "dalr_2": 9, "dan": 9, "dao": 9, "daoa": 9, "dao_c": 9, "dap": 9, "dap10": 9, "dap3": 9, "dapdh_c": 9, "dapg_hydrolas": 9, "dap_b": 9, "dap_dh_c": 9, "dap_epimeras": 9, "darpp": 9, "32": 9, "dash_ask1": 9, "dash_dad1": 9, "dash_dad2": 9, "dash_dad3": 9, "dash_dad4": 9, "dash_dam1": 9, "dash_duo1": 9, "dash_hsk3": 9, "dash_spc19": 9, "dash_spc34": 9, "dazap2": 9, "db": 9, "dbb": 9, "dbc1": 9, "dbd_hth": 9, "dbd_tnp_herm": 9, "dbd_tnp_mut": 9, "dbino": 9, "dbi_prt": 9, "dbp": 9, "dbp10ct": 9, "dbr1": 9, "db_jbp1": 9, "dca16": 9, "dcaf15_wd40": 9, "dcaf17": 9, "dcb": 9, "dcc1": 9, "dcd": 9, "dcp1": 9, "dcp2": 9, "dcr": 9, "dcx": 9, "dc_stamp": 9, "dda1": 9, "ddah_eukar": 9, "dddd": 9, "dde_1": 9, "dde_2": 9, "dde_3": 9, "dde_5": 9, "dde_tnp_1": 9, "dde_tnp_1_2": 9, "dde_tnp_1_3": 9, "dde_tnp_1_4": 9, "dde_tnp_1_5": 9, "dde_tnp_1_6": 9, "dde_tnp_1_7": 9, "dde_tnp_1_assoc": 9, "dde_tnp_2": 9, "dde_tnp_4": 9, "dde_tnp_is1": 9, "dde_tnp_is1595": 9, "dde_tnp_is240": 9, "dde_tnp_is66": 9, "dde_tnp_is66_c": 9, "dde_tnp_isaz013": 9, "dde_tnp_isl3": 9, "dde_tnp_tn3": 9, "ddhd": 9, "ddost_48kd": 9, "ddr": 9, "ddrgk": 9, "ddr_swivel": 9, "ddt": 9, "dd_k": 9, "dead": 9, "dead_2": 9, "dead_assoc": 9, "dec": 9, "1_n": 9, "dec1": 9, "ded": 9, "dedd_tnp_is110": 9, "defb136": 9, "dek_c": 9, "della": 9, "denn": 9, "dennd11": 9, "dep": 9, "depdc5_ctd": 9, "depp": 9, "der1": 9, "derm": 9, "dff": 9, "dff40": 9, "dfp": 9, "dfrp_c": 9, "dgc": 9, "dgcr6": 9, "dgf": 9, "1_4": 9, "1_5": 9, "dgok": 9, "dhbp_synthas": 9, "dhc": 9, "dhc_n1": 9, "dhc_n2": 9, "dhdp": 9, "dhfr_1": 9, "dhfr_2": 9, "dhh": 9, "dhha1": 9, "dhha2": 9, "dhhc": 9, "dhhw": 9, "dhna": 9, "dhodb_f": 9, "s_bind": 9, "dhor": 9, "dho_dh": 9, "dhoas": 9, "dhq": 9, "dhq_synthas": 9, "dhr": 9, "2_lobe_a": 9, "2_lobe_b": 9, "2_lobe_c": 9, "dhquinase_i": 9, "dhquinase_ii": 9, "die2_alg10": 9, "dil": 9, "dim": 9, "dim1": 9, "dimco_n": 9, "diox_n": 9, "dipsi": 9, "dirp": 9, "dit1_pvca": 9, "dix": 9, "dj": 9, "1_pfpi": 9, "djc28_cd": 9, "dkcld": 9, "dknyi": 9, "dleu7": 9, "dlh": 9, "dlic": 9, "dll_n": 9, "dlp_helic": 9, "dm": 9, "dm10_dom": 9, "dm13": 9, "dm4_12": 9, "dma": 9, "dmap1": 9, "dmap1_lik": 9, "dmap_bind": 9, "dmp1": 9, "dmp12": 9, "dmpk_coil": 9, "dmrl_synthas": 9, "dmrt": 9, "dmrt5_dmb": 9, "dmsp_lyas": 9, "dmtf1_n": 9, "dmt_6": 9, "dmt_ydcz": 9, "pkcs_n": 9, "dnaj_rel": 9, "dnapkcs_cc1": 9, "dnapkcs_cc3": 9, "dnapkcs_cc5": 9, "dna_iii_psi": 9, "dna_ppf": 9, "dna_packaging_2": 9, "dna_rnapol_7kd": 9, "dna_alkyl": 9, "dna_binding_1": 9, "dna_binding_2": 9, "dna_circ_n": 9, "dna_gyrasea_c": 9, "dna_gyraseb": 9, "dna_gyraseb_c": 9, "dna_ligase_a_c": 9, "dna_ligase_a_m": 9, "dna_ligase_a_n": 9, "dna_ligase_c": 9, "dna_ligase_iv": 9, "dna_ligase_ob": 9, "dna_ligase_ob_2": 9, "dna_ligase_zbd": 9, "dna_ligase_aden": 9, "dna_meth_n": 9, "dna_methylas": 9, "dna_mis_repair": 9, "dna_pack_n": 9, "dna_photolyas": 9, "dna_pol3_a_ni": 9, "dna_pol3_a_nii": 9, "dna_pol3_alpha": 9, "dna_pol3_beta": 9, "dna_pol3_beta_2": 9, "dna_pol3_beta_3": 9, "dna_pol3_chi": 9, "dna_pol3_delt_c": 9, "dna_pol3_delta": 9, "dna_pol3_delta2": 9, "dna_pol3_fing": 9, "dna_pol3_gamma3": 9, "dna_pol3_tau_4": 9, "dna_pol3_tau_5": 9, "dna_pol3_theta": 9, "dna_pol_a": 9, "dna_pol_a_exo1": 9, "dna_pol_a_exon": 9, "dna_pol_b": 9, "dna_pol_b_2": 9, "dna_pol_b_n": 9, "dna_pol_b_exo1": 9, "dna_pol_b_exo2": 9, "dna_pol_b_palm": 9, "dna_pol_b_thumb": 9, "dna_pol_d_n": 9, "dna_pol_e_b": 9, "dna_pol_p_exo": 9, "dna_pol_alpha_n": 9, "dna_pol_delta_4": 9, "dna_pol_lambd_f": 9, "dna_pol_phi": 9, "dna_primase_": 9, "dna_primase_lrg": 9, "dna_processg_a": 9, "dna_repr_rex1b": 9, "dna_topoisoiv": 9, "dnapol3": 9, "delta_c": 9, "dnapol_exo": 9, "dnd1_dsrm": 9, "dner_c": 9, "dnmt1": 9, "rfd": 9, "dnttip1_dim": 9, "dnase_ii": 9, "dnase_nuca_nucb": 9, "do": [9, 14, 15, 17], "gtpase1": 9, "gtpase2": 9, "dock": 9, "dock_c": 9, "d_n": 9, "dock_n": 9, "dog1": 9, "domon": 9, "dopa_dioxygen": 9, "dor": 9, "dot1": 9, "dp": 9, "ep": 9, "dpbb_1": 9, "dpcd": 9, "dpf1": 9, "3_n": 9, "dpm2": 9, "dpm3": 9, "dppiv_n": 9, "dppiv_rep": 9, "dprp": 9, "dr2241": 9, "drat": 9, "dre2_n": 9, "drepp": 9, "drev": 9, "drhyd": 9, "drim": 9, "drmbl": 9, "drtgg": 9, "dry_eeri": 9, "dsba": 9, "dshct": 9, "dsl": 9, "dspc": 9, "dspn": 9, "dsrb": 9, "dss1_sem1": 9, "dsx_dimer": 9, "dtc": 9, "dthct": 9, "dtw": 9, "duf1002": 9, "duf1003": 9, "duf1005": 9, "duf1007": 9, "duf1010": 9, "duf1011": 9, "duf1015": 9, "duf1016_n": 9, "duf1024": 9, "duf1028": 9, "duf1031": 9, "duf1033": 9, "duf1036": 9, "duf1039": 9, "duf1040": 9, "duf1043": 9, "duf1045": 9, "duf1048": 9, "duf1054": 9, "duf1056": 9, "duf1057": 9, "duf1059": 9, "duf1062": 9, "duf1064": 9, "duf1067": 9, "duf1068": 9, "duf1071": 9, "duf1073": 9, "duf1075": 9, "duf1077": 9, "duf1079": 9, "duf1081": 9, "duf1087": 9, "duf1088": 9, "duf1090": 9, "duf1091": 9, "duf1093": 9, "duf1096": 9, "duf1097": 9, "duf11": 9, "duf1102": 9, "duf1103": 9, "duf1104": 9, "duf1106": 9, "duf1107": 9, "duf1108": 9, "duf1110": 9, "duf1115": 9, "duf1116": 9, "duf1117": 9, "duf1118": 9, "duf1120": 9, "duf1122": 9, "duf1125": 9, "duf1127": 9, "duf1128": 9, "duf1129": 9, "duf1131": 9, "duf1132": 9, "duf1133": 9, "duf1137": 9, "duf1138": 9, "duf1139": 9, "duf1140": 9, "duf1143": 9, "duf1145": 9, "duf1146": 9, "duf1149": 9, "duf1150": 9, "duf1151": 9, "duf1152": 9, "duf1153": 9, "duf1154": 9, "duf1156": 9, "duf1157": 9, "duf1158": 9, "duf116": 9, "duf1161": 9, "duf1163": 9, "duf1168": 9, "duf1173": 9, "duf1174": 9, "duf1175": 9, "duf1176": 9, "duf1177": 9, "duf1178": 9, "duf1179": 9, "duf1180": 9, "duf1181": 9, "duf1182": 9, "duf1184": 9, "duf1186": 9, "duf1187": 9, "duf1189": 9, "duf1190": 9, "duf1191": 9, "duf1192": 9, "duf1194": 9, "duf1195": 9, "duf1198": 9, "duf1202": 9, "duf1203": 9, "duf1204": 9, "duf1205": 9, "duf1206": 9, "duf1207": 9, "duf1213": 9, "duf1214": 9, "duf1216": 9, "duf1217": 9, "duf1218": 9, "duf1221": 9, "duf1223": 9, "duf1229": 9, "duf123": 9, "duf1232": 9, "duf1233": 9, "duf1235": 9, "duf1236": 9, "duf1240": 9, "duf1241": 9, "duf1242": 9, "duf1244": 9, "duf1246": 9, "duf1248": 9, "duf1249": 9, "duf1254": 9, "duf1256": 9, "duf1257": 9, "duf1258": 9, "duf1262": 9, "duf1263": 9, "duf1264": 9, "duf1265": 9, "duf1266": 9, "duf1269": 9, "duf1270": 9, "duf1272": 9, "duf1275": 9, "duf1280": 9, "duf1281": 9, "duf1281_c": 9, "duf1283": 9, "duf1284": 9, "duf1285": 9, "duf1286": 9, "duf1287": 9, "duf1289": 9, "duf1290": 9, "duf1292": 9, "duf1293": 9, "duf1294": 9, "duf1295": 9, "duf1297": 9, "duf1299": 9, "duf1302": 9, "duf1304": 9, "duf1307": 9, "duf1308": 9, "duf131": 9, "duf1310": 9, "duf1315": 9, "duf1317": 9, "duf1318": 9, "duf1319": 9, "duf1322": 9, "duf1323": 9, "duf1325": 9, "duf1326": 9, "duf1327": 9, "duf1328": 9, "duf1329": 9, "duf1330": 9, "duf1338": 9, "duf134": 9, "duf1343": 9, "duf1344": 9, "duf1345": 9, "duf1347": 9, "duf1348": 9, "duf1349": 9, "duf1350": 9, "duf1351": 9, "duf1353": 9, "duf1356": 9, "duf1357": 9, "duf1358": 9, "duf1360": 9, "duf1361": 9, "duf1365": 9, "duf1366": 9, "duf1367": 9, "duf1368": 9, "duf1372": 9, "duf1373": 9, "duf1374": 9, "duf1375": 9, "duf1376": 9, "duf1378": 9, "duf1380": 9, "duf1381": 9, "duf1382": 9, "duf1385": 9, "duf1387": 9, "duf1388": 9, "duf1389": 9, "duf1391": 9, "duf1392": 9, "duf1397": 9, "duf1398": 9, "duf1400": 9, "duf1402": 9, "duf1403": 9, "duf1404": 9, "duf1405": 9, "duf1406": 9, "duf1409": 9, "duf1410": 9, "duf1411": 9, "duf1412": 9, "duf1413": 9, "duf1414": 9, "duf1415": 9, "duf1416": 9, "duf1418": 9, "duf1419": 9, "duf1420": 9, "duf1421": 9, "duf1422": 9, "duf1424": 9, "duf1425": 9, "duf1427": 9, "duf1428": 9, "duf1430": 9, "duf1431": 9, "duf1433": 9, "duf1435": 9, "duf1438": 9, "duf1439": 9, "duf1440": 9, "duf1441": 9, "duf1442": 9, "duf1444": 9, "duf1449": 9, "duf1450": 9, "duf1451": 9, "duf1453": 9, "duf1454": 9, "duf1455": 9, "duf1456": 9, "duf1459": 9, "duf1460": 9, "duf1461": 9, "duf1462": 9, "duf1463": 9, "duf1464": 9, "duf1465": 9, "duf1467": 9, "duf1473": 9, "duf1474": 9, "duf1475": 9, "duf1476": 9, "duf1479": 9, "duf1480": 9, "duf1481": 9, "duf1482": 9, "duf1484": 9, "duf1485": 9, "duf1487": 9, "duf1488": 9, "duf1489": 9, "duf1490": 9, "duf1491": 9, "duf1492": 9, "duf1493": 9, "duf1494": 9, "duf1495": 9, "duf1496": 9, "duf1497": 9, "duf1499": 9, "duf1501": 9, "duf1502": 9, "duf1505": 9, "duf1506": 9, "duf1507": 9, "duf1508": 9, "duf150_c": 9, "duf1510": 9, "duf1512": 9, "duf1513": 9, "duf1514": 9, "duf1515": 9, "duf1516": 9, "duf1517": 9, "duf1518": 9, "duf1521": 9, "duf1522": 9, "duf1523": 9, "duf1524": 9, "duf1525": 9, "duf1529": 9, "duf1533": 9, "duf1538": 9, "duf1539": 9, "duf1540": 9, "duf1541": 9, "duf1542": 9, "duf1543": 9, "duf1547": 9, "duf1548": 9, "duf155": 9, "duf1554": 9, "duf1556": 9, "duf1561": 9, "duf1563": 9, "duf1564": 9, "duf1565": 9, "duf1566": 9, "duf1569": 9, "duf1570": 9, "duf1571": 9, "duf1572": 9, "duf1573": 9, "duf1574": 9, "duf1576": 9, "duf1577": 9, "duf1579": 9, "duf1580": 9, "duf1581": 9, "duf1582": 9, "duf1583": 9, "duf1583_n": 9, "duf1589": 9, "duf1593": 9, "duf1598": 9, "duf1599": 9, "duf16": 9, "duf1600": 9, "duf1601": 9, "duf1604": 9, "duf1609": 9, "duf1611": 9, "duf1611_n": 9, "duf1612": 9, "duf1614": 9, "duf1615": 9, "duf1616": 9, "duf1617": 9, "duf1618": 9, "duf1622": 9, "duf1627": 9, "duf1629": 9, "duf1631": 9, "duf1633": 9, "duf1634": 9, "duf1635": 9, "duf1636": 9, "duf1638": 9, "duf1639": 9, "duf1641": 9, "duf1642": 9, "duf1643": 9, "duf1644": 9, "duf1645": 9, "duf1646": 9, "duf1647": 9, "duf1648": 9, "duf1651": 9, "duf1652": 9, "duf1653": 9, "duf1654": 9, "duf1655": 9, "duf1656": 9, "duf1657": 9, "duf1659": 9, "duf166": 9, "duf1660": 9, "duf1661": 9, "duf1663": 9, "duf1664": 9, "duf1666": 9, "duf1667": 9, "duf1668": 9, "duf167": 9, "duf1670": 9, "duf1672": 9, "duf1673": 9, "duf1674": 9, "duf1676": 9, "duf1677": 9, "duf1678": 9, "duf1679": 9, "duf1681": 9, "duf1684": 9, "duf1685": 9, "duf1686": 9, "duf1687": 9, "duf1688": 9, "duf1689": 9, "duf169": 9, "duf1690": 9, "duf1694": 9, "duf1697": 9, "duf1699": 9, "duf1700": 9, "duf1702": 9, "duf1704": 9, "duf1706": 9, "duf1707": 9, "duf1719": 9, "duf1720": 9, "duf1722": 9, "duf1725": 9, "duf1729": 9, "duf1731": 9, "duf1732": 9, "duf1735": 9, "duf1737": 9, "duf1743": 9, "duf1744": 9, "duf1746": 9, "duf1748": 9, "duf1749": 9, "duf1751": 9, "duf1752": 9, "duf1757": 9, "duf1758": 9, "duf1759": 9, "duf1761": 9, "duf1764": 9, "duf1765": 9, "duf1769": 9, "duf1771": 9, "duf1773": 9, "duf1774": 9, "duf1775": 9, "duf1776": 9, "duf1778": 9, "duf1779": 9, "duf1780": 9, "duf1786": 9, "duf179": 9, "duf1793": 9, "duf1796": 9, "duf1797": 9, "duf1798": 9, "duf1799": 9, "duf1800": 9, "duf1801": 9, "duf1802": 9, "duf1803": 9, "duf1804": 9, "duf1805": 9, "duf1806": 9, "duf1810": 9, "duf1811": 9, "duf1815": 9, "duf1816": 9, "duf1818": 9, "duf1820": 9, "duf1822": 9, "duf1823": 9, "duf1824": 9, "duf1825": 9, "duf1826": 9, "duf1827": 9, "duf1828": 9, "duf1829": 9, "duf1830": 9, "duf1831": 9, "duf1833": 9, "duf1835": 9, "duf1836": 9, "duf1838": 9, "duf1839": 9, "duf1840": 9, "duf1841": 9, "duf1842": 9, "duf1843": 9, "duf1844": 9, "duf1846": 9, "duf1847": 9, "duf1848": 9, "duf1850": 9, "duf1851": 9, "duf1853": 9, "duf1854": 9, "duf1858": 9, "duf1861": 9, "duf1863": 9, "duf1864": 9, "duf1866": 9, "duf1869": 9, "duf1870": 9, "duf1871": 9, "duf1877": 9, "duf1878": 9, "duf188": 9, "duf1882": 9, "duf1883": 9, "duf1884": 9, "duf1885": 9, "duf1887": 9, "duf1889": 9, "duf1890": 9, "duf1892": 9, "duf1894": 9, "duf1896": 9, "duf1897": 9, "duf1899": 9, "duf19": 9, "duf190": 9, "duf1902": 9, "duf1904": 9, "duf1905": 9, "duf1906": 9, "duf1907": 9, "duf1908": 9, "duf1910": 9, "duf1911": 9, "duf1912": 9, "duf1917": 9, "duf1918": 9, "duf1919": 9, "duf192": 9, "duf1922": 9, "duf1923": 9, "duf1924": 9, "duf1930": 9, "duf1931": 9, "duf1932": 9, "duf1934": 9, "duf1935": 9, "duf1936": 9, "duf1937": 9, "duf1940": 9, "duf1942": 9, "duf1947": 9, "duf1948": 9, "duf1949": 9, "duf1951": 9, "duf1952": 9, "duf1953": 9, "duf1955": 9, "duf1958": 9, "duf1959": 9, "duf1961": 9, "duf1963": 9, "duf1964": 9, "duf1965": 9, "duf1967": 9, "duf1968": 9, "duf1970": 9, "duf1971": 9, "duf1972": 9, "duf1977": 9, "duf1978": 9, "duf1979": 9, "duf1980": 9, "duf1981": 9, "duf1983": 9, "duf1985": 9, "duf1986": 9, "duf1989": 9, "duf1990": 9, "duf1993": 9, "duf1995": 9, "duf1996": 9, "duf1997": 9, "duf1999": 9, "duf2000": 9, "duf2001": 9, "duf2002": 9, "duf2004": 9, "duf2007": 9, "duf2009": 9, "duf2011": 9, "duf2014": 9, "duf2015": 9, "duf2016": 9, "duf2017": 9, "duf2018": 9, "duf2019": 9, "duf202": 9, "duf2020": 9, "duf2023": 9, "duf2024": 9, "duf2025": 9, "duf2026": 9, "duf2027": 9, "duf2028": 9, "duf2031": 9, "duf2034": 9, "duf2039": 9, "duf2043": 9, "duf2045": 9, "duf2046": 9, "duf2053": 9, "duf2057": 9, "duf2058": 9, "duf2059": 9, "duf2061": 9, "duf2062": 9, "duf2063": 9, "duf2064": 9, "duf2065": 9, "duf2066": 9, "duf2067": 9, "duf2069": 9, "duf2070": 9, "duf2071": 9, "duf2072": 9, "duf2073": 9, "duf2075": 9, "duf2076": 9, "duf2079": 9, "duf2080": 9, "duf2085": 9, "duf2087": 9, "duf2089": 9, "duf2090": 9, "duf2092": 9, "duf2093": 9, "duf2095": 9, "duf2096": 9, "duf2097": 9, "duf2098": 9, "duf2099": 9, "duf2100": 9, "duf2101": 9, "duf2102": 9, "duf2103": 9, "duf2105": 9, "duf2106": 9, "duf2107": 9, "duf2108": 9, "duf2109": 9, "duf211": 9, "duf2110": 9, "duf2111": 9, "duf2112": 9, "duf2113": 9, "duf2114": 9, "duf2115": 9, "duf2116": 9, "duf2117": 9, "duf2118": 9, "duf2119": 9, "duf212": 9, "duf2120": 9, "duf2121": 9, "duf2122": 9, "duf2124": 9, "duf2125": 9, "duf2126": 9, "duf2127": 9, "duf2129": 9, "duf2130": 9, "duf2135": 9, "duf2138": 9, "duf2139": 9, "duf2140": 9, "duf2141": 9, "duf2142": 9, "duf2145": 9, "duf2147": 9, "duf2148": 9, "duf2149": 9, "duf2150": 9, "duf2152": 9, "duf2153": 9, "duf2154": 9, "duf2155": 9, "duf2157": 9, "duf2158": 9, "duf2160": 9, "duf2161": 9, "duf2162": 9, "duf2163": 9, "duf2164": 9, "duf2165": 9, "duf2167": 9, "duf2169": 9, "duf2170": 9, "duf2171": 9, "duf2172": 9, "duf2173": 9, "duf2175": 9, "duf2177": 9, "duf2178": 9, "duf2179": 9, "duf218": 9, "duf2180": 9, "duf2181": 9, "duf2182": 9, "duf2184": 9, "duf2185": 9, "duf2187": 9, "duf2188": 9, "duf2189": 9, "duf2190": 9, "duf2192": 9, "duf2193": 9, "duf2194": 9, "duf2195": 9, "duf2196": 9, "duf2197": 9, "duf2198": 9, "duf2199": 9, "duf22": 9, "duf220": 9, "duf2200": 9, "duf2201": 9, "duf2201_n": 9, "duf2202": 9, "duf2203": 9, "duf2204": 9, "duf2205": 9, "duf2206": 9, "duf2207": 9, "duf2208": 9, "duf2209": 9, "duf2213": 9, "duf2214": 9, "duf2218": 9, "duf2219": 9, "duf222": 9, "duf2220": 9, "duf2225": 9, "duf2226": 9, "duf2227": 9, "duf2228": 9, "duf2229": 9, "duf223": 9, "duf2231": 9, "duf2232": 9, "duf2235": 9, "duf2237": 9, "duf2238": 9, "duf2239": 9, "duf2240": 9, "duf2242": 9, "duf2243": 9, "duf2244": 9, "duf2247": 9, "duf2249": 9, "duf2250": 9, "duf2251": 9, "duf2252": 9, "duf2254": 9, "duf2255": 9, "duf2256": 9, "duf2258": 9, "duf2259": 9, "duf226": 9, "duf2262": 9, "duf2263": 9, "duf2264": 9, "duf2267": 9, "duf2268": 9, "duf2269": 9, "duf2270": 9, "duf2271": 9, "duf2272": 9, "duf2273": 9, "duf2274": 9, "duf2275": 9, "duf2277": 9, "duf2278": 9, "duf2279": 9, "duf228": 9, "duf2280": 9, "duf2281": 9, "duf2282": 9, "duf2283": 9, "duf2284": 9, "duf2285": 9, "duf2286": 9, "duf2288": 9, "duf229": 9, "duf2290": 9, "duf2291": 9, "duf2292": 9, "duf2293": 9, "duf2298": 9, "duf2299": 9, "duf2300": 9, "duf2301": 9, "duf2303": 9, "duf2304": 9, "duf2306": 9, "duf2310": 9, "duf2312": 9, "duf2314": 9, "duf2316": 9, "duf2321": 9, "duf2322": 9, "duf2325": 9, "duf2326": 9, "duf2330": 9, "duf2332": 9, "duf2333": 9, "duf2334": 9, "duf2335": 9, "duf2336": 9, "duf2339": 9, "duf234": 9, "duf2340": 9, "duf2341": 9, "duf2344": 9, "duf2345": 9, "duf2357": 9, "duf2358": 9, "duf236": 9, "duf2362": 9, "duf2368": 9, "duf237": 9, "duf2370": 9, "duf2371": 9, "duf2374": 9, "duf2375": 9, "duf2378": 9, "duf2379": 9, "duf2380": 9, "duf2381": 9, "duf2382": 9, "duf2383": 9, "duf2385": 9, "duf2387": 9, "duf2388": 9, "duf2389": 9, "duf2390": 9, "duf2391": 9, "duf2393": 9, "duf2396": 9, "duf2397": 9, "duf2398": 9, "duf2399": 9, "duf240": 9, "duf2400": 9, "duf2405": 9, "duf2406": 9, "duf2408": 9, "duf2415": 9, "duf2417": 9, "duf2418": 9, "duf2420": 9, "duf2423": 9, "duf2427": 9, "duf2428": 9, "duf243": 9, "duf2430": 9, "duf2433": 9, "duf2434": 9, "duf2436": 9, "duf2437": 9, "duf2439": 9, "duf244": 9, "duf2441": 9, "duf2442": 9, "duf2443": 9, "duf2448": 9, "duf2451": 9, "duf2452": 9, "duf2456": 9, "duf2457": 9, "duf2458": 9, "duf2459": 9, "duf2460": 9, "duf2461": 9, "duf2462": 9, "duf2463": 9, "duf2464": 9, "duf2465": 9, "duf2469": 9, "duf247": 9, "duf2470": 9, "duf2471": 9, "duf2474": 9, "duf2475": 9, "duf2476": 9, "duf2477": 9, "duf2478": 9, "duf2480": 9, "duf2481": 9, "duf2482": 9, "duf2483": 9, "duf2484": 9, "duf2486": 9, "duf2487": 9, "duf2489": 9, "duf2490": 9, "duf2491": 9, "duf2492": 9, "duf2496": 9, "duf2497": 9, "duf2498": 9, "duf2499": 9, "duf2500": 9, "duf2501": 9, "duf2502": 9, "duf2505": 9, "duf2507": 9, "duf2508": 9, "duf2509": 9, "duf2510": 9, "duf2511": 9, "duf2512": 9, "duf2513": 9, "duf2514": 9, "duf2515": 9, "duf2516": 9, "duf2517": 9, "duf2518": 9, "duf2520": 9, "duf2521": 9, "duf2523": 9, "duf2524": 9, "duf2525": 9, "duf2526": 9, "duf2527": 9, "duf2528": 9, "duf2529": 9, "duf2530": 9, "duf2532": 9, "duf2533": 9, "duf2534": 9, "duf2535": 9, "duf2536": 9, "duf2537": 9, "duf2538": 9, "duf2540": 9, "duf2541": 9, "duf2542": 9, "duf2543": 9, "duf2544": 9, "duf2545": 9, "duf2550": 9, "duf2551": 9, "duf2552": 9, "duf2553": 9, "duf2554": 9, "duf2555": 9, "duf2556": 9, "duf2559": 9, "duf2560": 9, "duf2561": 9, "duf2563": 9, "duf2564": 9, "duf2567": 9, "duf2568": 9, "duf2569": 9, "duf257": 9, "duf2570": 9, "duf2572": 9, "duf2573": 9, "duf2574": 9, "duf2576": 9, "duf2577": 9, "duf2582": 9, "duf2583": 9, "duf2584": 9, "duf2585": 9, "duf2586": 9, "duf2589": 9, "duf2590": 9, "duf2593": 9, "duf2594": 9, "duf2599": 9, "duf2600": 9, "duf2603": 9, "duf2604": 9, "duf2605": 9, "duf2606": 9, "duf2607": 9, "duf2608": 9, "duf261": 9, "duf2610": 9, "duf2612": 9, "duf2613": 9, "duf2614": 9, "duf2615": 9, "duf2617": 9, "duf2619": 9, "duf262": 9, "duf2620": 9, "duf2621": 9, "duf2623": 9, "duf2624": 9, "duf2625": 9, "duf2626": 9, "duf2627": 9, "duf2628": 9, "duf2630": 9, "duf2631": 9, "duf2633": 9, "duf2634": 9, "duf2635": 9, "duf2637": 9, "duf2639": 9, "duf2642": 9, "duf2644": 9, "duf2645": 9, "duf2647": 9, "duf2649": 9, "duf2650": 9, "duf2651": 9, "duf2652": 9, "duf2653": 9, "duf2656": 9, "duf2659": 9, "duf2660": 9, "duf2663": 9, "duf2666": 9, "duf267": 9, "3fbf9b": 9, "duf2670": 9, "duf2671": 9, "duf2672": 9, "duf2673": 9, "duf2674": 9, "duf2678": 9, "duf268": 9, "duf2680": 9, "duf2681": 9, "duf2683": 9, "duf2686": 9, "duf2688": 9, "duf2689": 9, "duf269": 9, "duf2690": 9, "duf2691": 9, "duf2694": 9, "duf2695": 9, "duf2700": 9, "duf2703": 9, "duf2704": 9, "duf2705": 9, "duf2706": 9, "duf2709": 9, "duf2710": 9, "duf2711": 9, "duf2712": 9, "duf2713": 9, "duf2714": 9, "duf2715": 9, "duf2716": 9, "duf272": 9, "duf2721": 9, "duf2722": 9, "duf2723": 9, "duf2726": 9, "duf273": 9, "duf2730": 9, "duf2732": 9, "duf2735": 9, "duf2737": 9, "duf2738": 9, "duf2740": 9, "duf2742": 9, "duf2744": 9, "duf2746": 9, "duf2748": 9, "duf2749": 9, "duf2750": 9, "duf2752": 9, "duf2753": 9, "duf2754": 9, "duf2755": 9, "duf2756": 9, "duf2759": 9, "duf276": 9, "duf2760": 9, "duf2761": 9, "duf2764": 9, "duf2766": 9, "duf2767": 9, "duf2768": 9, "duf2769": 9, "duf2770": 9, "duf2771": 9, "duf2773": 9, "duf2776": 9, "duf2777": 9, "duf2778": 9, "duf2779": 9, "duf2780": 9, "duf2782": 9, "duf2783": 9, "duf2784": 9, "duf2785": 9, "duf2786": 9, "duf2787": 9, "duf2788": 9, "duf2789": 9, "duf2790": 9, "duf2793": 9, "duf2794": 9, "duf2795": 9, "duf2796": 9, "duf2797": 9, "duf2798": 9, "duf2799": 9, "duf2800": 9, "duf2802": 9, "duf2804": 9, "duf2805": 9, "duf2806": 9, "duf2807": 9, "duf2808": 9, "duf2809": 9, "duf281": 9, "duf2810": 9, "duf2811": 9, "duf2812": 9, "duf2813": 9, "duf2815": 9, "duf2817": 9, "duf2818": 9, "duf282": 9, "duf2824": 9, "duf2826": 9, "duf2827": 9, "duf2828": 9, "duf2829": 9, "duf2834": 9, "duf2835": 9, "duf2838": 9, "duf2839": 9, "duf2840": 9, "duf2841": 9, "duf2842": 9, "duf2844": 9, "duf2845": 9, "duf2846": 9, "duf2847": 9, "duf2848": 9, "duf2849": 9, "duf285": 9, "duf2850": 9, "duf2851": 9, "duf2852": 9, "duf2853": 9, "duf2854": 9, "duf2855": 9, "duf2857": 9, "duf2859": 9, "duf2860": 9, "duf2861": 9, "duf2862": 9, "duf2863": 9, "duf2865": 9, "duf2866": 9, "duf2867": 9, "duf2868": 9, "duf287": 9, "duf2871": 9, "duf2875": 9, "duf2877": 9, "duf2878": 9, "duf2880": 9, "duf2884": 9, "duf2887": 9, "duf2889": 9, "duf2891": 9, "duf2892": 9, "duf2894": 9, "duf2895": 9, "duf2897": 9, "duf29": 9, "duf2905": 9, "duf2909": 9, "duf2911": 9, "duf2913": 9, "duf2914": 9, "duf2917": 9, "duf2919": 9, "duf2920": 9, "duf2921": 9, "duf2922": 9, "duf2924": 9, "duf2927": 9, "duf2929": 9, "duf2931": 9, "duf2933": 9, "duf2934": 9, "duf2935": 9, "duf2937": 9, "duf2938": 9, "duf2939": 9, "duf294": 9, "duf2944": 9, "duf2946": 9, "duf2947": 9, "duf2948": 9, "duf2949": 9, "duf294_c": 9, "duf295": 9, "duf2950": 9, "duf2951": 9, "duf2953": 9, "duf2955": 9, "duf2956": 9, "duf2957": 9, "duf2958": 9, "duf2959": 9, "duf2960": 9, "duf2961": 9, "duf2963": 9, "duf2964": 9, "duf2967": 9, "duf2968": 9, "duf2969": 9, "duf2970": 9, "duf2971": 9, "duf2972": 9, "duf2973": 9, "duf2975": 9, "duf2976": 9, "duf2977": 9, "duf2981": 9, "duf2982": 9, "duf2985": 9, "duf2986": 9, "duf2987": 9, "duf2989": 9, "duf2990": 9, "duf2992": 9, "duf2996": 9, "duf2997": 9, "duf2999": 9, "duf3000": 9, "duf3005": 9, "duf3006": 9, "duf3007": 9, "duf3008": 9, "duf3010": 9, "duf3011": 9, "duf3012": 9, "duf3013": 9, "duf3014": 9, "duf3015": 9, "duf3016": 9, "duf3017": 9, "duf3019": 9, "duf302": 9, "duf3020": 9, "duf3021": 9, "duf3022": 9, "duf3023": 9, "duf3024": 9, "duf3025": 9, "duf3027": 9, "duf3029": 9, "duf3034": 9, "duf3035": 9, "duf3037": 9, "duf3038": 9, "duf3039": 9, "duf3040": 9, "duf3042": 9, "duf3043": 9, "duf3046": 9, "duf3047": 9, "duf3048": 9, "duf3048_c": 9, "duf305": 9, "duf3050": 9, "duf3052": 9, "duf3053": 9, "duf3054": 9, "duf3055": 9, "duf3060": 9, "duf3067": 9, "duf3069": 9, "duf3071": 9, "duf3072": 9, "duf3073": 9, "duf3074": 9, "duf3077": 9, "duf3078": 9, "duf3079": 9, "duf308": 9, "duf3080": 9, "duf3081": 9, "duf3082": 9, "duf3083": 9, "duf3084": 9, "duf3085": 9, "duf3086": 9, "duf3087": 9, "duf3088": 9, "duf3089": 9, "duf309": 9, "duf3090": 9, "duf3091": 9, "duf3093": 9, "duf3094": 9, "duf3095": 9, "duf3096": 9, "duf3097": 9, "duf3098": 9, "duf3099": 9, "duf3100": 9, "duf3102": 9, "duf3103": 9, "duf3104": 9, "duf3105": 9, "duf3106": 9, "duf3107": 9, "duf3108": 9, "duf3109": 9, "duf3110": 9, "duf3112": 9, "duf3113": 9, "duf3114": 9, "duf3116": 9, "duf3117": 9, "duf3119": 9, "duf3120": 9, "duf3122": 9, "duf3123": 9, "duf3124": 9, "duf3126": 9, "duf3127": 9, "duf3128": 9, "duf3130": 9, "duf3131": 9, "duf3134": 9, "duf3135": 9, "duf3136": 9, "duf3137": 9, "duf3138": 9, "duf3139": 9, "duf3140": 9, "duf3141": 9, "duf3142": 9, "duf3143": 9, "duf3144": 9, "duf3145": 9, "duf3146": 9, "duf3147": 9, "duf3148": 9, "duf3149": 9, "duf3150": 9, "duf3151": 9, "duf3152": 9, "duf3153": 9, "duf3155": 9, "duf3156": 9, "duf3157": 9, "duf3158": 9, "duf3159": 9, "duf316": 9, "duf3160": 9, "duf3161": 9, "duf3164": 9, "duf3165": 9, "duf3168": 9, "duf3169": 9, "duf3172": 9, "duf3173": 9, "duf3175": 9, "duf3176": 9, "duf3177": 9, "duf3179": 9, "duf3180": 9, "duf3181": 9, "duf3182": 9, "duf3185": 9, "duf3187": 9, "duf3188": 9, "duf3189": 9, "duf3192": 9, "duf3194": 9, "duf3195": 9, "duf3196": 9, "duf3197": 9, "duf3198": 9, "duf3199": 9, "duf3201": 9, "duf3203": 9, "duf3206": 9, "duf3208": 9, "duf3209": 9, "duf321": 9, "duf3211": 9, "duf3212": 9, "duf3213": 9, "duf3215": 9, "duf3216": 9, "duf3217": 9, "duf3218": 9, "duf3219": 9, "duf3220": 9, "duf3221": 9, "duf3222": 9, "duf3223": 9, "duf3224": 9, "duf3225": 9, "duf3226": 9, "duf3228": 9, "duf3231": 9, "duf3232": 9, "duf3234": 9, "duf3237": 9, "duf3238": 9, "duf3239": 9, "duf3240": 9, "duf3242": 9, "duf3243": 9, "duf3244": 9, "duf3245": 9, "duf3246": 9, "duf3247": 9, "duf3248": 9, "duf3251": 9, "duf3253": 9, "duf3255": 9, "duf3256": 9, "duf3258": 9, "duf326": 9, "duf3261": 9, "duf3262": 9, "duf3263": 9, "duf3265": 9, "duf3267": 9, "duf3268": 9, "duf3269": 9, "duf327": 9, "duf3270": 9, "duf3271": 9, "duf3272": 9, "duf3273": 9, "duf3274": 9, "duf3275": 9, "duf3276": 9, "duf3278": 9, "duf3280": 9, "duf3281": 9, "duf3283": 9, "duf3284": 9, "duf3285": 9, "duf3287": 9, "duf3288": 9, "duf3289": 9, "duf3290": 9, "duf3291": 9, "duf3292": 9, "duf3293": 9, "duf3294": 9, "duf3295": 9, "duf3297": 9, "duf3298": 9, "duf3299": 9, "duf3300": 9, "duf3301": 9, "duf3302": 9, "duf3303": 9, "duf3304": 9, "duf3305": 9, "duf3306": 9, "duf3307": 9, "duf3309": 9, "duf3310": 9, "duf3311": 9, "duf3313": 9, "duf3314": 9, "duf3316": 9, "duf3318": 9, "duf3319": 9, "duf3320": 9, "duf3322": 9, "duf3323": 9, "duf3324": 9, "duf3325": 9, "duf3326": 9, "duf333": 9, "duf3330": 9, "duf3331": 9, "duf3332": 9, "duf3333": 9, "duf3334": 9, "duf3335": 9, "duf3336": 9, "duf3337": 9, "duf3339": 9, "duf334": 9, "duf3340": 9, "duf3344": 9, "duf3346": 9, "duf3347": 9, "duf3348": 9, "duf3349": 9, "duf3350": 9, "duf3352": 9, "duf3360": 9, "duf3362": 9, "duf3363": 9, "duf3365": 9, "duf3367": 9, "duf3368": 9, "duf3369": 9, "duf3370": 9, "duf3371": 9, "duf3373": 9, "duf3375": 9, "duf3376": 9, "duf3377": 9, "duf3378": 9, "duf3379": 9, "duf3381": 9, "duf3382": 9, "duf3383": 9, "duf3384": 9, "duf3385": 9, "duf3386": 9, "duf3387": 9, "duf3388": 9, "duf3389": 9, "duf3391": 9, "duf3392": 9, "duf3394": 9, "duf3396": 9, "duf3397": 9, "duf3399": 9, "duf3400": 9, "duf3402": 9, "duf3403": 9, "duf3404": 9, "duf3405": 9, "duf3408": 9, "duf3410": 9, "duf3412": 9, "duf3413": 9, "duf3417": 9, "duf3418": 9, "duf3419": 9, "duf3420": 9, "duf3421": 9, "duf3422": 9, "duf3425": 9, "duf3426": 9, "duf3427": 9, "duf3429": 9, "duf3431": 9, "duf3432": 9, "duf3433": 9, "duf3435": 9, "duf3437": 9, "duf3438": 9, "duf3439": 9, "duf3440": 9, "duf3443": 9, "duf3444": 9, "duf3445": 9, "duf3446": 9, "duf3447": 9, "duf3450": 9, "duf3452": 9, "duf3455": 9, "duf3456": 9, "duf3458": 9, "duf3458_c": 9, "duf3459": 9, "duf346": 9, "duf3460": 9, "duf3461": 9, "duf3463": 9, "duf3464": 9, "duf3465": 9, "duf3466": 9, "duf3467": 9, "duf347": 9, "duf3470": 9, "duf3471": 9, "duf3472": 9, "duf3473": 9, "duf3474": 9, "duf3475": 9, "duf3479": 9, "duf348": 9, "duf3480": 9, "duf3481": 9, "duf3482": 9, "duf3483": 9, "duf3485": 9, "duf3487": 9, "duf3489": 9, "duf349": 9, "duf3490": 9, "duf3491": 9, "duf3492": 9, "duf3493": 9, "duf3496": 9, "duf3498": 9, "duf3499": 9, "duf350": 9, "duf3500": 9, "duf3501": 9, "duf3502": 9, "duf3504": 9, "duf3509": 9, "duf3511": 9, "duf3512": 9, "duf3514": 9, "duf3515": 9, "duf3516": 9, "duf3517": 9, "duf3519": 9, "duf3520": 9, "duf3522": 9, "duf3524": 9, "duf3526": 9, "duf3527": 9, "duf3528": 9, "duf3530": 9, "duf3531": 9, "duf3533": 9, "duf3535": 9, "duf3536": 9, "duf3537": 9, "duf3539": 9, "duf354": 9, "duf3540": 9, "duf3541": 9, "duf3543": 9, "duf3544": 9, "duf3545": 9, "duf3549": 9, "duf3551": 9, "duf3553": 9, "duf3556": 9, "duf3557": 9, "duf3558": 9, "duf356": 9, "duf3560": 9, "duf3561": 9, "duf3562": 9, "duf3563": 9, "duf3564": 9, "duf3565": 9, "duf3566": 9, "duf3567": 9, "duf3568": 9, "duf357": 9, "duf3570": 9, "duf3572": 9, "duf3573": 9, "duf3574": 9, "duf3575": 9, "duf3576": 9, "duf3577": 9, "duf3579": 9, "duf3581": 9, "duf3583": 9, "duf3584": 9, "duf3586": 9, "duf359": 9, "duf3591": 9, "duf3592": 9, "duf3593": 9, "duf3597": 9, "duf3598": 9, "duf3599": 9, "duf35_n": 9, "duf3600": 9, "duf3601": 9, "duf3602": 9, "duf3603": 9, "duf3604": 9, "duf3605": 9, "duf3606": 9, "duf3611": 9, "duf3612": 9, "duf3613": 9, "duf3615": 9, "duf3616": 9, "duf3617": 9, "duf3618": 9, "duf3619": 9, "duf362": 9, "duf3622": 9, "duf3623": 9, "duf3624": 9, "duf3626": 9, "duf3627": 9, "duf3629": 9, "duf3630": 9, "duf3631": 9, "duf3632": 9, "duf3634": 9, "duf3636": 9, "duf3638": 9, "duf364": 9, "duf3641": 9, "duf3642": 9, "duf3644": 9, "duf3645": 9, "duf3646": 9, "duf3648": 9, "duf3649": 9, "duf365": 9, "duf3652": 9, "duf3653": 9, "duf3654": 9, "duf3656": 9, "duf3657": 9, "duf3658": 9, "duf3659": 9, "duf366": 9, "duf3660": 9, "duf3663": 9, "duf3664": 9, "duf3666": 9, "duf3667": 9, "duf3668": 9, "duf3669": 9, "duf3670": 9, "duf3671": 9, "duf3672": 9, "duf3673": 9, "duf3675": 9, "duf3676": 9, "duf3677": 9, "duf3678": 9, "duf3679": 9, "duf368": 9, "duf3681": 9, "duf3682": 9, "duf3683": 9, "duf3684": 9, "duf3685": 9, "duf3686": 9, "duf3687": 9, "duf3688": 9, "duf3689": 9, "duf3693": 9, "duf3694": 9, "duf3695": 9, "duf3696": 9, "duf3697": 9, "duf3698": 9, "duf3699": 9, "duf370": 9, "duf3700": 9, "duf3701": 9, "duf3703": 9, "duf3704": 9, "duf3707": 9, "duf3708": 9, "duf3709": 9, "duf371": 9, "duf3710": 9, "duf3712": 9, "duf3713": 9, "duf3715": 9, "duf3716": 9, "duf3717": 9, "duf3718": 9, "duf3719": 9, "duf3720": 9, "duf3721": 9, "duf3723": 9, "duf3726": 9, "duf3727": 9, "duf373": 9, "duf3730": 9, "duf3731": 9, "duf3732": 9, "duf3734": 9, "duf3736": 9, "duf3737": 9, "duf3738": 9, "duf3739": 9, "duf374": 9, "duf3740": 9, "duf3741": 9, "duf3742": 9, "duf3744": 9, "duf3747": 9, "duf3748": 9, "duf3750": 9, "duf3751": 9, "duf3752": 9, "duf3754": 9, "duf3755": 9, "duf3757": 9, "duf3759": 9, "duf3760": 9, "duf3761": 9, "duf3764": 9, "duf3768": 9, "duf3769": 9, "duf3770": 9, "duf3772": 9, "duf3774": 9, "duf3775": 9, "duf3776": 9, "duf3778": 9, "duf378": 9, "duf3780": 9, "duf3781": 9, "duf3782": 9, "duf3783": 9, "duf3784": 9, "duf3785": 9, "duf3786": 9, "duf3787": 9, "duf3788": 9, "duf3789": 9, "duf3791": 9, "duf3792": 9, "duf3793": 9, "duf3794": 9, "duf3795": 9, "duf3796": 9, "duf3797": 9, "duf3798": 9, "duf3799": 9, "duf3800": 9, "duf3801": 9, "duf3802": 9, "duf3804": 9, "duf3805": 9, "duf3806": 9, "duf3807": 9, "duf3809": 9, "duf3810": 9, "duf3811": 9, "duf3813": 9, "duf3817": 9, "duf3818": 9, "duf3819": 9, "duf382": 9, "duf3821": 9, "duf3822": 9, "duf3823": 9, "duf3823_c": 9, "duf3824": 9, "duf3825": 9, "duf3826": 9, "duf3827": 9, "duf3828": 9, "duf3829": 9, "duf383": 9, "duf3830": 9, "duf3833": 9, "duf3834": 9, "duf3835": 9, "duf3836": 9, "duf3837": 9, "duf3839": 9, "duf384": 9, "duf3841": 9, "duf3842": 9, "duf3843": 9, "duf3844": 9, "duf3845": 9, "duf3846": 9, "duf3847": 9, "duf3848": 9, "duf3849": 9, "duf3850": 9, "duf3851": 9, "duf3852": 9, "duf3853": 9, "duf3854": 9, "duf3855": 9, "duf3856": 9, "duf3857": 9, "duf3858": 9, "duf3859": 9, "duf386": 9, "duf3860": 9, "duf3861": 9, "duf3862": 9, "duf3863": 9, "duf3864": 9, "duf3865": 9, "duf3866": 9, "duf3867": 9, "duf3868": 9, "duf3869": 9, "duf3870": 9, "duf3871": 9, "duf3873": 9, "duf3874": 9, "duf3875": 9, "duf3876": 9, "duf3877": 9, "duf3878": 9, "duf3879": 9, "duf3880": 9, "duf3881": 9, "duf3882": 9, "duf3884": 9, "duf3885": 9, "duf3886": 9, "duf3887": 9, "duf3888": 9, "duf3889": 9, "duf389": 9, "duf3890": 9, "duf3891": 9, "duf3892": 9, "duf3894": 9, "duf3895": 9, "duf3896": 9, "duf3898": 9, "duf3899": 9, "duf3900": 9, "duf3902": 9, "duf3903": 9, "duf3905": 9, "duf3906": 9, "duf3907": 9, "duf3908": 9, "duf3909": 9, "duf3910": 9, "duf3911": 9, "duf3912": 9, "duf3913": 9, "duf3914": 9, "duf3915": 9, "duf3916": 9, "duf3917": 9, "duf3918": 9, "duf3919": 9, "duf3920": 9, "duf3921": 9, "duf3922": 9, "duf3923": 9, "duf3924": 9, "duf3925": 9, "duf3926": 9, "duf3927": 9, "duf3928": 9, "duf3929": 9, "duf3930": 9, "duf3931": 9, "duf3932": 9, "duf3933": 9, "duf3934": 9, "duf3935": 9, "duf3937": 9, "duf3938": 9, "duf3939": 9, "duf3941": 9, "duf3942": 9, "duf3943": 9, "duf3944": 9, "duf3945": 9, "duf3947": 9, "duf3948": 9, "duf3949": 9, "duf3950": 9, "duf3951": 9, "duf3952": 9, "duf3953": 9, "duf3954": 9, "duf3955": 9, "duf3956": 9, "duf3958": 9, "duf3959": 9, "duf3960": 9, "duf3961": 9, "duf3963": 9, "duf3964": 9, "duf3965": 9, "duf3966": 9, "duf3967": 9, "duf3969": 9, "duf397": 9, "duf3970": 9, "duf3971": 9, "duf3972": 9, "duf3973": 9, "duf3974": 9, "duf3975": 9, "duf3976": 9, "duf3977": 9, "duf3978": 9, "duf3979": 9, "duf3980": 9, "duf3981": 9, "duf3982": 9, "duf3983": 9, "duf3984": 9, "duf3985": 9, "duf3986": 9, "duf3987": 9, "duf3990": 9, "duf3991": 9, "duf3993": 9, "duf3994": 9, "duf3995": 9, "duf3996": 9, "duf3997": 9, "duf3999": 9, "duf4003": 9, "duf4004": 9, "duf4005": 9, "duf4006": 9, "duf4007": 9, "duf401": 9, "duf4010": 9, "duf4011": 9, "duf4012": 9, "duf4013": 9, "duf4014": 9, "duf4015": 9, "duf4017": 9, "duf4018": 9, "duf4019": 9, "duf402": 9, "duf4020": 9, "duf4021": 9, "duf4022": 9, "duf4023": 9, "duf4024": 9, "duf4025": 9, "duf4026": 9, "duf4027": 9, "duf4028": 9, "duf4029": 9, "duf4030": 9, "duf4031": 9, "duf4032": 9, "duf4034": 9, "duf4035": 9, "duf4037": 9, "duf4038": 9, "duf4041": 9, "duf4042": 9, "duf4043": 9, "duf4044": 9, "duf4045": 9, "duf4046": 9, "duf4047": 9, "duf4048": 9, "duf4049": 9, "duf4050": 9, "duf4052": 9, "duf4054": 9, "duf4055": 9, "duf4056": 9, "duf4057": 9, "duf4058": 9, "duf4059": 9, "duf406": 9, "duf4060": 9, "duf4062": 9, "duf4064": 9, "duf4065": 9, "duf4070": 9, "duf4072": 9, "duf4073": 9, "duf4074": 9, "duf4075": 9, "duf4077": 9, "duf4078": 9, "duf4079": 9, "duf4080": 9, "duf4081": 9, "duf4082": 9, "duf4083": 9, "duf4084": 9, "duf4085": 9, "duf4087": 9, "duf4088": 9, "duf4090": 9, "duf4091": 9, "duf4092": 9, "duf4093": 9, "duf4094": 9, "duf4096": 9, "duf4097": 9, "duf4099": 9, "duf4100": 9, "duf4105": 9, "duf4106": 9, "duf4107": 9, "duf4108": 9, "duf411": 9, "duf4110": 9, "duf4111": 9, "duf4112": 9, "duf4113": 9, "duf4114": 9, "duf4115": 9, "duf4116": 9, "duf4118": 9, "duf4119": 9, "duf412": 9, "duf4120": 9, "duf4121": 9, "duf4122": 9, "duf4123": 9, "duf4124": 9, "duf4125": 9, "duf4126": 9, "duf4127": 9, "duf4128": 9, "duf4129": 9, "duf413": 9, "duf4130": 9, "duf4131": 9, "duf4132": 9, "duf4133": 9, "duf4134": 9, "duf4135": 9, "duf4136": 9, "duf4138": 9, "duf4139": 9, "duf4140": 9, "duf4141": 9, "duf4142": 9, "duf4143": 9, "duf4144": 9, "duf4145": 9, "duf4147": 9, "duf4148": 9, "duf4149": 9, "duf4152": 9, "duf4153": 9, "duf4154": 9, "duf4156": 9, "duf4157": 9, "duf4158": 9, "duf4159": 9, "duf416": 9, "duf4160": 9, "duf4162": 9, "duf4164": 9, "duf4165": 9, "duf4166": 9, "duf4167": 9, "duf4168": 9, "duf4169": 9, "duf417": 9, "duf4170": 9, "duf4171": 9, "duf4172": 9, "duf4174": 9, "duf4175": 9, "duf4176": 9, "duf4177": 9, "duf4178": 9, "duf4179": 9, "duf418": 9, "duf4180": 9, "duf4181": 9, "duf4183": 9, "duf4184": 9, "duf4185": 9, "duf4186": 9, "duf4187": 9, "duf4188": 9, "duf4189": 9, "duf4190": 9, "duf4191": 9, "duf4192": 9, "duf4193": 9, "duf4194": 9, "duf4195": 9, "duf4196": 9, "duf4197": 9, "duf4198": 9, "duf4199": 9, "duf420": 9, "duf4200": 9, "duf4201": 9, "duf4202": 9, "duf4203": 9, "duf4208": 9, "duf4209": 9, "duf421": 9, "duf4210": 9, "duf4211": 9, "duf4212": 9, "duf4213": 9, "duf4214": 9, "duf4215": 9, "duf4216": 9, "duf4217": 9, "duf4218": 9, "duf4219": 9, "duf4220": 9, "duf4221": 9, "duf4222": 9, "duf4223": 9, "duf4224": 9, "duf4225": 9, "duf4226": 9, "duf4227": 9, "duf4229": 9, "duf423": 9, "duf4230": 9, "duf4231": 9, "duf4232": 9, "duf4233": 9, "duf4234": 9, "duf4235": 9, "duf4236": 9, "duf4238": 9, "duf4239": 9, "duf424": 9, "duf4240": 9, "duf4241": 9, "duf4242": 9, "duf4244": 9, "duf4245": 9, "duf4246": 9, "duf4247": 9, "duf4248": 9, "duf4249": 9, "duf4250": 9, "duf4251": 9, "duf4252": 9, "duf4253": 9, "duf4254": 9, "duf4256": 9, "duf4257": 9, "duf4258": 9, "duf4259": 9, "duf4260": 9, "duf4261": 9, "duf4262": 9, "duf4263": 9, "duf4264": 9, "duf4265": 9, "duf4266": 9, "duf4267": 9, "duf4268": 9, "duf4269": 9, "duf4270": 9, "duf4271": 9, "duf4272": 9, "duf4274": 9, "duf4275": 9, "duf4276": 9, "duf4277": 9, "duf4278": 9, "duf4279": 9, "duf4280": 9, "duf4282": 9, "duf4283": 9, "duf4284": 9, "duf4286": 9, "duf4287": 9, "duf4288": 9, "duf429": 9, "duf4290": 9, "duf4291": 9, "duf4292": 9, "duf4293": 9, "duf4294": 9, "duf4295": 9, "duf4296": 9, "duf4298": 9, "duf4299": 9, "duf4300": 9, "duf4301": 9, "duf4302": 9, "duf4303": 9, "duf4304": 9, "duf4305": 9, "duf4306": 9, "duf4307": 9, "duf4309": 9, "duf4310": 9, "duf4311": 9, "duf4312": 9, "duf4313": 9, "duf4314": 9, "duf4315": 9, "duf4316": 9, "duf4317": 9, "duf4318": 9, "duf432": 9, "duf4320": 9, "duf4321": 9, "duf4322": 9, "duf4325": 9, "duf4326": 9, "duf4327": 9, "duf4328": 9, "duf4329": 9, "duf433": 9, "duf4330": 9, "duf4331": 9, "duf4332": 9, "duf4333": 9, "duf4334": 9, "duf4335": 9, "duf4336": 9, "duf4337": 9, "duf4338": 9, "duf434": 9, "duf4340": 9, "duf4342": 9, "duf4344": 9, "duf4345": 9, "duf4346": 9, "duf4347": 9, "duf4348": 9, "duf4349": 9, "duf4350": 9, "duf4351": 9, "duf4352": 9, "duf4354": 9, "duf4355": 9, "duf4357": 9, "duf4358": 9, "duf4359": 9, "duf436": 9, "duf4360": 9, "duf4361": 9, "duf4362": 9, "duf4363": 9, "duf4364": 9, "duf4365": 9, "duf4366": 9, "duf4367": 9, "duf4368": 9, "duf4369": 9, "duf4371": 9, "duf4372": 9, "duf4373": 9, "duf4374": 9, "duf4375": 9, "duf4376": 9, "duf4377": 9, "duf4378": 9, "duf4379": 9, "duf438": 9, "duf4380": 9, "duf4381": 9, "duf4382": 9, "duf4383": 9, "duf4384": 9, "duf4385": 9, "duf4386": 9, "duf4387": 9, "duf4388": 9, "duf4389": 9, "duf4390": 9, "duf4391": 9, "duf4392": 9, "duf4394": 9, "duf4395": 9, "duf4396": 9, "duf4397": 9, "duf4398": 9, "duf4399": 9, "duf440": 9, "duf4400": 9, "duf4401": 9, "duf4402": 9, "duf4403": 9, "duf4404": 9, "duf4405": 9, "duf4406": 9, "duf4407": 9, "duf4408": 9, "duf441": 9, "duf4410": 9, "duf4411": 9, "duf4412": 9, "duf4413": 9, "duf4416": 9, "duf4417": 9, "duf4418": 9, "duf4419": 9, "duf4420": 9, "duf4421": 9, "duf4422": 9, "duf4423": 9, "duf4424": 9, "duf4426": 9, "duf4427": 9, "duf4428": 9, "duf4429": 9, "duf443": 9, "duf4430": 9, "duf4431": 9, "duf4432": 9, "duf4434": 9, "duf4435": 9, "duf4436": 9, "duf4437": 9, "duf4438": 9, "duf4439": 9, "duf444": 9, "duf4440": 9, "duf4441": 9, "duf4442": 9, "duf4443": 9, "duf4444": 9, "duf4446": 9, "duf4447": 9, "duf4449": 9, "duf445": 9, "duf4450": 9, "duf4452": 9, "duf4453": 9, "duf4454": 9, "duf4455": 9, "duf4456": 9, "duf4457": 9, "duf4458": 9, "duf4459": 9, "duf446": 9, "duf4460": 9, "duf4461": 9, "duf4462": 9, "duf4464": 9, "duf4465": 9, "duf4466": 9, "duf4467": 9, "duf4468": 9, "duf4469": 9, "duf447": 9, "duf4470": 9, "duf4471": 9, "duf4472": 9, "duf4473": 9, "duf4474": 9, "duf4476": 9, "duf4477": 9, "duf4478": 9, "duf4479": 9, "duf4481": 9, "duf4482": 9, "duf4484": 9, "duf4485": 9, "duf4487": 9, "duf4488": 9, "duf4489": 9, "duf4490": 9, "duf4491": 9, "duf4492": 9, "duf4493": 9, "duf4494": 9, "duf4495": 9, "duf4497": 9, "duf4500": 9, "duf4501": 9, "duf4502": 9, "duf4503": 9, "duf4504": 9, "duf4505": 9, "duf4507": 9, "duf4508": 9, "duf4512": 9, "duf4513": 9, "duf4514": 9, "duf4515": 9, "duf4516": 9, "duf4517": 9, "duf4518": 9, "duf4519": 9, "duf452": 9, "duf4520": 9, "duf4521": 9, "duf4522": 9, "duf4523": 9, "duf4524": 9, "duf4525": 9, "duf4527": 9, "duf4528": 9, "duf4529": 9, "duf4530": 9, "duf4531": 9, "duf4532": 9, "duf4533": 9, "duf4534": 9, "duf4535": 9, "duf4536": 9, "duf4537": 9, "duf4538": 9, "duf454": 9, "duf4541": 9, "duf4542": 9, "duf4543": 9, "duf4545": 9, "duf4547": 9, "duf4548": 9, "duf4549": 9, "duf455": 9, "duf4550": 9, "duf4551": 9, "duf4552": 9, "duf4553": 9, "duf4554": 9, "duf4555": 9, "duf4556": 9, "duf4558": 9, "duf4559": 9, "duf456": 9, "duf4560": 9, "duf4562": 9, "duf4566": 9, "duf4567": 9, "duf4568": 9, "duf4570": 9, "duf4571": 9, "duf4572": 9, "duf4573": 9, "duf4575": 9, "duf4576": 9, "duf4577": 9, "duf4578": 9, "duf4579": 9, "duf4581": 9, "duf4585": 9, "duf4586": 9, "duf4587": 9, "duf4588": 9, "duf4589": 9, "duf459": 9, "duf4590": 9, "duf4592": 9, "duf4594": 9, "duf4595": 9, "duf4596": 9, "duf4597": 9, "duf4599": 9, "duf460": 9, "duf4600": 9, "duf4601": 9, "duf4602": 9, "duf4603": 9, "duf4604": 9, "duf4605": 9, "duf4606": 9, "duf4607": 9, "duf4609": 9, "duf4611": 9, "duf4612": 9, "duf4614": 9, "duf4615": 9, "duf4616": 9, "duf4617": 9, "duf4618": 9, "duf4619": 9, "duf4620": 9, "duf4621": 9, "duf4623": 9, "duf4624": 9, "duf4625": 9, "duf4627": 9, "duf4628": 9, "duf4629": 9, "duf463": 9, "duf4630": 9, "duf4632": 9, "duf4633": 9, "duf4634": 9, "duf4635": 9, "duf4636": 9, "duf4637": 9, "duf4638": 9, "duf4639": 9, "duf4640": 9, "duf4641": 9, "duf4642": 9, "duf4643": 9, "duf4644": 9, "duf4645": 9, "duf4646": 9, "duf4647": 9, "duf4649": 9, "duf465": 9, "duf4650": 9, "duf4651": 9, "duf4652": 9, "duf4653": 9, "duf4655": 9, "duf4656": 9, "duf4657": 9, "duf4658": 9, "duf4659": 9, "duf4660": 9, "duf4661": 9, "duf4662": 9, "duf4663": 9, "duf4665": 9, "duf4666": 9, "duf4667": 9, "duf4668": 9, "duf4670": 9, "duf4672": 9, "duf4674": 9, "duf4675": 9, "duf4677": 9, "duf4678": 9, "duf4679": 9, "duf468": 9, "duf4680": 9, "duf4681": 9, "duf4682": 9, "duf4683": 9, "duf4684": 9, "duf4685": 9, "duf4686": 9, "duf4687": 9, "duf4688": 9, "duf4689": 9, "duf4690": 9, "duf4691": 9, "duf4692": 9, "duf4693": 9, "duf4694": 9, "duf4695": 9, "duf4698": 9, "duf4699": 9, "duf4702": 9, "duf4703": 9, "duf4704": 9, "duf4705": 9, "duf4706": 9, "duf4707": 9, "duf4708": 9, "duf4709": 9, "duf4710": 9, "duf4711": 9, "duf4712": 9, "duf4713": 9, "duf4714": 9, "duf4715": 9, "duf4716": 9, "duf4718": 9, "duf4719": 9, "duf4720": 9, "duf4722": 9, "duf4723": 9, "duf4724": 9, "duf4726": 9, "duf4727": 9, "duf4728": 9, "duf4729": 9, "duf473": 9, "duf4730": 9, "duf4731": 9, "duf4732": 9, "duf4733": 9, "duf4734": 9, "duf4735": 9, "duf4736": 9, "duf4738": 9, "duf4739": 9, "duf4741": 9, "duf4743": 9, "duf4744": 9, "duf4745": 9, "duf4746": 9, "duf4747": 9, "duf4748": 9, "duf4749": 9, "duf475": 9, "duf4750": 9, "duf4751": 9, "duf4752": 9, "duf4754": 9, "duf4755": 9, "duf4756": 9, "duf4757": 9, "duf4758": 9, "duf4760": 9, "duf4761": 9, "duf4762": 9, "duf4763": 9, "duf4764": 9, "duf4765": 9, "duf4766": 9, "duf4767": 9, "duf4768": 9, "duf4769": 9, "duf4770": 9, "duf4771": 9, "duf4772": 9, "duf4773": 9, "duf4774": 9, "duf4775": 9, "duf4776": 9, "duf4777": 9, "duf4778": 9, "duf4779": 9, "duf4780": 9, "duf4781": 9, "duf4783": 9, "duf4784": 9, "duf4784_n": 9, "duf4785": 9, "duf4786": 9, "duf4787": 9, "duf4788": 9, "duf4789": 9, "duf4790": 9, "duf4791": 9, "duf4792": 9, "duf4793": 9, "duf4794": 9, "duf4795": 9, "duf4796": 9, "duf4797": 9, "duf4798": 9, "duf4799": 9, "duf480": 9, "duf4800": 9, "duf4802": 9, "duf4803": 9, "duf4804": 9, "duf4805": 9, "duf4806": 9, "duf4807": 9, "duf4808": 9, "duf4809": 9, "duf481": 9, "duf4810": 9, "duf4811": 9, "duf4812": 9, "duf4813": 9, "duf4815": 9, "duf4816": 9, "duf4817": 9, "duf4818": 9, "duf4819": 9, "duf4820": 9, "duf4822": 9, "duf4823": 9, "duf4824": 9, "duf4825": 9, "duf4826": 9, "duf4827": 9, "duf4828": 9, "duf4829": 9, "duf483": 9, "duf4830": 9, "duf4831": 9, "duf4832": 9, "duf4833": 9, "duf4834": 9, "duf4835": 9, "duf4836": 9, "duf4837": 9, "duf4838": 9, "duf4839": 9, "duf484": 9, "duf4840": 9, "duf4841": 9, "duf4842": 9, "duf4843": 9, "duf4844": 9, "duf4845": 9, "duf4846": 9, "duf4847": 9, "duf4848": 9, "duf4849": 9, "duf485": 9, "duf4850": 9, "duf4851": 9, "duf4852": 9, "duf4853": 9, "duf4854": 9, "duf4855": 9, "duf4856": 9, "duf4857": 9, "duf4858": 9, "duf4859": 9, "duf4860": 9, "duf4861": 9, "duf4862": 9, "duf4863": 9, "duf4864": 9, "duf4865": 9, "duf4866": 9, "duf4867": 9, "duf4868": 9, "duf4869": 9, "duf4870": 9, "duf4871": 9, "duf4872": 9, "duf4873": 9, "duf4874": 9, "duf4875": 9, "duf4876": 9, "duf4878": 9, "duf4879": 9, "duf488": 9, "duf4880": 9, "duf4881": 9, "duf4882": 9, "duf4883": 9, "duf4884": 9, "duf4885": 9, "duf4886": 9, "duf4887": 9, "duf4888": 9, "duf4889": 9, "duf489": 9, "duf4890": 9, "duf4891": 9, "duf4892": 9, "duf4893": 9, "duf4894": 9, "duf4895": 9, "duf4896": 9, "duf4897": 9, "duf4898": 9, "duf4899": 9, "duf4900": 9, "duf4901": 9, "duf4902": 9, "duf4903": 9, "duf4904": 9, "duf4905": 9, "duf4906": 9, "duf4907": 9, "duf4908": 9, "duf4909": 9, "duf4910": 9, "duf4911": 9, "duf4912": 9, "duf4913": 9, "duf4914": 9, "duf4915": 9, "duf4916": 9, "duf4917": 9, "duf4918": 9, "duf4919": 9, "duf4920": 9, "duf4921": 9, "duf4922": 9, "duf4923": 9, "duf4924": 9, "duf4925": 9, "duf4926": 9, "duf4927": 9, "duf4928": 9, "duf4929": 9, "duf493": 9, "duf4930": 9, "duf4931": 9, "duf4932": 9, "duf4933": 9, "duf4934": 9, "duf4936": 9, "duf4937": 9, "duf4938": 9, "duf4939": 9, "duf494": 9, "duf4940": 9, "duf4941": 9, "duf4942": 9, "duf4943": 9, "duf4944": 9, "duf4945": 9, "duf4946": 9, "duf4947": 9, "duf4948": 9, "duf4949": 9, "duf4950": 9, "duf4951": 9, "duf4952": 9, "duf4953": 9, "duf4954": 9, "duf4955": 9, "duf4956": 9, "duf4957": 9, "duf4958": 9, "duf4959": 9, "duf496": 9, "duf4960": 9, "duf4961": 9, "duf4962": 9, "duf4964": 9, "duf4965": 9, "duf4969": 9, "duf4971": 9, "duf4972": 9, "duf4973": 9, "duf4974": 9, "duf4975": 9, "duf4976": 9, "duf4978": 9, "duf4979": 9, "duf498": 9, "duf4980": 9, "duf4982": 9, "duf4983": 9, "duf4984": 9, "duf4985": 9, "duf4986": 9, "duf4987": 9, "duf4988": 9, "duf4989": 9, "duf499": 9, "duf4990": 9, "duf4992": 9, "duf4994": 9, "duf4995": 9, "duf4996": 9, "duf4998": 9, "duf4999": 9, "duf5000": 9, "duf5001": 9, "duf5003": 9, "duf5004": 9, "duf5005": 9, "duf5006": 9, "duf5007": 9, "duf5008": 9, "duf5009": 9, "duf501": 9, "duf5010": 9, "duf5010_c": 9, "duf5011": 9, "duf5012": 9, "duf5013": 9, "duf5014": 9, "duf5016": 9, "duf5017": 9, "duf5018": 9, "duf502": 9, "duf5020": 9, "duf5021": 9, "duf5022": 9, "duf5023": 9, "duf5024": 9, "duf5025": 9, "duf5026": 9, "duf5027": 9, "duf5028": 9, "duf5029": 9, "duf503": 9, "duf5030": 9, "duf5031": 9, "duf5032": 9, "duf5033": 9, "duf5034": 9, "duf5035": 9, "duf5036": 9, "duf5037": 9, "duf5038": 9, "duf5039": 9, "duf5040": 9, "duf5041": 9, "duf5042": 9, "duf5043": 9, "duf5044": 9, "duf5045": 9, "duf5046": 9, "duf5047": 9, "duf5048": 9, "duf5049": 9, "duf505": 9, "duf5050": 9, "duf5052": 9, "duf5053": 9, "duf5054": 9, "duf5055": 9, "duf5056": 9, "duf5057": 9, "duf5058": 9, "duf5059": 9, "duf5060": 9, "duf5061": 9, "duf5062": 9, "duf5063": 9, "duf5064": 9, "duf5065": 9, "duf5066": 9, "duf5067": 9, "duf5068": 9, "duf5069": 9, "duf507": 9, "duf5070": 9, "duf5071": 9, "duf5072": 9, "duf5073": 9, "duf5074": 9, "duf5075": 9, "duf5076": 9, "duf5077": 9, "duf5078": 9, "duf5079": 9, "duf508": 9, "duf5080": 9, "duf5081": 9, "duf5082": 9, "duf5083": 9, "duf5084": 9, "duf5085": 9, "duf5086": 9, "duf5087": 9, "duf5088": 9, "duf5089": 9, "duf5090": 9, "duf5091": 9, "duf5092": 9, "duf5093": 9, "duf5094": 9, "duf5095": 9, "duf5096": 9, "duf5097": 9, "duf5098": 9, "duf5099": 9, "duf5100": 9, "duf5101": 9, "duf5102": 9, "duf5103": 9, "duf5104": 9, "duf5105": 9, "duf5106": 9, "duf5107": 9, "duf5108": 9, "duf5109": 9, "duf5110": 9, "duf5111": 9, "duf5112": 9, "duf5113": 9, "duf5114": 9, "duf5115": 9, "duf5117": 9, "duf5118": 9, "duf5119": 9, "duf512": 9, "duf5121": 9, "duf5122": 9, "duf5123": 9, "duf5124": 9, "duf5125": 9, "duf5126": 9, "duf5127": 9, "duf5128": 9, "duf5129": 9, "duf5130": 9, "duf5131": 9, "duf5132": 9, "duf5133": 9, "duf5134": 9, "duf5136": 9, "duf5137": 9, "duf515": 9, "duf520": 9, "duf525": 9, "duf530": 9, "duf5300": 9, "duf5301": 9, "duf5302": 9, "duf5304": 9, "duf5305": 9, "duf5308": 9, "duf5309": 9, "duf531": 9, "duf5311": 9, "duf5312": 9, "duf5313": 9, "duf5315": 9, "duf5316": 9, "duf5317": 9, "duf5318": 9, "duf5319": 9, "duf5320": 9, "duf5321": 9, "duf5323": 9, "duf5324": 9, "duf5325": 9, "duf5326": 9, "duf5327": 9, "duf5329": 9, "duf533": 9, "duf5330": 9, "duf5331": 9, "duf5332": 9, "duf5333": 9, "duf5334": 9, "duf5335": 9, "duf5336": 9, "duf5337": 9, "duf5338": 9, "duf5339": 9, "duf5340": 9, "duf5341": 9, "duf5342": 9, "duf5343": 9, "duf5344": 9, "duf5345": 9, "duf5346": 9, "duf5347": 9, "duf5348": 9, "duf5349": 9, "duf535": 9, "duf5350": 9, "duf5351": 9, "duf5352": 9, "duf5353": 9, "duf5354": 9, "duf5355": 9, "duf5356": 9, "duf5357": 9, "duf5358": 9, "duf5359": 9, "duf536": 9, "duf5360": 9, "duf5361": 9, "duf5362": 9, "duf5363": 9, "duf5364": 9, "duf5365": 9, "duf5366": 9, "duf5367": 9, "duf5368": 9, "duf5370": 9, "duf5371": 9, "duf5372": 9, "duf5373": 9, "duf5374": 9, "duf5375": 9, "duf5376": 9, "duf5377": 9, "duf5378": 9, "duf538": 9, "duf5380": 9, "duf5381": 9, "duf5382": 9, "duf5383": 9, "duf5384": 9, "duf5385": 9, "duf5386": 9, "duf5387": 9, "duf5388": 9, "duf5389": 9, "duf5390": 9, "duf5391": 9, "duf5392": 9, "duf5393": 9, "duf5394": 9, "duf5395": 9, "duf5396": 9, "duf5397": 9, "duf5398": 9, "duf5399": 9, "duf5400": 9, "duf5401": 9, "duf5402": 9, "duf5403": 9, "duf5404": 9, "duf5405": 9, "duf5406": 9, "duf5407": 9, "duf5408": 9, "duf5410": 9, "duf5411": 9, "duf5412": 9, "duf5413": 9, "duf5414": 9, "duf5415": 9, "duf5416": 9, "duf5417": 9, "duf5418": 9, "duf5419": 9, "duf5420": 9, "duf5421": 9, "duf5422": 9, "duf5423": 9, "duf5424": 9, "duf5426": 9, "duf5427": 9, "duf543": 9, "duf5431": 9, "duf5443": 9, "duf5444": 9, "duf5445": 9, "duf5446": 9, "duf5447": 9, "duf5448": 9, "duf5450": 9, "duf5452": 9, "duf5453": 9, "duf5454": 9, "duf5455": 9, "duf5456": 9, "duf5457": 9, "duf5460": 9, "duf5462": 9, "duf547": 9, "duf5474": 9, "duf5482": 9, "duf5483": 9, "duf5484": 9, "duf5489": 9, "duf5493": 9, "duf5494": 9, "duf5502": 9, "duf5503": 9, "duf5504": 9, "duf5507": 9, "duf5508": 9, "duf551": 9, "duf5510": 9, "duf5516": 9, "duf5517": 9, "duf5518": 9, "duf5519": 9, "duf5520": 9, "duf5521": 9, "duf5522": 9, "duf5523": 9, "duf5524": 9, "duf5525": 9, "duf5527": 9, "duf5528": 9, "duf5529": 9, "duf553": 9, "duf5530": 9, "duf5531": 9, "duf5532": 9, "duf5533": 9, "duf5534": 9, "duf5535": 9, "duf5536": 9, "duf5537": 9, "duf5538": 9, "duf5539": 9, "duf554": 9, "duf5540": 9, "duf5541": 9, "duf5542": 9, "duf5543": 9, "duf5544": 9, "duf5545": 9, "duf5546": 9, "duf5547": 9, "duf5548": 9, "duf5549": 9, "duf555": 9, "duf5550": 9, "duf5551": 9, "duf5552": 9, "duf5553": 9, "duf5554": 9, "duf5555": 9, "duf5556": 9, "duf5557": 9, "duf5558": 9, "duf5559": 9, "duf5560": 9, "duf5561": 9, "duf5562": 9, "duf5563": 9, "duf5564": 9, "duf5565": 9, "duf5566": 9, "duf5568": 9, "duf5569": 9, "duf5570": 9, "duf5571": 9, "duf5572": 9, "duf5575": 9, "duf5576": 9, "duf5577": 9, "duf5578": 9, "duf5579": 9, "duf5580": 9, "duf5581": 9, "duf5582": 9, "duf5583": 9, "duf5585": 9, "duf5586": 9, "duf5587": 9, "duf5588": 9, "duf559": 9, "duf5590": 9, "duf5591": 9, "duf5592": 9, "duf5593": 9, "duf5594": 9, "duf5595": 9, "duf5597": 9, "duf5600": 9, "duf5601": 9, "duf5602": 9, "duf5603": 9, "duf5604": 9, "duf5605": 9, "duf5606": 9, "duf5609": 9, "duf561": 9, "duf5610": 9, "duf5611": 9, "duf5612": 9, "duf5613": 9, "duf5614": 9, "duf5615": 9, "duf5616": 9, "duf5617": 9, "duf5618": 9, "duf5619": 9, "duf562": 9, "duf5620": 9, "duf5621": 9, "duf5622": 9, "duf5623": 9, "duf5624": 9, "duf5625": 9, "duf5626": 9, "duf5627": 9, "duf5628": 9, "duf5629": 9, "duf5630": 9, "duf5631": 9, "duf5632": 9, "duf5633": 9, "duf5634": 9, "duf5635": 9, "duf5636": 9, "duf5637": 9, "duf5638": 9, "duf5639": 9, "duf5640": 9, "duf5641": 9, "duf5642": 9, "duf5643": 9, "duf5644": 9, "duf5645": 9, "duf5646": 9, "duf5647": 9, "duf5648": 9, "duf5649": 9, "duf565": 9, "duf5650": 9, "duf5651": 9, "duf5652": 9, "duf5654": 9, "duf5655": 9, "duf5656": 9, "duf5657": 9, "duf5658": 9, "duf5659": 9, "duf5660": 9, "duf5661": 9, "duf5662": 9, "duf5663": 9, "duf5665": 9, "duf5666": 9, "duf5667": 9, "duf5668": 9, "duf5669": 9, "duf5670": 9, "duf5671": 9, "duf5672": 9, "duf5673": 9, "duf5674": 9, "duf5675": 9, "duf5676": 9, "duf5677": 9, "duf5678": 9, "duf5679": 9, "duf568": 9, "duf5680": 9, "duf5681": 9, "duf5682": 9, "duf5683": 9, "duf5684": 9, "duf5685": 9, "duf5686": 9, "duf5687": 9, "duf5688": 9, "duf5689": 9, "duf569": 9, "duf5690": 9, "duf5691": 9, "duf5692": 9, "duf5693": 9, "duf5694": 9, "duf5695": 9, "duf5696": 9, "duf5697": 9, "duf5698": 9, "duf5699": 9, "duf5700": 9, "duf5701": 9, "duf5702": 9, "duf5703": 9, "duf5703_n": 9, "duf5704": 9, "duf5706": 9, "duf5707": 9, "duf5708": 9, "duf5709": 9, "duf5710": 9, "duf5711": 9, "duf5712": 9, "duf5713": 9, "duf5714": 9, "duf5715": 9, "duf5716": 9, "duf5716_c": 9, "duf5717": 9, "duf5717_n": 9, "duf5718": 9, "duf5719": 9, "duf5720": 9, "duf5721": 9, "duf5722": 9, "duf5723": 9, "duf5724": 9, "duf5725": 9, "duf5726": 9, "duf5727": 9, "duf5728": 9, "duf5729": 9, "duf573": 9, "duf5730": 9, "duf5731": 9, "duf5732": 9, "duf5733": 9, "duf5734": 9, "duf5735": 9, "duf5736": 9, "duf5737": 9, "duf5738": 9, "duf5739": 9, "duf5740": 9, "duf5741": 9, "duf5742": 9, "duf5743": 9, "duf5744": 9, "duf5745": 9, "duf5746": 9, "duf5748": 9, "duf5749": 9, "duf575": 9, "duf5750": 9, "duf5751": 9, "duf5752": 9, "duf5753": 9, "duf5754": 9, "duf5755": 9, "duf5757": 9, "duf5758": 9, "duf5759": 9, "duf576": 9, "duf5760": 9, "duf5761": 9, "duf5762": 9, "duf5763": 9, "duf5764": 9, "duf5765": 9, "duf5767": 9, "duf577": 9, "duf5776": 9, "duf5777": 9, "duf5778": 9, "duf5779": 9, "duf5780": 9, "duf5781": 9, "duf5783": 9, "duf5784": 9, "duf5785": 9, "duf5786": 9, "duf5787": 9, "duf5788": 9, "duf5789": 9, "duf5790": 9, "duf5791": 9, "duf5793": 9, "duf5794": 9, "duf5795": 9, "duf5796": 9, "duf5797": 9, "duf5798": 9, "duf5799": 9, "duf58": 9, "duf5800": 9, "duf5801": 9, "duf5802": 9, "duf5803": 9, "duf5804": 9, "duf5805": 9, "duf5806": 9, "duf5807": 9, "duf5808": 9, "duf5809": 9, "duf5810": 9, "duf5811": 9, "duf5812": 9, "duf5813": 9, "duf5814": 9, "duf5815": 9, "duf5816": 9, "duf5817": 9, "duf5818": 9, "duf5819": 9, "duf5820": 9, "duf5821": 9, "duf5822": 9, "duf5823": 9, "duf5824": 9, "duf5825": 9, "duf5827": 9, "duf5828": 9, "duf5829": 9, "duf5830": 9, "duf5832": 9, "duf5834": 9, "duf5837": 9, "duf5838": 9, "duf5839": 9, "duf5840": 9, "duf5841": 9, "duf5845": 9, "duf5849": 9, "duf5850": 9, "duf5856": 9, "duf5857": 9, "duf5859": 9, "duf5860": 9, "duf5862": 9, "duf5871": 9, "duf5872": 9, "duf5880": 9, "duf5881": 9, "duf5889": 9, "duf5895": 9, "duf5898": 9, "duf5899": 9, "duf5900": 9, "duf5901": 9, "duf5906": 9, "duf5907": 9, "duf5908": 9, "duf5909": 9, "duf591": 9, "duf5910": 9, "duf5914": 9, "duf5915": 9, "duf5916": 9, "duf5917": 9, "duf5918": 9, "duf5919": 9, "duf592": 9, "duf5920": 9, "duf5921": 9, "duf5923": 9, "duf5924": 9, "duf5925": 9, "duf5926": 9, "duf5927": 9, "duf5928": 9, "duf5929": 9, "duf5930": 9, "duf5931": 9, "duf5932": 9, "duf5933": 9, "duf5934": 9, "duf5935": 9, "duf5936": 9, "duf5937": 9, "duf5938": 9, "duf5939": 9, "duf594": 9, "duf5940": 9, "duf5941": 9, "duf5942": 9, "duf5943": 9, "duf5944": 9, "duf5945": 9, "duf5946": 9, "duf5947": 9, "duf5948": 9, "duf5949": 9, "duf5950": 9, "duf5951": 9, "duf5952": 9, "duf5953": 9, "duf5954": 9, "duf5955": 9, "duf5956": 9, "duf5957": 9, "duf5958": 9, "duf5959": 9, "duf596": 9, "duf5960": 9, "duf5961": 9, "duf5962": 9, "duf5963": 9, "duf5964": 9, "duf5965": 9, "duf5966": 9, "duf5967": 9, "duf5968": 9, "duf5969": 9, "duf5970": 9, "duf5971": 9, "duf5972": 9, "duf5973": 9, "duf5974": 9, "duf5975": 9, "duf5976": 9, "duf5977": 9, "duf5978": 9, "duf5979": 9, "duf5980": 9, "duf5981": 9, "duf5982": 9, "duf5983": 9, "duf5984": 9, "duf5985": 9, "duf5986": 9, "duf5987": 9, "duf5988": 9, "duf5989": 9, "duf599": 9, "duf5990": 9, "duf5991": 9, "duf5992": 9, "duf5993": 9, "duf5994": 9, "duf5995": 9, "duf5996": 9, "duf5997": 9, "duf5998": 9, "duf5999": 9, "duf600": 9, "duf6000": 9, "duf6001": 9, "duf6002": 9, "duf6003": 9, "duf6004": 9, "duf6005": 9, "duf6006": 9, "duf6007": 9, "duf6008": 9, "duf6009": 9, "duf601": 9, "duf6010": 9, "duf6011": 9, "duf6012": 9, "duf6013": 9, "duf6014": 9, "duf6015": 9, "duf6016": 9, "duf6017": 9, "duf6018": 9, "duf6019": 9, "duf6020": 9, "duf6021": 9, "duf6022": 9, "duf6023": 9, "duf6024": 9, "duf6025": 9, "duf6026": 9, "duf6027": 9, "duf6029": 9, "duf603": 9, "duf6030": 9, "duf6031": 9, "duf6033": 9, "duf6034": 9, "duf6035": 9, "duf6036": 9, "duf6037": 9, "duf6038": 9, "duf6039": 9, "duf604": 9, "duf6040": 9, "duf6041": 9, "duf6042": 9, "duf6043": 9, "duf6044": 9, "duf6045": 9, "duf6046": 9, "duf6047": 9, "duf6048": 9, "duf6049": 9, "duf6050": 9, "duf6051": 9, "duf6052": 9, "duf6053": 9, "duf6054": 9, "duf6055": 9, "duf6056": 9, "duf6057": 9, "duf6058": 9, "duf6059": 9, "duf6060": 9, "duf6061": 9, "duf6062": 9, "duf6063": 9, "duf6064": 9, "duf6065": 9, "duf6066": 9, "duf6067": 9, "duf6068": 9, "duf6069": 9, "duf6070": 9, "duf6071": 9, "duf6072": 9, "duf6073": 9, "duf6074": 9, "duf6075": 9, "duf6076": 9, "duf6077": 9, "duf6078": 9, "duf6079": 9, "duf608": 9, "duf6080": 9, "duf6081": 9, "duf6082": 9, "duf6083": 9, "duf6084": 9, "duf6085": 9, "duf6086": 9, "duf6087": 9, "duf6088": 9, "duf6089": 9, "duf6090": 9, "duf6092": 9, "duf6093": 9, "duf6094": 9, "duf6095": 9, "duf6096": 9, "duf6097": 9, "duf6098": 9, "duf6099": 9, "duf61": 9, "duf6100": 9, "duf6101": 9, "duf6102": 9, "duf6103": 9, "duf6104": 9, "duf6105": 9, "duf6106": 9, "duf6107": 9, "duf6108": 9, "duf6109": 9, "duf6110": 9, "duf6111": 9, "duf6112": 9, "duf6113": 9, "duf6114": 9, "duf6115": 9, "duf6116": 9, "duf6117": 9, "duf6118": 9, "duf6119": 9, "duf612": 9, "duf6120": 9, "duf6121": 9, "duf6122": 9, "duf6123": 9, "duf6124": 9, "duf6125": 9, "duf6126": 9, "duf6127": 9, "duf6128": 9, "duf6129": 9, "duf6130": 9, "duf6131": 9, "duf6132": 9, "duf6133": 9, "duf6134": 9, "duf6136": 9, "duf6137": 9, "duf6138": 9, "duf6139": 9, "duf6140": 9, "duf6141": 9, "duf6142": 9, "duf6143": 9, "duf6144": 9, "duf6145": 9, "duf6146": 9, "duf6147": 9, "duf6148": 9, "duf6149": 9, "duf615": 9, "duf6150": 9, "duf6151": 9, "duf6152": 9, "duf6153": 9, "duf6154": 9, "duf6155": 9, "duf6156": 9, "duf6157": 9, "duf6158": 9, "duf6159": 9, "duf616": 9, "duf6160": 9, "duf6161": 9, "duf6162": 9, "duf6163": 9, "duf6164": 9, "duf6165": 9, "duf6166": 9, "duf6167": 9, "duf6168": 9, "duf6169": 9, "duf617": 9, "duf6170": 9, "duf6171": 9, "duf6172": 9, "duf6173": 9, "duf6174": 9, "duf6175": 9, "duf6176": 9, "duf6177": 9, "duf6178": 9, "duf6179": 9, "duf6180": 9, "duf6181": 9, "duf6182": 9, "duf6183": 9, "duf6184": 9, "duf6185": 9, "duf6186": 9, "duf6187": 9, "duf6188": 9, "duf6189": 9, "duf6190": 9, "duf6191": 9, "duf6192": 9, "duf6193": 9, "duf6194": 9, "duf6195": 9, "duf6196": 9, "duf6197": 9, "duf6198": 9, "duf6199": 9, "duf620": 9, "duf6200": 9, "duf6201": 9, "duf6202": 9, "duf6203": 9, "duf6204": 9, "duf6205": 9, "duf6206": 9, "duf6207": 9, "duf6208": 9, "duf6209": 9, "duf621": 9, "duf6210": 9, "duf6211": 9, "duf6212": 9, "duf6213": 9, "duf6214": 9, "duf6215": 9, "duf6216": 9, "duf6217": 9, "duf6218": 9, "duf6219": 9, "duf6220": 9, "duf6221": 9, "duf6222": 9, "duf6223": 9, "duf6224": 9, "duf6225": 9, "duf6226": 9, "duf6227": 9, "duf6228": 9, "duf6229": 9, "duf6230": 9, "duf6231": 9, "duf6232": 9, "duf6233": 9, "duf6234": 9, "duf6235": 9, "duf6236": 9, "duf6237": 9, "duf6238": 9, "duf6239": 9, "duf624": 9, "duf6240": 9, "duf6241": 9, "duf6242": 9, "duf6243": 9, "duf6244": 9, "duf6245": 9, "duf6246": 9, "duf6247": 9, "duf6248": 9, "duf6249": 9, "duf6250": 9, "duf6251": 9, "duf6252": 9, "duf6253": 9, "duf6254": 9, "duf6255": 9, "duf6256": 9, "duf6257": 9, "duf6258": 9, "duf6259": 9, "duf6260": 9, "duf6261": 9, "duf6262": 9, "duf6263": 9, "duf6264": 9, "duf6265": 9, "duf6266": 9, "duf6268": 9, "duf6269": 9, "duf627": 9, "duf6270": 9, "duf6271": 9, "duf6272": 9, "duf6273": 9, "duf6274": 9, "duf6275": 9, "duf6276": 9, "duf6277": 9, "duf6278": 9, "duf6279": 9, "duf6280": 9, "duf6281": 9, "duf6282": 9, "duf6283": 9, "duf6284": 9, "duf6285": 9, "duf6286": 9, "duf6287": 9, "duf6288": 9, "duf6289": 9, "duf629": 9, "duf6290": 9, "duf6291": 9, "duf6292": 9, "duf6293": 9, "duf6294": 9, "duf6295": 9, "duf6296": 9, "duf6297": 9, "duf6298": 9, "duf6299": 9, "duf63": 9, "duf630": 9, "duf6300": 9, "duf6301": 9, "duf6302": 9, "duf6303": 9, "duf6304": 9, "duf6305": 9, "duf6306": 9, "duf6307": 9, "duf6308": 9, "duf6309": 9, "duf6310": 9, "duf6311": 9, "duf6312": 9, "duf6313": 9, "duf6314": 9, "duf6315": 9, "duf6316": 9, "duf6317": 9, "duf6318": 9, "duf6319": 9, "duf632": 9, "duf6320": 9, "duf6321": 9, "duf6323": 9, "duf6324": 9, "duf6325": 9, "duf6326": 9, "duf6327": 9, "duf6328": 9, "duf6329": 9, "duf6330": 9, "duf6331": 9, "duf6332": 9, "duf6333": 9, "duf6334": 9, "duf6335": 9, "duf6336": 9, "duf6337": 9, "duf6338": 9, "duf6339": 9, "duf6340": 9, "duf6341": 9, "duf6342": 9, "duf6343": 9, "duf6344": 9, "duf6345": 9, "duf6346": 9, "duf6347": 9, "duf6348": 9, "duf6349": 9, "duf6350": 9, "duf6351": 9, "duf6352": 9, "duf6353": 9, "duf6354": 9, "duf6355": 9, "duf6356": 9, "duf6357": 9, "duf6358": 9, "duf6359": 9, "duf6360": 9, "duf6361": 9, "duf6362": 9, "duf6363": 9, "duf6364": 9, "duf6365": 9, "duf6366": 9, "duf6367": 9, "duf6368": 9, "duf6369": 9, "duf637": 9, "duf6370": 9, "duf6371": 9, "duf6372": 9, "duf6373": 9, "duf6374": 9, "duf6375": 9, "duf6376": 9, "duf6377": 9, "duf6378": 9, "duf6379": 9, "duf6380": 9, "duf6381": 9, "duf6382": 9, "duf6383": 9, "duf6384": 9, "duf6385": 9, "duf6386": 9, "duf6387": 9, "duf6388": 9, "duf6389": 9, "duf639": 9, "duf6390": 9, "duf6391": 9, "duf6392": 9, "duf6393": 9, "duf6394": 9, "duf6395": 9, "duf6396": 9, "duf6397": 9, "duf6398": 9, "duf6399": 9, "duf6400": 9, "duf6401": 9, "duf6402": 9, "duf6403": 9, "duf6404": 9, "duf6405": 9, "duf6406": 9, "duf6407": 9, "duf6408": 9, "duf6409": 9, "duf641": 9, "duf6410": 9, "duf6411": 9, "duf6412": 9, "duf6413": 9, "duf6414": 9, "duf6415": 9, "duf6416": 9, "duf6417": 9, "duf6418": 9, "duf6419": 9, "duf642": 9, "duf6420": 9, "duf6421": 9, "duf6422": 9, "duf6423": 9, "duf6424": 9, "duf6425": 9, "duf6426": 9, "duf6427": 9, "duf6428": 9, "duf6429": 9, "duf6430": 9, "duf6431": 9, "duf6432": 9, "duf6434": 9, "duf6435": 9, "duf6436": 9, "duf6437": 9, "duf6438": 9, "duf6439": 9, "duf6440": 9, "duf6441": 9, "duf6442": 9, "duf6443": 9, "duf6444": 9, "duf6445": 9, "duf6446": 9, "duf6447": 9, "duf6448": 9, "duf6449": 9, "duf645": 9, "duf6451": 9, "duf6452": 9, "duf6453": 9, "duf6454": 9, "duf6455": 9, "duf6456": 9, "duf6457": 9, "duf6458": 9, "duf6459": 9, "duf6460": 9, "duf6461": 9, "duf6462": 9, "duf6463": 9, "duf6464": 9, "duf6465": 9, "duf6466": 9, "duf6467": 9, "duf6468": 9, "duf6469": 9, "duf6470": 9, "duf6471": 9, "duf6472": 9, "duf6473": 9, "duf6474": 9, "duf6475": 9, "duf6476": 9, "duf6477": 9, "duf6478": 9, "duf6479": 9, "duf648": 9, "duf6480": 9, "duf6481": 9, "duf6482": 9, "duf6483": 9, "duf6484": 9, "duf6485": 9, "duf6486": 9, "duf6487": 9, "duf6488": 9, "duf6489": 9, "duf6490": 9, "duf6491": 9, "duf6492": 9, "duf6493": 9, "duf6494": 9, "duf6495": 9, "duf6496": 9, "duf6497": 9, "duf6498": 9, "duf6499": 9, "duf6500": 9, "duf6501": 9, "duf6502": 9, "duf6503": 9, "duf6504": 9, "duf6505": 9, "duf6506": 9, "duf6507": 9, "duf6508": 9, "duf6509": 9, "duf6510": 9, "duf6511": 9, "duf6512": 9, "duf6513": 9, "duf6514": 9, "duf6515": 9, "duf6516": 9, "duf6517": 9, "duf6518": 9, "duf6519": 9, "duf6520": 9, "duf6522": 9, "duf6524": 9, "duf6525": 9, "duf6526": 9, "duf6527": 9, "duf6528": 9, "duf6529": 9, "duf6530": 9, "duf6531": 9, "duf6532": 9, "duf6533": 9, "duf6534": 9, "duf6535": 9, "duf6536": 9, "duf6537": 9, "duf6538": 9, "duf6539": 9, "duf6540": 9, "duf6541": 9, "duf6542": 9, "duf6543": 9, "duf6544": 9, "duf6545": 9, "duf6546": 9, "duf6547": 9, "duf6548": 9, "duf6549": 9, "duf655": 9, "duf6550": 9, "duf6551": 9, "duf6552": 9, "duf6553": 9, "duf6554": 9, "duf6555": 9, "duf6556": 9, "duf6557": 9, "duf6558": 9, "duf6559": 9, "duf6560": 9, "duf6561": 9, "duf6562": 9, "duf6563": 9, "duf6564": 9, "duf6565": 9, "duf6566": 9, "duf6567": 9, "duf6568": 9, "duf6569": 9, "duf6570": 9, "duf6571": 9, "duf6572": 9, "duf6573": 9, "duf6574": 9, "duf6575": 9, "duf6576": 9, "duf6577": 9, "duf6578": 9, "duf6579": 9, "duf6580": 9, "duf6581": 9, "duf6582": 9, "duf6583": 9, "duf6584": 9, "duf6585": 9, "duf6586": 9, "duf6587": 9, "duf6588": 9, "duf6589": 9, "duf659": 9, "duf6590": 9, "duf6591": 9, "duf6592": 9, "duf6593": 9, "duf6594": 9, "duf6595": 9, "duf6596": 9, "duf6597": 9, "duf6598": 9, "duf6599": 9, "duf6600": 9, "duf6601": 9, "duf6602": 9, "duf6603": 9, "duf6604": 9, "duf6605": 9, "duf6606": 9, "duf6607": 9, "duf6608": 9, "duf6609": 9, "duf6610": 9, "duf6611": 9, "duf6612": 9, "duf6613": 9, "duf6614": 9, "duf6615": 9, "duf6616": 9, "duf6617": 9, "duf6618": 9, "duf6619": 9, "duf6620": 9, "duf6621": 9, "duf6622": 9, "duf6623": 9, "duf6624": 9, "duf6625": 9, "duf6626": 9, "duf6627": 9, "duf6628": 9, "duf6629": 9, "duf6630": 9, "duf6631": 9, "duf6632": 9, "duf6633": 9, "duf6634": 9, "duf6635": 9, "duf6636": 9, "duf6637": 9, "duf6638": 9, "duf6639": 9, "duf664": 9, "duf6640": 9, "duf6641": 9, "duf6642": 9, "duf6643": 9, "duf6644": 9, "duf6645": 9, "duf6646": 9, "duf6647": 9, "duf6648": 9, "duf6649": 9, "duf6650": 9, "duf6651": 9, "duf6652": 9, "duf6653": 9, "duf6655": 9, "duf6656": 9, "duf6657": 9, "duf6658": 9, "duf6659": 9, "duf6660": 9, "duf6661": 9, "duf6662": 9, "duf6663": 9, "duf6664": 9, "duf6665": 9, "duf6666": 9, "duf6667": 9, "duf6668": 9, "duf6669": 9, "duf6670": 9, "duf6671": 9, "duf6672": 9, "duf6673": 9, "duf6674": 9, "duf6675": 9, "duf6676": 9, "duf6677": 9, "duf6678": 9, "duf6679": 9, "duf668": 9, "duf6680": 9, "duf6681": 9, "duf6682": 9, "duf6683": 9, "duf6684": 9, "duf6685": 9, "duf6686": 9, "duf6687": 9, "duf6688": 9, "duf6689": 9, "duf669": 9, "duf6690": 9, "duf6691": 9, "duf6692": 9, "duf6693": 9, "duf6694": 9, "duf6695": 9, "duf6696": 9, "duf6697": 9, "duf6698": 9, "duf6699": 9, "duf6700": 9, "duf6701": 9, "duf6702": 9, "duf6703": 9, "duf6704": 9, "duf6705": 9, "duf6706": 9, "duf6707": 9, "duf6708": 9, "duf6709": 9, "duf6710": 9, "duf6711": 9, "duf6712": 9, "duf6713": 9, "duf6714": 9, "duf6715": 9, "duf6716": 9, "duf6717": 9, "duf6718": 9, "duf6719": 9, "duf6720": 9, "duf6721": 9, "duf6722": 9, "duf6723": 9, "duf6724": 9, "duf6725": 9, "duf6726": 9, "duf6727": 9, "duf6728": 9, "duf6729": 9, "duf6730": 9, "duf6731": 9, "duf6732": 9, "duf6733": 9, "duf6734": 9, "duf6735": 9, "duf6736": 9, "duf6737": 9, "duf6738": 9, "duf6739": 9, "duf674": 9, "duf6741": 9, "duf6744": 9, "duf6745": 9, "duf6746": 9, "duf6747": 9, "duf6748": 9, "duf6749": 9, "duf6750": 9, "duf6751": 9, "duf6752": 9, "duf6753": 9, "duf6754": 9, "duf6755": 9, "duf6756": 9, "duf6757": 9, "duf6758": 9, "duf6759": 9, "duf676": 9, "duf6760": 9, "duf6761": 9, "duf6762": 9, "duf6763": 9, "duf6764": 9, "duf6765": 9, "duf6766": 9, "duf6767": 9, "duf6768": 9, "duf6769": 9, "duf677": 9, "duf6770": 9, "duf6771": 9, "duf6772": 9, "duf6773": 9, "duf6774": 9, "duf6775": 9, "duf6776": 9, "duf6777": 9, "duf6778": 9, "duf6779": 9, "duf6780": 9, "duf6781": 9, "duf6782": 9, "duf6783": 9, "duf6784": 9, "duf6785": 9, "duf6786": 9, "duf6787": 9, "duf6788": 9, "duf6789": 9, "duf679": 9, "duf6790": 9, "duf6791": 9, "duf6792": 9, "duf6793": 9, "duf6794": 9, "duf6795": 9, "duf6796": 9, "duf6797": 9, "duf6798": 9, "duf6799": 9, "duf680": 9, "duf6800": 9, "duf6801": 9, "duf6802": 9, "duf6803": 9, "duf6804": 9, "duf6805": 9, "duf6806": 9, "duf6807": 9, "duf684": 9, "duf685": 9, "duf687": 9, "duf688": 9, "duf692": 9, "duf693": 9, "duf695": 9, "duf697": 9, "duf702": 9, "duf705": 9, "duf707": 9, "duf711": 9, "duf713": 9, "duf716": 9, "duf719": 9, "duf72": 9, "duf720": 9, "duf722": 9, "duf723": 9, "duf724": 9, "duf725": 9, "duf726": 9, "duf730": 9, "duf732": 9, "duf733": 9, "duf735": 9, "duf736": 9, "duf739": 9, "duf740": 9, "duf742": 9, "duf745": 9, "duf746": 9, "duf747": 9, "duf748": 9, "duf749": 9, "duf751": 9, "duf753": 9, "duf758": 9, "duf759": 9, "duf760": 9, "duf761": 9, "duf762": 9, "duf763": 9, "duf764": 9, "duf768": 9, "duf769": 9, "duf771": 9, "duf772": 9, "duf775": 9, "duf776": 9, "duf777": 9, "duf778": 9, "duf779": 9, "duf780": 9, "duf787": 9, "duf789": 9, "duf790": 9, "duf792": 9, "duf799": 9, "duf802": 9, "duf805": 9, "duf806": 9, "duf808": 9, "duf815": 9, "duf817": 9, "duf818": 9, "duf819": 9, "duf825": 9, "duf826": 9, "duf829": 9, "duf834": 9, "duf835": 9, "duf839": 9, "duf842": 9, "duf846": 9, "duf851": 9, "duf859": 9, "duf863": 9, "duf868": 9, "duf87": 9, "duf870": 9, "duf874": 9, "duf881": 9, "duf883": 9, "duf883_c": 9, "duf885": 9, "duf892": 9, "duf896": 9, "duf898": 9, "duf899": 9, "duf900": 9, "duf903": 9, "duf905": 9, "duf908": 9, "duf910": 9, "duf913": 9, "duf915": 9, "duf916": 9, "duf917": 9, "duf918": 9, "duf919": 9, "duf92": 9, "duf922": 9, "duf924": 9, "duf927": 9, "duf928": 9, "duf929": 9, "duf930": 9, "duf932": 9, "duf934": 9, "duf935": 9, "duf936": 9, "duf937": 9, "duf938": 9, "duf943": 9, "duf945": 9, "duf948": 9, "duf951": 9, "duf952": 9, "duf953": 9, "duf956": 9, "duf959": 9, "duf960": 9, "duf961": 9, "duf963": 9, "duf968": 9, "duf969": 9, "duf973": 9, "duf974": 9, "duf975": 9, "duf977": 9, "duf979": 9, "duf981": 9, "duf982": 9, "duf983": 9, "duf986": 9, "duf987": 9, "duf99": 9, "duf992": 9, "duf993": 9, "duf995": 9, "duf996": 9, "duf997": 9, "duf998": 9, "duf999": 9, "dusp": 9, "dvl": 9, "dvnp": 9, "dwnn": 9, "dxpr_c": 9, "dxp_redisom_c": 9, "dxp_reductoisom": 9, "dxp_synthase_n": 9, "dyw_deaminas": 9, "dzf": 9, "dzr": 9, "dzr_2": 9, "daba": 9, "dabb": 9, "dak1": 9, "dak1_2": 9, "dak2": 9, "dala_dala_lig_c": 9, "dala_dala_lig_n": 9, "dam": 9, "dapb_c": 9, "dapb_n": 9, "daph_n": 9, "dapper": 9, "dara_c": 9, "dara_n": 9, "dart": 9, "darcynin": 9, "daxx": 9, "daz": 9, "dbl7": 9, "dbpa": 9, "dcap": 9, "dcia": 9, "dcp": 9, "dcps_c": 9, "dcrb": 9, "dcta": 9, "ydbh": 9, "dctm": 9, "dctp": 9, "dctq": 9, "dcua_dcub": 9, "dcuc": 9, "ddda": 9, "ddrb": 9, "dead_c": 9, "death": 9, "death_2": 9, "defb50": 9, "defensin_1": 9, "defensin_2": 9, "defensin_3": 9, "defensin_5": 9, "defensin_rk": 9, "defensin_beta": 9, "defensin_beta_2": 9, "defensin_big": 9, "defensin_lik": 9, "defensin_propep": 9, "degq": 9, "deg": 9, "degt_dnrj_eryc1": 9, "degv": 9, "dehi": 9, "dehalogenas": 9, "dehyd": 9, "heme_bind": 9, "dehydratase_lu": 9, "dehydratase_mu": 9, "dehydratase_su": 9, "dehydratase_hem": 9, "dehydrin": 9, "delta_lysin": 9, "deltameth_r": 9, "dendrin": 9, "denso_vp4": 9, "deoc": 9, "deorc": 9, "dermcidin": 9, "destabilas": 9, "desulfoferrod_n": 9, "desulfoferrodox": 9, "det1": 9, "devr": 9, "dev_cell_death": 9, "dexa_ind": 9, "dfp1_him1_m": 9, "di19_c": 9, "disb": 9, "orf2_chro": 9, "dis_p_di": 9, "diacid_rec": 9, "dicb": 9, "dicer_n": 9, "dicer_dim": 9, "dickkopf_n": 9, "stat": 9, "dicty_cad": 9, "dicty_car": 9, "dicty_ctdc": 9, "dicty_rep": 9, "dicty_spore_n": 9, "diedel": 9, "dimer_tnp_tn5": 9, "dimer_tnp_hat": 9, "dimeris": 9, "dimerisation2": 9, "dimeth_pyl": 9, "dinb": 9, "dinb_2": 9, "dini": 9, "dioxygenase_c": 9, "dioxygenase_n": 9, "diphthami_syn_2": 9, "diphthamide_syn": 9, "diphtheria_c": 9, "diphtheria_r": 9, "diphtheria_t": 9, "dirig": 9, "dis3l2_c_term": 9, "disa": 9, "linker": 9, "disaggr_assoc": 9, "disaggr_repeat": 9, "dishevel": 9, "disintegrin": 9, "disulph_isom": 9, "divic": 9, "diviva": 9, "dltd": 9, "dmpg_comm": 9, "dmrt1": 9, "dmsc": 9, "dna2": 9, "dnaa_n": 9, "dnab": 9, "dnab_2": 9, "dnab_c": 9, "dnab_bind": 9, "dnag_dnab_bind": 9, "dnagprimase_hbd": 9, "dnai_n": 9, "dnaj": 9, "like_c11_c": 9, "dnaj_c": 9, "dnaj_cxxcxgxg": 9, "dnat": 9, "dnat_2": 9, "dndb": 9, "dnde": 9, "dockerin_1": 9, "dodecin": 9, "dopey_n": 9, "doppel": 9, "dor1": 9, "dota": 9, "dotd": 9, "dotu": 9, "dot_icm_icmq": 9, "doxa": 9, "doxd": 9, "doxx": 9, "doxx_2": 9, "doxx_3": 9, "dpaa_n": 9, "dpnd": 9, "pcfm": 9, "dpni": 9, "dpnii": 9, "mboi": 9, "dpni_c": 9, "dpoe2nt": 9, "dpp_8_9_n": 9, "dppa2_a": 9, "dpra_wh": 9, "dpy": 9, "30": [9, 14], "dpy19": 9, "drak_hk_n": 9, "draxin": 9, "drc1": 9, "sld2": 9, "drf_dad": 9, "drf_fh1": 9, "drf_fh3": 9, "drf_gbd": 9, "drra_p4m": 9, "drse": 9, "drse_2": 9, "dsbb": 9, "dsbc": 9, "dsbc_n": 9, "dsbd": 9, "dsbd_2": 9, "dsbg_n": 9, "dsc3_c": 9, "dsc3_n": 9, "dscam_c": 9, "dsh_c": 9, "dsl1_c": 9, "dsl1_n": 9, "dsrc": 9, "dsrd": 9, "dsrh": 9, "dtxr": 9, "duffybp_n": 9, "duffy_bind": 9, "duoxa": 9, "du": 9, "dymeclin": 9, "dynactin": 9, "dynactin_p22": 9, "dynactin_p62": 9, "dynamin_m": 9, "dynamin_n": 9, "dynamitin": 9, "dynein_aaa_lid": 9, "dynein_c": 9, "dynein_ic2": 9, "dynein_attach_n": 9, "dynein_heavi": 9, "dynein_light": 9, "dyp_perox": 9, "dysbindin": 9, "dzip": 9, "like_n": 9, "e1": 9, "e2_atpas": 9, "e1_4hb": 9, "e1_derp2_derf2": 9, "e1_fcch": 9, "e1_ufd": 9, "e1_dh": 9, "e2": 9, "crich": 9, "e1mid": 9, "ntca": 9, "e2f_cc": 9, "mb": 9, "e2f_tdp": 9, "e2r135": 9, "e2_bind": 9, "e3_ubr4_n": 9, "e3_ufm1_ligas": 9, "e3_ubligase_edd": 9, "e3_ubligase_r4": 9, "e3_ubligase_rbr": 9, "e3_bind": 9, "e6": 9, "eabr": 9, "eacc1": 9, "ead1": 9, "ead10": 9, "ead11": 9, "ead2": 9, "ead4": 9, "ead5": 9, "ead6": 9, "ead7": 9, "ead8": 9, "ead9": 9, "eaf": 9, "eagr_box": 9, "eal": 9, "eap30": 9, "ear": 9, "eb": 9, "eb1": 9, "eb1_bind": 9, "eba": 9, "175_vi": 9, "ebp": 9, "ebp50_c": 9, "ebv": 9, "na3": 9, "eb_dh": 9, "ec042_2821": 9, "ecd": 9, "ecf": 9, "ribofla_tr": 9, "ecf_trnsprt": 9, "ech_1": 9, "ech_2": 9, "ecm1": 9, "ecm11": 9, "ecr1_n": 9, "ecscr": 9, "ecsit": 9, "ecsit_c": 9, "edr1": 9, "edr2_c": 9, "eds1_ep": 9, "eelm2": 9, "ef": [9, 15, 17], "1_beta_acid": 9, "binding_n": 9, "hand_1": 9, "hand_10": 9, "hand_11": 9, "hand_12": 9, "hand_13": 9, "hand_14": 9, "hand_2": 9, "hand_3": 9, "hand_4": 9, "hand_5": 9, "hand_6": 9, "hand_7": 9, "hand_8": 9, "hand_9": 9, "hand_lik": 9, "ef1g": 9, "ef1_gn": 9, "eff": 9, "aff": 9, "efg_c": 9, "efg_iii": 9, "efg_iv": 9, "efp": 9, "efp_n": 9, "eftud2": 9, "ef_t": 9, "ef_assoc_1": 9, "ef_assoc_2": 9, "efhand_ca_insen": 9, "egf": 9, "egf_2": 9, "egf_3": 9, "egf_ca": 9, "egf_msp1_1": 9, "egf_tenascin": 9, "egf_alliinas": 9, "egl": 9, "ehd_n": 9, "ehn": 9, "eh_signatur": 9, "ei24": 9, "eif4": 9, "eif_2_alpha": 9, "eii": 9, "gut": 9, "sor": 9, "eiia": 9, "man": 9, "eiibc": 9, "gut_c": 9, "gut_n": 9, "eiic": 9, "gat": 9, "eiid": 9, "aga": 9, "ein3": 9, "ekal": 9, "eklf_tad1": 9, "eklf_tad2": 9, "ekr": 9, "elf": 9, "elfv_dehydrog": 9, "elfv_dehydrog_n": 9, "elh": 9, "elk": 9, "ell": 9, "elm2": 9, "elmo_arm": 9, "elmo_ced12": 9, "elo": 9, "elp6": 9, "eli": 9, "bb": 9, "ema": 9, "emc1_c": 9, "emc3_tmco1": 9, "emc6": 9, "emc6_arch": 9, "emc7_beta": 9, "sandw": 9, "emg1": 9, "emi": 9, "emp24_gp25l": 9, "emp70": 9, "enod40": 9, "enod93": 9, "ent": 9, "enth": 9, "eos1": 9, "ep400_n": 9, "epf": 9, "epl1": 9, "epop": 9, "epo_tpo": 9, "epsp_synthas": 9, "eptp": 9, "er": 9, "erap1_c": 9, "ercc3_rad25_c": 9, "ercc4": 9, "erf": 9, "erg2_sigma1r": 9, "erg4_erg24": 9, "ergic_n": 9, "erk": 9, "jnk_inhib": 9, "erm_c": 9, "erm_hel": 9, "ero1": 9, "er_lumen_recept": 9, "erbeta_n": 9, "erp29": 9, "erp29_n": 9, "esag1": 9, "escrt": 9, "esf1": 9, "esm4": 9, "esp": 9, "espr": 9, "esr1_c": 9, "esss": 9, "est1": 9, "est1_dna_bind": 9, "esx": 9, "1_espg": 9, "etaa1": 9, "etc_c1_ndufa5": 9, "etf": 9, "etf_qo": 9, "etf_alpha": 9, "etramp": 9, "ets_pea3_n": 9, "etx_mtx2": 9, "eurl": 9, "evc2_lik": 9, "ev": [9, 15], "evi2a": 9, "exosc1": 9, "ex": 9, "ezh2_n": 9, "ezh2_wd": 9, "e_pc_c": 9, "e_motif": 9, "ead_ea22": 9, "eaf7": 9, "eama": 9, "eap1": 9, "eapp_c": 9, "earp": 9, "ebp2": 9, "ebsa": 9, "eckl": 9, "eccd": 9, "ecc": 9, "ecl1": 9, "eclos": 9, "ecm29": 9, "ecm33": 9, "eco57i": 9, "ecoei_r_c": 9, "ecor124_c": 9, "ecori": 9, "ecorii": 9, "ecori_methylas": 9, "ecotin": 9, "ecpb_c": 9, "ecsb": 9, "ecsc": 9, "ectoine_synth": 9, "edc3_link": 9, "effector_1": 9, "efg1": 9, "egh16": 9, "ehal": 9, "ehbp": 9, "ehrlichia_rpt": 9, "eipa": 9, "eipb_lik": 9, "eisosome1": 9, "elf1": 9, "elf4": 9, "elicitin": 9, "eloa": 9, "bp1": 9, "elong": 9, "fact": [9, 17], "p_c": 9, "elong_iki1": 9, "elongin_a": 9, "emfourin": 9, "emr1": 9, "emr": 9, "eny2": 9, "enamelin": 9, "ena": 9, "end3": 9, "endiii_4f": 9, "end_n_termin": 9, "end_beta_propel": 9, "end_tail_spik": 9, "endou_bacteria": 9, "endomucin": 9, "endonuc": 9, "bglii": 9, "bsobi": 9, "ecorv": 9, "hincii": 9, "mspi": 9, "pvuii": 9, "dimeri": 9, "endonuc_bgli": 9, "endonuc_hol": 9, "endonuc_subdom": 9, "endonuclea_ns_2": 9, "endonuclease_1": 9, "endonuclease_5": 9, "endonuclease_7": 9, "endonuclease_n": 9, "endopep_inhib": 9, "endostatin": 9, "endosulfin": 9, "endothelin": 9, "endotoxin_c": 9, "endotoxin_c2": 9, "endotoxin_m": 9, "endotoxin_n": 9, "engrail_1_c_sig": 9, "enkurin": 9, "eno": 9, "rase_fad_bd": 9, "rase_nadh_b": 9, "enolase_c": 9, "enolase_n": 9, "enolase_like_n": 9, "enoyl_reductas": 9, "enta_immun": 9, "entericidin": 9, "enterochelin_n": 9, "enterotoxin_st": 9, "enterotoxin_a": 9, "enterotoxin_b": 9, "epcam_n": 9, "ependymin": 9, "epha2_tm": 9, "ephrin": 9, "ephrin_lbd": 9, "ephrin_rec_lik": 9, "epiglycanin_c": 9, "epiglycanin_tr": 9, "epimeras": 9, "epimerase_2": 9, "epiplasmin": 9, "eplus_motif": 9, "epmc": 9, "epor_lig": 9, "epsg": 9, "epsilon_antitox": 9, "epta_b_n": 9, "epua": 9, "erf4": 9, "erg28": 9, "ermc": 9, "ermin": 9, "erp_c": 9, "erv26": 9, "ery_res_leader1": 9, "erythro": 9, "erythro_estera": 9, "es2": 9, "esv_1_7_ci": 9, "espa": 9, "espa_esp": 9, "espb": 9, "espb_p": 9, "espf": 9, "espg": 9, "essa": 9, "esta_ig_lik": 9, "esteras": 9, "esterase_phb": 9, "etd1": 9, "ethd": 9, "ets1_n_flank": 9, "euta": 9, "eutb": 9, "eutc": 9, "euth": 9, "eutk_c": 9, "eutn_ccml": 9, "eutq": 9, "evf": 9, "evr1_alr": 9, "exbd": 9, "exc": 9, "excalibur": 9, "exo5": 9, "exo70": 9, "exo84_c": 9, "exod": 9, "exox": 9, "exo_endo_pho": 9, "exo_endo_phos_2": 9, "exo_endo_phos_3": 9, "exog_c": 9, "exonuc_viii": 9, "exonuc_vii_l": 9, "exonuc_vii_": 9, "exonuc_v_gamma": 9, "exonuc_x": 9, "exop_c": 9, "exosortase_epsh": 9, "exostosin": 9, "exotox": 9, "a_catali": 9, "a_target": 9, "expansin_c": 9, "exportin": 9, "exsd": 9, "extensin": 9, "extensin_1": 9, "extensin_2": 9, "ezh2_mcss": 9, "ezra": 9, "112": 9, "actin_cap_a": 9, "like_2": 9, "box_4": 9, "box_5": 9, "f1f0": 9, "atpsyn_f": 9, "f420h2_quin_r": 9, "f420_ligas": 9, "f420_oxidor": 9, "f5_f8_type_c": 9, "fa": 9, "faa_hydro_n_2": 9, "faa_hydrolas": 9, "faa_hydrolase_n": 9, "spt16_nlob": 9, "fad": 9, "sldh": 9, "oxidase_c": 9, "fad_sox": 9, "fad_binding_1": 9, "fad_binding_2": 9, "fad_binding_3": 9, "fad_binding_4": 9, "fad_binding_5": 9, "fad_binding_6": 9, "fad_binding_7": 9, "fad_binding_8": 9, "fad_binding_9": 9, "fad_oxidor": 9, "fad_syn": 9, "fae1_cut1_rppa": 9, "faf": 9, "faim1": 9, "faint": 9, "fam101": 9, "fam104": 9, "fam110_c": 9, "fam110_n": 9, "fam117": 9, "fam124": 9, "fam131": 9, "fam150": 9, "fam153": 9, "fam163": 9, "fam165": 9, "fam167": 9, "fam176": 9, "fam177": 9, "fam180": 9, "fam181": 9, "fam183": 9, "fam184": 9, "fam192a_fyv6_n": 9, "fam193_c": 9, "fam194": 9, "fam195": 9, "fam196": 9, "fam198": 9, "fam199x": 9, "fam209": 9, "fam210a": 9, "b_dom": 9, "fam212": 9, "fam216b": 9, "fam217": 9, "fam219a": 9, "fam220": 9, "fam221": 9, "fam222a": 9, "fam24": 9, "fam25": 9, "fam27": 9, "fam32a": 9, "fam35_c": 9, "fam47": 9, "fam53": 9, "fam60a": 9, "fam70": 9, "fam72": 9, "fam75": 9, "fam76": 9, "fam83": 9, "fam86": 9, "fam91_c": 9, "fam91_n": 9, "fam92": 9, "fancaa": 9, "fanca_interact": 9, "fancd2o": 9, "fancf": 9, "fanci_hd1": 9, "fanci_hd2": 9, "fanci_s1": 9, "fanci_s2": 9, "fanci_s3": 9, "fanci_s4": 9, "fancl_c": 9, "fancl_d1": 9, "fancl_d2": 9, "fancl_d3": 9, "fancm": 9, "mhf_bd": 9, "fanc_sap": 9, "fao_m": 9, "fap": 9, "fap206": 9, "far1": 9, "farp": 9, "fast_1": 9, "fast_2": 9, "fas_i_h": 9, "fas_n": 9, "fas_meand": 9, "fat": 9, "fatc": 9, "faxc_n": 9, "fa_fanc": 9, "fa_desaturas": 9, "fa_desaturase_2": 9, "fa_hydroxylas": 9, "fa_synthesi": 9, "fba": 9, "fba_1": 9, "fba_2": 9, "fba_3": 9, "fbd": 9, "fbo_c": 9, "fbp_c": 9, "fbpase": 9, "fbpase_2": 9, "fbpase_3": 9, "fbpase_c": 9, "fbpase_glpx": 9, "fbxl18_lrr": 9, "fb_lectin": 9, "fcd": 9, "fch": 9, "fcp1_c": 9, "fcsd": 9, "flav_bind": 9, "fdc": 9, "sp": [9, 16], "fdf": 9, "fdx": 9, "acb": 9, "ferm_c": 9, "ferm_f1": 9, "ferm_f2": 9, "ferm_m": 9, "ferm_n": 9, "ferm_n_2": 9, "ferm_f0": 9, "fez": 9, "ff": 9, "fg": 9, "gap": 9, "gap_2": 9, "gap_3": 9, "fgar": 9, "at_n": 9, "at_link": 9, "fge": 9, "sulfatas": 9, "fgf": 9, "fggy_c": 9, "fggy_n": 9, "fgase": 9, "fh2": 9, "fha": 9, "fha_2": 9, "fhipep": 9, "fibp": 9, "fiind": 9, "fimp": 9, "fin1": 9, "fisna": 9, "fist_c": 9, "fit1_2": 9, "fivar": 9, "fkbp26_c": 9, "fkbp_c": 9, "fkbp_n": 9, "fkbp_n_2": 9, "fks1_dom1": 9, "fktn_n": 9, "flilhelta": 9, "flywch": 9, "flywch_n": 9, "flywch_u": 9, "flgd_tudor": 9, "fmn_bind": 9, "fmn_bind_2": 9, "fmn_dh": 9, "fmn_red": 9, "fmo": 9, "fmp23": 9, "fn3_7": 9, "fnip": 9, "fnip_c": 9, "fnip_m": 9, "fnip_n": 9, "fog_n": 9, "foln": 9, "fop_dim": 9, "foxo": 9, "tad": 9, "foxo_kix_bdg": 9, "foxp": 9, "fpl": 9, "fpn1": 9, "fpp": 9, "fprl1_inhibitor": 9, "fr47": 9, "frb_dom": 9, "frg": 9, "frg1": 9, "frg2": 9, "frp": 9, "frq": 9, "fsap_sig_propep": 9, "fsa_c": 9, "fsh1": 9, "fsip1": 9, "fsip2": 9, "fta2": 9, "fta4": 9, "ftcd": 9, "ftcd_c": 9, "ftcd_n": 9, "fth": 9, "fthf": 9, "fto_ctd": 9, "fto_ntd": 9, "ftp": [9, 16], "ftr": 9, "ftr1": 9, "ftr_c": 9, "ftsw_roda_spov": 9, "ftz": 9, "fun14": 9, "fur": 9, "fusc": 9, "fusc_2": 9, "fut8_n_cat": 9, "fwwh": 9, "fxmrp1_c_core": 9, "fxmr_c2": 9, "fxr_c1": 9, "fxr_c3": 9, "fxa_inhibit": 9, "fydln_acid": 9, "fyrc": 9, "fyrn": 9, "fytt": 9, "fyve": 9, "fyve_2": 9, "f_actin_bind": 9, "f_actin_bund_c": 9, "f_actin_cap_b": 9, "f_bp_aldolas": 9, "faba": 9, "fada": 9, "fadr_c": 9, "faea": 9, "fam20c": 9, "fancd2": 9, "fanconi_a": 9, "fanconi_a_n": 9, "fanconi_c": 9, "fapa": 9, "fapa_n": 9, "fapy_dna_glyco": 9, "far": 9, "17a_aig1": 9, "fas_alpha_acp": 9, "fasciclin": 9, "fascin": 9, "fbpc_c_termin": 9, "fcf1": 9, "fcf2": 9, "fcot": 9, "fcta": 9, "fdhd": 9, "narq": 9, "fdhe": 9, "fdsd": 9, "fdta": 9, "fe": 9, "adh_2": 9, "s_assembli": 9, "s_biosyn": 9, "fes_assembly_p": 9, "fethred_a": 9, "fethred_b": 9, "fe_bilin_r": 9, "fe_dep_repr_c": 9, "fe_dep_repress": 9, "fe_hyd_ssu": 9, "fe_hyd_lg_c": 9, "fea1": 9, "feccd": 9, "fecr": 9, "feld": 9, "i_b": 9, "fels1": 9, "femab": 9, "femab_lik": 9, "feoa": 9, "feob_c": 9, "feob_cyto": 9, "feob_n": 9, "feob_associ": 9, "feoc": 9, "fer2": 9, "fer2_2": 9, "fer2_3": 9, "fer2_4": 9, "fer2_bfd": 9, "fer4": 9, "fer4_10": 9, "fer4_11": 9, "fer4_12": 9, "fer4_13": 9, "fer4_14": 9, "fer4_15": 9, "fer4_16": 9, "fer4_17": 9, "fer4_18": 9, "fer4_19": 9, "fer4_2": 9, "fer4_20": 9, "fer4_21": 9, "fer4_22": 9, "fer4_23": 9, "fer4_24": 9, "fer4_3": 9, "fer4_4": 9, "fer4_5": 9, "fer4_6": 9, "fer4_7": 9, "fer4_8": 9, "fer4_9": 9, "fer4_nifh": 9, "fera": 9, "ferb": 9, "feri": 9, "ferlin_c": 9, "ferredoxin_n": 9, "ferric_reduct": 9, "ferritin": 9, "ferritin_2": 9, "ferrochelatas": 9, "fes1": 9, "fez1": 9, "fhaa_n": 9, "fhuf": 9, "fhuf_c": 9, "fib_alpha": 9, "fib_succ_major": 9, "fibin": 9, "fibrillarin": 9, "fibrillarin_2": 9, "fibrillin_u_n": 9, "fibrinogen_bp": 9, "fibrinogen_c": 9, "fibrinogen_ac": 9, "fibritin_c": 9, "fibroin_p25": 9, "fic": 9, "fic_n": 9, "fidl_lik": 9, "fig1": 9, "filr1_middl": 9, "fil_haemagg": 9, "fil_haemagg_2": 9, "filaggrin": 9, "filament": 9, "filament_head": 9, "filamin": 9, "filo_vp35": 9, "fima": 9, "fimh_man": 9, "fimbrial": 9, "fimbrial_cs1": 9, "fimbrial_k88": 9, "fimbrial_pily2": 9, "fimbrillin_c": 9, "fin": 9, "fino_n": 9, "fip1": 9, "fis1_tpr_c": 9, "fis1_tpr_n": 9, "fixg_c": 9, "fixh": 9, "fixo": 9, "fixp_n": 9, "fixq": 9, "fix": [9, 11, 15], "flaa": 9, "flac_arch": 9, "flae": 9, "flaf": 9, "flag": [9, 11, 15, 17], "flag1_repress": 9, "flagellar_put": 9, "flagellar_rod": 9, "flagellin_c": 9, "flagellin_d3": 9, "flagellin_in": 9, "flagellin_n": 9, "flavi_dead": 9, "flavi_ns1": 9, "flavi_ns5": 9, "flavin_reduct": 9, "flavodoxin_1": 9, "flavodoxin_2": 9, "flavodoxin_3": 9, "flavodoxin_4": 9, "flavodoxin_5": 9, "flavodoxin_ndri": 9, "flavokinas": 9, "flavoprotein": 9, "flbd": 9, "flbt": 9, "fleq": 9, "flgd": 9, "flgd_ig": 9, "flgh": 9, "flgi": 9, "flgm": 9, "flgn": 9, "flgo": 9, "flgt_c": 9, "flgt_m": 9, "flgt_n": 9, "flg_bb_rod": 9, "flg_bbr_c": 9, "flg_hook": 9, "flg_new": 9, "flg_new_2": 9, "flhc": 9, "flhd": 9, "flhe": 9, "flic": 9, "flic_sp": 9, "flid_c": 9, "flid_n": 9, "flie": 9, "flig_c": 9, "flig_m": 9, "flig_n": 9, "flih": 9, "flij": 9, "flil": 9, "flim": 9, "flimn_c": 9, "flin_n": 9, "flio": 9, "flip": 9, "fli": [9, 14], "flis_cochap": 9, "flit": 9, "fliw": 9, "flix": 9, "flo11": 9, "floa": 9, "flocculin": 9, "flocculin_t3": 9, "flot": 9, "flp1_like": 9, "flpd": 9, "flp_c": 9, "flp_fap": 9, "flp_n": 9, "flt3_lig": 9, "flumu_n": 9, "flu_m1": 9, "flu_m1_c": 9, "flu_ns2": 9, "flu_pa": 9, "flu_pb1": 9, "flxa": 9, "fmda_amda": 9, "fmde": 9, "fmip_thoc5": 9, "fmp27": 9, "fmp27_gfwdk": 9, "fmp27_sw": 9, "fmp27_wppw": 9, "fmro": 9, "fn3": 9, "fn3_assoc": 9, "fn_bind": 9, "fop_dupl": 9, "foamy_virus_env": 9, "focadhesin": 9, "focal_at": 9, "foie": 9, "gras_1": 9, "foki_d1": 9, "foki_d3": 9, "foki_cleav_dom": 9, "foki_dom_2": 9, "folb": 9, "folate_carri": 9, "folate_rec": 9, "folliculin": 9, "folliculin_c": 9, "forkhead": 9, "forkhead_n": 9, "deh_tran": 9, "form_nir_tran": 9, "formin_gbd_n": 9, "formyl_trans_c": 9, "formyl_trans_n": 9, "fox": 9, "fpoo": 9, "fra10ac1": 9, "frag1": 9, "fragx_ip": 9, "frankia_peptid": 9, "frataxin_cyai": 9, "frem_n": 9, "frhb_fdhb_c": 9, "frhb_fdhb_n": 9, "frigida": 9, "fring": 9, "frizzl": 9, "frpc": 9, "frsa": 9, "frtz": 9, "fructosamin_kin": 9, "fry_c": 9, "fst_toxin": 9, "ftrd": 9, "ftsa": 9, "ftsa_c": 9, "ftsh_ext": 9, "ftsj": 9, "ftsk_4tm": 9, "ftsk_spoiiie": 9, "ftsk_spoiiie_n": 9, "ftsk_alpha": 9, "ftsk_gamma": 9, "ftsl": 9, "ftsl_2": 9, "ftsq_divib_c": 9, "ftsx": 9, "ftsx_ecd": 9, "ftsz_c": 9, "fuct_n": 9, "fucokinas": 9, "fucose_iso_c": 9, "fucose_iso_n1": 9, "fucose_iso_n2": 9, "fucosidase_c": 9, "fumarasec_c": 9, "fumarate_red_c": 9, "fumarate_red_d": 9, "fumbl": 9, "fumeras": 9, "fumerase_c": 9, "fun_atp": 9, "fungal_ka1": 9, "fungal_tacc": 9, "fungal_lectin": 9, "fungal_lectin_2": 9, "fungal_tran": 9, "fungal_trans_2": 9, "fungu": 9, "induc": 9, "fur_reg_fbpa": 9, "fur_reg_fbpb": 9, "furin": 9, "fuseless": 9, "fusion_gli": 9, "fuz_longin_1": 9, "fuz_longin_2": 9, "fuz_longin_3": 9, "fve": 9, "fxsa": 9, "fz": 9, "fzo_mitofusin": 9, "gamma": 9, "patch": 9, "patch_2": 9, "g0": 9, "g1_switch_2": 9, "g10": 9, "g2br": 9, "g2f": 9, "g3p_acyltransf": 9, "g3p_antiterm": 9, "g5": 9, "g6b": 9, "g6pd_c": 9, "g6pd_n": 9, "g6pd_bact": 9, "g8": 9, "ga": 9, "gaad": 9, "gabp": 9, "gad": 9, "gaf": 9, "gaf_2": 9, "gaf_3": 9, "gaga": 9, "gaga_bind": 9, "gagbd": 9, "gage": 9, "gain": 9, "gain_a": 9, "gap1": 9, "gapes1": 9, "gapes2": 9, "gapes3": 9, "gapes4": 9, "gapt": 9, "garp": 9, "gars_a": 9, "gars_c": 9, "gars_n": 9, "gas2": 9, "gasa": 9, "gash": 9, "gata": 9, "gatas": 9, "gatase1_lik": 9, "gatase_2": 9, "gatase_3": 9, "gatase_4": 9, "gatase_5": 9, "gatase_6": 9, "gatase_7": 9, "gbbh": 9, "gbp": 9, "gbp_c": 9, "gbp_psp": 9, "gbp_repeat": 9, "gbr2_cc": 9, "gbs_bsp": 9, "gbv": 9, "c_env": 9, "gcd14": 9, "gcd14_n": 9, "gcfc": 9, "gchy": 9, "gch_iii": 9, "gcip": 9, "gck": 9, "gcm": 9, "gcn5l1": 9, "gcom2": 9, "gcp5": 9, "mod21": 9, "gcp6_n": 9, "gcp_c_termin": 9, "gcp_n_termin": 9, "gcr": 9, "gcr1_c": 9, "gc": 9, "gcs2": 9, "gcsf": 9, "gcv_h": 9, "gcv_t": 9, "gcv_t_c": 9, "gda1_cd39": 9, "gdc": 9, "gde_c": 9, "gde_n": 9, "gde_n_bi": 9, "gdh_n": 9, "gdi": 9, "gdnf": 9, "gdpd": 9, "gdpd_2": 9, "gdp_man_dehyd": 9, "gdwwsh": 9, "gdyxxlxi": 9, "gd_ah_c": 9, "gd_n": 9, "ged": 9, "gemin8": 9, "gen1_c": 9, "gep5": 9, "get2": 9, "get4": 9, "gethr": 9, "geve": 9, "gfa": 9, "gfd1": 9, "gfo_idh_moca": 9, "gfo_idh_moca_c": 9, "gfo_idh_moca_c2": 9, "gfp": 9, "gfrp": 9, "gf_recep_iv": 9, "ggact": 9, "gga_n": 9, "ggdef": 9, "ggdef_2": 9, "gggtgrt": 9, "ggn": 9, "gh": 9, "gh101_n": 9, "gh114_assoc": 9, "gh115_c": 9, "gh131_n": 9, "gh3": 9, "gh43_c": 9, "gh43_c2": 9, "gh97_c": 9, "gh97_n": 9, "ghbp": 9, "ghd": 9, "ghl10": 9, "ghl13": 9, "ghl15": 9, "ghl5": 9, "ghl6": 9, "ghmp_kinases_c": 9, "ghmp_kinases_n": 9, "gida": 9, "gida_c": 9, "gide": 9, "giim": 9, "gilt": 9, "gip1_n": 9, "git1_c": 9, "git_cc": 9, "git_shd": 9, "gii": 9, "yig": 9, "giy_yig_domain": 9, "gkap": 9, "gle1": 9, "gleya": 9, "glf": 9, "gltp": 9, "gltscr1": 9, "gltt": 9, "glycam": 9, "gm130_c": 9, "gmap": 9, "gmc_oxred_c": 9, "gmc_oxred_n": 9, "gmp_pde_delta": 9, "gmp_synt_c": 9, "gm_csf": 9, "gn3l_grn1": 9, "gnat_c": 9, "gnat_acetyltr_2": 9, "gnat_acetyltran": 9, "gnat_lik": 9, "gnt": 9, "gnvr": 9, "go": [9, 11, 17], "like_e_set": 9, "gold_2": 9, "golga2l5": 9, "gon": 9, "gp17": 9, "gp24_25": 9, "gp38": 9, "gp3_packag": 9, "gp40": 9, "gp41": 9, "gp44": 9, "gp46": 9, "gp52": 9, "gp63": 9, "gp68": 9, "gp70": 9, "gp79": 9, "gp88": 9, "gpat_c": 9, "gpat_n": 9, "gpcr_chapero_1": 9, "gpdpase_memb": 9, "gpd_nad_c_bact": 9, "gphh": 9, "gphr_n": 9, "gpi": 9, "gpi2": 9, "gpp34": 9, "gpr15l": 9, "gpr_gpa2_c": 9, "gp": 9, "gps2_interact": 9, "gpw_gp25": 9, "gra6": 9, "grab": 9, "gram": 9, "gra": 9, "grasp55_65": 9, "grda": 9, "grdb": 9, "grdp": 9, "greb1": 9, "greb1_c": 9, "grim": 9, "grin_c": 9, "grip": 9, "grp": 9, "gsap": 9, "16": [9, 14], "gscfa": 9, "gsdh": 9, "gsg": 9, "gsh": 9, "s_atp": 9, "s_n": 9, "gshpx": 9, "gsh_synth_atp": 9, "gsh_synthas": 9, "gsiii_n": 9, "gsk": 9, "3_bind": 9, "gskip_dom": 9, "gsp_synth": 9, "gst_c": 9, "gst_c_2": 9, "gst_c_3": 9, "gst_c_4": 9, "gst_c_5": 9, "gst_c_6": 9, "gst_n": 9, "gst_n_2": 9, "gst_n_3": 9, "gst_n_4": 9, "gst_n_5": 9, "gsu_c4xc__c2xch": 9, "gt": 9, "gt87": 9, "gta_tim": 9, "gta_holin_3tm": 9, "gtf2i": 9, "gtp": 9, "bdg_m": 9, "bdg_n": 9, "gtp1_obg": 9, "gtp_ch_n": 9, "gtp_eftu": 9, "gtp_eftu_d2": 9, "gtp_eftu_d3": 9, "gtp_eftu_d4": 9, "gtp_cyclohydro2": 9, "gtp_cyclohydroi": 9, "gtpase_bind": 9, "gtse1_n": 9, "gub_wak_bind": 9, "guct": 9, "gun4": 9, "gun4_n": 9, "gw": 9, "gwt1": 9, "gwxtd_dom": 9, "gxgxg": 9, "gxwxg": 9, "gyd": 9, "gyf": 9, "gyf_2": 9, "gyr": 9, "g_glu_transpept": 9, "g_path_suppress": 9, "gaa1": 9, "gag_ma": 9, "gag_p10": 9, "gag_p12": 9, "gag_p17": 9, "gag_p24": 9, "gag_p24_c": 9, "gag_p30": 9, "gal": 9, "0_sulfotr": 9, "bind_lectin": 9, "gal11_abd1": 9, "gal4_dim": 9, "galbd_lik": 9, "galkase_gal_bdg": 9, "galp_udp_tr_c": 9, "galp_udp_transf": 9, "gal_galnac_35kd": 9, "gal_lectin": 9, "gal_mutarotas_2": 9, "gal_mutarotas_3": 9, "galactosyl_t": 9, "galanin": 9, "gallidermin": 9, "gam": 9, "thionin": 9, "gamma_pga_hydro": 9, "gar1": 9, "gas_vesicl": 9, "gas_vesicle_c": 9, "gasdermin": 9, "gasdermin_c": 9, "gastrin": 9, "gatb_n": 9, "gatb_yqei": 9, "gatd_n": 9, "gatz_kbaz": 9, "gate": 9, "gb3_synth": 9, "gbpa_2": 9, "gbpc": 9, "gcd10p": 9, "gcn1_n": 9, "gcna_n": 9, "gcpe": 9, "gcra": 9, "gcw_chp": 9, "ge1_wd40": 9, "gelsolin": 9, "gema": 9, "gemin6": 9, "gemin6_c": 9, "gemin7": 9, "gemini_al1": 9, "gemini_al1_m": 9, "gemini_al2": 9, "gemini_bl1": 9, "gemini_v2": 9, "gemini_coat": 9, "geminin": 9, "gene66": 9, "gera": 9, "gerd": 9, "gere": 9, "gerpb": 9, "gerpc": 9, "gerp": 9, "german": 9, "get2_lik": 9, "get5_c": 9, "get5_bdg": 9, "gho": 9, "gidb": 9, "gifsi": 9, "gin": 9, "git3": 9, "gla": 9, "glcnac": 9, "1_reg": 9, "glcnac_2": 9, "epim": 9, "glcv_c_termin": 9, "gldc": 9, "gldh_lipo": 9, "gldm_c": 9, "gldm_n": 9, "gldn": 9, "glft2_domain3": 9, "glft2_n": 9, "glge_dom_n_": 9, "glg": 9, "glgx_c": 9, "gliadin": 9, "gln": 9, "ter": 9, "synt_n": 9, "synt_n_2": 9, "glnd_ur_utas": 9, "glne": 9, "gln_amidas": 9, "gln_deamidase_2": 9, "globin": 9, "gloverin": 9, "glpm": 9, "glrx": 9, "glt_symport": 9, "glu": 9, "trnagln": 9, "glurs_n": 9, "glur_hom": 9, "bdg": 9, "glu_cyclase_2": 9, "glu_cys_ligas": 9, "glu_dehyd_c": 9, "glu_syn_centr": 9, "glu_synthas": 9, "glucan_synthas": 9, "glucodextran_b": 9, "glucodextran_c": 9, "glucodextran_n": 9, "glucokinas": 9, "gluconate_2": 9, "dh3": 9, "glucos_trans_ii": 9, "glucosamine_iso": 9, "glucosaminidas": 9, "glug": 9, "glutr_n": 9, "glutr_dim": 9, "glutaminas": 9, "glutaredoxin": 9, "glutaredoxin2_c": 9, "glutenin_hmw": 9, "gly": 9, "rich_ago1": 9, "zipper_omp": 9, "zipper_ompa": 9, "zipper_ymgg": 9, "gly_acyl_tr_c": 9, "gly_acyl_tr_n": 9, "gly_kinas": 9, "gly_rad": 9, "gly_reductas": 9, "gly_rich": 9, "gly_rich_sfcg": 9, "gly_transf_sug": 9, "gly_transport": 9, "glyc_hyd_38c_2": 9, "glyco_h_20c_c": 9, "glyco_hyd_101c": 9, "glyco_hyd_65n_2": 9, "glyco_hydr_116n": 9, "glyco_hydr_30_2": 9, "glyco_hydro2_c5": 9, "glyco_hydro38c2": 9, "glyco_hydro81c": 9, "glyco_hydro_1": 9, "glyco_hydro_10": 9, "glyco_hydro_100": 9, "glyco_hydro_101": 9, "glyco_hydro_106": 9, "glyco_hydro_108": 9, "glyco_hydro_11": 9, "glyco_hydro_114": 9, "glyco_hydro_115": 9, "glyco_hydro_12": 9, "glyco_hydro_125": 9, "glyco_hydro_127": 9, "glyco_hydro_129": 9, "glyco_hydro_130": 9, "glyco_hydro_14": 9, "glyco_hydro_15": 9, "glyco_hydro_16": 9, "glyco_hydro_17": 9, "glyco_hydro_18": 9, "glyco_hydro_19": 9, "glyco_hydro_2": 9, "glyco_hydro_20": 9, "glyco_hydro_20b": 9, "glyco_hydro_25": 9, "glyco_hydro_26": 9, "glyco_hydro_28": 9, "glyco_hydro_2_c": 9, "glyco_hydro_2_n": 9, "glyco_hydro_3": 9, "glyco_hydro_30": 9, "glyco_hydro_30c": 9, "glyco_hydro_31": 9, "glyco_hydro_32c": 9, "glyco_hydro_32n": 9, "glyco_hydro_35": 9, "glyco_hydro_36": 9, "glyco_hydro_36c": 9, "glyco_hydro_36n": 9, "glyco_hydro_38": 9, "glyco_hydro_38c": 9, "glyco_hydro_38n": 9, "glyco_hydro_39": 9, "glyco_hydro_3_c": 9, "glyco_hydro_4": 9, "glyco_hydro_42": 9, "glyco_hydro_42c": 9, "glyco_hydro_42m": 9, "glyco_hydro_43": 9, "glyco_hydro_44": 9, "glyco_hydro_45": 9, "glyco_hydro_46": 9, "glyco_hydro_47": 9, "glyco_hydro_48": 9, "glyco_hydro_49": 9, "glyco_hydro_49n": 9, "glyco_hydro_4c": 9, "glyco_hydro_52": 9, "glyco_hydro_53": 9, "glyco_hydro_56": 9, "glyco_hydro_57": 9, "glyco_hydro_59": 9, "glyco_hydro_59m": 9, "glyco_hydro_5_c": 9, "glyco_hydro_6": 9, "glyco_hydro_62": 9, "glyco_hydro_63": 9, "glyco_hydro_63n": 9, "glyco_hydro_64": 9, "glyco_hydro_65c": 9, "glyco_hydro_65n": 9, "glyco_hydro_65m": 9, "glyco_hydro_66": 9, "glyco_hydro_67c": 9, "glyco_hydro_67m": 9, "glyco_hydro_67n": 9, "glyco_hydro_68": 9, "glyco_hydro_7": 9, "glyco_hydro_70": 9, "glyco_hydro_71": 9, "glyco_hydro_72": 9, "glyco_hydro_75": 9, "glyco_hydro_76": 9, "glyco_hydro_77": 9, "glyco_hydro_79c": 9, "glyco_hydro_79n": 9, "glyco_hydro_8": 9, "glyco_hydro_80": 9, "glyco_hydro_81": 9, "glyco_hydro_85": 9, "glyco_hydro_88": 9, "glyco_hydro_9": 9, "glyco_hydro_92": 9, "glyco_hydro_92n": 9, "glyco_hydro_97": 9, "glyco_hydro_98c": 9, "glyco_hydro_98m": 9, "glyco_hydro_99": 9, "glyco_hydro_cc": 9, "glyco_tran_10_n": 9, "glyco_tran_28_c": 9, "glyco_tran_wbsx": 9, "glyco_tran_wecg": 9, "glyco_tranf_2_2": 9, "glyco_tranf_2_3": 9, "glyco_tranf_2_4": 9, "glyco_tranf_2_5": 9, "glyco_trans_1_2": 9, "glyco_trans_1_3": 9, "glyco_trans_1_4": 9, "glyco_trans_2_3": 9, "glyco_trans_4_2": 9, "glyco_trans_4_3": 9, "glyco_trans_4_4": 9, "glyco_trans_4_5": 9, "glyco_trans_a_1": 9, "glyco_transf_10": 9, "glyco_transf_11": 9, "glyco_transf_15": 9, "glyco_transf_17": 9, "glyco_transf_18": 9, "glyco_transf_20": 9, "glyco_transf_21": 9, "glyco_transf_22": 9, "glyco_transf_24": 9, "glyco_transf_25": 9, "glyco_transf_28": 9, "glyco_transf_29": 9, "glyco_transf_34": 9, "glyco_transf_36": 9, "glyco_transf_4": 9, "glyco_transf_41": 9, "glyco_transf_43": 9, "glyco_transf_49": 9, "glyco_transf_5": 9, "glyco_transf_52": 9, "glyco_transf_54": 9, "glyco_transf_56": 9, "glyco_transf_6": 9, "glyco_transf_61": 9, "glyco_transf_64": 9, "glyco_transf_7c": 9, "glyco_transf_7n": 9, "glyco_transf_8": 9, "glyco_transf_88": 9, "glyco_transf_8c": 9, "glyco_transf_9": 9, "glyco_transf_90": 9, "glyco_transf_92": 9, "glycoamylas": 9, "glycogen_syn": 9, "glycohydro_20b2": 9, "glycolipid_bind": 9, "glycolyt": 9, "glycophorin_a": 9, "glycoprotein": 9, "glycoprotein_b": 9, "glycos_trans_3n": 9, "glycos_transf_1": 9, "glycos_transf_2": 9, "glycos_transf_3": 9, "glycos_transf_4": 9, "glycos_transf_n": 9, "glyoxal_oxid_n": 9, "glyoxalas": 9, "glyoxalase_2": 9, "glyoxalase_3": 9, "glyoxalase_4": 9, "glyoxalase_5": 9, "glyoxalase_6": 9, "glyoxalase_7": 9, "glyoxalase_8": 9, "glyphos_transf": 9, "glypican": 9, "gmad1": 9, "gmad2": 9, "gmx_para_cxxcg": 9, "gnhr_tran": 9, "gnrh": 9, "gnsab_toxin": 9, "gntp_permeas": 9, "gntr": 9, "goloco": 9, "golgin_a5": 9, "gon7": 9, "goodby": 9, "got1": 9, "gp13": 9, "gp138_n": 9, "gp23": 9, "gp3": 9, "gp37": 9, "gp49": 9, "gp58": 9, "gp5_c": 9, "gpa_atpas": 9, "gpa_nucleas": 9, "gp_dh_c": 9, "gp_dh_n": 9, "gpcrrhopsn4": 9, "gpi1": 9, "gpi16": 9, "gpr1_fun34_yaah": 9, "grampos_pilinbb": 9, "grampos_pilind1": 9, "grampos_pilind3": 9, "gram_pos_anchor": 9, "granin": 9, "granulin": 9, "grea_greb": 9, "grea_greb_n": 9, "grg1": 9, "grlr": 9, "ground": 9, "grp7_allergen": 9, "grpb": 9, "grpe": 9, "gryzun": 9, "gsf2": 9, "gsha": 9, "gspa_srpa_n": 9, "gsph": 9, "gspl_c": 9, "gti1_pac2": 9, "gtr1_raga": 9, "gtra": 9, "guanylate_cyc": 9, "guanylate_cyc_2": 9, "guanylate_kin": 9, "guanylin": 9, "gutm": 9, "gvpd_p": 9, "loop": [9, 17], "gvpd_br2": 9, "gvpg": 9, "gvph": 9, "gvpk": 9, "gvpl_gvpf": 9, "gvpo": 9, "gxdly": 9, "gxgyxyp_c": 9, "gxgyxyp_n": 9, "gypsi": 9, "gyrb_insert": 9, "gyri": 9, "k_atpase_n": 9, "kinase_dim": 9, "h2o2_yaad": 9, "h2th": 9, "ha1": 9, "ha2": 9, "habp4_pai": 9, "rbp1": 9, "had": 9, "had_2": 9, "had_sak_1": 9, "had_sak_2": 9, "hagh_c": 9, "halz": 9, "hamp": 9, "hamp_2": 9, "hamp_n3": 9, "hand": [9, 16], "hap": 9, "hap1_n": 9, "hap2": 9, "gcs1": 9, "hare": 9, "hth": 9, "harp": 9, "barrel": 9, "hat": 9, "hatpase_c": 9, "hatpase_c_2": 9, "hatpase_c_3": 9, "hatpase_c_4": 9, "hatpase_c_5": 9, "hat_kat11": 9, "hau": 9, "augmin3": 9, "haus2": 9, "haus4": 9, "haus5": 9, "haus6_n": 9, "hbb": 9, "hbd": 9, "hbm": 9, "hbs1_n": 9, "hc2": 9, "hcbp_relat": 9, "hcmv_ul139": 9, "hcngp": 9, "hco3_cotransp": 9, "hcr": 9, "hd": 9, "zip_n": 9, "hda2": 9, "hdac4_gln": 9, "hdc": 9, "hdnr": 9, "hdod": 9, "hdpd": 9, "hd_3": 9, "hd_4": 9, "hd_5": 9, "hd_6": 9, "hd_assoc": 9, "hd_assoc_2": 9, "heat": 9, "heat_2": 9, "heat_ez": 9, "heat_pb": 9, "heat_uf": 9, "heca": 9, "hect": 9, "hect_2": 9, "hecw1_helix": 9, "hecw_n": 9, "hef_hk": 9, "help": [9, 16], "hem4": 9, "hepn": 9, "like_int": 9, "hepn_abia_ctd": 9, "hepn_abiu2": 9, "hepn_abiv": 9, "hepn_apea": 9, "hepn_cthe2314": 9, "hepn_dzip3": 9, "hepn_la2681": 9, "hepn_mae_28990": 9, "hepn_res_ntd1": 9, "hepn_ribol": 9, "psp": 9, "hepn_rnasel": 9, "hepn_sav2148": 9, "hepn_sav_6107": 9, "hepn_sty4199": 9, "hepn_swt1": 9, "hepn_toprim_n": 9, "heppp_synt_1": 9, "herv": 9, "k_rec": 9, "k_env_2": 9, "het": 9, "s_218": 9, "289": 9, "hewd": 9, "hexim": 9, "hgal": 9, "hgd": 9, "hgsnat_cat": 9, "hgtp_anticodon": 9, "hgtp_anticodon2": 9, "hgwp": 9, "hha": 9, "hhh": 9, "hhh_2": 9, "hhh_3": 9, "hhh_4": 9, "hhh_5": 9, "hhh_6": 9, "hhh_7": 9, "hhh_8": 9, "hhh_9": 9, "hhl1": 9, "hhv": 9, "1_vabd": 9, "hh_signal": 9, "hi0933_lik": 9, "hif": 9, "1a_ctad": 9, "high_ntase1": 9, "high_ntase1_ass": 9, "hig_1_n": 9, "hilpda": 9, "him1": 9, "hin": 9, "hind": [9, 14], "hip1_clath_bdg": 9, "hipip": 9, "hiran": 9, "hira_b": 9, "hit": 9, "hjurp_c": 9, "hjurp_mid": 9, "hk": 9, "hk97": 9, "gp10_like": 9, "hkr_arcb_tm": 9, "hk_sensor": 9, "hlh": 9, "hma": 9, "hma_2": 9, "hmbd": 9, "hmd": 9, "hmg": 9, "coa_r": 9, "hmg14_17": 9, "hmgl": 9, "hmg_coa_synt_c": 9, "hmg_coa_synt_n": 9, "hmg_box": 9, "hmg_box_2": 9, "hmg_box_5": 9, "hmmr_c": 9, "hmmr_n": 9, "hmw1c_n": 9, "hmw1_d2": 9, "hnf": 9, "1a_c": 9, "1b_c": 9, "hnf_c": 9, "hnh": 9, "hnh_2": 9, "hnh_3": 9, "hnh_4": 9, "hnh_5": 9, "hnh_repeat": 9, "hnhc_6": 9, "hnob": 9, "hnoba": 9, "hoasn": 9, "hoatz": 9, "hochob": 9, "hoip": 9, "uba": 9, "hok_gef": 9, "hook": [9, 14], "hook_n": 9, "horma": 9, "hp0268": 9, "hp1451_c": 9, "hpd": 9, "hphlawli": 9, "hpih": 9, "hpip": 9, "hpip_lik": 9, "hpp": 9, "hppk": 9, "hps3_c": 9, "hps3_mid": 9, "hps3_n": 9, "hps6": 9, "hps6_c": 9, "hptransfas": 9, "hp_omp": 9, "hp_omp_2": 9, "hr1": 9, "hrct1": 9, "hrdc": 9, "hrg": 9, "hri1": 9, "hrm": 9, "hrob": 9, "hrxxh": 9, "hr_lesion": 9, "hs1_rep": 9, "hsa": [9, 14, 15], "hsbp1": 9, "hscb_c": 9, "hsd3": 9, "hsdr_n": 9, "hsdr_n_2": 9, "hsf_dna": 9, "hsl_n": 9, "hsm3_c": 9, "hsm3_n": 9, "hsnsd": 9, "hsp20": 9, "hsp33": 9, "hsp70": 9, "hsp90": 9, "hsp9_hsp12": 9, "hsr": 9, "hthp": 9, "hth_1": 9, "hth_10": 9, "hth_11": 9, "hth_12": 9, "hth_13": 9, "hth_15": 9, "hth_16": 9, "hth_17": 9, "hth_18": 9, "hth_19": 9, "hth_20": 9, "hth_21": 9, "hth_22": 9, "hth_23": 9, "hth_24": 9, "hth_25": 9, "hth_26": 9, "hth_27": 9, "hth_28": 9, "hth_29": 9, "hth_3": 9, "hth_30": 9, "hth_31": 9, "hth_32": 9, "hth_33": 9, "hth_34": 9, "hth_35": 9, "hth_36": 9, "hth_37": 9, "hth_38": 9, "hth_39": 9, "hth_40": 9, "hth_41": 9, "hth_42": 9, "hth_43": 9, "hth_44": 9, "hth_45": 9, "hth_46": 9, "hth_47": 9, "hth_48": 9, "hth_49": 9, "hth_5": 9, "hth_50": 9, "hth_51": 9, "hth_52": 9, "hth_53": 9, "hth_54": 9, "hth_55": 9, "hth_56": 9, "hth_57": 9, "hth_58": 9, "hth_59": 9, "hth_6": 9, "hth_60": 9, "hth_61": 9, "hth_62": 9, "hth_63": 9, "hth_7": 9, "hth_8": 9, "hth_9": 9, "hth_abp1_n": 9, "hth_arac": 9, "hth_asnc": 9, "hth_codi": 9, "hth_crp_2": 9, "hth_deor": 9, "hth_iclr": 9, "hth_mga": 9, "hth_orfb_is605": 9, "hth_pafc": 9, "hth_parb": 9, "hth_sun2": 9, "hth_tnp_1": 9, "hth_tnp_1_2": 9, "hth_tnp_2": 9, "hth_tnp_4": 9, "hth_tnp_is1": 9, "hth_tnp_is630": 9, "hth_tnp_isl3": 9, "hth_tnp_mu_1": 9, "hth_tnp_mu_2": 9, "hth_tnp_tc3_1": 9, "hth_tnp_tc3_2": 9, "hth_tnp_tc5": 9, "hth_whia": 9, "hth_micro": 9, "hth_psq": 9, "ht": 9, "hu": 9, "ccdc81_bac_1": 9, "ccdc81_bac_2": 9, "ccdc81_euk_1": 9, "ccdc81_euk_2": 9, "dna_bdg": 9, "hig": 9, "hun": 9, "hvo_2753_zbp": 9, "hvsl": 9, "hwe_hk": 9, "hxxee": 9, "hxxshh": 9, "hyls1_c": 9, "hypk_uba": 9, "hyr": 9, "hzs_alpha": 9, "h_ppase": 9, "h_lectin": 9, "haem_bd": 9, "haem_oxygenas_2": 9, "haemocyan_bet_": 9, "hairy_orang": 9, "halod1": 9, "halod2": 9, "halx": 9, "halo_gvpc": 9, "halogen_hydrol": 9, "ham1p_lik": 9, "hama": 9, "hamartin": 9, "hap4_hap_bind": 9, "hapk": 9, "harakiri": 9, "harpin": 9, "hasa": 9, "haspin_kinas": 9, "hat1_n": 9, "hbp": 9, "hbrb": 9, "hc1": 9, "hce2": 9, "hcgb": 9, "hcgc": 9, "hcgf": 9, "hcybio": 9, "hdcb": 9, "hdea": 9, "heh": 9, "helo": 9, "he_pig": 9, "head": 9, "tail_con": 9, "head_bind": 9, "headcas": 9, "helicase_c": 9, "helicase_c_2": 9, "helicase_c_3": 9, "helicase_c_4": 9, "helicase_iv_n": 9, "helicase_pwi": 9, "helicase_recd": 9, "helicase_sgs1": 9, "heliorhodopsin": 9, "helitron_like_n": 9, "helo_like_n": 9, "helveticin_j": 9, "hemn_c": 9, "hem": 9, "hemx": 9, "hemy_n": 9, "hemagglutinin": 9, "hemebinding_shp": 9, "heme_oxygenas": 9, "hemerythrin": 9, "hemocyanin_c": 9, "hemocyanin_m": 9, "hemocyanin_n": 9, "hemolysincabind": 9, "hemolysin_n": 9, "hemopexin": 9, "hen1_l": 9, "hen1_lam_c": 9, "hepii_c": 9, "hept": 9, "hep_59": 9, "hep_core_n": 9, "hepar_ii_iii": 9, "hepar_ii_iii_n": 9, "hepatitis_cor": 9, "hepcidin": 9, "hepsin": 9, "srcr": 9, "hera_c": 9, "herpes_bllf1": 9, "herpes_blrf2": 9, "herpes_helicas": 9, "herpes_ie68": 9, "herpes_lmp1": 9, "herpes_lmp2": 9, "herpes_taf50": 9, "herpes_u55": 9, "herpes_ul52": 9, "herpes_ul92": 9, "herpes_us12": 9, "herpes_glycop_h": 9, "herpes_ori_bp": 9, "herpes_pp38": 9, "herpes_pp85": 9, "herpes_teg_n": 9, "herpeto_peptid": 9, "hetr_c": 9, "hex_iiia": 9, "hexapep": 9, "hexapep_2": 9, "hexapep_loop": 9, "hexokinase_1": 9, "hexokinase_2": 9, "hexose_dehydrat": 9, "hflk_n": 9, "hflx_c": 9, "hfq": 9, "hfx_cass5": 9, "hgma_c": 9, "hgma_n": 9, "gpd": 9, "hiabd2": 9, "hica_toxin": 9, "hicb": 9, "hicb_lk_antitox": 9, "hid1": 9, "higb": 9, "like_toxin": 9, "higb_toxin": 9, "hint": 9, "hint_2": 9, "hipa_2": 9, "hipa_c": 9, "hipn": 9, "hira": 9, "hisg": 9, "hisg_c": 9, "hisk": 9, "hiska": 9, "hiska_2": 9, "hiska_3": 9, "hiska_4tm": 9, "hiska_7tm": 9, "hisk_n": 9, "hisk_sensor": 9, "his_me_b4a2": 9, "his_phos_1": 9, "his_phos_2": 9, "his_bind": 9, "his_biosynth": 9, "his_kinas": 9, "his_lead": 9, "hist_deacetyl": 9, "hist_rich_ca": 9, "histidinol_dh": 9, "histon": 9, "histone_h2a_c": 9, "histone_hn": 9, "hit1_c": 9, "hjc": 9, "hlyc": 9, "hlyd_2": 9, "hlyd_3": 9, "hlyd_d23": 9, "hlyd_d4": 9, "hlye": 9, "hlyiii": 9, "hlyu": 9, "hmui": 9, "hmw_cfap97": 9, "hnrnpa1": 9, "hnrnp_m_nl": 9, "hoba": 9, "hofp": 9, "hol_tox": 9, "holin_2": 9, "holin_9": 9, "holin_bhla": 9, "holin_blya": 9, "holin_spp1": 9, "hom_end": 9, "hom_end_hint": 9, "homeobox_kn": 9, "homeodomain": 9, "homez": 9, "homoserine_dh": 9, "hopa1": 9, "hopj": 9, "hopw1": 9, "hormone_1": 9, "hormone_2": 9, "hormone_3": 9, "hormone_4": 9, "hormone_5": 9, "hormone_6": 9, "hormone_recep": 9, "host_attach": 9, "hox9_act": 9, "hoxa13_n": 9, "hpab": 9, "hpab_n": 9, "hpap": 9, "hpch_hpai": 9, "hph": 9, "hpr_kinase_c": 9, "hpr_kinase_n": 9, "hpre_dip_synt_i": 9, "hpt": 9, "hpua": 9, "hrca": 9, "hrca_dna": 9, "hrpa_pilin": 9, "hrpb1_hrpk": 9, "hrpb2": 9, "hrpb4": 9, "hrpb7": 9, "hrpb_c": 9, "hrpe": 9, "hrpf": 9, "hrpj": 9, "hrs_helic": 9, "hs1pro": 9, "hsba": 9, "hscb_4_cy": 9, "hsdm_n": 9, "htaa": 9, "htr2": 9, "htrl_yibb": 9, "hum_adeno_e3a": 9, "humanin": 9, "hupe_urej": 9, "hupe_urej_2": 9, "hupf_hypc": 9, "huph_c": 9, "hus1": 9, "hutd": 9, "hutp": 9, "hva1_tudor": 9, "hxlr": 9, "hyae": 9, "hyaluronidase_1": 9, "hyca_repressor": 9, "hych": 9, "hyci": 9, "hyccin": 9, "hydf_dim": 9, "hydf_tetram": 9, "hyd_wa": 9, "hydant_a_c": 9, "hydant_a_n": 9, "hydantoinase_a": 9, "hydantoinase_b": 9, "hydin_adk": 9, "hydrolas": 9, "hydrolase_2": 9, "hydrolase_3": 9, "hydrolase_4": 9, "hydrolase_6": 9, "hydrolase_lik": 9, "hydrophob_se": 9, "hydrophobin": 9, "hydrophobin_2": 9, "hypa": 9, "hypd": 9, "hypf_c": 9, "hyphal_reg_cwp": 9, "hypoth_ymh": 9, "hyr1": 9, "egf_1": 9, "iatp": 9, "iat_beta": 9, "ibb": 9, "ibd": 9, "ibn_n": 9, "ibp39": 9, "ibr": 9, "ica69": 9, "icam_n": 9, "icap": 9, "1_inte_bdg": 9, "icat": 9, "ice2": 9, "icea": 9, "icl": 9, "icmt": 9, "ideal": 9, "idh": 9, "ido": 9, "ier": 9, "ies5": 9, "IF": 9, "2b": 9, "if2_n": 9, "if2_assoc": 9, "if3_c": 9, "if3_n": 9, "if4": 9, "ifn": 9, "ifngr1": 9, "ifp_35_n": 9, "ifrd": 9, "ifrd_c": 9, "IFS": 9, "ift20": 9, "ift43": 9, "ift46_b_c": 9, "ift57": 9, "ift81_ch": 9, "iftap": 9, "igf2_c": 9, "igfbp": 9, "igfl": 9, "igpd": 9, "igp": 9, "igr": 9, "ihabp4_n": 9, "iho1": 9, "iigp": 9, "ikbkb_sdd": 9, "iki3": 9, "ikkbetanemobind": 9, "il1": 9, "il10": 9, "il11": 9, "il12": 9, "il12p40_c": 9, "il13": 9, "il15": 9, "il17": 9, "il17r_d_n": 9, "il17r_fniii_d1": 9, "il17r_fniii_d2": 9, "il17_r_n": 9, "il1_propep": 9, "il2": 9, "il22": 9, "il23": 9, "il28a": 9, "il2rb_n1": 9, "il3": 9, "il31": 9, "il32": 9, "il33": 9, "il34": 9, "il3ra_n": 9, "il4": 9, "il4ra_n": 9, "il4_i_ig": 9, "il5": 9, "il6": 9, "il6ra": 9, "il7": 9, "il8": 9, "ilei": 9, "ilvd_edd": 9, "imcp": 9, "imd": 9, "iml1": 9, "imp2_c": 9, "imp2_n": 9, "impdh": 9, "imp_cyclohyd": 9, "impa_n_2": 9, "impa_hel": 9, "im": 9, "ims_c": 9, "ims_hhh": 9, "imup": 9, "inca1": 9, "incenp_ark": 9, "incenp_n": 9, "ing": 9, "ino80_ies4": 9, "inpp5b_ph": 9, "insc_lbd": 9, "insig": 9, "intap": 9, "ints2": 9, "ints5_c": 9, "ints5_n": 9, "int_sg_ddx_ct_c": 9, "int_rpt": 9, "inv_n": 9, "in_dbd_c": 9, "ipk": 9, "ipp": 9, "ippt": 9, "ipt": 9, "iptl": 9, "cterm": 9, "ipu_b_solenoid": 9, "ip_tran": 9, "iqcj": 9, "schip1": 9, "iq_sec7_ph": 9, "ir1": 9, "irf": 9, "2bp1_2": 9, "irk": 9, "irk_c": 9, "irk_n": 9, "ir": 9, "iset": 9, "fn3_linker": 9, "isg65": 9, "75": 9, "isk_channel": 9, "isn1": 9, "isp1_c": 9, "isp3_c": 9, "ispd_c": 9, "itam": 9, "iti_hc_c": 9, "iu_nuc_hydro": 9, "izumo": 9, "i_lweq": 9, "ialb": 9, "ibs_toxin": 9, "icea2": 9, "ice_bind": 9, "ice_nucl": 9, "iclr": 9, "icmf": 9, "related_n": 9, "icmf_c": 9, "ifi": 9, "iggfc_bind": 9, "igg_binding_b": 9, "ig_2": 9, "ig_3": 9, "ig_4": 9, "ig_5": 9, "ig_6": 9, "ig_7": 9, "ig_c17orf99": 9, "ig_c19orf38": 9, "ig_glcnas": 9, "ig_j_chain": 9, "ig_tie2_1": 9, "ig_mannosidas": 9, "igaa": 9, "iglc": 9, "il13ra_ig": 9, "il2rg": 9, "ilm1": 9, "ilvb_lead": 9, "ilvc": 9, "ilvgeda_lead": 9, "ilvn": 9, "ima1_n": 9, "img2": 9, "iml2": 9, "tpr_39": 9, "imm": 9, "ntf2": 9, "imm1": 9, "imm10": 9, "imm12": 9, "imm15": 9, "imm17": 9, "imm19": 9, "imm2": 9, "imm21": 9, "imm25": 9, "imm26": 9, "imm27": 9, "imm3": 9, "imm30": 9, "imm31": 9, "imm32": 9, "imm35": 9, "imm39": 9, "imm40": 9, "imm41": 9, "imm42": 9, "imm43": 9, "imm44": 9, "imm45": 9, "imm47": 9, "imm48": 9, "imm49": 9, "imm5": 9, "imm50": 9, "imm51": 9, "imm52": 9, "imm53": 9, "imm57": 9, "imm58": 9, "imm59": 9, "imm6": 9, "imm61": 9, "imm63": 9, "imm64": 9, "imm65": 9, "imm68": 9, "imm7": 9, "imm70": 9, "imm71": 9, "imm72": 9, "imm74": 9, "imm8": 9, "imm9": 9, "imme5": 9, "imm_superinfect": 9, "imp": 9, "ygjv": 9, "impa_n": 9, "importin_rep": 9, "importin_rep_2": 9, "importin_rep_3": 9, "importin_rep_4": 9, "importin_rep_5": 9, "importin_rep_6": 9, "inpas": 9, "inaf": 9, "incd": 9, "inc": 9, "incf": 9, "incfii_repa": 9, "indigoidine_a": 9, "inh": 9, "inhibitor_g39p": 9, "inhibitor_i10": 9, "inhibitor_i29": 9, "inhibitor_i34": 9, "inhibitor_i36": 9, "inhibitor_i42": 9, "inhibitor_i48": 9, "inhibitor_i53": 9, "inhibitor_i66": 9, "inhibitor_i67": 9, "inhibitor_i68": 9, "inhibitor_i69": 9, "inhibitor_i71": 9, "inhibitor_i78": 9, "inhibitor_i9": 9, "inhibitor_mig": 9, "init_trna_pt": 9, "inj_translocas": 9, "inlk_d3": 9, "innexin": 9, "ino80_iec3": 9, "ino": 9, "p_synth": 9, "inositol_p": 9, "inovirus_g7p_1": 9, "inovirus_g7p_2": 9, "inovirus_gp2": 9, "inp1": 9, "ins134_p3_kin": 9, "ins134_p3_kin_n": 9, "ins145_p3_rec": 9, "ins_p5_2": 9, "kin": 9, "ins_allergen_rp": 9, "ins_beta": 9, "insc_c": 9, "insulin": 9, "insulin_tmd": 9, "ints14_c": 9, "ints14_b": 9, "integrase_1": 9, "integrase_2": 9, "integrase_dna": 9, "integrase_h2c2": 9, "integrase_zn": 9, "integrin_b_tail": 9, "integrin_alpha": 9, "integrin_alpha2": 9, "integrin_b_cyt": 9, "integrin_beta": 9, "intein_spl": 9, "interf": 9, "interferon": 9, "internalin_n": 9, "intg_mem_tp0381": 9, "intimin_c": 9, "intron_maturas2": 9, "ints3_n": 9, "intu_longin_1": 9, "intu_longin_2": 9, "intu_longin_3": 9, "inv": 9, "aad": 9, "inve_ad": 9, "invh": 9, "invas_spak": 9, "invasin_d3": 9, "involucrin": 9, "involucrin2": 9, "involucrin_n": 9, "ion_tran": 9, "ion_trans_2": 9, "ion_trans_n": 9, "ipab_evca": 9, "ipac_sipc": 9, "ipgd": 9, "ipi1_n": 9, "ireb": 9, "irma": 9, "iron_permeas": 9, "iron_traff": 9, "iron_transport": 9, "ish1": 9, "island": 9, "iso_dh": 9, "isochorismatas": 9, "ispa": 9, "ispd": 9, "ist1": 9, "istb_is21": 9, "isy1": 9, "itfg2": 9, "iuca_iucc": 9, "ivi": 9, "iwr1": 9, "ig": 9, "jab": 9, "jakmip_cc3": 9, "jamp": 9, "jcad": 9, "jhbp": 9, "jhd": 9, "jhy": 9, "jip_lzii": 9, "jlpa": 9, "jmy": 9, "jsrp": 9, "jtb": 9, "jupit": 9, "jacalin": 9, "jag_n": 9, "jagun": 9, "jak1_phl": 9, "jas_motif": 9, "jiraiya": 9, "jiv90": 9, "jmjc": 9, "jmjc_2": 9, "jmjn": 9, "jnk": 9, "sapk_ap_n": 9, "josephin": 9, "joubert": 9, "jun": 9, "k1377": 9, "ka1": 9, "kaag1": 9, "kap": 9, "kap_ntpas": 9, "kar": 9, "kar9": 9, "kash": 9, "kash_ccd": 9, "kasynt_c_assoc": 9, "kbp_c": 9, "kbtb_w": 9, "lir": 9, "kch": 9, "kcnq2_u3": 9, "kcnqc3": 9, "g_bd": 9, "kcnq_channel": 9, "kct2": 9, "kctd11_21_c": 9, "kctd18_c": 9, "kctd4_c": 9, "kdgp_aldolas": 9, "kdz": 9, "kelaa": 9, "kelk": 9, "kgg": 9, "kgk": 9, "kha": 9, "kh_1": 9, "kh_10": 9, "kh_2": 9, "kh_4": 9, "kh_5": 9, "kh_6": 9, "kh_7": 9, "kh_8": 9, "kh_9": 9, "kh_dom": 9, "ki67r": 9, "kiaa1328": 9, "kid": 9, "kif1b": 9, "kip1": 9, "kix": 9, "kix_2": 9, "kklcag1": 9, "klraq": 9, "kmp11": 9, "kn17_sh3": 9, "knox1": 9, "knox2": 9, "kntase_c": 9, "kn_motif": 9, "kora": 9, "kow": 9, "kpbb_c": 9, "kpp10_orf10": 9, "kr": 9, "krab": 9, "krap_ip3r_bind": 9, "krba1": 9, "kre1": 9, "krtap": 9, "krtap7": 9, "krtdap": 9, "kti12": 9, "ktsc": 9, "k_channel_tid": 9, "k_tran": 9, "kaia": 9, "kaib": 9, "kapb": 9, "katanin_con80": 9, "kazal_1": 9, "kazal_2": 9, "kazal_3": 9, "kbaa": 9, "kcnmb2_inactiv": 9, "kdgm": 9, "kdgt": 9, "kdo": 9, "kdo_hydroxi": 9, "kdpa": 9, "kdpc": 9, "kdpd": 9, "kdui": 9, "kei1": 9, "kelch_1": 9, "kelch_2": 9, "kelch_3": 9, "kelch_4": 9, "kelch_5": 9, "kelch_6": 9, "keratin": 9, "keratin_2_head": 9, "keratin_2_tail": 9, "keratin_b2": 9, "keratin_b2_2": 9, "keratin_assoc": 9, "keratin_matx": 9, "ketoacyl": 9, "synt_2": 9, "kfra_n": 9, "kfrb": 9, "kiaa1109_n": 9, "kicb": 9, "kila": 9, "kin17_mid": 9, "kinb_sensor": 9, "kinas": 9, "pppase": 9, "kindlin_2_n": 9, "kinesin": 9, "kinesin_assoc": 9, "kinetochor_ybp2": 9, "kinocilin": 9, "kisspeptin": 9, "klee": 9, "knl1_rwd_c": 9, "korb": 9, "korb_c": 9, "kp4": 9, "kpta_kdcl": 9, "kre28": 9, "kre9_knh": 9, "kre9_knh1_c": 9, "kri1": 9, "kri1_c": 9, "kringl": 9, "ksha_c": 9, "ku": 9, "ku_c": 9, "ku_n": 9, "ku_pk_bind": 9, "kunitz_bpti": 9, "kunitz_legum": 9, "kv2channel": 9, "kxdl": 9, "kxykxgkxw_sig": 9, "fibroin": 9, "l27": 9, "l27_1": 9, "l27_2": 9, "l27_n": 9, "l31": 9, "l51_s25_ci": 9, "b8": 9, "l6_membran": 9, "l71": 9, "la": 9, "virus_coat": 9, "lab_n": 9, "lag1": 9, "dnabind": 9, "laglidadg_1": 9, "laglidadg_2": 9, "laglidadg_3": 9, "laglidadg_whia": 9, "laika": 9, "lal_c2": 9, "lamtor": 9, "lamtor5": 9, "lam_c": 9, "lanc_lik": 9, "lap1_c": 9, "lap1_n": 9, "lap2alpha": 9, "lara_dom": 9, "las2": 9, "lat": 9, "lat2": 9, "lax": 9, "lbp_bpi_cetp": 9, "lbp_bpi_cetp_c": 9, "lbp_c": 9, "lbp_m": 9, "lbr_tudor": 9, "lcat": 9, "lccl": 9, "lcd1": 9, "lce": 9, "lce6a": 9, "lcib_c_ca": 9, "lcm": 9, "ldb19": 9, "ld_cluster2": 9, "ld_cluster3": 9, "ldcluster4": 9, "leap": 9, "lea_1": 9, "lea_2": 9, "lea_3": 9, "lea_4": 9, "lea_5": 9, "lea_6": 9, "ledgf": 9, "lef": 9, "leh": 9, "lelp1": 9, "lem": 9, "lep503": 9, "letm1_rbd": 9, "letm2_n": 9, "lgfp": 9, "lgt": 9, "lhc": 9, "lhh": 9, "lias_n": 9, "lid": 9, "lidhydrolas": 9, "lifr_d2": 9, "lifr_n": 9, "lif_osm": 9, "lig3_brct": 9, "lim": 9, "lime1": 9, "lim_bind": 9, "lin37": 9, "lin52": 9, "lin9_c": 9, "lines_c": 9, "lines_n": 9, "lip": 9, "lip1": 9, "lix1": 9, "lkaaear": 9, "llc1": 9, "llcfc1": 9, "llgl": 9, "lmbr1": 9, "lmf1": 9, "lmp": 9, "lmsten": 9, "lmwpc": 9, "lmwslp_n": 9, "lnp1": 9, "lns2": 9, "lnt_n": 9, "lob": 9, "loh1cr12": 9, "lon_substr_bdg": 9, "lor": 9, "lpam_1": 9, "lpam_2": 9, "lpd1": 9, "lpd11": 9, "lpd13": 9, "lpd14": 9, "lpd15": 9, "lpd16": 9, "lpd18": 9, "lpd22": 9, "lpd23": 9, "lpd24": 9, "lpd25": 9, "lpd26": 9, "lpd28": 9, "lpd29": 9, "lpd3": 9, "lpd30": 9, "lpd34": 9, "lpd37": 9, "lpd38": 9, "lpd39": 9, "lpd5": 9, "lpd7": 9, "lpg_synthase_c": 9, "lpg_synthase_tm": 9, "lpmo_10": 9, "lpp": 9, "lpp20": 9, "lrat": 9, "lrif1": 9, "lrr19": 9, "tm": 9, "lrrc37": 9, "lrrc37ab_c": 9, "lrrct": 9, "lrrct_2": 9, "lrrfip": 9, "lrrnt": 9, "lrrnt_2": 9, "lrr_1": 9, "lrr_10": 9, "lrr_11": 9, "lrr_2": 9, "lrr_3": 9, "lrr_4": 9, "lrr_5": 9, "lrr_6": 9, "lrr_8": 9, "lrr_9": 9, "lrr_ri_cap": 9, "lrr_adjac": 9, "lrs4": 9, "lrv": 9, "lrv_fe": 9, "lsdat_euk": 9, "lsdat_prok": 9, "lsm": 9, "lsm14": 9, "lsm_int_assoc": 9, "lspr": 9, "lsr": 9, "lst1": 9, "ltd": 9, "ltp_2": 9, "ltv": 9, "ltxxq": 9, "luc7": 9, "lud_dom": 9, "lurap": 9, "lvivd": 9, "lxg": 9, "lyric": 9, "lyrm2": 9, "lytb": 9, "lz3wch": 9, "lz_tnp_is481": 9, "lz_tnp_is66": 9, "l_hmgic_fpl": 9, "l_biotic_typea": 9, "l_lac_phage_msp": 9, "l_lactis_repb_c": 9, "l_protein_n": 9, "la_hth_kdcl": 9, "laa1_sip1_htr5": 9, "lacab_rpib": 9, "laci": 9, "lacy_symp": 9, "lacz_4": 9, "lac_bphage_repr": 9, "lact": 9, "deh": 9, "memb": 9, "lact_bio_phlas": 9, "lactamase_b": 9, "lactamase_b_2": 9, "lactamase_b_3": 9, "lactamase_b_4": 9, "lactamase_b_5": 9, "lactamase_b_6": 9, "lactate_perm": 9, "lactococcin": 9, "lactococcin_972": 9, "lactonas": 9, "lamb": 9, "lamb_ycsf": 9, "lambda_bor": 9, "lambda_ciii": 9, "lambda_kil": 9, "lambda_tail_i": 9, "laminin_b": 9, "laminin_egf": 9, "laminin_g_1": 9, "laminin_g_2": 9, "laminin_g_3": 9, "laminin_i": 9, "laminin_ii": 9, "laminin_n": 9, "lamp": 9, "lamprin": 9, "lant_dehydr_c": 9, "lant_dehydr_n": 9, "lantibiotic_a": 9, "lapa": 9, "lapa_dom": 9, "lapd_moxy_n": 9, "lap": 9, "lar_n": 9, "lar_restr_allev": 9, "las1": 9, "late_protein_l2": 9, "laterosporulin": 9, "latexin": 9, "latrophilin": 9, "latrotoxin_c": 9, "lbh": 9, "lcng": 9, "lcrg": 9, "lcrr": 9, "lcrv": 9, "ldh_1_c": 9, "ldh_1_n": 9, "ldh_2": 9, "ldi": 9, "ldl_recept_a": 9, "ldl_recept_b": 9, "ldpa_c": 9, "ldr_toxin": 9, "ldt_c": 9, "leader_cpa1": 9, "leader_erm": 9, "leader_thr": 9, "leader_trp": 9, "lebercilin": 9, "lectin_c": 9, "lectin_c_term": 9, "lectin_n": 9, "lectin_leg": 9, "lectin_legb": 9, "lectin_lik": 9, "leg1": 9, "legc3_n": 9, "legionella_omp": 9, "lema": 9, "leo1": 9, "lepa_c": 9, "lepb_gap_c": 9, "lepb_gap_n": 9, "lepb_n": 9, "lep_receptor_ig": 9, "leptin": 9, "leua_dim": 9, "leu_phe_tran": 9, "leu_lead": 9, "leu_zip": 9, "leucyl": 9, "leuk": 9, "a4": [9, 14], "hydro_c": 9, "leukocidin": 9, "lexa_dna_bind": 9, "lge1": 9, "lgl_c": 9, "lhr_wh": 9, "licd": 9, "lida_long_cc": 9, "liga": 9, "ligb": 9, "ligd_n": 9, "ligt_peas": 9, "ligxa_c": 9, "lig_c": 9, "lig_chan": 9, "glu_bd": 9, "ligase_coa": 9, "ligase_coa_2": 9, "lin": 9, "lin0512_fam": 9, "linker_histon": 9, "linocin_m18": 9, "lip_a_acyltran": 9, "lip_prot_lig_c": 9, "lipas": 9, "lipase3_n": 9, "lipase_2": 9, "lipase_3": 9, "lipase_c": 9, "lipase_gdsl": 9, "lipase_gdsl_2": 9, "lipase_gdsl_3": 9, "lipase_gdsl_lk": 9, "lipase_bact_n": 9, "lipase_chap": 9, "lipid_d": 9, "lipid_bd": 9, "lipid_desat": 9, "lipin_n": 9, "lipin_mid": 9, "lipl32": 9, "lipocalin": 9, "lipocalin_2": 9, "lipocalin_3": 9, "lipocalin_4": 9, "lipocalin_5": 9, "lipocalin_7": 9, "lipocalin_8": 9, "lipocalin_9": 9, "lipoprot_c": 9, "lipoprotein_10": 9, "lipoprotein_11": 9, "lipoprotein_15": 9, "lipoprotein_16": 9, "lipoprotein_17": 9, "lipoprotein_18": 9, "lipoprotein_19": 9, "lipoprotein_2": 9, "lipoprotein_20": 9, "lipoprotein_21": 9, "lipoprotein_22": 9, "lipoprotein_23": 9, "lipoprotein_3": 9, "lipoprotein_6": 9, "lipoprotein_7": 9, "lipoprotein_8": 9, "lipoprotein_9": 9, "lipoprotein_ltp": 9, "lipoprotein_x": 9, "lipoxygenas": 9, "lir1": 9, "lish": 9, "lish_2": 9, "lish_tpl": 9, "lktc": 9, "lmea": 9, "lmjf365940": 9, "lnmk_n_hdf": 9, "loda_c": 9, "loda_n": 9, "lola": 9, "lola_2": 9, "lola_3": 9, "lola_lik": 9, "lolb": 9, "lonb_aaa": 9, "lonc_hel": 9, "lon_c": 9, "longin": 9, "longin_2": 9, "loricrin": 9, "lpob": 9, "lpqn": 9, "lppa": 9, "lppc": 9, "lppx_lprafg": 9, "lpqv": 9, "lpri": 9, "lptc": 9, "lptd": 9, "lptd_2": 9, "lptd_n": 9, "lpte": 9, "lptf_lptg": 9, "lpxb": 9, "lpxc": 9, "lpxd": 9, "lpxi_c": 9, "lpxi_n": 9, "lpxk": 9, "lrga": 9, "lrgb": 9, "lsmad": 9, "lsm_c": 9, "lsm_interact": 9, "lsr2": 9, "lssy_c": 9, "ltra": 9, "ltua": 9, "ltub": 9, "lum_bind": 9, "lumazine_bd_2": 9, "lung_7": 9, "tm_r": 9, "lupa": 9, "lustrin_cystein": 9, "lutb_c": 9, "luxc": 9, "lux": 9, "luxq": 9, "periplasm": 9, "luxt_c": 9, "ly": 9, "6_relat": 9, "ly49": 9, "lyase_1": 9, "lyase_8": 9, "lyase_8_c": 9, "lyase_8_n": 9, "lyase_n": 9, "lyase_aromat": 9, "lyase_catalyt": 9, "lycopene_cyc": 9, "lycopene_cycl": 9, "lydb": 9, "aminomut_a": 9, "lyse": 9, "lysm": 9, "lysr_substr": 9, "lys_orn_oxgnas": 9, "lys_export": 9, "lysine_decarbox": 9, "lysozyme_lik": 9, "lysyl_oxidas": 9, "lytb_ww": 9, "lytr_c": 9, "lytr_cpsa_psr": 9, "lyttr": 9, "lyx_isom": 9, "lzipper": 9, "mip1": 9, "factor": 9, "inducer_phosp": 9, "m16c_assoc": 9, "m20_dimer": 9, "m60": 9, "m64_n": 9, "ma": 9, "mit": 9, "ma3": 9, "maal_c": 9, "maal_n": 9, "macpf": 9, "mad": 9, "madf_dna_bdg": 9, "mage": 9, "mage_n": 9, "magi_u1": 9, "magi_u5": 9, "magp": 9, "magsp": 9, "maguk_n_pest": 9, "majin": 9, "malt1_ig": 9, "mam": 9, "mam1": 9, "mam33": 9, "manec": 9, "map17": 9, "map1b_neuraxin": 9, "map2_projctn": 9, "map3k_traf_bd": 9, "map65_ase1": 9, "map7": 9, "map70": 9, "mapeg": 9, "mapkk1_int": 9, "marck": 9, "marf1_lotu": 9, "marf1_rrm1": 9, "marvel": 9, "mar_sialic_bdg": 9, "mas20": 9, "mase1": 9, "mase2": 9, "mase3": 9, "mase4": 9, "mase5": 9, "mat1": 9, "matalpha_hmgbox": 9, "mba1": 9, "mbd": 9, "mbd_c": 9, "mbda": 9, "mbf1": 9, "mbf2": 9, "mbg": 9, "mbg_2": 9, "mbg_3": 9, "mboat": 9, "mboat_2": 9, "mbr1": 9, "mbt": 9, "mc1": 9, "mc2": 9, "mc3": 9, "mc4": 9, "mc5": 9, "mc6": 9, "mc7": 9, "mc8": 9, "mcafunc": 9, "mcc": 9, "bdg_pdz": 9, "mcca_bt": 9, "mccd1": 9, "mcd": 9, "mcd_n": 9, "mch": 9, "mclc": 9, "mcm": 9, "mcm2_n": 9, "mcm3ap_ganp": 9, "mcm6_c": 9, "mcm_n": 9, "mcm_ob": 9, "mcm_bind": 9, "mcm_lid": 9, "mcp1_tm": 9, "mcpsignal": 9, "mcr": 9, "mcra": 9, "mcrs_n": 9, "mcr_c": 9, "mcr_d": 9, "mcr_alpha": 9, "mcr_alpha_n": 9, "mcr_beta": 9, "mcr_beta_n": 9, "mcr_gamma": 9, "mcu": 9, "mc_hydratas": 9, "mcomp1": 9, "mdd_c": 9, "mdfi": 9, "mdh": 9, "mdm1": 9, "mdm10": 9, "mdm31_mdm32": 9, "mdmpi_c": 9, "mdmpi_n": 9, "mea1": 9, "med": 9, "mef2_bind": 9, "meioc": 9, "mekhla": 9, "mekk4_n": 9, "melt": 9, "melt_2": 9, "mental": 9, "meta": 9, "mfa1_2": 9, "mfap1": 9, "mfmr": 9, "mfmr_assoc": 9, "mfp2b": 9, "mfs18": 9, "mfs_1": 9, "mfs_1_like": 9, "mfs_2": 9, "mfs_3": 9, "mfs_4": 9, "mfs_5": 9, "mfs_mot1": 9, "mfs_mycoplasma": 9, "mf_alpha": 9, "mf_alpha_n": 9, "mg1": 9, "mg2": 9, "mg3": 9, "mg4": 9, "mgat2": 9, "mga_dom": 9, "mgc": 9, "24": 9, "mgdg_synth": 9, "mgmt_n": 9, "mgp3_c": 9, "mg": 9, "mgta_c": 9, "mgtl": 9, "mh1": 9, "mh2": 9, "mhb": 9, "mhc2": 9, "interact": [9, 11, 13], "mhc_i": 9, "mhc_ii_alpha": 9, "mhc_ii_beta": 9, "mhc_i_2": 9, "mhc_i_3": 9, "mhc_i_c": 9, "mhcassoc_trim": 9, "mhyt": 9, "mib_herc2": 9, "mic19_mic25": 9, "micswap": 9, "mid_medpiwi": 9, "mid_ppiwi_r": 9, "mieap": 9, "mier1_3_c": 9, "mif": 9, "mif4g": 9, "mif4g_lik": 9, "mif4g_like_2": 9, "mig": 9, "14_wnt": 9, "miip": 9, "minar1_c": 9, "mindi": 9, "3_4_cd": 9, "mindy_dub": 9, "miox": 9, "mip": 9, "t3_c": 9, "mir": 9, "mis13": 9, "mitf_tfeb_c_3_n": 9, "mit_c": 9, "mit_like_actx": 9, "mix": 9, "mix23": 9, "mias": 9, "mj1316": 9, "mklp1_arf_bdg": 9, "mkrn1_c": 9, "mkt1_c": 9, "mkt1_n": 9, "mlana": 9, "mld": 9, "mlip": 9, "mltd_n": 9, "mltr_lbd": 9, "mlvin_c": 9, "mmachc": 9, "mmadhc": 9, "mmm1": 9, "mmpl": 9, "mmr1": 9, "mmr_hsr1": 9, "mmr_hsr1_c": 9, "mmr_hsr1_xtn": 9, "mms19_c": 9, "mms19_n": 9, "mms1_n": 9, "mms22l_c": 9, "mms22l_n": 9, "mmtv_sag": 9, "mmu163": 9, "mm_coa_mutas": 9, "mmgt": 9, "mmtag": 9, "mne1": 9, "mnhe": 9, "mnnl": 9, "mnr": 9, "moep19": 9, "mofrl": 9, "molo1": 9, "mor2": 9, "pag1_c": 9, "pag1_n": 9, "pag1_mid": 9, "morn": 9, "morn_2": 9, "mosc": 9, "mosc_n": 9, "mosp_c": 9, "mosp_n": 9, "mozart1": 9, "mozart2": 9, "moz_sa": 9, "mp": 9, "mpab_lcp_cat": 9, "mpc": 9, "mpdz_u10": 9, "mplkip": 9, "mpm1": 9, "mpp6": 9, "mps2": 9, "mptase": 9, "mp_p6": 9, "mrap": 9, "mrc1": 9, "mreg": 9, "mrfap1": 9, "mrf_c2": 9, "mrg": 9, "mri": 9, "mrjp": 9, "mrnip": 9, "mrp": 9, "63": 9, "l20": 9, "l28": 9, "l46": 9, "l47": 9, "l51": 9, "s22": 9, "s23": 9, "s24": 9, "s25": 9, "s26": 9, "s27": 9, "s28": 9, "s31": 9, "s32": 9, "s33": 9, "s34": 9, "s35": 9, "mrpl52": 9, "mrp_l53": 9, "mrvi1": 9, "mr_mle_c": 9, "mr_mle_n": 9, "msa": [9, 15], "2c": 9, "msa_2": 9, "msc": 9, "msg": 9, "msl1_dimer": 9, "msl2": 9, "cxc": 9, "msp": 9, "msp1_c": 9, "msp1a": 9, "msp1b": 9, "msp7_c": 9, "mss51_c": 9, "mssp": 9, "msss": 9, "msv199": 9, "ms_channel": 9, "a70": 9, "mt0933_antitox": 9, "mtabc_n": 9, "mta_r1": 9, "mtbp_c": 9, "mtbp_n": 9, "mtbp_mid": 9, "mtcp1": 9, "mtd": 9, "mtes_1575": 9, "mth865": 9, "mthfr": 9, "mthfr_2": 9, "mtp18": 9, "mtp_lip_bd": 9, "mts_n": 9, "mttb": 9, "mtax1": 9, "mu117": 9, "mu2_fha": 9, "mug113": 9, "mule": 9, "mun": 9, "mvl": 9, "mvp_shoulder": 9, "mwfe": 9, "mycbpap": 9, "myeov2": 9, "myo10_cc": 9, "myrf_ica": 9, "myt1": 9, "mzb": 9, "m_domain": 9, "maaimp_sm": 9, "mab": 9, "21": 9, "21_c": 9, "mac": 9, "macb_pcd": 9, "mac_assoc": 9, "macin": 9, "macoilin": 9, "macro": 9, "macro_2": 9, "macscav_rec": 9, "mad3_bub1_i": 9, "mad3_bub1_ii": 9, "mad3_bub1_i_2": 9, "madl": 9, "madm": 9, "maelstrom": 9, "maf": 9, "maf1": 9, "mafb": 9, "mafb19": 9, "maf_c": 9, "maf_n": 9, "maf_flag10_n": 9, "maff2": 9, "mago": 9, "mago_nashi": 9, "mak10": 9, "mak16": 9, "mak_n_cap": 9, "malf_p2": 9, "malm": 9, "mal_decarbox_": 9, "malate_dh": 9, "malate_synthas": 9, "malectin": 9, "malectin_lik": 9, "malic_m": 9, "malt_amylase_c": 9, "maml": 9, "p_recep": 9, "mannitol_dh": 9, "mannitol_dh_c": 9, "mannosep_isom": 9, "mannosidase_ig": 9, "mannosyl_tran": 9, "mannosyl_trans2": 9, "mannosyl_trans3": 9, "mannosyl_trans4": 9, "maoc_dehydrat_n": 9, "maoc_dehydrata": 9, "mapz_c2": 9, "mapz_ec1": 9, "marb": 9, "marc": 9, "marr": 9, "marr_2": 9, "mat89bb": 9, "matb": 9, "matc_n": 9, "mate": 9, "matk_n": 9, "matp": 9, "matp_c": 9, "mating_c": 9, "mating_n": 9, "matrilin_ccoil": 9, "maue": 9, "mauj": 9, "maze": 9, "maze_antitoxin": 9, "mazg": 9, "mazg_c": 9, "mbeb_n": 9, "mbed_mobd": 9, "mbeg1": 9, "mbhd": 9, "mbhe": 9, "mbnp": 9, "mbth": 9, "mccv": 9, "mce4_cup1": 9, "mciz": 9, "mcl1_mid": 9, "mcm10": 9, "mcp5_ph": 9, "mcrbc": 9, "mctb": 9, "mcya_c": 9, "mdce": 9, "mdcg": 9, "mdog": 9, "mdv1": 9, "me": 9, "dh_h": 9, "dh_l": 9, "memo_hyd_g": 9, "meab": 9, "meca": 9, "meca_n": 9, "meckelin": 9, "med1": 9, "med10": 9, "med11": 9, "med12": 9, "lcewav": 9, "pql": 9, "med13_c": 9, "med13_n": 9, "med14": 9, "med15": 9, "med15_fungi": 9, "med16": 9, "med17": 9, "med18": 9, "med19": 9, "med2": 9, "med20": 9, "med21": 9, "med22": 9, "med23": 9, "med24_n": 9, "med25": 9, "med25_nr": 9, "med25_sd1": 9, "med25_vwa": 9, "med26": 9, "med26_c": 9, "med26_m": 9, "med27": 9, "med28": 9, "med29": 9, "med3": 9, "med30": 9, "med31": 9, "med4": 9, "med5": 9, "med6": 9, "med7": 9, "med8": 9, "med9": 9, "mei4": 9, "mei5": 9, "mei5_lik": 9, "meiosis_expr": 9, "meiotic_rec114": 9, "meis_pknox_n": 9, "melc1": 9, "meleagrin": 9, "melibias": 9, "melibiase_2": 9, "melibiase_2_c": 9, "melibiase_c": 9, "melittin": 9, "mem_tran": 9, "membralin": 9, "membrane_bind": 9, "memo": 9, "menin": 9, "mepb": 9, "mer2": 9, "merb": 9, "merc": 9, "mere": 9, "merr": 9, "merr_1": 9, "merr_2": 9, "mert": 9, "merozoite_spam": 9, "mersacidin": 9, "mesx": 9, "mesd": 9, "mesothelin": 9, "metj": 9, "metod1": 9, "metod2": 9, "metr": 9, "metw": 9, "met_10": 9, "met_asp_mut_": 9, "met_gamma_lyas": 9, "met_synt_b12": 9, "metal_cehh": 9, "metal_hydrol": 9, "metal_resist": 9, "metalloenzym": 9, "metallopep": 9, "metallopho": 9, "metallophosc": 9, "metallophosn": 9, "metallophos_2": 9, "metallophos_3": 9, "metallophos_c": 9, "metallothi_euk2": 9, "metallothio": 9, "metallothio_11": 9, "metallothio_2": 9, "metallothio_5": 9, "metallothio_6": 9, "metallothio_cad": 9, "metallothio_euk": 9, "metallothio_pec": 9, "metallothio_pro": 9, "meth_synt_1": 9, "meth_synt_2": 9, "methuselah_n": 9, "methytransf_reg": 9, "methylase_": 9, "methyltr_rsmb": 9, "methyltr_rsmf_n": 9, "methyltranf_pua": 9, "methyltrans_mon": 9, "methyltrans_rna": 9, "methyltrans_sam": 9, "methyltransfd12": 9, "methyltransf_10": 9, "methyltransf_11": 9, "methyltransf_12": 9, "methyltransf_13": 9, "methyltransf_14": 9, "methyltransf_15": 9, "methyltransf_16": 9, "methyltransf_17": 9, "methyltransf_18": 9, "methyltransf_19": 9, "methyltransf_1n": 9, "methyltransf_2": 9, "methyltransf_20": 9, "methyltransf_21": 9, "methyltransf_22": 9, "methyltransf_23": 9, "methyltransf_24": 9, "methyltransf_25": 9, "methyltransf_28": 9, "methyltransf_29": 9, "methyltransf_3": 9, "methyltransf_30": 9, "methyltransf_31": 9, "methyltransf_32": 9, "methyltransf_33": 9, "methyltransf_34": 9, "methyltransf_35": 9, "methyltransf_4": 9, "methyltransf_5": 9, "methyltransf_7": 9, "methyltransf_8": 9, "methyltransf_9": 9, "methyltransf_fa": 9, "methyltransf_pk": 9, "methyltrn_rna_2": 9, "methyltrn_rna_3": 9, "methyltrn_rna_4": 9, "mfa1": 9, "mfa2": 9, "mfa_like_1": 9, "mfa_like_2": 9, "mfp": 9, "por_mtran_c": 9, "mg296": 9, "mg_chelatas": 9, "mg_chelatase_c": 9, "mg_trans_nipa": 9, "mga": 9, "mgm101p": 9, "mgpc": 9, "mgr1": 9, "mgrb": 9, "mgsa_c": 9, "mgtc": 9, "mgte": 9, "mgte_n": 9, "mhr1": 9, "miamp1": 9, "miae": 9, "miae_2": 9, "mic1": 9, "microcephalin": 9, "microcin": 9, "microtub_bd": 9, "microtub_bind": 9, "microvir_h": 9, "microvir_j": 9, "microvir_lysi": 9, "mid1": 9, "mid2": 9, "mif2_n": 9, "miff": 9, "miga": 9, "milton": 9, "mim2": 9, "minc_c": 9, "minc_n": 9, "mine": 9, "minor_capsid_1": 9, "minor_capsid_2": 9, "minor_capsid_3": 9, "minor_tail_z": 9, "mipa": 9, "mipz": 9, "mis12": 9, "mis14": 9, "misat_tub_segii": 9, "mistic": 9, "mitmem_reg": 9, "mit_khe1": 9, "mit_proteolip": 9, "mit_ribos_mrp51": 9, "mitoneet_n": 9, "mito_carr": 9, "mito_fiss_elm1": 9, "mito_fiss_reg": 9, "mito_morph_reg": 9, "mitoc_l55": 9, "mitoc_ml59": 9, "mitochondr_som1": 9, "mitofilin": 9, "mitovir_rna_pol": 9, "mlaa": 9, "mlac": 9, "mlad": 9, "mlae": 9, "mlf1ip": 9, "mlh1_c": 9, "mlic": 9, "mlo": 9, "mlp": 9, "mlrc_c": 9, "mlta": 9, "mltc_n": 9, "mmcb": 9, "mmei_c": 9, "mmei_mtas": 9, "mmei_n": 9, "mmei_trd": 9, "mmei_hel": 9, "mmge_prpd": 9, "mmge_prpd_c": 9, "mmli": 9, "mmob_dmpm": 9, "mn_catalas": 9, "mnd1": 9, "mnhb": 9, "mnme_hel": 9, "mntp": 9, "mo": 9, "co_dim": 9, "nitro_c": 9, "mo25": 9, "mocf_biosynth": 9, "mocobd_1": 9, "mocobd_2": 9, "moac": 9, "moae": 9, "moaf": 9, "moaf_c": 9, "mob1_phocein": 9, "moba_mobl": 9, "mobb": 9, "mobc": 9, "mobc_2": 9, "mobi": 9, "mobl": 9, "mob_pr": 9, "mob_synth_c": 9, "mobilization_b": 9, "mod_r": 9, "moea_c": 9, "moea_n": 9, "mog1": 9, "mogr_dnabind": 9, "molybdop_fe4s4": 9, "molybdopterin": 9, "molybdopterin_n": 9, "molydop_bind": 9, "mon2_c": 9, "mononeg_rna_pol": 9, "mononeg_mrnacap": 9, "monooxygenase_b": 9, "mor": 9, "morc6_s5": 9, "moricin": 9, "mota_exbb": 9, "mota_n": 9, "motb_plug": 9, "moty_n": 9, "motile_sperm": 9, "motilin_assoc": 9, "motilin_ghrelin": 9, "moulting_cycl": 9, "mppf1": 9, "mppf26": 9, "mpo1": 9, "mpp10": 9, "mpsc": 9, "mpte": 9, "mpt_n": 9, "mpv17_pmp22": 9, "mqo": 9, "mqsa_antitoxin": 9, "mqsr_toxin": 9, "mray_sig1": 9, "mraz": 9, "mrcb_n": 9, "mre11_dna_bind": 9, "mreb_mbl": 9, "mrec": 9, "mred": 9, "mrpf_phaf": 9, "mrpl_c": 9, "mrr_n": 9, "mrr_cat": 9, "mrr_cat_2": 9, "mrx7": 9, "msap1": 9, "msb1": 9, "mug8_dom": 9, "mscl": 9, "mscs_tm": 9, "mscs_porin": 9, "msg2_c": 9, "mso1_c": 9, "mso1_sec1_bdg": 9, "mspa": 9, "mss4": 9, "mst1_sarah": 9, "msyb": 9, "mtn3_slv": 9, "mt_atp": 9, "mt_atp_synt": 9, "mtab": 9, "mtd_n": 9, "mtf2": 9, "mtf2_c": 9, "mtlr": 9, "mtmb": 9, "mto2_bdg": 9, "mtp": 9, "mtr2": 9, "mtra": 9, "mtrb": 9, "mtrb_piob": 9, "mtrc": 9, "mtrd": 9, "mtre": 9, "mtrf": 9, "mtrg": 9, "mtrh": 9, "mu": [9, 14, 15, 16], "like_com": 9, "like_pro": 9, "like_gpt": 9, "transpos_c": 9, "muf_c": 9, "mucbp": 9, "mucbp_2": 9, "mucb_rseb": 9, "mucb_rseb_c": 9, "muc_b2": 9, "mucin": 9, "mucin15": 9, "mucin2_wxxw": 9, "mucin_bdg": 9, "mukb": 9, "mukb_hing": 9, "muke": 9, "mukf_c": 9, "mukf_m": 9, "multi": 9, "haem_cyto": 9, "multi_drug_r": 9, "multi_ubiq": 9, "mupg_c": 9, "mupg_n": 9, "murb_c": 9, "murj": 9, "murt_c": 9, "mur_ligas": 9, "mur_ligase_c": 9, "mur_ligase_m": 9, "muramidas": 9, "mus7": 9, "musclin": 9, "muskelin_n": 9, "mustang": 9, "mut7": 9, "muth": 9, "mutl": 9, "mutl_c": 9, "muts_i": 9, "muts_ii": 9, "muts_iii": 9, "muts_iv": 9, "muts_v": 9, "mute": 9, "mvai_bcni": 9, "mvb12": 9, "mxim": 9, "myth4": 9, "myb_cc_lheql": 9, "myb_cef": 9, "myb_dna": 9, "bind_6": 9, "bind_7": 9, "myc": 9, "myce_n": 9, "myc_n": 9, "myc_target_1": 9, "myco_19_kda": 9, "myco_arth_vir_n": 9, "myco_haema": 9, "mycobact_memb": 9, "mycop_pep_duf31": 9, "myelin": 9, "po_c": 9, "myelin_mbp": 9, "myelin_plp": 9, "myf5": 9, "myofilin": 9, "myosin": 9, "vi_cbd": 9, "myosin_n": 9, "myosin_th1": 9, "myosin_head": 9, "myosin_tail_1": 9, "myotub": 9, "term_ten": 9, "glycanase_c": 9, "glycanase_n": 9, "n1221": 9, "n36": 9, "n6": 9, "adeninemlas": 9, "n6_mtase": 9, "n6_n4_mtase": 9, "na37": 9, "naaa": 9, "nabp": 9, "nac": 9, "nacht": 9, "nacht_n": 9, "nacht_sigma": 9, "nad": 9, "nad1": 9, "nad2": 9, "nad4l": 9, "nadar": 9, "nadh": 9, "g_4fe": 9, "4s_3": 9, "uor_": 9, "u_ox": 9, "rdase": 9, "nadh5_c": 9, "nadh_4f": 9, "nadh_b2": 9, "nadh_oxid_nqo15": 9, "nadh_dehy_s2_c": 9, "nadh_dh_m_c1": 9, "nadh_dhqg_c": 9, "nadh_oxidor": 9, "nadh_u_ox_c": 9, "nadhdeh_rel": 9, "nadhdh": 9, "nadhdh_a3": 9, "nadph_ox": 9, "nad_gly3p_dh_c": 9, "nad_gly3p_dh_n": 9, "nad_binding_1": 9, "nad_binding_10": 9, "nad_binding_11": 9, "nad_binding_2": 9, "nad_binding_3": 9, "nad_binding_4": 9, "nad_binding_5": 9, "nad_binding_6": 9, "nad_binding_7": 9, "nad_binding_8": 9, "nad_binding_9": 9, "nad_kinas": 9, "nad_kinase_c": 9, "nad_synthas": 9, "nadase_nga": 9, "naf": 9, "naglu": 9, "naglu_c": 9, "naglu_n": 9, "nagpa": 9, "nagidas": 9, "nam": 9, "nampt_n": 9, "nap": 9, "naprtas": 9, "naprtase_c": 9, "naprtase_n": 9, "nar2": 9, "narf": 9, "narg2_c": 9, "na": 9, "nat": 9, "nat_n": 9, "nb": 9, "lrr": 9, "nbch_wd40": 9, "nbd94": 9, "nbd_c": 9, "nbp1": 9, "nca2": 9, "ncbp3": 9, "ncd1": 9, "ncd2": 9, "ncd3g": 9, "nce101": 9, "nckap5": 9, "ncoa_u2": 9, "ncu": 9, "g1": 9, "ndc10_ii": 9, "ndk": 9, "ndnf": 9, "ndnf_c": 9, "ndt80_phog": 9, "ndufa12": 9, "ndufb10": 9, "ndufb11": 9, "ndufv3": 9, "nduf_b12": 9, "nduf_b4": 9, "nduf_b5": 9, "nduf_b6": 9, "nduf_b7": 9, "nduf_b8": 9, "nduf_c2": 9, "ndus4": 9, "neat": 9, "necfeshc": 9, "nel": 9, "nemo": 9, "nemp": 9, "nerd": 9, "nesp55": 9, "nes_c_h": 9, "neti": 9, "nexcam_bd": 9, "nfact": 9, "r_1": 9, "r_2": 9, "nfact_n": 9, "nfrkb_wing": 9, "ngf": 9, "ngp1nt": 9, "nhl": 9, "nhr2": 9, "nh": 9, "nhase_alpha": 9, "nhase_beta": 9, "nibrin_brct_ii": 9, "nice": 9, "nid": 9, "nido": 9, "nif": 9, "nif3": 9, "nil": 9, "ninja_b": 9, "nipsnap": 9, "nip_1": 9, "nir_sir": 9, "nir_sir_ferr": 9, "nit": 9, "nkain": 9, "nkap": 9, "nkwy": 9, "nlbh": 9, "nle": 9, "nlpc_p60": 9, "nlrc4_hd": 9, "nlrc4_hd2": 9, "nmd3": 9, "nmdar2_c": 9, "nmn_transport": 9, "nmo": 9, "nmt": 9, "nmt1": 9, "nmt1_2": 9, "nmt1_3": 9, "nmt_c": 9, "nmu": 9, "nnmt_pnmt_temt": 9, "noa36": 9, "nob1_zn_bind": 9, "noc3p": 9, "nod": 9, "nod2_wh": 9, "nodp": 9, "nog1": 9, "nog1_n": 9, "nogct": 9, "nop19": 9, "nop5nt": 9, "nopchap1": 9, "nop": 9, "not2_3_5": 9, "nov_c": 9, "nozzl": 9, "no_synthas": 9, "npa": 9, "npat_c": 9, "npbw": 9, "npc1_n": 9, "npcbm": 9, "npcbm_assoc": 9, "npcc": 9, "npdc1": 9, "npf": 9, "npff": 9, "nph3": 9, "npip": 9, "npl": 9, "npl4": 9, "npm1": 9, "npp": 9, "npp1": 9, "npr": 9, "npr1_interact": 9, "npr1_like_c": 9, "npr2": 9, "npr3": 9, "npv_p10": 9, "nqr2_rnfd_rnfe": 9, "nqra": 9, "nqra_slbb": 9, "nrbf2": 9, "nrbf2_mit": 9, "nrd1_2": 9, "nrdd": 9, "nrde": 9, "nrf": 9, "nrip1_repr_1": 9, "nrip1_repr_2": 9, "nrip1_repr_3": 9, "nrip1_repr_4": 9, "nrn1": 9, "nrp1_c": 9, "nr_repeat": 9, "nrho": 9, "nsf": 9, "nsrp1_n": 9, "nst1": [9, 14], "nt": 9, "nt5c": 9, "ntf": 9, "ntf3_n": 9, "ntnh_c": 9, "ntp_transf_2": 9, "ntp_transf_3": 9, "ntp_transf_4": 9, "ntp_transf_5": 9, "ntp_transf_6": 9, "ntp_transf_7": 9, "ntp_transf_8": 9, "ntp_transf_9": 9, "ntp_transferas": 9, "ntpase_1": 9, "ntpase_i": 9, "ntr": 9, "ntr2": 9, "nts_2": 9, "ntase_sub_bind": 9, "nuc": 9, "nuc129": 9, "nuc130_3nt": 9, "nuc153": 9, "nuc173": 9, "nuc202": 9, "nuc205": 9, "nude_c": 9, "nudix": 9, "nudix_2": 9, "nudix_4": 9, "nudix_5": 9, "nufip1": 9, "nufip2": 9, "numod1": 9, "numod3": 9, "numod4": 9, "nup": 9, "nup214": 9, "nup50": 9, "nusap": 9, "nut": 9, "nveala": 9, "nyap_c": 9, "nyap_n": 9, "nyd": 9, "sp12_n": 9, "sp28": 9, "sp28_assoc": 9, "nyn": 9, "nyn_yacp": 9, "n_asn_amidohyd": 9, "n_brca1_ig": 9, "n_nlpc_p60": 9, "n_formyltrans_c": 9, "n_methyl": 9, "na_ala_symp": 9, "na_ca_ex": 9, "na_ca_ex_c": 9, "na_h_exchang": 9, "na_h_antiport_1": 9, "na_h_antiport_2": 9, "na_h_antiport_3": 9, "na_h_antiport": 9, "na_k": 9, "na_pi_cotran": 9, "na_sulph_symp": 9, "na_trans_assoc": 9, "na_trans_cytopl": 9, "nab1": 9, "nab2": 9, "nab2p_zf1": 9, "nab6_mrnp_bdg": 9, "nada": 9, "naei": 9, "nairo_nucleo": 9, "nane": 9, "napb": 9, "napd": 9, "nape": 9, "nas2_n": 9, "nata_aux_su": 9, "natb_mdm20": 9, "nbas_n": 9, "nbl1_borealin_n": 9, "nbla": 9, "nbs1_c": 9, "nckap1": 9, "ncstrn_small": 9, "ndc1_nup": 9, "ndc80_hec": 9, "ndh2_n": 9, "ndhl": 9, "ndhm": 9, "ndhn": 9, "ndho": 9, "ndh": 9, "ndr": 9, "ndufs5": 9, "nebulin": 9, "neil1": 9, "neisseria_pilc": 9, "neisseria_tspb": 9, "neocarzinostat": 9, "neogenin_c": 9, "nepr": 9, "neprosin": 9, "neprosin_ap": 9, "neub": 9, "neugrin": 9, "neur": 9, "neur_chan_lbd": 9, "neur_chan_memb": 9, "neural_prog_cyt": 9, "neural": 9, "neuraminidas": 9, "neuregulin": 9, "neurensin": 9, "neurexophilin": 9, "neuro_bhlh": 9, "neurobeachin": 9, "neurochondrin": 9, "neurokinin_b": 9, "neuromodulin": 9, "neuromodulin_n": 9, "neuroparsin": 9, "neuropep_lik": 9, "neuropeptide_": 9, "nexin_c": 9, "nfi_dnabd_pr": 9, "nfed": 9, "nfra_c": 9, "nfu_n": 9, "ngomiv_restr": 9, "nha1_c": 9, "nhab": 9, "nife": 9, "hyd_hyb": 9, "nifese_has": 9, "nife_hyd_3_ehaa": 9, "nife_hyd_ssu_c": 9, "ni_hydr_cytb": 9, "ni_insert": 9, "nic96": 9, "nico": 9, "nicastrin": 9, "nif11": 9, "nifq": 9, "nift": 9, "nifu": 9, "nifu_n": 9, "nifw": 9, "nifz": 9, "nigd_c": 9, "nigd_n": 9, "nikr_c": 9, "ninb": 9, "nine": 9, "ninf": 9, "ning": 9, "ninjurin": 9, "nip": 9, "b_c": 9, "nis1": 9, "nit_regul_hom": 9, "nitrod1": 9, "nitrod2": 9, "nitrod5": 9, "nitr_red_alph_n": 9, "nitr_red_assoc": 9, "nitr_red_bet_c": 9, "nitrate_red_del": 9, "nitrate_red_gam": 9, "nitro_femo": 9, "nitrophorin": 9, "nitroreductas": 9, "njmu": 9, "r1": [9, 17], "nkap_c": 9, "nlef_casp_inhib": 9, "nlpe": 9, "nlpe_c": 9, "r2_c_term": 9, "nmad2": 9, "nmad3": 9, "nmad4": 9, "nmad5": 9, "nmra": 9, "nnf1": 9, "nnr": 9, "nnru": 9, "noc2": 9, "nod1": 9, "noda": 9, "nodz": 9, "nod_grp": 9, "nodulin": 9, "nodulin_l": 9, "noelin": 9, "noggin": 9, "nolb": 9, "nolx": 9, "nop10p": 9, "nop14": 9, "nop16": 9, "nop25": 9, "nop52": 9, "nop53": 9, "nopra1": 9, "nore1": 9, "sarah": 9, "nosd": 9, "nosl": 9, "not1": 9, "not3": 9, "noti": 9, "notch": 9, "npa1": 9, "npun_r1517": 9, "npwbp": 9, "nqrm": 9, "nramp": 9, "nrap": 9, "nrap_d2": 9, "nrap_d3": 9, "nrap_d4": 9, "nrap_d5": 9, "nrap_d6": 9, "nre_c": 9, "nre_n": 9, "nrf1_dna": 9, "nrf1_activ_bdg": 9, "nrfd": 9, "nrfd_2": 9, "nro1": 9, "nrsf": 9, "nse4": 9, "nse3_bdg": 9, "nse4_c": 9, "nse5": 9, "nsp1_c": 9, "nsp2_av": 9, "nta": 9, "ntctmgam_n": 9, "nt_gln_amidas": 9, "nterm_is4": 9, "ntox1": 9, "ntox10": 9, "ntox11": 9, "ntox14": 9, "ntox15": 9, "ntox16": 9, "ntox17": 9, "ntox21": 9, "ntox22": 9, "ntox23": 9, "ntox24": 9, "ntox25": 9, "ntox27": 9, "ntox28": 9, "ntox3": 9, "ntox30": 9, "ntox33": 9, "ntox34": 9, "ntox35": 9, "ntox37": 9, "ntox4": 9, "ntox43": 9, "ntox44": 9, "ntox46": 9, "ntox47": 9, "ntox5": 9, "ntox50": 9, "ntox6": 9, "ntox8": 9, "ntry_n": 9, "nua4": 9, "nudc": 9, "nuc_h_symport": 9, "nuc_n": 9, "nuc_deoxyri_tr2": 9, "nuc_deoxyri_tr3": 9, "nuc_deoxyrib_tr": 9, "nuc_rec_co": 9, "nuc_recep": 9, "af1": 9, "nuc_sug_transp": 9, "nucleic_acid_bd": 9, "nucleo_p87": 9, "nucleocapsid": 9, "nucleolin_bd": 9, "nucleoplasmin": 9, "nucleopor_nup85": 9, "nucleoporin2": 9, "nucleoporin_c": 9, "nucleoporin_fg": 9, "nucleoporin_fg2": 9, "nucleoporin_n": 9, "nucleos_tra2_c": 9, "nucleos_tra2_n": 9, "nucleoside_tran": 9, "nucleotid_tran": 9, "nudc_n": 9, "nudix_n": 9, "nudix_n_2": 9, "nudix_hydro": 9, "nuf2": 9, "nuf2_dhr10": 9, "nuia": 9, "numbf": 9, "nup153": 9, "nup160": 9, "nup188": 9, "nup188_c": 9, "nup192": 9, "nup214_fg": 9, "nup35_rrm": 9, "nup35_rrm_2": 9, "nup54": 9, "nup54_57_c": 9, "nup54_c": 9, "nup84_nup100": 9, "nup88": 9, "nup96": 9, "nuph_ganp": 9, "nup_retrotrp_bd": 9, "nura": 9, "nusa_n": 9, "nusb": 9, "nusg": 9, "nusg_ii": 9, "nusg_add": 9, "nyv1_longin": 9, "fuct": 9, "ag_pol_wzi": 9, "antigen_lig": 9, "oad_beta": 9, "oad_gamma": 9, "oaf": 9, "oam_alpha": 9, "oam_dim": 9, "oar": 9, "oas1_c": 9, "oatp": 9, "ob_dis3": 9, "ob_malk": 9, "ob_ntp_bind": 9, "ob_rnb": 9, "ob_acoa_assoc": 9, "occ1": 9, "ocd_mu_crystal": 9, "ocia": 9, "ocr": 9, "ocrl_clath_bd": 9, "odam": 9, "odaph": 9, "odc_az": 9, "odp": 9, "odr4": 9, "oep": 9, "ofcc1": 9, "ofet_1": 9, "ogfr_iii": 9, "ogfr_n": 9, "ogg_n": 9, "oha": 9, "ohcu_decarbox": 9, "okr_dc_1": 9, "okr_dc_1_c": 9, "okr_dc_1_n": 9, "old": [9, 11], "like_toprim": 9, "olf": 9, "omp_b": 9, "brl": 9, "brl_2": 9, "brl_3": 9, "ompdecas": 9, "opa1_c": 9, "opa3": 9, "opt": 9, "orc2": 9, "orc3_n": 9, "orc3_in": 9, "orc4_c": 9, "orc5_c": 9, "orc6": 9, "orc_wh_c": 9, "orf11cd3": 9, "orf6c": 9, "orf6n": 9, "orf_12_n": 9, "orf_2_n": 9, "ormdl": 9, "oscp": 9, "osk": 9, "osr1_c": 9, "ost": 9, "ost3_ost6": 9, "ostmp1": 9, "ost_i": 9, "ost_p2": 9, "ostbeta": 9, "otcac": 9, "otcace_n": 9, "oto": 9, "ott_1508_deam": 9, "otu": 9, "o_spanin_t7": 9, "o_anti_polymas": 9, "oapa": 9, "oapa_n": 9, "obr_ig": 9, "oberon_cc": 9, "occludin_el": 9, "ocnu": 9, "octapeptid": 9, "octopine_dh": 9, "ocular_alb": 9, "oest_recep": 9, "ofd1_ctdd": 9, "ogr_delta": 9, "olduvai": 9, "ole_e_6": 9, "oleosin": 9, "olfactory_mark": 9, "omda": 9, "omega": 9, "toxin": 9, "omega_repress": 9, "omp28": 9, "omp85": 9, "omp85_2": 9, "ompa": 9, "ompa_lik": 9, "ompa_membran": 9, "omph": 9, "ompw": 9, "omp_at": 9, "omptin": 9, "op_neuropeptid": 9, "opca": 9, "opca_g6pd_c": 9, "opca_g6pd_assem": 9, "opgc_c": 9, "opi1": 9, "opiods_neuropep": 9, "oppc_n": 9, "oprb": 9, "oprd": 9, "oprf": 9, "optomotor": 9, "blind": 9, "opuac": 9, "opy2": 9, "orai": 9, "orexin": 9, "orexin_rec2": 9, "orf78": 9, "orfb_is605": 9, "orfb_zn_ribbon": 9, "orga_mxik": 9, "organ_specif": 9, "orn_arg_dec_n": 9, "orn_dap_arg_dec": 9, "orsd": 9, "orthopox_a5l": 9, "orthoreo_p10": 9, "oscp1": 9, "osmc": 9, "osmo_cc": 9, "osmo_mpgsynth": 9, "ost4": 9, "ost5": 9, "osta_2": 9, "osteopontin": 9, "osteoregulin": 9, "osw5": 9, "otopetrin": 9, "ovat": 9, "oxrdtase_c": 9, "oxidor": 9, "oxidored_fmn": 9, "oxidored_molyb": 9, "oxidored_nitro": 9, "oxidored_q2": 9, "oxidored_q3": 9, "oxidored_q4": 9, "oxidored_q5_n": 9, "oxidored_q6": 9, "oxidoreduct_c": 9, "oxodh_e1alpha_n": 9, "oxogdehyase_c": 9, "oxygenas": 9, "oxysterol_bp": 9, "loop_trag": 9, "mevalo_kinas": 9, "p120r": 9, "p16": 9, "p19arf_n": 9, "p1_n": 9, "p21": 9, "p22_ar_c": 9, "p22_ar_n": 9, "p22_coatprotein": 9, "p22_cro": 9, "p22_tail": 9, "p22_portal": 9, "p2rx7_c": 9, "p2x_receptor": 9, "p2_n": 9, "p2_phage_gpr": 9, "p30": 9, "p33monox": 9, "p34": 9, "p3a": 9, "p4ha_n": 9, "p5": 9, "p53": 9, "p53_c": 9, "p53_tad": 9, "p53_tetram": 9, "p5cr_dimer": 9, "p63c": 9, "p66_cc": 9, "p68hr": 9, "pa": 9, "iil": 9, "il": 9, "pa14": 9, "pa26": 9, "pa28_alpha": 9, "pa28_beta": 9, "paar_motif": 9, "paat": 9, "pabp": 9, "pac1": 9, "pac2": 9, "pac3": 9, "pac4": 9, "pact_coil_coil": 9, "padr1": 9, "padr": 9, "pad_m": 9, "pad_n": 9, "pad_porph": 9, "pae": 9, "paf": 9, "ah_p_ii": 9, "pag": 9, "pagk": 9, "pah": 9, "palb2_wd40": 9, "palp": 9, "pam2": 9, "pan_1": 9, "pan_2": 9, "pan_3": 9, "pan_4": 9, "pap1": 9, "pap2": 9, "pap2_3": 9, "pap2_c": 9, "papa": 9, "paps_reduct": 9, "pap_pilo": 9, "pap_rna": 9, "pap_assoc": 9, "pap_centr": 9, "pap_fibrillin": 9, "par1": 9, "parg_cat": 9, "parm": 9, "parp": 9, "parp_reg": 9, "parp_regulatori": 9, "pasta": 9, "pas_10": 9, "pas_11": 9, "pas_12": 9, "pas_2": 9, "pas_3": 9, "pas_4": 9, "pas_5": 9, "pas_6": 9, "pas_7": 9, "pas_8": 9, "pas_9": 9, "pat1": 9, "patr": 9, "paw": 9, "pax": 9, "paxip1_c": 9, "paxneb": 9, "paxx": 9, "paz": 9, "paz_2": 9, "paz_3": 9, "paz_4": 9, "pa_decarbox": 9, "pb1": 9, "pban": 9, "pbc": 9, "pbcv_basic_adap": 9, "pbd": 9, "pbecr1": 9, "pbecr2": 9, "pbecr3": 9, "pbecr4": 9, "pbecr5": 9, "pbp": 9, "tp47_a": 9, "tp47_c": 9, "pbp1_tm": 9, "pbp3": 9, "pbp5_c": 9, "pbp_gobp": 9, "pbp_n": 9, "pbp_dimer": 9, "pbp_like": 9, "pbp_like_2": 9, "pbp_sp32": 9, "pbsx_xtra": 9, "pbs_linker_poli": 9, "pc": 9, "pc4": 9, "pcaf_n": 9, "pcb_ob": 9, "pcc": 9, "pcc_bt": 9, "pcdo_beta_n": 9, "pcema1": 9, "pci": 9, "pcif1_ww": 9, "pclp": 9, "pcm1_c": 9, "pcmd": 9, "pcmt": 9, "pcna_c": 9, "pcna_n": 9, "pcnp": 9, "pco_ado": 9, "pcp_red": 9, "pcrf": 9, "pcsk9_c1": 9, "pcsk9_c2": 9, "pcsk9_c3": 9, "pcycgc": 9, "pc_rep": 9, "pcuac": 9, "pd": 9, "pd40": 9, "pdcd2_c": 9, "pdcd7": 9, "pdcd9": 9, "pddexk_1": 9, "pddexk_10": 9, "pddexk_11": 9, "pddexk_12": 9, "pddexk_2": 9, "pddexk_3": 9, "pddexk_4": 9, "pddexk_5": 9, "pddexk_6": 9, "pddexk_7": 9, "pddexk_9": 9, "pde4_ucr": 9, "pde6_gamma": 9, "pde8": 9, "pdease_i": 9, "pdease_ii": 9, "pdease_i_n": 9, "pdgf": 9, "pdgf_n": 9, "pdgle": 9, "pdh_c": 9, "pdh_e1_m": 9, "pdh_n": 9, "pdr_cdr": 9, "pdr_assoc": 9, "pds5": 9, "pdt": 9, "pdu_lik": 9, "pdz": 9, "pdz_1": 9, "pdz_2": 9, "pdz_3": 9, "pdz_4": 9, "pdz_5": 9, "pdz_6": 9, "pdz_assoc": 9, "pe": 9, "ppe": 9, "pearli": 9, "pega": 9, "pehe": 9, "pelota_1": 9, "pemt": 9, "pep": 9, "utilisers_n": 9, "util": [9, 16], "utilizers_c": 9, "pepck_atp": 9, "pepck_gtp": 9, "pepck_n": 9, "pep_hydrolas": 9, "pep_mutas": 9, "pepcas": 9, "pepcase_2": 9, "pet": 9, "pet117": 9, "pet122": 9, "pex": 9, "1n": 9, "2n": [9, 11], "pex11": 9, "pfk": 9, "pfl": 9, "pfor_ii": 9, "pfo_beta_c": 9, "pfu": 9, "pfam54_60": 9, "pga2": 9, "pgap1": 9, "pga_cap": 9, "pgba_c": 9, "pgba_n": 9, "pgc7_stella": 9, "pgdh_c": 9, "pgdh_inter": 9, "pgdyg": 9, "pgf": 9, "pgg": 9, "pgi": 9, "pgk": 9, "pgm1_c": 9, "pgm_pmm_i": 9, "pgm_pmm_ii": 9, "pgm_pmm_iii": 9, "pgm_pmm_iv": 9, "pgpgw": 9, "pgp_phosphatas": 9, "pg_binding_1": 9, "pg_binding_2": 9, "pg_binding_3": 9, "pg_binding_4": 9, "pg_isomerase_n": 9, "ph": 9, "pha": 9, "phaf1": 9, "phat": 9, "phax_rna": 9, "pha_gran_rgn": 9, "pha_synth_iii_": 9, "phbc_n": 9, "phb_acc": 9, "phb_acc_n": 9, "phb_depo_c": 9, "phc2_sam_assoc": 9, "phd": 9, "phd20l1_u1": 9, "phd_2": 9, "phd_3": 9, "phd_4": 9, "phd_oberon": 9, "phd_like": 9, "phf12_mrg_bd": 9, "phf5": 9, "phl": 9, "phm7_cyt": 9, "phm7_ext": 9, "pho4": 9, "php": [9, 11], "php_c": 9, "phr": 9, "phtb1_c": 9, "phtb1_n": 9, "phtf1": 9, "2_n": 9, "phy": 9, "phyhip_c": 9, "phza_phzb": 9, "ph_10": 9, "ph_11": 9, "ph_12": 9, "ph_13": 9, "ph_14": 9, "ph_15": 9, "ph_16": 9, "ph_17": 9, "ph_18": 9, "ph_19": 9, "ph_2": 9, "ph_20": 9, "ph_3": 9, "ph_4": 9, "ph_5": 9, "ph_6": 9, "ph_8": 9, "ph_9": 9, "ph_beach": 9, "ph_rbd": 9, "ph_tfiih": 9, "phtd_u1": 9, "plc": 9, "tkoii_iv": 9, "pi31_prot_c": 9, "pi31_prot_n": 9, "pi3k_1b_p101": 9, "pi3k_c2": 9, "pi3k_p85_ish2": 9, "pi3k_p85b": 9, "pi3k_rbd": 9, "pi3ka": 9, "pi3_pi4_kinas": 9, "pi4k_n": 9, "pid": 9, "pid_2": 9, "piezo": 9, "pif": 9, "pif1": 9, "pif2": 9, "pif3": 9, "pig": 9, "piga": 9, "pigo_pigg": 9, "pih1": 9, "pih1_c": 9, "pik3cg_abd": 9, "pin": 9, "pin7": 9, "pinit": 9, "pin_10": 9, "pin_11": 9, "pin_12": 9, "pin_2": 9, "pin_3": 9, "pin_4": 9, "pin_5": 9, "pin_6": 9, "pin_8": 9, "pin_9": 9, "pip49_c": 9, "pip49_n": 9, "pip5k": 9, "pir": 9, "pirt": 9, "pith": 9, "pi_pp_c": 9, "pi_pp_i": 9, "pk": 9, "pkat_kld": 9, "pkd": 9, "pkd_2": 9, "pkd_3": 9, "pkd_4": 9, "pkd_5": 9, "pkd_6": 9, "pkd_channel": 9, "pkhd_c": 9, "pki": 9, "pkk": 9, "pks_de": 9, "pk_c": 9, "pk_tyr_ser": 9, "thr": 9, "pkcgmp_cc": 9, "pl48": 9, "pla1": 9, "pla2g12": 9, "pla2_b": 9, "pla2_inh": 9, "plac": 9, "plac8": 9, "plac9": 9, "plat": 9, "platz": 9, "beta_c": 9, "plcc": 9, "pld_c": 9, "pldc": 9, "pldc_2": 9, "pldc_3": 9, "pldc_n": 9, "pll": 9, "pln_propep": 9, "plrv_orf5": 9, "plu": 9, "plipase_c_c": 9, "pm0188": 9, "pmaip1": 9, "pmbr": 9, "pmc2nt": 9, "pmd": 9, "pmei": 9, "pmg": 9, "pmi_typei_c": 9, "pmi_typei_cat": 9, "pmi_typei_hel": 9, "pmm": 9, "pmp1_2": 9, "pmp22_claudin": 9, "pmr5n": 9, "pmsi1": 9, "pmsr": 9, "pmt": 9, "pmt2_n": 9, "pmt_2": 9, "pmt_4tmc": 9, "pnd": 9, "pngasea": 9, "pnisr": 9, "pnk3p": 9, "pnkp": 9, "ligase_c": 9, "pnkp_ligas": 9, "pnma": 9, "pnp_udp_1": 9, "pnp_phzg_c": 9, "pnpase": 9, "pnpase_c": 9, "pnrc": 9, "pntb": 9, "pntb_4tm": 9, "pob3_n": 9, "poc1": 9, "poc3_poc4": 9, "polo_box": 9, "pom121": 9, "pop1": 9, "popld": 9, "por": 9, "porr": 9, "por_n": 9, "pot1": 9, "pot1pc": 9, "potra": 9, "potra_1": 9, "potra_2": 9, "potra_3": 9, "potra_tama_1": 9, "pou2f1_c": 9, "pox": 9, "pp": 9, "pp1": 9, "pp1_bind": 9, "pp1_inhibitor": 9, "pp1c_bdg": 9, "pp2": 9, "pp28": 9, "pp2c": 9, "pp2c_2": 9, "pp2c_c": 9, "pp4r3": 9, "ppak": 9, "ppargamma_n": 9, "ppc": 9, "ppdfl": 9, "ppdk_n": 9, "ppw": 9, "svp": 9, "ppip5k2_n": 9, "ppi_ypi1": 9, "ppk2": 9, "ppl4": 9, "ppl5": 9, "ppo1_dwl": 9, "ppo1_kfdv": 9, "ppp1r26_n": 9, "ppp1r32": 9, "ppp1r35_c": 9, "ppp4r2": 9, "ppp5": 9, "pppi_inhib": 9, "ppr": 9, "ppr_1": 9, "ppr_2": 9, "ppr_3": 9, "ppr_long": 9, "pps_p": 9, "ppta": 9, "ppv_e1_c": 9, "ppv_e1_dbd": 9, "ppv_e1_n": 9, "ppv_e2_c": 9, "ppv_e2_n": 9, "pp_m1": 9, "pp_kinas": 9, "pp_kinase_c": 9, "pp_kinase_c_1": 9, "pp_kinase_n": 9, "pq": 9, "pqq": 9, "pqq_2": 9, "pqq_3": 9, "pra": 9, "pra1": 9, "prai": 9, "pranc": 9, "prap": 9, "prc": 9, "prc2_hth_1": 9, "prcc": 9, "prch": 9, "prd": 9, "prd_mga": 9, "preli": 9, "presan": 9, "pre_c2hc": 9, "prf": 9, "prima1": 9, "prk": 9, "prkcsh": 9, "prkcsh_1": 9, "prkg1_interact": 9, "prmt5": 9, "prmt5_c": 9, "prmt5_tim": 9, "prnt": 9, "pro8nt": 9, "procn": 9, "proct": 9, "prodh": 9, "prol5": 9, "smr": 9, "prone": 9, "prorp": 9, "prp1_n": 9, "prp21_like_p": 9, "prp3": 9, "prp38": 9, "prp38_assoc": 9, "prp4": 9, "prp8_domainiv": 9, "prp9_n": 9, "prr18": 9, "prr20": 9, "prr22": 9, "prt6_c": 9, "prtrc_e": 9, "prt_c": 9, "prtase_1": 9, "prtase_2": 9, "prtase_3": 9, "pry": 9, "pria4_orf3": 9, "dh": 9, "psa_cbd": 9, "pscyt1": 9, "pscyt2": 9, "pscyt3": 9, "psd1": 9, "psd2": 9, "psd3": 9, "psd4": 9, "psd5": 9, "psdc": 9, "psgp": 9, "psi": 9, "psii": 9, "psii_bnr": 9, "psii_pbs27": 9, "psii_pbs31": 9, "psii_ycf12": 9, "psi_8": 9, "psi_psak": 9, "psi_psa": 9, "psi_psaf": 9, "psi_psah": 9, "psi_psaj": 9, "psi_integrin": 9, "psk": 9, "psk_trans_fac": 9, "psmalpha": 9, "psmbeta": 9, "psmdelta": 9, "psp1": 9, "psp94": 9, "psrp": 9, "3_ycf65": 9, "psrt": 9, "pss": 9, "psy3": 9, "ps_dcarbxylas": 9, "ps_pyruv_tran": 9, "pt": 9, "tg": 9, "venn": 9, "ptac": 9, "pta_ptb": 9, "ptb": 9, "ptcb": 9, "ptcra": 9, "pte": 9, "pten_c2": 9, "pth2": 9, "ptn13_u3": 9, "ptn_mk_c": 9, "ptn_mk_n": 9, "ptp2": 9, "ptpa": 9, "ptpla": 9, "ptprcap": 9, "ptp": 9, "ptps_relat": 9, "ptp_n": 9, "ptp_tm": 9, "ptplike_phytas": 9, "ptr": [9, 14, 15], "ptr2": 9, "ptrf_sdpr": 9, "hpr": 9, "ptsiia_guta": 9, "ptsiib_sorb": 9, "pts_2": 9, "rna": 9, "pts_eiia_1": 9, "pts_eiia_2": 9, "pts_eiib": 9, "pts_eiic": 9, "pts_eiic_2": 9, "pts_iia": 9, "pts_iib": 9, "ptase_orf2": 9, "pua": 9, "pua_2": 9, "pua_3": 9, "pua_4": 9, "pub": 9, "pub_1": 9, "pucc": 9, "pud": 9, "pud1_2": 9, "puf": 9, "pufd": 9, "pul": 9, "puma": 9, "punut": 9, "pv": 9, "pvl_orf50": 9, "pwi": 9, "pwwp": 9, "px": [9, 11, 14], "pxa": 9, "pxb": 9, "pxpv": 9, "pxt1": 9, "pyc_oada": 9, "pynp_c": 9, "pyrin": 9, "pyst": 9, "py_rept_46": 9, "p_c10": 9, "p_gingi_fima": 9, "p_proprotein": 9, "pao": 9, "parep1": 9, "parep2a": 9, "parep2b": 9, "paaa_paac": 9, "paab": 9, "paax": 9, "paax_c": 9, "pab87_oct": 9, "pacifastin_i": 9, "packaging_fi": 9, "pac": 9, "paf1": 9, "paf67": 9, "pagl": 9, "pagp": 9, "paired_cxxch_1": 9, "pal1": 9, "palh": 9, "pallilysin": 9, "palm_thioest": 9, "pam16": 9, "pam17": 9, "pan3_pk": 9, "panz": 9, "pan_kinas": 9, "pannexin_lik": 9, "pantoate_ligas": 9, "pantoate_transf": 9, "papa_c": 9, "papb": 9, "papc_c": 9, "papc_n": 9, "papd": 9, "papd_c": 9, "papd_n": 9, "papg_c": 9, "papg_n": 9, "papj": 9, "papilin_u7": 9, "par3_hal_n_term": 9, "para": [9, 17], "parb": 9, "parb_c": 9, "parbc": 9, "parbc_2": 9, "pard": 9, "pard_antitoxin": 9, "pard_lik": 9, "pare": 9, "pare_toxin": 9, "parg": 9, "paralemmin": 9, "paramecium_sa": 9, "paramyxo_ns_c": 9, "paramyxo_p_v_n": 9, "parathyroid": 9, "parcg": 9, "parvo_ns1": 9, "parvo_coat": 9, "pas_saposin": 9, "patg_c": 9, "patg_d": 9, "patatin": 9, "pax2_c": 9, "pax7": 9, "paxillin": 9, "pcf": 9, "pcc1": 9, "pcfj": 9, "pcfk": 9, "pcrb": 9, "pdac": 9, "pdase_m17_n2": 9, "pdtas_gaf": 9, "pduv": 9, "eutp": 9, "pdxa": 9, "pdxj": 9, "pec_lyas": 9, "pec_lyase_n": 9, "pecanex_c": 9, "pectate_lyas": 9, "pectate_lyase22": 9, "pectate_lyase_2": 9, "pectate_lyase_3": 9, "pectate_lyase_4": 9, "pectate_lyase_5": 9, "pectinesteras": 9, "pedibin": 9, "peld_ggdef": 9, "pelg": 9, "pellino": 9, "pemk_toxin": 9, "penaeidin": 9, "penicil_amidas": 9, "penicillinase_r": 9, "pentapeptid": 9, "pentapeptide_2": 9, "pentapeptide_3": 9, "pentapeptide_4": 9, "pentaxin": 9, "pep1_7": 9, "pep3_vps18": 9, "pepsi": 9, "pepsy_2": 9, "pepsy_tm": 9, "pepsy_tm_like_2": 9, "pepsy_lik": 9, "pepx_c": 9, "pepx_n": 9, "pep_m12b_propep": 9, "pep_deformylas": 9, "pepdidase_m14_n": 9, "pepsin": 9, "i3": 9, "pept_s41_n": 9, "pept_trna_hydro": 9, "peptidase_a17": 9, "peptidase_a22b": 9, "peptidase_a24": 9, "peptidase_a25": 9, "peptidase_a2b": 9, "peptidase_a2_2": 9, "peptidase_a3": 9, "peptidase_a4": 9, "peptidase_a8": 9, "peptidase_c1": 9, "peptidase_c10": 9, "peptidase_c101": 9, "peptidase_c11": 9, "peptidase_c12": 9, "peptidase_c13": 9, "peptidase_c14": 9, "peptidase_c15": 9, "peptidase_c1_2": 9, "peptidase_c2": 9, "peptidase_c25": 9, "peptidase_c25_c": 9, "peptidase_c26": 9, "peptidase_c3": 9, "peptidase_c37": 9, "peptidase_c39": 9, "peptidase_c39_2": 9, "peptidase_c47": 9, "peptidase_c48": 9, "peptidase_c5": 9, "peptidase_c50": 9, "peptidase_c54": 9, "peptidase_c57": 9, "peptidase_c58": 9, "peptidase_c65": 9, "peptidase_c69": 9, "peptidase_c70": 9, "peptidase_c71": 9, "peptidase_c78": 9, "peptidase_c80": 9, "peptidase_c92": 9, "peptidase_c93": 9, "peptidase_c97": 9, "peptidase_c98": 9, "peptidase_g2": 9, "peptidase_m1": 9, "peptidase_m10": 9, "peptidase_m10_c": 9, "peptidase_m11": 9, "peptidase_m13": 9, "peptidase_m13_n": 9, "peptidase_m14": 9, "peptidase_m15": 9, "peptidase_m15_2": 9, "peptidase_m15_3": 9, "peptidase_m15_4": 9, "peptidase_m16": 9, "peptidase_m16_c": 9, "peptidase_m16_m": 9, "peptidase_m17": 9, "peptidase_m17_n": 9, "peptidase_m18": 9, "peptidase_m19": 9, "peptidase_m1_n": 9, "peptidase_m2": 9, "peptidase_m20": 9, "peptidase_m23": 9, "peptidase_m23_n": 9, "peptidase_m24": 9, "peptidase_m24_c": 9, "peptidase_m26_c": 9, "peptidase_m26_n": 9, "peptidase_m27": 9, "peptidase_m28": 9, "peptidase_m29": 9, "peptidase_m3": 9, "peptidase_m30": 9, "peptidase_m32": 9, "peptidase_m35": 9, "peptidase_m36": 9, "peptidase_m3_n": 9, "peptidase_m4": 9, "peptidase_m41": 9, "peptidase_m42": 9, "peptidase_m43": 9, "peptidase_m48": 9, "peptidase_m48_n": 9, "peptidase_m49": 9, "peptidase_m4_c": 9, "peptidase_m50": 9, "peptidase_m50b": 9, "peptidase_m54": 9, "peptidase_m55": 9, "peptidase_m56": 9, "peptidase_m57": 9, "peptidase_m6": 9, "peptidase_m60": 9, "peptidase_m60_c": 9, "peptidase_m61": 9, "peptidase_m61_n": 9, "peptidase_m64": 9, "peptidase_m66": 9, "peptidase_m7": 9, "peptidase_m73": 9, "peptidase_m74": 9, "peptidase_m75": 9, "peptidase_m76": 9, "peptidase_m78": 9, "peptidase_m8": 9, "peptidase_m85": 9, "peptidase_m9": 9, "peptidase_m90": 9, "peptidase_m91": 9, "peptidase_m99": 9, "peptidase_m99_c": 9, "peptidase_m99_m": 9, "peptidase_m9_n": 9, "peptidase_ma_2": 9, "peptidase_mx": 9, "peptidase_mx1": 9, "peptidase_prp": 9, "peptidase_s10": 9, "peptidase_s11": 9, "peptidase_s13": 9, "peptidase_s15": 9, "peptidase_s24": 9, "peptidase_s26": 9, "peptidase_s28": 9, "peptidase_s3": 9, "peptidase_s30": 9, "peptidase_s32": 9, "peptidase_s37": 9, "peptidase_s39": 9, "peptidase_s41": 9, "peptidase_s41_n": 9, "peptidase_s46": 9, "peptidase_s48": 9, "peptidase_s49": 9, "peptidase_s49_n": 9, "peptidase_s51": 9, "peptidase_s55": 9, "peptidase_s58": 9, "peptidase_s6": 9, "peptidase_s64": 9, "peptidase_s66": 9, "peptidase_s66c": 9, "peptidase_s68": 9, "peptidase_s7": 9, "peptidase_s74": 9, "peptidase_s77": 9, "peptidase_s78": 9, "peptidase_s78_2": 9, "peptidase_s8": 9, "peptidase_s8_n": 9, "peptidase_s9": 9, "peptidase_s9_n": 9, "peptidase_u32": 9, "peptidase_u32_c": 9, "peptidase_u4": 9, "peptidase_u49": 9, "peptidase_u57": 9, "per1": 9, "perc": 9, "pericardin_rpt": 9, "perilipin": 9, "perilipin_2": 9, "period_c": 9, "peripla_bp_1": 9, "peripla_bp_2": 9, "peripla_bp_3": 9, "peripla_bp_4": 9, "peripla_bp_5": 9, "peripla_bp_6": 9, "peripla_bp_7": 9, "periviscerokin": 9, "perm": 9, "cxxc": 9, "peroxidase_2": 9, "peroxidase_ext": 9, "peroxin": 9, "13_n": 9, "22": 9, "pertactin": 9, "pertu": 9, "s4": 9, "tox": 9, "s5": 9, "pertussis_s1": 9, "pertussis_s2s3": 9, "pescadillo_n": 9, "pesticin": 9, "pet100": 9, "pet127": 9, "pet191_n": 9, "pet20": 9, "petg": 9, "petl": 9, "petm": 9, "petn": 9, "pex14_n": 9, "pex16": 9, "pex19": 9, "pex24p": 9, "pex26": 9, "pex2_pex12": 9, "pfuis3": 9, "pfad_n": 9, "pfg27": 9, "pfkb": 9, "pfk_n": 9, "pga1": 9, "pgad": 9, "pgapase_1": 9, "pgda_n": 9, "pgld_n": 9, "pgll_a": 9, "pglz": 9, "pgpa": 9, "ph1570": 9, "phac_n": 9, "phag_mnhg_yufb": 9, "phap_bmeg": 9, "phage": 9, "a118_gp45": 9, "mub_c": 9, "scaffold": 9, "tail_3": 9, "phagemetallopep": 9, "phagemin_tail": 9, "phage_186_fil": 9, "phage_30_3": 9, "phage_aba_": 9, "phage_ash": 9, "phage_alpa": 9, "phage_arf": 9, "phage_b": 9, "phage_br0599": 9, "phage_c": 9, "phage_cii": 9, "phage_ci_c": 9, "phage_ci_repr": 9, "phage_cp76": 9, "phage_cri": 9, "phage_coat_a": 9, "phage_coat_b": 9, "phage_cox": 9, "phage_dna_bind": 9, "phage_f": 9, "phage_g": 9, "phage_gp20": 9, "phage_gpa": 9, "phage_gpd": 9, "phage_gpl": 9, "phage_gpo": 9, "phage_gp111": 9, "phage_gp15": 9, "phage_gp19": 9, "phage_gp23": 9, "phage_hk97_tltm": 9, "phage_hp1_orf24": 9, "phage_h_t_join": 9, "phage_mu_f": 9, "phage_mu_gam": 9, "phage_mu_gp27": 9, "phage_mu_gp36": 9, "phage_mu_gp37": 9, "phage_mu_gp45": 9, "phage_mu_gp48": 9, "phage_ninh": 9, "phage_nu1": 9, "phage_orf5": 9, "phage_orf51": 9, "phage_p22_ninx": 9, "phage_p2_gp": 9, "phage_p2_gpu": 9, "phage_ssb": 9, "phage_t4_ndd": 9, "phage_t4_gp19": 9, "phage_t4_gp36": 9, "phage_t7_capsid": 9, "phage_t7_gp13": 9, "phage_t7_tail": 9, "phage_tac_1": 9, "phage_tac_10": 9, "phage_tac_11": 9, "phage_tac_12": 9, "phage_tac_13": 9, "phage_tac_14": 9, "phage_tac_2": 9, "phage_tac_3": 9, "phage_tac_4": 9, "phage_tac_5": 9, "phage_tac_6": 9, "phage_tac_7": 9, "phage_tac_8": 9, "phage_tac_9": 9, "phage_ttp_1": 9, "phage_ttp_11": 9, "phage_ttp_12": 9, "phage_ttp_13": 9, "phage_treg": 9, "phage_x": 9, "phage_xkdx": 9, "phage_antiter_q": 9, "phage_antitermq": 9, "phage_attach": 9, "phage_base_v": 9, "phage_cap_": 9, "phage_cap_p2": 9, "phage_capsid": 9, "phage_capsid_2": 9, "phage_coatgp8": 9, "phage_connect_1": 9, "phage_connector": 9, "phage_endo_i": 9, "phage_fib": 9, "phage_fiber_2": 9, "phage_fiber_c": 9, "phage_gp49_66": 9, "phage_gp53": 9, "phage_head_fibr": 9, "phage_holin_1": 9, "phage_holin_2_1": 9, "phage_holin_2_2": 9, "phage_holin_2_3": 9, "phage_holin_2_4": 9, "phage_holin_3_1": 9, "phage_holin_3_2": 9, "phage_holin_3_3": 9, "phage_holin_3_5": 9, "phage_holin_3_6": 9, "phage_holin_3_7": 9, "phage_holin_4_1": 9, "phage_holin_4_2": 9, "phage_holin_5_1": 9, "phage_holin_5_2": 9, "phage_holin_6_1": 9, "phage_holin_7_1": 9, "phage_holin_8": 9, "phage_holin_dp1": 9, "phage_hub_gp28": 9, "phage_int_sam_1": 9, "phage_int_sam_2": 9, "phage_int_sam_3": 9, "phage_int_sam_4": 9, "phage_int_sam_5": 9, "phage_int_sam_6": 9, "phage_integr_3": 9, "phage_integras": 9, "phage_lambda_p": 9, "phage_lysi": 9, "phage_lysozym": 9, "phage_lysozyme2": 9, "phage_min_cap2": 9, "phage_min_tail": 9, "phage_prha": 9, "phage_port": 9, "phage_portal_2": 9, "phage_prot_gp6": 9, "phage_r1t_holin": 9, "phage_rep_o": 9, "phage_rep_org_n": 9, "phage_sheath_1": 9, "phage_sheath_1c": 9, "phage_sheath_1n": 9, "phage_spik": 9, "phage_stabilis": 9, "phage_tail_2": 9, "phage_tail_3": 9, "phage_tail_apc": 9, "phage_tail_l": 9, "phage_tail_nk": 9, "phage_tail_": 9, "phage_tail_t": 9, "phage_tail_u": 9, "phage_tail_x": 9, "phage_term_sma": 9, "phage_term_sm": 9, "phage_terminas": 9, "phage_tub": 9, "phage_tube_2": 9, "phage_tube_c": 9, "phageshock_pspd": 9, "phageshock_pspg": 9, "phasin": 9, "phasin_2": 9, "phdyefm_antitox": 9, "phers_dbd1": 9, "phers_dbd2": 9, "phers_dbd3": 9, "phe_zip": 9, "phe_hydrox_dim": 9, "phe_trna": 9, "phenol_hydrox": 9, "phenol_meta_deg": 9, "phenol_hyd_sub": 9, "phenol_monoox": 9, "phenyl_p_gamma": 9, "pheromon": 9, "phetrs_b1": 9, "phg_2220_c": 9, "phi": 9, "29_gp3": 9, "phi29_phage_ssb": 9, "phi_1": 9, "phlebo_g2_c": 9, "phlebovirus_g1": 9, "phlebovirus_g2": 9, "phng": 9, "phnh": 9, "phni": 9, "phnj": 9, "pho86": 9, "pho88": 9, "phod": 9, "phod_2": 9, "phod_n": 9, "phoh": 9, "pholip_atpase_c": 9, "pholip_atpase_n": 9, "phopq_rel": 9, "phoq_sensor": 9, "phor": 9, "phou": 9, "phou_div": 9, "phos_pyr_kin": 9, "phosducin": 9, "phosphmutas": 9, "phosphatas": 9, "phospho_p8": 9, "phosphoesteras": 9, "phospholamban": 9, "phospholip_a2_1": 9, "phospholip_a2_2": 9, "phospholip_a2_3": 9, "phospholip_a2_4": 9, "phospholip_b": 9, "phosphon": 9, "phosphoprotein": 9, "phosphorylas": 9, "phostensin": 9, "phostensin_n": 9, "photo_rc": 9, "phrc_phrf": 9, "phyh": 9, "phycobilisom": 9, "phycoerythr_ab": 9, "phytas": 9, "phyto": 9, "phytochelatin": 9, "phytochelatin_c": 9, "phzc": 9, "phzf": 9, "pico_p1a": 9, "pico_p2a": 9, "pico_p2b": 9, "piezo_rras_bdg": 9, "pign": 9, "pigment_dh": 9, "pih1_fungal_c": 9, "pik1": 9, "pil1": 9, "pila4": 9, "pili": 9, "pilj": 9, "pilj_c": 9, "pilm": 9, "pilm_2": 9, "piln": 9, "piln_bio_d": 9, "pilo": 9, "pilp": 9, "pil": 9, "pilw": 9, "pilx": 9, "pilx_n": 9, "pilz": 9, "pilzn": 9, "pilzn1": 9, "pilzn3": 9, "pilznr": 9, "pilin": 9, "pilin_gh": 9, "pilin_n": 9, "pilin_pila": 9, "pilin_pilx": 9, "pilosulin": 9, "pilt": 9, "pilus_cpad": 9, "pim": 9, "pinin_sdk_n": 9, "pinin_sdk_mema": 9, "pipa": 9, "pirin": 9, "pirin_c": 9, "pirin_c_2": 9, "piwi": 9, "pixa": 9, "pkinas": 9, "pkinase_c": 9, "pkinase_fung": 9, "pkng_tpr": 9, "pkng_rubr": 9, "pknh_c": 9, "pkr1": 9, "planc_extracel": 9, "plant_nmp1": 9, "plant_all_beta": 9, "plant_tran": 9, "plant_zn_clust": 9, "plasmid_raqprd": 9, "plasmid_parti": 9, "plasmid_stab_b": 9, "plasmo_rep": 9, "plasmod_pvs28": 9, "plasmod_dom_1": 9, "plasmodium_hrp": 9, "plasmodium_vir": 9, "plavaka": 9, "plectin": 9, "plexin_rbd": 9, "plexin_cytopl": 9, "plii": 9, "plk4_pb1": 9, "plk4_pb2": 9, "ploopntkinase3": 9, "plug": 9, "plug_translocon": 9, "plyb_c": 9, "pmba_tldd": 9, "pmba_tldd_c": 9, "pmba_tldd_m": 9, "pmp3": 9, "pmrd": 9, "pnpcd_pnpd_n": 9, "pocr": 9, "podoplanin": 9, "podovirus_gp16": 9, "polc_dp2": 9, "pol_alpha_b_n": 9, "polbeta": 9, "pollen_ole_e_1": 9, "pollen_allerg_2": 9, "polo_box_2": 9, "polo_box_3": 9, "polya_pol": 9, "polya_pol_rnabd": 9, "polya_pol_arg_c": 9, "polyg_pol": 9, "poly_a_pol_cat": 9, "poly_export": 9, "polycystin_dom": 9, "polyketide_cyc": 9, "polyketide_cyc2": 9, "polyoma_lg_t_c": 9, "polysacc_deac_1": 9, "polysacc_deac_2": 9, "polysacc_deac_3": 9, "polysacc_lyas": 9, "polysacc_syn_2c": 9, "polysacc_synt": 9, "polysacc_synt_2": 9, "polysacc_synt_3": 9, "polysacc_synt_4": 9, "polysacc_synt_c": 9, "pom": 9, "pombe_5tm": 9, "popey": 9, "pora": 9, "porb": 9, "porp_sprf": 9, "porv": 9, "por_secre_tail": 9, "porin_1": 9, "porin_10": 9, "porin_2": 9, "porin_3": 9, "porin_4": 9, "porin_5": 9, "porin_6": 9, "porin_7": 9, "porin_8": 9, "porin_o_p": 9, "porin_ompg": 9, "porin_ompg_1_2": 9, "porin_ompl1": 9, "porph_g": 9, "porphobil_deam": 9, "porphobil_deamc": 9, "porphyrn_cat_1": 9, "portal_gp20": 9, "post_transc_reg": 9, "potass_kdpf": 9, "potassium_chann": 9, "pou": 9, "pox_a22": 9, "pox_a32": 9, "pox_a51": 9, "pox_a6": 9, "pox_a8": 9, "pox_a9": 9, "pox_a_type_inc": 9, "pox_d5": 9, "pox_i5": 9, "pox_mcel": 9, "pox_p35": 9, "pox_rna_pol_19": 9, "pox_rna_pol": 9, "pox_vltf3": 9, "pox_int_tran": 9, "pox_ser": 9, "thr_kin": 9, "pox_vil": 9, "18bp": 9, "ppnp": 9, "pput2613": 9, "ppx": 9, "gppa": 9, "pqia": 9, "pqqa": 9, "pqqd": 9, "pr_beta_c": 9, "prcb_c": 9, "preatp": 9, "prefoldin": 9, "prefoldin_2": 9, "prefoldin_3": 9, "prenylcys_lyas": 9, "prenyltran": 9, "prenyltransf": 9, "presenilin": 9, "preseq_ala": 9, "prgh": 9, "prgi": 9, "prgu": 9, "pria_3primebd": 9, "pria_c": 9, "pria_crr": 9, "pric": 9, "prict_1": 9, "prict_2": 9, "prix": 9, "pribosyl_synth": 9, "pribosyltran": 9, "pribosyltran_n": 9, "prim": 9, "pol": 9, "prim_zn_ribbon": 9, "prion": 9, "prion_bprpp": 9, "prion_octapep": 9, "prisman": 9, "prka": 9, "prlf_antitoxin": 9, "prma": 9, "prmc_n": 9, "nt_nn": 9, "kuma_activ": 9, "rich_19": 9, "proq": 9, "proq_c": 9, "pror": 9, "c_1": 9, "c_2": 9, "prosaa": 9, "pro_3_hydrox_c": 9, "pro_al_proteas": 9, "pro_ca": 9, "pro_ca_2": 9, "pro_dh": 9, "pro_isomeras": 9, "pro_racemas": 9, "pro_sub2": 9, "profilin": 9, "prog_receptor": 9, "proho_convert": 9, "prok": 9, "e2_a": 9, "e2_b": 9, "e2_c": 9, "e2_d": 9, "e2_": 9, "ring_1": 9, "ring_2": 9, "ring_4": 9, "prok_ub": 9, "prokineticin": 9, "prolactin_rp": 9, "prolamin_lik": 9, "promethin": 9, "prominin": 9, "propep_m14": 9, "propeptide_c1": 9, "propeptide_c25": 9, "prophage_tail": 9, "prophage_taild1": 9, "prosystemin": 9, "prot_atp_id_ob": 9, "prot_atp_ob_n": 9, "prot_inhib_ii": 9, "protamine_p1": 9, "protamine_p2": 9, "protamine_lik": 9, "proteasom_psmb": 9, "proteasom_rpn13": 9, "proteasom": 9, "proteasome_a_n": 9, "protein_k": 9, "prothymosin": 9, "protocadherin": 9, "protoglobin": 9, "proton_antipo_c": 9, "proton_antipo_m": 9, "proton_antipo_n": 9, "prp18": 9, "prp19": 9, "prp31_c": 9, "prpf": 9, "prpr_n": 9, "prsw": 9, "proteas": 9, "psaa_psab": 9, "psad": 9, "psaf": 9, "psal": 9, "psam": 9, "psan": 9, "psax": 9, "psb28": 9, "psbh": 9, "psbi": 9, "psbj": 9, "psbk": 9, "psbl": 9, "psbm": 9, "psbn": 9, "psbp": 9, "psbp_2": 9, "psbq": 9, "psbr": 9, "psbt": 9, "psbu": 9, "psbw": 9, "psbx": 9, "psby": 9, "pseudou_synth_1": 9, "pseudou_synth_2": 9, "psg1": 9, "psia": 9, "psib": 9, "psie": 9, "psif_repeat": 9, "pspa_im30": 9, "pspb": 9, "pspc": 9, "psu": 9, "pterin_4a": 9, "pterin_bind": 9, "pur_n": 9, "pucr": 9, "pufq": 9, "pula_n1": 9, "pulg": 9, "pullul_strch_c": 9, "pullulanase_in": 9, "pullulanase_n2": 9, "pup": 9, "pup_ligas": 9, "pura": 9, "purk_c": 9, "purl_c": 9, "pur": 9, "pur_dna_glyco": 9, "pur_ac_phosph_n": 9, "puta_n": 9, "put_dna": 9, "bind_n": 9, "put_phosphatas": 9, "putative_g5p": 9, "putative_pnpox": 9, "pvc16_n": 9, "pvlargdc": 9, "pyocinactiv": 9, "pyocin_": 9, "pyrbi_lead": 9, "pyri": 9, "pyri_c": 9, "pyr_excis": 9, "pyr_redox": 9, "pyr_redox_2": 9, "pyr_redox_3": 9, "pyr_redox_dim": 9, "pyrid_ox_lik": 9, "pyrid_oxidase_2": 9, "pyridox_ox_2": 9, "pyridox_oxase_2": 9, "pyridoxal_dec": 9, "pyrophosphatas": 9, "qcr10": 9, "qh": 9, "amdh_gamma": 9, "qil1": 9, "qlq": 9, "qpe": 9, "qrptase_c": 9, "qrptase_n": 9, "qsox_trx1": 9, "qsregvf": 9, "qsregvf_b": 9, "qvr": 9, "qwrf": 9, "q_salvag": 9, "qcra_n": 9, "qn_am_d_aii": 9, "qn_am_d_aiii": 9, "qn_am_d_aiv": 9, "qsla_e": 9, "qua1": 9, "quaking_nl": 9, "quec": 9, "quef": 9, "quef_n": 9, "queg_duf1730": 9, "queh": 9, "quet": 9, "questin_oxidas": 9, "queuosine_synth": 9, "hinp1i": 9, "r2k_2": 9, "r2k_3": 9, "r3h": 9, "assoc": 9, "ra": 9, "rab3gap2_c": 9, "rab3gap2_n": 9, "rac_head": 9, "raco_c_t": 9, "raco_link": 9, "rad51_interact": 9, "rag1": 9, "rag1_imp_bd": 9, "rag2": 9, "rag2_phd": 9, "rai1": 9, "rai16": 9, "ralf": 9, "ralgapb_n": 9, "ram": 9, "rama": 9, "ramp": 9, "ramp4": 9, "rank_crd_2": 9, "rap": 9, "rap1": 9, "rap80_uim": 9, "rawul": 9, "rbb1nt": 9, "rbd": 9, "fip": 9, "rbfa": 9, "rbm1ctr": 9, "rbm39linker": 9, "rbp_receptor": 9, "rbr": 9, "rb_a": 9, "rb_b": 9, "rc": 9, "p840_pscd": 9, "rcc1": 9, "rcc1_2": 9, "rcc_reductas": 9, "rcdg1": 9, "rcr": 9, "rcs1": 9, "rcsd": 9, "rd3": 9, "rdd": 9, "rdm": 9, "rdv": 9, "p3": 9, "rec1": 9, "rec104": 9, "rec114": 9, "red_c": 9, "red_n": 9, "ref": [9, 14], "rej": 9, "relt": 9, "repa_ob_2": 9, "re": [9, 14, 17], "resp18": 9, "reticulata": 9, "ret_cld1": 9, "ret_cld3": 9, "ret_cld4": 9, "rev": 9, "rev1_c": 9, "re_acci": 9, "re_alw26id": 9, "re_alwi": 9, "re_apali": 9, "re_aspbhi_n": 9, "re_bpu10i": 9, "re_bsawi": 9, "re_bsp6i": 9, "re_bstxi": 9, "re_cfrbi": 9, "re_eco29ki": 9, "re_eco47ii": 9, "re_ecoo109i": 9, "re_haeii": 9, "re_haeiii": 9, "re_hindiii": 9, "re_hindvp": 9, "re_hpaii": 9, "re_llaji": 9, "re_llami": 9, "re_mami": 9, "re_mjai": 9, "re_ngobv": 9, "re_ngofvii": 9, "re_ngopii": 9, "re_r_pab1": 9, "re_saci": 9, "re_scai": 9, "re_sini": 9, "re_taqi": 9, "re_tdeiii": 9, "re_xami": 9, "re_xcyi": 9, "re_endonuc": 9, "rf": [9, 11, 17], "rf3_c": 9, "rfc1": 9, "rfx1_trans_act": 9, "rfx5_dna_bdg": 9, "rfx5_n": 9, "rfxa_rfxank_bdg": 9, "rfx_dna_bind": 9, "rfamide_26rfa": 9, "rgcc": 9, "rgi1": 9, "rgi_lyas": 9, "rgm_c": 9, "rgm_n": 9, "rgp": 9, "rg": 9, "rgs12_us1": 9, "rgs12_us2": 9, "rgs12_usc": 9, "rgs_dhex": 9, "rhd3_gtpase": 9, "rhd_dna_bind": 9, "rhd_dimer": 9, "rhh_1": 9, "rhh_3": 9, "rhh_4": 9, "rhh_5": 9, "rhh_6": 9, "rhh_7": 9, "rhh_8": 9, "rhh_9": 9, "rhim": 9, "rhino": 9, "rh": 9, "rhsp": 9, "rhs_n": 9, "rhs_repeat": 9, "rib43a": 9, "ribiop_c": 9, "ric1": 9, "ric3": 9, "rictor_m": 9, "rictor_n": 9, "rictor_v": 9, "rictor_phospho": 9, "rif5_snase_1": 9, "rif5_snase_2": 9, "rifin": 9, "rig": 9, "i_c": 9, "rd": 9, "rih_assoc": 9, "rii_binding_1": 9, "riia": 9, "rilp": 9, "ring_cbp": 9, "p300": 9, "ringv": 9, "rint1_tip1": 9, "rio1": 9, "rip": 9, "rita": 9, "rix1": 9, "rkp_n": 9, "rl": 9, "rl10p_insert": 9, "rlan": 9, "rli": 9, "rll": 9, "rme": 9, "8_n": 9, "rmf": 9, "rmi1_c": 9, "rmi1_n": 9, "rmi2": 9, "rmmbl": 9, "rmp": 9, "rna12": 9, "rna_me_tran": 9, "rna_pol_m_15kd": 9, "rna_bind": 9, "rna_helicas": 9, "rna_lig_t4_1": 9, "rna_ligas": 9, "rna_pol": 9, "rna_poli_a14": 9, "rna_poli_a34": 9, "rna_pol_3_rpc31": 9, "rna_pol_a_ctd": 9, "rna_pol_a_bac": 9, "rna_pol_i_a49": 9, "rna_pol_i_tf": 9, "rna_pol_l": 9, "rna_pol_l_2": 9, "rna_pol_n": 9, "rna_pol_rbc25": 9, "rna_pol_rpa2_4": 9, "rna_pol_rpb1_1": 9, "rna_pol_rpb1_2": 9, "rna_pol_rpb1_3": 9, "rna_pol_rpb1_4": 9, "rna_pol_rpb1_5": 9, "rna_pol_rpb1_6": 9, "rna_pol_rpb1_7": 9, "rna_pol_rpb1_r": 9, "rna_pol_rpb2_1": 9, "rna_pol_rpb2_2": 9, "rna_pol_rpb2_3": 9, "rna_pol_rpb2_4": 9, "rna_pol_rpb2_45": 9, "rna_pol_rpb2_5": 9, "rna_pol_rpb2_6": 9, "rna_pol_rpb2_7": 9, "rna_pol_rpb4": 9, "rna_pol_rpb5_c": 9, "rna_pol_rpb5_n": 9, "rna_pol_rpb6": 9, "rna_pol_rpb8": 9, "rna_pol_rpbg": 9, "rna_pol_rpc34": 9, "rna_pol_rpc4": 9, "rna_pol_rpc82": 9, "rna_pol_rpo13": 9, "rna_pol_inhib": 9, "rnase_a_bac": 9, "rnb": 9, "rnf111_n": 9, "rnf152_c": 9, "rnf180_c": 9, "rnf220": 9, "rnhcp": 9, "rnpp_c": 9, "rnr_alpha": 9, "rnr_n": 9, "rnr_inhib": 9, "rnaseh_c": 9, "rnaseh_lik": 9, "rnaseh_ppiwi_r": 9, "rnase_3_n": 9, "rnase_e_g": 9, "rnase_h": 9, "rnase_h2": 9, "ydr279": 9, "rnase_h2_suc": 9, "rnase_hii": 9, "rnase_h_2": 9, "rnase_ii_c_s1": 9, "rnase_j_c": 9, "rnase_p": 9, "mrp_p29": 9, "rnase_ph": 9, "rnase_ph_c": 9, "rnase_p_rpp14": 9, "rnase_p_p30": 9, "rnase_p_pop3": 9, "rnase_t": 9, "rnase_y_n": 9, "rnase_zc3h12a": 9, "rnase_zc3h12a_2": 9, "rof": 9, "roh1": 9, "rok": 9, "roknt": 9, "roq_ii": 9, "ros_mucr": 9, "roxa": 9, "like_wh": 9, "rp": 9, "rp1": 9, "rp853": 9, "rp854": 9, "rpa": 9, "rpa43_ob": 9, "rpap1_c": 9, "rpap1_n": 9, "rpap2_rtr1": 9, "rpap3_c": 9, "rpa_c": 9, "rpa_interact_c": 9, "rpa_interact_m": 9, "rpa_interact_n": 9, "rpc5": 9, "rpc5_c": 9, "rpe65": 9, "rpel": 9, "rpgr1_c": 9, "rpm2": 9, "rpn13_c": 9, "rpn1_c": 9, "rpn1_rpn2_n": 9, "rpn2_c": 9, "rpn5_c": 9, "rpn6_c_helix": 9, "rpn6_n": 9, "rpn7": 9, "rpol_n": 9, "rps31": 9, "rpt": 9, "rpw8": 9, "rqc": 9, "rrf": 9, "rrf_gi": 9, "rrg8": 9, "rrm": 9, "rrm_1": 9, "rrm_2": 9, "rrm_3": 9, "rrm_4": 9, "rrm_5": 9, "rrm_7": 9, "rrm_8": 9, "rrm_9": 9, "rrm_dme": 9, "rrm_rrp7": 9, "rrm_occlud": 9, "rrn3": 9, "rrn9": 9, "rrp14": 9, "rrp36": 9, "rrp7": 9, "rrs1": 9, "rrt14": 9, "rrxrr": 9, "rr_tm4": 9, "rs4nt": 9, "rsb_motif": 9, "rsd": 9, "rsf": 9, "rsn1_7tm": 9, "rsn1_tm": 9, "rsrp": 9, "rss_p20": 9, "rst": 9, "rta1": 9, "rtc": 9, "rtc4": 9, "rtc_insert": 9, "rtp": 9, "rtp1_c1": 9, "rtp1_c2": 9, "rtp801_c": 9, "rtt107_brct_5": 9, "rtt107_brct_6": 9, "rttn_n": 9, "rtx": 9, "rtx_c": 9, "rt_rnaseh": 9, "rt_rnaseh_2": 9, "rvp": 9, "rvp_2": 9, "rvt_1": 9, "rvt_2": 9, "rvt_3": 9, "rvt_n": 9, "rvt_thumb": 9, "rwd": 9, "rwp": 9, "rk": 9, "rxlr": 9, "rxlr_wy": 9, "rxt2_n": 9, "rydr_itpr": 9, "r_equi_vir": 9, "rab15_effector": 9, "rab3": 9, "gap_cat_c": 9, "gtpase_cat": 9, "rab5": 9, "rabgap": 9, "tbc": 9, "rabggt_insert": 9, "rab_bind": 9, "rab_eff_c": 9, "rabaptin": 9, "rac1": 9, "raco_middl": 9, "rad1": 9, "rad10": 9, "rad17": 9, "rad21_rec8": 9, "rad21_rec8_n": 9, "rad33": 9, "rad4": 9, "rad50_zn_hook": 9, "rad51": 9, "rad52_rad22": 9, "rad54_n": 9, "rad60": 9, "sld": 9, "sld_2": 9, "rad9": 9, "rad9_rad53_bind": 9, "radc": 9, "radial_spok": 9, "radial_spoke_3": 9, "radical_sam": 9, "radical_sam_2": 9, "radical_sam_c": 9, "radical_sam_n": 9, "radical_sam_n2": 9, "raf1_hth": 9, "raf1_n": 9, "raffinose_syn": 9, "raftlin": 9, "ral": 9, "ralf_scd": 9, "ran": 9, "rangap1_c": 9, "ran_bp1": 9, "rap1_c": 9, "rap1a": 9, "rapa_c": 9, "raph_n": 9, "rap_gap": 9, "rapsyn_n": 9, "raptor_n": 9, "rasgap": 9, "rasgap_c": 9, "rasgef": 9, "rasgef_n": 9, "rasgef_n_2": 9, "ras_bdg_2": 9, "rav1p_c": 9, "rax2": 9, "rb_c": 9, "rbc": 9, "rbcx": 9, "rbpa": 9, "rbsd_fucu": 9, "rbsn": 9, "rbx_bind": 9, "rcd1": 9, "rce1": 9, "rcnb": 9, "rcpb": 9, "rcpc": 9, "rcsc": 9, "rcsd_abl": 9, "rcsf": 9, "rddm_rdm1": 9, "rdrp": 9, "rdrp_1": 9, "rdrp_2": 9, "rdrp_4": 9, "rdgc": 9, "rdx": 9, "rebb": 9, "reca": 9, "reca_dep_nuc": 9, "recc_c": 9, "recg_n": 9, "recg_dom3_c": 9, "recg_wedg": 9, "recj_ob": 9, "reco_c": 9, "reco_n": 9, "reco_n_2": 9, "recq5": 9, "recq_zn_bind": 9, "recr": 9, "recu": 9, "recx": 9, "recep_l_domain": 9, "receptor_2b4": 9, "receptor_ia": 9, "recombinas": 9, "red1": 9, "redoxin": 9, "reeler": 9, "reg_prop": 9, "regnase_1_c": 9, "regulator_trmb": 9, "rela_ah_ri": 9, "rela_spot": 9, "relb": 9, "relb_n": 9, "relb_leu_zip": 9, "relb_transactiv": 9, "rele": 9, "relaxas": 9, "remorin_c": 9, "remorin_n": 9, "renin_r": 9, "rep": 9, "a_n": 9, "repa1_lead": 9, "repa_c": 9, "repa_n": 9, "repb": 9, "rcr_reg": 9, "repb_primas": 9, "repc": 9, "repl": 9, "repsa": 9, "rep_1": 9, "rep_2": 9, "rep_3": 9, "rep_4": 9, "rep_n": 9, "rep_org_c": 9, "rep_fac": 9, "a_3": 9, "a_c": 9, "rep_fac_c": 9, "rep_tran": 9, "replic_relax": 9, "replicas": 9, "reprolysin": 9, "reprolysin_2": 9, "reprolysin_3": 9, "reprolysin_4": 9, "reprolysin_5": 9, "rer1": 9, "resb": 9, "resiii": 9, "resistin": 9, "resolvas": 9, "response_reg": 9, "response_reg_2": 9, "restrictionmuni": 9, "restrictionsfii": 9, "ret2_md": 9, "reticulon": 9, "retin": 9, "retinin_c": 9, "retro_m": 9, "retrotran_gag_2": 9, "retrotran_gag_3": 9, "retrotran_gag_4": 9, "retrotrans_gag": 9, "rexa": 9, "rexb": 9, "rft": 9, "rgp1": 9, "rgpf": 9, "rh5": 9, "rhaa": 9, "rhat": 9, "rhabdo_glycop": 9, "rhabdo_ncap": 9, "rhabdo_ncap_2": 9, "rhamno_transf": 9, "rhamnogal_lyas": 9, "rhgb_n": 9, "rhlb": 9, "rhogap": 9, "ff1": 9, "rhogap_pg1_pg2": 9, "rhogef": 9, "rhogef67_u1": 9, "rhogef67_u2": 9, "rho_bind": 9, "rho_gdi": 9, "rho_n": 9, "rho_rna_bind": 9, "rhodanes": 9, "rhodanese_c": 9, "rhodobacterpufx": 9, "rhodopsin_n": 9, "rhomboid": 9, "rhomboid_2": 9, "rhomboid_n": 9, "rhomboid_sp": 9, "rhv": 9, "rib": 9, "ribd_c": 9, "riblong": 9, "rib_5": 9, "p_isom_a": 9, "rib_hydrolays": 9, "rib_recp_kp_reg": 9, "ribo_biogen_c": 9, "ribonuc_2": 9, "5a": 9, "ribonuc_l": 9, "ribonuc_p_40": 9, "ribonuc_red_2_n": 9, "ribonuc_red_lgc": 9, "ribonuc_red_lgn": 9, "ribonuc_red_sm": 9, "ribonucleas_3_2": 9, "ribonucleas_3_3": 9, "ribonucleas": 9, "ribonuclease_3": 9, "ribonuclease_p": 9, "ribonuclease_t2": 9, "ribophorin_i": 9, "ribophorin_ii": 9, "ribos_l4_asso_c": 9, "ribosom_s12_s23": 9, "ribosom_s30ae_c": 9, "ribosomal_60": 9, "ribosomal_l1": 9, "ribosomal_l10": 9, "ribosomal_l11": 9, "ribosomal_l11_n": 9, "ribosomal_l12": 9, "ribosomal_l12_n": 9, "ribosomal_l13": 9, "ribosomal_l14": 9, "ribosomal_l15": 9, "ribosomal_l16": 9, "ribosomal_l17": 9, "ribosomal_l18": 9, "ribosomal_l18a": 9, "ribosomal_l18_c": 9, "ribosomal_l18p": 9, "ribosomal_l19": 9, "ribosomal_l2": 9, "ribosomal_l20": 9, "ribosomal_l21": 9, "ribosomal_l21p": 9, "ribosomal_l22": 9, "ribosomal_l23": 9, "ribosomal_l23en": 9, "ribosomal_l24": 9, "ribosomal_l25p": 9, "ribosomal_l26": 9, "ribosomal_l27": 9, "ribosomal_l27a": 9, "ribosomal_l27_c": 9, "ribosomal_l28": 9, "ribosomal_l29": 9, "ribosomal_l2_c": 9, "ribosomal_l3": 9, "ribosomal_l30": 9, "ribosomal_l30_n": 9, "ribosomal_l31": 9, "ribosomal_l32": 9, "ribosomal_l32p": 9, "ribosomal_l33": 9, "ribosomal_l34": 9, "ribosomal_l35a": 9, "ribosomal_l35p": 9, "ribosomal_l36": 9, "ribosomal_l37": 9, "ribosomal_l37a": 9, "ribosomal_l38": 9, "ribosomal_l39": 9, "ribosomal_l4": 9, "ribosomal_l40": 9, "ribosomal_l41": 9, "ribosomal_l44": 9, "ribosomal_l5": 9, "ribosomal_l50": 9, "ribosomal_l5_c": 9, "ribosomal_l6": 9, "ribosomal_l6e_n": 9, "ribosomal_l7a": 9, "ribosomal_l9_c": 9, "ribosomal_l9_n": 9, "ribosomal_s10": 9, "ribosomal_s11": 9, "ribosomal_s13": 9, "ribosomal_s13_n": 9, "ribosomal_s14": 9, "ribosomal_s15": 9, "ribosomal_s16": 9, "ribosomal_s17": 9, "ribosomal_s17_n": 9, "ribosomal_s18": 9, "ribosomal_s19": 9, "ribosomal_s2": 9, "ribosomal_s20p": 9, "ribosomal_s21": 9, "ribosomal_s22": 9, "ribosomal_s24": 9, "ribosomal_s25": 9, "ribosomal_s26": 9, "ribosomal_s27": 9, "ribosomal_s28": 9, "ribosomal_s30": 9, "ribosomal_s30a": 9, "ribosomal_s3a": 9, "ribosomal_s3_c": 9, "ribosomal_s4": 9, "ribosomal_s4pg": 9, "ribosomal_s5": 9, "ribosomal_s5_c": 9, "ribosomal_s6": 9, "ribosomal_s7": 9, "ribosomal_s8": 9, "ribosomal_s9": 9, "ribosomal_tl5_c": 9, "ribul_p_3_epim": 9, "ric8": 9, "ricinb_lectin_2": 9, "ricin_b_lectin": 9, "rick_17kda_anti": 9, "riesk": 9, "rieske_2": 9, "rieske_3": 9, "rif1_n": 9, "rimk": 9, "rimm": 9, "rimp_n": 9, "rimk_n": 9, "rinb": 9, "ring_hydroxyl_a": 9, "ring_hydroxyl_b": 9, "rio2_n": 9, "rippli": 9, "riss_ppd": 9, "rit1_c": 9, "rlap": 9, "rlmm_fdx": 9, "rlob": 9, "rmld_sub_bind": 9, "rmuc": 9, "rnasea": 9, "rnf": 9, "nqr": 9, "rnfc_n": 9, "rnk_n": 9, "rnla": 9, "toxin_dbd": 9, "rnla_toxin": 9, "rnla_toxin_n": 9, "rnlb_antitoxin": 9, "robl_lc7": 9, "roc": 9, "rod": 9, "rod_c": 9, "rod_cone_degen": 9, "rogdi_lz": 9, "rolb_rolc": 9, "rol_rep_n": 9, "romo1": 9, "root_cap": 9, "rootletin": 9, "rop": 9, "rossmann": 9, "rot1": 9, "rotamas": 9, "rotamase_2": 9, "rotamase_3": 9, "roughex": 9, "rox3": 9, "rpf1_c": 9, "rpn3_c": 9, "rpn9_c": 9, "rpoi": 9, "rpp20": 9, "rpr2": 9, "rraa": 9, "rrab": 9, "rrf2": 9, "rrn6": 9, "rrnaad": 9, "rrp15p": 9, "rrp40_n": 9, "rrp44_csd1": 9, "rrp44_s1": 9, "rsa3": 9, "rsaa_ntd": 9, "rsbrd_n": 9, "rsbu_n": 9, "rsbr_n": 9, "rsc14": 9, "rsda_sigd_bd": 9, "rsd_algq": 9, "rsea_c": 9, "rsea_n": 9, "rsec_mucc": 9, "rsga_gtpas": 9, "rsga_n": 9, "rsgi_n": 9, "rska": 9, "rsm1": 9, "rsm22": 9, "rsmf_methylt_ci": 9, "rsmj": 9, "rtcb": 9, "rtcr": 9, "rtec": 9, "rtf2": 9, "rtt102p": 9, "rtt106": 9, "rtt106_n": 9, "rtxa": 9, "rubisco_larg": 9, "rubisco_large_n": 9, "rubisco_smal": 9, "rubisco_chap_c": 9, "rua1_c": 9, "rubi": 9, "rubredoxin": 9, "rubredoxin_2": 9, "rubredoxin_c": 9, "rubrerythrin": 9, "runt": 9, "runxi": 9, "rusa": 9, "ruva_c": 9, "ruva_n": 9, "ruvb_c": 9, "ruvb_n": 9, "ruvc": 9, "ruvc_1": 9, "ruvc_iii": 9, "ruvx": 9, "rv0078b": 9, "rv2175c_c": 9, "rv2179c": 9, "rv2632c": 9, "rv2949c": 9, "rx_n": 9, "rxt3": 9, "ryr": 9, "rz1": 9, "adomet_synt_c": 9, "adomet_synt_m": 9, "adomet_synt_n": 9, "antigen": 9, "l_sbsc_c": 9, "layer": 9, "methyl_tran": 9, "p1_nucleas": 9, "s100pbpr": 9, "s10_plectin": 9, "s1fa": 9, "s1_2": 9, "s36_mt": 9, "s4_2": 9, "s6os1": 9, "s6pp": 9, "s6pp_c": 9, "s8_pro": 9, "saa": 9, "sab": 9, "sac3": 9, "sac3_ganp": 9, "sad_sra": 9, "sae2": 9, "saf": 9, "sag": 9, "saga": 9, "tad1": 9, "saicar_synt": 9, "sam35": 9, "samp": 9, "sam_1": 9, "sam_2": 9, "sam_3": 9, "sam_4": 9, "sam_drpa": 9, "sam_exu": 9, "sam_hat_c": 9, "sam_hat_n": 9, "sam_ksr1": 9, "sam_ksr1_n": 9, "sam_lfi": 9, "sam_mt": 9, "sam_pnt": 9, "sam_ste50p": 9, "sam_decarbox": 9, "sanbr_btb": 9, "sand": 9, "santa": 9, "sant_damp1_lik": 9, "sap": 9, "sap130_c": 9, "sap18": 9, "sap25": 9, "sap30_sin3_bdg": 9, "sapi": 9, "sap_new25": 9, "sara": 9, "saraf": 9, "sarg": 9, "sart": 9, "sa": 9, "6_n": 9, "sas4": 9, "sasa": 9, "sasp": 9, "sasp_gamma": 9, "sasrp1": 9, "sat": 9, "satase_n": 9, "saugi": 9, "sawade": 9, "saysvfn": 9, "sbbp": 9, "sbd": 9, "sbds_c": 9, "sbds_domain_ii": 9, "sbd_n": 9, "sbe2": 9, "sbf": 9, "sbf2": 9, "sbf_like": 9, "sbp": 9, "sbp56": 9, "sbp_bac_1": 9, "sbp_bac_10": 9, "sbp_bac_11": 9, "sbp_bac_3": 9, "sbp_bac_5": 9, "sbp_bac_6": 9, "sbp_bac_8": 9, "sca7": 9, "scab": 9, "abd": 9, "scab_cc": 9, "scai": 9, "scamp": 9, "scaper_n": 9, "scf": 9, "scfa_tran": 9, "scgb3a": 9, "schip": 9, "sciff": 9, "scimp": 9, "scnm1_acid": 9, "sco1": 9, "senc": 9, "scp": 9, "scp2": 9, "scp2_2": 9, "scpu": 9, "scp_3": 9, "scre": 9, "scrg1": 9, "scrl": 9, "scvp": 9, "sda1": 9, "sde2_2c": 9, "sdf": 9, "sdg2_c": 9, "sdh5_plant": 9, "sdh_c": 9, "sdh_alpha": 9, "sdh_beta": 9, "sdh_sah": 9, "sdp_n": 9, "se": [9, 14], "sea": 9, "sec": 9, "seeeed": 9, "seek1": 9, "sefir": 9, "sen1_n": 9, "senp3_5_n": 9, "seo_c": 9, "seo_n": 9, "sep": 9, "serrate_ars2_n": 9, "serta": 9, "set_assoc": 9, "sf": 9, "assemblin": 9, "sf1": 9, "hh": 9, "sf3a2": 9, "sf3a3": 9, "sf3a60_prp9_c": 9, "sf3a60_bindingd": 9, "sf3b1": 9, "sf3b10": 9, "sfta2": 9, "sfxn": 9, "sgbp_b_xbd": 9, "sgiii": 9, "sgl": 9, "sgnh": 9, "sgp": 9, "sg": 9, "sgt1": 9, "sgta_dim": 9, "sh2": 9, "sh2_2": 9, "sh3": 9, "rhog_link": 9, "ww_linker": 9, "sh3bgr": 9, "sh3bp5": 9, "sh3_1": 9, "sh3_10": 9, "sh3_11": 9, "sh3_12": 9, "sh3_13": 9, "sh3_15": 9, "sh3_16": 9, "sh3_17": 9, "sh3_18": 9, "sh3_19": 9, "sh3_2": 9, "sh3_3": 9, "sh3_4": 9, "sh3_5": 9, "sh3_6": 9, "sh3_7": 9, "sh3_9": 9, "shd1": 9, "she3": 9, "shippo": 9, "shirt": 9, "shmt": 9, "shni": 9, "tpr": 9, "shoct": 9, "shoct_2": 9, "shp": 9, "shq1": 9, "shr": 9, "shr3_chaperon": 9, "shs2_ftsa": 9, "shs2_rpb7": 9, "sica_c": 9, "sica_alpha": 9, "sica_beta": 9, "sid": 9, "1_rna_chan": 9, "sike": 9, "sil1": 9, "sim_c": 9, "sin1": 9, "sin1_ph": 9, "sip": 9, "sip1": 9, "sir2": 9, "sir2_2": 9, "sir4_sid": 9, "si": 9, "sis_2": 9, "sit": 9, "six1_sd": 9, "ska1": 9, "ska2": 9, "skg6": 9, "ski": 9, "skich": 9, "skip_snw": 9, "skn1_kre6_sbg1": 9, "sk_channel": 9, "sl4p": 9, "slac1": 9, "slain": 9, "slam": 9, "slatt_1": 9, "slatt_2": 9, "slatt_3": 9, "slatt_4": 9, "slatt_5": 9, "slatt_6": 9, "slatt_fung": 9, "slbb": 9, "slbp_rna_bind": 9, "slc12": 9, "slc25_like": 9, "slc35f": 9, "slc3a2_n": 9, "sld3": 9, "sld5_c": 9, "sled": 9, "slh": 9, "slide": 9, "slm4": 9, "slr1": 9, "sl": 9, "slt": 9, "slt_2": 9, "slt_3": 9, "slt_4": 9, "slt_l": 9, "slt_beta": 9, "slx9": 9, "sly": 9, "sm": 9, "atx": 9, "smap": 9, "smbp": 9, "smc_n": 9, "smc_nse1": 9, "smc_scpa": 9, "smc_scpb": 9, "smc_hing": 9, "smg1": 9, "smg1_n": 9, "smi1_knr4": 9, "smn": 9, "smod": 9, "smp": 9, "smp_2": 9, "smp_c2cd2l": 9, "smp_lbd": 9, "smrp1": 9, "smyle_n": 9, "snad1": 9, "snad2": 9, "snad3": 9, "snad4": 9, "snap": 9, "25": [9, 14], "snapc1": 9, "snapc2": 9, "snapc3": 9, "snapc5": 9, "snare": 9, "snare_assoc": 9, "sncaip_snca_bd": 9, "snf": 9, "snf2": 9, "rel_dom": 9, "snf2_assoc": 9, "snf5": 9, "snn_cytoplasm": 9, "snn_linker": 9, "snn_transmemb": 9, "sno": 9, "snrnp27": 9, "snurf": 9, "snx17_ferm_c": 9, "snase": 9, "soar": 9, "sobp": 9, "soc": 9, "socs_box": 9, "sog2": 9, "soga": 9, "sok": 9, "sop4": 9, "sor_snz": 9, "sossc": 9, "soti": 9, "soul": 9, "soxp": 9, "so_alpha_a3": 9, "sp24": 9, "spa": 9, "spaca7": 9, "spaca9": 9, "spam": 9, "sparc_ca_bdg": 9, "spark": 9, "spar_c": 9, "spasm": 9, "spata19": 9, "spata1_c": 9, "spata24": 9, "spata25": 9, "spata3": 9, "spata48": 9, "spata6": 9, "spata9": 9, "spatial": 9, "spc12": 9, "spc22": 9, "spc25": 9, "spdy": 9, "spect1": 9, "speg_u2": 9, "spesp1": 9, "spg4": 9, "spg48": 9, "spice": 9, "spin90_lrd": 9, "spk": 9, "spo11_lik": 9, "spo22": 9, "spob_a": 9, "spob_ab": 9, "spoc": 9, "spor": 9, "spout_mtas": 9, "spout_mtase_2": 9, "spp": 9, "spr1": 9, "spring1": 9, "sprr2": 9, "spry": 9, "spt16": 9, "spt2": 9, "spt6_acid": 9, "spt_ssu": 9, "spw": 9, "spx": 9, "sp_c": 9, "propep": 9, "sqapi": 9, "sqhop_cyclase_c": 9, "sqhop_cyclase_n": 9, "sqs_psy": 9, "sr": 9, "sr1p": 9, "sra": 9, "sra1": 9, "srap": 9, "src": 9, "srcr_2": 9, "srf": 9, "tf": 9, "sri": 9, "srp": 9, "alpha_n": 9, "srp14": 9, "srp19": 9, "srp1_tip1": 9, "srp40_c": 9, "srp54": 9, "srp54_n": 9, "srp68": 9, "srp72": 9, "srp9": 9, "srprb": 9, "srp_spb": 9, "srp_tpr_like": 9, "srr": 9, "srr1": 9, "srrm_c": 9, "srtm1": 9, "srx": 9, "ssb": 9, "ssdp": 9, "ssf": 9, "ssfa2_c": 9, "ssi": 9, "ssl_n": 9, "ssl_ob": 9, "ssp160": 9, "sspi": 9, "ssspr": 9, "51": 9, "sstk": 9, "ip": 9, "ssure": 9, "ssv1_orf_d": 9, "335": 9, "ssxrd": 9, "ssxt": 9, "ssrecog": 9, "st7": 9, "stac2_u1": 9, "stag": 9, "stald": 9, "start_2": 9, "star_dim": 9, "sta": 9, "stas_2": 9, "stat1_taz2bind": 9, "stat2_c": 9, "stat6_c": 9, "stat_alpha": 9, "stat_bind": 9, "stat_int": 9, "stata_ig": 9, "std1": 9, "ste": 9, "ste2": 9, "ste3": 9, "stello": 9, "stg": 9, "sti1": 9, "stil_n": 9, "stimat": 9, "stiv_b116": 9, "stn": 9, "stn1_2": 9, "stop": 9, "stppase_n": 9, "stt3": 9, "stt3_pglb_c": 9, "sub1_prodp9": 9, "sufbd": 9, "sufu": 9, "sufu_c": 9, "sui1": 9, "suim_assoc": 9, "sukh": 9, "sukh_5": 9, "sukh_6": 9, "sun": 9, "sur7": 9, "surf1": 9, "surf2": 9, "surf4": 9, "surf6": 9, "surnod19": 9, "suv3_c": 9, "suz": 9, "sua": 9, "sva": 9, "svip": 9, "svm_signal": 9, "svs_qk": 9, "svwc": 9, "swc7": 9, "swi": 9, "snf_ssr4_c": 9, "snf_ssr4_n": 9, "swi2_snf2": 9, "swib": 9, "swim": 9, "swirm": 9, "assoc_1": 9, "assoc_2": 9, "assoc_3": 9, "swm_repeat": 9, "syce1": 9, "sycp2_arld": 9, "sycp2_sld": 9, "syf2": 9, "sympk_pta1_n": 9, "sys1": 9, "s_100": 9, "s_2tmbeta": 9, "s_4tm": 9, "s_layer_c": 9, "s_layer_n": 9, "s_locus_glycop": 9, "s_tail_recep_bd": 9, "sa_nudix": 9, "saba_adhes": 9, "saccharop_dh_n": 9, "sacchrp_dh_c": 9, "sacchrp_dh_nadp": 9, "sad1_unc": 9, "nte_pilin": 9, "saf4_yju2": 9, "safa": 9, "saf_2tm": 9, "salp15": 9, "salt_tol_pas": 9, "sam68": 9, "yy": 9, "sapa": 9, "sapb_1": 9, "sapb_2": 9, "sapc": 9, "sar8_2": 9, "sarcoglycan_1": 9, "sarcoglycan_2": 9, "sarcolipin": 9, "sas10": 9, "sas10_utp3": 9, "sas6_cc": 9, "sasg_": 9, "satd": 9, "saw1": 9, "say1_mug180": 9, "sbcc_walker_b": 9, "sbcd_c": 9, "sbi": 9, "iv": 9, "sbma_baca": 9, "sbsc_c": 9, "sbt_1": 9, "scaffolding_pro": 9, "scda_n": 9, "scfr": 9, "scha_curd": 9, "sclerostin": 9, "scm3": 9, "scramblas": 9, "scs3p": 9, "scsc_n": 9, "scytalone_dh": 9, "sda": 9, "sde2_n_ubi": 9, "sdh5": 9, "sdh_cyt": 9, "sdia": 9, "regul": 9, "sdpa": 9, "sdpi": 9, "sdrd_b": 9, "sdrg_c_c": 9, "sds3": 9, "cys_synth_n": 9, "se_s_carri": 9, "seadorna_vp7": 9, "asp3": 9, "sec1": 9, "sec10": 9, "sec15": 9, "sec16": 9, "sec16_c": 9, "sec16_n": 9, "sec20": 9, "sec23_b": 9, "sec23_hel": 9, "sec23_trunk": 9, "sec2p": 9, "sec3": 9, "pip2_bind": 9, "sec31": 9, "sec34": 9, "sec39": 9, "sec3_c": 9, "sec3_c_2": 9, "sec5": 9, "sec6": 9, "sec61_beta": 9, "sec62": 9, "sec63": 9, "sec66": 9, "sec7": 9, "sec7_n": 9, "sec8_exocyst": 9, "seca_dead": 9, "seca_pp_bind": 9, "seca_sw": 9, "secb": 9, "secd": 9, "tm1": 9, "secd_secf": 9, "sece": 9, "secg": 9, "seciii_sope_n": 9, "secm": 9, "secm_smal": 9, "seci": 9, "sec_gg": 9, "secapin": 9, "secretin": 9, "secretin_n": 9, "secretin_n_2": 9, "secretogranin_v": 9, "securin": 9, "sedlin_n": 9, "sege_gii": 9, "seipin": 9, "sel1": 9, "sela": 9, "selb": 9, "wing_1": 9, "wing_2": 9, "wing_3": 9, "selk_selg": 9, "selo": 9, "selp_c": 9, "selp_n": 9, "selr": 9, "sel_put": 9, "seleniumbind": 9, "selenoprotein_": 9, "incomp_s1": 9, "sema": 9, "sema4f_c": 9, "semenogelin": 9, "semialdhyde_dh": 9, "semialdhyde_dhc": 9, "sen15": 9, "senesc": 9, "senescence_reg": 9, "sensor": 9, "sensor_tm1": 9, "sep15_selm": 9, "sepa": 9, "sepf": 9, "sepq": 9, "seprs_c": 9, "sepsec": 9, "sepz": 9, "septin": 9, "septum_form": 9, "seqa": [9, 15], "seqa_n": 9, "serh": 9, "ser_hydrolas": 9, "serendipity_a": 9, "serglycin": 9, "serinc": 9, "serine_rich": 9, "serpentine_r_xa": 9, "serpin": 9, "serpulina_vsp": 9, "serum_albumin": 9, "seryl_trna_n": 9, "sesa": 9, "ses_b": 9, "sex_peptid": 9, "sey1_3hb": 9, "sflap": 9, "sfi1": 9, "sfi1_c": 9, "sfsa": 9, "sfsa_n": 9, "sgf11": 9, "sgf11_n": 9, "sgo0707_n1": 9, "sgo0707_n2": 9, "sgrr_n": 9, "sgrt": 9, "shk": 9, "shadoo": 9, "shal": 9, "sharpin_ph": 9, "she2p": 9, "she9_mdm33": 9, "shigella_ospc": 9, "shikimate_dh": 9, "shikimate_dh_n": 9, "shisa": 9, "shlb": 9, "shufflon_n": 9, "shugoshin_c": 9, "shugoshin_n": 9, "siac": 9, "siah": 9, "interact_n": 9, "sial": 9, "lect": 9, "inser": 9, "sialidas": 9, "sicp": 9, "sidc_n": 9, "side_dub": 9, "side_pd": 9, "side_mart": 9, "sieb": 9, "sif": 9, "sigma54_aid": 9, "sigma54_cbd": 9, "sigma54_dbd": 9, "sigma54_activ_2": 9, "sigma54_activat": 9, "sigma70_ecf": 9, "sigma70_n": 9, "sigma70_r1_1": 9, "sigma70_r1_2": 9, "sigma70_r2": 9, "sigma70_r3": 9, "sigma70_r4": 9, "sigma70_r4_2": 9, "sigma_1": 9, "sigma_m_inh": 9, "sigma_reg_c": 9, "sigma_reg_n": 9, "silic_transp": 9, "sin3_corepress": 9, "sin3a_c": 9, "sini": 9, "sina": 9, "sipa": 9, "sipa_vb": 9, "sipho_gp157": 9, "sipho_gp37": 9, "sipho_tail": 9, "sir1": 9, "sira": 9, "sirb": 9, "sirohm_synth_c": 9, "sirohm_synth_m": 9, "siva": 9, "ski2_n": 9, "ski_sno": 9, "skp1": 9, "skp1_poz": 9, "sld3_n": 9, "sld5": 9, "sld7_c": 9, "sld7_n": 9, "slipam": 9, "slp": 9, "slpa": 9, "slr4": 9, "slu7": 9, "slx4": 9, "slyx": 9, "smakap": 9, "sm_multidrug_ex": 9, "smai": 9, "smac_diablo": 9, "smg4_upf3": 9, "smg8_smg9": 9, "smim3": 9, "smoa_sbd": 9, "smoothelin": 9, "smpa_omla": 9, "smpb": 9, "snac": 9, "snapin_pallidin": 9, "snf7": 9, "snoal": 9, "snoal_2": 9, "snoal_3": 9, "snoal_4": 9, "snoal_5": 9, "snu56_snrnp": 9, "snurportin1": 9, "snx8_bar_dom": 9, "sodot": 9, "icmss": 9, "sopb_hth": 9, "sod_cu": 9, "sod_fe_c": 9, "sod_fe_n": 9, "sod_ni": 9, "sof1": 9, "solute_trans_a": 9, "somatomedin_b": 9, "somatostatin": 9, "sopa": 9, "sopa_c": 9, "sopd": 9, "sope_gef": 9, "sorb": 9, "sororin": 9, "sortas": 9, "sortilin": 9, "vps10": 9, "sortilin_c": 9, "sorting_nexin": 9, "sox17_18_mid": 9, "soxd": 9, "sox": 9, "soxg": 9, "soxi": 9, "soxz": 9, "sox_n": 9, "dndd": 9, "sp38": 9, "spa1_c": 9, "spaa": 9, "spaa_2": 9, "spaetzl": 9, "spatacsin_c": 9, "spb1_c": 9, "spc110_c": 9, "spc24": 9, "spc29": 9, "spc42p": 9, "spc7": 9, "spdb": 9, "spefl": 9, "spec3": 9, "specificrecomb": 9, "spectrin": 9, "spectrin_lik": 9, "spem1": 9, "speriolin_c": 9, "speriolin_n": 9, "sperm_ag_he2": 9, "spermine_synt_n": 9, "spermine_synth": 9, "spexin": 9, "spheroidin": 9, "spherulin4": 9, "spidroin_masp": 9, "spidroin_n": 9, "spike_torovirin": 9, "spin": 9, "ssty": 9, "spindle_spc25": 9, "spiralin": 9, "spla": 9, "spmsyn_n": 9, "spo0a_c": 9, "spo0m": 9, "spo12": 9, "spo16": 9, "spo7": 9, "spo7_2_n": 9, "spoiiaa": 9, "spoiid": 9, "spoiie": 9, "spoiie_n": 9, "spoiiiac": 9, "spoiiiah": 9, "spoiiid": 9, "spoiim": 9, "spoiip": 9, "spoiisa_toxin": 9, "spoiisb_antitox": 9, "spoiva_atpas": 9, "spoiva_c": 9, "spoiva_middl": 9, "spooe": 9, "spou_methylas_c": 9, "spou_methylas": 9, "spou_sub_bind": 9, "spov": 9, "spovab": 9, "spovac_spovaeb": 9, "spovad": 9, "spova": 9, "spovg": 9, "spovif": 9, "spovr": 9, "spovt_c": 9, "spond_n": 9, "sporv_aa": 9, "spore": 9, "coat_cotd": 9, "coat_cotz": 9, "spore_cse60": 9, "spore_gerac": 9, "spore_gerq": 9, "spore_iii_aa": 9, "spore_iii_ab": 9, "spore_iii_a": 9, "spore_iii_af": 9, "spore_ii_r": 9, "spore_sspj": 9, "spore_yabq": 9, "spore_yh": 9, "spore_yhcn_ylaj": 9, "spore_ypjb": 9, "spore_ytfj": 9, "spore_ytrh": 9, "spore_yunb": 9, "spore_coat_coto": 9, "spore_permeas": 9, "sporozoite_p67": 9, "spot_14": 9, "spra": 9, "spra_n": 9, "sprb": 9, "sprt": 9, "sprouti": 9, "spt20": 9, "spt4": 9, "spt46": 9, "spt5": 9, "ngn": 9, "spt5_n": 9, "spua_c": 9, "spuma_a9ptas": 9, "spvb": 9, "spvd": 9, "spy1": 9, "squash": 9, "sre": 9, "srfb": 9, "srg": 9, "sseb": 9, "sseb_c": 9, "ssec": 9, "ssga": 9, "ssl1": 9, "sspb": 9, "ssph": 9, "sspk": 9, "sspn": 9, "sspo": 9, "sspp": 9, "ssu72": 9, "stanniocalcin": 9, "stap_strp_tox_c": 9, "stap_strp_toxin": 9, "staph_opine_dh": 9, "staphopain_pro": 9, "staphostatin_a": 9, "staphostatin_b": 9, "staphylcoaguls": 9, "staphylokinas": 9, "statherin": 9, "stathmin": 9, "staufen_c": 9, "staygreen": 9, "stb3": 9, "stba": 9, "stc1": 9, "ste5": 9, "ste5_c": 9, "stealth_cr1": 9, "stealth_cr2": 9, "stealth_cr3": 9, "stealth_cr4": 9, "steril": 9, "steroid_dh": 9, "sterol": 9, "sens": 9, "sterol_mt_c": 9, "stevor": 9, "stig1": 9, "stimulus_sens_1": 9, "stirrup": 9, "stk19": 9, "stm1_n": 9, "stn1": 9, "stn1_c": 9, "stomagen": 9, "stomoxyn": 9, "stonin2_n": 9, "stork_head": 9, "str_synth": 9, "strabismu": 9, "strep_sa_rep": 9, "strep_his_triad": 9, "strep_pep": 9, "streptin": 9, "immun": 9, "stress": 9, "antifung": 9, "striatin": 9, "strumpellin": 9, "sua5_c": 9, "sua5_ycio_yrdc": 9, "sublancin": 9, "subtilosin_a": 9, "suc_fer": 9, "succ_coa_lig": 9, "succ_dh_flav_c": 9, "sucrose_synth": 9, "suf": 9, "sufbd_n": 9, "sufe": 9, "sugar": 9, "sugar_tr": 9, "sugar_transport": 9, "sugarporin_n": 9, "sula": 9, "sulf_coat_c": 9, "sulf_transp": 9, "sulfakinin": 9, "sulfatase_c": 9, "sulfate_transp": 9, "sulfolobus_prn": 9, "sulfotransfer_1": 9, "sulfotransfer_2": 9, "sulfotransfer_3": 9, "sulfotransfer_4": 9, "sulfotransfer_5": 9, "sulphotransf": 9, "suppressor_apc": 9, "sura_n": 9, "sura_n_2": 9, "sura_n_3": 9, "sure": [9, 11], "surfac_d": 9, "trimer": 9, "surface_ag_2": 9, "surp": 9, "susd": 9, "like_3": 9, "susd_ragb": 9, "suse": 9, "susf_sus": 9, "sushi": 9, "sushi_2": 9, "suv3_c_1": 9, "suv3_n": 9, "svf1": 9, "svf1_c": 9, "svs_4_5_6": 9, "swi3": 9, "swi5": 9, "swi6_n": 9, "swm2": 9, "swra": 9, "sxtj": 9, "sybindin": 9, "syd": 9, "syja_n": 9, "syme_toxin": 9, "symplekin_c": 9, "synaphin": 9, "synapsin": 9, "synapsin_c": 9, "synapsin_n": 9, "synaptobrevin": 9, "synaptonemal_3": 9, "syncollin": 9, "syndecan": 9, "syntaphilin": 9, "syntaxin": 9, "18_n": 9, "5_n": 9, "syntaxin_2": 9, "synthase_beta": 9, "synuclein": 9, "syra": 9, "box_assoc": 9, "t2ss": 9, "t3ss_pil_n": 9, "t2ssb": 9, "t2ssc": 9, "t2sse": 9, "t2sse_n": 9, "t2ssf": 9, "t2ssg": 9, "t2ssi": 9, "t2ssj": 9, "t2ssk": 9, "t2ssl": 9, "t2ssm": 9, "t2ssm_b": 9, "t2ssn": 9, "t2sss_2": 9, "t2ss_puls_out": 9, "t2ssppdc": 9, "t3rm_ecop15i_c": 9, "t3ss_atpase_c": 9, "t3ss_exs": 9, "t3ss_hrpk1": 9, "t3ss_lee_assoc": 9, "t3ss_nleg": 9, "t3ss_sctl": 9, "t3ss_tc": 9, "t3ss_basalb_i": 9, "t3ss_needle_": 9, "t3ss_needle_f": 9, "t3ss_needle_reg": 9, "t3ssipb": 9, "t3schapcesa": 9, "t4bss_doth_icmk": 9, "t4bss_doti_icml": 9, "t4ss": 9, "dna_transf": 9, "t4ss_cagc": 9, "t4ss_trai": 9, "t4ss_pilin": 9, "t4_rnl2_c": 9, "t4_basepl": 9, "t4_deiodinas": 9, "t4_gp9_10": 9, "t4_tail_cap": 9, "t4bss_icm": 9, "t5orf172": 9, "t6pp_n": 9, "t6ss": 9, "scin": 9, "t6ss_fha_c": 9, "t6ss_hcp": 9, "t6ss_tssf": 9, "t6ss_tssg": 9, "t6ss_vase": 9, "t6ss_vasj": 9, "t6ss_vgr": 9, "t6ss_vipa": 9, "t6_ig_lik": 9, "t7": 9, "like_y65": 9, "like_gp12": 9, "like_gp67": 9, "t7ss_esx1_eccb": 9, "t7ss_esx_espc": 9, "ta0956": 9, "taa": 9, "ring": 9, "tacc_c": 9, "taci": 9, "crd2": 9, "tad2": 9, "taf": 9, "taf1d": 9, "taf1_suba": 9, "taf4": 9, "taf6_c": 9, "taf8_c": 9, "tafa": 9, "tafh": 9, "tafii28": 9, "tafii55_n": 9, "talpid3": 9, "tal_fsa": 9, "tal_effector": 9, "tan": 9, "tango2": 9, "tap35_44": 9, "tap42": 9, "tap_c": 9, "tas2r": 9, "tasl": 9, "tat_sign": 9, "tat_ubiq": 9, "taxi_c": 9, "taxi_n": 9, "tatt": 9, "tb": 9, "tb2_dp1_hva22": 9, "tbc1d23_c": 9, "tbca": 9, "tbcc": 9, "tbcc_n": 9, "tbd": 9, "tbk1_ccd1": 9, "tbk1_uld": 9, "tbp": 9, "tbpip": 9, "tbpip_n": 9, "tbx": 9, "tc1": 9, "tcad2": 9, "tcad3": 9, "tcad7": 9, "tcad9": 9, "tcl1_mtcp1": 9, "tco89": 9, "tcp": 9, "tcr": 9, "tcrp1": 9, "tcr_zetazeta": 9, "tctn_duf1619": 9, "tctp": 9, "tda11": 9, "tdbd": 9, "tdh": 9, "tdp43_n": 9, "tdrp": 9, "tea": 9, "ted": 9, "tedc1": 9, "ted_2": 9, "ted_compl": 9, "tena_thi": 9, "tep1_n": 9, "terb2": 9, "terf2_rbm": 9, "tert_thumb": 9, "te": 9, "tex12": 9, "tex13": 9, "tex15": 9, "tex19": 9, "tex29": 9, "tex33": 9, "tfa2_winged_2": 9, "tfb6": 9, "tfcd_c": 9, "tfiia": 9, "tfiia_gamma_c": 9, "tfiia_gamma_n": 9, "tfiib": 9, "tfiib_c_1": 9, "tfiid": 9, "18kda": 9, "31kda": 9, "tfiid_20kda": 9, "tfiid_30kda": 9, "tfiid_ntd2": 9, "tfiie": 9, "tfiie_alpha": 9, "tfiie_beta": 9, "tfiif_alpha": 9, "tfiif_beta": 9, "tfiif_beta_n": 9, "tfiiic_delta": 9, "tfiiic_sub6": 9, "tfiis_c": 9, "tfiis_m": 9, "tfr_dimer": 9, "tfx_c": 9, "tf_ap": 9, "tf_otx": 9, "tf_zn_ribbon": 9, "tgf_beta": 9, "tgf_beta_g": 9, "tgfb_propeptid": 9, "tgl": 9, "tgt": 9, "tgt_c1": 9, "tgt_c2": 9, "tgase_elicitor": 9, "th1": 9, "thap": 9, "thap4_hem": 9, "thb": 9, "thdps_m": 9, "thdps_n": 9, "thdps_n_2": 9, "theg": 9, "theg4": 9, "thf_dhg_cyh": 9, "thf_dhg_cyh_c": 9, "thh1_tom1": 9, "3_dom": 9, "thoc2_n": 9, "thoc7": 9, "thp2": 9, "thrap3_bclaf1": 9, "thump": 9, "tic20": 9, "tig": 9, "tig_2": 9, "tig_suh": 9, "tig_plexin": 9, "til": 9, "tila": 9, "tim": 9, "tim21": 9, "timeless": 9, "timeless_c": 9, "timp": 9, "tinf2_n": 9, "tip120": 9, "tip39": 9, "tip41": 9, "tip49": 9, "tip49_c": 9, "tip_n": 9, "tir": 9, "tir_2": 9, "tir_3": 9, "tk": 9, "tlc": 9, "tld": 9, "tle_n": 9, "tlp1_add_c": 9, "tlv_coat": 9, "tm140": 9, "tm1506": 9, "tm1586_nirdas": 9, "tm2": 9, "tm231": 9, "tma7": 9, "tmc": 9, "tmccdc2": 9, "tmco5": 9, "tmem100": 9, "tmem101": 9, "tmem107": 9, "tmem108": 9, "tmem117": 9, "tmem119": 9, "tmem125": 9, "tmem126": 9, "tmem127": 9, "tmem128": 9, "tmem131_lik": 9, "tmem131_like_n": 9, "tmem132": 9, "tmem132d_c": 9, "tmem132d_n": 9, "tmem135_c_rich": 9, "tmem138": 9, "tmem141": 9, "tmem144": 9, "tmem151": 9, "tmem154": 9, "tmem156": 9, "tmem164": 9, "tmem169": 9, "tmem171": 9, "tmem173": 9, "tmem174": 9, "tmem175": 9, "tmem18": 9, "tmem187": 9, "tmem190": 9, "tmem191c": 9, "tmem192": 9, "tmem206": 9, "tmem208_snd2": 9, "tmem210": 9, "tmem213": 9, "tmem214": 9, "tmem215": 9, "tmem219": 9, "tmem220": 9, "tmem232": 9, "tmem234": 9, "tmem237": 9, "tmem238": 9, "tmem239": 9, "tmem240": 9, "tmem247": 9, "tmem251": 9, "tmem252": 9, "tmem254": 9, "tmem33_pom33": 9, "tmem37": 9, "tmem40": 9, "tmem43": 9, "tmem51": 9, "tmem52": 9, "tmem61": 9, "tmem65": 9, "tmem70": 9, "tmem71": 9, "tmem72": 9, "tmem82": 9, "tmem89": 9, "tmem95": 9, "tmem_230_134": 9, "tmemspv1": 9, "c74": 9, "tmf_dna_bd": 9, "tmf_tata_bd": 9, "tmie": 9, "teni": 9, "tmpit": 9, "tmp_2": 9, "tmp_3": 9, "tmtc_duf1736": 9, "tm_pbp2_n": 9, "tm_helix": 9, "tnf": 9, "tnfr_16_tm": 9, "tnfr_c6": 9, "tnrc6": 9, "pabc_bdg": 9, "tnt": 9, "tobe": 9, "tobe_2": 9, "tobe_3": 9, "toc159_mad": 9, "toh_n": 9, "tom13": 9, "tom20_plant": 9, "tom6p": 9, "toprim_c": 9, "top_n": 9, "torc_c": 9, "torc_m": 9, "torc_n": 9, "tp1": 9, "tp2": 9, "tp53ip5": 9, "tp6a_n": 9, "tpal": 9, "tpd": 9, "tpd52": 9, "tph": 9, "tpip1": 9, "tpk_b1_bind": 9, "tpk_catalyt": 9, "tpmt": 9, "tpm_phosphatas": 9, "tpp1": 9, "tppii": 9, "tppii_n": 9, "tppk_c": 9, "tpp_enzyme_c": 9, "tpp_enzyme_m": 9, "tpp_enzyme_m_2": 9, "tpp_enzyme_n": 9, "tpr_1": 9, "tpr_10": 9, "tpr_11": 9, "tpr_12": 9, "tpr_14": 9, "tpr_15": 9, "tpr_16": 9, "tpr_17": 9, "tpr_18": 9, "tpr_19": 9, "tpr_2": 9, "tpr_20": 9, "tpr_21": 9, "tpr_22": 9, "tpr_3": 9, "tpr_4": 9, "tpr_5": 9, "tpr_6": 9, "tpr_7": 9, "tpr_8": 9, "tpr_9": 9, "tpr_mlp1_2": 9, "tpr_malt": 9, "tp": 9, "tpt": 9, "tpx2": 9, "tpx2_importin": 9, "tp_methylas": 9, "tq": 9, "tra": 9, "1_regul": 9, "tradd_n": 9, "traf6_z2": 9, "traf_birc3_bd": 9, "tram1": 9, "tram_2": 9, "tram_lag1_cln8": 9, "delta": 9, "trapp": 9, "trappc": 9, "trs85": 9, "trappc10": 9, "trappc9": 9, "trs120": 9, "trap_alpha": 9, "trap_beta": 9, "traub": 9, "trc8_n": 9, "trcf": 9, "treh_n": 9, "trf": 9, "trh": 9, "tri12": 9, "tri5": 9, "tri9": 9, "tric": 9, "trif": 9, "ntd": 9, "triqk": 9, "trl": 9, "trm": 9, "trm13": 9, "trove": 9, "trpm_tetra": 9, "trp_2": 9, "trp_n": 9, "trsp": 9, "tsc21": 9, "tsc22": 9, "tscpd": 9, "tsga13": 9, "tsgp1": 9, "tsk": 9, "tslp": 9, "tsnaxip1_n": 9, "tsnr_n": 9, "tsp1_adamt": 9, "tsp1_ccn": 9, "tsp1_spondin": 9, "tsp3_bac": 9, "tsp9": 9, "tsp_1": 9, "tsp_3": 9, "tsp_c": 9, "tsp_ntd": 9, "tsr": 9, "tssc4": 9, "tt1725": 9, "ttc3_dzip3_dom": 9, "ttc5_ob": 9, "ttc7_n": 9, "ttd": 9, "ttkrsyedq": 9, "ttl": 9, "ttr": 9, "52": 9, "ttrap": 9, "ttsslrr": 9, "tt_orf2": 9, "ttc_toxin_rep": 9, "tudor": 9, "tug": 9, "ubl1": 9, "tusc2": 9, "tutf7_u4": 9, "tutas": 9, "tya": 9, "tyw3": 9, "t_cell_tran_alt": 9, "t_hemolysin": 9, "ta0938": 9, "ta1207": 9, "tab2": 9, "tachykinin": 9, "tachylectin": 9, "tachystatin_a": 9, "tackod1": 9, "tadb_tadc_n": 9, "tade": 9, "tadf": 9, "tadz_n": 9, "tad_c": 9, "tae4": 9, "taeniidae_ag": 9, "tafi": 9, "csgc": 9, "taga": 9, "tagf_n": 9, "tai4": 9, "tail_p2_i": 9, "tail_spike_n": 9, "tail_tub": 9, "takusan": 9, "talin_middl": 9, "tam41_mmp37": 9, "tamb": 9, "tankyrase_bdg_c": 9, "tannas": 9, "tantalu": 9, "tap": 9, "tape_meas_lam_c": 9, "taq": 9, "exonuc": 9, "taqi_c": 9, "tarh": 9, "tars_c1": 9, "tash_pest": 9, "tata_b_": 9, "tatc": 9, "tatd_dnas": 9, "tau95": 9, "tau95_n": 9, "taud": 9, "taue": 9, "tautomeras": 9, "tautomerase_2": 9, "tautomerase_3": 9, "taxilin": 9, "tbpb_a": 9, "tbpb_b_d": 9, "tbpb_c": 9, "tc": 9, "tca_rbd": 9, "tca_tcb_bd": 9, "tcda_tcdb": 9, "tcda_tcdb_por": 9, "tcdb_n": 9, "tcdb_toxin_midc": 9, "tcdb_toxin_midn": 9, "tcell_cd4_c": 9, "tcf25": 9, "tcfc": 9, "tcp10_c": 9, "tcp11": 9, "tcpa": 9, "tcpe": 9, "tcpf": 9, "tcpq": 9, "tcta": 9, "tctb": 9, "tctc": 9, "tctex": 9, "tectonin": 9, "tehb": 9, "tektin": 9, "tela": 9, "telethonin": 9, "telomerase_rbd": 9, "telomere_reg": 9, "telomere_r": 9, "ten1": 9, "ten1_2": 9, "ten_n": 9, "tenui_n": 9, "terb": 9, "terb_c": 9, "terb_n": 9, "terc": 9, "terd": 9, "terl_atpas": 9, "terl_nucleas": 9, "tery_c": 9, "terminase_2": 9, "terminase_3": 9, "terminase_3c": 9, "terminase_4": 9, "terminase_5": 9, "terminase_6c": 9, "terminase_6n": 9, "terpene_syn_c_2": 9, "terpene_synth": 9, "terpene_synth_c": 9, "tetm_lead": 9, "tetr": 9, "tetr_c_1": 9, "tetr_c_10": 9, "tetr_c_11": 9, "tetr_c_12": 9, "tetr_c_13": 9, "tetr_c_14": 9, "tetr_c_15": 9, "tetr_c_16": 9, "tetr_c_17": 9, "tetr_c_18": 9, "tetr_c_19": 9, "tetr_c_2": 9, "tetr_c_20": 9, "tetr_c_21": 9, "tetr_c_22": 9, "tetr_c_23": 9, "tetr_c_24": 9, "tetr_c_25": 9, "tetr_c_26": 9, "tetr_c_27": 9, "tetr_c_28": 9, "tetr_c_29": 9, "tetr_c_3": 9, "tetr_c_30": 9, "tetr_c_31": 9, "tetr_c_32": 9, "tetr_c_33": 9, "tetr_c_34": 9, "tetr_c_35": 9, "tetr_c_36": 9, "tetr_c_37": 9, "tetr_c_38": 9, "tetr_c_4": 9, "tetr_c_5": 9, "tetr_c_6": 9, "tetr_c_7": 9, "tetr_c_8": 9, "tetr_c_9": 9, "tetr_n": 9, "tet_jbp": 9, "tet_res_lead": 9, "tetrabrachion": 9, "tetraspanin": 9, "tex_n": 9, "tex_yqgf": 9, "tfb2": 9, "tfb2_c": 9, "tfb4": 9, "tfb5": 9, "tfox_c": 9, "tfox_n": 9, "tfua": 9, "tgmic1": 9, "tgi2pp": 9, "tgpa_n": 9, "thai": 9, "thaumatin": 9, "thermopsin": 9, "thg1": 9, "thg1c": 9, "thi4": 9, "thic": 9, "thic_rad_sam": 9, "thid2": 9, "thif": 9, "thig": 9, "thii": 9, "thij_lik": 9, "thip_synth": 9, "thiw": 9, "thia_yuaj": 9, "thiamine_bp": 9, "thioesteras": 9, "thiol_cytolys_c": 9, "thiol_cytolysin": 9, "thiolase_c": 9, "thiolase_n": 9, "thiopep_pr": 9, "thioredox_dsbh": 9, "thioredoxin": 9, "thioredoxin_10": 9, "thioredoxin_11": 9, "thioredoxin_12": 9, "thioredoxin_13": 9, "thioredoxin_14": 9, "thioredoxin_15": 9, "thioredoxin_16": 9, "thioredoxin_2": 9, "thioredoxin_3": 9, "thioredoxin_4": 9, "thioredoxin_5": 9, "thioredoxin_6": 9, "thioredoxin_7": 9, "thioredoxin_8": 9, "thioredoxin_9": 9, "tho1_mos11_c": 9, "tho2": 9, "thoc2": 9, "thre": 9, "thre_2": 9, "thr_dehydrat_c": 9, "thr_synth_n": 9, "thrombin_light": 9, "tht1": 9, "thua": 9, "thump_lik": 9, "thx": 9, "thy1": 9, "thylakoidformat": 9, "thymidylat_synt": 9, "thymidylate_kin": 9, "thymopoietin": 9, "thymosin": 9, "thyroglob_assoc": 9, "thyroglobulin_1": 9, "tiam_cc_ex": 9, "tic110": 9, "tic22": 9, "tils_c": 9, "tim17": 9, "tim29": 9, "tim44": 9, "tim54": 9, "tipa": 9, "tipe": 9, "tipalpha": 9, "tir_receptor_c": 9, "tir_receptor_m": 9, "tir_receptor_n": 9, "tis11b_n": 9, "tisb_toxin": 9, "tissue_fac": 9, "titin_z": 9, "sp_n": 9, "tli4_c": 9, "tli4_n": 9, "tlp": 9, "tlr3_tmd": 9, "tma16": 9, "tmca_n": 9, "tme5_egf_lik": 9, "tmem26": 9, "tmemb_14": 9, "tmemb_161ab": 9, "tmemb_170": 9, "tmemb_185a": 9, "tmemb_18a": 9, "tmemb_40": 9, "tmemb_55a": 9, "tmemb_9": 9, "tmemb_cc2": 9, "tmob": 9, "tmp39": 9, "tmpp129": 9, "tn7_tnp_tnsa_c": 9, "tn7_tnsa": 9, "tn7_tnsc_int": 9, "tn916": 9, "xi": 9, "tna_lead": 9, "tnib": 9, "tniq": 9, "tnpb_is66": 9, "tnpv": 9, "tnpw": 9, "tnp_22_dsrbd": 9, "tnp_22_trimer": 9, "tnp_dna_bind": 9, "tnp_p_element": 9, "tnp_p_element_c": 9, "tnp_zf": 9, "ribbon_2": 9, "tnsd": 9, "tnse_c": 9, "toast_rack_n": 9, "tocopherol_cycl": 9, "tola": 9, "tola_bind_tri": 9, "tolb_n": 9, "tolb_lik": 9, "toluene_x": 9, "tom22": 9, "tom37": 9, "tom37_c": 9, "tom5": 9, "tom6": 9, "tom7": 9, "tonb_2": 9, "tonb_c": 9, "tonb_n": 9, "tonb_dep_rec": 9, "top6b_c": 9, "topo": 9, "vib_tran": 9, "topo_c_assoc": 9, "topo_zn_ribbon": 9, "topoisom_i": 9, "topoisom_i_n": 9, "topoisom_bac": 9, "toprim": 9, "toprim_2": 9, "toprim_3": 9, "toprim_4": 9, "toprim_c_rpt": 9, "toprim_crpt": 9, "toprim_n": 9, "torsin": 9, "toru": 9, "totivirus_coat": 9, "tower": 9, "hyd1": 9, "hye1": 9, "ghh": 9, "ghh2": 9, "ehhh": 9, "mptase2": 9, "mptase3": 9, "mptase4": 9, "mptase5": 9, "odyam1": 9, "paar": 9, "pl": 9, "pldmtx": 9, "reas": 9, "shh": 9, "uri2": 9, "wtip": 9, "toxb_n": 9, "toxn_toxin": 9, "jab1": 9, "deaminas": 9, "toxin_10": 9, "toxin_12": 9, "toxin_13": 9, "toxin_15": 9, "toxin_18": 9, "toxin_19": 9, "toxin_2": 9, "toxin_21": 9, "toxin_3": 9, "toxin_30": 9, "toxin_37": 9, "toxin_4": 9, "toxin_6": 9, "toxin_9": 9, "toxin_ghot_ortt": 9, "toxin_r_bind_c": 9, "toxin_r_bind_n": 9, "toxin_tolip": 9, "toxin_toxa": 9, "toxin_yhav": 9, "toxin_tran": 9, "tpcc": 9, "tr": 9, "sialidase_c": 9, "tra1_centr": 9, "tra1_r": 9, "traa": 9, "trab_prgy_gumn": 9, "trac": 9, "trac_f_iv": 9, "trad": 9, "trad_n": 9, "trae": 9, "traf": 9, "traf_2": 9, "trag": 9, "d_c": 9, "trag_n": 9, "trah": 9, "trah_2": 9, "trai": 9, "trai_2": 9, "trai_2b": 9, "trai_2_c": 9, "trak": 9, "tral": 9, "tral_transposon": 9, "tran": 9, "trao": 9, "traq": 9, "traq_transposon": 9, "trat": 9, "trau": 9, "trav": 9, "traw_n": 9, "trax": 9, "tra_m": 9, "trans_coact": 9, "trans_reg_c": 9, "transcrip_act": 9, "transcrip_reg": 9, "transcript_vp30": 9, "transferas": 9, "transferrin": 9, "transglut_c": 9, "transglut_n": 9, "transglut_cor": 9, "transglut_core2": 9, "transglut_core3": 9, "transglut_i_tm": 9, "transglut_prok": 9, "transgli": 9, "transgly_assoc": 9, "transglycosyla": 9, "transket_pyr": 9, "transketolase_c": 9, "transketolase_n": 9, "translin": 9, "transmemb_17": 9, "transp_tc5_c": 9, "transp_cyt_pur": 9, "transp_inhibit": 9, "transpeptidas": 9, "transport_merf": 9, "transpos_assoc": 9, "transposase_1": 9, "transposase_20": 9, "transposase_21": 9, "transposase_22": 9, "transposase_23": 9, "transposase_24": 9, "transposase_28": 9, "transposase_31": 9, "transposase_32": 9, "transposase_mut": 9, "transposon_tram": 9, "transthyretin": 9, "trbc": 9, "trbc_ftype": 9, "trbe": 9, "trbh": 9, "trbi": 9, "trbi_ftyp": 9, "trbk": 9, "trbl": 9, "trbl_2": 9, "trbl_3": 9, "trbm": 9, "trcr": 9, "treacl": 9, "trefoil": 9, "trehalas": 9, "trehalase_ca": 9, "bi": 9, "trehalose_ppas": 9, "trehalose_recp": 9, "trep_strep": 9, "trep_dent_lipo": 9, "treslin_n": 9, "trfa": 9, "tri3": 9, "triabin": 9, "tricho_coat": 9, "tricorn_c1": 9, "tricorn_pdz": 9, "trigger_c": 9, "trigger_n": 9, "trimer_cc": 9, "tristanin_u2": 9, "trka_c": 9, "trka_n": 9, "trka_tmd": 9, "trkh": 9, "trm112p": 9, "trm56": 9, "trm5_n": 9, "trmb": 9, "trme_n": 9, "trmk": 9, "trmo": 9, "trmo_c": 9, "trnau1ap": 9, "trns_repr_met": 9, "tropomodulin": 9, "tropomyosin": 9, "tropomyosin_1": 9, "troponin": 9, "i_n": 9, "trpbp": 9, "trpp": 9, "trp_dmat": 9, "trp_tyr_perm": 9, "trp_dioxygenas": 9, "trp_halogenas": 9, "trp_leader1": 9, "trp_leader2": 9, "trp_oprn_chp": 9, "trp_repressor": 9, "trp_ring": 9, "trp_synta": 9, "trs65": 9, "trub": 9, "trub_c": 9, "trub_c_2": 9, "trub_n": 9, "trud": 9, "trwb_aad_bind": 9, "trwc": 9, "trythra_c": 9, "tryp_alpha_amyl": 9, "tryp_inh": 9, "trypan_parp": 9, "trypan_glycop": 9, "trypan_glycop_c": 9, "trypco1": 9, "trypco2": 9, "trypsin": 9, "trypsin_2": 9, "tsad": 9, "tsae": 9, "tsc35": 9, "tsg": 9, "tsi6": 9, "tsp45i": 9, "tspo_mbr": 9, "tssc": 9, "tssd": 9, "tssn": 9, "tsso": 9, "tssr": 9, "tti2": 9, "tub": 9, "tubc_n": 9, "tub_n": 9, "tube": 9, "tuberin": 9, "tubulin": 9, "tubulin_2": 9, "tubulin_3": 9, "tubulin_c": 9, "knot": 9, "tudor_1_rapa": 9, "tudor_2": 9, "tudor_3": 9, "tudor_4": 9, "tudor_5": 9, "tudor_frx1": 9, "tudor_rapa": 9, "tup_n": 9, "turandot": 9, "tusa": 9, "tweeti": 9, "txde": 9, "ty3_capsid": 9, "tyea": 9, "tylf": 9, "tymo_coat": 9, "tyosinase_c": 9, "typeiii_rm_meth": 9, "type_iii_yscg": 9, "type_iii_yscx": 9, "type_isp_c": 9, "tyr": 9, "dna_phospho": 9, "tyrrss_c": 9, "tyr_deacylas": 9, "tyrosinas": 9, "u1snrnp70_n": 9, "u3_assoc_6": 9, "u3_snorna_assoc": 9, "u3snornp10": 9, "u5_2": 9, "snrna_bdg": 9, "u6": 9, "uaa": 9, "uae_ubl": 9, "uaf_rrn10": 9, "ub2h": 9, "uba2_c": 9, "uba_2": 9, "uba_3": 9, "uba_4": 9, "uba_5": 9, "uba_6": 9, "uba_e1_scch": 9, "ubd": 9, "ubm": 9, "ubn_ab": 9, "ubx": 9, "ubz_faap20": 9, "ubact": 9, "uch": 9, "uch_1": 9, "uch_c": 9, "uch_n": 9, "ucma": 9, "ucr_14kd": 9, "ucr_6": 9, "4kd": 9, "ucr_f": 9, "ucr_tm": 9, "ucr_uqcrx_qcr9": 9, "ucr_hing": 9, "udg": 9, "udp": 9, "g_ggtase": 9, "udpgp": 9, "udpgt": 9, "udpg_mgdp_dh": 9, "udpg_mgdp_dh_c": 9, "udpg_mgdp_dh_n": 9, "uev": 9, "ufc1": 9, "ufd1": 9, "uim": 9, "ul2": 9, "ul42": 9, "ul45": 9, "uld": 9, "um": 9, "ump1": 9, "umph": 9, "unc": 9, "79": 9, "93": 9, "unc119_bdg": 9, "unc45": 9, "central": 9, "unc80": 9, "unc80_c": 9, "unc80_n": 9, "un_npl4": 9, "upa": 9, "upar_ly6": 9, "upar_ly6_2": 9, "upa_2": 9, "upf0004": 9, "upf0014": 9, "upf0016": 9, "upf0020": 9, "upf0029": 9, "upf0047": 9, "upf0058": 9, "upf0060": 9, "upf0093": 9, "upf0102": 9, "upf0113": 9, "upf0113_n": 9, "upf0114": 9, "upf0122": 9, "upf0128": 9, "upf0137": 9, "upf0146": 9, "upf0147": 9, "upf0149": 9, "upf0154": 9, "upf0158": 9, "upf0160": 9, "upf0164": 9, "upf0167": 9, "upf0172": 9, "upf0175": 9, "upf0176_n": 9, "upf0179": 9, "upf0180": 9, "upf0181": 9, "upf0182": 9, "upf0184": 9, "upf0193": 9, "upf0203": 9, "upf0220": 9, "upf0223": 9, "upf0225": 9, "upf0227": 9, "upf0228": 9, "upf0231": 9, "upf0236": 9, "upf0239": 9, "upf0240": 9, "upf0242": 9, "upf0253": 9, "upf0257": 9, "upf0259": 9, "upf0261": 9, "upf0262": 9, "upf0270": 9, "upf0300": 9, "upf0302": 9, "upf0370": 9, "upf0444": 9, "upf0449": 9, "upf0489": 9, "upf0492": 9, "upf0506": 9, "upf0515": 9, "upf0524": 9, "upf0542": 9, "upf0547": 9, "upf0552": 9, "upf0556": 9, "upf0560": 9, "upf0561": 9, "upf0564": 9, "upf0640": 9, "upf0669": 9, "upf0688": 9, "upf0697": 9, "upf0715": 9, "upf0728": 9, "upf0730": 9, "upf0731": 9, "upf0738": 9, "upf0758_n": 9, "upf0767": 9, "upf1_1b_dom": 9, "upf1_zn_bind": 9, "uprtas": 9, "uqcc2_cbp6": 9, "uqcc3": 9, "uq_con": 9, "uro": 9, "us22": 9, "usp19_link": 9, "usp47_c": 9, "usp7_c2": 9, "usp7_icp0_bdg": 9, "usp8_dim": 9, "usp8_interact": 9, "ut": 9, "utp15_c": 9, "utp25": 9, "utra": 9, "uvb_sens_prot": 9, "uvr": 9, "uxs1_n": 9, "ub": 9, "mut7c": 9, "rnfh": 9, "ubia": 9, "ubid": 9, "ubie_methyltran": 9, "ubiq": 9, "cytc": 9, "ubiq_cyt_c_chap": 9, "ubiquitin_2": 9, "ubiquitin_3": 9, "ubiquitin_4": 9, "ubiquitin_5": 9, "ucrq": 9, "uds1": 9, "ufd2p_cor": 9, "ufm1": 9, "uma2": 9, "unbv_asp": 9, "unpair": 9, "unstab_antitox": 9, "upf2": 9, "upxz": 9, "urate_ox_n": 9, "urb2": 9, "ur": 9, "uree_c": 9, "uree_n": 9, "uref": 9, "urease_alpha": 9, "urease_beta": 9, "urease_gamma": 9, "urease_link": 9, "ureide_permeas": 9, "ureidogly_lyas": 9, "uricas": 9, "urm1": 9, "urocanas": 9, "urocanase_c": 9, "urocanase_n": 9, "uroplakin_ii": 9, "urotensin_ii": 9, "use1": 9, "usg": 9, "usher": 9, "usher_tcfc": 9, "uso1_p115_c": 9, "uso1_p115_head": 9, "usp": 9, "uspa1_rep": 9, "uspb": 9, "ustya": 9, "ustilago_m": 9, "uteroglobin": 9, "utp11": 9, "utp12": 9, "utp13": 9, "utp14": 9, "utp21": 9, "utp8": 9, "uvd": 9, "uvra_dna": 9, "uvra_int": 9, "uvrb": 9, "uvrb_int": 9, "uvrc_rnaseh_dom": 9, "uvrd": 9, "helicas": 9, "uvrd_c": 9, "uvrd_c_2": 9, "uxac": 9, "uxa": 9, "uxua": 9, "atpase_c": 9, "atpase_g": 9, "atpase_g_2": 9, "atpase_h_c": 9, "atpase_h_n": 9, "snare_c": 9, "set_cd47": 9, "v1r": 9, "v1r_c": 9, "v4r": 9, "vad1": 9, "vapb_antitox": 9, "var1": 9, "varlmgl": 9, "vas1_ld": 9, "vasp_tetra": 9, "vast": 9, "vatc": 9, "vb": 9, "vch_cass14": 9, "vcip135_n": 9, "vcpo_n": 9, "vcx_vcy": 9, "vde": 9, "vef": 9, "veg": 9, "vegfr": 9, "2_tmd": 9, "vegf_c": 9, "vesa1_n": 9, "vf530": 9, "vgcc_alpha2": 9, "vgcc_beta4aa_n": 9, "vgll4": 9, "vgpc1_c": 9, "vhl": 9, "vhl_c": 9, "vhp": 9, "vh": 9, "vid27": 9, "vid27_n": 9, "vid27_ph": 9, "vigssk": 9, "vir_n": 9, "vit": 9, "vit1": 9, "vit_2": 9, "vkg_carbox": 9, "vkor": 9, "vlpt": 9, "vma21": 9, "vmap": 9, "m0": 9, "m1": 9, "m12": 9, "m14": 9, "m15": 9, "m18": 9, "m19": 9, "m2": 9, "m4": 9, "m5": 9, "m7": 9, "m8": 9, "m9": 9, "vomi": 9, "vp1_vp3": 9, "vpdsg": 9, "vps11_c": 9, "vps13": 9, "vps13_c": 9, "vps13_mid_rpt": 9, "vps28": 9, "vps38": 9, "vps53_c": 9, "vps9": 9, "vq": 9, "vrp1": 9, "vrp3": 9, "vrr_nuc": 9, "vsg_b": 9, "vsp": 9, "vtc": 9, "vwa": 9, "vwa_2": 9, "vwa_3": 9, "vwa_3_c": 9, "vwa_cox": 9, "vwa_n": 9, "vwa_n2": 9, "vwc": 9, "vwd": 9, "v_atpase_i": 9, "v_atpase_i_n": 9, "v_atpase_prox": 9, "v_cholerae_rfbt": 9, "vac14_fab1_bd": 9, "vac14_fig4_bd": 9, "vac17": 9, "vac7": 9, "vaca": 9, "vaca2": 9, "vac_importdeg": 9, "val_trna": 9, "vana_c": 9, "vanw": 9, "vani": 9, "vanz": 9, "vanabin": 9, "vanin_c": 9, "vapb_antitoxin": 9, "vasi": 9, "vasl": 9, "vasx_n": 9, "vasculin": 9, "vasohibin": 9, "vault": 9, "vault_2": 9, "vault_3": 9, "vault_4": 9, "vbha": 9, "vel1p": 9, "velvet": 9, "vert_hs_tf": 9, "vert_il3": 9, "reg_tf": 9, "vexin": 9, "vezatin": 9, "vfa1": 9, "vg_tdu": 9, "vhr1": 9, "vicilin_n": 9, "vinculin": 9, "vint": 9, "vioe": 9, "vip3a_n": 9, "vipb": 9, "vipb_2": 9, "virarc_nucleas": 9, "virb3": 9, "virb7": 9, "virb8": 9, "virc1": 9, "virc2": 9, "vird1": 9, "vire": 9, "vire1": 9, "vire2": 9, "vire3": 9, "vire_n": 9, "virj": 9, "virk": 9, "vir_act_alpha_c": 9, "viral_rep": 9, "viral_alk_exo": 9, "viral_helicase1": 9, "virionassem_t7": 9, "virul_fac": 9, "virul_fac_brkb": 9, "virulence_rhum": 9, "virulence_fact": 9, "vitd": 9, "bind_iii": 9, "vitk2_biosynth": 9, "vit_b": 9, "sht_shell": 9, "vit_open_b": 9, "sht": 9, "vitelline_membr": 9, "vitellogenin_n": 9, "vlpa_repeat": 9, "vma12": 9, "vmethyltransf": 9, "vmethyltransf_c": 9, "voldac": 9, "voltage_clc": 9, "vps16_c": 9, "vps16_n": 9, "vps23_core": 9, "vps26": 9, "vps35": 9, "vps36": 9, "nzf": 9, "vps36_escrt": 9, "vps39_1": 9, "vps39_2": 9, "vps4_c": 9, "vps5": 9, "vps51": 9, "vps52": 9, "vps53_n": 9, "vps54": 9, "vps54_n": 9, "vps55": 9, "vps62": 9, "vps8": 9, "vpsr": 9, "vpu": 9, "vrax": 9, "vsr": 9, "vta1": 9, "vta1_c": 9, "vut_1": 9, "vwaint": 9, "w2": 9, "wac_acf1_dna_bd": 9, "wak": 9, "wak_assoc": 9, "wap": 9, "wapl": 9, "wash": 9, "4_n": 9, "7_c": 9, "7_mid": 9, "wash_wahd": 9, "wbp": 9, "wbs28": 9, "wbs_methylt": 9, "wc": 9, "wcch": 9, "wcob": 9, "wcor413": 9, "wd": 9, "like_fungi": 9, "wd40": 9, "wd40_2": 9, "wd40_3": 9, "wd40_4": 9, "wd40_alt": 9, "wd40_like": 9, "wdcp": 9, "wef": 9, "wembl": 9, "wes_acyltransf": 9, "wgg": 9, "wgr": 9, "wg_beta_rep": 9, "wh1": 9, "wh2": 9, "whamm": 9, "jmy_n": 9, "whep": 9, "whh": 9, "whim1": 9, "wi12": 9, "wif": 9, "wiyld": 9, "wkf": 9, "wlm": 9, "wnd": 9, "wpp": 9, "wrc": 9, "wrky": 9, "wrnplpnid": 9, "wrw": 9, "wsc": 9, "wsd": 9, "wsk": 9, "wslr": 9, "wsn": 9, "ws_dgat_c": 9, "wt1": 9, "wtf": 9, "wtx": 9, "wvell": 9, "ww": 9, "wwe": 9, "ww_1": 9, "ww_fch_linker": 9, "ww_like": 9, "wwamid": 9, "wxg100": 9, "wxxgxw": 9, "wyl": 9, "wyl_2": 9, "wyl_3": 9, "w_rich_c": 9, "waai": 9, "wap1": 9, "wave": 9, "wax2_c": 9, "wbp11": 9, "wbqc": 9, "wcbi": 9, "wheel": 9, "whi5": 9, "whia_n": 9, "whib": 9, "whirli": 9, "wound_ind": 9, "wtap": 9, "wx5_plaf3d7": 9, "wxl": 9, "wyosine_form": 9, "wza_c": 9, "wzt_c": 9, "wzye": 9, "wzy_c": 9, "wzy_c_2": 9, "wzz": 9, "x8": 9, "xaf1_c": 9, "xap5": 9, "xet_c": 9, "xfp": 9, "xfp_c": 9, "xfp_n": 9, "xg_ftase": 9, "xh": 9, "xk": 9, "xlf": 9, "xoo_2897": 9, "xpa_c": 9, "xpa_n": 9, "xpb_drd": 9, "xpc": 9, "xpg_i": 9, "xpg_i_2": 9, "xpg_n": 9, "xrcc1_n": 9, "xrcc4": 9, "xrn1_d1": 9, "xrn1_d2_d3": 9, "xrn1_dbm": 9, "xrn_m": 9, "xrn_n": 9, "xtbd": 9, "xyppx": 9, "xan_ur_permeas": 9, "xdhc_c": 9, "xdhc_coxi": 9, "xendou": 9, "xhla": 9, "xhoi": 9, "xin": 9, "xish": 9, "xisi": 9, "xkdw": 9, "xlink": 9, "xol": 9, "1_ghmp": 9, "xpo1": 9, "xre": 9, "xre_mbca_pars_c": 9, "xrn1_d3": 9, "xylr_n": 9, "xylo_c": 9, "y1_tnp": 9, "y2_tnp": 9, "yabbi": 9, "yaf2_rybp": 9, "yarhg": 9, "yacar": 9, "ybd": 9, "ycf90": 9, "ycii": 9, "ydg": 9, "yeat": 9, "yggt": 9, "yh": 9, "yhyh": 9, "yiegia": 9, "yif1": 9, "yjl171c_tos1_c": 9, "yjl171c_tos1_n": 9, "yl1": 9, "yl1_c": 9, "ylatt": 9, "ylp": 9, "ymf19": 9, "ymf19_c": 9, "ypeb": 9, "ysirk_sign": 9, "yth": 9, "ytv": 9, "ywfcy": 9, "y_y_i": 9, "y_phosphatas": 9, "y_phosphatase2": 9, "y_phosphatase3": 9, "yaac": 9, "yaba": 9, "yabp": 9, "yacg": 9, "yada_anchor": 9, "yada_head": 9, "yada_stalk": 9, "yae1_n": 9, "yaeq": 9, "yafo_toxin": 9, "yafq_toxin": 9, "yaia": 9, "yaio": 9, "yajc": 9, "ybab_dna_bd": 9, "ybaj": 9, "ybbr": 9, "ybco": 9, "ybei": 9, "ybfn": 9, "ybg": 9, "ybgt_yccb": 9, "ybhq": 9, "ybjm": 9, "ybjn": 9, "ybjq_1": 9, "ycao": 9, "ycao_c": 9, "ycbb": 9, "yccf": 9, "yccj": 9, "yccv": 9, "yced": 9, "yceg": 9, "yceg_bac": 9, "ycei": 9, "ycf1": 9, "ycf15": 9, "ycf34": 9, "ycf4": 9, "ycf54": 9, "ycf66_n": 9, "ycf70": 9, "ycf9": 9, "ycgl": 9, "ychf": 9, "gtpase_c": 9, "ycxb": 9, "ydas_antitoxin": 9, "ydat_toxin": 9, "ydc2": 9, "catalyt": 9, "ydfz": 9, "ydgh_bhsa": 9, "ydih": 9, "ydjc": 9, "ydjm": 9, "ydjo": 9, "ydr279_n": 9, "yeast_mt": 9, "yebf": 9, "yebg": 9, "yebo": 9, "yecm": 9, "yecr": 9, "yedd": 9, "yegs_c": 9, "yejg": 9, "yesk": 9, "yeta": 9, "yfaz": 9, "yfbr": 9, "yfbu": 9, "yfcl": 9, "yfdx": 9, "yfhd": 9, "yfhe": 9, "yfho": 9, "yfio": 9, "yfjs_yafi": 9, "yfkb": 9, "yfkd": 9, "yflt": 9, "yfmq": 9, "yfza": 9, "ygab": 9, "ygba_no": 9, "ygbb": 9, "yggl_50s_bp": 9, "ygjp": 9, "yhcg_c": 9, "yhdb": 9, "yhdx": 9, "yhfc": 9, "yhfh": 9, "yhft": 9, "yhfz_c": 9, "yhhn": 9, "yhzd": 9, "yiaab": 9, "yibe_f": 9, "yicc_n": 9, "yidb": 9, "yidc_peripla": 9, "yidd": 9, "yihi": 9, "yiid_c": 9, "yip1": 9, "yippe": 9, "mis18": 9, "yitt_membran": 9, "yjbe": 9, "yjbf": 9, "yjbh": 9, "yjbr": 9, "yjbt": 9, "yjcb": 9, "yjcq": 9, "yjcz": 9, "yjcz_2": 9, "yjdm": 9, "yjdm_zn_ribbon": 9, "yjef_n": 9, "yjej": 9, "yjfb_motil": 9, "yjgf_endoribonc": 9, "yjhx_toxin": 9, "yjzc": 9, "ykof": 9, "ykpc": 9, "ykud": 9, "ykud_2": 9, "ykui_c": 9, "ykya": 9, "ykyb": 9, "ylac": 9, "ylah": 9, "ylbd_coat": 9, "ylbe": 9, "ylih": 9, "ylmh_rbd": 9, "ylqd": 9, "ylxr": 9, "ylzj": 9, "ymaf": 9, "ymce_antitoxin": 9, "ymdb": 9, "ymgb": 9, "ymgd": 9, "ymzc": 9, "yndj": 9, "ynfe": 9, "ynib": 9, "yoap": 9, "yobh": 9, "yodl": 9, "yoeb_toxin": 9, "yojj": 9, "yoku": 9, "yold": 9, "yonk": 9, "yop": 9, "yscd_cpl": 9, "yscd_ppl": 9, "yopd": 9, "yope": 9, "yoph_n": 9, "yopx": 9, "yopt": 9, "yoqo": 9, "yorp": 9, "yos1": 9, "yos9_dd": 9, "yozd": 9, "yoze_sam_lik": 9, "ypjp": 9, "ypmt": 9, "yppf": 9, "yppg": 9, "ypsa": 9, "ypzg": 9, "ypzi": 9, "yqah": 9, "yqaj": 9, "yqai": 9, "yqbf": 9, "yqci_ycgg": 9, "yqec": 9, "yqei": 9, "yqfd": 9, "yqfq": 9, "yqgb": 9, "yqgc": 9, "yqgf": 9, "yqhg": 9, "yqhr": 9, "yqjk": 9, "yqze": 9, "yqzh": 9, "yqzl": 9, "yqzm": 9, "yrbl": 9, "phop_reg": 9, "yrhc": 9, "yrhk": 9, "yrpd": 9, "yrvl": 9, "yrzk": 9, "yrzo": 9, "ysab": 9, "ysc84": 9, "yscj_flif": 9, "yscj_flif_c": 9, "ysck": 9, "ysco": 9, "yscw": 9, "ytca": 9, "ytfj_hi0045": 9, "ytka": 9, "ytp1": 9, "ytpi": 9, "ytxc": 9, "ytxh": 9, "ytzh": 9, "yueh": 9, "yugn": 9, "yuib": 9, "yukc": 9, "yukd": 9, "yuri_gagarin": 9, "yusw": 9, "yutd": 9, "yuzl": 9, "yvbh_ext": 9, "yvfg": 9, "yvrj": 9, "ywce": 9, "ywhd": 9, "ywic": 9, "ywpf": 9, "ywqj": 9, "yxij": 9, "yycc": 9, "yych": 9, "yyci": 9, "yyzf": 9, "z1": 9, "zf": 9, "hd_dimer": 9, "zfyve21_c": 9, "zip4_domain": 9, "znrf_3_ecto": 9, "zt_dimer": 9, "zu5": 9, "zyg": 9, "11_interact": 9, "zz": 9, "zap1_zf2": 9, "zapa": 9, "zapb": 9, "zapc": 9, "zapd": 9, "zds_c": 9, "zea_mays_mudr": 9, "zein": 9, "zeta_toxin": 9, "zfx_zfy_act": 9, "zint": 9, "zincin_1": 9, "zincin_2": 9, "zip": 9, "zipa_c": 9, "zirs_c": 9, "zmiz1_n": 9, "zn": 9, "c2h2_12": 9, "ribbon_8": 9, "zn_tnp_is1": 9, "zn_tnp_is1595": 9, "zn_tnp_is91": 9, "zn_clu": 9, "zn_dep_plpc": 9, "zn_peptidas": 9, "zn_peptidase_2": 9, "zn_proteas": 9, "zn_ribbon_2": 9, "zn_ribbon_sprt": 9, "zn_ribbon_recom": 9, "znua": 9, "zona_pellucida": 9, "zoocina_trd": 9, "zot": 9, "zw10": 9, "zwilch": 9, "zwint": 9, "abig_2": 9, "agpt": 9, "pplase1": 9, "pplase2": 9, "pplase3": 9, "arib": 9, "a_dg1_n2": 9, "acvlrf1": 9, "adh_short": 9, "adh_short_c2": 9, "hel2": 9, "amfpi": 9, "bhlh": 9, "bmerb_dom": 9, "bmg1": 9, "bmg10": 9, "bmg3": 9, "bmg5": 9, "bmg6": 9, "bph_1": 9, "bph_2": 9, "bph_3": 9, "bph_4": 9, "bph_5": 9, "bph_6": 9, "bvlrf1": 9, "bzip_1": 9, "bzip_2": 9, "bzip_c": 9, "bzip_maf": 9, "bachorma_1": 9, "bachorma_2": 9, "bact": 9, "pgi_c": 9, "baerf_family10": 9, "baerf_family11": 9, "baerf_family12": 9, "baerf_family2": 9, "baerf_family3": 9, "baerf_family5": 9, "baerf_family6": 9, "baerf_family7": 9, "baerf_family8": 9, "2i13": 9, "betapix_cc": 9, "bpmoxr": 9, "bpx0": 9, "bpx1": 9, "bpx2": 9, "bpx3": 9, "bpx4": 9, "bpx5": 9, "bpx6": 9, "ski_smad_bind": 9, "cegf": 9, "cnmp_bind": 9, "cnmpbd_u2": 9, "cpla2_c2": 9, "crec_rec": 9, "cobw": 9, "cpypsa": 9, "cwf18": 9, "cwf21": 9, "datp": 9, "dgtp_pphyd": 9, "dcmp_cyt_deam_1": 9, "dcmp_cyt_deam_2": 9, "dcache_1": 9, "dcache_2": 9, "dcache_3": 9, "ddenn": 9, "dgtp_diphyd_n": 9, "dnk": 9, "dtdp_sugar_isom": 9, "dutpas": 9, "dutpase_2": 9, "dbpdz_assoc": 9, "divdnab": 9, "dsdna_bind": 9, "dsrbd2": 9, "dsrm": 9, "eif": 9, "1a": 9, "3_zeta": 9, "3c_n": 9, "4b": 9, "5_eif": 9, "eif2a": 9, "eif2_c": 9, "eif3_n": 9, "eif3_p135": 9, "eif3_subunit": 9, "eif3g": 9, "eif3h_c": 9, "eif3m_c_helix": 9, "eif_4ebp": 9, "eif_4g1": 9, "erf1_1": 9, "erf1_2": 9, "erf1_3": 9, "ectbetar2": 9, "efthoc1": 9, "efb": 9, "fn1": 9, "fn2": 9, "fn3_2": 9, "fn3_3": 9, "fn3_4": 9, "fn3_5": 9, "fn3_6": 9, "fn3_pap": 9, "fvmjab_n": 9, "fvmradsam": 9, "fvmx1": 9, "fvmx2": 9, "fvmx3": 9, "analog": 9, "fvmx5": 9, "fvmx6": 9, "fvmx7": 9, "fvmyukdl_n": 9, "gag": 9, "asp_protea": 9, "gag_pr": 9, "integr": [9, 14, 16], "gerpa": 9, "gp32": 9, "gp37_c": 9, "gp45": 9, "slide_c": 9, "gpw": 9, "hdge_amylas": 9, "hegf": 9, "hgde_n": 9, "hgde_centr": 9, "hnifk_bind": 9, "hsh3": 9, "hsac2": 9, "hemp": 9, "hnrnp_q_acd": 9, "ipgm_n": 9, "istand": 9, "ivwa": 9, "helical_n": 9, "klea_klec": 9, "lci": 9, "mcpol": 9, "mif3": 9, "mrna_cap_c": 9, "mrna_cap_enzym": 9, "mrna_decap_c": 9, "mrna_stabil": 9, "mrna_tripas": 9, "mterf": 9, "malic": 9, "mit_smpdas": 9, "mono": 9, "muhd": 9, "nec1": 9, "nlz1": 9, "nos_propel": 9, "nos_propeller_2": 9, "oligo_hpi": 9, "ox_reductase_c": 9, "p25": 9, "p31comet": 9, "p450": 9, "p47_phox_c": 9, "inducible11": 9, "patom36": 9, "padhesive_10": 9, "padhesive_11": 9, "padhesive_15": 9, "padhesive_17": 9, "padhesive_6": 9, "padhesive_8": 9, "pek499_p136": 9, "pkid": 9, "pntsase1": 9, "ppiwi_re_reas": 9, "ppiwi_re_x": 9, "ppiwi_re_i": 9, "ppiwi_re_z": 9, "pp_pnuc_1": 9, "pp_pnuc_2": 9, "prn1_helic": 9, "pxo2": 9, "34": 9, "72": 9, "pyeat": 9, "partial_cstf": 9, "peroxidas": 9, "phage_tail_n": 9, "phikz_ip": 9, "polyprenyl_synt": 9, "potato_inhibit": 9, "preset_cxc": 9, "prok_st": 9, "protein_ms5": 9, "ptarna1_toxin": 9, "putab": 9, "rompb": 9, "rrna_methylas": 9, "rrna_proc": 9, "rrna_process": 9, "rham": 9, "rve": 9, "rve_2": 9, "rve_3": 9, "s48_45": 9, "scache_2": 9, "scache_3_2": 9, "scache_3_3": 9, "scache_4": 9, "scache_lik": 9, "ssdbp": 9, "ssdbp_dbd": 9, "ssdna": 9, "exonuc_c": 9, "ssdna_dbd": 9, "ssdna_trai_n": 9, "stn_tnfrsf12a": 9, "tpilz": 9, "trna": 9, "thr_ed": 9, "synt_1": 9, "synt_1_2": 9, "synt_1b": 9, "synt_1c": 9, "synt_1c_c": 9, "synt_1d": 9, "synt_1f": 9, "synt_1g": 9, "synt_2_tm": 9, "synt_2b": 9, "synt_2c": 9, "synt_2d": 9, "synt_hi": 9, "trna_me_tran": 9, "trna_me_trans_c": 9, "trna_me_trans_m": 9, "trna_nuctran2_2": 9, "trna_nuctransf2": 9, "trna_sad": 9, "trna_u5": 9, "meth_tr": 9, "trna_anti": 9, "codon": 9, "trna_anti_2": 9, "trna_bind": 9, "trna_bind_2": 9, "trna_bind_3": 9, "trna_bind_4": 9, "trna_deacylas": 9, "trna_edit": 9, "trna_int_end_n2": 9, "trna_int_endo": 9, "trna_int_endo_n": 9, "trna_lig_cpd": 9, "trna_lig_kinas": 9, "trna_m1g_mt": 9, "trna_synt_1c_r1": 9, "trna_synt_1c_r2": 9, "trna_synt_2f": 9, "trna_synthfbeta": 9, "tifi": 9, "udenn": 9, "ubiquitin": 9, "vatp": 9, "synt_ac39": 9, "vmsa": 9, "terf": 9, "vwf_a": 9, "wnt": 9, "xrrm": 9, "ydhr": 9, "z": [9, 11], "3cxxc": 9, "3cxxc_2": 9, "4cxxc_r1": 9, "a20": 9, "acc": 9, "an1": 9, "anapc11": 9, "bed": 9, "b_box": 9, "c2h2": 9, "c2h2_10": 9, "c2h2_11": 9, "c2h2_2": 9, "c2h2_3": 9, "c2h2_3rep": 9, "c2h2_4": 9, "c2h2_6": 9, "c2h2_7": 9, "c2h2_8": 9, "c2h2_9": 9, "c2h2_aberr": 9, "c2h2_assoc": 9, "c2h2_assoc2": 9, "c2h2_assoc3": 9, "c2h2_jaz": 9, "c2hc": 9, "c2hc5": 9, "c2hcix2c": 9, "c2hc_2": 9, "c2he": 9, "c3h1": 9, "c3h2c3": 9, "c3hc": 9, "c3hc4": 9, "c3hc4_2": 9, "c3hc4_3": 9, "c3hc4_4": 9, "c3hc4_5": 9, "c3hc3h": 9, "c4h2": 9, "c4_clpx": 9, "c4_topoisom": 9, "c4pol": 9, "c5hc2": 9, "c6h2": 9, "ccch": 9, "ccch_2": 9, "ccch_3": 9, "ccch_4": 9, "ccch_6": 9, "ccch_8": 9, "cchc": 9, "cchc_2": 9, "cchc_3": 9, "cchc_4": 9, "cchc_5": 9, "cchc_6": 9, "cchh": 9, "cdgsh": 9, "cgnr": 9, "chc2": 9, "chcc": 9, "chy": 9, "crd": 9, "csl": 9, "cw": 9, "dbf": 9, "dna_pol": 9, "dnl": 9, "di19": 9, "dof": 9, "fc": 9, "flz": 9, "fpg_iler": 9, "grf": 9, "h2c2": 9, "h2c2_2": 9, "h2c2_5": 9, "h3c2": 9, "hc3": 9, "hc5hc2h": 9, "hc5hc2h_2": 9, "hypf": 9, "his_me_endon": 9, "is66": 9, "isl3": 9, "litaf": 9, "lsd1": 9, "lyar": 9, "miz": 9, "mynd": 9, "myst": 9, "mss51": 9, "ppase": 9, "nf": 9, "x1": 9, "nosip": 9, "nse": 9, "ring_10": 9, "ring_11": 9, "ring_12": 9, "ring_14": 9, "ring_15": 9, "ring_16": 9, "ring_5": 9, "ring_6": 9, "ring_7": 9, "ring_9": 9, "ring_ubox": 9, "rnphf": 9, "rrn7": 9, "rrpl_c4": 9, "rvt": 9, "ranbp": 9, "sap30": 9, "scnm1": 9, "sec23_sec24": 9, "taz": 9, "tfiiic": 9, "trm13_ccch": 9, "tim10_ddp": 9, "u1": 9, "u11": 9, "48k": 9, "ubp": 9, "ubp_var": 9, "ubr": 9, "wrnip1_ubi": 9, "zpr1": 9, "dska_trar": 9, "met": 9, "met2": 9, "nano": 9, "piccolo": 9, "primas": 9, "rbx1": 9, "ribbon_3": 9, "tcix": 9, "trcl": 9, "zf_c2h2_10": 9, "zf_c2h2_13": 9, "zf_c2h2_6": 9, "zf_c2h2_zhx": 9, "zf_c2hc_14": 9, "zf_ccch_4": 9, "zf_ccch_5": 9, "zf_copz": 9, "zf_hakai": 9, "zf_pr_knuckl": 9, "zf_rg": 9, "zf_ubz": 9, "zf_zic": 9, "zinc": 9, "ribbon_6": 9, "ribbons_6": 9, "zinc_ribbon_10": 9, "zinc_ribbon_11": 9, "zinc_ribbon_12": 9, "zinc_ribbon_13": 9, "zinc_ribbon_15": 9, "zinc_ribbon_16": 9, "zinc_ribbon_2": 9, "zinc_ribbon_4": 9, "zinc_ribbon_5": 9, "zinc_ribbon_6": 9, "zinc_ribbon_9": 9, "ribbon_14": 9, "layoutsmartdomain": 9, "smart": 9, "14_3_3": 9, "35exoc": 9, "3f5ebf": 9, "1m": 9, "53exoc": 9, "3fbf5a": 9, "3fbf9a": 9, "a1pp": 9, "a2m_n_2": 9, "3f60bf": 9, "a4_extra": 9, "533fbf": 9, "bf533f": 9, "aai": 9, "3f7abf": 9, "acr": 9, "bf443f": 9, "3fbfa2": 9, "adeamc": 9, "3f9abf": 9, "adf": 9, "bf3f92": 9, "733fbf": 9, "3f75bf": 9, "ahs1": 9, "bf473f": 9, "ahs2": 9, "3f8cbf": 9, "bf3fb8": 9, "3fbf69": 9, "9c3fbf": 9, "albumin": 9, "bf843f": 9, "623fbf": 9, "b6bf3f": 9, "b9bf3f": 9, "anx": 9, "3fbf4f": 9, "ap2ec": 9, "3f58bf": 9, "apc10": 9, "apc2": 9, "ad3fbf": 9, "8d3fbf": 9, "993fbf": 9, "bfbd3f": 9, "3fabbf": 9, "aami": 9, "aamy_c": 9, "abbf3f": 9, "3f46bf": 9, "bb3fbf": 9, "bf3f4a": 9, "3fbf7a": 9, "3fbf43": 9, "5fbf3f": 9, "88bf3f": 9, "alcb": 9, "bf8f3f": 9, "bf503f": 9, "793fbf": 9, "3f89bf": 9, "a2bf3f": 9, "bf3f67": 9, "amb_al": 9, "bf3f45": 9, "ami_2": 9, "ami_3": 9, "bf3f9b": 9, "bf9e3f": 9, "arac_e_bind": 9, "bf3f5f": 9, "arch1": 9, "563fbf": 9, "arch2": 9, "bf4d3f": 9, "43bf3f": 9, "513fbf": 9, "3fbf60": 9, "bf3f98": 9, "bf953f": 9, "3fbf9d": 9, "b41": 9, "b561": 9, "62bf3f": 9, "6ebf3f": 9, "a8bf3f": 9, "bf3f73": 9, "bbc": 9, "bbox": 9, "b63fbf": 9, "b33fbf": 9, "3fbfa5": 9, "77bf3f": 9, "bhl": 9, "bid_1": 9, "bid_2": 9, "3fbf6c": 9, "85bf3f": 9, "blvr": 9, "bpi1": 9, "3f97bf": 9, "bpi2": 9, "3f44bf": 9, "3fbf63": 9, "bright": 9, "bf673f": 9, "3fbfa8": 9, "brlz": 9, "3fbfb1": 9, "bromo": 9, "bfb83f": 9, "79bf3f": 9, "bf7e3f": 9, "bf3f8d": 9, "65bf3f": 9, "bf3fac": 9, "6bbf3f": 9, "823fbf": 9, "3f69bf": 9, "3f92bf": 9, "bowb": 9, "bfa93f": 9, "3f7dbf": 9, "c345c": 9, "48bf3f": 9, "7cbf3f": 9, "ca": 9, "9cbf3f": 9, "cadg": 9, "9fbf3f": 9, "calcitonin": 9, "cap10": 9, "3fbf71": 9, "3fbf7d": 9, "carp": 9, "cash": 9, "873fbf": 9, "casc": 9, "a13fbf": 9, "cbd_ii": 9, "6b3fbf": 9, "cbd_iv": 9, "bf3f78": 9, "bf8c3f": 9, "3f55bf": 9, "cbm_x": 9, "ccp": 9, "b3bf3f": 9, "bf863f": 9, "3fb1bf": 9, "cenpb": 9, "bf6a3f": 9, "chk": 9, "bf3fb2": 9, "bf5e3f": 9, "clect": 9, "clh": 9, "763fbf": 9, "cla": 9, "3fbabf": 9, "clb": 9, "cnx": 9, "bf3f7e": 9, "bfa33f": 9, "bf3f81": 9, "cpdc": 9, "7f3fbf": 9, "3f94bf": 9, "903fbf": 9, "csf2": 9, "csp": 9, "ct": 9, "bf3fbb": 9, "ctn": 9, "3f4fbf": 9, "853fbf": 9, "cy": 9, "b93fbf": 9, "cycc": 9, "bf3f70": 9, "bf893f": 9, "calx_beta": 9, "bf6f3f": 9, "card_trcf": 9, "bfaf3f": 9, "chsh": 9, "chtbd1": 9, "68bf3f": 9, "chtbd2": 9, "chtbd3": 9, "93bf3f": 9, "bfa03f": 9, "bfa63f": 9, "connexin_ccc": 9, "bf3f56": 9, "3fbf66": 9, "54bf3f": 9, "cu_fist": 9, "bf3f5c": 9, "aa3fbf": 9, "3fa3bf": 9, "cxxc_cxxc_ssss": 9, "cyan": 9, "cyspc": 9, "3fb4bf": 9, "dagka": 9, "dagkc": 9, "3f9dbf": 9, "dax": 9, "bf553f": 9, "57bf3f": 9, "3f52bf": 9, "3f49bf": 9, "5f3fbf": 9, "653fbf": 9, "bf583f": 9, "defsn": 9, "dexdc": 9, "82bf3f": 9, "bf5b3f": 9, "disin": 9, "dm10": 9, "dm11": 9, "dm14": 9, "b03fbf": 9, "dm15": 9, "dm16": 9, "bf3fa4": 9, "dm3": 9, "bf3f87": 9, "dm5": 9, "5dbf3f": 9, "dm6": 9, "7c3fbf": 9, "dm7": 9, "dm8": 9, "dm9": 9, "dnaseic": 9, "3f86bf": 9, "3fbf49": 9, "duf1041": 9, "duf106": 9, "bf3f61": 9, "duf1086": 9, "duf1220": 9, "duf1237": 9, "3f80bf": 9, "duf1693": 9, "3fbf91": 9, "duf1713": 9, "duf1716": 9, "be3fbf": 9, "duf1741": 9, "bf3f9e": 9, "duf1767": 9, "duf1785": 9, "duf1856": 9, "duf1900": 9, "3f6cbf": 9, "duf1943": 9, "duf1944": 9, "3fbfbc": 9, "duf3454": 9, "bfac3f": 9, "duf3585": 9, "duf3635": 9, "duf4205": 9, "duf4206": 9, "bf6c3f": 9, "duf663": 9, "duf862": 9, "dwa": 9, "bf723f": 9, "dwb": 9, "3fbf57": 9, "dync": 9, "bf3f47": 9, "doh": 9, "a5bf3f": 9, "3fbf97": 9, "dysfc": 9, "b0bf3f": 9, "dysfn": 9, "ecsit_cterm": 9, "3fbfb7": 9, "3fbf8e": 9, "bf3f84": 9, "efh": 9, "egf_lam": 9, "egf_lik": 9, "eh": 9, "bf3f8a": 9, "endo3c": 9, "epend": 9, "eph_lbd": 9, "exoiii": 9, "ez_heat": 9, "bf9b3f": 9, "elp3": 9, "40bf3f": 9, "esv_1_7": 9, "933fbf": 9, "fa58c": 9, "683fbf": 9, "fabd": 9, "fas1": 9, "3f78bf": 9, "fbg": 9, "fbox": 9, "3fbf9f": 9, "96bf3f": 9, "bf3fa1": 9, "fh": 9, "fimac": 9, "423fbf": 9, "3f4cbf": 9, "fri": 9, "3fbf80": 9, "9f3fbf": 9, "fu": 9, "bf413f": 9, "703fbf": 9, "3fbf86": 9, "fn3_like": 9, "3fbf83": 9, "bf3f53": 9, "3fbf4c": 9, "4ebf3f": 9, "a43fbf": 9, "gal4": 9, "3fbf5d": 9, "71bf3f": 9, "3fbf74": 9, "gel": 9, "ggl": 9, "gha": 9, "ghb": 9, "gida_assoc_3": 9, "git": 9, "giyc": 9, "glect": 9, "gluca": 9, "gran": 9, "7fbf3f": 9, "bfb23f": 9, "g_alpha": 9, "g_gamma": 9, "g_patch": 9, "453fbf": 9, "glyco_10": 9, "glyco_18": 9, "glyco_25": 9, "glyco_32": 9, "gukc": 9, "h15": 9, "h2a": 9, "a73fbf": 9, "h2b": 9, "h3": 9, "h4": 9, "hdac_interact": 9, "hectc": 9, "helicc": 9, "3fbfb9": 9, "3fbf8b": 9, "hmg17": 9, "hnhc": 9, "hn": 9, "holi": 9, "hox": 9, "hsf": 9, "hth_arsr": 9, "hth_crp": 9, "hth_dtxr": 9, "hth_gntr": 9, "hth_laci": 9, "hth_luxr": 9, "hth_marr": 9, "hth_merr": 9, "hth_xre": 9, "httm": 9, "hx": 9, "hydro": 9, "3fbfae": 9, "haem_oxygenase_2": 9, "haemagg_act": 9, "haemolyt": 9, "hhh1": 9, "hhh2": 9, "3fbdbf": 9, "hintc": 9, "hintn": 9, "hormr": 9, "ib": 9, "963fbf": 9, "ienr1": 9, "ienr2": 9, "bf3faf": 9, "ifabd": 9, "ig_flmn": 9, "bfba3f": 9, "igc1": 9, "igc2": 9, "igv": 9, "il4_13": 9, "74bf3f": 9, "ilweq": 9, "inb": 9, "5abf3f": 9, "ippc": 9, "3fbf6e": 9, "iro": 9, "ilgf": 9, "3fbf88": 9, "int_bpp": 9, "int_brujita": 9, "bf813f": 9, "int_ctndot": 9, "int_d": 9, "int_p2": 9, "int_sxt": 9, "int_tn916": 9, "int_alpha": 9, "bf643f": 9, "integron": 9, "jab_mpn": 9, "3fbf77": 9, "bf753f": 9, "k167r": 9, "3fbf52": 9, "kat11": 9, "kazal": 9, "kh": 9, "kisc": 9, "3fbf46": 9, "bf3f50": 9, "kelch": 9, "bf3f6d": 9, "knot1": 9, "ku78": 9, "3f3fbf": 9, "bf3f76": 9, "lag1_dnabind": 9, "ldla": 9, "lh2": 9, "liganc": 9, "bfbf3f": 9, "lon": 9, "lpd_n": 9, "lrr_cc": 9, "lrr_ri": 9, "lrr_typ": 9, "lrrcap": 9, "lu": 9, "lyz1": 9, "lyz2": 9, "lamg": 9, "lamgl": 9, "lamnt": 9, "m16c_associ": 9, "bf3faa": 9, "madf": 9, "md": 9, "mr_mle": 9, "mutsac": 9, "mutsd": 9, "mysc": 9, "bf3f90": 9, "metrc": 9, "n2227": 9, "nat_pep": 9, "nebu": 9, "neuz": 9, "nl": 9, "nosic": 9, "nuc194": 9, "orang": [9, 14], "osteo": 9, "483fbf": 9, "p4hc": 9, "pa2c": 9, "3fbfb4": 9, "pam": 9, "3f8fbf": 9, "pan_ap": 9, "bf923f": 9, "3f83bf": 9, "3f63bf": 9, "pbpb": 9, "pbpe": 9, "3fa9bf": 9, "pgam": 9, "pgrp": 9, "phb": 9, "pi3kc": 9, "pint": 9, "pinc": 9, "pipkc": 9, "3f41bf": 9, "pks_at": 9, "pks_dh": 9, "pks_er": 9, "pks_kr": 9, "pks_k": 9, "pks_mt": 9, "pks_pp": 9, "pks_pp_betabranch": 9, "pks_te": 9, "plcxc": 9, "plcyc": 9, "plec": 9, "4e3fbf": 9, "plp": 9, "pol3bc": 9, "polac": 9, "polbc": 9, "poliiiac": 9, "polxc": 9, "pop4": 9, "pp2ac": 9, "pp2c_sig": 9, "pp2cc": 9, "prof": 9, "bf613f": 9, "prp": 9, "3fa6bf": 9, "psa": 9, "psn": 9, "ptbi": 9, "pth": 9, "pti": 9, "ptn": 9, "3f6fbf": 9, "ptpc": 9, "ptpc_dspc": 9, "ptpc_motif": 9, "bf3fa7": 9, "ptx": 9, "pug": 9, "bf783f": 9, "pbh1": 9, "pept_c1": 9, "phbp": 9, "phna_zn_ribbon": 9, "plsc": 9, "plus3": 9, "polya": 9, "postset": 9, "preset": 9, "pumilio": 9, "rab": 9, "rec": 9, "rho": 9, "rhod": 9, "riboc": 9, "ricin": 9, "bf983f": 9, "rio": 9, "rl11": 9, "rnase_pc": 9, "rpol4c": 9, "rpol8c": 9, "rpol9": 9, "rpola_n": 9, "rpolcx": 9, "rpold": 9, "rpr": 9, "6d3fbf": 9, "99bf3f": 9, "ranbd": 9, "rapamycin_bind": 9, "rasgefn": 9, "3f72bf": 9, "3fa0bf": 9, "8ebf3f": 9, "3fbfab": 9, "ritb": 9, "ritc": 9, "sam": 9, "sam_hd_adjac": 9, "sant": 9, "sar": 9, "scy": 9, "sec14": 9, "sfm": 9, "sh3b": 9, "signal": 9, "snc": 9, "spec": 9, "8a3fbf": 9, "sti": 9, "stykc": 9, "s_tk_x": 9, "s_tkc": 9, "sapb": 9, "bf7b3f": 9, "shkt": 9, "spc7_n": 9, "spovt_abrb": 9, "synn": 9, "tbox": 9, "tdu": 9, "tecpr": 9, "tfs2m": 9, "tfs2n": 9, "tgfb": 9, "tgc": 9, "thn": 9, "adbf3f": 9, "thy": 9, "tldc": 9, "tnfr": 9, "tog": 9, "top1ac": 9, "top1bc": 9, "top2c": 9, "top4c": 9, "topeuc": 9, "trash": 9, "45bf3f": 9, "tr_fer": 9, "tr_thy": 9, "tsp1": 9, "tspn": 9, "tspc": 9, "ty": 9, "tbf5": 9, "telo_bind": 9, "thiol": 9, "ester_cl": 9, "tn7_tnp_tnsa_n": 9, "tnpa": 9, "tnpr": 9, "8bbf3f": 9, "3f66bf": 9, "tryp_spc": 9, "tyrkc": 9, "ua": 9, "uba_e1_c": 9, "ubcc": 9, "ubq": 9, "bf3fb5": 9, "utg": 9, "ubox": 9, "bcbf3f": 9, "vkc": 9, "why": 9, "wnt1": 9, "wr1": 9, "xpgi": 9, "4bbf3f": 9, "xpgn": 9, "xtalbg": 9, "xer": 9, "bf3f6a": 9, "yqgfc": 9, "zm": 9, "zp": 9, "zalpha": 9, "znf_a20": 9, "znf_an1": 9, "znf_bed": 9, "znf_c2c2": 9, "3fbf40": 9, "znf_c2h2": 9, "bf3f59": 9, "znf_c2hc": 9, "znf_c3h1": 9, "znf_c4": 9, "znf_cdgsh": 9, "znf_chcc": 9, "znf_dbf": 9, "znf_gata": 9, "znf_nfx": 9, "znf_pmz": 9, "znf_rbz": 9, "znf_rad18": 9, "znf_taz": 9, "znf_ttf": 9, "znf_u1": 9, "znf_ubp": 9, "znf_ubr1": 9, "znf_zz": 9, "znmc": 9, "zn_pept": 9, "bf3f4d": 9, "acidppc": 9, "alkppc": 9, "btg1": 9, "cnmp": 9, "cas1": 9, "eif1a": 9, "eif2b_5": 9, "eif5c": 9, "eif6": 9, "fcbd": 9, "huh_y1": 9, "huh_y2": 9, "ser_c": 9, "ser_lsr": 9, "ser_tn": 9, "small_gtpas": 9, "t_snare": 9, "layoutbestnam": 9, "best_nam": 9, "best": [9, 10, 14, 15], "layoutbigg": 9, "bigg": 9, "layoutcard": 9, "layoutcazi": 9, "cazi": 9, "layoutevolev": 9, "speciation_color": 9, "blue": [9, 14], "duplication_color": 9, "red": [9, 14], "layoutkeggenzym": 9, "kegg_enzym": 9, "kegg": 9, "enzym": 9, "layoutkeggmodul": 9, "kegg_modul": 9, "11": [9, 15, 17], "layoutkeggnumb": 9, "kegg_numb": 9, "layoutkeggpathwai": 9, "kegg_pathwai": 9, "pathwai": 9, "layoutlastcommonancestor": 9, "rect_width": 9, "1000": [9, 11], "shown": [9, 14, 15], "get_color": 9, "layoutpdb": 9, "pdb": 9, "layoutproteinnam": 9, "prot_nam": 9, "layoutscientificnam": 9, "layoutetediffdist": 9, "diff": 9, "diff_node_color": 9, "a50000": 9, "diff_node_s": 9, "layouthumanog": 9, "og": 9, "human_orth_prop": 9, "human_orth": 9, "6b92d6": 9, "layoutucsc": 9, "ucsc": 9, "nodecolor": 9, "800000": 9, "nodes": 9, "textcolor": 9, "c43b5d": 9, "layoutucsctran": 9, "ucsc_trans_prop": 9, "ucsc_tran": 9, "get_layout_evoltyp": 9, "get_layout_gnam": 9, "get_layout_lca_rect": 9, "get_layout_ogs_egg5": 9, "get_layout_scinam": 9, "layoutalign": 9, "700": 9, "summarize_inner_nod": 9, "layoutautonam": 9, "auto": 9, "text_color": 9, "grei": 9, "layoutcuratednam": 9, "layouteukog": 9, "euk": 9, "layoutpreferrednam": 9, "fb3640": 9, "layoutscinam": 9, "layoutse": 9, "seed": 9, "layoutbarplot": 9, "200": [9, 14], "size_prop": 9, "color_prop": 9, "color_gradi": 9, "taxdump_fil": 10, "transpar": [10, 14, 16], "connector": 10, "connect": [10, 11, 16, 17], "system": [10, 14], "download": [10, 15, 16], "site": 10, "annotate_tre": [10, 16], "deriv": [10, 14], "get_broken_branch": 10, "taxa_lineag": 10, "n2content": 10, "monophylet": [10, 11, 17], "well": [10, 15, 17], "affect": [10, 11, 14, 15, 17], "experiment": 10, "get_common_nam": 10, "get_descendant_taxa": [10, 16], "intermediate_nod": [10, 16], "rank_limit": 10, "collapse_subspeci": [10, 16], "return_tre": [10, 16], "get_fuzzy_name_transl": 10, "sim": 10, "score": [10, 15, 17], "taxa": [10, 13], "similar": [10, 16, 17], "exact": [10, 15, 17], "report": [10, 16], "get_lineag": [10, 16], "hierarch": [10, 11, 14, 17], "get_lineage_transl": 10, "get_name_transl": [10, 16], "get_rank": [10, 16], "get_taxid_transl": [10, 16], "try_synonym": 10, "get_topologi": [10, 16], "complet": [10, 14, 15, 17], "kept": [10, 11, 14, 16, 17], "otherwis": [10, 11, 15], "rid": 10, "strain": 10, "upper": [10, 17], "translate_to_nam": [10, 16], "update_taxonomy_databas": [10, 16], "latest": [10, 16], "taxdump": [10, 16], "tar": [10, 16], "gz": [10, 16], "locat": [10, 14, 17], "tax": 10, "gtdb": [10, 13], "get_name_lineag": 10, "taxnam": 10, "anoth": [10, 11, 17], "gtdbtaxdump": 10, "consist": [11, 16, 17], "hampshir": [11, 17], "add_child": [11, 17], "supli": 11, "add_children": 11, "add_face_smartview": 11, "attach": [11, 14, 15], "posibl": 11, "bottom": [11, 14], "add_face_treeview": 11, "behind": 11, "add_featur": 11, "pr_name": 11, "pr_valu": 11, "add_prop": [11, 14, 17], "add_sist": [11, 17], "sister": [11, 17], "include_root": 11, "up": [11, 13, 14, 17], "check_monophyli": [11, 17], "unroot": 11, "is_monophylet": 11, "clade_typ": 11, "leaves_extra": 11, "being": [11, 15, 17], "monophyli": [11, 13], "collapsed_fac": 11, "ref_tre": 11, "use_collater": 11, "min_support_sourc": 11, "min_support_ref": 11, "has_dupl": 11, "expand_polytomi": 11, "max_treeko_splits_to_be_artifact": 11, "ref_tree_attr": 11, "source_tree_attr": 11, "robinson": 11, "fould": 11, "symmetr": 11, "share": [11, 16, 17], "edg": [11, 17], "cophenetic_matrix": 11, "cophenet": 11, "matrix": 11, "gist": 11, "github": [11, 16], "279f9009f46bf675e3a890c19191158b": 11, "orderless": 11, "Then": 11, "xor": 11, "both": [11, 14, 15, 17], "those": [11, 15], "One": [11, 14, 17], "optim": 11, "sinc": [11, 15, 16, 17], "itself": [11, 17], "itertool": 11, "combin": [11, 13, 15, 16], "rather": [11, 15, 16], "permut": 11, "our": [11, 14, 15, 17], "theta": 11, "great": 11, "realiti": 11, "speed": [11, 15], "thing": 11, "dimension": 11, "order": [11, 14, 15, 16, 17], "cpickl": [11, 17], "protocol": 11, "serialis": [11, 17], "thu": [11, 14, 15, 17], "exclud": [11, 17], "As": [11, 15, 17], "whole": [11, 14, 15, 16, 17], "clone": [11, 17], "slower": [11, 17], "recommend": [11, 17], "deepcopi": [11, 17], "slowest": [11, 17], "complex": [11, 17], "even": [11, 14, 15, 16, 17], "etc": [11, 14], "del_featur": 11, "perman": 11, "del_prop": [11, 17], "prop_nam": [11, 17], "prevent_nondicotom": 11, "preserve_branch_length": [11, 17], "transfer": [11, 17], "until": 11, "occur": 11, "among": [11, 15, 17], "to_str": [11, 15, 16, 17], "levelord": [11, 17], "detach": 11, "conserv": 11, "mechan": 11, "past": [11, 17], "pair": [11, 14, 15], "lai": 11, "pass": [11, 14, 15, 17], "won": 11, "recomput": 11, "map_prop": 11, "polytomy_size_limit": 11, "skip_large_polytomi": 11, "solut": [11, 17], "multifurc": [11, 13], "polytomi": [11, 17], "pleas": 11, "binari": 11, "grow": [11, 17], "exponenti": 11, "feasibl": 11, "105": [11, 14], "945": 11, "10395": 11, "135135": 11, "2027025": 11, "ajmonlin": 11, "2010": 11, "darwin": 11, "show_branch_length": [11, 14], "show_branch_support": [11, 14], "launch": 11, "session": [11, 14], "__name__": [11, 14], "adress": 11, "static": [11, 14], "from_parent_child_t": 11, "parent_child_t": 11, "tabl": [11, 14], "relationship": [11, 15, 17], "from_skbio": 11, "skbio_tre": 11, "map_attribut": 11, "scikit": 11, "bio": 11, "treenod": 11, "from_skibio": 11, "skbiotre": 11, "get_cached_cont": [11, 17], "container_typ": 11, "leaves_onli": 11, "serv": [11, 16], "cach": [11, 13], "And": [11, 14, 15, 17], "themselv": [11, 17], "get_children": 11, "get_closest_leaf": 11, "closest": 11, "get_dist": [11, 17], "node1": [11, 17], "node2": [11, 17], "target": [11, 17], "target2": 11, "get_farthest_leaf": [11, 17], "get_farthest_nod": [11, 17], "get_midpoint_outgroup": [11, 17], "divid": 11, "get_monophylet": [11, 17], "consid": [11, 15, 17], "exclus": [11, 17], "get_sist": 11, "get_topology_id": 11, "bunch": 11, "without": [11, 15, 17], "befor": [11, 14, 17], "hop": 11, "img_styl": [11, 14], "_get_styl": 11, "init_from_et": 11, "init_from_newick": 11, "is_collaps": 11, "_get_collaps": 11, "is_initi": 11, "_get_initi": 11, "is_root": [11, 17], "iter_prepostord": 11, "postord": [11, 17], "visit": [11, 17], "leaf_nam": [11, 14], "phonehom": 11, "pop_child": 11, "child_idx": 11, "retain": 11, "minimum": 11, "remove_child": [11, 17], "exit": 11, "longer": [11, 14], "remove_children": 11, "remove_sist": 11, "file_nam": 11, "dpi": [11, 14], "90": [11, 14], "imag": [11, 13], "svg": [11, 14], "pdf": [11, 14], "png": [11, 14], "mm": [11, 14, 15], "millimet": [11, 14], "inch": [11, 14], "resolut": [11, 14], "per": [11, 14, 15], "resolve_polytomi": [11, 17], "recurs": [11, 17], "resolv": 11, "arbitrari": [11, 14], "dicotom": 11, "later": [11, 14, 17], "reject": 11, "reverse_children": 11, "robinson_fould": [11, 17], "prop_t1": 11, "prop_t2": 11, "unrooted_tre": [11, 17], "correct_by_polytomy_s": 11, "min_support_t1": 11, "min_support_t2": 11, "rf_max": [11, 17], "edges_t1": 11, "edges_t2": 11, "discarded_edges_t1": 11, "discarded_edges_t2": 11, "expand": [11, 17], "absolut": [11, 15], "search_ancestor": [11, 17], "condit": [11, 17], "search_descend": [11, 17], "search_leaves_by_nam": [11, 17], "search_nod": [11, 15, 17], "set_styl": [11, 14], "node_styl": [11, 14], "doubl": 11, "_get_sm_styl": 11, "sort_descend": 11, "delete_orphan": 11, "swap_children": 11, "show_intern": [11, 15, 17], "compact": [11, 17], "py": [11, 14], "px0": 11, "waterfal": 11, "three": [11, 15, 17], "breadth": 11, "bf": 11, "depth": [11, 17], "df": 11, "preorder": [11, 17], "legaci": 11, "appli": [11, 14, 15, 16, 17], "remain": [11, 17], "just": [11, 15, 17], "drop": 11, "understand": 13, "faster": [13, 15], "lookup": 13, "concaten": 13, "solv": 13, "midpoint": 13, "overview": 13, "taxonom": [13, 16], "date": 13, "aspect": 13, "highli": 14, "although": [14, 15, 17], "predefin": [14, 15], "instal": 14, "easili": [14, 15, 16, 17], "scratch": 14, "through": [14, 15, 16, 17], "four": 14, "graph": [14, 17], "normal": [14, 15, 16, 17], "control": [14, 17], "built": [14, 15, 17], "gui": [14, 17], "invok": 14, "fulli": [14, 16], "interfac": 14, "simpli": 14, "advantag": 14, "interrupt": 14, "continu": 14, "execut": 14, "made": 14, "quit": 14, "special": [14, 17], "dure": 14, "directli": [14, 17], "while": [14, 15, 16], "raster": 14, "pictur": 14, "modif": 14, "determin": [14, 17], "regard": [14, 17], "adjust": [14, 15], "break": 14, "ratio": 14, "183": 14, "choos": 14, "circular_styl": 14, "document": [14, 15], "increas": 14, "120": 14, "branch_vertical_margin": 14, "adjac": 14, "semi": 14, "circumfer": 14, "arc_start": 14, "clock": 14, "arc_span": 14, "hello": 14, "equal": [14, 17], "nstyle": 14, "darkr": 14, "cccccc": 14, "must": [14, 17], "moment": [14, 17], "foreground": 14, "let": [14, 15, 17], "now": [14, 15, 17], "export": [14, 17], "replic": 14, "fly": [14, 15], "extern": [14, 17], "geometr": 14, "molecular": [14, 15], "sequencefac": 14, "heatmap": 14, "profilefac": 14, "area": 14, "around": 14, "below": [14, 17], "hola": 14, "mundo": 14, "pile": 14, "abov": [14, 15, 17], "face_grid_tutori": 14, "onc": [14, 15, 16, 17], "recycl": 14, "apart": 14, "config": 14, "permit": 14, "margin": 14, "border": 14, "here": [14, 15, 17], "veri": [14, 17], "margin_top": 14, "margin_right": 14, "margin_left": 14, "margin_bottom": 14, "inner_bord": 14, "lightgreen": 14, "sent": 14, "understood": [14, 17], "rule": 14, "abc_layout": 14, "vowel": [14, 17], "alreadi": [14, 16, 17], "probabl": 14, "get_example_tre": 14, "time": [14, 15, 16, 17], "design": [14, 17], "bold": 14, "0f0f0f": 14, "ff0000": 14, "style1": 14, "style2": 14, "0000aa": 14, "__main__": 14, "Or": [14, 17], "400": 14, "lightsteelblu": 14, "nst2": 14, "moccasin": 14, "nst3": 14, "darkseagreen": 14, "nst4": 14, "khaki": 14, "a3": 14, "b4": 14, "c3": 14, "n3": 14, "n4": 14, "root_opening_factor": 14, "node_background": 14, "dre": 14, "008339": 14, "dme": [14, 15], "300613": 14, "596401": 14, "cfa": [14, 15], "640858": 14, "753230": 14, "182035": 14, "106234": 14, "271621": 14, "046042": 14, "953250": 14, "061813": 14, "110769": 14, "204419": 14, "973467": 14, "humanfac": 14, "mousefac": 14, "mous": [14, 15], "dogfac": 14, "dog": [14, 15], "chimpfac": 14, "chimp": [14, 15], "fishfac": 14, "fish": [14, 15], "flyfac": 14, "readi": 14, "namefac": 14, "009000": 14, "convers": [14, 16], "real": [14, 15], "code2nam": [14, 15], "drosophila": [14, 15], "melanogast": [14, 15], "danio": 14, "rerio": 14, "homo": [14, 15, 16], "sapien": [14, 15, 16], "troglodyt": [14, 15, 16], "musculu": [14, 15, 16], "cani": [14, 15], "familiari": [14, 15], "code2desc": 14, "zebrafish": 14, "known": 14, "tropic": 14, "freshwat": 14, "belong": [14, 15], "minnow": 14, "cyprinida": 14, "insect": [14, 17], "diptera": 14, "possess": 14, "wing": 14, "mesothorax": 14, "halter": 14, "metathorax": 14, "member": 14, "biped": 14, "primat": [14, 15, 16, 17], "hominida": [14, 16], "chimpanze": 14, "sometim": [14, 17], "colloqui": 14, "extant": 14, "genu": [14, 16], "mammal": [14, 15], "rodent": 14, "lupu": 14, "domest": 14, "subspeci": [14, 16], "wolf": 14, "canida": 14, "ordercarnivora": 14, "mylayout": 14, "longnamefac": 14, "multilin": 14, "descfac": 14, "len": [14, 17], "enumer": 14, "startswith": [14, 15], "elif": [14, 15], "aa0000": 14, "9db0cf": 14, "final": [14, 17], "img_fac": 14, "600": 14, "weight": 14, "proport": 14, "royalblu": 14, "randint": 14, "manual": 14, "bubble_map": 14, "300": 14, "treefac": 14, "small_t": 14, "laef": 14, "tree_fac": 14, "aqak": 14, "ikgskkaikvfssa": 14, "aperlqeygsiftda": 14, "glqrrprhriqsk": 14, "alqeklkdfpvcvstkpepeddaeeglgglpsn": 14, "issvsslllfnttenlykkyvfldplag": 14, "thvmlgaeteeklfdaplsiskreqleqqvpenyfyvpd": 14, "lgqvpeidvpsylpdlpgiandlmyiadlgpgiapsapgtipelptfhtevaeplkvgelgsgmgagpgtp": 14, "ahtpssldtphfvfqtykmgapplppstaapvgqgarqddssssaspsvqgaprevvdpsggwatllesir": 14, "qaggigkaklrsmkerklekqqqkeqeqvratsqgghl": 14, "msdlfnklvmrrkgisgkgpgagdgpggafa": 14, "rvsdsipplpppqqpqaed": 14, "mixed_motif": 14, "rgradient": 14, "arial": 14, "white": 14, "long": [14, 17], "101": 14, "150": 14, "pink": 14, "155": 14, "purpl": [14, 17], "160": 14, "190": 14, "yellow": [14, 17], "191": 14, "201": 14, "250": 14, "brown": 14, "351": 14, "370": 14, "gold": 14, "420": 14, "compactseq": 14, "simple_motif": 14, "box_motif": 14, "85": 14, "green": [14, 17], "110": 14, "125": 14, "blank": 14, "tree_width": 14, "seq_motif_fac": 14, "plai": 14, "colorsi": 14, "pyqt6": 14, "qtcore": 14, "qtgui": 14, "qcolor": 14, "qpen": 14, "qbrush": 14, "qtwidget": 14, "qgraphicsrectitem": 14, "qgraphicssimpletextitem": 14, "qgraphicsellipseitem": 14, "interactiveitem": 14, "super": 14, "setcursor": 14, "pointinghandcursor": 14, "setacceptshoverev": 14, "hoverenterev": 14, "With": [14, 17], "hide": 14, "dynamicitemfac": 14, "setparentitem": 14, "ensur": 14, "zvalu": 14, "setzvalu": 14, "setbrush": 14, "settext": 14, "setrect": 14, "boundingrect": 14, "setvis": 14, "hoverleaveev": 14, "random_color": 14, "hue": 14, "luminos": 14, "satur": 14, "hls_to_rgb": 14, "02x": 14, "255": 14, "ugly_name_fac": 14, "master": [14, 17], "qgraphicsitem": 14, "masteritem": 14, "doc": 14, "No": 14, "setpen": 14, "nopen": 14, "ellips": 14, "tw": 14, "th": 14, "setpo": 14, "master_li": 14, "itemfac": 14, "constructor": [14, 17], "next": [14, 17], "forward": 14, "view": [14, 17], "most": [15, 16, 17], "homolog": 15, "deal": [15, 17], "ancestr": 15, "direct": 15, "consequ": 15, "applic": 15, "unalign": 15, "mai": [15, 17], "fasta_txt": 15, "maeipdetiqqfmalt": 15, "hniavqylsefgtddikdrreeah": 15, "seqb": 15, "maeipdatiqqfmaltnvshniavqi": 15, "efgtddqkdrreeah": 15, "seqc": 15, "maeipdatiq": 15, "altnvshniavqylsefgtddqpdrreeah": 15, "seqd": 15, "maeapdetiqqfmaltnvshniavqylsefg": 15, "reeah": 15, "strict": [15, 17], "perfect": 15, "hniavqylsefgdlnealnsyyasqtddikdrreeah": 15, "efgdlnealnsyyayqtddqkdrreeah": 15, "altnvshniavqylsefgdlnealnsyyasqtddqpdrreeah": 15, "maeapdetiqqfmaltnvshniavqylsefgdln": 15, "iphylip_txt": 15, "76": 15, "maeipdetiq": 15, "qfmalt": 15, "niavqylsef": 15, "gdlnealnsi": 15, "yasqtddikd": 15, "rreeahqfma": 15, "qfmaltnvsh": 15, "niavqi": 15, "yayqtddqkd": 15, "altnvsh": 15, "yasqtddqpd": 15, "maeapdetiq": 15, "gdlneal": 15, "reeahq": 15, "ltnvshqfma": 15, "ltnvsh": 15, "fma": 15, "usual": [15, 16, 17], "fmaltnvsh": 15, "altnvshniavqylsefgdlnealnsyyasqtddqpdrreeahqfmaltnvsh": 15, "hniavqylsefgdlnealnsyyasqtddikdrreeahqfmaltnvshqfmaltnvsh": 15, "efgdlnealnsyyayqtddqkdrreeahqfmaltnvsh": 15, "hniavqylsefgdlnealnsyyasqtddikdrreeahqf": 15, "maltnvshqfmaltnvsh": 15, "efgdlnealnsi": 15, "yayqtddqkdrreeahqfmaltnvsh": 15, "altnvshnia": 15, "vqylsefgdlnealnsyyasqtddqpdrreeahqfmaltnvsh": 15, "maeapd": 15, "etiqqfmaltnvshniavqylsefgdln": 15, "reload": 15, "sametre": 15, "recov": 15, "benefit": 15, "conveni": [15, 16, 17], "alg": 15, "dme_001": 15, "hniavqylsefgdln": 15, "yyasqtddikdrreeah": 15, "dme_002": 15, "cfa_001": 15, "mms_001": 15, "hsa_001": 15, "ptr_002": 15, "fmaltnvshniavqi": 15, "yqtddqkdrreeah": 15, "mmu_002": 15, "hsa_002": 15, "maeapdetiqqfm": 15, "ltnvshniavqylsefgdln": 15, "mmu_001": 15, "ptr_001": 15, "gene_tree_nw": 15, "species_tree_nw": 15, "mmu": 15, "genetre": 15, "sptree": 15, "recon_tre": 15, "separ": [15, 17], "obtain": [15, 17], "often": [15, 17], "establish": [15, 17], "behavior": 15, "get_species_nam": 15, "node_name_str": 15, "underscor": 15, "spcode": 15, "disabl": [15, 17], "overwriten": 15, "mynewick": 15, "charleston": 15, "1997": 15, "paralogi": 15, "houben": 15, "2009": 15, "threshold": 15, "rise": 15, "human_seq": 15, "join": 15, "interest": [15, 17], "filter": [15, 17], "fseq": 15, "slist": 15, "besid": 15, "predict": 15, "labl": 15, "explain": 15, "strictli": [15, 17], "taxonomic_info": 15, "fir": 15, "inparalog": 15, "ortholog": 15, "outparalog": 15, "notic": 15, "state": 15, "addition": [15, 17], "phylo": 15, "paralog": 15, "similarli": [15, 17], "therefor": [15, 17], "certain": [15, 17], "precis": 15, "approach": [15, 16, 17], "synonym": 15, "rate": 15, "proxi": 15, "diverg": 15, "al": 15, "kalinka": 15, "2001": 15, "aim": 15, "gradient": 15, "vertebr": 15, "categori": 15, "orangutan": 15, "relative_dist": 15, "non": 15, "rat": 15, "purpos": 15, "humana": 15, "chimpa": 15, "dup1": 15, "humanb": 15, "chimpb": 15, "mousea": 15, "dup3": 15, "humanc": 15, "chimpc": 15, "dup2": 15, "humand": 15, "ratc": 15, "mousec": 15, "distant": [15, 17], "lett": 15, "hsa_003": 15, "hsa_004": 15, "ptr_004": 15, "mmu_004": 15, "older": 15, "hominid": 15, "macaca": 15, "mulata": 15, "metazoa": [15, 16, 17], "correspondig": 15, "age2nam": 15, "event1": 15, "event2": 15, "lead": 15, "vari": 15, "assist": [15, 17], "autodetect": 15, "useless": 15, "observ": 15, "subpart": [15, 17], "becaus": 15, "combinatori": 15, "background": 15, "enorm": 15, "few": 15, "hundr": 15, "ten": 15, "thousand": 15, "human_1": 15, "chimp_1": 15, "human_2": 15, "chimp_2": 15, "chimp_3": 15, "fish_1": 15, "human_3": 15, "fish_3": 15, "yeast_2": 15, "yeast_1": 15, "yeast": [15, 17], "ignor": [15, 16], "ntree": 15, "ndup": 15, "spt": 15, "map_featur": 15, "effici": [15, 16], "significantli": 15, "much": 15, "simpler": 15, "previou": [15, 17], "ncbi_taxonomi": 16, "gtdb_taxonomi": 16, "offer": 16, "vice": 16, "versa": 16, "fetch": 16, "comprehens": [16, 17], "organ": 16, "daili": 16, "portal": 16, "releas": 16, "dmp": 16, "taxon": 16, "taxonomyi": 16, "numer": 16, "commonli": [16, 17], "signifi": 16, "entiti": 16, "genet": 16, "9606": 16, "On": 16, "distribut": 16, "sqlite": 16, "fullfil": 16, "step": [16, 17], "essenti": [16, 17], "v4": 16, "third": [16, 17], "parti": 16, "nick": 16, "youngblut": 16, "gtdb_to_taxdump": 16, "emploi": 16, "preprar": 16, "attempt": 16, "600mb": 16, "72mb": 16, "skip": 16, "dengzq1234": 16, "gtdbdump": 16, "202": 16, "gtdb202dump": 16, "input": [16, 17], "taxid2nam": 16, "9443": 16, "name2taxid": 16, "bacteria": 16, "629395": 16, "further": 16, "131567": 16, "2759": 16, "33154": 16, "33208": 16, "6072": 16, "33213": 16, "33511": 16, "7711": 16, "89593": 16, "7742": 16, "7776": 16, "117570": 16, "117571": 16, "8287": 16, "1338369": 16, "32523": 16, "32524": 16, "40674": 16, "32525": 16, "9347": 16, "1437010": 16, "314146": 16, "376913": 16, "314293": 16, "9526": 16, "314295": 16, "9604": 16, "207598": 16, "9605": 16, "cellular": 16, "eukaryota": 16, "opisthokonta": 16, "eumetazoa": 16, "bilateria": 16, "deuterostomia": 16, "chordata": 16, "craniata": 16, "vertebrata": 16, "gnathostomata": 16, "teleostomi": 16, "euteleostomi": 16, "sarcopterygii": 16, "dipnotetrapodomorpha": 16, "tetrapoda": 16, "amniota": 16, "mammalia": 16, "theria": 16, "eutheria": 16, "boreoeutheria": 16, "euarchontoglir": 16, "haplorrhini": 16, "simiiform": 16, "catarrhini": 16, "hominoidea": 16, "hominina": 16, "These": [16, 17], "doesn": 16, "ve": 16, "introduc": 16, "facilit": [16, 17], "offici": 16, "recogn": 16, "easier": 16, "heidelbergensi": 16, "ssp": 16, "denisova": 16, "neanderthalensi": 16, "environment": 16, "sampl": 16, "2665952": 16, "2665953": 16, "1425170": 16, "unclassifi": 16, "2813598": 16, "2813599": 16, "f__thorarchaeacea": 16, "gb_gca_003662765": 16, "gb_gca_003662805": 16, "gb_gca_013138615": 16, "s__mp8t": 16, "sp002825535": 16, "sp003345545": 16, "s__tekir": 16, "sp004524435": 16, "g__mp8t": 16, "sp002825465": 16, "sp004524565": 16, "sp004524595": 16, "s__smtz1": 16, "83": 16, "sp011364985": 16, "g__smtz1": 16, "sp011365025": 16, "sp001563325": 16, "g__tekir": 16, "sp004524445": 16, "g__shmx01": 16, "s__shmx01": 16, "sp008080745": 16, "s__owc5": 16, "sp003345595": 16, "g__owc5": 16, "f__tho": 16, "sp003345555": 16, "g__jacael01": 16, "s__jacael01": 16, "sp013388835": 16, "g__b65": 16, "g9": 16, "s__b65": 16, "sp003662765": 16, "sp001563335": 16, "sp011364905": 16, "sp001940705": 16, "sp004376265": 16, "sp002825515": 16, "g__wtck01": 16, "s__wtck01": 16, "sp013138615": 16, "smallest": 16, "9598": 16, "10090": 16, "7707": 16, "8782": 16, "dendrochirotida": 16, "subfamili": 16, "superord": 16, "av": 16, "p__huberarchaeota": 16, "o__peptococcal": 16, "f__korarchaeacea": 16, "phylum": 16, "d__archaea": 16, "superkingdom": 16, "p__thermoproteota": 16, "c__korarchaeia": 16, "o__korarchaeal": 16, "d__bacteria": 16, "p__firmicutes_b": 16, "c__peptococcia": 16, "addit": [16, 17], "sibl": 16, "rememb": 16, "prota": 16, "protb": 16, "emul": 17, "formal": 17, "acycl": 17, "convent": 17, "down": 17, "superior": 17, "longest": 17, "downward": 17, "topmost": 17, "Being": 17, "begin": 17, "reach": 17, "bottommost": 17, "inner": 17, "portion": 17, "togeth": 17, "compris": 17, "entir": 17, "proper": 17, "analogi": 17, "term": 17, "subset": 17, "entail": 17, "consider": 17, "constant": 17, "nest": 17, "parenthes": 17, "nevertheless": 17, "uncommon": 17, "variat": 17, "definit": 17, "construct": 17, "cool": 17, "high": 17, "did": 17, "familiar": 17, "less": 17, "genes_tre": 17, "notat": 17, "new_tre": 17, "success": 17, "practic": 17, "distinct": 17, "concept": 17, "hang": 17, "review": 17, "moreov": 17, "smaller": 17, "latter": 17, "strongli": 17, "reliabl": 17, "bootstrap": 17, "syntax": 17, "exist": 17, "conceptu": 17, "That": 17, "rooted_tre": 17, "navig": 17, "explanatori": 17, "scheme": 17, "lower": 17, "boolean": 17, "decid": 17, "becom": 17, "cd": 17, "node2label": 17, "collapsed_leaf": 17, "sai": 17, "deepest": 17, "larger": 17, "abcd": 17, "efg": 17, "processable_nod": 17, "Will": 17, "along": 17, "node3": 17, "cannot": 17, "statement": 17, "search_by_s": 17, "40": 17, "handi": 17, "matches2": 17, "append": 17, "poli": 17, "phylet": 17, "inde": 17, "paraphylet": 17, "nor": 17, "polyphylet": 17, "signific": 17, "slowdown": 17, "instantan": 17, "node2leav": 17, "ancestor_jfc": 17, "confid": 17, "nodetyp": 17, "overwrit": 17, "is_vowel": 17, "aeiou": 17, "But": 17, "higher": 17, "long_branch_nod": 17, "precomput": 17, "conf": 17, "enclos": 17, "bracket": 17, "plain": 17, "www": 17, "phylosoft": 17, "adh2": 17, "adh1": 17, "05": 17, "adhi": 17, "nematod": 17, "adhx": 17, "adh4": 17, "09": 17, "adh3": 17, "13": 17, "fungi": 17, "tag": 17, "averag": 17, "max_rf": 17, "norm_rf": 17, "effective_tree_s": 17, "ref_edges_in_sourc": 17, "source_edges_in_ref": 17, "source_subtre": 17, "common_edg": 17, "source_edg": 17, "ref_edg": 17, "treeko_dist": 17, "metric": 17, "examin": 17, "discard": 17, "mention": 17, "parts_t1": 17, "parts_t2": 17, "total": 17, "tree2": 17, "were": 17, "tree1": 17, "hold": 17, "partial": 17, "Such": 17, "orphan": 17, "never": 17, "unless": 17, "ok": 17, "r6": 17, "r2": 17, "r3": 17, "r4": 17, "r5": 17, "disconnect": 17, "action": 17, "contrast": 17, "removed_nod": 17, "unnecessari": 17, "hot": 17, "freeli": 17, "serious": 17, "care": 17, "mistak": 17, "intric": 17, "serial": 17, "internal_1": 17, "internal_2": 17, "lose": 17, "lost": 17, "_0_": 17, "1_": 17, "_2_": 17, "3_": 17, "bifurc": 17, "realli": 17, "softwar": 17, "intact": 17, "polynod": 17, "techniqu": 17, "polar": 17, "basal": 17, "crucial": 17, "prior": 17, "differenti": 17, "count": 17, "obvious": 17, "brother": 17, "opposit": 17, "Of": 17, "cours": 17, "toplog": 17, "incorpor": 17, "occurr": 17}, "objects": {"ete4": [[10, 0, 1, "", "GTDBTaxa"], [10, 0, 1, "", "NCBITaxa"], [7, 0, 1, "", "PhyloTree"], [11, 0, 1, "", "Tree"]], "ete4.GTDBTaxa": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "annotate_tree"], [10, 1, 1, "", "get_broken_branches"], [10, 1, 1, "", "get_common_names"], [10, 1, 1, "", "get_descendant_taxa"], [10, 1, 1, "", "get_lineage"], [10, 1, 1, "", "get_lineage_translator"], [10, 1, 1, "", "get_name_lineage"], [10, 1, 1, "", "get_name_translator"], [10, 1, 1, "", "get_rank"], [10, 1, 1, "", "get_taxid_translator"], [10, 1, 1, "", "get_topology"], [10, 1, 1, "", "translate_to_names"], [10, 1, 1, "", "update_taxonomy_database"]], "ete4.NCBITaxa": [[10, 1, 1, "", "__init__"], [10, 1, 1, "", "annotate_tree"], [10, 1, 1, "", "get_broken_branches"], [10, 1, 1, "", "get_common_names"], [10, 1, 1, "", "get_descendant_taxa"], [10, 1, 1, "", "get_fuzzy_name_translation"], [10, 1, 1, "", "get_lineage"], [10, 1, 1, "", "get_lineage_translator"], [10, 1, 1, "", "get_name_translator"], [10, 1, 1, "", "get_rank"], [10, 1, 1, "", "get_taxid_translator"], [10, 1, 1, "", "get_topology"], [10, 1, 1, "", "translate_to_names"], [10, 1, 1, "", "update_taxonomy_database"]], "ete4.PhyloTree": [[7, 1, 1, "", "__init__"], [7, 1, 1, "", "annotate_gtdb_taxa"], [7, 1, 1, "", "annotate_ncbi_taxa"], [7, 1, 1, "", "collapse_lineage_specific_expansions"], [7, 1, 1, "", "get_age"], [7, 1, 1, "", "get_age_balanced_outgroup"], [7, 1, 1, "", "get_descendant_evol_events"], [7, 1, 1, "", "get_farthest_oldest_leaf"], [7, 1, 1, "", "get_farthest_oldest_node"], [7, 1, 1, "", "get_my_evol_events"], [7, 1, 1, "", "get_speciation_trees"], [7, 1, 1, "", "get_species"], [7, 1, 1, "", "iter_species"], [7, 1, 1, "", "link_to_alignment"], [7, 1, 1, "", "ncbi_compare"], [7, 1, 1, "", "reconcile"], [7, 1, 1, "", "set_species_naming_function"], [7, 2, 1, "", "species"], [7, 1, 1, "", "split_by_dups"], [7, 1, 1, "", "write"]], "ete4.Tree": [[11, 1, 1, "", "__init__"], [11, 1, 1, "", "add_child"], [11, 1, 1, "", "add_children"], [11, 1, 1, "", "add_face"], [11, 1, 1, "", "add_face_smartview"], [11, 1, 1, "", "add_face_treeview"], [11, 1, 1, "", "add_feature"], [11, 1, 1, "", "add_features"], [11, 1, 1, "", "add_prop"], [11, 1, 1, "", "add_props"], [11, 1, 1, "", "add_sister"], [11, 1, 1, "", "ancestors"], [11, 1, 1, "", "check_monophyly"], [11, 3, 1, "", "children"], [11, 3, 1, "", "collapsed_faces"], [11, 1, 1, "", "common_ancestor"], [11, 1, 1, "", "compare"], [11, 1, 1, "", "cophenetic_matrix"], [11, 1, 1, "", "copy"], [11, 1, 1, "", "del_feature"], [11, 1, 1, "", "del_prop"], [11, 1, 1, "", "delete"], [11, 1, 1, "", "descendants"], [11, 1, 1, "", "describe"], [11, 1, 1, "", "detach"], [11, 3, 1, "", "dist"], [11, 1, 1, "", "edges"], [11, 1, 1, "", "expand_polytomies"], [11, 1, 1, "", "explore"], [11, 3, 1, "", "faces"], [11, 1, 1, "", "from_parent_child_table"], [11, 1, 1, "", "from_skbio"], [11, 1, 1, "", "get_cached_content"], [11, 1, 1, "", "get_children"], [11, 1, 1, "", "get_closest_leaf"], [11, 1, 1, "", "get_distance"], [11, 1, 1, "", "get_farthest_leaf"], [11, 1, 1, "", "get_farthest_node"], [11, 1, 1, "", "get_midpoint_outgroup"], [11, 1, 1, "", "get_monophyletic"], [11, 1, 1, "", "get_prop"], [11, 1, 1, "", "get_sisters"], [11, 1, 1, "", "get_topology_id"], [11, 3, 1, "", "id"], [11, 2, 1, "", "img_style"], [11, 1, 1, "", "init_from_ete"], [11, 1, 1, "", "init_from_newick"], [11, 2, 1, "", "is_collapsed"], [11, 2, 1, "", "is_initialized"], [11, 3, 1, "", "is_leaf"], [11, 1, 1, "", "is_monophyletic"], [11, 3, 1, "", "is_root"], [11, 1, 1, "", "iter_prepostorder"], [11, 1, 1, "", "ladderize"], [11, 1, 1, "", "leaf_names"], [11, 1, 1, "", "leaves"], [11, 3, 1, "", "level"], [11, 1, 1, "", "lineage"], [11, 3, 1, "", "name"], [11, 1, 1, "", "phonehome"], [11, 1, 1, "", "pop_child"], [11, 1, 1, "", "populate"], [11, 3, 1, "", "props"], [11, 1, 1, "", "prune"], [11, 1, 1, "", "remove_child"], [11, 1, 1, "", "remove_children"], [11, 1, 1, "", "remove_sister"], [11, 1, 1, "", "render"], [11, 1, 1, "", "resolve_polytomy"], [11, 1, 1, "", "reverse_children"], [11, 1, 1, "", "robinson_foulds"], [11, 3, 1, "", "root"], [11, 1, 1, "", "search_ancestors"], [11, 1, 1, "", "search_descendants"], [11, 1, 1, "", "search_leaves_by_name"], [11, 1, 1, "", "search_nodes"], [11, 1, 1, "", "set_outgroup"], [11, 1, 1, "", "set_style"], [11, 1, 1, "", "show"], [11, 3, 1, "", "size"], [11, 2, 1, "", "sm_style"], [11, 1, 1, "", "sort_descendants"], [11, 1, 1, "", "standardize"], [11, 3, 1, "", "support"], [11, 1, 1, "", "swap_children"], [11, 1, 1, "", "to_str"], [11, 1, 1, "", "to_ultrametric"], [11, 1, 1, "", "traverse"], [11, 1, 1, "", "unroot"], [11, 3, 1, "", "up"], [11, 1, 1, "", "write"]], "ete4.clustering": [[4, 4, 0, "-", "clustertree"]], "ete4.clustering.clustertree": [[4, 0, 1, "", "ClusterTree"]], "ete4.clustering.clustertree.ClusterTree": [[4, 1, 1, "", "__init__"], [4, 2, 1, "", "deviation"], [4, 1, 1, "", "get_dunn"], [4, 1, 1, "", "get_silhouette"], [4, 2, 1, "", "intercluster_dist"], [4, 2, 1, "", "intracluster_dist"], [4, 1, 1, "", "leaf_profiles"], [4, 1, 1, "", "link_to_arraytable"], [4, 2, 1, "", "profile"], [4, 1, 1, "", "set_distance_function"], [4, 2, 1, "", "silhouette"]], "ete4.core": [[5, 4, 0, "-", "operations"], [8, 4, 0, "-", "seqgroup"]], "ete4.core.operations": [[5, 0, 1, "", "Walker"], [5, 5, 1, "", "assert_root_consistency"], [5, 5, 1, "", "common_ancestor"], [5, 5, 1, "", "insert_intermediate"], [5, 5, 1, "", "join_branch"], [5, 5, 1, "", "ladderize"], [5, 5, 1, "", "maybe_convert_internal_nodes_to_support"], [5, 5, 1, "", "move"], [5, 5, 1, "", "populate"], [5, 5, 1, "", "rehang"], [5, 5, 1, "", "remove"], [5, 5, 1, "", "set_outgroup"], [5, 5, 1, "", "sort"], [5, 5, 1, "", "swap_props"], [5, 5, 1, "", "to_ultrametric"], [5, 5, 1, "", "update_size"], [5, 5, 1, "", "update_sizes_all"], [5, 5, 1, "", "update_sizes_from"], [5, 5, 1, "", "walk"]], "ete4.core.operations.Walker": [[5, 1, 1, "", "add_next_branch"], [5, 2, 1, "", "first_visit"], [5, 1, 1, "", "go_back"], [5, 2, 1, "", "has_unvisited_branches"], [5, 2, 1, "", "node"], [5, 2, 1, "", "node_id"]], "ete4.core.seqgroup": [[8, 0, 1, "", "SeqGroup"]], "ete4.core.seqgroup.SeqGroup": [[8, 1, 1, "", "__init__"], [8, 1, 1, "", "get_entries"], [8, 1, 1, "", "get_seq"], [8, 1, 1, "", "iter_entries"], [8, 1, 1, "", "set_seq"], [8, 1, 1, "", "write"]], "ete4.parser": [[6, 4, 0, "-", "newick"], [6, 4, 0, "-", "nexus"]], "ete4.parser.newick": [[6, 6, 1, "", "NewickError"], [6, 5, 1, "", "content_repr"], [6, 5, 1, "", "dump"], [6, 5, 1, "", "dumps"], [6, 5, 1, "", "error"], [6, 5, 1, "", "get_extended_props"], [6, 5, 1, "", "get_props"], [6, 5, 1, "", "load"], [6, 5, 1, "", "loads"], [6, 5, 1, "", "make_parser"], [6, 5, 1, "", "prop_repr"], [6, 5, 1, "", "quote"], [6, 5, 1, "", "read_content"], [6, 5, 1, "", "read_nodes"], [6, 5, 1, "", "repr_short"], [6, 5, 1, "", "skip_quoted_name"], [6, 5, 1, "", "skip_spaces_and_comments"], [6, 5, 1, "", "unquote"]], "ete4.parser.nexus": [[6, 6, 1, "", "NexusError"], [6, 5, 1, "", "apply_translations"], [6, 5, 1, "", "get_commands"], [6, 5, 1, "", "get_section"], [6, 5, 1, "", "get_sections"], [6, 5, 1, "", "get_trees"], [6, 5, 1, "", "load"], [6, 5, 1, "", "loads"]], "ete4.phylo": [[7, 0, 1, "", "EvolEvent"]], "ete4.smartview.gui": [[9, 4, 0, "-", "server"]], "ete4.smartview.gui.server": [[9, 0, 1, "", "AppTree"], [9, 0, 1, "", "GlobalStuff"], [9, 5, 1, "", "activate_clade"], [9, 5, 1, "", "activate_node"], [9, 5, 1, "", "add_tree"], [9, 5, 1, "", "add_trees_from_request"], [9, 5, 1, "", "callback"], [9, 5, 1, "", "change_selection_name"], [9, 5, 1, "", "copy_style"], [9, 5, 1, "", "deactivate_clade"], [9, 5, 1, "", "deactivate_node"], [9, 5, 1, "", "del_tree"], [9, 5, 1, "", "find_node"], [9, 5, 1, "", "get_active_clade"], [9, 5, 1, "", "get_active_clades"], [9, 5, 1, "", "get_command_search"], [9, 5, 1, "", "get_drawer"], [9, 5, 1, "", "get_eval_search"], [9, 5, 1, "", "get_fields"], [9, 5, 1, "", "get_layouts"], [9, 5, 1, "", "get_layouts_from_getters"], [9, 5, 1, "", "get_newick"], [9, 5, 1, "", "get_nodes_info"], [9, 5, 1, "", "get_parents"], [9, 5, 1, "", "get_parser"], [9, 5, 1, "", "get_search_function"], [9, 5, 1, "", "get_selection_info"], [9, 5, 1, "", "get_selections"], [9, 5, 1, "", "get_stats"], [9, 5, 1, "", "get_tid"], [9, 5, 1, "", "get_topological_search"], [9, 5, 1, "", "get_trees_from_file"], [9, 5, 1, "", "get_trees_from_form"], [9, 5, 1, "", "get_trees_from_nexus_or_newick"], [9, 5, 1, "", "initialize"], [9, 5, 1, "", "initialize_tree_style"], [9, 5, 1, "", "json_error"], [9, 5, 1, "", "load_tree"], [9, 5, 1, "", "load_tree_from_newick"], [9, 5, 1, "", "maintenance"], [9, 5, 1, "", "make_name"], [9, 5, 1, "", "modify_tree_fields"], [9, 5, 1, "", "nice_html"], [9, 5, 1, "", "open_browser_window"], [9, 5, 1, "", "prune_by_selection"], [9, 5, 1, "", "remove_active"], [9, 5, 1, "", "remove_active_clade"], [9, 5, 1, "", "remove_search"], [9, 5, 1, "", "remove_selection"], [9, 5, 1, "", "req_json"], [9, 5, 1, "", "retrieve_layouts"], [9, 5, 1, "", "retrieve_tree"], [9, 5, 1, "", "run_smartview"], [9, 5, 1, "", "safer_eval"], [9, 5, 1, "", "search_to_selection"], [9, 5, 1, "", "sort"], [9, 5, 1, "", "store_active"], [9, 5, 1, "", "store_search"], [9, 5, 1, "", "store_selection"], [9, 5, 1, "", "touch_and_get"], [9, 5, 1, "", "unselect_node"], [9, 5, 1, "", "update_app_available_layouts"], [9, 5, 1, "", "update_layouts"], [9, 5, 1, "", "update_node_props"], [9, 5, 1, "", "update_node_style"], [9, 5, 1, "", "update_selection"]], "ete4.smartview.gui.server.AppTree": [[9, 1, 1, "", "__init__"], [9, 3, 1, "", "active"], [9, 3, 1, "", "exclude_props"], [9, 3, 1, "", "include_props"], [9, 3, 1, "", "initialized"], [9, 3, 1, "", "layouts"], [9, 3, 1, "", "name"], [9, 3, 1, "", "nodestyles"], [9, 3, 1, "", "searches"], [9, 3, 1, "", "selected"], [9, 3, 1, "", "style"], [9, 3, 1, "", "timer"], [9, 3, 1, "", "tree"]], "ete4.smartview.renderer": [[9, 4, 0, "-", "draw_helpers"], [9, 4, 0, "-", "drawer"], [9, 4, 0, "-", "face_positions"], [9, 4, 0, "-", "faces"], [9, 4, 0, "-", "nodestyle"], [9, 4, 0, "-", "treelayout"], [9, 4, 0, "-", "treestyle"]], "ete4.smartview.renderer.draw_helpers": [[9, 0, 1, "", "Box"], [9, 0, 1, "", "Padding"], [9, 5, 1, "", "cartesian"], [9, 5, 1, "", "circumasec"], [9, 5, 1, "", "circumrect"], [9, 5, 1, "", "clip_angles"], [9, 5, 1, "", "draw_arc"], [9, 5, 1, "", "draw_array"], [9, 5, 1, "", "draw_arrow"], [9, 5, 1, "", "draw_circle"], [9, 5, 1, "", "draw_ellipse"], [9, 5, 1, "", "draw_html"], [9, 5, 1, "", "draw_img"], [9, 5, 1, "", "draw_line"], [9, 5, 1, "", "draw_nodebox"], [9, 5, 1, "", "draw_outline"], [9, 5, 1, "", "draw_rect"], [9, 5, 1, "", "draw_rhombus"], [9, 5, 1, "", "draw_slice"], [9, 5, 1, "", "draw_text"], [9, 5, 1, "", "draw_triangle"], [9, 5, 1, "", "first_value"], [9, 5, 1, "", "get_line_type"], [9, 5, 1, "", "get_xs"], [9, 5, 1, "", "get_ys"], [9, 5, 1, "", "intersects_angles"], [9, 5, 1, "", "intersects_box"], [9, 5, 1, "", "intersects_segment"], [9, 5, 1, "", "split_thru_negative_xaxis"], [9, 5, 1, "", "summary"]], "ete4.smartview.renderer.draw_helpers.Box": [[9, 3, 1, "", "dx"], [9, 3, 1, "", "dy"], [9, 3, 1, "", "x"], [9, 3, 1, "", "y"]], "ete4.smartview.renderer.draw_helpers.Padding": [[9, 3, 1, "", "x"], [9, 3, 1, "", "y"]], "ete4.smartview.renderer.drawer": [[9, 0, 1, "", "Active"], [9, 0, 1, "", "Drawer"], [9, 0, 1, "", "DrawerAlignCircFaces"], [9, 0, 1, "", "DrawerAlignRectFaces"], [9, 0, 1, "", "DrawerCirc"], [9, 0, 1, "", "DrawerCircFaces"], [9, 0, 1, "", "DrawerRect"], [9, 0, 1, "", "DrawerRectFaces"], [9, 0, 1, "", "Size"], [9, 0, 1, "", "TreeActive"], [9, 5, 1, "", "dist"], [9, 5, 1, "", "drawn_size"], [9, 5, 1, "", "get_asec"], [9, 5, 1, "", "get_drawers"], [9, 5, 1, "", "get_empty_active"], [9, 5, 1, "", "get_rect"], [9, 5, 1, "", "make_box"], [9, 5, 1, "", "safe_string"], [9, 5, 1, "", "stack"]], "ete4.smartview.renderer.drawer.Active": [[9, 3, 1, "", "parents"], [9, 3, 1, "", "results"]], "ete4.smartview.renderer.drawer.Drawer": [[9, 3, 1, "", "COLLAPSE_SIZE"], [9, 3, 1, "", "MIN_SIZE"], [9, 3, 1, "", "NPANELS"], [9, 3, 1, "", "TYPE"], [9, 1, 1, "", "__init__"], [9, 1, 1, "", "draw"], [9, 1, 1, "", "draw_aligned_headers"], [9, 1, 1, "", "draw_collapsed"], [9, 1, 1, "", "draw_content"], [9, 1, 1, "", "draw_node"], [9, 1, 1, "", "flush_outline"], [9, 1, 1, "", "get_active_children"], [9, 1, 1, "", "get_collapsed_node"], [9, 1, 1, "", "get_outline"], [9, 1, 1, "", "get_popup_props"], [9, 1, 1, "", "get_selected_children"], [9, 1, 1, "", "is_fully_collapsed"], [9, 1, 1, "", "on_first_visit"], [9, 1, 1, "", "on_last_visit"]], "ete4.smartview.renderer.drawer.DrawerAlignCircFaces": [[9, 3, 1, "", "NPANELS"]], "ete4.smartview.renderer.drawer.DrawerAlignRectFaces": [[9, 3, 1, "", "NPANELS"]], "ete4.smartview.renderer.drawer.DrawerCirc": [[9, 3, 1, "", "TYPE"], [9, 1, 1, "", "__init__"], [9, 1, 1, "", "content_size"], [9, 1, 1, "", "draw_childrenline"], [9, 1, 1, "", "draw_collapsed"], [9, 1, 1, "", "draw_lengthline"], [9, 1, 1, "", "draw_nodebox"], [9, 1, 1, "", "draw_nodedot"], [9, 1, 1, "", "flush_outline"], [9, 1, 1, "", "get_box"], [9, 1, 1, "", "in_viewport"], [9, 1, 1, "", "is_small"], [9, 1, 1, "", "node_size"]], "ete4.smartview.renderer.drawer.DrawerCircFaces": [[9, 1, 1, "", "draw_collapsed"], [9, 1, 1, "", "draw_node"]], "ete4.smartview.renderer.drawer.DrawerRect": [[9, 3, 1, "", "TYPE"], [9, 1, 1, "", "content_size"], [9, 1, 1, "", "draw_childrenline"], [9, 1, 1, "", "draw_collapsed"], [9, 1, 1, "", "draw_lengthline"], [9, 1, 1, "", "draw_nodebox"], [9, 1, 1, "", "draw_nodedot"], [9, 1, 1, "", "get_box"], [9, 1, 1, "", "in_viewport"], [9, 1, 1, "", "is_small"], [9, 1, 1, "", "node_size"]], "ete4.smartview.renderer.drawer.DrawerRectFaces": [[9, 1, 1, "", "draw_collapsed"], [9, 1, 1, "", "draw_node"]], "ete4.smartview.renderer.drawer.Size": [[9, 3, 1, "", "dx"], [9, 3, 1, "", "dy"]], "ete4.smartview.renderer.drawer.TreeActive": [[9, 3, 1, "", "clades"], [9, 3, 1, "", "nodes"]], "ete4.smartview.renderer.face_positions": [[9, 0, 1, "", "AlignedGrid"], [9, 0, 1, "", "Grid"], [9, 5, 1, "", "make_faces"]], "ete4.smartview.renderer.face_positions.AlignedGrid": [[9, 1, 1, "", "__init__"]], "ete4.smartview.renderer.face_positions.Grid": [[9, 1, 1, "", "add_face"]], "ete4.smartview.renderer.faces": [[9, 0, 1, "", "AlignLinkFace"], [9, 0, 1, "", "AlignmentFace"], [9, 0, 1, "", "ArrowFace"], [9, 0, 1, "", "AttrFace"], [9, 0, 1, "", "CircleFace"], [9, 0, 1, "", "Face"], [9, 0, 1, "", "HTMLFace"], [9, 0, 1, "", "ImgFace"], [9, 0, 1, "", "LegendFace"], [9, 0, 1, "", "OutlineFace"], [9, 0, 1, "", "PieChartFace"], [9, 0, 1, "", "RectFace"], [9, 0, 1, "", "ScaleFace"], [9, 0, 1, "", "SelectedCircleFace"], [9, 0, 1, "", "SelectedFace"], [9, 0, 1, "", "SelectedRectFace"], [9, 0, 1, "", "SeqFace"], [9, 0, 1, "", "SeqMotifFace"], [9, 0, 1, "", "StackedBarFace"], [9, 0, 1, "", "TextFace"]], "ete4.smartview.renderer.faces.AlignLinkFace": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "compute_bounding_box"], [9, 1, 1, "", "draw"], [9, 1, 1, "", "fits"], [9, 1, 1, "", "get_box"]], "ete4.smartview.renderer.faces.AlignmentFace": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "build_blocks"], [9, 1, 1, "", "compute_bounding_box"], [9, 1, 1, "", "draw"], [9, 1, 1, "", "get_seq"]], "ete4.smartview.renderer.faces.ArrowFace": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "draw"], [9, 2, 1, "", "orientation"]], "ete4.smartview.renderer.faces.AttrFace": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "get_content"]], "ete4.smartview.renderer.faces.CircleFace": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "compute_bounding_box"], [9, 1, 1, "", "draw"]], "ete4.smartview.renderer.faces.Face": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "compute_bounding_box"], [9, 1, 1, "", "compute_fsize"], [9, 1, 1, "", "fits"], [9, 1, 1, "", "get_box"], [9, 1, 1, "", "get_content"], [9, 1, 1, "", "in_aligned_viewport"]], "ete4.smartview.renderer.faces.HTMLFace": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "draw"]], "ete4.smartview.renderer.faces.ImgFace": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "draw"]], "ete4.smartview.renderer.faces.LegendFace": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "draw"]], "ete4.smartview.renderer.faces.OutlineFace": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "compute_bounding_box"], [9, 1, 1, "", "draw"], [9, 1, 1, "", "fits"], [9, 1, 1, "", "get_box"]], "ete4.smartview.renderer.faces.PieChartFace": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "compute_pie"], [9, 1, 1, "", "draw"]], "ete4.smartview.renderer.faces.RectFace": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "compute_bounding_box"], [9, 1, 1, "", "draw"]], "ete4.smartview.renderer.faces.ScaleFace": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "compute_bounding_box"], [9, 1, 1, "", "draw"]], "ete4.smartview.renderer.faces.SelectedCircleFace": [[9, 1, 1, "", "__init__"]], "ete4.smartview.renderer.faces.SelectedFace": [[9, 1, 1, "", "__init__"]], "ete4.smartview.renderer.faces.SelectedRectFace": [[9, 1, 1, "", "__init__"]], "ete4.smartview.renderer.faces.SeqFace": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "compute_bounding_box"], [9, 1, 1, "", "draw"]], "ete4.smartview.renderer.faces.SeqMotifFace": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "build_regions"], [9, 1, 1, "", "compute_bounding_box"], [9, 1, 1, "", "draw"], [9, 1, 1, "", "fits"]], "ete4.smartview.renderer.faces.StackedBarFace": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "draw"]], "ete4.smartview.renderer.faces.TextFace": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "compute_bounding_box"], [9, 1, 1, "", "draw"], [9, 1, 1, "", "fits"]], "ete4.smartview.renderer.layouts": [[9, 4, 0, "-", "context_layouts"], [9, 4, 0, "-", "default_layouts"], [9, 4, 0, "-", "domain_layouts"], [9, 4, 0, "-", "eggnog6_layouts"], [9, 4, 0, "-", "etecompare_layouts"], [9, 4, 0, "-", "evocell_layouts"], [9, 4, 0, "-", "evol_events_layouts"], [9, 4, 0, "-", "ncbi_taxonomy_layouts"], [9, 4, 0, "-", "phylocloud_egg5_layouts"], [9, 4, 0, "-", "seq_layouts"], [9, 4, 0, "-", "spongilla_layouts"], [9, 4, 0, "-", "staple_layouts"]], "ete4.smartview.renderer.layouts.context_layouts": [[9, 0, 1, "", "LayoutGenomicContext"]], "ete4.smartview.renderer.layouts.context_layouts.LayoutGenomicContext": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "get_context"], [9, 1, 1, "", "get_tooltip"], [9, 1, 1, "", "set_node_style"], [9, 1, 1, "", "set_tree_style"]], "ete4.smartview.renderer.layouts.default_layouts": [[9, 0, 1, "", "LayoutBranchLength"], [9, 0, 1, "", "LayoutBranchSupport"], [9, 0, 1, "", "LayoutLeafName"], [9, 0, 1, "", "LayoutNumberLeaves"], [9, 0, 1, "", "LayoutOutline"]], "ete4.smartview.renderer.layouts.default_layouts.LayoutBranchLength": [[9, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.default_layouts.LayoutBranchSupport": [[9, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.default_layouts.LayoutLeafName": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.default_layouts.LayoutNumberLeaves": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.default_layouts.LayoutOutline": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.domain_layouts": [[9, 0, 1, "", "LayoutPfamDomains"], [9, 0, 1, "", "LayoutSmartDomains"]], "ete4.smartview.renderer.layouts.domain_layouts.LayoutPfamDomains": [[9, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.domain_layouts.LayoutSmartDomains": [[9, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.eggnog6_layouts": [[9, 0, 1, "", "LayoutBestName"], [9, 0, 1, "", "LayoutBigg"], [9, 0, 1, "", "LayoutCard"], [9, 0, 1, "", "LayoutCazy"], [9, 0, 1, "", "LayoutEvolEvents"], [9, 0, 1, "", "LayoutKeggEnzyme"], [9, 0, 1, "", "LayoutKeggModule"], [9, 0, 1, "", "LayoutKeggNumber"], [9, 0, 1, "", "LayoutKeggPathway"], [9, 0, 1, "", "LayoutLastCommonAncestor"], [9, 0, 1, "", "LayoutPdb"], [9, 0, 1, "", "LayoutPfamDomains"], [9, 0, 1, "", "LayoutProteinName"], [9, 0, 1, "", "LayoutScientificName"], [9, 0, 1, "", "LayoutSmartDomains"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutBestName": [[9, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutBigg": [[9, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutCard": [[9, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutCazy": [[9, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutEvolEvents": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "set_node_style"], [9, 1, 1, "", "set_tree_style"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutKeggEnzyme": [[9, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutKeggModule": [[9, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutKeggNumber": [[9, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutKeggPathway": [[9, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutLastCommonAncestor": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "get_color"], [9, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutPdb": [[9, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutPfamDomains": [[9, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutProteinName": [[9, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutScientificName": [[9, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutSmartDomains": [[9, 1, 1, "", "__init__"]], "ete4.smartview.renderer.layouts.etecompare_layouts": [[9, 0, 1, "", "LayoutEteDiffDistance"]], "ete4.smartview.renderer.layouts.etecompare_layouts.LayoutEteDiffDistance": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.evocell_layouts": [[9, 0, 1, "", "LayoutHumanOGs"], [9, 0, 1, "", "LayoutUCSC"], [9, 0, 1, "", "LayoutUCSCtrans"]], "ete4.smartview.renderer.layouts.evocell_layouts.LayoutHumanOGs": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.evocell_layouts.LayoutUCSC": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.evocell_layouts.LayoutUCSCtrans": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.evol_events_layouts": [[9, 0, 1, "", "LayoutEvolEvents"]], "ete4.smartview.renderer.layouts.evol_events_layouts.LayoutEvolEvents": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "set_node_style"], [9, 1, 1, "", "set_tree_style"]], "ete4.smartview.renderer.layouts.ncbi_taxonomy_layouts": [[9, 0, 1, "", "LayoutLastCommonAncestor"]], "ete4.smartview.renderer.layouts.ncbi_taxonomy_layouts.LayoutLastCommonAncestor": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "get_color"], [9, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.phylocloud_egg5_layouts": [[9, 5, 1, "", "get_layout_evoltype"], [9, 5, 1, "", "get_layout_gnames"], [9, 5, 1, "", "get_layout_lca_rects"], [9, 5, 1, "", "get_layout_ogs_egg5"], [9, 5, 1, "", "get_layout_sciname"]], "ete4.smartview.renderer.layouts.seq_layouts": [[9, 0, 1, "", "LayoutAlignment"]], "ete4.smartview.renderer.layouts.seq_layouts.LayoutAlignment": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "get_seq"], [9, 1, 1, "", "set_node_style"], [9, 1, 1, "", "set_tree_style"]], "ete4.smartview.renderer.layouts.spongilla_layouts": [[9, 0, 1, "", "LayoutAutoName"], [9, 0, 1, "", "LayoutCuratedName"], [9, 0, 1, "", "LayoutEukOgs"], [9, 0, 1, "", "LayoutPreferredName"], [9, 0, 1, "", "LayoutSciName"], [9, 0, 1, "", "LayoutSeeds"]], "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutAutoName": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutCuratedName": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutEukOgs": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutPreferredName": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutSciName": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutSeeds": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "set_node_style"]], "ete4.smartview.renderer.layouts.staple_layouts": [[9, 0, 1, "", "LayoutBarplot"]], "ete4.smartview.renderer.layouts.staple_layouts.LayoutBarplot": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "set_node_style"], [9, 1, 1, "", "set_tree_style"]], "ete4.smartview.renderer.nodestyle": [[9, 0, 1, "", "NodeStyle"]], "ete4.smartview.renderer.nodestyle.NodeStyle": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "init"]], "ete4.smartview.renderer.treelayout": [[9, 0, 1, "", "TreeLayout"], [9, 5, 1, "", "cased_name"]], "ete4.smartview.renderer.treelayout.TreeLayout": [[9, 1, 1, "", "__init__"], [9, 1, 1, "", "set_node_style"], [9, 1, 1, "", "set_tree_style"]], "ete4.smartview.renderer.treestyle": [[9, 0, 1, "", "TreeStyle"]], "ete4.smartview.renderer.treestyle.TreeStyle": [[9, 1, 1, "", "__init__"], [9, 2, 1, "", "active_face"], [9, 2, 1, "", "active_face_pos"], [9, 1, 1, "", "add_legend"], [9, 2, 1, "", "aligned_panel_footer"], [9, 2, 1, "", "aligned_panel_header"], [9, 1, 1, "", "get_legend"], [9, 2, 1, "", "selected_face"], [9, 2, 1, "", "selected_face_pos"]], "": [[12, 4, 0, "-", "treeview"]]}, "objtypes": {"0": "py:class", "1": "py:method", "2": "py:property", "3": "py:attribute", "4": "py:module", "5": "py:function", "6": "py:exception"}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "method", "Python method"], "2": ["py", "property", "Python property"], "3": ["py", "attribute", "Python attribute"], "4": ["py", "module", "Python module"], "5": ["py", "function", "Python function"], "6": ["py", "exception", "Python exception"]}, "titleterms": {"about": 0, "highlight": 0, "tool": 0, "us": [0, 1, 16], "et": [0, 1, 2, 17], "relat": 0, "link": [0, 15], "resourc": 0, "frequent": 1, "ask": 1, "question": 1, "faq": 1, "content": [1, 2, 9, 12, 14, 15, 16, 17], "gener": 1, "how": [1, 17], "do": 1, "i": 1, "tree": [1, 5, 7, 11, 14, 15, 16, 17], "brows": [1, 17], "find": [1, 17], "leaf": [1, 14], "its": 1, "name": [1, 14], "visit": 1, "all": 1, "node": [1, 14, 15, 17], "within": [1, 14, 17], "can": 1, "control": [1, 15], "order": 1, "which": 1, "ar": 1, "read": [1, 17], "write": [1, 17], "load": 1, "intern": 1, "support": [1, 14], "export": 1, "annot": [1, 16, 17], "newick": [1, 6, 17], "format": 1, "visual": [1, 14, 15], "draw": [1, 9, 14], "circular": [1, 14], "imag": [1, 14], "svg": 1, "veri": 1, "unbalanc": 1, "branch": [1, 14, 17], "improv": 1, "welcom": 2, "": [2, 17], "document": 2, "indic": 2, "tabl": 2, "refer": 3, "guid": 3, "cluster": 4, "oper": [5, 17], "parser": 6, "nexu": 6, "phylogenet": [7, 14, 15], "phylotre": 7, "evolev": 7, "multipl": [8, 15], "sequenc": [8, 14, 15], "align": [8, 15], "seqgroup": 8, "smartview": 9, "web": 9, "graphic": [9, 12], "server": 9, "render": [9, 14], "drawer": 9, "helper": 9, "face": [9, 12, 14], "posit": [9, 14], "nodestyl": [9, 12], "treelayout": 9, "treestyl": [9, 12], "layout": [9, 14], "context": 9, "default": 9, "domain": [9, 14], "eggnog6": 9, "etecompar": 9, "evocel": 9, "evol_ev": 9, "ncbi_taxonomi": 9, "phylocloud_egg5": 9, "seq": 9, "spongilla": 9, "stapl": 9, "taxonomi": [10, 16], "databas": [10, 16], "ncbitaxa": 10, "gtdbtaxa": 10, "main": 11, "class": 11, "treeview": 12, "qt": 12, "tutori": 13, "programm": 14, "overview": [14, 15, 16], "interact": 14, "custom": [14, 15, 17], "aspect": 14, "style": 14, "show": 14, "length": 14, "chang": 14, "scale": 14, "zoom": 14, "x": 14, "separ": 14, "between": [14, 16, 17], "y": 14, "rotat": 14, "180": 14, "degre": 14, "add": 14, "legend": 14, "titl": 14, "properti": [14, 17], "function": [14, 17], "combin": 14, "fix": 14, "background": 14, "img": 14, "bubbl": 14, "map": 14, "creat": [14, 17], "your": 14, "ad": 15, "taxonom": 15, "inform": [15, 16], "automat": [15, 16], "speci": [15, 16], "info": 15, "manual": 15, "detect": 15, "evolutionari": 15, "event": 15, "overlap": 15, "so": 15, "algorithm": 15, "reconcili": 15, "A": 15, "closer": 15, "look": 15, "object": 15, "rel": [15, 17], "date": 15, "implement": 15, "root": [15, 17], "outgroup": [15, 17], "work": [15, 17], "duplic": [15, 17], "gene": 15, "famili": 15, "treeko": 15, "split": 15, "collaps": [15, 17], "specif": 15, "differ": 16, "ncbi": 16, "gtdb": 16, "ete4": 16, "set": 16, "up": 16, "local": 16, "copi": [16, 17], "get": [16, 17], "taxid": 16, "descend": [16, 17], "taxa": 16, "topologi": [16, 17], "structur": 17, "understand": 17, "basic": 17, "attribut": 17, "The": 17, "mean": 17, "unroot": 17, "travers": 17, "leav": 17, "advanc": 17, "while": 17, "iter": 17, "list": 17, "search_al": 17, "match": 17, "given": 17, "criteria": 17, "search": 17, "first": 17, "common": 17, "ancestor": 17, "shortcut": 17, "check": 17, "monophyli": 17, "cach": 17, "faster": 17, "lookup": 17, "compar": 17, "distanc": 17, "robinson": 17, "fould": 17, "modifi": 17, "from": 17, "scratch": 17, "delet": 17, "elimin": 17, "remov": 17, "detach": 17, "prune": 17, "concaten": 17, "solv": 17, "multifurc": 17, "midpoint": 17}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1, "sphinx": 60}, "alltitles": {"About": [[0, "about"]], "Highlighted Tools Using ETE": [[0, "highlighted-tools-using-ete"]], "Related Links and Resources": [[0, "related-links-and-resources"]], "Frequently Asked Questions (FAQs)": [[1, "frequently-asked-questions-faqs"]], "Contents": [[1, "contents"], [9, "contents"], [12, "contents"], [14, "contents"], [15, "contents"], [16, "contents"], [17, "contents"]], "General": [[1, "general"]], "How do I use ETE?": [[1, "how-do-i-use-ete"]], "Tree Browsing": [[1, "tree-browsing"]], "How do I find a leaf by its name?": [[1, "how-do-i-find-a-leaf-by-its-name"]], "How do I visit all nodes within a tree?": [[1, "how-do-i-visit-all-nodes-within-a-tree"]], "Can I control the order in which nodes are visited?": [[1, "can-i-control-the-order-in-which-nodes-are-visited"]], "Reading and writing": [[1, "reading-and-writing"]], "How do I load a tree with internal node names or support?": [[1, "how-do-i-load-a-tree-with-internal-node-names-or-support"]], "How do I export tree node annotations using the Newick format?": [[1, "how-do-i-export-tree-node-annotations-using-the-newick-format"]], "Tree visualization": [[1, "tree-visualization"]], "Can ETE draw circular trees?": [[1, "can-ete-draw-circular-trees"]], "How do I export tree images as SVG?": [[1, "how-do-i-export-tree-images-as-svg"]], "How do I visualize internal node names?": [[1, "how-do-i-visualize-internal-node-names"]], "Can the visualization of trees with very unbalanced tree branches be improved?": [[1, "can-the-visualization-of-trees-with-very-unbalanced-tree-branches-be-improved"]], "Welcome to ETE\u2019s documentation!": [[2, "welcome-to-ete-s-documentation"]], "Contents:": [[2, null]], "Indices and tables": [[2, "indices-and-tables"]], "Reference Guide": [[3, "reference-guide"]], "Clustering": [[4, "module-ete4.clustering.clustertree"]], "Tree operations": [[5, "module-ete4.core.operations"]], "Parsers": [[6, "parsers"]], "Newick": [[6, "module-ete4.parser.newick"]], "Nexus": [[6, "module-ete4.parser.nexus"]], "Phylogenetic trees": [[7, "phylogenetic-trees"], [15, "phylogenetic-trees"]], "PhyloTree": [[7, "phylotree"]], "EvolEvent": [[7, "evolevent"]], "Multiple Sequence Alignments (SeqGroup)": [[8, "module-ete4.core.seqgroup"]], "Smartview (web graphics)": [[9, "smartview-web-graphics"]], "Server": [[9, "module-ete4.smartview.gui.server"]], "Renderer": [[9, "renderer"]], "Drawer": [[9, "module-ete4.smartview.renderer.drawer"]], "Draw helpers": [[9, "module-ete4.smartview.renderer.draw_helpers"]], "Faces": [[9, "module-ete4.smartview.renderer.faces"], [12, "faces"]], "Face positions": [[9, "module-ete4.smartview.renderer.face_positions"]], "NodeStyle": [[9, "module-ete4.smartview.renderer.nodestyle"], [12, "nodestyle"]], "TreeLayout": [[9, "module-ete4.smartview.renderer.treelayout"]], "TreeStyle": [[9, "module-ete4.smartview.renderer.treestyle"], [12, "treestyle"]], "Layouts": [[9, "layouts"]], "context": [[9, "module-ete4.smartview.renderer.layouts.context_layouts"]], "default": [[9, "module-ete4.smartview.renderer.layouts.default_layouts"]], "domain": [[9, "module-ete4.smartview.renderer.layouts.domain_layouts"]], "eggnog6": [[9, "module-ete4.smartview.renderer.layouts.eggnog6_layouts"]], "etecompare": [[9, "module-ete4.smartview.renderer.layouts.etecompare_layouts"]], "evocell": [[9, "module-ete4.smartview.renderer.layouts.evocell_layouts"]], "evol_events": [[9, "module-ete4.smartview.renderer.layouts.evol_events_layouts"]], "ncbi_taxonomy": [[9, "module-ete4.smartview.renderer.layouts.ncbi_taxonomy_layouts"]], "phylocloud_egg5": [[9, "module-ete4.smartview.renderer.layouts.phylocloud_egg5_layouts"]], "seq": [[9, "module-ete4.smartview.renderer.layouts.seq_layouts"]], "spongilla": [[9, "module-ete4.smartview.renderer.layouts.spongilla_layouts"]], "staple": [[9, "module-ete4.smartview.renderer.layouts.staple_layouts"]], "Taxonomy databases": [[10, "taxonomy-databases"], [16, "taxonomy-databases"]], "NCBITaxa": [[10, "ncbitaxa"]], "GTDBTaxa": [[10, "gtdbtaxa"]], "Tree (main class)": [[11, "tree-main-class"]], "Treeview (qt graphics)": [[12, "treeview-qt-graphics"]], "Tutorial": [[13, "tutorial"]], "Programmable tree drawing": [[14, "programmable-tree-drawing"]], "Overview": [[14, "overview"], [15, "overview"], [16, "overview"]], "Interactive visualization of trees": [[14, "interactive-visualization-of-trees"]], "Rendering trees as images": [[14, "rendering-trees-as-images"]], "Customizing the aspect of trees": [[14, "customizing-the-aspect-of-trees"]], "Tree style": [[14, "tree-style"]], "Show leaf node names, branch length and branch support": [[14, "show-leaf-node-names-branch-length-and-branch-support"]], "Change branch length scale (zoom in x)": [[14, "change-branch-length-scale-zoom-in-x"]], "Change branch separation between nodes (zoom in y)": [[14, "change-branch-separation-between-nodes-zoom-in-y"]], "Rotate a tree": [[14, "rotate-a-tree"]], "Circular tree in 180 degrees": [[14, "circular-tree-in-180-degrees"]], "Add legend and title": [[14, "add-legend-and-title"]], "Node style": [[14, "node-style"]], "Node faces": [[14, "node-faces"]], "Faces position": [[14, "faces-position"]], "Face properties": [[14, "face-properties"]], "Layout functions": [[14, "layout-functions"]], "Combining styles, faces and layouts": [[14, "combining-styles-faces-and-layouts"]], "Fixed node styles": [[14, "fixed-node-styles"]], "Node backgrounds": [[14, "node-backgrounds"]], "Img faces": [[14, "img-faces"]], "Bubble tree maps": [[14, "bubble-tree-maps"]], "Trees within trees": [[14, "trees-within-trees"]], "Phylogenetic trees and sequence domains": [[14, "phylogenetic-trees-and-sequence-domains"]], "Creating your custom interactive faces": [[14, "creating-your-custom-interactive-faces"]], "Linking phylogenetic trees with multiple sequence alignments": [[15, "linking-phylogenetic-trees-with-multiple-sequence-alignments"]], "Visualization of phylogenetic trees": [[15, "visualization-of-phylogenetic-trees"]], "Adding taxonomic information": [[15, "adding-taxonomic-information"]], "Automatic control of species info": [[15, "automatic-control-of-species-info"]], "Automatic (custom) control of the species info": [[15, "automatic-custom-control-of-the-species-info"]], "Manual control of the species info": [[15, "manual-control-of-the-species-info"]], "Detecting evolutionary events": [[15, "detecting-evolutionary-events"]], "Species Overlap (SO) algorithm": [[15, "species-overlap-so-algorithm"]], "Tree reconciliation algorithm": [[15, "tree-reconciliation-algorithm"]], "A closer look to the evolutionary event object": [[15, "a-closer-look-to-the-evolutionary-event-object"]], "Relative dating of phylogenetic nodes": [[15, "relative-dating-of-phylogenetic-nodes"]], "Implementation": [[15, "implementation"]], "Automatic rooting (outgroup detection)": [[15, "automatic-rooting-outgroup-detection"]], "Working with duplicated gene families": [[15, "working-with-duplicated-gene-families"]], "TreeKO (splitting gene trees into species trees)": [[15, "treeko-splitting-gene-trees-into-species-trees"]], "Splitting gene trees by duplication events": [[15, "splitting-gene-trees-by-duplication-events"]], "Collapse species specific duplications": [[15, "collapse-species-specific-duplications"]], "Differences between NCBI and GTDB taxonomies in ETE4": [[16, "differences-between-ncbi-and-gtdb-taxonomies-in-ete4"]], "Setting up local copies of the NCBI and GTDB taxonomy databases": [[16, "setting-up-local-copies-of-the-ncbi-and-gtdb-taxonomy-databases"]], "Getting taxid information": [[16, "getting-taxid-information"]], "NCBI taxonomy": [[16, "ncbi-taxonomy"]], "GTDB taxonomy": [[16, "gtdb-taxonomy"]], "Getting descendant taxa": [[16, "getting-descendant-taxa"]], "Getting species tree topology": [[16, "getting-species-tree-topology"]], "Automatic tree annotation using NCBI/GTDB taxonomy": [[16, "automatic-tree-annotation-using-ncbi-gtdb-taxonomy"]], "Working with the Tree structure": [[17, "working-with-the-tree-structure"]], "Trees": [[17, "trees"]], "Reading and writing newick trees": [[17, "reading-and-writing-newick-trees"]], "Creating a tree": [[17, "creating-a-tree"]], "Reading newick trees": [[17, "reading-newick-trees"]], "Writing newick trees": [[17, "writing-newick-trees"]], "Understanding ETE trees": [[17, "understanding-ete-trees"]], "Basic tree attributes": [[17, "basic-tree-attributes"]], "The meaning of the \u201croot node\u201d in unrooted trees": [[17, "the-meaning-of-the-root-node-in-unrooted-trees"]], "Browsing trees (traversing)": [[17, "browsing-trees-traversing"]], "Getting leaves, descendants and node\u2019s relatives": [[17, "getting-leaves-descendants-and-node-s-relatives"]], "Traversing (browsing) trees": [[17, "traversing-browsing-trees"]], "Advanced traversing": [[17, "advanced-traversing"]], "Collapsing nodes while traversing": [[17, "collapsing-nodes-while-traversing"]], "Iterators or lists?": [[17, "iterators-or-lists"]], "Finding nodes by their properties": [[17, "finding-nodes-by-their-properties"]], "Search_all nodes matching a given criteria": [[17, "search-all-nodes-matching-a-given-criteria"]], "Search nodes matching a given criteria (iteration)": [[17, "search-nodes-matching-a-given-criteria-iteration"]], "Find the first common ancestor": [[17, "find-the-first-common-ancestor"]], "Custom searching functions": [[17, "custom-searching-functions"]], "Shortcuts": [[17, "shortcuts"]], "Checking the monophyly of properties within a tree": [[17, "checking-the-monophyly-of-properties-within-a-tree"]], "Caching tree content for faster lookup operations": [[17, "caching-tree-content-for-faster-lookup-operations"]], "Node annotation": [[17, "node-annotation"]], "Comparing trees": [[17, "comparing-trees"]], "Distances between trees": [[17, "distances-between-trees"]], "Robinson-Foulds distance": [[17, "robinson-foulds-distance"]], "Modifying tree topology": [[17, "modifying-tree-topology"]], "Creating trees from scratch": [[17, "creating-trees-from-scratch"]], "How to delete/eliminate or remove/detach nodes": [[17, "how-to-delete-eliminate-or-remove-detach-nodes"]], "Pruning trees": [[17, "pruning-trees"]], "Concatenating trees": [[17, "concatenating-trees"]], "Copying (duplicating) trees": [[17, "copying-duplicating-trees"]], "Solving multifurcations": [[17, "solving-multifurcations"]], "Tree rooting": [[17, "tree-rooting"]], "Working with branch distances": [[17, "working-with-branch-distances"]], "Getting distances between nodes": [[17, "getting-distances-between-nodes"]], "Getting midpoint outgroup": [[17, "getting-midpoint-outgroup"]]}, "indexentries": {"clustertree (class in ete4.clustering.clustertree)": [[4, "ete4.clustering.clustertree.ClusterTree"]], "__init__() (clustertree method)": [[4, "ete4.clustering.clustertree.ClusterTree.__init__"]], "deviation (clustertree property)": [[4, "ete4.clustering.clustertree.ClusterTree.deviation"]], "ete4.clustering.clustertree": [[4, "module-ete4.clustering.clustertree"]], "get_dunn() (clustertree method)": [[4, "ete4.clustering.clustertree.ClusterTree.get_dunn"]], "get_silhouette() (clustertree method)": [[4, "ete4.clustering.clustertree.ClusterTree.get_silhouette"]], "intercluster_dist (clustertree property)": [[4, "ete4.clustering.clustertree.ClusterTree.intercluster_dist"]], "intracluster_dist (clustertree property)": [[4, "ete4.clustering.clustertree.ClusterTree.intracluster_dist"]], "leaf_profiles() (clustertree method)": [[4, "ete4.clustering.clustertree.ClusterTree.leaf_profiles"]], "link_to_arraytable() (clustertree method)": [[4, "ete4.clustering.clustertree.ClusterTree.link_to_arraytable"]], "module": [[4, "module-ete4.clustering.clustertree"], [5, "module-ete4.core.operations"], [6, "module-ete4.parser.newick"], [6, "module-ete4.parser.nexus"], [8, "module-ete4.core.seqgroup"], [9, "module-ete4.smartview.gui.server"], [9, "module-ete4.smartview.renderer.draw_helpers"], [9, "module-ete4.smartview.renderer.drawer"], [9, "module-ete4.smartview.renderer.face_positions"], [9, "module-ete4.smartview.renderer.faces"], [9, "module-ete4.smartview.renderer.layouts.context_layouts"], [9, "module-ete4.smartview.renderer.layouts.default_layouts"], [9, "module-ete4.smartview.renderer.layouts.domain_layouts"], [9, "module-ete4.smartview.renderer.layouts.eggnog6_layouts"], [9, "module-ete4.smartview.renderer.layouts.etecompare_layouts"], [9, "module-ete4.smartview.renderer.layouts.evocell_layouts"], [9, "module-ete4.smartview.renderer.layouts.evol_events_layouts"], [9, "module-ete4.smartview.renderer.layouts.ncbi_taxonomy_layouts"], [9, "module-ete4.smartview.renderer.layouts.phylocloud_egg5_layouts"], [9, "module-ete4.smartview.renderer.layouts.seq_layouts"], [9, "module-ete4.smartview.renderer.layouts.spongilla_layouts"], [9, "module-ete4.smartview.renderer.layouts.staple_layouts"], [9, "module-ete4.smartview.renderer.nodestyle"], [9, "module-ete4.smartview.renderer.treelayout"], [9, "module-ete4.smartview.renderer.treestyle"], [12, "module-treeview"]], "profile (clustertree property)": [[4, "ete4.clustering.clustertree.ClusterTree.profile"]], "set_distance_function() (clustertree method)": [[4, "ete4.clustering.clustertree.ClusterTree.set_distance_function"]], "silhouette (clustertree property)": [[4, "ete4.clustering.clustertree.ClusterTree.silhouette"]], "walker (class in ete4.core.operations)": [[5, "ete4.core.operations.Walker"]], "add_next_branch() (walker method)": [[5, "ete4.core.operations.Walker.add_next_branch"]], "assert_root_consistency() (in module ete4.core.operations)": [[5, "ete4.core.operations.assert_root_consistency"]], "common_ancestor() (in module ete4.core.operations)": [[5, "ete4.core.operations.common_ancestor"]], "ete4.core.operations": [[5, "module-ete4.core.operations"]], "first_visit (walker property)": [[5, "ete4.core.operations.Walker.first_visit"]], "go_back() (walker method)": [[5, "ete4.core.operations.Walker.go_back"]], "has_unvisited_branches (walker property)": [[5, "ete4.core.operations.Walker.has_unvisited_branches"]], "insert_intermediate() (in module ete4.core.operations)": [[5, "ete4.core.operations.insert_intermediate"]], "join_branch() (in module ete4.core.operations)": [[5, "ete4.core.operations.join_branch"]], "ladderize() (in module ete4.core.operations)": [[5, "ete4.core.operations.ladderize"]], "maybe_convert_internal_nodes_to_support() (in module ete4.core.operations)": [[5, "ete4.core.operations.maybe_convert_internal_nodes_to_support"]], "move() (in module ete4.core.operations)": [[5, "ete4.core.operations.move"]], "node (walker property)": [[5, "ete4.core.operations.Walker.node"]], "node_id (walker property)": [[5, "ete4.core.operations.Walker.node_id"]], "populate() (in module ete4.core.operations)": [[5, "ete4.core.operations.populate"]], "rehang() (in module ete4.core.operations)": [[5, "ete4.core.operations.rehang"]], "remove() (in module ete4.core.operations)": [[5, "ete4.core.operations.remove"]], "set_outgroup() (in module ete4.core.operations)": [[5, "ete4.core.operations.set_outgroup"]], "sort() (in module ete4.core.operations)": [[5, "ete4.core.operations.sort"]], "swap_props() (in module ete4.core.operations)": [[5, "ete4.core.operations.swap_props"]], "to_ultrametric() (in module ete4.core.operations)": [[5, "ete4.core.operations.to_ultrametric"]], "update_size() (in module ete4.core.operations)": [[5, "ete4.core.operations.update_size"]], "update_sizes_all() (in module ete4.core.operations)": [[5, "ete4.core.operations.update_sizes_all"]], "update_sizes_from() (in module ete4.core.operations)": [[5, "ete4.core.operations.update_sizes_from"]], "walk() (in module ete4.core.operations)": [[5, "ete4.core.operations.walk"]], "newickerror": [[6, "ete4.parser.newick.NewickError"]], "nexuserror": [[6, "ete4.parser.nexus.NexusError"]], "apply_translations() (in module ete4.parser.nexus)": [[6, "ete4.parser.nexus.apply_translations"]], "content_repr() (in module ete4.parser.newick)": [[6, "ete4.parser.newick.content_repr"]], "dump() (in module ete4.parser.newick)": [[6, "ete4.parser.newick.dump"]], "dumps() (in module ete4.parser.newick)": [[6, "ete4.parser.newick.dumps"]], "error() (in module ete4.parser.newick)": [[6, "ete4.parser.newick.error"]], "ete4.parser.newick": [[6, "module-ete4.parser.newick"]], "ete4.parser.nexus": [[6, "module-ete4.parser.nexus"]], "get_commands() (in module ete4.parser.nexus)": [[6, "ete4.parser.nexus.get_commands"]], "get_extended_props() (in module ete4.parser.newick)": [[6, "ete4.parser.newick.get_extended_props"]], "get_props() (in module ete4.parser.newick)": [[6, "ete4.parser.newick.get_props"]], "get_section() (in module ete4.parser.nexus)": [[6, "ete4.parser.nexus.get_section"]], "get_sections() (in module ete4.parser.nexus)": [[6, "ete4.parser.nexus.get_sections"]], "get_trees() (in module ete4.parser.nexus)": [[6, "ete4.parser.nexus.get_trees"]], "load() (in module ete4.parser.newick)": [[6, "ete4.parser.newick.load"]], "load() (in module ete4.parser.nexus)": [[6, "ete4.parser.nexus.load"]], "loads() (in module ete4.parser.newick)": [[6, "ete4.parser.newick.loads"]], "loads() (in module ete4.parser.nexus)": [[6, "ete4.parser.nexus.loads"]], "make_parser() (in module ete4.parser.newick)": [[6, "ete4.parser.newick.make_parser"]], "prop_repr() (in module ete4.parser.newick)": [[6, "ete4.parser.newick.prop_repr"]], "quote() (in module ete4.parser.newick)": [[6, "ete4.parser.newick.quote"]], "read_content() (in module ete4.parser.newick)": [[6, "ete4.parser.newick.read_content"]], "read_nodes() (in module ete4.parser.newick)": [[6, "ete4.parser.newick.read_nodes"]], "repr_short() (in module ete4.parser.newick)": [[6, "ete4.parser.newick.repr_short"]], "skip_quoted_name() (in module ete4.parser.newick)": [[6, "ete4.parser.newick.skip_quoted_name"]], "skip_spaces_and_comments() (in module ete4.parser.newick)": [[6, "ete4.parser.newick.skip_spaces_and_comments"]], "unquote() (in module ete4.parser.newick)": [[6, "ete4.parser.newick.unquote"]], "evolevent (class in ete4.phylo)": [[7, "ete4.phylo.EvolEvent"]], "phylotree (class in ete4)": [[7, "ete4.PhyloTree"]], "__init__() (phylotree method)": [[7, "ete4.PhyloTree.__init__"]], "annotate_gtdb_taxa() (phylotree method)": [[7, "ete4.PhyloTree.annotate_gtdb_taxa"]], "annotate_ncbi_taxa() (phylotree method)": [[7, "ete4.PhyloTree.annotate_ncbi_taxa"]], "collapse_lineage_specific_expansions() (phylotree method)": [[7, "ete4.PhyloTree.collapse_lineage_specific_expansions"]], "get_age() (phylotree method)": [[7, "ete4.PhyloTree.get_age"]], "get_age_balanced_outgroup() (phylotree method)": [[7, "ete4.PhyloTree.get_age_balanced_outgroup"]], "get_descendant_evol_events() (phylotree method)": [[7, "ete4.PhyloTree.get_descendant_evol_events"]], "get_farthest_oldest_leaf() (phylotree method)": [[7, "ete4.PhyloTree.get_farthest_oldest_leaf"]], "get_farthest_oldest_node() (phylotree method)": [[7, "ete4.PhyloTree.get_farthest_oldest_node"]], "get_my_evol_events() (phylotree method)": [[7, "ete4.PhyloTree.get_my_evol_events"]], "get_speciation_trees() (phylotree method)": [[7, "ete4.PhyloTree.get_speciation_trees"]], "get_species() (phylotree method)": [[7, "ete4.PhyloTree.get_species"]], "iter_species() (phylotree method)": [[7, "ete4.PhyloTree.iter_species"]], "link_to_alignment() (phylotree method)": [[7, "ete4.PhyloTree.link_to_alignment"]], "ncbi_compare() (phylotree method)": [[7, "ete4.PhyloTree.ncbi_compare"]], "reconcile() (phylotree method)": [[7, "ete4.PhyloTree.reconcile"]], "set_species_naming_function() (phylotree method)": [[7, "ete4.PhyloTree.set_species_naming_function"]], "species (phylotree property)": [[7, "ete4.PhyloTree.species"]], "split_by_dups() (phylotree method)": [[7, "ete4.PhyloTree.split_by_dups"]], "write() (phylotree method)": [[7, "ete4.PhyloTree.write"]], "seqgroup (class in ete4.core.seqgroup)": [[8, "ete4.core.seqgroup.SeqGroup"]], "__init__() (seqgroup method)": [[8, "ete4.core.seqgroup.SeqGroup.__init__"]], "ete4.core.seqgroup": [[8, "module-ete4.core.seqgroup"]], "get_entries() (seqgroup method)": [[8, "ete4.core.seqgroup.SeqGroup.get_entries"]], "get_seq() (seqgroup method)": [[8, "ete4.core.seqgroup.SeqGroup.get_seq"]], "iter_entries() (seqgroup method)": [[8, "ete4.core.seqgroup.SeqGroup.iter_entries"]], "set_seq() (seqgroup method)": [[8, "ete4.core.seqgroup.SeqGroup.set_seq"]], "write() (seqgroup method)": [[8, "ete4.core.seqgroup.SeqGroup.write"]], "active (class in ete4.smartview.renderer.drawer)": [[9, "ete4.smartview.renderer.drawer.Active"]], "alignlinkface (class in ete4.smartview.renderer.faces)": [[9, "ete4.smartview.renderer.faces.AlignLinkFace"]], "alignedgrid (class in ete4.smartview.renderer.face_positions)": [[9, "ete4.smartview.renderer.face_positions.AlignedGrid"]], "alignmentface (class in ete4.smartview.renderer.faces)": [[9, "ete4.smartview.renderer.faces.AlignmentFace"]], "apptree (class in ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.AppTree"]], "arrowface (class in ete4.smartview.renderer.faces)": [[9, "ete4.smartview.renderer.faces.ArrowFace"]], "attrface (class in ete4.smartview.renderer.faces)": [[9, "ete4.smartview.renderer.faces.AttrFace"]], "box (class in ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.Box"]], "collapse_size (drawer attribute)": [[9, "ete4.smartview.renderer.drawer.Drawer.COLLAPSE_SIZE"]], "circleface (class in ete4.smartview.renderer.faces)": [[9, "ete4.smartview.renderer.faces.CircleFace"]], "drawer (class in ete4.smartview.renderer.drawer)": [[9, "ete4.smartview.renderer.drawer.Drawer"]], "draweraligncircfaces (class in ete4.smartview.renderer.drawer)": [[9, "ete4.smartview.renderer.drawer.DrawerAlignCircFaces"]], "draweralignrectfaces (class in ete4.smartview.renderer.drawer)": [[9, "ete4.smartview.renderer.drawer.DrawerAlignRectFaces"]], "drawercirc (class in ete4.smartview.renderer.drawer)": [[9, "ete4.smartview.renderer.drawer.DrawerCirc"]], "drawercircfaces (class in ete4.smartview.renderer.drawer)": [[9, "ete4.smartview.renderer.drawer.DrawerCircFaces"]], "drawerrect (class in ete4.smartview.renderer.drawer)": [[9, "ete4.smartview.renderer.drawer.DrawerRect"]], "drawerrectfaces (class in ete4.smartview.renderer.drawer)": [[9, "ete4.smartview.renderer.drawer.DrawerRectFaces"]], "face (class in ete4.smartview.renderer.faces)": [[9, "ete4.smartview.renderer.faces.Face"]], "globalstuff (class in ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.GlobalStuff"]], "grid (class in ete4.smartview.renderer.face_positions)": [[9, "ete4.smartview.renderer.face_positions.Grid"]], "htmlface (class in ete4.smartview.renderer.faces)": [[9, "ete4.smartview.renderer.faces.HTMLFace"]], "imgface (class in ete4.smartview.renderer.faces)": [[9, "ete4.smartview.renderer.faces.ImgFace"]], "layoutalignment (class in ete4.smartview.renderer.layouts.seq_layouts)": [[9, "ete4.smartview.renderer.layouts.seq_layouts.LayoutAlignment"]], "layoutautoname (class in ete4.smartview.renderer.layouts.spongilla_layouts)": [[9, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutAutoName"]], "layoutbarplot (class in ete4.smartview.renderer.layouts.staple_layouts)": [[9, "ete4.smartview.renderer.layouts.staple_layouts.LayoutBarplot"]], "layoutbestname (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutBestName"]], "layoutbigg (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutBigg"]], "layoutbranchlength (class in ete4.smartview.renderer.layouts.default_layouts)": [[9, "ete4.smartview.renderer.layouts.default_layouts.LayoutBranchLength"]], "layoutbranchsupport (class in ete4.smartview.renderer.layouts.default_layouts)": [[9, "ete4.smartview.renderer.layouts.default_layouts.LayoutBranchSupport"]], "layoutcard (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutCard"]], "layoutcazy (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutCazy"]], "layoutcuratedname (class in ete4.smartview.renderer.layouts.spongilla_layouts)": [[9, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutCuratedName"]], "layoutetediffdistance (class in ete4.smartview.renderer.layouts.etecompare_layouts)": [[9, "ete4.smartview.renderer.layouts.etecompare_layouts.LayoutEteDiffDistance"]], "layouteukogs (class in ete4.smartview.renderer.layouts.spongilla_layouts)": [[9, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutEukOgs"]], "layoutevolevents (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutEvolEvents"]], "layoutevolevents (class in ete4.smartview.renderer.layouts.evol_events_layouts)": [[9, "ete4.smartview.renderer.layouts.evol_events_layouts.LayoutEvolEvents"]], "layoutgenomiccontext (class in ete4.smartview.renderer.layouts.context_layouts)": [[9, "ete4.smartview.renderer.layouts.context_layouts.LayoutGenomicContext"]], "layouthumanogs (class in ete4.smartview.renderer.layouts.evocell_layouts)": [[9, "ete4.smartview.renderer.layouts.evocell_layouts.LayoutHumanOGs"]], "layoutkeggenzyme (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutKeggEnzyme"]], "layoutkeggmodule (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutKeggModule"]], "layoutkeggnumber (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutKeggNumber"]], "layoutkeggpathway (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutKeggPathway"]], "layoutlastcommonancestor (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutLastCommonAncestor"]], "layoutlastcommonancestor (class in ete4.smartview.renderer.layouts.ncbi_taxonomy_layouts)": [[9, "ete4.smartview.renderer.layouts.ncbi_taxonomy_layouts.LayoutLastCommonAncestor"]], "layoutleafname (class in ete4.smartview.renderer.layouts.default_layouts)": [[9, "ete4.smartview.renderer.layouts.default_layouts.LayoutLeafName"]], "layoutnumberleaves (class in ete4.smartview.renderer.layouts.default_layouts)": [[9, "ete4.smartview.renderer.layouts.default_layouts.LayoutNumberLeaves"]], "layoutoutline (class in ete4.smartview.renderer.layouts.default_layouts)": [[9, "ete4.smartview.renderer.layouts.default_layouts.LayoutOutline"]], "layoutpdb (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutPdb"]], "layoutpfamdomains (class in ete4.smartview.renderer.layouts.domain_layouts)": [[9, "ete4.smartview.renderer.layouts.domain_layouts.LayoutPfamDomains"]], "layoutpfamdomains (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutPfamDomains"]], "layoutpreferredname (class in ete4.smartview.renderer.layouts.spongilla_layouts)": [[9, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutPreferredName"]], "layoutproteinname (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutProteinName"]], "layoutsciname (class in ete4.smartview.renderer.layouts.spongilla_layouts)": [[9, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutSciName"]], "layoutscientificname (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutScientificName"]], "layoutseeds (class in ete4.smartview.renderer.layouts.spongilla_layouts)": [[9, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutSeeds"]], "layoutsmartdomains (class in ete4.smartview.renderer.layouts.domain_layouts)": [[9, "ete4.smartview.renderer.layouts.domain_layouts.LayoutSmartDomains"]], "layoutsmartdomains (class in ete4.smartview.renderer.layouts.eggnog6_layouts)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutSmartDomains"]], "layoutucsc (class in ete4.smartview.renderer.layouts.evocell_layouts)": [[9, "ete4.smartview.renderer.layouts.evocell_layouts.LayoutUCSC"]], "layoutucsctrans (class in ete4.smartview.renderer.layouts.evocell_layouts)": [[9, "ete4.smartview.renderer.layouts.evocell_layouts.LayoutUCSCtrans"]], "legendface (class in ete4.smartview.renderer.faces)": [[9, "ete4.smartview.renderer.faces.LegendFace"]], "min_size (drawer attribute)": [[9, "ete4.smartview.renderer.drawer.Drawer.MIN_SIZE"]], "npanels (drawer attribute)": [[9, "ete4.smartview.renderer.drawer.Drawer.NPANELS"]], "npanels (draweraligncircfaces attribute)": [[9, "ete4.smartview.renderer.drawer.DrawerAlignCircFaces.NPANELS"]], "npanels (draweralignrectfaces attribute)": [[9, "ete4.smartview.renderer.drawer.DrawerAlignRectFaces.NPANELS"]], "nodestyle (class in ete4.smartview.renderer.nodestyle)": [[9, "ete4.smartview.renderer.nodestyle.NodeStyle"]], "outlineface (class in ete4.smartview.renderer.faces)": [[9, "ete4.smartview.renderer.faces.OutlineFace"]], "padding (class in ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.Padding"]], "piechartface (class in ete4.smartview.renderer.faces)": [[9, "ete4.smartview.renderer.faces.PieChartFace"]], "rectface (class in ete4.smartview.renderer.faces)": [[9, "ete4.smartview.renderer.faces.RectFace"]], "scaleface (class in ete4.smartview.renderer.faces)": [[9, "ete4.smartview.renderer.faces.ScaleFace"]], "selectedcircleface (class in ete4.smartview.renderer.faces)": [[9, "ete4.smartview.renderer.faces.SelectedCircleFace"]], "selectedface (class in ete4.smartview.renderer.faces)": [[9, "ete4.smartview.renderer.faces.SelectedFace"]], "selectedrectface (class in ete4.smartview.renderer.faces)": [[9, "ete4.smartview.renderer.faces.SelectedRectFace"]], "seqface (class in ete4.smartview.renderer.faces)": [[9, "ete4.smartview.renderer.faces.SeqFace"]], "seqmotifface (class in ete4.smartview.renderer.faces)": [[9, "ete4.smartview.renderer.faces.SeqMotifFace"]], "size (class in ete4.smartview.renderer.drawer)": [[9, "ete4.smartview.renderer.drawer.Size"]], "stackedbarface (class in ete4.smartview.renderer.faces)": [[9, "ete4.smartview.renderer.faces.StackedBarFace"]], "type (drawer attribute)": [[9, "ete4.smartview.renderer.drawer.Drawer.TYPE"]], "type (drawercirc attribute)": [[9, "ete4.smartview.renderer.drawer.DrawerCirc.TYPE"]], "type (drawerrect attribute)": [[9, "ete4.smartview.renderer.drawer.DrawerRect.TYPE"]], "textface (class in ete4.smartview.renderer.faces)": [[9, "ete4.smartview.renderer.faces.TextFace"]], "treeactive (class in ete4.smartview.renderer.drawer)": [[9, "ete4.smartview.renderer.drawer.TreeActive"]], "treelayout (class in ete4.smartview.renderer.treelayout)": [[9, "ete4.smartview.renderer.treelayout.TreeLayout"]], "treestyle (class in ete4.smartview.renderer.treestyle)": [[9, "ete4.smartview.renderer.treestyle.TreeStyle"]], "__init__() (alignlinkface method)": [[9, "ete4.smartview.renderer.faces.AlignLinkFace.__init__"]], "__init__() (alignedgrid method)": [[9, "ete4.smartview.renderer.face_positions.AlignedGrid.__init__"]], "__init__() (alignmentface method)": [[9, "ete4.smartview.renderer.faces.AlignmentFace.__init__"]], "__init__() (apptree method)": [[9, "ete4.smartview.gui.server.AppTree.__init__"]], "__init__() (arrowface method)": [[9, "ete4.smartview.renderer.faces.ArrowFace.__init__"]], "__init__() (attrface method)": [[9, "ete4.smartview.renderer.faces.AttrFace.__init__"]], "__init__() (circleface method)": [[9, "ete4.smartview.renderer.faces.CircleFace.__init__"]], "__init__() (drawer method)": [[9, "ete4.smartview.renderer.drawer.Drawer.__init__"]], "__init__() (drawercirc method)": [[9, "ete4.smartview.renderer.drawer.DrawerCirc.__init__"]], "__init__() (face method)": [[9, "ete4.smartview.renderer.faces.Face.__init__"]], "__init__() (htmlface method)": [[9, "ete4.smartview.renderer.faces.HTMLFace.__init__"]], "__init__() (imgface method)": [[9, "ete4.smartview.renderer.faces.ImgFace.__init__"]], "__init__() (layoutalignment method)": [[9, "ete4.smartview.renderer.layouts.seq_layouts.LayoutAlignment.__init__"]], "__init__() (layoutautoname method)": [[9, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutAutoName.__init__"]], "__init__() (layoutbarplot method)": [[9, "ete4.smartview.renderer.layouts.staple_layouts.LayoutBarplot.__init__"]], "__init__() (layoutbestname method)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutBestName.__init__"]], "__init__() (layoutbigg method)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutBigg.__init__"]], "__init__() (layoutbranchlength method)": [[9, "ete4.smartview.renderer.layouts.default_layouts.LayoutBranchLength.__init__"]], "__init__() (layoutbranchsupport method)": [[9, "ete4.smartview.renderer.layouts.default_layouts.LayoutBranchSupport.__init__"]], "__init__() (layoutcard method)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutCard.__init__"]], "__init__() (layoutcazy method)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutCazy.__init__"]], "__init__() (layoutcuratedname method)": [[9, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutCuratedName.__init__"]], "__init__() (layoutetediffdistance method)": [[9, "ete4.smartview.renderer.layouts.etecompare_layouts.LayoutEteDiffDistance.__init__"]], "__init__() (layouteukogs method)": [[9, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutEukOgs.__init__"]], "__init__() (layoutevolevents method)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutEvolEvents.__init__"], [9, "ete4.smartview.renderer.layouts.evol_events_layouts.LayoutEvolEvents.__init__"]], "__init__() (layoutgenomiccontext method)": [[9, "ete4.smartview.renderer.layouts.context_layouts.LayoutGenomicContext.__init__"]], "__init__() (layouthumanogs method)": [[9, "ete4.smartview.renderer.layouts.evocell_layouts.LayoutHumanOGs.__init__"]], "__init__() (layoutkeggenzyme method)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutKeggEnzyme.__init__"]], "__init__() (layoutkeggmodule method)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutKeggModule.__init__"]], "__init__() (layoutkeggnumber method)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutKeggNumber.__init__"]], "__init__() (layoutkeggpathway method)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutKeggPathway.__init__"]], "__init__() (layoutlastcommonancestor method)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutLastCommonAncestor.__init__"], [9, "ete4.smartview.renderer.layouts.ncbi_taxonomy_layouts.LayoutLastCommonAncestor.__init__"]], "__init__() (layoutleafname method)": [[9, "ete4.smartview.renderer.layouts.default_layouts.LayoutLeafName.__init__"]], "__init__() (layoutnumberleaves method)": [[9, "ete4.smartview.renderer.layouts.default_layouts.LayoutNumberLeaves.__init__"]], "__init__() (layoutoutline method)": [[9, "ete4.smartview.renderer.layouts.default_layouts.LayoutOutline.__init__"]], "__init__() (layoutpdb method)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutPdb.__init__"]], "__init__() (layoutpfamdomains method)": [[9, "ete4.smartview.renderer.layouts.domain_layouts.LayoutPfamDomains.__init__"], [9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutPfamDomains.__init__"]], "__init__() (layoutpreferredname method)": [[9, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutPreferredName.__init__"]], "__init__() (layoutproteinname method)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutProteinName.__init__"]], "__init__() (layoutsciname method)": [[9, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutSciName.__init__"]], "__init__() (layoutscientificname method)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutScientificName.__init__"]], "__init__() (layoutseeds method)": [[9, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutSeeds.__init__"]], "__init__() (layoutsmartdomains method)": [[9, "ete4.smartview.renderer.layouts.domain_layouts.LayoutSmartDomains.__init__"], [9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutSmartDomains.__init__"]], "__init__() (layoutucsc method)": [[9, "ete4.smartview.renderer.layouts.evocell_layouts.LayoutUCSC.__init__"]], "__init__() (layoutucsctrans method)": [[9, "ete4.smartview.renderer.layouts.evocell_layouts.LayoutUCSCtrans.__init__"]], "__init__() (legendface method)": [[9, "ete4.smartview.renderer.faces.LegendFace.__init__"]], "__init__() (nodestyle method)": [[9, "ete4.smartview.renderer.nodestyle.NodeStyle.__init__"]], "__init__() (outlineface method)": [[9, "ete4.smartview.renderer.faces.OutlineFace.__init__"]], "__init__() (piechartface method)": [[9, "ete4.smartview.renderer.faces.PieChartFace.__init__"]], "__init__() (rectface method)": [[9, "ete4.smartview.renderer.faces.RectFace.__init__"]], "__init__() (scaleface method)": [[9, "ete4.smartview.renderer.faces.ScaleFace.__init__"]], "__init__() (selectedcircleface method)": [[9, "ete4.smartview.renderer.faces.SelectedCircleFace.__init__"]], "__init__() (selectedface method)": [[9, "ete4.smartview.renderer.faces.SelectedFace.__init__"]], "__init__() (selectedrectface method)": [[9, "ete4.smartview.renderer.faces.SelectedRectFace.__init__"]], "__init__() (seqface method)": [[9, "ete4.smartview.renderer.faces.SeqFace.__init__"]], "__init__() (seqmotifface method)": [[9, "ete4.smartview.renderer.faces.SeqMotifFace.__init__"]], "__init__() (stackedbarface method)": [[9, "ete4.smartview.renderer.faces.StackedBarFace.__init__"]], "__init__() (textface method)": [[9, "ete4.smartview.renderer.faces.TextFace.__init__"]], "__init__() (treelayout method)": [[9, "ete4.smartview.renderer.treelayout.TreeLayout.__init__"]], "__init__() (treestyle method)": [[9, "ete4.smartview.renderer.treestyle.TreeStyle.__init__"]], "activate_clade() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.activate_clade"]], "activate_node() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.activate_node"]], "active (apptree attribute)": [[9, "ete4.smartview.gui.server.AppTree.active"]], "active_face (treestyle property)": [[9, "ete4.smartview.renderer.treestyle.TreeStyle.active_face"]], "active_face_pos (treestyle property)": [[9, "ete4.smartview.renderer.treestyle.TreeStyle.active_face_pos"]], "add_face() (grid method)": [[9, "ete4.smartview.renderer.face_positions.Grid.add_face"]], "add_legend() (treestyle method)": [[9, "ete4.smartview.renderer.treestyle.TreeStyle.add_legend"]], "add_tree() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.add_tree"]], "add_trees_from_request() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.add_trees_from_request"]], "aligned_panel_footer (treestyle property)": [[9, "ete4.smartview.renderer.treestyle.TreeStyle.aligned_panel_footer"]], "aligned_panel_header (treestyle property)": [[9, "ete4.smartview.renderer.treestyle.TreeStyle.aligned_panel_header"]], "build_blocks() (alignmentface method)": [[9, "ete4.smartview.renderer.faces.AlignmentFace.build_blocks"]], "build_regions() (seqmotifface method)": [[9, "ete4.smartview.renderer.faces.SeqMotifFace.build_regions"]], "callback() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.callback"]], "cartesian() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.cartesian"]], "cased_name() (in module ete4.smartview.renderer.treelayout)": [[9, "ete4.smartview.renderer.treelayout.cased_name"]], "change_selection_name() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.change_selection_name"]], "circumasec() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.circumasec"]], "circumrect() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.circumrect"]], "clades (treeactive attribute)": [[9, "ete4.smartview.renderer.drawer.TreeActive.clades"]], "clip_angles() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.clip_angles"]], "compute_bounding_box() (alignlinkface method)": [[9, "ete4.smartview.renderer.faces.AlignLinkFace.compute_bounding_box"]], "compute_bounding_box() (alignmentface method)": [[9, "ete4.smartview.renderer.faces.AlignmentFace.compute_bounding_box"]], "compute_bounding_box() (circleface method)": [[9, "ete4.smartview.renderer.faces.CircleFace.compute_bounding_box"]], "compute_bounding_box() (face method)": [[9, "ete4.smartview.renderer.faces.Face.compute_bounding_box"]], "compute_bounding_box() (outlineface method)": [[9, "ete4.smartview.renderer.faces.OutlineFace.compute_bounding_box"]], "compute_bounding_box() (rectface method)": [[9, "ete4.smartview.renderer.faces.RectFace.compute_bounding_box"]], "compute_bounding_box() (scaleface method)": [[9, "ete4.smartview.renderer.faces.ScaleFace.compute_bounding_box"]], "compute_bounding_box() (seqface method)": [[9, "ete4.smartview.renderer.faces.SeqFace.compute_bounding_box"]], "compute_bounding_box() (seqmotifface method)": [[9, "ete4.smartview.renderer.faces.SeqMotifFace.compute_bounding_box"]], "compute_bounding_box() (textface method)": [[9, "ete4.smartview.renderer.faces.TextFace.compute_bounding_box"]], "compute_fsize() (face method)": [[9, "ete4.smartview.renderer.faces.Face.compute_fsize"]], "compute_pie() (piechartface method)": [[9, "ete4.smartview.renderer.faces.PieChartFace.compute_pie"]], "content_size() (drawercirc method)": [[9, "ete4.smartview.renderer.drawer.DrawerCirc.content_size"]], "content_size() (drawerrect method)": [[9, "ete4.smartview.renderer.drawer.DrawerRect.content_size"]], "copy_style() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.copy_style"]], "deactivate_clade() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.deactivate_clade"]], "deactivate_node() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.deactivate_node"]], "del_tree() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.del_tree"]], "dist() (in module ete4.smartview.renderer.drawer)": [[9, "ete4.smartview.renderer.drawer.dist"]], "draw() (alignlinkface method)": [[9, "ete4.smartview.renderer.faces.AlignLinkFace.draw"]], "draw() (alignmentface method)": [[9, "ete4.smartview.renderer.faces.AlignmentFace.draw"]], "draw() (arrowface method)": [[9, "ete4.smartview.renderer.faces.ArrowFace.draw"]], "draw() (circleface method)": [[9, "ete4.smartview.renderer.faces.CircleFace.draw"]], "draw() (drawer method)": [[9, "ete4.smartview.renderer.drawer.Drawer.draw"]], "draw() (htmlface method)": [[9, "ete4.smartview.renderer.faces.HTMLFace.draw"]], "draw() (imgface method)": [[9, "ete4.smartview.renderer.faces.ImgFace.draw"]], "draw() (legendface method)": [[9, "ete4.smartview.renderer.faces.LegendFace.draw"]], "draw() (outlineface method)": [[9, "ete4.smartview.renderer.faces.OutlineFace.draw"]], "draw() (piechartface method)": [[9, "ete4.smartview.renderer.faces.PieChartFace.draw"]], "draw() (rectface method)": [[9, "ete4.smartview.renderer.faces.RectFace.draw"]], "draw() (scaleface method)": [[9, "ete4.smartview.renderer.faces.ScaleFace.draw"]], "draw() (seqface method)": [[9, "ete4.smartview.renderer.faces.SeqFace.draw"]], "draw() (seqmotifface method)": [[9, "ete4.smartview.renderer.faces.SeqMotifFace.draw"]], "draw() (stackedbarface method)": [[9, "ete4.smartview.renderer.faces.StackedBarFace.draw"]], "draw() (textface method)": [[9, "ete4.smartview.renderer.faces.TextFace.draw"]], "draw_aligned_headers() (drawer method)": [[9, "ete4.smartview.renderer.drawer.Drawer.draw_aligned_headers"]], "draw_arc() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.draw_arc"]], "draw_array() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.draw_array"]], "draw_arrow() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.draw_arrow"]], "draw_childrenline() (drawercirc method)": [[9, "ete4.smartview.renderer.drawer.DrawerCirc.draw_childrenline"]], "draw_childrenline() (drawerrect method)": [[9, "ete4.smartview.renderer.drawer.DrawerRect.draw_childrenline"]], "draw_circle() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.draw_circle"]], "draw_collapsed() (drawer method)": [[9, "ete4.smartview.renderer.drawer.Drawer.draw_collapsed"]], "draw_collapsed() (drawercirc method)": [[9, "ete4.smartview.renderer.drawer.DrawerCirc.draw_collapsed"]], "draw_collapsed() (drawercircfaces method)": [[9, "ete4.smartview.renderer.drawer.DrawerCircFaces.draw_collapsed"]], "draw_collapsed() (drawerrect method)": [[9, "ete4.smartview.renderer.drawer.DrawerRect.draw_collapsed"]], "draw_collapsed() (drawerrectfaces method)": [[9, "ete4.smartview.renderer.drawer.DrawerRectFaces.draw_collapsed"]], "draw_content() (drawer method)": [[9, "ete4.smartview.renderer.drawer.Drawer.draw_content"]], "draw_ellipse() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.draw_ellipse"]], "draw_html() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.draw_html"]], "draw_img() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.draw_img"]], "draw_lengthline() (drawercirc method)": [[9, "ete4.smartview.renderer.drawer.DrawerCirc.draw_lengthline"]], "draw_lengthline() (drawerrect method)": [[9, "ete4.smartview.renderer.drawer.DrawerRect.draw_lengthline"]], "draw_line() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.draw_line"]], "draw_node() (drawer method)": [[9, "ete4.smartview.renderer.drawer.Drawer.draw_node"]], "draw_node() (drawercircfaces method)": [[9, "ete4.smartview.renderer.drawer.DrawerCircFaces.draw_node"]], "draw_node() (drawerrectfaces method)": [[9, "ete4.smartview.renderer.drawer.DrawerRectFaces.draw_node"]], "draw_nodebox() (drawercirc method)": [[9, "ete4.smartview.renderer.drawer.DrawerCirc.draw_nodebox"]], "draw_nodebox() (drawerrect method)": [[9, "ete4.smartview.renderer.drawer.DrawerRect.draw_nodebox"]], "draw_nodebox() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.draw_nodebox"]], "draw_nodedot() (drawercirc method)": [[9, "ete4.smartview.renderer.drawer.DrawerCirc.draw_nodedot"]], "draw_nodedot() (drawerrect method)": [[9, "ete4.smartview.renderer.drawer.DrawerRect.draw_nodedot"]], "draw_outline() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.draw_outline"]], "draw_rect() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.draw_rect"]], "draw_rhombus() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.draw_rhombus"]], "draw_slice() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.draw_slice"]], "draw_text() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.draw_text"]], "draw_triangle() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.draw_triangle"]], "drawn_size() (in module ete4.smartview.renderer.drawer)": [[9, "ete4.smartview.renderer.drawer.drawn_size"]], "dx (box attribute)": [[9, "ete4.smartview.renderer.draw_helpers.Box.dx"]], "dx (size attribute)": [[9, "ete4.smartview.renderer.drawer.Size.dx"]], "dy (box attribute)": [[9, "ete4.smartview.renderer.draw_helpers.Box.dy"]], "dy (size attribute)": [[9, "ete4.smartview.renderer.drawer.Size.dy"]], "ete4.smartview.gui.server": [[9, "module-ete4.smartview.gui.server"]], "ete4.smartview.renderer.draw_helpers": [[9, "module-ete4.smartview.renderer.draw_helpers"]], "ete4.smartview.renderer.drawer": [[9, "module-ete4.smartview.renderer.drawer"]], "ete4.smartview.renderer.face_positions": [[9, "module-ete4.smartview.renderer.face_positions"]], "ete4.smartview.renderer.faces": [[9, "module-ete4.smartview.renderer.faces"]], "ete4.smartview.renderer.layouts.context_layouts": [[9, "module-ete4.smartview.renderer.layouts.context_layouts"]], "ete4.smartview.renderer.layouts.default_layouts": [[9, "module-ete4.smartview.renderer.layouts.default_layouts"]], "ete4.smartview.renderer.layouts.domain_layouts": [[9, "module-ete4.smartview.renderer.layouts.domain_layouts"]], "ete4.smartview.renderer.layouts.eggnog6_layouts": [[9, "module-ete4.smartview.renderer.layouts.eggnog6_layouts"]], "ete4.smartview.renderer.layouts.etecompare_layouts": [[9, "module-ete4.smartview.renderer.layouts.etecompare_layouts"]], "ete4.smartview.renderer.layouts.evocell_layouts": [[9, "module-ete4.smartview.renderer.layouts.evocell_layouts"]], "ete4.smartview.renderer.layouts.evol_events_layouts": [[9, "module-ete4.smartview.renderer.layouts.evol_events_layouts"]], "ete4.smartview.renderer.layouts.ncbi_taxonomy_layouts": [[9, "module-ete4.smartview.renderer.layouts.ncbi_taxonomy_layouts"]], "ete4.smartview.renderer.layouts.phylocloud_egg5_layouts": [[9, "module-ete4.smartview.renderer.layouts.phylocloud_egg5_layouts"]], "ete4.smartview.renderer.layouts.seq_layouts": [[9, "module-ete4.smartview.renderer.layouts.seq_layouts"]], "ete4.smartview.renderer.layouts.spongilla_layouts": [[9, "module-ete4.smartview.renderer.layouts.spongilla_layouts"]], "ete4.smartview.renderer.layouts.staple_layouts": [[9, "module-ete4.smartview.renderer.layouts.staple_layouts"]], "ete4.smartview.renderer.nodestyle": [[9, "module-ete4.smartview.renderer.nodestyle"]], "ete4.smartview.renderer.treelayout": [[9, "module-ete4.smartview.renderer.treelayout"]], "ete4.smartview.renderer.treestyle": [[9, "module-ete4.smartview.renderer.treestyle"]], "exclude_props (apptree attribute)": [[9, "ete4.smartview.gui.server.AppTree.exclude_props"]], "find_node() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.find_node"]], "first_value() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.first_value"]], "fits() (alignlinkface method)": [[9, "ete4.smartview.renderer.faces.AlignLinkFace.fits"]], "fits() (face method)": [[9, "ete4.smartview.renderer.faces.Face.fits"]], "fits() (outlineface method)": [[9, "ete4.smartview.renderer.faces.OutlineFace.fits"]], "fits() (seqmotifface method)": [[9, "ete4.smartview.renderer.faces.SeqMotifFace.fits"]], "fits() (textface method)": [[9, "ete4.smartview.renderer.faces.TextFace.fits"]], "flush_outline() (drawer method)": [[9, "ete4.smartview.renderer.drawer.Drawer.flush_outline"]], "flush_outline() (drawercirc method)": [[9, "ete4.smartview.renderer.drawer.DrawerCirc.flush_outline"]], "get_active_children() (drawer method)": [[9, "ete4.smartview.renderer.drawer.Drawer.get_active_children"]], "get_active_clade() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.get_active_clade"]], "get_active_clades() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.get_active_clades"]], "get_asec() (in module ete4.smartview.renderer.drawer)": [[9, "ete4.smartview.renderer.drawer.get_asec"]], "get_box() (alignlinkface method)": [[9, "ete4.smartview.renderer.faces.AlignLinkFace.get_box"]], "get_box() (drawercirc method)": [[9, "ete4.smartview.renderer.drawer.DrawerCirc.get_box"]], "get_box() (drawerrect method)": [[9, "ete4.smartview.renderer.drawer.DrawerRect.get_box"]], "get_box() (face method)": [[9, "ete4.smartview.renderer.faces.Face.get_box"]], "get_box() (outlineface method)": [[9, "ete4.smartview.renderer.faces.OutlineFace.get_box"]], "get_collapsed_node() (drawer method)": [[9, "ete4.smartview.renderer.drawer.Drawer.get_collapsed_node"]], "get_color() (layoutlastcommonancestor method)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutLastCommonAncestor.get_color"], [9, "ete4.smartview.renderer.layouts.ncbi_taxonomy_layouts.LayoutLastCommonAncestor.get_color"]], "get_command_search() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.get_command_search"]], "get_content() (attrface method)": [[9, "ete4.smartview.renderer.faces.AttrFace.get_content"]], "get_content() (face method)": [[9, "ete4.smartview.renderer.faces.Face.get_content"]], "get_context() (layoutgenomiccontext method)": [[9, "ete4.smartview.renderer.layouts.context_layouts.LayoutGenomicContext.get_context"]], "get_drawer() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.get_drawer"]], "get_drawers() (in module ete4.smartview.renderer.drawer)": [[9, "ete4.smartview.renderer.drawer.get_drawers"]], "get_empty_active() (in module ete4.smartview.renderer.drawer)": [[9, "ete4.smartview.renderer.drawer.get_empty_active"]], "get_eval_search() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.get_eval_search"]], "get_fields() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.get_fields"]], "get_layout_evoltype() (in module ete4.smartview.renderer.layouts.phylocloud_egg5_layouts)": [[9, "ete4.smartview.renderer.layouts.phylocloud_egg5_layouts.get_layout_evoltype"]], "get_layout_gnames() (in module ete4.smartview.renderer.layouts.phylocloud_egg5_layouts)": [[9, "ete4.smartview.renderer.layouts.phylocloud_egg5_layouts.get_layout_gnames"]], "get_layout_lca_rects() (in module ete4.smartview.renderer.layouts.phylocloud_egg5_layouts)": [[9, "ete4.smartview.renderer.layouts.phylocloud_egg5_layouts.get_layout_lca_rects"]], "get_layout_ogs_egg5() (in module ete4.smartview.renderer.layouts.phylocloud_egg5_layouts)": [[9, "ete4.smartview.renderer.layouts.phylocloud_egg5_layouts.get_layout_ogs_egg5"]], "get_layout_sciname() (in module ete4.smartview.renderer.layouts.phylocloud_egg5_layouts)": [[9, "ete4.smartview.renderer.layouts.phylocloud_egg5_layouts.get_layout_sciname"]], "get_layouts() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.get_layouts"]], "get_layouts_from_getters() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.get_layouts_from_getters"]], "get_legend() (treestyle method)": [[9, "ete4.smartview.renderer.treestyle.TreeStyle.get_legend"]], "get_line_type() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.get_line_type"]], "get_newick() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.get_newick"]], "get_nodes_info() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.get_nodes_info"]], "get_outline() (drawer method)": [[9, "ete4.smartview.renderer.drawer.Drawer.get_outline"]], "get_parents() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.get_parents"]], "get_parser() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.get_parser"]], "get_popup_props() (drawer method)": [[9, "ete4.smartview.renderer.drawer.Drawer.get_popup_props"]], "get_rect() (in module ete4.smartview.renderer.drawer)": [[9, "ete4.smartview.renderer.drawer.get_rect"]], "get_search_function() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.get_search_function"]], "get_selected_children() (drawer method)": [[9, "ete4.smartview.renderer.drawer.Drawer.get_selected_children"]], "get_selection_info() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.get_selection_info"]], "get_selections() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.get_selections"]], "get_seq() (alignmentface method)": [[9, "ete4.smartview.renderer.faces.AlignmentFace.get_seq"]], "get_seq() (layoutalignment method)": [[9, "ete4.smartview.renderer.layouts.seq_layouts.LayoutAlignment.get_seq"]], "get_stats() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.get_stats"]], "get_tid() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.get_tid"]], "get_tooltip() (layoutgenomiccontext method)": [[9, "ete4.smartview.renderer.layouts.context_layouts.LayoutGenomicContext.get_tooltip"]], "get_topological_search() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.get_topological_search"]], "get_trees_from_file() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.get_trees_from_file"]], "get_trees_from_form() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.get_trees_from_form"]], "get_trees_from_nexus_or_newick() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.get_trees_from_nexus_or_newick"]], "get_xs() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.get_xs"]], "get_ys() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.get_ys"]], "in_aligned_viewport() (face method)": [[9, "ete4.smartview.renderer.faces.Face.in_aligned_viewport"]], "in_viewport() (drawercirc method)": [[9, "ete4.smartview.renderer.drawer.DrawerCirc.in_viewport"]], "in_viewport() (drawerrect method)": [[9, "ete4.smartview.renderer.drawer.DrawerRect.in_viewport"]], "include_props (apptree attribute)": [[9, "ete4.smartview.gui.server.AppTree.include_props"]], "init() (nodestyle method)": [[9, "ete4.smartview.renderer.nodestyle.NodeStyle.init"]], "initialize() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.initialize"]], "initialize_tree_style() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.initialize_tree_style"]], "initialized (apptree attribute)": [[9, "ete4.smartview.gui.server.AppTree.initialized"]], "intersects_angles() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.intersects_angles"]], "intersects_box() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.intersects_box"]], "intersects_segment() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.intersects_segment"]], "is_fully_collapsed() (drawer method)": [[9, "ete4.smartview.renderer.drawer.Drawer.is_fully_collapsed"]], "is_small() (drawercirc method)": [[9, "ete4.smartview.renderer.drawer.DrawerCirc.is_small"]], "is_small() (drawerrect method)": [[9, "ete4.smartview.renderer.drawer.DrawerRect.is_small"]], "json_error() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.json_error"]], "layouts (apptree attribute)": [[9, "ete4.smartview.gui.server.AppTree.layouts"]], "load_tree() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.load_tree"]], "load_tree_from_newick() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.load_tree_from_newick"]], "maintenance() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.maintenance"]], "make_box() (in module ete4.smartview.renderer.drawer)": [[9, "ete4.smartview.renderer.drawer.make_box"]], "make_faces() (in module ete4.smartview.renderer.face_positions)": [[9, "ete4.smartview.renderer.face_positions.make_faces"]], "make_name() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.make_name"]], "modify_tree_fields() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.modify_tree_fields"]], "name (apptree attribute)": [[9, "ete4.smartview.gui.server.AppTree.name"]], "nice_html() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.nice_html"]], "node_size() (drawercirc method)": [[9, "ete4.smartview.renderer.drawer.DrawerCirc.node_size"]], "node_size() (drawerrect method)": [[9, "ete4.smartview.renderer.drawer.DrawerRect.node_size"]], "nodes (treeactive attribute)": [[9, "ete4.smartview.renderer.drawer.TreeActive.nodes"]], "nodestyles (apptree attribute)": [[9, "ete4.smartview.gui.server.AppTree.nodestyles"]], "on_first_visit() (drawer method)": [[9, "ete4.smartview.renderer.drawer.Drawer.on_first_visit"]], "on_last_visit() (drawer method)": [[9, "ete4.smartview.renderer.drawer.Drawer.on_last_visit"]], "open_browser_window() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.open_browser_window"]], "orientation (arrowface property)": [[9, "ete4.smartview.renderer.faces.ArrowFace.orientation"]], "parents (active attribute)": [[9, "ete4.smartview.renderer.drawer.Active.parents"]], "prune_by_selection() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.prune_by_selection"]], "remove_active() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.remove_active"]], "remove_active_clade() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.remove_active_clade"]], "remove_search() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.remove_search"]], "remove_selection() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.remove_selection"]], "req_json() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.req_json"]], "results (active attribute)": [[9, "ete4.smartview.renderer.drawer.Active.results"]], "retrieve_layouts() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.retrieve_layouts"]], "retrieve_tree() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.retrieve_tree"]], "run_smartview() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.run_smartview"]], "safe_string() (in module ete4.smartview.renderer.drawer)": [[9, "ete4.smartview.renderer.drawer.safe_string"]], "safer_eval() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.safer_eval"]], "search_to_selection() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.search_to_selection"]], "searches (apptree attribute)": [[9, "ete4.smartview.gui.server.AppTree.searches"]], "selected (apptree attribute)": [[9, "ete4.smartview.gui.server.AppTree.selected"]], "selected_face (treestyle property)": [[9, "ete4.smartview.renderer.treestyle.TreeStyle.selected_face"]], "selected_face_pos (treestyle property)": [[9, "ete4.smartview.renderer.treestyle.TreeStyle.selected_face_pos"]], "set_node_style() (layoutalignment method)": [[9, "ete4.smartview.renderer.layouts.seq_layouts.LayoutAlignment.set_node_style"]], "set_node_style() (layoutautoname method)": [[9, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutAutoName.set_node_style"]], "set_node_style() (layoutbarplot method)": [[9, "ete4.smartview.renderer.layouts.staple_layouts.LayoutBarplot.set_node_style"]], "set_node_style() (layoutcuratedname method)": [[9, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutCuratedName.set_node_style"]], "set_node_style() (layoutetediffdistance method)": [[9, "ete4.smartview.renderer.layouts.etecompare_layouts.LayoutEteDiffDistance.set_node_style"]], "set_node_style() (layouteukogs method)": [[9, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutEukOgs.set_node_style"]], "set_node_style() (layoutevolevents method)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutEvolEvents.set_node_style"], [9, "ete4.smartview.renderer.layouts.evol_events_layouts.LayoutEvolEvents.set_node_style"]], "set_node_style() (layoutgenomiccontext method)": [[9, "ete4.smartview.renderer.layouts.context_layouts.LayoutGenomicContext.set_node_style"]], "set_node_style() (layouthumanogs method)": [[9, "ete4.smartview.renderer.layouts.evocell_layouts.LayoutHumanOGs.set_node_style"]], "set_node_style() (layoutlastcommonancestor method)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutLastCommonAncestor.set_node_style"], [9, "ete4.smartview.renderer.layouts.ncbi_taxonomy_layouts.LayoutLastCommonAncestor.set_node_style"]], "set_node_style() (layoutleafname method)": [[9, "ete4.smartview.renderer.layouts.default_layouts.LayoutLeafName.set_node_style"]], "set_node_style() (layoutnumberleaves method)": [[9, "ete4.smartview.renderer.layouts.default_layouts.LayoutNumberLeaves.set_node_style"]], "set_node_style() (layoutoutline method)": [[9, "ete4.smartview.renderer.layouts.default_layouts.LayoutOutline.set_node_style"]], "set_node_style() (layoutpreferredname method)": [[9, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutPreferredName.set_node_style"]], "set_node_style() (layoutsciname method)": [[9, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutSciName.set_node_style"]], "set_node_style() (layoutseeds method)": [[9, "ete4.smartview.renderer.layouts.spongilla_layouts.LayoutSeeds.set_node_style"]], "set_node_style() (layoutucsc method)": [[9, "ete4.smartview.renderer.layouts.evocell_layouts.LayoutUCSC.set_node_style"]], "set_node_style() (layoutucsctrans method)": [[9, "ete4.smartview.renderer.layouts.evocell_layouts.LayoutUCSCtrans.set_node_style"]], "set_node_style() (treelayout method)": [[9, "ete4.smartview.renderer.treelayout.TreeLayout.set_node_style"]], "set_tree_style() (layoutalignment method)": [[9, "ete4.smartview.renderer.layouts.seq_layouts.LayoutAlignment.set_tree_style"]], "set_tree_style() (layoutbarplot method)": [[9, "ete4.smartview.renderer.layouts.staple_layouts.LayoutBarplot.set_tree_style"]], "set_tree_style() (layoutevolevents method)": [[9, "ete4.smartview.renderer.layouts.eggnog6_layouts.LayoutEvolEvents.set_tree_style"], [9, "ete4.smartview.renderer.layouts.evol_events_layouts.LayoutEvolEvents.set_tree_style"]], "set_tree_style() (layoutgenomiccontext method)": [[9, "ete4.smartview.renderer.layouts.context_layouts.LayoutGenomicContext.set_tree_style"]], "set_tree_style() (treelayout method)": [[9, "ete4.smartview.renderer.treelayout.TreeLayout.set_tree_style"]], "sort() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.sort"]], "split_thru_negative_xaxis() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.split_thru_negative_xaxis"]], "stack() (in module ete4.smartview.renderer.drawer)": [[9, "ete4.smartview.renderer.drawer.stack"]], "store_active() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.store_active"]], "store_search() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.store_search"]], "store_selection() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.store_selection"]], "style (apptree attribute)": [[9, "ete4.smartview.gui.server.AppTree.style"]], "summary() (in module ete4.smartview.renderer.draw_helpers)": [[9, "ete4.smartview.renderer.draw_helpers.summary"]], "timer (apptree attribute)": [[9, "ete4.smartview.gui.server.AppTree.timer"]], "touch_and_get() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.touch_and_get"]], "tree (apptree attribute)": [[9, "ete4.smartview.gui.server.AppTree.tree"]], "unselect_node() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.unselect_node"]], "update_app_available_layouts() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.update_app_available_layouts"]], "update_layouts() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.update_layouts"]], "update_node_props() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.update_node_props"]], "update_node_style() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.update_node_style"]], "update_selection() (in module ete4.smartview.gui.server)": [[9, "ete4.smartview.gui.server.update_selection"]], "x (box attribute)": [[9, "ete4.smartview.renderer.draw_helpers.Box.x"]], "x (padding attribute)": [[9, "ete4.smartview.renderer.draw_helpers.Padding.x"]], "y (box attribute)": [[9, "ete4.smartview.renderer.draw_helpers.Box.y"]], "y (padding attribute)": [[9, "ete4.smartview.renderer.draw_helpers.Padding.y"]], "gtdbtaxa (class in ete4)": [[10, "ete4.GTDBTaxa"]], "ncbitaxa (class in ete4)": [[10, "ete4.NCBITaxa"]], "__init__() (gtdbtaxa method)": [[10, "ete4.GTDBTaxa.__init__"]], "__init__() (ncbitaxa method)": [[10, "ete4.NCBITaxa.__init__"]], "annotate_tree() (gtdbtaxa method)": [[10, "ete4.GTDBTaxa.annotate_tree"]], "annotate_tree() (ncbitaxa method)": [[10, "ete4.NCBITaxa.annotate_tree"]], "get_broken_branches() (gtdbtaxa method)": [[10, "ete4.GTDBTaxa.get_broken_branches"]], "get_broken_branches() (ncbitaxa method)": [[10, "ete4.NCBITaxa.get_broken_branches"]], "get_common_names() (gtdbtaxa method)": [[10, "ete4.GTDBTaxa.get_common_names"]], "get_common_names() (ncbitaxa method)": [[10, "ete4.NCBITaxa.get_common_names"]], "get_descendant_taxa() (gtdbtaxa method)": [[10, "ete4.GTDBTaxa.get_descendant_taxa"]], "get_descendant_taxa() (ncbitaxa method)": [[10, "ete4.NCBITaxa.get_descendant_taxa"]], "get_fuzzy_name_translation() (ncbitaxa method)": [[10, "ete4.NCBITaxa.get_fuzzy_name_translation"]], "get_lineage() (gtdbtaxa method)": [[10, "ete4.GTDBTaxa.get_lineage"]], "get_lineage() (ncbitaxa method)": [[10, "ete4.NCBITaxa.get_lineage"]], "get_lineage_translator() (gtdbtaxa method)": [[10, "ete4.GTDBTaxa.get_lineage_translator"]], "get_lineage_translator() (ncbitaxa method)": [[10, "ete4.NCBITaxa.get_lineage_translator"]], "get_name_lineage() (gtdbtaxa method)": [[10, "ete4.GTDBTaxa.get_name_lineage"]], "get_name_translator() (gtdbtaxa method)": [[10, "ete4.GTDBTaxa.get_name_translator"]], "get_name_translator() (ncbitaxa method)": [[10, "ete4.NCBITaxa.get_name_translator"]], "get_rank() (gtdbtaxa method)": [[10, "ete4.GTDBTaxa.get_rank"]], "get_rank() (ncbitaxa method)": [[10, "ete4.NCBITaxa.get_rank"]], "get_taxid_translator() (gtdbtaxa method)": [[10, "ete4.GTDBTaxa.get_taxid_translator"]], "get_taxid_translator() (ncbitaxa method)": [[10, "ete4.NCBITaxa.get_taxid_translator"]], "get_topology() (gtdbtaxa method)": [[10, "ete4.GTDBTaxa.get_topology"]], "get_topology() (ncbitaxa method)": [[10, "ete4.NCBITaxa.get_topology"]], "translate_to_names() (gtdbtaxa method)": [[10, "ete4.GTDBTaxa.translate_to_names"]], "translate_to_names() (ncbitaxa method)": [[10, "ete4.NCBITaxa.translate_to_names"]], "update_taxonomy_database() (gtdbtaxa method)": [[10, "ete4.GTDBTaxa.update_taxonomy_database"]], "update_taxonomy_database() (ncbitaxa method)": [[10, "ete4.NCBITaxa.update_taxonomy_database"]], "tree (class in ete4)": [[11, "ete4.Tree"]], "__init__() (tree method)": [[11, "ete4.Tree.__init__"]], "add_child() (tree method)": [[11, "ete4.Tree.add_child"]], "add_children() (tree method)": [[11, "ete4.Tree.add_children"]], "add_face() (tree method)": [[11, "ete4.Tree.add_face"]], "add_face_smartview() (tree method)": [[11, "ete4.Tree.add_face_smartview"]], "add_face_treeview() (tree method)": [[11, "ete4.Tree.add_face_treeview"]], "add_feature() (tree method)": [[11, "ete4.Tree.add_feature"]], "add_features() (tree method)": [[11, "ete4.Tree.add_features"]], "add_prop() (tree method)": [[11, "ete4.Tree.add_prop"]], "add_props() (tree method)": [[11, "ete4.Tree.add_props"]], "add_sister() (tree method)": [[11, "ete4.Tree.add_sister"]], "ancestors() (tree method)": [[11, "ete4.Tree.ancestors"]], "check_monophyly() (tree method)": [[11, "ete4.Tree.check_monophyly"]], "children (tree attribute)": [[11, "ete4.Tree.children"]], "collapsed_faces (tree attribute)": [[11, "ete4.Tree.collapsed_faces"]], "common_ancestor() (tree method)": [[11, "ete4.Tree.common_ancestor"]], "compare() (tree method)": [[11, "ete4.Tree.compare"]], "cophenetic_matrix() (tree method)": [[11, "ete4.Tree.cophenetic_matrix"]], "copy() (tree method)": [[11, "ete4.Tree.copy"]], "del_feature() (tree method)": [[11, "ete4.Tree.del_feature"]], "del_prop() (tree method)": [[11, "ete4.Tree.del_prop"]], "delete() (tree method)": [[11, "ete4.Tree.delete"]], "descendants() (tree method)": [[11, "ete4.Tree.descendants"]], "describe() (tree method)": [[11, "ete4.Tree.describe"]], "detach() (tree method)": [[11, "ete4.Tree.detach"]], "dist (tree attribute)": [[11, "ete4.Tree.dist"]], "edges() (tree method)": [[11, "ete4.Tree.edges"]], "expand_polytomies() (tree method)": [[11, "ete4.Tree.expand_polytomies"]], "explore() (tree method)": [[11, "ete4.Tree.explore"]], "faces (tree attribute)": [[11, "ete4.Tree.faces"]], "from_parent_child_table() (tree static method)": [[11, "ete4.Tree.from_parent_child_table"]], "from_skbio() (tree static method)": [[11, "ete4.Tree.from_skbio"]], "get_cached_content() (tree method)": [[11, "ete4.Tree.get_cached_content"]], "get_children() (tree method)": [[11, "ete4.Tree.get_children"]], "get_closest_leaf() (tree method)": [[11, "ete4.Tree.get_closest_leaf"]], "get_distance() (tree method)": [[11, "ete4.Tree.get_distance"]], "get_farthest_leaf() (tree method)": [[11, "ete4.Tree.get_farthest_leaf"]], "get_farthest_node() (tree method)": [[11, "ete4.Tree.get_farthest_node"]], "get_midpoint_outgroup() (tree method)": [[11, "ete4.Tree.get_midpoint_outgroup"]], "get_monophyletic() (tree method)": [[11, "ete4.Tree.get_monophyletic"]], "get_prop() (tree method)": [[11, "ete4.Tree.get_prop"]], "get_sisters() (tree method)": [[11, "ete4.Tree.get_sisters"]], "get_topology_id() (tree method)": [[11, "ete4.Tree.get_topology_id"]], "id (tree attribute)": [[11, "ete4.Tree.id"]], "img_style (tree property)": [[11, "ete4.Tree.img_style"]], "init_from_ete() (tree method)": [[11, "ete4.Tree.init_from_ete"]], "init_from_newick() (tree method)": [[11, "ete4.Tree.init_from_newick"]], "is_collapsed (tree property)": [[11, "ete4.Tree.is_collapsed"]], "is_initialized (tree property)": [[11, "ete4.Tree.is_initialized"]], "is_leaf (tree attribute)": [[11, "ete4.Tree.is_leaf"]], "is_monophyletic() (tree method)": [[11, "ete4.Tree.is_monophyletic"]], "is_root (tree attribute)": [[11, "ete4.Tree.is_root"]], "iter_prepostorder() (tree method)": [[11, "ete4.Tree.iter_prepostorder"]], "ladderize() (tree method)": [[11, "ete4.Tree.ladderize"]], "leaf_names() (tree method)": [[11, "ete4.Tree.leaf_names"]], "leaves() (tree method)": [[11, "ete4.Tree.leaves"]], "level (tree attribute)": [[11, "ete4.Tree.level"]], "lineage() (tree method)": [[11, "ete4.Tree.lineage"]], "name (tree attribute)": [[11, "ete4.Tree.name"]], "phonehome() (tree method)": [[11, "ete4.Tree.phonehome"]], "pop_child() (tree method)": [[11, "ete4.Tree.pop_child"]], "populate() (tree method)": [[11, "ete4.Tree.populate"]], "props (tree attribute)": [[11, "ete4.Tree.props"]], "prune() (tree method)": [[11, "ete4.Tree.prune"]], "remove_child() (tree method)": [[11, "ete4.Tree.remove_child"]], "remove_children() (tree method)": [[11, "ete4.Tree.remove_children"]], "remove_sister() (tree method)": [[11, "ete4.Tree.remove_sister"]], "render() (tree method)": [[11, "ete4.Tree.render"]], "resolve_polytomy() (tree method)": [[11, "ete4.Tree.resolve_polytomy"]], "reverse_children() (tree method)": [[11, "ete4.Tree.reverse_children"]], "robinson_foulds() (tree method)": [[11, "ete4.Tree.robinson_foulds"]], "root (tree attribute)": [[11, "ete4.Tree.root"]], "search_ancestors() (tree method)": [[11, "ete4.Tree.search_ancestors"]], "search_descendants() (tree method)": [[11, "ete4.Tree.search_descendants"]], "search_leaves_by_name() (tree method)": [[11, "ete4.Tree.search_leaves_by_name"]], "search_nodes() (tree method)": [[11, "ete4.Tree.search_nodes"]], "set_outgroup() (tree method)": [[11, "ete4.Tree.set_outgroup"]], "set_style() (tree method)": [[11, "ete4.Tree.set_style"]], "show() (tree method)": [[11, "ete4.Tree.show"]], "size (tree attribute)": [[11, "ete4.Tree.size"]], "sm_style (tree property)": [[11, "ete4.Tree.sm_style"]], "sort_descendants() (tree method)": [[11, "ete4.Tree.sort_descendants"]], "standardize() (tree method)": [[11, "ete4.Tree.standardize"]], "support (tree attribute)": [[11, "ete4.Tree.support"]], "swap_children() (tree method)": [[11, "ete4.Tree.swap_children"]], "to_str() (tree method)": [[11, "ete4.Tree.to_str"]], "to_ultrametric() (tree method)": [[11, "ete4.Tree.to_ultrametric"]], "traverse() (tree method)": [[11, "ete4.Tree.traverse"]], "unroot() (tree method)": [[11, "ete4.Tree.unroot"]], "up (tree attribute)": [[11, "ete4.Tree.up"]], "write() (tree method)": [[11, "ete4.Tree.write"]], "treeview": [[12, "module-treeview"]]}}) \ No newline at end of file diff --git a/tutorial/index.html b/tutorial/index.html index c20a57f62..a93e8e046 100644 --- a/tutorial/index.html +++ b/tutorial/index.html @@ -77,6 +77,16 @@

    Tutorial
  • Combining styles, faces and layouts
  • +
  • Taxonomy databases +
  • @@ -106,6 +116,7 @@

    Navigation

  • Working with the Tree structure
  • Phylogenetic trees
  • Programmable tree drawing
  • +
  • Taxonomy databases
  • Reference Guide
  • diff --git a/tutorial/tutorial_drawing.html b/tutorial/tutorial_drawing.html index a08048d33..1e587a2c4 100644 --- a/tutorial/tutorial_drawing.html +++ b/tutorial/tutorial_drawing.html @@ -15,7 +15,7 @@ - + @@ -1153,6 +1153,7 @@

    Navigation

  • Working with the Tree structure
  • Phylogenetic trees
  • Programmable tree drawing
  • +
  • Taxonomy databases
  • Reference Guide
  • @@ -1164,7 +1165,7 @@

    Related Topics

  • Documentation overview
  • diff --git a/tutorial/tutorial_phylogeny.html b/tutorial/tutorial_phylogeny.html index 0dbcb602e..97b212c60 100644 --- a/tutorial/tutorial_phylogeny.html +++ b/tutorial/tutorial_phylogeny.html @@ -1022,6 +1022,7 @@

    Navigation

  • Working with the Tree structure
  • Phylogenetic trees
  • Programmable tree drawing
  • +
  • Taxonomy databases
  • Reference Guide
  • diff --git a/tutorial/tutorial_taxonomy.html b/tutorial/tutorial_taxonomy.html index 69eed166b..c7b5d9d0d 100644 --- a/tutorial/tutorial_taxonomy.html +++ b/tutorial/tutorial_taxonomy.html @@ -5,7 +5,7 @@ - Connecting with Taxonomy Databases — ETE Toolkit 4.0.0-beta documentation + Taxonomy databases — ETE Toolkit 4.0.0-beta documentation @@ -15,6 +15,8 @@ + + @@ -31,154 +33,188 @@
    -
    -

    Connecting with Taxonomy Databases

    +
    +

    Taxonomy databases

    -

    Overview

    -

    ETE4 contains ncbi_taxonomy and gtdb_taxonomy modules which provide -utilities to efficiently query a local copy of the NCBI or GTDB taxonomy -databases. The class NCBITaxa and GTDBTaxa offer methods to convert -from taxid to names (and vice versa), to fetch pruned topologies connecting -a given set of species, or to download rank, names and lineage track information.

    -

    It is also fully integrated with PhyloTree instances through the -PhyloNode.annotate_ncbi_taxa() and ``PhyloNode.annotate_gtdb_taxa()``method.

    +

    Overview

    +

    ETE4 contains the ncbi_taxonomy and gtdb_taxonomy modules which +provide utilities to efficiently query a local copy of the NCBI or +GTDB taxonomy databases. The classes NCBITaxa and +GTDBTaxa offer methods to convert from taxid to names (and +vice versa), to fetch pruned topologies connecting a given set of +species, or to download rank, names and lineage track information.

    +

    It is also fully integrated with PhyloTree instances through +the annotate_ncbi_taxa() and +annotate_gtdb_taxa() methods.

    -

    Differences between NCBI and GTDB taxonomies in ETE4

    -

    The NCBI taxonomy database is a comprehensive resource for organism names and -classifications.It is updated daily and offers multiple access points including a web -portal, an FTP server. The database releases its data in a package called “taxdump.tar.gz” which -contains several .dmp files.

    -

    Taxon in NCBI taxonomyis usually a numeric identifier, commonly representing -taxa (“TaxID”), but it can also signify other entities like genetic codes or citations, such as -9606 represents Homo Sapiens.

    -

    On the other hand, GTDB taxonomy is distributed as simple text files, uses a genome-based -approach for classification, and the identifiers are usually specific to genomes rather -than taxa.

    -

    Since ETE Toolkit version 3, ete3 parses taxdump file to local sqlite database to fullfill the -methods in ncbi_taxonomy module. We applied the same strategy to GTDBTaxa. While the original GTDB -taxonomy data differs from NCBI taxonomy files, a conversion step is essential for integration.

    -

    To integrate GTDB into the ETE Toolkit v4, a conversion process was necessary. A third-party script -(https://github.com/nick-youngblut/gtdb_to_taxdump) was employed to convert the GTDB taxonomy to the -NCBI-like taxdump format. We already preprared GTDB taxonomy dump file from different releases version -and store in https://github.com/etetoolkit/ete-data/tree/main/gtdb_taxonomy.

    +

    Differences between NCBI and GTDB taxonomies in ETE4

    +

    The NCBI taxonomy database is a comprehensive resource for organism +names and classifications.It is updated daily and offers multiple +access points including a web portal, an FTP server. The database +releases its data in a package called “taxdump.tar.gz” which contains +several .dmp files.

    +

    Taxon in NCBI taxonomyis usually a numeric identifier, commonly +representing taxa (“TaxID”), but it can also signify other entities +like genetic codes or citations, such as 9606 represents Homo Sapiens.

    +

    On the other hand, GTDB taxonomy is distributed as simple text files, +uses a genome-based approach for classification, and the identifiers +are usually specific to genomes rather than taxa.

    +

    Since ETE Toolkit version 3, ETE parses taxdump file and stores it in +a local sqlite database to fullfill the methods in ncbi_taxonomy +module. We applied the same strategy to GTDBTaxa. While the original +GTDB taxonomy data differs from NCBI taxonomy files, a conversion step +is essential for integration.

    +

    To integrate GTDB into the ETE Toolkit v4, a conversion process is +necessary. A third-party script +(https://github.com/nick-youngblut/gtdb_to_taxdump) is employed to +convert the GTDB taxonomy to the NCBI-like taxdump format. We already +preprared GTDB taxonomy dump file from different releases version and +store in +https://github.com/etetoolkit/ete-data/tree/main/gtdb_taxonomy.

    -

    Setting up local copies of the NCBI and GTDB taxonomy databases

    -

    The first time you attempt to use NCBITaxa or GTDBTaxa, ETE will detect that your local -database is empty and it will attempt to download the latest taxonomy database(NCBI ~600MB;GTDB ~72MB) and will -store a parsed version of it in your home directory: ~/.local/share/ete/. -All future imports of NCBITaxa or GTDBTaxa will detect the local database and will -skip this step.

    -
    -
    Example::

    # Load NCBI module -from ete4 import NCBITaxa -ncbi = NCBITaxa() -ncbi.update_taxonomy_database()

    -

    # Load GTDB module -from ete4 import GTDBTaxa -gtdb = GTDBTaxa() -gtdb.update_taxonomy_database()

    -

    # Load GTDB module with specific release version -from ete4 import GTDBTaxa -gtdb = GTDBTaxa()

    -

    # latest release updated in https://github.com/dengzq1234/ete-data/tree/main/gtdb_taxonomy -gtdb.update_taxonomy_database() -# or -gtdb.update_taxonomy_database(“gtdbdump.tar.gz”)

    -

    # update with custom release 202 -gtdb.update_taxonomy_database(‘gtdb202dump.tar.gz’)

    -
    -
    +

    Setting up local copies of the NCBI and GTDB taxonomy databases

    +

    The first time you attempt to use NCBITaxa or GTDBTaxa, ETE will +detect that your local database is empty and will attempt to download +the latest taxonomy database (NCBI ~600MB, GTDB ~72MB) and will store +a parsed version of it in ~/.local/share/ete/ by default. All future +imports of NCBITaxa or GTDBTaxa will detect the local database and +will skip this step.

    +

    Example:

    +
    # Load NCBI module
    +from ete4 import NCBITaxa
    +ncbi = NCBITaxa()
    +ncbi.update_taxonomy_database()
    +
    +# Load GTDB module
    +from ete4 import GTDBTaxa
    +gtdb = GTDBTaxa()
    +gtdb.update_taxonomy_database()
    +
    +# Load GTDB module with specific release version
    +from ete4 import GTDBTaxa
    +gtdb = GTDBTaxa()
    +
    +# latest release updated in https://github.com/dengzq1234/ete-data/tree/main/gtdb_taxonomy
    +gtdb.update_taxonomy_database()
    +# or
    +gtdb.update_taxonomy_database("gtdbdump.tar.gz")
    +
    +# update with custom release 202
    +gtdb.update_taxonomy_database('gtdb202dump.tar.gz')
    +
    +
    -

    Getting taxid information

    +

    Getting taxid information

    -

    NCBI taxonomy

    -

    you can fetch species names, ranks and linage track information for your taxids using the following -methods:

    -
      -
    • NCBITaxa.get_rank()

    • -
    • NCBITaxa.get_lineage()

    • -
    • NCBITaxa.get_taxid_translator()

    • -
    • NCBITaxa.get_name_translator()

    • -
    • NCBITaxa.translate_to_names()

    • -
    -

    The so called get-translator-functions will return a dictionary converting between taxids and species names. -Either species or linage names/taxids are accepted as input.

    -
    -
    Example::

    from ete4 import NCBITaxa -ncbi = NCBITaxa() -taxid2name = ncbi.get_taxid_translator([9606, 9443]) -print(taxid2name) -# {9443: ‘Primates’, 9606: ‘Homo sapiens’}

    -

    name2taxid = ncbi.get_name_translator([‘Homo sapiens’, ‘primates’]) -print(name2taxid) -# {‘Homo sapiens’: [9606], ‘primates’: [9443]}

    -

    # when the same name points to several taxa, all taxids are returned -name2taxid = ncbi.get_name_translator([‘Bacteria’]) -print(name2taxid) -# {‘Bacteria’: [2, 629395]}

    -
    -
    -

    Other functions allow to extract further information using taxid numbers as a query.

    -
    -
    Example::

    from ete4 import NCBITaxa -ncbi = NCBITaxa()

    -

    print(ncbi.get_rank([9606, 9443])) -# {9443: u’order’, 9606: u’species’}

    -

    print(ncbi.get_lineage(9606)) -# [1, 131567, 2759, 33154, 33208, 6072, 33213, 33511, 7711, 89593, 7742, -# 7776, 117570, 117571, 8287, 1338369, 32523, 32524, 40674, 32525, 9347, -# 1437010, 314146, 9443, 376913, 314293, 9526, 314295, 9604, 207598, 9605, -# 9606]

    -
    -
    -

    Combine combine all at once:

    -
    -
    Example::

    from ete4 import NCBITaxa -ncbi = NCBITaxa()

    -

    lineage = ncbi.get_lineage(9606) -print(lineage)

    -

    # [1, 131567, 2759, 33154, 33208, 6072, 33213, 33511, 7711, 89593, 7742, -# 7776, 117570, 117571, 8287, 1338369, 32523, 32524, 40674, 32525, 9347, -# 1437010, 314146, 9443, 376913, 314293, 9526, 314295, 9604, 207598, 9605, -# 9606]

    -

    names = ncbi.get_taxid_translator(lineage) -print([names[taxid] for taxid in lineage])

    -

    # [u’root’, u’cellular organisms’, u’Eukaryota’, u’Opisthokonta’, u’Metazoa’, -# u’Eumetazoa’, u’Bilateria’, u’Deuterostomia’, u’Chordata’, u’Craniata’, -# u’Vertebrata’, u’Gnathostomata’, u’Teleostomi’, u’Euteleostomi’, -# u’Sarcopterygii’, u’Dipnotetrapodomorpha’, u’Tetrapoda’, u’Amniota’, -# u’Mammalia’, u’Theria’, u’Eutheria’, u’Boreoeutheria’, u’Euarchontoglires’, -# u’Primates’, u’Haplorrhini’, u’Simiiformes’, u’Catarrhini’, u’Hominoidea’, -# u’Hominidae’, u’Homininae’, u’Homo’, u’Homo sapiens’]

    -
    -
    +

    NCBI taxonomy

    +

    You can fetch species names, ranks and linage track information for +your taxids using the following methods:

    + + + + + + + + + + + + + + + + + + +

    NCBITaxa.get_rank(taxids)

    Return dict with NCBI taxonomy ranks for each list of taxids.

    NCBITaxa.get_lineage(taxid)

    Return lineage track corresponding to the given taxid.

    NCBITaxa.get_taxid_translator(taxids[, ...])

    Return dict with the scientific names corresponding to the taxids.

    NCBITaxa.get_name_translator(names)

    Return dict with taxids corresponding to the given scientific names.

    NCBITaxa.translate_to_names(taxids)

    Return list of scientific names corresponding to taxids.

    +

    The so called get-translator functions will return a dictionary +converting between taxids and species names. Either species or linage +names/taxids are accepted as input.

    +

    Example:

    +
    from ete4 import NCBITaxa
    +ncbi = NCBITaxa()
    +taxid2name = ncbi.get_taxid_translator([9606, 9443])
    +print(taxid2name)
    +# {9443: 'Primates', 9606: 'Homo sapiens'}
    +
    +name2taxid = ncbi.get_name_translator(['Homo sapiens', 'primates'])
    +print(name2taxid)
    +# {'Homo sapiens': [9606], 'primates': [9443]}
    +
    +# when the same name points to several taxa, all taxids are returned
    +name2taxid = ncbi.get_name_translator(['Bacteria'])
    +print(name2taxid)
    +# {'Bacteria': [2, 629395]}
    +
    +
    +

    Other functions allow to extract further information using taxid +numbers as a query.

    +

    Example:

    +
    from ete4 import NCBITaxa
    +ncbi = NCBITaxa()
    +
    +print(ncbi.get_rank([9606, 9443]))
    +# {9443: 'order', 9606: 'species'}
    +
    +print(ncbi.get_lineage(9606))
    +# [1, 131567, 2759, 33154, 33208, 6072, 33213, 33511, 7711, 89593, 7742,
    +# 7776, 117570, 117571, 8287, 1338369, 32523, 32524, 40674, 32525, 9347,
    +# 1437010, 314146, 9443, 376913, 314293, 9526, 314295, 9604, 207598, 9605,
    +# 9606]
    +
    +
    +

    Example combining all at once:

    +
    from ete4 import NCBITaxa
    +ncbi = NCBITaxa()
    +
    +lineage = ncbi.get_lineage(9606)
    +print(lineage)
    +
    +# [1, 131567, 2759, 33154, 33208, 6072, 33213, 33511, 7711, 89593, 7742,
    +# 7776, 117570, 117571, 8287, 1338369, 32523, 32524, 40674, 32525, 9347,
    +# 1437010, 314146, 9443, 376913, 314293, 9526, 314295, 9604, 207598, 9605,
    +# 9606]
    +
    +names = ncbi.get_taxid_translator(lineage)
    +print([names[taxid] for taxid in lineage])
    +
    +# ['root', 'cellular organisms', 'Eukaryota', 'Opisthokonta', 'Metazoa',
    +# 'Eumetazoa', 'Bilateria', 'Deuterostomia', 'Chordata', 'Craniata',
    +# 'Vertebrata', 'Gnathostomata', 'Teleostomi', 'Euteleostomi',
    +# 'Sarcopterygii', 'Dipnotetrapodomorpha', 'Tetrapoda', 'Amniota',
    +# 'Mammalia', 'Theria', 'Eutheria', 'Boreoeutheria', 'Euarchontoglires',
    +# 'Primates', 'Haplorrhini', 'Simiiformes', 'Catarrhini', 'Hominoidea',
    +# 'Hominidae', 'Homininae', 'Homo', 'Homo sapiens']
    +
    +
    -

    GTDB taxonomy

    +

    GTDB taxonomy

    In the NCBI taxonomy database, each species is assigned a unique numeric taxid. For example, the taxid 9606 refers to Homo sapiens. These taxids serve as essential keys for tracking lineages within the database.

    @@ -189,192 +225,186 @@

    GTDB taxonomy

    Like NCBITaxa, GTDBTaxa contains similar methods:

    -
      -
    • GTDBTaxa.get_rank()

    • -
    • GTDBTaxa.get_lineage()

    • -
    • GTDBTaxa.get_taxid_translator()

    • -
    • GTDBTaxa.get_name_translator()

    • -
    • GTDBTaxa.translate_to_names()

    • -
    • GTDBTaxa.get_name_lineage()

    • -
    + + + + + + + + + + + + + + + + + + + + + +

    GTDBTaxa.get_rank(taxids)

    Return dictionary converting taxids to their GTDB taxonomy rank.

    GTDBTaxa.get_lineage(taxid)

    Given a valid taxid number, return its corresponding lineage track as a hierarchically sorted list of parent taxids.

    GTDBTaxa.get_taxid_translator(taxids[, ...])

    Given a list of taxids, returns a dictionary with their corresponding scientific names.

    GTDBTaxa.get_name_translator(names)

    Given a list of taxid scientific names, returns a dictionary translating them into their corresponding taxids.

    GTDBTaxa.translate_to_names(taxids)

    Given a list of taxid numbers, returns another list with their corresponding scientific names.

    GTDBTaxa.get_name_lineage(taxnames)

    Given a valid taxname, return its corresponding lineage track as a hierarchically sorted list of parent taxnames.

    -

    Getting descendant taxa

    +

    Getting descendant taxa

    Given a taxid or a taxa name from an internal node in the NCBI/GTDB taxonomy tree, their descendants can be retrieved as follows:

    -

    NCBI taxonomy -Example:

    -
    # example in NCBI taxonomy
    -from ete4 import NCBITaxa
    +

    NCBI taxonomy example:

    +
    from ete4 import NCBITaxa
     ncbi = NCBITaxa()
     
     descendants = ncbi.get_descendant_taxa('Homo')
     print(ncbi.translate_to_names(descendants))
     
    -# [u'Homo heidelbergensis', u'Homo sapiens ssp. Denisova',
    -# u'Homo sapiens neanderthalensis']
    +# ['Homo heidelbergensis', 'Homo sapiens ssp. Denisova',
    +# 'Homo sapiens neanderthalensis']
     
    -# you can easily ignore subspecies, so only taxa labeled as "species" will be reported:
    +# You can easily ignore subspecies, so only taxa labeled as "species" will be reported:
     descendants = ncbi.get_descendant_taxa('Homo', collapse_subspecies=True)
     print(ncbi.translate_to_names(descendants))
     
    -# [u'Homo sapiens', u'Homo heidelbergensis']
    +# ['Homo sapiens', 'Homo heidelbergensis']
     
     # or even returned as an annotated tree
     tree = ncbi.get_descendant_taxa('Homo', collapse_subspecies=True, return_tree=True)
     
     print(tree.to_str(props=['sci_name','taxid']))
    -
    -"""
    -           ╭╴environmental samples,2665952╶╌╴Homo sapiens environmental sample,2665953
    -
    -           ├╴Homo sapiens,9606
    -╴Homo,9605╶┤
    -           ├╴Homo heidelbergensis,1425170
    -
    -           ╰╴unclassified Homo,2813598╶╌╴Homo sp.,2813599
    -"""
    +#            ╭╴environmental samples,2665952╶╌╴Homo sapiens environmental sample,2665953
    +#            │
    +#            ├╴Homo sapiens,9606
    +# ╴Homo,9605╶┤
    +#            ├╴Homo heidelbergensis,1425170
    +#            │
    +#            ╰╴unclassified Homo,2813598╶╌╴Homo sp.,2813599
     
    -

    GTDB taxonomy -Example:

    +

    GTDB taxonomy example:

    from ete4 import GTDBTaxa
     gtdb = GTDBTaxa()
     descendants = gtdb.get_descendant_taxa('f__Thorarchaeaceae')
     print(descendants)
    -# ['GB_GCA_003662765.1', 'GB_GCA_003662805.1', 'GB_GCA_003345555.1', 'GB_GCA_003345595.1', 'GB_GCA_001940705.1', 'GB_GCA_001563335.1', 'GB_GCA_011364905.1', 'GB_GCA_004376265.1', 'GB_GCA_002825515.1', 'GB_GCA_001563325.1', 'GB_GCA_011364985.1', 'GB_GCA_011365025.1', 'GB_GCA_004524565.1', 'GB_GCA_004524595.1', 'GB_GCA_002825465.1', 'GB_GCA_002825535.1', 'GB_GCA_003345545.1', 'GB_GCA_004524445.1', 'GB_GCA_013388835.1', 'GB_GCA_008080745.1', 'GB_GCA_004524435.1', 'GB_GCA_013138615.1']
    +# ['GB_GCA_003662765.1', 'GB_GCA_003662805.1', ..., 'GB_GCA_013138615.1']
     
    -#ignore subspecies, so only taxa labeled as "species" will be reported
    +# Ignore subspecies, so only taxa labeled as "species" will be reported.
     descendants = gtdb.get_descendant_taxa('f__Thorarchaeaceae', collapse_subspecies=True)
    -
     print(descendants)
    +# ['s__MP8T-1 sp002825535', 's__MP8T-1 sp003345545', ..., 's__TEKIR-12S sp004524435']
     
    -#['s__MP8T-1 sp002825535', 's__MP8T-1 sp003345545', 's__MP8T-1 sp002825465', 's__MP8T-1 sp004524565', 's__MP8T-1 sp004524595', 's__SMTZ1-83 sp011364985', 's__SMTZ1-83 sp011365025', 's__SMTZ1-83 sp001563325', 's__TEKIR-14 sp004524445', 's__SHMX01 sp008080745', 's__OWC5 sp003345595', 's__OWC5 sp003345555', 's__JACAEL01 sp013388835', 's__B65-G9 sp003662765', 's__SMTZ1-45 sp001563335', 's__SMTZ1-45 sp011364905', 's__SMTZ1-45 sp001940705', 's__SMTZ1-45 sp004376265', 's__SMTZ1-45 sp002825515', 's__WTCK01 sp013138615', 's__TEKIR-12S sp004524435']
    -
    -
    -#returned as an annotated tree
    +# Returned as an annotated tree.
     descendants = gtdb.get_descendant_taxa('f__Thorarchaeaceae', collapse_subspecies=True, return_tree=True)
     print(descendants.to_str(props=['sci_name','rank']))
    -"""
    -                                            ╭╴s__MP8T-1 sp002825535,species
    -
    -                                            ├╴s__MP8T-1 sp003345545,species
    -
    -                        ╭╴g__MP8T-1,genus╶┼╴s__MP8T-1 sp002825465,species
    -                        │                 │
    -                        │                 ├╴s__MP8T-1 sp004524565,species
    -                        │                 │
    -                        │                 ╰╴s__MP8T-1 sp004524595,species
    -
    -                        │                   ╭╴s__SMTZ1-83 sp011364985,species
    -                        │                   │
    -                        ├╴g__SMTZ1-83,genus╶┼╴s__SMTZ1-83 sp011365025,species
    -                        │                   │
    -                        │                   ╰╴s__SMTZ1-83 sp001563325,species
    -
    -                        ├╴g__TEKIR-14,genus╶╌╴s__TEKIR-14 sp004524445,species
    -
    -                        ├╴g__SHMX01,genus╶╌╴s__SHMX01 sp008080745,species
    -
    -                        │               ╭╴s__OWC5 sp003345595,species
    -                        ├╴g__OWC5,genus╶┤
    -╴f__Thorarchaeaceae,family╶┤               ╰╴s__OWC5 sp003345555,species
    -
    -                        ├╴g__JACAEL01,genus╶╌╴s__JACAEL01 sp013388835,species
    -
    -                        ├╴g__B65-G9,genus╶╌╴s__B65-G9 sp003662765,species
    -
    -                        │                   ╭╴s__SMTZ1-45 sp001563335,species
    -                        │                   │
    -                        │                   ├╴s__SMTZ1-45 sp011364905,species
    -                        │                   │
    -                        ├╴g__SMTZ1-45,genus╶┼╴s__SMTZ1-45 sp001940705,species
    -                        │                   │
    -                        │                   ├╴s__SMTZ1-45 sp004376265,species
    -                        │                   │
    -                        │                   ╰╴s__SMTZ1-45 sp002825515,species
    -
    -                        ├╴g__WTCK01,genus╶╌╴s__WTCK01 sp013138615,species
    -
    -                        ╰╴g__TEKIR-12S,genus╶╌╴s__TEKIR-12S sp004524435,species
    -"""
    +#                                ╭╴s__MP8T-1 sp002825535,species
    +#                                │
    +#                                ├╴s__MP8T-1 sp003345545,species
    +#                                │
    +#              ╭╴g__MP8T-1,genus╶┼╴s__MP8T-1 sp002825465,species
    +#              │                 │
    +#              │                 ├╴s__MP8T-1 sp004524565,species
    +#              │                 │
    +#              │                 ╰╴s__MP8T-1 sp004524595,species
    +#              │
    +#              │                   ╭╴s__SMTZ1-83 sp011364985,species
    +#              │                   │
    +#              ├╴g__SMTZ1-83,genus╶┼╴s__SMTZ1-83 sp011365025,species
    +#              │                   │
    +#              │                   ╰╴s__SMTZ1-83 sp001563325,species
    +#              │
    +#              ├╴g__TEKIR-14,genus╶╌╴s__TEKIR-14 sp004524445,species
    +#              │
    +#              ├╴g__SHMX01,genus╶╌╴s__SHMX01 sp008080745,species
    +#              │
    +#              │               ╭╴s__OWC5 sp003345595,species
    +#              ├╴g__OWC5,genus╶┤
    +# ╴f__Tho[...]╶┤               ╰╴s__OWC5 sp003345555,species
    +#              │
    +#              ├╴g__JACAEL01,genus╶╌╴s__JACAEL01 sp013388835,species
    +#              │
    +#              ├╴g__B65-G9,genus╶╌╴s__B65-G9 sp003662765,species
    +#              │
    +#              │                   ╭╴s__SMTZ1-45 sp001563335,species
    +#              │                   │
    +#              │                   ├╴s__SMTZ1-45 sp011364905,species
    +#              │                   │
    +#              ├╴g__SMTZ1-45,genus╶┼╴s__SMTZ1-45 sp001940705,species
    +#              │                   │
    +#              │                   ├╴s__SMTZ1-45 sp004376265,species
    +#              │                   │
    +#              │                   ╰╴s__SMTZ1-45 sp002825515,species
    +#              │
    +#              ├╴g__WTCK01,genus╶╌╴s__WTCK01 sp013138615,species
    +#              │
    +#              ╰╴g__TEKIR-12S,genus╶╌╴s__TEKIR-12S sp004524435,species
     
    -

    Getting species tree topology

    -

    Getting the taxonomy tree for a given set of species is one of the most useful ways -to get all information at once. The method NCBITaxa.get_topology() or GTDBTaxa.get_topology() allows to query your -local NCBI/GTDB database and extract the smallest tree that connects all your query taxids. -It returns a normal ETE tree in which all nodes, internal or leaves, are annotated for -lineage, scientific names, ranks, and so on.

    -

    NCBI taxonomy -Example:

    +

    Getting species tree topology

    +

    Getting the taxonomy tree for a given set of species is one of the +most useful ways to get all information at once. The methods +NCBITaxa.get_topology() or GTDBTaxa.get_topology() allow +to query your local NCBI/GTDB database and extract the smallest tree +that connects all your query taxids. It returns a normal ETE tree in +which all nodes, internal or leaves, are annotated for lineage, +scientific names, ranks, and so on.

    +

    NCBI taxonomy example:

    from ete4 import NCBITaxa
     ncbi = NCBITaxa()
     
     tree = ncbi.get_topology([9606, 9598, 10090, 7707, 8782])
     
     print(tree.to_str(props=["sci_name", "rank"]))
    -"""
    -                    ╭╴Dendrochirotida,order
    -
    -                    │                                                                   ╭╴Homo sapiens,species
    -╴Deuterostomia,clade╶┤                                             ╭╴Homininae,subfamily╶┤
    -                    │               ╭╴Euarchontoglires,superorder╶┤                     ╰╴Pan troglodytes,species
    -                    │               │                             │
    -                    ╰╴Amniota,clade╶┤                             ╰╴Mus musculus,species
    -
    -                                    ╰╴Aves,class
    -"""
    -
    -# all intermediate nodes connecting the species can also be kept in the tree
    +#                      ╭╴Dendrochirotida,order
    +#                      │
    +#                      │                                                                   ╭╴Homo sapiens,species
    +# ╴Deuterostomia,clade╶┤                                             ╭╴Homininae,subfamily╶┤
    +#                      │               ╭╴Euarchontoglires,superorder╶┤                     ╰╴Pan troglodytes,species
    +#                      │               │                             │
    +#                      ╰╴Amniota,clade╶┤                             ╰╴Mus musculus,species
    +#                                      │
    +#                                      ╰╴Aves,class
    +
    +# All intermediate nodes connecting the species can also be kept in the tree.
     tree = ncbi.get_topology([2, 33208], intermediate_nodes=True)
     print(tree.to_str(props=["sci_name"]))
    -"""
    -                    ╭╴Eukaryota╶╌╴Opisthokonta╶╌╴Metazoa
    -╴cellular organisms╶┤
    -                    ╰╴Bacteria
    -"""
    +#                     ╭╴Eukaryota╶╌╴Opisthokonta╶╌╴Metazoa
    +# ╴cellular organisms╶┤
    +#                     ╰╴Bacteria
     
    -

    GTDB taxonomy -Example:

    +

    GTDB taxonomy example:

    from ete4 import GTDBTaxa
     gtdb = GTDBTaxa()
     
     tree = gtdb.get_topology(["p__Huberarchaeota", "o__Peptococcales", "f__Korarchaeaceae"])
     print(tree.to_str(props=['sci_name', 'rank']))
    +#                                         ╭╴p__Huberarchaeota,phylum
    +#               ╭╴d__Archaea,superkingdom╶┤
    +# ╴root,no rank╶┤                         ╰╴f__Korarchaeaceae,family
    +#               │
    +#               ╰╴o__Peptococcales,order
     
    -"""
    -                                        ╭╴p__Huberarchaeota,phylum
    -            ╭╴d__Archaea,superkingdom╶┤
    -╴root,no rank╶┤                         ╰╴f__Korarchaeaceae,family
    -
    -            ╰╴o__Peptococcales,order
    -
    -"""
    -
    -# all intermediate nodes connecting the species can also be kept in the tree
    +# All intermediate nodes connecting the species can also be kept in the tree.
     tree = gtdb.get_topology(["p__Huberarchaeota", "o__Peptococcales", "f__Korarchaeaceae"], intermediate_nodes=True, collapse_subspecies=True, annotate=True)
     print(tree.to_str(props=['sci_name', 'rank']))
    -"""
    -                                        ╭╴p__Huberarchaeota,phylum
    -            ╭╴d__Archaea,superkingdom╶┤
    -╴root,no rank╶┤                         ╰╴p__Thermoproteota,phylum╶╌╴c__Korarchaeia,class╶╌╴o__Korarchaeales,order╶╌╴f__Korarchaeaceae,family
    -
    -            ╰╴d__Bacteria,superkingdom╶╌╴p__Firmicutes_B,phylum╶╌╴c__Peptococcia,class╶╌╴o__Peptococcales,order
    -"""
    +#                                         ╭╴p__Huberarchaeota,phylum
    +#               ╭╴d__Archaea,superkingdom╶┤
    +# ╴root,no rank╶┤                         ╰╴p__Thermoproteota,phylum╶╌╴c__Korarchaeia,class╶╌╴o__Korarchaeales,order╶╌╴f__Korarchaeaceae,family
    +#               │
    +#               ╰╴d__Bacteria,superkingdom╶╌╴p__Firmicutes_B,phylum╶╌╴c__Peptococcia,class╶╌╴o__Peptococcales,order
     
    -

    Automatic tree annotation using NCBI/GTDB taxonomy

    -

    NCBI/GTDB taxonomy annotation consists of adding additional information to any internal a leaf node -in a give user tree. Only an property containing the taxid associated to each node -is required for the nodes in the query tree. The annotation process will add the -following features to the nodes:

    +

    Automatic tree annotation using NCBI/GTDB taxonomy

    +

    NCBI/GTDB taxonomy annotation consists of adding additional +information to any internal or leaf node in a tree. Only a property +containing the taxid associated to each node is required for the nodes +in the query tree. The annotation process will add the following +features to the nodes:

    -

    Note that, for internal nodes, taxid can be automatically inferred based on their sibling -nodes. The easiest way to annotate a tree is to use a PhyloTree instance where the species -name attribute is transparently used as the taxid attribute. Note that -the :PhyloNode:`annotate_ncbi_taxa`: or :PhyloNode:`annotate_gtdb_taxa`: function will also return the used name, lineage and -rank translators.

    -

    Remember that species names in PhyloTree instances are automatically extracted from leaf names. The parsing method can be easily adapted to any formatting:

    -

    NCBI taxonomy -Example:

    +

    Note that, for internal nodes, taxid can be automatically inferred +based on their sibling nodes. The easiest way to annotate a tree is to +use a PhyloTree instance where the species name attribute is +transparently used as the taxid attribute. Note that the +annotate_ncbi_taxa() or +annotate_gtdb_taxa() function will also return the +used name, lineage and rank translators.

    +

    Remember that species names in PhyloTree instances are automatically +extracted from leaf names. The parsing method can be easily adapted to +any formatting:

    +

    NCBI taxonomy example:

    from ete4 import PhyloTree
     
    -# load the whole leaf name as species taxid
    +# Load the whole leaf name as species taxid.
     tree = PhyloTree('((9606, 9598), 10090);', sp_naming_function=lambda name: name)
     tax2names, tax2lineages, tax2rank = tree.annotate_ncbi_taxa()
     
    -
    -# split names by '|' and return the first part as the species taxid
    +# Split names by '|' and return the first part as the species taxid.
     tree = PhyloTree('((9606|protA, 9598|protA), 10090|protB);', sp_naming_function=lambda name: name.split('|')[0])
     tax2names, tax2lineages, tax2rank = tree.annotate_ncbi_taxa()
     
     print(tree.to_str(props=["name", "sci_name", "taxid"]))
    -
    -"""
    -                                                            ╭╴9606|protA,Homo sapiens,9606
    -                                 ╭╴(empty),Homininae,207598╶┤
    -╴(empty),Euarchontoglires,314146╶┤                          ╰╴9598|protA,Pan troglodytes,9598
    -
    -                                 ╰╴10090|protB,Mus musculus,10090
    -"""
    +#                                                             ╭╴9606|protA,Homo sapiens,9606
    +#                                  ╭╴(empty),Homininae,207598╶┤
    +# ╴(empty),Euarchontoglires,314146╶┤                          ╰╴9598|protA,Pan troglodytes,9598
    +#                                  │
    +#                                  ╰╴10090|protB,Mus musculus,10090
     
    -

    GTDB taxonomy -Example:

    +

    GTDB taxonomy example:

    from ete4 import PhyloTree
     
    -# load the whole leaf name as species taxid
    +# Load the whole leaf name as species taxid.
     newick = '((p__Huberarchaeota,f__Korarchaeaceae)d__Archaea,o__Peptococcales);'
     
    -tree= PhyloTree(newick)
    +tree = PhyloTree(newick)
     tax2name, tax2track, tax2rank = gtdb.annotate_tree(tree, taxid_attr="name")
     
     print(tree.to_str(props=['sci_name', 'rank']))
    -
    -"""
    -                                        ╭╴p__Huberarchaeota,phylum
    -              ╭╴d__Archaea,superkingdom╶┤
    -╴root,no rank╶┤                         ╰╴f__Korarchaeaceae,family
    -
    -              ╰╴o__Peptococcales,order
    -"""
    +#                                         ╭╴p__Huberarchaeota,phylum
    +#               ╭╴d__Archaea,superkingdom╶┤
    +# ╴root,no rank╶┤                         ╰╴f__Korarchaeaceae,family
    +#               │
    +#               ╰╴o__Peptococcales,order
     
    @@ -454,10 +479,16 @@

    ETE Toolkit

    Navigation

    Contents:

    -
    diff --git a/tutorial/tutorial_trees.html b/tutorial/tutorial_trees.html index b45f53884..3a4a4b7aa 100644 --- a/tutorial/tutorial_trees.html +++ b/tutorial/tutorial_trees.html @@ -1792,6 +1792,7 @@

    Navigation

  • Working with the Tree structure
  • Phylogenetic trees
  • Programmable tree drawing
  • +
  • Taxonomy databases
  • Reference Guide