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

org.biojava.nbio.structure.domain.pdp.PDPDistanceMatrix Maven / Gradle / Ivy

There is a newer version: 7.2.2
Show newest version
/*
 *                    BioJava development code
 *
 * This code may be freely distributed and modified under the
 * terms of the GNU Lesser General Public Licence.  This should
 * be distributed with the code.  If you do not have a copy,
 * see:
 *
 *      http://www.gnu.org/copyleft/lesser.html
 *
 * Copyright for this code is held jointly by the individual
 * authors.  These should be listed in @author doc comments.
 *
 * For more information on the BioJava project and its aims,
 * or to join the biojava-l mailing list, visit the home page
 * at:
 *
 *      http://www.biojava.org/
 *
 */
package org.biojava.nbio.structure.domain.pdp;

public class PDPDistanceMatrix {
	int[][] dist;
	int nclose;
	int[] iclose ;
	int[] jclose ;

	public PDPDistanceMatrix(){

	}

	public int[][] getDist() {
		return dist;
	}

	public void setDist(int[][] dist) {
		this.dist = dist;
	}

	public int getNclose() {
		return nclose;
	}

	public void setNclose(int nclose) {
		this.nclose = nclose;
	}

	public int[] getIclose() {
		return iclose;
	}

	public void setIclose(int[] iclose) {
		this.iclose = iclose;
	}

	public int[] getJclose() {
		return jclose;
	}

	public void setJclose(int[] jclose) {
		this.jclose = jclose;
	}




}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy