Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
Rashmil-1999 opened this issue Sep 19, 2024 · 0 comments · May be fixed by #79
Open

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

Rashmil-1999 opened this issue Sep 19, 2024 · 0 comments · May be fixed by #79
Assignees

Comments

@Rashmil-1999
Copy link
Contributor

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"]
        },
}
@Rashmil-1999 Rashmil-1999 added the good first issue Good for newcomers label Sep 19, 2024
@Rashmil-1999 Rashmil-1999 self-assigned this Sep 20, 2024
@Rashmil-1999 Rashmil-1999 linked a pull request Sep 20, 2024 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant