File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
workflow/rules/evaluation/graph_plots Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 4444 wrapped = [line [i :i + 25 ] for i in range (0 , len (line ), 25 )]
4545 wrapped_lines .extend (wrapped )
4646 wrapped_alg_string = "\n " .join (wrapped_lines )
47- type = snakemake .params ["graph_type" ]
48- ylabel_text = f"Algorithm:\n \n { wrapped_alg_string } \n \n Graph type: { type } "
47+ #type = snakemake.params["graph_type"]
48+ #ylabel_text = f"Algorithm:\n\n{wrapped_alg_string}\n\nGraph type: {type}"
49+ ylabel_text = f"Algorithm:\n \n { wrapped_alg_string } "
4950 plt .ylabel (ylabel_text , rotation = "horizontal" ,
5051 fontsize = 6 , ha = "right" , va = "center" )
5152 plt .tight_layout ()
Original file line number Diff line number Diff line change 3131 wrapped = [line [i :i + 25 ] for i in range (0 , len (line ), 25 )]
3232 wrapped_lines .extend (wrapped )
3333 wrapped_alg_string = "\n " .join (wrapped_lines )
34- type = snakemake .params ["graph_type" ]
35- ylabel_text = f"Algorithm:\n \n { wrapped_alg_string } \n \n Graph type: { type } "
34+ #type = snakemake.params["graph_type"]
35+ #ylabel_text = f"Algorithm:\n\n{wrapped_alg_string}\n\nGraph type: {type}"
36+ ylabel_text = f"Algorithm:\n \n { wrapped_alg_string } "
3637 plt .ylabel (ylabel_text , rotation = "horizontal" ,
3738 fontsize = 6 , ha = "right" , va = "center" )
3839 plt .tight_layout ()
You can’t perform that action at this time.
0 commit comments