CloneSet343


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
16210.993stmt_list[6]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
116649
Bio/Graphics/GenomeDiagram/_CircularDrawer.py
216464
Bio/Graphics/GenomeDiagram/_LinearDrawer.py
Clone Instance
1
Line Count
16
Source Line
649
Source File
Bio/Graphics/GenomeDiagram/_CircularDrawer.py

        """ draw_scale(self, track) -> ([element, element,...], [element, element,...])

            o track     Track object

            Returns a tuple of (list of elements in the scale, list of labels
            in the scale)
        """ 
        scale_elements = [ ]    # holds axes and ticks
        scale_labels = [ ]      # holds labels

        if not track.scale:     # no scale required, exit early
            return [ ],[ ] 


            # Get track locations
        btm,ctr,top =   self.track_radii[self.current_track_level] 
        trackheight = (top-ctr) 


Clone Instance
2
Line Count
16
Source Line
464
Source File
Bio/Graphics/GenomeDiagram/_LinearDrawer.py

        """ draw_scale(self, track) -> ([element, element,...], [element, element,...])

            o track     Track object

            Returns a tuple of (list of elements in the scale, list of labels
            in the scale)
        """ 
        scale_elements = [ ]    # Holds axes and ticks
        scale_labels = [ ]      # Holds labels

        if not track.scale:     # No scale required, exit early
            return [ ],[ ] 


            # Get track location
        btm,ctr,top =   self.track_offsets[self.current_track_level] 
        trackheight = (top-ctr) 


Clone AbstractionParameter Count: 1Parameter Bindings

""" draw_scale(self, track) -> ([element, element,...], [element, element,...])

            o track     Track object

            Returns a tuple of (list of elements in the scale, list of labels
            in the scale)
        """ 
scale_elements = [ ] # holds axes and ticks # Holds axes and ticks
scale_labels = [ ] # holds labels # Holds labels
if not track.scale: # no scale required, exit early # No scale required, exit early
  return [ ],[ ] 
  # Get track locations
  # Get track location
btm,ctr,top = self. [[#variable62194580]][self.current_track_level] 
trackheight = (top-ctr) 
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#62194580]]
track_radii 
12[[#62194580]]
track_offsets