220 lines
7.8 KiB
Java
Executable File
220 lines
7.8 KiB
Java
Executable File
package org.broadinstitute.sting.oneoffprojects.walkers.varianteval;
|
|
|
|
import org.broad.tribble.util.variantcontext.VariantContext;
|
|
import org.broadinstitute.sting.gatk.contexts.AlignmentContext;
|
|
import org.broadinstitute.sting.gatk.contexts.ReferenceContext;
|
|
import org.broadinstitute.sting.gatk.contexts.variantcontext.VariantContextUtils;
|
|
import org.broadinstitute.sting.gatk.refdata.RefMetaDataTracker;
|
|
import org.broadinstitute.sting.gatk.walkers.varianteval.VariantEvalWalker;
|
|
import org.broadinstitute.sting.gatk.walkers.varianteval.evaluators.VariantEvaluator;
|
|
import org.broadinstitute.sting.gatk.walkers.varianteval.tags.Analysis;
|
|
import org.broadinstitute.sting.gatk.walkers.varianteval.tags.DataPoint;
|
|
import org.broadinstitute.sting.utils.report.utils.TableType;
|
|
import org.broadinstitute.sting.utils.analysis.AminoAcid;
|
|
import org.broadinstitute.sting.utils.analysis.AminoAcidTable;
|
|
import org.broadinstitute.sting.utils.analysis.AminoAcidUtils;
|
|
import org.broadinstitute.sting.utils.exceptions.UserException;
|
|
|
|
/*
|
|
* Copyright (c) 2010 The Broad Institute
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person
|
|
* obtaining a copy of this software and associated documentation
|
|
* files (the "Software"), to deal in the Software without
|
|
* restriction, including without limitation the rights to use,
|
|
* copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following
|
|
* conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be
|
|
* included in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
/**
|
|
* @author chartl
|
|
* @since June 28, 2010
|
|
*/
|
|
|
|
@Analysis(name = "Amino Acid Transition", description = "Calculates the Transition Matrix for coding variants; entries are Total, Num. Ti, Num. Tv, Ratio")
|
|
public class AminoAcidTransition extends VariantEvaluator {
|
|
|
|
////////////////////////////////////////////////////////////
|
|
//// INTERNAL DATA POINT CLASSES
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// a mapping from amino acid transition score histogram bin to Ti/Tv ratio
|
|
@DataPoint(description = "TiTv counts by amino acid change")
|
|
AminoAcidTiTvTable acidTable = null;
|
|
|
|
class TiTvCount {
|
|
public int ti;
|
|
public int tv;
|
|
|
|
public TiTvCount() {
|
|
ti = 0;
|
|
tv = 0;
|
|
}
|
|
|
|
public int getTotal() {
|
|
return ti + tv;
|
|
}
|
|
|
|
public double getRatio() {
|
|
return ( (double) ti )/(1.0+tv);
|
|
}
|
|
|
|
public String toString() {
|
|
return String.format("%d:%d:%d:%.2f",getTotal(),ti,tv,getRatio());
|
|
}
|
|
}
|
|
|
|
class AminoAcidTiTvTable implements TableType {
|
|
|
|
private TiTvCount[][] countsByAAChange;
|
|
|
|
public AminoAcidTiTvTable() {
|
|
countsByAAChange = new TiTvCount[AminoAcid.values().length][AminoAcid.values().length];
|
|
for ( int i = 0; i < AminoAcid.values().length; i ++ ) {
|
|
for ( int j = 0; j < AminoAcid.values().length; j++ ) {
|
|
countsByAAChange[i][j] = new TiTvCount();
|
|
}
|
|
}
|
|
}
|
|
|
|
public Object[] getRowKeys() {
|
|
return AminoAcidUtils.getAminoAcidCodes();
|
|
|
|
}
|
|
|
|
public Object[] getColumnKeys() {
|
|
return AminoAcidUtils.getAminoAcidCodes();
|
|
}
|
|
|
|
public TiTvCount getCell(int x, int y) {
|
|
return countsByAAChange[x][y];
|
|
}
|
|
|
|
public String getName() {
|
|
return "AminoAcidTransitionTable";
|
|
}
|
|
|
|
public void update(AminoAcid reference, AminoAcid alternate, boolean isTransition) {
|
|
TiTvCount counter = countsByAAChange[reference.ordinal()][alternate.ordinal()];
|
|
if ( isTransition ) {
|
|
counter.ti++;
|
|
} else {
|
|
counter.tv++;
|
|
}
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////
|
|
//// CORE VARIANT EVALUATOR DATA AND METHODS
|
|
////////////////////////////////////////////////////////////
|
|
|
|
private String infoKey;
|
|
private String infoValueSplit;
|
|
private boolean useCodons;
|
|
private boolean enabled;
|
|
private AminoAcidTable lookup;
|
|
|
|
public AminoAcidTransition(VariantEvalWalker parent) {
|
|
//super(parent);
|
|
//enabled = parent.aminoAcidTransitionKey != null;
|
|
enabled = true;
|
|
if ( enabled ) {
|
|
getParsingInformation(parent);
|
|
lookup = new AminoAcidTable();
|
|
acidTable = new AminoAcidTiTvTable();
|
|
}
|
|
}
|
|
|
|
private void getParsingInformation(VariantEvalWalker parent) {
|
|
if ( enabled() ) {
|
|
// infoKey = parent.aminoAcidTransitionKey;
|
|
// infoValueSplit = parent.aminoAcidTransitionSplit;
|
|
// useCodons = parent.aatUseCodons;
|
|
|
|
infoKey = null;
|
|
infoValueSplit = null;
|
|
useCodons = false;
|
|
|
|
if ( infoKey == null ) {
|
|
throw new UserException.CommandLineException("No info-field key provided for amino acid tabulation. Please provide the appropriate key with -aatk.");
|
|
}
|
|
|
|
if ( infoValueSplit == null ) {
|
|
throw new UserException.CommandLineException("No split string provided for amino acid tabulation. Please provide the split string with -aats");
|
|
}
|
|
}
|
|
}
|
|
|
|
public String getName() {
|
|
return "AminoAcidTransitionTable";
|
|
}
|
|
|
|
public int getComparisonOrder() {
|
|
return 1; // we only need to see each eval track
|
|
}
|
|
|
|
public boolean enabled() {
|
|
return enabled;
|
|
}
|
|
|
|
public String toString() {
|
|
return getName();
|
|
}
|
|
|
|
public String update1(VariantContext eval, RefMetaDataTracker tracker, ReferenceContext ref, AlignmentContext context) {
|
|
String interesting = null;
|
|
//if ( eval != null && eval.hasAttribute(infoKey) ) {
|
|
if ( enabled && eval != null && eval.hasAttribute(infoKey) ) {
|
|
String[] parsedNames = ( (String) eval.getAttribute(infoKey)).split(infoValueSplit);
|
|
String first = "none";
|
|
String second = "none";
|
|
try {
|
|
first = parsedNames [0];
|
|
second = parsedNames [1];
|
|
} catch (ArrayIndexOutOfBoundsException e) {
|
|
//getLogger().warn("Error parsing variant context with value "+eval.getAttribute(infoKey));
|
|
}
|
|
AminoAcid reference;
|
|
AminoAcid alternate;
|
|
if ( useCodons ) {
|
|
reference = lookup.getEukaryoticAA(first);
|
|
alternate = lookup.getEukaryoticAA(second);
|
|
} else {
|
|
reference = lookup.getAminoAcidByCode(first);
|
|
alternate = lookup.getAminoAcidByCode(second);
|
|
}
|
|
|
|
//veWalker.getLogger().info(String.format("%s\t%s\t%s\t%s",first,second,reference,alternate));
|
|
|
|
if ( reference == null ) {
|
|
interesting = "Unknown Reference Codon";
|
|
} else if ( alternate == null ) {
|
|
interesting = "Unknown Alternate Codon";
|
|
} else {
|
|
acidTable.update(reference,alternate, VariantContextUtils.isTransition(eval));
|
|
}
|
|
|
|
}
|
|
|
|
return interesting; // This module doesn't capture any interesting sites, so return null
|
|
}
|
|
|
|
//public void finalizeEvaluation() {
|
|
//
|
|
//}
|
|
}
|