This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
String textString="GG";//two glycines | |
BioPolymer peptide = ProteinBuilderTool.createProtein(textString); | |
//Need to get rid of BioPolymer class since there is a bug in its clone implementation | |
Molecule mpeptide = new Molecule(peptide); | |
DescriptorEngine engine = new DescriptorEngine(DescriptorEngine.MOLECULAR); | |
engine.process(mpeptide); |
The complete code with imports and outputting the results is shown below:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.IOException; | |
import org.openscience.cdk.BioPolymer; | |
import org.openscience.cdk.Molecule; | |
import org.openscience.cdk.exception.CDKException; | |
import org.openscience.cdk.qsar.DescriptorEngine; | |
import org.openscience.cdk.qsar.DescriptorSpecification; | |
import org.openscience.cdk.qsar.DescriptorValue; | |
import org.openscience.cdk.smiles.SmilesGenerator; | |
import org.openscience.cdk.tools.ProteinBuilderTool; | |
public class PepQSAR { | |
public static void main(String[] args) throws | |
CloneNotSupportedException, CDKException, IOException { | |
String textString="GG"; | |
BioPolymer peptide = ProteinBuilderTool.createProtein(textString); | |
//Need to get rid of BioPolymer class since there is a bug in its clone | |
Molecule mpeptide = new Molecule(peptide); | |
DescriptorEngine engine = new DescriptorEngine(DescriptorEngine.MOLECULAR); | |
engine.process(mpeptide); | |
for(DescriptorSpecification sp : engine.getDescriptorSpecifications()) { | |
int rcount = mpeptide.getProperty(sp) == null ? | |
0 : | |
((DescriptorValue) (mpeptide.getProperty(sp))).getValue().length(); | |
if(rcount > 0) { | |
String[] results = | |
((DescriptorValue) (mpeptide.getProperty(sp))).getValue().toString().split(",", rcount); | |
for(int i = 0; i < rcount; i++) { | |
System.out.println(sp.getImplementationTitle() + i + " : " + results[i]); | |
} | |
} | |
} | |
} |
No comments:
Post a Comment