diff --git a/frontend-js/src/main/js/gui/leftPanel/GuiUtils.js b/frontend-js/src/main/js/gui/leftPanel/GuiUtils.js
index 50351e7bd015f553fd88075fe26cda24c2d7dda8..a1dd85fdcdb43faf76515cd8b990469940a85d01 100644
--- a/frontend-js/src/main/js/gui/leftPanel/GuiUtils.js
+++ b/frontend-js/src/main/js/gui/leftPanel/GuiUtils.js
@@ -65,21 +65,23 @@ GuiUtils.prototype.createLink = function(url, name) {
   return link;
 };
 
-GuiUtils.prototype.createAnnotationLink = function(element, showType) {
+GuiUtils.prototype.createAnnotationLink = function(annotation, showType) {
   var name, type, hint;
-  if (element.title !== undefined) {
-    hint = element.title + " " + element.authors.join(", ") + ", " + element.year + ", " + element.journal;
+  var article = annotation.getArticle();
+  if (article !== undefined) {
+    
+    hint = article.getTitle()+ " " + article.getAuthors().join(", ") + ", " + article.getYear()+ ", " + article.getJournal();
     type = "PUBMED";
-    name = element.id;
+    name = article.getId();
   } else {
-    name = element.name;
-    type = element.type;
+    name = annotation.getResource();
+    type = annotation.getType();
   }
   var link;
   if (showType) {
-    link = this.createLink(element.link, type + " (" + name + ")");
+    link = this.createLink(annotation.getLink(), type + " (" + name + ")");
   } else {
-    link = this.createLink(element.link, name);
+    link = this.createLink(annotation.getLink(), name);
   }
   if (hint !== undefined) {
     var div = document.createElement("div");
diff --git a/frontend-js/src/main/js/map/data/Alias.js b/frontend-js/src/main/js/map/data/Alias.js
index 6c2ab7e9a3b44d36d3f48d14ab9ba2c48154cc66..fd27c126308cde818a123217b4d2819136e7ee84 100644
--- a/frontend-js/src/main/js/map/data/Alias.js
+++ b/frontend-js/src/main/js/map/data/Alias.js
@@ -46,7 +46,7 @@ Alias.prototype.constructor = Alias;
  */
 Alias.prototype.update = function(javaObject) {
   if (javaObject instanceof Alias) {
-    if (javaObject.getName()=== undefined) {
+    if (javaObject.getName() === undefined) {
       return;
     }
     this.setDescription(javaObject.getDescription());
diff --git a/frontend-js/src/main/js/map/data/Annotation.js b/frontend-js/src/main/js/map/data/Annotation.js
new file mode 100644
index 0000000000000000000000000000000000000000..f75b3e2bbca62e7ce63a6aa7c374ea43bed14b3b
--- /dev/null
+++ b/frontend-js/src/main/js/map/data/Annotation.js
@@ -0,0 +1,73 @@
+"use strict";
+
+var Article = require("./Article");
+
+var logger = require('../../logger');
+
+function Annotation(javaObject) {
+  if (javaObject instanceof Annotation) {
+    this.setLink(javaObject.getLink());
+    this.setId(javaObject.getId());
+    if (javaObject.getArticle() !== undefined) {
+      this.setArticle(new Article(javaObject.getArticle()));
+    }
+    this.setType(javaObject.getType());
+    this.setResource(javaObject.getResource());
+  } else {
+    this.setLink(javaObject.link);
+    this.setId(javaObject.id);
+    if (javaObject.article !== undefined) {
+      this.setArticle(new Article(javaObject.article));
+    }
+    this.setType(javaObject.type);
+    this.setResource(javaObject.resource);
+  }
+}
+
+Annotation.prototype.setLink = function(link) {
+  this._link = link;
+};
+
+Annotation.prototype.getLink = function() {
+  return this._link;
+};
+
+Annotation.prototype.setId = function(id) {
+  this._id = id;
+};
+
+Annotation.prototype.getId = function() {
+  return this._id;
+};
+
+Annotation.prototype.setResource = function(resource) {
+  if (resource === undefined) {
+    throw new Error("resource cannot be undefined");
+  }
+  this._resource = resource;
+};
+
+Annotation.prototype.getResource = function() {
+  return this._resource;
+};
+
+Annotation.prototype.setType = function(type) {
+  if (type === undefined) {
+    throw new Error("type cannot be undefined");
+  }
+  this._type = type;
+};
+
+Annotation.prototype.getType = function() {
+  return this._type;
+};
+
+Annotation.prototype.setArticle = function(article) {
+  this._article = article;
+};
+
+Annotation.prototype.getArticle = function() {
+  return this._article;
+};
+
+module.exports = Annotation;
diff --git a/frontend-js/src/main/js/map/data/Article.js b/frontend-js/src/main/js/map/data/Article.js
new file mode 100644
index 0000000000000000000000000000000000000000..5b2e64734a6edd8a811c1766e3b66800291d6f94
--- /dev/null
+++ b/frontend-js/src/main/js/map/data/Article.js
@@ -0,0 +1,82 @@
+"use strict";
+
+function Article(javaObject) {
+  if (javaObject instanceof Article) {
+    this.setTitle(javaObject.getTitle());
+    this.setAuthors(javaObject.getAuthors());
+    this.setJournal(javaObject.getJournal());
+    this.setYear(javaObject.getYear());
+    this.setLink(javaObject.getLink());
+    this.setCitationCount(javaObject.getCitationCount());
+    this.setId(javaObject.getId());
+  } else {
+    this.setTitle(javaObject.title);
+    this.setAuthors(javaObject.authors);
+    this.setJournal(javaObject.journal);
+    this.setYear(javaObject.year);
+    this.setLink(javaObject.link);
+    this.setCitationCount(javaObject.citationCount);
+    this.setId(javaObject.id);
+  }
+}
+
+Article.prototype.setTitle = function(title) {
+  this._title = title;
+};
+
+Article.prototype.getTitle = function() {
+  return this._title;
+};
+
+Article.prototype.setId = function(id) {
+  this._id = id;
+};
+
+Article.prototype.getAuthors = function() {
+  return this._authors;
+};
+Article.prototype.setAuthors = function(authors) {
+  this._authors = authors;
+};
+
+Article.prototype.setId = function(id) {
+  this._id = id;
+};
+
+Article.prototype.getId = function() {
+  return this._id;
+};
+
+Article.prototype.setJournal = function(journal) {
+  this._journal = journal;
+};
+
+Article.prototype.getJournal = function() {
+  return this._journal;
+};
+
+Article.prototype.setYear = function(year) {
+  this._year = year;
+};
+
+Article.prototype.getYear = function() {
+  return this._year;
+};
+
+Article.prototype.setLink = function(link) {
+  this._link = link;
+};
+
+Article.prototype.getLink = function() {
+  return this._link;
+};
+
+Article.prototype.setCitationCount = function(citationCount) {
+  this._citationCount = citationCount;
+};
+
+Article.prototype.getCitationCount = function() {
+  return this._citationCount;
+};
+
+module.exports = Article;
diff --git a/frontend-js/src/main/js/map/data/BioEntity.js b/frontend-js/src/main/js/map/data/BioEntity.js
index 086adedcb8c55bf3fbe4e8d723fb324ce9e4933a..f5e74463f7cef6688c1b7dd7512fd90411113dcf 100644
--- a/frontend-js/src/main/js/map/data/BioEntity.js
+++ b/frontend-js/src/main/js/map/data/BioEntity.js
@@ -1,5 +1,7 @@
 "use strict";
 
+var Annotation = require("./Annotation");
+
 /**
  * Class representing BioEntity.
  * 
@@ -125,7 +127,13 @@ BioEntity.prototype.getReferences = function() {
 };
 
 BioEntity.prototype.setReferences = function(references) {
-  this.references = references;
+  if (references=== undefined) {
+    throw new Error("references must be defined");
+  }
+  this.references = [];
+  for (var i = 0; i < references.length; i++) {
+    this.references.push(new Annotation(references[i]));
+  }
 };
 
 module.exports = BioEntity;
diff --git a/frontend-js/src/main/js/map/data/Chemical.js b/frontend-js/src/main/js/map/data/Chemical.js
index 8c4369ff01e4e45dab62b9853a939b58b5f2cede..de0fe4ec011b2f264f9f2ee8158b9596de9509fe 100644
--- a/frontend-js/src/main/js/map/data/Chemical.js
+++ b/frontend-js/src/main/js/map/data/Chemical.js
@@ -1,5 +1,6 @@
 "use strict";
 
+var Annotation = require("./Annotation");
 var Target = require("./Target");
 
 function Chemical(javaObject) {
@@ -25,7 +26,10 @@ Chemical.prototype.getDirectEvidence = function() {
 };
 
 Chemical.prototype.setDirectEvidenceReferences = function(directeEvidenceReferences) {
-  this._directeEvidenceReferences = directeEvidenceReferences;
+  this._directeEvidenceReferences = [];
+  for (var i = 0; i < directeEvidenceReferences.length; i++) {
+    this._directeEvidenceReferences.push(new Annotation(directeEvidenceReferences[i]));
+  }
 };
 
 Chemical.prototype.getDirectEvidenceReferences = function() {
@@ -41,7 +45,10 @@ Chemical.prototype.getBrandNames = function() {
 };
 
 Chemical.prototype.setReferences = function(references) {
-  this._references = references;
+  this._references = [];
+  for (var i = 0; i < references.length; i++) {
+    this._references.push(new Annotation(references[i]));
+  }
 };
 
 Chemical.prototype.getReferences = function() {
diff --git a/frontend-js/src/main/js/map/data/Drug.js b/frontend-js/src/main/js/map/data/Drug.js
index 789a253bbfa5e507f1d635df707202d7c25c37f7..9391dbc8a3f1e403b50ff4ca615919c78907b3f7 100644
--- a/frontend-js/src/main/js/map/data/Drug.js
+++ b/frontend-js/src/main/js/map/data/Drug.js
@@ -1,5 +1,6 @@
 "use strict";
 
+var Annotation = require("./Annotation");
 var Target = require("./Target");
 
 function Drug(javaObject) {
@@ -24,7 +25,10 @@ Drug.prototype.getBrandNames = function() {
 };
 
 Drug.prototype.setReferences = function(references) {
-  this._references = references;
+  this._references = [];
+  for (var i = 0; i < references.length; i++) {
+    this._references.push(new Annotation(references[i]));
+  }
 };
 
 Drug.prototype.getReferences = function() {
diff --git a/frontend-js/src/main/js/map/data/Reaction.js b/frontend-js/src/main/js/map/data/Reaction.js
index bb576b7fb6d51478716a8214477bba4792aef850..be8337bf9c5f409e7fe891132295608759aaad72 100644
--- a/frontend-js/src/main/js/map/data/Reaction.js
+++ b/frontend-js/src/main/js/map/data/Reaction.js
@@ -3,6 +3,8 @@
 var Alias = require('./Alias');
 var BioEntity = require("./BioEntity");
 
+var logger = require('../../logger');
+
 /**
  * Class representing reaction data.
  * 
diff --git a/frontend-js/src/main/js/map/data/Target.js b/frontend-js/src/main/js/map/data/Target.js
index 7bacfdac526ba13f89c43e35aa416013c67a832c..d35c1731eb30095f3743171b7732f7e2a15c0cd0 100644
--- a/frontend-js/src/main/js/map/data/Target.js
+++ b/frontend-js/src/main/js/map/data/Target.js
@@ -2,6 +2,7 @@
 
 /* exported logger */
 
+var Annotation = require("./Annotation");
 var IdentifiedElement = require('./IdentifiedElement');
 
 var logger = require('../../logger');
@@ -26,7 +27,10 @@ Target.prototype.getTargetElements = function() {
 };
 
 Target.prototype.setTargetParticipants = function(targetParticipants) {
-  this._targetParticipants = targetParticipants;
+  this._targetParticipants = [];
+  for (var i = 0; i < targetParticipants.length; i++) {
+    this._targetParticipants.push(new Annotation(targetParticipants[i]));
+  }
 };
 
 Target.prototype.getTargetParticipants = function() {
@@ -50,7 +54,10 @@ Target.prototype.isVisible = function() {
 };
 
 Target.prototype.setReferences = function(references) {
-  this._references = references;
+  this._references = [];
+  for (var i = 0; i < references.length; i++) {
+    this._references.push(new Annotation(references[i]));
+  }
 };
 
 Target.prototype.getReferences = function() {
diff --git a/frontend-js/src/test/js/gui/leftPanel/AbstractPanel-test.js b/frontend-js/src/test/js/gui/leftPanel/AbstractPanel-test.js
index e1a4b424a40ab90eeec4497d0474d4eb51ef06d7..ce24301e6acd6a802a32ded49e78a55ec581b71e 100644
--- a/frontend-js/src/test/js/gui/leftPanel/AbstractPanel-test.js
+++ b/frontend-js/src/test/js/gui/leftPanel/AbstractPanel-test.js
@@ -52,7 +52,9 @@ describe('AbstractDbPanel', function() {
           id : 329168,
           modelId : 15781,
           type : "ALIAS"
-        } ]
+        } ],
+        references : [],
+        targetParticipants : [],
       });
       var htmlTag = panel.createTargetRow(target, "empty.png");
       assert.ok(htmlTag);
diff --git a/frontend-js/src/test/js/gui/leftPanel/GuiUtils-test.js b/frontend-js/src/test/js/gui/leftPanel/GuiUtils-test.js
index 7b3007088808b2c41f25b4e00998ed4bf6907cc8..67f06072cd1db4bdf4629725e08adea1e2755a5c 100644
--- a/frontend-js/src/test/js/gui/leftPanel/GuiUtils-test.js
+++ b/frontend-js/src/test/js/gui/leftPanel/GuiUtils-test.js
@@ -59,7 +59,8 @@ describe('GuiUtils', function() {
         height : 25.0
       },
       formula : "FORMULA",
-      id : 380217
+      id : 380217,
+      references: [],
     };
     var alias = new Alias(aliasObj);
 
diff --git a/frontend-js/src/test/js/gui/leftPanel/SearchPanel-test.js b/frontend-js/src/test/js/gui/leftPanel/SearchPanel-test.js
index a8c769b2b1ab14f28f65340a399b6bd3b8fd72c1..902f9d748c8543e999a4a6adcf3fc8826fb88be6 100644
--- a/frontend-js/src/test/js/gui/leftPanel/SearchPanel-test.js
+++ b/frontend-js/src/test/js/gui/leftPanel/SearchPanel-test.js
@@ -119,7 +119,8 @@ describe('GenericSearchPanel', function() {
         height : 25.0
       },
       formula : "FORMULA",
-      id : 380217
+      id : 380217,
+      references: [],
     };
     var alias = new Alias(aliasObj);
 
diff --git a/frontend-js/src/test/js/helper.js b/frontend-js/src/test/js/helper.js
index b6219fcdd1f25b9aebb83feb2d04333dbfca52e4..cf10fe386f3580d6899f5d9941a4d8056d68e220 100644
--- a/frontend-js/src/test/js/helper.js
+++ b/frontend-js/src/test/js/helper.js
@@ -166,6 +166,7 @@ Helper.prototype.createAlias = function(map) {
       width : 30.0,
       height : 40.0,
     },
+    references : [],
   });
   if (map !== undefined) {
     map.getModel().addAlias(result);
@@ -253,6 +254,7 @@ Helper.prototype.createReaction = function(map) {
     } ],
     centerPoint : new google.maps.Point(0, 0),
     modelId : mapId,
+    references : [],
   });
   return result;
 };
@@ -340,6 +342,9 @@ Helper.prototype.createAbstractCustomMap = function() {
 };
 
 Helper.prototype.createCustomMap = function(project) {
+  if (project === null) {
+    throw new Error("Project cannot be null");
+  }
   var options = this.createCustomMapOptions(project);
   var result = new CustomMap(options);
   return result;
diff --git a/frontend-js/src/test/js/map/data/MapModel-test.js b/frontend-js/src/test/js/map/data/MapModel-test.js
index 3ef0386767236857b1544b7a3472e33f3a60b173..64d9fd6b8d03f55d884ec5da35fdaabb08220f75 100644
--- a/frontend-js/src/test/js/map/data/MapModel-test.js
+++ b/frontend-js/src/test/js/map/data/MapModel-test.js
@@ -54,6 +54,7 @@ describe('MapModel', function() {
     var aliasObj = {
       idObject : 32,
       modelId : model.id,
+      references : [],
     };
 
     model.addAlias(aliasObj);
@@ -67,6 +68,7 @@ describe('MapModel', function() {
         modelId : model.id,
         name : "testName",
         type : "Protein",
+        references : [],
       };
 
       model.addAlias(aliasObj2);
diff --git a/frontend-js/src/test/js/map/data/Reaction-test.js b/frontend-js/src/test/js/map/data/Reaction-test.js
index dd8a99701eb20a5686acafb956a57e1368a1c4f6..af464fb3ce56a228247c4c1124e4412eeeb62a03 100644
--- a/frontend-js/src/test/js/map/data/Reaction-test.js
+++ b/frontend-js/src/test/js/map/data/Reaction-test.js
@@ -16,15 +16,6 @@ describe('Reaction', function() {
     helper = new Helper();
   });
 
-  it("contructor", function() {
-    return ServerConnector.readFile("testFiles/reaction.json").then(function(content) {
-      var javaObject = JSON.parse(content);
-      var reaction = new Reaction(javaObject);
-      assert.ok(reaction);
-      assert.ok(reaction.getId());
-      assert.ok(reaction.getType());
-    });
-  });
   it("constructor from invalid", function() {
     var javaObject = {
       lines : [ {
diff --git a/frontend-js/src/test/js/map/data/Target-tests.js b/frontend-js/src/test/js/map/data/Target-tests.js
deleted file mode 100644
index 9c3868961bce67a61f5544e0fd055ea4191fb65a..0000000000000000000000000000000000000000
--- a/frontend-js/src/test/js/map/data/Target-tests.js
+++ /dev/null
@@ -1,24 +0,0 @@
-"use strict";
-
-var Target = require('../../../../main/js/map/data/Target');
-
-var logger = require('../../logger');
-
-var chai = require('chai');
-var assert = chai.assert;
-
-describe('Target', function() {
-  it("contructor", function() {
-    return ServerConnector.readFile("testFiles/target.json").then(function(res) {
-      var object = JSON.parse(res);
-      var target = new Target(object);
-      assert.ok(target);
-      assert.equal(target.getTargetElements().length, 1);
-      assert.ok(target.getTargetParticipants().length>0);
-      assert.equal(target.getName(),"D-beta-hydroxybutyrate dehydrogenase, mitochondrial");
-      
-      
-      assert.equal(logger.getWarnings().length, 0);
-    });
-  });
-});
diff --git a/frontend-js/src/test/js/map/overlay/DrugDbOverlay-test.js b/frontend-js/src/test/js/map/overlay/DrugDbOverlay-test.js
index 185716e727777c21d9b48463618e14523b4e773b..2127f16b519f325051e2e2c3a42e3bfd97cc4c2d 100644
--- a/frontend-js/src/test/js/map/overlay/DrugDbOverlay-test.js
+++ b/frontend-js/src/test/js/map/overlay/DrugDbOverlay-test.js
@@ -4,6 +4,7 @@ var Helper = require('../../Helper');
 
 var logger = require('../../logger');
 
+var CustomMap = require('../../../../main/js/map/CustomMap');
 var IdentifiedElement = require('../../../../main/js/map/data/IdentifiedElement');
 var DrugDbOverlay = require('../../../../main/js/map/overlay/DrugDbOverlay');
 
@@ -28,15 +29,20 @@ describe('DrugDbOverlay', function() {
   });
 
   it("searchByQuery", function() {
-    var map = helper.createCustomMap();
-    map.getModel().setId(15781);
-    var searchDb = helper.createDrugDbOverlay(map);
-    return searchDb.searchByQuery("NADH").then(function(drugs) {
+    helper.setUrl("http://test/?id=drug_target_sample");
+    GuiConnector.init();
+
+    var map, searchDb;
+    return ServerConnector.getProject("drug_target_sample").then(function(project) {
+      map = helper.createCustomMap(project);
+      searchDb = helper.createDrugDbOverlay(map);
+      return searchDb.searchByQuery("NADH");
+    }).then(function(drugs) {
       assert.equal(drugs.length, 1);
       assert.equal(searchDb.getQueries().length, 1);
       return searchDb.getElementsByQuery(searchDb.getQueries()[0]);
     }).then(function(elements) {
-      assert.ok(elements.length>1);
+      assert.ok(elements.length > 1);
       return searchDb.getIdentifiedElements();
     }).then(function(elements) {
       assert.equal(elements.length, 1);
diff --git a/frontend-js/src/test/js/map/overlay/MiRnaDbOverlay-test.js b/frontend-js/src/test/js/map/overlay/MiRnaDbOverlay-test.js
index 4e5efe554ec7ec7d4a63705efb671489531fa1ad..4cc3891d08d2686e02b540f563fdf20021a9955f 100644
--- a/frontend-js/src/test/js/map/overlay/MiRnaDbOverlay-test.js
+++ b/frontend-js/src/test/js/map/overlay/MiRnaDbOverlay-test.js
@@ -28,10 +28,12 @@ describe('MiRnaDbOverlay', function() {
   });
 
   it("searchByQuery", function() {
-    var map = helper.createCustomMap();
-    map.getModel().setId(15781);
-    var searchDb = helper.createMiRnaDbOverlay(map);
-    return searchDb.searchByQuery("hsa-miR-125a-3p").then(function(miRnas) {
+    var map, searchDb;
+    return ServerConnector.getProject().then(function(project) {
+      map = helper.createCustomMap(project);
+      searchDb = helper.createMiRnaDbOverlay(map);
+      return searchDb.searchByQuery("hsa-miR-125a-3p");
+    }).then(function(miRnas) {
       assert.equal(miRnas.length, 1);
       assert.equal(searchDb.getQueries().length, 1);
       return searchDb.getElementsByQuery(searchDb.getQueries()[0]);
diff --git a/frontend-js/src/test/js/map/overlay/SearchDbOverlay-test.js b/frontend-js/src/test/js/map/overlay/SearchDbOverlay-test.js
index fb37c49cfc57cb1fab5a065a5da172c669cb4380..a76e68540442a8c2e19490a1f92612a3539471a6 100644
--- a/frontend-js/src/test/js/map/overlay/SearchDbOverlay-test.js
+++ b/frontend-js/src/test/js/map/overlay/SearchDbOverlay-test.js
@@ -105,7 +105,7 @@ describe('SearchDbOverlay', function() {
       return searchDb.searchByCoordinates(searchParams);
     }).then(function(result) {
       // id of the parent
-      assert.equal(result[0].getId(), 329158);
+      assert.equal(result[0].getId(), 329159);
     });
 
   });
diff --git a/frontend-js/src/test/js/mocha-config.js b/frontend-js/src/test/js/mocha-config.js
index 1e001a4b2eac4d80e33812d93cf378d99fc1c5e0..823dfc3ef0c133745daec8488016a6561d25dde0 100644
--- a/frontend-js/src/test/js/mocha-config.js
+++ b/frontend-js/src/test/js/mocha-config.js
@@ -93,9 +93,9 @@ beforeEach(function() {
   ServerConnector.getSessionData(null).setToken("MOCK_TOKEN_ID");
   ServerConnector.getSessionData(null).setLogin("anonymous");
 
-  GuiConnector.init();
 
   new Helper().setUrl("http://test/");
+  GuiConnector.init();
 
   global.testDiv = document.createElement("div");
   global.testDiv.id = "test";
diff --git a/frontend-js/testFiles/apiCalls/projects/drug_target_sample/drugs.search/query=NADH&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/drug_target_sample/drugs.search/query=NADH&token=MOCK_TOKEN_ID&
new file mode 100644
index 0000000000000000000000000000000000000000..17076da4e26437bcf3ecb4a908c4a79d843a9836
--- /dev/null
+++ b/frontend-js/testFiles/apiCalls/projects/drug_target_sample/drugs.search/query=NADH&token=MOCK_TOKEN_ID&
@@ -0,0 +1 @@
+[{"brandNames":[],"references":[{"resource":"DB00157","link":"http://www.drugbank.ca/drugs/DB00157","id":0,"type":null}],"synonyms":["1,4-dihydronicotinamide adenine dinucleotide","DPNH","NAD reduced form","Nicotinamide adenine dinucleotide (reduced)","Nicotinamide-adenine dinucleotide, reduced","Reduced nicotinamide adenine diphosphate","Reduced nicotinamide-adenine dinucleotide"],"name":"NADH","description":"NADH is the reduced form of NAD+, and NAD+ is the oxidized form of NADH, a coenzyme composed of ribosylnicotinamide 5'-diphosphate coupled to adenosine 5'-phosphate by pyrophosphate linkage. It is found widely in nature and is involved in numerous enzymatic reactions in which it serves as an electron carrier by being alternately oxidized (NAD+) and reduced (NADH). It forms NADP with the addition of a phosphate group to the 2' position of the adenosyl nucleotide through an ester linkage. (Dorland, 27th ed)","id":"NADH","targets":[{"targetElements":[{"modelId":20637,"id":436152,"type":"ALIAS"}],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"38961","link":"http://www.ncbi.nlm.nih.gov/pubmed/38961","type":"PUBMED","article":{"title":"Activities of NAD-specific and NADP-specific isocitrate dehydrogenases in rat-liver mitochondria. Studies with D-threo-alpha-methylisocitrate.","authors":["Smith CM"," Plaut GW."],"journal":"European journal of biochemistry","year":1979,"link":"http://www.ncbi.nlm.nih.gov/pubmed/38961","id":"38961","citationCount":11,"stringAuthors":"Smith CM,  Plaut GW."}},{"resource":"8533882","link":"http://www.ncbi.nlm.nih.gov/pubmed/8533882","type":"PUBMED","article":{"title":"A chemiluminescence-flow injection analysis of serum 3-hydroxybutyrate using a bioreactor consisting of 3-hydroxybutyrate dehydrogenase and NADH oxidase.","authors":["Tabata M"," Totani M."],"journal":"Analytical biochemistry","year":1995,"link":"http://www.ncbi.nlm.nih.gov/pubmed/8533882","id":"8533882","citationCount":5,"stringAuthors":"Tabata M,  Totani M."}},{"resource":"2550053","link":"http://www.ncbi.nlm.nih.gov/pubmed/2550053","type":"PUBMED","article":{"title":"Coenzyme binding by 3-hydroxybutyrate dehydrogenase, a lipid-requiring enzyme: lecithin acts as an allosteric modulator to enhance the affinity for coenzyme.","authors":["Rudy B"," Dubois H"," Mink R"," Trommer WE"," McIntyre JO"," Fleischer S."],"journal":"Biochemistry","year":1989,"link":"http://www.ncbi.nlm.nih.gov/pubmed/2550053","id":"2550053","citationCount":3,"stringAuthors":"Rudy B,  Dubois H,  Mink R,  Trommer WE,  McIntyre JO,  Fleischer S."}}],"name":"D-beta-hydroxybutyrate dehydrogenase, mitochondrial","targetParticipants":[{"idObject":0,"name":"BDH1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=BDH1","summary":null,"resource":"BDH1"}]},{"targetElements":[],"references":[{"resource":"17608724","link":"http://www.ncbi.nlm.nih.gov/pubmed/17608724","type":"PUBMED","article":{"title":"Analysis of the NADH-dependent retinaldehyde reductase activity of amphioxus retinol dehydrogenase enzymes enhances our understanding of the evolution of the retinol dehydrogenase family.","authors":["Dalfó D"," Marqués N"," Albalat R."],"journal":"The FEBS journal","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17608724","id":"17608724","citationCount":10,"stringAuthors":"Dalfó D,  Marqués N,  Albalat R."}}],"name":"11-cis retinol dehydrogenase","targetParticipants":[{"idObject":0,"name":"RDH5","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=RDH5","summary":null,"resource":"RDH5"}]},{"targetElements":[],"references":[{"resource":"17463062","link":"http://www.ncbi.nlm.nih.gov/pubmed/17463062","type":"PUBMED","article":{"title":"Corticotropin-releasing hormone receptor type 1 and type 2 mediate differential effects on 15-hydroxy prostaglandin dehydrogenase expression in cultured human chorion trophoblasts.","authors":["Gao L"," He P"," Sha J"," Liu C"," Dai L"," Hui N"," Ni X."],"journal":"Endocrinology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17463062","id":"17463062","citationCount":9,"stringAuthors":"Gao L,  He P,  Sha J,  Liu C,  Dai L,  Hui N,  Ni X."}}],"name":"15-hydroxyprostaglandin dehydrogenase [NAD(+)]","targetParticipants":[{"idObject":0,"name":"HPGD","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=HPGD","summary":null,"resource":"HPGD"}]},{"targetElements":[],"references":[{"resource":"17668068","link":"http://www.ncbi.nlm.nih.gov/pubmed/17668068","type":"PUBMED","article":{"title":"The tricarboxylic acid cycle, an ancient metabolic network with a novel twist.","authors":["Mailloux RJ"," Bériault R"," Lemire J"," Singh R"," Chénier DR"," Hamel RD"," Appanna VD."],"journal":"PloS one","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17668068","id":"17668068","citationCount":89,"stringAuthors":"Mailloux RJ,  Bériault R,  Lemire J,  Singh R,  Chénier DR,  Hamel RD,  Appanna VD."}}],"name":"2-oxoglutarate dehydrogenase, mitochondrial","targetParticipants":[{"idObject":0,"name":"OGDH","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=OGDH","summary":null,"resource":"OGDH"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"3476810","link":"http://www.ncbi.nlm.nih.gov/pubmed/3476810","type":"PUBMED","article":{"title":"Inhibition of testosterone biosynthesis by ethanol: multiple sites and mechanisms in dispersed Leydig cells.","authors":["Widenius TV"," Orava MM"," Vihko RK"," Ylikahri RH"," Eriksson CJ."],"journal":"Journal of steroid biochemistry","year":1987,"link":"http://www.ncbi.nlm.nih.gov/pubmed/3476810","id":"3476810","citationCount":7,"stringAuthors":"Widenius TV,  Orava MM,  Vihko RK,  Ylikahri RH,  Eriksson CJ."}},{"resource":"2362440","link":"http://www.ncbi.nlm.nih.gov/pubmed/2362440","type":"PUBMED","article":{"title":"Affinity alkylation of human placental 3 beta-hydroxy-5-ene-steroid dehydrogenase and steroid 5----4-ene-isomerase by 2 alpha-bromoacetoxyprogesterone: evidence for separate dehydrogenase and isomerase sites on one protein.","authors":["Thomas JL"," Myers RP"," Rosik LO"," Strickler RC."],"journal":"Journal of steroid biochemistry","year":1990,"link":"http://www.ncbi.nlm.nih.gov/pubmed/2362440","id":"2362440","citationCount":4,"stringAuthors":"Thomas JL,  Myers RP,  Rosik LO,  Strickler RC."}},{"resource":"2961942","link":"http://www.ncbi.nlm.nih.gov/pubmed/2961942","type":"PUBMED","article":{"title":"Testicular and adrenal 3 beta-hydroxy-5-ene-steroid dehydrogenase and 5-ene-4-ene isomerase.","authors":["Ishii-Ohba H"," Inano H"," Tamaoki B."],"journal":"Journal of steroid biochemistry","year":1987,"link":"http://www.ncbi.nlm.nih.gov/pubmed/2961942","id":"2961942","citationCount":4,"stringAuthors":"Ishii-Ohba H,  Inano H,  Tamaoki B."}}],"name":"3 beta-hydroxysteroid dehydrogenase/Delta 5-->4-isomerase type 1","targetParticipants":[{"idObject":0,"name":"HSD3B1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=HSD3B1","summary":null,"resource":"HSD3B1"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"239964","link":"http://www.ncbi.nlm.nih.gov/pubmed/239964","type":"PUBMED","article":{"title":"Studies of the human testis. VII. Conversion of pregnenolone to progesterone.","authors":["Fan DF"," Troen P."],"journal":"The Journal of clinical endocrinology and metabolism","year":1975,"link":"http://www.ncbi.nlm.nih.gov/pubmed/239964","id":"239964","citationCount":8,"stringAuthors":"Fan DF,  Troen P."}},{"resource":"3476810","link":"http://www.ncbi.nlm.nih.gov/pubmed/3476810","type":"PUBMED","article":{"title":"Inhibition of testosterone biosynthesis by ethanol: multiple sites and mechanisms in dispersed Leydig cells.","authors":["Widenius TV"," Orava MM"," Vihko RK"," Ylikahri RH"," Eriksson CJ."],"journal":"Journal of steroid biochemistry","year":1987,"link":"http://www.ncbi.nlm.nih.gov/pubmed/3476810","id":"3476810","citationCount":7,"stringAuthors":"Widenius TV,  Orava MM,  Vihko RK,  Ylikahri RH,  Eriksson CJ."}},{"resource":"1911436","link":"http://www.ncbi.nlm.nih.gov/pubmed/1911436","type":"PUBMED","article":{"title":"Analysis of coenzyme binding by human placental 3 beta-hydroxy-5-ene-steroid dehydrogenase and steroid 5----4-ene-isomerase using 5'-[p-(fluorosulfonyl)benzoyl]adenosine, an affinity labeling cofactor analog.","authors":["Thomas JL"," Myers RP"," Strickler RC."],"journal":"The Journal of steroid biochemistry and molecular biology","year":1991,"link":"http://www.ncbi.nlm.nih.gov/pubmed/1911436","id":"1911436","citationCount":0,"stringAuthors":"Thomas JL,  Myers RP,  Strickler RC."}}],"name":"3 beta-hydroxysteroid dehydrogenase/Delta 5-->4-isomerase type 2","targetParticipants":[{"idObject":0,"name":"HSD3B2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=HSD3B2","summary":null,"resource":"HSD3B2"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"14511985","link":"http://www.ncbi.nlm.nih.gov/pubmed/14511985","type":"PUBMED","article":{"title":"3-hydroxy-3-methylglutaryl-coenzyme A reductase in the lobster mandibular organ: regulation by the eyestalk.","authors":["Li S"," Wagner CA"," Friesen JA"," Borst DW."],"journal":"General and comparative endocrinology","year":2003,"link":"http://www.ncbi.nlm.nih.gov/pubmed/14511985","id":"14511985","citationCount":13,"stringAuthors":"Li S,  Wagner CA,  Friesen JA,  Borst DW."}},{"resource":"15152097","link":"http://www.ncbi.nlm.nih.gov/pubmed/15152097","type":"PUBMED","article":{"title":"Inhibition of the class II HMG-CoA reductase of Pseudomonas mevalonii.","authors":["Hedl M"," Rodwell VW."],"journal":"Protein science : a publication of the Protein Society","year":2004,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15152097","id":"15152097","citationCount":10,"stringAuthors":"Hedl M,  Rodwell VW."}},{"resource":"15755483","link":"http://www.ncbi.nlm.nih.gov/pubmed/15755483","type":"PUBMED","article":{"title":"Improved posthypoxic recovery in vitro on treatment with drugs used for secondary stroke prevention.","authors":["Huber R"," Riepe MW."],"journal":"Neuropharmacology","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15755483","id":"15755483","citationCount":1,"stringAuthors":"Huber R,  Riepe MW."}}],"name":"3-hydroxy-3-methylglutaryl-coenzyme A reductase","targetParticipants":[{"idObject":0,"name":"HMGCR","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=HMGCR","summary":null,"resource":"HMGCR"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"3-hydroxyacyl-CoA dehydrogenase type-2","targetParticipants":[{"idObject":0,"name":"HSD17B10","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=HSD17B10","summary":null,"resource":"HSD17B10"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"3-hydroxyisobutyrate dehydrogenase, mitochondrial","targetParticipants":[{"idObject":0,"name":"HIBADH","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=HIBADH","summary":null,"resource":"HIBADH"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"3-keto-steroid reductase","targetParticipants":[{"idObject":0,"name":"HSD17B7","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=HSD17B7","summary":null,"resource":"HSD17B7"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"3129020","link":"http://www.ncbi.nlm.nih.gov/pubmed/3129020","type":"PUBMED","article":{"title":"Properties of gamma-aminobutyraldehyde dehydrogenase from Escherichia coli.","authors":["Prieto MI"," Martin J"," Balaña-Fouce R"," Garrido-Pertierra A."],"journal":"Biochimie","year":1987,"link":"http://www.ncbi.nlm.nih.gov/pubmed/3129020","id":"3129020","citationCount":5,"stringAuthors":"Prieto MI,  Martin J,  Balaña-Fouce R,  Garrido-Pertierra A."}},{"resource":"7584606","link":"http://www.ncbi.nlm.nih.gov/pubmed/7584606","type":"PUBMED","article":{"title":"Purification and kinetic characterization of gamma-aminobutyraldehyde dehydrogenase from rat liver.","authors":["Testore G"," Colombatto S"," Silvagno F"," Bedino S."],"journal":"The international journal of biochemistry & cell biology","year":1995,"link":"http://www.ncbi.nlm.nih.gov/pubmed/7584606","id":"7584606","citationCount":4,"stringAuthors":"Testore G,  Colombatto S,  Silvagno F,  Bedino S."}}],"name":"4-trimethylaminobutyraldehyde dehydrogenase","targetParticipants":[{"idObject":0,"name":"ALDH9A1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=ALDH9A1","summary":null,"resource":"ALDH9A1"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"7-dehydrocholesterol reductase","targetParticipants":[{"idObject":0,"name":"DHCR7","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=DHCR7","summary":null,"resource":"DHCR7"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"Acyl carrier protein, mitochondrial","targetParticipants":[{"idObject":0,"name":"NDUFAB1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFAB1","summary":null,"resource":"NDUFAB1"}]},{"targetElements":[],"references":[{"resource":"16897483","link":"http://www.ncbi.nlm.nih.gov/pubmed/16897483","type":"PUBMED","article":{"title":"Two highly divergent alcohol dehydrogenases of melon exhibit fruit ripening-specific expression and distinct biochemical characteristics.","authors":["Manríquez D"," El-Sharkawy I"," Flores FB"," El-Yahyaoui F"," Regad F"," Bouzayen M"," Latché A"," Pech JC."],"journal":"Plant molecular biology","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16897483","id":"16897483","citationCount":30,"stringAuthors":"Manríquez D,  El-Sharkawy I,  Flores FB,  El-Yahyaoui F,  Regad F,  Bouzayen M,  Latché A,  Pech JC."}},{"resource":"16760478","link":"http://www.ncbi.nlm.nih.gov/pubmed/16760478","type":"PUBMED","article":{"title":"Synthetic lethal and biochemical analyses of NAD and NADH kinases in Saccharomyces cerevisiae establish separation of cellular functions.","authors":["Bieganowski P"," Seidle HF"," Wojcik M"," Brenner C."],"journal":"The Journal of biological chemistry","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16760478","id":"16760478","citationCount":25,"stringAuthors":"Bieganowski P,  Seidle HF,  Wojcik M,  Brenner C."}}],"name":"Alcohol dehydrogenase 1A","targetParticipants":[{"idObject":0,"name":"ADH1A","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=ADH1A","summary":null,"resource":"ADH1A"}]},{"targetElements":[],"references":[{"resource":"16897483","link":"http://www.ncbi.nlm.nih.gov/pubmed/16897483","type":"PUBMED","article":{"title":"Two highly divergent alcohol dehydrogenases of melon exhibit fruit ripening-specific expression and distinct biochemical characteristics.","authors":["Manríquez D"," El-Sharkawy I"," Flores FB"," El-Yahyaoui F"," Regad F"," Bouzayen M"," Latché A"," Pech JC."],"journal":"Plant molecular biology","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16897483","id":"16897483","citationCount":30,"stringAuthors":"Manríquez D,  El-Sharkawy I,  Flores FB,  El-Yahyaoui F,  Regad F,  Bouzayen M,  Latché A,  Pech JC."}}],"name":"Alcohol dehydrogenase 1B","targetParticipants":[{"idObject":0,"name":"ADH1B","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=ADH1B","summary":null,"resource":"ADH1B"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"12604203","link":"http://www.ncbi.nlm.nih.gov/pubmed/12604203","type":"PUBMED","article":{"title":"Specificity of human alcohol dehydrogenase 1C*2 (gamma2gamma2) for steroids and simulation of the uncompetitive inhibition of ethanol metabolism.","authors":["Plapp BV"," Berst KB."],"journal":"Chemico-biological interactions","year":2003,"link":"http://www.ncbi.nlm.nih.gov/pubmed/12604203","id":"12604203","citationCount":3,"stringAuthors":"Plapp BV,  Berst KB."}}],"name":"Alcohol dehydrogenase 1C","targetParticipants":[{"idObject":0,"name":"ADH1C","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=ADH1C","summary":null,"resource":"ADH1C"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"11306066","link":"http://www.ncbi.nlm.nih.gov/pubmed/11306066","type":"PUBMED","article":{"title":"Mouse alcohol dehydrogenase 4: kinetic mechanism, substrate specificity and simulation of effects of ethanol on retinoid metabolism.","authors":["Plapp BV"," Mitchell JL"," Berst KB."],"journal":"Chemico-biological interactions","year":2001,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11306066","id":"11306066","citationCount":4,"stringAuthors":"Plapp BV,  Mitchell JL,  Berst KB."}},{"resource":"1938903","link":"http://www.ncbi.nlm.nih.gov/pubmed/1938903","type":"PUBMED","article":{"title":"Biochemical basis of mitochondrial acetaldehyde dismutation in Saccharomyces cerevisiae.","authors":["Thielen J"," Ciriacy M."],"journal":"Journal of bacteriology","year":1991,"link":"http://www.ncbi.nlm.nih.gov/pubmed/1938903","id":"1938903","citationCount":3,"stringAuthors":"Thielen J,  Ciriacy M."}},{"resource":"3593480","link":"http://www.ncbi.nlm.nih.gov/pubmed/3593480","type":"PUBMED","article":{"title":"Ethanol-induced inhibition of testosterone biosynthesis in vitro: lack of acetaldehyde effect.","authors":["Widenius TV."],"journal":"Alcohol and alcoholism (Oxford, Oxfordshire)","year":1987,"link":"http://www.ncbi.nlm.nih.gov/pubmed/3593480","id":"3593480","citationCount":2,"stringAuthors":"Widenius TV."}}],"name":"Alcohol dehydrogenase 4","targetParticipants":[{"idObject":0,"name":"ADH4","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=ADH4","summary":null,"resource":"ADH4"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"8490052","link":"http://www.ncbi.nlm.nih.gov/pubmed/8490052","type":"PUBMED","article":{"title":"Identification and immunohistochemistry of retinol dehydrogenase from bovine retinal pigment epithelium.","authors":["Suzuki Y"," Ishiguro S"," Tamai M."],"journal":"Biochimica et biophysica acta","year":1993,"link":"http://www.ncbi.nlm.nih.gov/pubmed/8490052","id":"8490052","citationCount":11,"stringAuthors":"Suzuki Y,  Ishiguro S,  Tamai M."}},{"resource":"17608724","link":"http://www.ncbi.nlm.nih.gov/pubmed/17608724","type":"PUBMED","article":{"title":"Analysis of the NADH-dependent retinaldehyde reductase activity of amphioxus retinol dehydrogenase enzymes enhances our understanding of the evolution of the retinol dehydrogenase family.","authors":["Dalfó D"," Marqués N"," Albalat R."],"journal":"The FEBS journal","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17608724","id":"17608724","citationCount":10,"stringAuthors":"Dalfó D,  Marqués N,  Albalat R."}},{"resource":"11410692","link":"http://www.ncbi.nlm.nih.gov/pubmed/11410692","type":"PUBMED","article":{"title":"Effect of thyroid hormone on the alcohol dehydrogenase activities in rat tissues.","authors":["Kim DS"," Lee CB"," Park YS"," Ahn YH"," Kim TW"," Kee CS"," Kang JS"," Om AS."],"journal":"Journal of Korean medical science","year":2001,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11410692","id":"11410692","citationCount":1,"stringAuthors":"Kim DS,  Lee CB,  Park YS,  Ahn YH,  Kim TW,  Kee CS,  Kang JS,  Om AS."}}],"name":"Alcohol dehydrogenase class 4 mu/sigma chain","targetParticipants":[{"idObject":0,"name":"ADH7","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=ADH7","summary":null,"resource":"ADH7"}]},{"targetElements":[],"references":[{"resource":"16821840","link":"http://www.ncbi.nlm.nih.gov/pubmed/16821840","type":"PUBMED","article":{"title":"Logic gates and elementary computing by enzymes.","authors":["Baron R"," Lioubashevski O"," Katz E"," Niazov T"," Willner I."],"journal":"The journal of physical chemistry. A","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16821840","id":"16821840","citationCount":36,"stringAuthors":"Baron R,  Lioubashevski O,  Katz E,  Niazov T,  Willner I."}},{"resource":"17525463","link":"http://www.ncbi.nlm.nih.gov/pubmed/17525463","type":"PUBMED","article":{"title":"High-resolution structures of formate dehydrogenase from Candida boidinii.","authors":["Schirwitz K"," Schmidt A"," Lamzin VS."],"journal":"Protein science : a publication of the Protein Society","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17525463","id":"17525463","citationCount":19,"stringAuthors":"Schirwitz K,  Schmidt A,  Lamzin VS."}},{"resource":"17619232","link":"http://www.ncbi.nlm.nih.gov/pubmed/17619232","type":"PUBMED","article":{"title":"D-mannitol production by resting state whole cell biotrans-formation of D-fructose by heterologous mannitol and formate dehydrogenase gene expression in Bacillus megaterium.","authors":["Bäumchen C"," Roth AH"," Biedendieck R"," Malten M"," Follmann M"," Sahm H"," Bringer-Meyer S"," Jahn D."],"journal":"Biotechnology journal","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17619232","id":"17619232","citationCount":11,"stringAuthors":"Bäumchen C,  Roth AH,  Biedendieck R,  Malten M,  Follmann M,  Sahm H,  Bringer-Meyer S,  Jahn D."}},{"resource":"17092593","link":"http://www.ncbi.nlm.nih.gov/pubmed/17092593","type":"PUBMED","article":{"title":"Enhanced activity of 3alpha-hydroxysteroid dehydrogenase by addition of the co-solvent 1-butyl-3-methylimidazolium (L)-lactate in aqueous phase of biphasic systems for reductive production of steroids.","authors":["Okochi M"," Nakagawa I"," Kobayashi T"," Hayashi S"," Furusaki S"," Honda H."],"journal":"Journal of biotechnology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17092593","id":"17092593","citationCount":7,"stringAuthors":"Okochi M,  Nakagawa I,  Kobayashi T,  Hayashi S,  Furusaki S,  Honda H."}}],"name":"Alcohol dehydrogenase class-3","targetParticipants":[{"idObject":0,"name":"ADH5","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=ADH5","summary":null,"resource":"ADH5"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"Aldehyde dehydrogenase X, mitochondrial","targetParticipants":[{"idObject":0,"name":"ALDH1B1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=ALDH1B1","summary":null,"resource":"ALDH1B1"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"16241904","link":"http://www.ncbi.nlm.nih.gov/pubmed/16241904","type":"PUBMED","article":{"title":"Characterization of retinaldehyde dehydrogenase 3.","authors":["Graham CE"," Brocklehurst K"," Pickersgill RW"," Warren MJ."],"journal":"The Biochemical journal","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16241904","id":"16241904","citationCount":17,"stringAuthors":"Graham CE,  Brocklehurst K,  Pickersgill RW,  Warren MJ."}}],"name":"Aldehyde dehydrogenase family 1 member A3","targetParticipants":[{"idObject":0,"name":"ALDH1A3","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=ALDH1A3","summary":null,"resource":"ALDH1A3"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"Aldehyde dehydrogenase family 3 member B1","targetParticipants":[{"idObject":0,"name":"ALDH3B1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=ALDH3B1","summary":null,"resource":"ALDH3B1"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"Aldehyde dehydrogenase family 3 member B2","targetParticipants":[{"idObject":0,"name":"ALDH3B2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=ALDH3B2","summary":null,"resource":"ALDH3B2"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"16583981","link":"http://www.ncbi.nlm.nih.gov/pubmed/16583981","type":"PUBMED","article":{"title":"Activities of cytosolic aldehyde dehydrogenase isozymes in colon cancer: determination using selective, fluorimetric assays.","authors":["Wroczyński P"," Nowak M"," Wierzchowski J"," Szubert A"," Polański J."],"journal":"Acta poloniae pharmaceutica","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16583981","id":"16583981","citationCount":3,"stringAuthors":"Wroczyński P,  Nowak M,  Wierzchowski J,  Szubert A,  Polański J."}}],"name":"Aldehyde dehydrogenase, dimeric NADP-preferring","targetParticipants":[{"idObject":0,"name":"ALDH3A1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=ALDH3A1","summary":null,"resource":"ALDH3A1"}]},{"targetElements":[],"references":[{"resource":"16961761","link":"http://www.ncbi.nlm.nih.gov/pubmed/16961761","type":"PUBMED","article":{"title":"The UChA and UChB rat lines: metabolic and genetic differences influencing ethanol intake.","authors":["Quintanilla ME"," Israel Y"," Sapag A"," Tampier L."],"journal":"Addiction biology","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16961761","id":"16961761","citationCount":56,"stringAuthors":"Quintanilla ME,  Israel Y,  Sapag A,  Tampier L."}},{"resource":"17488809","link":"http://www.ncbi.nlm.nih.gov/pubmed/17488809","type":"PUBMED","article":{"title":"Sex differences, alcohol dehydrogenase, acetaldehyde burst, and aversion to ethanol in the rat: a systems perspective.","authors":["Quintanilla ME"," Tampier L"," Sapag A"," Gerdtzen Z"," Israel Y."],"journal":"American journal of physiology. Endocrinology and metabolism","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17488809","id":"17488809","citationCount":16,"stringAuthors":"Quintanilla ME,  Tampier L,  Sapag A,  Gerdtzen Z,  Israel Y."}}],"name":"Aldehyde dehydrogenase, mitochondrial","targetParticipants":[{"idObject":0,"name":"ALDH2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=ALDH2","summary":null,"resource":"ALDH2"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"11060293","link":"http://www.ncbi.nlm.nih.gov/pubmed/11060293","type":"PUBMED","article":{"title":"The reactive oxygen species--and Michael acceptor-inducible human aldo-keto reductase AKR1C1 reduces the alpha,beta-unsaturated aldehyde 4-hydroxy-2-nonenal to 1,4-dihydroxy-2-nonene.","authors":["Burczynski ME"," Sridhar GR"," Palackal NT"," Penning TM."],"journal":"The Journal of biological chemistry","year":2001,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11060293","id":"11060293","citationCount":63,"stringAuthors":"Burczynski ME,  Sridhar GR,  Palackal NT,  Penning TM."}},{"resource":"3463506","link":"http://www.ncbi.nlm.nih.gov/pubmed/3463506","type":"PUBMED","article":{"title":"Microsomal 20 alpha-hydroxysteroid dehydrogenase activity for progesterone in human placenta.","authors":["Fukuda T"," Hirato K"," Yanaihara T"," Nakayama T."],"journal":"Endocrinologia japonica","year":1986,"link":"http://www.ncbi.nlm.nih.gov/pubmed/3463506","id":"3463506","citationCount":2,"stringAuthors":"Fukuda T,  Hirato K,  Yanaihara T,  Nakayama T."}},{"resource":"2615366","link":"http://www.ncbi.nlm.nih.gov/pubmed/2615366","type":"PUBMED","article":{"title":"Stereospecificity of hydrogen transfer by bovine testicular 20 alpha-hydroxysteroid dehydrogenase.","authors":["Pineda JA"," Murdock GL"," Watson RJ"," Warren JC."],"journal":"Journal of steroid biochemistry","year":1989,"link":"http://www.ncbi.nlm.nih.gov/pubmed/2615366","id":"2615366","citationCount":0,"stringAuthors":"Pineda JA,  Murdock GL,  Watson RJ,  Warren JC."}}],"name":"Aldo-keto reductase family 1 member C1","targetParticipants":[{"idObject":0,"name":"AKR1C1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=AKR1C1","summary":null,"resource":"AKR1C1"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"12810547","link":"http://www.ncbi.nlm.nih.gov/pubmed/12810547","type":"PUBMED","article":{"title":"Human type 3 3alpha-hydroxysteroid dehydrogenase (aldo-keto reductase 1C2) and androgen metabolism in prostate cells.","authors":["Rizner TL"," Lin HK"," Peehl DM"," Steckelbroeck S"," Bauman DR"," Penning TM."],"journal":"Endocrinology","year":2003,"link":"http://www.ncbi.nlm.nih.gov/pubmed/12810547","id":"12810547","citationCount":61,"stringAuthors":"Rizner TL,  Lin HK,  Peehl DM,  Steckelbroeck S,  Bauman DR,  Penning TM."}},{"resource":"12416991","link":"http://www.ncbi.nlm.nih.gov/pubmed/12416991","type":"PUBMED","article":{"title":"Kinetics of allopregnanolone formation catalyzed by human 3 alpha-hydroxysteroid dehydrogenase type III (AKR1C2).","authors":["Trauger JW"," Jiang A"," Stearns BA"," LoGrasso PV."],"journal":"Biochemistry","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/12416991","id":"12416991","citationCount":40,"stringAuthors":"Trauger JW,  Jiang A,  Stearns BA,  LoGrasso PV."}}],"name":"Aldo-keto reductase family 1 member C2","targetParticipants":[{"idObject":0,"name":"AKR1C2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=AKR1C2","summary":null,"resource":"AKR1C2"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"6584048","link":"http://www.ncbi.nlm.nih.gov/pubmed/6584048","type":"PUBMED","article":{"title":"Bioluminescent assay of femtomole levels of estrone and estradiol.","authors":["Nicolas JC"," Boussioux AM"," Boularan AM"," Descomps B"," Crastes de Paulet A."],"journal":"Analytical biochemistry","year":1983,"link":"http://www.ncbi.nlm.nih.gov/pubmed/6584048","id":"6584048","citationCount":5,"stringAuthors":"Nicolas JC,  Boussioux AM,  Boularan AM,  Descomps B,  Crastes de Paulet A."}},{"resource":"2615366","link":"http://www.ncbi.nlm.nih.gov/pubmed/2615366","type":"PUBMED","article":{"title":"Stereospecificity of hydrogen transfer by bovine testicular 20 alpha-hydroxysteroid dehydrogenase.","authors":["Pineda JA"," Murdock GL"," Watson RJ"," Warren JC."],"journal":"Journal of steroid biochemistry","year":1989,"link":"http://www.ncbi.nlm.nih.gov/pubmed/2615366","id":"2615366","citationCount":0,"stringAuthors":"Pineda JA,  Murdock GL,  Watson RJ,  Warren JC."}},{"resource":"2146972","link":"http://www.ncbi.nlm.nih.gov/pubmed/2146972","type":"PUBMED","article":{"title":"Stereospecificity of hydrogen transfer between progesterone and cofactor by human placental estradiol-17 beta dehydrogenase.","authors":["Pineda JA"," Murdock GL"," Watson RJ"," Warren JC."],"journal":"The Journal of steroid biochemistry and molecular biology","year":1990,"link":"http://www.ncbi.nlm.nih.gov/pubmed/2146972","id":"2146972","citationCount":0,"stringAuthors":"Pineda JA,  Murdock GL,  Watson RJ,  Warren JC."}}],"name":"Aldo-keto reductase family 1 member C3","targetParticipants":[{"idObject":0,"name":"AKR1C3","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=AKR1C3","summary":null,"resource":"AKR1C3"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"11037109","link":"http://www.ncbi.nlm.nih.gov/pubmed/11037109","type":"PUBMED","article":{"title":"Purification and characterization of oxidoreductases-catalyzing carbonyl reduction of the tobacco-specific nitrosamine 4-methylnitrosamino-1-(3-pyridyl)-1-butanone (NNK) in human liver cytosol.","authors":["Atalla A"," Breyer-Pfaff U"," Maser E."],"journal":"Xenobiotica; the fate of foreign compounds in biological systems","year":2000,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11037109","id":"11037109","citationCount":29,"stringAuthors":"Atalla A,  Breyer-Pfaff U,  Maser E."}}],"name":"Aldo-keto reductase family 1 member C4","targetParticipants":[{"idObject":0,"name":"AKR1C4","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=AKR1C4","summary":null,"resource":"AKR1C4"}]},{"targetElements":[],"references":[{"resource":"17222174","link":"http://www.ncbi.nlm.nih.gov/pubmed/17222174","type":"PUBMED","article":{"title":"Vitamin C. Biosynthesis, recycling and degradation in mammals.","authors":["Linster CL"," Van Schaftingen E."],"journal":"The FEBS journal","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17222174","id":"17222174","citationCount":175,"stringAuthors":"Linster CL,  Van Schaftingen E."}},{"resource":"17508915","link":"http://www.ncbi.nlm.nih.gov/pubmed/17508915","type":"PUBMED","article":{"title":"Pyridine nucleotide redox abnormalities in diabetes.","authors":["Ido Y."],"journal":"Antioxidants & redox signaling","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17508915","id":"17508915","citationCount":32,"stringAuthors":"Ido Y."}}],"name":"Aldose reductase","targetParticipants":[{"idObject":0,"name":"AKR1B1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=AKR1B1","summary":null,"resource":"AKR1B1"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"9355735","link":"http://www.ncbi.nlm.nih.gov/pubmed/9355735","type":"PUBMED","article":{"title":"Delta-1-piperideine-6-carboxylate dehydrogenase, a new enzyme that forms alpha-aminoadipate in Streptomyces clavuligerus and other cephamycin C-producing actinomycetes.","authors":["de La Fuente JL"," Rumbero A"," Martín JF"," Liras P."],"journal":"The Biochemical journal","year":1997,"link":"http://www.ncbi.nlm.nih.gov/pubmed/9355735","id":"9355735","citationCount":10,"stringAuthors":"de La Fuente JL,  Rumbero A,  Martín JF,  Liras P."}}],"name":"Alpha-aminoadipic semialdehyde dehydrogenase","targetParticipants":[{"idObject":0,"name":"ALDH7A1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=ALDH7A1","summary":null,"resource":"ALDH7A1"}]},{"targetElements":[],"references":[{"resource":"17002315","link":"http://www.ncbi.nlm.nih.gov/pubmed/17002315","type":"PUBMED","article":{"title":"Overall kinetic mechanism of saccharopine dehydrogenase from Saccharomyces cerevisiae.","authors":["Xu H"," West AH"," Cook PF."],"journal":"Biochemistry","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17002315","id":"17002315","citationCount":12,"stringAuthors":"Xu H,  West AH,  Cook PF."}},{"resource":"17223709","link":"http://www.ncbi.nlm.nih.gov/pubmed/17223709","type":"PUBMED","article":{"title":"A proposed proton shuttle mechanism for saccharopine dehydrogenase from Saccharomyces cerevisiae.","authors":["Xu H"," Alguindigue SS"," West AH"," Cook PF."],"journal":"Biochemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17223709","id":"17223709","citationCount":9,"stringAuthors":"Xu H,  Alguindigue SS,  West AH,  Cook PF."}},{"resource":"17542618","link":"http://www.ncbi.nlm.nih.gov/pubmed/17542618","type":"PUBMED","article":{"title":"Determinants of substrate specificity for saccharopine dehydrogenase from Saccharomyces cerevisiae.","authors":["Xu H"," West AH"," Cook PF."],"journal":"Biochemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17542618","id":"17542618","citationCount":3,"stringAuthors":"Xu H,  West AH,  Cook PF."}}],"name":"Alpha-aminoadipic semialdehyde synthase, mitochondrial","targetParticipants":[{"idObject":0,"name":"AASS","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=AASS","summary":null,"resource":"AASS"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"Aminomethyltransferase, mitochondrial","targetParticipants":[{"idObject":0,"name":"AMT","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=AMT","summary":null,"resource":"AMT"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"Bifunctional methylenetetrahydrofolate dehydrogenase/cyclohydrolase, mitochondrial","targetParticipants":[{"idObject":0,"name":"MTHFD2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=MTHFD2","summary":null,"resource":"MTHFD2"}]},{"targetElements":[],"references":[{"resource":"17402939","link":"http://www.ncbi.nlm.nih.gov/pubmed/17402939","type":"PUBMED","article":{"title":"Activation of biliverdin-IXalpha reductase by inorganic phosphate and related anions.","authors":["Franklin E"," Browne S"," Hayes J"," Boland C"," Dunne A"," Elliot G"," Mantle TJ."],"journal":"The Biochemical journal","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17402939","id":"17402939","citationCount":4,"stringAuthors":"Franklin E,  Browne S,  Hayes J,  Boland C,  Dunne A,  Elliot G,  Mantle TJ."}}],"name":"Biliverdin reductase A","targetParticipants":[{"idObject":0,"name":"BLVRA","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=BLVRA","summary":null,"resource":"BLVRA"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"C-1-tetrahydrofolate synthase, cytoplasmic","targetParticipants":[{"idObject":0,"name":"MTHFD1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=MTHFD1","summary":null,"resource":"MTHFD1"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"9141556","link":"http://www.ncbi.nlm.nih.gov/pubmed/9141556","type":"PUBMED","article":{"title":"Metabolism of dexamethasone in the human kidney: nicotinamide adenine dinucleotide-dependent 11beta-reduction.","authors":["Diederich S"," Hanke B"," Oelkers W"," Bähr V."],"journal":"The Journal of clinical endocrinology and metabolism","year":1997,"link":"http://www.ncbi.nlm.nih.gov/pubmed/9141556","id":"9141556","citationCount":14,"stringAuthors":"Diederich S,  Hanke B,  Oelkers W,  Bähr V."}},{"resource":"8585102","link":"http://www.ncbi.nlm.nih.gov/pubmed/8585102","type":"PUBMED","article":{"title":"Comparison of 11 beta-hydroxysteroid dehydrogenase in spontaneously hypertensive and Wistar-Kyoto rats.","authors":["Hermans JJ"," Steckel B"," Thijssen HH"," Janssen BJ"," Netter KJ"," Maser E."],"journal":"Steroids","year":1995,"link":"http://www.ncbi.nlm.nih.gov/pubmed/8585102","id":"8585102","citationCount":3,"stringAuthors":"Hermans JJ,  Steckel B,  Thijssen HH,  Janssen BJ,  Netter KJ,  Maser E."}}],"name":"Corticosteroid 11-beta-dehydrogenase isozyme 1","targetParticipants":[{"idObject":0,"name":"HSD11B1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=HSD11B1","summary":null,"resource":"HSD11B1"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"1727721","link":"http://www.ncbi.nlm.nih.gov/pubmed/1727721","type":"PUBMED","article":{"title":"Localization of an 11 beta hydroxysteroid dehydrogenase activity to the distal nephron. Evidence for the existence of two species of dehydrogenase in the rat kidney.","authors":["Mercer WR"," Krozowski ZS."],"journal":"Endocrinology","year":1992,"link":"http://www.ncbi.nlm.nih.gov/pubmed/1727721","id":"1727721","citationCount":42,"stringAuthors":"Mercer WR,  Krozowski ZS."}},{"resource":"8585102","link":"http://www.ncbi.nlm.nih.gov/pubmed/8585102","type":"PUBMED","article":{"title":"Comparison of 11 beta-hydroxysteroid dehydrogenase in spontaneously hypertensive and Wistar-Kyoto rats.","authors":["Hermans JJ"," Steckel B"," Thijssen HH"," Janssen BJ"," Netter KJ"," Maser E."],"journal":"Steroids","year":1995,"link":"http://www.ncbi.nlm.nih.gov/pubmed/8585102","id":"8585102","citationCount":3,"stringAuthors":"Hermans JJ,  Steckel B,  Thijssen HH,  Janssen BJ,  Netter KJ,  Maser E."}}],"name":"Corticosteroid 11-beta-dehydrogenase isozyme 2","targetParticipants":[{"idObject":0,"name":"HSD11B2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=HSD11B2","summary":null,"resource":"HSD11B2"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"Cysteine dioxygenase type 1","targetParticipants":[{"idObject":0,"name":"CDO1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=CDO1","summary":null,"resource":"CDO1"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"11246504","link":"http://www.ncbi.nlm.nih.gov/pubmed/11246504","type":"PUBMED","article":{"title":"Cytochrome P450 4A, peroxisomal enzymes and nicotinamide cofactors in koala liver.","authors":["Ngo S"," Kong S"," Kirlich A"," McKinnon RA"," Stupans I."],"journal":"Comparative biochemistry and physiology. Toxicology & pharmacology : CBP","year":2000,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11246504","id":"11246504","citationCount":6,"stringAuthors":"Ngo S,  Kong S,  Kirlich A,  McKinnon RA,  Stupans I."}}],"name":"Cytochrome P450 4A11","targetParticipants":[{"idObject":0,"name":"CYP4A11","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=CYP4A11","summary":null,"resource":"CYP4A11"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"Cytochrome c oxidase subunit NDUFA4","targetParticipants":[{"idObject":0,"name":"NDUFA4","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFA4","summary":null,"resource":"NDUFA4"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"2692566","link":"http://www.ncbi.nlm.nih.gov/pubmed/2692566","type":"PUBMED","article":{"title":"A new family of 2-hydroxyacid dehydrogenases.","authors":["Grant GA."],"journal":"Biochemical and biophysical research communications","year":1989,"link":"http://www.ncbi.nlm.nih.gov/pubmed/2692566","id":"2692566","citationCount":37,"stringAuthors":"Grant GA."}},{"resource":"12183470","link":"http://www.ncbi.nlm.nih.gov/pubmed/12183470","type":"PUBMED","article":{"title":"Cofactor binding to Escherichia coli D-3-phosphoglycerate dehydrogenase induces multiple conformations which alter effector binding.","authors":["Grant GA"," Hu Z"," Xu XL."],"journal":"The Journal of biological chemistry","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/12183470","id":"12183470","citationCount":9,"stringAuthors":"Grant GA,  Hu Z,  Xu XL."}},{"resource":"945314","link":"http://www.ncbi.nlm.nih.gov/pubmed/945314","type":"PUBMED","article":{"title":"Serine biosynthesis in human hair follicles by the phosphorylated pathway: follicular 3-phosphoglycerate dehydrogenase.","authors":["Goldsmith LA"," O'Barr T."],"journal":"The Journal of investigative dermatology","year":1976,"link":"http://www.ncbi.nlm.nih.gov/pubmed/945314","id":"945314","citationCount":4,"stringAuthors":"Goldsmith LA,  O'Barr T."}}],"name":"D-3-phosphoglycerate dehydrogenase","targetParticipants":[{"idObject":0,"name":"PHGDH","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=PHGDH","summary":null,"resource":"PHGDH"}]},{"targetElements":[],"references":[{"resource":"16934832","link":"http://www.ncbi.nlm.nih.gov/pubmed/16934832","type":"PUBMED","article":{"title":"Crystal structure of Thermus thermophilus Delta1-pyrroline-5-carboxylate dehydrogenase.","authors":["Inagaki E"," Ohshima N"," Takahashi H"," Kuroishi C"," Yokoyama S"," Tahirov TH."],"journal":"Journal of molecular biology","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16934832","id":"16934832","citationCount":35,"stringAuthors":"Inagaki E,  Ohshima N,  Takahashi H,  Kuroishi C,  Yokoyama S,  Tahirov TH."}}],"name":"Delta-1-pyrroline-5-carboxylate dehydrogenase, mitochondrial","targetParticipants":[{"idObject":0,"name":"ALDH4A1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=ALDH4A1","summary":null,"resource":"ALDH4A1"}]},{"targetElements":[],"references":[{"resource":"17115689","link":"http://www.ncbi.nlm.nih.gov/pubmed/17115689","type":"PUBMED","article":{"title":"Proteome-wide profiling of isoniazid targets in Mycobacterium tuberculosis.","authors":["Argyrou A"," Jin L"," Siconilfi-Baez L"," Angeletti RH"," Blanchard JS."],"journal":"Biochemistry","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17115689","id":"17115689","citationCount":37,"stringAuthors":"Argyrou A,  Jin L,  Siconilfi-Baez L,  Angeletti RH,  Blanchard JS."}},{"resource":"17032644","link":"http://www.ncbi.nlm.nih.gov/pubmed/17032644","type":"PUBMED","article":{"title":"Biochemical and genetic analysis of methylenetetrahydrofolate reductase in Leishmania metabolism and virulence.","authors":["Vickers TJ"," Orsomando G"," de la Garza RD"," Scott DA"," Kang SO"," Hanson AD"," Beverley SM."],"journal":"The Journal of biological chemistry","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17032644","id":"17032644","citationCount":13,"stringAuthors":"Vickers TJ,  Orsomando G,  de la Garza RD,  Scott DA,  Kang SO,  Hanson AD,  Beverley SM."}}],"name":"Dihydrofolate reductase","targetParticipants":[{"idObject":0,"name":"DHFR","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=DHFR","summary":null,"resource":"DHFR"}]},{"targetElements":[],"references":[{"resource":"17314104","link":"http://www.ncbi.nlm.nih.gov/pubmed/17314104","type":"PUBMED","article":{"title":"A novel branched-chain amino acid metabolon. Protein-protein interactions in a supramolecular complex.","authors":["Islam MM"," Wallin R"," Wynn RM"," Conway M"," Fujii H"," Mobley JA"," Chuang DT"," Hutson SM."],"journal":"The Journal of biological chemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17314104","id":"17314104","citationCount":32,"stringAuthors":"Islam MM,  Wallin R,  Wynn RM,  Conway M,  Fujii H,  Mobley JA,  Chuang DT,  Hutson SM."}},{"resource":"17315258","link":"http://www.ncbi.nlm.nih.gov/pubmed/17315258","type":"PUBMED","article":{"title":"Histochemical staining and quantification of dihydrolipoamide dehydrogenase diaphorase activity using blue native PAGE.","authors":["Yan LJ"," Yang SH"," Shu H"," Prokai L"," Forster MJ."],"journal":"Electrophoresis","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17315258","id":"17315258","citationCount":25,"stringAuthors":"Yan LJ,  Yang SH,  Shu H,  Prokai L,  Forster MJ."}},{"resource":"17017892","link":"http://www.ncbi.nlm.nih.gov/pubmed/17017892","type":"PUBMED","article":{"title":"Trypanosoma cruzi dihydrolipoamide dehydrogenase as target for phenothiazine cationic radicals. Effect of antioxidants.","authors":["Gutiérrez-Correa J."],"journal":"Current drug targets","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17017892","id":"17017892","citationCount":3,"stringAuthors":"Gutiérrez-Correa J."}}],"name":"Dihydrolipoyl dehydrogenase, mitochondrial","targetParticipants":[{"idObject":0,"name":"DLD","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=DLD","summary":null,"resource":"DLD"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"16368957","link":"http://www.ncbi.nlm.nih.gov/pubmed/16368957","type":"PUBMED","article":{"title":"Dihydrolipoamide acyltransferase is critical for Mycobacterium tuberculosis pathogenesis.","authors":["Shi S"," Ehrt S."],"journal":"Infection and immunity","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16368957","id":"16368957","citationCount":37,"stringAuthors":"Shi S,  Ehrt S."}}],"name":"Dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex, mitochondrial","targetParticipants":[{"idObject":0,"name":"DLAT","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=DLAT","summary":null,"resource":"DLAT"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"10814540","link":"http://www.ncbi.nlm.nih.gov/pubmed/10814540","type":"PUBMED","article":{"title":"NADH-ferric reductase activity associated with dihydropteridine reductase.","authors":["Lee PL"," Halloran C"," Cross AR"," Beutler E."],"journal":"Biochemical and biophysical research communications","year":2000,"link":"http://www.ncbi.nlm.nih.gov/pubmed/10814540","id":"10814540","citationCount":3,"stringAuthors":"Lee PL,  Halloran C,  Cross AR,  Beutler E."}},{"resource":"3086306","link":"http://www.ncbi.nlm.nih.gov/pubmed/3086306","type":"PUBMED","article":{"title":"Determination of NADPH-specific dihydropteridine reductase in extract from human, monkey, and bovine livers by single radial immunodiffusion: selective assay differentiating NADPH- and NADH-specific enzymes.","authors":["Nakanishi N"," Ozawa K"," Yamada S."],"journal":"Journal of biochemistry","year":1986,"link":"http://www.ncbi.nlm.nih.gov/pubmed/3086306","id":"3086306","citationCount":1,"stringAuthors":"Nakanishi N,  Ozawa K,  Yamada S."}},{"resource":"6820434","link":"http://www.ncbi.nlm.nih.gov/pubmed/6820434","type":"PUBMED","article":{"title":"Spectral studies of the interaction of the substrate 'quinonoid' 6-methyl dihydropterine and the coenzyme NADH used as marker in the dihydropteridine reductase assay.","authors":["van der Heiden C"," Brink W."],"journal":"Journal of inherited metabolic disease","year":1982,"link":"http://www.ncbi.nlm.nih.gov/pubmed/6820434","id":"6820434","citationCount":0,"stringAuthors":"van der Heiden C,  Brink W."}}],"name":"Dihydropteridine reductase","targetParticipants":[{"idObject":0,"name":"QDPR","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=QDPR","summary":null,"resource":"QDPR"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"3463506","link":"http://www.ncbi.nlm.nih.gov/pubmed/3463506","type":"PUBMED","article":{"title":"Microsomal 20 alpha-hydroxysteroid dehydrogenase activity for progesterone in human placenta.","authors":["Fukuda T"," Hirato K"," Yanaihara T"," Nakayama T."],"journal":"Endocrinologia japonica","year":1986,"link":"http://www.ncbi.nlm.nih.gov/pubmed/3463506","id":"3463506","citationCount":2,"stringAuthors":"Fukuda T,  Hirato K,  Yanaihara T,  Nakayama T."}},{"resource":"3164265","link":"http://www.ncbi.nlm.nih.gov/pubmed/3164265","type":"PUBMED","article":{"title":"The 20 alpha-hydroxysteroid dehydrogenase of Streptomyces hydrogenans.","authors":["Rimsay RL"," Murphy GW"," Martin CJ"," Orr JC."],"journal":"European journal of biochemistry","year":1988,"link":"http://www.ncbi.nlm.nih.gov/pubmed/3164265","id":"3164265","citationCount":1,"stringAuthors":"Rimsay RL,  Murphy GW,  Martin CJ,  Orr JC."}},{"resource":"2615366","link":"http://www.ncbi.nlm.nih.gov/pubmed/2615366","type":"PUBMED","article":{"title":"Stereospecificity of hydrogen transfer by bovine testicular 20 alpha-hydroxysteroid dehydrogenase.","authors":["Pineda JA"," Murdock GL"," Watson RJ"," Warren JC."],"journal":"Journal of steroid biochemistry","year":1989,"link":"http://www.ncbi.nlm.nih.gov/pubmed/2615366","id":"2615366","citationCount":0,"stringAuthors":"Pineda JA,  Murdock GL,  Watson RJ,  Warren JC."}}],"name":"Estradiol 17-beta-dehydrogenase 1","targetParticipants":[{"idObject":0,"name":"HSD17B1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=HSD17B1","summary":null,"resource":"HSD17B1"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"8529651","link":"http://www.ncbi.nlm.nih.gov/pubmed/8529651","type":"PUBMED","article":{"title":"Prostaglandin-E2 9-reductase from corpus luteum of pseudopregnant rabbit is a member of the aldo-keto reductase superfamily featuring 20 alpha-hydroxysteroid dehydrogenase activity.","authors":["Wintergalen N"," Thole HH"," Galla HJ"," Schlegel W."],"journal":"European journal of biochemistry","year":1995,"link":"http://www.ncbi.nlm.nih.gov/pubmed/8529651","id":"8529651","citationCount":22,"stringAuthors":"Wintergalen N,  Thole HH,  Galla HJ,  Schlegel W."}},{"resource":"3463506","link":"http://www.ncbi.nlm.nih.gov/pubmed/3463506","type":"PUBMED","article":{"title":"Microsomal 20 alpha-hydroxysteroid dehydrogenase activity for progesterone in human placenta.","authors":["Fukuda T"," Hirato K"," Yanaihara T"," Nakayama T."],"journal":"Endocrinologia japonica","year":1986,"link":"http://www.ncbi.nlm.nih.gov/pubmed/3463506","id":"3463506","citationCount":2,"stringAuthors":"Fukuda T,  Hirato K,  Yanaihara T,  Nakayama T."}},{"resource":"2615366","link":"http://www.ncbi.nlm.nih.gov/pubmed/2615366","type":"PUBMED","article":{"title":"Stereospecificity of hydrogen transfer by bovine testicular 20 alpha-hydroxysteroid dehydrogenase.","authors":["Pineda JA"," Murdock GL"," Watson RJ"," Warren JC."],"journal":"Journal of steroid biochemistry","year":1989,"link":"http://www.ncbi.nlm.nih.gov/pubmed/2615366","id":"2615366","citationCount":0,"stringAuthors":"Pineda JA,  Murdock GL,  Watson RJ,  Warren JC."}}],"name":"Estradiol 17-beta-dehydrogenase 2","targetParticipants":[{"idObject":0,"name":"HSD17B2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=HSD17B2","summary":null,"resource":"HSD17B2"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"Estradiol 17-beta-dehydrogenase 8","targetParticipants":[{"idObject":0,"name":"HSD17B8","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=HSD17B8","summary":null,"resource":"HSD17B8"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"6603890","link":"http://www.ncbi.nlm.nih.gov/pubmed/6603890","type":"PUBMED","article":{"title":"Mechanism of a long-chain fatty aldehyde dehydrogenase induced during the development of bioluminescence in Beneckea harveyi.","authors":["Bognar A"," Meighen E."],"journal":"Canadian journal of biochemistry and cell biology = Revue canadienne de biochimie et biologie cellulaire","year":1983,"link":"http://www.ncbi.nlm.nih.gov/pubmed/6603890","id":"6603890","citationCount":0,"stringAuthors":"Bognar A,  Meighen E."}}],"name":"Fatty aldehyde dehydrogenase","targetParticipants":[{"idObject":0,"name":"ALDH3A2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=ALDH3A2","summary":null,"resource":"ALDH3A2"}]},{"targetElements":[],"references":[{"resource":"17559398","link":"http://www.ncbi.nlm.nih.gov/pubmed/17559398","type":"PUBMED","article":{"title":"Characterization of two components of the 2-naphthoate monooxygenase system from Burkholderia sp. strain JT1500.","authors":["Deng D"," Li X"," Fang X"," Sun G."],"journal":"FEMS microbiology letters","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17559398","id":"17559398","citationCount":1,"stringAuthors":"Deng D,  Li X,  Fang X,  Sun G."}}],"name":"Flavin reductase (NADPH)","targetParticipants":[{"idObject":0,"name":"BLVRB","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=BLVRB","summary":null,"resource":"BLVRB"}]},{"targetElements":[],"references":[{"resource":"17298031","link":"http://www.ncbi.nlm.nih.gov/pubmed/17298031","type":"PUBMED","article":{"title":"Coimmobilization of dehydrogenases and their cofactors in electrochemical biosensors.","authors":["Zhang M"," Mullens C"," Gorski W."],"journal":"Analytical chemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17298031","id":"17298031","citationCount":18,"stringAuthors":"Zhang M,  Mullens C,  Gorski W."}},{"resource":"17269701","link":"http://www.ncbi.nlm.nih.gov/pubmed/17269701","type":"PUBMED","article":{"title":"Electrochemical regeneration of NADH using conductive vanadia-silica xerogels.","authors":["Siu E"," Won K"," Park CB."],"journal":"Biotechnology progress","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17269701","id":"17269701","citationCount":10,"stringAuthors":"Siu E,  Won K,  Park CB."}},{"resource":"17171348","link":"http://www.ncbi.nlm.nih.gov/pubmed/17171348","type":"PUBMED","article":{"title":"Co-expression of P450 BM3 and glucose dehydrogenase by recombinant Escherichia coli and its application in an NADPH-dependent indigo production system.","authors":["Lu Y"," Mei L."],"journal":"Journal of industrial microbiology & biotechnology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17171348","id":"17171348","citationCount":10,"stringAuthors":"Lu Y,  Mei L."}},{"resource":"17531229","link":"http://www.ncbi.nlm.nih.gov/pubmed/17531229","type":"PUBMED","article":{"title":"In vitro RNA editing in plant mitochondria does not require added energy.","authors":["Takenaka M"," Verbitskiy D"," van der Merwe JA"," Zehrmann A"," Plessmann U"," Urlaub H"," Brennicke A."],"journal":"FEBS letters","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17531229","id":"17531229","citationCount":3,"stringAuthors":"Takenaka M,  Verbitskiy D,  van der Merwe JA,  Zehrmann A,  Plessmann U,  Urlaub H,  Brennicke A."}},{"resource":"16898590","link":"http://www.ncbi.nlm.nih.gov/pubmed/16898590","type":"PUBMED","article":{"title":"[Lymphocyte metabolism in patients with acute pancreatitis with different genotypes of GSTM1 and GSTT1 genes].","authors":["Markova EV"," Zotova NV"," Savchenko AA"," Titova NM"," Slepov EV"," Cherdantsev DV"," Konovalenko AN."],"journal":"Biomeditsinskaia khimiia","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16898590","id":"16898590","citationCount":1,"stringAuthors":"Markova EV,  Zotova NV,  Savchenko AA,  Titova NM,  Slepov EV,  Cherdantsev DV,  Konovalenko AN."}}],"name":"GDH/6PGL endoplasmic bifunctional protein","targetParticipants":[{"idObject":0,"name":"H6PD","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=H6PD","summary":null,"resource":"H6PD"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"GDP-L-fucose synthase","targetParticipants":[{"idObject":0,"name":"TSTA3","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=TSTA3","summary":null,"resource":"TSTA3"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"Glutamate dehydrogenase 1, mitochondrial","targetParticipants":[{"idObject":0,"name":"GLUD1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=GLUD1","summary":null,"resource":"GLUD1"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"Glutamate dehydrogenase 2, mitochondrial","targetParticipants":[{"idObject":0,"name":"GLUD2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=GLUD2","summary":null,"resource":"GLUD2"}]},{"targetElements":[],"references":[{"resource":"17540766","link":"http://www.ncbi.nlm.nih.gov/pubmed/17540766","type":"PUBMED","article":{"title":"Sequential opening of mitochondrial ion channels as a function of glutathione redox thiol status.","authors":["Aon MA"," Cortassa S"," Maack C"," O'Rourke B."],"journal":"The Journal of biological chemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17540766","id":"17540766","citationCount":92,"stringAuthors":"Aon MA,  Cortassa S,  Maack C,  O'Rourke B."}},{"resource":"17565998","link":"http://www.ncbi.nlm.nih.gov/pubmed/17565998","type":"PUBMED","article":{"title":"Zinc irreversibly damages major enzymes of energy production and antioxidant defense prior to mitochondrial permeability transition.","authors":["Gazaryan IG"," Krasinskaya IP"," Kristal BS"," Brown AM."],"journal":"The Journal of biological chemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17565998","id":"17565998","citationCount":55,"stringAuthors":"Gazaryan IG,  Krasinskaya IP,  Kristal BS,  Brown AM."}},{"resource":"17550271","link":"http://www.ncbi.nlm.nih.gov/pubmed/17550271","type":"PUBMED","article":{"title":"The relationship of the redox potentials of thioredoxin and thioredoxin reductase from Drosophila melanogaster to the enzymatic mechanism: reduced thioredoxin is the reductant of glutathione in Drosophila.","authors":["Cheng Z"," Arscott LD"," Ballou DP"," Williams CH."],"journal":"Biochemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17550271","id":"17550271","citationCount":25,"stringAuthors":"Cheng Z,  Arscott LD,  Ballou DP,  Williams CH."}},{"resource":"17053903","link":"http://www.ncbi.nlm.nih.gov/pubmed/17053903","type":"PUBMED","article":{"title":"Damage of oxidative stress on mitochondria during microspores development in Honglian CMS line of rice.","authors":["Wan C"," Li S"," Wen L"," Kong J"," Wang K"," Zhu Y."],"journal":"Plant cell reports","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17053903","id":"17053903","citationCount":22,"stringAuthors":"Wan C,  Li S,  Wen L,  Kong J,  Wang K,  Zhu Y."}},{"resource":"17502280","link":"http://www.ncbi.nlm.nih.gov/pubmed/17502280","type":"PUBMED","article":{"title":"Evidence for an additional disulfide reduction pathway in Escherichia coli.","authors":["Knapp KG"," Swartz JR."],"journal":"Journal of bioscience and bioengineering","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17502280","id":"17502280","citationCount":3,"stringAuthors":"Knapp KG,  Swartz JR."}}],"name":"Glutathione reductase, mitochondrial","targetParticipants":[{"idObject":0,"name":"GSR","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=GSR","summary":null,"resource":"GSR"}]},{"targetElements":[],"references":[{"resource":"17508915","link":"http://www.ncbi.nlm.nih.gov/pubmed/17508915","type":"PUBMED","article":{"title":"Pyridine nucleotide redox abnormalities in diabetes.","authors":["Ido Y."],"journal":"Antioxidants & redox signaling","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17508915","id":"17508915","citationCount":32,"stringAuthors":"Ido Y."}},{"resource":"17031544","link":"http://www.ncbi.nlm.nih.gov/pubmed/17031544","type":"PUBMED","article":{"title":"Thioredoxin-dependent regulation of photosynthetic glyceraldehyde-3-phosphate dehydrogenase: autonomous vs. CP12-dependent mechanisms.","authors":["Trost P"," Fermani S"," Marri L"," Zaffagnini M"," Falini G"," Scagliarini S"," Pupillo P"," Sparla F."],"journal":"Photosynthesis research","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17031544","id":"17031544","citationCount":28,"stringAuthors":"Trost P,  Fermani S,  Marri L,  Zaffagnini M,  Falini G,  Scagliarini S,  Pupillo P,  Sparla F."}},{"resource":"17194030","link":"http://www.ncbi.nlm.nih.gov/pubmed/17194030","type":"PUBMED","article":{"title":"Sevoflurane modulates the activity of glyceraldehyde 3-phosphate dehydrogenase.","authors":["Swearengin TA"," Fibuch EE"," Seidler NW."],"journal":"Journal of enzyme inhibition and medicinal chemistry","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17194030","id":"17194030","citationCount":3,"stringAuthors":"Swearengin TA,  Fibuch EE,  Seidler NW."}},{"resource":"16898590","link":"http://www.ncbi.nlm.nih.gov/pubmed/16898590","type":"PUBMED","article":{"title":"[Lymphocyte metabolism in patients with acute pancreatitis with different genotypes of GSTM1 and GSTT1 genes].","authors":["Markova EV"," Zotova NV"," Savchenko AA"," Titova NM"," Slepov EV"," Cherdantsev DV"," Konovalenko AN."],"journal":"Biomeditsinskaia khimiia","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16898590","id":"16898590","citationCount":1,"stringAuthors":"Markova EV,  Zotova NV,  Savchenko AA,  Titova NM,  Slepov EV,  Cherdantsev DV,  Konovalenko AN."}}],"name":"Glyceraldehyde-3-phosphate dehydrogenase","targetParticipants":[{"idObject":0,"name":"GAPDH","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=GAPDH","summary":null,"resource":"GAPDH"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"12492483","link":"http://www.ncbi.nlm.nih.gov/pubmed/12492483","type":"PUBMED","article":{"title":"Characterization of native and recombinant A4 glyceraldehyde 3-phosphate dehydrogenase. Kinetic evidence for confromation changes upon association with the small protein CP12.","authors":["Graciet E"," Lebreton S"," Camadro JM"," Gontero B."],"journal":"European journal of biochemistry","year":2003,"link":"http://www.ncbi.nlm.nih.gov/pubmed/12492483","id":"12492483","citationCount":26,"stringAuthors":"Graciet E,  Lebreton S,  Camadro JM,  Gontero B."}},{"resource":"15488735","link":"http://www.ncbi.nlm.nih.gov/pubmed/15488735","type":"PUBMED","article":{"title":"Oral streptococcal glyceraldehyde-3-phosphate dehydrogenase mediates interaction with Porphyromonas gingivalis fimbriae.","authors":["Maeda K"," Nagata H"," Nonaka A"," Kataoka K"," Tanaka M"," Shizukuishi S."],"journal":"Microbes and infection","year":2004,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15488735","id":"15488735","citationCount":19,"stringAuthors":"Maeda K,  Nagata H,  Nonaka A,  Kataoka K,  Tanaka M,  Shizukuishi S."}},{"resource":"16239728","link":"http://www.ncbi.nlm.nih.gov/pubmed/16239728","type":"PUBMED","article":{"title":"Structural analysis of human liver glyceraldehyde-3-phosphate dehydrogenase.","authors":["Ismail SA"," Park HW."],"journal":"Acta crystallographica. Section D, Biological crystallography","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16239728","id":"16239728","citationCount":15,"stringAuthors":"Ismail SA,  Park HW."}}],"name":"Glyceraldehyde-3-phosphate dehydrogenase, testis-specific","targetParticipants":[{"idObject":0,"name":"GAPDHS","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=GAPDHS","summary":null,"resource":"GAPDHS"}]},{"targetElements":[],"references":[{"resource":"17088060","link":"http://www.ncbi.nlm.nih.gov/pubmed/17088060","type":"PUBMED","article":{"title":"New competitive inhibitors of cytosolic (NADH-dependent) rabbit muscle glycerophosphate dehydrogenase.","authors":["Fonvielle M"," Therisod H"," Hemery M"," Therisod M."],"journal":"Bioorganic & medicinal chemistry letters","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17088060","id":"17088060","citationCount":0,"stringAuthors":"Fonvielle M,  Therisod H,  Hemery M,  Therisod M."}}],"name":"Glycerol-3-phosphate dehydrogenase [NAD(+)], cytoplasmic","targetParticipants":[{"idObject":0,"name":"GPD1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=GPD1","summary":null,"resource":"GPD1"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"12897089","link":"http://www.ncbi.nlm.nih.gov/pubmed/12897089","type":"PUBMED","article":{"title":"Oxidative stress-related factors in Bartter's and Gitelman's syndromes: relevance for angiotensin II signalling.","authors":["Calò LA"," Pagnin E"," Davis PA"," Sartori M"," Semplicini A."],"journal":"Nephrology, dialysis, transplantation : official publication of the European Dialysis and Transplant Association - European Renal Association","year":2003,"link":"http://www.ncbi.nlm.nih.gov/pubmed/12897089","id":"12897089","citationCount":26,"stringAuthors":"Calò LA,  Pagnin E,  Davis PA,  Sartori M,  Semplicini A."}},{"resource":"12699699","link":"http://www.ncbi.nlm.nih.gov/pubmed/12699699","type":"PUBMED","article":{"title":"Cloning and expression of a heme binding protein from the genome of Saccharomyces cerevisiae.","authors":["Auclair K"," Huang HW"," Moënne-Loccoz P"," Ortiz de Montellano PR."],"journal":"Protein expression and purification","year":2003,"link":"http://www.ncbi.nlm.nih.gov/pubmed/12699699","id":"12699699","citationCount":3,"stringAuthors":"Auclair K,  Huang HW,  Moënne-Loccoz P,  Ortiz de Montellano PR."}}],"name":"Heme oxygenase 1","targetParticipants":[{"idObject":0,"name":"HMOX1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=HMOX1","summary":null,"resource":"HMOX1"}]},{"targetElements":[],"references":[{"resource":"16986858","link":"http://www.ncbi.nlm.nih.gov/pubmed/16986858","type":"PUBMED","article":{"title":"DNA cleavage by UVA irradiation of NADH with dioxygen via radical chain processes.","authors":["Tanaka M"," Ohkubo K"," Fukuzumi S."],"journal":"The journal of physical chemistry. A","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16986858","id":"16986858","citationCount":19,"stringAuthors":"Tanaka M,  Ohkubo K,  Fukuzumi S."}},{"resource":"17157188","link":"http://www.ncbi.nlm.nih.gov/pubmed/17157188","type":"PUBMED","article":{"title":"Inactivation of copper, zinc superoxide dismutase by H2O2 : mechanism of protection.","authors":["Goldstone AB"," Liochev SI"," Fridovich I."],"journal":"Free radical biology & medicine","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17157188","id":"17157188","citationCount":7,"stringAuthors":"Goldstone AB,  Liochev SI,  Fridovich I."}}],"name":"Heme oxygenase 2","targetParticipants":[{"idObject":0,"name":"HMOX2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=HMOX2","summary":null,"resource":"HMOX2"}]},{"targetElements":[],"references":[{"resource":"17202348","link":"http://www.ncbi.nlm.nih.gov/pubmed/17202348","type":"PUBMED","article":{"title":"HIV-1 trans activator of transcription protein elicits mitochondrial hyperpolarization and respiratory deficit, with dysregulation of complex IV and nicotinamide adenine dinucleotide homeostasis in cortical neurons.","authors":["Norman JP"," Perry SW"," Kasischke KA"," Volsky DJ"," Gelbard HA."],"journal":"Journal of immunology (Baltimore, Md. : 1950)","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17202348","id":"17202348","citationCount":27,"stringAuthors":"Norman JP,  Perry SW,  Kasischke KA,  Volsky DJ,  Gelbard HA."}}],"name":"Hydroxyacyl-coenzyme A dehydrogenase, mitochondrial","targetParticipants":[{"idObject":0,"name":"HADH","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=HADH","summary":null,"resource":"HADH"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"16384941","link":"http://www.ncbi.nlm.nih.gov/pubmed/16384941","type":"PUBMED","article":{"title":"Spectrum and frequency of mutations in IMPDH1 associated with autosomal dominant retinitis pigmentosa and leber congenital amaurosis.","authors":["Bowne SJ"," Sullivan LS"," Mortimer SE"," Hedstrom L"," Zhu J"," Spellicy CJ"," Gire AI"," Hughbanks-Wheaton D"," Birch DG"," Lewis RA"," Heckenlively JR"," Daiger SP."],"journal":"Investigative ophthalmology & visual science","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16384941","id":"16384941","citationCount":63,"stringAuthors":"Bowne SJ,  Sullivan LS,  Mortimer SE,  Hedstrom L,  Zhu J,  Spellicy CJ,  Gire AI,  Hughbanks-Wheaton D,  Birch DG,  Lewis RA,  Heckenlively JR,  Daiger SP."}}],"name":"Inosine-5'-monophosphate dehydrogenase 1","targetParticipants":[{"idObject":0,"name":"IMPDH1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=IMPDH1","summary":null,"resource":"IMPDH1"}]},{"targetElements":[],"references":[{"resource":"17496727","link":"http://www.ncbi.nlm.nih.gov/pubmed/17496727","type":"PUBMED","article":{"title":"A novel variant L263F in human inosine 5'-monophosphate dehydrogenase 2 is associated with diminished enzyme activity.","authors":["Wang J"," Zeevi A"," Webber S"," Girnita DM"," Addonizio L"," Selby R"," Hutchinson IV"," Burckart GJ."],"journal":"Pharmacogenetics and genomics","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17496727","id":"17496727","citationCount":27,"stringAuthors":"Wang J,  Zeevi A,  Webber S,  Girnita DM,  Addonizio L,  Selby R,  Hutchinson IV,  Burckart GJ."}}],"name":"Inosine-5'-monophosphate dehydrogenase 2","targetParticipants":[{"idObject":0,"name":"IMPDH2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=IMPDH2","summary":null,"resource":"IMPDH2"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"13152105","link":"http://www.ncbi.nlm.nih.gov/pubmed/13152105","type":"PUBMED","article":{"title":"Diphosphopyridine nucleotide isocitric dehydrogenase from animal tissues.","authors":["PLAUT GW"," SUNG SC."],"journal":"The Journal of biological chemistry","year":1954,"link":"http://www.ncbi.nlm.nih.gov/pubmed/13152105","id":"13152105","citationCount":18,"stringAuthors":"PLAUT GW,  SUNG SC."}},{"resource":"4292141","link":"http://www.ncbi.nlm.nih.gov/pubmed/4292141","type":"PUBMED","article":{"title":"Diphosphopyridine nucleotide specific isocitric dehydrogenase of mammalian mitochondria. I. On the roles of pyridine nucleotide transhydrogenase and the isocitric dehydrogenases in the respiration of mitochondria of normal and neoplastic tissues.","authors":["Stein AM"," Stein JH"," Kirkman SK."],"journal":"Biochemistry","year":1967,"link":"http://www.ncbi.nlm.nih.gov/pubmed/4292141","id":"4292141","citationCount":17,"stringAuthors":"Stein AM,  Stein JH,  Kirkman SK."}},{"resource":"4380379","link":"http://www.ncbi.nlm.nih.gov/pubmed/4380379","type":"PUBMED","article":{"title":"The stereochemistry of the nicotinamide adenine dinucleotide-specific isocitric dehydrogenase reaction.","authors":["Rose ZB."],"journal":"The Journal of biological chemistry","year":1966,"link":"http://www.ncbi.nlm.nih.gov/pubmed/4380379","id":"4380379","citationCount":1,"stringAuthors":"Rose ZB."}}],"name":"Isocitrate dehydrogenase [NAD] subunit alpha, mitochondrial","targetParticipants":[{"idObject":0,"name":"IDH3A","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=IDH3A","summary":null,"resource":"IDH3A"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"4292141","link":"http://www.ncbi.nlm.nih.gov/pubmed/4292141","type":"PUBMED","article":{"title":"Diphosphopyridine nucleotide specific isocitric dehydrogenase of mammalian mitochondria. I. On the roles of pyridine nucleotide transhydrogenase and the isocitric dehydrogenases in the respiration of mitochondria of normal and neoplastic tissues.","authors":["Stein AM"," Stein JH"," Kirkman SK."],"journal":"Biochemistry","year":1967,"link":"http://www.ncbi.nlm.nih.gov/pubmed/4292141","id":"4292141","citationCount":17,"stringAuthors":"Stein AM,  Stein JH,  Kirkman SK."}},{"resource":"14189899","link":"http://www.ncbi.nlm.nih.gov/pubmed/14189899","type":"PUBMED","article":{"title":"NICOTINAMIDE ADENINE DINUCLEOTIDE-SPECIFIC ISOCITRIC DEHYDROGENASE. A POSSIBLE REGULATORY PROTEIN.","authors":["SANWAL BD"," ZINK MW"," STACHOW CS."],"journal":"The Journal of biological chemistry","year":1964,"link":"http://www.ncbi.nlm.nih.gov/pubmed/14189899","id":"14189899","citationCount":13,"stringAuthors":"SANWAL BD,  ZINK MW,  STACHOW CS."}},{"resource":"4380379","link":"http://www.ncbi.nlm.nih.gov/pubmed/4380379","type":"PUBMED","article":{"title":"The stereochemistry of the nicotinamide adenine dinucleotide-specific isocitric dehydrogenase reaction.","authors":["Rose ZB."],"journal":"The Journal of biological chemistry","year":1966,"link":"http://www.ncbi.nlm.nih.gov/pubmed/4380379","id":"4380379","citationCount":1,"stringAuthors":"Rose ZB."}}],"name":"Isocitrate dehydrogenase [NAD] subunit beta, mitochondrial","targetParticipants":[{"idObject":0,"name":"IDH3B","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=IDH3B","summary":null,"resource":"IDH3B"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"4292141","link":"http://www.ncbi.nlm.nih.gov/pubmed/4292141","type":"PUBMED","article":{"title":"Diphosphopyridine nucleotide specific isocitric dehydrogenase of mammalian mitochondria. I. On the roles of pyridine nucleotide transhydrogenase and the isocitric dehydrogenases in the respiration of mitochondria of normal and neoplastic tissues.","authors":["Stein AM"," Stein JH"," Kirkman SK."],"journal":"Biochemistry","year":1967,"link":"http://www.ncbi.nlm.nih.gov/pubmed/4292141","id":"4292141","citationCount":17,"stringAuthors":"Stein AM,  Stein JH,  Kirkman SK."}},{"resource":"14189899","link":"http://www.ncbi.nlm.nih.gov/pubmed/14189899","type":"PUBMED","article":{"title":"NICOTINAMIDE ADENINE DINUCLEOTIDE-SPECIFIC ISOCITRIC DEHYDROGENASE. A POSSIBLE REGULATORY PROTEIN.","authors":["SANWAL BD"," ZINK MW"," STACHOW CS."],"journal":"The Journal of biological chemistry","year":1964,"link":"http://www.ncbi.nlm.nih.gov/pubmed/14189899","id":"14189899","citationCount":13,"stringAuthors":"SANWAL BD,  ZINK MW,  STACHOW CS."}},{"resource":"4380379","link":"http://www.ncbi.nlm.nih.gov/pubmed/4380379","type":"PUBMED","article":{"title":"The stereochemistry of the nicotinamide adenine dinucleotide-specific isocitric dehydrogenase reaction.","authors":["Rose ZB."],"journal":"The Journal of biological chemistry","year":1966,"link":"http://www.ncbi.nlm.nih.gov/pubmed/4380379","id":"4380379","citationCount":1,"stringAuthors":"Rose ZB."}}],"name":"Isocitrate dehydrogenase [NAD] subunit gamma, mitochondrial","targetParticipants":[{"idObject":0,"name":"IDH3G","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=IDH3G","summary":null,"resource":"IDH3G"}]},{"targetElements":[],"references":[{"resource":"17555402","link":"http://www.ncbi.nlm.nih.gov/pubmed/17555402","type":"PUBMED","article":{"title":"Oxygen-dependent regulation of mitochondrial respiration by hypoxia-inducible factor 1.","authors":["Semenza GL."],"journal":"The Biochemical journal","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17555402","id":"17555402","citationCount":190,"stringAuthors":"Semenza GL."}},{"resource":"17006762","link":"http://www.ncbi.nlm.nih.gov/pubmed/17006762","type":"PUBMED","article":{"title":"Kinetic parameters and lactate dehydrogenase isozyme activities support possible lactate utilization by neurons.","authors":["O'Brien J"," Kla KM"," Hopkins IB"," Malecki EA"," McKenna MC."],"journal":"Neurochemical research","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17006762","id":"17006762","citationCount":25,"stringAuthors":"O'Brien J,  Kla KM,  Hopkins IB,  Malecki EA,  McKenna MC."}},{"resource":"17308685","link":"http://www.ncbi.nlm.nih.gov/pubmed/17308685","type":"PUBMED","article":{"title":"Histochemical and histopathological study of the gastric mucosa in the portal hypertensive gastropathy.","authors":["Drăghia AC."],"journal":"Romanian journal of morphology and embryology = Revue roumaine de morphologie et embryologie","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17308685","id":"17308685","citationCount":3,"stringAuthors":"Drăghia AC."}}],"name":"L-lactate dehydrogenase A chain","targetParticipants":[{"idObject":0,"name":"LDHA","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=LDHA","summary":null,"resource":"LDHA"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"L-lactate dehydrogenase A-like 6A","targetParticipants":[{"idObject":0,"name":"LDHAL6A","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=LDHAL6A","summary":null,"resource":"LDHAL6A"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"L-lactate dehydrogenase A-like 6B","targetParticipants":[{"idObject":0,"name":"LDHAL6B","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=LDHAL6B","summary":null,"resource":"LDHAL6B"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"12054772","link":"http://www.ncbi.nlm.nih.gov/pubmed/12054772","type":"PUBMED","article":{"title":"Domain closure, substrate specificity and catalysis of D-lactate dehydrogenase from Lactobacillus bulgaricus.","authors":["Razeto A"," Kochhar S"," Hottinger H"," Dauter M"," Wilson KS"," Lamzin VS."],"journal":"Journal of molecular biology","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/12054772","id":"12054772","citationCount":29,"stringAuthors":"Razeto A,  Kochhar S,  Hottinger H,  Dauter M,  Wilson KS,  Lamzin VS."}},{"resource":"16198644","link":"http://www.ncbi.nlm.nih.gov/pubmed/16198644","type":"PUBMED","article":{"title":"A preliminary account of the properties of recombinant human Glyoxylate reductase (GRHPR), LDHA and LDHB with glyoxylate, and their potential roles in its metabolism.","authors":["Mdluli K"," Booth MP"," Brady RL"," Rumsby G."],"journal":"Biochimica et biophysica acta","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16198644","id":"16198644","citationCount":16,"stringAuthors":"Mdluli K,  Booth MP,  Brady RL,  Rumsby G."}},{"resource":"4303363","link":"http://www.ncbi.nlm.nih.gov/pubmed/4303363","type":"PUBMED","article":{"title":"Lactate dehydrogenase isoenzymes of sperm cells and tests.","authors":["Clausen J."],"journal":"The Biochemical journal","year":1969,"link":"http://www.ncbi.nlm.nih.gov/pubmed/4303363","id":"4303363","citationCount":11,"stringAuthors":"Clausen J."}}],"name":"L-lactate dehydrogenase B chain","targetParticipants":[{"idObject":0,"name":"LDHB","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=LDHB","summary":null,"resource":"LDHB"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"2751392","link":"http://www.ncbi.nlm.nih.gov/pubmed/2751392","type":"PUBMED","article":{"title":"Developmental changes in lactate dehydrogenase-X activity in young jaundiced male rats.","authors":["Gu Y"," Davis DR"," Lin YC."],"journal":"Archives of andrology","year":1989,"link":"http://www.ncbi.nlm.nih.gov/pubmed/2751392","id":"2751392","citationCount":10,"stringAuthors":"Gu Y,  Davis DR,  Lin YC."}},{"resource":"3735252","link":"http://www.ncbi.nlm.nih.gov/pubmed/3735252","type":"PUBMED","article":{"title":"Inhibition of testicular LDH-X from laboratory animals and man by gossypol and its isomers.","authors":["Morris ID"," Higgins C"," Matlin SA."],"journal":"Journal of reproduction and fertility","year":1986,"link":"http://www.ncbi.nlm.nih.gov/pubmed/3735252","id":"3735252","citationCount":3,"stringAuthors":"Morris ID,  Higgins C,  Matlin SA."}},{"resource":"182529","link":"http://www.ncbi.nlm.nih.gov/pubmed/182529","type":"PUBMED","article":{"title":"Rapid purification of lactate dehydrogenase X from mouse testes by two steps of affinity chromatography on oxamate-sepharose.","authors":["Spielmann H"," Eibs HG"," Mentzel C."],"journal":"Experientia","year":1976,"link":"http://www.ncbi.nlm.nih.gov/pubmed/182529","id":"182529","citationCount":1,"stringAuthors":"Spielmann H,  Eibs HG,  Mentzel C."}}],"name":"L-lactate dehydrogenase C chain","targetParticipants":[{"idObject":0,"name":"LDHC","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=LDHC","summary":null,"resource":"LDHC"}]},{"targetElements":[],"references":[{"resource":"16983536","link":"http://www.ncbi.nlm.nih.gov/pubmed/16983536","type":"PUBMED","article":{"title":"Heterologous expression of cDNAs encoding monodehydroascorbate reductases from the moss, Physcomitrella patens and characterization of the expressed enzymes.","authors":["Drew DP"," Lunde C"," Lahnstein J"," Fincher GB."],"journal":"Planta","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16983536","id":"16983536","citationCount":7,"stringAuthors":"Drew DP,  Lunde C,  Lahnstein J,  Fincher GB."}}],"name":"Malate dehydrogenase, cytoplasmic","targetParticipants":[{"idObject":0,"name":"MDH1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=MDH1","summary":null,"resource":"MDH1"}]},{"targetElements":[],"references":[{"resource":"17603759","link":"http://www.ncbi.nlm.nih.gov/pubmed/17603759","type":"PUBMED","article":{"title":"L-2-hydroxyglutaric aciduria, a defect of metabolite repair.","authors":["Rzem R"," Vincent MF"," Van Schaftingen E"," Veiga-da-Cunha M."],"journal":"Journal of inherited metabolic disease","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17603759","id":"17603759","citationCount":48,"stringAuthors":"Rzem R,  Vincent MF,  Van Schaftingen E,  Veiga-da-Cunha M."}},{"resource":"17619232","link":"http://www.ncbi.nlm.nih.gov/pubmed/17619232","type":"PUBMED","article":{"title":"D-mannitol production by resting state whole cell biotrans-formation of D-fructose by heterologous mannitol and formate dehydrogenase gene expression in Bacillus megaterium.","authors":["Bäumchen C"," Roth AH"," Biedendieck R"," Malten M"," Follmann M"," Sahm H"," Bringer-Meyer S"," Jahn D."],"journal":"Biotechnology journal","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17619232","id":"17619232","citationCount":11,"stringAuthors":"Bäumchen C,  Roth AH,  Biedendieck R,  Malten M,  Follmann M,  Sahm H,  Bringer-Meyer S,  Jahn D."}},{"resource":"17487443","link":"http://www.ncbi.nlm.nih.gov/pubmed/17487443","type":"PUBMED","article":{"title":"Characterization of malate dehydrogenase from the hyperthermophilic archaeon Pyrobaculum islandicum.","authors":["Yennaco LJ"," Hu Y"," Holden JF."],"journal":"Extremophiles : life under extreme conditions","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17487443","id":"17487443","citationCount":3,"stringAuthors":"Yennaco LJ,  Hu Y,  Holden JF."}},{"resource":"17203264","link":"http://www.ncbi.nlm.nih.gov/pubmed/17203264","type":"PUBMED","article":{"title":"Fluorescent sensing layer for the determination of L-malic acid in wine.","authors":["Gallarta F"," Sáinz FJ"," Sáenz C."],"journal":"Analytical and bioanalytical chemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17203264","id":"17203264","citationCount":2,"stringAuthors":"Gallarta F,  Sáinz FJ,  Sáenz C."}},{"resource":"16898590","link":"http://www.ncbi.nlm.nih.gov/pubmed/16898590","type":"PUBMED","article":{"title":"[Lymphocyte metabolism in patients with acute pancreatitis with different genotypes of GSTM1 and GSTT1 genes].","authors":["Markova EV"," Zotova NV"," Savchenko AA"," Titova NM"," Slepov EV"," Cherdantsev DV"," Konovalenko AN."],"journal":"Biomeditsinskaia khimiia","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16898590","id":"16898590","citationCount":1,"stringAuthors":"Markova EV,  Zotova NV,  Savchenko AA,  Titova NM,  Slepov EV,  Cherdantsev DV,  Konovalenko AN."}}],"name":"Malate dehydrogenase, mitochondrial","targetParticipants":[{"idObject":0,"name":"MDH2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=MDH2","summary":null,"resource":"MDH2"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"1898092","link":"http://www.ncbi.nlm.nih.gov/pubmed/1898092","type":"PUBMED","article":{"title":"The effect of ligand binding on the proteolytic pattern of methylmalonate semialdehyde dehydrogenase.","authors":["Kedishvili NY"," Popov KM"," Harris RA."],"journal":"Archives of biochemistry and biophysics","year":1991,"link":"http://www.ncbi.nlm.nih.gov/pubmed/1898092","id":"1898092","citationCount":1,"stringAuthors":"Kedishvili NY,  Popov KM,  Harris RA."}}],"name":"Methylmalonate-semialdehyde dehydrogenase [acylating], mitochondrial","targetParticipants":[{"idObject":0,"name":"ALDH6A1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=ALDH6A1","summary":null,"resource":"ALDH6A1"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"Methylsterol monooxygenase 1","targetParticipants":[{"idObject":0,"name":"MSMO1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=MSMO1","summary":null,"resource":"MSMO1"}]},{"targetElements":[],"references":[{"resource":"17216441","link":"http://www.ncbi.nlm.nih.gov/pubmed/17216441","type":"PUBMED","article":{"title":"Expression of the Escherichia coli pntAB genes encoding a membrane-bound transhydrogenase in Corynebacterium glutamicum improves L-lysine formation.","authors":["Kabus A"," Georgi T"," Wendisch VF"," Bott M."],"journal":"Applied microbiology and biotechnology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17216441","id":"17216441","citationCount":49,"stringAuthors":"Kabus A,  Georgi T,  Wendisch VF,  Bott M."}}],"name":"NAD(P) transhydrogenase, mitochondrial","targetParticipants":[{"idObject":0,"name":"NNT","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NNT","summary":null,"resource":"NNT"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NAD-dependent malic enzyme, mitochondrial","targetParticipants":[{"idObject":0,"name":"ME2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=ME2","summary":null,"resource":"ME2"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"11864782","link":"http://www.ncbi.nlm.nih.gov/pubmed/11864782","type":"PUBMED","article":{"title":"Control of oxygen free radical formation from mitochondrial complex I: roles for protein kinase A and pyruvate dehydrogenase kinase.","authors":["Raha S"," Myint AT"," Johnstone L"," Robinson BH."],"journal":"Free radical biology & medicine","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11864782","id":"11864782","citationCount":45,"stringAuthors":"Raha S,  Myint AT,  Johnstone L,  Robinson BH."}},{"resource":"10200266","link":"http://www.ncbi.nlm.nih.gov/pubmed/10200266","type":"PUBMED","article":{"title":"The NDUFA1 gene product (MWFE protein) is essential for activity of complex I in mammalian mitochondria.","authors":["Au HC"," Seo BB"," Matsuno-Yagi A"," Yagi T"," Scheffler IE."],"journal":"Proceedings of the National Academy of Sciences of the United States of America","year":1999,"link":"http://www.ncbi.nlm.nih.gov/pubmed/10200266","id":"10200266","citationCount":28,"stringAuthors":"Au HC,  Seo BB,  Matsuno-Yagi A,  Yagi T,  Scheffler IE."}}],"name":"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 1","targetParticipants":[{"idObject":0,"name":"NDUFA1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFA1","summary":null,"resource":"NDUFA1"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 10, mitochondrial","targetParticipants":[{"idObject":0,"name":"NDUFA10","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFA10","summary":null,"resource":"NDUFA10"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 11","targetParticipants":[{"idObject":0,"name":"NDUFA11","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFA11","summary":null,"resource":"NDUFA11"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 12","targetParticipants":[{"idObject":0,"name":"NDUFA12","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFA12","summary":null,"resource":"NDUFA12"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 13","targetParticipants":[{"idObject":0,"name":"NDUFA13","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFA13","summary":null,"resource":"NDUFA13"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 2","targetParticipants":[{"idObject":0,"name":"NDUFA2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFA2","summary":null,"resource":"NDUFA2"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 3","targetParticipants":[{"idObject":0,"name":"NDUFA3","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFA3","summary":null,"resource":"NDUFA3"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 4-like 2","targetParticipants":[{"idObject":0,"name":"NDUFA4L2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFA4L2","summary":null,"resource":"NDUFA4L2"}]},{"targetElements":[],"references":[{"resource":"17444656","link":"http://www.ncbi.nlm.nih.gov/pubmed/17444656","type":"PUBMED","article":{"title":"Site-specific S-glutathiolation of mitochondrial NADH ubiquinone reductase.","authors":["Chen CL"," Zhang L"," Yeh A"," Chen CA"," Green-Church KB"," Zweier JL"," Chen YR."],"journal":"Biochemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17444656","id":"17444656","citationCount":42,"stringAuthors":"Chen CL,  Zhang L,  Yeh A,  Chen CA,  Green-Church KB,  Zweier JL,  Chen YR."}},{"resource":"17209562","link":"http://www.ncbi.nlm.nih.gov/pubmed/17209562","type":"PUBMED","article":{"title":"Role of the conserved arginine 274 and histidine 224 and 228 residues in the NuoCD subunit of complex I from Escherichia coli.","authors":["Belevich G"," Euro L"," Wikström M"," Verkhovskaya M."],"journal":"Biochemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17209562","id":"17209562","citationCount":15,"stringAuthors":"Belevich G,  Euro L,  Wikström M,  Verkhovskaya M."}}],"name":"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 5","targetParticipants":[{"idObject":0,"name":"NDUFA5","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFA5","summary":null,"resource":"NDUFA5"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 6","targetParticipants":[{"idObject":0,"name":"NDUFA6","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFA6","summary":null,"resource":"NDUFA6"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 7","targetParticipants":[{"idObject":0,"name":"NDUFA7","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFA7","summary":null,"resource":"NDUFA7"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"9860297","link":"http://www.ncbi.nlm.nih.gov/pubmed/9860297","type":"PUBMED","article":{"title":"The nuclear-encoded human NADH:ubiquinone oxidoreductase NDUFA8 subunit: cDNA cloning, chromosomal localization, tissue distribution, and mutation detection in complex-I-deficient patients.","authors":["Triepels R"," van den Heuvel L"," Loeffen J"," Smeets R"," Trijbels F"," Smeitink J."],"journal":"Human genetics","year":1998,"link":"http://www.ncbi.nlm.nih.gov/pubmed/9860297","id":"9860297","citationCount":5,"stringAuthors":"Triepels R,  van den Heuvel L,  Loeffen J,  Smeets R,  Trijbels F,  Smeitink J."}}],"name":"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 8","targetParticipants":[{"idObject":0,"name":"NDUFA8","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFA8","summary":null,"resource":"NDUFA8"}]},{"targetElements":[],"references":[{"resource":"17499024","link":"http://www.ncbi.nlm.nih.gov/pubmed/17499024","type":"PUBMED","article":{"title":"The malaria parasite type II NADH:quinone oxidoreductase: an alternative enzyme for an alternative lifestyle.","authors":["Fisher N"," Bray PG"," Ward SA"," Biagini GA."],"journal":"Trends in parasitology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17499024","id":"17499024","citationCount":30,"stringAuthors":"Fisher N,  Bray PG,  Ward SA,  Biagini GA."}},{"resource":"17132781","link":"http://www.ncbi.nlm.nih.gov/pubmed/17132781","type":"PUBMED","article":{"title":"Maintenance of the metabolic homeostasis of the heart: developing a systems analysis approach.","authors":["Balaban RS."],"journal":"Annals of the New York Academy of Sciences","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17132781","id":"17132781","citationCount":15,"stringAuthors":"Balaban RS."}},{"resource":"17323923","link":"http://www.ncbi.nlm.nih.gov/pubmed/17323923","type":"PUBMED","article":{"title":"The flavoprotein subcomplex of complex I (NADH:ubiquinone oxidoreductase) from bovine heart mitochondria: insights into the mechanisms of NADH oxidation and NAD+ reduction from protein film voltammetry.","authors":["Barker CD"," Reda T"," Hirst J."],"journal":"Biochemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17323923","id":"17323923","citationCount":14,"stringAuthors":"Barker CD,  Reda T,  Hirst J."}},{"resource":"17260964","link":"http://www.ncbi.nlm.nih.gov/pubmed/17260964","type":"PUBMED","article":{"title":"Inhibition of complex I by Ca2+ reduces electron transport activity and the rate of superoxide anion production in cardiac submitochondrial particles.","authors":["Matsuzaki S"," Szweda LI."],"journal":"Biochemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17260964","id":"17260964","citationCount":11,"stringAuthors":"Matsuzaki S,  Szweda LI."}},{"resource":"17530440","link":"http://www.ncbi.nlm.nih.gov/pubmed/17530440","type":"PUBMED","article":{"title":"Cloning and sequence analysis of the gene encoding 19-kD subunit of Complex I from Dunaliella salina.","authors":["Liu Y"," Qiao DR"," Zheng HB"," Dai XL"," Bai LH"," Zeng J"," Cao Y."],"journal":"Molecular biology reports","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17530440","id":"17530440","citationCount":3,"stringAuthors":"Liu Y,  Qiao DR,  Zheng HB,  Dai XL,  Bai LH,  Zeng J,  Cao Y."}}],"name":"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial","targetParticipants":[{"idObject":0,"name":"NDUFA9","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFA9","summary":null,"resource":"NDUFA9"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 1","targetParticipants":[{"idObject":0,"name":"NDUFB1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFB1","summary":null,"resource":"NDUFB1"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 10","targetParticipants":[{"idObject":0,"name":"NDUFB10","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFB10","summary":null,"resource":"NDUFB10"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 2, mitochondrial","targetParticipants":[{"idObject":0,"name":"NDUFB2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFB2","summary":null,"resource":"NDUFB2"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 3","targetParticipants":[{"idObject":0,"name":"NDUFB3","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFB3","summary":null,"resource":"NDUFB3"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4","targetParticipants":[{"idObject":0,"name":"NDUFB4","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFB4","summary":null,"resource":"NDUFB4"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 5, mitochondrial","targetParticipants":[{"idObject":0,"name":"NDUFB5","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFB5","summary":null,"resource":"NDUFB5"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 6","targetParticipants":[{"idObject":0,"name":"NDUFB6","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFB6","summary":null,"resource":"NDUFB6"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"11864782","link":"http://www.ncbi.nlm.nih.gov/pubmed/11864782","type":"PUBMED","article":{"title":"Control of oxygen free radical formation from mitochondrial complex I: roles for protein kinase A and pyruvate dehydrogenase kinase.","authors":["Raha S"," Myint AT"," Johnstone L"," Robinson BH."],"journal":"Free radical biology & medicine","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11864782","id":"11864782","citationCount":45,"stringAuthors":"Raha S,  Myint AT,  Johnstone L,  Robinson BH."}}],"name":"NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 7","targetParticipants":[{"idObject":0,"name":"NDUFB7","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFB7","summary":null,"resource":"NDUFB7"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial","targetParticipants":[{"idObject":0,"name":"NDUFB8","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFB8","summary":null,"resource":"NDUFB8"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 9","targetParticipants":[{"idObject":0,"name":"NDUFB9","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFB9","summary":null,"resource":"NDUFB9"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NADH dehydrogenase [ubiquinone] 1 subunit C1, mitochondrial","targetParticipants":[{"idObject":0,"name":"NDUFC1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFC1","summary":null,"resource":"NDUFC1"}]},{"targetElements":[],"references":[{"resource":"17015645","link":"http://www.ncbi.nlm.nih.gov/pubmed/17015645","type":"PUBMED","article":{"title":"Regulatory loop between redox sensing of the NADH/NAD(+) ratio by Rex (YdiH) and oxidation of NADH by NADH dehydrogenase Ndh in Bacillus subtilis.","authors":["Gyan S"," Shiohira Y"," Sato I"," Takeuchi M"," Sato T."],"journal":"Journal of bacteriology","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17015645","id":"17015645","citationCount":54,"stringAuthors":"Gyan S,  Shiohira Y,  Sato I,  Takeuchi M,  Sato T."}},{"resource":"16898010","link":"http://www.ncbi.nlm.nih.gov/pubmed/16898010","type":"PUBMED","article":{"title":"Stimulation of chlororespiration by heat and high light intensity in oat plants.","authors":["Quiles MJ."],"journal":"Plant, cell & environment","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16898010","id":"16898010","citationCount":36,"stringAuthors":"Quiles MJ."}},{"resource":"17496098","link":"http://www.ncbi.nlm.nih.gov/pubmed/17496098","type":"PUBMED","article":{"title":"Generation of a membrane potential by Lactococcus lactis through aerobic electron transport.","authors":["Brooijmans RJ"," Poolman B"," Schuurman-Wolters GK"," de Vos WM"," Hugenholtz J."],"journal":"Journal of bacteriology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17496098","id":"17496098","citationCount":31,"stringAuthors":"Brooijmans RJ,  Poolman B,  Schuurman-Wolters GK,  de Vos WM,  Hugenholtz J."}},{"resource":"17513495","link":"http://www.ncbi.nlm.nih.gov/pubmed/17513495","type":"PUBMED","article":{"title":"Ischemic preconditioning prevents in vivo hyperoxygenation in postischemic myocardium with preservation of mitochondrial oxygen consumption.","authors":["Zhu X"," Liu B"," Zhou S"," Chen YR"," Deng Y"," Zweier JL"," He G."],"journal":"American journal of physiology. Heart and circulatory physiology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17513495","id":"17513495","citationCount":19,"stringAuthors":"Zhu X,  Liu B,  Zhou S,  Chen YR,  Deng Y,  Zweier JL,  He G."}},{"resource":"17614984","link":"http://www.ncbi.nlm.nih.gov/pubmed/17614984","type":"PUBMED","article":{"title":"Association of MT-ND5 gene variation with mitochondrial respiratory control ratio and NADH dehydrogenase activity in Tibet chicken embryos.","authors":["Bao HG"," Zhao CJ"," Li JY"," Wu Ch."],"journal":"Animal genetics","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17614984","id":"17614984","citationCount":3,"stringAuthors":"Bao HG,  Zhao CJ,  Li JY,  Wu Ch."}}],"name":"NADH dehydrogenase [ubiquinone] 1 subunit C2","targetParticipants":[{"idObject":0,"name":"NDUFC2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFC2","summary":null,"resource":"NDUFC2"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"14662656","link":"http://www.ncbi.nlm.nih.gov/pubmed/14662656","type":"PUBMED","article":{"title":"Mitochondrial complex I mutations in Caenorhabditis elegans produce cytochrome c oxidase deficiency, oxidative stress and vitamin-responsive lactic acidosis.","authors":["Grad LI"," Lemire BD."],"journal":"Human molecular genetics","year":2004,"link":"http://www.ncbi.nlm.nih.gov/pubmed/14662656","id":"14662656","citationCount":52,"stringAuthors":"Grad LI,  Lemire BD."}},{"resource":"8288251","link":"http://www.ncbi.nlm.nih.gov/pubmed/8288251","type":"PUBMED","article":{"title":"Chromosomal localization of the human gene encoding the 51-kDa subunit of mitochondrial complex I (NDUFV1) to 11q13.","authors":["Ali ST"," Duncan AM"," Schappert K"," Heng HH"," Tsui LC"," Chow W"," Robinson BH."],"journal":"Genomics","year":1993,"link":"http://www.ncbi.nlm.nih.gov/pubmed/8288251","id":"8288251","citationCount":13,"stringAuthors":"Ali ST,  Duncan AM,  Schappert K,  Heng HH,  Tsui LC,  Chow W,  Robinson BH."}},{"resource":"9571201","link":"http://www.ncbi.nlm.nih.gov/pubmed/9571201","type":"PUBMED","article":{"title":"Cloning of the human mitochondrial 51 kDa subunit (NDUFV1) reveals a 100% antisense homology of its 3'UTR with the 5'UTR of the gamma-interferon inducible protein (IP-30) precursor: is this a link between mitochondrial myopathy and inflammation?","authors":["Schuelke M"," Loeffen J"," Mariman E"," Smeitink J"," van den Heuvel L."],"journal":"Biochemical and biophysical research communications","year":1998,"link":"http://www.ncbi.nlm.nih.gov/pubmed/9571201","id":"9571201","citationCount":8,"stringAuthors":"Schuelke M,  Loeffen J,  Mariman E,  Smeitink J,  van den Heuvel L."}}],"name":"NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial","targetParticipants":[{"idObject":0,"name":"NDUFV1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFV1","summary":null,"resource":"NDUFV1"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"10716640","link":"http://www.ncbi.nlm.nih.gov/pubmed/10716640","type":"PUBMED","article":{"title":"Identification of genes regulated by UV/salicylic acid.","authors":["Paunesku T"," Chang-Liu CM"," Shearin-Jones P"," Watson C"," Milton J"," Oryhon J"," Salbego D"," Milosavljevic A"," Woloschak GE."],"journal":"International journal of radiation biology","year":2000,"link":"http://www.ncbi.nlm.nih.gov/pubmed/10716640","id":"10716640","citationCount":2,"stringAuthors":"Paunesku T,  Chang-Liu CM,  Shearin-Jones P,  Watson C,  Milton J,  Oryhon J,  Salbego D,  Milosavljevic A,  Woloschak GE."}}],"name":"NADH dehydrogenase [ubiquinone] flavoprotein 2, mitochondrial","targetParticipants":[{"idObject":0,"name":"NDUFV2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFV2","summary":null,"resource":"NDUFV2"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NADH dehydrogenase [ubiquinone] flavoprotein 3, mitochondrial","targetParticipants":[{"idObject":0,"name":"NDUFV3","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFV3","summary":null,"resource":"NDUFV3"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NADH dehydrogenase [ubiquinone] iron-sulfur protein 2, mitochondrial","targetParticipants":[{"idObject":0,"name":"NDUFS2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFS2","summary":null,"resource":"NDUFS2"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial","targetParticipants":[{"idObject":0,"name":"NDUFS3","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFS3","summary":null,"resource":"NDUFS3"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"11181577","link":"http://www.ncbi.nlm.nih.gov/pubmed/11181577","type":"PUBMED","article":{"title":"A nonsense mutation in the NDUFS4 gene encoding the 18 kDa (AQDQ) subunit of complex I abolishes assembly and activity of the complex in a patient with Leigh-like syndrome.","authors":["Petruzzella V"," Vergari R"," Puzziferri I"," Boffoli D"," Lamantea E"," Zeviani M"," Papa S."],"journal":"Human molecular genetics","year":2001,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11181577","id":"11181577","citationCount":54,"stringAuthors":"Petruzzella V,  Vergari R,  Puzziferri I,  Boffoli D,  Lamantea E,  Zeviani M,  Papa S."}},{"resource":"11864782","link":"http://www.ncbi.nlm.nih.gov/pubmed/11864782","type":"PUBMED","article":{"title":"Control of oxygen free radical formation from mitochondrial complex I: roles for protein kinase A and pyruvate dehydrogenase kinase.","authors":["Raha S"," Myint AT"," Johnstone L"," Robinson BH."],"journal":"Free radical biology & medicine","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11864782","id":"11864782","citationCount":45,"stringAuthors":"Raha S,  Myint AT,  Johnstone L,  Robinson BH."}},{"resource":"11860175","link":"http://www.ncbi.nlm.nih.gov/pubmed/11860175","type":"PUBMED","article":{"title":"The NADH: ubiquinone oxidoreductase (complex I) of the mammalian respiratory chain and the cAMP cascade.","authors":["Papa S"," Sardanelli AM"," Scacco S"," Petruzzella V"," Technikova-Dobrova Z"," Vergari R"," Signorile A."],"journal":"Journal of bioenergetics and biomembranes","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11860175","id":"11860175","citationCount":23,"stringAuthors":"Papa S,  Sardanelli AM,  Scacco S,  Petruzzella V,  Technikova-Dobrova Z,  Vergari R,  Signorile A."}}],"name":"NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial","targetParticipants":[{"idObject":0,"name":"NDUFS4","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFS4","summary":null,"resource":"NDUFS4"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"10070614","link":"http://www.ncbi.nlm.nih.gov/pubmed/10070614","type":"PUBMED","article":{"title":"The human NADH: ubiquinone oxidoreductase NDUFS5 (15 kDa) subunit: cDNA cloning, chromosomal localization, tissue distribution and the absence of mutations in isolated complex I-deficient patients.","authors":["Loeffen J"," Smeets R"," Smeitink J"," Triepels R"," Sengers R"," Trijbels F"," van den Heuvel L."],"journal":"Journal of inherited metabolic disease","year":1999,"link":"http://www.ncbi.nlm.nih.gov/pubmed/10070614","id":"10070614","citationCount":3,"stringAuthors":"Loeffen J,  Smeets R,  Smeitink J,  Triepels R,  Sengers R,  Trijbels F,  van den Heuvel L."}}],"name":"NADH dehydrogenase [ubiquinone] iron-sulfur protein 5","targetParticipants":[{"idObject":0,"name":"NDUFS5","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFS5","summary":null,"resource":"NDUFS5"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NADH dehydrogenase [ubiquinone] iron-sulfur protein 6, mitochondrial","targetParticipants":[{"idObject":0,"name":"NDUFS6","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFS6","summary":null,"resource":"NDUFS6"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"10097178","link":"http://www.ncbi.nlm.nih.gov/pubmed/10097178","type":"PUBMED","article":{"title":"NADH-quinone oxidoreductase: PSST subunit couples electron transfer from iron-sulfur cluster N2 to quinone.","authors":["Schuler F"," Yano T"," Di Bernardo S"," Yagi T"," Yankovskaya V"," Singer TP"," Casida JE."],"journal":"Proceedings of the National Academy of Sciences of the United States of America","year":1999,"link":"http://www.ncbi.nlm.nih.gov/pubmed/10097178","id":"10097178","citationCount":51,"stringAuthors":"Schuler F,  Yano T,  Di Bernardo S,  Yagi T,  Yankovskaya V,  Singer TP,  Casida JE."}},{"resource":"8369340","link":"http://www.ncbi.nlm.nih.gov/pubmed/8369340","type":"PUBMED","article":{"title":"Intimate relationships of the large and the small subunits of all nickel hydrogenases with two nuclear-encoded subunits of mitochondrial NADH: ubiquinone oxidoreductase.","authors":["Albracht SP."],"journal":"Biochimica et biophysica acta","year":1993,"link":"http://www.ncbi.nlm.nih.gov/pubmed/8369340","id":"8369340","citationCount":22,"stringAuthors":"Albracht SP."}},{"resource":"8938450","link":"http://www.ncbi.nlm.nih.gov/pubmed/8938450","type":"PUBMED","article":{"title":"Assignment of the PSST subunit gene of human mitochondrial complex I to chromosome 19p13.","authors":["Hyslop SJ"," Duncan AM"," Pitkänen S"," Robinson BH."],"journal":"Genomics","year":1996,"link":"http://www.ncbi.nlm.nih.gov/pubmed/8938450","id":"8938450","citationCount":8,"stringAuthors":"Hyslop SJ,  Duncan AM,  Pitkänen S,  Robinson BH."}}],"name":"NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial","targetParticipants":[{"idObject":0,"name":"NDUFS7","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFS7","summary":null,"resource":"NDUFS7"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"9837812","link":"http://www.ncbi.nlm.nih.gov/pubmed/9837812","type":"PUBMED","article":{"title":"The first nuclear-encoded complex I mutation in a patient with Leigh syndrome.","authors":["Loeffen J"," Smeitink J"," Triepels R"," Smeets R"," Schuelke M"," Sengers R"," Trijbels F"," Hamel B"," Mullaart R"," van den Heuvel L."],"journal":"American journal of human genetics","year":1998,"link":"http://www.ncbi.nlm.nih.gov/pubmed/9837812","id":"9837812","citationCount":101,"stringAuthors":"Loeffen J,  Smeitink J,  Triepels R,  Smeets R,  Schuelke M,  Sengers R,  Trijbels F,  Hamel B,  Mullaart R,  van den Heuvel L."}},{"resource":"11086155","link":"http://www.ncbi.nlm.nih.gov/pubmed/11086155","type":"PUBMED","article":{"title":"Learning from hydrogenases: location of a proton pump and of a second FMN in bovine NADH--ubiquinone oxidoreductase (Complex I).","authors":["Albracht SP"," Hedderich R."],"journal":"FEBS letters","year":2000,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11086155","id":"11086155","citationCount":29,"stringAuthors":"Albracht SP,  Hedderich R."}},{"resource":"9576793","link":"http://www.ncbi.nlm.nih.gov/pubmed/9576793","type":"PUBMED","article":{"title":"Association of ferredoxin-NADP oxidoreductase with the chloroplastic pyridine nucleotide dehydrogenase complex in barley leaves","authors":["Jose Quiles M"," Cuello J."],"journal":"Plant physiology","year":1998,"link":"http://www.ncbi.nlm.nih.gov/pubmed/9576793","id":"9576793","citationCount":23,"stringAuthors":"Jose Quiles M,  Cuello J."}}],"name":"NADH dehydrogenase [ubiquinone] iron-sulfur protein 8, mitochondrial","targetParticipants":[{"idObject":0,"name":"NDUFS8","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFS8","summary":null,"resource":"NDUFS8"}]},{"targetElements":[],"references":[{"resource":"17040106","link":"http://www.ncbi.nlm.nih.gov/pubmed/17040106","type":"PUBMED","article":{"title":"Reductive detoxification of arylhydroxylamine carcinogens by human NADH cytochrome b5 reductase and cytochrome b5.","authors":["Kurian JR"," Chin NA"," Longlais BJ"," Hayes KL"," Trepanier LA."],"journal":"Chemical research in toxicology","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17040106","id":"17040106","citationCount":14,"stringAuthors":"Kurian JR,  Chin NA,  Longlais BJ,  Hayes KL,  Trepanier LA."}},{"resource":"17082011","link":"http://www.ncbi.nlm.nih.gov/pubmed/17082011","type":"PUBMED","article":{"title":"A novel mutation of the cytochrome-b5 reductase gene in an Indian patient: the molecular basis of type I methemoglobinemia.","authors":["Nussenzveig RH"," Lingam HB"," Gaikwad A"," Zhu Q"," Jing N"," Prchal JT."],"journal":"Haematologica","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17082011","id":"17082011","citationCount":9,"stringAuthors":"Nussenzveig RH,  Lingam HB,  Gaikwad A,  Zhu Q,  Jing N,  Prchal JT."}},{"resource":"16814740","link":"http://www.ncbi.nlm.nih.gov/pubmed/16814740","type":"PUBMED","article":{"title":"Expression and characterization of a functional canine variant of cytochrome b5 reductase.","authors":["Roma GW"," Crowley LJ"," Barber MJ."],"journal":"Archives of biochemistry and biophysics","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16814740","id":"16814740","citationCount":5,"stringAuthors":"Roma GW,  Crowley LJ,  Barber MJ."}},{"resource":"17401193","link":"http://www.ncbi.nlm.nih.gov/pubmed/17401193","type":"PUBMED","article":{"title":"Structure of Physarum polycephalum cytochrome b5 reductase at 1.56 A resolution.","authors":["Kim S"," Suga M"," Ogasahara K"," Ikegami T"," Minami Y"," Yubisui T"," Tsukihara T."],"journal":"Acta crystallographica. Section F, Structural biology and crystallization communications","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17401193","id":"17401193","citationCount":3,"stringAuthors":"Kim S,  Suga M,  Ogasahara K,  Ikegami T,  Minami Y,  Yubisui T,  Tsukihara T."}},{"resource":"17341833","link":"http://www.ncbi.nlm.nih.gov/pubmed/17341833","type":"PUBMED","article":{"title":"Structure and properties of the recombinant NADH-cytochrome b5 reductase of Physarum polycephalum.","authors":["Ikegami T"," Kameyama E"," Yamamoto SY"," Minami Y"," Yubisui T."],"journal":"Bioscience, biotechnology, and biochemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17341833","id":"17341833","citationCount":1,"stringAuthors":"Ikegami T,  Kameyama E,  Yamamoto SY,  Minami Y,  Yubisui T."}}],"name":"NADH-cytochrome b5 reductase 3","targetParticipants":[{"idObject":0,"name":"CYB5R3","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=CYB5R3","summary":null,"resource":"CYB5R3"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial","targetParticipants":[{"idObject":0,"name":"NDUFS1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NDUFS1","summary":null,"resource":"NDUFS1"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"11752352","link":"http://www.ncbi.nlm.nih.gov/pubmed/11752352","type":"PUBMED","article":{"title":"TTD: Therapeutic Target Database.","authors":["Chen X"," Ji ZL"," Chen YZ."],"journal":"Nucleic acids research","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11752352","id":"11752352","citationCount":104,"stringAuthors":"Chen X,  Ji ZL,  Chen YZ."}}],"name":"NADH-ubiquinone oxidoreductase chain 1","targetParticipants":[{"idObject":0,"name":"MT-ND1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=MT-ND1","summary":null,"resource":"MT-ND1"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"11752352","link":"http://www.ncbi.nlm.nih.gov/pubmed/11752352","type":"PUBMED","article":{"title":"TTD: Therapeutic Target Database.","authors":["Chen X"," Ji ZL"," Chen YZ."],"journal":"Nucleic acids research","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11752352","id":"11752352","citationCount":104,"stringAuthors":"Chen X,  Ji ZL,  Chen YZ."}},{"resource":"15700717","link":"http://www.ncbi.nlm.nih.gov/pubmed/15700717","type":"PUBMED","article":{"title":"Differences in activity of cytochrome C oxidase in brain between sleep and wakefulness.","authors":["Nikonova EV"," Vijayasarathy C"," Zhang L"," Cater JR"," Galante RJ"," Ward SE"," Avadhani NG"," Pack AI."],"journal":"Sleep","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15700717","id":"15700717","citationCount":14,"stringAuthors":"Nikonova EV,  Vijayasarathy C,  Zhang L,  Cater JR,  Galante RJ,  Ward SE,  Avadhani NG,  Pack AI."}},{"resource":"12882707","link":"http://www.ncbi.nlm.nih.gov/pubmed/12882707","type":"PUBMED","article":{"title":"[The changes of gene expression in multiple myeloma treated with thalidomide].","authors":["Zhang HB"," Chen SL"," Liu JZ"," Xiao B"," Chen ZB"," Wang HJ."],"journal":"Zhonghua nei ke za zhi","year":2003,"link":"http://www.ncbi.nlm.nih.gov/pubmed/12882707","id":"12882707","citationCount":0,"stringAuthors":"Zhang HB,  Chen SL,  Liu JZ,  Xiao B,  Chen ZB,  Wang HJ."}}],"name":"NADH-ubiquinone oxidoreductase chain 2","targetParticipants":[{"idObject":0,"name":"MT-ND2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=MT-ND2","summary":null,"resource":"MT-ND2"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"11752352","link":"http://www.ncbi.nlm.nih.gov/pubmed/11752352","type":"PUBMED","article":{"title":"TTD: Therapeutic Target Database.","authors":["Chen X"," Ji ZL"," Chen YZ."],"journal":"Nucleic acids research","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11752352","id":"11752352","citationCount":104,"stringAuthors":"Chen X,  Ji ZL,  Chen YZ."}}],"name":"NADH-ubiquinone oxidoreductase chain 3","targetParticipants":[{"idObject":0,"name":"MT-ND3","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=MT-ND3","summary":null,"resource":"MT-ND3"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"9950599","link":"http://www.ncbi.nlm.nih.gov/pubmed/9950599","type":"PUBMED","article":{"title":"Oxidative stress induces differential gene expression in a human lens epithelial cell line.","authors":["Carper DA"," Sun JK"," Iwata T"," Zigler JS"," Ibaraki N"," Lin LR"," Reddy V."],"journal":"Investigative ophthalmology & visual science","year":1999,"link":"http://www.ncbi.nlm.nih.gov/pubmed/9950599","id":"9950599","citationCount":17,"stringAuthors":"Carper DA,  Sun JK,  Iwata T,  Zigler JS,  Ibaraki N,  Lin LR,  Reddy V."}},{"resource":"15560738","link":"http://www.ncbi.nlm.nih.gov/pubmed/15560738","type":"PUBMED","article":{"title":"Alterations in mitochondrial and apoptosis-regulating gene expression in photodynamic therapy-resistant variants of HT29 colon carcinoma cells.","authors":["Shen XY"," Zacal N"," Singh G"," Rainbow AJ."],"journal":"Photochemistry and photobiology","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15560738","id":"15560738","citationCount":16,"stringAuthors":"Shen XY,  Zacal N,  Singh G,  Rainbow AJ."}},{"resource":"7846157","link":"http://www.ncbi.nlm.nih.gov/pubmed/7846157","type":"PUBMED","article":{"title":"Deletion of the structural gene for the NADH-dehydrogenase subunit 4 of Synechocystis 6803 alters respiratory properties.","authors":["Dzelzkalns VA"," Obinger C"," Regelsberger G"," Niederhauser H"," Kamensek M"," Peschek GA"," Bogorad L."],"journal":"Plant physiology","year":1994,"link":"http://www.ncbi.nlm.nih.gov/pubmed/7846157","id":"7846157","citationCount":7,"stringAuthors":"Dzelzkalns VA,  Obinger C,  Regelsberger G,  Niederhauser H,  Kamensek M,  Peschek GA,  Bogorad L."}}],"name":"NADH-ubiquinone oxidoreductase chain 4","targetParticipants":[{"idObject":0,"name":"MT-ND4","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=MT-ND4","summary":null,"resource":"MT-ND4"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NADH-ubiquinone oxidoreductase chain 4L","targetParticipants":[{"idObject":0,"name":"MT-ND4L","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=MT-ND4L","summary":null,"resource":"MT-ND4L"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"9071018","link":"http://www.ncbi.nlm.nih.gov/pubmed/9071018","type":"PUBMED","article":{"title":"Phylogenetic reconstruction of the Felidae using 16S rRNA and NADH-5 mitochondrial genes.","authors":["Johnson WE"," O'Brien SJ."],"journal":"Journal of molecular evolution","year":1997,"link":"http://www.ncbi.nlm.nih.gov/pubmed/9071018","id":"9071018","citationCount":41,"stringAuthors":"Johnson WE,  O'Brien SJ."}},{"resource":"17614984","link":"http://www.ncbi.nlm.nih.gov/pubmed/17614984","type":"PUBMED","article":{"title":"Association of MT-ND5 gene variation with mitochondrial respiratory control ratio and NADH dehydrogenase activity in Tibet chicken embryos.","authors":["Bao HG"," Zhao CJ"," Li JY"," Wu Ch."],"journal":"Animal genetics","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17614984","id":"17614984","citationCount":3,"stringAuthors":"Bao HG,  Zhao CJ,  Li JY,  Wu Ch."}}],"name":"NADH-ubiquinone oxidoreductase chain 5","targetParticipants":[{"idObject":0,"name":"MT-ND5","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=MT-ND5","summary":null,"resource":"MT-ND5"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"NADH-ubiquinone oxidoreductase chain 6","targetParticipants":[{"idObject":0,"name":"MT-ND6","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=MT-ND6","summary":null,"resource":"MT-ND6"}]},{"targetElements":[],"references":[{"resource":"17197218","link":"http://www.ncbi.nlm.nih.gov/pubmed/17197218","type":"PUBMED","article":{"title":"Determining Actinobacillus succinogenes metabolic pathways and fluxes by NMR and GC-MS analyses of 13C-labeled metabolic product isotopomers.","authors":["McKinlay JB"," Shachar-Hill Y"," Zeikus JG"," Vieille C."],"journal":"Metabolic engineering","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17197218","id":"17197218","citationCount":41,"stringAuthors":"McKinlay JB,  Shachar-Hill Y,  Zeikus JG,  Vieille C."}}],"name":"NADP-dependent malic enzyme","targetParticipants":[{"idObject":0,"name":"ME1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=ME1","summary":null,"resource":"ME1"}]},{"targetElements":[],"references":[{"resource":"17603759","link":"http://www.ncbi.nlm.nih.gov/pubmed/17603759","type":"PUBMED","article":{"title":"L-2-hydroxyglutaric aciduria, a defect of metabolite repair.","authors":["Rzem R"," Vincent MF"," Van Schaftingen E"," Veiga-da-Cunha M."],"journal":"Journal of inherited metabolic disease","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17603759","id":"17603759","citationCount":48,"stringAuthors":"Rzem R,  Vincent MF,  Van Schaftingen E,  Veiga-da-Cunha M."}},{"resource":"17080607","link":"http://www.ncbi.nlm.nih.gov/pubmed/17080607","type":"PUBMED","article":{"title":"Identification of cold acclimation-responsive Rhododendron genes for lipid metabolism, membrane transport and lignin biosynthesis: importance of moderately abundant ESTs in genomic studies.","authors":["Wei H"," Dhanaraj AL"," Arora R"," Rowland LJ"," Fu Y"," Sun L."],"journal":"Plant, cell & environment","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17080607","id":"17080607","citationCount":21,"stringAuthors":"Wei H,  Dhanaraj AL,  Arora R,  Rowland LJ,  Fu Y,  Sun L."}},{"resource":"16740313","link":"http://www.ncbi.nlm.nih.gov/pubmed/16740313","type":"PUBMED","article":{"title":"An NADH-tetrazolium-coupled sensitive assay for malate dehydrogenase in mitochondria and crude tissue homogenates.","authors":["Luo C"," Wang X"," Long J"," Liu J."],"journal":"Journal of biochemical and biophysical methods","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16740313","id":"16740313","citationCount":9,"stringAuthors":"Luo C,  Wang X,  Long J,  Liu J."}}],"name":"NADP-dependent malic enzyme, mitochondrial","targetParticipants":[{"idObject":0,"name":"ME3","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=ME3","summary":null,"resource":"ME3"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"Peroxisomal bifunctional enzyme","targetParticipants":[{"idObject":0,"name":"EHHADH","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=EHHADH","summary":null,"resource":"EHHADH"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"12517343","link":"http://www.ncbi.nlm.nih.gov/pubmed/12517343","type":"PUBMED","article":{"title":"Binary structure of the two-domain (3R)-hydroxyacyl-CoA dehydrogenase from rat peroxisomal multifunctional enzyme type 2 at 2.38 A resolution.","authors":["Haapalainen AM"," Koski MK"," Qin YM"," Hiltunen JK"," Glumoff T."],"journal":"Structure (London, England : 1993)","year":2003,"link":"http://www.ncbi.nlm.nih.gov/pubmed/12517343","id":"12517343","citationCount":18,"stringAuthors":"Haapalainen AM,  Koski MK,  Qin YM,  Hiltunen JK,  Glumoff T."}}],"name":"Peroxisomal multifunctional enzyme type 2","targetParticipants":[{"idObject":0,"name":"HSD17B4","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=HSD17B4","summary":null,"resource":"HSD17B4"}]},{"targetElements":[],"references":[{"resource":"16777263","link":"http://www.ncbi.nlm.nih.gov/pubmed/16777263","type":"PUBMED","article":{"title":"Glutamine synthetase and glutamate dehydrogenase contribute differentially to proline accumulation in leaves of wheat (Triticum aestivum) seedlings exposed to different salinity.","authors":["Wang ZQ"," Yuan YZ"," Ou JQ"," Lin QH"," Zhang CF."],"journal":"Journal of plant physiology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16777263","id":"16777263","citationCount":28,"stringAuthors":"Wang ZQ,  Yuan YZ,  Ou JQ,  Lin QH,  Zhang CF."}},{"resource":"17474756","link":"http://www.ncbi.nlm.nih.gov/pubmed/17474756","type":"PUBMED","article":{"title":"Plant P5C reductase as a new target for aminomethylenebisphosphonates.","authors":["Forlani G"," Giberti S"," Berlicki L"," Petrollino D"," Kafarski P."],"journal":"Journal of agricultural and food chemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17474756","id":"17474756","citationCount":13,"stringAuthors":"Forlani G,  Giberti S,  Berlicki L,  Petrollino D,  Kafarski P."}}],"name":"Pyrroline-5-carboxylate reductase 1, mitochondrial","targetParticipants":[{"idObject":0,"name":"PYCR1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=PYCR1","summary":null,"resource":"PYCR1"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"11479381","link":"http://www.ncbi.nlm.nih.gov/pubmed/11479381","type":"PUBMED","article":{"title":"Purification and characterization of Delta(1)-pyrroline-5-carboxylate reductase isoenzymes, indicating differential distribution in spinach (Spinacia oleracea L.) leaves.","authors":["Murahama M"," Yoshida T"," Hayashi F"," Ichino T"," Sanada Y"," Wada K."],"journal":"Plant & cell physiology","year":2001,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11479381","id":"11479381","citationCount":12,"stringAuthors":"Murahama M,  Yoshida T,  Hayashi F,  Ichino T,  Sanada Y,  Wada K."}}],"name":"Pyrroline-5-carboxylate reductase 2","targetParticipants":[{"idObject":0,"name":"PYCR2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=PYCR2","summary":null,"resource":"PYCR2"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"Pyruvate dehydrogenase E1 component subunit alpha, somatic form, mitochondrial","targetParticipants":[{"idObject":0,"name":"PDHA1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=PDHA1","summary":null,"resource":"PDHA1"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"Pyruvate dehydrogenase E1 component subunit alpha, testis-specific form, mitochondrial","targetParticipants":[{"idObject":0,"name":"PDHA2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=PDHA2","summary":null,"resource":"PDHA2"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"1116996","link":"http://www.ncbi.nlm.nih.gov/pubmed/1116996","type":"PUBMED","article":{"title":"Regulation of pyruvate dehydrogenase in isolated rat liver mitochondria. Effects of octanoate, oxidation-reduction state, and adenosine triphosphate to adenosine diphosphate ratio.","authors":["Taylor SI"," Mukherjee C"," Jungas RL."],"journal":"The Journal of biological chemistry","year":1975,"link":"http://www.ncbi.nlm.nih.gov/pubmed/1116996","id":"1116996","citationCount":34,"stringAuthors":"Taylor SI,  Mukherjee C,  Jungas RL."}}],"name":"Pyruvate dehydrogenase E1 component subunit beta, mitochondrial","targetParticipants":[{"idObject":0,"name":"PDHB","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=PDHB","summary":null,"resource":"PDHB"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"11872149","link":"http://www.ncbi.nlm.nih.gov/pubmed/11872149","type":"PUBMED","article":{"title":"4-(N,N-dipropylamino)benzaldehyde inhibits the oxidation of all-trans retinal to all-trans retinoic acid by ALDH1A1, but not the differentiation of HL-60 promyelocytic leukemia cells exposed to all-trans retinal.","authors":["Russo J"," Barnes A"," Berger K"," Desgrosellier J"," Henderson J"," Kanters A"," Merkov L."],"journal":"BMC pharmacology","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11872149","id":"11872149","citationCount":10,"stringAuthors":"Russo J,  Barnes A,  Berger K,  Desgrosellier J,  Henderson J,  Kanters A,  Merkov L."}},{"resource":"16583981","link":"http://www.ncbi.nlm.nih.gov/pubmed/16583981","type":"PUBMED","article":{"title":"Activities of cytosolic aldehyde dehydrogenase isozymes in colon cancer: determination using selective, fluorimetric assays.","authors":["Wroczyński P"," Nowak M"," Wierzchowski J"," Szubert A"," Polański J."],"journal":"Acta poloniae pharmaceutica","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16583981","id":"16583981","citationCount":3,"stringAuthors":"Wroczyński P,  Nowak M,  Wierzchowski J,  Szubert A,  Polański J."}}],"name":"Retinal dehydrogenase 1","targetParticipants":[{"idObject":0,"name":"ALDH1A1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=ALDH1A1","summary":null,"resource":"ALDH1A1"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"10320326","link":"http://www.ncbi.nlm.nih.gov/pubmed/10320326","type":"PUBMED","article":{"title":"The structure of retinal dehydrogenase type II at 2.7 A resolution: implications for retinal specificity.","authors":["Lamb AL"," Newcomer ME."],"journal":"Biochemistry","year":1999,"link":"http://www.ncbi.nlm.nih.gov/pubmed/10320326","id":"10320326","citationCount":51,"stringAuthors":"Lamb AL,  Newcomer ME."}},{"resource":"11872149","link":"http://www.ncbi.nlm.nih.gov/pubmed/11872149","type":"PUBMED","article":{"title":"4-(N,N-dipropylamino)benzaldehyde inhibits the oxidation of all-trans retinal to all-trans retinoic acid by ALDH1A1, but not the differentiation of HL-60 promyelocytic leukemia cells exposed to all-trans retinal.","authors":["Russo J"," Barnes A"," Berger K"," Desgrosellier J"," Henderson J"," Kanters A"," Merkov L."],"journal":"BMC pharmacology","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11872149","id":"11872149","citationCount":10,"stringAuthors":"Russo J,  Barnes A,  Berger K,  Desgrosellier J,  Henderson J,  Kanters A,  Merkov L."}}],"name":"Retinal dehydrogenase 2","targetParticipants":[{"idObject":0,"name":"ALDH1A2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=ALDH1A2","summary":null,"resource":"ALDH1A2"}]},{"targetElements":[],"references":[{"resource":"16905546","link":"http://www.ncbi.nlm.nih.gov/pubmed/16905546","type":"PUBMED","article":{"title":"NQO1 and NQO2 regulation of humoral immunity and autoimmunity.","authors":["Iskander K"," Li J"," Han S"," Zheng B"," Jaiswal AK."],"journal":"The Journal of biological chemistry","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16905546","id":"16905546","citationCount":28,"stringAuthors":"Iskander K,  Li J,  Han S,  Zheng B,  Jaiswal AK."}},{"resource":"17031400","link":"http://www.ncbi.nlm.nih.gov/pubmed/17031400","type":"PUBMED","article":{"title":"Reduction of mitomycin C is catalysed by human recombinant NRH:quinone oxidoreductase 2 using reduced nicotinamide adenine dinucleotide as an electron donating co-factor.","authors":["Jamieson D"," Tung AT"," Knox RJ"," Boddy AV."],"journal":"British journal of cancer","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17031400","id":"17031400","citationCount":12,"stringAuthors":"Jamieson D,  Tung AT,  Knox RJ,  Boddy AV."}}],"name":"Ribosyldihydronicotinamide dehydrogenase [quinone]","targetParticipants":[{"idObject":0,"name":"NQO2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NQO2","summary":null,"resource":"NQO2"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"Short-chain specific acyl-CoA dehydrogenase, mitochondrial","targetParticipants":[{"idObject":0,"name":"ACADS","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=ACADS","summary":null,"resource":"ACADS"}]},{"targetElements":[],"references":[{"resource":"17508915","link":"http://www.ncbi.nlm.nih.gov/pubmed/17508915","type":"PUBMED","article":{"title":"Pyridine nucleotide redox abnormalities in diabetes.","authors":["Ido Y."],"journal":"Antioxidants & redox signaling","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17508915","id":"17508915","citationCount":32,"stringAuthors":"Ido Y."}},{"resource":"17343568","link":"http://www.ncbi.nlm.nih.gov/pubmed/17343568","type":"PUBMED","article":{"title":"Catalytic mechanism of Zn2+-dependent polyol dehydrogenases: kinetic comparison of sheep liver sorbitol dehydrogenase with wild-type and Glu154-->Cys forms of yeast xylitol dehydrogenase.","authors":["Klimacek M"," Hellmer H"," Nidetzky B."],"journal":"The Biochemical journal","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17343568","id":"17343568","citationCount":8,"stringAuthors":"Klimacek M,  Hellmer H,  Nidetzky B."}}],"name":"Sorbitol dehydrogenase","targetParticipants":[{"idObject":0,"name":"SORD","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=SORD","summary":null,"resource":"SORD"}]},{"targetElements":[],"references":[{"resource":"17595315","link":"http://www.ncbi.nlm.nih.gov/pubmed/17595315","type":"PUBMED","article":{"title":"Modulation of human CYP19A1 activity by mutant NADPH P450 oxidoreductase.","authors":["Pandey AV"," Kempná P"," Hofer G"," Mullis PE"," Flück CE."],"journal":"Molecular endocrinology (Baltimore, Md.)","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17595315","id":"17595315","citationCount":44,"stringAuthors":"Pandey AV,  Kempná P,  Hofer G,  Mullis PE,  Flück CE."}}],"name":"Steroid 17-alpha-hydroxylase/17,20 lyase","targetParticipants":[{"idObject":0,"name":"CYP17A1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=CYP17A1","summary":null,"resource":"CYP17A1"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"15805545","link":"http://www.ncbi.nlm.nih.gov/pubmed/15805545","type":"PUBMED","article":{"title":"Changes in gene expression associated with loss of function of the NSDHL sterol dehydrogenase in mouse embryonic fibroblasts.","authors":["Cunningham D"," Swartzlander D"," Liyanarachchi S"," Davuluri RV"," Herman GE."],"journal":"Journal of Lipid Research","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15805545","id":"15805545","citationCount":8,"stringAuthors":"Cunningham D,  Swartzlander D,  Liyanarachchi S,  Davuluri RV,  Herman GE."}}],"name":"Sterol-4-alpha-carboxylate 3-dehydrogenase, decarboxylating","targetParticipants":[{"idObject":0,"name":"NSDHL","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NSDHL","summary":null,"resource":"NSDHL"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"Succinate-semialdehyde dehydrogenase, mitochondrial","targetParticipants":[{"idObject":0,"name":"ALDH5A1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=ALDH5A1","summary":null,"resource":"ALDH5A1"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"237755","link":"http://www.ncbi.nlm.nih.gov/pubmed/237755","type":"PUBMED","article":{"title":"Relationship between steroids and pyridine nucleotides in the oxido-reduction catalyzed by the 17 beta-hydroxysteroid dehydrogenase purified from the porcine testicular microsomal fraction.","authors":["Inano H"," Tamaoki B."],"journal":"European journal of biochemistry","year":1975,"link":"http://www.ncbi.nlm.nih.gov/pubmed/237755","id":"237755","citationCount":6,"stringAuthors":"Inano H,  Tamaoki B."}}],"name":"Testosterone 17-beta-dehydrogenase 3","targetParticipants":[{"idObject":0,"name":"HSD17B3","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=HSD17B3","summary":null,"resource":"HSD17B3"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}}],"name":"Trifunctional enzyme subunit alpha, mitochondrial","targetParticipants":[{"idObject":0,"name":"HADHA","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=HADHA","summary":null,"resource":"HADHA"}]},{"targetElements":[],"references":[{"resource":"16790533","link":"http://www.ncbi.nlm.nih.gov/pubmed/16790533","type":"PUBMED","article":{"title":"A potential role for cyclized quinones derived from dopamine, DOPA, and 3,4-dihydroxyphenylacetic acid in proteasomal inhibition.","authors":["Zafar KS"," Siegel D"," Ross D."],"journal":"Molecular pharmacology","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16790533","id":"16790533","citationCount":38,"stringAuthors":"Zafar KS,  Siegel D,  Ross D."}},{"resource":"17292452","link":"http://www.ncbi.nlm.nih.gov/pubmed/17292452","type":"PUBMED","article":{"title":"Decolourization of azo dye methyl red by Saccharomyces cerevisiae MTCC 463.","authors":["Jadhav JP"," Parshetti GK"," Kalme SD"," Govindwar SP."],"journal":"Chemosphere","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17292452","id":"17292452","citationCount":37,"stringAuthors":"Jadhav JP,  Parshetti GK,  Kalme SD,  Govindwar SP."}}],"name":"Tyrosinase","targetParticipants":[{"idObject":0,"name":"TYR","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=TYR","summary":null,"resource":"TYR"}]},{"targetElements":[],"references":[{"resource":"17139284","link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","type":"PUBMED","article":{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":852,"stringAuthors":"Overington JP,  Al-Lazikani B,  Hopkins AL."}},{"resource":"17016423","link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","type":"PUBMED","article":{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":146,"stringAuthors":"Imming P,  Sinning C,  Meyer A."}},{"resource":"1472079","link":"http://www.ncbi.nlm.nih.gov/pubmed/1472079","type":"PUBMED","article":{"title":"Mechanism of cadmium-decreased glucuronidation in the rat.","authors":["Alary J"," Cravedi JP"," Baradat M"," Carrera G."],"journal":"Biochemical pharmacology","year":1992,"link":"http://www.ncbi.nlm.nih.gov/pubmed/1472079","id":"1472079","citationCount":3,"stringAuthors":"Alary J,  Cravedi JP,  Baradat M,  Carrera G."}},{"resource":"3804697","link":"http://www.ncbi.nlm.nih.gov/pubmed/3804697","type":"PUBMED","article":{"title":"Regulatory mechanisms of UDP-glucuronic acid biosynthesis in cultured human skin fibroblasts.","authors":["Castellani AA"," De Luca G"," Rindi S"," Salvini R"," Tira ME."],"journal":"The Italian journal of biochemistry","year":1986,"link":"http://www.ncbi.nlm.nih.gov/pubmed/3804697","id":"3804697","citationCount":2,"stringAuthors":"Castellani AA,  De Luca G,  Rindi S,  Salvini R,  Tira ME."}}],"name":"UDP-glucose 6-dehydrogenase","targetParticipants":[{"idObject":0,"name":"UGDH","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=UGDH","summary":null,"resource":"UGDH"}]}],"bloodBrainBarrier":"YES"}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/drug_target_sample/models/all/bioEntities/elements/columns=id,bounds,modelId&id=436152&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/drug_target_sample/models/all/bioEntities/elements/columns=id,bounds,modelId&id=436152&token=MOCK_TOKEN_ID&
new file mode 100644
index 0000000000000000000000000000000000000000..4aa55fd2f4815fe432148ac676a4061eebeb159c
--- /dev/null
+++ b/frontend-js/testFiles/apiCalls/projects/drug_target_sample/models/all/bioEntities/elements/columns=id,bounds,modelId&id=436152&token=MOCK_TOKEN_ID&
@@ -0,0 +1 @@
+[{"modelId":20637,"bounds":{"x":1225.7682370820667,"width":80.0,"y":66.0,"height":40.0},"id":436152}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/drug_target_sample/overlays/token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/drug_target_sample/overlays/token=MOCK_TOKEN_ID&
new file mode 100644
index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc
--- /dev/null
+++ b/frontend-js/testFiles/apiCalls/projects/drug_target_sample/overlays/token=MOCK_TOKEN_ID&
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/drug_target_sample/token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/drug_target_sample/token=MOCK_TOKEN_ID&
new file mode 100644
index 0000000000000000000000000000000000000000..685f9b480c96e79a9b15dcbc156de9be0b8e0d01
--- /dev/null
+++ b/frontend-js/testFiles/apiCalls/projects/drug_target_sample/token=MOCK_TOKEN_ID&
@@ -0,0 +1 @@
+{"version":"0","disease":null,"organism":{"resource":"9606","link":"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=9606","id":1104514,"type":"TAXONOMY"},"idObject":19186,"name":"UNKNOWN DISEASE MAP","projectId":"drug_target_sample","description":"","map":{"version":null,"name":"UNKNOWN DISEASE MAP","idObject":20637,"tileSize":256,"width":1305,"height":473,"minZoom":2,"maxZoom":5,"layouts":[{"idObject":19771,"modelId":20637,"name":"Pathways and compartments","description":null,"status":"Not available","progress":"0.00","directory":"77aacd78e20c6a6610f696eb1f1aa4b0/_nested0","creator":"","inputDataAvailable":"false"},{"idObject":19772,"modelId":20637,"name":"Network","description":null,"status":"Not available","progress":"0.00","directory":"77aacd78e20c6a6610f696eb1f1aa4b0/_normal0","creator":"","inputDataAvailable":"false"},{"idObject":19773,"modelId":20637,"name":"Empty","description":null,"status":"Not available","progress":"0.00","directory":"77aacd78e20c6a6610f696eb1f1aa4b0/_empty0","creator":"","inputDataAvailable":"false"}],"submodels":[],"centerLatLng":{"lat":79.18277721779353,"lng":-135.06093781915757},"topLeftLatLng":{"lat":85.05112877980659,"lng":-180.0},"bottomRightLatLng":{"lat":81.26928406550978,"lng":-90.0},"submodelType":"UNKNOWN"},"publicationCount":1,"overviewImageViews":[],"topOverviewImage":null}
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/chemicals.search/query=rotenone&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/chemicals.search/query=rotenone&token=MOCK_TOKEN_ID&
index 2ddc06e6c71cd32d48a6448fd615b08bca0397aa..98813c44f16648eab86b2bc0d7f95b887c0c4632 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/chemicals.search/query=rotenone&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/chemicals.search/query=rotenone&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"references":[{"name":"D012402","type":"Toxicogenomic Chemical","link":"http://ctdbase.org/detail.go?type\u003dchem\u0026acc\u003dD012402","idObject":0},{"name":"83-79-4","type":"Chemical Abstracts Service","link":"http://commonchemistry.org/ChemicalDetail.aspx?ref\u003d83-79-4","idObject":0}],"synonyms":[],"name":"Rotenone","description":"A botanical insecticide that is an inhibitor of mitochondrial electron transport.","id":"Rotenone","directEvidenceReferences":[],"directEvidence":"marker/mechanism","targets":[{"targetElements":[],"references":[{"title":"In vitro search for synergy between flavonoids and epirubicin on multidrug-resistant cancer cells.","authors":["Gyémánt N"," Tanaka M"," Antus S"," Hohmann J"," Csuka O"," Mándoky L"," Molnár J."],"journal":"In vivo (Athens, Greece)","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15796199","id":"15796199","citationCount":14}],"name":"ABCB1","targetParticipants":[{"name":"ABCB1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dABCB1","idObject":0}]},{"targetElements":[],"references":[{"title":"Rotenone-induced neurotoxicity in rat brain areas: a study on neuronal and neuronal supportive cells.","authors":["Swarnkar S"," Goswami P"," Kamat PK"," Patro IK"," Singh S"," Nath C."],"journal":"Neuroscience","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23098804","id":"23098804","citationCount":4}],"name":"AIF1","targetParticipants":[{"name":"AIF1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dAIF1","idObject":0}]},{"targetElements":[],"references":[{"title":"Characterization of cellular protective effects of ATP13A2/PARK9 expression and alterations resulting from pathogenic mutants.","authors":["Covy JP"," Waxman EA"," Giasson BI."],"journal":"Journal of neuroscience research","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/22847264","id":"22847264","citationCount":10}],"name":"ATP13A2","targetParticipants":[{"name":"ATP13A2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dATP13A2","idObject":0}]},{"targetElements":[],"references":[{"title":"AKT and CDK5/p35 mediate brain-derived neurotrophic factor induction of DARPP-32 in medium size spiny neurons in vitro.","authors":["Bogush A"," Pedrini S"," Pelta-Heller J"," Chan T"," Yang Q"," Mao Z"," Sluzas E"," Gieringer T"," Ehrlich ME."],"journal":"The Journal of biological chemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17209049","id":"17209049","citationCount":23},{"title":"Pitx3-transfected astrocytes secrete brain-derived neurotrophic factor and glial cell line-derived neurotrophic factor and protect dopamine neurons in mesencephalon cultures.","authors":["Yang D"," Peng C"," Li X"," Fan X"," Li L"," Ming M"," Chen S"," Le W."],"journal":"Journal of neuroscience research","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18646205","id":"18646205","citationCount":9},{"title":"Differential effects of classical and atypical antipsychotic drugs on rotenone-induced neurotoxicity in PC12 cells.","authors":["Tan QR"," Wang XZ"," Wang CY"," Liu XJ"," Chen YC"," Wang HH"," Zhang RG"," Zhen XC"," Tong Y"," Zhang ZJ."],"journal":"European neuropsychopharmacology : the journal of the European College of Neuropsychopharmacology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17442543","id":"17442543","citationCount":7}],"name":"BDNF","targetParticipants":[{"name":"BDNF","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dBDNF","idObject":0}]},{"targetElements":[],"references":[{"title":"Reactive oxygen species regulate ceruloplasmin by a novel mRNA decay mechanism involving its 3\u0027-untranslated region: implications in neurodegenerative diseases.","authors":["Tapryal N"," Mukhopadhyay C"," Das D"," Fox PL"," Mukhopadhyay CK."],"journal":"The Journal of biological chemistry","year":2009,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19019832","id":"19019832","citationCount":13},{"title":"Increased vulnerability to rotenone-induced neurotoxicity in ceruloplasmin-deficient mice.","authors":["Kaneko K"," Hineno A"," Yoshida K"," Ikeda S."],"journal":"Neuroscience letters","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18804145","id":"18804145","citationCount":10}],"name":"CP","targetParticipants":[{"name":"CP","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dCP","idObject":0}]},{"targetElements":[],"references":[{"title":"RTP801 regulates maneb- and mancozeb-induced cytotoxicity via NF-κB.","authors":["Cheng SY"," Oh S"," Velasco M"," Ta C"," Montalvo J"," Calderone A."],"journal":"Journal of biochemical and molecular toxicology","year":2014,"link":"http://www.ncbi.nlm.nih.gov/pubmed/24764117","id":"24764117","citationCount":1}],"name":"DDIT4","targetParticipants":[{"name":"DDIT4","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dDDIT4","idObject":0}]},{"targetElements":[],"references":[{"title":"Dopamine D₁ and D₂ receptor subtypes functional regulation in corpus striatum of unilateral rotenone lesioned Parkinson\u0027s rat model: effect of serotonin, dopamine and norepinephrine.","authors":["Paul J"," Nandhu MS"," Kuruvilla KP"," Paulose CS."],"journal":"Neurological research","year":2010,"link":"http://www.ncbi.nlm.nih.gov/pubmed/20887679","id":"20887679","citationCount":2}],"name":"DRD1","targetParticipants":[{"name":"DRD1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dDRD1","idObject":0}]},{"targetElements":[],"references":[{"title":"Melatonin reduces the neuronal loss, downregulation of dopamine transporter, and upregulation of D2 receptor in rotenone-induced parkinsonian rats.","authors":["Lin CH"," Huang JY"," Ching CH"," Chuang JI."],"journal":"Journal of pineal research","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18289173","id":"18289173","citationCount":25},{"title":"Dopamine D₁ and D₂ receptor subtypes functional regulation in corpus striatum of unilateral rotenone lesioned Parkinson\u0027s rat model: effect of serotonin, dopamine and norepinephrine.","authors":["Paul J"," Nandhu MS"," Kuruvilla KP"," Paulose CS."],"journal":"Neurological research","year":2010,"link":"http://www.ncbi.nlm.nih.gov/pubmed/20887679","id":"20887679","citationCount":2}],"name":"DRD2","targetParticipants":[{"name":"DRD2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dDRD2","idObject":0}]},{"targetElements":[],"references":[{"title":"Endothelin-1 production is enhanced by rotenone, a mitochondrial complex I inhibitor, in cultured rat cardiomyocytes.","authors":["Yuhki KI"," Miyauchi T"," Kakinuma Y"," Murakoshi N"," Maeda S"," Goto K"," Yamaguchi I"," Suzuki T."],"journal":"Journal of cardiovascular pharmacology","year":2001,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11707688","id":"11707688","citationCount":7},{"title":"Mitochondrial dysfunction increases expression of endothelin-1 and induces apoptosis through caspase-3 activation in rat cardiomyocytes in vitro.","authors":["Yuki K"," Miyauchi T"," Kakinuma Y"," Murakoshi N"," Suzuki T"," Hayashi J"," Goto K"," Yamaguchi I."],"journal":"Journal of cardiovascular pharmacology","year":2000,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11078378","id":"11078378","citationCount":5},{"title":"Mitochondrial ROS-K+ channel signaling pathway regulated secretion of human pulmonary artery endothelial cells.","authors":["Ouyang JS"," Li YP"," Li CY"," Cai C"," Chen CS"," Chen SX"," Chen YF"," Yang L"," Xie YP."],"journal":"Free radical research","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/22928487","id":"22928487","citationCount":2}],"name":"EDN1","targetParticipants":[{"name":"EDN1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dEDN1","idObject":0}]},{"targetElements":[],"references":[{"title":"Pitx3-transfected astrocytes secrete brain-derived neurotrophic factor and glial cell line-derived neurotrophic factor and protect dopamine neurons in mesencephalon cultures.","authors":["Yang D"," Peng C"," Li X"," Fan X"," Li L"," Ming M"," Chen S"," Le W."],"journal":"Journal of neuroscience research","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18646205","id":"18646205","citationCount":9}],"name":"GDNF","targetParticipants":[{"name":"GDNF","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dGDNF","idObject":0}]},{"targetElements":[],"references":[{"title":"Rotenone-induced neurotoxicity in rat brain areas: a study on neuronal and neuronal supportive cells.","authors":["Swarnkar S"," Goswami P"," Kamat PK"," Patro IK"," Singh S"," Nath C."],"journal":"Neuroscience","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23098804","id":"23098804","citationCount":4}],"name":"GFAP","targetParticipants":[{"name":"GFAP","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dGFAP","idObject":0}]},{"targetElements":[],"references":[{"title":"Microtubule: a common target for parkin and Parkinson\u0027s disease toxins.","authors":["Feng J."],"journal":"The Neuroscientist : a review journal bringing neurobiology, neurology and psychiatry","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17079513","id":"17079513","citationCount":28},{"title":"Standardized Hypericum perforatum reduces oxidative stress and increases gene expression of antioxidant enzymes on rotenone-exposed rats.","authors":["Sánchez-Reus MI"," Gómez del Rio MA"," Iglesias I"," Elorza M"," Slowing K"," Benedí J."],"journal":"Neuropharmacology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17070561","id":"17070561","citationCount":17},{"title":"The responses of HT22 cells to the blockade of mitochondrial complexes and potential protective effect of selenium supplementation.","authors":["Panee J"," Liu W"," Nakamura K"," Berry MJ."],"journal":"International journal of biological sciences","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17657281","id":"17657281","citationCount":10},{"title":"Effect of fraxetin on antioxidant defense and stress proteins in human neuroblastoma cell model of rotenone neurotoxicity. Comparative study with myricetin and N-acetylcysteine.","authors":["Molina-Jiménez MF"," Sánchez-Reus MI"," Cascales M"," Andrés D"," Benedí J."],"journal":"Toxicology and applied pharmacology","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15904944","id":"15904944","citationCount":9}],"name":"GPX1","targetParticipants":[{"name":"GPX1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dGPX1","idObject":0}]},{"targetElements":[],"references":[{"title":"Gene expression profiling of rotenone-mediated cortical neuronal death: evidence for inhibition of ubiquitin-proteasome system and autophagy-lysosomal pathway, and dysfunction of mitochondrial and calcium signaling.","authors":["Yap YW"," Chen MJ"," Peng ZF"," Manikandan J"," Ng JM"," Llanos RM"," La Fontaine S"," Beart PM"," Cheung NS."],"journal":"Neurochemistry international","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23186747","id":"23186747","citationCount":3}],"name":"GSTA4","targetParticipants":[{"name":"GSTA4","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dGSTA4","idObject":0}]},{"targetElements":[],"references":[{"title":"Gene expression profiling of rotenone-mediated cortical neuronal death: evidence for inhibition of ubiquitin-proteasome system and autophagy-lysosomal pathway, and dysfunction of mitochondrial and calcium signaling.","authors":["Yap YW"," Chen MJ"," Peng ZF"," Manikandan J"," Ng JM"," Llanos RM"," La Fontaine S"," Beart PM"," Cheung NS."],"journal":"Neurochemistry international","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23186747","id":"23186747","citationCount":3}],"name":"GSTM1","targetParticipants":[{"name":"GSTM1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dGSTM1","idObject":0}]},{"targetElements":[],"references":[{"title":"Mitochondria-derived reactive oxygen species mediate heme oxygenase-1 expression in sheared endothelial cells.","authors":["Han Z"," Varadharaj S"," Giedt RJ"," Zweier JL"," Szeto HH"," Alevriadou BR."],"journal":"The Journal of pharmacology and experimental therapeutics","year":2009,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19131585","id":"19131585","citationCount":28},{"title":"Comparison of the cytotoxicity of the nitroaromatic drug flutamide to its cyano analogue in the hepatocyte cell line TAMH: evidence for complex I inhibition and mitochondrial dysfunction using toxicogenomic screening.","authors":["Coe KJ"," Jia Y"," Ho HK"," Rademacher P"," Bammler TK"," Beyer RP"," Farin FM"," Woodke L"," Plymate SR"," Fausto N"," Nelson SD."],"journal":"Chemical research in toxicology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17702527","id":"17702527","citationCount":19},{"title":"Cadmium-induced apoptosis in the BJAB human B cell line: involvement of PKC/ERK1/2/JNK signaling pathways in HO-1 expression.","authors":["Nemmiche S"," Chabane-Sari D"," Kadri M"," Guiraud P."],"journal":"Toxicology","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/22659318","id":"22659318","citationCount":11},{"title":"Resveratrol partially prevents rotenone-induced neurotoxicity in dopaminergic SH-SY5Y cells through induction of heme oxygenase-1 dependent autophagy.","authors":["Lin TK"," Chen SD"," Chuang YC"," Lin HY"," Huang CR"," Chuang JH"," Wang PW"," Huang ST"," Tiao MM"," Chen JB"," Liou CW."],"journal":"International journal of molecular sciences","year":2014,"link":"http://www.ncbi.nlm.nih.gov/pubmed/24451142","id":"24451142","citationCount":11},{"title":"The responses of HT22 cells to the blockade of mitochondrial complexes and potential protective effect of selenium supplementation.","authors":["Panee J"," Liu W"," Nakamura K"," Berry MJ."],"journal":"International journal of biological sciences","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17657281","id":"17657281","citationCount":10},{"title":"Gene expression profiling of rotenone-mediated cortical neuronal death: evidence for inhibition of ubiquitin-proteasome system and autophagy-lysosomal pathway, and dysfunction of mitochondrial and calcium signaling.","authors":["Yap YW"," Chen MJ"," Peng ZF"," Manikandan J"," Ng JM"," Llanos RM"," La Fontaine S"," Beart PM"," Cheung NS."],"journal":"Neurochemistry international","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23186747","id":"23186747","citationCount":3},{"title":"Pyrroloquinoline quinone-conferred neuroprotection in rotenone models of Parkinson\u0027s disease.","authors":["Qin J"," Wu M"," Yu S"," Gao X"," Zhang J"," Dong X"," Ji J"," Zhang Y"," Zhou L"," Zhang Q"," Ding F."],"journal":"Toxicology letters","year":2015,"link":"http://www.ncbi.nlm.nih.gov/pubmed/26276080","id":"26276080","citationCount":0}],"name":"HMOX1","targetParticipants":[{"name":"HMOX1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dHMOX1","idObject":0}]},{"targetElements":[],"references":[{"title":"Proteomic identification of a stress protein, mortalin/mthsp70/GRP75: relevance to Parkinson disease.","authors":["Jin J"," Hulette C"," Wang Y"," Zhang T"," Pan C"," Wadhwa R"," Zhang J."],"journal":"Molecular \u0026 cellular proteomics : MCP","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16565515","id":"16565515","citationCount":85},{"title":"Gene expression profiling of rotenone-mediated cortical neuronal death: evidence for inhibition of ubiquitin-proteasome system and autophagy-lysosomal pathway, and dysfunction of mitochondrial and calcium signaling.","authors":["Yap YW"," Chen MJ"," Peng ZF"," Manikandan J"," Ng JM"," Llanos RM"," La Fontaine S"," Beart PM"," Cheung NS."],"journal":"Neurochemistry international","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23186747","id":"23186747","citationCount":3}],"name":"HSPA9","targetParticipants":[{"name":"HSPA9","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dHSPA9","idObject":0}]},{"targetElements":[],"references":[{"title":"Role of mitochondrial oxidant generation in endothelial cell responses to hypoxia.","authors":["Pearlstein DP"," Ali MH"," Mungai PT"," Hynes KL"," Gewertz BL"," Schumacker PT."],"journal":"Arteriosclerosis, thrombosis, and vascular biology","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11950692","id":"11950692","citationCount":44},{"title":"Albumin-bound fatty acids induce mitochondrial oxidant stress and impair antioxidant responses in proximal tubular cells.","authors":["Ishola DA Jr"," Post JA"," van Timmeren MM"," Bakker SJ"," Goldschmeding R"," Koomans HA"," Braam B"," Joles JA."],"journal":"Kidney international","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16837928","id":"16837928","citationCount":23},{"title":"Inverse gene expression patterns for macrophage activating hepatotoxicants and peroxisome proliferators in rat liver.","authors":["McMillian M"," Nie AY"," Parker JB"," Leone A"," Kemmerer M"," Bryant S"," Herlich J"," Yieh L"," Bittner A"," Liu X"," Wan J"," Johnson MD."],"journal":"Biochemical pharmacology","year":2004,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15135310","id":"15135310","citationCount":21},{"title":"Environmental toxicants inhibit neuronal Jak tyrosine kinase by mitochondrial disruption.","authors":["Monroe RK"," Halvorsen SW."],"journal":"Neurotoxicology","year":2009,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19635391","id":"19635391","citationCount":13},{"title":"Deguelin attenuates reperfusion injury and improves outcome after orthotopic lung transplantation in the rat.","authors":["Paulus P"," Ockelmann P"," Tacke S"," Karnowski N"," Ellinghaus P"," Scheller B"," Holfeld J"," Urbschat A"," Zacharowski K."],"journal":"PloS one","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/22745725","id":"22745725","citationCount":7},{"title":"Rotenone, a mitochondrial respiratory complex I inhibitor, ameliorates lipopolysaccharide/D-galactosamine-induced fulminant hepatitis in mice.","authors":["Ai Q"," Jing Y"," Jiang R"," Lin L"," Dai J"," Che Q"," Zhou D"," Jia M"," Wan J"," Zhang L."],"journal":"International immunopharmacology","year":2014,"link":"http://www.ncbi.nlm.nih.gov/pubmed/24830863","id":"24830863","citationCount":4},{"title":"Reactive oxygen species regulate context-dependent inhibition of NFAT5 target genes.","authors":["Kim NH"," Hong BK"," Choi SY"," Moo Kwon H"," Cho CS"," Yi EC"," Kim WU."],"journal":"Experimental \u0026 molecular medicine","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23867654","id":"23867654","citationCount":3}],"name":"IL6","targetParticipants":[{"name":"IL6","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dIL6","idObject":0}]},{"targetElements":[],"references":[{"title":"Overexpression of Kir2.3 in PC12 cells resists rotenone-induced neurotoxicity associated with PKC signaling pathway.","authors":["Wang G"," Zeng J"," Shen CY"," Wang ZQ"," Chen SD."],"journal":"Biochemical and biophysical research communications","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18619942","id":"18619942","citationCount":3}],"name":"KCNJ4","targetParticipants":[{"name":"KCNJ4","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dKCNJ4","idObject":0}]},{"targetElements":[],"references":[{"title":"LRRK2 modulates vulnerability to mitochondrial dysfunction in Caenorhabditis elegans.","authors":["Saha S"," Guillily MD"," Ferree A"," Lanceta J"," Chan D"," Ghosh J"," Hsu CH"," Segal L"," Raghavan K"," Matsumoto K"," Hisamoto N"," Kuwahara T"," Iwatsubo T"," Moore L"," Goldstein L"," Cookson M"," Wolozin B."],"journal":"The Journal of neuroscience : the official journal of the Society for Neuroscience","year":2009,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19625511","id":"19625511","citationCount":86},{"title":"Parkin protects against LRRK2 G2019S mutant-induced dopaminergic neurodegeneration in Drosophila.","authors":["Ng CH"," Mok SZ"," Koh C"," Ouyang X"," Fivaz ML"," Tan EK"," Dawson VL"," Dawson TM"," Yu F"," Lim KL."],"journal":"The Journal of neuroscience : the official journal of the Society for Neuroscience","year":2009,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19741132","id":"19741132","citationCount":78},{"title":"Leucine-Rich Repeat Kinase 2 interacts with Parkin, DJ-1 and PINK-1 in a Drosophila melanogaster model of Parkinson\u0027s disease.","authors":["Venderova K"," Kabbach G"," Abdel-Messih E"," Zhang Y"," Parks RJ"," Imai Y"," Gehrke S"," Ngsee J"," Lavoie MJ"," Slack RS"," Rao Y"," Zhang Z"," Lu B"," Haque ME"," Park DS."],"journal":"Human molecular genetics","year":2009,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19692353","id":"19692353","citationCount":65},{"title":"Investigating convergent actions of genes linked to familial Parkinson\u0027s disease.","authors":["Wolozin B"," Saha S"," Guillily M"," Ferree A"," Riley M."],"journal":"Neuro-degenerative diseases","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18322385","id":"18322385","citationCount":17}],"name":"LRRK2","targetParticipants":[{"name":"LRRK2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dLRRK2","idObject":0}]},{"targetElements":[],"references":[{"title":"Thioredoxin-ASK1 complex levels regulate ROS-mediated p38 MAPK pathway activity in livers of aged and long-lived Snell dwarf mice.","authors":["Hsieh CC"," Papaconstantinou J."],"journal":"FASEB journal : official publication of the Federation of American Societies for Experimental Biology","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16449798","id":"16449798","citationCount":75}],"name":"MAP3K5","targetParticipants":[{"name":"MAP3K5","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dMAP3K5","idObject":0}]},{"targetElements":[],"references":[{"title":"The mitochondrial complex I inhibitor rotenone triggers a cerebral tauopathy.","authors":["Höglinger GU"," Lannuzel A"," Khondiker ME"," Michel PP"," Duyckaerts C"," Féger J"," Champy P"," Prigent A"," Medja F"," Lombes A"," Oertel WH"," Ruberg M"," Hirsch EC."],"journal":"Journal of neurochemistry","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16219024","id":"16219024","citationCount":67},{"title":"Pharmacologic reductions of total tau levels; implications for the role of microtubule dynamics in regulating tau expression.","authors":["Dickey CA"," Ash P"," Klosak N"," Lee WC"," Petrucelli L"," Hutton M"," Eckman CB."],"journal":"Molecular neurodegeneration","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16930453","id":"16930453","citationCount":12}],"name":"MAPT","targetParticipants":[{"name":"MAPT","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dMAPT","idObject":0}]},{"targetElements":[],"references":[{"title":"PPARγ activation rescues mitochondrial function from inhibition of complex I and loss of PINK1.","authors":["Corona JC"," de Souza SC"," Duchen MR."],"journal":"Experimental neurology","year":2014,"link":"http://www.ncbi.nlm.nih.gov/pubmed/24374061","id":"24374061","citationCount":4},{"title":"Gene expression profiling of rotenone-mediated cortical neuronal death: evidence for inhibition of ubiquitin-proteasome system and autophagy-lysosomal pathway, and dysfunction of mitochondrial and calcium signaling.","authors":["Yap YW"," Chen MJ"," Peng ZF"," Manikandan J"," Ng JM"," Llanos RM"," La Fontaine S"," Beart PM"," Cheung NS."],"journal":"Neurochemistry international","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23186747","id":"23186747","citationCount":3}],"name":"NQO1","targetParticipants":[{"name":"NQO1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNQO1","idObject":0}]},{"targetElements":[],"references":[{"title":"DJ-1 acts in parallel to the PINK1/parkin pathway to control mitochondrial function and autophagy.","authors":["Thomas KJ"," McCoy MK"," Blackinton J"," Beilina A"," van der Brug M"," Sandebring A"," Miller D"," Maric D"," Cedazo-Minguez A"," Cookson MR."],"journal":"Human molecular genetics","year":2011,"link":"http://www.ncbi.nlm.nih.gov/pubmed/20940149","id":"20940149","citationCount":108},{"title":"Parkin protects against LRRK2 G2019S mutant-induced dopaminergic neurodegeneration in Drosophila.","authors":["Ng CH"," Mok SZ"," Koh C"," Ouyang X"," Fivaz ML"," Tan EK"," Dawson VL"," Dawson TM"," Yu F"," Lim KL."],"journal":"The Journal of neuroscience : the official journal of the Society for Neuroscience","year":2009,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19741132","id":"19741132","citationCount":78},{"title":"Susceptibility to rotenone is increased in neurons from parkin null mice and is reduced by minocycline.","authors":["Casarejos MJ"," Menéndez J"," Solano RM"," Rodríguez-Navarro JA"," García de Yébenes J"," Mena MA."],"journal":"Journal of neurochemistry","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16573651","id":"16573651","citationCount":58},{"title":"Drosophila overexpressing parkin R275W mutant exhibits dopaminergic neuron degeneration and mitochondrial abnormalities.","authors":["Wang C"," Lu R"," Ouyang X"," Ho MW"," Chia W"," Yu F"," Lim KL."],"journal":"The Journal of neuroscience : the official journal of the Society for Neuroscience","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17687034","id":"17687034","citationCount":43},{"title":"ROS-dependent regulation of Parkin and DJ-1 localization during oxidative stress in neurons.","authors":["Joselin AP"," Hewitt SJ"," Callaghan SM"," Kim RH"," Chung YH"," Mak TW"," Shen J"," Slack RS"," Park DS."],"journal":"Human molecular genetics","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/22872702","id":"22872702","citationCount":43},{"title":"Parkin protects against mitochondrial toxins and beta-amyloid accumulation in skeletal muscle cells.","authors":["Rosen KM"," Veereshwarayya V"," Moussa CE"," Fu Q"," Goldberg MS"," Schlossmacher MG"," Shen J"," Querfurth HW."],"journal":"The Journal of biological chemistry","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16517603","id":"16517603","citationCount":41}],"name":"PARK2","targetParticipants":[{"name":"PARK2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dPARK2","idObject":0}]},{"targetElements":[],"references":[{"title":"Intersecting pathways to neurodegeneration in Parkinson\u0027s disease: effects of the pesticide rotenone on DJ-1, alpha-synuclein, and the ubiquitin-proteasome system.","authors":["Betarbet R"," Canet-Aviles RM"," Sherer TB"," Mastroberardino PG"," McLendon C"," Kim JH"," Lund S"," Na HM"," Taylor G"," Bence NF"," Kopito R"," Seo BB"," Yagi T"," Yagi A"," Klinefelter G"," Cookson MR"," Greenamyre JT."],"journal":"Neurobiology of disease","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16439141","id":"16439141","citationCount":110},{"title":"DJ-1 acts in parallel to the PINK1/parkin pathway to control mitochondrial function and autophagy.","authors":["Thomas KJ"," McCoy MK"," Blackinton J"," Beilina A"," van der Brug M"," Sandebring A"," Miller D"," Maric D"," Cedazo-Minguez A"," Cookson MR."],"journal":"Human molecular genetics","year":2011,"link":"http://www.ncbi.nlm.nih.gov/pubmed/20940149","id":"20940149","citationCount":108},{"title":"Oxidative insults induce DJ-1 upregulation and redistribution: implications for neuroprotection.","authors":["Lev N"," Ickowicz D"," Melamed E"," Offen D."],"journal":"Neurotoxicology","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18377993","id":"18377993","citationCount":52},{"title":"Neurodegeneration of mouse nigrostriatal dopaminergic system induced by repeated oral administration of rotenone is prevented by 4-phenylbutyrate, a chemical chaperone.","authors":["Inden M"," Kitamura Y"," Takeuchi H"," Yanagida T"," Takata K"," Kobayashi Y"," Taniguchi T"," Yoshimoto K"," Kaneko M"," Okuma Y"," Taira T"," Ariga H"," Shimohama S."],"journal":"Journal of neurochemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17459145","id":"17459145","citationCount":51},{"title":"Mechanisms of DJ-1 neuroprotection in a cellular model of Parkinson\u0027s disease.","authors":["Liu F"," Nguyen JL"," Hulleman JD"," Li L"," Rochet JC."],"journal":"Journal of neurochemistry","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18331584","id":"18331584","citationCount":41},{"title":"DJ-1 knock-down in astrocytes impairs astrocyte-mediated neuroprotection against rotenone.","authors":["Mullett SJ"," Hinkle DA."],"journal":"Neurobiology of disease","year":2009,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18930142","id":"18930142","citationCount":32},{"title":"Enhanced sensitivity of DJ-1-deficient dopaminergic neurons to energy metabolism impairment: role of Na+/K+ ATPase.","authors":["Pisani A"," Martella G"," Tscherter A"," Costa C"," Mercuri NB"," Bernardi G"," Shen J"," Calabresi P."],"journal":"Neurobiology of disease","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16624565","id":"16624565","citationCount":19},{"title":"Analysis of targeted mutation in DJ-1 on cellular function in primary astrocytes.","authors":["Ashley AK"," Hanneman WH"," Katoh T"," Moreno JA"," Pollack A"," Tjalkens RB"," Legare ME."],"journal":"Toxicology letters","year":2009,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19063952","id":"19063952","citationCount":13},{"title":"DJ-1 protects dopaminergic neurons against rotenone-induced apoptosis by enhancing ERK-dependent mitophagy.","authors":["Gao H"," Yang W"," Qi Z"," Lu L"," Duan C"," Zhao C"," Yang H."],"journal":"Journal of molecular biology","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/22898350","id":"22898350","citationCount":13}],"name":"PARK7","targetParticipants":[{"name":"PARK7","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dPARK7","idObject":0}]},{"targetElements":[],"references":[{"title":"DJ-1 acts in parallel to the PINK1/parkin pathway to control mitochondrial function and autophagy.","authors":["Thomas KJ"," McCoy MK"," Blackinton J"," Beilina A"," van der Brug M"," Sandebring A"," Miller D"," Maric D"," Cedazo-Minguez A"," Cookson MR."],"journal":"Human molecular genetics","year":2011,"link":"http://www.ncbi.nlm.nih.gov/pubmed/20940149","id":"20940149","citationCount":108},{"title":"Mitochondrial alterations in PINK1 deficient cells are influenced by calcineurin-dependent dephosphorylation of dynamin-related protein 1.","authors":["Sandebring A"," Thomas KJ"," Beilina A"," van der Brug M"," Cleland MM"," Ahmad R"," Miller DW"," Zambrano I"," Cowburn RF"," Behbahani H"," Cedazo-Mínguez A"," Cookson MR."],"journal":"PloS one","year":2009,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19492085","id":"19492085","citationCount":84},{"title":"Small interfering RNA targeting the PINK1 induces apoptosis in dopaminergic cells SH-SY5Y.","authors":["Deng H"," Jankovic J"," Guo Y"," Xie W"," Le W."],"journal":"Biochemical and biophysical research communications","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16226715","id":"16226715","citationCount":68},{"title":"PARK6 PINK1 mutants are defective in maintaining mitochondrial membrane potential and inhibiting ROS formation of substantia nigra dopaminergic neurons.","authors":["Wang HL"," Chou AH"," Wu AS"," Chen SY"," Weng YH"," Kao YC"," Yeh TH"," Chu PJ"," Lu CS."],"journal":"Biochimica et biophysica acta","year":2011,"link":"http://www.ncbi.nlm.nih.gov/pubmed/21421046","id":"21421046","citationCount":34},{"title":"α-Synuclein transgenic mice reveal compensatory increases in Parkinson\u0027s disease-associated proteins DJ-1 and parkin and have enhanced α-synuclein and PINK1 levels after rotenone treatment.","authors":["George S"," Mok SS"," Nurjono M"," Ayton S"," Finkelstein DI"," Masters CL"," Li QX"," Culvenor JG."],"journal":"Journal of molecular neuroscience : MN","year":2010,"link":"http://www.ncbi.nlm.nih.gov/pubmed/20464527","id":"20464527","citationCount":11}],"name":"PINK1","targetParticipants":[{"name":"PINK1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dPINK1","idObject":0}]},{"targetElements":[],"references":[{"title":"Loss of mitochondrial complex I activity potentiates dopamine neuron death induced by microtubule dysfunction in a Parkinson\u0027s disease model.","authors":["Choi WS"," Palmiter RD"," Xia Z."],"journal":"The Journal of cell biology","year":2011,"link":"http://www.ncbi.nlm.nih.gov/pubmed/21383081","id":"21383081","citationCount":52},{"title":"Rotenone-induced PC12 cell toxicity is caused by oxidative stress resulting from altered dopamine metabolism.","authors":["Sai Y"," Wu Q"," Le W"," Ye F"," Li Y"," Dong Z."],"journal":"Toxicology in vitro : an international journal published in association with BIBRA","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18579341","id":"18579341","citationCount":22},{"title":"JNK inhibition of VMAT2 contributes to rotenone-induced oxidative stress and dopamine neuron death.","authors":["Choi WS"," Kim HW"," Xia Z."],"journal":"Toxicology","year":2015,"link":"http://www.ncbi.nlm.nih.gov/pubmed/25496994","id":"25496994","citationCount":1},{"title":"Pyrroloquinoline quinone-conferred neuroprotection in rotenone models of Parkinson\u0027s disease.","authors":["Qin J"," Wu M"," Yu S"," Gao X"," Zhang J"," Dong X"," Ji J"," Zhang Y"," Zhou L"," Zhang Q"," Ding F."],"journal":"Toxicology letters","year":2015,"link":"http://www.ncbi.nlm.nih.gov/pubmed/26276080","id":"26276080","citationCount":0}],"name":"SLC18A2","targetParticipants":[{"name":"SLC18A2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dSLC18A2","idObject":0}]},{"targetElements":[],"references":[{"title":"Melatonin reduces the neuronal loss, downregulation of dopamine transporter, and upregulation of D2 receptor in rotenone-induced parkinsonian rats.","authors":["Lin CH"," Huang JY"," Ching CH"," Chuang JI."],"journal":"Journal of pineal research","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18289173","id":"18289173","citationCount":25},{"title":"Rotenone-induced PC12 cell toxicity is caused by oxidative stress resulting from altered dopamine metabolism.","authors":["Sai Y"," Wu Q"," Le W"," Ye F"," Li Y"," Dong Z."],"journal":"Toxicology in vitro : an international journal published in association with BIBRA","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18579341","id":"18579341","citationCount":22},{"title":"The role of dopamine transporter in selective toxicity of manganese and rotenone.","authors":["Hirata Y"," Suzuno H"," Tsuruta T"," Oh-hashi K"," Kiuchi K."],"journal":"Toxicology","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18206288","id":"18206288","citationCount":3},{"title":"Neonatal exposure to lipopolysaccharide enhances accumulation of α-synuclein aggregation and dopamine transporter protein expression in the substantia nigra in responses to rotenone challenge in later life.","authors":["Tien LT"," Kaizaki A"," Pang Y"," Cai Z"," Bhatt AJ"," Fan LW."],"journal":"Toxicology","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23567316","id":"23567316","citationCount":3}],"name":"SLC6A3","targetParticipants":[{"name":"SLC6A3","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dSLC6A3","idObject":0}]},{"targetElements":[],"references":[{"title":"Chronic systemic pesticide exposure reproduces features of Parkinson\u0027s disease.","authors":["Betarbet R"," Sherer TB"," MacKenzie G"," Garcia-Osuna M"," Panov AV"," Greenamyre JT."],"journal":"Nature neuroscience","year":2000,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11100151","id":"11100151","citationCount":1095},{"title":"An in vitro model of Parkinson\u0027s disease: linking mitochondrial impairment to altered alpha-synuclein metabolism and oxidative damage.","authors":["Sherer TB"," Betarbet R"," Stout AK"," Lund S"," Baptista M"," Panov AV"," Cookson MR"," Greenamyre JT."],"journal":"The Journal of neuroscience : the official journal of the Society for Neuroscience","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/12177198","id":"12177198","citationCount":199},{"title":"Intersecting pathways to neurodegeneration in Parkinson\u0027s disease: effects of the pesticide rotenone on DJ-1, alpha-synuclein, and the ubiquitin-proteasome system.","authors":["Betarbet R"," Canet-Aviles RM"," Sherer TB"," Mastroberardino PG"," McLendon C"," Kim JH"," Lund S"," Na HM"," Taylor G"," Bence NF"," Kopito R"," Seo BB"," Yagi T"," Yagi A"," Klinefelter G"," Cookson MR"," Greenamyre JT."],"journal":"Neurobiology of disease","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16439141","id":"16439141","citationCount":110},{"title":"Similar patterns of mitochondrial vulnerability and rescue induced by genetic modification of alpha-synuclein, parkin, and DJ-1 in Caenorhabditis elegans.","authors":["Ved R"," Saha S"," Westlund B"," Perier C"," Burnam L"," Sluder A"," Hoener M"," Rodrigues CM"," Alfonso A"," Steer C"," Liu L"," Przedborski S"," Wolozin B."],"journal":"The Journal of biological chemistry","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16239214","id":"16239214","citationCount":109},{"title":"Pesticides directly accelerate the rate of alpha-synuclein fibril formation: a possible factor in Parkinson\u0027s disease.","authors":["Uversky VN"," Li J"," Fink AL."],"journal":"FEBS letters","year":2001,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11445065","id":"11445065","citationCount":101},{"title":"The mitochondrial complex I inhibitor rotenone triggers a cerebral tauopathy.","authors":["Höglinger GU"," Lannuzel A"," Khondiker ME"," Michel PP"," Duyckaerts C"," Féger J"," Champy P"," Prigent A"," Medja F"," Lombes A"," Oertel WH"," Ruberg M"," Hirsch EC."],"journal":"Journal of neurochemistry","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16219024","id":"16219024","citationCount":67},{"title":"Metabolic activity determines efficacy of macroautophagic clearance of pathological oligomeric alpha-synuclein.","authors":["Yu WH"," Dorado B"," Figueroa HY"," Wang L"," Planel E"," Cookson MR"," Clark LN"," Duff KE."],"journal":"The American journal of pathology","year":2009,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19628769","id":"19628769","citationCount":53},{"title":"Neurodegeneration of mouse nigrostriatal dopaminergic system induced by repeated oral administration of rotenone is prevented by 4-phenylbutyrate, a chemical chaperone.","authors":["Inden M"," Kitamura Y"," Takeuchi H"," Yanagida T"," Takata K"," Kobayashi Y"," Taniguchi T"," Yoshimoto K"," Kaneko M"," Okuma Y"," Taira T"," Ariga H"," Shimohama S."],"journal":"Journal of neurochemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17459145","id":"17459145","citationCount":51},{"title":"Mitochondrial localization of alpha-synuclein protein in alpha-synuclein overexpressing cells.","authors":["Shavali S"," Brown-Borg HM"," Ebadi M"," Porter J."],"journal":"Neuroscience letters","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18514418","id":"18514418","citationCount":50},{"title":"RNA interference-mediated knockdown of alpha-synuclein protects human dopaminergic neuroblastoma cells from MPP(+) toxicity and reduces dopamine transport.","authors":["Fountaine TM"," Wade-Martins R."],"journal":"Journal of neuroscience research","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17131421","id":"17131421","citationCount":47},{"title":"Environmental toxins trigger PD-like progression via increased alpha-synuclein release from enteric neurons in mice.","authors":["Pan-Montojo F"," Schwarz M"," Winkler C"," Arnhold M"," O\u0027Sullivan GA"," Pal A"," Said J"," Marsico G"," Verbavatz JM"," Rodrigo-Angulo M"," Gille G"," Funk RH"," Reichmann H."],"journal":"Scientific reports","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23205266","id":"23205266","citationCount":40},{"title":"Abnormal alpha-synuclein interactions with Rab proteins in alpha-synuclein A30P transgenic mice.","authors":["Dalfó E"," Gómez-Isla T"," Rosa JL"," Nieto Bodelón M"," Cuadrado Tejedor M"," Barrachina M"," Ambrosio S"," Ferrer I."],"journal":"Journal of neuropathology and experimental neurology","year":2004,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15099020","id":"15099020","citationCount":35},{"title":"Chronic, low-dose rotenone reproduces Lewy neurites found in early stages of Parkinson\u0027s disease, reduces mitochondrial movement and slowly kills differentiated SH-SY5Y neural cells.","authors":["Borland MK"," Trimmer PA"," Rubinstein JD"," Keeney PM"," Mohanakumar K"," Liu L"," Bennett JP Jr."],"journal":"Molecular neurodegeneration","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19114014","id":"19114014","citationCount":33},{"title":"Valproic acid is neuroprotective in the rotenone rat model of Parkinson\u0027s disease: involvement of alpha-synuclein.","authors":["Monti B"," Gatta V"," Piretti F"," Raffaelli SS"," Virgili M"," Contestabile A."],"journal":"Neurotoxicity research","year":2010,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19626387","id":"19626387","citationCount":33},{"title":"Isogenic human iPSC Parkinson\u0027s model shows nitrosative stress-induced dysfunction in MEF2-PGC1α transcription.","authors":["Ryan SD"," Dolatabadi N"," Chan SF"," Zhang X"," Akhtar MW"," Parker J"," Soldner F"," Sunico CR"," Nagar S"," Talantova M"," Lee B"," Lopez K"," Nutter A"," Shan B"," Molokanova E"," Zhang Y"," Han X"," Nakamura T"," Masliah E"," Yates JR 3rd"," Nakanishi N"," Andreyev AY"," Okamoto S"," Jaenisch R"," Ambasudhan R"," Lipton SA."],"journal":"Cell","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/24290359","id":"24290359","citationCount":27},{"title":"Melatonin reduces the neuronal loss, downregulation of dopamine transporter, and upregulation of D2 receptor in rotenone-induced parkinsonian rats.","authors":["Lin CH"," Huang JY"," Ching CH"," Chuang JI."],"journal":"Journal of pineal research","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18289173","id":"18289173","citationCount":25},{"title":"1-Benzyl-1,2,3,4-tetrahydroisoquinoline, a Parkinsonism-inducing endogenous toxin, increases alpha-synuclein expression and causes nuclear damage in human dopaminergic cells.","authors":["Shavali S"," Carlson EC"," Swinscoe JC"," Ebadi M."],"journal":"Journal of neuroscience research","year":2004,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15114628","id":"15114628","citationCount":21},{"title":"Oxidants induce alternative splicing of alpha-synuclein: Implications for Parkinson\u0027s disease.","authors":["Kalivendi SV"," Yedlapudi D"," Hillard CJ"," Kalyanaraman B."],"journal":"Free radical biology \u0026 medicine","year":2010,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19857570","id":"19857570","citationCount":20},{"title":"Combined R-alpha-lipoic acid and acetyl-L-carnitine exerts efficient preventative effects in a cellular model of Parkinson\u0027s disease.","authors":["Zhang H"," Jia H"," Liu J"," Ao N"," Yan B"," Shen W"," Wang X"," Li X"," Luo C"," Liu J."],"journal":"Journal of cellular and molecular medicine","year":2010,"link":"http://www.ncbi.nlm.nih.gov/pubmed/20414966","id":"20414966","citationCount":20},{"title":"Rotenone induces apoptosis via activation of bad in human dopaminergic SH-SY5Y cells.","authors":["Watabe M"," Nakaki T."],"journal":"The Journal of pharmacology and experimental therapeutics","year":2004,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15280438","id":"15280438","citationCount":20},{"title":"Expression of mutant alpha-synucleins enhances dopamine transporter-mediated MPP+ toxicity in vitro.","authors":["Lehmensiek V"," Tan EM"," Schwarz J"," Storch A."],"journal":"Neuroreport","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/12151787","id":"12151787","citationCount":11},{"title":"Expression of human E46K-mutated α-synuclein in BAC-transgenic rats replicates early-stage Parkinson\u0027s disease features and enhances vulnerability to mitochondrial impairment.","authors":["Cannon JR"," Geghman KD"," Tapias V"," Sew T"," Dail MK"," Li C"," Greenamyre JT."],"journal":"Experimental neurology","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23153578","id":"23153578","citationCount":11},{"title":"α-Synuclein transgenic mice reveal compensatory increases in Parkinson\u0027s disease-associated proteins DJ-1 and parkin and have enhanced α-synuclein and PINK1 levels after rotenone treatment.","authors":["George S"," Mok SS"," Nurjono M"," Ayton S"," Finkelstein DI"," Masters CL"," Li QX"," Culvenor JG."],"journal":"Journal of molecular neuroscience : MN","year":2010,"link":"http://www.ncbi.nlm.nih.gov/pubmed/20464527","id":"20464527","citationCount":11},{"title":"alpha-Synuclein redistributed and aggregated in rotenone-induced Parkinson\u0027s disease rats.","authors":["Feng Y"," Liang ZH"," Wang T"," Qiao X"," Liu HJ"," Sun SG."],"journal":"Neuroscience bulletin","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17690729","id":"17690729","citationCount":8},{"title":"Specific pesticide-dependent increases in α-synuclein levels in human neuroblastoma (SH-SY5Y) and melanoma (SK-MEL-2) cell lines.","authors":["Chorfa A"," Bétemps D"," Morignat E"," Lazizzera C"," Hogeveen K"," Andrieu T"," Baron T."],"journal":"Toxicological sciences : an official journal of the Society of Toxicology","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23535362","id":"23535362","citationCount":8},{"title":"Rotenone upregulates alpha-synuclein and myocyte enhancer factor 2D independently from lysosomal degradation inhibition.","authors":["Sala G"," Arosio A"," Stefanoni G"," Melchionda L"," Riva C"," Marinig D"," Brighina L"," Ferrarese C."],"journal":"BioMed research international","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23984410","id":"23984410","citationCount":5},{"title":"Environmental toxicants as extrinsic epigenetic factors for parkinsonism: studies employing transgenic C. elegans model.","authors":["Jadiya P"," Nazir A."],"journal":"CNS \u0026 neurological disorders drug targets","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23244436","id":"23244436","citationCount":5},{"title":"Sestrin2 Protects Dopaminergic Cells against Rotenone Toxicity through AMPK-Dependent Autophagy Activation.","authors":["Hou YS"," Guan JJ"," Xu HD"," Wu F"," Sheng R"," Qin ZH."],"journal":"Molecular and cellular biology","year":2015,"link":"http://www.ncbi.nlm.nih.gov/pubmed/26031332","id":"26031332","citationCount":2},{"title":"Rotenone down-regulates HSPA8/hsc70 chaperone protein in vitro: A new possible toxic mechanism contributing to Parkinson\u0027s disease.","authors":["Sala G"," Marinig D"," Riva C"," Arosio A"," Stefanoni G"," Brighina L"," Formenti M"," Alberghina L"," Colangelo AM"," Ferrarese C."],"journal":"Neurotoxicology","year":2016,"link":"http://www.ncbi.nlm.nih.gov/pubmed/27133439","id":"27133439","citationCount":1},{"title":"shRNA targeting α-synuclein prevents neurodegeneration in a Parkinson\u0027s disease model.","authors":["Zharikov AD"," Cannon JR"," Tapias V"," Bai Q"," Horowitz MP"," Shah V"," El Ayadi A"," Hastings TG"," Greenamyre JT"," Burton EA."],"journal":"The Journal of clinical investigation","year":2015,"link":"http://www.ncbi.nlm.nih.gov/pubmed/26075822","id":"26075822","citationCount":1},{"title":"The molecular mechanism of rotenone-induced α-synuclein aggregation: emphasizing the role of the calcium/GSK3β pathway.","authors":["Yuan YH"," Yan WF"," Sun JD"," Huang JY"," Mu Z"," Chen NH."],"journal":"Toxicology letters","year":2015,"link":"http://www.ncbi.nlm.nih.gov/pubmed/25433145","id":"25433145","citationCount":1},{"title":"[Overexpression of alpha-synuclein in SH-SY5Y cells partially protected against oxidative stress induced by rotenone].","authors":["Liu YY"," Zhao HY"," Zhao CL"," Duan CL"," Lu LL"," Yang H."],"journal":"Sheng li xue bao : [Acta physiologica Sinica]","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17041725","id":"17041725","citationCount":0},{"title":"14-3-3 Proteins in the regulation of rotenone-induced neurotoxicity might be via its isoform 14-3-3epsilon\u0027s involvement in autophagy.","authors":["Sai Y"," Peng K"," Ye F"," Zhao X"," Zhao Y"," Zou Z"," Cao J"," Dong Z."],"journal":"Cellular and molecular neurobiology","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/24002177","id":"24002177","citationCount":0},{"title":"Daily rhythms of serotonin metabolism and the expression of clock genes in suprachiasmatic nucleus of rotenone-induced Parkinson\u0027s disease male Wistar rat model and effect of melatonin administration.","authors":["Mattam U"," Jagota A."],"journal":"Biogerontology","year":2015,"link":"http://www.ncbi.nlm.nih.gov/pubmed/25430725","id":"25430725","citationCount":0}],"name":"SNCA","targetParticipants":[{"name":"SNCA","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dSNCA","idObject":0}]},{"targetElements":[],"references":[{"title":"Microtubule: a common target for parkin and Parkinson\u0027s disease toxins.","authors":["Feng J."],"journal":"The Neuroscientist : a review journal bringing neurobiology, neurology and psychiatry","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17079513","id":"17079513","citationCount":28},{"title":"Standardized Hypericum perforatum reduces oxidative stress and increases gene expression of antioxidant enzymes on rotenone-exposed rats.","authors":["Sánchez-Reus MI"," Gómez del Rio MA"," Iglesias I"," Elorza M"," Slowing K"," Benedí J."],"journal":"Neuropharmacology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17070561","id":"17070561","citationCount":17},{"title":"The responses of HT22 cells to the blockade of mitochondrial complexes and potential protective effect of selenium supplementation.","authors":["Panee J"," Liu W"," Nakamura K"," Berry MJ."],"journal":"International journal of biological sciences","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17657281","id":"17657281","citationCount":10},{"title":"An effective novel delivery strategy of rasagiline for Parkinson\u0027s disease.","authors":["Fernández M"," Negro S"," Slowing K"," Fernández-Carballido A"," Barcia E."],"journal":"International journal of pharmaceutics","year":2011,"link":"http://www.ncbi.nlm.nih.gov/pubmed/21807080","id":"21807080","citationCount":6},{"title":"PPARγ activation rescues mitochondrial function from inhibition of complex I and loss of PINK1.","authors":["Corona JC"," de Souza SC"," Duchen MR."],"journal":"Experimental neurology","year":2014,"link":"http://www.ncbi.nlm.nih.gov/pubmed/24374061","id":"24374061","citationCount":4},{"title":"Molecular responses differ between sensitive silver carp and tolerant bighead carp and bigmouth buffalo exposed to rotenone.","authors":["Amberg JJ"," Schreier TM"," Gaikowski MP."],"journal":"Fish physiology and biochemistry","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/22447502","id":"22447502","citationCount":1}],"name":"SOD1","targetParticipants":[{"name":"SOD1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dSOD1","idObject":0}]},{"targetElements":[],"references":[{"title":"Mitochondrial electron-transport-chain inhibitors of complexes I and II induce autophagic cell death mediated by reactive oxygen species.","authors":["Chen Y"," McMillan-Ward E"," Kong J"," Israels SJ"," Gibson SB."],"journal":"Journal of cell science","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18032788","id":"18032788","citationCount":146},{"title":"Mitochondrial manganese-superoxide dismutase expression in ovarian cancer: role in cell proliferation and response to oxidative stress.","authors":["Hu Y"," Rosen DG"," Zhou Y"," Feng L"," Yang G"," Liu J"," Huang P."],"journal":"The Journal of biological chemistry","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16179351","id":"16179351","citationCount":80},{"title":"Overexpression of manganese superoxide dismutase protects against mitochondrial-initiated poly(ADP-ribose) polymerase-mediated cell death.","authors":["Kiningham KK"," Oberley TD"," Lin S"," Mattingly CA"," St Clair DK."],"journal":"FASEB journal : official publication of the Federation of American Societies for Experimental Biology","year":1999,"link":"http://www.ncbi.nlm.nih.gov/pubmed/10463952","id":"10463952","citationCount":36},{"title":"Microtubule: a common target for parkin and Parkinson\u0027s disease toxins.","authors":["Feng J."],"journal":"The Neuroscientist : a review journal bringing neurobiology, neurology and psychiatry","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17079513","id":"17079513","citationCount":28},{"title":"Standardized Hypericum perforatum reduces oxidative stress and increases gene expression of antioxidant enzymes on rotenone-exposed rats.","authors":["Sánchez-Reus MI"," Gómez del Rio MA"," Iglesias I"," Elorza M"," Slowing K"," Benedí J."],"journal":"Neuropharmacology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17070561","id":"17070561","citationCount":17},{"title":"The responses of HT22 cells to the blockade of mitochondrial complexes and potential protective effect of selenium supplementation.","authors":["Panee J"," Liu W"," Nakamura K"," Berry MJ."],"journal":"International journal of biological sciences","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17657281","id":"17657281","citationCount":10},{"title":"Effect of fraxetin on antioxidant defense and stress proteins in human neuroblastoma cell model of rotenone neurotoxicity. Comparative study with myricetin and N-acetylcysteine.","authors":["Molina-Jiménez MF"," Sánchez-Reus MI"," Cascales M"," Andrés D"," Benedí J."],"journal":"Toxicology and applied pharmacology","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15904944","id":"15904944","citationCount":9},{"title":"Enhanced metallothionein gene expression induced by mitochondrial oxidative stress is reduced in phospholipid hydroperoxide glutathione peroxidase-overexpressed cells.","authors":["Kadota Y"," Suzuki S"," Ideta S"," Fukinbara Y"," Kawakami T"," Imai H"," Nakagawa Y"," Sato M."],"journal":"European journal of pharmacology","year":2010,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19818760","id":"19818760","citationCount":7},{"title":"Increased manganese superoxide dismutase activity, protein, and mRNA levels and concurrent induction of tumor necrosis factor alpha in radiation-initiated Syrian hamster cells.","authors":["Otero G"," Avila MA"," Emfietzoglou D"," Clerch LB"," Massaro D"," Notario V."],"journal":"Molecular carcinogenesis","year":1996,"link":"http://www.ncbi.nlm.nih.gov/pubmed/8989910","id":"8989910","citationCount":6},{"title":"An effective novel delivery strategy of rasagiline for Parkinson\u0027s disease.","authors":["Fernández M"," Negro S"," Slowing K"," Fernández-Carballido A"," Barcia E."],"journal":"International journal of pharmaceutics","year":2011,"link":"http://www.ncbi.nlm.nih.gov/pubmed/21807080","id":"21807080","citationCount":6},{"title":"Molecular responses differ between sensitive silver carp and tolerant bighead carp and bigmouth buffalo exposed to rotenone.","authors":["Amberg JJ"," Schreier TM"," Gaikowski MP."],"journal":"Fish physiology and biochemistry","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/22447502","id":"22447502","citationCount":1},{"title":"Pyrroloquinoline quinone (PQQ) producing Escherichia coli Nissle 1917 (EcN) alleviates age associated oxidative stress and hyperlipidemia, and improves mitochondrial function in ageing rats.","authors":["Singh AK"," Pandey SK"," Saha G"," Gattupalli NK."],"journal":"Experimental gerontology","year":2015,"link":"http://www.ncbi.nlm.nih.gov/pubmed/25843018","id":"25843018","citationCount":0}],"name":"SOD2","targetParticipants":[{"name":"SOD2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dSOD2","idObject":0}]},{"targetElements":[],"references":[{"title":"Role of oxidants in NF-kappa B activation and TNF-alpha gene transcription induced by hypoxia and endotoxin.","authors":["Chandel NS"," Trzyna WC"," McClintock DS"," Schumacker PT."],"journal":"Journal of immunology (Baltimore, Md. : 1950)","year":2000,"link":"http://www.ncbi.nlm.nih.gov/pubmed/10878378","id":"10878378","citationCount":117},{"title":"Rac1 inhibits TNF-alpha-induced endothelial cell apoptosis: dual regulation by reactive oxygen species.","authors":["Deshpande SS"," Angkeow P"," Huang J"," Ozaki M"," Irani K."],"journal":"FASEB journal : official publication of the Federation of American Societies for Experimental Biology","year":2000,"link":"http://www.ncbi.nlm.nih.gov/pubmed/10973919","id":"10973919","citationCount":82},{"title":"Iptakalim alleviates rotenone-induced degeneration of dopaminergic neurons through inhibiting microglia-mediated neuroinflammation.","authors":["Zhou F"," Wu JY"," Sun XL"," Yao HH"," Ding JH"," Hu G."],"journal":"Neuropsychopharmacology : official publication of the American College of Neuropsychopharmacology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17356569","id":"17356569","citationCount":25},{"title":"Opening of microglial K(ATP) channels inhibits rotenone-induced neuroinflammation.","authors":["Zhou F"," Yao HH"," Wu JY"," Ding JH"," Sun T"," Hu G."],"journal":"Journal of cellular and molecular medicine","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19012619","id":"19012619","citationCount":25},{"title":"Regulation of hepatic nitric oxide synthase by reactive oxygen intermediates and glutathione.","authors":["Duval DL"," Sieg DJ"," Billings RE."],"journal":"Archives of biochemistry and biophysics","year":1995,"link":"http://www.ncbi.nlm.nih.gov/pubmed/7532384","id":"7532384","citationCount":23},{"title":"Inverse gene expression patterns for macrophage activating hepatotoxicants and peroxisome proliferators in rat liver.","authors":["McMillian M"," Nie AY"," Parker JB"," Leone A"," Kemmerer M"," Bryant S"," Herlich J"," Yieh L"," Bittner A"," Liu X"," Wan J"," Johnson MD."],"journal":"Biochemical pharmacology","year":2004,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15135310","id":"15135310","citationCount":21},{"title":"Deguelin, an Akt inhibitor, suppresses IkappaBalpha kinase activation leading to suppression of NF-kappaB-regulated gene expression, potentiation of apoptosis, and inhibition of cellular invasion.","authors":["Nair AS"," Shishodia S"," Ahn KS"," Kunnumakkara AB"," Sethi G"," Aggarwal BB."],"journal":"Journal of immunology (Baltimore, Md. : 1950)","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17015749","id":"17015749","citationCount":18},{"title":"The regulation of rotenone-induced inflammatory factor production by ATP-sensitive potassium channel expressed in BV-2 cells.","authors":["Liu X"," Wu JY"," Zhou F"," Sun XL"," Yao HH"," Yang Y"," Ding JH"," Hu G."],"journal":"Neuroscience letters","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16257489","id":"16257489","citationCount":15},{"title":"Deguelin, an Akt inhibitor, down-regulates NF-κB signaling and induces apoptosis in colon cancer cells and inhibits tumor growth in mice.","authors":["Kang HW"," Kim JM"," Cha MY"," Jung HC"," Song IS"," Kim JS."],"journal":"Digestive diseases and sciences","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/22623043","id":"22623043","citationCount":12},{"title":"Phenolic constituents of Amorpha fruticosa that inhibit NF-kappaB activation and related gene expression.","authors":["Dat NT"," Lee JH"," Lee K"," Hong YS"," Kim YH"," Lee JJ."],"journal":"Journal of natural products","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18841906","id":"18841906","citationCount":12},{"title":"Rotenone, a mitochondrial electron transport inhibitor, ameliorates ischemia-reperfusion-induced intestinal mucosal damage in rats.","authors":["Ichikawa H"," Takagi T"," Uchiyama K"," Higashihara H"," Katada K"," Isozaki Y"," Naito Y"," Yoshida N"," Yoshikawa T."],"journal":"Redox report : communications in free radical research","year":2004,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15720824","id":"15720824","citationCount":7},{"title":"An effective novel delivery strategy of rasagiline for Parkinson\u0027s disease.","authors":["Fernández M"," Negro S"," Slowing K"," Fernández-Carballido A"," Barcia E."],"journal":"International journal of pharmaceutics","year":2011,"link":"http://www.ncbi.nlm.nih.gov/pubmed/21807080","id":"21807080","citationCount":6},{"title":"Rotenone could activate microglia through NFκB associated pathway.","authors":["Yuan YH"," Sun JD"," Wu MM"," Hu JF"," Peng SY"," Chen NH."],"journal":"Neurochemical research","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23645222","id":"23645222","citationCount":6},{"title":"Rotenone, a mitochondrial respiratory complex I inhibitor, ameliorates lipopolysaccharide/D-galactosamine-induced fulminant hepatitis in mice.","authors":["Ai Q"," Jing Y"," Jiang R"," Lin L"," Dai J"," Che Q"," Zhou D"," Jia M"," Wan J"," Zhang L."],"journal":"International immunopharmacology","year":2014,"link":"http://www.ncbi.nlm.nih.gov/pubmed/24830863","id":"24830863","citationCount":4},{"title":"Resveratrol confers protection against rotenone-induced neurotoxicity by modulating myeloperoxidase levels in glial cells.","authors":["Chang CY"," Choi DK"," Lee DK"," Hong YJ"," Park EJ."],"journal":"PloS one","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23593274","id":"23593274","citationCount":4},{"title":"Neuroprotective effects of bee venom acupuncture therapy against rotenone-induced oxidative stress and apoptosis.","authors":["Khalil WK"," Assaf N"," ElShebiney SA"," Salem NA."],"journal":"Neurochemistry international","year":2015,"link":"http://www.ncbi.nlm.nih.gov/pubmed/25481089","id":"25481089","citationCount":3},{"title":"Downregulation of cystathionine β-synthase/hydrogen sulfide contributes to rotenone-induced microglia polarization toward M1 type.","authors":["Du C"," Jin M"," Hong Y"," Li Q"," Wang XH"," Xu JM"," Wang F"," Zhang Y"," Jia J"," Liu CF"," Hu LF."],"journal":"Biochemical and biophysical research communications","year":2014,"link":"http://www.ncbi.nlm.nih.gov/pubmed/25086357","id":"25086357","citationCount":2}],"name":"TNF","targetParticipants":[{"name":"TNF","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dTNF","idObject":0}]}]}]
\ No newline at end of file
+[{"references":[{"resource":"D012402","link":"http://ctdbase.org/detail.go?type=chem&acc=D012402","id":0,"type":null},{"resource":"83-79-4","link":"http://commonchemistry.org/ChemicalDetail.aspx?ref=83-79-4","id":0,"type":null}],"synonyms":[],"name":"Rotenone","description":"A botanical insecticide that is an inhibitor of mitochondrial electron transport.","id":"Rotenone","directEvidenceReferences":[],"directEvidence":"marker/mechanism","targets":[{"targetElements":[],"references":[{"resource":"15796199","link":"http://www.ncbi.nlm.nih.gov/pubmed/15796199","type":"PUBMED","article":{"title":"In vitro search for synergy between flavonoids and epirubicin on multidrug-resistant cancer cells.","authors":["GyÊmÃ¥nt N"," Tanaka M"," Antus S"," Hohmann J"," Csuka O"," MÃ¥ndoky L"," MolnÃ¥r J."],"journal":"In vivo (Athens, Greece)","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15796199","id":"15796199","citationCount":15,"stringAuthors":"GyÊmÃ¥nt N,  Tanaka M,  Antus S,  Hohmann J,  Csuka O,  MÃ¥ndoky L,  MolnÃ¥r J."}}],"name":"ABCB1","targetParticipants":[{"idObject":0,"name":"ABCB1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=ABCB1","summary":null,"resource":"ABCB1"}]},{"targetElements":[],"references":[{"resource":"23098804","link":"http://www.ncbi.nlm.nih.gov/pubmed/23098804","type":"PUBMED","article":{"title":"Rotenone-induced neurotoxicity in rat brain areas: a study on neuronal and neuronal supportive cells.","authors":["Swarnkar S"," Goswami P"," Kamat PK"," Patro IK"," Singh S"," Nath C."],"journal":"Neuroscience","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23098804","id":"23098804","citationCount":5,"stringAuthors":"Swarnkar S,  Goswami P,  Kamat PK,  Patro IK,  Singh S,  Nath C."}}],"name":"AIF1","targetParticipants":[{"idObject":0,"name":"AIF1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=AIF1","summary":null,"resource":"AIF1"}]},{"targetElements":[],"references":[{"resource":"22847264","link":"http://www.ncbi.nlm.nih.gov/pubmed/22847264","type":"PUBMED","article":{"title":"Characterization of cellular protective effects of ATP13A2/PARK9 expression and alterations resulting from pathogenic mutants.","authors":["Covy JP"," Waxman EA"," Giasson BI."],"journal":"Journal of neuroscience research","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/22847264","id":"22847264","citationCount":15,"stringAuthors":"Covy JP,  Waxman EA,  Giasson BI."}}],"name":"ATP13A2","targetParticipants":[{"idObject":0,"name":"ATP13A2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=ATP13A2","summary":null,"resource":"ATP13A2"}]},{"targetElements":[],"references":[{"resource":"17209049","link":"http://www.ncbi.nlm.nih.gov/pubmed/17209049","type":"PUBMED","article":{"title":"AKT and CDK5/p35 mediate brain-derived neurotrophic factor induction of DARPP-32 in medium size spiny neurons in vitro.","authors":["Bogush A"," Pedrini S"," Pelta-Heller J"," Chan T"," Yang Q"," Mao Z"," Sluzas E"," Gieringer T"," Ehrlich ME."],"journal":"The Journal of biological chemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17209049","id":"17209049","citationCount":30,"stringAuthors":"Bogush A,  Pedrini S,  Pelta-Heller J,  Chan T,  Yang Q,  Mao Z,  Sluzas E,  Gieringer T,  Ehrlich ME."}},{"resource":"18646205","link":"http://www.ncbi.nlm.nih.gov/pubmed/18646205","type":"PUBMED","article":{"title":"Pitx3-transfected astrocytes secrete brain-derived neurotrophic factor and glial cell line-derived neurotrophic factor and protect dopamine neurons in mesencephalon cultures.","authors":["Yang D"," Peng C"," Li X"," Fan X"," Li L"," Ming M"," Chen S"," Le W."],"journal":"Journal of neuroscience research","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18646205","id":"18646205","citationCount":13,"stringAuthors":"Yang D,  Peng C,  Li X,  Fan X,  Li L,  Ming M,  Chen S,  Le W."}},{"resource":"17442543","link":"http://www.ncbi.nlm.nih.gov/pubmed/17442543","type":"PUBMED","article":{"title":"Differential effects of classical and atypical antipsychotic drugs on rotenone-induced neurotoxicity in PC12 cells.","authors":["Tan QR"," Wang XZ"," Wang CY"," Liu XJ"," Chen YC"," Wang HH"," Zhang RG"," Zhen XC"," Tong Y"," Zhang ZJ."],"journal":"European neuropsychopharmacology : the journal of the European College of Neuropsychopharmacology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17442543","id":"17442543","citationCount":12,"stringAuthors":"Tan QR,  Wang XZ,  Wang CY,  Liu XJ,  Chen YC,  Wang HH,  Zhang RG,  Zhen XC,  Tong Y,  Zhang ZJ."}}],"name":"BDNF","targetParticipants":[{"idObject":0,"name":"BDNF","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=BDNF","summary":null,"resource":"BDNF"}]},{"targetElements":[],"references":[{"resource":"19019832","link":"http://www.ncbi.nlm.nih.gov/pubmed/19019832","type":"PUBMED","article":{"title":"Reactive oxygen species regulate ceruloplasmin by a novel mRNA decay mechanism involving its 3'-untranslated region: implications in neurodegenerative diseases.","authors":["Tapryal N"," Mukhopadhyay C"," Das D"," Fox PL"," Mukhopadhyay CK."],"journal":"The Journal of Biological Chemistry","year":2009,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19019832","id":"19019832","citationCount":18,"stringAuthors":"Tapryal N,  Mukhopadhyay C,  Das D,  Fox PL,  Mukhopadhyay CK."}},{"resource":"18804145","link":"http://www.ncbi.nlm.nih.gov/pubmed/18804145","type":"PUBMED","article":{"title":"Increased vulnerability to rotenone-induced neurotoxicity in ceruloplasmin-deficient mice.","authors":["Kaneko K"," Hineno A"," Yoshida K"," Ikeda S."],"journal":"Neuroscience letters","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18804145","id":"18804145","citationCount":11,"stringAuthors":"Kaneko K,  Hineno A,  Yoshida K,  Ikeda S."}}],"name":"CP","targetParticipants":[{"idObject":0,"name":"CP","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=CP","summary":null,"resource":"CP"}]},{"targetElements":[],"references":[{"resource":"24764117","link":"http://www.ncbi.nlm.nih.gov/pubmed/24764117","type":"PUBMED","article":{"title":"RTP801 regulates maneb- and mancozeb-induced cytotoxicity via NF-κB.","authors":["Cheng SY"," Oh S"," Velasco M"," Ta C"," Montalvo J"," Calderone A."],"journal":"Journal of biochemical and molecular toxicology","year":2014,"link":"http://www.ncbi.nlm.nih.gov/pubmed/24764117","id":"24764117","citationCount":1,"stringAuthors":"Cheng SY,  Oh S,  Velasco M,  Ta C,  Montalvo J,  Calderone A."}}],"name":"DDIT4","targetParticipants":[{"idObject":0,"name":"DDIT4","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=DDIT4","summary":null,"resource":"DDIT4"}]},{"targetElements":[],"references":[{"resource":"20887679","link":"http://www.ncbi.nlm.nih.gov/pubmed/20887679","type":"PUBMED","article":{"title":"Dopamine D� and Dâ‚‚ receptor subtypes functional regulation in corpus striatum of unilateral rotenone lesioned Parkinson's rat model: effect of serotonin, dopamine and norepinephrine.","authors":["Paul J"," Nandhu MS"," Kuruvilla KP"," Paulose CS."],"journal":"Neurological research","year":2010,"link":"http://www.ncbi.nlm.nih.gov/pubmed/20887679","id":"20887679","citationCount":2,"stringAuthors":"Paul J,  Nandhu MS,  Kuruvilla KP,  Paulose CS."}}],"name":"DRD1","targetParticipants":[{"idObject":0,"name":"DRD1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=DRD1","summary":null,"resource":"DRD1"}]},{"targetElements":[],"references":[{"resource":"18289173","link":"http://www.ncbi.nlm.nih.gov/pubmed/18289173","type":"PUBMED","article":{"title":"Melatonin reduces the neuronal loss, downregulation of dopamine transporter, and upregulation of D2 receptor in rotenone-induced parkinsonian rats.","authors":["Lin CH"," Huang JY"," Ching CH"," Chuang JI."],"journal":"Journal of pineal research","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18289173","id":"18289173","citationCount":32,"stringAuthors":"Lin CH,  Huang JY,  Ching CH,  Chuang JI."}},{"resource":"20887679","link":"http://www.ncbi.nlm.nih.gov/pubmed/20887679","type":"PUBMED","article":{"title":"Dopamine D� and Dâ‚‚ receptor subtypes functional regulation in corpus striatum of unilateral rotenone lesioned Parkinson's rat model: effect of serotonin, dopamine and norepinephrine.","authors":["Paul J"," Nandhu MS"," Kuruvilla KP"," Paulose CS."],"journal":"Neurological research","year":2010,"link":"http://www.ncbi.nlm.nih.gov/pubmed/20887679","id":"20887679","citationCount":2,"stringAuthors":"Paul J,  Nandhu MS,  Kuruvilla KP,  Paulose CS."}}],"name":"DRD2","targetParticipants":[{"idObject":0,"name":"DRD2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=DRD2","summary":null,"resource":"DRD2"}]},{"targetElements":[],"references":[{"resource":"11078378","link":"http://www.ncbi.nlm.nih.gov/pubmed/11078378","type":"PUBMED","article":{"title":"Mitochondrial dysfunction increases expression of endothelin-1 and induces apoptosis through caspase-3 activation in rat cardiomyocytes in vitro.","authors":["Yuki K"," Miyauchi T"," Kakinuma Y"," Murakoshi N"," Suzuki T"," Hayashi J"," Goto K"," Yamaguchi I."],"journal":"Journal of cardiovascular pharmacology","year":2000,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11078378","id":"11078378","citationCount":9,"stringAuthors":"Yuki K,  Miyauchi T,  Kakinuma Y,  Murakoshi N,  Suzuki T,  Hayashi J,  Goto K,  Yamaguchi I."}},{"resource":"11707688","link":"http://www.ncbi.nlm.nih.gov/pubmed/11707688","type":"PUBMED","article":{"title":"Endothelin-1 production is enhanced by rotenone, a mitochondrial complex I inhibitor, in cultured rat cardiomyocytes.","authors":["Yuhki KI"," Miyauchi T"," Kakinuma Y"," Murakoshi N"," Maeda S"," Goto K"," Yamaguchi I"," Suzuki T."],"journal":"Journal of cardiovascular pharmacology","year":2001,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11707688","id":"11707688","citationCount":7,"stringAuthors":"Yuhki KI,  Miyauchi T,  Kakinuma Y,  Murakoshi N,  Maeda S,  Goto K,  Yamaguchi I,  Suzuki T."}},{"resource":"22928487","link":"http://www.ncbi.nlm.nih.gov/pubmed/22928487","type":"PUBMED","article":{"title":"Mitochondrial ROS-K+ channel signaling pathway regulated secretion of human pulmonary artery endothelial cells.","authors":["Ouyang JS"," Li YP"," Li CY"," Cai C"," Chen CS"," Chen SX"," Chen YF"," Yang L"," Xie YP."],"journal":"Free radical research","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/22928487","id":"22928487","citationCount":5,"stringAuthors":"Ouyang JS,  Li YP,  Li CY,  Cai C,  Chen CS,  Chen SX,  Chen YF,  Yang L,  Xie YP."}}],"name":"EDN1","targetParticipants":[{"idObject":0,"name":"EDN1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=EDN1","summary":null,"resource":"EDN1"}]},{"targetElements":[],"references":[{"resource":"18646205","link":"http://www.ncbi.nlm.nih.gov/pubmed/18646205","type":"PUBMED","article":{"title":"Pitx3-transfected astrocytes secrete brain-derived neurotrophic factor and glial cell line-derived neurotrophic factor and protect dopamine neurons in mesencephalon cultures.","authors":["Yang D"," Peng C"," Li X"," Fan X"," Li L"," Ming M"," Chen S"," Le W."],"journal":"Journal of neuroscience research","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18646205","id":"18646205","citationCount":13,"stringAuthors":"Yang D,  Peng C,  Li X,  Fan X,  Li L,  Ming M,  Chen S,  Le W."}}],"name":"GDNF","targetParticipants":[{"idObject":0,"name":"GDNF","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=GDNF","summary":null,"resource":"GDNF"}]},{"targetElements":[],"references":[{"resource":"23098804","link":"http://www.ncbi.nlm.nih.gov/pubmed/23098804","type":"PUBMED","article":{"title":"Rotenone-induced neurotoxicity in rat brain areas: a study on neuronal and neuronal supportive cells.","authors":["Swarnkar S"," Goswami P"," Kamat PK"," Patro IK"," Singh S"," Nath C."],"journal":"Neuroscience","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23098804","id":"23098804","citationCount":5,"stringAuthors":"Swarnkar S,  Goswami P,  Kamat PK,  Patro IK,  Singh S,  Nath C."}}],"name":"GFAP","targetParticipants":[{"idObject":0,"name":"GFAP","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=GFAP","summary":null,"resource":"GFAP"}]},{"targetElements":[],"references":[{"resource":"17079513","link":"http://www.ncbi.nlm.nih.gov/pubmed/17079513","type":"PUBMED","article":{"title":"Microtubule: a common target for parkin and Parkinson's disease toxins.","authors":["Feng J."],"journal":"The Neuroscientist : a review journal bringing neurobiology, neurology and psychiatry","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17079513","id":"17079513","citationCount":34,"stringAuthors":"Feng J."}},{"resource":"17070561","link":"http://www.ncbi.nlm.nih.gov/pubmed/17070561","type":"PUBMED","article":{"title":"Standardized Hypericum perforatum reduces oxidative stress and increases gene expression of antioxidant enzymes on rotenone-exposed rats.","authors":["SÃ¥nchez-Reus MI"," Gómez del Rio MA"," Iglesias I"," Elorza M"," Slowing K"," Benedí J."],"journal":"Neuropharmacology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17070561","id":"17070561","citationCount":21,"stringAuthors":"SÃ¥nchez-Reus MI,  Gómez del Rio MA,  Iglesias I,  Elorza M,  Slowing K,  Benedí J."}},{"resource":"15904944","link":"http://www.ncbi.nlm.nih.gov/pubmed/15904944","type":"PUBMED","article":{"title":"Effect of fraxetin on antioxidant defense and stress proteins in human neuroblastoma cell model of rotenone neurotoxicity. Comparative study with myricetin and N-acetylcysteine.","authors":["Molina-JimÊnez MF"," SÃ¥nchez-Reus MI"," Cascales M"," AndrÊs D"," Benedí J."],"journal":"Toxicology and applied pharmacology","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15904944","id":"15904944","citationCount":14,"stringAuthors":"Molina-JimÊnez MF,  SÃ¥nchez-Reus MI,  Cascales M,  AndrÊs D,  Benedí J."}},{"resource":"17657281","link":"http://www.ncbi.nlm.nih.gov/pubmed/17657281","type":"PUBMED","article":{"title":"The responses of HT22 cells to the blockade of mitochondrial complexes and potential protective effect of selenium supplementation.","authors":["Panee J"," Liu W"," Nakamura K"," Berry MJ."],"journal":"International journal of biological sciences","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17657281","id":"17657281","citationCount":13,"stringAuthors":"Panee J,  Liu W,  Nakamura K,  Berry MJ."}}],"name":"GPX1","targetParticipants":[{"idObject":0,"name":"GPX1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=GPX1","summary":null,"resource":"GPX1"}]},{"targetElements":[],"references":[{"resource":"23186747","link":"http://www.ncbi.nlm.nih.gov/pubmed/23186747","type":"PUBMED","article":{"title":"Gene expression profiling of rotenone-mediated cortical neuronal death: evidence for inhibition of ubiquitin-proteasome system and autophagy-lysosomal pathway, and dysfunction of mitochondrial and calcium signaling.","authors":["Yap YW"," Chen MJ"," Peng ZF"," Manikandan J"," Ng JM"," Llanos RM"," La Fontaine S"," Beart PM"," Cheung NS."],"journal":"Neurochemistry international","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23186747","id":"23186747","citationCount":5,"stringAuthors":"Yap YW,  Chen MJ,  Peng ZF,  Manikandan J,  Ng JM,  Llanos RM,  La Fontaine S,  Beart PM,  Cheung NS."}}],"name":"GSTA4","targetParticipants":[{"idObject":0,"name":"GSTA4","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=GSTA4","summary":null,"resource":"GSTA4"}]},{"targetElements":[],"references":[{"resource":"23186747","link":"http://www.ncbi.nlm.nih.gov/pubmed/23186747","type":"PUBMED","article":{"title":"Gene expression profiling of rotenone-mediated cortical neuronal death: evidence for inhibition of ubiquitin-proteasome system and autophagy-lysosomal pathway, and dysfunction of mitochondrial and calcium signaling.","authors":["Yap YW"," Chen MJ"," Peng ZF"," Manikandan J"," Ng JM"," Llanos RM"," La Fontaine S"," Beart PM"," Cheung NS."],"journal":"Neurochemistry international","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23186747","id":"23186747","citationCount":5,"stringAuthors":"Yap YW,  Chen MJ,  Peng ZF,  Manikandan J,  Ng JM,  Llanos RM,  La Fontaine S,  Beart PM,  Cheung NS."}}],"name":"GSTM1","targetParticipants":[{"idObject":0,"name":"GSTM1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=GSTM1","summary":null,"resource":"GSTM1"}]},{"targetElements":[],"references":[{"resource":"19131585","link":"http://www.ncbi.nlm.nih.gov/pubmed/19131585","type":"PUBMED","article":{"title":"Mitochondria-derived reactive oxygen species mediate heme oxygenase-1 expression in sheared endothelial cells.","authors":["Han Z"," Varadharaj S"," Giedt RJ"," Zweier JL"," Szeto HH"," Alevriadou BR."],"journal":"The Journal of pharmacology and experimental therapeutics","year":2009,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19131585","id":"19131585","citationCount":34,"stringAuthors":"Han Z,  Varadharaj S,  Giedt RJ,  Zweier JL,  Szeto HH,  Alevriadou BR."}},{"resource":"24451142","link":"http://www.ncbi.nlm.nih.gov/pubmed/24451142","type":"PUBMED","article":{"title":"Resveratrol partially prevents rotenone-induced neurotoxicity in dopaminergic SH-SY5Y cells through induction of heme oxygenase-1 dependent autophagy.","authors":["Lin TK"," Chen SD"," Chuang YC"," Lin HY"," Huang CR"," Chuang JH"," Wang PW"," Huang ST"," Tiao MM"," Chen JB"," Liou CW."],"journal":"International journal of molecular sciences","year":2014,"link":"http://www.ncbi.nlm.nih.gov/pubmed/24451142","id":"24451142","citationCount":27,"stringAuthors":"Lin TK,  Chen SD,  Chuang YC,  Lin HY,  Huang CR,  Chuang JH,  Wang PW,  Huang ST,  Tiao MM,  Chen JB,  Liou CW."}},{"resource":"17702527","link":"http://www.ncbi.nlm.nih.gov/pubmed/17702527","type":"PUBMED","article":{"title":"Comparison of the cytotoxicity of the nitroaromatic drug flutamide to its cyano analogue in the hepatocyte cell line TAMH: evidence for complex I inhibition and mitochondrial dysfunction using toxicogenomic screening.","authors":["Coe KJ"," Jia Y"," Ho HK"," Rademacher P"," Bammler TK"," Beyer RP"," Farin FM"," Woodke L"," Plymate SR"," Fausto N"," Nelson SD."],"journal":"Chemical research in toxicology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17702527","id":"17702527","citationCount":23,"stringAuthors":"Coe KJ,  Jia Y,  Ho HK,  Rademacher P,  Bammler TK,  Beyer RP,  Farin FM,  Woodke L,  Plymate SR,  Fausto N,  Nelson SD."}},{"resource":"22659318","link":"http://www.ncbi.nlm.nih.gov/pubmed/22659318","type":"PUBMED","article":{"title":"Cadmium-induced apoptosis in the BJAB human B cell line: involvement of PKC/ERK1/2/JNK signaling pathways in HO-1 expression.","authors":["Nemmiche S"," Chabane-Sari D"," Kadri M"," Guiraud P."],"journal":"Toxicology","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/22659318","id":"22659318","citationCount":16,"stringAuthors":"Nemmiche S,  Chabane-Sari D,  Kadri M,  Guiraud P."}},{"resource":"17657281","link":"http://www.ncbi.nlm.nih.gov/pubmed/17657281","type":"PUBMED","article":{"title":"The responses of HT22 cells to the blockade of mitochondrial complexes and potential protective effect of selenium supplementation.","authors":["Panee J"," Liu W"," Nakamura K"," Berry MJ."],"journal":"International journal of biological sciences","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17657281","id":"17657281","citationCount":13,"stringAuthors":"Panee J,  Liu W,  Nakamura K,  Berry MJ."}},{"resource":"23186747","link":"http://www.ncbi.nlm.nih.gov/pubmed/23186747","type":"PUBMED","article":{"title":"Gene expression profiling of rotenone-mediated cortical neuronal death: evidence for inhibition of ubiquitin-proteasome system and autophagy-lysosomal pathway, and dysfunction of mitochondrial and calcium signaling.","authors":["Yap YW"," Chen MJ"," Peng ZF"," Manikandan J"," Ng JM"," Llanos RM"," La Fontaine S"," Beart PM"," Cheung NS."],"journal":"Neurochemistry international","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23186747","id":"23186747","citationCount":5,"stringAuthors":"Yap YW,  Chen MJ,  Peng ZF,  Manikandan J,  Ng JM,  Llanos RM,  La Fontaine S,  Beart PM,  Cheung NS."}},{"resource":"26276080","link":"http://www.ncbi.nlm.nih.gov/pubmed/26276080","type":"PUBMED","article":{"title":"Pyrroloquinoline quinone-conferred neuroprotection in rotenone models of Parkinson's disease.","authors":["Qin J"," Wu M"," Yu S"," Gao X"," Zhang J"," Dong X"," Ji J"," Zhang Y"," Zhou L"," Zhang Q"," Ding F."],"journal":"Toxicology letters","year":2015,"link":"http://www.ncbi.nlm.nih.gov/pubmed/26276080","id":"26276080","citationCount":3,"stringAuthors":"Qin J,  Wu M,  Yu S,  Gao X,  Zhang J,  Dong X,  Ji J,  Zhang Y,  Zhou L,  Zhang Q,  Ding F."}}],"name":"HMOX1","targetParticipants":[{"idObject":0,"name":"HMOX1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=HMOX1","summary":null,"resource":"HMOX1"}]},{"targetElements":[],"references":[{"resource":"27979718","link":"http://www.ncbi.nlm.nih.gov/pubmed/27979718","type":"PUBMED","article":{"title":"Neonatal rotenone lesions cause onset of hyperactivity during juvenile and adulthood in the rat.","authors":["Ishido M"," Suzuki J"," Masuo Y."],"journal":"Toxicology letters","year":2017,"link":"http://www.ncbi.nlm.nih.gov/pubmed/27979718","id":"27979718","citationCount":0,"stringAuthors":"Ishido M,  Suzuki J,  Masuo Y."}}],"name":"HSPA1A","targetParticipants":[{"idObject":0,"name":"HSPA1A","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=HSPA1A","summary":null,"resource":"HSPA1A"}]},{"targetElements":[],"references":[{"resource":"16565515","link":"http://www.ncbi.nlm.nih.gov/pubmed/16565515","type":"PUBMED","article":{"title":"Proteomic identification of a stress protein, mortalin/mthsp70/GRP75: relevance to Parkinson disease.","authors":["Jin J"," Hulette C"," Wang Y"," Zhang T"," Pan C"," Wadhwa R"," Zhang J."],"journal":"Molecular & cellular proteomics : MCP","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16565515","id":"16565515","citationCount":110,"stringAuthors":"Jin J,  Hulette C,  Wang Y,  Zhang T,  Pan C,  Wadhwa R,  Zhang J."}},{"resource":"23186747","link":"http://www.ncbi.nlm.nih.gov/pubmed/23186747","type":"PUBMED","article":{"title":"Gene expression profiling of rotenone-mediated cortical neuronal death: evidence for inhibition of ubiquitin-proteasome system and autophagy-lysosomal pathway, and dysfunction of mitochondrial and calcium signaling.","authors":["Yap YW"," Chen MJ"," Peng ZF"," Manikandan J"," Ng JM"," Llanos RM"," La Fontaine S"," Beart PM"," Cheung NS."],"journal":"Neurochemistry international","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23186747","id":"23186747","citationCount":5,"stringAuthors":"Yap YW,  Chen MJ,  Peng ZF,  Manikandan J,  Ng JM,  Llanos RM,  La Fontaine S,  Beart PM,  Cheung NS."}}],"name":"HSPA9","targetParticipants":[{"idObject":0,"name":"HSPA9","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=HSPA9","summary":null,"resource":"HSPA9"}]},{"targetElements":[],"references":[{"resource":"27900601","link":"http://www.ncbi.nlm.nih.gov/pubmed/27900601","type":"PUBMED","article":{"title":"RNA-Seq Expression Analysis of Enteric Neuron Cells with Rotenone Treatment and Prediction of Regulated Pathways.","authors":["Guan Q"," Wang X"," Jiang Y"," Zhao L"," Nie Z"," Jin L."],"journal":"Neurochemical research","year":2017,"link":"http://www.ncbi.nlm.nih.gov/pubmed/27900601","id":"27900601","citationCount":0,"stringAuthors":"Guan Q,  Wang X,  Jiang Y,  Zhao L,  Nie Z,  Jin L."}}],"name":"IGF2","targetParticipants":[{"idObject":0,"name":"IGF2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=IGF2","summary":null,"resource":"IGF2"}]},{"targetElements":[],"references":[{"resource":"11950692","link":"http://www.ncbi.nlm.nih.gov/pubmed/11950692","type":"PUBMED","article":{"title":"Role of mitochondrial oxidant generation in endothelial cell responses to hypoxia.","authors":["Pearlstein DP"," Ali MH"," Mungai PT"," Hynes KL"," Gewertz BL"," Schumacker PT."],"journal":"Arteriosclerosis, thrombosis, and vascular biology","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11950692","id":"11950692","citationCount":54,"stringAuthors":"Pearlstein DP,  Ali MH,  Mungai PT,  Hynes KL,  Gewertz BL,  Schumacker PT."}},{"resource":"15135310","link":"http://www.ncbi.nlm.nih.gov/pubmed/15135310","type":"PUBMED","article":{"title":"Inverse gene expression patterns for macrophage activating hepatotoxicants and peroxisome proliferators in rat liver.","authors":["McMillian M"," Nie AY"," Parker JB"," Leone A"," Kemmerer M"," Bryant S"," Herlich J"," Yieh L"," Bittner A"," Liu X"," Wan J"," Johnson MD."],"journal":"Biochemical pharmacology","year":2004,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15135310","id":"15135310","citationCount":27,"stringAuthors":"McMillian M,  Nie AY,  Parker JB,  Leone A,  Kemmerer M,  Bryant S,  Herlich J,  Yieh L,  Bittner A,  Liu X,  Wan J,  Johnson MD."}},{"resource":"16837928","link":"http://www.ncbi.nlm.nih.gov/pubmed/16837928","type":"PUBMED","article":{"title":"Albumin-bound fatty acids induce mitochondrial oxidant stress and impair antioxidant responses in proximal tubular cells.","authors":["Ishola DA"," Post JA"," van Timmeren MM"," Bakker SJ"," Goldschmeding R"," Koomans HA"," Braam B"," Joles JA."],"journal":"Kidney international","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16837928","id":"16837928","citationCount":26,"stringAuthors":"Ishola DA,  Post JA,  van Timmeren MM,  Bakker SJ,  Goldschmeding R,  Koomans HA,  Braam B,  Joles JA."}},{"resource":"19635391","link":"http://www.ncbi.nlm.nih.gov/pubmed/19635391","type":"PUBMED","article":{"title":"Environmental toxicants inhibit neuronal Jak tyrosine kinase by mitochondrial disruption.","authors":["Monroe RK"," Halvorsen SW."],"journal":"Neurotoxicology","year":2009,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19635391","id":"19635391","citationCount":16,"stringAuthors":"Monroe RK,  Halvorsen SW."}},{"resource":"22745725","link":"http://www.ncbi.nlm.nih.gov/pubmed/22745725","type":"PUBMED","article":{"title":"Deguelin attenuates reperfusion injury and improves outcome after orthotopic lung transplantation in the rat.","authors":["Paulus P"," Ockelmann P"," Tacke S"," Karnowski N"," Ellinghaus P"," Scheller B"," Holfeld J"," Urbschat A"," Zacharowski K."],"journal":"PloS one","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/22745725","id":"22745725","citationCount":10,"stringAuthors":"Paulus P,  Ockelmann P,  Tacke S,  Karnowski N,  Ellinghaus P,  Scheller B,  Holfeld J,  Urbschat A,  Zacharowski K."}},{"resource":"24830863","link":"http://www.ncbi.nlm.nih.gov/pubmed/24830863","type":"PUBMED","article":{"title":"Rotenone, a mitochondrial respiratory complex I inhibitor, ameliorates lipopolysaccharide/D-galactosamine-induced fulminant hepatitis in mice.","authors":["Ai Q"," Jing Y"," Jiang R"," Lin L"," Dai J"," Che Q"," Zhou D"," Jia M"," Wan J"," Zhang L."],"journal":"International immunopharmacology","year":2014,"link":"http://www.ncbi.nlm.nih.gov/pubmed/24830863","id":"24830863","citationCount":8,"stringAuthors":"Ai Q,  Jing Y,  Jiang R,  Lin L,  Dai J,  Che Q,  Zhou D,  Jia M,  Wan J,  Zhang L."}},{"resource":"23867654","link":"http://www.ncbi.nlm.nih.gov/pubmed/23867654","type":"PUBMED","article":{"title":"Reactive oxygen species regulate context-dependent inhibition of NFAT5 target genes.","authors":["Kim NH"," Hong BK"," Choi SY"," Moo Kwon H"," Cho CS"," Yi EC"," Kim WU."],"journal":"Experimental & molecular medicine","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23867654","id":"23867654","citationCount":5,"stringAuthors":"Kim NH,  Hong BK,  Choi SY,  Moo Kwon H,  Cho CS,  Yi EC,  Kim WU."}}],"name":"IL6","targetParticipants":[{"idObject":0,"name":"IL6","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=IL6","summary":null,"resource":"IL6"}]},{"targetElements":[],"references":[{"resource":"18619942","link":"http://www.ncbi.nlm.nih.gov/pubmed/18619942","type":"PUBMED","article":{"title":"Overexpression of Kir2.3 in PC12 cells resists rotenone-induced neurotoxicity associated with PKC signaling pathway.","authors":["Wang G"," Zeng J"," Shen CY"," Wang ZQ"," Chen SD."],"journal":"Biochemical and biophysical research communications","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18619942","id":"18619942","citationCount":3,"stringAuthors":"Wang G,  Zeng J,  Shen CY,  Wang ZQ,  Chen SD."}}],"name":"KCNJ4","targetParticipants":[{"idObject":0,"name":"KCNJ4","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=KCNJ4","summary":null,"resource":"KCNJ4"}]},{"targetElements":[],"references":[{"resource":"19625511","link":"http://www.ncbi.nlm.nih.gov/pubmed/19625511","type":"PUBMED","article":{"title":"LRRK2 modulates vulnerability to mitochondrial dysfunction in Caenorhabditis elegans.","authors":["Saha S"," Guillily MD"," Ferree A"," Lanceta J"," Chan D"," Ghosh J"," Hsu CH"," Segal L"," Raghavan K"," Matsumoto K"," Hisamoto N"," Kuwahara T"," Iwatsubo T"," Moore L"," Goldstein L"," Cookson M"," Wolozin B."],"journal":"The Journal of neuroscience : the official journal of the Society for Neuroscience","year":2009,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19625511","id":"19625511","citationCount":97,"stringAuthors":"Saha S,  Guillily MD,  Ferree A,  Lanceta J,  Chan D,  Ghosh J,  Hsu CH,  Segal L,  Raghavan K,  Matsumoto K,  Hisamoto N,  Kuwahara T,  Iwatsubo T,  Moore L,  Goldstein L,  Cookson M,  Wolozin B."}},{"resource":"19741132","link":"http://www.ncbi.nlm.nih.gov/pubmed/19741132","type":"PUBMED","article":{"title":"Parkin protects against LRRK2 G2019S mutant-induced dopaminergic neurodegeneration in Drosophila.","authors":["Ng CH"," Mok SZ"," Koh C"," Ouyang X"," Fivaz ML"," Tan EK"," Dawson VL"," Dawson TM"," Yu F"," Lim KL."],"journal":"The Journal of neuroscience : the official journal of the Society for Neuroscience","year":2009,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19741132","id":"19741132","citationCount":90,"stringAuthors":"Ng CH,  Mok SZ,  Koh C,  Ouyang X,  Fivaz ML,  Tan EK,  Dawson VL,  Dawson TM,  Yu F,  Lim KL."}},{"resource":"19692353","link":"http://www.ncbi.nlm.nih.gov/pubmed/19692353","type":"PUBMED","article":{"title":"Leucine-Rich Repeat Kinase 2 interacts with Parkin, DJ-1 and PINK-1 in a Drosophila melanogaster model of Parkinson's disease.","authors":["Venderova K"," Kabbach G"," Abdel-Messih E"," Zhang Y"," Parks RJ"," Imai Y"," Gehrke S"," Ngsee J"," Lavoie MJ"," Slack RS"," Rao Y"," Zhang Z"," Lu B"," Haque ME"," Park DS."],"journal":"Human molecular genetics","year":2009,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19692353","id":"19692353","citationCount":78,"stringAuthors":"Venderova K,  Kabbach G,  Abdel-Messih E,  Zhang Y,  Parks RJ,  Imai Y,  Gehrke S,  Ngsee J,  Lavoie MJ,  Slack RS,  Rao Y,  Zhang Z,  Lu B,  Haque ME,  Park DS."}},{"resource":"18322385","link":"http://www.ncbi.nlm.nih.gov/pubmed/18322385","type":"PUBMED","article":{"title":"Investigating convergent actions of genes linked to familial Parkinson's disease.","authors":["Wolozin B"," Saha S"," Guillily M"," Ferree A"," Riley M."],"journal":"Neuro-degenerative diseases","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18322385","id":"18322385","citationCount":19,"stringAuthors":"Wolozin B,  Saha S,  Guillily M,  Ferree A,  Riley M."}}],"name":"LRRK2","targetParticipants":[{"idObject":0,"name":"LRRK2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=LRRK2","summary":null,"resource":"LRRK2"}]},{"targetElements":[],"references":[{"resource":"16449798","link":"http://www.ncbi.nlm.nih.gov/pubmed/16449798","type":"PUBMED","article":{"title":"Thioredoxin-ASK1 complex levels regulate ROS-mediated p38 MAPK pathway activity in livers of aged and long-lived Snell dwarf mice.","authors":["Hsieh CC"," Papaconstantinou J."],"journal":"FASEB journal : official publication of the Federation of American Societies for Experimental Biology","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16449798","id":"16449798","citationCount":84,"stringAuthors":"Hsieh CC,  Papaconstantinou J."}}],"name":"MAP3K5","targetParticipants":[{"idObject":0,"name":"MAP3K5","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=MAP3K5","summary":null,"resource":"MAP3K5"}]},{"targetElements":[],"references":[{"resource":"16219024","link":"http://www.ncbi.nlm.nih.gov/pubmed/16219024","type":"PUBMED","article":{"title":"The mitochondrial complex I inhibitor rotenone triggers a cerebral tauopathy.","authors":["Höglinger GU"," Lannuzel A"," Khondiker ME"," Michel PP"," Duyckaerts C"," Féger J"," Champy P"," Prigent A"," Medja F"," Lombes A"," Oertel WH"," Ruberg M"," Hirsch EC."],"journal":"Journal of neurochemistry","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16219024","id":"16219024","citationCount":76,"stringAuthors":"Höglinger GU,  Lannuzel A,  Khondiker ME,  Michel PP,  Duyckaerts C,  Féger J,  Champy P,  Prigent A,  Medja F,  Lombes A,  Oertel WH,  Ruberg M,  Hirsch EC."}},{"resource":"16930453","link":"http://www.ncbi.nlm.nih.gov/pubmed/16930453","type":"PUBMED","article":{"title":"Pharmacologic reductions of total tau levels; implications for the role of microtubule dynamics in regulating tau expression.","authors":["Dickey CA"," Ash P"," Klosak N"," Lee WC"," Petrucelli L"," Hutton M"," Eckman CB."],"journal":"Molecular neurodegeneration","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16930453","id":"16930453","citationCount":17,"stringAuthors":"Dickey CA,  Ash P,  Klosak N,  Lee WC,  Petrucelli L,  Hutton M,  Eckman CB."}}],"name":"MAPT","targetParticipants":[{"idObject":0,"name":"MAPT","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=MAPT","summary":null,"resource":"MAPT"}]},{"targetElements":[],"references":[{"resource":"24374061","link":"http://www.ncbi.nlm.nih.gov/pubmed/24374061","type":"PUBMED","article":{"title":"PPARγ activation rescues mitochondrial function from inhibition of complex I and loss of PINK1.","authors":["Corona JC"," de Souza SC"," Duchen MR."],"journal":"Experimental neurology","year":2014,"link":"http://www.ncbi.nlm.nih.gov/pubmed/24374061","id":"24374061","citationCount":12,"stringAuthors":"Corona JC,  de Souza SC,  Duchen MR."}},{"resource":"23186747","link":"http://www.ncbi.nlm.nih.gov/pubmed/23186747","type":"PUBMED","article":{"title":"Gene expression profiling of rotenone-mediated cortical neuronal death: evidence for inhibition of ubiquitin-proteasome system and autophagy-lysosomal pathway, and dysfunction of mitochondrial and calcium signaling.","authors":["Yap YW"," Chen MJ"," Peng ZF"," Manikandan J"," Ng JM"," Llanos RM"," La Fontaine S"," Beart PM"," Cheung NS."],"journal":"Neurochemistry international","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23186747","id":"23186747","citationCount":5,"stringAuthors":"Yap YW,  Chen MJ,  Peng ZF,  Manikandan J,  Ng JM,  Llanos RM,  La Fontaine S,  Beart PM,  Cheung NS."}}],"name":"NQO1","targetParticipants":[{"idObject":0,"name":"NQO1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=NQO1","summary":null,"resource":"NQO1"}]},{"targetElements":[],"references":[{"resource":"20940149","link":"http://www.ncbi.nlm.nih.gov/pubmed/20940149","type":"PUBMED","article":{"title":"DJ-1 acts in parallel to the PINK1/parkin pathway to control mitochondrial function and autophagy.","authors":["Thomas KJ"," McCoy MK"," Blackinton J"," Beilina A"," van der Brug M"," Sandebring A"," Miller D"," Maric D"," Cedazo-Minguez A"," Cookson MR."],"journal":"Human molecular genetics","year":2011,"link":"http://www.ncbi.nlm.nih.gov/pubmed/20940149","id":"20940149","citationCount":148,"stringAuthors":"Thomas KJ,  McCoy MK,  Blackinton J,  Beilina A,  van der Brug M,  Sandebring A,  Miller D,  Maric D,  Cedazo-Minguez A,  Cookson MR."}},{"resource":"19741132","link":"http://www.ncbi.nlm.nih.gov/pubmed/19741132","type":"PUBMED","article":{"title":"Parkin protects against LRRK2 G2019S mutant-induced dopaminergic neurodegeneration in Drosophila.","authors":["Ng CH"," Mok SZ"," Koh C"," Ouyang X"," Fivaz ML"," Tan EK"," Dawson VL"," Dawson TM"," Yu F"," Lim KL."],"journal":"The Journal of neuroscience : the official journal of the Society for Neuroscience","year":2009,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19741132","id":"19741132","citationCount":90,"stringAuthors":"Ng CH,  Mok SZ,  Koh C,  Ouyang X,  Fivaz ML,  Tan EK,  Dawson VL,  Dawson TM,  Yu F,  Lim KL."}},{"resource":"16573651","link":"http://www.ncbi.nlm.nih.gov/pubmed/16573651","type":"PUBMED","article":{"title":"Susceptibility to rotenone is increased in neurons from parkin null mice and is reduced by minocycline.","authors":["Casarejos MJ"," Menéndez J"," Solano RM"," Rodríguez-Navarro JA"," García de Yébenes J"," Mena MA."],"journal":"Journal of neurochemistry","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16573651","id":"16573651","citationCount":66,"stringAuthors":"Casarejos MJ,  Menéndez J,  Solano RM,  Rodríguez-Navarro JA,  García de Yébenes J,  Mena MA."}},{"resource":"22872702","link":"http://www.ncbi.nlm.nih.gov/pubmed/22872702","type":"PUBMED","article":{"title":"ROS-dependent regulation of Parkin and DJ-1 localization during oxidative stress in neurons.","authors":["Joselin AP"," Hewitt SJ"," Callaghan SM"," Kim RH"," Chung YH"," Mak TW"," Shen J"," Slack RS"," Park DS."],"journal":"Human molecular genetics","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/22872702","id":"22872702","citationCount":59,"stringAuthors":"Joselin AP,  Hewitt SJ,  Callaghan SM,  Kim RH,  Chung YH,  Mak TW,  Shen J,  Slack RS,  Park DS."}},{"resource":"17687034","link":"http://www.ncbi.nlm.nih.gov/pubmed/17687034","type":"PUBMED","article":{"title":"Drosophila overexpressing parkin R275W mutant exhibits dopaminergic neuron degeneration and mitochondrial abnormalities.","authors":["Wang C"," Lu R"," Ouyang X"," Ho MW"," Chia W"," Yu F"," Lim KL."],"journal":"The Journal of neuroscience : the official journal of the Society for Neuroscience","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17687034","id":"17687034","citationCount":52,"stringAuthors":"Wang C,  Lu R,  Ouyang X,  Ho MW,  Chia W,  Yu F,  Lim KL."}},{"resource":"16517603","link":"http://www.ncbi.nlm.nih.gov/pubmed/16517603","type":"PUBMED","article":{"title":"Parkin protects against mitochondrial toxins and beta-amyloid accumulation in skeletal muscle cells.","authors":["Rosen KM"," Veereshwarayya V"," Moussa CE"," Fu Q"," Goldberg MS"," Schlossmacher MG"," Shen J"," Querfurth HW."],"journal":"The Journal of Biological Chemistry","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16517603","id":"16517603","citationCount":45,"stringAuthors":"Rosen KM,  Veereshwarayya V,  Moussa CE,  Fu Q,  Goldberg MS,  Schlossmacher MG,  Shen J,  Querfurth HW."}}],"name":"PARK2","targetParticipants":[{"idObject":0,"name":"PARK2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=PARK2","summary":null,"resource":"PARK2"}]},{"targetElements":[],"references":[{"resource":"20940149","link":"http://www.ncbi.nlm.nih.gov/pubmed/20940149","type":"PUBMED","article":{"title":"DJ-1 acts in parallel to the PINK1/parkin pathway to control mitochondrial function and autophagy.","authors":["Thomas KJ"," McCoy MK"," Blackinton J"," Beilina A"," van der Brug M"," Sandebring A"," Miller D"," Maric D"," Cedazo-Minguez A"," Cookson MR."],"journal":"Human molecular genetics","year":2011,"link":"http://www.ncbi.nlm.nih.gov/pubmed/20940149","id":"20940149","citationCount":148,"stringAuthors":"Thomas KJ,  McCoy MK,  Blackinton J,  Beilina A,  van der Brug M,  Sandebring A,  Miller D,  Maric D,  Cedazo-Minguez A,  Cookson MR."}},{"resource":"16439141","link":"http://www.ncbi.nlm.nih.gov/pubmed/16439141","type":"PUBMED","article":{"title":"Intersecting pathways to neurodegeneration in Parkinson's disease: effects of the pesticide rotenone on DJ-1, alpha-synuclein, and the ubiquitin-proteasome system.","authors":["Betarbet R"," Canet-Aviles RM"," Sherer TB"," Mastroberardino PG"," McLendon C"," Kim JH"," Lund S"," Na HM"," Taylor G"," Bence NF"," Kopito R"," Seo BB"," Yagi T"," Yagi A"," Klinefelter G"," Cookson MR"," Greenamyre JT."],"journal":"Neurobiology of disease","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16439141","id":"16439141","citationCount":131,"stringAuthors":"Betarbet R,  Canet-Aviles RM,  Sherer TB,  Mastroberardino PG,  McLendon C,  Kim JH,  Lund S,  Na HM,  Taylor G,  Bence NF,  Kopito R,  Seo BB,  Yagi T,  Yagi A,  Klinefelter G,  Cookson MR,  Greenamyre JT."}},{"resource":"17459145","link":"http://www.ncbi.nlm.nih.gov/pubmed/17459145","type":"PUBMED","article":{"title":"Neurodegeneration of mouse nigrostriatal dopaminergic system induced by repeated oral administration of rotenone is prevented by 4-phenylbutyrate, a chemical chaperone.","authors":["Inden M"," Kitamura Y"," Takeuchi H"," Yanagida T"," Takata K"," Kobayashi Y"," Taniguchi T"," Yoshimoto K"," Kaneko M"," Okuma Y"," Taira T"," Ariga H"," Shimohama S."],"journal":"Journal of neurochemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17459145","id":"17459145","citationCount":68,"stringAuthors":"Inden M,  Kitamura Y,  Takeuchi H,  Yanagida T,  Takata K,  Kobayashi Y,  Taniguchi T,  Yoshimoto K,  Kaneko M,  Okuma Y,  Taira T,  Ariga H,  Shimohama S."}},{"resource":"18377993","link":"http://www.ncbi.nlm.nih.gov/pubmed/18377993","type":"PUBMED","article":{"title":"Oxidative insults induce DJ-1 upregulation and redistribution: implications for neuroprotection.","authors":["Lev N"," Ickowicz D"," Melamed E"," Offen D."],"journal":"Neurotoxicology","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18377993","id":"18377993","citationCount":59,"stringAuthors":"Lev N,  Ickowicz D,  Melamed E,  Offen D."}},{"resource":"18331584","link":"http://www.ncbi.nlm.nih.gov/pubmed/18331584","type":"PUBMED","article":{"title":"Mechanisms of DJ-1 neuroprotection in a cellular model of Parkinson's disease.","authors":["Liu F"," Nguyen JL"," Hulleman JD"," Li L"," Rochet JC."],"journal":"Journal of neurochemistry","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18331584","id":"18331584","citationCount":48,"stringAuthors":"Liu F,  Nguyen JL,  Hulleman JD,  Li L,  Rochet JC."}},{"resource":"18930142","link":"http://www.ncbi.nlm.nih.gov/pubmed/18930142","type":"PUBMED","article":{"title":"DJ-1 knock-down in astrocytes impairs astrocyte-mediated neuroprotection against rotenone.","authors":["Mullett SJ"," Hinkle DA."],"journal":"Neurobiology of disease","year":2009,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18930142","id":"18930142","citationCount":43,"stringAuthors":"Mullett SJ,  Hinkle DA."}},{"resource":"16624565","link":"http://www.ncbi.nlm.nih.gov/pubmed/16624565","type":"PUBMED","article":{"title":"Enhanced sensitivity of DJ-1-deficient dopaminergic neurons to energy metabolism impairment: role of Na+/K+ ATPase.","authors":["Pisani A"," Martella G"," Tscherter A"," Costa C"," Mercuri NB"," Bernardi G"," Shen J"," Calabresi P."],"journal":"Neurobiology of disease","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16624565","id":"16624565","citationCount":23,"stringAuthors":"Pisani A,  Martella G,  Tscherter A,  Costa C,  Mercuri NB,  Bernardi G,  Shen J,  Calabresi P."}},{"resource":"22898350","link":"http://www.ncbi.nlm.nih.gov/pubmed/22898350","type":"PUBMED","article":{"title":"DJ-1 protects dopaminergic neurons against rotenone-induced apoptosis by enhancing ERK-dependent mitophagy.","authors":["Gao H"," Yang W"," Qi Z"," Lu L"," Duan C"," Zhao C"," Yang H."],"journal":"Journal of molecular biology","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/22898350","id":"22898350","citationCount":21,"stringAuthors":"Gao H,  Yang W,  Qi Z,  Lu L,  Duan C,  Zhao C,  Yang H."}},{"resource":"19063952","link":"http://www.ncbi.nlm.nih.gov/pubmed/19063952","type":"PUBMED","article":{"title":"Analysis of targeted mutation in DJ-1 on cellular function in primary astrocytes.","authors":["Ashley AK"," Hanneman WH"," Katoh T"," Moreno JA"," Pollack A"," Tjalkens RB"," Legare ME."],"journal":"Toxicology letters","year":2009,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19063952","id":"19063952","citationCount":15,"stringAuthors":"Ashley AK,  Hanneman WH,  Katoh T,  Moreno JA,  Pollack A,  Tjalkens RB,  Legare ME."}}],"name":"PARK7","targetParticipants":[{"idObject":0,"name":"PARK7","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=PARK7","summary":null,"resource":"PARK7"}]},{"targetElements":[],"references":[{"resource":"20940149","link":"http://www.ncbi.nlm.nih.gov/pubmed/20940149","type":"PUBMED","article":{"title":"DJ-1 acts in parallel to the PINK1/parkin pathway to control mitochondrial function and autophagy.","authors":["Thomas KJ"," McCoy MK"," Blackinton J"," Beilina A"," van der Brug M"," Sandebring A"," Miller D"," Maric D"," Cedazo-Minguez A"," Cookson MR."],"journal":"Human molecular genetics","year":2011,"link":"http://www.ncbi.nlm.nih.gov/pubmed/20940149","id":"20940149","citationCount":148,"stringAuthors":"Thomas KJ,  McCoy MK,  Blackinton J,  Beilina A,  van der Brug M,  Sandebring A,  Miller D,  Maric D,  Cedazo-Minguez A,  Cookson MR."}},{"resource":"19492085","link":"http://www.ncbi.nlm.nih.gov/pubmed/19492085","type":"PUBMED","article":{"title":"Mitochondrial alterations in PINK1 deficient cells are influenced by calcineurin-dependent dephosphorylation of dynamin-related protein 1.","authors":["Sandebring A"," Thomas KJ"," Beilina A"," van der Brug M"," Cleland MM"," Ahmad R"," Miller DW"," Zambrano I"," Cowburn RF"," Behbahani H"," Cedazo-Mínguez A"," Cookson MR."],"journal":"PloS one","year":2009,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19492085","id":"19492085","citationCount":93,"stringAuthors":"Sandebring A,  Thomas KJ,  Beilina A,  van der Brug M,  Cleland MM,  Ahmad R,  Miller DW,  Zambrano I,  Cowburn RF,  Behbahani H,  Cedazo-Mínguez A,  Cookson MR."}},{"resource":"16226715","link":"http://www.ncbi.nlm.nih.gov/pubmed/16226715","type":"PUBMED","article":{"title":"Small interfering RNA targeting the PINK1 induces apoptosis in dopaminergic cells SH-SY5Y.","authors":["Deng H"," Jankovic J"," Guo Y"," Xie W"," Le W."],"journal":"Biochemical and biophysical research communications","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16226715","id":"16226715","citationCount":72,"stringAuthors":"Deng H,  Jankovic J,  Guo Y,  Xie W,  Le W."}},{"resource":"21421046","link":"http://www.ncbi.nlm.nih.gov/pubmed/21421046","type":"PUBMED","article":{"title":"PARK6 PINK1 mutants are defective in maintaining mitochondrial membrane potential and inhibiting ROS formation of substantia nigra dopaminergic neurons.","authors":["Wang HL"," Chou AH"," Wu AS"," Chen SY"," Weng YH"," Kao YC"," Yeh TH"," Chu PJ"," Lu CS."],"journal":"Biochimica et biophysica acta","year":2011,"link":"http://www.ncbi.nlm.nih.gov/pubmed/21421046","id":"21421046","citationCount":40,"stringAuthors":"Wang HL,  Chou AH,  Wu AS,  Chen SY,  Weng YH,  Kao YC,  Yeh TH,  Chu PJ,  Lu CS."}},{"resource":"20464527","link":"http://www.ncbi.nlm.nih.gov/pubmed/20464527","type":"PUBMED","article":{"title":"α-Synuclein transgenic mice reveal compensatory increases in Parkinson's disease-associated proteins DJ-1 and parkin and have enhanced α-synuclein and PINK1 levels after rotenone treatment.","authors":["George S"," Mok SS"," Nurjono M"," Ayton S"," Finkelstein DI"," Masters CL"," Li QX"," Culvenor JG."],"journal":"Journal of molecular neuroscience : MN","year":2010,"link":"http://www.ncbi.nlm.nih.gov/pubmed/20464527","id":"20464527","citationCount":14,"stringAuthors":"George S,  Mok SS,  Nurjono M,  Ayton S,  Finkelstein DI,  Masters CL,  Li QX,  Culvenor JG."}}],"name":"PINK1","targetParticipants":[{"idObject":0,"name":"PINK1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=PINK1","summary":null,"resource":"PINK1"}]},{"targetElements":[],"references":[{"resource":"20940149","link":"http://www.ncbi.nlm.nih.gov/pubmed/20940149","type":"PUBMED","article":{"title":"DJ-1 acts in parallel to the PINK1/parkin pathway to control mitochondrial function and autophagy.","authors":["Thomas KJ"," McCoy MK"," Blackinton J"," Beilina A"," van der Brug M"," Sandebring A"," Miller D"," Maric D"," Cedazo-Minguez A"," Cookson MR."],"journal":"Human molecular genetics","year":2011,"link":"http://www.ncbi.nlm.nih.gov/pubmed/20940149","id":"20940149","citationCount":148,"stringAuthors":"Thomas KJ,  McCoy MK,  Blackinton J,  Beilina A,  van der Brug M,  Sandebring A,  Miller D,  Maric D,  Cedazo-Minguez A,  Cookson MR."}},{"resource":"19741132","link":"http://www.ncbi.nlm.nih.gov/pubmed/19741132","type":"PUBMED","article":{"title":"Parkin protects against LRRK2 G2019S mutant-induced dopaminergic neurodegeneration in Drosophila.","authors":["Ng CH"," Mok SZ"," Koh C"," Ouyang X"," Fivaz ML"," Tan EK"," Dawson VL"," Dawson TM"," Yu F"," Lim KL."],"journal":"The Journal of neuroscience : the official journal of the Society for Neuroscience","year":2009,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19741132","id":"19741132","citationCount":90,"stringAuthors":"Ng CH,  Mok SZ,  Koh C,  Ouyang X,  Fivaz ML,  Tan EK,  Dawson VL,  Dawson TM,  Yu F,  Lim KL."}},{"resource":"16573651","link":"http://www.ncbi.nlm.nih.gov/pubmed/16573651","type":"PUBMED","article":{"title":"Susceptibility to rotenone is increased in neurons from parkin null mice and is reduced by minocycline.","authors":["Casarejos MJ"," Menéndez J"," Solano RM"," Rodríguez-Navarro JA"," García de Yébenes J"," Mena MA."],"journal":"Journal of neurochemistry","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16573651","id":"16573651","citationCount":66,"stringAuthors":"Casarejos MJ,  Menéndez J,  Solano RM,  Rodríguez-Navarro JA,  García de Yébenes J,  Mena MA."}},{"resource":"22872702","link":"http://www.ncbi.nlm.nih.gov/pubmed/22872702","type":"PUBMED","article":{"title":"ROS-dependent regulation of Parkin and DJ-1 localization during oxidative stress in neurons.","authors":["Joselin AP"," Hewitt SJ"," Callaghan SM"," Kim RH"," Chung YH"," Mak TW"," Shen J"," Slack RS"," Park DS."],"journal":"Human molecular genetics","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/22872702","id":"22872702","citationCount":59,"stringAuthors":"Joselin AP,  Hewitt SJ,  Callaghan SM,  Kim RH,  Chung YH,  Mak TW,  Shen J,  Slack RS,  Park DS."}},{"resource":"17687034","link":"http://www.ncbi.nlm.nih.gov/pubmed/17687034","type":"PUBMED","article":{"title":"Drosophila overexpressing parkin R275W mutant exhibits dopaminergic neuron degeneration and mitochondrial abnormalities.","authors":["Wang C"," Lu R"," Ouyang X"," Ho MW"," Chia W"," Yu F"," Lim KL."],"journal":"The Journal of neuroscience : the official journal of the Society for Neuroscience","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17687034","id":"17687034","citationCount":52,"stringAuthors":"Wang C,  Lu R,  Ouyang X,  Ho MW,  Chia W,  Yu F,  Lim KL."}},{"resource":"16517603","link":"http://www.ncbi.nlm.nih.gov/pubmed/16517603","type":"PUBMED","article":{"title":"Parkin protects against mitochondrial toxins and beta-amyloid accumulation in skeletal muscle cells.","authors":["Rosen KM"," Veereshwarayya V"," Moussa CE"," Fu Q"," Goldberg MS"," Schlossmacher MG"," Shen J"," Querfurth HW."],"journal":"The Journal of Biological Chemistry","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16517603","id":"16517603","citationCount":45,"stringAuthors":"Rosen KM,  Veereshwarayya V,  Moussa CE,  Fu Q,  Goldberg MS,  Schlossmacher MG,  Shen J,  Querfurth HW."}}],"name":"PRKN","targetParticipants":[{"idObject":0,"name":"PRKN","type":"HGNC Symbol","link":null,"summary":null,"resource":"PRKN"}]},{"targetElements":[],"references":[{"resource":"21383081","link":"http://www.ncbi.nlm.nih.gov/pubmed/21383081","type":"PUBMED","article":{"title":"Loss of mitochondrial complex I activity potentiates dopamine neuron death induced by microtubule dysfunction in a Parkinson's disease model.","authors":["Choi WS"," Palmiter RD"," Xia Z."],"journal":"The Journal of cell biology","year":2011,"link":"http://www.ncbi.nlm.nih.gov/pubmed/21383081","id":"21383081","citationCount":65,"stringAuthors":"Choi WS,  Palmiter RD,  Xia Z."}},{"resource":"18579341","link":"http://www.ncbi.nlm.nih.gov/pubmed/18579341","type":"PUBMED","article":{"title":"Rotenone-induced PC12 cell toxicity is caused by oxidative stress resulting from altered dopamine metabolism.","authors":["Sai Y"," Wu Q"," Le W"," Ye F"," Li Y"," Dong Z."],"journal":"Toxicology in vitro : an international journal published in association with BIBRA","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18579341","id":"18579341","citationCount":27,"stringAuthors":"Sai Y,  Wu Q,  Le W,  Ye F,  Li Y,  Dong Z."}},{"resource":"26276080","link":"http://www.ncbi.nlm.nih.gov/pubmed/26276080","type":"PUBMED","article":{"title":"Pyrroloquinoline quinone-conferred neuroprotection in rotenone models of Parkinson's disease.","authors":["Qin J"," Wu M"," Yu S"," Gao X"," Zhang J"," Dong X"," Ji J"," Zhang Y"," Zhou L"," Zhang Q"," Ding F."],"journal":"Toxicology letters","year":2015,"link":"http://www.ncbi.nlm.nih.gov/pubmed/26276080","id":"26276080","citationCount":3,"stringAuthors":"Qin J,  Wu M,  Yu S,  Gao X,  Zhang J,  Dong X,  Ji J,  Zhang Y,  Zhou L,  Zhang Q,  Ding F."}},{"resource":"25496994","link":"http://www.ncbi.nlm.nih.gov/pubmed/25496994","type":"PUBMED","article":{"title":"JNK inhibition of VMAT2 contributes to rotenone-induced oxidative stress and dopamine neuron death.","authors":["Choi WS"," Kim HW"," Xia Z."],"journal":"Toxicology","year":2015,"link":"http://www.ncbi.nlm.nih.gov/pubmed/25496994","id":"25496994","citationCount":2,"stringAuthors":"Choi WS,  Kim HW,  Xia Z."}}],"name":"SLC18A2","targetParticipants":[{"idObject":0,"name":"SLC18A2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=SLC18A2","summary":null,"resource":"SLC18A2"}]},{"targetElements":[],"references":[{"resource":"18289173","link":"http://www.ncbi.nlm.nih.gov/pubmed/18289173","type":"PUBMED","article":{"title":"Melatonin reduces the neuronal loss, downregulation of dopamine transporter, and upregulation of D2 receptor in rotenone-induced parkinsonian rats.","authors":["Lin CH"," Huang JY"," Ching CH"," Chuang JI."],"journal":"Journal of pineal research","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18289173","id":"18289173","citationCount":32,"stringAuthors":"Lin CH,  Huang JY,  Ching CH,  Chuang JI."}},{"resource":"18579341","link":"http://www.ncbi.nlm.nih.gov/pubmed/18579341","type":"PUBMED","article":{"title":"Rotenone-induced PC12 cell toxicity is caused by oxidative stress resulting from altered dopamine metabolism.","authors":["Sai Y"," Wu Q"," Le W"," Ye F"," Li Y"," Dong Z."],"journal":"Toxicology in vitro : an international journal published in association with BIBRA","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18579341","id":"18579341","citationCount":27,"stringAuthors":"Sai Y,  Wu Q,  Le W,  Ye F,  Li Y,  Dong Z."}},{"resource":"23567316","link":"http://www.ncbi.nlm.nih.gov/pubmed/23567316","type":"PUBMED","article":{"title":"Neonatal exposure to lipopolysaccharide enhances accumulation of α-synuclein aggregation and dopamine transporter protein expression in the substantia nigra in responses to rotenone challenge in later life.","authors":["Tien LT"," Kaizaki A"," Pang Y"," Cai Z"," Bhatt AJ"," Fan LW."],"journal":"Toxicology","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23567316","id":"23567316","citationCount":6,"stringAuthors":"Tien LT,  Kaizaki A,  Pang Y,  Cai Z,  Bhatt AJ,  Fan LW."}},{"resource":"18206288","link":"http://www.ncbi.nlm.nih.gov/pubmed/18206288","type":"PUBMED","article":{"title":"The role of dopamine transporter in selective toxicity of manganese and rotenone.","authors":["Hirata Y"," Suzuno H"," Tsuruta T"," Oh-hashi K"," Kiuchi K."],"journal":"Toxicology","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18206288","id":"18206288","citationCount":4,"stringAuthors":"Hirata Y,  Suzuno H,  Tsuruta T,  Oh-hashi K,  Kiuchi K."}}],"name":"SLC6A3","targetParticipants":[{"idObject":0,"name":"SLC6A3","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=SLC6A3","summary":null,"resource":"SLC6A3"}]},{"targetElements":[],"references":[{"resource":"11100151","link":"http://www.ncbi.nlm.nih.gov/pubmed/11100151","type":"PUBMED","article":{"title":"Chronic systemic pesticide exposure reproduces features of Parkinson's disease.","authors":["Betarbet R"," Sherer TB"," MacKenzie G"," Garcia-Osuna M"," Panov AV"," Greenamyre JT."],"journal":"Nature neuroscience","year":2000,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11100151","id":"11100151","citationCount":1330,"stringAuthors":"Betarbet R,  Sherer TB,  MacKenzie G,  Garcia-Osuna M,  Panov AV,  Greenamyre JT."}},{"resource":"12177198","link":"http://www.ncbi.nlm.nih.gov/pubmed/12177198","type":"PUBMED","article":{"title":"An in vitro model of Parkinson's disease: linking mitochondrial impairment to altered alpha-synuclein metabolism and oxidative damage.","authors":["Sherer TB"," Betarbet R"," Stout AK"," Lund S"," Baptista M"," Panov AV"," Cookson MR"," Greenamyre JT."],"journal":"The Journal of neuroscience : the official journal of the Society for Neuroscience","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/12177198","id":"12177198","citationCount":240,"stringAuthors":"Sherer TB,  Betarbet R,  Stout AK,  Lund S,  Baptista M,  Panov AV,  Cookson MR,  Greenamyre JT."}},{"resource":"16439141","link":"http://www.ncbi.nlm.nih.gov/pubmed/16439141","type":"PUBMED","article":{"title":"Intersecting pathways to neurodegeneration in Parkinson's disease: effects of the pesticide rotenone on DJ-1, alpha-synuclein, and the ubiquitin-proteasome system.","authors":["Betarbet R"," Canet-Aviles RM"," Sherer TB"," Mastroberardino PG"," McLendon C"," Kim JH"," Lund S"," Na HM"," Taylor G"," Bence NF"," Kopito R"," Seo BB"," Yagi T"," Yagi A"," Klinefelter G"," Cookson MR"," Greenamyre JT."],"journal":"Neurobiology of disease","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16439141","id":"16439141","citationCount":131,"stringAuthors":"Betarbet R,  Canet-Aviles RM,  Sherer TB,  Mastroberardino PG,  McLendon C,  Kim JH,  Lund S,  Na HM,  Taylor G,  Bence NF,  Kopito R,  Seo BB,  Yagi T,  Yagi A,  Klinefelter G,  Cookson MR,  Greenamyre JT."}},{"resource":"11445065","link":"http://www.ncbi.nlm.nih.gov/pubmed/11445065","type":"PUBMED","article":{"title":"Pesticides directly accelerate the rate of alpha-synuclein fibril formation: a possible factor in Parkinson's disease.","authors":["Uversky VN"," Li J"," Fink AL."],"journal":"FEBS letters","year":2001,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11445065","id":"11445065","citationCount":124,"stringAuthors":"Uversky VN,  Li J,  Fink AL."}},{"resource":"16239214","link":"http://www.ncbi.nlm.nih.gov/pubmed/16239214","type":"PUBMED","article":{"title":"Similar patterns of mitochondrial vulnerability and rescue induced by genetic modification of alpha-synuclein, parkin, and DJ-1 in Caenorhabditis elegans.","authors":["Ved R"," Saha S"," Westlund B"," Perier C"," Burnam L"," Sluder A"," Hoener M"," Rodrigues CM"," Alfonso A"," Steer C"," Liu L"," Przedborski S"," Wolozin B."],"journal":"The Journal of biological chemistry","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16239214","id":"16239214","citationCount":120,"stringAuthors":"Ved R,  Saha S,  Westlund B,  Perier C,  Burnam L,  Sluder A,  Hoener M,  Rodrigues CM,  Alfonso A,  Steer C,  Liu L,  Przedborski S,  Wolozin B."}},{"resource":"24290359","link":"http://www.ncbi.nlm.nih.gov/pubmed/24290359","type":"PUBMED","article":{"title":"Isogenic human iPSC Parkinson's model shows nitrosative stress-induced dysfunction in MEF2-PGC1α transcription.","authors":["Ryan SD"," Dolatabadi N"," Chan SF"," Zhang X"," Akhtar MW"," Parker J"," Soldner F"," Sunico CR"," Nagar S"," Talantova M"," Lee B"," Lopez K"," Nutter A"," Shan B"," Molokanova E"," Zhang Y"," Han X"," Nakamura T"," Masliah E"," Yates JR"," Nakanishi N"," Andreyev AY"," Okamoto S"," Jaenisch R"," Ambasudhan R"," Lipton SA."],"journal":"Cell","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/24290359","id":"24290359","citationCount":88,"stringAuthors":"Ryan SD,  Dolatabadi N,  Chan SF,  Zhang X,  Akhtar MW,  Parker J,  Soldner F,  Sunico CR,  Nagar S,  Talantova M,  Lee B,  Lopez K,  Nutter A,  Shan B,  Molokanova E,  Zhang Y,  Han X,  Nakamura T,  Masliah E,  Yates JR,  Nakanishi N,  Andreyev AY,  Okamoto S,  Jaenisch R,  Ambasudhan R,  Lipton SA."}},{"resource":"16219024","link":"http://www.ncbi.nlm.nih.gov/pubmed/16219024","type":"PUBMED","article":{"title":"The mitochondrial complex I inhibitor rotenone triggers a cerebral tauopathy.","authors":["Höglinger GU"," Lannuzel A"," Khondiker ME"," Michel PP"," Duyckaerts C"," Féger J"," Champy P"," Prigent A"," Medja F"," Lombes A"," Oertel WH"," Ruberg M"," Hirsch EC."],"journal":"Journal of neurochemistry","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16219024","id":"16219024","citationCount":76,"stringAuthors":"Höglinger GU,  Lannuzel A,  Khondiker ME,  Michel PP,  Duyckaerts C,  Féger J,  Champy P,  Prigent A,  Medja F,  Lombes A,  Oertel WH,  Ruberg M,  Hirsch EC."}},{"resource":"23205266","link":"http://www.ncbi.nlm.nih.gov/pubmed/23205266","type":"PUBMED","article":{"title":"Environmental toxins trigger PD-like progression via increased alpha-synuclein release from enteric neurons in mice.","authors":["Pan-Montojo F"," Schwarz M"," Winkler C"," Arnhold M"," O'Sullivan GA"," Pal A"," Said J"," Marsico G"," Verbavatz JM"," Rodrigo-Angulo M"," Gille G"," Funk RH"," Reichmann H."],"journal":"Scientific reports","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23205266","id":"23205266","citationCount":71,"stringAuthors":"Pan-Montojo F,  Schwarz M,  Winkler C,  Arnhold M,  O'Sullivan GA,  Pal A,  Said J,  Marsico G,  Verbavatz JM,  Rodrigo-Angulo M,  Gille G,  Funk RH,  Reichmann H."}},{"resource":"17459145","link":"http://www.ncbi.nlm.nih.gov/pubmed/17459145","type":"PUBMED","article":{"title":"Neurodegeneration of mouse nigrostriatal dopaminergic system induced by repeated oral administration of rotenone is prevented by 4-phenylbutyrate, a chemical chaperone.","authors":["Inden M"," Kitamura Y"," Takeuchi H"," Yanagida T"," Takata K"," Kobayashi Y"," Taniguchi T"," Yoshimoto K"," Kaneko M"," Okuma Y"," Taira T"," Ariga H"," Shimohama S."],"journal":"Journal of neurochemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17459145","id":"17459145","citationCount":68,"stringAuthors":"Inden M,  Kitamura Y,  Takeuchi H,  Yanagida T,  Takata K,  Kobayashi Y,  Taniguchi T,  Yoshimoto K,  Kaneko M,  Okuma Y,  Taira T,  Ariga H,  Shimohama S."}},{"resource":"19628769","link":"http://www.ncbi.nlm.nih.gov/pubmed/19628769","type":"PUBMED","article":{"title":"Metabolic activity determines efficacy of macroautophagic clearance of pathological oligomeric alpha-synuclein.","authors":["Yu WH"," Dorado B"," Figueroa HY"," Wang L"," Planel E"," Cookson MR"," Clark LN"," Duff KE."],"journal":"The American journal of pathology","year":2009,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19628769","id":"19628769","citationCount":65,"stringAuthors":"Yu WH,  Dorado B,  Figueroa HY,  Wang L,  Planel E,  Cookson MR,  Clark LN,  Duff KE."}},{"resource":"18514418","link":"http://www.ncbi.nlm.nih.gov/pubmed/18514418","type":"PUBMED","article":{"title":"Mitochondrial localization of alpha-synuclein protein in alpha-synuclein overexpressing cells.","authors":["Shavali S"," Brown-Borg HM"," Ebadi M"," Porter J."],"journal":"Neuroscience letters","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18514418","id":"18514418","citationCount":62,"stringAuthors":"Shavali S,  Brown-Borg HM,  Ebadi M,  Porter J."}},{"resource":"17131421","link":"http://www.ncbi.nlm.nih.gov/pubmed/17131421","type":"PUBMED","article":{"title":"RNA interference-mediated knockdown of alpha-synuclein protects human dopaminergic neuroblastoma cells from MPP(+) toxicity and reduces dopamine transport.","authors":["Fountaine TM"," Wade-Martins R."],"journal":"Journal of neuroscience research","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17131421","id":"17131421","citationCount":56,"stringAuthors":"Fountaine TM,  Wade-Martins R."}},{"resource":"19626387","link":"http://www.ncbi.nlm.nih.gov/pubmed/19626387","type":"PUBMED","article":{"title":"Valproic acid is neuroprotective in the rotenone rat model of Parkinson's disease: involvement of alpha-synuclein.","authors":["Monti B"," Gatta V"," Piretti F"," Raffaelli SS"," Virgili M"," Contestabile A."],"journal":"Neurotoxicity research","year":2010,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19626387","id":"19626387","citationCount":49,"stringAuthors":"Monti B,  Gatta V,  Piretti F,  Raffaelli SS,  Virgili M,  Contestabile A."}},{"resource":"15099020","link":"http://www.ncbi.nlm.nih.gov/pubmed/15099020","type":"PUBMED","article":{"title":"Abnormal alpha-synuclein interactions with Rab proteins in alpha-synuclein A30P transgenic mice.","authors":["Dalfó E"," Gómez-Isla T"," Rosa JL"," Nieto Bodelón M"," Cuadrado Tejedor M"," Barrachina M"," Ambrosio S"," Ferrer I."],"journal":"Journal of neuropathology and experimental neurology","year":2004,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15099020","id":"15099020","citationCount":45,"stringAuthors":"Dalfó E,  Gómez-Isla T,  Rosa JL,  Nieto Bodelón M,  Cuadrado Tejedor M,  Barrachina M,  Ambrosio S,  Ferrer I."}},{"resource":"19114014","link":"http://www.ncbi.nlm.nih.gov/pubmed/19114014","type":"PUBMED","article":{"title":"Chronic, low-dose rotenone reproduces Lewy neurites found in early stages of Parkinson's disease, reduces mitochondrial movement and slowly kills differentiated SH-SY5Y neural cells.","authors":["Borland MK"," Trimmer PA"," Rubinstein JD"," Keeney PM"," Mohanakumar K"," Liu L"," Bennett JP."],"journal":"Molecular neurodegeneration","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19114014","id":"19114014","citationCount":44,"stringAuthors":"Borland MK,  Trimmer PA,  Rubinstein JD,  Keeney PM,  Mohanakumar K,  Liu L,  Bennett JP."}},{"resource":"18289173","link":"http://www.ncbi.nlm.nih.gov/pubmed/18289173","type":"PUBMED","article":{"title":"Melatonin reduces the neuronal loss, downregulation of dopamine transporter, and upregulation of D2 receptor in rotenone-induced parkinsonian rats.","authors":["Lin CH"," Huang JY"," Ching CH"," Chuang JI."],"journal":"Journal of pineal research","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18289173","id":"18289173","citationCount":32,"stringAuthors":"Lin CH,  Huang JY,  Ching CH,  Chuang JI."}},{"resource":"15280438","link":"http://www.ncbi.nlm.nih.gov/pubmed/15280438","type":"PUBMED","article":{"title":"Rotenone induces apoptosis via activation of bad in human dopaminergic SH-SY5Y cells.","authors":["Watabe M"," Nakaki T."],"journal":"The Journal of pharmacology and experimental therapeutics","year":2004,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15280438","id":"15280438","citationCount":27,"stringAuthors":"Watabe M,  Nakaki T."}},{"resource":"15114628","link":"http://www.ncbi.nlm.nih.gov/pubmed/15114628","type":"PUBMED","article":{"title":"1-Benzyl-1,2,3,4-tetrahydroisoquinoline, a Parkinsonism-inducing endogenous toxin, increases alpha-synuclein expression and causes nuclear damage in human dopaminergic cells.","authors":["Shavali S"," Carlson EC"," Swinscoe JC"," Ebadi M."],"journal":"Journal of neuroscience research","year":2004,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15114628","id":"15114628","citationCount":23,"stringAuthors":"Shavali S,  Carlson EC,  Swinscoe JC,  Ebadi M."}},{"resource":"19857570","link":"http://www.ncbi.nlm.nih.gov/pubmed/19857570","type":"PUBMED","article":{"title":"Oxidants induce alternative splicing of alpha-synuclein: Implications for Parkinson's disease.","authors":["Kalivendi SV"," Yedlapudi D"," Hillard CJ"," Kalyanaraman B."],"journal":"Free radical biology & medicine","year":2010,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19857570","id":"19857570","citationCount":22,"stringAuthors":"Kalivendi SV,  Yedlapudi D,  Hillard CJ,  Kalyanaraman B."}},{"resource":"20414966","link":"http://www.ncbi.nlm.nih.gov/pubmed/20414966","type":"PUBMED","article":{"title":"Combined R-alpha-lipoic acid and acetyl-L-carnitine exerts efficient preventative effects in a cellular model of Parkinson's disease.","authors":["Zhang H"," Jia H"," Liu J"," Ao N"," Yan B"," Shen W"," Wang X"," Li X"," Luo C"," Liu J."],"journal":"Journal of cellular and molecular medicine","year":2010,"link":"http://www.ncbi.nlm.nih.gov/pubmed/20414966","id":"20414966","citationCount":21,"stringAuthors":"Zhang H,  Jia H,  Liu J,  Ao N,  Yan B,  Shen W,  Wang X,  Li X,  Luo C,  Liu J."}},{"resource":"23153578","link":"http://www.ncbi.nlm.nih.gov/pubmed/23153578","type":"PUBMED","article":{"title":"Expression of human E46K-mutated α-synuclein in BAC-transgenic rats replicates early-stage Parkinson's disease features and enhances vulnerability to mitochondrial impairment.","authors":["Cannon JR"," Geghman KD"," Tapias V"," Sew T"," Dail MK"," Li C"," Greenamyre JT."],"journal":"Experimental neurology","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23153578","id":"23153578","citationCount":17,"stringAuthors":"Cannon JR,  Geghman KD,  Tapias V,  Sew T,  Dail MK,  Li C,  Greenamyre JT."}},{"resource":"20464527","link":"http://www.ncbi.nlm.nih.gov/pubmed/20464527","type":"PUBMED","article":{"title":"α-Synuclein transgenic mice reveal compensatory increases in Parkinson's disease-associated proteins DJ-1 and parkin and have enhanced α-synuclein and PINK1 levels after rotenone treatment.","authors":["George S"," Mok SS"," Nurjono M"," Ayton S"," Finkelstein DI"," Masters CL"," Li QX"," Culvenor JG."],"journal":"Journal of molecular neuroscience : MN","year":2010,"link":"http://www.ncbi.nlm.nih.gov/pubmed/20464527","id":"20464527","citationCount":14,"stringAuthors":"George S,  Mok SS,  Nurjono M,  Ayton S,  Finkelstein DI,  Masters CL,  Li QX,  Culvenor JG."}},{"resource":"12151787","link":"http://www.ncbi.nlm.nih.gov/pubmed/12151787","type":"PUBMED","article":{"title":"Expression of mutant alpha-synucleins enhances dopamine transporter-mediated MPP+ toxicity in vitro.","authors":["Lehmensiek V"," Tan EM"," Schwarz J"," Storch A."],"journal":"Neuroreport","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/12151787","id":"12151787","citationCount":13,"stringAuthors":"Lehmensiek V,  Tan EM,  Schwarz J,  Storch A."}},{"resource":"23535362","link":"http://www.ncbi.nlm.nih.gov/pubmed/23535362","type":"PUBMED","article":{"title":"Specific pesticide-dependent increases in α-synuclein levels in human neuroblastoma (SH-SY5Y) and melanoma (SK-MEL-2) cell lines.","authors":["Chorfa A"," Bétemps D"," Morignat E"," Lazizzera C"," Hogeveen K"," Andrieu T"," Baron T."],"journal":"Toxicological sciences : an official journal of the Society of Toxicology","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23535362","id":"23535362","citationCount":11,"stringAuthors":"Chorfa A,  Bétemps D,  Morignat E,  Lazizzera C,  Hogeveen K,  Andrieu T,  Baron T."}},{"resource":"26075822","link":"http://www.ncbi.nlm.nih.gov/pubmed/26075822","type":"PUBMED","article":{"title":"shRNA targeting α-synuclein prevents neurodegeneration in a Parkinson's disease model.","authors":["Zharikov AD"," Cannon JR"," Tapias V"," Bai Q"," Horowitz MP"," Shah V"," El Ayadi A"," Hastings TG"," Greenamyre JT"," Burton EA."],"journal":"The Journal of clinical investigation","year":2015,"link":"http://www.ncbi.nlm.nih.gov/pubmed/26075822","id":"26075822","citationCount":9,"stringAuthors":"Zharikov AD,  Cannon JR,  Tapias V,  Bai Q,  Horowitz MP,  Shah V,  El Ayadi A,  Hastings TG,  Greenamyre JT,  Burton EA."}},{"resource":"23984410","link":"http://www.ncbi.nlm.nih.gov/pubmed/23984410","type":"PUBMED","article":{"title":"Rotenone upregulates alpha-synuclein and myocyte enhancer factor 2D independently from lysosomal degradation inhibition.","authors":["Sala G"," Arosio A"," Stefanoni G"," Melchionda L"," Riva C"," Marinig D"," Brighina L"," Ferrarese C."],"journal":"BioMed Research International","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23984410","id":"23984410","citationCount":8,"stringAuthors":"Sala G,  Arosio A,  Stefanoni G,  Melchionda L,  Riva C,  Marinig D,  Brighina L,  Ferrarese C."}},{"resource":"17690729","link":"http://www.ncbi.nlm.nih.gov/pubmed/17690729","type":"PUBMED","article":{"title":"alpha-Synuclein redistributed and aggregated in rotenone-induced Parkinson's disease rats.","authors":["Feng Y"," Liang ZH"," Wang T"," Qiao X"," Liu HJ"," Sun SG."],"journal":"Neuroscience bulletin","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17690729","id":"17690729","citationCount":8,"stringAuthors":"Feng Y,  Liang ZH,  Wang T,  Qiao X,  Liu HJ,  Sun SG."}},{"resource":"25433145","link":"http://www.ncbi.nlm.nih.gov/pubmed/25433145","type":"PUBMED","article":{"title":"The molecular mechanism of rotenone-induced α-synuclein aggregation: emphasizing the role of the calcium/GSK3β pathway.","authors":["Yuan YH"," Yan WF"," Sun JD"," Huang JY"," Mu Z"," Chen NH."],"journal":"Toxicology letters","year":2015,"link":"http://www.ncbi.nlm.nih.gov/pubmed/25433145","id":"25433145","citationCount":8,"stringAuthors":"Yuan YH,  Yan WF,  Sun JD,  Huang JY,  Mu Z,  Chen NH."}},{"resource":"26031332","link":"http://www.ncbi.nlm.nih.gov/pubmed/26031332","type":"PUBMED","article":{"title":"Sestrin2 Protects Dopaminergic Cells against Rotenone Toxicity through AMPK-Dependent Autophagy Activation.","authors":["Hou YS"," Guan JJ"," Xu HD"," Wu F"," Sheng R"," Qin ZH."],"journal":"Molecular and cellular biology","year":2015,"link":"http://www.ncbi.nlm.nih.gov/pubmed/26031332","id":"26031332","citationCount":5,"stringAuthors":"Hou YS,  Guan JJ,  Xu HD,  Wu F,  Sheng R,  Qin ZH."}},{"resource":"23244436","link":"http://www.ncbi.nlm.nih.gov/pubmed/23244436","type":"PUBMED","article":{"title":"Environmental toxicants as extrinsic epigenetic factors for parkinsonism: studies employing transgenic C. elegans model.","authors":["Jadiya P"," Nazir A."],"journal":"CNS & neurological disorders drug targets","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23244436","id":"23244436","citationCount":5,"stringAuthors":"Jadiya P,  Nazir A."}},{"resource":"25430725","link":"http://www.ncbi.nlm.nih.gov/pubmed/25430725","type":"PUBMED","article":{"title":"Daily rhythms of serotonin metabolism and the expression of clock genes in suprachiasmatic nucleus of rotenone-induced Parkinson's disease male Wistar rat model and effect of melatonin administration.","authors":["Mattam U"," Jagota A."],"journal":"Biogerontology","year":2015,"link":"http://www.ncbi.nlm.nih.gov/pubmed/25430725","id":"25430725","citationCount":3,"stringAuthors":"Mattam U,  Jagota A."}},{"resource":"27133439","link":"http://www.ncbi.nlm.nih.gov/pubmed/27133439","type":"PUBMED","article":{"title":"Rotenone down-regulates HSPA8/hsc70 chaperone protein in vitro: A new possible toxic mechanism contributing to Parkinson's disease.","authors":["Sala G"," Marinig D"," Riva C"," Arosio A"," Stefanoni G"," Brighina L"," Formenti M"," Alberghina L"," Colangelo AM"," Ferrarese C."],"journal":"Neurotoxicology","year":2016,"link":"http://www.ncbi.nlm.nih.gov/pubmed/27133439","id":"27133439","citationCount":2,"stringAuthors":"Sala G,  Marinig D,  Riva C,  Arosio A,  Stefanoni G,  Brighina L,  Formenti M,  Alberghina L,  Colangelo AM,  Ferrarese C."}},{"resource":"24002177","link":"http://www.ncbi.nlm.nih.gov/pubmed/24002177","type":"PUBMED","article":{"title":"14-3-3 Proteins in the regulation of rotenone-induced neurotoxicity might be via its isoform 14-3-3epsilon's involvement in autophagy.","authors":["Sai Y"," Peng K"," Ye F"," Zhao X"," Zhao Y"," Zou Z"," Cao J"," Dong Z."],"journal":"Cellular and molecular neurobiology","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/24002177","id":"24002177","citationCount":1,"stringAuthors":"Sai Y,  Peng K,  Ye F,  Zhao X,  Zhao Y,  Zou Z,  Cao J,  Dong Z."}},{"resource":"17041725","link":"http://www.ncbi.nlm.nih.gov/pubmed/17041725","type":"PUBMED","article":{"title":"[Overexpression of alpha-synuclein in SH-SY5Y cells partially protected against oxidative stress induced by rotenone].","authors":["Liu YY"," Zhao HY"," Zhao CL"," Duan CL"," Lu LL"," Yang H."],"journal":"Sheng li xue bao : [Acta physiologica Sinica]","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17041725","id":"17041725","citationCount":0,"stringAuthors":"Liu YY,  Zhao HY,  Zhao CL,  Duan CL,  Lu LL,  Yang H."}}],"name":"SNCA","targetParticipants":[{"idObject":0,"name":"SNCA","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=SNCA","summary":null,"resource":"SNCA"}]},{"targetElements":[],"references":[{"resource":"17079513","link":"http://www.ncbi.nlm.nih.gov/pubmed/17079513","type":"PUBMED","article":{"title":"Microtubule: a common target for parkin and Parkinson's disease toxins.","authors":["Feng J."],"journal":"The Neuroscientist : a review journal bringing neurobiology, neurology and psychiatry","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17079513","id":"17079513","citationCount":34,"stringAuthors":"Feng J."}},{"resource":"17070561","link":"http://www.ncbi.nlm.nih.gov/pubmed/17070561","type":"PUBMED","article":{"title":"Standardized Hypericum perforatum reduces oxidative stress and increases gene expression of antioxidant enzymes on rotenone-exposed rats.","authors":["Sánchez-Reus MI"," Gómez del Rio MA"," Iglesias I"," Elorza M"," Slowing K"," Benedí J."],"journal":"Neuropharmacology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17070561","id":"17070561","citationCount":21,"stringAuthors":"Sánchez-Reus MI,  Gómez del Rio MA,  Iglesias I,  Elorza M,  Slowing K,  Benedí J."}},{"resource":"23639798","link":"http://www.ncbi.nlm.nih.gov/pubmed/23639798","type":"PUBMED","article":{"title":"Valeriana officinalis attenuates the rotenone-induced toxicity in Drosophila melanogaster.","authors":["Sudati JH"," Vieira FA"," Pavin SS"," Dias GR"," Seeger RL"," Golombieski R"," Athayde ML"," Soares FA"," Rocha JB"," Barbosa NV."],"journal":"Neurotoxicology","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23639798","id":"23639798","citationCount":17,"stringAuthors":"Sudati JH,  Vieira FA,  Pavin SS,  Dias GR,  Seeger RL,  Golombieski R,  Athayde ML,  Soares FA,  Rocha JB,  Barbosa NV."}},{"resource":"17657281","link":"http://www.ncbi.nlm.nih.gov/pubmed/17657281","type":"PUBMED","article":{"title":"The responses of HT22 cells to the blockade of mitochondrial complexes and potential protective effect of selenium supplementation.","authors":["Panee J"," Liu W"," Nakamura K"," Berry MJ."],"journal":"International journal of biological sciences","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17657281","id":"17657281","citationCount":13,"stringAuthors":"Panee J,  Liu W,  Nakamura K,  Berry MJ."}},{"resource":"24374061","link":"http://www.ncbi.nlm.nih.gov/pubmed/24374061","type":"PUBMED","article":{"title":"PPARγ activation rescues mitochondrial function from inhibition of complex I and loss of PINK1.","authors":["Corona JC"," de Souza SC"," Duchen MR."],"journal":"Experimental neurology","year":2014,"link":"http://www.ncbi.nlm.nih.gov/pubmed/24374061","id":"24374061","citationCount":12,"stringAuthors":"Corona JC,  de Souza SC,  Duchen MR."}},{"resource":"21807080","link":"http://www.ncbi.nlm.nih.gov/pubmed/21807080","type":"PUBMED","article":{"title":"An effective novel delivery strategy of rasagiline for Parkinson's disease.","authors":["Fernández M"," Negro S"," Slowing K"," Fernández-Carballido A"," Barcia E."],"journal":"International journal of pharmaceutics","year":2011,"link":"http://www.ncbi.nlm.nih.gov/pubmed/21807080","id":"21807080","citationCount":8,"stringAuthors":"Fernández M,  Negro S,  Slowing K,  Fernández-Carballido A,  Barcia E."}},{"resource":"22447502","link":"http://www.ncbi.nlm.nih.gov/pubmed/22447502","type":"PUBMED","article":{"title":"Molecular responses differ between sensitive silver carp and tolerant bighead carp and bigmouth buffalo exposed to rotenone.","authors":["Amberg JJ"," Schreier TM"," Gaikowski MP."],"journal":"Fish physiology and biochemistry","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/22447502","id":"22447502","citationCount":3,"stringAuthors":"Amberg JJ,  Schreier TM,  Gaikowski MP."}}],"name":"SOD1","targetParticipants":[{"idObject":0,"name":"SOD1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=SOD1","summary":null,"resource":"SOD1"}]},{"targetElements":[],"references":[{"resource":"18032788","link":"http://www.ncbi.nlm.nih.gov/pubmed/18032788","type":"PUBMED","article":{"title":"Mitochondrial electron-transport-chain inhibitors of complexes I and II induce autophagic cell death mediated by reactive oxygen species.","authors":["Chen Y"," McMillan-Ward E"," Kong J"," Israels SJ"," Gibson SB."],"journal":"Journal of cell science","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18032788","id":"18032788","citationCount":167,"stringAuthors":"Chen Y,  McMillan-Ward E,  Kong J,  Israels SJ,  Gibson SB."}},{"resource":"16179351","link":"http://www.ncbi.nlm.nih.gov/pubmed/16179351","type":"PUBMED","article":{"title":"Mitochondrial manganese-superoxide dismutase expression in ovarian cancer: role in cell proliferation and response to oxidative stress.","authors":["Hu Y"," Rosen DG"," Zhou Y"," Feng L"," Yang G"," Liu J"," Huang P."],"journal":"The Journal of biological chemistry","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16179351","id":"16179351","citationCount":103,"stringAuthors":"Hu Y,  Rosen DG,  Zhou Y,  Feng L,  Yang G,  Liu J,  Huang P."}},{"resource":"10463952","link":"http://www.ncbi.nlm.nih.gov/pubmed/10463952","type":"PUBMED","article":{"title":"Overexpression of manganese superoxide dismutase protects against mitochondrial-initiated poly(ADP-ribose) polymerase-mediated cell death.","authors":["Kiningham KK"," Oberley TD"," Lin S"," Mattingly CA"," St Clair DK."],"journal":"FASEB journal : official publication of the Federation of American Societies for Experimental Biology","year":1999,"link":"http://www.ncbi.nlm.nih.gov/pubmed/10463952","id":"10463952","citationCount":48,"stringAuthors":"Kiningham KK,  Oberley TD,  Lin S,  Mattingly CA,  St Clair DK."}},{"resource":"17079513","link":"http://www.ncbi.nlm.nih.gov/pubmed/17079513","type":"PUBMED","article":{"title":"Microtubule: a common target for parkin and Parkinson's disease toxins.","authors":["Feng J."],"journal":"The Neuroscientist : a review journal bringing neurobiology, neurology and psychiatry","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17079513","id":"17079513","citationCount":34,"stringAuthors":"Feng J."}},{"resource":"17070561","link":"http://www.ncbi.nlm.nih.gov/pubmed/17070561","type":"PUBMED","article":{"title":"Standardized Hypericum perforatum reduces oxidative stress and increases gene expression of antioxidant enzymes on rotenone-exposed rats.","authors":["Sánchez-Reus MI"," Gómez del Rio MA"," Iglesias I"," Elorza M"," Slowing K"," Benedí J."],"journal":"Neuropharmacology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17070561","id":"17070561","citationCount":21,"stringAuthors":"Sánchez-Reus MI,  Gómez del Rio MA,  Iglesias I,  Elorza M,  Slowing K,  Benedí J."}},{"resource":"15904944","link":"http://www.ncbi.nlm.nih.gov/pubmed/15904944","type":"PUBMED","article":{"title":"Effect of fraxetin on antioxidant defense and stress proteins in human neuroblastoma cell model of rotenone neurotoxicity. Comparative study with myricetin and N-acetylcysteine.","authors":["Molina-Jiménez MF"," Sánchez-Reus MI"," Cascales M"," Andrés D"," Benedí J."],"journal":"Toxicology and applied pharmacology","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15904944","id":"15904944","citationCount":14,"stringAuthors":"Molina-Jiménez MF,  Sánchez-Reus MI,  Cascales M,  Andrés D,  Benedí J."}},{"resource":"17657281","link":"http://www.ncbi.nlm.nih.gov/pubmed/17657281","type":"PUBMED","article":{"title":"The responses of HT22 cells to the blockade of mitochondrial complexes and potential protective effect of selenium supplementation.","authors":["Panee J"," Liu W"," Nakamura K"," Berry MJ."],"journal":"International journal of biological sciences","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17657281","id":"17657281","citationCount":13,"stringAuthors":"Panee J,  Liu W,  Nakamura K,  Berry MJ."}},{"resource":"21807080","link":"http://www.ncbi.nlm.nih.gov/pubmed/21807080","type":"PUBMED","article":{"title":"An effective novel delivery strategy of rasagiline for Parkinson's disease.","authors":["Fernández M"," Negro S"," Slowing K"," Fernández-Carballido A"," Barcia E."],"journal":"International journal of pharmaceutics","year":2011,"link":"http://www.ncbi.nlm.nih.gov/pubmed/21807080","id":"21807080","citationCount":8,"stringAuthors":"Fernández M,  Negro S,  Slowing K,  Fernández-Carballido A,  Barcia E."}},{"resource":"19818760","link":"http://www.ncbi.nlm.nih.gov/pubmed/19818760","type":"PUBMED","article":{"title":"Enhanced metallothionein gene expression induced by mitochondrial oxidative stress is reduced in phospholipid hydroperoxide glutathione peroxidase-overexpressed cells.","authors":["Kadota Y"," Suzuki S"," Ideta S"," Fukinbara Y"," Kawakami T"," Imai H"," Nakagawa Y"," Sato M."],"journal":"European journal of pharmacology","year":2010,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19818760","id":"19818760","citationCount":7,"stringAuthors":"Kadota Y,  Suzuki S,  Ideta S,  Fukinbara Y,  Kawakami T,  Imai H,  Nakagawa Y,  Sato M."}},{"resource":"8989910","link":"http://www.ncbi.nlm.nih.gov/pubmed/8989910","type":"PUBMED","article":{"title":"Increased manganese superoxide dismutase activity, protein, and mRNA levels and concurrent induction of tumor necrosis factor alpha in radiation-initiated Syrian hamster cells.","authors":["Otero G"," Avila MA"," Emfietzoglou D"," Clerch LB"," Massaro D"," Notario V."],"journal":"Molecular carcinogenesis","year":1996,"link":"http://www.ncbi.nlm.nih.gov/pubmed/8989910","id":"8989910","citationCount":7,"stringAuthors":"Otero G,  Avila MA,  Emfietzoglou D,  Clerch LB,  Massaro D,  Notario V."}},{"resource":"22447502","link":"http://www.ncbi.nlm.nih.gov/pubmed/22447502","type":"PUBMED","article":{"title":"Molecular responses differ between sensitive silver carp and tolerant bighead carp and bigmouth buffalo exposed to rotenone.","authors":["Amberg JJ"," Schreier TM"," Gaikowski MP."],"journal":"Fish physiology and biochemistry","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/22447502","id":"22447502","citationCount":3,"stringAuthors":"Amberg JJ,  Schreier TM,  Gaikowski MP."}},{"resource":"25843018","link":"http://www.ncbi.nlm.nih.gov/pubmed/25843018","type":"PUBMED","article":{"title":"Pyrroloquinoline quinone (PQQ) producing Escherichia coli Nissle 1917 (EcN) alleviates age associated oxidative stress and hyperlipidemia, and improves mitochondrial function in ageing rats.","authors":["Singh AK"," Pandey SK"," Saha G"," Gattupalli NK."],"journal":"Experimental gerontology","year":2015,"link":"http://www.ncbi.nlm.nih.gov/pubmed/25843018","id":"25843018","citationCount":2,"stringAuthors":"Singh AK,  Pandey SK,  Saha G,  Gattupalli NK."}}],"name":"SOD2","targetParticipants":[{"idObject":0,"name":"SOD2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=SOD2","summary":null,"resource":"SOD2"}]},{"targetElements":[],"references":[{"resource":"10878378","link":"http://www.ncbi.nlm.nih.gov/pubmed/10878378","type":"PUBMED","article":{"title":"Role of oxidants in NF-kappa B activation and TNF-alpha gene transcription induced by hypoxia and endotoxin.","authors":["Chandel NS"," Trzyna WC"," McClintock DS"," Schumacker PT."],"journal":"Journal of immunology (Baltimore, Md. : 1950)","year":2000,"link":"http://www.ncbi.nlm.nih.gov/pubmed/10878378","id":"10878378","citationCount":153,"stringAuthors":"Chandel NS,  Trzyna WC,  McClintock DS,  Schumacker PT."}},{"resource":"10973919","link":"http://www.ncbi.nlm.nih.gov/pubmed/10973919","type":"PUBMED","article":{"title":"Rac1 inhibits TNF-alpha-induced endothelial cell apoptosis: dual regulation by reactive oxygen species.","authors":["Deshpande SS"," Angkeow P"," Huang J"," Ozaki M"," Irani K."],"journal":"FASEB journal : official publication of the Federation of American Societies for Experimental Biology","year":2000,"link":"http://www.ncbi.nlm.nih.gov/pubmed/10973919","id":"10973919","citationCount":97,"stringAuthors":"Deshpande SS,  Angkeow P,  Huang J,  Ozaki M,  Irani K."}},{"resource":"7532384","link":"http://www.ncbi.nlm.nih.gov/pubmed/7532384","type":"PUBMED","article":{"title":"Regulation of hepatic nitric oxide synthase by reactive oxygen intermediates and glutathione.","authors":["Duval DL"," Sieg DJ"," Billings RE."],"journal":"Archives of biochemistry and biophysics","year":1995,"link":"http://www.ncbi.nlm.nih.gov/pubmed/7532384","id":"7532384","citationCount":35,"stringAuthors":"Duval DL,  Sieg DJ,  Billings RE."}},{"resource":"17356569","link":"http://www.ncbi.nlm.nih.gov/pubmed/17356569","type":"PUBMED","article":{"title":"Iptakalim alleviates rotenone-induced degeneration of dopaminergic neurons through inhibiting microglia-mediated neuroinflammation.","authors":["Zhou F"," Wu JY"," Sun XL"," Yao HH"," Ding JH"," Hu G."],"journal":"Neuropsychopharmacology : official publication of the American College of Neuropsychopharmacology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17356569","id":"17356569","citationCount":34,"stringAuthors":"Zhou F,  Wu JY,  Sun XL,  Yao HH,  Ding JH,  Hu G."}},{"resource":"19012619","link":"http://www.ncbi.nlm.nih.gov/pubmed/19012619","type":"PUBMED","article":{"title":"Opening of microglial K(ATP) channels inhibits rotenone-induced neuroinflammation.","authors":["Zhou F"," Yao HH"," Wu JY"," Ding JH"," Sun T"," Hu G."],"journal":"Journal of cellular and molecular medicine","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/19012619","id":"19012619","citationCount":32,"stringAuthors":"Zhou F,  Yao HH,  Wu JY,  Ding JH,  Sun T,  Hu G."}},{"resource":"15135310","link":"http://www.ncbi.nlm.nih.gov/pubmed/15135310","type":"PUBMED","article":{"title":"Inverse gene expression patterns for macrophage activating hepatotoxicants and peroxisome proliferators in rat liver.","authors":["McMillian M"," Nie AY"," Parker JB"," Leone A"," Kemmerer M"," Bryant S"," Herlich J"," Yieh L"," Bittner A"," Liu X"," Wan J"," Johnson MD."],"journal":"Biochemical pharmacology","year":2004,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15135310","id":"15135310","citationCount":27,"stringAuthors":"McMillian M,  Nie AY,  Parker JB,  Leone A,  Kemmerer M,  Bryant S,  Herlich J,  Yieh L,  Bittner A,  Liu X,  Wan J,  Johnson MD."}},{"resource":"17015749","link":"http://www.ncbi.nlm.nih.gov/pubmed/17015749","type":"PUBMED","article":{"title":"Deguelin, an Akt inhibitor, suppresses IkappaBalpha kinase activation leading to suppression of NF-kappaB-regulated gene expression, potentiation of apoptosis, and inhibition of cellular invasion.","authors":["Nair AS"," Shishodia S"," Ahn KS"," Kunnumakkara AB"," Sethi G"," Aggarwal BB."],"journal":"Journal of immunology (Baltimore, Md. : 1950)","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17015749","id":"17015749","citationCount":26,"stringAuthors":"Nair AS,  Shishodia S,  Ahn KS,  Kunnumakkara AB,  Sethi G,  Aggarwal BB."}},{"resource":"22623043","link":"http://www.ncbi.nlm.nih.gov/pubmed/22623043","type":"PUBMED","article":{"title":"Deguelin, an Akt inhibitor, down-regulates NF-κB signaling and induces apoptosis in colon cancer cells and inhibits tumor growth in mice.","authors":["Kang HW"," Kim JM"," Cha MY"," Jung HC"," Song IS"," Kim JS."],"journal":"Digestive diseases and sciences","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/22623043","id":"22623043","citationCount":18,"stringAuthors":"Kang HW,  Kim JM,  Cha MY,  Jung HC,  Song IS,  Kim JS."}},{"resource":"18841906","link":"http://www.ncbi.nlm.nih.gov/pubmed/18841906","type":"PUBMED","article":{"title":"Phenolic constituents of Amorpha fruticosa that inhibit NF-kappaB activation and related gene expression.","authors":["Dat NT"," Lee JH"," Lee K"," Hong YS"," Kim YH"," Lee JJ."],"journal":"Journal of natural products","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18841906","id":"18841906","citationCount":17,"stringAuthors":"Dat NT,  Lee JH,  Lee K,  Hong YS,  Kim YH,  Lee JJ."}},{"resource":"16257489","link":"http://www.ncbi.nlm.nih.gov/pubmed/16257489","type":"PUBMED","article":{"title":"The regulation of rotenone-induced inflammatory factor production by ATP-sensitive potassium channel expressed in BV-2 cells.","authors":["Liu X"," Wu JY"," Zhou F"," Sun XL"," Yao HH"," Yang Y"," Ding JH"," Hu G."],"journal":"Neuroscience letters","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16257489","id":"16257489","citationCount":16,"stringAuthors":"Liu X,  Wu JY,  Zhou F,  Sun XL,  Yao HH,  Yang Y,  Ding JH,  Hu G."}},{"resource":"25086357","link":"http://www.ncbi.nlm.nih.gov/pubmed/25086357","type":"PUBMED","article":{"title":"Downregulation of cystathionine β-synthase/hydrogen sulfide contributes to rotenone-induced microglia polarization toward M1 type.","authors":["Du C"," Jin M"," Hong Y"," Li Q"," Wang XH"," Xu JM"," Wang F"," Zhang Y"," Jia J"," Liu CF"," Hu LF."],"journal":"Biochemical and biophysical research communications","year":2014,"link":"http://www.ncbi.nlm.nih.gov/pubmed/25086357","id":"25086357","citationCount":8,"stringAuthors":"Du C,  Jin M,  Hong Y,  Li Q,  Wang XH,  Xu JM,  Wang F,  Zhang Y,  Jia J,  Liu CF,  Hu LF."}},{"resource":"24830863","link":"http://www.ncbi.nlm.nih.gov/pubmed/24830863","type":"PUBMED","article":{"title":"Rotenone, a mitochondrial respiratory complex I inhibitor, ameliorates lipopolysaccharide/D-galactosamine-induced fulminant hepatitis in mice.","authors":["Ai Q"," Jing Y"," Jiang R"," Lin L"," Dai J"," Che Q"," Zhou D"," Jia M"," Wan J"," Zhang L."],"journal":"International immunopharmacology","year":2014,"link":"http://www.ncbi.nlm.nih.gov/pubmed/24830863","id":"24830863","citationCount":8,"stringAuthors":"Ai Q,  Jing Y,  Jiang R,  Lin L,  Dai J,  Che Q,  Zhou D,  Jia M,  Wan J,  Zhang L."}},{"resource":"21807080","link":"http://www.ncbi.nlm.nih.gov/pubmed/21807080","type":"PUBMED","article":{"title":"An effective novel delivery strategy of rasagiline for Parkinson's disease.","authors":["Fernández M"," Negro S"," Slowing K"," Fernández-Carballido A"," Barcia E."],"journal":"International journal of pharmaceutics","year":2011,"link":"http://www.ncbi.nlm.nih.gov/pubmed/21807080","id":"21807080","citationCount":8,"stringAuthors":"Fernández M,  Negro S,  Slowing K,  Fernández-Carballido A,  Barcia E."}},{"resource":"23593274","link":"http://www.ncbi.nlm.nih.gov/pubmed/23593274","type":"PUBMED","article":{"title":"Resveratrol confers protection against rotenone-induced neurotoxicity by modulating myeloperoxidase levels in glial cells.","authors":["Chang CY"," Choi DK"," Lee DK"," Hong YJ"," Park EJ."],"journal":"PloS one","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23593274","id":"23593274","citationCount":8,"stringAuthors":"Chang CY,  Choi DK,  Lee DK,  Hong YJ,  Park EJ."}},{"resource":"15720824","link":"http://www.ncbi.nlm.nih.gov/pubmed/15720824","type":"PUBMED","article":{"title":"Rotenone, a mitochondrial electron transport inhibitor, ameliorates ischemia-reperfusion-induced intestinal mucosal damage in rats.","authors":["Ichikawa H"," Takagi T"," Uchiyama K"," Higashihara H"," Katada K"," Isozaki Y"," Naito Y"," Yoshida N"," Yoshikawa T."],"journal":"Redox report : communications in free radical research","year":2004,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15720824","id":"15720824","citationCount":7,"stringAuthors":"Ichikawa H,  Takagi T,  Uchiyama K,  Higashihara H,  Katada K,  Isozaki Y,  Naito Y,  Yoshida N,  Yoshikawa T."}},{"resource":"23645222","link":"http://www.ncbi.nlm.nih.gov/pubmed/23645222","type":"PUBMED","article":{"title":"Rotenone could activate microglia through NFκB associated pathway.","authors":["Yuan YH"," Sun JD"," Wu MM"," Hu JF"," Peng SY"," Chen NH."],"journal":"Neurochemical research","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23645222","id":"23645222","citationCount":7,"stringAuthors":"Yuan YH,  Sun JD,  Wu MM,  Hu JF,  Peng SY,  Chen NH."}},{"resource":"25481089","link":"http://www.ncbi.nlm.nih.gov/pubmed/25481089","type":"PUBMED","article":{"title":"Neuroprotective effects of bee venom acupuncture therapy against rotenone-induced oxidative stress and apoptosis.","authors":["Khalil WK"," Assaf N"," ElShebiney SA"," Salem NA."],"journal":"Neurochemistry international","year":2015,"link":"http://www.ncbi.nlm.nih.gov/pubmed/25481089","id":"25481089","citationCount":5,"stringAuthors":"Khalil WK,  Assaf N,  ElShebiney SA,  Salem NA."}}],"name":"TNF","targetParticipants":[{"idObject":0,"name":"TNF","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=TNF","summary":null,"resource":"TNF"}]}]}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/drugs.search/query=NADH&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/drugs.search/query=NADH&token=MOCK_TOKEN_ID&
index ff6e8c7444cabbadc48aa50362098d6b2049ff93..f23119257d832aea0eb43d29a8c6b89ddf151df6 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/drugs.search/query=NADH&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/drugs.search/query=NADH&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"brandNames":"Unknown column","references":[{"name":"DB00157","type":"DrugBank","link":"http://www.drugbank.ca/drugs/DB00157","idObject":0}],"synonyms":["1,4-dihydronicotinamide adenine dinucleotide","DPNH","NAD reduced form","Nicotinamide adenine dinucleotide (reduced)","Nicotinamide-adenine dinucleotide, reduced","Reduced nicotinamide adenine diphosphate","Reduced nicotinamide-adenine dinucleotide"],"name":"NADH","description":"NADH is the reduced form of NAD+, and NAD+ is the oxidized form of NADH, a coenzyme composed of ribosylnicotinamide 5\u0027-diphosphate coupled to adenosine 5\u0027-phosphate by pyrophosphate linkage. It is found widely in nature and is involved in numerous enzymatic reactions in which it serves as an electron carrier by being alternately oxidized (NAD+) and reduced (NADH). It forms NADP with the addition of a phosphate group to the 2\u0027 position of the adenosyl nucleotide through an ester linkage. (Dorland, 27th ed)","id":"NADH","targets":[{"targetElements":[{"modelId":15781,"id":329170,"type":"ALIAS"}],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Activities of NAD-specific and NADP-specific isocitrate dehydrogenases in rat-liver mitochondria. Studies with D-threo-alpha-methylisocitrate.","authors":["Smith CM"," Plaut GW."],"journal":"European journal of biochemistry / FEBS","year":1979,"link":"http://www.ncbi.nlm.nih.gov/pubmed/38961","id":"38961","citationCount":6},{"title":"A chemiluminescence-flow injection analysis of serum 3-hydroxybutyrate using a bioreactor consisting of 3-hydroxybutyrate dehydrogenase and NADH oxidase.","authors":["Tabata M"," Totani M."],"journal":"Analytical biochemistry","year":1995,"link":"http://www.ncbi.nlm.nih.gov/pubmed/8533882","id":"8533882","citationCount":5},{"title":"Coenzyme binding by 3-hydroxybutyrate dehydrogenase, a lipid-requiring enzyme: lecithin acts as an allosteric modulator to enhance the affinity for coenzyme.","authors":["Rudy B"," Dubois H"," Mink R"," Trommer WE"," McIntyre JO"," Fleischer S."],"journal":"Biochemistry","year":1989,"link":"http://www.ncbi.nlm.nih.gov/pubmed/2550053","id":"2550053","citationCount":3}],"name":"D-beta-hydroxybutyrate dehydrogenase, mitochondrial","targetParticipants":[{"annotation":{"name":"BDH1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dBDH1","idObject":0},"selectable":true,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"Analysis of the NADH-dependent retinaldehyde reductase activity of amphioxus retinol dehydrogenase enzymes enhances our understanding of the evolution of the retinol dehydrogenase family.","authors":["Dalfó D"," Marqués N"," Albalat R."],"journal":"The FEBS journal","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17608724","id":"17608724","citationCount":9}],"name":"11-cis retinol dehydrogenase","targetParticipants":[{"annotation":{"name":"RDH5","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dRDH5","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"Corticotropin-releasing hormone receptor type 1 and type 2 mediate differential effects on 15-hydroxy prostaglandin dehydrogenase expression in cultured human chorion trophoblasts.","authors":["Gao L"," He P"," Sha J"," Liu C"," Dai L"," Hui N"," Ni X."],"journal":"Endocrinology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17463062","id":"17463062","citationCount":8}],"name":"15-hydroxyprostaglandin dehydrogenase [NAD(+)]","targetParticipants":[{"annotation":{"name":"HPGD","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dHPGD","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"The tricarboxylic acid cycle, an ancient metabolic network with a novel twist.","authors":["Mailloux RJ"," Bériault R"," Lemire J"," Singh R"," Chénier DR"," Hamel RD"," Appanna VD."],"journal":"PloS one","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17668068","id":"17668068","citationCount":66}],"name":"2-oxoglutarate dehydrogenase, mitochondrial","targetParticipants":[{"annotation":{"name":"OGDH","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dOGDH","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Inhibition of testosterone biosynthesis by ethanol: multiple sites and mechanisms in dispersed Leydig cells.","authors":["Widenius TV"," Orava MM"," Vihko RK"," Ylikahri RH"," Eriksson CJ."],"journal":"Journal of steroid biochemistry","year":1987,"link":"http://www.ncbi.nlm.nih.gov/pubmed/3476810","id":"3476810","citationCount":4},{"title":"Affinity alkylation of human placental 3 beta-hydroxy-5-ene-steroid dehydrogenase and steroid 5----4-ene-isomerase by 2 alpha-bromoacetoxyprogesterone: evidence for separate dehydrogenase and isomerase sites on one protein.","authors":["Thomas JL"," Myers RP"," Rosik LO"," Strickler RC."],"journal":"Journal of steroid biochemistry","year":1990,"link":"http://www.ncbi.nlm.nih.gov/pubmed/2362440","id":"2362440","citationCount":4},{"title":"Testicular and adrenal 3 beta-hydroxy-5-ene-steroid dehydrogenase and 5-ene-4-ene isomerase.","authors":["Ishii-Ohba H"," Inano H"," Tamaoki B."],"journal":"Journal of steroid biochemistry","year":1987,"link":"http://www.ncbi.nlm.nih.gov/pubmed/2961942","id":"2961942","citationCount":3}],"name":"3 beta-hydroxysteroid dehydrogenase/Delta 5--\u003e4-isomerase type 1","targetParticipants":[{"annotation":{"name":"HSD3B1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dHSD3B1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Inhibition of testosterone biosynthesis by ethanol: multiple sites and mechanisms in dispersed Leydig cells.","authors":["Widenius TV"," Orava MM"," Vihko RK"," Ylikahri RH"," Eriksson CJ."],"journal":"Journal of steroid biochemistry","year":1987,"link":"http://www.ncbi.nlm.nih.gov/pubmed/3476810","id":"3476810","citationCount":4},{"title":"Studies of the human testis. VII. Conversion of pregnenolone to progesterone.","authors":["Fan DF"," Troen P."],"journal":"The Journal of clinical endocrinology and metabolism","year":1975,"link":"http://www.ncbi.nlm.nih.gov/pubmed/239964","id":"239964","citationCount":4},{"title":"Analysis of coenzyme binding by human placental 3 beta-hydroxy-5-ene-steroid dehydrogenase and steroid 5----4-ene-isomerase using 5\u0027-[p-(fluorosulfonyl)benzoyl]adenosine, an affinity labeling cofactor analog.","authors":["Thomas JL"," Myers RP"," Strickler RC."],"journal":"The Journal of steroid biochemistry and molecular biology","year":1991,"link":"http://www.ncbi.nlm.nih.gov/pubmed/1911436","id":"1911436","citationCount":0}],"name":"3 beta-hydroxysteroid dehydrogenase/Delta 5--\u003e4-isomerase type 2","targetParticipants":[{"annotation":{"name":"HSD3B2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dHSD3B2","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Inhibition of the class II HMG-CoA reductase of Pseudomonas mevalonii.","authors":["Hedl M"," Rodwell VW."],"journal":"Protein science : a publication of the Protein Society","year":2004,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15152097","id":"15152097","citationCount":9},{"title":"3-hydroxy-3-methylglutaryl-coenzyme A reductase in the lobster mandibular organ: regulation by the eyestalk.","authors":["Li S"," Wagner CA"," Friesen JA"," Borst DW."],"journal":"General and comparative endocrinology","year":2003,"link":"http://www.ncbi.nlm.nih.gov/pubmed/14511985","id":"14511985","citationCount":9},{"title":"Improved posthypoxic recovery in vitro on treatment with drugs used for secondary stroke prevention.","authors":["Huber R"," Riepe MW."],"journal":"Neuropharmacology","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15755483","id":"15755483","citationCount":1}],"name":"3-hydroxy-3-methylglutaryl-coenzyme A reductase","targetParticipants":[{"annotation":{"name":"HMGCR","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dHMGCR","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"3-hydroxyacyl-CoA dehydrogenase type-2","targetParticipants":[{"annotation":{"name":"HSD17B10","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dHSD17B10","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"3-hydroxyisobutyrate dehydrogenase, mitochondrial","targetParticipants":[{"annotation":{"name":"HIBADH","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dHIBADH","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"3-keto-steroid reductase","targetParticipants":[{"annotation":{"name":"HSD17B7","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dHSD17B7","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Properties of gamma-aminobutyraldehyde dehydrogenase from Escherichia coli.","authors":["Prieto MI"," Martin J"," Balaña-Fouce R"," Garrido-Pertierra A."],"journal":"Biochimie","year":1987,"link":"http://www.ncbi.nlm.nih.gov/pubmed/3129020","id":"3129020","citationCount":4},{"title":"Purification and kinetic characterization of gamma-aminobutyraldehyde dehydrogenase from rat liver.","authors":["Testore G"," Colombatto S"," Silvagno F"," Bedino S."],"journal":"The international journal of biochemistry \u0026 cell biology","year":1995,"link":"http://www.ncbi.nlm.nih.gov/pubmed/7584606","id":"7584606","citationCount":4}],"name":"4-trimethylaminobutyraldehyde dehydrogenase","targetParticipants":[{"annotation":{"name":"ALDH9A1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dALDH9A1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"7-dehydrocholesterol reductase","targetParticipants":[{"annotation":{"name":"DHCR7","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dDHCR7","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"Acyl carrier protein, mitochondrial","targetParticipants":[{"annotation":{"name":"NDUFAB1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFAB1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"Two highly divergent alcohol dehydrogenases of melon exhibit fruit ripening-specific expression and distinct biochemical characteristics.","authors":["Manríquez D"," El-Sharkawy I"," Flores FB"," El-Yahyaoui F"," Regad F"," Bouzayen M"," Latché A"," Pech JC."],"journal":"Plant molecular biology","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16897483","id":"16897483","citationCount":20},{"title":"Synthetic lethal and biochemical analyses of NAD and NADH kinases in Saccharomyces cerevisiae establish separation of cellular functions.","authors":["Bieganowski P"," Seidle HF"," Wojcik M"," Brenner C."],"journal":"The Journal of biological chemistry","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16760478","id":"16760478","citationCount":19}],"name":"Alcohol dehydrogenase 1A","targetParticipants":[{"annotation":{"name":"ADH1A","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dADH1A","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"Two highly divergent alcohol dehydrogenases of melon exhibit fruit ripening-specific expression and distinct biochemical characteristics.","authors":["Manríquez D"," El-Sharkawy I"," Flores FB"," El-Yahyaoui F"," Regad F"," Bouzayen M"," Latché A"," Pech JC."],"journal":"Plant molecular biology","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16897483","id":"16897483","citationCount":20}],"name":"Alcohol dehydrogenase 1B","targetParticipants":[{"annotation":{"name":"ADH1B","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dADH1B","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Specificity of human alcohol dehydrogenase 1C*2 (gamma2gamma2) for steroids and simulation of the uncompetitive inhibition of ethanol metabolism.","authors":["Plapp BV"," Berst KB."],"journal":"Chemico-biological interactions","year":2003,"link":"http://www.ncbi.nlm.nih.gov/pubmed/12604203","id":"12604203","citationCount":2}],"name":"Alcohol dehydrogenase 1C","targetParticipants":[{"annotation":{"name":"ADH1C","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dADH1C","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Biochemical basis of mitochondrial acetaldehyde dismutation in Saccharomyces cerevisiae.","authors":["Thielen J"," Ciriacy M."],"journal":"Journal of bacteriology","year":1991,"link":"http://www.ncbi.nlm.nih.gov/pubmed/1938903","id":"1938903","citationCount":3},{"title":"Mouse alcohol dehydrogenase 4: kinetic mechanism, substrate specificity and simulation of effects of ethanol on retinoid metabolism.","authors":["Plapp BV"," Mitchell JL"," Berst KB."],"journal":"Chemico-biological interactions","year":2001,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11306066","id":"11306066","citationCount":3},{"title":"Ethanol-induced inhibition of testosterone biosynthesis in vitro: lack of acetaldehyde effect.","authors":["Widenius TV."],"journal":"Alcohol and alcoholism (Oxford, Oxfordshire)","year":1987,"link":"http://www.ncbi.nlm.nih.gov/pubmed/3593480","id":"3593480","citationCount":1}],"name":"Alcohol dehydrogenase 4","targetParticipants":[{"annotation":{"name":"ADH4","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dADH4","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Analysis of the NADH-dependent retinaldehyde reductase activity of amphioxus retinol dehydrogenase enzymes enhances our understanding of the evolution of the retinol dehydrogenase family.","authors":["Dalfó D"," Marqués N"," Albalat R."],"journal":"The FEBS journal","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17608724","id":"17608724","citationCount":9},{"title":"Identification and immunohistochemistry of retinol dehydrogenase from bovine retinal pigment epithelium.","authors":["Suzuki Y"," Ishiguro S"," Tamai M."],"journal":"Biochimica et biophysica acta","year":1993,"link":"http://www.ncbi.nlm.nih.gov/pubmed/8490052","id":"8490052","citationCount":9},{"title":"Effect of thyroid hormone on the alcohol dehydrogenase activities in rat tissues.","authors":["Kim DS"," Lee CB"," Park YS"," Ahn YH"," Kim TW"," Kee CS"," Kang JS"," Om AS."],"journal":"Journal of Korean medical science","year":2001,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11410692","id":"11410692","citationCount":0}],"name":"Alcohol dehydrogenase class 4 mu/sigma chain","targetParticipants":[{"annotation":{"name":"ADH7","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dADH7","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"Logic gates and elementary computing by enzymes.","authors":["Baron R"," Lioubashevski O"," Katz E"," Niazov T"," Willner I."],"journal":"The journal of physical chemistry. A","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16821840","id":"16821840","citationCount":27},{"title":"High-resolution structures of formate dehydrogenase from Candida boidinii.","authors":["Schirwitz K"," Schmidt A"," Lamzin VS."],"journal":"Protein science : a publication of the Protein Society","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17525463","id":"17525463","citationCount":12},{"title":"D-mannitol production by resting state whole cell biotrans-formation of D-fructose by heterologous mannitol and formate dehydrogenase gene expression in Bacillus megaterium.","authors":["Bäumchen C"," Roth AH"," Biedendieck R"," Malten M"," Follmann M"," Sahm H"," Bringer-Meyer S"," Jahn D."],"journal":"Biotechnology journal","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17619232","id":"17619232","citationCount":9},{"title":"Enhanced activity of 3alpha-hydroxysteroid dehydrogenase by addition of the co-solvent 1-butyl-3-methylimidazolium (L)-lactate in aqueous phase of biphasic systems for reductive production of steroids.","authors":["Okochi M"," Nakagawa I"," Kobayashi T"," Hayashi S"," Furusaki S"," Honda H."],"journal":"Journal of biotechnology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17092593","id":"17092593","citationCount":5}],"name":"Alcohol dehydrogenase class-3","targetParticipants":[{"annotation":{"name":"ADH5","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dADH5","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"Aldehyde dehydrogenase X, mitochondrial","targetParticipants":[{"annotation":{"name":"ALDH1B1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dALDH1B1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Characterization of retinaldehyde dehydrogenase 3.","authors":["Graham CE"," Brocklehurst K"," Pickersgill RW"," Warren MJ."],"journal":"The Biochemical journal","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16241904","id":"16241904","citationCount":11}],"name":"Aldehyde dehydrogenase family 1 member A3","targetParticipants":[{"annotation":{"name":"ALDH1A3","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dALDH1A3","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"Aldehyde dehydrogenase family 3 member B1","targetParticipants":[{"annotation":{"name":"ALDH3B1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dALDH3B1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"Aldehyde dehydrogenase family 3 member B2","targetParticipants":[{"annotation":{"name":"ALDH3B2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dALDH3B2","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Activities of cytosolic aldehyde dehydrogenase isozymes in colon cancer: determination using selective, fluorimetric assays.","authors":["Wroczyński P"," Nowak M"," Wierzchowski J"," Szubert A"," Polański J."],"journal":"Acta poloniae pharmaceutica","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16583981","id":"16583981","citationCount":3}],"name":"Aldehyde dehydrogenase, dimeric NADP-preferring","targetParticipants":[{"annotation":{"name":"ALDH3A1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dALDH3A1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"The UChA and UChB rat lines: metabolic and genetic differences influencing ethanol intake.","authors":["Quintanilla ME"," Israel Y"," Sapag A"," Tampier L."],"journal":"Addiction biology","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16961761","id":"16961761","citationCount":37},{"title":"Sex differences, alcohol dehydrogenase, acetaldehyde burst, and aversion to ethanol in the rat: a systems perspective.","authors":["Quintanilla ME"," Tampier L"," Sapag A"," Gerdtzen Z"," Israel Y."],"journal":"American journal of physiology. Endocrinology and metabolism","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17488809","id":"17488809","citationCount":15}],"name":"Aldehyde dehydrogenase, mitochondrial","targetParticipants":[{"annotation":{"name":"ALDH2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dALDH2","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"The reactive oxygen species--and Michael acceptor-inducible human aldo-keto reductase AKR1C1 reduces the alpha,beta-unsaturated aldehyde 4-hydroxy-2-nonenal to 1,4-dihydroxy-2-nonene.","authors":["Burczynski ME"," Sridhar GR"," Palackal NT"," Penning TM."],"journal":"The Journal of biological chemistry","year":2001,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11060293","id":"11060293","citationCount":50},{"title":"Microsomal 20 alpha-hydroxysteroid dehydrogenase activity for progesterone in human placenta.","authors":["Fukuda T"," Hirato K"," Yanaihara T"," Nakayama T."],"journal":"Endocrinologia japonica","year":1986,"link":"http://www.ncbi.nlm.nih.gov/pubmed/3463506","id":"3463506","citationCount":2},{"title":"Stereospecificity of hydrogen transfer by bovine testicular 20 alpha-hydroxysteroid dehydrogenase.","authors":["Pineda JA"," Murdock GL"," Watson RJ"," Warren JC."],"journal":"Journal of steroid biochemistry","year":1989,"link":"http://www.ncbi.nlm.nih.gov/pubmed/2615366","id":"2615366","citationCount":0}],"name":"Aldo-keto reductase family 1 member C1","targetParticipants":[{"annotation":{"name":"AKR1C1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dAKR1C1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Human type 3 3alpha-hydroxysteroid dehydrogenase (aldo-keto reductase 1C2) and androgen metabolism in prostate cells.","authors":["Rizner TL"," Lin HK"," Peehl DM"," Steckelbroeck S"," Bauman DR"," Penning TM."],"journal":"Endocrinology","year":2003,"link":"http://www.ncbi.nlm.nih.gov/pubmed/12810547","id":"12810547","citationCount":49},{"title":"Kinetics of allopregnanolone formation catalyzed by human 3 alpha-hydroxysteroid dehydrogenase type III (AKR1C2).","authors":["Trauger JW"," Jiang A"," Stearns BA"," LoGrasso PV."],"journal":"Biochemistry","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/12416991","id":"12416991","citationCount":31}],"name":"Aldo-keto reductase family 1 member C2","targetParticipants":[{"annotation":{"name":"AKR1C2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dAKR1C2","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Bioluminescent assay of femtomole levels of estrone and estradiol.","authors":["Nicolas JC"," Boussioux AM"," Boularan AM"," Descomps B"," Crastes de Paulet A."],"journal":"Analytical biochemistry","year":1983,"link":"http://www.ncbi.nlm.nih.gov/pubmed/6584048","id":"6584048","citationCount":3},{"title":"Stereospecificity of hydrogen transfer by bovine testicular 20 alpha-hydroxysteroid dehydrogenase.","authors":["Pineda JA"," Murdock GL"," Watson RJ"," Warren JC."],"journal":"Journal of steroid biochemistry","year":1989,"link":"http://www.ncbi.nlm.nih.gov/pubmed/2615366","id":"2615366","citationCount":0},{"title":"Stereospecificity of hydrogen transfer between progesterone and cofactor by human placental estradiol-17 beta dehydrogenase.","authors":["Pineda JA"," Murdock GL"," Watson RJ"," Warren JC."],"journal":"The Journal of steroid biochemistry and molecular biology","year":1990,"link":"http://www.ncbi.nlm.nih.gov/pubmed/2146972","id":"2146972","citationCount":0}],"name":"Aldo-keto reductase family 1 member C3","targetParticipants":[{"annotation":{"name":"AKR1C3","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dAKR1C3","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Purification and characterization of oxidoreductases-catalyzing carbonyl reduction of the tobacco-specific nitrosamine 4-methylnitrosamino-1-(3-pyridyl)-1-butanone (NNK) in human liver cytosol.","authors":["Atalla A"," Breyer-Pfaff U"," Maser E."],"journal":"Xenobiotica; the fate of foreign compounds in biological systems","year":2000,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11037109","id":"11037109","citationCount":21}],"name":"Aldo-keto reductase family 1 member C4","targetParticipants":[{"annotation":{"name":"AKR1C4","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dAKR1C4","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"Vitamin C. Biosynthesis, recycling and degradation in mammals.","authors":["Linster CL"," Van Schaftingen E."],"journal":"The FEBS journal","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17222174","id":"17222174","citationCount":140},{"title":"Pyridine nucleotide redox abnormalities in diabetes.","authors":["Ido Y."],"journal":"Antioxidants \u0026 redox signaling","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17508915","id":"17508915","citationCount":24}],"name":"Aldose reductase","targetParticipants":[{"annotation":{"name":"AKR1B1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dAKR1B1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Delta-1-piperideine-6-carboxylate dehydrogenase, a new enzyme that forms alpha-aminoadipate in Streptomyces clavuligerus and other cephamycin C-producing actinomycetes.","authors":["de La Fuente JL"," Rumbero A"," Martín JF"," Liras P."],"journal":"The Biochemical journal","year":1997,"link":"http://www.ncbi.nlm.nih.gov/pubmed/9355735","id":"9355735","citationCount":11}],"name":"Alpha-aminoadipic semialdehyde dehydrogenase","targetParticipants":[{"annotation":{"name":"ALDH7A1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dALDH7A1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"Overall kinetic mechanism of saccharopine dehydrogenase from Saccharomyces cerevisiae.","authors":["Xu H"," West AH"," Cook PF."],"journal":"Biochemistry","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17002315","id":"17002315","citationCount":10},{"title":"A proposed proton shuttle mechanism for saccharopine dehydrogenase from Saccharomyces cerevisiae.","authors":["Xu H"," Alguindigue SS"," West AH"," Cook PF."],"journal":"Biochemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17223709","id":"17223709","citationCount":6},{"title":"Determinants of substrate specificity for saccharopine dehydrogenase from Saccharomyces cerevisiae.","authors":["Xu H"," West AH"," Cook PF."],"journal":"Biochemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17542618","id":"17542618","citationCount":2}],"name":"Alpha-aminoadipic semialdehyde synthase, mitochondrial","targetParticipants":[{"annotation":{"name":"AASS","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dAASS","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"Aminomethyltransferase, mitochondrial","targetParticipants":[{"annotation":{"name":"AMT","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dAMT","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"Bifunctional methylenetetrahydrofolate dehydrogenase/cyclohydrolase, mitochondrial","targetParticipants":[{"annotation":{"name":"MTHFD2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dMTHFD2","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"Activation of biliverdin-IXalpha reductase by inorganic phosphate and related anions.","authors":["Franklin E"," Browne S"," Hayes J"," Boland C"," Dunne A"," Elliot G"," Mantle TJ."],"journal":"The Biochemical journal","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17402939","id":"17402939","citationCount":4}],"name":"Biliverdin reductase A","targetParticipants":[{"annotation":{"name":"BLVRA","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dBLVRA","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"C-1-tetrahydrofolate synthase, cytoplasmic","targetParticipants":[{"annotation":{"name":"MTHFD1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dMTHFD1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Metabolism of dexamethasone in the human kidney: nicotinamide adenine dinucleotide-dependent 11beta-reduction.","authors":["Diederich S"," Hanke B"," Oelkers W"," Bähr V."],"journal":"The Journal of clinical endocrinology and metabolism","year":1997,"link":"http://www.ncbi.nlm.nih.gov/pubmed/9141556","id":"9141556","citationCount":11},{"title":"Comparison of 11 beta-hydroxysteroid dehydrogenase in spontaneously hypertensive and Wistar-Kyoto rats.","authors":["Hermans JJ"," Steckel B"," Thijssen HH"," Janssen BJ"," Netter KJ"," Maser E."],"journal":"Steroids","year":1995,"link":"http://www.ncbi.nlm.nih.gov/pubmed/8585102","id":"8585102","citationCount":3}],"name":"Corticosteroid 11-beta-dehydrogenase isozyme 1","targetParticipants":[{"annotation":{"name":"HSD11B1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dHSD11B1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Localization of an 11 beta hydroxysteroid dehydrogenase activity to the distal nephron. Evidence for the existence of two species of dehydrogenase in the rat kidney.","authors":["Mercer WR"," Krozowski ZS."],"journal":"Endocrinology","year":1992,"link":"http://www.ncbi.nlm.nih.gov/pubmed/1727721","id":"1727721","citationCount":31},{"title":"Comparison of 11 beta-hydroxysteroid dehydrogenase in spontaneously hypertensive and Wistar-Kyoto rats.","authors":["Hermans JJ"," Steckel B"," Thijssen HH"," Janssen BJ"," Netter KJ"," Maser E."],"journal":"Steroids","year":1995,"link":"http://www.ncbi.nlm.nih.gov/pubmed/8585102","id":"8585102","citationCount":3}],"name":"Corticosteroid 11-beta-dehydrogenase isozyme 2","targetParticipants":[{"annotation":{"name":"HSD11B2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dHSD11B2","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"Cysteine dioxygenase type 1","targetParticipants":[{"annotation":{"name":"CDO1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dCDO1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Cytochrome P450 4A, peroxisomal enzymes and nicotinamide cofactors in koala liver.","authors":["Ngo S"," Kong S"," Kirlich A"," McKinnon RA"," Stupans I."],"journal":"Comparative biochemistry and physiology. Toxicology \u0026 pharmacology : CBP","year":2000,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11246504","id":"11246504","citationCount":5}],"name":"Cytochrome P450 4A11","targetParticipants":[{"annotation":{"name":"CYP4A11","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dCYP4A11","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"Cytochrome c oxidase subunit NDUFA4","targetParticipants":[{"annotation":{"name":"NDUFA4","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFA4","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"A new family of 2-hydroxyacid dehydrogenases.","authors":["Grant GA."],"journal":"Biochemical and biophysical research communications","year":1989,"link":"http://www.ncbi.nlm.nih.gov/pubmed/2692566","id":"2692566","citationCount":33},{"title":"Cofactor binding to Escherichia coli D-3-phosphoglycerate dehydrogenase induces multiple conformations which alter effector binding.","authors":["Grant GA"," Hu Z"," Xu XL."],"journal":"The Journal of biological chemistry","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/12183470","id":"12183470","citationCount":8},{"title":"Serine biosynthesis in human hair follicles by the phosphorylated pathway: follicular 3-phosphoglycerate dehydrogenase.","authors":["Goldsmith LA"," O\u0027Barr T."],"journal":"The Journal of investigative dermatology","year":1976,"link":"http://www.ncbi.nlm.nih.gov/pubmed/945314","id":"945314","citationCount":4}],"name":"D-3-phosphoglycerate dehydrogenase","targetParticipants":[{"annotation":{"name":"PHGDH","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dPHGDH","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"Crystal structure of Thermus thermophilus Delta1-pyrroline-5-carboxylate dehydrogenase.","authors":["Inagaki E"," Ohshima N"," Takahashi H"," Kuroishi C"," Yokoyama S"," Tahirov TH."],"journal":"Journal of molecular biology","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16934832","id":"16934832","citationCount":27}],"name":"Delta-1-pyrroline-5-carboxylate dehydrogenase, mitochondrial","targetParticipants":[{"annotation":{"name":"ALDH4A1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dALDH4A1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"Proteome-wide profiling of isoniazid targets in Mycobacterium tuberculosis.","authors":["Argyrou A"," Jin L"," Siconilfi-Baez L"," Angeletti RH"," Blanchard JS."],"journal":"Biochemistry","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17115689","id":"17115689","citationCount":31},{"title":"Biochemical and genetic analysis of methylenetetrahydrofolate reductase in Leishmania metabolism and virulence.","authors":["Vickers TJ"," Orsomando G"," de la Garza RD"," Scott DA"," Kang SO"," Hanson AD"," Beverley SM."],"journal":"The Journal of biological chemistry","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17032644","id":"17032644","citationCount":11}],"name":"Dihydrofolate reductase","targetParticipants":[{"annotation":{"name":"DHFR","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dDHFR","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"A novel branched-chain amino acid metabolon. Protein-protein interactions in a supramolecular complex.","authors":["Islam MM"," Wallin R"," Wynn RM"," Conway M"," Fujii H"," Mobley JA"," Chuang DT"," Hutson SM."],"journal":"The Journal of biological chemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17314104","id":"17314104","citationCount":21},{"title":"Histochemical staining and quantification of dihydrolipoamide dehydrogenase diaphorase activity using blue native PAGE.","authors":["Yan LJ"," Yang SH"," Shu H"," Prokai L"," Forster MJ."],"journal":"Electrophoresis","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17315258","id":"17315258","citationCount":18},{"title":"Trypanosoma cruzi dihydrolipoamide dehydrogenase as target for phenothiazine cationic radicals. Effect of antioxidants.","authors":["Gutiérrez-Correa J."],"journal":"Current drug targets","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17017892","id":"17017892","citationCount":2}],"name":"Dihydrolipoyl dehydrogenase, mitochondrial","targetParticipants":[{"annotation":{"name":"DLD","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dDLD","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Dihydrolipoamide acyltransferase is critical for Mycobacterium tuberculosis pathogenesis.","authors":["Shi S"," Ehrt S."],"journal":"Infection and immunity","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16368957","id":"16368957","citationCount":28}],"name":"Dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex, mitochondrial","targetParticipants":[{"annotation":{"name":"DLAT","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dDLAT","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"NADH-ferric reductase activity associated with dihydropteridine reductase.","authors":["Lee PL"," Halloran C"," Cross AR"," Beutler E."],"journal":"Biochemical and biophysical research communications","year":2000,"link":"http://www.ncbi.nlm.nih.gov/pubmed/10814540","id":"10814540","citationCount":3},{"title":"Determination of NADPH-specific dihydropteridine reductase in extract from human, monkey, and bovine livers by single radial immunodiffusion: selective assay differentiating NADPH- and NADH-specific enzymes.","authors":["Nakanishi N"," Ozawa K"," Yamada S."],"journal":"Journal of biochemistry","year":1986,"link":"http://www.ncbi.nlm.nih.gov/pubmed/3086306","id":"3086306","citationCount":1},{"title":"Spectral studies of the interaction of the substrate \u0027quinonoid\u0027 6-methyl dihydropterine and the coenzyme NADH used as marker in the dihydropteridine reductase assay.","authors":["van der Heiden C"," Brink W."],"journal":"Journal of inherited metabolic disease","year":1982,"link":"http://www.ncbi.nlm.nih.gov/pubmed/6820434","id":"6820434","citationCount":0}],"name":"Dihydropteridine reductase","targetParticipants":[{"annotation":{"name":"QDPR","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dQDPR","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Microsomal 20 alpha-hydroxysteroid dehydrogenase activity for progesterone in human placenta.","authors":["Fukuda T"," Hirato K"," Yanaihara T"," Nakayama T."],"journal":"Endocrinologia japonica","year":1986,"link":"http://www.ncbi.nlm.nih.gov/pubmed/3463506","id":"3463506","citationCount":2},{"title":"The 20 alpha-hydroxysteroid dehydrogenase of Streptomyces hydrogenans.","authors":["Rimsay RL"," Murphy GW"," Martin CJ"," Orr JC."],"journal":"European journal of biochemistry / FEBS","year":1988,"link":"http://www.ncbi.nlm.nih.gov/pubmed/3164265","id":"3164265","citationCount":1},{"title":"Stereospecificity of hydrogen transfer by bovine testicular 20 alpha-hydroxysteroid dehydrogenase.","authors":["Pineda JA"," Murdock GL"," Watson RJ"," Warren JC."],"journal":"Journal of steroid biochemistry","year":1989,"link":"http://www.ncbi.nlm.nih.gov/pubmed/2615366","id":"2615366","citationCount":0}],"name":"Estradiol 17-beta-dehydrogenase 1","targetParticipants":[{"annotation":{"name":"HSD17B1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dHSD17B1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Prostaglandin-E2 9-reductase from corpus luteum of pseudopregnant rabbit is a member of the aldo-keto reductase superfamily featuring 20 alpha-hydroxysteroid dehydrogenase activity.","authors":["Wintergalen N"," Thole HH"," Galla HJ"," Schlegel W."],"journal":"European journal of biochemistry / FEBS","year":1995,"link":"http://www.ncbi.nlm.nih.gov/pubmed/8529651","id":"8529651","citationCount":16},{"title":"Microsomal 20 alpha-hydroxysteroid dehydrogenase activity for progesterone in human placenta.","authors":["Fukuda T"," Hirato K"," Yanaihara T"," Nakayama T."],"journal":"Endocrinologia japonica","year":1986,"link":"http://www.ncbi.nlm.nih.gov/pubmed/3463506","id":"3463506","citationCount":2},{"title":"Stereospecificity of hydrogen transfer by bovine testicular 20 alpha-hydroxysteroid dehydrogenase.","authors":["Pineda JA"," Murdock GL"," Watson RJ"," Warren JC."],"journal":"Journal of steroid biochemistry","year":1989,"link":"http://www.ncbi.nlm.nih.gov/pubmed/2615366","id":"2615366","citationCount":0}],"name":"Estradiol 17-beta-dehydrogenase 2","targetParticipants":[{"annotation":{"name":"HSD17B2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dHSD17B2","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"Estradiol 17-beta-dehydrogenase 8","targetParticipants":[{"annotation":{"name":"HSD17B8","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dHSD17B8","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Mechanism of a long-chain fatty aldehyde dehydrogenase induced during the development of bioluminescence in Beneckea harveyi.","authors":["Bognar A"," Meighen E."],"journal":"Canadian journal of biochemistry and cell biology \u003d Revue canadienne de biochimie et biologie cellulaire","year":1983,"link":"http://www.ncbi.nlm.nih.gov/pubmed/6603890","id":"6603890","citationCount":0}],"name":"Fatty aldehyde dehydrogenase","targetParticipants":[{"annotation":{"name":"ALDH3A2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dALDH3A2","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"Characterization of two components of the 2-naphthoate monooxygenase system from Burkholderia sp. strain JT1500.","authors":["Deng D"," Li X"," Fang X"," Sun G."],"journal":"FEMS microbiology letters","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17559398","id":"17559398","citationCount":1}],"name":"Flavin reductase (NADPH)","targetParticipants":[{"annotation":{"name":"BLVRB","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dBLVRB","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"Coimmobilization of dehydrogenases and their cofactors in electrochemical biosensors.","authors":["Zhang M"," Mullens C"," Gorski W."],"journal":"Analytical chemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17298031","id":"17298031","citationCount":14},{"title":"Electrochemical regeneration of NADH using conductive vanadia-silica xerogels.","authors":["Siu E"," Won K"," Park CB."],"journal":"Biotechnology progress","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17269701","id":"17269701","citationCount":10},{"title":"Co-expression of P450 BM3 and glucose dehydrogenase by recombinant Escherichia coli and its application in an NADPH-dependent indigo production system.","authors":["Lu Y"," Mei L."],"journal":"Journal of industrial microbiology \u0026 biotechnology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17171348","id":"17171348","citationCount":7},{"title":"In vitro RNA editing in plant mitochondria does not require added energy.","authors":["Takenaka M"," Verbitskiy D"," van der Merwe JA"," Zehrmann A"," Plessmann U"," Urlaub H"," Brennicke A."],"journal":"FEBS letters","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17531229","id":"17531229","citationCount":2},{"title":"[Lymphocyte metabolism in patients with acute pancreatitis with different genotypes of GSTM1 and GSTT1 genes].","authors":["Markova EV"," Zotova NV"," Savchenko AA"," Titova NM"," Slepov EV"," Cherdantsev DV"," Konovalenko AN."],"journal":"Biomeditsinskaia khimiia","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16898590","id":"16898590","citationCount":0}],"name":"GDH/6PGL endoplasmic bifunctional protein","targetParticipants":[{"annotation":{"name":"H6PD","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dH6PD","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"GDP-L-fucose synthase","targetParticipants":[{"annotation":{"name":"TSTA3","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dTSTA3","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"Glutamate dehydrogenase 1, mitochondrial","targetParticipants":[{"annotation":{"name":"GLUD1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dGLUD1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"Glutamate dehydrogenase 2, mitochondrial","targetParticipants":[{"annotation":{"name":"GLUD2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dGLUD2","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"Sequential opening of mitochondrial ion channels as a function of glutathione redox thiol status.","authors":["Aon MA"," Cortassa S"," Maack C"," O\u0027Rourke B."],"journal":"The Journal of biological chemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17540766","id":"17540766","citationCount":78},{"title":"Zinc irreversibly damages major enzymes of energy production and antioxidant defense prior to mitochondrial permeability transition.","authors":["Gazaryan IG"," Krasinskaya IP"," Kristal BS"," Brown AM."],"journal":"The Journal of biological chemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17565998","id":"17565998","citationCount":39},{"title":"Damage of oxidative stress on mitochondria during microspores development in Honglian CMS line of rice.","authors":["Wan C"," Li S"," Wen L"," Kong J"," Wang K"," Zhu Y."],"journal":"Plant cell reports","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17053903","id":"17053903","citationCount":20},{"title":"The relationship of the redox potentials of thioredoxin and thioredoxin reductase from Drosophila melanogaster to the enzymatic mechanism: reduced thioredoxin is the reductant of glutathione in Drosophila.","authors":["Cheng Z"," Arscott LD"," Ballou DP"," Williams CH Jr."],"journal":"Biochemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17550271","id":"17550271","citationCount":20},{"title":"Evidence for an additional disulfide reduction pathway in Escherichia coli.","authors":["Knapp KG"," Swartz JR."],"journal":"Journal of bioscience and bioengineering","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17502280","id":"17502280","citationCount":2}],"name":"Glutathione reductase, mitochondrial","targetParticipants":[{"annotation":{"name":"GSR","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dGSR","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"Thioredoxin-dependent regulation of photosynthetic glyceraldehyde-3-phosphate dehydrogenase: autonomous vs. CP12-dependent mechanisms.","authors":["Trost P"," Fermani S"," Marri L"," Zaffagnini M"," Falini G"," Scagliarini S"," Pupillo P"," Sparla F."],"journal":"Photosynthesis research","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17031544","id":"17031544","citationCount":27},{"title":"Pyridine nucleotide redox abnormalities in diabetes.","authors":["Ido Y."],"journal":"Antioxidants \u0026 redox signaling","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17508915","id":"17508915","citationCount":24},{"title":"Sevoflurane modulates the activity of glyceraldehyde 3-phosphate dehydrogenase.","authors":["Swearengin TA"," Fibuch EE"," Seidler NW."],"journal":"Journal of enzyme inhibition and medicinal chemistry","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17194030","id":"17194030","citationCount":3},{"title":"[Lymphocyte metabolism in patients with acute pancreatitis with different genotypes of GSTM1 and GSTT1 genes].","authors":["Markova EV"," Zotova NV"," Savchenko AA"," Titova NM"," Slepov EV"," Cherdantsev DV"," Konovalenko AN."],"journal":"Biomeditsinskaia khimiia","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16898590","id":"16898590","citationCount":0}],"name":"Glyceraldehyde-3-phosphate dehydrogenase","targetParticipants":[{"annotation":{"name":"GAPDH","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dGAPDH","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Characterization of native and recombinant A4 glyceraldehyde 3-phosphate dehydrogenase. Kinetic evidence for confromation changes upon association with the small protein CP12.","authors":["Graciet E"," Lebreton S"," Camadro JM"," Gontero B."],"journal":"European journal of biochemistry / FEBS","year":2003,"link":"http://www.ncbi.nlm.nih.gov/pubmed/12492483","id":"12492483","citationCount":21},{"title":"Oral streptococcal glyceraldehyde-3-phosphate dehydrogenase mediates interaction with Porphyromonas gingivalis fimbriae.","authors":["Maeda K"," Nagata H"," Nonaka A"," Kataoka K"," Tanaka M"," Shizukuishi S."],"journal":"Microbes and infection / Institut Pasteur","year":2004,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15488735","id":"15488735","citationCount":15},{"title":"Structural analysis of human liver glyceraldehyde-3-phosphate dehydrogenase.","authors":["Ismail SA"," Park HW."],"journal":"Acta crystallographica. Section D, Biological crystallography","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16239728","id":"16239728","citationCount":7}],"name":"Glyceraldehyde-3-phosphate dehydrogenase, testis-specific","targetParticipants":[{"annotation":{"name":"GAPDHS","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dGAPDHS","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"New competitive inhibitors of cytosolic (NADH-dependent) rabbit muscle glycerophosphate dehydrogenase.","authors":["Fonvielle M"," Therisod H"," Hemery M"," Therisod M."],"journal":"Bioorganic \u0026 medicinal chemistry letters","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17088060","id":"17088060","citationCount":0}],"name":"Glycerol-3-phosphate dehydrogenase [NAD(+)], cytoplasmic","targetParticipants":[{"annotation":{"name":"GPD1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dGPD1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Oxidative stress-related factors in Bartter\u0027s and Gitelman\u0027s syndromes: relevance for angiotensin II signalling.","authors":["Calò LA"," Pagnin E"," Davis PA"," Sartori M"," Semplicini A."],"journal":"Nephrology, dialysis, transplantation : official publication of the European Dialysis and Transplant Association - European Renal Association","year":2003,"link":"http://www.ncbi.nlm.nih.gov/pubmed/12897089","id":"12897089","citationCount":23},{"title":"Cloning and expression of a heme binding protein from the genome of Saccharomyces cerevisiae.","authors":["Auclair K"," Huang HW"," Moënne-Loccoz P"," Ortiz de Montellano PR."],"journal":"Protein expression and purification","year":2003,"link":"http://www.ncbi.nlm.nih.gov/pubmed/12699699","id":"12699699","citationCount":3}],"name":"Heme oxygenase 1","targetParticipants":[{"annotation":{"name":"HMOX1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dHMOX1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"DNA cleavage by UVA irradiation of NADH with dioxygen via radical chain processes.","authors":["Tanaka M"," Ohkubo K"," Fukuzumi S."],"journal":"The journal of physical chemistry. A","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16986858","id":"16986858","citationCount":17},{"title":"Inactivation of copper, zinc superoxide dismutase by H2O2 : mechanism of protection.","authors":["Goldstone AB"," Liochev SI"," Fridovich I."],"journal":"Free radical biology \u0026 medicine","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17157188","id":"17157188","citationCount":5}],"name":"Heme oxygenase 2","targetParticipants":[{"annotation":{"name":"HMOX2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dHMOX2","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"HIV-1 trans activator of transcription protein elicits mitochondrial hyperpolarization and respiratory deficit, with dysregulation of complex IV and nicotinamide adenine dinucleotide homeostasis in cortical neurons.","authors":["Norman JP"," Perry SW"," Kasischke KA"," Volsky DJ"," Gelbard HA."],"journal":"Journal of immunology (Baltimore, Md. : 1950)","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17202348","id":"17202348","citationCount":21}],"name":"Hydroxyacyl-coenzyme A dehydrogenase, mitochondrial","targetParticipants":[{"annotation":{"name":"HADH","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dHADH","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Spectrum and frequency of mutations in IMPDH1 associated with autosomal dominant retinitis pigmentosa and leber congenital amaurosis.","authors":["Bowne SJ"," Sullivan LS"," Mortimer SE"," Hedstrom L"," Zhu J"," Spellicy CJ"," Gire AI"," Hughbanks-Wheaton D"," Birch DG"," Lewis RA"," Heckenlively JR"," Daiger SP."],"journal":"Investigative ophthalmology \u0026 visual science","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16384941","id":"16384941","citationCount":58}],"name":"Inosine-5\u0027-monophosphate dehydrogenase 1","targetParticipants":[{"annotation":{"name":"IMPDH1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dIMPDH1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"A novel variant L263F in human inosine 5\u0027-monophosphate dehydrogenase 2 is associated with diminished enzyme activity.","authors":["Wang J"," Zeevi A"," Webber S"," Girnita DM"," Addonizio L"," Selby R"," Hutchinson IV"," Burckart GJ."],"journal":"Pharmacogenetics and genomics","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17496727","id":"17496727","citationCount":25}],"name":"Inosine-5\u0027-monophosphate dehydrogenase 2","targetParticipants":[{"annotation":{"name":"IMPDH2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dIMPDH2","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Diphosphopyridine nucleotide isocitric dehydrogenase from animal tissues.","authors":["PLAUT GW"," SUNG SC."],"journal":"The Journal of biological chemistry","year":1954,"link":"http://www.ncbi.nlm.nih.gov/pubmed/13152105","id":"13152105","citationCount":12},{"title":"Diphosphopyridine nucleotide specific isocitric dehydrogenase of mammalian mitochondria. I. On the roles of pyridine nucleotide transhydrogenase and the isocitric dehydrogenases in the respiration of mitochondria of normal and neoplastic tissues.","authors":["Stein AM"," Stein JH"," Kirkman SK."],"journal":"Biochemistry","year":1967,"link":"http://www.ncbi.nlm.nih.gov/pubmed/4292141","id":"4292141","citationCount":12},{"title":"The stereochemistry of the nicotinamide adenine dinucleotide-specific isocitric dehydrogenase reaction.","authors":["Rose ZB."],"journal":"The Journal of biological chemistry","year":1966,"link":"http://www.ncbi.nlm.nih.gov/pubmed/4380379","id":"4380379","citationCount":0}],"name":"Isocitrate dehydrogenase [NAD] subunit alpha, mitochondrial","targetParticipants":[{"annotation":{"name":"IDH3A","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dIDH3A","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Diphosphopyridine nucleotide specific isocitric dehydrogenase of mammalian mitochondria. I. On the roles of pyridine nucleotide transhydrogenase and the isocitric dehydrogenases in the respiration of mitochondria of normal and neoplastic tissues.","authors":["Stein AM"," Stein JH"," Kirkman SK."],"journal":"Biochemistry","year":1967,"link":"http://www.ncbi.nlm.nih.gov/pubmed/4292141","id":"4292141","citationCount":12},{"title":"NICOTINAMIDE ADENINE DINUCLEOTIDE-SPECIFIC ISOCITRIC DEHYDROGENASE. A POSSIBLE REGULATORY PROTEIN.","authors":["SANWAL BD"," ZINK MW"," STACHOW CS."],"journal":"The Journal of biological chemistry","year":1964,"link":"http://www.ncbi.nlm.nih.gov/pubmed/14189899","id":"14189899","citationCount":5},{"title":"The stereochemistry of the nicotinamide adenine dinucleotide-specific isocitric dehydrogenase reaction.","authors":["Rose ZB."],"journal":"The Journal of biological chemistry","year":1966,"link":"http://www.ncbi.nlm.nih.gov/pubmed/4380379","id":"4380379","citationCount":0}],"name":"Isocitrate dehydrogenase [NAD] subunit beta, mitochondrial","targetParticipants":[{"annotation":{"name":"IDH3B","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dIDH3B","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Diphosphopyridine nucleotide specific isocitric dehydrogenase of mammalian mitochondria. I. On the roles of pyridine nucleotide transhydrogenase and the isocitric dehydrogenases in the respiration of mitochondria of normal and neoplastic tissues.","authors":["Stein AM"," Stein JH"," Kirkman SK."],"journal":"Biochemistry","year":1967,"link":"http://www.ncbi.nlm.nih.gov/pubmed/4292141","id":"4292141","citationCount":12},{"title":"NICOTINAMIDE ADENINE DINUCLEOTIDE-SPECIFIC ISOCITRIC DEHYDROGENASE. A POSSIBLE REGULATORY PROTEIN.","authors":["SANWAL BD"," ZINK MW"," STACHOW CS."],"journal":"The Journal of biological chemistry","year":1964,"link":"http://www.ncbi.nlm.nih.gov/pubmed/14189899","id":"14189899","citationCount":5},{"title":"The stereochemistry of the nicotinamide adenine dinucleotide-specific isocitric dehydrogenase reaction.","authors":["Rose ZB."],"journal":"The Journal of biological chemistry","year":1966,"link":"http://www.ncbi.nlm.nih.gov/pubmed/4380379","id":"4380379","citationCount":0}],"name":"Isocitrate dehydrogenase [NAD] subunit gamma, mitochondrial","targetParticipants":[{"annotation":{"name":"IDH3G","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dIDH3G","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"Oxygen-dependent regulation of mitochondrial respiration by hypoxia-inducible factor 1.","authors":["Semenza GL."],"journal":"The Biochemical journal","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17555402","id":"17555402","citationCount":151},{"title":"Kinetic parameters and lactate dehydrogenase isozyme activities support possible lactate utilization by neurons.","authors":["O\u0027Brien J"," Kla KM"," Hopkins IB"," Malecki EA"," McKenna MC."],"journal":"Neurochemical research","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17006762","id":"17006762","citationCount":22},{"title":"Histochemical and histopathological study of the gastric mucosa in the portal hypertensive gastropathy.","authors":["Drăghia AC."],"journal":"Romanian journal of morphology and embryology \u003d Revue roumaine de morphologie et embryologie","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17308685","id":"17308685","citationCount":2}],"name":"L-lactate dehydrogenase A chain","targetParticipants":[{"annotation":{"name":"LDHA","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dLDHA","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"L-lactate dehydrogenase A-like 6A","targetParticipants":[{"annotation":{"name":"LDHAL6A","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dLDHAL6A","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"L-lactate dehydrogenase A-like 6B","targetParticipants":[{"annotation":{"name":"LDHAL6B","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dLDHAL6B","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Domain closure, substrate specificity and catalysis of D-lactate dehydrogenase from Lactobacillus bulgaricus.","authors":["Razeto A"," Kochhar S"," Hottinger H"," Dauter M"," Wilson KS"," Lamzin VS."],"journal":"Journal of molecular biology","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/12054772","id":"12054772","citationCount":23},{"title":"A preliminary account of the properties of recombinant human Glyoxylate reductase (GRHPR), LDHA and LDHB with glyoxylate, and their potential roles in its metabolism.","authors":["Mdluli K"," Booth MP"," Brady RL"," Rumsby G."],"journal":"Biochimica et biophysica acta","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16198644","id":"16198644","citationCount":11},{"title":"Lactate dehydrogenase isoenzymes of sperm cells and tests.","authors":["Clausen J."],"journal":"The Biochemical journal","year":1969,"link":"http://www.ncbi.nlm.nih.gov/pubmed/4303363","id":"4303363","citationCount":3}],"name":"L-lactate dehydrogenase B chain","targetParticipants":[{"annotation":{"name":"LDHB","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dLDHB","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Developmental changes in lactate dehydrogenase-X activity in young jaundiced male rats.","authors":["Gu Y"," Davis DR"," Lin YC."],"journal":"Archives of andrology","year":1989,"link":"http://www.ncbi.nlm.nih.gov/pubmed/2751392","id":"2751392","citationCount":5},{"title":"Rapid purification of lactate dehydrogenase X from mouse testes by two steps of affinity chromatography on oxamate-sepharose.","authors":["Spielmann H"," Eibs HG"," Mentzel C."],"journal":"Experientia","year":1976,"link":"http://www.ncbi.nlm.nih.gov/pubmed/182529","id":"182529","citationCount":1},{"title":"Inhibition of testicular LDH-X from laboratory animals and man by gossypol and its isomers.","authors":["Morris ID"," Higgins C"," Matlin SA."],"journal":"Journal of reproduction and fertility","year":1986,"link":"http://www.ncbi.nlm.nih.gov/pubmed/3735252","id":"3735252","citationCount":0}],"name":"L-lactate dehydrogenase C chain","targetParticipants":[{"annotation":{"name":"LDHC","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dLDHC","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"Heterologous expression of cDNAs encoding monodehydroascorbate reductases from the moss, Physcomitrella patens and characterization of the expressed enzymes.","authors":["Drew DP"," Lunde C"," Lahnstein J"," Fincher GB."],"journal":"Planta","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16983536","id":"16983536","citationCount":3}],"name":"Malate dehydrogenase, cytoplasmic","targetParticipants":[{"annotation":{"name":"MDH1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dMDH1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"L-2-hydroxyglutaric aciduria, a defect of metabolite repair.","authors":["Rzem R"," Vincent MF"," Van Schaftingen E"," Veiga-da-Cunha M."],"journal":"Journal of inherited metabolic disease","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17603759","id":"17603759","citationCount":33},{"title":"D-mannitol production by resting state whole cell biotrans-formation of D-fructose by heterologous mannitol and formate dehydrogenase gene expression in Bacillus megaterium.","authors":["Bäumchen C"," Roth AH"," Biedendieck R"," Malten M"," Follmann M"," Sahm H"," Bringer-Meyer S"," Jahn D."],"journal":"Biotechnology journal","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17619232","id":"17619232","citationCount":9},{"title":"Characterization of malate dehydrogenase from the hyperthermophilic archaeon Pyrobaculum islandicum.","authors":["Yennaco LJ"," Hu Y"," Holden JF."],"journal":"Extremophiles : life under extreme conditions","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17487443","id":"17487443","citationCount":3},{"title":"Fluorescent sensing layer for the determination of L-malic acid in wine.","authors":["Gallarta F"," Sáinz FJ"," Sáenz C."],"journal":"Analytical and bioanalytical chemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17203264","id":"17203264","citationCount":1},{"title":"[Lymphocyte metabolism in patients with acute pancreatitis with different genotypes of GSTM1 and GSTT1 genes].","authors":["Markova EV"," Zotova NV"," Savchenko AA"," Titova NM"," Slepov EV"," Cherdantsev DV"," Konovalenko AN."],"journal":"Biomeditsinskaia khimiia","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16898590","id":"16898590","citationCount":0}],"name":"Malate dehydrogenase, mitochondrial","targetParticipants":[{"annotation":{"name":"MDH2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dMDH2","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"The effect of ligand binding on the proteolytic pattern of methylmalonate semialdehyde dehydrogenase.","authors":["Kedishvili NY"," Popov KM"," Harris RA."],"journal":"Archives of biochemistry and biophysics","year":1991,"link":"http://www.ncbi.nlm.nih.gov/pubmed/1898092","id":"1898092","citationCount":1}],"name":"Methylmalonate-semialdehyde dehydrogenase [acylating], mitochondrial","targetParticipants":[{"annotation":{"name":"ALDH6A1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dALDH6A1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"Methylsterol monooxygenase 1","targetParticipants":[{"annotation":{"name":"MSMO1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dMSMO1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"Expression of the Escherichia coli pntAB genes encoding a membrane-bound transhydrogenase in Corynebacterium glutamicum improves L-lysine formation.","authors":["Kabus A"," Georgi T"," Wendisch VF"," Bott M."],"journal":"Applied microbiology and biotechnology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17216441","id":"17216441","citationCount":40}],"name":"NAD(P) transhydrogenase, mitochondrial","targetParticipants":[{"annotation":{"name":"NNT","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNNT","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NAD-dependent malic enzyme, mitochondrial","targetParticipants":[{"annotation":{"name":"ME2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dME2","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Control of oxygen free radical formation from mitochondrial complex I: roles for protein kinase A and pyruvate dehydrogenase kinase.","authors":["Raha S"," Myint AT"," Johnstone L"," Robinson BH."],"journal":"Free radical biology \u0026 medicine","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11864782","id":"11864782","citationCount":38},{"title":"The NDUFA1 gene product (MWFE protein) is essential for activity of complex I in mammalian mitochondria.","authors":["Au HC"," Seo BB"," Matsuno-Yagi A"," Yagi T"," Scheffler IE."],"journal":"Proceedings of the National Academy of Sciences of the United States of America","year":1999,"link":"http://www.ncbi.nlm.nih.gov/pubmed/10200266","id":"10200266","citationCount":24}],"name":"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 1","targetParticipants":[{"annotation":{"name":"NDUFA1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFA1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 10, mitochondrial","targetParticipants":[{"annotation":{"name":"NDUFA10","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFA10","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 11","targetParticipants":[{"annotation":{"name":"NDUFA11","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFA11","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 12","targetParticipants":[{"annotation":{"name":"NDUFA12","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFA12","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 13","targetParticipants":[{"annotation":{"name":"NDUFA13","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFA13","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 2","targetParticipants":[{"annotation":{"name":"NDUFA2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFA2","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 3","targetParticipants":[{"annotation":{"name":"NDUFA3","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFA3","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 4-like 2","targetParticipants":[{"annotation":{"name":"NDUFA4L2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFA4L2","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"Site-specific S-glutathiolation of mitochondrial NADH ubiquinone reductase.","authors":["Chen CL"," Zhang L"," Yeh A"," Chen CA"," Green-Church KB"," Zweier JL"," Chen YR."],"journal":"Biochemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17444656","id":"17444656","citationCount":36},{"title":"Role of the conserved arginine 274 and histidine 224 and 228 residues in the NuoCD subunit of complex I from Escherichia coli.","authors":["Belevich G"," Euro L"," Wikström M"," Verkhovskaya M."],"journal":"Biochemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17209562","id":"17209562","citationCount":12}],"name":"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 5","targetParticipants":[{"annotation":{"name":"NDUFA5","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFA5","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 6","targetParticipants":[{"annotation":{"name":"NDUFA6","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFA6","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 7","targetParticipants":[{"annotation":{"name":"NDUFA7","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFA7","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"The nuclear-encoded human NADH:ubiquinone oxidoreductase NDUFA8 subunit: cDNA cloning, chromosomal localization, tissue distribution, and mutation detection in complex-I-deficient patients.","authors":["Triepels R"," van den Heuvel L"," Loeffen J"," Smeets R"," Trijbels F"," Smeitink J."],"journal":"Human genetics","year":1998,"link":"http://www.ncbi.nlm.nih.gov/pubmed/9860297","id":"9860297","citationCount":4}],"name":"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 8","targetParticipants":[{"annotation":{"name":"NDUFA8","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFA8","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"The malaria parasite type II NADH:quinone oxidoreductase: an alternative enzyme for an alternative lifestyle.","authors":["Fisher N"," Bray PG"," Ward SA"," Biagini GA."],"journal":"Trends in parasitology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17499024","id":"17499024","citationCount":30},{"title":"Maintenance of the metabolic homeostasis of the heart: developing a systems analysis approach.","authors":["Balaban RS."],"journal":"Annals of the New York Academy of Sciences","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17132781","id":"17132781","citationCount":14},{"title":"The flavoprotein subcomplex of complex I (NADH:ubiquinone oxidoreductase) from bovine heart mitochondria: insights into the mechanisms of NADH oxidation and NAD+ reduction from protein film voltammetry.","authors":["Barker CD"," Reda T"," Hirst J."],"journal":"Biochemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17323923","id":"17323923","citationCount":13},{"title":"Inhibition of complex I by Ca2+ reduces electron transport activity and the rate of superoxide anion production in cardiac submitochondrial particles.","authors":["Matsuzaki S"," Szweda LI."],"journal":"Biochemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17260964","id":"17260964","citationCount":10},{"title":"Cloning and sequence analysis of the gene encoding 19-kD subunit of Complex I from Dunaliella salina.","authors":["Liu Y"," Qiao DR"," Zheng HB"," Dai XL"," Bai LH"," Zeng J"," Cao Y."],"journal":"Molecular biology reports","year":2008,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17530440","id":"17530440","citationCount":3}],"name":"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial","targetParticipants":[{"annotation":{"name":"NDUFA9","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFA9","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 1","targetParticipants":[{"annotation":{"name":"NDUFB1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFB1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 10","targetParticipants":[{"annotation":{"name":"NDUFB10","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFB10","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 2, mitochondrial","targetParticipants":[{"annotation":{"name":"NDUFB2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFB2","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 3","targetParticipants":[{"annotation":{"name":"NDUFB3","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFB3","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4","targetParticipants":[{"annotation":{"name":"NDUFB4","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFB4","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 5, mitochondrial","targetParticipants":[{"annotation":{"name":"NDUFB5","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFB5","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 6","targetParticipants":[{"annotation":{"name":"NDUFB6","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFB6","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Control of oxygen free radical formation from mitochondrial complex I: roles for protein kinase A and pyruvate dehydrogenase kinase.","authors":["Raha S"," Myint AT"," Johnstone L"," Robinson BH."],"journal":"Free radical biology \u0026 medicine","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11864782","id":"11864782","citationCount":38}],"name":"NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 7","targetParticipants":[{"annotation":{"name":"NDUFB7","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFB7","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial","targetParticipants":[{"annotation":{"name":"NDUFB8","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFB8","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 9","targetParticipants":[{"annotation":{"name":"NDUFB9","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFB9","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NADH dehydrogenase [ubiquinone] 1 subunit C1, mitochondrial","targetParticipants":[{"annotation":{"name":"NDUFC1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFC1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"Regulatory loop between redox sensing of the NADH/NAD(+) ratio by Rex (YdiH) and oxidation of NADH by NADH dehydrogenase Ndh in Bacillus subtilis.","authors":["Gyan S"," Shiohira Y"," Sato I"," Takeuchi M"," Sato T."],"journal":"Journal of bacteriology","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17015645","id":"17015645","citationCount":45},{"title":"Stimulation of chlororespiration by heat and high light intensity in oat plants.","authors":["Quiles MJ."],"journal":"Plant, cell \u0026 environment","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16898010","id":"16898010","citationCount":27},{"title":"Generation of a membrane potential by Lactococcus lactis through aerobic electron transport.","authors":["Brooijmans RJ"," Poolman B"," Schuurman-Wolters GK"," de Vos WM"," Hugenholtz J."],"journal":"Journal of bacteriology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17496098","id":"17496098","citationCount":26},{"title":"Ischemic preconditioning prevents in vivo hyperoxygenation in postischemic myocardium with preservation of mitochondrial oxygen consumption.","authors":["Zhu X"," Liu B"," Zhou S"," Chen YR"," Deng Y"," Zweier JL"," He G."],"journal":"American journal of physiology. Heart and circulatory physiology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17513495","id":"17513495","citationCount":17},{"title":"Association of MT-ND5 gene variation with mitochondrial respiratory control ratio and NADH dehydrogenase activity in Tibet chicken embryos.","authors":["Bao HG"," Zhao CJ"," Li JY"," Wu Ch."],"journal":"Animal genetics","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17614984","id":"17614984","citationCount":1}],"name":"NADH dehydrogenase [ubiquinone] 1 subunit C2","targetParticipants":[{"annotation":{"name":"NDUFC2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFC2","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Mitochondrial complex I mutations in Caenorhabditis elegans produce cytochrome c oxidase deficiency, oxidative stress and vitamin-responsive lactic acidosis.","authors":["Grad LI"," Lemire BD."],"journal":"Human molecular genetics","year":2004,"link":"http://www.ncbi.nlm.nih.gov/pubmed/14662656","id":"14662656","citationCount":43},{"title":"Chromosomal localization of the human gene encoding the 51-kDa subunit of mitochondrial complex I (NDUFV1) to 11q13.","authors":["Ali ST"," Duncan AM"," Schappert K"," Heng HH"," Tsui LC"," Chow W"," Robinson BH."],"journal":"Genomics","year":1993,"link":"http://www.ncbi.nlm.nih.gov/pubmed/8288251","id":"8288251","citationCount":11},{"title":"Cloning of the human mitochondrial 51 kDa subunit (NDUFV1) reveals a 100% antisense homology of its 3\u0027UTR with the 5\u0027UTR of the gamma-interferon inducible protein (IP-30) precursor: is this a link between mitochondrial myopathy and inflammation?","authors":["Schuelke M"," Loeffen J"," Mariman E"," Smeitink J"," van den Heuvel L."],"journal":"Biochemical and biophysical research communications","year":1998,"link":"http://www.ncbi.nlm.nih.gov/pubmed/9571201","id":"9571201","citationCount":8}],"name":"NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial","targetParticipants":[{"annotation":{"name":"NDUFV1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFV1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Identification of genes regulated by UV/salicylic acid.","authors":["Paunesku T"," Chang-Liu CM"," Shearin-Jones P"," Watson C"," Milton J"," Oryhon J"," Salbego D"," Milosavljevic A"," Woloschak GE."],"journal":"International journal of radiation biology","year":2000,"link":"http://www.ncbi.nlm.nih.gov/pubmed/10716640","id":"10716640","citationCount":2}],"name":"NADH dehydrogenase [ubiquinone] flavoprotein 2, mitochondrial","targetParticipants":[{"annotation":{"name":"NDUFV2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFV2","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NADH dehydrogenase [ubiquinone] flavoprotein 3, mitochondrial","targetParticipants":[{"annotation":{"name":"NDUFV3","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFV3","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NADH dehydrogenase [ubiquinone] iron-sulfur protein 2, mitochondrial","targetParticipants":[{"annotation":{"name":"NDUFS2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFS2","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial","targetParticipants":[{"annotation":{"name":"NDUFS3","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFS3","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"A nonsense mutation in the NDUFS4 gene encoding the 18 kDa (AQDQ) subunit of complex I abolishes assembly and activity of the complex in a patient with Leigh-like syndrome.","authors":["Petruzzella V"," Vergari R"," Puzziferri I"," Boffoli D"," Lamantea E"," Zeviani M"," Papa S."],"journal":"Human molecular genetics","year":2001,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11181577","id":"11181577","citationCount":45},{"title":"Control of oxygen free radical formation from mitochondrial complex I: roles for protein kinase A and pyruvate dehydrogenase kinase.","authors":["Raha S"," Myint AT"," Johnstone L"," Robinson BH."],"journal":"Free radical biology \u0026 medicine","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11864782","id":"11864782","citationCount":38},{"title":"The NADH: ubiquinone oxidoreductase (complex I) of the mammalian respiratory chain and the cAMP cascade.","authors":["Papa S"," Sardanelli AM"," Scacco S"," Petruzzella V"," Technikova-Dobrova Z"," Vergari R"," Signorile A."],"journal":"Journal of bioenergetics and biomembranes","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11860175","id":"11860175","citationCount":19}],"name":"NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial","targetParticipants":[{"annotation":{"name":"NDUFS4","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFS4","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"The human NADH: ubiquinone oxidoreductase NDUFS5 (15 kDa) subunit: cDNA cloning, chromosomal localization, tissue distribution and the absence of mutations in isolated complex I-deficient patients.","authors":["Loeffen J"," Smeets R"," Smeitink J"," Triepels R"," Sengers R"," Trijbels F"," van den Heuvel L."],"journal":"Journal of inherited metabolic disease","year":1999,"link":"http://www.ncbi.nlm.nih.gov/pubmed/10070614","id":"10070614","citationCount":3}],"name":"NADH dehydrogenase [ubiquinone] iron-sulfur protein 5","targetParticipants":[{"annotation":{"name":"NDUFS5","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFS5","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NADH dehydrogenase [ubiquinone] iron-sulfur protein 6, mitochondrial","targetParticipants":[{"annotation":{"name":"NDUFS6","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFS6","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"NADH-quinone oxidoreductase: PSST subunit couples electron transfer from iron-sulfur cluster N2 to quinone.","authors":["Schuler F"," Yano T"," Di Bernardo S"," Yagi T"," Yankovskaya V"," Singer TP"," Casida JE."],"journal":"Proceedings of the National Academy of Sciences of the United States of America","year":1999,"link":"http://www.ncbi.nlm.nih.gov/pubmed/10097178","id":"10097178","citationCount":39},{"title":"Intimate relationships of the large and the small subunits of all nickel hydrogenases with two nuclear-encoded subunits of mitochondrial NADH: ubiquinone oxidoreductase.","authors":["Albracht SP."],"journal":"Biochimica et biophysica acta","year":1993,"link":"http://www.ncbi.nlm.nih.gov/pubmed/8369340","id":"8369340","citationCount":18},{"title":"Assignment of the PSST subunit gene of human mitochondrial complex I to chromosome 19p13.","authors":["Hyslop SJ"," Duncan AM"," Pitkänen S"," Robinson BH."],"journal":"Genomics","year":1996,"link":"http://www.ncbi.nlm.nih.gov/pubmed/8938450","id":"8938450","citationCount":5}],"name":"NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial","targetParticipants":[{"annotation":{"name":"NDUFS7","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFS7","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"The first nuclear-encoded complex I mutation in a patient with Leigh syndrome.","authors":["Loeffen J"," Smeitink J"," Triepels R"," Smeets R"," Schuelke M"," Sengers R"," Trijbels F"," Hamel B"," Mullaart R"," van den Heuvel L."],"journal":"American journal of human genetics","year":1998,"link":"http://www.ncbi.nlm.nih.gov/pubmed/9837812","id":"9837812","citationCount":92},{"title":"Learning from hydrogenases: location of a proton pump and of a second FMN in bovine NADH--ubiquinone oxidoreductase (Complex I).","authors":["Albracht SP"," Hedderich R."],"journal":"FEBS letters","year":2000,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11086155","id":"11086155","citationCount":26},{"title":"Association of ferredoxin-NADP oxidoreductase with the chloroplastic pyridine nucleotide dehydrogenase complex in barley leaves","authors":["Jose Quiles M"," Cuello J."],"journal":"Plant physiology","year":1998,"link":"http://www.ncbi.nlm.nih.gov/pubmed/9576793","id":"9576793","citationCount":19}],"name":"NADH dehydrogenase [ubiquinone] iron-sulfur protein 8, mitochondrial","targetParticipants":[{"annotation":{"name":"NDUFS8","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFS8","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"Reductive detoxification of arylhydroxylamine carcinogens by human NADH cytochrome b5 reductase and cytochrome b5.","authors":["Kurian JR"," Chin NA"," Longlais BJ"," Hayes KL"," Trepanier LA."],"journal":"Chemical research in toxicology","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17040106","id":"17040106","citationCount":14},{"title":"A novel mutation of the cytochrome-b5 reductase gene in an Indian patient: the molecular basis of type I methemoglobinemia.","authors":["Nussenzveig RH"," Lingam HB"," Gaikwad A"," Zhu Q"," Jing N"," Prchal JT."],"journal":"Haematologica","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17082011","id":"17082011","citationCount":6},{"title":"Expression and characterization of a functional canine variant of cytochrome b5 reductase.","authors":["Roma GW"," Crowley LJ"," Barber MJ."],"journal":"Archives of biochemistry and biophysics","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16814740","id":"16814740","citationCount":5},{"title":"Structure of Physarum polycephalum cytochrome b5 reductase at 1.56 A resolution.","authors":["Kim S"," Suga M"," Ogasahara K"," Ikegami T"," Minami Y"," Yubisui T"," Tsukihara T."],"journal":"Acta crystallographica. Section F, Structural biology and crystallization communications","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17401193","id":"17401193","citationCount":3},{"title":"Structure and properties of the recombinant NADH-cytochrome b5 reductase of Physarum polycephalum.","authors":["Ikegami T"," Kameyama E"," Yamamoto SY"," Minami Y"," Yubisui T."],"journal":"Bioscience, biotechnology, and biochemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17341833","id":"17341833","citationCount":0}],"name":"NADH-cytochrome b5 reductase 3","targetParticipants":[{"annotation":{"name":"CYB5R3","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dCYB5R3","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial","targetParticipants":[{"annotation":{"name":"NDUFS1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNDUFS1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"TTD: Therapeutic Target Database.","authors":["Chen X"," Ji ZL"," Chen YZ."],"journal":"Nucleic acids research","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11752352","id":"11752352","citationCount":96}],"name":"NADH-ubiquinone oxidoreductase chain 1","targetParticipants":[{"annotation":{"name":"MT-ND1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dMT-ND1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"TTD: Therapeutic Target Database.","authors":["Chen X"," Ji ZL"," Chen YZ."],"journal":"Nucleic acids research","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11752352","id":"11752352","citationCount":96},{"title":"Differences in activity of cytochrome C oxidase in brain between sleep and wakefulness.","authors":["Nikonova EV"," Vijayasarathy C"," Zhang L"," Cater JR"," Galante RJ"," Ward SE"," Avadhani NG"," Pack AI."],"journal":"Sleep","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15700717","id":"15700717","citationCount":11},{"title":"[The changes of gene expression in multiple myeloma treated with thalidomide].","authors":["Zhang HB"," Chen SL"," Liu JZ"," Xiao B"," Chen ZB"," Wang HJ."],"journal":"Zhonghua nei ke za zhi","year":2003,"link":"http://www.ncbi.nlm.nih.gov/pubmed/12882707","id":"12882707","citationCount":0}],"name":"NADH-ubiquinone oxidoreductase chain 2","targetParticipants":[{"annotation":{"name":"MT-ND2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dMT-ND2","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"TTD: Therapeutic Target Database.","authors":["Chen X"," Ji ZL"," Chen YZ."],"journal":"Nucleic acids research","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11752352","id":"11752352","citationCount":96}],"name":"NADH-ubiquinone oxidoreductase chain 3","targetParticipants":[{"annotation":{"name":"MT-ND3","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dMT-ND3","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Alterations in mitochondrial and apoptosis-regulating gene expression in photodynamic therapy-resistant variants of HT29 colon carcinoma cells.","authors":["Shen XY"," Zacal N"," Singh G"," Rainbow AJ."],"journal":"Photochemistry and photobiology","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15560738","id":"15560738","citationCount":12},{"title":"Oxidative stress induces differential gene expression in a human lens epithelial cell line.","authors":["Carper DA"," Sun JK"," Iwata T"," Zigler JS Jr"," Ibaraki N"," Lin LR"," Reddy V."],"journal":"Investigative ophthalmology \u0026 visual science","year":1999,"link":"http://www.ncbi.nlm.nih.gov/pubmed/9950599","id":"9950599","citationCount":9},{"title":"Deletion of the structural gene for the NADH-dehydrogenase subunit 4 of Synechocystis 6803 alters respiratory properties.","authors":["Dzelzkalns VA"," Obinger C"," Regelsberger G"," Niederhauser H"," Kamensek M"," Peschek GA"," Bogorad L."],"journal":"Plant physiology","year":1994,"link":"http://www.ncbi.nlm.nih.gov/pubmed/7846157","id":"7846157","citationCount":5}],"name":"NADH-ubiquinone oxidoreductase chain 4","targetParticipants":[{"annotation":{"name":"MT-ND4","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dMT-ND4","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NADH-ubiquinone oxidoreductase chain 4L","targetParticipants":[{"annotation":{"name":"MT-ND4L","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dMT-ND4L","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Phylogenetic reconstruction of the Felidae using 16S rRNA and NADH-5 mitochondrial genes.","authors":["Johnson WE"," O\u0027Brien SJ."],"journal":"Journal of molecular evolution","year":1997,"link":"http://www.ncbi.nlm.nih.gov/pubmed/9071018","id":"9071018","citationCount":31},{"title":"Association of MT-ND5 gene variation with mitochondrial respiratory control ratio and NADH dehydrogenase activity in Tibet chicken embryos.","authors":["Bao HG"," Zhao CJ"," Li JY"," Wu Ch."],"journal":"Animal genetics","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17614984","id":"17614984","citationCount":1}],"name":"NADH-ubiquinone oxidoreductase chain 5","targetParticipants":[{"annotation":{"name":"MT-ND5","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dMT-ND5","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"NADH-ubiquinone oxidoreductase chain 6","targetParticipants":[{"annotation":{"name":"MT-ND6","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dMT-ND6","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"Determining Actinobacillus succinogenes metabolic pathways and fluxes by NMR and GC-MS analyses of 13C-labeled metabolic product isotopomers.","authors":["McKinlay JB"," Shachar-Hill Y"," Zeikus JG"," Vieille C."],"journal":"Metabolic engineering","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17197218","id":"17197218","citationCount":35}],"name":"NADP-dependent malic enzyme","targetParticipants":[{"annotation":{"name":"ME1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dME1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"L-2-hydroxyglutaric aciduria, a defect of metabolite repair.","authors":["Rzem R"," Vincent MF"," Van Schaftingen E"," Veiga-da-Cunha M."],"journal":"Journal of inherited metabolic disease","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17603759","id":"17603759","citationCount":33},{"title":"Identification of cold acclimation-responsive Rhododendron genes for lipid metabolism, membrane transport and lignin biosynthesis: importance of moderately abundant ESTs in genomic studies.","authors":["Wei H"," Dhanaraj AL"," Arora R"," Rowland LJ"," Fu Y"," Sun L."],"journal":"Plant, cell \u0026 environment","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17080607","id":"17080607","citationCount":16},{"title":"An NADH-tetrazolium-coupled sensitive assay for malate dehydrogenase in mitochondria and crude tissue homogenates.","authors":["Luo C"," Wang X"," Long J"," Liu J."],"journal":"Journal of biochemical and biophysical methods","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16740313","id":"16740313","citationCount":7}],"name":"NADP-dependent malic enzyme, mitochondrial","targetParticipants":[{"annotation":{"name":"ME3","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dME3","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"Peroxisomal bifunctional enzyme","targetParticipants":[{"annotation":{"name":"EHHADH","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dEHHADH","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Binary structure of the two-domain (3R)-hydroxyacyl-CoA dehydrogenase from rat peroxisomal multifunctional enzyme type 2 at 2.38 A resolution.","authors":["Haapalainen AM"," Koski MK"," Qin YM"," Hiltunen JK"," Glumoff T."],"journal":"Structure (London, England : 1993)","year":2003,"link":"http://www.ncbi.nlm.nih.gov/pubmed/12517343","id":"12517343","citationCount":12}],"name":"Peroxisomal multifunctional enzyme type 2","targetParticipants":[{"annotation":{"name":"HSD17B4","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dHSD17B4","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"Glutamine synthetase and glutamate dehydrogenase contribute differentially to proline accumulation in leaves of wheat (Triticum aestivum) seedlings exposed to different salinity.","authors":["Wang ZQ"," Yuan YZ"," Ou JQ"," Lin QH"," Zhang CF."],"journal":"Journal of plant physiology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16777263","id":"16777263","citationCount":19},{"title":"Plant P5C reductase as a new target for aminomethylenebisphosphonates.","authors":["Forlani G"," Giberti S"," Berlicki L"," Petrollino D"," Kafarski P."],"journal":"Journal of agricultural and food chemistry","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17474756","id":"17474756","citationCount":7}],"name":"Pyrroline-5-carboxylate reductase 1, mitochondrial","targetParticipants":[{"annotation":{"name":"PYCR1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dPYCR1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Purification and characterization of Delta(1)-pyrroline-5-carboxylate reductase isoenzymes, indicating differential distribution in spinach (Spinacia oleracea L.) leaves.","authors":["Murahama M"," Yoshida T"," Hayashi F"," Ichino T"," Sanada Y"," Wada K."],"journal":"Plant \u0026 cell physiology","year":2001,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11479381","id":"11479381","citationCount":12}],"name":"Pyrroline-5-carboxylate reductase 2","targetParticipants":[{"annotation":{"name":"PYCR2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dPYCR2","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"Pyruvate dehydrogenase E1 component subunit alpha, somatic form, mitochondrial","targetParticipants":[{"annotation":{"name":"PDHA1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dPDHA1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"Pyruvate dehydrogenase E1 component subunit alpha, testis-specific form, mitochondrial","targetParticipants":[{"annotation":{"name":"PDHA2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dPDHA2","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Regulation of pyruvate dehydrogenase in isolated rat liver mitochondria. Effects of octanoate, oxidation-reduction state, and adenosine triphosphate to adenosine diphosphate ratio.","authors":["Taylor SI"," Mukherjee C"," Jungas RL."],"journal":"The Journal of biological chemistry","year":1975,"link":"http://www.ncbi.nlm.nih.gov/pubmed/1116996","id":"1116996","citationCount":17}],"name":"Pyruvate dehydrogenase E1 component subunit beta, mitochondrial","targetParticipants":[{"annotation":{"name":"PDHB","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dPDHB","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"4-(N,N-dipropylamino)benzaldehyde inhibits the oxidation of all-trans retinal to all-trans retinoic acid by ALDH1A1, but not the differentiation of HL-60 promyelocytic leukemia cells exposed to all-trans retinal.","authors":["Russo J"," Barnes A"," Berger K"," Desgrosellier J"," Henderson J"," Kanters A"," Merkov L."],"journal":"BMC pharmacology","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11872149","id":"11872149","citationCount":7},{"title":"Activities of cytosolic aldehyde dehydrogenase isozymes in colon cancer: determination using selective, fluorimetric assays.","authors":["Wroczyński P"," Nowak M"," Wierzchowski J"," Szubert A"," Polański J."],"journal":"Acta poloniae pharmaceutica","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16583981","id":"16583981","citationCount":3}],"name":"Retinal dehydrogenase 1","targetParticipants":[{"annotation":{"name":"ALDH1A1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dALDH1A1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"The structure of retinal dehydrogenase type II at 2.7 A resolution: implications for retinal specificity.","authors":["Lamb AL"," Newcomer ME."],"journal":"Biochemistry","year":1999,"link":"http://www.ncbi.nlm.nih.gov/pubmed/10320326","id":"10320326","citationCount":44},{"title":"4-(N,N-dipropylamino)benzaldehyde inhibits the oxidation of all-trans retinal to all-trans retinoic acid by ALDH1A1, but not the differentiation of HL-60 promyelocytic leukemia cells exposed to all-trans retinal.","authors":["Russo J"," Barnes A"," Berger K"," Desgrosellier J"," Henderson J"," Kanters A"," Merkov L."],"journal":"BMC pharmacology","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11872149","id":"11872149","citationCount":7}],"name":"Retinal dehydrogenase 2","targetParticipants":[{"annotation":{"name":"ALDH1A2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dALDH1A2","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"NQO1 and NQO2 regulation of humoral immunity and autoimmunity.","authors":["Iskander K"," Li J"," Han S"," Zheng B"," Jaiswal AK."],"journal":"The Journal of biological chemistry","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16905546","id":"16905546","citationCount":19},{"title":"Reduction of mitomycin C is catalysed by human recombinant NRH:quinone oxidoreductase 2 using reduced nicotinamide adenine dinucleotide as an electron donating co-factor.","authors":["Jamieson D"," Tung AT"," Knox RJ"," Boddy AV."],"journal":"British journal of cancer","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17031400","id":"17031400","citationCount":11}],"name":"Ribosyldihydronicotinamide dehydrogenase [quinone]","targetParticipants":[{"annotation":{"name":"NQO2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNQO2","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"Short-chain specific acyl-CoA dehydrogenase, mitochondrial","targetParticipants":[{"annotation":{"name":"ACADS","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dACADS","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"Pyridine nucleotide redox abnormalities in diabetes.","authors":["Ido Y."],"journal":"Antioxidants \u0026 redox signaling","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17508915","id":"17508915","citationCount":24},{"title":"Catalytic mechanism of Zn2+-dependent polyol dehydrogenases: kinetic comparison of sheep liver sorbitol dehydrogenase with wild-type and Glu154--\u003eCys forms of yeast xylitol dehydrogenase.","authors":["Klimacek M"," Hellmer H"," Nidetzky B."],"journal":"The Biochemical journal","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17343568","id":"17343568","citationCount":7}],"name":"Sorbitol dehydrogenase","targetParticipants":[{"annotation":{"name":"SORD","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dSORD","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"Modulation of human CYP19A1 activity by mutant NADPH P450 oxidoreductase.","authors":["Pandey AV"," Kempná P"," Hofer G"," Mullis PE"," Flück CE."],"journal":"Molecular endocrinology (Baltimore, Md.)","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17595315","id":"17595315","citationCount":33}],"name":"Steroid 17-alpha-hydroxylase/17,20 lyase","targetParticipants":[{"annotation":{"name":"CYP17A1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dCYP17A1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Changes in gene expression associated with loss of function of the NSDHL sterol dehydrogenase in mouse embryonic fibroblasts.","authors":["Cunningham D"," Swartzlander D"," Liyanarachchi S"," Davuluri RV"," Herman GE."],"journal":"Journal of lipid research","year":2005,"link":"http://www.ncbi.nlm.nih.gov/pubmed/15805545","id":"15805545","citationCount":7}],"name":"Sterol-4-alpha-carboxylate 3-dehydrogenase, decarboxylating","targetParticipants":[{"annotation":{"name":"NSDHL","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNSDHL","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"Succinate-semialdehyde dehydrogenase, mitochondrial","targetParticipants":[{"annotation":{"name":"ALDH5A1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dALDH5A1","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Relationship between steroids and pyridine nucleotides in the oxido-reduction catalyzed by the 17 beta-hydroxysteroid dehydrogenase purified from the porcine testicular microsomal fraction.","authors":["Inano H"," Tamaoki B."],"journal":"European journal of biochemistry / FEBS","year":1975,"link":"http://www.ncbi.nlm.nih.gov/pubmed/237755","id":"237755","citationCount":2}],"name":"Testosterone 17-beta-dehydrogenase 3","targetParticipants":[{"annotation":{"name":"HSD17B3","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dHSD17B3","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131}],"name":"Trifunctional enzyme subunit alpha, mitochondrial","targetParticipants":[{"annotation":{"name":"HADHA","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dHADHA","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"Decolourization of azo dye methyl red by Saccharomyces cerevisiae MTCC 463.","authors":["Jadhav JP"," Parshetti GK"," Kalme SD"," Govindwar SP."],"journal":"Chemosphere","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17292452","id":"17292452","citationCount":31},{"title":"A potential role for cyclized quinones derived from dopamine, DOPA, and 3,4-dihydroxyphenylacetic acid in proteasomal inhibition.","authors":["Zafar KS"," Siegel D"," Ross D."],"journal":"Molecular pharmacology","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/16790533","id":"16790533","citationCount":26}],"name":"Tyrosinase","targetParticipants":[{"annotation":{"name":"TYR","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dTYR","idObject":0},"selectable":false,"selected":false,"visible":false}]},{"targetElements":[],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Mechanism of cadmium-decreased glucuronidation in the rat.","authors":["Alary J"," Cravedi JP"," Baradat M"," Carrera G."],"journal":"Biochemical pharmacology","year":1992,"link":"http://www.ncbi.nlm.nih.gov/pubmed/1472079","id":"1472079","citationCount":3},{"title":"Regulatory mechanisms of UDP-glucuronic acid biosynthesis in cultured human skin fibroblasts.","authors":["Castellani AA"," De Luca G"," Rindi S"," Salvini R"," Tira ME."],"journal":"The Italian journal of biochemistry","year":1986,"link":"http://www.ncbi.nlm.nih.gov/pubmed/3804697","id":"3804697","citationCount":1}],"name":"UDP-glucose 6-dehydrogenase","targetParticipants":[{"annotation":{"name":"UGDH","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dUGDH","idObject":0},"selectable":false,"selected":false,"visible":false}]}],"bloodBrainBarrier":"Unknown column"}]
\ No newline at end of file
+[{"brandNames":[],"references":[{"resource":"DB00157","link":"http://www.drugbank.ca/drugs/DB00157","id":0,"type":null}],"synonyms":["1,4-dihydronicotinamide adenine dinucleotide","DPNH","NAD reduced form","Nicotinamide adenine dinucleotide (reduced)","Nicotinamide-adenine dinucleotide, reduced","Reduced nicotinamide adenine diphosphate","Reduced nicotinamide-adenine dinucleotide"],"name":"NADH","description":"NADH is the reduced form of NAD+, and NAD+ is the oxidized form of NADH, a coenzyme composed of ribosylnicotinamide 5'-diphosphate coupled to adenosine 5'-phosphate by pyrophosphate linkage. It is found widely in nature and is involved in numerous enzymatic reactions in which it serves as an electron carrier by being alternately oxidized (NAD+) and reduced (NADH). It forms NADP with the addition of a phosphate group to the 2' position of the adenosyl nucleotide through an ester linkage. (Dorland, 27th ed)","id":"NADH","targets":[],"bloodBrainBarrier":"YES"}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/drugs.search/query=aspirin&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/drugs.search/query=aspirin&token=MOCK_TOKEN_ID&
index 88c0c4dbf8faffccf239acd30e84d8eb06d98b53..63b1d24d742963df9d9c90f0b656c3efe5a2e2c7 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/drugs.search/query=aspirin&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/drugs.search/query=aspirin&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"brandNames":["Acenterine","Acetophen","Adiro","Aspergum","Aspro","Bayer Aspirin","Easprin","Empirin","Nu-seals","Rhodine","Rhonal","Solprin","Solprin acid","St. Joseph Aspirin for Adults","Tasprin"],"references":[{"name":"DB00945","type":"DrugBank","link":"http://www.drugbank.ca/drugs/DB00945","idObject":0},{"name":"CHEMBL25","type":"ChEMBL","link":"https://www.ebi.ac.uk/chembl/compound/inspect/CHEMBL25","idObject":0}],"synonyms":["2-(ACETYLOXY)benzoic acid","2-Acetoxybenzenecarboxylic acid","2-Acetoxybenzoic acid","Acetylsalicylate","Acetylsalicylic acid","Acetylsalicylsaeure","Acide 2-(acetyloxy)benzoique","Acide acétylsalicylique","ácido acetilsalicílico","Acidum acetylsalicylicum","ASA","Aspirin","Azetylsalizylsaeure","Azetylsalizylsäure","Easprin","o-acetoxybenzoic acid","O-acetylsalicylic acid","o-carboxyphenyl acetate","Polopiryna","Salicylic acid acetate","8-Hour Bayer","Acetosalic Acid","Acetylsalicylic Acid","Bayer Extra Strength","Ecotrin","Equi-Prin","Measurin","Salicylic Acid Acetate"],"name":"ASPIRIN","description":"The prototypical analgesic used in the treatment of mild to moderate pain. It has anti-inflammatory and antipyretic properties and acts as an inhibitor of cyclooxygenase which results in the inhibition of the biosynthesis of prostaglandins. Acetylsalicylic acid also inhibits platelet aggregation and is used in the prevention of arterial and venous thrombosis. (From Martindale, The Extra Pharmacopoeia, 30th ed, p5)","id":"ASPIRIN","targets":[{"targetElements":[],"references":[{"title":"The ancient drug salicylate directly activates AMP-activated protein kinase.","authors":["Hawley SA"," Fullerton MD"," Ross FA"," Schertzer JD"," Chevtzoff C"," Walker KJ"," Peggie MW"," Zibrova D"," Green KA"," Mustard KJ"," Kemp BE"," Sakamoto K"," Steinberg GR"," Hardie DG."],"journal":"Science (New York, N.Y.)","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/22517326","id":"22517326","citationCount":186},{"title":"Aspirin inhibits mTOR signaling, activates AMP-activated protein kinase, and induces autophagy in colorectal cancer cells.","authors":["Din FV"," Valanciute A"," Houde VP"," Zibrova D"," Green KA"," Sakamoto K"," Alessi DR"," Dunlop MG."],"journal":"Gastroenterology","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/22406476","id":"22406476","citationCount":75}],"name":"5\u0027-AMP-activated protein kinase catalytic subunit alpha-1","targetParticipants":[{"name":"PRKAA1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dPRKAA1","idObject":0}]},{"targetElements":[],"references":[{"title":"Aspirin and salicylate bind to immunoglobulin heavy chain binding protein (BiP) and inhibit its ATPase activity in human fibroblasts.","authors":["Deng WG"," Ruan KH"," Du M"," Saunders MA"," Wu KK."],"journal":"FASEB journal : official publication of the Federation of American Societies for Experimental Biology","year":2001,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11689471","id":"11689471","citationCount":9}],"name":"78 kDa glucose-regulated protein","targetParticipants":[{"name":"HSPA5","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dHSPA5","idObject":0}]},{"targetElements":[],"references":[{"title":"A salicylic acid-based analogue discovered from virtual screening as a potent inhibitor of human 20alpha-hydroxysteroid dehydrogenase.","authors":["Dhagat U"," Carbone V"," Chung RP"," Matsunaga T"," Endo S"," Hara A"," El-Kabbani O."],"journal":"Medicinal chemistry (Shariqah (United Arab Emirates))","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/18045204","id":"18045204","citationCount":9}],"name":"Aldo-keto reductase family 1 member C1","targetParticipants":[{"name":"AKR1C1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dAKR1C1","idObject":0}]},{"targetElements":[],"references":[{"title":"Does aspirin acetylate multiple cellular proteins? (Review).","authors":["Alfonso LF"," Srivenugopal KS"," Bhat GJ."],"journal":"Molecular medicine reports","year":2009,"link":"http://www.ncbi.nlm.nih.gov/pubmed/21475861","id":"21475861","citationCount":7}],"name":"Cellular tumor antigen p53","targetParticipants":[{"name":"TP53","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dTP53","idObject":0}]},{"targetElements":[],"references":[{"title":"Interaction between cyclooxygenase (COX)-1- and COX-2-products modulates COX-2 expression in the late phase of acute inflammation.","authors":["Nakano M"," Denda N"," Matsumoto M"," Kawamura M"," Kawakubo Y"," Hatanaka K"," Hiramoto Y"," Sato Y"," Noshiro M"," Harada Y."],"journal":"European journal of pharmacology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17258197","id":"17258197","citationCount":5},{"title":"Aspirin resistance: a review of diagnostic methodology, mechanisms, and clinical utility.","authors":["Schwartz KA."],"journal":"Advances in clinical chemistry","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17131625","id":"17131625","citationCount":3}],"name":"Cyclooxygenase","targetParticipants":[{"name":"PTGS1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dPTGS1","idObject":0},{"name":"PTGS2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dPTGS2","idObject":0}]},{"targetElements":[],"references":[{"title":"Aspirin and sodium salicylate inhibit endothelin ETA receptors by an allosteric type of mechanism.","authors":["Talbodec A"," Berkane N"," Blandin V"," Breittmayer JP"," Ferrari E"," Frelin C"," Vigne P."],"journal":"Molecular pharmacology","year":2000,"link":"http://www.ncbi.nlm.nih.gov/pubmed/10727528","id":"10727528","citationCount":9}],"name":"Endothelin-1 receptor","targetParticipants":[{"name":"EDNRA","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dEDNRA","idObject":0}]},{"targetElements":[],"references":[{"title":"The anti-inflammatory agents aspirin and salicylate inhibit the activity of I(kappa)B kinase-beta.","authors":["Yin MJ"," Yamamoto Y"," Gaynor RB."],"journal":"Nature","year":1998,"link":"http://www.ncbi.nlm.nih.gov/pubmed/9817203","id":"9817203","citationCount":594}],"name":"Inhibitor of nuclear factor kappa-B kinase subunit beta","targetParticipants":[{"name":"IKBKB","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dIKBKB","idObject":0}]},{"targetElements":[],"references":[{"title":"Salicylic acid and aspirin inhibit the activity of RSK2 kinase and repress RSK2-dependent transcription of cyclic AMP response element binding protein- and NF-kappa B-responsive genes.","authors":["Stevenson MA"," Zhao MJ"," Asea A"," Coleman CN"," Calderwood SK."],"journal":"Journal of immunology (Baltimore, Md. : 1950)","year":1999,"link":"http://www.ncbi.nlm.nih.gov/pubmed/10553090","id":"10553090","citationCount":19}],"name":"NF-kappa-B inhibitor alpha","targetParticipants":[{"name":"NFKBIA","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNFKBIA","idObject":0}]},{"targetElements":[],"references":[{"title":"Inhibition of NF-kappa B by sodium salicylate and aspirin.","authors":["Kopp E"," Ghosh S."],"journal":"Science (New York, N.Y.)","year":1994,"link":"http://www.ncbi.nlm.nih.gov/pubmed/8052854","id":"8052854","citationCount":679}],"name":"Nuclear factor NF-kappa-B p100 subunit","targetParticipants":[{"name":"NFKB2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dNFKB2","idObject":0}]},{"targetElements":[],"references":[{"title":"TTD: Therapeutic Target Database.","authors":["Chen X"," Ji ZL"," Chen YZ."],"journal":"Nucleic acids research","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11752352","id":"11752352","citationCount":96},{"title":"Clinical and pathologic perspectives on aspirin sensitivity and asthma.","authors":["Stevenson DD"," Szczeklik A."],"journal":"The Journal of allergy and clinical immunology","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17030227","id":"17030227","citationCount":89},{"title":"Reticulated platelets and uninhibited COX-1 and COX-2 decrease the antiplatelet effects of aspirin.","authors":["Guthikonda S"," Lev EI"," Patel R"," DeLao T"," Bergeron AL"," Dong JF"," Kleiman NS."],"journal":"Journal of thrombosis and haemostasis : JTH","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17319904","id":"17319904","citationCount":75},{"title":"Aspirin augments 15-epi-lipoxin A4 production by lipopolysaccharide, but blocks the pioglitazone and atorvastatin induction of 15-epi-lipoxin A4 in the rat heart.","authors":["Birnbaum Y"," Ye Y"," Lin Y"," Freeberg SY"," Huang MH"," Perez-Polo JR"," Uretsky BF."],"journal":"Prostaglandins \u0026 other lipid mediators","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17259075","id":"17259075","citationCount":19},{"title":"Aspirin resistance: a review of diagnostic methodology, mechanisms, and clinical utility.","authors":["Schwartz KA."],"journal":"Advances in clinical chemistry","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17131625","id":"17131625","citationCount":3},{"title":"[Are the NSAIDs able to compromising the cardio-preventive efficacy of aspirin?].","authors":["Flipo RM."],"journal":"Presse medicale (Paris, France : 1983)","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17078596","id":"17078596","citationCount":0}],"name":"Prostaglandin G/H synthase 1","targetParticipants":[{"name":"PTGS1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dPTGS1","idObject":0}]},{"targetElements":[],"references":[{"title":"TTD: Therapeutic Target Database.","authors":["Chen X"," Ji ZL"," Chen YZ."],"journal":"Nucleic acids research","year":2002,"link":"http://www.ncbi.nlm.nih.gov/pubmed/11752352","id":"11752352","citationCount":96},{"title":"Blood levels of long-chain polyunsaturated fatty acids, aspirin, and the risk of colorectal cancer.","authors":["Hall MN"," Campos H"," Li H"," Sesso HD"," Stampfer MJ"," Willett WC"," Ma J."],"journal":"Cancer epidemiology, biomarkers \u0026 prevention : a publication of the American Association for Cancer Research, cosponsored by the American Society of Preventive Oncology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17301265","id":"17301265","citationCount":31},{"title":"Genetic polymorphisms in the cyclooxygenase-2 gene, use of nonsteroidal anti-inflammatory drugs, and breast cancer risk.","authors":["Shen J"," Gammon MD"," Terry MB"," Teitelbaum SL"," Neugut AI"," Santella RM."],"journal":"Breast cancer research : BCR","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17181859","id":"17181859","citationCount":28},{"title":"Interaction of nonsteroidal anti-inflammatory drugs (NSAID) with Helicobacter pylori in the stomach of humans and experimental animals.","authors":["Brzozowski T"," Konturek PC"," Sliwowski Z"," KwiecieÅ„ S"," Drozdowicz D"," Pawlik M"," Mach K"," Konturek SJ"," Pawlik WW."],"journal":"Journal of physiology and pharmacology : an official journal of the Polish Physiological Society","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17033106","id":"17033106","citationCount":15},{"title":"Interaction between cyclooxygenase (COX)-1- and COX-2-products modulates COX-2 expression in the late phase of acute inflammation.","authors":["Nakano M"," Denda N"," Matsumoto M"," Kawamura M"," Kawakubo Y"," Hatanaka K"," Hiramoto Y"," Sato Y"," Noshiro M"," Harada Y."],"journal":"European journal of pharmacology","year":2007,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17258197","id":"17258197","citationCount":5},{"title":"[Effects of nonsteroidal anti-inflammatory drug celecoxib on expression of cyclooxygenase-2 (COX-2) in ovarian carcinoma cell].","authors":["Wang HJ"," Liu XJ"," Yang KX"," Luo FM"," Lou JY"," Peng ZL."],"journal":"Sichuan da xue xue bao. Yi xue ban \u003d Journal of Sichuan University. Medical science edition","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17037745","id":"17037745","citationCount":0}],"name":"Prostaglandin G/H synthase 2","targetParticipants":[{"name":"PTGS2","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dPTGS2","idObject":0}]},{"targetElements":[],"references":[{"title":"Salicylic acid and aspirin inhibit the activity of RSK2 kinase and repress RSK2-dependent transcription of cyclic AMP response element binding protein- and NF-kappa B-responsive genes.","authors":["Stevenson MA"," Zhao MJ"," Asea A"," Coleman CN"," Calderwood SK."],"journal":"Journal of immunology (Baltimore, Md. : 1950)","year":1999,"link":"http://www.ncbi.nlm.nih.gov/pubmed/10553090","id":"10553090","citationCount":19}],"name":"Ribosomal protein S6 kinase alpha-3","targetParticipants":[{"name":"RPS6KA3","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dRPS6KA3","idObject":0}]}],"bloodBrainBarrier":"YES"}]
\ No newline at end of file
+[{"brandNames":["Acenterine","Acetophen","Adiro","Aspergum","Aspro","Bayer Aspirin","Easprin","Empirin","Nu-seals","Rhodine","Rhonal","Solprin","Solprin acid","St. Joseph Aspirin for Adults","Tasprin"],"references":[{"resource":"DB00945","link":"http://www.drugbank.ca/drugs/DB00945","id":0,"type":null},{"resource":"CHEMBL25","link":"https://www.ebi.ac.uk/chembl/compound/inspect/CHEMBL25","id":0,"type":null}],"synonyms":["2-Acetoxybenzenecarboxylic acid","2-Acetoxybenzoic acid","Acetylsalicylate","Acetylsalicylsäure","acide 2-(acÊtyloxy)benzoïque","acide acÊtylsalicylique","åcido acetilsalicílico","Acidum acetylsalicylicum","ASA","Aspirin","Azetylsalizylsäure","o-acetoxybenzoic acid","O-acetylsalicylic acid","o-carboxyphenyl acetate","Polopiryna","salicylic acid acetate","8-hour bayer","ACETYLSALICYLIC ACID","ASPIRIN","Acetosalic Acid","Acetylsalicylic Acid","Bayer extra strength aspirin for migraine pain","Ecotrin","Equi-Prin","Measurin","Salicylic Acid Acetate"],"name":"ASPIRIN","description":"The prototypical analgesic used in the treatment of mild to moderate pain. It has anti-inflammatory and antipyretic properties and acts as an inhibitor of cyclooxygenase which results in the inhibition of the biosynthesis of prostaglandins. Acetylsalicylic acid also inhibits platelet aggregation and is used in the prevention of arterial and venous thrombosis. (From Martindale, The Extra Pharmacopoeia, 30th ed, p5) ","id":"ASPIRIN","targets":[],"bloodBrainBarrier":"YES"}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/miRnas.search/query=hsa-miR-125a-3p&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/miRnas.search/query=hsa-miR-125a-3p&token=MOCK_TOKEN_ID&
index ad629e97ae2807f2288612bc264e345d2f51a0f4..ec80d227350be5f2fafb8f20c49e99858423ba8e 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/miRnas.search/query=hsa-miR-125a-3p&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/miRnas.search/query=hsa-miR-125a-3p&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"name":"hsa-miR-125a-3p","id":"hsa-miR-125a-3p","targets":[{"targetElements":[],"references":[{"title":"microRNA-125a-3p reduces cell proliferation and migration by targeting Fyn.","authors":["Ninio-Many L"," Grossman H"," Shomron N"," Chuderland D"," Shalgi R."],"journal":"Journal of cell science","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23606749","id":"23606749","citationCount":6}],"name":"FYN","targetParticipants":[{"name":"FYN","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dFYN","idObject":0}]},{"targetElements":[],"references":[{"title":"MicroRNA-125a inhibits cell growth by targeting glypican-4.","authors":["Feng C"," Li J"," Ruan J"," Ding K."],"journal":"Glycoconjugate journal","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/22644326","id":"22644326","citationCount":4}],"name":"GPC4","targetParticipants":[{"name":"GPC4","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dGPC4","idObject":0}]},{"targetElements":[],"references":[{"title":"MiRNA-125a-3p is a negative regulator of the RhoA-actomyosin pathway in A549 cells.","authors":["Huang B"," Luo W"," Sun L"," Zhang Q"," Jiang L"," Chang J"," Qiu X"," Wang E."],"journal":"International journal of oncology","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23525486","id":"23525486","citationCount":4}],"name":"RHOA","targetParticipants":[{"name":"RHOA","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dRHOA","idObject":0}]}]}]
\ No newline at end of file
+[{"name":"hsa-miR-125a-3p","id":"hsa-miR-125a-3p","targets":[{"targetElements":[],"references":[{"resource":"23606749","link":"http://www.ncbi.nlm.nih.gov/pubmed/23606749","type":"PUBMED","article":{"title":"microRNA-125a-3p reduces cell proliferation and migration by targeting Fyn.","authors":["Ninio-Many L"," Grossman H"," Shomron N"," Chuderland D"," Shalgi R."],"journal":"Journal of cell science","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23606749","id":"23606749","citationCount":18,"stringAuthors":"Ninio-Many L,  Grossman H,  Shomron N,  Chuderland D,  Shalgi R."}}],"name":"FYN","targetParticipants":[{"resource":"FYN","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=FYN","id":0,"type":null}]},{"targetElements":[],"references":[{"resource":"22644326","link":"http://www.ncbi.nlm.nih.gov/pubmed/22644326","type":"PUBMED","article":{"title":"MicroRNA-125a inhibits cell growth by targeting glypican-4.","authors":["Feng C"," Li J"," Ruan J"," Ding K."],"journal":"Glycoconjugate journal","year":2012,"link":"http://www.ncbi.nlm.nih.gov/pubmed/22644326","id":"22644326","citationCount":6,"stringAuthors":"Feng C,  Li J,  Ruan J,  Ding K."}}],"name":"GPC4","targetParticipants":[{"resource":"GPC4","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=GPC4","id":0,"type":null}]},{"targetElements":[],"references":[{"resource":"23525486","link":"http://www.ncbi.nlm.nih.gov/pubmed/23525486","type":"PUBMED","article":{"title":"MiRNA-125a-3p is a negative regulator of the RhoA-actomyosin pathway in A549 cells.","authors":["Huang B"," Luo W"," Sun L"," Zhang Q"," Jiang L"," Chang J"," Qiu X"," Wang E."],"journal":"International journal of oncology","year":2013,"link":"http://www.ncbi.nlm.nih.gov/pubmed/23525486","id":"23525486","citationCount":8,"stringAuthors":"Huang B,  Luo W,  Sun L,  Zhang Q,  Jiang L,  Chang J,  Qiu X,  Wang E."}}],"name":"RHOA","targetParticipants":[{"resource":"RHOA","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match=RHOA","id":0,"type":null}]}]}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/columns=id,bounds,modelId&id=329163&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/columns=id,bounds,modelId&id=329163&token=MOCK_TOKEN_ID&
index fc8228b7dd7da0444ccb71253c5c7c64c495e6d7..de72271eb1788149857669e840f7c9cc6edec675 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/columns=id,bounds,modelId&id=329163&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/columns=id,bounds,modelId&id=329163&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"formerSymbols":[],"references":[{"name":"REACT_2390.1","type":"Reactome","link":"http://www.reactome.org/PathwayBrowser/#REACT_2390.1","idObject":860340}],"modelId":15781,"synonyms":[],"description":"","type":"Simple molecule","name":"NADH","bounds":{"x":1214.2682370820667,"y":128.5000000000009,"width":70.0,"height":25.0},"id":329163}]
\ No newline at end of file
+[{"modelId":15781,"bounds":{"x":1214.2682370820667,"width":70.0,"y":128.5000000000009,"height":25.0},"id":329163}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329156,329162,329174,329180&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329156,329162,329174,329180&token=MOCK_TOKEN_ID&
index 50f4f503470393fcc6a5d253f1a4a74882c1a85c..24b1353ccd14d2b126db10792b0705553eda3f26 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329156,329162,329174,329180&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329156,329162,329174,329180&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"formerSymbols":[],"references":[],"modelId":15781,"synonyms":[],"description":"","type":"Protein","name":"s22","bounds":{"x":918.0,"y":427.0,"width":80.0,"height":40.0},"id":329162},{"formerSymbols":[],"references":[],"modelId":15781,"synonyms":[],"description":"","type":"Protein","name":"s22","bounds":{"x":712.0,"y":384.0,"width":80.0,"height":40.0},"id":329174},{"formerSymbols":[],"references":[],"modelId":15781,"synonyms":[],"description":"","type":"Simple molecule","name":"GDP","bounds":{"x":959.0,"y":271.0,"width":70.0,"height":25.0},"id":329156},{"formerSymbols":[],"references":[],"modelId":15781,"synonyms":[],"description":"","type":"Simple molecule","name":"GTP","bounds":{"x":849.0,"y":309.0,"width":70.0,"height":25.0},"id":329180}]
\ No newline at end of file
+[{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Simple molecule","abbreviation":null,"compartmentId":null,"name":"GDP","bounds":{"x":959.0,"width":70.0,"y":271.0,"height":25.0},"formula":null,"id":329156,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]},{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Protein","abbreviation":null,"compartmentId":null,"name":"s22","bounds":{"x":918.0,"width":80.0,"y":427.0,"height":40.0},"formula":null,"id":329162,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]},{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Protein","abbreviation":null,"compartmentId":null,"name":"s22","bounds":{"x":712.0,"width":80.0,"y":384.0,"height":40.0},"formula":null,"id":329174,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]},{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Simple molecule","abbreviation":null,"compartmentId":null,"name":"GTP","bounds":{"x":849.0,"width":70.0,"y":309.0,"height":25.0},"formula":null,"id":329180,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329158&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329158&token=MOCK_TOKEN_ID&
index f8052adee70c8071684adfe91bd9808e9ca379a5..6ed6d2f32a3b601461d2f9af7f91421ad080f503 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329158&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329158&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"formerSymbols":[],"references":[],"modelId":15781,"synonyms":[],"description":"","type":"Complex","name":"s12","bounds":{"x":271.0,"y":207.0,"width":101.0,"height":164.0},"id":329158,"hierarchyVisibilityLevel":0}]
\ No newline at end of file
+[{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Complex","abbreviation":null,"compartmentId":null,"name":"s12","bounds":{"x":271.0,"width":101.0,"y":207.0,"height":164.0},"formula":null,"id":329158,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329158,329159,329169,329173,329175,329177&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329158,329159,329169,329173,329175,329177&token=MOCK_TOKEN_ID&
index a11f751dd6a24fb339da40da42324d6bc137d253..aa565854ac4b7a71b521f4787abd18c82eb4267c 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329158,329159,329169,329173,329175,329177&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329158,329159,329169,329173,329175,329177&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"formerSymbols":[],"references":[],"modelId":15781,"synonyms":[],"description":"","type":"Unknown","name":"s11","bounds":{"x":105.0,"y":203.5,"width":70.0,"height":25.0},"id":329169},{"formerSymbols":[],"references":[],"modelId":15781,"synonyms":[],"description":"description of S1\r\nthird line","type":"Protein","name":"s1","bounds":{"x":12.0,"y":6.0,"width":80.0,"height":40.0},"id":329173},{"formerSymbols":[],"references":[],"modelId":15781,"synonyms":[],"description":"","type":"Drug","name":"s10","bounds":{"x":0.0,"y":186.0,"width":80.0,"height":30.0},"id":329177},{"formerSymbols":[],"references":[],"modelId":15781,"synonyms":[],"description":"","type":"Protein","name":"s14","bounds":{"x":279.0,"y":233.0,"width":80.0,"height":40.0},"id":329159},{"formerSymbols":[],"references":[],"modelId":15781,"synonyms":[],"description":"","type":"Degraded","name":"s13","bounds":{"x":401.0,"y":235.0,"width":30.0,"height":30.0},"id":329175},{"formerSymbols":[],"references":[],"modelId":15781,"synonyms":[],"description":"","type":"Complex","name":"s12","bounds":{"x":271.0,"y":207.0,"width":101.0,"height":164.0},"id":329158}]
\ No newline at end of file
+[{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Drug","abbreviation":null,"compartmentId":null,"name":"s10","bounds":{"x":0.0,"width":80.0,"y":186.0,"height":30.0},"formula":null,"id":329177,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]},{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":329158,"type":"Protein","abbreviation":null,"compartmentId":null,"name":"s14","bounds":{"x":279.0,"width":80.0,"y":233.0,"height":40.0},"formula":null,"id":329159,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]},{"symbol":null,"formerSymbols":[],"notes":"description of S1\r\nthird line","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Protein","abbreviation":null,"compartmentId":null,"name":"s1","bounds":{"x":12.0,"width":80.0,"y":6.0,"height":40.0},"formula":null,"id":329173,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]},{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Complex","abbreviation":null,"compartmentId":null,"name":"s12","bounds":{"x":271.0,"width":101.0,"y":207.0,"height":164.0},"formula":null,"id":329158,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]},{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Unknown","abbreviation":null,"compartmentId":null,"name":"s11","bounds":{"x":105.0,"width":70.0,"y":203.5,"height":25.0},"formula":null,"id":329169,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]},{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Degraded","abbreviation":null,"compartmentId":null,"name":"s13","bounds":{"x":401.0,"width":30.0,"y":235.0,"height":30.0},"formula":null,"id":329175,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329158,329165,329172&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329158,329165,329172&token=MOCK_TOKEN_ID&
index f488c1020898f90a18f82a8af09e9cb2d6f276bd..06f1557443c137d36ec879bbcc1dd033ea5ffdb7 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329158,329165,329172&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329158,329165,329172&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"formerSymbols":[],"references":[],"modelId":15781,"synonyms":[],"description":"","type":"Phenotype","name":"s7","bounds":{"x":213.0,"y":128.0,"width":80.0,"height":30.0},"id":329172},{"formerSymbols":[],"references":[],"modelId":15781,"synonyms":[],"description":"","type":"Ion","name":"s8","bounds":{"x":358.5,"y":125.5,"width":25.0,"height":25.0},"id":329165},{"formerSymbols":[],"references":[],"modelId":15781,"synonyms":[],"description":"","type":"Complex","name":"s12","bounds":{"x":271.0,"y":207.0,"width":101.0,"height":164.0},"id":329158}]
\ No newline at end of file
+[{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Ion","abbreviation":null,"compartmentId":null,"name":"s8","bounds":{"x":358.5,"width":25.0,"y":125.5,"height":25.0},"formula":null,"id":329165,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]},{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Phenotype","abbreviation":null,"compartmentId":null,"name":"s7","bounds":{"x":213.0,"width":80.0,"y":128.0,"height":30.0},"formula":null,"id":329172,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]},{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Complex","abbreviation":null,"compartmentId":null,"name":"s12","bounds":{"x":271.0,"width":101.0,"y":207.0,"height":164.0},"formula":null,"id":329158,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329159&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329159&token=MOCK_TOKEN_ID&
index 00bc01751125c3503346c972d9c38ba51ca0b3dc..e981001d97388366c95b19c17176b24e83cbfb54 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329159&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329159&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"formerSymbols":[],"references":[],"modelId":15781,"synonyms":[],"description":"","complexId":329158,"type":"Protein","name":"s14","bounds":{"x":279.0,"y":233.0,"width":80.0,"height":40.0},"id":329159,"hierarchyVisibilityLevel":2}]
\ No newline at end of file
+[{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":329158,"type":"Protein","abbreviation":null,"compartmentId":null,"name":"s14","bounds":{"x":279.0,"width":80.0,"y":233.0,"height":40.0},"formula":null,"id":329159,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329163&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329163&token=MOCK_TOKEN_ID&
new file mode 100644
index 0000000000000000000000000000000000000000..6e943d3195b56d19aeac57816b280e1fb8ac92df
--- /dev/null
+++ b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329163&token=MOCK_TOKEN_ID&
@@ -0,0 +1 @@
+[{"symbol":null,"formerSymbols":[],"notes":"","references":[{"resource":"REACT_2390.1","link":"http://www.reactome.org/PathwayBrowser/#REACT_2390.1","id":860340,"type":"REACTOME"}],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Simple molecule","abbreviation":null,"compartmentId":null,"name":"NADH","bounds":{"x":1214.2682370820667,"width":70.0,"y":128.5000000000009,"height":25.0},"formula":null,"id":329163,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329166,329171&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329166,329171&token=MOCK_TOKEN_ID&
index 5ddb6b28802f7229e50cb9d48cb16fff84f68690..baaa9fa885d8712f6317f928d0e66bc4cfd7a8f5 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329166,329171&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329166,329171&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"formerSymbols":[],"references":[],"modelId":15781,"synonyms":[],"description":"","type":"Protein","name":"gfsdhj","bounds":{"x":160.0,"y":332.0,"width":119.0,"height":63.0},"id":329171},{"symbol":"CNC","formerSymbols":[],"references":[{"name":"REACT_20130","type":"Reactome","link":"http://www.reactome.org/PathwayBrowser/#REACT_20130","idObject":860342},{"name":"2141","type":"HGNC","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?hgnc_id\u003d2141","idObject":860343},{"name":"6546","type":"Kegg Genes","idObject":860344},{"name":"NP_001106272.1","type":"RefSeq","link":"http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?val\u003dNP_001106272.1","idObject":860345},{"name":"NP_001106271.1","type":"RefSeq","link":"http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?val\u003dNP_001106271.1","idObject":860346},{"name":"NP_001106273.1","type":"RefSeq","link":"http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?val\u003dNP_001106273.1","idObject":860347},{"name":"NP_001239553.1","type":"RefSeq","link":"http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?val\u003dNP_001239553.1","idObject":860348},{"name":"PA314","type":"PharmGKB Pathways","link":"http://www.pharmgkb.org/pathway/PA314","idObject":860349},{"name":"NP_066920.1","type":"RefSeq","link":"http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?val\u003dNP_066920.1","idObject":860350},{"name":"6546","type":"Entrez Gene","link":"http://www.ncbi.nlm.nih.gov/gene/6546","idObject":860351}],"modelId":15781,"synonyms":["CNC","NCX1"],"description":"ymbol: CNC\r\nghfjkghfdjkghkdf\r\nfdghjkfdhgjkdfgjhdf\r\njdsfkljsdklfjsdf\r\nsjdkfjsdklfjkl\r\ndsjfkjl\r\nsdfkkjfskldjfkls\r\n\nRecName: Full\u003dSodium/calcium exchanger 1; AltName: Full\u003dNa(+)/Ca(2+)-exchange protein 1; Flags: Precursor;","fullName":"Carney complex, multiple neoplasia and lentiginosis","type":"Protein","name":"CNC","bounds":{"x":11.0,"y":236.0,"width":118.0,"height":66.0},"id":329166}]
\ No newline at end of file
+[{"symbol":"CNC","formerSymbols":[],"notes":"ymbol: CNC\r\nghfjkghfdjkghkdf\r\nfdghjkfdhgjkdfgjhdf\r\njdsfkljsdklfjsdf\r\nsjdkfjsdklfjkl\r\ndsjfkjl\r\nsdfkkjfskldjfkls\r\n\nRecName: Full=Sodium/calcium exchanger 1; AltName: Full=Na(+)/Ca(2+)-exchange protein 1; Flags: Precursor;","references":[{"resource":"REACT_20130","link":"http://www.reactome.org/PathwayBrowser/#REACT_20130","id":860342,"type":"REACTOME"},{"resource":"2141","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?hgnc_id=2141","id":860343,"type":"HGNC"},{"resource":"6546","link":null,"id":860344,"type":"KEGG_GENES"},{"resource":"NP_001106272.1","link":"http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?val=NP_001106272.1","id":860345,"type":"REFSEQ"},{"resource":"NP_001106271.1","link":"http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?val=NP_001106271.1","id":860346,"type":"REFSEQ"},{"resource":"NP_001106273.1","link":"http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?val=NP_001106273.1","id":860347,"type":"REFSEQ"},{"resource":"NP_001239553.1","link":"http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?val=NP_001239553.1","id":860348,"type":"REFSEQ"},{"resource":"PA314","link":"http://www.pharmgkb.org/pathway/PA314","id":860349,"type":"PHARM"},{"resource":"NP_066920.1","link":"http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?val=NP_066920.1","id":860350,"type":"REFSEQ"},{"resource":"6546","link":"http://www.ncbi.nlm.nih.gov/gene/6546","id":860351,"type":"ENTREZ"}],"modelId":15781,"synonyms":["CNC","NCX1"],"fullName":"Carney complex, multiple neoplasia and lentiginosis","complexId":null,"type":"Protein","abbreviation":null,"compartmentId":null,"name":"CNC","bounds":{"x":11.0,"width":118.0,"y":236.0,"height":66.0},"formula":null,"id":329166,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]},{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Protein","abbreviation":null,"compartmentId":null,"name":"gfsdhj","bounds":{"x":160.0,"width":119.0,"y":332.0,"height":63.0},"formula":null,"id":329171,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329167,329168&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329167,329168&token=MOCK_TOKEN_ID&
index 6a34385266b4e90bbe039e939864d8ce41cf5f90..563076a98f3af06f9669d3fd4faec066514789a9 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329167,329168&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329167,329168&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Antisense RNA","abbreviation":null,"compartmentId":null,"name":"s6","bounds":{"x":101.0,"width":90.0,"y":129.5,"height":25.0},"formula":null,"id":329167,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]},{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"RNA","abbreviation":null,"compartmentId":null,"name":"s5","bounds":{"x":0.0,"width":90.0,"y":118.5,"height":25.0},"formula":null,"id":329168,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]}]
\ No newline at end of file
+[{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"RNA","abbreviation":null,"compartmentId":null,"name":"s5","bounds":{"x":0.0,"width":90.0,"y":118.5,"height":25.0},"formula":null,"id":329168,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]},{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Antisense RNA","abbreviation":null,"compartmentId":null,"name":"s6","bounds":{"x":101.0,"width":90.0,"y":129.5,"height":25.0},"formula":null,"id":329167,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329167,329172&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329167,329172&token=MOCK_TOKEN_ID&
index 4139066389f73ebd6b55ab6e2a59303090888751..d26187863655524649cf6e3b4d353bdb488f6d81 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329167,329172&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329167,329172&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Antisense RNA","abbreviation":null,"compartmentId":null,"name":"s6","bounds":{"x":101.0,"width":90.0,"y":129.5,"height":25.0},"formula":null,"id":329167,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]},{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Phenotype","abbreviation":null,"compartmentId":null,"name":"s7","bounds":{"x":213.0,"width":80.0,"y":128.0,"height":30.0},"formula":null,"id":329172,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]}]
\ No newline at end of file
+[{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Phenotype","abbreviation":null,"compartmentId":null,"name":"s7","bounds":{"x":213.0,"width":80.0,"y":128.0,"height":30.0},"formula":null,"id":329172,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]},{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Antisense RNA","abbreviation":null,"compartmentId":null,"name":"s6","bounds":{"x":101.0,"width":90.0,"y":129.5,"height":25.0},"formula":null,"id":329167,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329167,329173,329179&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329167,329173,329179&token=MOCK_TOKEN_ID&
index feefa867779eb787de7dc5f3684b545532769702..5650fa1c5f0897e8446fe25402fc0d2247123696 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329167,329173,329179&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329167,329173,329179&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Protein","abbreviation":null,"compartmentId":null,"name":"s2","bounds":{"x":165.0,"width":80.0,"y":43.0,"height":50.0},"formula":null,"id":329179,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]},{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Antisense RNA","abbreviation":null,"compartmentId":null,"name":"s6","bounds":{"x":101.0,"width":90.0,"y":129.5,"height":25.0},"formula":null,"id":329167,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]}]
\ No newline at end of file
+[{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Protein","abbreviation":null,"compartmentId":null,"name":"s2","bounds":{"x":165.0,"width":80.0,"y":43.0,"height":50.0},"formula":null,"id":329179,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]},{"symbol":null,"formerSymbols":[],"notes":"description of S1\r\nthird line","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Protein","abbreviation":null,"compartmentId":null,"name":"s1","bounds":{"x":12.0,"width":80.0,"y":6.0,"height":40.0},"formula":null,"id":329173,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]},{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Antisense RNA","abbreviation":null,"compartmentId":null,"name":"s6","bounds":{"x":101.0,"width":90.0,"y":129.5,"height":25.0},"formula":null,"id":329167,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329167,329179&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329167,329179&token=MOCK_TOKEN_ID&
index 2b555cf42bb19d4675ca1091285bbd7a17b9a300..feefa867779eb787de7dc5f3684b545532769702 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329167,329179&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329167,329179&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"formerSymbols":[],"references":[],"modelId":15781,"synonyms":[],"description":"","type":"Protein","name":"s2","bounds":{"x":165.0,"y":43.0,"width":80.0,"height":50.0},"id":329179},{"formerSymbols":[],"references":[],"modelId":15781,"synonyms":[],"description":"","type":"Antisense RNA","name":"s6","bounds":{"x":101.0,"y":129.5,"width":90.0,"height":25.0},"id":329167}]
\ No newline at end of file
+[{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Protein","abbreviation":null,"compartmentId":null,"name":"s2","bounds":{"x":165.0,"width":80.0,"y":43.0,"height":50.0},"formula":null,"id":329179,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]},{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Antisense RNA","abbreviation":null,"compartmentId":null,"name":"s6","bounds":{"x":101.0,"width":90.0,"y":129.5,"height":25.0},"formula":null,"id":329167,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329168&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329168&token=MOCK_TOKEN_ID&
index f85b05bb4bcd40a10176f6b6d8951176cc3f0f91..7485936df9a7439e7d250dac8cb37c45d27dc828 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329168&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329168&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"formerSymbols":[],"references":[],"modelId":15781,"synonyms":[],"description":"","type":"RNA","name":"s5","bounds":{"x":0.0,"y":118.5,"width":90.0,"height":25.0},"id":329168}]
\ No newline at end of file
+[{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"RNA","abbreviation":null,"compartmentId":null,"name":"s5","bounds":{"x":0.0,"width":90.0,"y":118.5,"height":25.0},"formula":null,"id":329168,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329168,329173&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329168,329173&token=MOCK_TOKEN_ID&
index 9ec60e55f4656b44780a4684a31b0bc91f5a3cb7..04ba8b7afdf8d0b8337c45fbdd3b673eef06856b 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329168,329173&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329168,329173&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"formerSymbols":[],"references":[],"modelId":15781,"synonyms":[],"description":"","type":"RNA","name":"s5","bounds":{"x":0.0,"y":118.5,"width":90.0,"height":25.0},"id":329168},{"formerSymbols":[],"references":[],"modelId":15781,"synonyms":[],"description":"description of S1\r\nthird line","type":"Protein","name":"s1","bounds":{"x":12.0,"y":6.0,"width":80.0,"height":40.0},"id":329173}]
\ No newline at end of file
+[{"symbol":null,"formerSymbols":[],"notes":"description of S1\r\nthird line","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Protein","abbreviation":null,"compartmentId":null,"name":"s1","bounds":{"x":12.0,"width":80.0,"y":6.0,"height":40.0},"formula":null,"id":329173,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]},{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"RNA","abbreviation":null,"compartmentId":null,"name":"s5","bounds":{"x":0.0,"width":90.0,"y":118.5,"height":25.0},"formula":null,"id":329168,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329168,329177&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329168,329177&token=MOCK_TOKEN_ID&
index 833d9c445d8850998691c33208f748369719e1a2..d0b8965c9aff331d66abd0211004908f89a7885d 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329168,329177&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329168,329177&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"formerSymbols":[],"references":[],"modelId":15781,"synonyms":[],"description":"","type":"Drug","name":"s10","bounds":{"x":0.0,"y":186.0,"width":80.0,"height":30.0},"id":329177},{"formerSymbols":[],"references":[],"modelId":15781,"synonyms":[],"description":"","type":"RNA","name":"s5","bounds":{"x":0.0,"y":118.5,"width":90.0,"height":25.0},"id":329168}]
\ No newline at end of file
+[{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Drug","abbreviation":null,"compartmentId":null,"name":"s10","bounds":{"x":0.0,"width":80.0,"y":186.0,"height":30.0},"formula":null,"id":329177,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]},{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"RNA","abbreviation":null,"compartmentId":null,"name":"s5","bounds":{"x":0.0,"width":90.0,"y":118.5,"height":25.0},"formula":null,"id":329168,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329171&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329171&token=MOCK_TOKEN_ID&
index bd70112c494f4b7662239086958ea9df6bfec095..a2da051655db9bac2a2a5829bd427eafbb73935e 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329171&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329171&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"formerSymbols":[],"references":[],"modelId":15781,"synonyms":[],"description":"","type":"Protein","name":"gfsdhj","bounds":{"x":160.0,"y":332.0,"width":119.0,"height":63.0},"id":329171,"hierarchyVisibilityLevel":0}]
\ No newline at end of file
+[{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Protein","abbreviation":null,"compartmentId":null,"name":"gfsdhj","bounds":{"x":160.0,"width":119.0,"y":332.0,"height":63.0},"formula":null,"id":329171,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329173&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329173&token=MOCK_TOKEN_ID&
index 1dd70f6d37d214f9b9579d9260f2fc07191f019c..54be14202e3f562ea09f4b8113b29c6c5c10f54a 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329173&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329173&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"formerSymbols":[],"references":[],"modelId":102,"synonyms":[],"description":"description of S1\r\nthird line","type":"Protein","name":"s1","bounds":{"x":12.0,"y":6.0,"width":80.0,"height":40.0},"id":329173}]
\ No newline at end of file
+[{"symbol":null,"formerSymbols":[],"notes":"description of S1\r\nthird line","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Protein","abbreviation":null,"compartmentId":null,"name":"s1","bounds":{"x":12.0,"width":80.0,"y":6.0,"height":40.0},"formula":null,"id":329173,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329177&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329177&token=MOCK_TOKEN_ID&
index cd4ce90074603eb3ab95cc6e7994ce184dd7b4fb..11fe9ab7c0b3ade9bf33f6320793b13d70b948b3 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329177&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/elements/id=329177&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"formerSymbols":[],"references":[],"modelId":15781,"synonyms":[],"description":"","type":"Drug","name":"s10","bounds":{"x":0.0,"y":186.0,"width":80.0,"height":30.0},"id":329177}]
\ No newline at end of file
+[{"symbol":null,"formerSymbols":[],"notes":"","references":[],"modelId":15781,"synonyms":[],"fullName":null,"complexId":null,"type":"Drug","abbreviation":null,"compartmentId":null,"name":"s10","bounds":{"x":0.0,"width":80.0,"y":186.0,"height":30.0},"formula":null,"id":329177,"linkedSubmodel":null,"hierarchyVisibilityLevel":[]}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/id=153508&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/id=153508&token=MOCK_TOKEN_ID&
index 3ecad6cdb4a30d6da367825e472b3ebf35454862..14acddb0d419b647c1b91b9bb52106dac54e409a 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/id=153508&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/id=153508&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"modelId":15781,"reactants":"329166","reactionId":"re21","id":153508,"type":"State transition","lines":[{"start":{"x":129.00000000000003,"y":269.9853478599471},"end":{"x":217.3857151822324,"y":271.4614610007049},"type":"START"},{"start":{"x":217.3857151822324,"y":271.4614610007049},"end":{"x":217.98919008325365,"y":297.73178548394236},"type":"MIDDLE"},{"start":{"x":218.17291548409574,"y":305.7296755167626},"end":{"x":218.77639038511697,"y":332.0},"type":"END"}],"modifiers":"","centerPoint":{"x":218.0810527836747,"y":301.7307305003525},"products":"329171"}]
\ No newline at end of file
+[{"notes":"notes for reaction","references":[{"resource":"123","link":"http://www.ncbi.nlm.nih.gov/pubmed/123","id":860355,"type":"PUBMED","article":{"title":"The importance of an innervated and intact antrum and pylorus in preventing postoperative duodenogastric reflux and gastritis.","authors":["Keighley MR"," Asquith P"," Edwards JA"," Alexander-Williams J."],"journal":"The British journal of surgery","year":1975,"link":"http://www.ncbi.nlm.nih.gov/pubmed/123","id":"123","citationCount":12,"stringAuthors":"Keighley MR,  Asquith P,  Edwards JA,  Alexander-Williams J."}}],"modelId":15781,"reactants":"329166","reactionId":"re21","id":153508,"type":"State transition","lines":[{"start":{"x":129.00000000000003,"y":269.9853478599471},"end":{"x":217.3857151822324,"y":271.4614610007049},"type":"START"},{"start":{"x":217.3857151822324,"y":271.4614610007049},"end":{"x":217.98919008325365,"y":297.73178548394236},"type":"MIDDLE"},{"start":{"x":218.17291548409574,"y":305.7296755167626},"end":{"x":218.77639038511697,"y":332.0},"type":"END"}],"modifiers":"","centerPoint":{"x":218.0810527836747,"y":301.7307305003525},"products":"329171","hierarchyVisibilityLevel":null}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/id=153510&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/id=153510&token=MOCK_TOKEN_ID&
index e7ac5892a98792a9c28c37ab5273a7c27c7422b2..d789fe7ea37ad42886c58a425735d9a09561d442 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/id=153510&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/id=153510&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"modelId":15781,"reactants":"329173","reactionId":"re5","id":153510,"type":"State transition","lines":[{"start":{"x":92.0,"y":36.98039215686274},"end":{"x":124.64269540833152,"y":45.94113207287532},"type":"START"},{"start":{"x":132.35730459166848,"y":48.05886792712468},"end":{"x":165.0,"y":57.01960784313726},"type":"END"},{"start":{"x":144.03021943732247,"y":129.5},"end":{"x":131.99804583067973,"y":53.145215648491444},"type":"MIDDLE"}],"modifiers":"329167","centerPoint":{"x":128.5,"y":47.0},"products":"329179"}]
\ No newline at end of file
+[{"notes":"","references":[],"modelId":15781,"reactants":"329173","reactionId":"re5","id":153510,"type":"State transition","lines":[{"start":{"x":92.0,"y":36.98039215686274},"end":{"x":124.64269540833152,"y":45.94113207287532},"type":"START"},{"start":{"x":132.35730459166848,"y":48.05886792712468},"end":{"x":165.0,"y":57.01960784313726},"type":"END"},{"start":{"x":144.03021943732247,"y":129.5},"end":{"x":131.99804583067973,"y":53.145215648491444},"type":"MIDDLE"}],"modifiers":"329167","centerPoint":{"x":128.5,"y":47.0},"products":"329179","hierarchyVisibilityLevel":null}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/id=153511&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/id=153511&token=MOCK_TOKEN_ID&
index 1aa69bc2e9317835c7bbb24b12294ec79c89f942..97f1ea5f9f4f1b5f2b7a99104aeff5b9c47ec7b5 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/id=153511&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/id=153511&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"modelId":102,"reactants":"329168","reactionId":"re2","id":153511,"type":"State transition","lines":[{"start":{"x":45.833333333333336,"y":118.49999999999999},"end":{"x":47.983923957904906,"y":86.24114063142645},"type":"START"},{"start":{"x":48.516076042095094,"y":78.25885936857357},"end":{"x":50.666666666666664,"y":46.0},"type":"END"}],"modifiers":"","centerPoint":{"x":48.25,"y":82.25},"products":"329173"}]
\ No newline at end of file
+[{"notes":"","references":[],"modelId":15781,"reactants":"329168","reactionId":"re2","id":153511,"type":"State transition","lines":[{"start":{"x":45.833333333333336,"y":118.49999999999999},"end":{"x":47.983923957904906,"y":86.24114063142645},"type":"START"},{"start":{"x":48.516076042095094,"y":78.25885936857357},"end":{"x":50.666666666666664,"y":46.0},"type":"END"}],"modifiers":"","centerPoint":{"x":48.25,"y":82.25},"products":"329173","hierarchyVisibilityLevel":null}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/id=153515&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/id=153515&token=MOCK_TOKEN_ID&
index 35ab17dc8b9c1e9839b7f6040623a9b0120c651c..4b8d874aac6d56fae2b360e56ad6da8d4ecbe3ad 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/id=153515&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/id=153515&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"modelId":15781,"reactants":"329174,329180","reactionId":"re26","id":153515,"type":"State transition","lines":[{"start":{"x":792.0,"y":404.0},"end":{"x":868.3333333333338,"y":377.9999999999997},"type":"START"},{"start":{"x":868.3333333333338,"y":377.9999999999997},"end":{"x":893.6666666666671,"y":378.00000000000017},"type":"MIDDLE"},{"start":{"x":884.0,"y":334.0},"end":{"x":893.6666666666671,"y":378.00000000000017},"type":"START"},{"start":{"x":931.666666666667,"y":378.0000000000009},"end":{"x":918.0,"y":447.0},"type":"END"},{"start":{"x":906.3333333333337,"y":378.00000000000045},"end":{"x":931.666666666667,"y":378.0000000000009},"type":"MIDDLE"},{"start":{"x":906.3333333333337,"y":378.00000000000045},"end":{"x":994.0,"y":296.0},"type":"END"},{"start":{"x":893.6666666666671,"y":378.00000000000017},"end":{"x":896.0000000000005,"y":378.0000000000003},"type":"MIDDLE"},{"start":{"x":906.3333333333337,"y":378.00000000000045},"end":{"x":904.0000000000005,"y":378.0000000000004},"type":"MIDDLE"}],"modifiers":"","centerPoint":{"x":900.0000000000005,"y":378.00000000000034},"products":"329162,329156"}]
\ No newline at end of file
+[{"notes":"","references":[],"modelId":15781,"reactants":"329177","reactionId":"re1","id":153519,"type":"State transition","lines":[{"start":{"x":41.07142857142857,"y":186.0},"end":{"x":42.30429751433407,"y":168.73983479932295},"type":"START"},{"start":{"x":42.87427391423735,"y":160.76016520067705},"end":{"x":44.107142857142854,"y":143.5},"type":"END"}],"modifiers":"","centerPoint":{"x":42.58928571428571,"y":164.75},"products":"329168","hierarchyVisibilityLevel":null}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/id=153519&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/id=153519&token=MOCK_TOKEN_ID&
index 94a7e358a00236f95387822fb427caa0f85aefe7..4b8d874aac6d56fae2b360e56ad6da8d4ecbe3ad 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/id=153519&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/id=153519&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"modelId":15781,"reactants":"329177","reactionId":"re1","id":153519,"type":"State transition","lines":[{"start":{"x":41.07142857142857,"y":186.0},"end":{"x":42.30429751433407,"y":168.73983479932295},"type":"START"},{"start":{"x":42.87427391423735,"y":160.76016520067705},"end":{"x":44.107142857142854,"y":143.5},"type":"END"}],"modifiers":"","centerPoint":{"x":42.58928571428571,"y":164.75},"products":"329168"}]
\ No newline at end of file
+[{"notes":"","references":[],"modelId":15781,"reactants":"329177","reactionId":"re1","id":153519,"type":"State transition","lines":[{"start":{"x":41.07142857142857,"y":186.0},"end":{"x":42.30429751433407,"y":168.73983479932295},"type":"START"},{"start":{"x":42.87427391423735,"y":160.76016520067705},"end":{"x":44.107142857142854,"y":143.5},"type":"END"}],"modifiers":"","centerPoint":{"x":42.58928571428571,"y":164.75},"products":"329168","hierarchyVisibilityLevel":null}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/id=153521&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/id=153521&token=MOCK_TOKEN_ID&
index c468b910491bf84f51b27bf292d05faf2747b832..877057aebae57112a2f074b6b56270a62023fe10 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/id=153521&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/id=153521&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"modelId":15781,"reactants":"329158","reactionId":"re23","id":153521,"type":"Dissociation","lines":[{"start":{"x":371.99999999999994,"y":315.10161915826575},"end":{"x":411.64153465957406,"y":335.590891248036},"type":"START"},{"start":{"x":508.05348418531685,"y":279.95891320505365},"end":{"x":379.6820939222325,"y":146.9928441065957},"type":"END"},{"start":{"x":543.7499999999999,"y":362.874999999999},"end":{"x":508.05348418531685,"y":279.95891320505365},"type":"MIDDLE"},{"start":{"x":449.8434737629195,"y":307.88463901503604},"end":{"x":270.9073813308621,"y":158.0},"type":"END"},{"start":{"x":543.7499999999999,"y":362.874999999999},"end":{"x":546.6153123135401,"y":307.94923690478544},"type":"MIDDLE"},{"start":{"x":546.6153123135401,"y":307.94923690478544},"end":{"x":449.8434737629195,"y":307.88463901503604},"type":"MIDDLE"},{"start":{"x":543.7499999999999,"y":362.874999999999},"end":{"x":500.90979517443395,"y":356.00742559541567},"type":"MIDDLE"},{"start":{"x":500.90979517443395,"y":356.00742559541567},"end":{"x":458.3899053124841,"y":359.75342920945576},"type":"MIDDLE"},{"start":{"x":458.3899053124841,"y":359.75342920945576},"end":{"x":418.7483706529099,"y":339.2641571196856},"type":"MIDDLE"}],"modifiers":"","centerPoint":{"x":415.194952656242,"y":337.4275241838608},"products":"329165,329172","hierarchyVisibilityLevel":0}]
\ No newline at end of file
+[{"notes":"","references":[],"modelId":15781,"reactants":"329158","reactionId":"re23","id":153521,"type":"Dissociation","lines":[{"start":{"x":371.99999999999994,"y":315.10161915826575},"end":{"x":411.64153465957406,"y":335.590891248036},"type":"START"},{"start":{"x":508.05348418531685,"y":279.95891320505365},"end":{"x":379.6820939222325,"y":146.9928441065957},"type":"END"},{"start":{"x":543.7499999999999,"y":362.874999999999},"end":{"x":508.05348418531685,"y":279.95891320505365},"type":"MIDDLE"},{"start":{"x":449.8434737629195,"y":307.88463901503604},"end":{"x":270.9073813308621,"y":158.0},"type":"END"},{"start":{"x":543.7499999999999,"y":362.874999999999},"end":{"x":546.6153123135401,"y":307.94923690478544},"type":"MIDDLE"},{"start":{"x":546.6153123135401,"y":307.94923690478544},"end":{"x":449.8434737629195,"y":307.88463901503604},"type":"MIDDLE"},{"start":{"x":543.7499999999999,"y":362.874999999999},"end":{"x":500.90979517443395,"y":356.00742559541567},"type":"MIDDLE"},{"start":{"x":500.90979517443395,"y":356.00742559541567},"end":{"x":458.3899053124841,"y":359.75342920945576},"type":"MIDDLE"},{"start":{"x":458.3899053124841,"y":359.75342920945576},"end":{"x":418.7483706529099,"y":339.2641571196856},"type":"MIDDLE"}],"modifiers":"","centerPoint":{"x":415.194952656242,"y":337.4275241838608},"products":"329165,329172","hierarchyVisibilityLevel":null}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/participantId=329167&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/participantId=329167&token=MOCK_TOKEN_ID&
index c83882f5a9cf78e97016eacefb773c7aea70e7dc..9326fa24d3f68f58198cc39f1c8a5e5f2e43c354 100644
--- a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/participantId=329167&token=MOCK_TOKEN_ID&
+++ b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities/reactions/participantId=329167&token=MOCK_TOKEN_ID&
@@ -1 +1 @@
-[{"modelId":15781,"reactants":"329167","reactionId":"re3","id":153504,"type":"State transition","lines":[{"start":{"x":155.9662162162162,"y":129.5},"end":{"x":169.67962640764847,"y":112.300129590407},"type":"START"},{"start":{"x":174.6668714987086,"y":106.04494083212823},"end":{"x":188.38028169014086,"y":88.84507042253522},"type":"END"}],"modifiers":"","centerPoint":{"x":172.17324895317853,"y":109.17253521126761},"products":"329179","hierarchyVisibilityLevel":0},{"modelId":15781,"reactants":"329173","reactionId":"re5","id":153510,"type":"State transition","lines":[{"start":{"x":92.0,"y":36.98039215686274},"end":{"x":124.64269540833152,"y":45.94113207287532},"type":"START"},{"start":{"x":132.35730459166848,"y":48.05886792712468},"end":{"x":165.0,"y":57.01960784313726},"type":"END"},{"start":{"x":144.03021943732247,"y":129.5},"end":{"x":131.99804583067973,"y":53.145215648491444},"type":"MIDDLE"}],"modifiers":"329167","centerPoint":{"x":128.5,"y":47.0},"products":"329179","hierarchyVisibilityLevel":0},{"modelId":15781,"reactants":"329167","reactionId":"re10","id":153499,"type":"State transition","lines":[{"start":{"x":180.0362865221489,"y":142.31809613572102},"end":{"x":192.68309645382215,"y":142.43629062106376},"type":"START"},{"start":{"x":200.68274710121602,"y":142.5110537112263},"end":{"x":213.32955703288923,"y":142.62924819656908},"type":"END"}],"modifiers":"","centerPoint":{"x":196.68292177751908,"y":142.47367216614504},"products":"329172","hierarchyVisibilityLevel":0},{"modelId":15781,"reactants":"329169","reactionId":"re8","id":153518,"type":"State transition","lines":[{"start":{"x":141.01308884552796,"y":203.5052375718217},"end":{"x":142.676524190943,"y":182.98953497836953},"type":"START"},{"start":{"x":143.32305114107143,"y":175.01570259345215},"end":{"x":144.98648648648648,"y":154.5},"type":"END"}],"modifiers":"","centerPoint":{"x":142.99978766600722,"y":179.00261878591084},"products":"329167","hierarchyVisibilityLevel":0},{"modelId":15781,"reactants":"329168","reactionId":"re4","id":153512,"type":"State transition","lines":[{"start":{"x":75.73715058611361,"y":134.3476104598738},"end":{"x":88.18325303297577,"y":135.7031265679479},"type":"START"},{"start":{"x":96.13622466620043,"y":136.56929179532878},"end":{"x":108.58232711306259,"y":137.92480790340286},"type":"END"}],"modifiers":"","centerPoint":{"x":92.15973884958811,"y":136.13620918163832},"products":"329167","hierarchyVisibilityLevel":0}]
\ No newline at end of file
+[{"notes":"","references":[],"modelId":15781,"reactants":"329168","reactionId":"re4","id":153512,"type":"State transition","lines":[{"start":{"x":75.73715058611361,"y":134.3476104598738},"end":{"x":88.18325303297577,"y":135.7031265679479},"type":"START"},{"start":{"x":96.13622466620043,"y":136.56929179532878},"end":{"x":108.58232711306259,"y":137.92480790340286},"type":"END"}],"modifiers":"","centerPoint":{"x":92.15973884958811,"y":136.13620918163832},"products":"329167","hierarchyVisibilityLevel":null},{"notes":"","references":[],"modelId":15781,"reactants":"329167","reactionId":"re10","id":153499,"type":"State transition","lines":[{"start":{"x":180.0362865221489,"y":142.31809613572102},"end":{"x":192.68309645382215,"y":142.43629062106376},"type":"START"},{"start":{"x":200.68274710121602,"y":142.5110537112263},"end":{"x":213.32955703288923,"y":142.62924819656908},"type":"END"}],"modifiers":"","centerPoint":{"x":196.68292177751908,"y":142.47367216614504},"products":"329172","hierarchyVisibilityLevel":null},{"notes":"","references":[],"modelId":15781,"reactants":"329167","reactionId":"re3","id":153504,"type":"State transition","lines":[{"start":{"x":155.9662162162162,"y":129.5},"end":{"x":169.67962640764847,"y":112.300129590407},"type":"START"},{"start":{"x":174.6668714987086,"y":106.04494083212823},"end":{"x":188.38028169014086,"y":88.84507042253522},"type":"END"}],"modifiers":"","centerPoint":{"x":172.17324895317853,"y":109.17253521126761},"products":"329179","hierarchyVisibilityLevel":null},{"notes":"","references":[],"modelId":15781,"reactants":"329173","reactionId":"re5","id":153510,"type":"State transition","lines":[{"start":{"x":92.0,"y":36.98039215686274},"end":{"x":124.64269540833152,"y":45.94113207287532},"type":"START"},{"start":{"x":132.35730459166848,"y":48.05886792712468},"end":{"x":165.0,"y":57.01960784313726},"type":"END"},{"start":{"x":144.03021943732247,"y":129.5},"end":{"x":131.99804583067973,"y":53.145215648491444},"type":"MIDDLE"}],"modifiers":"329167","centerPoint":{"x":128.5,"y":47.0},"products":"329179","hierarchyVisibilityLevel":null},{"notes":"","references":[],"modelId":15781,"reactants":"329169","reactionId":"re8","id":153518,"type":"State transition","lines":[{"start":{"x":141.01308884552796,"y":203.5052375718217},"end":{"x":142.676524190943,"y":182.98953497836953},"type":"START"},{"start":{"x":143.32305114107143,"y":175.01570259345215},"end":{"x":144.98648648648648,"y":154.5},"type":"END"}],"modifiers":"","centerPoint":{"x":142.99978766600722,"y":179.00261878591084},"products":"329167","hierarchyVisibilityLevel":null}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/reaction.json b/frontend-js/testFiles/reaction.json
deleted file mode 100644
index d87ae1c97ee466e0c42ec906a5afbc404b3869a7..0000000000000000000000000000000000000000
--- a/frontend-js/testFiles/reaction.json
+++ /dev/null
@@ -1,44 +0,0 @@
- {
-  "modelId" : 15781,
-  "reactants" : "329166",
-  "reactionId" : "re21",
-  "id" : 153508,
-  "type" : "State transition",
-  "lines" : [ {
-    "start" : {
-      "x" : 129.00000000000003,
-      "y" : 269.9853478599471
-    },
-    "end" : {
-      "x" : 217.3857151822324,
-      "y" : 271.4614610007049
-    },
-    "type" : "START"
-  }, {
-    "start" : {
-      "x" : 217.3857151822324,
-      "y" : 271.4614610007049
-    },
-    "end" : {
-      "x" : 217.98919008325365,
-      "y" : 297.73178548394236
-    },
-    "type" : "MIDDLE"
-  }, {
-    "start" : {
-      "x" : 218.17291548409574,
-      "y" : 305.7296755167626
-    },
-    "end" : {
-      "x" : 218.77639038511697,
-      "y" : 332.0
-    },
-    "type" : "END"
-  } ],
-  "modifiers" : "",
-  "centerPoint" : {
-    "x" : 218.0810527836747,
-    "y" : 301.7307305003525
-  },
-  "products" : "329171"
-} 
\ No newline at end of file
diff --git a/frontend-js/testFiles/target.json b/frontend-js/testFiles/target.json
deleted file mode 100644
index 837314376b00be4b31c1f3e79253ae5225078bdf..0000000000000000000000000000000000000000
--- a/frontend-js/testFiles/target.json
+++ /dev/null
@@ -1 +0,0 @@
-{"targetElements":[{"modelId":15781,"id":329170,"type":"ALIAS"}],"references":[{"title":"How many drug targets are there?","authors":["Overington JP"," Al-Lazikani B"," Hopkins AL."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17139284","id":"17139284","citationCount":714},{"title":"Drugs, their targets and the nature and number of drug targets.","authors":["Imming P"," Sinning C"," Meyer A."],"journal":"Nature reviews. Drug discovery","year":2006,"link":"http://www.ncbi.nlm.nih.gov/pubmed/17016423","id":"17016423","citationCount":131},{"title":"Activities of NAD-specific and NADP-specific isocitrate dehydrogenases in rat-liver mitochondria. Studies with D-threo-alpha-methylisocitrate.","authors":["Smith CM"," Plaut GW."],"journal":"European journal of biochemistry / FEBS","year":1979,"link":"http://www.ncbi.nlm.nih.gov/pubmed/38961","id":"38961","citationCount":6},{"title":"A chemiluminescence-flow injection analysis of serum 3-hydroxybutyrate using a bioreactor consisting of 3-hydroxybutyrate dehydrogenase and NADH oxidase.","authors":["Tabata M"," Totani M."],"journal":"Analytical biochemistry","year":1995,"link":"http://www.ncbi.nlm.nih.gov/pubmed/8533882","id":"8533882","citationCount":5},{"title":"Coenzyme binding by 3-hydroxybutyrate dehydrogenase, a lipid-requiring enzyme: lecithin acts as an allosteric modulator to enhance the affinity for coenzyme.","authors":["Rudy B"," Dubois H"," Mink R"," Trommer WE"," McIntyre JO"," Fleischer S."],"journal":"Biochemistry","year":1989,"link":"http://www.ncbi.nlm.nih.gov/pubmed/2550053","id":"2550053","citationCount":3}],"name":"D-beta-hydroxybutyrate dehydrogenase, mitochondrial","targetParticipants":[{"annotation":{"name":"BDH1","type":"HGNC Symbol","link":"http://www.genenames.org/cgi-bin/gene_symbol_report?match\u003dBDH1","idObject":0},"selectable":true,"selected":false,"visible":false}]}
\ No newline at end of file