KarrLab/wc_kb

View on GitHub
wc_kb/core.py

Summary

Maintainability
F
1 wk
Test Coverage
A
96%

File core.py has 1624 lines of code (exceeds 250 allowed). Consider refactoring.
Open

""" Core schema to represent a knowledge base to build models

:Author: Balazs Szigeti <balazs.szigeti@mssm.edu>
:Author: Jonathan Karr <karr@mssm.edu>
:Author: Bilal Shaikh  <bilal.shaikh@columbia.edu>
Severity: Major
Found in wc_kb/core.py - About 4 days to fix

    Function deserialize_side has a Cognitive Complexity of 32 (exceeds 5 allowed). Consider refactoring.
    Open

        def deserialize_side(self, direction, value, objects, global_comp):
            """ Deserialize the LHS or RHS of a reaction equation
            Args:
                direction (:obj:`float`): -1. indicates LHS, +1. indicates RHS
                value (:obj:`str`): String representation
    Severity: Minor
    Found in wc_kb/core.py - About 4 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 deserialize has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
    Open

        def deserialize(cls, attribute, value, objects):
            """ Deserialize value
    
            Args:
                attribute (:obj:`Attribute`): attribute
    Severity: Minor
    Found in wc_kb/core.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 deserialize has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
    Open

        def deserialize(cls, attribute, value, objects):
            """ Deserialize value
    
            Args:
                attribute (:obj:`Attribute`): attribute
    Severity: Minor
    Found in wc_kb/core.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 deserialize has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
    Open

        def deserialize(self, value, objects, decoded=None):
            """ Deserialize value
    
            Args:
                value (:obj:`str`): String representation
    Severity: Minor
    Found in wc_kb/core.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 deserialize has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
    Open

        def deserialize(cls, attribute, value, objects, compartment=None):
            """ Deserialize value
    
            Args:
                attribute (:obj:`Attribute`): attribute
    Severity: Minor
    Found in wc_kb/core.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 get_direction has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

        def get_direction(self):
            """ Returns the direction of the polymer feature defind by its strand and start/end coordinate
    
                Returns:
                    :obj:`PolymerDirection`: direction (in ['forward', 'reverse'])
    Severity: Minor
    Found in wc_kb/core.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 serialize has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

        def serialize(self, participants, encoded=None):
            """ Serialize related object
    
            Args:
                participants (:obj:`list` of :obj:`SpeciesCoefficient`): Python representation of reaction participants
    Severity: Minor
    Found in wc_kb/core.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 deserialize has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

        def deserialize(self, value, objects, decoded=None):
            """ Deserialize value
            Args:
                value (:obj:`str`): String representation
                objects (:obj:`dict`): dictionary of objects, grouped by model
    Severity: Minor
    Found in wc_kb/core.py - About 45 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 deserialize has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        def deserialize(cls, attribute, value, objects, compartment=None):
    Severity: Minor
    Found in wc_kb/core.py - About 35 mins to fix

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

          def calc_structure(self, ph=7.4, major_tautomer=False, keep_hydrogens=False, dearomatize=False):
      Severity: Minor
      Found in wc_kb/core.py - About 35 mins to fix

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

            def _serialize(species, coefficient, show_compartment=True, show_coefficient_sign=True):
                """ Serialize values
        
                Args:
                    species (:obj:`Species`): species
        Severity: Minor
        Found in wc_kb/core.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 _append_metadata_entries has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            def _append_metadata_entries(self, key, metadataObjs):
                """ Appends wc_kb.core.Reference / wc_kb.core.DatabaseReference / wc_kb.core.Comments objects
                    to metadataObjs list
        
                    Input:
        Severity: Minor
        Found in wc_kb/core.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 get_subseq has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            def get_subseq(self, start, end, strand=PolymerStrand.positive):
                """ Get a subsequence
        
                Args:
                    start (:obj:`int`): start coordinate (1-indexed)
        Severity: Minor
        Found in wc_kb/core.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

        Avoid too many return statements within this function.
        Open

                    return float(self.value)
        Severity: Major
        Found in wc_kb/core.py - About 30 mins to fix

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

              def get_value(self):
                  """ SpeciesType property values are stored as strings, this function returns the value as the correct type. """
          
                  if self.value == '':
                      return None
          Severity: Minor
          Found in wc_kb/core.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

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

              def _parse_EviNExperiment(self, metadataObjs):
                  if hasattr(self, 'evidence'):
                      for evidence in self.evidence:
                          metadataObjs = evidence._append_metadata_entries(key=Evidence, metadataObjs=metadataObjs)
                          if evidence.experiment is not None:
          Severity: Minor
          Found in wc_kb/core.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

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

              def gen_id(species_type, compartment):
                  """ Generate a Species' primary identifier
          
                  Args:
                      species_type (:obj:`object`): a `SpeciesType`, or its id
          Severity: Minor
          Found in wc_kb/core.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

          There are no issues that match your filters.

          Category
          Status