Merge pull request #1247 from broadinstitute/ldg_VQSRmodelOutput
Add optional argument for VQSR to output the model to a file as a GAT…
This commit is contained in:
commit
1d72ab099c
|
|
@ -58,6 +58,7 @@ import org.broadinstitute.gatk.utils.Utils;
|
|||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
|
|
@ -70,7 +71,7 @@ public class GaussianMixtureModel {
|
|||
|
||||
protected final static Logger logger = Logger.getLogger(GaussianMixtureModel.class);
|
||||
|
||||
private final ArrayList<MultivariateGaussian> gaussians;
|
||||
private final List<MultivariateGaussian> gaussians;
|
||||
private final double shrinkage;
|
||||
private final double dirichletParameter;
|
||||
private final double priorCounts;
|
||||
|
|
@ -97,6 +98,21 @@ public class GaussianMixtureModel {
|
|||
empiricalSigma.setMatrix(0, empiricalMu.length - 1, 0, empiricalMu.length - 1, Matrix.identity(empiricalMu.length, empiricalMu.length).times(200.0).inverse());
|
||||
}
|
||||
|
||||
//this is used for the model output unit test
|
||||
protected GaussianMixtureModel(final List<MultivariateGaussian> gaussians, final double shrinkage, final double dirichletParameter, final double priorCounts ) {
|
||||
this.gaussians = gaussians;
|
||||
final int numAnnotations = gaussians.get(0).mu.length;
|
||||
this.shrinkage = shrinkage;
|
||||
this.dirichletParameter = dirichletParameter;
|
||||
this.priorCounts = priorCounts;
|
||||
empiricalMu = new double[numAnnotations];
|
||||
empiricalSigma = new Matrix(numAnnotations, numAnnotations);
|
||||
isModelReadyForEvaluation = false;
|
||||
Arrays.fill(empiricalMu, 0.0);
|
||||
empiricalSigma.setMatrix(0, empiricalMu.length - 1, 0, empiricalMu.length - 1, Matrix.identity(empiricalMu.length, empiricalMu.length).times(200.0).inverse());
|
||||
|
||||
}
|
||||
|
||||
public void initializeRandomModel( final List<VariantDatum> data, final int numKMeansIterations ) {
|
||||
|
||||
// initialize random Gaussian means // BUGBUG: this is broken up this way to match the order of calls to rand.nextDouble() in the old code
|
||||
|
|
@ -295,4 +311,8 @@ public class GaussianMixtureModel {
|
|||
}
|
||||
return Math.log10( sumPVarInGaussian / ((double) numRandomDraws) );
|
||||
}
|
||||
|
||||
protected List<MultivariateGaussian> getModelGaussians() {return Collections.unmodifiableList(gaussians);}
|
||||
|
||||
protected int getNumAnnotations() {return empiricalMu.length;}
|
||||
}
|
||||
|
|
@ -148,6 +148,14 @@ public class VariantDataManager {
|
|||
logger.info("Annotations are now ordered by their information content: " + annotationKeys.toString());
|
||||
}
|
||||
|
||||
public double[] getMeanVector() {
|
||||
return meanVector;
|
||||
}
|
||||
|
||||
public double[] getVarianceVector() {
|
||||
return varianceVector;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a list of indices which give the ascending sort order of the data array
|
||||
* @param inputVector the data to consider
|
||||
|
|
|
|||
|
|
@ -64,6 +64,8 @@ import org.broadinstitute.gatk.utils.QualityUtils;
|
|||
import org.broadinstitute.gatk.utils.R.RScriptExecutor;
|
||||
import org.broadinstitute.gatk.utils.Utils;
|
||||
import org.broadinstitute.gatk.utils.help.HelpConstants;
|
||||
import org.broadinstitute.gatk.utils.report.GATKReport;
|
||||
import org.broadinstitute.gatk.utils.report.GATKReportTable;
|
||||
import org.broadinstitute.gatk.utils.variant.GATKVariantContextUtils;
|
||||
import htsjdk.variant.vcf.VCFHeader;
|
||||
import htsjdk.variant.vcf.VCFHeaderLine;
|
||||
|
|
@ -79,6 +81,8 @@ import java.io.FileNotFoundException;
|
|||
import java.io.PrintStream;
|
||||
import java.util.*;
|
||||
|
||||
import Jama.Matrix;
|
||||
|
||||
/**
|
||||
* Build a recalibration model to score variant quality for filtering purposes
|
||||
*
|
||||
|
|
@ -197,6 +201,14 @@ public class VariantRecalibrator extends RodWalker<ExpandingArrayList<VariantDat
|
|||
@Output(fullName="tranches_file", shortName="tranchesFile", doc="The output tranches file used by ApplyRecalibration", required=true)
|
||||
protected File TRANCHES_FILE;
|
||||
|
||||
/**
|
||||
* This GATKReport gives information to describe the VQSR model fit. Normalized means for the positive model are concatenated as one table and negative model normalized means as another table.
|
||||
* Covariances are also concatenated for postive and negative models, respectively. Tables of annotation means and standard deviations are provided to help describe the normalization.
|
||||
* The model fit report can be read in with our R gsalib package. Individual model Gaussians can be subset by the value in the "Gaussian" column if desired.
|
||||
*/
|
||||
@Output(fullName="model_file", shortName = "modelFile", doc="A GATKReport containing the positive and negative model fits", required=false)
|
||||
protected PrintStream modelReport = null;
|
||||
|
||||
/////////////////////////////
|
||||
// Additional Command Line Arguments
|
||||
/////////////////////////////
|
||||
|
|
@ -352,7 +364,7 @@ public class VariantRecalibrator extends RodWalker<ExpandingArrayList<VariantDat
|
|||
datum.isTransition = datum.isSNP && GATKVariantContextUtils.isTransition(vc);
|
||||
datum.isAggregate = !isInput;
|
||||
|
||||
// Loop through the training data sets and if they overlap this loci then update the prior and training status appropriately
|
||||
// Loop through the training data sets and if they overlap this locus (and allele, if applicable) then update the prior and training status appropriately
|
||||
dataManager.parseTrainingSets( tracker, context.getLocation(), vc, datum, TRUST_ALL_POLYMORPHIC );
|
||||
final double priorFactor = QualityUtils.qualToProb( datum.prior );
|
||||
datum.prior = Math.log10( priorFactor ) - Math.log10( 1.0 - priorFactor );
|
||||
|
|
@ -414,6 +426,11 @@ public class VariantRecalibrator extends RodWalker<ExpandingArrayList<VariantDat
|
|||
throw new UserException("NaN LOD value assigned. Clustering with this few variants and these annotations is unsafe. Please consider " + (badModel.failedToConverge ? "raising the number of variants used to train the negative model (via --minNumBadVariants 5000, for example)." : "lowering the maximum number of Gaussians allowed for use in the model (via --maxGaussians 4, for example).") );
|
||||
}
|
||||
|
||||
if (modelReport != null) {
|
||||
GATKReport report = writeModelReport(goodModel, badModel, USE_ANNOTATIONS);
|
||||
report.print(modelReport);
|
||||
}
|
||||
|
||||
engine.calculateWorstPerformingAnnotation( dataManager.getData(), goodModel, badModel );
|
||||
|
||||
// Find the VQSLOD cutoff values which correspond to the various tranches of calls requested by the user
|
||||
|
|
@ -443,6 +460,93 @@ public class VariantRecalibrator extends RodWalker<ExpandingArrayList<VariantDat
|
|||
}
|
||||
}
|
||||
|
||||
protected GATKReport writeModelReport(final GaussianMixtureModel goodModel, final GaussianMixtureModel badModel, List<String> annotationList) {
|
||||
final String formatString = "%.3f";
|
||||
final GATKReport report = new GATKReport();
|
||||
|
||||
if (dataManager != null) { //for unit test
|
||||
final double[] meanVector = dataManager.getMeanVector();
|
||||
GATKReportTable annotationMeans = makeVectorTable("AnnotationMeans", "Mean for each annotation, used to normalize data", dataManager.annotationKeys, meanVector, "Mean", formatString);
|
||||
report.addTable(annotationMeans);
|
||||
|
||||
final double[] varianceVector = dataManager.getVarianceVector(); //"varianceVector" is actually stdev
|
||||
GATKReportTable annotationVariances = makeVectorTable("AnnotationStdevs", "Standard deviation for each annotation, used to normalize data", dataManager.annotationKeys, varianceVector, "Standard deviation", formatString);
|
||||
report.addTable(annotationVariances);
|
||||
}
|
||||
|
||||
//The model and Gaussians don't know what the annotations are, so get them from this class
|
||||
//VariantDataManager keeps the annotation in the same order as the argument list
|
||||
GATKReportTable positiveMeans = makeMeansTable("PositiveModelMeans", "Vector of annotation values to describe the (normalized) mean for each Gaussian in the positive model", annotationList, goodModel, formatString);
|
||||
report.addTable(positiveMeans);
|
||||
|
||||
GATKReportTable positiveCovariance = makeCovariancesTable("PositiveModelCovariances", "Matrix to describe the (normalized) covariance for each Gaussian in the positive model; covariance matrices are joined by row", annotationList, goodModel, formatString);
|
||||
report.addTable(positiveCovariance);
|
||||
|
||||
//do the same for the negative model means
|
||||
GATKReportTable negativeMeans = makeMeansTable("NegativeModelMeans", "Vector of annotation values to describe the (normalized) mean for each Gaussian in the negative model", annotationList, badModel, formatString);
|
||||
report.addTable(negativeMeans);
|
||||
|
||||
GATKReportTable negativeCovariance = makeCovariancesTable("NegativeModelCovariances", "Matrix to describe the (normalized) covariance for each Gaussian in the negative model; covariance matrices are joined by row", annotationList, badModel, formatString);
|
||||
report.addTable(negativeCovariance);
|
||||
|
||||
return report;
|
||||
}
|
||||
|
||||
protected GATKReportTable makeVectorTable(final String tableName, final String tableDescription, final List<String> annotationList, final double[] perAnnotationValues, final String columnName, final String formatString) {
|
||||
GATKReportTable vectorTable = new GATKReportTable(tableName, tableDescription, annotationList.size(), GATKReportTable.TableSortingWay.DO_NOT_SORT);
|
||||
vectorTable.addColumn("Annotation");
|
||||
vectorTable.addColumn(columnName, formatString);
|
||||
for (int i = 0; i < perAnnotationValues.length; i++) {
|
||||
vectorTable.addRowIDMapping(annotationList.get(i), i, true);
|
||||
vectorTable.set(i, 1, perAnnotationValues[i]);
|
||||
}
|
||||
return vectorTable;
|
||||
}
|
||||
|
||||
private GATKReportTable makeMeansTable(final String tableName, final String tableDescription, final List<String> annotationList, final GaussianMixtureModel model, final String formatString) {
|
||||
GATKReportTable meansTable = new GATKReportTable(tableName, tableDescription, annotationList.size(), GATKReportTable.TableSortingWay.DO_NOT_SORT);
|
||||
meansTable.addColumn("Gaussian");
|
||||
for (final String annotationName : annotationList) {
|
||||
meansTable.addColumn(annotationName, formatString);
|
||||
}
|
||||
final List<MultivariateGaussian> modelGaussians = model.getModelGaussians();
|
||||
for (int i = 0; i < modelGaussians.size(); i++) {
|
||||
final MultivariateGaussian gaussian = modelGaussians.get(i);
|
||||
final double[] meanVec = gaussian.mu;
|
||||
if (meanVec.length != annotationList.size())
|
||||
throw new IllegalStateException("Gaussian mean vector does not have the same size as the list of annotations");
|
||||
meansTable.addRowIDMapping(i, i, true);
|
||||
for (int j = 0; j < annotationList.size(); j++)
|
||||
meansTable.set(i, annotationList.get(j), meanVec[j]);
|
||||
}
|
||||
return meansTable;
|
||||
}
|
||||
|
||||
private GATKReportTable makeCovariancesTable(final String tableName, final String tableDescription, final List<String> annotationList, final GaussianMixtureModel model, final String formatString) {
|
||||
GATKReportTable modelCovariances = new GATKReportTable(tableName, tableDescription, annotationList.size()+2, GATKReportTable.TableSortingWay.DO_NOT_SORT); //+2 is for Gaussian and Annotation columns
|
||||
modelCovariances.addColumn("Gaussian");
|
||||
modelCovariances.addColumn("Annotation");
|
||||
for (final String annotationName : annotationList) {
|
||||
modelCovariances.addColumn(annotationName, formatString);
|
||||
}
|
||||
final List<MultivariateGaussian> modelGaussians = model.getModelGaussians();
|
||||
for (int i = 0; i < modelGaussians.size(); i++) {
|
||||
final MultivariateGaussian gaussian = modelGaussians.get(i);
|
||||
final Matrix covMat = gaussian.sigma;
|
||||
if (covMat.getRowDimension() != annotationList.size() || covMat.getColumnDimension() != annotationList.size())
|
||||
throw new IllegalStateException("Gaussian covariance matrix does not have the same size as the list of annotations");
|
||||
for (int j = 0; j < annotationList.size(); j++) {
|
||||
modelCovariances.set(j + i * annotationList.size(), "Gaussian", i);
|
||||
modelCovariances.set(j + i * annotationList.size(), "Annotation", annotationList.get(j));
|
||||
for (int k = 0; k < annotationList.size(); k++) {
|
||||
modelCovariances.set(j + i * annotationList.size(), annotationList.get(k), covMat.get(j, k));
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
return modelCovariances;
|
||||
}
|
||||
|
||||
private void createVisualizationScript( final List<VariantDatum> randomData, final GaussianMixtureModel goodModel, final GaussianMixtureModel badModel, final double lodCutoff, final String[] annotationKeys ) {
|
||||
PrintStream stream;
|
||||
try {
|
||||
|
|
|
|||
|
|
@ -0,0 +1,214 @@
|
|||
/*
|
||||
* By downloading the PROGRAM you agree to the following terms of use:
|
||||
*
|
||||
* BROAD INSTITUTE
|
||||
* SOFTWARE LICENSE AGREEMENT
|
||||
* FOR ACADEMIC NON-COMMERCIAL RESEARCH PURPOSES ONLY
|
||||
*
|
||||
* This Agreement is made between the Broad Institute, Inc. with a principal address at 415 Main Street, Cambridge, MA 02142 (“BROAD”) and the LICENSEE and is effective at the date the downloading is completed (“EFFECTIVE DATE”).
|
||||
*
|
||||
* WHEREAS, LICENSEE desires to license the PROGRAM, as defined hereinafter, and BROAD wishes to have this PROGRAM utilized in the public interest, subject only to the royalty-free, nonexclusive, nontransferable license rights of the United States Government pursuant to 48 CFR 52.227-14; and
|
||||
* WHEREAS, LICENSEE desires to license the PROGRAM and BROAD desires to grant a license on the following terms and conditions.
|
||||
* NOW, THEREFORE, in consideration of the promises and covenants made herein, the parties hereto agree as follows:
|
||||
*
|
||||
* 1. DEFINITIONS
|
||||
* 1.1 PROGRAM shall mean copyright in the object code and source code known as GATK3 and related documentation, if any, as they exist on the EFFECTIVE DATE and can be downloaded from http://www.broadinstitute.org/gatk on the EFFECTIVE DATE.
|
||||
*
|
||||
* 2. LICENSE
|
||||
* 2.1 Grant. Subject to the terms of this Agreement, BROAD hereby grants to LICENSEE, solely for academic non-commercial research purposes, a non-exclusive, non-transferable license to: (a) download, execute and display the PROGRAM and (b) create bug fixes and modify the PROGRAM. LICENSEE hereby automatically grants to BROAD a non-exclusive, royalty-free, irrevocable license to any LICENSEE bug fixes or modifications to the PROGRAM with unlimited rights to sublicense and/or distribute. LICENSEE agrees to provide any such modifications and bug fixes to BROAD promptly upon their creation.
|
||||
* The LICENSEE may apply the PROGRAM in a pipeline to data owned by users other than the LICENSEE and provide these users the results of the PROGRAM provided LICENSEE does so for academic non-commercial purposes only. For clarification purposes, academic sponsored research is not a commercial use under the terms of this Agreement.
|
||||
* 2.2 No Sublicensing or Additional Rights. LICENSEE shall not sublicense or distribute the PROGRAM, in whole or in part, without prior written permission from BROAD. LICENSEE shall ensure that all of its users agree to the terms of this Agreement. LICENSEE further agrees that it shall not put the PROGRAM on a network, server, or other similar technology that may be accessed by anyone other than the LICENSEE and its employees and users who have agreed to the terms of this agreement.
|
||||
* 2.3 License Limitations. Nothing in this Agreement shall be construed to confer any rights upon LICENSEE by implication, estoppel, or otherwise to any computer software, trademark, intellectual property, or patent rights of BROAD, or of any other entity, except as expressly granted herein. LICENSEE agrees that the PROGRAM, in whole or part, shall not be used for any commercial purpose, including without limitation, as the basis of a commercial software or hardware product or to provide services. LICENSEE further agrees that the PROGRAM shall not be copied or otherwise adapted in order to circumvent the need for obtaining a license for use of the PROGRAM.
|
||||
*
|
||||
* 3. PHONE-HOME FEATURE
|
||||
* LICENSEE expressly acknowledges that the PROGRAM contains an embedded automatic reporting system (“PHONE-HOME”) which is enabled by default upon download. Unless LICENSEE requests disablement of PHONE-HOME, LICENSEE agrees that BROAD may collect limited information transmitted by PHONE-HOME regarding LICENSEE and its use of the PROGRAM. Such information shall include LICENSEE’S user identification, version number of the PROGRAM and tools being run, mode of analysis employed, and any error reports generated during run-time. Collection of such information is used by BROAD solely to monitor usage rates, fulfill reporting requirements to BROAD funding agencies, drive improvements to the PROGRAM, and facilitate adjustments to PROGRAM-related documentation.
|
||||
*
|
||||
* 4. OWNERSHIP OF INTELLECTUAL PROPERTY
|
||||
* LICENSEE acknowledges that title to the PROGRAM shall remain with BROAD. The PROGRAM is marked with the following BROAD copyright notice and notice of attribution to contributors. LICENSEE shall retain such notice on all copies. LICENSEE agrees to include appropriate attribution if any results obtained from use of the PROGRAM are included in any publication.
|
||||
* Copyright 2012-2015 Broad Institute, Inc.
|
||||
* Notice of attribution: The GATK3 program was made available through the generosity of Medical and Population Genetics program at the Broad Institute, Inc.
|
||||
* LICENSEE shall not use any trademark or trade name of BROAD, or any variation, adaptation, or abbreviation, of such marks or trade names, or any names of officers, faculty, students, employees, or agents of BROAD except as states above for attribution purposes.
|
||||
*
|
||||
* 5. INDEMNIFICATION
|
||||
* LICENSEE shall indemnify, defend, and hold harmless BROAD, and their respective officers, faculty, students, employees, associated investigators and agents, and their respective successors, heirs and assigns, (Indemnitees), against any liability, damage, loss, or expense (including reasonable attorneys fees and expenses) incurred by or imposed upon any of the Indemnitees in connection with any claims, suits, actions, demands or judgments arising out of any theory of liability (including, without limitation, actions in the form of tort, warranty, or strict liability and regardless of whether such action has any factual basis) pursuant to any right or license granted under this Agreement.
|
||||
*
|
||||
* 6. NO REPRESENTATIONS OR WARRANTIES
|
||||
* THE PROGRAM IS DELIVERED AS IS. BROAD MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE PROGRAM OR THE COPYRIGHT, EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, WHETHER OR NOT DISCOVERABLE. BROAD EXTENDS NO WARRANTIES OF ANY KIND AS TO PROGRAM CONFORMITY WITH WHATEVER USER MANUALS OR OTHER LITERATURE MAY BE ISSUED FROM TIME TO TIME.
|
||||
* IN NO EVENT SHALL BROAD OR ITS RESPECTIVE DIRECTORS, OFFICERS, EMPLOYEES, AFFILIATED INVESTIGATORS AND AFFILIATES BE LIABLE FOR INCIDENTAL OR CONSEQUENTIAL DAMAGES OF ANY KIND, INCLUDING, WITHOUT LIMITATION, ECONOMIC DAMAGES OR INJURY TO PROPERTY AND LOST PROFITS, REGARDLESS OF WHETHER BROAD SHALL BE ADVISED, SHALL HAVE OTHER REASON TO KNOW, OR IN FACT SHALL KNOW OF THE POSSIBILITY OF THE FOREGOING.
|
||||
*
|
||||
* 7. ASSIGNMENT
|
||||
* This Agreement is personal to LICENSEE and any rights or obligations assigned by LICENSEE without the prior written consent of BROAD shall be null and void.
|
||||
*
|
||||
* 8. MISCELLANEOUS
|
||||
* 8.1 Export Control. LICENSEE gives assurance that it will comply with all United States export control laws and regulations controlling the export of the PROGRAM, including, without limitation, all Export Administration Regulations of the United States Department of Commerce. Among other things, these laws and regulations prohibit, or require a license for, the export of certain types of software to specified countries.
|
||||
* 8.2 Termination. LICENSEE shall have the right to terminate this Agreement for any reason upon prior written notice to BROAD. If LICENSEE breaches any provision hereunder, and fails to cure such breach within thirty (30) days, BROAD may terminate this Agreement immediately. Upon termination, LICENSEE shall provide BROAD with written assurance that the original and all copies of the PROGRAM have been destroyed, except that, upon prior written authorization from BROAD, LICENSEE may retain a copy for archive purposes.
|
||||
* 8.3 Survival. The following provisions shall survive the expiration or termination of this Agreement: Articles 1, 3, 4, 5 and Sections 2.2, 2.3, 7.3, and 7.4.
|
||||
* 8.4 Notice. Any notices under this Agreement shall be in writing, shall specifically refer to this Agreement, and shall be sent by hand, recognized national overnight courier, confirmed facsimile transmission, confirmed electronic mail, or registered or certified mail, postage prepaid, return receipt requested. All notices under this Agreement shall be deemed effective upon receipt.
|
||||
* 8.5 Amendment and Waiver; Entire Agreement. This Agreement may be amended, supplemented, or otherwise modified only by means of a written instrument signed by all parties. Any waiver of any rights or failure to act in a specific instance shall relate only to such instance and shall not be construed as an agreement to waive any rights or fail to act in any other instance, whether or not similar. This Agreement constitutes the entire agreement among the parties with respect to its subject matter and supersedes prior agreements or understandings between the parties relating to its subject matter.
|
||||
* 8.6 Binding Effect; Headings. This Agreement shall be binding upon and inure to the benefit of the parties and their respective permitted successors and assigns. All headings are for convenience only and shall not affect the meaning of any provision of this Agreement.
|
||||
* 8.7 Governing Law. This Agreement shall be construed, governed, interpreted and applied in accordance with the internal laws of the Commonwealth of Massachusetts, U.S.A., without regard to conflict of laws principles.
|
||||
*/
|
||||
|
||||
package org.broadinstitute.gatk.tools.walkers.variantrecalibration;
|
||||
|
||||
import static org.testng.Assert.*;
|
||||
|
||||
import Jama.Matrix;
|
||||
import org.apache.commons.lang.StringUtils;
|
||||
import org.apache.log4j.Logger;
|
||||
import org.broadinstitute.gatk.utils.report.GATKReport;
|
||||
import org.broadinstitute.gatk.utils.report.GATKReportTable;
|
||||
import org.testng.Assert;
|
||||
import org.testng.annotations.Test;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Random;
|
||||
|
||||
public class VariantRecalibratorModelOutputUnitTest {
|
||||
protected final static Logger logger = Logger.getLogger(VariantRecalibratorModelOutputUnitTest.class);
|
||||
private final boolean printTables = true;
|
||||
|
||||
@Test
|
||||
public void testVQSRModelOutput() {
|
||||
final int numAnnotations = 6;
|
||||
final double shrinkage = 1.0;
|
||||
final double dirichlet = 0.001;
|
||||
final double priorCounts = 20.0;
|
||||
final int numGoodGaussians = 2;
|
||||
final int numBadGaussians = 1;
|
||||
final double epsilon = 1e-6;
|
||||
|
||||
Random rand = new Random(12878);
|
||||
MultivariateGaussian goodGaussian1 = new MultivariateGaussian(numAnnotations);
|
||||
goodGaussian1.initializeRandomMu(rand);
|
||||
goodGaussian1.initializeRandomSigma(rand);
|
||||
|
||||
MultivariateGaussian goodGaussian2 = new MultivariateGaussian(numAnnotations);
|
||||
goodGaussian2.initializeRandomMu(rand);
|
||||
goodGaussian2.initializeRandomSigma(rand);
|
||||
|
||||
MultivariateGaussian badGaussian1 = new MultivariateGaussian(numAnnotations);
|
||||
badGaussian1.initializeRandomMu(rand);
|
||||
badGaussian1.initializeRandomSigma(rand);
|
||||
|
||||
List<MultivariateGaussian> goodGaussianList = new ArrayList<>();
|
||||
goodGaussianList.add(goodGaussian1);
|
||||
goodGaussianList.add(goodGaussian2);
|
||||
|
||||
List<MultivariateGaussian> badGaussianList = new ArrayList<>();
|
||||
badGaussianList.add(badGaussian1);
|
||||
|
||||
GaussianMixtureModel goodModel = new GaussianMixtureModel(goodGaussianList, shrinkage, dirichlet, priorCounts);
|
||||
GaussianMixtureModel badModel = new GaussianMixtureModel(badGaussianList, shrinkage, dirichlet, priorCounts);
|
||||
|
||||
if (printTables) {
|
||||
System.out.println("Good model mean matrix:");
|
||||
System.out.println(vectorToString(goodGaussian1.mu));
|
||||
System.out.println(vectorToString(goodGaussian2.mu));
|
||||
System.out.println("\n\n");
|
||||
|
||||
System.out.println("Good model covariance matrices:");
|
||||
goodGaussian1.sigma.print(10, 3);
|
||||
goodGaussian2.sigma.print(10, 3);
|
||||
System.out.println("\n\n");
|
||||
|
||||
System.out.println("Bad model mean matrix:\n");
|
||||
System.out.println(vectorToString(badGaussian1.mu));
|
||||
System.out.println("\n\n");
|
||||
|
||||
System.out.println("Bad model covariance matrix:");
|
||||
badGaussian1.sigma.print(10, 3);
|
||||
}
|
||||
|
||||
VariantRecalibrator vqsr = new VariantRecalibrator();
|
||||
List<String> annotationList = new ArrayList<>();
|
||||
annotationList.add("QD");
|
||||
annotationList.add("MQ");
|
||||
annotationList.add("FS");
|
||||
annotationList.add("SOR");
|
||||
annotationList.add("ReadPosRankSum");
|
||||
annotationList.add("MQRankSum");
|
||||
|
||||
|
||||
GATKReport report = vqsr.writeModelReport(goodModel, badModel, annotationList);
|
||||
if(printTables)
|
||||
report.print(System.out);
|
||||
|
||||
//Check values for Gaussian means
|
||||
GATKReportTable goodMus = report.getTable("PositiveModelMeans");
|
||||
for(int i = 0; i < annotationList.size(); i++) {
|
||||
Assert.assertEquals(goodGaussian1.mu[i], (Double)goodMus.get(0,annotationList.get(i)), epsilon);
|
||||
}
|
||||
for(int i = 0; i < annotationList.size(); i++) {
|
||||
Assert.assertEquals(goodGaussian2.mu[i], (Double)goodMus.get(1,annotationList.get(i)), epsilon);
|
||||
}
|
||||
|
||||
GATKReportTable badMus = report.getTable("NegativeModelMeans");
|
||||
for(int i = 0; i < annotationList.size(); i++) {
|
||||
Assert.assertEquals(badGaussian1.mu[i], (Double)badMus.get(0,annotationList.get(i)), epsilon);
|
||||
}
|
||||
|
||||
//Check values for Gaussian covariances
|
||||
GATKReportTable goodSigma = report.getTable("PositiveModelCovariances");
|
||||
for(int i = 0; i < annotationList.size(); i++) {
|
||||
for(int j = 0; j < annotationList.size(); j++) {
|
||||
Assert.assertEquals(goodGaussian1.sigma.get(i,j), (Double)goodSigma.get(i,annotationList.get(j)), epsilon);
|
||||
}
|
||||
}
|
||||
|
||||
//add annotationList.size() to row indexes for second Gaussian because the matrices are concatenated by row in the report
|
||||
for(int i = 0; i < annotationList.size(); i++) {
|
||||
for(int j = 0; j < annotationList.size(); j++) {
|
||||
Assert.assertEquals(goodGaussian2.sigma.get(i,j), (Double)goodSigma.get(annotationList.size()+i,annotationList.get(j)), epsilon);
|
||||
}
|
||||
}
|
||||
|
||||
GATKReportTable badSigma = report.getTable("NegativeModelCovariances");
|
||||
for(int i = 0; i < annotationList.size(); i++) {
|
||||
for(int j = 0; j < annotationList.size(); j++) {
|
||||
Assert.assertEquals(badGaussian1.sigma.get(i,j), (Double)badSigma.get(i,annotationList.get(j)), epsilon);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
//This is tested separately to avoid setting up a VariantDataManager and populating it with fake data
|
||||
public void testAnnotationNormalizationOutput() {
|
||||
final VariantRecalibrator vqsr = new VariantRecalibrator();
|
||||
final List<String> annotationList = new ArrayList<>();
|
||||
annotationList.add("QD");
|
||||
annotationList.add("FS");
|
||||
annotationList.add("ReadPosRankSum");
|
||||
annotationList.add("MQ");
|
||||
annotationList.add("MQRankSum");
|
||||
annotationList.add("SOR");
|
||||
|
||||
final double epsilon = 1e-6;
|
||||
|
||||
double[] meanVector = {16.13, 2.45, 0.37, 59.08, 0.14, 0.91};
|
||||
final String columnName = "Mean";
|
||||
final String formatString = "%.3f";
|
||||
GATKReportTable vectorTable = vqsr.makeVectorTable("AnnotationMeans", "Mean for each annotation, used to normalize data", annotationList, meanVector, columnName, formatString);
|
||||
for(int i = 0; i < annotationList.size(); i++) {
|
||||
Assert.assertEquals(meanVector[i], (Double)vectorTable.get(i, columnName), epsilon);
|
||||
}
|
||||
|
||||
if (printTables) {
|
||||
final GATKReport report = new GATKReport();
|
||||
report.addTable(vectorTable);
|
||||
report.print(System.out);
|
||||
}
|
||||
}
|
||||
|
||||
private String vectorToString(double[] meanVec) {
|
||||
String returnString = "";
|
||||
for (int j = 0; j < meanVec.length; j++) {
|
||||
returnString += String.format("%.3f", meanVec[j]);
|
||||
if (j < meanVec.length-1)
|
||||
returnString += ",";
|
||||
}
|
||||
return returnString;
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue