CloneSet231


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
9220.976compound_stmt
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
19224
Bio/Motif/_Motif.py
28263
Bio/Motif/_Motif.py
Clone Instance
1
Line Count
9
Source Line
224
Source File
Bio/Motif/_Motif.py

        for offset in range( -self.length+1,motif.length):
                                                         
            if offset<0: 
                 p = self.dist_pearson_at(motif, -offset) 
            else: #offset>=0
                p = motif.dist_pearson_at(self,offset) 

            if max_p<p: 
                 max_p = p 
                 max_o = -offset 
            


Clone Instance
2
Line Count
8
Source Line
263
Source File
Bio/Motif/_Motif.py

        for offset in range( -self.length+1,other.length):
                                                         
            if offset<0: 
                 p = self.dist_product_at(other, -offset) 
            else: #offset>=0
                p = other.dist_product_at(self,offset) 
            if max_p<p: 
                 max_p = p 
                 max_o = -offset 
            


Clone AbstractionParameter Count: 2Parameter Bindings

for offset in range( -self.length+1, [[#variable761f4600]].length):
  if offset<0:
  
    p = self. [[#variable1781a440]]( [[#variable761f4600]], -offset) 
  else: #offset>=0
    p = [[#variable761f4600]]. [[#variable1781a440]](self,offset) 
  if max_p<p:
  
    max_p = p 
    max_o = -offset 
  
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#761f4600]]
motif 
12[[#761f4600]]
other 
21[[#1781a440]]
dist_pearson_at 
22[[#1781a440]]
dist_product_at