A Python utility for wrapping Rosetta command line tools.
Project description
RosettaPy
A Python utility for wrapping Rosetta command line tools.
[!NOTE] Before running
RosettaPy
, please DO make sure that you have abtained the correct license from Rosetta Commons. For more details, please see this page.
License
CI Status
Quality
Release
Python version supported
Overview
RosettaPy
is a Python module designed to locate Rosetta biomolecular modeling suite binaries that follow a specific naming pattern and execute Rosetta in command line. The module includes:
Building Blocks Provided by RosettaPy
- A
RosettaFinder
class to search for binaries. - A
RosettaBinary
dataclass to represent the binary and its attributes. - A
RosettaCmdTask
dataclass to represent a single Rosetta run task. - A
RosettaContainer
dataclass to wrap runs into Rosetta Containers and handle file system mounts. - A
MpiNode
dataclass to manage MPI resourses. Not Seriously Tested - A
RosettaRepoManager
dataclass to fetch necessary directories and files, and setup as an environment variable, together with shortcut methodpartial_clone
to handle repository clonings and setups. - A command-line wrapper dataclass
Rosetta
for handling Rosetta runs. - A
RosettaScriptsVariableGroup
dataclass to represent Rosetta scripts variables. - A general and simplified result analyzer
RosettaEnergyUnitAnalyser
to read and interpret Rosetta output score files. - A series of example applications that follow the design elements and patterns described above.
- PROSS
- FastRelax
- RosettaLigand
- Supercharge
- MutateRelax
- Cartesian ddG (Analyser:
RosettaCartesianddGAnalyser
)
- Unit tests to ensure reliability and correctness.
Features
- Flexible Binary Search: Finds Rosetta binaries based on their naming convention.
- Platform Support: Supports Linux and macOS operating systems.
- Container Support: Works with Docker containers running upon the official Rosetta Docker image.
- Customizable Search Paths: Allows specification of custom directories to search.
- Structured Binary Representation: Uses a dataclass to encapsulate binary attributes.
- Command-Line Shortcut: Provides a quick way to find binaries via the command line.
- Available on PyPI: Installable via
pip
without the need to clone the repository. - Unit Tested: Includes tests for both classes to ensure functionality.
Naming Convention
The binaries are expected to follow this naming pattern:
rosetta_scripts[[.mode].oscompilerrelease]
- Binary Name:
rosetta_scripts
(default) or specified. - Mode (optional):
default
,mpi
, orstatic
. - OS (optional):
linux
ormacos
. - Compiler (optional):
gcc
orclang
. - Release (optional):
release
ordebug
.
Examples of valid binary filenames:
rosetta_scripts
(dockerized Rosetta)rosetta_scripts.linuxgccrelease
rosetta_scripts.mpi.macosclangdebug
rosetta_scripts.static.linuxgccrelease
Installation
Ensure you have Python 3.8 or higher installed.
Install via PyPI
You can install RosettaPy
directly from PyPI:
pip install RosettaPy -U
Usage
Building Your Own Rosetta Workflow
# Imports
from RosettaPy import Rosetta, RosettaScriptsVariableGroup, RosettaEnergyUnitAnalyser
from RosettaPy.node import RosettaContainer
# Create a Rosetta object with the desired parameters
rosetta = Rosetta(
bin="rosetta_scripts",
flags=[...],
opts=[
"-in:file:s", os.path.abspath(pdb),
"-parser:protocol", "/path/to/my_rosetta_scripts.xml",
],
output_dir=...,
save_all_together=True,
job_id=...,
# Some Rosetta Apps (Superchange, Cartesian ddG, etc.) may produce files in the 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.
# isolation=True,
# Optionally, if one wishes to use the Rosetta container.
# The image name can be found at https://hub.docker.com/r/rosettacommons/rosetta
# run_node=RosettaContainer(image="rosettacommons/rosetta:latest")
# If you wish to run with Rosetta installed on local and built with `extra=mpi` flag via MPI,
# consider using `MpiNode` instance as `run_node`. This enables native parallelism feature with OpenMPI.
# run_node=MpiNode(nproc=10),
)
# Compose your Rosetta tasks matrix
tasks = [ # 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
]
# Run Rosetta against these tasks
rosetta.run(inputs=tasks)
# Or create a distributed runs with structure labels (-nstruct)
# For local run without MPI and dockerized runs, `RosettaPy` implemented this feature by
# ignoring the build-in job distributer of Rosetta, canceling the default output structure
# label, then attaching external structural label as unique job identifier and run the task
# only once. This enables massive parallalism.
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
# Use Analyzer to check the results
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}')
Fetching additional scripts/database files from the Rosetta GitHub repository.
[!WARNING] AGAIN, before run this method, please DO make sure that you have licensed by Rosetta Commons. For more details of licensing, please see this page.
This tool is helpful for fetching additional scripts/database files from the Rosetta GitHub repository.
For example, if your local machine does not have Rosetta built and installed, and you wich check some files from $ROSETTA3_DB
or $ROSETTA_PYTHON_SCRIPTS
before run Rosetta tasks within Rosetta Container, you may quickly use this tool to fetch them into your local machine.
The partial_clone
function do will do the following steps:
- Check if the Git binary is feasible and the git version
>=2.34.1
. If not, then raise an error to notify the user to upgrade git. - Check if the target directory is empty or not and the repository is not cloned yet.
- Setup partial clone and sparse checkout stuffs.
- Clone the repository and subdirectory to the target directory.
- Setup the environment variable with the target directory.
import os
from RosettaPy.utils import partial_clone
def 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")}')
Environment Variables
The RosettaFinder
searches the following directories by default:
PATH
, which is commonly used in dockerized Rosetta image.- The path specified in the
ROSETTA_BIN
environment variable. ROSETTA3/bin
ROSETTA/main/source/bin/
- A custom search path provided during initialization.
Running Tests
The project includes unit tests using Python's pytest
framework.
-
Clone the repository (if not already done):
git clone https://github.com/YaoYinYing/RosettaPy.git
-
Navigate to the project directory and install the required dependencies:
cd RosettaPy pip install '.[test]'
-
Run the tests:
# quick test cases python -m pytest ./tests -m 'not integration' # test integration cases python -m 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.
Contact
For questions or support, please contact:
- Name: Yinying Yao
- Email:yaoyy.hi(a)gmail.com
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file rosettapy-0.2.3rc183.post1.tar.gz
.
File metadata
- Download URL: rosettapy-0.2.3rc183.post1.tar.gz
- Upload date:
- Size: 378.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.32.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b587e27fcc414d23b335a3c06f02fd84a67353844238a077d87b65212ceb4fb8 |
|
MD5 | 09143de46a51bfd73585b90317480150 |
|
BLAKE2b-256 | c65b3d62d27bd1f916e092b1cc703dd61c0301399d8fa86d2fbcb36773858bd8 |
File details
Details for the file rosettapy-0.2.3rc183.post1-py3-none-any.whl
.
File metadata
- Download URL: rosettapy-0.2.3rc183.post1-py3-none-any.whl
- Upload date:
- Size: 75.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.32.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3d89c9b6ed2704b42722dd200900655cd9b36578ff4a04bc282f22977c50793d |
|
MD5 | 76e5fd769e7e505f543b5d288cd04e85 |
|
BLAKE2b-256 | f05c9989f6cbf784c742e0f2aacf6a00de8fd68085179667368e05a6df83f57b |