File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,11 @@ RUN git clone https://github.com/sstephenson/bats.git /tmp/bats && \
1313ADD requirements.txt /tmp/requirements.txt
1414RUN 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
2023ADD https://gist.githubusercontent.com/boydgreenfield/805ac27e0a6b9a5adea7/raw/eae0640ea0b6b02dbe6bf22b18af605d04ce91f6/join_paired_ends.py /scripts/
Original file line number Diff line number Diff line change 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" {
You can’t perform that action at this time.
0 commit comments