Changes between Version 16 and Version 17 of PDBj-DDBJ-KEGG
- Timestamp:
- 2008/02/13 10:00:51 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PDBj-DDBJ-KEGG
v16 v17 36 36 Let's call this "funcanot" workflow. 37 37 38 let hits = BLAST_DAD(fasta) 38 let hits = BLAST_DAD(fasta): @DDBJ 39 39 if func_known(hits) then 40 send_to_KEGG( hits ) 40 send_to_KEGG( hits ) ;; annotation obtained from KEGG 41 41 else 42 let new_hits = BLAST_PDBj(fasta) 42 let new_hits = BLAST_PDBj(fasta): @DDBJ 43 43 if exists(new_hits) then 44 44 foreach hit in new_hits do 45 let shits = struct_navi(hit) 45 let shits = struct_navi(hit) :@PDBj 46 46 if exists(shits) then 47 send_to_KEGG( shits ) 47 send_to_KEGG( shits );; annotation obtained from KEGG 48 48 done 49 49 … … 62 62 finally got to real work.... (14:00; 2008-02-12) 63 63 Prototyping using Taverna. 64 * Taverna can be used with REST-based WS? 64 * Taverna can be used with REST-based WS? -> YES! 65 65 66 66 67