CloneSet263


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
5201.000compound_stmt
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1589
Bio/AlignAce/Motif.py
25170
Bio/Motif/_Motif.py
Clone Instance
1
Line Count
5
Source Line
89
Source File
Bio/AlignAce/Motif.py

        for pos in xrange(0,len(sequence)-self.length+1): 
             for instance in self.instances: 
                  if instance.tostring( )==sequence[pos:pos+self.length].tostring( ):
                                                                                   
                      yield (pos,instance) 
                      break # no other instance will fit (we don't want to return multiple hits)
                  


Clone Instance
2
Line Count
5
Source Line
170
Source File
Bio/Motif/_Motif.py

        for pos in xrange(0,len(sequence)-self.length+1): 
             for instance in self.instances: 
                  if instance.tostring( )==sequence[pos:pos+self.length].tostring( ):
                                                                                   
                      yield (pos,instance) 
                      break # no other instance will fit (we don't want to return multiple hits)
                  


Clone AbstractionParameter Count: 0Parameter Bindings

for pos in xrange(0,len(sequence)-self.length+1):
  for instance in self.instances:
  
    if instance.tostring( )==sequence[pos:pos+self.length].tostring( ):
    
      yield (pos,instance) 
      break # no other instance will fit (we don't want to return multiple hits)
    
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None