Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Do not use TargetType for now.
  • Loading branch information
olas committed Jul 11, 2012
1 parent 71564d2 commit 9899082
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -68,7 +68,7 @@ public static List<ChemblInteraction> lookupCSID(Integer csid) throws BioclipseE
String value = res.getColumn("val").get(i);
String unit = res.getColumn("units").get(i);
String inttype = res.getColumn("interactionType").get(i);
String targetType = res.getColumn("targetType").get(i);
// String targetType = res.getColumn("targetType").get(i);
String title = res.getColumn("title").get(i);
String interactionType = res.getColumn("interactionType").get(i);
String relation = res.getColumn("relation").get(i);
Expand All @@ -83,7 +83,7 @@ public static List<ChemblInteraction> lookupCSID(Integer csid) throws BioclipseE

interaction.setTitle(title);
interaction.setRelation(relation);
interaction.setTargetType(targetType);
// interaction.setTargetType(targetType);
interaction.setInteractionType(interactionType);
interaction.setDescription(description);

Expand Down

0 comments on commit 9899082

Please sign in to comment.