All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.actelion.research.chem.chemicalspaces.ptree.synthon.PharmTreeSynthonLibrary Maven / Gradle / Ivy

There is a newer version: 2024.11.2
Show newest version
package com.actelion.research.chem.chemicalspaces.ptree.synthon;

import java.util.ArrayList;
import java.util.List;

import com.actelion.research.chem.StereoMolecule;
import com.actelion.research.chem.chemicalspaces.ptree.PharmTreeSynthonReactionHelper;


public class PharmTreeSynthonLibrary {
	
	private List> synthons;
	private PharmTreeSynthonReactionHelper rxnHelper;
	private String reactionID;
	
	public PharmTreeSynthonLibrary(List> synthons) {
		this.synthons = synthons;
		rxnHelper = new PharmTreeSynthonReactionHelper(getGenericReactants());

	}

	public List> getSynthons() {
		return synthons;
	}

	public PharmTreeSynthonReactionHelper getReactionHelper() {
		return rxnHelper;
	}

	public void setReactionHelper(PharmTreeSynthonReactionHelper reactor) {
		this.rxnHelper = reactor;
	}
	
	public List getGenericReactants() {
		List genericReactants = new ArrayList<>();
		for(List synthonList : synthons) {


			StereoMolecule minimalSynthon = synthonList.get(0).createMinimalSynthon();

			try {
				genericReactants.add(minimalSynthon);
			} catch (Exception e) {
				System.err.println(minimalSynthon.getIDCode());
				e.printStackTrace();

			}
		}
		return genericReactants;
	}

	public String getReactionID() {
		return reactionID;
	}

	public void setReactionID(String reactionID) {
		this.reactionID = reactionID;
	}
	
	
	
	

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy