Package vcf
Class BasicGT
- java.lang.Object
-
- vcf.BasicGT
-
-
Constructor Summary
Constructors Constructor Description BasicGT(GTRec[] recs)Constructs aBasicGTinstance from the specified dataBasicGT(Markers markers, Samples samples, GTRec[] recs)Constructs aBasicGTinstance from the specified data.BasicGT(Samples samples, GTRec[] recs)Constructs aBasicGTinstance from the specified data
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intallele(int marker, int hap)Returns the allele on the specified haplotype for the specified marker or return -1 if the allele is missing.intallele1(int marker, int sample)Returns the first allele for the specified marker and sample or return -1 if the allele is missing.intallele2(int marker, int sample)Returns the second allele for the specified marker and sample or return -1 if the allele is missing.static intgenotype(int a1, int a2)Returns the genotype index corresponding to the specified unordered alleles.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 markerIndex)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.BasicGTrestrict(int start, int end)Returns a newGTinstance restricted to genotype data for the specified markers.static BasicGTrestrict(BasicGT gt, int[] indices)Returns aBasicGTinstance restricted to genotype data for the specified markers.BasicGTrestrict(Markers restrictedMarkers, int[] indices)Returns aGTinstance restricted to genotype data for the specified markers.Samplessamples()Returns the list of samples.java.lang.StringtoString()Returns a string representation ofthis.
-
-
-
Constructor Detail
-
BasicGT
public BasicGT(GTRec[] recs)
Constructs aBasicGTinstance from the specified data- Parameters:
recs- genotype records for a list of markers- Throws:
java.lang.IllegalArgumentException- if elements ofrecscorresponding to the same chromosome are not contiguous and sorted in chromosome position orderjava.lang.IllegalArgumentException- ifrecs.length == 0java.lang.IllegalArgumentException- if any two elements ofrecscorrespond to the same genetic markerjava.lang.IllegalArgumentException- if(recs[j].samples().equals(recs[k].samples()) == false)for anyj, ksatisfying(0 <= j && j < k && j < recs.length)java.lang.NullPointerException- ifrecs == nulljava.lang.NullPointerException- if(recs[j] == null)anyjsatisfying(0 <= j && j < recs.length)
-
BasicGT
public BasicGT(Samples samples, GTRec[] recs)
Constructs aBasicGTinstance from the specified data- Parameters:
samples- the list of samples with genotype datarecs- genotype records for a list of markers- Throws:
java.lang.IllegalArgumentException- if elements ofrecscorresponding to the same chromosome are not contiguous and sorted in chromosome position orderjava.lang.IllegalArgumentException- if any two elements ofrecscorrespond to the same genetic markerjava.lang.IllegalArgumentException- if(recs[j].samples().equals(samples) == false)for anyjsatisfying(0 <= j && j < recs.length)java.lang.NullPointerException- ifsamples == null || recs == nulljava.lang.NullPointerException- if(recs[j] == null)anyjsatisfying(0 <= j && j < recs.length)
-
BasicGT
public BasicGT(Markers markers, Samples samples, GTRec[] recs)
Constructs aBasicGTinstance from the specified data.- Parameters:
markers- the list of markers with genotype datasamples- the list of samples with genotype datarecs- the genotype data for each marker- Throws:
java.lang.IllegalArgumentException- if(recs[j].marker().equals(markers.marker(j)) == false)for anyjsatisfying(0 <= j && j < recs.length)java.lang.IllegalArgumentException- if(recs[j].samples().equals(samples) == false)for anyjsatisfying(0 <= j && j < recs.length)java.lang.NullPointerException- if(markers == null || samples == null || recs == null)java.lang.NullPointerException- if(recs[j] == null)anyjsatisfying(0 <= j && j < recs.length)
-
-
Method Detail
-
genotype
public static int genotype(int a1, int a2)Returns the genotype index corresponding to the specified unordered alleles.- Parameters:
a1- the first allele index of an unordered genotypea2- the second allele index of an unordered genotype- Returns:
- the genotype index corresponding to the specified unordered alleles
- Throws:
java.lang.IllegalArgumentException- ifa1 < 0 || a2 < 0
-
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 markerIndex)
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 sample)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 sample)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 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
public static BasicGT restrict(BasicGT gt, int[] indices)
Returns aBasicGTinstance restricted to genotype data for the specified markers.- Parameters:
gt- theBasicGTinstance to be restrictedindices- a list of distinct marker indices (fromthis.markers())in increasing order- Returns:
- a
GTinstance 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 BasicGT restrict(Markers restrictedMarkers, int[] indices)
Description copied from interface:GTReturns aGTinstance restricted to genotype data for the specified markers.
-
restrict
public BasicGT restrict(int start, int end)
Description copied from interface:GTReturns a newGTinstance restricted to genotype data for the specified markers.
-
toString
public java.lang.String toString()
Returns a string representation ofthis. The exact details of the representation are unspecified and subject to change.- Overrides:
toStringin classjava.lang.Object- Returns:
- a string representation of
this
-
-