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

org.nmdp.ngs.hml.jaxb.Gssp Maven / Gradle / Ivy

There is a newer version: 1.8.3
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.10-b140310.1920 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2014.11.23 at 07:59:24 PM CST 
//


package org.nmdp.ngs.hml.jaxb;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;


/**
 * 
 *         Describes the Group Specific Sequencing Primer used.
 * 
 *         Attributes:
 *         -----------
 *         - registered-name: Identifies the amplification primer. Must be 
 *           recognized by the message recipient. (string, optional)
 *         - primer-sequence: PCR primer sequences used to amplify a polymorphic 
 *           region of sequences. (string, optional)
 *         - primer-target: If the primer sequence is proprietary (or otherwise 
 *           unable to be explicitly specified), the primer sequence can be imputed 
 *           from the gssp result. This imputed primer sequence is specified as the 
 *           primer-target. (string, optional)
 * 
 *         Data:
 *         -----
 *         - Resulting sequence from the GSSP used. (string, required)
 *     
 * 
 * 

Java class for gssp complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="gssp">
 *   <simpleContent>
 *     <extension base="<http://schemas.nmdp.org/spec/hml/0.9.7>sequence">
 *       <attribute name="registered-name">
 *         <simpleType>
 *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *             <minLength value="1"/>
 *           </restriction>
 *         </simpleType>
 *       </attribute>
 *       <attribute name="primer-sequence">
 *         <simpleType>
 *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *             <minLength value="1"/>
 *           </restriction>
 *         </simpleType>
 *       </attribute>
 *       <attribute name="primer-target">
 *         <simpleType>
 *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *             <minLength value="1"/>
 *           </restriction>
 *         </simpleType>
 *       </attribute>
 *       <anyAttribute/>
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "gssp") public class Gssp extends Sequence { @XmlAttribute(name = "registered-name") protected String registeredName; @XmlAttribute(name = "primer-sequence") protected String primerSequence; @XmlAttribute(name = "primer-target") protected String primerTarget; /** * Gets the value of the registeredName property. * * @return * possible object is * {@link String } * */ public String getRegisteredName() { return registeredName; } /** * Sets the value of the registeredName property. * * @param value * allowed object is * {@link String } * */ public void setRegisteredName(String value) { this.registeredName = value; } /** * Gets the value of the primerSequence property. * * @return * possible object is * {@link String } * */ public String getPrimerSequence() { return primerSequence; } /** * Sets the value of the primerSequence property. * * @param value * allowed object is * {@link String } * */ public void setPrimerSequence(String value) { this.primerSequence = value; } /** * Gets the value of the primerTarget property. * * @return * possible object is * {@link String } * */ public String getPrimerTarget() { return primerTarget; } /** * Sets the value of the primerTarget property. * * @param value * allowed object is * {@link String } * */ public void setPrimerTarget(String value) { this.primerTarget = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy