312313314315316317318319320
* Valid version of the GVF file * </p> */ public CodeDt getGvfVersion() { if (myGvfVersion == null) { myGvfVersion = new CodeDt(); } return myGvfVersion; }
339340341342343344345346
* <b>Definition:</b> * Valid version of the GVF file * </p> */ public GVFMeta setGvfVersion( String theCode) { myGvfVersion = new CodeDt(theCode); return this; }
579580581582583584585586587
* Code for population which the individual can be categorized into * </p> */ public CodeDt getPopulation() { if (myPopulation == null) { myPopulation = new CodeDt(); } return myPopulation; }
606607608609610611612613
* <b>Definition:</b> * Code for population which the individual can be categorized into * </p> */ public GVFMeta setPopulation( String theCode) { myPopulation = new CodeDt(theCode); return this; }
654655656657658659660661662
* Scope of the sequencing * </p> */ public CodeDt getSequencingScope() { if (mySequencingScope == null) { mySequencingScope = new CodeDt(); } return mySequencingScope; }
681682683684685686687688
* <b>Definition:</b> * Scope of the sequencing * </p> */ public GVFMeta setSequencingScope( String theCode) { mySequencingScope = new CodeDt(theCode); return this; }
698699700701702703704705706
* Capture method used in the sequencing * </p> */ public CodeDt getCaptureMethod() { if (myCaptureMethod == null) { myCaptureMethod = new CodeDt(); } return myCaptureMethod; }
725726727728729730731732
* <b>Definition:</b> * Capture method used in the sequencing * </p> */ public GVFMeta setCaptureMethod( String theCode) { myCaptureMethod = new CodeDt(theCode); return this; }
350351352353354355356357358
* * </p> */ public CodeDt getFreeBusyType() { if (myFreeBusyType == null) { myFreeBusyType = new CodeDt(); } return myFreeBusyType; }
377378379380381382383384
* <b>Definition:</b> * * </p> */ public Slot setFreeBusyType( String theCode) { myFreeBusyType = new CodeDt(theCode); return this; }