flowscience / plex

Plex Lab Exchange. Client for running scientific workflows on decentralized infrastructure

Home Page:https://labdao.xyz

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PLEX πŸ§«Γ—πŸ§¬β†’πŸ’Š

⚑ Build highly reproducible container workflows on top of a decentralised compute network. ⚑

total download follow on Twitter

PLEX is a simple client for distributed computation.

  • 🌎 Build once, run anywhere at any scale: PLEX is using distributed compute and storage to run containers on a public network. Need GPUs? We got you covered.
  • πŸ”— Strictly composable: Every tool in PLEX has declared inputs and outputs. Plugging together tools by other authors should be easy.
  • πŸ” Content-addressed by default: Every file processed by PLEX has a deterministic address based on its content. Keep track of your files and always share the right results with other scientists.

PLEX is based on Bacalhau, IPFS, and inspired by Pydantic and the Common Workflow Language.

πŸš€ PLEX CLI in one minute

1 . Install the client

Mac/Linux users open terminal and run

source <(curl -sSL https://raw.githubusercontent.com/labdao/plex/main/install.sh)

Windows users open terminal as an adminstrator and run

Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/labdao/plex/main/install.ps1" -UseBasicParsing).Content
  1. Submit an example PLEX job
./plex create -t tools/equibind.json -i testdata/binding/abl --autoRun=True

Getting Started

  1. Read the docs to learn how to use PLEX with your own data and tools

  2. Request Access to our VIP Jupyter Hub Enviroment and NFT Testnet Minting. VIP Beta Access Form

🐍 Python pip package (Python 3.8+)

  1. Install Plex with pip
pip install PlexLabExchange
  1. Run Plex example in a Python file, notebook or REPL
from plex import plex_run

io_json_cid, io_json_local_filepath = plex_run('QmWdKXmSz1p3zGfHmwBb5FHCS7skc4ryEA97pPVxJCT5Wx')

πŸ’‘ Use-Cases

  • 🧬 run PLEX to design proteins with colabfold and RFDiffusion
  • πŸ’Š run PLEX to run small molecule docking with equibind and diffdock
  • πŸ‹ configure your containerised tool to run on PLEX

πŸ§‘β€πŸ’» Developer Guide

Building PLEX from source

git clone https://github.com/labdao/plex
cd plex
go build

Running a compute node

This is a script for setting up a compute instance to run LabDAO jobs. Requires linux OS with Nvidia GPU.

Tested on Ubuntu 20.04 LTS with Nvidia T4, V100, and A10 GPUs (AWS G4, P3, and G5 instance types)

The install script sets up Docker, Nvidia Drivers, Nvidia Container Toolkit, and IPFS

curl -sL https://raw.githubusercontent.com/labdao/plex/main/scripts/provide-compute.sh | bash && newgrp docker

After the script run the following command in a separate terminal to start a Bacalhau server to accept jobs.

ipfs daemon

Once the daemon is running, configure the Bacalhau node based on the addresses used by the IFPS node.

ipfs id

# copy the ip4 tcp output and change port 4001 to 5001 then export
export IPFS_CONNECT=/ip4/127.0.0.1/tcp/5001/p2p/<your id goes here>

# example: export IPFS_CONNECT=/ip4/127.0.0.1/tcp/5001/p2p/12D3KooWPH1BpPfNXwkf778GMP2H5z7pwjKVQFnA5NS3DngU7pxG

LOG_LEVEL=debug bacalhau serve --job-selection-accept-networked --limit-total-gpu 1 --limit-total-memory 12gb --ipfs-connect $IPFS_CONNECT

To download large bacalhau results the below command may need ran

sudo sysctl -w net.core.rmem_max=2500000

πŸ’ Contributing

PRs are welcome! Please consider our Contribute Guidelines when joining.

From time to time, we also post help-wanted bounty issues - please consider our Bounty Policy when engaging with LabDAO.

About

Plex Lab Exchange. Client for running scientific workflows on decentralized infrastructure

https://labdao.xyz

License:MIT License


Languages

Language:Go 43.0%Language:Python 13.9%Language:Jupyter Notebook 12.1%Language:Shell 11.8%Language:HCL 10.0%Language:Solidity 3.5%Language:Dockerfile 2.1%Language:JavaScript 1.9%Language:PowerShell 1.7%