Skip to content

Commit

Permalink
Update weighted PPPoints for Flexophore
Browse files Browse the repository at this point in the history
  • Loading branch information
korffmo committed Jul 16, 2024
1 parent 7163b49 commit bbc4b2d
Show file tree
Hide file tree
Showing 11 changed files with 126 additions and 218 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,13 @@ public class ConstantsFlexophore {


public static final String TAG_FLEXOPHORE_OBJECT = "FlexDecoded";



public static final int LABEL_LOW = 0;
public static final int LABEL_NORMAL = 1;
public static final int LABEL_MANDATORY = 2;
public static final double VAL_WEIGHT_LOW = 0.5;
public static final double VAL_WEIGHT_NORMAL = 1;
public static final double VAL_WEIGHT_MANDATORY = 2;
}
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ public interface IMolDistHist extends ICompleteGraph {

byte [] getDistHist(int indexAt1, int indexAt2, byte[] arr);

boolean isInevitablePharmacophorePoint(int indexNode);
boolean isMandatoryPharmacophorePoint(int indexNode);

double getWeightPharmacophorePoint(int indexNode);

int getNumInevitablePharmacophorePoints();
int getNumMandatoryPharmacophorePoints();


}
Original file line number Diff line number Diff line change
Expand Up @@ -452,13 +452,13 @@ public int getSizeBytes(){
* Only for interface compliance needed.
*/
@Override
public int getNumInevitablePharmacophorePoints() {
public int getNumMandatoryPharmacophorePoints() {
// TODO Auto-generated method stub
return 0;
}

@Override
public boolean isInevitablePharmacophorePoint(int indexNode) {
public boolean isMandatoryPharmacophorePoint(int indexNode) {
return false;
}
@Override
Expand Down
Loading

0 comments on commit bbc4b2d

Please sign in to comment.