https://github.com/yaoyinying/rosettapy
A Python utility for wrapping Rosetta command line tools.
https://github.com/yaoyinying/rosettapy
bioinformatics bioinformatics-tool biology protein protein-structure python python3 rosetta
Last synced: 6 months ago
JSON representation
A Python utility for wrapping Rosetta command line tools.
- Host: GitHub
- URL: https://github.com/yaoyinying/rosettapy
- Owner: YaoYinYing
- License: mit
- Created: 2024-09-23T09:18:41.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-18T13:59:25.000Z (12 months ago)
- Last Synced: 2024-10-19T13:21:32.114Z (12 months ago)
- Topics: bioinformatics, bioinformatics-tool, biology, protein, protein-structure, python, python3, rosetta
- Language: Python
- Homepage:
- Size: 699 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
- Support: SUPPORT.md
Awesome Lists containing this project
README
# RosettaPy
A Python Utility for Wrapping Rosetta Macromolecural Modeling Suite.
[](https://pypi.org/project/RosettaPy/)
[](https://pypi.org/project/RosettaPy/)> [!CAUTION]
> `RosettaPy` requires `Rosetta` [compiled and installed](https://docs.rosettacommons.org/docs/latest/build_documentation/Build-Documentation).
> _Before running `RosettaPy`, please **DO** make sure that you have obtained the correct license from Rosetta Commons._
> _For more details, please see this [page](https://rosettacommons.org/software/download/)._> [!IMPORTANT]
> **`RosettaPy`** is NOT [`PyRosetta`](http://www.pyrosetta.org/).
> You probably don't need to install this package if you are looking for `PyRosetta`.
> Please see this [page](http://www.pyrosetta.org/).## License

## CI Status
[](https://github.com/YaoYinYing/RosettaPy/actions/workflows/CI.yml)
[](https://github.com/YaoYinYing/RosettaPy/actions/workflows/RosettaCI.yml)
[](https://github.com/YaoYinYing/RosettaPy/actions/workflows/dependabot/dependabot-updates)
[](https://github.com/YaoYinYing/RosettaPy/actions/workflows/lint_badge.yml)
[](https://github.com/YaoYinYing/RosettaPy/actions/workflows/CI_Container.yml)
[](https://results.pre-commit.ci/latest/github/YaoYinYing/RosettaPy/main)## Quality
[](https://codecov.io/gh/YaoYinYing/RosettaPy)
[](https://www.codefactor.io/repository/github/yaoyinying/rosettapy)
[](https://codeclimate.com/github/YaoYinYing/RosettaPy/maintainability)
[](https://app.codacy.com/gh/YaoYinYing/RosettaPy/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
[](https://github.com/YaoYinYing/pylint-github-action)
[](https://github.com/YaoYinYing/RosettaPy)[](https://app.deepsource.com/gh/YaoYinYing/RosettaPy/)
[](https://app.deepsource.com/gh/YaoYinYing/RosettaPy/)[](https://github.com/psf/black)
[](https://github.com/pylint-dev/pylint)
[](https://pycqa.github.io/isort/)
[](https://github.com/asottile/pyupgrade)
[](https://github.com/hadialqattan/pycln)
[](https://github.com/PyCQA/flake8)
[](https://github.com/PyCQA/autoflake)## Release
[](https://github.com/YaoYinYing/RosettaPy/releases)
[](https://github.com/YaoYinYing/RosettaPy/releases)[](https://pypi.org/project/RosettaPy/)
[](https://pypi.org/project/RosettaPy/#history)
[](https://pypi.org/project/RosettaPy/)
[](https://pypi.org/project/RosettaPy/)## Overview
`RosettaPy` is designed to handle the complexities of locating, composing and running Rosetta binaries within Python.
The module includes:| Key Component | Description |
| ------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Rosetta** | A command-line wrapper for Rosetta that simplifies the setting up and running commands. |
| **RosettaScriptsVariableGroup** | Represents variables used in Rosetta scripts, facilitating their management and use. |
| **RosettaEnergyUnitAnalyser** | Analyzes and interprets Rosetta output score files, providing a simplified interface for result analysis. |
| **Example Applications** | Demos of specific Rosetta applications like PROSS, FastRelax, RosettaLigand, Supercharge, MutateRelax, and Cartesian ddG for different computational biology tasks. |## Installation
One can install `RosettaPy` directly from PyPI:
```bash
pip install RosettaPy -U
```## Getting Started
### Building Rosetta Workflow from scratch
1. Import necessary modules
```python
from RosettaPy import Rosetta, RosettaScriptsVariableGroup, RosettaEnergyUnitAnalyser
from RosettaPy.node import RosettaContainer, MpiNode, Native
```2. Create a `Rosetta` proxy with parameters
```python
rosetta = Rosetta(
# a binary name for locating the real binary path
bin="rosetta_scripts",# flag file paths (please do not use `@` prefix here)
flags=[...],# command-line options
opts=[
"-in:file:s", os.path.abspath(pdb),
"-parser:protocol", "/path/to/my_rosetta_scripts.xml",
],# output directory
output_dir=...,# save pdb and scorefile together
save_all_together=True,# a job identifier
job_id=...,# silent the rosetta logs from stdout
verbose = False,
)
```RosettaPy uses `Native` node by default.
It has to be noted that `Native` and `MpiNode` are only available on Linux and macOS.
For Windows users, please refer to the `Full Operating System Compatibility Table` and `Getting Windows Ready for Rosetta Runs` sections below.3. Compose rosetta tasks matrix as inputs
```python
tasks: list[Dict[str, Any]] = [ # Create tasks for each variant
{
"rsv": RosettaScriptsVariableGroup.from_dict(
{
"var1": ...,
"var2": ...,
"var3": ...,
}
),
"-out:file:scorefile": f"{variant}.sc",
"-out:prefix": f"{variant}.",
}
for variant in variants
]# pass task matrix to rosetta.run as `inputs`
rosetta.run(inputs=tasks)
```4. Using structure labels (`-nstruct`)
Create distributed runs with structure labels (`-nstruct `) is feasible. For local runs without MPI or container, `RosettaPy` implemented this feature by ignoring the build-in job distributer of Rosetta, canceling the default output structure label, attaching external structural label as unique job identifier to each other, then run these tasks only once for each. This enables massive parallalism.
```python
options=[...] # Passing an optional list of options that will be used to all structure models
rosetta.run(nstruct=nstruct, inputs=options) # input options will be passed to all runs equally
```5. Call Analyzer to check the results
```python
analyser = RosettaEnergyUnitAnalyser(score_file=rosetta.output_scorefile_dir)
best_hit = analyser.best_decoy
pdb_path = os.path.join(rosetta.output_pdb_dir, f'{best_hit["decoy"]}.pdb')# Ta-da !!!
print("Analysis of the best decoy:")
print("-" * 79)
print(analyser.df.sort_values(by=analyser.score_term))print("-" * 79)
print(f'Best Hit on this run: {best_hit["decoy"]} - {best_hit["score"]}: {pdb_path}')
```One can also build a customized analyser by re-using the `analyser.df` Dataframe.
## Being Like a Pro
Here are some tips for advanced usages to adjust the workflow in respect to behaviors of some Rosetta workflows and applications.
### Isolation Mode
Some Rosetta Apps (Superchange, Cartesian ddG, etc.) may produce files at their working directory, and this may not threadsafe if one runs multiple jobs in parallel in the same directory. In this case, the `isolation` flag can be used to create a temporary directory for each run.
```diff
Rosetta(
...
+ isolation=True,
)
```### Running Node Configurations
There are various node configurations that can be used to run Rosetta jobs.
#### Full Operating System Compatibility Table
| Node | Linux | macOS | Windows | Architectures | Prerequisite |
| ---------------: | :---: | :---: | :-----: | ------------------- | ------------------------------------------------------ |
| Native | ✅[^1] | ✅ | ❌ | x86_64, aarch64 | Rosetta compiled. |
| MpiNode | ✅[^1] | ✅ | ❌ | x86_64, aarch64 | Rosetta compiled with `extras=mpi` flag; MPI installed |
| RosettaContainer | ✅ | ✅[^3] | ✅ | x86_64 | Docker or Docker Desktop installed and launched. |
| WslWrapper[^2] | ❌ | ❌ | ✅[^1] | x86_64, aarch64[^4] | WSL2, with Rosetta built and installed on. |[^1]: For building Rosetta upon aarch64, please refer to this [example](https://github.com/YaoYinYing/BuildRosetta_aarch64/blob/main/README.md).
[^2]: Windows Subsystem for Linux(WSL) installed and switched to WSL2, with Rosetta built and installed on.
[^3]: Translated with Rosetta2 framework if runs on Apple Silicon Mac, which may cause worthy slow performance.
[^4]: It's theoretically possible yet no testing is done at all.#### MPI, or not MPI?
This Flow chart shows how `RosettaPy` decides whether to use MPI or not.
[](https://mermaid.live/edit#pako:eNpdku9qwjAUxV8l5JMDfYHCNmal4pgy3EDYOuTa3tqwNglp4hit7778WxWbL83vHE7ObdPTQpRIE1o14qeoQWnyss05sc_T51Z0qDV8hf18sjWcbKz9LucBpX1aY_FN1q-r8z9b9FKJmh2Y3reSPXoelGxiOnTwPoOmcymOLkf6rkyIjueT2exhWKL2Zw5kHmt4vAHNThZmV5AMa8mCd3mJCf44Siq4BsZRDSS9lndds1MgZRTidD50NbHd9nAC1sChwdDSK4tr2_ONLYzopWz8NKGlSxibR-btQ6ztFp3SFlULrLQ_p3fenOoaW8xpYl9LrMA0Oqc5P1srGC3efnlBE23Dp1QJc6xpUrnUKTWyBI0LBkcF7Ugl8A8hLnssmRZqHa6DvxXnP8hGq3w)Before `RosettaContainer` or `WslWrapper` instance is passed as `run_node`, the node itself checks if MPI-related environment is ready. Also, the flag `prohibit_mpi` will force to disable MPI if it is `True`.
#### Reallocating CPU Cores
By default, `RosettaPy` uses `Native` node with 4 CPU cores, representing the local machine with Rosetta installed.
To specify the number of cores, use the `nproc` parameter.```diff
Rosetta(
...
+ run_node=Native(nproc=8)
)
```#### Native MPI Support for local builds of Rosetta
**Requires MPI(mpich, openmpi, etc.) installed.**
If one wish to run with Rosetta that was installed on local and built with `extra=mpi` flag via MPI,
consider using `MpiNode` instance as `run_node` instead. This enables native parallelism feature with MPI.```diff
Rosetta(
...
+ run_node=MpiNode(nproc=10),
)
```Also, if one wishes to use MpiNode with Slurm task manager, specifying `run_node` to `MpiNode.from_slurm()` may help
with fetching the node info from the environment._This is an experimental feature that has not been seriously tested in production._
```diff
Rosetta(
...
+ run_node=MpiNode.from_slurm(),
)
```#### Rosetta Container
If one wishes to use the Rosetta container as the task worker, (WSL + Docker Desktop, for example)
setting a `run_node` option as `RosettaContainer` class would tell the proxy to use it.
This image names can be found at
Note that the paths of each task will be mounted into the container and rewritten to the container's path.
This rewriting feature may fail if the path is mixed with complicated expressions as options.Non-mpi image:
```diff
Rosetta(
...
+ run_node=RosettaContainer(image="rosettacommons/rosetta:latest"),
)
```or MPI image:
```diff
Rosetta(
...
+ run_node=RosettaContainer(image="rosettacommons/rosetta:mpi"),
+ use_mpi=True, # one still needs to enable MPI by this flag if MPI is required.
)
```or non-MPI runs with MPI image:
```diff
Rosetta(
...
+ run_node=RosettaContainer(image="rosettacommons/rosetta:mpi", prohibit_mpi=True), # override MPI setting
)
```During the workflow processing, one will see some active containers at `Containers` tab of `Docker Desktop`, if `Docker Desktop` is installed. Also, typing `docker ps` in the terminal will show them too. Each of these containers will be destructed immediately after its task finished or stopped.
#### Picking Node Accordingly
One can still pick the desire node quickly by calling `node_picker` method.
```diff
from RosettaPy.node import node_picker, NodeHintTnode_hint: NodeHintT = 'docker_mpi'
Rosetta(
...
+ run_node=node_picker(node_type=node_hint),
+ use_mpi=...,
)
```Where `node_hint` is one of `["docker", "docker_mpi", "mpi", "wsl", "wsl_mpi", "native"]`
#### Fetching additional scripts/database files from the Rosetta GitHub repository
> [!CAUTION]
> _AGAIN, before using this tool, please **DO** make sure that you have licensed by Rosetta Commons._
> _For more details of licensing, please check this [page](https://rosettacommons.org/software/download/)._This tool is helpful for fetching additional scripts/database files/directories from the Rosetta GitHub repository.
For example, if one's local machine does not have Rosetta built and installed, and wishes to check some files from `$ROSETTA3_DB` or use some helper scripts at `$ROSETTA_PYTHON_SCRIPTS` before run Rosetta tasks within Rosetta Container, one can use this tool to fetch them into the local harddrive by doing a minimum cloning.
The `partial_clone` function do will do the following steps:
1. Check if Git is installed and versioned with `>=2.34.1`. If not satisfied, raise an error to notify the user to upgrade git.
2. Check if the target directory is empty or not and the repository is not cloned yet.
3. Setup partial clone and sparse checkout stuffs.
4. Clone the repository and subdirectory to the target directory.
5. Setup the environment variable with the target directory.```python
import os
from RosettaPy.utils import partial_clonedef clone_db_relax_script():
"""
A example for cloning the relax scripts from the Rosetta database.This function uses the `partial_clone` function to clone specific relax scripts from the RosettaCommons GitHub repository.
It sets an environment variable to specify the location of the cloned subdirectory and prints the value of the environment variable after cloning.
"""
# Clone the relax scripts from the Rosetta repository to a specified directory
partial_clone(
repo_url="https://github.com/RosettaCommons/rosetta",
target_dir="rosetta_db_clone_relax_script",
subdirectory_as_env="database",
subdirectory_to_clone="database/sampling/relax_scripts",
env_variable="ROSETTA3_DB",
)# Print the value of the environment variable after cloning
print(f'ROSETTA3_DB={os.environ.get("ROSETTA3_DB")}')```
#### Getting Windows Ready for Rosetta Runs
Thanks for Windows Subsystem for Linux(WSL), we provide two simple ways to run Rosetta on Windows.
One must enable `Windows Subsystem for Linux`, then switch to `WSL2` following the instructions on this [page](https://aka.ms/wsl2kernel).
##### Docker Desktop
1. Install `Docker Desktop` and enable `WSL2 docker engine`.
2. Search for the Image `rosettacommons/rosetta:` where `` is the version of Rosetta build one want to use.
- Note: network proxies or docker registry mirror setting may be required for users behind the GFW.
3. Use `RosettaContainer` class as the run node, with the image name one just pulled.
4. Make sure all the input files are using `LF` ending instead of `CRLF`. This is fatal for Rosetta to parse input files.
- Note: this issue now can be done by using a context manager `convert_crlf_to_lf` from `RosettaPy.utils.tools`. Example:```python
from RosettaPy.utils.tools import convert_crlf_to_lfwith convert_crlf_to_lf(input_file) as output_file:
"""Use `output_file` to replace `input_file`."""
```5. Build Rosetta workflow with `RosettaPy` and run it.
##### WSL Wrapper
1. Install any recent release of Linux Distribution (e.g., `Ubuntu-22.04`) and setup for the account.
2. Install build essential tools: `apt-get update && apt-get install build-essential git -y`
- Note: network proxies or apt repostory mirror setting may be required for users behind the GFW.
3. Install MPI: `apt-get install mpich -y`. MPICH is sufficient for Rosetta.
4. Install Python: `apt-get install python-is-python3 -y`
5. Fetch the source code of Rosetta and un-tar it to anywhere convenient. e.g. `/opt/rosetta`
6. Go to the source code directory and build it according to the Official Rosetta [Build Documentation](https://docs.rosettacommons.org/docs/latest/build_documentation/Build-Documentation).
7. Environment variables required by RosettaPy are:
1. `ROSETTA_BIN`: path to the Rosetta executables
2. `ROSETTA3_DB`: path to the Rosetta database
3. `ROSETTA_PYTHON_SCRIPTS`: path to the Rosetta scripts
8. Use `WslWrapper` class as the run node. Parameters:
1. `rosetta_bin`: `RosettaBinary` with in-wsl `dirname`(the absolute path of Rosetta binary directory in WSL distro).
2. `distro`: the name of the Linux Distribution. for example, `'Ubuntu-22.04'`
3. `user`: the name one just setup as the user in the Linux Distribution.
4. `nproc`: number of CPU cores to be used.
5. `prohibit_mpi`: whether to prohibit MPI.## Environment Variables
The `RosettaFinder` searches the following directories by default:
0. `PATH`, which is commonly used in dockerized Rosetta image.
1. The path specified in the `ROSETTA_BIN` environment variable.
2. `ROSETTA3/bin`
3. `ROSETTA/main/source/bin/`
4. A custom search path provided during initialization.## Naming Convention
The Rosetta binaries are expected to follow this naming pattern:
```text
rosetta_scripts[[.mode].oscompilerrelease]
```- **Binary Name**: `rosetta_scripts` (default) or specified.
- **Mode** (optional): `default`, `mpi`, or `static`.
- **OS** (optional): `linux` or `macos`.
- **Compiler** (optional): `gcc` or `clang`.
- **Release** (optional): `release` or `debug`.For reg expression to match the basenames:
```regex
^(?P[\w]+)((\.(?Pstatic|mpi|default|cxx11threadserialization|cxx11threadmpiserialization))?(\.(?Plinux|macos)(?Pgcc|clang)(?Prelease|debug)))?$
```See this [regex101](https://regex101.com/r/Z1XM9b/1) page for more details.
Examples of valid binary filenames:
- `rosetta_scripts` (dockerized Rosetta)
- `rosetta_scripts.linuxgccrelease`
- `rosetta_scripts.mpi.macosclangdebug`
- `rosetta_scripts.static.linuxgccrelease`## Running Tests
The project includes unit tests using Python's `pytest` framework.
1. Clone the repository (if not already done):
```bash
git clone https://github.com/YaoYinYing/RosettaPy.git
```2. Navigate to the project directory and install the required dependencies:
```bash
cd RosettaPy
pip install '.[test]'
```3. Run the tests:
```bash
# quick test cases
pytest ./tests -m 'not integration'# test integration cases
pytest ./tests -m 'integration'# run integration tests with both docker and local
export GITHUB_CONTAINER_ROSETTA_TEST=YES
pytest ./tests -m 'integration'```
## Contributing
Contributions are welcome! Please submit a pull request or open an issue for bug reports and feature requests.
## Acknowledgements
- **Rosetta Commons**: The Rosetta software suite for the computational modeling and analysis of protein structures.
- **CIs, formatters, checkers and hooks** that save my life and make this tool improved.
- **ChatGPT, Tongyi Lingma, DeepSource Autofix™ AI and CodeRabbit** for the documentation, code improvements, test cases generations and code revisions.## Contact
For questions or support, please contact:
- **Name**: Yinying Yao
- **Email**:yaoyy.hi(a)gmail.com---