Bug fixing for merging of read fragments when one fragment contained an indel
This commit is contained in:
parent
8e23c98dd9
commit
ae259f81cc
|
|
@ -27,7 +27,6 @@ package org.broadinstitute.sting.gatk.walkers.variantrecalibration;
|
|||
|
||||
import org.apache.log4j.Logger;
|
||||
import org.broadinstitute.sting.gatk.GenomeAnalysisEngine;
|
||||
import org.broadinstitute.sting.utils.exceptions.UserException;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
|
|
|||
|
|
@ -608,7 +608,7 @@ public class ReadUtils {
|
|||
* Example: Locus => {read1, read2, ..., readN}
|
||||
*
|
||||
* - Second: readToLocusMap -- a HashMap that describes for each read what loci it contributes to the coverage.
|
||||
* Note: Locus is a boolean array, indexed from 0 (= startLocation) to N (= stopLocation), with true meaning it contributes to the coverage.
|
||||
* Note: Locus is a boolean array, indexed from 0 (= startLocation) to N (= stopLocation), with value==true meaning it contributes to the coverage.
|
||||
* Example: Read => {true, true, false, ... false}
|
||||
*
|
||||
* @param readList the list of reads to generate the association mappings
|
||||
|
|
|
|||
Loading…
Reference in New Issue