-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #76 from fnothaft/bwakit
Use bwa-kit for alt aware alignment
- Loading branch information
Showing
11 changed files
with
49 additions
and
85 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM ubuntu | ||
|
||
MAINTAINER Frank Austin Nothaft, fnothaft@berkeley.edu | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y \ | ||
curl | ||
|
||
# pull down bwa-kit | ||
RUN curl -L http://sourceforge.net/projects/bio-bwa/files/bwakit/bwakit-0.7.12_x64-linux.tar.bz2 \ | ||
| tar -xjC /opt/ | ||
|
||
# add wrapper script | ||
ADD wrapper.sh /opt/wrapper.sh | ||
|
||
# set entrypoint to bwakit | ||
ENTRYPOINT ["/opt/wrapper.sh"] |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
build_tool = runtime-container.DONE | ||
nametag = quay.io/ucsc_cgl/bwakit:0.7.12 | ||
|
||
build: ${build_tool} | ||
|
||
${build_tool}: Dockerfile | ||
docker build -t ${nametag} . | ||
touch ${build_tool} | ||
|
||
push: build | ||
# Requires ~/.dockercfg | ||
docker push ${nametag} | ||
|
||
test: build | ||
python test.py | ||
|
||
clean: | ||
-rm ${build_tool} | ||
docker rmi ${nametag} |
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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
|
||
/opt/bwa.kit/run-bwamem $@ | bash |