From 332b25bdf7f4978e8611a01c9a2a6587ca308fd3 Mon Sep 17 00:00:00 2001 From: tfenne Date: Mon, 19 Aug 2019 13:53:14 -0600 Subject: [PATCH] Updated the max isize to be Integer.MAX_VALUE. --- src/main/java/htsjdk/samtools/SAMRecord.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/htsjdk/samtools/SAMRecord.java b/src/main/java/htsjdk/samtools/SAMRecord.java index 4dc50b7bfd..8df763ec01 100644 --- a/src/main/java/htsjdk/samtools/SAMRecord.java +++ b/src/main/java/htsjdk/samtools/SAMRecord.java @@ -158,7 +158,7 @@ public class SAMRecord implements Cloneable, Locatable, Serializable { /** * abs(insertSize) must be <= this */ - public static final int MAX_INSERT_SIZE = 1<<29; + public static final int MAX_INSERT_SIZE = Integer.MAX_VALUE; /** * Tags that are known to need the reverse complement if the read is reverse complemented.