AFusion: AlphaFold 3 GUI & Toolkit with Visualization
Project description
๐ฌ AFusion: AlphaFold 3 GUI & Toolkit
AFusion is a user-friendly graphical interface designed to simplify the process of AlphaFold 3 installation, prediction and visualization, making it accessible to users who prefer a GUI over command-line interactions.
Demo site (generate input JSON files ONLY)
Usable visualization site (fully usable)
Table of Contents
- Features
- Prerequisites
- Installation and Running
- Usage
- Documentation
- ToDo
- Screenshots
- License
- Acknowledgements
Features
- ๐งญ Guided Installation: GUI-based installer to simplify the installation process, easily set up the application step-by-step.
- โจ Intuitive Interface: Easily configure job settings, sequences, and execution parameters through a clean and modern GUI.
- ๐ Entity Management: Add multiple entities (Protein, RNA, DNA, Ligand) with support for modifications, MSA options, and templates.
- โ๏ธ Dynamic JSON Generation: Automatically generates the required JSON input file for AlphaFold 3 based on user inputs.
- ๐ Integrated Execution: Run AlphaFold 3 directly from the GUI with customizable Docker execution settings.
- ๐ฅ๏ธ Visual Feedback: Provides command output within the interface for monitoring and debugging.
- ๐ฅ๏ธ Console Output: Track processes and debug more effectively with backend console output.
- ๐งฉ API for Batch Predictions: Perform batch predictions using the AFusion API in Python scripts.
๐ New Feature!
- AlphaFold 3 Output Analysis System: Automatically analyze and visualize results with customizable visualizations and generate detailed PDF reports for streamlined insights.
Prerequisites
Before using AFusion, ensure that you have the following:
-
๐ณ Docker Installed: Docker is required to run AlphaFold 3. Install Docker from the official website.
-
๐งฌ AlphaFold 3 Installed: AFusion requires AlphaFold 3 to be installed and set up on your system. Follow the installation instructions provided in the AlphaFold 3 GitHub Repository to deploy AlphaFold 3. Or you can run step-by-step GUI by:
afusion install
-
๐ Python 3.10 or Higher: AFusion is built with Python and requires Python 3.10 or higher.
Installation and Running
-
Install AFusion
Run the following command in your terminal to install AFusion:
pip install afusion
-
Run AFusion GUI
After installation, you can start AFusion by running:
afusion run
This will launch the AFusion graphical user interface (GUI) in your default web browser.
Please Note:
-
๐งฌ AlphaFold 3 Installation: Ensure you have correctly installed AlphaFold 3, including model parameters and required databases, following the AlphaFold 3 Installation Guide.
-
โ๏ธ Docker Configuration: After installing Docker, make sure it is running properly and that your user has permission to execute Docker commands.
-
๐ฆ Streamlit is Included in Dependencies: AFusion's installation will automatically install all required dependencies, including Streamlit. There's no need to install it separately.
If you encounter any issues during installation or usage, please refer to the relevant official documentation or contact us for support.
Usage
Launching AFusion
-
๐ Start the Streamlit App
From the project directory, run:
afusion run
-
๐ Access the Application
- The application will launch, and Streamlit will provide a local URL (e.g.,
http://localhost:8501
). - Open the provided URL in your web browser to access AFusion.
- The application will launch, and Streamlit will provide a local URL (e.g.,
Using the GUI
Find more about input in here.
1. Welcome Page
- ๐ Logo and Introduction: You'll see the AFusion logo and a brief description.
- ๐ Navigation Sidebar: Use the sidebar on the left to navigate to different sections of the app.
2. Job Settings
- ๐ท๏ธ Job Name: Enter a descriptive name for your job.
- ๐ข Model Seeds: Provide integer seeds separated by commas (e.g.,
1,2,3
).
3. Sequences
- ๐ฌ Number of Entities: Select how many entities you want to add (Proteins, RNA, DNA, Ligand).
- ๐ Entity Details: For each entity:
- โ๏ธ Entity Type: Select the type (Protein, RNA, DNA, Ligand).
- ๐ Entity ID: Provide an identifier for the entity.
- ๐งฌ Sequence Input: Enter the sequence information.
- โ๏ธ Modifications: Optionally add modifications with their types and positions.
- ๐ MSA Options: Choose MSA generation options and provide MSA data if applicable.
- ๐ Templates: Optionally add template data with mmCIF content and indices.
4. Bonded Atom Pairs (Optional)
- ๐ Add Bonds: Check the box to add bonded atom pairs.
- โ๏ธ Define Bonds: For each bond, provide details for the first and second atoms, including entity IDs, residue IDs, and atom names.
5. User Provided CCD (Optional)
- ๐ User CCD Input: Paste or enter custom CCD data in mmCIF format.
6. Generated JSON
- ๐ Review JSON Content: The application generates the JSON input file based on your entries. You can review it here.
7. AlphaFold 3 Execution Settings
-
๐๏ธ Paths Configuration:
- ๐ AF Input Path: Specify the path to the AlphaFold input directory (e.g.,
/home/user/af_input
). - ๐ AF Output Path: Specify the path to the output directory (e.g.,
/home/user/af_output
). - ๐ Model Parameters Directory: Provide the path to the model parameters directory.
- ๐ Databases Directory: Provide the path to the databases directory.
- ๐ AF Input Path: Specify the path to the AlphaFold input directory (e.g.,
-
โ๏ธ Execution Options:
- ๐๏ธ Run Data Pipeline: Choose whether to run the data pipeline (CPU-intensive).
- ๐ป Run Inference: Choose whether to run inference (requires GPU).
8. Run AlphaFold 3
- ๐พ Save JSON File: Click the "Save JSON File" button to save the generated JSON to the specified input path.
- โถ๏ธ Run AlphaFold 3 Now: Click the "Run AlphaFold 3 Now โถ๏ธ" button to execute the AlphaFold 3 prediction using the Docker command.
- ๐ง Docker Command: The exact Docker command used is displayed for your reference.
- ๐ Command Output: Execution output is displayed within the app for monitoring.
Visualization Module ๐จ๐
-
๐ Launch Visualization Interface
To start the visualization module, run:
afusion visualization
-
๐ Upload and Analyze Results
- ๐ค Upload Files: Upload AlphaFold 3 output files (e.g.,
.cif
,.json
) directly in the visualization interface. - ๐ฌ Visual Analysis: Perform visual analysis for each prediction, with detailed structure displays and customizable plots.
- ๐ Web Reports: Generate web reports like Alphafold3 Server for the analysis on demand.
- ๐ค Upload Files: Upload AlphaFold 3 output files (e.g.,
-
๐ Integrated with Prediction GUI
- ๐๏ธ Seamless Integration: The visualization tools are also integrated into the prediction GUI. Once predictions are complete, you can switch seamlessly to the visualization tab for analysis.
Documentation
- Full Documentation in here
ToDo
-
๐ Bulid Documentation: Tutorial for using the AFusion API in Python scripts for batch predictions. -
โป๏ธ Refactor Code and Publish to PyPI: Refactor the project code for improved modularity and maintainability, and publish the latest version to PyPI for easy installation. -
๐ Develop AlphaFold result analysis system: Design and implement a comprehensive analysis pipeline for AlphaFold prediction results.-
Update the system.
-
- โ๏ธ Preset Common Small Molecules & Metal Ions: Add a dedicated section for quick access to commonly used small molecules and metal ions.
- ๐ ๏ธ New Tool for Chemical Small Molecules: Develop a new tool to handle and model chemical small molecules, supporting seamless integration into the prediction pipeline.
-
๐ฅ๏ธ Add Console Output: Implement a backend console for output to track processes and debug more effectively. -
๐งฉ Create API for Batch Predictions: Develop a standalone function API to allow users to perform batch predictions with afusion in Python scripts. -
๐งญ Create Guided Installation GUI: To simplify the installation process.
Screenshots
Prediction GUI Interface
Click to view screenshot
Visualization Module
Visualization GUI Interface
Click to view screenshot
Installation GUI Interface
Click to view screenshot
CLI Output
Click to view screenshot
License
This project is licensed under the GPL3 License - see the LICENSE file for details.
Acknowledgements
- AlphaFold 3: This GUI is designed to work with AlphaFold 3 by DeepMind.
- Streamlit: AFusion is built using Streamlit, an open-source app framework for machine learning and data science teams.
- Contributors: Waiting for more!
If you encounter any issues or have suggestions for improvements, please open an issue or submit a pull request.
Happy Folding! ๐งฌ
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 afusion-1.2.1.tar.gz
.
File metadata
- Download URL: afusion-1.2.1.tar.gz
- Upload date:
- Size: 57.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c5ba89b1a40917eda5a67b09043ce200cc4b903596b9c7152c138f9a4c288154 |
|
MD5 | 59cced46a8d67715c07e959bbde97a0f |
|
BLAKE2b-256 | ecd6bcba1c6270919ec37c0933db2c768e8f7599c6d4afce53f0fd978561f157 |
File details
Details for the file afusion-1.2.1-py3-none-any.whl
.
File metadata
- Download URL: afusion-1.2.1-py3-none-any.whl
- Upload date:
- Size: 41.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 074fa7892ef2850afb03ea3bc4babfff299df36589d9f73c7c98787ea1f44219 |
|
MD5 | 7d16dbb5a7a44b97c20ea9e7e8d22fb2 |
|
BLAKE2b-256 | 383030aa56ba239d7da62b601d7160b60b858a7a11653bfc0c10365b9a94887c |