LoginSignup
3
2

More than 3 years have passed since last update.

Biocontainersにない、Biocondaのツールを入れたコンテナを作る

Last updated at Posted at 2019-08-15

概要

Biocontainers で探したがみつからない
しかし、 bioconda のパッケージは存在する場合は、わりと簡単にコンテナを作ることができる。

まとめ

もととなる、biocontainersのコンテナを探してくる
BioContainers Community
https://biocontainers.pro/#/tools/biocontainers

docker pull biocontainers/biocontainers:v1.1.0_cv2

BioContainers Community
https://biocontainers.pro/#/tools/bustools

conda install -c conda-forge -c bioconda bustools==0.39.3--h4f7b962_0

これをコピーする

ただこれでうごかなかったので

conda install -c conda-forge -c bioconda bustools==0.39.3

Dockerfile

FROM biocontainers/biocontainers:v1.1.0_cv2
RUN conda install -c conda-forge -c bioconda bustools==0.39.3
3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2