Database clients (indra.databases
)¶
This module implements a number of clients for accessing and using resources from biomedical entity databases and other third-party web services that INDRA uses. Many of the resources these clients use are loaded from resource files in the indra.resources module, in many cases also providing access to web service endpoints.
Generate and parse identifiers.org URLs (indra.databases.identifiers
)¶
-
indra.databases.identifiers.
ensure_chebi_prefix
(chebi_id)[source]¶ Return a valid CHEBI ID that has the appropriate CHEBI: prefix.
-
indra.databases.identifiers.
ensure_chembl_prefix
(chembl_id)[source]¶ Return a valid CHEMBL ID that has the appropriate CHEMBL prefix.
-
indra.databases.identifiers.
ensure_prefix
(db_ns, db_id, with_colon=True)[source]¶ Return a valid ID that has the appropriate prefix.
This is useful for namespaces such as CHEBI, GO or BTO that require the namespace to be part of the ID.
Parameters: - db_ns (str) – A namespace.
- db_id (str) – An ID within that namespace which should have the namespace as a prefix in it.
- with_colon (Optional[bool]) – If True, the namespace prefix is followed by a colon in the ID (e.g., CHEBI:12345). Otherwise, no colon is added (e.g., CHEMBL1234). Default: True
-
indra.databases.identifiers.
get_identifiers_ns
(db_name)[source]¶ Map an INDRA namespace to an identifiers.org namespace when possible.
Example: this can be used to map ‘UP’ to ‘uniprot’.
Parameters: db_name (str) – An INDRA namespace to map to identifiers.org Returns: An identifiers.org namespace or None if not available. Return type: str or None
-
indra.databases.identifiers.
get_identifiers_url
(db_name, db_id)[source]¶ Return an identifiers.org URL for a given database name and ID.
Parameters: - db_name (str) – An internal database name: HGNC, UP, CHEBI, etc.
- db_id (str) – An identifier in the given database.
Returns: url – An identifiers.org URL corresponding to the given database name and ID.
Return type: str
-
indra.databases.identifiers.
get_ns_from_identifiers
(identifiers_ns)[source]¶ “Return a namespace compatible with INDRA from an identifiers namespace.
For example, this function can be used to map ‘uniprot’ to ‘UP’.
Parameters: identifiers_ns (str) – An identifiers.org standard namespace. Returns: The namespace compatible with INDRA’s internal representation or None if the given namespace isn’t an identifiers.org standard. Return type: str or None
-
indra.databases.identifiers.
get_ns_id_from_identifiers
(identifiers_ns, identifiers_id)[source]¶ Return a namespace/ID pair compatible with INDRA from identifiers.
Parameters: - identifiers_ns (str) – An identifiers.org standard namespace.
- identifiers_id (str) – An identifiers.org standard ID in the given namespace.
Returns: A namespace and ID that are valid in INDRA db_refs.
Return type: (str, str)
-
indra.databases.identifiers.
get_url_prefix
(db_name)[source]¶ Return the URL prefix for a given namespace.
-
indra.databases.identifiers.
parse_identifiers_url
(url)[source]¶ Retrieve database name and ID given the URL.
Parameters: url (str) – An identifiers.org URL to parse. Returns: - db_name (str) – An internal database name: HGNC, UP, CHEBI, etc. corresponding to the given URL.
- db_id (str) – An identifier in the database.
HGNC client (indra.databases.hgnc_client
)¶
-
indra.databases.hgnc_client.
get_current_hgnc_id
(hgnc_name)[source]¶ Return HGNC ID(s) corresponding to a current or outdated HGNC symbol.
Parameters: hgnc_name (str) – The HGNC symbol to be converted, possibly an outdated symbol. Returns: If there is a single HGNC ID corresponding to the given current or outdated HGNC symbol, that ID is returned as a string. If the symbol is outdated and maps to multiple current IDs, a list of these IDs is returned. If the given name doesn’t correspond to either a current or an outdated HGNC symbol, None is returned. Return type: str or list of str or None
-
indra.databases.hgnc_client.
get_ensembl_id
(hgnc_id)[source]¶ Return the Ensembl ID corresponding to the given HGNC ID.
Parameters: hgnc_id (str) – The HGNC ID to be converted. Note that the HGNC ID is a number that is passed as a string. It is not the same as the HGNC gene symbol. Returns: ensembl_id – The Ensembl ID corresponding to the given HGNC ID. Return type: str
-
indra.databases.hgnc_client.
get_entrez_id
(hgnc_id)[source]¶ Return the Entrez ID corresponding to the given HGNC ID.
Parameters: hgnc_id (str) – The HGNC ID to be converted. Note that the HGNC ID is a number that is passed as a string. It is not the same as the HGNC gene symbol. Returns: entrez_id – The Entrez ID corresponding to the given HGNC ID. Return type: str
-
indra.databases.hgnc_client.
get_hgnc_entry
[source]¶ Return the HGNC entry for the given HGNC ID from the web service.
Parameters: hgnc_id (str) – The HGNC ID to be converted. Returns: xml_tree – The XML ElementTree corresponding to the entry for the given HGNC ID. Return type: ElementTree
-
indra.databases.hgnc_client.
get_hgnc_from_ensembl
(ensembl_id)[source]¶ Return the HGNC ID corresponding to the given Ensembl ID.
Parameters: ensembl_id (str) – The Ensembl ID to be converted, a number passed as a string. Returns: hgnc_id – The HGNC ID corresponding to the given Ensembl ID. Return type: str
-
indra.databases.hgnc_client.
get_hgnc_from_entrez
(entrez_id)[source]¶ Return the HGNC ID corresponding to the given Entrez ID.
Parameters: entrez_id (str) – The Entrez ID to be converted, a number passed as a string. Returns: hgnc_id – The HGNC ID corresponding to the given Entrez ID. Return type: str
-
indra.databases.hgnc_client.
get_hgnc_from_mouse
(mgi_id)[source]¶ Return the HGNC ID corresponding to the given MGI mouse gene ID.
Parameters: mgi_id (str) – The MGI ID to be converted. Example: “2444934” Returns: hgnc_id – The HGNC ID corresponding to the given MGI ID. Return type: str
-
indra.databases.hgnc_client.
get_hgnc_from_rat
(rgd_id)[source]¶ Return the HGNC ID corresponding to the given RGD rat gene ID.
Parameters: rgd_id (str) – The RGD ID to be converted. Example: “1564928” Returns: hgnc_id – The HGNC ID corresponding to the given RGD ID. Return type: str
-
indra.databases.hgnc_client.
get_hgnc_id
(hgnc_name)[source]¶ Return the HGNC ID corresponding to the given HGNC symbol.
Parameters: hgnc_name (str) – The HGNC symbol to be converted. Example: BRAF Returns: hgnc_id – The HGNC ID corresponding to the given HGNC symbol. Return type: str
-
indra.databases.hgnc_client.
get_hgnc_name
(hgnc_id)[source]¶ Return the HGNC symbol corresponding to the given HGNC ID.
Parameters: hgnc_id (str) – The HGNC ID to be converted. Returns: hgnc_name – The HGNC symbol corresponding to the given HGNC ID. Return type: str
-
indra.databases.hgnc_client.
get_mouse_id
(hgnc_id)[source]¶ Return the MGI mouse ID corresponding to the given HGNC ID.
Parameters: hgnc_id (str) – The HGNC ID to be converted. Example: “” Returns: mgi_id – The MGI ID corresponding to the given HGNC ID. Return type: str
-
indra.databases.hgnc_client.
get_rat_id
(hgnc_id)[source]¶ Return the RGD rat ID corresponding to the given HGNC ID.
Parameters: hgnc_id (str) – The HGNC ID to be converted. Example: “” Returns: rgd_id – The RGD ID corresponding to the given HGNC ID. Return type: str
-
indra.databases.hgnc_client.
get_uniprot_id
(hgnc_id)[source]¶ Return the UniProt ID corresponding to the given HGNC ID.
Parameters: hgnc_id (str) – The HGNC ID to be converted. Note that the HGNC ID is a number that is passed as a string. It is not the same as the HGNC gene symbol. Returns: uniprot_id – The UniProt ID corresponding to the given HGNC ID. Return type: str
-
indra.databases.hgnc_client.
is_kinase
(gene_name)[source]¶ Return True if the given gene name is a kinase.
Parameters: gene_name (str) – The HGNC gene symbol corresponding to the protein. Returns: True if the given gene name corresponds to a kinase, False otherwise. Return type: bool
-
indra.databases.hgnc_client.
is_phosphatase
(gene_name)[source]¶ Return True if the given gene name is a phosphatase.
Parameters: gene_name (str) – The HGNC gene symbol corresponding to the protein. Returns: True if the given gene name corresponds to a phosphatase, False otherwise. Return type: bool
-
indra.databases.hgnc_client.
is_transcription_factor
(gene_name)[source]¶ Return True if the given gene name is a transcription factor.
Parameters: gene_name (str) – The HGNC gene symbol corresponding to the protein. Returns: True if the given gene name corresponds to a transcription factor, False otherwise. Return type: bool
Uniprot client (indra.databases.uniprot_client
)¶
ChEBI client (indra.databases.chebi_client
)¶
-
indra.databases.chebi_client.
get_chebi_entry_from_web
[source]¶ Return a ChEBI entry corresponding to a given ChEBI ID using a REST API.
Parameters: chebi_id (str) – The ChEBI ID whose entry is to be returned. Returns: An ElementTree element representing the ChEBI entry. Return type: xml.etree.ElementTree.Element
-
indra.databases.chebi_client.
get_chebi_id_from_cas
(cas_id)[source]¶ Return a ChEBI ID corresponding to the given CAS ID.
Parameters: cas_id (str) – The CAS ID to be converted. Returns: chebi_id – The ChEBI ID corresponding to the given CAS ID. If the lookup fails, None is returned. Return type: str
-
indra.databases.chebi_client.
get_chebi_id_from_chembl
(chembl_id)[source]¶ Return a ChEBI ID from a given ChEBML ID.
Parameters: chembl_id (str) – ChEBML ID to be converted. Returns: chebi_id – ChEBI ID corresponding to the given ChEBML ID. If the lookup fails, None is returned. Return type: str
-
indra.databases.chebi_client.
get_chebi_id_from_hmdb
(hmdb_id)[source]¶ Return the ChEBI ID corresponding to an HMDB ID.
Parameters: hmdb_id (str) – An HMDB ID. Returns: The ChEBI ID that the given HMDB ID maps to or None if no mapping was found. Return type: str
-
indra.databases.chebi_client.
get_chebi_id_from_name
(chebi_name)[source]¶ Return a ChEBI ID corresponding to the given ChEBI name.
Parameters: chebi_name (str) – The ChEBI name whose ID is to be returned. Returns: chebi_id – The ID corresponding to the given ChEBI name. If the lookup fails, None is returned. Return type: str
-
indra.databases.chebi_client.
get_chebi_id_from_pubchem
(pubchem_id)[source]¶ Return the ChEBI ID corresponding to a given Pubchem ID.
Parameters: pubchem_id (str) – Pubchem ID to be converted. Returns: chebi_id – ChEBI ID corresponding to the given Pubchem ID. If the lookup fails, None is returned. Return type: str
-
indra.databases.chebi_client.
get_chebi_name_from_id
(chebi_id, offline=True)[source]¶ Return a ChEBI name corresponding to the given ChEBI ID.
Parameters: - chebi_id (str) – The ChEBI ID whose name is to be returned.
- offline (Optional[bool]) – If False, the ChEBI web service is invoked in case a name mapping could not be found in the local resource file. Default: True
Returns: chebi_name – The name corresponding to the given ChEBI ID. If the lookup fails, None is returned.
Return type: str
-
indra.databases.chebi_client.
get_chebi_name_from_id_web
(chebi_id)[source]¶ Return a ChEBI name corresponding to a given ChEBI ID using a REST API.
Parameters: chebi_id (str) – The ChEBI ID whose name is to be returned. Returns: chebi_name – The name corresponding to the given ChEBI ID. If the lookup fails, None is returned. Return type: str
-
indra.databases.chebi_client.
get_chembl_id
(chebi_id)[source]¶ Return a ChEMBL ID from a given ChEBI ID.
Parameters: chebi_id (str) – ChEBI ID to be converted. Returns: chembl_id – ChEMBL ID corresponding to the given ChEBI ID. If the lookup fails, None is returned. Return type: str
-
indra.databases.chebi_client.
get_inchi_key
(chebi_id)[source]¶ Return an InChIKey corresponding to a given ChEBI ID using a REST API.
Parameters: chebi_id (str) – The ChEBI ID whose InChIKey is to be returned. Returns: The InChIKey corresponding to the given ChEBI ID. If the lookup fails, None is returned. Return type: str
-
indra.databases.chebi_client.
get_primary_id
(chebi_id)[source]¶ Return the primary ID corresponding to a ChEBI ID.
Note that if the provided ID is a primary ID, it is returned unchanged.
Parameters: chebi_id (str) – The ChEBI ID that should be mapped to its primary equivalent. Returns: The primary ChEBI ID or None if the provided ID is neither primary nor a secondary ID with a primary mapping. Return type: str or None
-
indra.databases.chebi_client.
get_pubchem_id
(chebi_id)[source]¶ Return the PubChem ID corresponding to a given ChEBI ID.
Parameters: chebi_id (str) – ChEBI ID to be converted. Returns: pubchem_id – PubChem ID corresponding to the given ChEBI ID. If the lookup fails, None is returned. Return type: str
-
indra.databases.chebi_client.
get_specific_id
(chebi_ids)[source]¶ Return the most specific ID in a list based on the hierarchy.
Parameters: chebi_ids (list of str) – A list of ChEBI IDs some of which may be hierarchically related. Returns: The first ChEBI ID which is at the most specific level in the hierarchy with respect to the input list. Return type: str
Cell type context client (indra.databases.context_client
)¶
-
indra.databases.context_client.
get_mutations
(gene_names, cell_types)[source]¶ Return protein amino acid changes in given genes and cell types.
Parameters: - gene_names (list) – HGNC gene symbols for which mutations are queried.
- cell_types (list) –
List of cell type names in which mutations are queried. The cell type names follow the CCLE database conventions.
Example: LOXIMVI_SKIN, BT20_BREAST
Returns: res – A dictionary keyed by cell line, which contains another dictionary that is keyed by gene name, with a list of amino acid substitutions as values.
Return type: dict[dict[list]]
-
indra.databases.context_client.
get_protein_expression
(gene_names, cell_types)[source]¶ Return the protein expression levels of genes in cell types.
Parameters: - gene_names (list) – HGNC gene symbols for which expression levels are queried.
- cell_types (list) –
List of cell type names in which expression levels are queried. The cell type names follow the CCLE database conventions.
Example: LOXIMVI_SKIN, BT20_BREAST
Returns: res – A dictionary keyed by cell line, which contains another dictionary that is keyed by gene name, with estimated protein amounts as values.
Return type: dict[dict[float]]
NDEx client (indra.databases.ndex_client
)¶
-
indra.databases.ndex_client.
create_network
(cx_str, ndex_cred=None, private=True)[source]¶ Creates a new NDEx network of the assembled CX model.
To upload the assembled CX model to NDEx, you need to have a registered account on NDEx (http://ndexbio.org/) and have the ndex python package installed. The uploaded network is private by default.
Parameters: ndex_cred (dict) – A dictionary with the following entries: ‘user’: NDEx user name ‘password’: NDEx password Returns: network_id – The UUID of the NDEx network that was created by uploading the assembled CX model. Return type: str
-
indra.databases.ndex_client.
get_default_ndex_cred
(ndex_cred)[source]¶ Gets the NDEx credentials from the dict, or tries the environment if None
-
indra.databases.ndex_client.
send_request
(ndex_service_url, params, is_json=True, use_get=False)[source]¶ Send a request to the NDEx server.
Parameters: - ndex_service_url (str) – The URL of the service to use for the request.
- params (dict) – A dictionary of parameters to send with the request. Parameter keys differ based on the type of request.
- is_json (bool) – True if the response is in json format, otherwise it is assumed to be text. Default: False
- use_get (bool) – True if the request needs to use GET instead of POST.
Returns: res – Depending on the type of service and the is_json parameter, this function either returns a text string or a json dict.
Return type: str
-
indra.databases.ndex_client.
set_style
(network_id, ndex_cred=None, template_id=None)[source]¶ Set the style of the network to a given template network’s style
Parameters: - network_id (str) – The UUID of the NDEx network whose style is to be changed.
- ndex_cred (dict) – A dictionary of NDEx credentials.
- template_id (Optional[str]) – The UUID of the NDEx network whose style is used on the network specified in the first argument.
-
indra.databases.ndex_client.
update_network
(cx_str, network_id, ndex_cred=None)[source]¶ Update an existing CX network on NDEx with new CX content.
Parameters: - cx_str (str) – String containing the CX content.
- network_id (str) – UUID of the network on NDEx.
- ndex_cred (dict) – A dictionary with the following entries: ‘user’: NDEx user name ‘password’: NDEx password
cBio portal client (indra.databases.cbio_client
)¶
-
indra.databases.cbio_client.
get_cancer_studies
(study_filter=None)[source]¶ Return a list of cancer study identifiers, optionally filtered.
There are typically multiple studies for a given type of cancer and a filter can be used to constrain the returned list.
Parameters: study_filter (Optional[str]) – A string used to filter the study IDs to return. Example: “paad” Returns: study_ids – A list of study IDs. For instance “paad” as a filter would result in a list of study IDs with paad in their name like “paad_icgc”, “paad_tcga”, etc. Return type: list[str]
-
indra.databases.cbio_client.
get_cancer_types
(cancer_filter=None)[source]¶ Return a list of cancer types, optionally filtered.
Parameters: cancer_filter (Optional[str]) – A string used to filter cancer types. Its value is the name or part of the name of a type of cancer. Example: “melanoma”, “pancreatic”, “non-small cell lung” Returns: type_ids – A list of cancer types matching the filter. Example: for cancer_filter=”pancreatic”, the result includes “panet” (neuro-endocrine) and “paad” (adenocarcinoma) Return type: list[str]
-
indra.databases.cbio_client.
get_case_lists
(study_id)[source]¶ Return a list of the case set ids for a particular study.
TAKE NOTE the “case_list_id” are the same thing as “case_set_id” Within the data, this string is referred to as a “case_list_id”. Within API calls it is referred to as a ‘case_set_id’. The documentation does not make this explicitly clear.
Parameters: study_id (str) – The ID of the cBio study. Example: ‘cellline_ccle_broad’ or ‘paad_icgc’ Returns: case_set_ids – A dict keyed to cases containing a dict keyed to genes containing int Return type: dict[dict[int]]
-
indra.databases.cbio_client.
get_ccle_cna
(gene_list, cell_lines)[source]¶ Return a dict of CNAs in given genes and cell lines from CCLE.
CNA values correspond to the following alterations
-2 = homozygous deletion
-1 = hemizygous deletion
0 = neutral / no change
1 = gain
2 = high level amplification
Parameters: - gene_list (list[str]) – A list of HGNC gene symbols to get mutations in
- cell_lines (list[str]) – A list of CCLE cell line names to get mutations for.
Returns: profile_data – A dict keyed to cases containing a dict keyed to genes containing int
Return type: dict[dict[int]]
-
indra.databases.cbio_client.
get_ccle_lines_for_mutation
(gene, amino_acid_change)[source]¶ Return cell lines with a given point mutation in a given gene.
Checks which cell lines in CCLE have a particular point mutation in a given gene and return their names in a list.
Parameters: - gene (str) – The HGNC symbol of the mutated gene in whose product the amino acid change occurs. Example: “BRAF”
- amino_acid_change (str) – The amino acid change of interest. Example: “V600E”
Returns: cell_lines – A list of CCLE cell lines in which the given mutation occurs.
Return type: list
-
indra.databases.cbio_client.
get_ccle_mrna
(gene_list, cell_lines)[source]¶ Return a dict of mRNA amounts in given genes and cell lines from CCLE.
Parameters: - gene_list (list[str]) – A list of HGNC gene symbols to get mRNA amounts for.
- cell_lines (list[str]) – A list of CCLE cell line names to get mRNA amounts for.
Returns: mrna_amounts – A dict keyed to cell lines containing a dict keyed to genes containing float
Return type: dict[dict[float]]
-
indra.databases.cbio_client.
get_ccle_mutations
(gene_list, cell_lines, mutation_type=None)[source]¶ Return a dict of mutations in given genes and cell lines from CCLE.
This is a specialized call to get_mutations tailored to CCLE cell lines.
Parameters: - gene_list (list[str]) – A list of HGNC gene symbols to get mutations in
- cell_lines (list[str]) – A list of CCLE cell line names to get mutations for.
- mutation_type (Optional[str]) – The type of mutation to filter to. mutation_type can be one of: missense, nonsense, frame_shift_ins, frame_shift_del, splice_site
Returns: mutations – The result from cBioPortal as a dict in the format {cell_line : {gene : [mutation1, mutation2, …] }}
Example: {‘LOXIMVI_SKIN’: {‘BRAF’: [‘V600E’, ‘I208V’]}, ‘SKMEL30_SKIN’: {‘BRAF’: [‘D287H’, ‘E275K’]}}
Return type: dict
-
indra.databases.cbio_client.
get_genetic_profiles
(study_id, profile_filter=None)[source]¶ Return all the genetic profiles (data sets) for a given study.
Genetic profiles are different types of data for a given study. For instance the study ‘cellline_ccle_broad’ has profiles such as ‘cellline_ccle_broad_mutations’ for mutations, ‘cellline_ccle_broad_CNA’ for copy number alterations, etc.
Parameters: - study_id (str) – The ID of the cBio study. Example: ‘paad_icgc’
- profile_filter (Optional[str]) – A string used to filter the profiles to return. Will be one of: - MUTATION - MUTATION_EXTENDED - COPY_NUMBER_ALTERATION - MRNA_EXPRESSION - METHYLATION The genetic profiles can include “mutation”, “CNA”, “rppa”, “methylation”, etc.
Returns: genetic_profiles – A list of genetic profiles available for the given study.
Return type: list[str]
-
indra.databases.cbio_client.
get_mutations
(study_id, gene_list, mutation_type=None, case_id=None)[source]¶ Return mutations as a list of genes and list of amino acid changes.
Parameters: - study_id (str) – The ID of the cBio study. Example: ‘cellline_ccle_broad’ or ‘paad_icgc’
- gene_list (list[str]) – A list of genes with their HGNC symbols. Example: [‘BRAF’, ‘KRAS’]
- mutation_type (Optional[str]) – The type of mutation to filter to. mutation_type can be one of: missense, nonsense, frame_shift_ins, frame_shift_del, splice_site
- case_id (Optional[str]) – The case ID within the study to filter to.
Returns: mutations – A tuple of two lists, the first one containing a list of genes, and the second one a list of amino acid changes in those genes.
Return type: tuple[list]
-
indra.databases.cbio_client.
get_num_sequenced
(study_id)[source]¶ Return number of sequenced tumors for given study.
This is useful for calculating mutation statistics in terms of the prevalence of certain mutations within a type of cancer.
Parameters: study_id (str) – The ID of the cBio study. Example: ‘paad_icgc’ Returns: num_case – The number of sequenced tumors in the given study Return type: int
-
indra.databases.cbio_client.
get_profile_data
(study_id, gene_list, profile_filter, case_set_filter=None)[source]¶ Return dict of cases and genes and their respective values.
Parameters: - study_id (str) – The ID of the cBio study. Example: ‘cellline_ccle_broad’ or ‘paad_icgc’
- gene_list (list[str]) – A list of genes with their HGNC symbols. Example: [‘BRAF’, ‘KRAS’]
- profile_filter (str) – A string used to filter the profiles to return. Will be one of: - MUTATION - MUTATION_EXTENDED - COPY_NUMBER_ALTERATION - MRNA_EXPRESSION - METHYLATION
- case_set_filter (Optional[str]) – A string that specifices which case_set_id to use, based on a complete or partial match. If not provided, will look for study_id + ‘_all’
Returns: profile_data – A dict keyed to cases containing a dict keyed to genes containing int
Return type: dict[dict[int]]
-
indra.databases.cbio_client.
send_request
[source]¶ Return a data frame from a web service request to cBio portal.
Sends a web service requrest to the cBio portal with arguments given in the dictionary data and returns a Pandas data frame on success.
More information about the service here: http://www.cbioportal.org/web_api.jsp
Parameters: kwargs (dict) – A dict of parameters for the query. Entries map directly to web service calls with the exception of the optional ‘skiprows’ entry, whose value is used as the number of rows to skip when reading the result data frame. Returns: df – Response from cBioPortal as a Pandas DataFrame. Return type: pandas.DataFrame
ChEMBL client (indra.databases.chembl_client
)¶
-
indra.databases.chembl_client.
activities_by_target
(activities)[source]¶ Get back lists of activities in a dict keyed by ChEMBL target id
Parameters: activities (list) – response from a query returning activities for a drug Returns: targ_act_dict – dictionary keyed to ChEMBL target ids with lists of activity ids Return type: dict
-
indra.databases.chembl_client.
get_chembl_id
(nlm_mesh)[source]¶ Get ChEMBL ID from NLM MESH
Parameters: nlm_mesh (str) – Returns: chembl_id Return type: str
-
indra.databases.chembl_client.
get_chembl_name
(chembl_id)[source]¶ Return a standard ChEMBL name from an ID if available in the local resource.
Parameters: chembl_id (str) – The ChEBML ID to get the name for. Returns: The corresponding ChEBML name or None if not available. Return type: str or None
-
indra.databases.chembl_client.
get_drug_inhibition_stmts
(drug)[source]¶ Query ChEMBL for kinetics data given drug as Agent get back statements
Parameters: drug (Agent) – Agent representing drug with MESH or CHEBI grounding Returns: stmts – INDRA statements generated by querying ChEMBL for all kinetics data of a drug interacting with protein targets Return type: list of INDRA statements
-
indra.databases.chembl_client.
get_evidence
(assay)[source]¶ Given an activity, return an INDRA Evidence object.
Parameters: assay (dict) – an activity from the activities list returned by a query to the API Returns: ev – an Evidence
object containing the kinetics of theReturn type: Evidence
-
indra.databases.chembl_client.
get_kinetics
(assay)[source]¶ Given an activity, return its kinetics values.
Parameters: assay (dict) – an activity from the activities list returned by a query to the API Returns: kin – dictionary of values with units keyed to value types ‘IC50’, ‘EC50’, ‘INH’, ‘Potency’, ‘Kd’ Return type: dict
-
indra.databases.chembl_client.
get_mesh_id
(nlm_mesh)[source]¶ Get MESH ID from NLM MESH
Parameters: nlm_mesh (str) – Returns: mesh_id Return type: str
-
indra.databases.chembl_client.
get_pcid
(mesh_id)[source]¶ Get PC ID from MESH ID
Parameters: mesh (str) – Returns: pcid Return type: str
-
indra.databases.chembl_client.
get_pmid
(doc_id)[source]¶ Get PMID from document_chembl_id
Parameters: doc_id (str) – Returns: pmid Return type: str
-
indra.databases.chembl_client.
get_protein_targets_only
(target_chembl_ids)[source]¶ Given list of ChEMBL target ids, return dict of SINGLE PROTEIN targets
Parameters: target_chembl_ids (list) – list of chembl_ids as strings Returns: protein_targets – dictionary keyed to ChEMBL target ids with lists of activity ids Return type: dict
-
indra.databases.chembl_client.
get_target_chemblid
(target_upid)[source]¶ Get ChEMBL ID from UniProt upid
Parameters: target_upid (str) – Returns: target_chembl_id Return type: str
LINCS client (indra.databases.lincs_client
)¶
-
indra.databases.lincs_client.
get_drug_target_data
()[source]¶ Load the csv into a list of dicts containing the LINCS drug target data.
Returns: data – A list of dicts, each keyed based on the header of the csv, with values as the corresponding column values. Return type: list[dict]
-
class
indra.databases.lincs_client.
LincsClient
[source]¶ Client for querying LINCS small molecules and proteins.
-
get_protein_refs
(hms_lincs_id)[source]¶ Get the refs for a protein from the LINCs protein metadata.
Parameters: hms_lincs_id (str) – The HMS LINCS ID for the protein Returns: A dictionary of protein references. Return type: dict
-
MeSH client (indra.databases.mesh_client
)¶
-
indra.databases.mesh_client.
get_db_mapping
(mesh_id)[source]¶ Return mapping to another name space for a MeSH ID, if it exists.
Parameters: mesh_id (str) – The MeSH ID whose mappings is to be returned. Returns: A tuple consisting of a DB namespace and ID for the mapping or None if not available. Return type: tuple or None
-
indra.databases.mesh_client.
get_go_id
(mesh_id)[source]¶ Return a GO ID corresponding to the given MeSH ID.
Parameters: mesh_id (str) – MeSH ID to map to GO Returns: The GO ID corresponding to the given MeSH ID, or None if not available. Return type: str
-
indra.databases.mesh_client.
get_mesh_id_from_db_id
(db_ns, db_id)[source]¶ Return a MeSH ID mapped from another namespace and ID.
Parameters: - db_ns (str) – A namespace corresponding to db_id.
- db_id (str) – An ID in the given namespace.
Returns: The MeSH ID corresponding to the given namespace and ID if available, otherwise None.
Return type: str or None
-
indra.databases.mesh_client.
get_mesh_id_from_go_id
(go_id)[source]¶ Return a MeSH ID corresponding to the given GO ID.
Parameters: go_id (str) – GO ID to map to MeSH Returns: The MeSH ID corresponding to the given GO ID, or None if not available. Return type: str
-
indra.databases.mesh_client.
get_mesh_id_name
(mesh_term, offline=False)[source]¶ Get the MESH ID and name for the given MESH term.
Uses the mappings table in indra/resources; if the MESH term is not listed there, falls back on the NLM REST API.
Parameters: - mesh_term (str) – MESH Descriptor or Concept name, e.g. ‘Breast Cancer’.
- offline (bool) – Whether to allow queries to the NLM REST API if the given MESH term is not contained in INDRA’s internal MESH mappings file. Default is False (allows REST API queries).
Returns: Returns a 2-tuple of the form (id, name) with the ID of the descriptor corresponding to the MESH label, and the descriptor name (which may not exactly match the name provided as an argument if it is a Concept name). If the query failed, or no descriptor corresponding to the name was found, returns a tuple of (None, None).
Return type: tuple of strs
-
indra.databases.mesh_client.
get_mesh_id_name_from_web
(mesh_term)[source]¶ Get the MESH ID and name for the given MESH term using the NLM REST API.
Parameters: mesh_term (str) – MESH Descriptor or Concept name, e.g. ‘Breast Cancer’. Returns: Returns a 2-tuple of the form (id, name) with the ID of the descriptor corresponding to the MESH label, and the descriptor name (which may not exactly match the name provided as an argument if it is a Concept name). If the query failed, or no descriptor corresponding to the name was found, returns a tuple of (None, None). Return type: tuple of strs
-
indra.databases.mesh_client.
get_mesh_name
(mesh_id, offline=False)[source]¶ Get the MESH label for the given MESH ID.
Uses the mappings table in indra/resources; if the MESH ID is not listed there, falls back on the NLM REST API.
Parameters: - mesh_id (str) – MESH Identifier, e.g. ‘D003094’.
- offline (bool) – Whether to allow queries to the NLM REST API if the given MESH ID is not contained in INDRA’s internal MESH mappings file. Default is False (allows REST API queries).
Returns: Label for the MESH ID, or None if the query failed or no label was found.
Return type: str
-
indra.databases.mesh_client.
get_mesh_name_from_web
[source]¶ Get the MESH label for the given MESH ID using the NLM REST API.
Parameters: mesh_id (str) – MESH Identifier, e.g. ‘D003094’. Returns: Label for the MESH ID, or None if the query failed or no label was found. Return type: str
-
indra.databases.mesh_client.
get_mesh_tree_numbers
(mesh_id)[source]¶ Return MeSH tree IDs associated with a MeSH ID from the resource file.
Parameters: mesh_id (str) – The MeSH ID whose tree IDs should be returned. Returns: A list of MeSH tree IDs. Return type: list[str]
-
indra.databases.mesh_client.
get_mesh_tree_numbers_from_web
(mesh_id)[source]¶ Return MeSH tree IDs associated with a MeSH ID from the web.
Parameters: mesh_id (str) – The MeSH ID whose tree IDs should be returned. Returns: A list of MeSH tree IDs. Return type: list[str]
-
indra.databases.mesh_client.
has_tree_prefix
(mesh_id, tree_prefix)[source]¶ Return True if the given MeSH ID has the given tree prefix.
-
indra.databases.mesh_client.
is_disease
(mesh_id)[source]¶ Return True if the given MeSH ID is a disease.
-
indra.databases.mesh_client.
is_enzyme
(mesh_id)[source]¶ Return True if the given MeSH ID is an enzyme.
GO client (indra.databases.go_client
)¶
A client to the Gene Ontology.
-
indra.databases.go_client.
get_go_id_from_label
(label)[source]¶ Get ID corresponding to a given GO label.
Parameters: label (str) – The GO label to get the ID for. Returns: Identifier corresponding to the GO label, starts with GO:. Return type: str
-
indra.databases.go_client.
get_go_id_from_label_or_synonym
(label)[source]¶ Get ID corresponding to a given GO label or synonym
Parameters: label (str) – The GO label or synonym to get the ID for. Returns: Identifier corresponding to the GO label or synonym, starts with GO:. Return type: str
-
indra.databases.go_client.
get_go_label
(go_id)[source]¶ Get label corresponding to a given GO identifier.
Parameters: go_id (str) – The GO identifier. Should include the GO: prefix, e.g., GO:1903793 (positive regulation of anion transport). Returns: Label corresponding to the GO ID. Return type: str
-
indra.databases.go_client.
get_primary_id
(go_id)[source]¶ Get primary ID corresponding to an alternative/deprecated GO ID.
Parameters: go_id (str) – The GO ID to get the primary ID for. Returns: Primary identifier corresponding to the given ID. Return type: str
-
indra.databases.go_client.
get_valid_location
(loc)[source]¶ Return a valid GO label based on an ID, label or synonym.
The rationale behind this function is that many sources produce cellular locations that are arbitrarily either GO IDs (sometimes without the prefix and sometimes outdated) or labels or synonyms. This function handles all these cases and returns a valid GO label in case one is available, otherwise None.
Parameters: loc (txt) – The location that needst o be canonicalized. Returns: The valid location string is available, otherwise None. Return type: str or None
PubChem client (indra.databases.pubchem_client
)¶
-
indra.databases.pubchem_client.
get_inchi_key
[source]¶ Return the InChIKey for a given PubChem CID.
Parameters: pubchem_cid (str) – The PubChem CID whose InChIKey should be returned. Returns: The InChIKey corresponding to the PubChem CID. Return type: str
-
indra.databases.pubchem_client.
get_json_record
[source]¶ Return the JSON record of a given PubChem CID.
Parameters: pubchem_cid (str) – The PubChem CID whose record should be returned. Returns: The record deserialized from JSON. Return type: dict
-
indra.databases.pubchem_client.
get_preferred_compound_ids
(pubchem_cid)[source]¶ Return a list of preferred CIDs for a given PubChem CID.
Parameters: pubchem_cid (str) – The PubChem CID whose preferred CIDs should be returned. Returns: The list of preferred CIDs for the given CID. If there are no preferred CIDs for the given CID then an empty list is returned. Return type: list of str
miRBase client (indra.databases.mirbase_client
)¶
A client to miRBase.
-
indra.databases.mirbase_client.
get_mirbase_id_from_mirbase_name
(mirbase_name)[source]¶ Return the miRBase identifier corresponding to the given miRBase name.
Parameters: mirbase_name (str) – The miRBase ID to be converted. Example: “hsa-mir-19b-2” Returns: mirbase_id – The miRBase ID corresponding to the given miRBase name. Return type: str
-
indra.databases.mirbase_client.
get_mirbase_name_from_mirbase_id
(mirbase_id)[source]¶ Return the miRBase name corresponding to the given miRBase ID.
Parameters: mirbase_id (str) – The miRBase ID to be converted. Example: “MI0000060” Returns: mirbase_name – The miRBase name corresponding to the given miRBase ID. Return type: str
-
indra.databases.mirbase_client.
get_hgnc_id_from_mirbase_id
(mirbase_id)[source]¶ Return the HGNC ID corresponding to the given miRBase ID.
Parameters: mirbase_id (str) – The miRBase ID to be converted. Example: “MI0000060” Returns: hgnc_id – The HGNC ID corresponding to the given miRBase ID. Return type: str
-
indra.databases.mirbase_client.
get_mirbase_id_from_hgnc_id
(hgnc_id)[source]¶ Return the HGNC ID corresponding to the given miRBase ID.
Parameters: hgnc_id (str) – An HGNC identifier to convert to miRBase, if it is indeed an miRNA. Example: “31476” Returns: mirbase_id – The miRBase ID corresponding to the given HGNC ID. Return type: str
-
indra.databases.mirbase_client.
get_mirbase_id_from_hgnc_symbol
(hgnc_symbol)[source]¶ Return the HGNC gene symbol corresponding to the given miRBase ID.
Parameters: hgnc_symbol (str) – An HGNC gene symbol to convert to miRBase, if it is indeed an miRNA. Example: “MIR19B2” Returns: mirbase_id – The miRBase ID corresponding to the given HGNC gene symbol. Return type: str
Experimental Factor Ontology (EFO) client (indra.databases.efo_client
)¶
A client to EFO.
-
indra.databases.efo_client.
get_efo_id_from_efo_name
(efo_name)[source]¶ Return the EFO identifier corresponding to the given EFO name.
Parameters: efo_name (str) – The EFO name to be converted. Example: “gum cancer” Returns: efo_id – The EFO identifier corresponding to the given EFO name. Return type: str
Human Phenotype Ontology (HP) client (indra.databases.hp_client
)¶
A client to HP.
Disease Ontology (DOID) client (indra.databases.doid_client
)¶
A client to the Disease Ontology.
-
indra.databases.doid_client.
get_doid_id_from_doid_alt_id
(doid_alt_id)[source]¶ Return the identifier corresponding to the given Disease Ontology alt id.
Parameters: doid_alt_id (str) – The Disease Ontology alt id to be converted. Example: “DOID:267” Returns: doid_id – The Disease Ontology identifier corresponding to the given alt id. Return type: str
-
indra.databases.doid_client.
get_doid_id_from_doid_name
(doid_name)[source]¶ Return the identifier corresponding to the given Disease Ontology name.
Parameters: doid_name (str) – The Disease Ontology name to be converted. Example: “Nocturia” Returns: doid_id – The Disease Ontology identifier corresponding to the given name. Return type: str
-
indra.databases.doid_client.
get_doid_name_from_doid_id
(doid_id)[source]¶ Return the name corresponding to the given Disease Ontology ID.
Parameters: doid_id (str) – The Disease Ontology identifier to be converted. Example: “DOID:0000017” Returns: doid_name – The DOID name corresponding to the given DOID identifier. Return type: str
Taxonomy client (indra.databases.taxonomy_client
)¶
Client to access the Entrez Taxonomy web service.
-
indra.databases.taxonomy_client.
get_taxonomy_id
(name)[source]¶ Return the taxonomy ID corresponding to a taxonomy name.
Parameters: name (str) – The name of the taxonomy entry. Example: “Severe acute respiratory syndrome coronavirus 2” Returns: The taxonomy ID corresponding to the given name or None if not available. Return type: str or None
DrugBank client (indra.databases.drugbank_client
)¶
Client for interacting with DrugBank entries.
-
indra.databases.drugbank_client.
get_chebi_id
(drugbank_id)[source]¶ Return a mapping for a DrugBank ID to CHEBI.
Parameters: drugbank_id (str) – DrugBank ID to map. Returns: The ID mapped to CHEBI or None if not available. Return type: str or None
-
indra.databases.drugbank_client.
get_chembl_id
(drugbank_id)[source]¶ Return a mapping for a DrugBank ID to CHEMBL.
Parameters: drugbank_id (str) – DrugBank ID to map. Returns: The ID mapped to CHEMBL or None if not available. Return type: str or None
-
indra.databases.drugbank_client.
get_db_mapping
(drugbank_id, db_ns)[source]¶ Return a mapping for a DrugBank ID to a given name space.
Parameters: - drugbank_id (str) – DrugBank ID to map.
- db_ns (str) – The database name space to map to.
Returns: The ID mapped to the given name space or None if not available.
Return type: str or None
-
indra.databases.drugbank_client.
get_drugbank_id_from_chebi_id
(chebi_id)[source]¶ Return DrugBank ID from a CHEBI ID.
Parameters: chebi_id (str) – CHEBI ID to map. Returns: The mapped DrugBank ID or None if not available. Return type: str or None
-
indra.databases.drugbank_client.
get_drugbank_id_from_chembl_id
(chembl_id)[source]¶ Return DrugBank ID from a CHEMBL ID.
Parameters: chembl_id (str) – CHEMBL ID to map. Returns: The mapped DrugBank ID or None if not available. Return type: str or None