专属域名
文档搜索
轩辕助手
Run助手
邀请有礼
返回顶部
快速返回页面顶部
收起
收起工具栏
轩辕镜像 官方专业版
轩辕镜像 官方专业版轩辕镜像 官方专业版官方专业版
首页个人中心搜索镜像

交易
充值流量我的订单
工具
提交工单镜像收录一键安装
Npm 源Pip 源Homebrew 源
帮助
常见问题
其他
关于我们网站地图

官方QQ群: 1072982923

mpgagebioinformatics/bioinformatics_software Docker 镜像 - 轩辕镜像

bioinformatics_software
mpgagebioinformatics/bioinformatics_software
Tools for Bioinformatics and general data analysis.
15 收藏0 次下载
🙃 代码没问题,结果发布失败在拉镜像
镜像简介版本下载
🙃 代码没问题,结果发布失败在拉镜像

This image contains some of the most popular software used at Bioinformatics Core Facility of the Max Planck Institute for Biology of Ageing.

Software is versioned by making use of Environment Modules.

Additionally to the standard bioinformatics tools, there is also a Jupyter and RStudio server installation.

The Jupyter installation comes with Python 2, Python 3, and R kernels ready to go.

Check the GitHub repo for these images here.

Usage

  • Create a folder to map to the container's user home folder
mkdir -p ~/bioinf-container

  • Start the container from the latest version of the image
sudo docker run -d -p 8787:8787 -p 8888:8888 \
-v ~/bioinf-container:/home/mpiage --name bioinf-container \
-it mpgagebioinformatics/bioinformatics_software:latest

  • Alternatively you can start the container from a specific tag/version of the image
sudo docker run -d -p 8787:8787 -p 8888:8888 \
-v ~/bioinf-container:/home/mpiage --name bioinf-container \
-it mpgagebioinformatics/bioinformatics_software:<tag>

  • Connect to the running container
sudo docker exec -i -t bioinf-container /bin/bash

  • Stop the container
sudo docker stop bioinf-container

  • Jupyter

Once you have connected to the running container you can start jupyter with

module load jupyterhub
jupyter notebook --ip=0.0.0.0

A URL will be presented to you, and it should be pasted into your host's browser (Chrome recommended).

For using the ruby kernel you will have to get your kernel registered by running once

module load jupyterhub
iruby notebook

  • RStudio-server Once you have connected to the running container you can start Rstudio server with
module load rlang
sudo rstudio-server start

You can then get access by connecting on your host's browser to http://localhost:8787.

For stopping the server use:

sudo rstudio-server stop

  • X forward

On a Mac install socat and xquartz:

brew install socat
brew install xquartz

Open Xquartz:

open -a Xquartz

Then navigate to XQuartz > Preferences > Security and tick the box 'Allow connections from network clients'.

Check your ip address:

IP=$(ifconfig en0 | grep inet | awk '{ print $2 }')

Start socat:

socat TCP-LISTEN:6000,reuseaddr,fork UNIX-CLIENT:\"$DISPLAY\"

an then start the container by adding the -e DISPLAY=${IP}:0 argument.

Complete example call:

IP=$(ifconfig en0 | grep inet | awk '{ print $2 }') && \
socat TCP-LISTEN:6000,reuseaddr,fork UNIX-CLIENT:\"$DISPLAY\" & \
docker run -d -e DISPLAY=${IP}:0 -p 8787:8787 -p 8888:8888 \
-v ~/bioinf-container:/home/mpiage --name bioinf-container \
-it mpgagebioinformatics/bioinformatics_software:latest

  • User account

User: mpiage

Pass: bioinf


Note : As only the home folder in the guest container gets mapped to the local host, all files NOT placed IN the home folder will be lost if the container is removed.

Environment Modules Project

