128129130131132133134135136
* * </p> */ public UriDt getIdentifier() { if (myIdentifier == null) { myIdentifier = new UriDt(); } return myIdentifier; }
155156157158159160161162
* <b>Definition:</b> * * </p> */ public Query setIdentifier( String theUri) { myIdentifier = new UriDt(theUri); return this; }
356357358359360361362363364
* URL to FASTA file used as reference assembly * </p> */ public UriDt getReferenceFasta() { if (myReferenceFasta == null) { myReferenceFasta = new UriDt(); } return myReferenceFasta; }
383384385386387388389390
* <b>Definition:</b> * URL to FASTA file used as reference assembly * </p> */ public GVFMeta setReferenceFasta( String theUri) { myReferenceFasta = new UriDt(theUri); return this; }
400401402403404405406407408
* GFF3 file containing feature being described in the file * </p> */ public UriDt getFeatureGFF3() { if (myFeatureGFF3 == null) { myFeatureGFF3 = new UriDt(); } return myFeatureGFF3; }
427428429430431432433434
* <b>Definition:</b> * GFF3 file containing feature being described in the file * </p> */ public GVFMeta setFeatureGFF3( String theUri) { myFeatureGFF3 = new UriDt(theUri); return this; }
742743744745746747748749750
* Region captured in the file * </p> */ public UriDt getCaptureRegions() { if (myCaptureRegions == null) { myCaptureRegions = new UriDt(); } return myCaptureRegions; }
769770771772773774775776
* <b>Definition:</b> * Region captured in the file * </p> */ public GVFMeta setCaptureRegions( String theUri) { myCaptureRegions = new UriDt(theUri); return this; }
254255256257258259260261262
* Establishes the namespace in which set of possible id values is unique. * </p> */ public UriDt getSystem() { if (mySystem == null) { mySystem = new UriDt(); } return mySystem; }
281282283284285286287288
* <b>Definition:</b> * Establishes the namespace in which set of possible id values is unique. * </p> */ public IdentifierDt setSystem( String theUri) { mySystem = new UriDt(theUri); return this; }