Updating excessive coverage default parameter
most people don't care about excessive coverage (unless you're very particular about your analysis). Therefore the best possible default value for this is Integer.maxValue so it doesn't get in the way. Itemized Changes: * change maximumCoverage threshold to Integer.maxValue [delivers #57353620]
This commit is contained in:
parent
add17dc463
commit
74639463b9
|
|
@ -77,7 +77,7 @@ final class ThresHolder {
|
|||
* If at any locus, a sample has more coverage than this, it will be reported as EXCESSIVE_COVERAGE
|
||||
*/
|
||||
@Argument(fullName = "maximum_coverage", shortName = "max", doc = "The maximum allowable coverage, used for calling EXCESSIVE_COVERAGE", required = false)
|
||||
public int maximumCoverage = 700;
|
||||
public int maximumCoverage = Integer.MAX_VALUE;
|
||||
|
||||
/**
|
||||
* If any sample has a paired read whose distance between alignment starts (between the pairs) is greater than this, it will be reported as BAD_MATE
|
||||
|
|
|
|||
Loading…
Reference in New Issue