Package vcf
Class RestrictedGT
java.lang.Object
vcf.RestrictedGT
- All Implemented Interfaces:
GT
Class RestrictedGT is a wrapper for a GT
instance that restricts the data to a subset of the VCF records.
Instances of class RestrictGT are immutable.
-
Constructor Summary
ConstructorsConstructorDescriptionRestrictedGT(GT gt, Markers markers, int[] indices) Constructs a newRestrictedGTinstance from the specified data -
Method Summary
Modifier and TypeMethodDescriptionintallele(int marker, int hap) Returns the allele on the specified haplotype for the specified marker or return -1 if the allele is missing.booleanisPhased()Returnstrueif the genotype for each marker and sample has non-missing alleles and is either haploid or diploid with a phased allele separator, and returnsfalseotherwise.booleanReturnstrueif the markers are ordered by decreasing chromosome base position, and returnsfalseotherwise.marker(int marker) Returns the specified marker.markers()Returns the list of markers in order of increasing chromosome position.intnHaps()Returns the number of haplotypes.intnMarkers()Returns the number of markers.intnSamples()Returns the number of samples.restrict(int start, int end) Returns a newGTinstance restricted to genotype data for the specified markers.Returns aGTinstance restricted to genotype data for the specified markers.samples()Returns the list of samples.toString()
-
Constructor Details
-
RestrictedGT
Constructs a newRestrictedGTinstance from the specified data- Parameters:
gt- the genotypes to be wrappedmarkers- the list of markers in the returned instanceindices- the mapping of marker indices frommarkerstogt.markers()- Throws:
IndexOutOfBoundsException- if there existsjsuch that(0 <= j && j < indices.length)such that(indices[j] < 0 || indices[j] >= gt.nMarkers())IllegalArgumentException- if there existsjsuch that(1 <= j && j < indices.length)such that(indices[j] <= indice[j - 1])IllegalArgumentException- if there existsjsuch that(0 <= j && j < indices.length)such that(gt.marker(indices[j]).equals(markers.marker(j)) == false)NullPointerException- if(gt == null || markers == null || include == null)
-
-
Method Details
-
isReversed
public boolean isReversed()Description copied from interface:GTReturnstrueif the markers are ordered by decreasing chromosome base position, and returnsfalseotherwise.- Specified by:
isReversedin interfaceGT- Returns:
trueif the markers are ordered by decreasing chromosome base position
-
nMarkers
public int nMarkers()Description copied from interface:GTReturns the number of markers. -
marker
Description copied from interface:GTReturns the specified marker. -
markers
Description copied from interface:GTReturns the list of markers in order of increasing chromosome position. If(this.isReversed() == false)then(this.markers().marker(j).equals(this.marker(j)) == true)for all(0 <= j && j < this.nMarkers()). If(this.isReversed() == true)then(this.markers().marker(this.nMarkers() - 1 - j).equals(this.marker(j)) == true)for all(0 <= j && j < this.nMarkers()) -
nHaps
public int nHaps()Description copied from interface:GTReturns the number of haplotypes. The returned value is equal to2*this.nSamples(). -
nSamples
public int nSamples()Description copied from interface:GTReturns the number of samples. -
samples
Description copied from interface:GTReturns the list of samples. -
isPhased
public boolean isPhased()Description copied from interface:GTReturnstrueif the genotype for each marker and sample has non-missing alleles and is either haploid or diploid with a phased allele separator, and returnsfalseotherwise. -
allele
public int allele(int marker, int hap) Description copied from interface:GTReturns the allele on the specified haplotype for the specified marker or return -1 if the allele is missing. The order of the two alleles is unspecified ifthis.isPhased() == false. -
restrict
Description copied from interface:GTReturns aGTinstance restricted to genotype data for the specified markers. -
restrict
Description copied from interface:GTReturns a newGTinstance restricted to genotype data for the specified markers. -
toString
-