npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@biothings-explorer/smartapi-kg

v4.0.0

Published

create a knowledge graph based on SmartAPI Specifications

Downloads

118

Readme

Test

Generate a meta knowledge graph of how biomedical concepts are connected based on SmartAPI Specifications with built-in filtering capabilities

🏠 Homepage

Install

npm i @biothings-explorer/smartapi-kg

Usage

  • Import and Initialize

    const kg = require("@biothings-explorer/smartapi-kg")
    //initiate a new knowledge graph class
    let meta_kg = new kg.default()
  • Load the Meta Knowledge Graph (meta-kg)

    • Option 1: Load Meta-KG from SmartAPI specs with translator tag specified

      //async load knowledge graph from SmartAPI
      await meta_kg.constructMetaKG()
    • Option 2: Load Meta-KG from SmartAPI specs with translator tag as well as ReasonerStdAPI with /predicates endpoint

      await meta_kg.constructMetaKG(includeReasoner=true);
    • Option 3: Load Meta-KG from SmartAPI specs with tags equal to biothings

      await meta_kg.constructMetaKG(includeReasoner = false, {tag: "biothings"});
    • Option 4: Load Meta-KG from SmartAPI specs with team name equal to Text Mining Provider

      await meta_kg.constructMetaKG(includeReasoner = false, {teamName: "Text Mining Provider"});
    • Option 5: Load Meta-KG from SmartAPI specs with component equal to KP

      await meta_kg.constructMetaKG(includeReasoner = false, {component: "KP"});
    • Option 6: Load Meta-KG for a specific SmartAPI spec with SmartAPI ID

      await meta_kg.constructMetaKG(includeReasoner = false, {smartAPIID: "5076f09382b38d56a77e376416b634ca"});
    • Option 7: Load Meta-KG from a local copy of SmartAPI specs included in the package

      //Alternatively, you can also sync load SmartAPI specs from a local copy within the package
      meta_kg.constructMetaKGSync();
    • Option 8: Load Meta-KG from file path you specify

        const path = require("path");
        // provide file path storing your SmartAPI file
        const file_path = path.resolve(__dirname, '../data/smartapi_multiomics_kp_query.json');
        let meta_kg = new MetaKG(file_path);
        meta_kg.constructMetaKGSync();
    • Option 9: Load Meta-KG with an api list

      meta_kg.constructMetaKGSync(includeReasoner=true, {apiList: [
        {
          id: '09c8782d9f4027712e65b95424adba79',
          name: 'MyVariant.info API'
        },
        {
          id: '59dce17363dce279d389100834e43648',
          name: 'MyGene.info API'
        }
      ]});
  • Filter the Meta-KG for specific associations based on input, output, predicate, or api combinations.

    //filter based on predicate
    meta_kg.filter({predicate: 'treats'})
    //filter based on predicate and input_id
    meta_kg.filter({predicate: 'treats', input_id: 'CHEMBL.COMPOUND'})
    //filter based on predicate and input_type
    meta_kg.filter({predicate: ['treats', 'physically_interacts_with'], input_type: 'SmallMolecule'})
    //filter based on input_type, output_type and api
    meta_kg.filter({ api: "Automat PHAROS API", input_type: "SmallMolecule", output_type: "Gene" });
    

Runkit Notebook Demo

Run tests

npm run test

Author

👤 Jiwen Xin

  • Website: http://github.com/kevinxin90
  • Github: @kevinxin90

🤝 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.


This README was generated with ❤️ by readme-md-generator