CloneSet89


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
14220.986stmt_list[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
113179
Bio/PDB/parse_pdb_header.py
214194
Bio/PDB/parse_pdb_header.py
Clone Instance
1
Line Count
13
Source Line
179
Source File
Bio/PDB/parse_pdb_header.py

            tok = tt.split(":") 
            if len(tok)>=2: 
                 ckey = tok[0] 
                 cval = re.sub("\\A\\s*","",tok[1]) 
                 if ckey=="mol_id": 
                      dict["compound"][cval] = {"misc":""} 
                      comp_molid = cval 
                      last_comp_key = "misc" 
                 else: 
                      dict["compound"][comp_molid][ckey] = cval 
                      last_comp_key = ckey 
                 
            else: 
                 dict["compound"][comp_molid][last_comp_key]+=tok[0]+" " 


Clone Instance
2
Line Count
14
Source Line
194
Source File
Bio/PDB/parse_pdb_header.py

            tok = tt.split(":") 
            # print tok
            if len(tok)>=2: 
                 ckey = tok[0] 
                 cval = re.sub("\\A\\s*","",tok[1]) 
                 if ckey=="mol_id": 
                      dict["source"][cval] = {"misc":""} 
                      comp_molid = cval 
                      last_src_key = "misc" 
                 else: 
                      dict["source"][comp_molid][ckey] = cval 
                      last_src_key = ckey 
                 
            else: 
                 dict["source"][comp_molid][last_src_key]+=tok[0]+" " 


Clone AbstractionParameter Count: 2Parameter Bindings

tok = tt.split(":") 
# print tok
if len(tok)>=2:
  ckey = tok[0] 
  cval = re.sub("\\A\\s*","",tok[1]) 
  if ckey=="mol_id":
  
    dict[ [[#variable60803a60]]][cval] = {"misc":""} 
    comp_molid = cval 
     [[#variable60803b20]]= "misc" 
  else:
  
    dict[ [[#variable60803a60]]][comp_molid][ckey] = cval 
     [[#variable60803b20]]= ckey 
  
else:
  dict[ [[#variable60803a60]]][comp_molid][ [[#variable60803b20]]]+=tok[0]+" " 
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#60803a60]]
"source" 
12[[#60803a60]]
"compound" 
21[[#60803b20]]
last_src_key 
22[[#60803b20]]
last_comp_key