org.nmdp.ngs.hml.jaxb.SbtNgs Maven / Gradle / Ivy
//
// 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: 2015.06.03 at 09:54:38 AM CDT
//
package org.nmdp.ngs.hml.jaxb;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
*
* Describes an NGS (next-generation sequencing) event that was performed.
*
* Children:
* ---------
* - property: (optional, qty, 0 or more)
* - raw-reads (optional, qty: 0 or more)
*
* Also allows an optional "property" element that may have nested/custom
* use data related to this typing-method.
*
* Attributes:
* -----------
* - locus: The locus for which the SBT was performed. (optional)
* - test-id: Test ID as registered with the test-id-source.
* - test-id-source: A formal or formal test registry location. For
* example, this could be the NCBI GTR (specified as "gtr"),
* NMDP for tests registered directly with NMDP (specified as
* "NMDP"), etc. (required if test-id is used)
*
* NMDP allows the following test-id-source values:
* (Note that this may change in future versions)
* * gtr: ID of kit registered with the NCBI Genetic
* Testing Registry. (Preferred)
* * nmdp-refid: ID of kit registered with NMDP. The cardinal
* sequence numbers of the registered probes in the
* kit will determine the score order.
* * probe-name: Fully qualified probe name. If this attribute is
* used, the scores attribute must contain exactly
* one score. (ex: "L0999.K1.V1.A9F-S11")
*
*
* Java class for sbt-ngs complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="sbt-ngs">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="property" type="{http://schemas.nmdp.org/spec/hml/1.0.1}property" maxOccurs="unbounded" minOccurs="0"/>
* <element name="raw-reads" type="{http://schemas.nmdp.org/spec/hml/1.0.1}raw-reads" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="locus">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <minLength value="1"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="test-id">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <minLength value="1"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="test-id-source">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <minLength value="1"/>
* </restriction>
* </simpleType>
* </attribute>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "sbt-ngs", propOrder = {
"property",
"rawReads"
})
public class SbtNgs {
protected List property;
@XmlElement(name = "raw-reads")
protected List rawReads;
@XmlAttribute(name = "locus")
protected String locus;
@XmlAttribute(name = "test-id")
protected String testId;
@XmlAttribute(name = "test-id-source")
protected String testIdSource;
/**
* Gets the value of the property property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the property property.
*
*
* For example, to add a new item, do as follows:
*
* getProperty().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Property }
*
*
*/
public List getProperty() {
if (property == null) {
property = new ArrayList();
}
return this.property;
}
/**
* Gets the value of the rawReads property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the rawReads property.
*
*
* For example, to add a new item, do as follows:
*
* getRawReads().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link RawReads }
*
*
*/
public List getRawReads() {
if (rawReads == null) {
rawReads = new ArrayList();
}
return this.rawReads;
}
/**
* Gets the value of the locus property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLocus() {
return locus;
}
/**
* Sets the value of the locus property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLocus(String value) {
this.locus = value;
}
/**
* Gets the value of the testId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTestId() {
return testId;
}
/**
* Sets the value of the testId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTestId(String value) {
this.testId = value;
}
/**
* Gets the value of the testIdSource property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTestIdSource() {
return testIdSource;
}
/**
* Sets the value of the testIdSource property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTestIdSource(String value) {
this.testIdSource = value;
}
}