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

org.biojava.nbio.aaproperties.xml.AminoAcidComposition Maven / Gradle / Ivy

The 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.aaproperties.xml;

import jakarta.xml.bind.annotation.*;
import java.util.List;

@XmlRootElement(name = "compoundcomposition", namespace ="http://biojava.org")
@XmlAccessorType(XmlAccessType.NONE)
public class AminoAcidComposition {
	/**
	 * Amino acid symbol - single character
	 */
	@XmlAttribute(name = "symbol", required = true)
	private String symbol;
	/**
	 * Amino acid short name - three characters
	 */
	@XmlAttribute(name = "shortname")
	private String shortName;
	/**
	 * Amino acid full name
	 */
	@XmlAttribute(name = "name")
	private String name;
	/**
	 * Amino acid mass based on MOD ID
	 */
	@XmlAttribute(name = "id")
	String id;
	/**
	 * Stores the name of the element and the amount this amino acid contains
	 */
	@XmlElement(name = "element")
	private List elementList;
	/**
	 * Stores the name of the isotope and the amount this amino acid contains
	 */
	@XmlElement(name = "isotope", required = false)
	private List isotopeList;

	public AminoAcidComposition(){}

	public AminoAcidComposition(String symbol, String shortName, String name, List elementList,
			List isotopeList){
		if(symbol.length() != 1){
			throw new Error("Symbol attribute must be of length 1.");
		}
		this.symbol = symbol.toUpperCase();
		this.shortName = shortName;
		this.name = name;
		this.elementList = elementList;
		this.isotopeList = isotopeList;
	}

	@Override
	public String toString(){
		return symbol + ", " + shortName + ", " + name;
	}

	public String getSymbol() {
		return symbol;
	}

	public void setSymbol(String symbol) {
		this.symbol = symbol;
	}

	public void setShortName(String shortName) {
		this.shortName = shortName;
	}

	public String getShorName(){
		return this.shortName;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getName(){
		return this.name;
	}

	public List getElementList(){
		return this.elementList;
	}

	public List getIsotopeList(){
		return this.isotopeList;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy