-
Notifications
You must be signed in to change notification settings - Fork 33
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 #89 from phac-nml/mob-3.0.3
Merging branch `mob-3.0.3` to `master` for MOB-Suite v3.0.3 release
- Loading branch information
Showing
7 changed files
with
76 additions
and
22 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
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,4 +1,4 @@ | ||
{% set version = "3.0.1" %} | ||
{% set version = "3.0.3" %} | ||
|
||
package: | ||
name: mob_suite | ||
|
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,11 @@ | ||
FROM ubuntu:21.04 | ||
RUN ln -fs /usr/share/zoneinfo/America/New_York /etc/localtime | ||
RUN apt update && apt install git python3-pip -y | ||
RUN git clone https://github.com/phac-nml/mob-suite.git | ||
RUN cd mob-suite && git checkout mob-3.0.3 && cd .. | ||
RUN apt install libcurl4-openssl-dev libssl-dev -y | ||
RUN pip3 install Cython numpy | ||
RUN apt install mash ncbi-blast+ -y | ||
RUN cd mob-suite && python3 setup.py install && cd .. && rm -rf mob-suite | ||
RUN mob_init | ||
RUN apt clean |
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 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,2 +1,2 @@ | ||
__version__ = '3.0.2' | ||
__version__ = '3.0.3' | ||
|
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