Skip to content
Snippets Groups Projects
Commit a4845b37 authored by George Marchment's avatar George Marchment
Browse files

Merge branch 'typo-lables' into 'main'

fixe typo from lables to labels

See merge request !10
parents 6e8d28e4 da1f2d67
No related branches found
No related tags found
1 merge request!10fixe typo from lables to labels
Pipeline #13281 passed with stages
in 2 minutes and 18 seconds
......@@ -93,15 +93,15 @@ The structure of this folder is organised as such :
│ ├── dependency_graph.json
│ ├── dependency_graph.mmd
│ ├── dependency_graph.png
│ ├── dependency_graph_wo_lables.dot
│ ├── dependency_graph_wo_lables.mmd
│ ├── dependency_graph_wo_lables.png
│ ├── dependency_graph_wo_labels.dot
│ ├── dependency_graph_wo_labels.mmd
│ ├── dependency_graph_wo_labels.png
│ ├── dependency_graph_wo_orphan_operations.dot
│ ├── dependency_graph_wo_orphan_operations.mmd
│ ├── dependency_graph_wo_orphan_operations.png
│ ├── dependency_graph_wo_orphan_operations_wo_lables.dot
│ ├── dependency_graph_wo_orphan_operations_wo_lables.mmd
│ ├── dependency_graph_wo_orphan_operations_wo_lables.png
│ ├── dependency_graph_wo_orphan_operations_wo_labels.dot
│ ├── dependency_graph_wo_orphan_operations_wo_labels.mmd
│ ├── dependency_graph_wo_orphan_operations_wo_labels.png
│ ├── metadata_dependency_graph.json
│ ├── metadata_process_dependency_graph.json
│ ├── metadata_specification_graph.json
......
......@@ -121,13 +121,13 @@ class Graph():
def get_specification_graph(self, filename = "specification_graph", render_graphs = True):
generate_graph(self.get_output_dir()/'graphs'/filename, self.full_dico, render_graphs = render_graphs)
def get_specification_graph_wo_lables(self, filename = "specification_graph_wo_labels", render_graphs = True):
def get_specification_graph_wo_labels(self, filename = "specification_graph_wo_labels", render_graphs = True):
generate_graph(self.get_output_dir()/'graphs'/filename, self.full_dico, label_edge=False, label_node=False, render_graphs = render_graphs)
def get_specification_graph_wo_orphan_operations(self, filename = "specification_wo_orphan_operations", render_graphs = True):
generate_graph(self.get_output_dir()/'graphs'/filename, graph_dico_wo_orphan_operations(self.full_dico), render_graphs = render_graphs)
def get_specification_graph_wo_orphan_operations_wo_lables(self, filename = "specification_wo_orphan_operations_wo_labels", render_graphs = True):
def get_specification_graph_wo_orphan_operations_wo_labels(self, filename = "specification_wo_orphan_operations_wo_labels", render_graphs = True):
generate_graph(self.get_output_dir()/'graphs'/filename, graph_dico_wo_orphan_operations(self.full_dico), label_edge=False, label_node=False, render_graphs = render_graphs)
def get_process_dependency_graph(self):
......@@ -268,13 +268,13 @@ class Graph():
def render_dependency_graph(self, filename = "dependency_graph", render_graphs = True):
generate_graph(self.get_output_dir()/'graphs'/filename, self.dico_wo_branch_operation, render_graphs = render_graphs)
def get_dependency_graph_wo_lables(self, filename = "dependency_graph_wo_lables", render_graphs = True):
def get_dependency_graph_wo_labels(self, filename = "dependency_graph_wo_labels", render_graphs = True):
generate_graph(self.get_output_dir()/'graphs'/filename, self.dico_wo_branch_operation, label_edge=False, label_node=False, render_graphs = render_graphs)
def get_dependency_graph_wo_orphan_operations(self, filename = "dependency_graph_wo_orphan_operations", render_graphs = True):
generate_graph(self.get_output_dir()/'graphs'/filename, graph_dico_wo_orphan_operations(self.dico_wo_branch_operation), render_graphs = render_graphs)
def get_dependency_graph_wo_orphan_operations_wo_lables(self, filename = "dependency_graph_wo_orphan_operations_wo_lables", render_graphs = True):
def get_dependency_graph_wo_orphan_operations_wo_labels(self, filename = "dependency_graph_wo_orphan_operations_wo_labels", render_graphs = True):
generate_graph(self.get_output_dir()/'graphs'/filename, graph_dico_wo_orphan_operations(self.dico_wo_branch_operation), label_edge=False, label_node=False, render_graphs = render_graphs)
......
......@@ -649,14 +649,14 @@ class Nextflow_File(Nextflow_Building_Blocks):
#Generate the different graphs
self.graph.get_specification_graph(render_graphs = render_graphs)
self.graph.get_specification_graph_wo_lables(render_graphs = render_graphs)
self.graph.get_specification_graph_wo_labels(render_graphs = render_graphs)
self.graph.render_graph_wo_operations(render_graphs = render_graphs)
self.graph.get_specification_graph_wo_orphan_operations(render_graphs = render_graphs)
self.graph.get_specification_graph_wo_orphan_operations_wo_lables(render_graphs = render_graphs)
self.graph.get_specification_graph_wo_orphan_operations_wo_labels(render_graphs = render_graphs)
self.graph.render_dependency_graph(render_graphs = render_graphs)
self.graph.get_dependency_graph_wo_lables(render_graphs = render_graphs)
self.graph.get_dependency_graph_wo_labels(render_graphs = render_graphs)
self.graph.get_dependency_graph_wo_orphan_operations(render_graphs = render_graphs)
self.graph.get_dependency_graph_wo_orphan_operations_wo_lables(render_graphs = render_graphs)
self.graph.get_dependency_graph_wo_orphan_operations_wo_labels(render_graphs = render_graphs)
#Generate the different metadata associated with the graphs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment