Skip to content

Commit

Permalink
how to create the graph?
Browse files Browse the repository at this point in the history
  • Loading branch information
xieguigang committed May 24, 2024
1 parent 0698d68 commit 3b5c4f5
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions R/application/check_dependency/dependency_graph.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
#' try to extract the dependency graph from the application modules
#'
const dependency_graph = function() {
let context = .get_context();
let appList = context$workflow;
let source = []; # name of source node
let source_type = []; # type of the source node
let target = []; # name of the target node
let target_type = []; # type of the target node
let deps_type = []; # the dependency type

# start to analysis application module and generates the input and outputs

}

const dependency_analysis = function(app) {
str(app);
stop();
}

0 comments on commit 3b5c4f5

Please sign in to comment.