Skip to content

Commit

Permalink
Upgrade to samtools 1.19.1 for interop testing. (#1706)
Browse files Browse the repository at this point in the history
* Upgrade to samtools 1.19.1 for interop testing.
  • Loading branch information
cmnbroad authored Mar 5, 2024
1 parent b16416c commit 222d10b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions scripts/install-samtools.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
set -ex
wget https://github.com/samtools/samtools/releases/download/1.14/samtools-1.14.tar.bz2
tar -xjvf samtools-1.14.tar.bz2
cd samtools-1.14 && ./configure --prefix=/usr && make && sudo make install
wget https://github.com/samtools/samtools/releases/download/1.19.1/samtools-1.19.1.tar.bz2
tar -xjvf samtools-1.19.1.tar.bz2
cd samtools-1.19.1 && ./configure --prefix=/usr && make && sudo make install
2 changes: 1 addition & 1 deletion src/test/java/htsjdk/utils/SamtoolsTestUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*/
public class SamtoolsTestUtils {
private static final String SAMTOOLS_BINARY_ENV_VARIABLE = "HTSJDK_SAMTOOLS_BIN";
public final static String expectedSamtoolsVersion = "1.14";
public final static String expectedSamtoolsVersion = "1.19.1";

/**
* @return true if samtools is available, otherwise false
Expand Down

0 comments on commit 222d10b

Please sign in to comment.