轩辕镜像 官方专业版
轩辕镜像
专业版
轩辕镜像 官方专业版
轩辕镜像
专业版
首页个人中心搜索镜像
交易
充值流量¥7起我的订单
文档
工具
提交工单页面收录
bioc-galaxy-integration

nitesh1989/bioc-galaxy-integration

nitesh1989
自动构建

Demonstrate the use of new bioconductor tool wrapping features in planemo.

下载次数: 0状态:自动构建维护者:nitesh1989仓库类型:镜像最近更新:9 年前
让 AI 帮你使用轩辕镜像? · 展开查看说明 · 点击收起说明

如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。

只需在 AI 对话中先发送下面这句话即可:

请先完整阅读并严格遵守以下文档中的全部规则与要求:

https://xuanyuan.cloud/agents.md

在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。

查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。

镜像简介
下载命令
镜像标签列表与下载命令
轩辕镜像,让镜像更快,让人生更轻。
点击查看

Writing Galaxy tool wrappers for R and Bioconductor packages

This tutorial outlines how to integrate R/Bioconductor tools into Galaxy. It is aimed at both novice and experienced R/Bioconductor and Galaxy tool developers. https://www.bioconductor.org/ represents a large collection of https://cran.r-project.org/ tools developed for the analysis of high-throughput genomic data. The goal of this tutorial is to guide developers through the steps required to integrate R/Bioconductor tools into the Galaxy platform. Galaxy is language agnostic, so tools written in different languages can be integrated into Galaxy. This tutorial specifically focuses on R/Bioconductor tool integration.

This tutorial aims to familiarize readers with:

  • steps for R/Bioconductor tool integration into Galaxy
  • best practices for R/Bioconductor tool integration

Table of contents

  • Overview of Galaxy Tools
    • Quick summary
    • Directory structure
  • Galaxy Tool Components
    • Tool definition file
    • Custom R file
    • Tool dependency file
    • Test data directory
  • How Galaxy Tool Components Work Together
    • Tool integration into Galaxy
    • Tool testing
    • Tool execution
  • Handling R/Bioconductor Dependencies
  • Best Practices for R/Bioconductor Tool Integration
    • Publishing tools to IUC for Code review
  • Additional Information
    • Handling RData files
    • DESeq2: a model for Galaxy tool integration
    • Tool wrapping with one file
    • Dataset collections for R/Bioconductor tools
    • CDATA
  • Join the Galaxy Community

An Overview of Galaxy Tools

Quick summary

In general, a Galaxy tool consists of one or more files that informs Galaxy how to run a script that was developed to execute a particular analysis. Galaxy tools can be written in a number of languages. This tutorial focuses on integrating tools written in https://cran.r-project.org/, many of which take advantage of bioinformatic/genomic analysis tools avaialable in https://www.bioconductor.org/.

An integrated R/Bioconductor Galaxy tool is defined by four components. The first component is a Tool definition file (or Tool wrapper) in XML format. This file contains seven important parts (described in detail below):

  1. Requirements - Dependencies needed to run the R command
  2. Inputs - One or more input files/parameters given to Custom R file
  3. Outputs - One or more output files generated by the Custom R file
  4. Command - The R command executed by Galaxy via the R interpreter
  5. Tests - Input/output parameters needed to test the R command
  6. Help - Describes the R/Bioconductor tool
  7. Citations - References cited using, for example, a DOI or a BibTeX entry

The second component needed for integrating an R/Bioconductor tool is a Custom R file which establishes the R environment and informs Galaxy what R command(s) to execute. This file contains three important sections (described in detail below):

  1. Header information
  2. Parameter handling
  3. R commands - Code developed to execute the desired analysis

The third component needed for integrating an R/Bioconductor tool is a Tool dependency file in XML format. This file informs Galaxy where to find the required tool dependencies needed to execute the Custom R file.

The fourth component needed for integrating an R/Bioconductor tool is a Test data directory which includes data file(s) intended as input to test the R script and any expected output data file(s).

An example Tool definition file, Custom R file, Tool dependencies file, and Test data directory for an R/Bioconductor tool that enumerates k-mers in a fastq file is available in paper_supp_files. This tool will subsequently be referred to as "Kmer_enumerate" and will be referenced throughout the remaining sections of this guide.

