Package vcf
Class RefGT
- java.lang.Object
-
- vcf.RefGT
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intallele(int marker, int haplotype)Returns the allele on the specified haplotype for the specified marker or return -1 if the allele is missing.intallele1(int marker, int hapPair)Returns the first allele for the specified marker and sample or return -1 if the allele is missing.intallele2(int marker, int hapPair)Returns the second allele for the specified marker and sample or return -1 if the allele is missing.RefGTRecget(int marker)Returns theRefGTRecfor the specified marker.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.booleanisReversed()Returnstrueif the markers are ordered by decreasing chromosome base position, and returnsfalseotherwise.Markermarker(int marker)Returns the specified marker.Markersmarkers()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.RefGTrestrict(int start, int end)Returns a newGTinstance restricted to genotype data for the specified markers.RefGTrestrict(Markers markers, int[] indices)Returns aGTinstance restricted to genotype data for the specified markers.static RefGTrestrict(RefGT refGT, int[] indices)Returns aRefGTinstance restricted to genotype data for the specified markers.Samplessamples()Returns the list of samples.
-
-
-
Constructor Detail
-
RefGT
public RefGT(Markers markers, Samples samples, RefGTRec[] refVcfRecs)
Constructs a newRefGTinstance.- Parameters:
markers- the sequence of markerssamples- the sequence of samplesrefVcfRecs- the sequence of per-marker genotype data- Throws:
java.lang.IllegalArgumentException- ifmarkers.nMarkers() != refVcfRecs.lengthjava.lang.IllegalArgumentException- ifrefVcfRecs[k].samples().equals(samples) == falsefor anyksatisfying0 <= k && k < refVcfRecs.lengthjava.lang.IllegalArgumentException- ifrefVcfRecs[k].marker().equals(markers.marker(k)) == falsefor anyksatisfying0 <= k && k < refVcfRecs.lengthjava.lang.IllegalArgumentException- ifrefVcfRecs[k].isPhased() == falsefor anyksatisfying0 <= k && k < refVcfRecs.lengthjava.lang.NullPointerException- ifmarkers == null || samples == null || refVcfRecs == null || refVcfRecs[k] == nullfor anyksatisfying0 <= k && k <= refVcfRecs.length
-
RefGT
public RefGT(RefGTRec[] refVcfRecs)
Constructs a newRefHapPairsinstance.- Parameters:
refVcfRecs- the sequence of per-marker genotype data- Throws:
java.lang.IllegalArgumentException- ifrefVcfRecs.length == 0java.lang.IllegalArgumentException- ifrefVcfRecs[k].samples().equals(samples) == falsefor anyksatisfying0 <= k && k < refVcfRecs.lengthjava.lang.IllegalArgumentException- ifrefVcfRecs[k].isPhased() == falsefor anyksatisfying0 <= k && k < refVcfRecs.lengthjava.lang.NullPointerException- ifsamples == null || refVcfRecs == nulljava.lang.NullPointerException- if(refVcfRecs[k] == null)for anyksatisfying(0 <= k && k <= refVcfRecs.length)
-
-
Method Detail
-
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
public Marker marker(int marker)
Description copied from interface:GTReturns the specified marker.
-
markers
public Markers 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.
-
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.
-
allele1
public int allele1(int marker, int hapPair)Description copied from interface:GTReturns 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 hapPair)Description copied from interface:GTReturns 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 haplotype)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
public static RefGT restrict(RefGT refGT, int[] indices)
Returns aRefGTinstance restricted to genotype data for the specified markers.- Parameters:
refGT- theRefGTinstance to be restrictedindices- a list of distinct marker indices (fromthis.markers())in increasing order- Returns:
- a
RefGTinstance restricted to genotype data for the specified markers - Throws:
java.lang.IndexOutOfBoundsException- if there existsjsuch that(0 <= j && j < indices.length)such that(indices[j] < 0 || indices[j] >= gt.nMarkers())java.lang.IllegalArgumentException- if there existsjsuch that(1 <= j && j < indices.length)such that(indices[j] <= indice[j - 1])java.lang.NullPointerException- ifgt == null || indices == null
-
restrict
public RefGT restrict(Markers markers, int[] indices)
Description copied from interface:GTReturns aGTinstance restricted to genotype data for the specified markers.
-
restrict
public RefGT restrict(int start, int end)
Description copied from interface:GTReturns a newGTinstance restricted to genotype data for the specified markers.
-
get
public RefGTRec get(int marker)
Returns theRefGTRecfor the specified marker.- Parameters:
marker- the marker index- Returns:
- the
RefGTRecfor the specified marker - Throws:
java.lang.IndexOutOfBoundsException- ifmarker < 0 || marker >= this.nMarkers()
-
-