Repository URL to install this package:
|
Version:
0.3.22 ▾
|
{
"$schema": "https://raw.githubusercontent.com/DHARPA-Project/kiara/gh-pages/latest/development/entities/modules/PipelineConfig.json",
"module_type_name": "networkAnalysisDev",
"doc": "Network analysis development workflow. This is a development version that should be refactored: data selection and mapping modules should be removed.",
"steps": [
{
"module_type": "lumy.network_analysis_temporary.data_selection",
"step_id": "data_selection"
},
{
"module_type": "lumy.network_analysis_temporary.data_mapping",
"step_id": "data_mapping",
"input_links": {
"corpus": "data_selection.selectedItems"
}
},
{
"module_type": "network_graph.from_edges_table",
"step_id": "create_graph",
"input_links": {
"edges_table": "data_mapping.edges"
},
"module_config": {
"constants": {
"source_column": "source",
"target_column": "target",
"weight_column": "weight"
}
}
},
{
"module_type": "network_graph.augment",
"step_id": "augment_graph",
"input_links": {
"graph": "create_graph.graph",
"node_attributes": "data_mapping.nodes"
},
"module_config": {
"constants": {
"index_column_name": "id"
}
}
},
{
"module_type": "network_graph.add_centrality_calculations",
"step_id": "centrality_measures",
"input_links": {
"graph": "augment_graph.graph"
}
},
{
"module_type": "network_graph.properties",
"step_id": "graph_properties",
"input_links": {
"graph": "centrality_measures.graph"
},
"module_config": {
"number_of_nodes": true,
"number_of_edges": true,
"density": true,
"degrees": true,
"shortest_path": true
}
}
],
"input_aliases": {},
"output_aliases": {}
}