Socket
Socket
Sign inDemoInstall

@biothings-explorer/annotator

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@biothings-explorer/annotator

A nodejs package providing batch annotating features for biomedical entities


Version published
Maintainers
1
Created
Source

Build Status Coverage Status Documentation

Welcome to @biothings-explorer/annotator 👋

A nodejs module to annotate biomedical entities in batch for BioThings Explorer

🏠 Homepage

Install

npm i @biothings-explorer/annotator

Usage

  • Import and Initialize

    const annotate = require("@biothings-explorer/annotator")
    
  • Annotate Gene IDs

    const gene_ids = {
      "NCBIGene:4888": {
          "db_ids": {
              "NCBIGene": [
                  "4888"
              ],
              "HGNC": [
                  "7959"
              ],
              "SYMBOL": [
                  "NPY6R"
              ],
              "UMLS": [
                  "C1417819"
              ]
          }
      },
      "NCBIGene:4597": {
          "db_ids": {
              "NCBIGene": [
                  "4597"
              ],
              "ENSEMBL": [
                  "ENSG00000167508"
              ],
              "HGNC": [
                  "7529"
              ],
              "SYMBOL": [
                  "MVD"
              ],
              "UMLS": [
                  "C1417507"
              ]
            }
        }
    }
    let res = await annotate("Gene", gene_ids);
    console.log(res);
    // {"NCBIGene:4888": {"genomic_position": ..., "generif": ..., "biological_process": ...},"NCBIGene:4597": {"genomic_position": ..., "reactome": ..., "wikipathways": ...}}
    
  • Annotate ChemicalSubstance IDs

    const chemical_ids = {
        "CHEBI:8863": {
            "id": {
                "label": "RILUZOLE",
                "identifier": "CHEBI:8863"
            },
            "db_ids": {
                "CHEBI": [
                    "CHEBI:8863"
                ],
                "CHEMBL.COMPOUND": [
                    "CHEMBL744"
                ]
            }
        },
        "CHEBI:133809": {
            "id": {
                "label": "ANISINDIONE",
                "identifier": "CHEBI:133809"
            },
            "db_ids": {
                "CHEBI": [
                    "CHEBI:133809"
                ],
                "CHEMBL.COMPOUND": [
                    "CHEMBL712"
                ]
            }
        }
    };
    let res = await annotate("ChemicalSubstance", chemical_ids);
    console.log(res);
    // {"CHEBI:133809": {"max_phase": ..., "molecular_weight": ..., "molecular_type": ...}, "CHEBI:8863": {"max_phase": ..., "enzymes": ..., "targets": ...}}
    

Run tests

npm run test

Author

👤 Jiwen Xin

🤝 Contributing

Contributions, issues and feature requests are welcome!
Feel free to check issues page.

Show your support

Give a ⭐️ if this project helped you!

📝 License

Copyright © 2020 Jiwen Xin.
This project is ISC licensed.

Keywords

FAQs

Package last updated on 11 Aug 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc