Changes between Version 13 and Version 14 of DDBJ-KEGG-PDBj

Show
Ignore:
Timestamp:
2009/03/18 09:59:44 (15 years ago)
Author:
akinjo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DDBJ-KEGG-PDBj

    v13 v14  
    8282{{{ 
    8383for i = 1 to M 
    84     run blast (protein(i,j) against PDB 
     84    result(i) <- run blast protein(i,j) against PDB 
     85 
     86aset := () // empty set. 
     87for i1 = 1 to M-1 
     88  for i2 = i1 + 1 to M 
     89     if result(i1).pdbid = result(i2).pdbid and result(i1).chainID <> result(i2).chainID then 
     90        push (i1,i2,result(i1).pdbid)  aset 
     91 
    8592}}} 
    8693