Skip to content

Commit 222d10b

Browse files
authored
Upgrade to samtools 1.19.1 for interop testing. (#1706)
* Upgrade to samtools 1.19.1 for interop testing.
1 parent b16416c commit 222d10b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

scripts/install-samtools.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
22
set -ex
3-
wget https://github.com/samtools/samtools/releases/download/1.14/samtools-1.14.tar.bz2
4-
tar -xjvf samtools-1.14.tar.bz2
5-
cd samtools-1.14 && ./configure --prefix=/usr && make && sudo make install
3+
wget https://github.com/samtools/samtools/releases/download/1.19.1/samtools-1.19.1.tar.bz2
4+
tar -xjvf samtools-1.19.1.tar.bz2
5+
cd samtools-1.19.1 && ./configure --prefix=/usr && make && sudo make install

src/test/java/htsjdk/utils/SamtoolsTestUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*/
1414
public class SamtoolsTestUtils {
1515
private static final String SAMTOOLS_BINARY_ENV_VARIABLE = "HTSJDK_SAMTOOLS_BIN";
16-
public final static String expectedSamtoolsVersion = "1.14";
16+
public final static String expectedSamtoolsVersion = "1.19.1";
1717

1818
/**
1919
* @return true if samtools is available, otherwise false

0 commit comments

Comments
 (0)