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

de.julielab.genemapper.resources.ncbigene.GeneXmlExtract Maven / Gradle / Ivy

Go to download

This project assembles code and files required to build the dictionaries and indexes used by the JCoRe Gene Mapper.

The newest version!
package de.julielab.genemapper.resources.ncbigene;

public class GeneXmlExtract {

	public String geneId;
	public String summary;
	public EntrezgeneProt entrezgeneProt;
	public String taxId;
	/**
	 * The status of the gene sequence analysis, see https://www.ncbi.nlm.nih.gov/books/NBK3841/#EntrezGene.Summary_2
	 * and https://www.ncbi.nlm.nih.gov/books/NBK21091/table/ch18.T.refseq_status_codes/?report=objectonly.
	 */
	public String refSeqStatus;
	/**
	 * The content of the 'value' attribute of the Gene-track_status element
	 */
	public String geneTrackStatusValue;
	/**
	 * The text content of the Gene-track_status element
	 */
	public String geneTrackStatus;
	/**
	 * The EC number of this gene
	 */
	public String ecNumber;


    @Override
    public String toString() {
        return "GeneXmlExtract{" +
                "geneId='" + geneId + '\'' +
                ", summary='" + summary + '\'' +
                ", entrezgeneProt=" + entrezgeneProt +
                ", taxId='" + taxId + '\'' +
                ", refSeqStatus=" + refSeqStatus +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy