Rosetta 一:手把手教你用Linux安装Rosetta(全网最简洁)

文章目录

  • [1. Rosetta 介绍](#1. Rosetta 介绍)
  • 2.下载
  • [2. Rosetta 安装](#2. Rosetta 安装)
  • [3. 验证安装](#3. 验证安装)

1. Rosetta 介绍

很久很久之前就对Rosetta有所耳闻,有一篇文章叫做denovo protein design,说的就是用rosetta来设计蛋白质。

rosetta是david baker团队设计的软件,早期只是一个蛋白质结构预测软件,但是随着软件的更新和迭代,现在已经可以用来处理很多蛋白质设计的问题了。rosetta的官网是:

https://www.rosettacommons.org/

rosetta官网的介绍:

复制代码
Overview
The Rosetta software suite includes algorithms for computational modeling and analysis of protein structures. It has enabled notable scientific advances in computational biology, including de novo protein design, enzyme design, ligand docking, and structure prediction of biological macromolecules and macromolecular complexes.

Rosetta is available to all non-commercial users for free and to commercial users for a fee. License Rosetta to get started.

Rosetta development began in the laboratory of Dr. David Baker at the University of Washington as a structure prediction tool but since then has been adapted to solve common computational macromolecular problems.

Development of Rosetta has moved beyond the University of Washington into the members of RosettaCommons, which include government laboratories, institutes, research centers, and partner corporations.

The Rosetta community has many goals for the software, such as:
Understanding macromolecular interactions
Designing custom moleculesDeveloping efficient ways to search conformation and sequence space
Finding a broadly useful energy functions for various biomolecular representationsrosetta

rosetta中文版本的介绍

rosetta官网图片:

rosetta的相关论文,从2015年开始

2.下载

直接使用命令git clone https://github.com/RosettaCommons/rosetta.git或者按照下面的步骤一步一步来:

首先我们打开rosetta的网站,然后按照图片上的操作来点击。

这里我们下载学术版本

根据箭头指引找到地址,然后使用下面的命令下载,或者直接下载压缩包

powershell 复制代码
git clone https://github.com/RosettaCommons/rosetta.git

2. Rosetta 安装

本次安装是在Ubuntu服务器上安装,如果你是下载的压缩包,首先需要把安装包上传到服务器上,我是直接git clone的。

下面我们就开始安装。

第二步,进入文件夹:

powershell 复制代码
cd rosetta/source

第三步,执行安装指令:

powershell 复制代码
python3 ./scons.py -j35 mode=release bin #使用35个线程来编译,根据系统的 CPU 核心数调整这个参数以提高编译速度

运行之后等着吧,据说35个线程需要半个小时,数据源自Rosetta安装攻略:开启蛋白质研究之门

完成,没记确切时间,大概30-60分钟吧

以上指令需要加上sudo来获取root权限,这样才能有执行文件的权限。
如果失败还可以用docker安装,省去上面的所有步骤,直接

powershell 复制代码
docker pull rosettacommons/rosetta

或者使用conda 安装

见官网https://github.com/RosettaCommons/rosetta

3. 验证安装

powershell 复制代码
/rosetta/rosetta.source.release-371/main/source$ ./bin/AbinitioRelax.default.linuxgccrelease

安装完成,底下是正常的错误

相关推荐
我没有开挂14 分钟前
旧 docker 版本通过 nvkind 搭建虚拟多节点 gpu 集群的坑
运维·docker·容器
qq_3392822315 分钟前
centos中libc.so.6No such file的解决方式
linux·运维·centos
leoufung20 分钟前
ECPF 简介
linux·网络·kernel
小鸡,啄米42 分钟前
centos9安装docker 配置docker代理
运维·docker·容器
水银嘻嘻1 小时前
12 web 自动化之基于关键字+数据驱动-反射自动化框架搭建
运维·前端·自动化
在肯德基吃麻辣烫1 小时前
Netdata在Ubuntu环境下的安装与配置:构建实时系统监控与性能分析平台
linux·运维·ubuntu
国际云,接待2 小时前
云服务器的运用自如
服务器·架构·云计算·腾讯云·量子计算
不念霉运2 小时前
Gitee DevOps:中国企业数字化转型的“本土化加速器“
运维·gitee·团队开发·代码规范·devops·代码复审
安迪小宝2 小时前
6 任务路由与负载均衡
运维·python·celery
遇见火星2 小时前
jenkins流水线常规配置教程!
运维·docker·jenkins