1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
|
/*
* Copyright (C) 2014-2021 Brian L. Browning
*
* This file is part of Beagle
*
* Beagle is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Beagle is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package vcf;
import ints.IntArray;
import java.util.Arrays;
import java.util.stream.IntStream;
/**
* <p>Class {@code LowMafRefDiallelicGTRec} represent represents phased,
* non-missing genotypes for a list of reference samples at a single diallelic
* marker.</p>
*
* <p>Class {@code LowMafRefDiallelicGTRec} stores haplotypes that carry
* the minor allele.</p>
*
* <p>Instances of class {@code LowMemRefDiallelicGTRec} are immutable.</p>
*
* @author Brian L. Browning {@code <browning@uw.edu>}
*/
public final class LowMafRefDiallelicGTRec implements RefGTRec {
private final Marker marker;
private final Samples samples;
private final int nHaps;
private final int majorAllele;
private final int minorAllele;
private final int[] minorAlleles;
/**
* Constructs a new {@code LowMafRefDiallelicGTRec} instance from the
* specified data.
*
* @param rec the phased, non-missing genotype data
* @throws IllegalArgumentException if {@code rec.marker().nAlleles() != 2}
* @throws NullPointerException if {@code rec == null}
*/
public LowMafRefDiallelicGTRec(RefGTRec rec) {
if (rec.marker().nAlleles()!=2) {
throw new IllegalArgumentException(
String.valueOf(rec.marker().nAlleles()!=2));
}
int[][] hapIndices = rec.hapIndices();
int majAllele = 0;
while (hapIndices[majAllele]!=null) {
++majAllele;
}
this.marker = rec.marker();
this.samples = rec.samples();
this.nHaps = rec.size();
this.majorAllele = majAllele;
this.minorAllele = 1 - majAllele;
this.minorAlleles = hapIndices[minorAllele];
}
/**
* Constructs a new {@code LowMafRefDiallelicGTRec} instance from the
* specified data.
*
* @param gtp a VCF record parser that extracts sample genotypes
* @throws IllegalArgumentException if the VCF record contains an
* unphased genotype or missing allele
* @throws IllegalArgumentException if {@code gtp.nAlleles() != 2}
* @throws IllegalArgumentException if a format error is detected in the
* VCF record
* @throws NullPointerException if {@code gtp == null}
*/
public LowMafRefDiallelicGTRec(VcfRecGTParser gtp) {
if (gtp.nAlleles()!=2) {
throw new IllegalArgumentException(String.valueOf(gtp.nAlleles()));
}
int[][] nonMajIndices = gtp.nonMajRefIndices();
this.marker = gtp.marker();
this.samples = gtp.samples();
this.nHaps = 2*gtp.nSamples();
this.majorAllele = nonMajIndices[0]==null ? 0 : 1;
this.minorAllele = 1 - majorAllele;
this.minorAlleles = nonMajIndices[minorAllele];
}
/**
* Constructs a new {@code LowMafRefDiallelicGTRec} instance from the
* specified data. The specified {@code hapIndices} array is required to
* have length 2 and contain exactly one {@code null} element.
* The {@code null} element should be the major allele because this is
* most memory-efficient, but this requirement is not
* enforced.
* @param marker the marker
* @param samples the samples
* @param hapIndices whose {@code j}-th element is a list of haplotypes
* sorted in increasing order that carry the {@code j}-th allele, or is
* {@code null}
*
* @throws IllegalArgumentException if {@code marker.nAlleles() != 2}
* @throws IllegalArgumentException if
* {@code marker.nAlleles() != hapIndices.length}
* @throws IllegalArgumentException if the {@code (hapIndices} does
* not contain exactly one {@code null} element
* @throws IllegalArgumentException if the non-null element of
* {@code hapIndices} is not a sorted list of distinct haplotype indices
* between 0 (inclusive) and {@code 2*samples.size()} (exclusive)
* @throws NullPointerException if
* {@code marker == null || samples == null || hapIndices == null}
*/
public LowMafRefDiallelicGTRec(Marker marker, Samples samples,
int[][] hapIndices) {
if (marker.nAlleles()!=2) {
throw new IllegalArgumentException(String.valueOf(marker.nAlleles()));
}
this.marker = marker;
this.samples = samples;
this.nHaps = 2*samples.size();
this.majorAllele = LowMafRefGTRec.checkIndicesAndReturnNullIndex(hapIndices, nHaps);
this.minorAllele = 1 - majorAllele;
this.minorAlleles = hapIndices[minorAllele].clone();
}
@Override
public int[][] hapIndices() {
int[][] hapIndices = new int[2][];
hapIndices[minorAllele] = minorAlleles.clone();
return hapIndices;
}
@Override
public boolean isPhased(int sample) {
if (sample < 0 || sample >= this.samples().size()) {
throw new IndexOutOfBoundsException(String.valueOf(sample));
}
return true;
}
/**
* Returns {@code true}.
* @return {@code true}
*/
@Override
public boolean isPhased() {
return true;
}
@Override
public Samples samples() {
return samples;
}
@Override
public int size() {
return nHaps;
}
@Override
public Marker marker() {
return marker;
}
@Override
public int allele1(int sample) {
return get(sample<<1);
}
@Override
public int allele2(int sample) {
return get((sample<<1) | 0b1);
}
@Override
public int get(int hap) {
if (hap < 0 || hap >= nHaps) {
throw new IndexOutOfBoundsException(String.valueOf(hap));
}
if (Arrays.binarySearch(minorAlleles, hap) >= 0) {
return minorAllele;
}
else {
return majorAllele;
}
}
@Override
public int[] alleles() {
int[] ia = IntStream.range(0, nHaps)
.map(h -> majorAllele)
.toArray();
for (int h : minorAlleles) {
ia[h] = minorAllele;
}
return ia;
}
@Override
public boolean isAlleleCoded() {
return true;
}
@Override
public int majorAllele() {
return majorAllele;
}
@Override
public int[] alleleCounts() {
int[] alCnts = new int[2];
alCnts[majorAllele] = nHaps - minorAlleles.length;
alCnts[minorAllele] = minorAlleles.length;
return alCnts;
}
@Override
public int alleleCount(int allele) {
if (allele==majorAllele) {
throw new IllegalArgumentException("major allele");
}
else {
return minorAlleles.length;
}
}
@Override
public int hapIndex(int allele, int copy) {
if (allele==majorAllele) {
throw new IllegalArgumentException("major allele");
}
else {
return minorAlleles[copy];
}
}
@Override
public boolean isCarrier(int allele, int hap) {
return get(hap)==allele;
}
/**
* Returns the data represented by {@code this} as a VCF
* record with a GT format field. The returned VCF record
* will have missing QUAL and INFO fields, will have "PASS"
* in the filter field, and will have a GT format field.
* @return the data represented by {@code this} as a VCF
* record with a GT format field
*/
@Override
public String toString() {
return GTRec.toVcfRec(this);
}
@Override
public int nMaps() {
return 1;
}
@Override
public IntArray[] maps() {
return new IntArray[] {toIntArray()};
}
@Override
public IntArray map(int index) {
if (index!=0) {
throw new IndexOutOfBoundsException(String.valueOf(index));
}
return toIntArray();
}
private IntArray toIntArray() {
int[] ia = IntStream.range(0, nHaps)
.map(i -> majorAllele)
.toArray();
for (int i : minorAlleles) {
ia[i] = minorAllele;
}
return IntArray.packedCreate(ia, 2);
}
}
|