Skip to content

Create a script to generate Analysis dependency graph for IN-CORE Studio #78

Description

@Rashmil-1999

The main idea is to go through the get_spec methods in pyincore analyses to create a graph which helps to determine which analysis can be chained before and after.

For example:
This is just a short example to give you a rough idea. Feel free to put your own thoughts into it and modify it to make it better

{
        "Analysis 0": {
            "previous": [],
            "next": ["Analysis 1", "Analysis 2"]
        },
        "Analysis 1": {
            "previous": ["Analysis 0"],
            "next": ["Analysis 2", "Analysis 3", "Analysis 7"]
        },
        "Analysis 2": {
            "previous": ["Analysis 0", "Analysis 1"],
            "next": ["Analysis 3", "Analysis 4", "Analysis 7"]
        },
}

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions