2009-08-31 10:16:39 +08:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2009 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
package org.broadinstitute.sting.gatk.contexts;
|
|
|
|
|
|
2009-09-05 02:40:43 +08:00
|
|
|
import org.broadinstitute.sting.gatk.refdata.RodGeliText;
|
2009-08-31 10:16:39 +08:00
|
|
|
import org.broadinstitute.sting.gatk.refdata.RefMetaDataTracker;
|
2009-11-10 21:24:58 +08:00
|
|
|
import org.broadinstitute.sting.gatk.refdata.RodVCF;
|
2009-08-31 10:16:39 +08:00
|
|
|
|
|
|
|
|
import net.sf.samtools.SAMRecord;
|
|
|
|
|
import java.util.*;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public class VariantContext {
|
|
|
|
|
private RefMetaDataTracker tracker;
|
|
|
|
|
private ReferenceContext ref;
|
|
|
|
|
private AlignmentContext context;
|
2009-09-05 02:40:43 +08:00
|
|
|
private RodGeliText variant;
|
2009-11-10 21:24:58 +08:00
|
|
|
private RodVCF variantVCF;
|
2009-08-31 10:16:39 +08:00
|
|
|
private AlignmentContext Q0freeContext = null;
|
|
|
|
|
|
|
|
|
|
public VariantContext(RefMetaDataTracker tracker, ReferenceContext ref,
|
2009-11-10 21:24:58 +08:00
|
|
|
AlignmentContext context, RodGeliText variant, RodVCF variantVCF) {
|
2009-08-31 10:16:39 +08:00
|
|
|
this.tracker = tracker;
|
|
|
|
|
this.ref = ref;
|
|
|
|
|
this.context = context;
|
|
|
|
|
this.variant = variant;
|
2009-11-10 21:24:58 +08:00
|
|
|
this.variantVCF = variantVCF;
|
2009-08-31 10:16:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public RefMetaDataTracker getTracker() { return tracker; }
|
|
|
|
|
public ReferenceContext getReferenceContext() { return ref; }
|
2009-09-05 02:40:43 +08:00
|
|
|
public RodGeliText getVariant() { return variant; }
|
2009-11-10 21:24:58 +08:00
|
|
|
public RodVCF getVariantVCF() { return variantVCF; }
|
2009-08-31 10:16:39 +08:00
|
|
|
public AlignmentContext getAlignmentContext(boolean useMQ0Reads) {
|
|
|
|
|
return (useMQ0Reads ? context : getQ0freeContext());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private AlignmentContext getQ0freeContext() {
|
|
|
|
|
if ( Q0freeContext == null ) {
|
|
|
|
|
// set up the variables
|
|
|
|
|
List<SAMRecord> reads = context.getReads();
|
|
|
|
|
List<Integer> offsets = context.getOffsets();
|
|
|
|
|
Iterator<SAMRecord> readIter = reads.iterator();
|
|
|
|
|
Iterator<Integer> offsetIter = offsets.iterator();
|
|
|
|
|
ArrayList<SAMRecord> Q0freeReads = new ArrayList<SAMRecord>();
|
|
|
|
|
ArrayList<Integer> Q0freeOffsets = new ArrayList<Integer>();
|
|
|
|
|
|
|
|
|
|
// copy over good reads/offsets
|
|
|
|
|
while ( readIter.hasNext() ) {
|
|
|
|
|
SAMRecord read = readIter.next();
|
|
|
|
|
Integer offset = offsetIter.next();
|
|
|
|
|
if ( read.getMappingQuality() > 0 ) {
|
|
|
|
|
Q0freeReads.add(read);
|
|
|
|
|
Q0freeOffsets.add(offset);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Q0freeContext = new AlignmentContext(context.getLocation(), Q0freeReads, Q0freeOffsets);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Q0freeContext;
|
|
|
|
|
}
|
|
|
|
|
}
|