Additional resources for Galaxy tool development can be found here:

  • https://wiki.galaxyproject.org/Admin/Tools/
  • https://wiki.galaxyproject.org/Admin/Tools/AddToolTutorial

Directory structure

The Tool definition file, Custom R file, Tool dependencies file, and Test data directory exist in their own directory (e.g. Kmer_enumerate_tool). The files should be organized using the following directory structure:

Kmer_enumerate_tool/
├── Kmer_enumerate_tool.R # Custom R file
├── Kmer_enumerate_tool.xml # Tool definition file
├── tool_dependencies.xml # Tool dependency file
├── test_data/ # Test data directory
│   ├── Kmer_enumerate_test_input.fq # Example fastq input file
│   ├── Kmer_enumerate_test_output.txt # Example output text file
│   └── ... # Additional inputs or outputs

Galaxy Tool Components

Tool definition file

The Tool definition file informs Galaxy how to handle parameters in the Custom R file. The value given to "name" in the file header appears in the Galaxy tool panel and should be set to a meaningful short title of what the tool does. The example XML code below represents a Galaxy Tool definition file (Kmer_enumerate_tool.xml) to call the "Kmer_enumerate" R/Bioconductor tool. An important feature of the Tool definition file is that the variable names assigned to inputs and outputs in the <command> tag must also be used in the <inputs> and <outputs> tags. Additional examples of Tool definition files can be found in my_r_tool.

