Changes between Version 13 and Version 14 of DDBJ-KEGG-PDBj
- Timestamp:
- 2009/03/18 09:59:44 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DDBJ-KEGG-PDBj
v13 v14 82 82 {{{ 83 83 for i = 1 to M 84 run blast (protein(i,j) against PDB 84 result(i) <- run blast protein(i,j) against PDB 85 86 aset := () // empty set. 87 for 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 85 92 }}} 86 93