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

pegi3s/pss-genome-fs

pegi3s

GenomeFastScreen: a Compi pipeline for Fast Screening of PSS (Positively Selected Sites).

下载次数: 0状态:社区镜像维护者:pegi3s仓库类型:镜像最近更新:5 个月前
让 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 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。

镜像简介
下载命令
镜像标签列表与下载命令
轩辕镜像,快一点,稳很多。
点击查看

This image belongs to a larger project called Bioinformatics Docker Images Project (http://pegi3s.github.io/dockerfiles)

(Please note that the original software licenses still apply)

GenomeFastScreen https://img.shields.io/badge/license-MIT-brightgreen](https://github.com/pegi3s/pss-genome-fs) https://img.shields.io/badge/hub-docker-blue](https://hub.docker.com/r/pegi3s/pss-genome-fs) https://img.shields.io/badge/hub-compi-blue]([***]

GenomeFastScreen is a Compi pipeline that automates the process of identifying genes that likely show PSS, and thus, should be studied in detail, starting from a set of FASTA files, one per genome, containing all coding sequences. To do this, it uses internally our previous FastScreen pipeline1 (available here). GenomeFastScreen automatically removes problematic sequences such as those showing ambiguous positions and identifies orthologous gene sets. It is also possible to identify the orthologous genes in an external reference species, which is useful to compare results across different species, or conduct gene ontology enrichment analyses when there is no data for the species being analysed. A Docker image is available for this pipeline in https://hub.docker.com/r/pegi3s/pss-genome-fs.

GenomeFastScreen repositories

  • https://github.com/pegi3s/pss-genome-fs
  • https://hub.docker.com/r/pegi3s/pss-genome-fs
  • CompiHub

Using the GenomeFastScreen image in Linux

In order to use the GenomeFastScreen image, create first a directory in your local file system (working_dir in the example) with the following structure:

bash
working_dir/
├── input
│   ├── 1.fasta
│   ├── 2.fasta
│   ├── .
│   ├── .
│   ├── .
│   └── n.fasta
├── global
│   └── global-reference-file.fasta
└── pss-genome-fs.params

Where:

  • The input FASTA files to be analized must be placed in the working_dir/input directory.
  • The global reference FASTA file is located at working_dir/global/global-reference-file.fasta.
  • The Compi parameters file is located at working_dir/pss-genome-fs.params.

Using such folder structure, the Compi parameters file must look like:

input_data_dir=input
reference_file=1.fasta
blast_type=tblastx
global_reference_file=global/global-reference-file.fasta

Where:

  • input_data_dir is set to input, which is the name of the directory that contains the input FASTA files to be analyzed (it is possible to use a different name than input as long as it is properly set in the Compi parameters file).
  • reference_file is set to 1.fasta, which is the name input FASTA file to use as reference for finding the orthologous gene sets.
  • blast_type is set to the type of BLAST to use for finding the orthologous gene sets (either blastn or tblastx).
  • global_reference_file is set to the location (relative to the working_dir directory) of the global reference FASTA file. Note that this file is optional and it can be ommited. When provided, the last task of the pipeline (orthologs-reference-species) is executed using it in order to identify the orthologous genes in the short lists produced by FastScreen.

Once this structure and files are ready, you should run and adapt the following commands to run the entire pipeline. Here, you only need to set WORKING_DIR to the right path in your local file system and COMPI_NUM_TASKS to the maximum number of parallel tasks that can be run.

bash
WORKING_DIR=/path/to/pss-genome-fs/working_dir/
COMPI_NUM_TASKS=8

mkdir -p ${WORKING_DIR}/logs

docker run --rm -v /tmp:/tmp -v /var/run/docker.sock:/var/run/docker.sock -v ${WORKING_DIR}:/working_dir --rm pegi3s/pss-genome-fs --logs /working_dir/logs --params /working_dir/pss-genome-fs.params --num-tasks ${COMPI_NUM_TASKS} -- --host_working_dir ${WORKING_DIR} --compi_num_tasks ${COMPI_NUM_TASKS}

The following section explains the main pipeline outputs as well as how to proceed with the analysis of the results.

Pipeline outputs

The main pipeline outpus created in the working_dir are:

  • /orthologs: this directory contains one FASTA file, one for each gene, with the sequences from the analysed genomes (problematic sequences such as those containing in-frame stop codons and ambiguous positions are excluded).
  • /fast-screen: results generated by the FastScreen pipeline after analyzing all genes. The main output from this directory is the short_list file, which contains the names of the FASTA files that likely show evidence for PSS and that have been copied to the /short_list directory. Six other output files are generated in this directory:
    • FUBAR_short_list: a file containing the names of the files where evidence for positive selection has been found by FUBAR.
    • to_be_reevaluated_by_codeML: a file containing the names of the files that where re-evaluated by CodeML.
    • codeML_random_list: a file containing the names of the files from which a random sequence sample was taken because they were too large to be analysed by CodeML.
    • codeML_short_list: a file containing the names of the files where PSS were detected by CodeML model M2a.
    • negative_list: a file containing the names of the files where no evidence for positive selection was found by either FUBAR or CodeML.
    • files_requiring_attention: a file containing the names of the files that could not be processed without error (usually because they have in frame stop codons that were introduced during the nucleotide alignment step). These files are copied to the /files_to_re_run directory each time the fast-screen step is executed.
  • /short_list_dir: contains the FASTA files that likely show evidence for PSS and, therefore, should be analysed in detail.
  • /files_to_re_run: this directory contains the FASTA files listed in the /fast-screen/files_requiring_attention file after each execution of the fast-screen step. The following subsection explains how to re-analyze this files.
  • orthologous_gene_list: a file containing the orthologous genes in the external reference species.
  • orthologous_codeML_short_list: file containing the orthologous gene names listed in the /fast-screen/codeML_short_list.
  • orthologous_FUBAR_short_list: file containing the orthologous gene names listed in the /fast-screen/FUBAR_short_list.
  • orthologous_gene_short_list: file containing the orthologous gene names listed in the /fast-screen/short_list.

Note that the orthologous_* lists are only created when the global reference file is provided as parameter to the pipeline.

Re-analyzing the files requiring attention

After running the entire pipeline, the /files_to_re_run directory contains the FASTA files listed in the /fast-screen/files_requiring_attention file. These files could not be analyzed by the FastScreen pipeline after each execution of the fast-screen step, usually because they have in frame stop codons that were introduced during the nucleotide alignment step.

To re-analyze them, you should first fix the problems and put the updated FASTA files in the same directory. Then, you should execute only the fast-screen step by running the following command:

bash
docker run --rm -v /tmp:/tmp -v /var/run/docker.sock:/var/run/docker.sock -v ${WORKING_DIR}:/working_dir --rm pegi3s/pss-genome-fs --logs /working_dir/logs --params /working_dir/pss-genome-fs.params --num-tasks ${COMPI_NUM_TASKS} --single-task fast-screen -- --host_working_dir ${WORKING_DIR} --compi_num_tasks ${COMPI_NUM_TASKS}

This command simply introduces the --single-task fast-screen parameter to ask Compi to only run this step. When this step finishes, the new results will be added to the existing ones in the /fast-screen and, like before, the /files_to_re_run directory will contain the FASTA files that could not be analzyed in this new run.

Once you are done analyzing the problematic files, you can re-run the final two steps of the pipeline to copy the FASTA files that likely show evidence for PSS and to re-generate the orthologous gene lists. To do this, you should execute the following command:

bash
docker run --rm -v /tmp:/tmp -v /var/run/docker.sock:/var/run/docker.sock -v ${WORKING_DIR}:/working_dir --rm pegi3s/pss-genome-fs --logs /working_dir/logs --params /working_dir/pss-genome-fs.params --num-tasks ${COMPI_NUM_TASKS} --from get-short-list-files -- --host_working_dir ${WORKING_DIR} --compi_num_tasks ${COMPI_NUM_TASKS}

This command uses the --from get-short-list-files parameter to ask Compi to run this and the subsequent orthologs-reference-species step.

Test data

The sample data is available https://github.com/pegi3s/pss-genome-fs/raw/master/resources/pss-genome-fs.zip. Download, uncompress it and move to the pss-genome-fs directory, where you will find:

  • A directory called working_dir, that contains the structure described previously.
  • A file called run.sh, that contains the following commands (where you should adapt the WORKING_DIR path) to test the pipeline:
bash
WORKING_DIR=/path/to/pss-genome-fs/working_dir/
COMPI_NUM_TASKS=8

mkdir -p ${WORKING_DIR}/logs

docker run --rm -v /tmp:/tmp -v /var/run/docker.sock:/var/run/docker.sock -v ${WORKING_DIR}:/working_dir --rm pegi3s/pss-genome-fs --logs /working_dir/logs --params /working_dir/pss-genome-fs.params --num-tasks ${COMPI_NUM_TASKS} -- --host_working_dir ${WORKING_DIR} --keep_temporary_dir --compi_num_tasks ${COMPI_NUM_TASKS}

Running times

  • ≈ 158 minutes - 16 parallel tasks - Ubuntu 18.04.3 LTS, 6 cores (AMD Ryzen 5 2600 @ 3.40GHz),16GB of RAM and SSD disk.
  • ≈ 760 minutes - 10 parallel tasks - Ubuntu 16.04.3 LTS, 4 cores (Intel(R) Core(TM) i5-5200U CPU @ 2.20GHz), 16GB of RAM and SSD disk.

For Developers

Building the Docker image

To build the Docker image, compi-dk is required. Once you have it installed, simply run compi-dk build from the project directory to build the Docker image. The image will be created with the name specified in the compi.project file (i.e. pegi3s/pss-genome-fs:latest). This file also specifies the version of compi that goes into the Docker image.

References

  • H. López-Fernández; C. P. Vieira; P. Ferreira; P. Gouveia; F. Fdez-Riverola; M. Reboiro-Jato; J. Vieira (2021) On the identification of clinically relevant bacterial amino acid changes at the whole genome level using Auto-PSS-Genome. Interdisciplinary Sciences: Computational Life Sciences. Volume 13, pp. 334–343. https://img.shields.io/badge/DOI-10.1007%2Fs***--021--00439--2-blue](https://doi.org/10.1007/s***-021-00439-2)
  • H. López-Fernández; C.P. Vieira; F. Fdez-Riverola; M. Reboiro-Jato; J. Vieira (2020) Inferences on Mycobacterium leprae host immune response escape and antibiotic resistance using genomic data and GenomeFastScreen. 14th International Conference on Practical Applications of Computational Biology & Bioinformatics: PACBB 2020. L'Aquila, Italy. 7 - October https://img.shields.io/badge/DOI-https%3A%2F%2Fdoi.org%2F10.1007%2F978--3--030--54568--0__5-green](https://doi.org/10.1007/978-3-030-54568-0_5)
  • H. López-Fernández; P. Duque; N. Vázquez; F. Fdez-Riverola; M. Reboiro-Jato; C.P. Vieira; J. Vieira (2019) Inferring Positive Selection in Large Viral Datasets. 13th International Conference on Practical Applications of Computational Biology & Bioinformatics: PACBB 2019. Ávila, Spain. 26 - June https://img.shields.io/badge/DOI-10.1007%2F978--3--030--23873--5__8-green](https://doi.org/10.1007/978-3-030-23873-5_8)

镜像拉取方式

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

轩辕镜像加速拉取命令点我查看更多 pss-genome-fs 镜像标签

docker pull docker.xuanyuan.run/pegi3s/pss-genome-fs:<标签>

使用方法:

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

DockerHub 原生拉取命令

docker pull pegi3s/pss-genome-fs:<标签>

轩辕镜像配置手册

按平台快速找到配置文档

一键安装

一键安装 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访问体验非常流畅,大镜像也能快速完成下载。"

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

更多 pss-genome-fs 镜像推荐

biocontainers/genometools logo

biocontainers/genometools

biocontainers
暂无描述
2 次收藏1万+ 次下载
6 年前更新
ensemblorg/genome-search logo

ensemblorg/genome-search

ensemblorg
暂无描述
528 次下载
7 年前更新
biocontainers/genometools-common logo

biocontainers/genometools-common

biocontainers
暂无描述
9.1千+ 次下载
6 年前更新
biocontainers/genometester logo

biocontainers/genometester

biocontainers
暂无描述
9千+ 次下载
6 年前更新
mgibio/genome_perl_environment logo

mgibio/genome_perl_environment

mgibio
暂无描述
5.2千+ 次下载
2 年前更新
genomenexus/genome-nexus-vep logo

genomenexus/genome-nexus-vep

genomenexus
Genome Nexus VEP是围绕Ensembl的Variant Effect Predictor (VEP) CLI工具的REST包装器,需连接Ensembl提供的homo_sapiens_core数据库并配置MySQL环境变量(MYSQL_USER、MYSQL_PASSWORD等),通过8080端口提供服务;标签遵循{VEP_VERSION}-{GENOME_NEXUS_VEP_VERSION}规则,slim版不支持PolyPhen、SIFT预测及AlphaMissense评分。
5万+ 次下载
1 年前更新

查看更多 pss-genome-fs 相关镜像