Skip to content

Commit

Permalink
additional update for CDK 1.5.x
Browse files Browse the repository at this point in the history
  • Loading branch information
Valentin Georgiev committed Oct 1, 2013
1 parent fe4271d commit ca72a34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion plugins/net.bioclipse.ds.libsvm.tests/META-INF/MANIFEST.MF
Expand Up @@ -17,7 +17,6 @@ Require-Bundle: net.bioclipse.ds.libsvm,
org.openscience.cdk.interfaces,
org.openscience.cdk.standard,
org.openscience.cdk.io,
org.openscience.cdk.nonotify,
net.bioclipse.ds.common,
net.bioclipse.cdk.ui.sdfeditor,
org.junit4,
Expand Down
Expand Up @@ -4,7 +4,6 @@
import java.util.List;

import junit.framework.Assert;

import net.bioclipse.cdk.domain.CDKMolecule;
import net.bioclipse.cdk.domain.ICDKMolecule;
import net.bioclipse.core.business.BioclipseException;
Expand All @@ -13,7 +12,7 @@
import net.bioclipse.ds.model.DSException;

import org.junit.Test;
import org.openscience.cdk.Molecule;
import org.openscience.cdk.interfaces.IAtomContainer;
import org.openscience.cdk.templates.MoleculeFactory;

public class TestSignLibsvm {
Expand All @@ -31,7 +30,7 @@ public void TestReadModel() throws IOException, DSException, BioclipseException{
Assert.assertEquals(23226,model.getModelSignatures().size());
Assert.assertNotNull(model.getSvmModel());

Molecule mol = MoleculeFactory.makeBenzene();
IAtomContainer mol = MoleculeFactory.makeBenzene();
ICDKMolecule cdkmol = new CDKMolecule(mol);

List<String> molsigns = SignLibsvmUtils.generateSignatures(cdkmol,0,3);
Expand Down

0 comments on commit ca72a34

Please sign in to comment.