{
"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"]
},
}
The main idea is to go through the
get_specmethods 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