CloneSet79


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
16201.000stmt_list[6]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
116487
Bio/SwissProt/__init__.py
216796
Bio/SwissProt/SProt.py
Clone Instance
1
Line Count
16
Source Line
487
Source File
Bio/SwissProt/__init__.py

    line = line[5: ]   # get rid of junk in front
    name = line[0:8].rstrip( ) 
    try :
        
        from_res = int(line[9:15]) 
    except ValueError: 
         from_res = line[9:15].lstrip( ) 
    try :
        
        to_res = int(line[16:22]) 
    except ValueError: 
         to_res = line[16:22].lstrip( ) 
    description = line[29:70].rstrip( ) 
    #if there is a feature_id (FTId), store it away
    if line[29:35]=="/FTId=": 
        ft_id = line[35:70].rstrip( )[ : -1] 
    else: 
         ft_id = "" 


Clone Instance
2
Line Count
16
Source Line
796
Source File
Bio/SwissProt/SProt.py

        line = line[5: ]   # get rid of junk in front
        name = line[0:8].rstrip( ) 
        try :
            
            from_res = int(line[9:15]) 
        except ValueError: 
             from_res = line[9:15].lstrip( ) 
        try :
            
            to_res = int(line[16:22]) 
        except ValueError: 
             to_res = line[16:22].lstrip( ) 
        description = line[29:70].rstrip( ) 
        #if there is a feature_id (FTId), store it away
        if line[29:35]=="/FTId=": 
            ft_id = line[35:70].rstrip( )[ : -1] 
        else: 
             ft_id = "" 


Clone AbstractionParameter Count: 0Parameter Bindings

line = line[5: ] # get rid of junk in front
name = line[0:8].rstrip( ) 
try :
  from_res = int(line[9:15]) 
except ValueError:
  from_res = line[9:15].lstrip( ) 
try :
  to_res = int(line[16:22]) 
except ValueError:
  to_res = line[16:22].lstrip( ) 
description = line[29:70].rstrip( ) 
#if there is a feature_id (FTId), store it away
if line[29:35]=="/FTId=":
  ft_id = line[35:70].rstrip( )[ : -1] 
else:
  ft_id = "" 
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None