Giter Club home page Giter Club logo

Comments (2)

anergictcell avatar anergictcell commented on May 26, 2024

Hi,
If Ontology.search performs a substring match on all term names and synonyms. This will only work if your term is a substring. It does not work for strings with character mismatches.
The order it returns results is random and not sorted. This was done for performance reasons, i.e. you will get your first result even though it did not yet finish checking all HPO terms in the Ontology.

For your use case you'd have to implement a matching/search function yourself. You would have to do something like

  1. Get all names and synonyms for every HPO term
  2. Search this list of strings, allowing for mismatches

For (1), you could do something like

strings: Dict[str, List[HPOTerm]] = {}

def name_to_term(name: str, term: HPOTerm):
    if name not in strings:
        strings[name] = [term]


for term in Ontology:
    name_to_term(term.name, term)
    for syn in term.synonym:
        name_to_term(syn, term)

Then compare your search query with the keys of strings and return the associated HPOTerms.

from pyhpo.

Zethson avatar Zethson commented on May 26, 2024

Thank you very much for your pointers!
I will reopen this issue if I run into any troubles.

from pyhpo.

Related Issues (6)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.