A centralized software system. The modules system loads software (version of choice) and changes environment variables (eg. LD_LIBRARY_PATH).

  • show available modules: module avail
  • show a description of the samtools module: module whatis samtools
  • show environment changes for samtools: module show samtools
  • load default samtools version: module load samtools
  • load specific samtools version: module load samtools/1.2.1
  • list all loaded modules: module list
  • unload the samtools module: module unload samtools
  • unload all loaded modules: module purge

Versioning/Tags

All images are released with the following tag structure:

<major release>.<changed system package>.<changed software module>

  • v3.0.0:
container:~$ module avail
------------------------------- /modules/modulefiles/bioinformatics -------------------------------
bamutil/1.0.14(default)        hisat/2.1.0(default)      samtools/0.1.19            
bcl2fastq/2.20.0.422(default)  homer/4.11.0(default)     samtools/1.9.0(default)    
bedtools/2.29.0(default)       igor/1.3.0(default)       segemehl/0.2.0(default)    
blast/2.9.0(default)           igrec/3.1.1(default)      seqtk/1.3.0(default)       
bowtie/1.2.3                   iseerna/1.2.2(default)    skewer/0.2.2(default)      
bowtie/2.3.5(default)          kallisto/0.46.1(default)  snpeff/4.3.t(default)      
bwa/0.7.17(default)            kenttools/390(default)    spades/3.11.1(default)     
bwtool/face601(default)        lofreq/2.1.3(default)     sratoolkit/2.9.6(default)  
cufflinks/2.2.1(default)       meme/5.1.0(default)       star/2.7.3a(default)       
cytoscape/3.7.2(default)       methpipe/3.4.3(default)   stringtie/2.0.4(default)   
emboss/6.6.0(default)          mitools/1.5.0(default)    subread/2.0.0(default)     
epiteome/1.0.0(default)        ngsutils/0.5.9(default)   tophat/2.1.1(default)      
expat/2.2.9(default)           picard/2.21.4(default)    trimmomatic/0.39(default)  
fastqc/0.11.8(default)         primer3/2.5.0(default)    vcftools/0.1.16(default)   
flexbar/3.5.0(default)         quast/5.0.2(default)      vdjtools/1.2.1(default)    
gatk/4.1.4(default)            rsem/1.3.1(default)       walt/1.1.0(default)        

---------------------------------- /modules/modulefiles/general -----------------------------------
jdk/13.0.1(default)   jupyterhub/1.0.0(default)  python/2.7.16(default)  rlang/3.6.1(default)  
jre/8.0.231(default)  perl/5.28.1(default)       python/3.8.0            

------------------------------------ /modules/modulefiles/libs ------------------------------------
bzip2/1.0.8(default)  imagemagick/7.0.9-7(default)  xz/5.2.4(default)  
gsl/2.6.0(default)    openblas/0.3.7(default)       

Shifter/Singularity

Shifer and Singularity users should add the following line to their host ~/.bashrc:

bash
if [[ -e /home/mpiage/.bashrc ]]; then module purge; unset PYTHONHOME PYTHONUSERBASE PYTHONPATH; source /home/mpiage/.bashrc; fi

Contributing

Clone this repo:

bash
git clone [***]

Make a new version folder in agreement with Versioning/Tags:

bash
cd software_docker
mkdir v1.0.1
cd v1.0.1
touch Dockerfile

Generate the content of the Dockerfile making sure that on the "FROM" you are using the key for latest available version and using the examples from previous Dockerfiles.

Build the image with:

bash
sudo docker build .

Try the image and test respective changes

bash
mkdir -p ~/bioinf-container

sudo docker run -d -p 8787:8787 -p 8888:8888 \
-v ~/bioinf-container:/home/mpiage --name bioinf-container \
-it <image tag>

sudo docker exec -i -t bioinf-container /bin/bash

Push your changes to the repo to github.

Python and perl Modules should be installed by the user with the --user option. If modules are needed for the installation of software on module environment they should be installed inside the package. Example:

  echo "setenv PYTHONUSERBASE $SOFT/package/1.0.0/lib/python2.7" >> $MODF/bioinformatics/quast/4.6.0 && \
  echo "prepend-path PERL5LIB $SOFT/package/1.0.0/lib/perl5" >> $MODF/bioinformatics/quast/4.6.0
