We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6fa205 commit f9d6eadCopy full SHA for f9d6ead
SequenceAnalysis/src/org/labkey/sequenceanalysis/run/analysis/PindelAnalysis.java
@@ -120,7 +120,13 @@ private static String parseInsertMetrics(File inputFile) throws IOException
120
{
121
if (m.PAIR_ORIENTATION == SamPairUtil.PairOrientation.FR)
122
123
- return String.valueOf(Math.max(100, Math.ceil(m.MEAN_INSERT_SIZE)));
+ Double insertSize = Math.ceil(m.MEAN_INSERT_SIZE);
124
+ if (insertSize < 75)
125
+ {
126
+ insertSize = insertSize + 150;
127
+ }
128
+
129
+ return String.valueOf(Math.max(200, insertSize.intValue()));
130
}
131
132
0 commit comments