Skip to content

Commit d7b956e

Browse files
committed
Upgrate SRA toolkit to 2.8.0
1 parent 793df83 commit d7b956e

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

Dockerfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,11 @@ RUN git clone https://github.com/sstephenson/bats.git /tmp/bats && \
1313
ADD requirements.txt /tmp/requirements.txt
1414
RUN pip install -r /tmp/requirements.txt && rm /tmp/requirements.txt
1515

16-
# Add binaries
17-
ADD bin/fastq-dump /usr/local/bin/fastq-dump
16+
# Add the AWS CLI binaries
17+
RUN cd /tmp && \
18+
wget http://ftp-trace.ncbi.nlm.nih.gov/sra/sdk/2.8.0/sratoolkit.2.8.0-ubuntu64.tar.gz && \
19+
tar xzvf sratoolkit.2.8.0-ubuntu64.tar.gz && \
20+
cp sratoolkit.2.8.0-ubuntu64/bin/fastq-dump /usr/local/bin/
1821

1922
# Add join_paired_docs scripts
2023
ADD https://gist.githubusercontent.com/boydgreenfield/805ac27e0a6b9a5adea7/raw/eae0640ea0b6b02dbe6bf22b18af605d04ce91f6/join_paired_ends.py /scripts/

bin/fastq-dump

-2.38 MB
Binary file not shown.

test/ocx.bats

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
[[ $V == Python\ 2.7* ]]
66
}
77

8-
@test "fastq-dump v2.5.2" {
8+
@test "fastq-dump v2.8.0" {
99
F=$(fastq-dump --version)
10-
[[ $F == *2.5.2* ]]
10+
[[ $F == *2.8.0* ]]
1111
}
1212

1313
@test "AWS CLI 1.8.3" {

0 commit comments

Comments
 (0)