查看更多 bioinformatics_software 相关镜像 →
mpgagebioinformatics/flaski logo
mpgagebioinformatics/flaski
由于提供的英文描述仅包含镜像相关徽章信息,未涉及具体功能,无法准确生成核心功能描述。建议补充镜像功能说明以完善描述。
500K+ pulls
上次更新:未知
mpgagebioinformatics/myapp logo
mpgagebioinformatics/myapp
myapp是一个为基于flask-dash的应用提供用户级身份验证的通用基础框架,可通过docker-compose.yml或Kubernetes集群部署。
10K+ pulls
上次更新:未知

轩辕镜像配置手册

探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式

登录仓库拉取

通过 Docker 登录认证访问私有仓库

Linux

在 Linux 系统配置镜像服务

Windows/Mac

在 Docker Desktop 配置镜像

Docker Compose

Docker Compose 项目配置

K8s Containerd

Kubernetes 集群配置 Containerd

K3s

K3s 轻量级 Kubernetes 镜像加速

Dev Containers

VS Code Dev Containers 配置

MacOS OrbStack

MacOS OrbStack 容器配置

宝塔面板

在宝塔面板一键配置镜像

群晖

Synology 群晖 NAS 配置

飞牛

飞牛 fnOS 系统配置镜像

极空间

极空间 NAS 系统配置服务

爱快路由

爱快 iKuai 路由系统配置

绿联

绿联 NAS 系统配置镜像

威联通

QNAP 威联通 NAS 配置

Podman

Podman 容器引擎配置

Singularity/Apptainer

HPC 科学计算容器配置

其他仓库配置

ghcr、Quay、nvcr 等镜像仓库

专属域名拉取

无需登录使用专属域名

需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单

镜像拉取常见问题

轩辕镜像免费版与专业版有什么区别?

免费版仅支持 Docker Hub 访问,不承诺可用性和速度;专业版支持更多镜像源,保证可用性和稳定速度,提供优先客服响应。

轩辕镜像支持哪些镜像仓库?

专业版支持 docker.io、gcr.io、ghcr.io、registry.k8s.io、nvcr.io、quay.io、mcr.microsoft.com、docker.elastic.co 等;免费版仅支持 docker.io。

流量耗尽错误提示

当返回 402 Payment Required 错误时,表示流量已耗尽,需要充值流量包以恢复服务。

410 错误问题

通常由 Docker 版本过低导致,需要升级到 20.x 或更高版本以支持 V2 协议。

manifest unknown 错误

先检查 Docker 版本,版本过低则升级;版本正常则验证镜像信息是否正确。

镜像拉取成功后,如何去掉轩辕镜像域名前缀?

使用 docker tag 命令为镜像打上新标签,去掉域名前缀,使镜像名称更简洁。

查看全部问题→

用户好评

来自真实用户的反馈,见证轩辕镜像的优质服务

用户头像

oldzhang

运维工程师

Linux服务器

5

"Docker访问体验非常流畅,大镜像也能快速完成下载。"

轩辕镜像
镜像详情
...
mpgagebioinformatics/bioinformatics_software
官方博客Docker 镜像使用技巧与技术博客
热门镜像查看热门 Docker 镜像推荐
一键安装一键安装 Docker 并配置镜像源
咨询镜像拉取问题请 提交工单,官方技术交流群:1072982923
轩辕镜像面向开发者与科研用户,提供开源镜像的搜索和访问支持。所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
咨询镜像拉取问题请提交工单,官方技术交流群:
轩辕镜像面向开发者与科研用户,提供开源镜像的搜索和访问支持。所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
官方邮箱:点击复制邮箱
©2024-2026 源码跳动
官方邮箱:点击复制邮箱Copyright © 2024-2026 杭州源码跳动科技有限公司. All rights reserved.