<tool id="my_seqTools_tool" name="Kmer enumerate" version="0.1.0">
    <!-- A simple description of the tool that will appear in the tool panel in Galaxy. -->
    <description> counts the number of kmers in a fastq file.</description>
    <!-- Handles exit codes in Galaxy. -->
    <stdio>
        <exit_code range="1:" />
    </stdio>
    <requirements>
        <requirement type="package" version="3.2.1">R</requirement>
        <requirement type="package" version="1.2.0">getopt</requirement>
        <requirement type="package" version="1.6.0">seqTools</requirement>
    </requirements>
    <command><![CDATA[
        Rscript /path/to/Kmer_enumerate_tool/Kmer_enumerate_tool.R --input1 $galaxy_input1 --input2 $galaxy_input2 --output $galaxy_output
    ]]></command>
    <inputs>
        <param type="data" name="galaxy_input1" format="fastq" label="Fastq file" />
        <param type="integer" name="galaxy_input2" value="1" label="Kmer size to count"/>
    </inputs>
    <outputs>
        <data name="galaxy_output" format="txt" />
    </outputs>
    <tests>
        <test>
            <param name="galaxy_input1" value="/galaxy/tools/mytools/test_data/test_input.fq.gz"/>
            <param name="galaxy_input2" value="2"/>
            <output name="galaxy_output" file="/galaxy/tools/mytools/test_data/test_output.txt"/>
        </test>
    </tests>
    <help><![CDATA[
        Reads in fastq file and enumerates kmers.
    ]]></help>
    <citations>
        <citation type="bibtex">
    @Manual{seqtools,
        title = {seqTools: Analysis of nucleotide, sequence and quality content on fastq files.},
        author = {Wolfgang Kaisers},
        year = {2013},
        note = {R package version 1.4.1},
        url = {http://bioconductor.org/packages/seqTools/},
    }
        </citation>
    </citations>
</tool>

Inputs

Each input to the Galaxy Tool definition file is given by a <param> tag in the <inputs> section. The <param> tag is used to define aspects of the input including its datatype, the input name (must match <command> tag), expected format (e.g. fastq), and a label that will appear in the tool form. Complete details regarding all tags available for Galaxy Tool definition files can be found https://docs.galaxyproject.org/en/latest/dev/schema.html.

Outputs

Each output to the Galaxy Tool definition file is given by a <data> tag in the <outputs> section. The <data> tag is used for outputs in much the same way as the <param> tag for inputs. Complete details regarding all tags available for Galaxy Tool definition files can be found https://docs.galaxyproject.org/en/latest/dev/schema.html.

Command

The command section defines the R command that is executed in Galaxy via the R interpreter. The full path to the Galaxy tool must be set in this section. For example: /path/to/Kmer_enumerate_tool/Kmer_enumerate_tool.R. Variable names assigned to inputs and outputs much match what is given to the <param> and <data> tags, respectively.

Requirements

The requirements section defines the tool dependencies needed to run the R script and includes the version of R used to develop the tool.

Tests

The tests section defines the input parameters needed to test the R command and what output to expect as a result. This section is important for tool testing and debugging.

Help

The help section should be used to describe the R/Bioconductor tool and will appear at the bottom of the Galaxy tool form.

Citations

Appropriate references for any components of the R/Bioconductor tool (R packages, test data, etc.) can be provided using the citations section. These citations will appear at the bottom of the tool form in Galaxy. Multiple references can be cited but using multiple <citation> tags, and citations will be automatically formated if using, for example, a DOI or a BibTeX entry.

Custom R file

The Custom R file establishes the R environment and informs Galaxy what R command(s) to execute. The example R code below executes the "Kmer_enumerate" R/Bioconductor tool. Additional examples of Custom R files can be found in my_r_tool.

## Command to run tool:
# Rscript Kmer_enumerate_tool.R --input Kmer_enumerate_test_input.fq --input 2 --output Kmer_enumerate_test_output.txt

# Set up R error handling to go to stderr
options(show.error.messages=F, error=function(){cat(geterrmessage(),file=stderr());q("no",1,F)})

# Avoid crashing Galaxy with an UTF8 error on German LC settings
loc <- Sys.setlocale("LC_MESSAGES", "en_US.UTF-8")

# Import required libraries
library("getopt")
library("seqTools")
options(stringAsfactors = FALSE, useFancyQuotes = FALSE)

# Take in trailing command line arguments
args <- commandArgs(trailingOnly = TRUE)

# Get options using the spec as defined by the enclosed list
# Read the options from the default: commandArgs(TRUE)
option_specification = matrix(c(
  'input1', 'i1', 2, 'character',
  'input2', 'i2', 2, 'integer',
  'output', 'o', 2, 'character'
), byrow=TRUE, ncol=4);

# Parse options
options = getopt(option_specification);

# Print options to stdout
# Useful for debugging
#cat("\n input file: ",options$input1)
#cat("\n kmer: ",options$input2)
#cat("\n output file: ",options$output)

# Read in fastq file and call fastqq to enumerate kmers
fq <- fastqq(options$input1, k = options$input2)

# List kmers and counts from fastqq object
kc <- kmerCount(fq)[, 1]

# Output kmer counts
write.table(kc, file = options$output, quote = F, col.names = F)

cat("\n Successfully counted kmers in fastq file. \n")

Header information

The header section handles error messages, loads required R libraries, and parses options. These requirements are needed for every R/Bioconductor tool being integrated; however, the list of imported R libraries will be specific to each tool. Handling error messages is particularly important because any information sent to standard error (stderr) will be interpreted as a tool error in Galaxy, and the tool execution will fail. Instead, all log messages and debugging statements should be printed to standard out (stdout).

Parameter handling

The parameter handling section defines how parameters are passed to the R command. Each parameter requires a unique name, a unique single letter designation, a flag indicating whether the parameter is required (0=no argument, 1=required, 2=optional), and the parameter type (e.g. character, integer, float). Variable names and values should be printed to stdout, which can be viewed in Galaxy when the tool executes. While not required, these printed statements can assist in debugging and inform whether the R/Bioconductor tool executed correctly.

R commands

This section contains the R command(s) needed to execute the R/Bioconductor tool. The Kmer_enumerate tool uses the R/Bioconductor package https://www.bioconductor.org/packages/release/bioc/html/seqTools.html to read in a fastq file of DNA sequences, count the number of k-mers in the sequences where the value k is supplied by the user, and output the k-mers and their counts.

Custom R scripts should be written so that they are testable and usable outside of Galaxy. Scripts can be tested using the following command line instruction:

Rscript Kmer_enumerate_tool.R --input 'Kmer_enumerate_test_input.fq' --input 2 --output 'Kmer_enumerate_test_output.txt'

Print statements in the Custom R file should be sent to stdout and are shown in the image below. Placing print statements strategically in the Custom R file is useful for interpretting the tool's performance. The following snippet is from the Kmer_enumerate ` Custom R file:

CODE_TOKEN_5

Tool dependency file

TODO

R/Bioconductor dependencies (with exact versions) needed to run tools in Galaxy should be listed in a file called tool_dependencies.xml. Galaxy will automatically set up an R environment with these dependencies.

Test data directory

TODO


How Galaxy Tool Components Work Together

Tool integration into Galaxy

The following steps outline how to integrate the new R/Bioconductor tool into Galaxy after all of the appropriate tool files have been generated:

  1. Assemble the Tool definition file, Custom R file, Tool dependency file, and Test data directory with test data files in a single directory. Update the Tool definition file to provide the full path where appropriate. Alternatively, if the tool directory is saved in the $GALAXY_ROOT/tools/ directory, a relative path is sufficient.

  2. Copy the Tool configuration file tool_conf.xml.sample, if it does not already exist, and save it as tool_conf.xml.

    cp $GALAXY_ROOT/config/tool_conf.xml.sample $GALAXY_ROOT/config/tool_conf.xml

  3. Modify tool_conf.xml by adding a new section under which the integrated tool will exist. The value given to "name" in the Tool configuration file will appear in the tool panel, and the value given to "name" in the Tool definition file will appear under this new section. Provide the full path to the Tool definition file if the tool directory is not in $GALAXY_ROOT/tools/. Otherwise, the relative path is sufficient.

    CODE_TOKEN_6

  4. Restart Galaxy to integrate the modified tool_conf.xml file. The newly integrated tool now appears in the tool panel under the new section name.

Additional details about how to add custom tools to the Galaxy tool panel can be found https://wiki.galaxyproject.org/Admin/Tools/AddToolTutorial. A new command, bioc_tool_init, has recently been added to the https://planemo.readthedocs.org/en/latest/ suite of command-line tools for building and publishing Galaxy tools. The bioc_tool_init command semi-automates generation of the Tool definition file directly from a Custom R file. More about this command is detailed below.

Tool testing

Including test cases for you tools is always a good idea. Plots should be saved as PNG files, as these are easier to test.

Additional details about Galaxy tool testing can be found https://wiki.galaxyproject.org/Admin/Tools/WritingTests

Tool execution

First, any input files (e.g. Kmer_enumerate_test_input.fq) should be uploaded to Galaxy.

The appropriate tool should be selected from the tool panel, and any input files or parameters should be selected.

When the tool executes, input files and parameters are passed by the --input argument in the Tool definition file to the Custom R file. The Custom R file executes and sends the results back to the Tool definition file to be saved according to the value(s) set for --output. The output file is then available for viewing in the Galaxy history panel.

Unlike executing R scripts in the command-line, executing R/Bioconductor tools in Galaxy does not require explicitly setting the working directory. By default, Galaxy creates and executes tools within a job working directory. Therefore, R commands like setwd() and getwd() should be avoided in Custom R files.


Handling R/Bioconductor Dependencies

Dependency resolution for R/Bioconductor tools in Galaxy is made easier by a https://github.com/bioarchive/aRchive_source_code/blob/master/get_galaxy_tool_dependencies.py available through the bioaRchive GitHub repository. This code is under active development, and updates can be found in branch https://github.com/bioarchive/aRchive_source_code/tree/get_tool_deps_fix.

Sample directory structure for each package:

CODE_TOKEN_7

Example package shown here is https://github.com/galaxyproject/tools-iuc/tree/3c4a2b13b0f3a280de4f98f4f5e0dc29e10fc7a0/packages/package_r_crisprseek_1_11_0:

  1. https://github.com/galaxyproject/tools-iuc/blob/3c4a2b13b0f3a280de4f98f4f5e0dc29e10fc7a0/packages/package_r_crisprseek_1_11_0/tool_dependencies.xml for CRISPRSeek

  2. https://github.com/galaxyproject/tools-iuc/blob/3c4a2b13b0f3a280de4f98f4f5e0dc29e10fc7a0/packages/package_r_crisprseek_1_11_0/.shed.yml for CRISPRSeek

Other solutions being actively developed by Galaxy for tool dependency resolution include:

  1. http://conda.pydata.org/docs/get-started.html

  2. https://bioconda.github.io/

  3. https://bioarchive.galaxyproject.org/


Best Practices for R/Bioconductor Tool Integration

Pass command-line arguments with flags

In the example Custom R file Kmer_enumerate_tool.R, the R package getopt is used to add command line arguments with flags. This can also be done in other ways. For example, using CODE_TOKEN_8 and then running CODE_TOKEN_9 which doesn't give you the option of defining flags. Also, the package optparse can be used for a more pythonic style. Check out this blog for more details on how to pass command line arguemnts in R.

Implement error handling

Include the following lines at the top of the Custom R file to send R errors to stderr on Galaxy and to handle a UTF8 error:

CODE_TOKEN_10

Print useful information to stdout

Using cat or print statements in the Custom R file is one way to investigate how inputs and outputs are being passed. These statements will print to stdout (not stderr) during tool execution.

Choose output formats recognized by Galaxy

Output from the Custom R file should be saved in a format which is present in the list of https://wiki.galaxyproject.org/Learn/Datatypes. Galaxy now also saves files as Rdata files, and the feature to visualize them is under development. Once the output is generated from the tool, Galaxy recognizes and displays it in the history panel.

Avoid flooding stdout

It is recommended to suppress messages within the Custom R file while loading R/Bioconductor packages. These loading messages tend to be long and uninformative to Galaxy and make it harder to identify important debugging messages. For example:

CODE_TOKEN_11

Use verbose option for debugging

Toggling verbose outputs in the Custom R file and using the getopt package allows for easier debugging. It is also recommended to set intermittent status messages within the Custom R file when processing large datasets or if implementing a complex analysis workflow. An extended example of implementing verbose output is given in my_r_tool/my_r_tool_verbose.R:

CODE_TOKEN_12

Exit codes for R tools

Let Galaxy do it for you in the command tag

CODE_TOKEN_13

R session running on a local Galaxy

You local machine is going to have the R_HOME enviornment variable set to the default R installation. However, you want to invoke the R installation with the Galaxy tool dependency directory. The tool dependency directory is set within the $GALAXY_ROOT/config/galaxy.ini file.

CODE_TOKEN_14

Conda dependency resolution for R/Bioconductor packages

New feature coming soon.


Additional Information

Handling RData files

Directly using RData files poses security risks for Galaxy. If you must use RData files, consider launching a Docker container or a Virtual Machine to run custom tools which require RData files. RData files are useful for aggregating multiple datasets into a single file. The RData file can then be loaded into an R session via an R script where all the data can be accessed by any R tools. Outputs from these tools can be either RData files or in other formats supported by Galaxy.

DESeq2: a model for Galaxy tool integration

The DESeq2 https://github.com/Bioconductor-mirror/DESeq2/blob/release-3.2/inst/script/deseq2.R, which can be used with Galaxy, is now shipped along with the R/Bioconductor package directly. This is a good example to follow for new R/Bioconductor tool developers who want to make their tool accessible to the Galaxy community.

The way factors are represented in the Custom R file works well with the Galaxy framework. The way factors are represented in the https://github.com/galaxyproject/tools-iuc/blob/master/tools/deseq2/deseq2.xml is extremely functional and allows users to easily choose multiple factors that effect the experiment. There are many R/Bioconductor tools which work with a differential comparison model controlling for multiple factors, which could use this sort of tool form.

Additional example tools integrated into Galaxy:

  1. https://github.com/galaxyproject/tools-devteam/tree/master/tools/cummerbund
  2. https://github.com/galaxyproject/tools-iuc/tree/master/tools/dexseq
  3. minfi

Tool wrapping with one file

Another way to write a Galaxy tool wrapper is to put the Custom R file directly into the XML Tool definition file using the <configfile> tag. Using this approach, developers can avoid having separate Tool definition file and Custom R file files.

<tool id="my_bioc_tool_configfile" name="bioc tool example" version="1.0">
    <description>This R/Bioc tool has script in configfile<

镜像拉取方式

您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。

轩辕镜像加速拉取命令点我查看更多 bioc-galaxy-integration 镜像标签

docker pull docker.xuanyuan.run/nitesh1989/bioc-galaxy-integration:<标签>

使用方法:

  • 登录认证方式
  • 免认证方式

DockerHub 原生拉取命令

docker pull nitesh1989/bioc-galaxy-integration:<标签>

轩辕镜像配置手册

按平台快速找到配置文档

一键安装

一键安装 Docker

Linux Docker 一键安装

AI

用 AI 使用轩辕镜像

agents.md · AI 对话 · 提示词

Docker

登录仓库拉取

登录认证 · 私有仓库

专属域名拉取

免登录 · 高速拉取

Linux

Docker 镜像配置

Windows / Mac

Docker Desktop 配置

MacOS OrbStack

OrbStack 容器

Apple Container

macOS 原生容器

Docker Compose

Compose 项目配置

NAS

群晖

Synology 配置

飞牛

fnOS 镜像配置

绿联

绿联 NAS

威联通

QNAP 配置

极空间

极空间 NAS

Unraid

Unraid NAS

企业仓库

其他仓库

ghcr · Quay · nvcr

Harbor 镜像源

Proxy Repository 对接

Portainer 镜像源

Registries 配置

Nexus 镜像源

Docker Proxy 缓存

开发工具

Dev Containers

VS Code 开发容器

Podman

Podman 配置指南

Singularity / Apptainer

HPC 科学计算容器

Kubernetes

K8s Containerd

Kubernetes · Containerd

K3s

轻量级集群

面板 / 网络

爱快路由

iKuai 镜像加速

宝塔面板

一键配置镜像源

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

镜像拉取常见问题

功能

版本功能对比

功能对比 · 版本选择

支持的镜像仓库

Docker Hub · GCR · GHCR

新手拉取配置

登录 · 专属域名 · 配置

docker search 限制

专属域名 · Hub 搜索

不支持 push

仅支持 pull · 不支持

拉取速度原因

带宽 · 缓存 · 冷热镜像

错误码

402 与流量用尽

402 · 流量包 · 充值

401 认证失败

401 · docker login

manifest unknown

标签错误 · 镜像不存在

410 Gone 排查

410 · Docker 升级

429 限流

免费版 · 专业版 · 企业版 · 请求频率

其他报错

DNS 超时

DNS 解析 · 网络超时

TLS 证书失败

no matching manifest(架构)

账号

失败是否计费

manifest · blob · 计费

申请开发票(企业 / 个人)

企业 · 个人 · 工单

修改登录密码

网站 · 仓库 · 重置

注销账户

工单 · 数据 · 注销

原理

mirrors 不生效

daemon.json · 重启

去掉域名前缀

docker tag · 重命名

指定架构拉取

ARM64 · AMD64 · 多架构

latest 与「最新」

digest · 版本号 · 标签

查看全部问题→

用户好评

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

用户头像

oldzhang

运维工程师

Linux服务器

5

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

轩辕镜像
镜像详情
...
nitesh1989/bioc-galaxy-integration
定价查看流量套餐与价格
博客Docker 镜像公告与技术博客
专业版 · 高速稳定拉取镜像
高速镜像下载·在线技术支持·99.95% SLA 保障·付费会员免广告
50GB 仅 ¥7/年
专业版 · 高速稳定拉取镜像
50GB 仅 ¥7/年
高速镜像下载·在线技术支持·99.95% SLA 保障·付费会员免广告
用户协议·隐私政策·增值电信业务经营许可证:浙B2-20261007·©2024-2026 源码跳动©2024-2026 杭州源码跳动科技有限公司·商务合作:点击复制邮箱

更多 bioc-galaxy-integration 镜像推荐

biocontainers/biocontainers logo

biocontainers/biocontainers

biocontainers
BioContainers是社区驱动的生物信息学容器项目,基于Docker和rkt技术,提供标准化的生物信息学软件容器,支持基因组学、蛋白质组学等领域,解决软件部署、依赖管理及分析可重复性问题,可集成到本地、云或HPC环境的工作流中。
22 次收藏10万+ 次下载
2 年前更新
biocontainers/isee-galaxy logo

biocontainers/isee-galaxy

biocontainers
暂无描述
4千+ 次下载
4 年前更新
pecan/model-biocro-0.95 logo

pecan/model-biocro-0.95

pecan
暂无描述
5万+ 次下载
1 天前更新
biocontainers/galaxy-k8s-runtime logo

biocontainers/galaxy-k8s-runtime

biocontainers
PhenoMeNal项目的首个运行时Docker镜像,用于在容器编排器中部署Galaxy——一个支持数据密集型生物医学研究的开放网络平台,提供数据溯源管理、计算方法上下文捕获及交互式分析文档功能。
647 次下载
7 年前更新
biocontainers/bioconda-backup logo

biocontainers/bioconda-backup

biocontainers
暂无描述
705 次下载
5 年前更新
newrelic/newrelic-pixie-integration logo

newrelic/newrelic-pixie-integration

newrelic
暂无描述
500万+ 次下载
1 年前更新

查看更多 bioc-galaxy-integration 相关镜像