iteal/wormpose

View on GitHub
wormpose/commands/postprocess_results.py

Summary

Maintainability
B
4 hrs
Test Coverage

File postprocess_results.py has 264 lines of code (exceeds 250 allowed). Consider refactoring.
Open

#!/usr/bin/env python

"""
Post-processes WormPose results by interpolating over missing frames and smoothing
"""
Severity: Minor
Found in wormpose/commands/postprocess_results.py - About 2 hrs to fix

    Function post_process has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

    def post_process(dataset_path: str, **kwargs):
        """
        Process the raw network results with interpolation and smoothing
    
        :param dataset_path: Root path of the dataset containing videos of worm
    Severity: Minor
    Found in wormpose/commands/postprocess_results.py - About 1 hr 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 _parse_arguments has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

    def _parse_arguments(dataset_path: str, kwargs: dict):
        if kwargs.get("work_dir") is None:
            kwargs["work_dir"] = default_paths.WORK_DIR
        if kwargs.get("max_gap_size") is None:
            kwargs["max_gap_size"] = 4
    Severity: Minor
    Found in wormpose/commands/postprocess_results.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

    There are no issues that match your filters.

    Category
    Status