Skip to content

Commit

Permalink
fixed a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesemery committed Feb 12, 2019
1 parent 7b14366 commit dcbb452
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ static JavaPairRDD<String, GATKDuplicationMetrics> generateMetrics(final SAMFile
if (read.getTransientAttribute(OPTICAL_DUPLICATE_TOTAL_ATTRIBUTE_NAME)!=null) {
// NOTE: there is a safety check above in getReadsGroupedByName()
metrics.READ_PAIR_OPTICAL_DUPLICATES +=
(int)(read.getTransientAttribute(OPTICAL_DUPLICATE_TOTAL_ATTRIBUTE_NAME);
(int)(read.getTransientAttribute(OPTICAL_DUPLICATE_TOTAL_ATTRIBUTE_NAME));
}
return new Tuple2<>(library, metrics);
})
Expand Down

0 comments on commit dcbb452

Please sign in to comment.