Package vcf
Class RestrictedGT
- java.lang.Object
-
- vcf.RestrictedGT
-
-
Constructor Summary
Constructors Constructor Description RestrictedGT(GT gt, Markers markers, int[] indices)
Constructs a newRestrictedGT
instance from the specified data
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
allele(int marker, int hap)
Returns the allele on the specified haplotype for the specified marker or return -1 if the allele is missing.int
allele1(int marker, int sample)
Returns the first allele for the specified marker and sample or return -1 if the allele is missing.int
allele2(int marker, int sample)
Returns the second allele for the specified marker and sample or return -1 if the allele is missing.boolean
isPhased()
Returnstrue
if the genotype for each marker and sample has non-missing alleles and is either haploid or diploid with a phased allele separator, and returnsfalse
otherwise.boolean
isReversed()
Returnstrue
if the markers are ordered by decreasing chromosome base position, and returnsfalse
otherwise.Marker
marker(int marker)
Returns the specified marker.Markers
markers()
Returns the list of markers in order of increasing chromosome position.int
nHaps()
Returns the number of haplotypes.int
nMarkers()
Returns the number of markers.int
nSamples()
Returns the number of samples.RestrictedGT
restrict(int start, int end)
Returns a newGT
instance restricted to genotype data for the specified markers.RestrictedGT
restrict(Markers markers, int[] indices)
Returns aGT
instance restricted to genotype data for the specified markers.Samples
samples()
Returns the list of samples.java.lang.String
toString()
-
-
-
Constructor Detail
-
RestrictedGT
public RestrictedGT(GT gt, Markers markers, int[] indices)
Constructs a newRestrictedGT
instance from the specified data- Parameters:
gt
- the genotypes to be wrappedmarkers
- the list of markers in the returned instanceindices
- the mapping of marker indices frommarkers
togt.markers()
- Throws:
java.lang.IndexOutOfBoundsException
- if there existsj
such that(0 <= j && j < indices.length)
such that(indices[j] < 0 || indices[j] >= gt.nMarkers())
java.lang.IllegalArgumentException
- if there existsj
such that(1 <= j && j < indices.length)
such that(indices[j] <= indice[j - 1])
java.lang.IllegalArgumentException
- if there existsj
such that(0 <= j && j < indices.length)
such that(gt.marker(indices[j]).equals(markers.marker(j)) == false)
java.lang.NullPointerException
- if(gt == null || markers == null || include == null)
-
-
Method Detail
-
isReversed
public boolean isReversed()
Description copied from interface:GT
Returnstrue
if the markers are ordered by decreasing chromosome base position, and returnsfalse
otherwise.- Specified by:
isReversed
in interfaceGT
- Returns:
true
if the markers are ordered by decreasing chromosome base position
-
nMarkers
public int nMarkers()
Description copied from interface:GT
Returns the number of markers.
-
marker
public Marker marker(int marker)
Description copied from interface:GT
Returns the specified marker.
-
markers
public Markers markers()
Description copied from interface:GT
Returns 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:GT
Returns the number of haplotypes. The returned value is equal to2*this.nSamples()
.
-
nSamples
public int nSamples()
Description copied from interface:GT
Returns the number of samples.
-
isPhased
public boolean isPhased()
Description copied from interface:GT
Returnstrue
if the genotype for each marker and sample has non-missing alleles and is either haploid or diploid with a phased allele separator, and returnsfalse
otherwise.
-
allele1
public int allele1(int marker, int sample)
Description copied from interface:GT
Returns the first allele for the specified marker and sample or return -1 if the allele is missing. The order of the two alleles is unspecified ifthis.isPhased() == false
.
-
allele2
public int allele2(int marker, int sample)
Description copied from interface:GT
Returns the second allele for the specified marker and sample or return -1 if the allele is missing. The order of the two alleles is unspecified ifthis.isPhased() == false
.
-
allele
public int allele(int marker, int hap)
Description copied from interface:GT
Returns 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
public RestrictedGT restrict(Markers markers, int[] indices)
Description copied from interface:GT
Returns aGT
instance restricted to genotype data for the specified markers.
-
restrict
public RestrictedGT restrict(int start, int end)
Description copied from interface:GT
Returns a newGT
instance restricted to genotype data for the specified markers.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-