You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if(Math.abs(sr.getInferredInsertSize()) < param.getMinInsert() && param.getMinInsert() != -9999) { continue; } //Test for MIN insert size cutoff here
107
107
if(Math.abs(sr.getInferredInsertSize()) > param.getMaxInsert() && param.getMaxInsert() != -9999) { continue; } //Test for MAX insert size cutoff here
108
-
} elseif(param.getAspect() < 1) { continue; } // Make sure that midpoint/fragment pileup must come from properly paired read
108
+
} elseif(param.getAspect() == 2 || param.getAspect() == 3) { continue; } // Make sure that midpoint and fragment pileup must come from properly paired read
109
109
110
110
// Shift as needed
111
111
if(sr.getReadNegativeStrandFlag()) { mark -= SHIFT; }
0 commit comments