Forced-Alignment-and-Vowel-Extraction/new-fave

View on GitHub

Showing 20 of 20 total issues

File vowel_measurement.py has 872 lines of code (exceeds 250 allowed). Consider refactoring.
Open

"""
This module contains classes to represent vowel measurements and their
aggregations at different levels.

```{mermaid}
Severity: Major
Found in src/new_fave/measurements/vowel_measurement.py - About 2 days to fix

    File extract.py has 395 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    from new_fave import fave_audio_textgrid,\
        fave_corpus,\
        fave_subcorpora,\
        write_data
    from fasttrackpy.patterns.just_audio import create_audio_checker
    Severity: Minor
    Found in src/new_fave/extract.py - About 5 hrs to fix

      Function mark_overlaps has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
      Open

      def mark_overlaps(
              atg: AlignedTextGrid
      ):
          """
          For all Phone intervals in a data frame, 
      Severity: Minor
      Found in src/new_fave/utils/textgrid.py - About 2 hrs 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 fave_subcorpora has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
      Open

      def fave_subcorpora(
          subcorpora_glob: str|Path,
          speakers: int|list[int]|str|Path = 0,
          speakers_glob: str = None,
          include_overlaps: bool = True,    
      Severity: Minor
      Found in src/new_fave/patterns/fave_subcorpora.py - About 2 hrs 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 fave_corpus has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
      Open

      def fave_corpus(
          corpus_path: str|Path,
          speakers: int|list[int]|str|Path = 0,
          include_overlaps: bool = True,
          recode_rules: str|None = None,
      Severity: Minor
      Found in src/new_fave/patterns/fave_corpus.py - About 2 hrs 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 audio_textgrid has 12 arguments (exceeds 4 allowed). Consider refactoring.
      Open

      def audio_textgrid(
      Severity: Major
      Found in src/new_fave/extract.py - About 1 hr to fix

        Function write_data has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
        Open

        def write_data(
            vowel_spaces: SpeakerCollection,
            destination:str|Path = Path("."),
            which: Literal["all"] | 
                list[Literal[
        Severity: Minor
        Found in src/new_fave/patterns/writers.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 corpus has 11 arguments (exceeds 4 allowed). Consider refactoring.
        Open

        def corpus(
        Severity: Major
        Found in src/new_fave/extract.py - About 1 hr to fix

          Function subcorpora has 11 arguments (exceeds 4 allowed). Consider refactoring.
          Open

          def subcorpora(
          Severity: Major
          Found in src/new_fave/extract.py - About 1 hr to fix

            Function corpus has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
            Open

            def corpus(
                corpus_path: str|Path,
                speakers: int|list[int]|str|Path,
                exclude_overlaps: bool,
                recode_rules: str|None,
            Severity: Minor
            Found in src/new_fave/extract.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 __init__ has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
            Open

                def __init__(self, arg: dict|list|pl.DataFrame|Path = None):
                    self.df = None
                    if type(arg) is str:
                        arg = Path(arg)
                    if isinstance(arg, dict):
            Severity: Minor
            Found in src/new_fave/speaker/speaker.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 fave_audio_textgrid has 9 arguments (exceeds 4 allowed). Consider refactoring.
            Open

            def fave_audio_textgrid(
            Severity: Major
            Found in src/new_fave/patterns/fave_audio_textgrid.py - About 1 hr to fix

              Function fave_subcorpora has 9 arguments (exceeds 4 allowed). Consider refactoring.
              Open

              def fave_subcorpora(
              Severity: Major
              Found in src/new_fave/patterns/fave_subcorpora.py - About 1 hr to fix

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

                def subcorpora(
                    subcorpora: list[str|Path],
                    speakers: int|list[int]|str|Path,
                    exclude_overlaps: bool,
                    recode_rules: str|None,
                Severity: Minor
                Found in src/new_fave/extract.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 fave_subcorpora has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                def fave_subcorpora(
                    subcorpora_glob: str|Path,
                    speakers: int|list[int]|str|Path = 0,
                    speakers_glob: str = None,
                    include_overlaps: bool = True,    
                Severity: Minor
                Found in src/new_fave/patterns/fave_subcorpora.py - About 1 hr to fix

                  Function fave_corpus has 8 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                  def fave_corpus(
                  Severity: Major
                  Found in src/new_fave/patterns/fave_corpus.py - About 1 hr to fix

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

                    def check_outputs(
                        stem: Path|str,
                        destination: Path|str,
                        which: Literal["all"] | 
                            list[Literal[
                    Severity: Minor
                    Found in src/new_fave/patterns/writers.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 set_prop has 5 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                    def set_prop(
                    Severity: Minor
                    Found in src/new_fave/measurements/decorators.py - About 35 mins to fix

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

                      def optimize_one_measure(
                              vowel_measurement: VowelMeasurement,
                               optim_params: list[
                                   Literal[
                                       "param_speaker_global",
                      Severity: Minor
                      Found in src/new_fave/optimize/optimize.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

                      Function audio_textgrid has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                      def audio_textgrid(
                          audio_path: str|Path,
                          textgrid_path: str|Path,
                          speakers: int|list[int]|str|Path,
                          exclude_overlaps: bool,
                      Severity: Minor
                      Found in src/new_fave/extract.py - About 25 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

                      Severity
                      Category
                      Status
                      Source
                      Language