diff --git a/protected/java/src/org/broadinstitute/sting/gatk/walkers/diagnostics/missing/Metrics.java b/protected/java/src/org/broadinstitute/sting/gatk/walkers/diagnostics/missing/Metrics.java index 9296cc89b..63c35fd65 100644 --- a/protected/java/src/org/broadinstitute/sting/gatk/walkers/diagnostics/missing/Metrics.java +++ b/protected/java/src/org/broadinstitute/sting/gatk/walkers/diagnostics/missing/Metrics.java @@ -47,29 +47,7 @@ package org.broadinstitute.sting.gatk.walkers.diagnostics.missing; /** - * Short one line description of the walker. - *

- *

- * [Long description of the walker] - *

- *

- *

- *

Input

- *

- * [Description of the Input] - *

- *

- *

Output

- *

- * [Description of the Output] - *

- *

- *

Examples

- *
- *    java
- *      -jar GenomeAnalysisTK.jar
- *      -T [walker name]
- *  
+ * Metrics class for the QualifyMissingInterval walker * * @author Mauricio Carneiro * @since 5/1/13 @@ -81,6 +59,8 @@ final class Metrics { private int reads; private int refs; + public Metrics() {} + void reads(int reads) {this.reads = reads;} void refs(int refs) {this.refs = refs;} @@ -108,4 +88,13 @@ final class Metrics { return this; } + + // Test related constructor and methods + protected Metrics(double gccontent, double baseQual, double mapQual, int reads, int refs) { + this.gccontent = gccontent; + this.baseQual = baseQual; + this.mapQual = mapQual; + this.reads = reads; + this.refs = refs; + } } diff --git a/protected/java/src/org/broadinstitute/sting/gatk/walkers/diagnostics/missing/QualifyMissingIntervals.java b/protected/java/src/org/broadinstitute/sting/gatk/walkers/diagnostics/missing/QualifyMissingIntervals.java index eabcf20c1..8cc7bb8f3 100644 --- a/protected/java/src/org/broadinstitute/sting/gatk/walkers/diagnostics/missing/QualifyMissingIntervals.java +++ b/protected/java/src/org/broadinstitute/sting/gatk/walkers/diagnostics/missing/QualifyMissingIntervals.java @@ -117,6 +117,56 @@ public final class QualifyMissingIntervals extends LocusWalker @Argument(shortName = "cds", required = false) public String cdsFile = null; + /** + * This value will be used to determine whether or not an interval had too high or too low GC content to be + * sequenced. This is only applied if there was not enough data in the interval. + */ + @Argument(doc = "upper and lower bound for an interval to be considered high/low GC content", + shortName = "gc", required = false) + public double gcThreshold = 0.3; + + /** + * The coverage of a missing interval may determine whether or not an interval is sequenceable. A low coverage will + * trigger gc content, mapping, base qualities and other checks to figure out why this interval was deemed + * unsequenceable. + */ + @Argument(doc = "minimum coverage to be considered sequenceable", + shortName = "cov", required = false) + public int coverageThreshold = 20; + + /** + * An average mapping quality above this value will determine the interval to be mappable. + */ + @Argument(doc = "minimum mapping quality for it to be considered usable", + shortName = "mmq", required = false) + public byte mappingThreshold = 20; + + /** + * An average base quality above this value will rule out the possibility of context specific problems with the + * sequencer. + */ + @Argument(doc = "minimum base quality for it to be considered usable", + shortName = "mbq", required = false) + public byte qualThreshold = 20; + + /** + * Intervals that are too small generate biased analysis. For example an interval of size 1 will have GC content + * 1 or 0. To avoid misinterpreting small intervals, all intervals below this threshold will be ignored in the + * interpretation. + */ + @Argument(doc = "minimum interval length to be considered", + shortName = "size", required = false) + public byte intervalSizeThreshold = 10; + + enum Interpretation { + UNKNOWN, + UNMAPPABLE, + UNSEQUENCEABLE, + GCCONTENT, + NO_DATA, + SMALL_INTERVAL + } + GATKReport simpleReport; GenomeLocSortedSet target; GenomeLocSortedSet cds; @@ -130,7 +180,7 @@ public final class QualifyMissingIntervals extends LocusWalker if (cdsFile == null) cdsFile = targetsFile; - simpleReport = GATKReport.newSimpleReport("QualifyMissingIntervals", "IN", "GC", "BQ", "MQ", "DP", "TP", "CD", "LN"); + simpleReport = GATKReport.newSimpleReport("QualifyMissingIntervals", "IN", "GC", "BQ", "MQ", "DP", "TP", "CD", "LN", "DS"); final GenomeLocParser parser = getToolkit().getGenomeLocParser(); target = new GenomeLocSortedSet(parser, IntervalUtils.intervalFileToList(parser, targetsFile)); cds = new GenomeLocSortedSet(parser, IntervalUtils.intervalFileToList(parser, cdsFile)); @@ -184,7 +234,8 @@ public final class QualifyMissingIntervals extends LocusWalker metrics.depth(), getPositionInTarget(interval), cds.overlaps(interval), - interval.size() + interval.size(), + interpret(metrics, interval) ); } simpleReport.print(out); @@ -199,4 +250,43 @@ public final class QualifyMissingIntervals extends LocusWalker } return result; } + + String interpret(final Metrics metrics, final GenomeLoc interval) { + if (interval.size() < intervalSizeThreshold) { + return Interpretation.SMALL_INTERVAL.toString(); + } + else if (metrics.depth() == 0.0) { + return Interpretation.NO_DATA.toString(); + } + return trim(checkMappability(metrics) + checkGCContent(metrics) + checkContext(metrics)); + } + + String checkMappability(Metrics metrics) { + return metrics.depth() >= coverageThreshold && metrics.mapQual() < mappingThreshold ? + Interpretation.UNMAPPABLE + ", " : ""; + } + + String checkGCContent(Metrics metrics) { + return metrics.depth() < coverageThreshold && (metrics.gccontent() < gcThreshold || metrics.gccontent() > 1.0-gcThreshold) ? + Interpretation.GCCONTENT + ", " : ""; + } + + String checkContext(Metrics metrics) { + return metrics.depth() < coverageThreshold && metrics.baseQual() < qualThreshold ? + Interpretation.UNSEQUENCEABLE + ", " : ""; + } + + String trim (String s) { + if (s.isEmpty()) + return Interpretation.UNKNOWN.toString(); + + s = s.trim(); + if (s.endsWith(",")) + s = s.substring(0, s.length() - 1); + return s; + } + + + + } diff --git a/protected/java/test/org/broadinstitute/sting/gatk/walkers/diagnostics/missing/QualifyMissingIntervalsUnitTest.java b/protected/java/test/org/broadinstitute/sting/gatk/walkers/diagnostics/missing/QualifyMissingIntervalsUnitTest.java new file mode 100644 index 000000000..7d6d05736 --- /dev/null +++ b/protected/java/test/org/broadinstitute/sting/gatk/walkers/diagnostics/missing/QualifyMissingIntervalsUnitTest.java @@ -0,0 +1,95 @@ +/* +* 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 7 Cambridge Center, 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 GATK2 and related documentation, if any, as they exist on the EFFECTIVE DATE and can be downloaded from http://www.broadinstitute/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. +* 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. 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 Broad Institute, Inc. +* Notice of attribution: The GATK2 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. +* +* 4. 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. +* +* 5. 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. +* +* 6. 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. +* +* 7. MISCELLANEOUS +* 7.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. +* 7.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. +* 7.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. +* 7.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. +* 7.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. +* 7.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. +* 7.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.sting.gatk.walkers.diagnostics.missing; + +import org.broadinstitute.sting.BaseTest; +import org.broadinstitute.sting.utils.GenomeLoc; +import org.broadinstitute.sting.utils.UnvalidatingGenomeLoc; +import org.testng.Assert; +import org.testng.annotations.Test; + +/** + * Created with IntelliJ IDEA. + * User: carneiro + * Date: 9/20/13 + * Time: 3:59 PM + * To change this template use File | Settings | File Templates. + */ +public class QualifyMissingIntervalsUnitTest extends BaseTest { + @Test(enabled = true) + public void testInterpretation() { + final QualifyMissingIntervals tool = new QualifyMissingIntervals(); + + final Metrics unmappable = new Metrics(0.5, 7500.0, 0.0, 2500, 20); + final Metrics highGC = new Metrics(0.99, 0.0, 0.0, 0, 20); + final Metrics lowGC = new Metrics(0.09, 0.0, 0.0, 0, 20); + final Metrics unsequenceable = new Metrics(0.5, 3.0, 1200.0, 10, 20); + final Metrics noData = new Metrics(0.5, 0.0, 0.0, 0, 20); + final Metrics unknown = new Metrics(0.5, 30.0, 120000.0, 2500, 20); + + final Metrics[] array = {unmappable, highGC, lowGC, unsequenceable, noData, unknown}; + + final GenomeLoc testInterval = new UnvalidatingGenomeLoc("chr1", 0, 10000, 20000); + final GenomeLoc smallInterval = new UnvalidatingGenomeLoc("chr1", 0, 1, 4); + + + Assert.assertNotEquals(tool.checkMappability(unmappable), ""); + Assert.assertNotEquals(tool.checkGCContent(highGC), ""); + Assert.assertNotEquals(tool.checkGCContent(lowGC), ""); + Assert.assertNotEquals(tool.checkContext(unsequenceable), ""); + + Assert.assertEquals(tool.interpret(unmappable, testInterval), QualifyMissingIntervals.Interpretation.UNMAPPABLE.toString()); + Assert.assertEquals(tool.interpret(noData, testInterval), QualifyMissingIntervals.Interpretation.NO_DATA.toString()); + Assert.assertEquals(tool.interpret(noData, testInterval), QualifyMissingIntervals.Interpretation.NO_DATA.toString()); + Assert.assertEquals(tool.interpret(noData, testInterval), QualifyMissingIntervals.Interpretation.NO_DATA.toString()); + Assert.assertEquals(tool.interpret(noData, testInterval), QualifyMissingIntervals.Interpretation.NO_DATA.toString()); + Assert.assertEquals(tool.interpret(unknown, testInterval), QualifyMissingIntervals.Interpretation.UNKNOWN.toString()); + + for (Metrics m : array) + Assert.assertEquals(tool.interpret(m, smallInterval), QualifyMissingIntervals.Interpretation.SMALL_INTERVAL.toString()); + } +}