Version 6 (modified by akinjo, 15 years ago)

--

Creating an example of workflows using DDBJ-KEGG-PDBj

Member: Shigemoto (DDBJ) and Kinjo (PDBj) with some help from the KEGG people.

What we want to do

Finding pathway components (enzymes) that are expected to form physical contacts as judged from homologous protein structures.

In short, find the physical protein-protein interaction networks of homologous pathways in various species.

The procedure

Part I

  1. Pick a pathway of a specific organism, say Glycolysis / Gluconeogenesis pathway of Homo sapiens (human).
  2. Get all the amino acid sequences of that pathway component (c1, c2, ..., cm).

Part II

  1. Run blast for each sequence against UniProt(SwissProt / TrEMBL).
  2. Group the blast results according to biological species (s1, s2, ..., sn).
  3. For each pathway component (ci), pick the top hit from each species.
    • At this step, you have (at most) an m compoents X n species array of protein sequences: Homologous Compoenents Matrix (HCM).

Part III

  1. Pick one column (species) of the HCM (sj) For each component of that column, run blast against PDB sequences.
    • You will have a list of PDBID and Chain ID as a result of this blast search.
  2. If the blast results of two components share the same PDB ID but do not share the same Chain ID, they are judged to be in contact.
    • By regarding each pathway component as a node, the inferred physical contacts between two components correspond to an edge in the network.
  3. Iterate the above two steps for each column of the HCM.
  4. Finally, show the list of inferred PPI of the pathway for each species.

Outline

Here's a pathway of human

Glycolysis pathway of human

After running blast for each pathway component

You will have a list of proteins annotated with species.

protein1 species1 evalue...
protein2 species2 evalue...
protein3 species1 evalue...
protein4 species2 evalue...
protein5 species3 evalue...

Attachments