Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use olgabot/dayhoff branch to build sourmash #26

Merged
merged 2 commits into from
Jul 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# nf-core/nf-kmer-similarity: Changelog

## v1.0dev - 6 March 2019
## v1.1dev

* Add option to use Dayhoff encoding for sourmash

## v1.0 - 6 March 2019
Initial release of nf-core/nf-kmer-similarity, created with the [nf-core](http://nf-co.re/) template.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,14 @@ RUN cd /home && \
RUN trim-low-abund.py --help
RUN trim-low-abund.py --version

# RUN conda install --channel bioconda --yes sourmash

# Required for multiprocessing of 10x bam file
# RUN pip install pathos bamnostic

# ENV SOURMASH_VERSION master
ENV SOURMASH_VERSION 'olgabot/dayhoff'
RUN cd /home && \
git clone https://github.com/dib-lab/sourmash.git && \
git clone --branch $SOURMASH_VERSION https://github.com/czbiohub/sourmash.git && \
cd sourmash && \
python3 setup.py install

Expand Down