GithubHelp home page GithubHelp logo

Comments (6)

kltm avatar kltm commented on July 24, 2024

Sadly, no file attachments for github :(

from bbop-js.

kltm avatar kltm commented on July 24, 2024

Can generate JS in go-mme by trying to use the wizard for:
"execution phase of apoptosis" over "goa_human".

from bbop-js.

kltm avatar kltm commented on July 24, 2024

David seems to have found another with the MME:

{"nodes": [{"id": "gomodel:mgi-5362b2ed0000016-GO-0072583-5362b2ed0000035"}, {"id": "gomodel:mgi-5362b2ed0000016-GO-0021923-5362b2ed0000025"}, {"id": "gomodel:mgi-5362b2ed0000016-GO-0021575-5362b2ed0000027"}, {"id": "gomodel:mgi-5362b2ed0000016-GO-0003674-5362b2ed0000023"}, {"id": "gomodel:mgi-5362b2ed0000016-GO-0061436-5362b2ed0000034"}, {"id": "gomodel:mgi-5362b2ed0000016-GO-0001889-5362b2ed0000041"}, {"id": "gomodel:mgi-5362b2ed0000016-GO-0007030-5362b2ed0000032"}, {"id": "gomodel:mgi-5362b2ed0000016-GO-0043588-5362b2ed0000040"}, {"id": "gomodel:mgi-5362b2ed0000016-GO-0048853-5362b2ed0000021"}, {"id": "gomodel:mgi-5362b2ed0000016-GO-0021869-5362b2ed0000022"}, {"id": "gomodel:mgi-5362b2ed0000016-GO-0048854-5362b2ed0000028"}, {"id": "gomodel:mgi-5362b2ed0000016-GO-2000179-5362b2ed0000024"}, {"id": "gomodel:mgi-5362b2ed0000016-GO-0007029-5362b2ed0000042"}, {"id": "gomodel:mgi-5362b2ed0000016-GO-0009913-5362b2ed0000033"}], "edges": [{"sub": "gomodel:mgi-5362b2ed0000016-GO-0072583-5362b2ed0000035", "obj": "gomodel:mgi-5362b2ed0000016-GO-2000179-5362b2ed0000024", "pred": "RO:0002411"}, {"sub": "gomodel:mgi-5362b2ed0000016-GO-0009913-5362b2ed0000033", "obj": "gomodel:mgi-5362b2ed0000016-GO-0061436-5362b2ed0000034", "pred": "BFO:0000050"}, {"sub": "gomodel:mgi-5362b2ed0000016-GO-0021869-5362b2ed0000022", "obj": "gomodel:mgi-5362b2ed0000016-GO-0048853-5362b2ed0000021", "pred": "BFO:0000050"}, {"sub": "gomodel:mgi-5362b2ed0000016-GO-0072583-5362b2ed0000035", "obj": "gomodel:mgi-5362b2ed0000016-GO-0009913-5362b2ed0000033", "pred": "RO:0002411"}, {"sub": "gomodel:mgi-5362b2ed0000016-GO-2000179-5362b2ed0000024", "obj": "gomodel:mgi-5362b2ed0000016-GO-0021923-5362b2ed0000025", "pred": "RO:0002213"}, {"sub": "gomodel:mgi-5362b2ed0000016-GO-0021575-5362b2ed0000027", "obj": "gomodel:mgi-5362b2ed0000016-GO-0048854-5362b2ed0000028", "pred": "BFO:0000050"}, {"sub": "gomodel:mgi-5362b2ed0000016-GO-0061436-5362b2ed0000034", "obj": "gomodel:mgi-5362b2ed0000016-GO-0043588-5362b2ed0000040", "pred": "BFO:0000050"}, {"sub": "gomodel:mgi-5362b2ed0000016-GO-0021923-5362b2ed0000025", "obj": "gomodel:mgi-5362b2ed0000016-GO-0021575-5362b2ed0000027", "pred": "BFO:0000050"}, {"sub": "gomodel:mgi-5362b2ed0000016-GO-2000179-5362b2ed0000024", "obj": "gomodel:mgi-5362b2ed0000016-GO-0021869-5362b2ed0000022", "pred": "RO:0002213"}, {"sub": "gomodel:mgi-5362b2ed0000016-GO-0048853-5362b2ed0000021", "obj": "gomodel:mgi-5362b2ed0000016-GO-0048854-5362b2ed0000028", "pred": "BFO:0000050"}, {"sub": "gomodel:mgi-5362b2ed0000016-GO-0072583-5362b2ed0000035", "obj": "gomodel:mgi-5362b2ed0000016-GO-0007029-5362b2ed0000042", "pred": "RO:0002411"}, {"sub": "gomodel:mgi-5362b2ed0000016-GO-0003674-5362b2ed0000023", "obj": "gomodel:mgi-5362b2ed0000016-GO-0072583-5362b2ed0000035", "pred": "BFO:0000050"}, {"sub": "gomodel:mgi-5362b2ed0000016-GO-0072583-5362b2ed0000035", "obj": "gomodel:mgi-5362b2ed0000016-GO-0007030-5362b2ed0000032", "pred": "RO:0002411"}]}

from bbop-js.

kltm avatar kltm commented on July 24, 2024

I'm wondering if this has to do with the single separate node away from the rest of the complicated graph? Perhaps causing an additional partition to be created without a corresponding edge partition?

from bbop-js.

kltm avatar kltm commented on July 24, 2024

Worked back to minimal test case!

     var bad = {
     "nodes":
     [
         {"id": "d"},
         {"id": "b"},
         {"id": "a"},
         {"id": "c"}
     ],
     "edges":
     [
         {"sub": "d",
          "obj": "c"},
         {"sub": "c",
          "obj": "a"},
         {"sub": "d",
          "obj": "b"}
     ]
     };

from bbop-js.

kltm avatar kltm commented on July 24, 2024

New case, remarkably like the old one:

var bad = {
    "nodes": [
    {"id": "d"},
    {"id": "e"},
    {"id": "b"},
    {"id": "a"},
    {"id": "c"}
    ],
    "edges": [
    {"sub": "d",
     "obj": "c"},
    {"sub": "c",
     "obj": "a"},
    {"sub": "e",
     "obj": "d"},
    {"sub": "d",
     "obj": "b"}
    ]
};

from bbop-js.

Related Issues (20)

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.