-
Notifications
You must be signed in to change notification settings - Fork 243
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade to samtools 1.19.1 for interop testing. (#1706)
* Upgrade to samtools 1.19.1 for interop testing.
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters