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

org.biojava.nbio.alignment.io.StockholmSequenceAnnotation 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/
 *
 * Created on August 13, 2010
 * Author: Mark Chapman
 */

package org.biojava.nbio.alignment.io;

import org.biojava.nbio.alignment.io.StockholmStructure.DatabaseReference;

import java.util.HashSet;
import java.util.Set;

/**
 * Stores all the content parsed from the #=GS lines
 *
 * @since 3.0.5
 * @author Amr ALHOSSARY
 * @author Marko Vaz
 *
 */
class StockholmSequenceAnnotation {
	private String accessionNumber;
	private CharSequence description;

	private Set dbReferences;
	private String organism;
	private String organismClassification;
	private String look;


	public String getDescription() {
		return description.toString();
	}
	public void setDescription(CharSequence description) {
		this.description = description;
	}
	public void addToDescription(CharSequence description) {
		if (this.description == null) {
			this.description = new StringBuffer(description);
		} else if (this.description instanceof StringBuffer){
			((StringBuffer) this.description).append(description);
		}else {
			this.description = new StringBuffer(this.description).append(description);
		}
	}

	public Set getDbReferences() {
		return dbReferences;
	}

	public void setDbReferences(Set dbReferences) {
		this.dbReferences = dbReferences;
	}
	/**
	 * @param dbReference the string without the initial annotation identifier ( #=GS DR )
	 */
	public void addDBReference(String dbReferenceRepresentingString) {
		if (this.dbReferences == null) {
			this.dbReferences = new HashSet<>();
		}
		dbReferences.add(new DatabaseReference(dbReferenceRepresentingString));
	}




	public String getAccessionNumber() {
		return accessionNumber;
	}
	public void setAccessionNumber(String accessionNumber) {
		this.accessionNumber = accessionNumber;
	}
	public String getOrganism() {
		return organism;
	}
	public void setOrganism(String organism) {
		this.organism = organism;
	}
	public String getOrganismClassification() {
		return organismClassification;
	}
	public void setOrganismClassification(String organismClassification) {
		this.organismClassification = organismClassification;
	}
	public String getLook() {
		return look;
	}
	public void setLook(String look) {
		this.look = look;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy