Skip to content

Commit

Permalink
Upgrade to samtools 1.21.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmnbroad committed Jan 6, 2025
1 parent a8a7e55 commit a71f9a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/install-samtools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ sudo apt-get upgrade
sudo apt-get install -y libncurses-dev libbz2-dev liblzma-dev

#install from the github tar
export SAMTOOLS_VERSION=1.19.1
export SAMTOOLS_VERSION=1.21
wget https://github.com/samtools/samtools/releases/download/${SAMTOOLS_VERSION}/samtools-${SAMTOOLS_VERSION}.tar.bz2
tar -xjvf samtools-${SAMTOOLS_VERSION}.tar.bz2
cd samtools-${SAMTOOLS_VERSION} && ./configure --prefix=/usr && make && sudo make install
3 changes: 1 addition & 2 deletions src/test/java/htsjdk/utils/SamtoolsTestUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@
*/
public class SamtoolsTestUtils {
private static final String SAMTOOLS_BINARY_ENV_VARIABLE = "HTSJDK_SAMTOOLS_BIN";
public final static String expectedSamtoolsVersion = "1.19.1";
public final static String expectedHtslibVersion = "1.19";
public final static String expectedSamtoolsVersion = "1.21";

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

0 comments on commit a71f9a9

Please sign in to comment.