Skip to content

Commit

Permalink
add DrugScoreCalculator
Browse files Browse the repository at this point in the history
  • Loading branch information
targos committed Apr 14, 2016
1 parent ed9559c commit 4a75d56
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,12 @@ Returns detailed information about the previous drug likeness assessment.

---------------------------------------

## DrugScoreCalculator

### DrugScoreCalculator.calculate(cLogP, solubility, molWeight, drugLikeness, toxicityRisks)

---------------------------------------

## Util

### Util.getHoseCodesFromDiastereotopicID(id, options)
Expand Down
5 changes: 5 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
4.2.0 / 2016-04-14
==================

* add DrugScoreCalculator

4.1.0 / 2016-03-17
==================

Expand Down
11 changes: 11 additions & 0 deletions src/com/actelion/research/gwt/core/JSDrugScoreCalculator.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package com.actelion.research.gwt.core;

import com.actelion.research.chem.prediction.DrugScoreCalculator;
import jsinterop.annotations.*;

@JsType(name = "DrugScoreCalculator")
public class JSDrugScoreCalculator {
public static double calculate(double mCLogP, double mSolubility, double mMolweight, double mDruglikeness, int[] toxRisks) {
return DrugScoreCalculator.calculate(mCLogP, mSolubility, mMolweight, mDruglikeness, toxRisks);
}
}

0 comments on commit 4a75d56

Please sign in to comment.