Skip to content

Commit

Permalink
add BioBuilds blast to avoid libssl issues
Browse files Browse the repository at this point in the history
  • Loading branch information
nickp60 committed Mar 5, 2019
1 parent 6e798da commit 8915743
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM continuumio/miniconda3
MAINTAINER Nick Waters <nickp60@gmail.com>
RUN conda install -c bioconda blast
RUN conda install -c BioBuilds blast
RUN git clone https://github.com/nickp60/annofilt.git ###
# ADD . annofilt
WORKDIR annofilt
RUN python setup.py install
ENTRYPOINT [ "annofilt" ]
# RUN annofilt -h
2 changes: 1 addition & 1 deletion annofilt/annofilt.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ def setup_blast_db(input_file, input_type="fasta", dbtype="prot",
makeblastdb_exe = shutil.which("makeblastdb")
logger.debug("makeblastdb executable: %s", makeblastdb_exe)
makedbcmd = str("{0} -in {1} -input_type {2} -dbtype {3} " +
"-out {4}").format(makeblastdb_exe,
"-out {4} 2> {4}.log").format(makeblastdb_exe,
input_file,
input_type,
dbtype,
Expand Down

0 comments on commit 8915743

Please sign in to comment.