Skip to content

Commit

Permalink
Set min coverage to 30 for homoplasmies
Browse files Browse the repository at this point in the history
  • Loading branch information
seppinho committed Dec 23, 2018
1 parent 99e0a6a commit c2e5860
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/genepi/mut/util/VariantCaller.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public static VariantResult determineVariants(VariantLine line) {

if (line.getTopBaseFWD() == line.getTopBaseREV() && line.getTopBaseFWD() != '-') {

if (line.getTopBaseFWD() != line.getRef() && ((line.getCovFWD() + line.getCovREV() / 2) >= 50)) {
if (line.getTopBaseFWD() != line.getRef() && ((line.getCovFWD() + line.getCovREV() / 2) >= 30)) {

if (line.getTopBaseFWD() == 'D') {
type = DELETION;
Expand Down

0 comments on commit c2e5860

Please sign in to comment.