KarrLab/wc_rules

View on GitHub
wc_rules/graph/vis.py

Summary

Maintainability
A
2 hrs
Test Coverage

Function visualize_exprgraph has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

def visualize_exprgraph(g,asdict=False):
    nodes,edges = [],[]
    for idx,node in g.iter_nodes():
        label = node.serialize_for_vis() if isinstance(node,ExprBase) else node.id
        nodes.append(visualize_node(node=node,idx=node.id,label=label))
Severity: Minor
Found in wc_rules/graph/vis.py - About 55 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function visualize_node has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

def visualize_node(node,idx,label,size=20,font={'size':20,'face':'arial'}):
Severity: Minor
Found in wc_rules/graph/vis.py - About 35 mins to fix

    Function visualize_graph_container has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

    def visualize_graph_container(g,asdict=False):
        nodes,edges = [],[]
        for idx,node in g.iter_nodes():
            classname = node.__class__.__name__
            size = 20
    Severity: Minor
    Found in wc_rules/graph/vis.py - About 35 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    There are no issues that match your filters.

    Category
    Status