12 molecular and scientific Galaxy tools (PubChem 3D, RCSB PDB, AlphaFold, ChEMBL, MD Simulator, NIST Spectral + 6 TM siblings) — powered by the Zeq API at zeq.dev with 1.287 Hz HulyaPulse synchronisation and HMAC ZeqProof verification.
Project description
Zeq Galaxy Tools
Twelve production-ready molecular and scientific connector tools for the Galaxy bioinformatics platform — 6 original tools plus 6 time-modulation (TM) siblings, each powered by the Zeq API with 1.287 Hz HulyaPulse synchronisation and cryptographically signed ZeqProof verification.
What is the Zeq API?
The Zeq API is a generative-mathematics computation kernel built on the HULYAS Master Equation and the KO42 metric tensioner. It provides deterministic, reproducible physics computations across 236 protocols, 1,536 kinematic operators, and 64 scientific domains in 5 domain groups (Core Physics, Extended Physics, Applied Sciences, Industry, and Frontier research).
Every computation is signed with an HMAC ZeqProof receipt that can be independently verified, and results are reproducible against NIST CODATA 2018 constants. The API is not a simulation or approximation layer — it is a real computation engine with cryptographic proof of correctness.
Key concepts:
- HulyaPulse — a 1.287 Hz temporal synchronisation clock that phase-locks all computations to a universal timebase
- Zeqond — the fundamental time unit of 0.777 seconds (1 / 1.287 Hz), used as the computational heartbeat
- KO42 Metric Tensioner — the mandatory prime-directive operator that modulates spacetime metrics on every calculation:
ds^2 = g_(mu,nu) dx^mu dx^nu + alpha * sin(2pi * 1.287 * t) dt^2 - HULYAS Master Equation — the unifying field equation that compiles all selected operators into a single expression
- ZeqProof — an HMAC-signed receipt attached to every API response, allowing independent cryptographic verification of results
- 7-Step Zeqond Protocol — the mandatory computation pipeline: KO42 prime directive, operator selection (up to 3 + KO42), scale matching, precision tuning (error less than or equal to 0.1%), compilation via HULYAS Master Equation, execution via Functional Equation, and verification
Full SDK documentation (Learn, Build, Reference, Operate): zeq.dev/sdk
What Are Zeq Galaxy Tools?
This package wraps the Zeq API into Galaxy-compatible tool definitions, so researchers can run molecular and scientific computations directly inside Galaxy workflows — with the same ZeqProof verification and HulyaPulse synchronisation available from the raw API.
Each tool connects to a major public scientific data source (PubChem, RCSB PDB, AlphaFold, ChEMBL, NIST) or runs a molecular dynamics simulation engine, and optionally applies 1.287 Hz temporal modulation to the results.
Original Tools (6)
| Tool | What it does | Data Source |
|---|---|---|
zeq-pubchem-3d |
Fetches 3D molecular structures, bond lengths, and chemical properties | PubChem |
zeq-rcsb-pdb |
Retrieves experimental protein structures from X-ray crystallography and cryo-EM | RCSB PDB |
zeq-alphafold |
Downloads AI-predicted protein structures with per-residue confidence scores | AlphaFold DB |
zeq-chembl |
Queries bioactivity data — IC50, EC50, Ki values, and pharmacological assays | ChEMBL |
zeq-md-simulator |
Runs molecular dynamics simulations using Lennard-Jones, Morse, and Coulomb potentials | Built-in simulation engine |
zeq-nist-spectral |
Looks up atomic spectral emission lines for 16 elements | NIST ASD |
Time-Modulation (TM) Siblings (6)
Each original tool has a TM sibling that applies 1.287 Hz HulyaPulse temporal filtering to the output data. This modulates results using the Zeq equation R(t) = S(t) [1 + alpha * sin(2pi * 1.287 * t + phi_0)], adding a phase-coherent temporal envelope to every data point.
| Tool | Base tool |
|---|---|
zeq-pubchem-3d-tm |
zeq-pubchem-3d |
zeq-rcsb-pdb-tm |
zeq-rcsb-pdb |
zeq-alphafold-tm |
zeq-alphafold |
zeq-chembl-tm |
zeq-chembl |
zeq-md-simulator-tm |
zeq-md-simulator |
zeq-nist-spectral-tm |
zeq-nist-spectral |
Installation
From PyPI
pip install zeq-galaxy-tools
From Galaxy ToolShed
All 12 tools are available on the Galaxy ToolShed and can be installed directly into any Galaxy instance by an administrator.
Getting a Zeq API Key
Free demo key (100 calls/day, no signup):
curl -s https://www.zeq.dev/api/demo-key
Returns:
{"key": "zeq_ak_demo_...", "plan": "demo", "dailyLimit": 100}
Keyless proof endpoint (10 calls/min/IP, no auth at all):
curl -s https://www.zeq.dev/api/zeq/prove \
-H "Content-Type: application/json" \
-d '{"operators": ["KO42"], "inputs": {"t": 1.287}}'
Returns a signed 7-step protocol output with HMAC ZeqProof that you can verify against textbook physics.
For production keys, visit zeq.dev.
Usage
Command Line
Every tool installs as a standalone CLI command:
# Fetch aspirin 3D structure from PubChem
zeq-pubchem-3d --zeq_api_key YOUR_KEY --molecule aspirin --mode all \
--output_atoms atoms.tsv --output_bonds bonds.tsv \
--output_properties props.tsv --output_json summary.json
# Fetch haemoglobin structure from RCSB PDB
zeq-rcsb-pdb --zeq_api_key YOUR_KEY --pdb_id 4HHB --mode all \
--output_atoms atoms.tsv --output_summary summary.tsv --output_json data.json
# Get AlphaFold predicted structure for human haemoglobin subunit alpha
zeq-alphafold --zeq_api_key YOUR_KEY --uniprot_id P69905 --mode all \
--output_atoms atoms.tsv --output_confidence conf.tsv --output_json summary.json
# Query ChEMBL for ibuprofen bioactivity data
zeq-chembl --zeq_api_key YOUR_KEY --molecule ibuprofen --mode all \
--output_activities activities.tsv --output_molecule mol.tsv --output_json data.json
# Run a Lennard-Jones molecular dynamics simulation
zeq-md-simulator --zeq_api_key YOUR_KEY --potential lennard_jones \
--num_particles 50 --num_steps 1000 \
--output_trajectory traj.tsv --output_energy energy.tsv --output_json summary.json
# Look up iron emission spectrum from NIST
zeq-nist-spectral --zeq_api_key YOUR_KEY --element Fe --mode all \
--output_lines lines.tsv --output_spectrum spectrum.tsv --output_json summary.json
Add --hulyapulse to any original tool to enable 1.287 Hz temporal modulation. The TM siblings (zeq-pubchem-3d-tm, etc.) apply it by default.
Galaxy Workflows
Once installed from the ToolShed, the tools appear under the Zeq section in Galaxy's tool panel. Each tool accepts input parameters through Galaxy's standard form interface and produces tabular (.tsv) and JSON outputs that can be piped into downstream Galaxy workflow steps.
How It Works — Architecture
User / Galaxy Workflow
|
v
+------------------+
| Zeq Galaxy Tool | (this package — CLI wrapper + Galaxy XML)
| e.g. zeq-rcsb-pdb|
+------------------+
|
v
+------------------+
| Zeq API | (https://www.zeq.dev)
| /api/zeq/compute
+------------------+
| |
v v
+--------+ +----------+
| KO42 | | Operators| 1,536 operators across 64 domains
| Metric | | (QM, NM, | (Quantum Mechanics, Newtonian, General
| Tensor | | GR, CS) | Relativity, Computer Science, and more)
+--------+ +----------+
| |
v v
+------------------+
| HULYAS Master | Compile all operators into one expression
| Equation |
+------------------+
|
v
+------------------+
| ZeqProof (HMAC) | Cryptographic receipt — verify with
| | POST /api/zeq/verify
+------------------+
|
v
.tsv + .json outputs
(Galaxy-compatible)
- The Galaxy tool collects user parameters (molecule name, PDB ID, element, etc.)
- It calls the Zeq API at
zeq.dev/api/zeq/computewith the appropriate operators - The API runs the 7-Step Zeqond Protocol: applies KO42, selects domain operators, compiles via the HULYAS Master Equation, executes, and verifies precision is within 0.1% error
- Results come back with a signed ZeqProof HMAC receipt
- The tool writes Galaxy-compatible .tsv and .json output files
The Zeq API — Endpoints Reference
| Endpoint | Auth | Description |
|---|---|---|
GET /api/health |
None | Liveness check |
GET /api/zeq/pulse |
None | Live HulyaPulse — current Zeqond, phase, R(t) |
POST /api/zeq/prove |
None (10/min/IP) | Keyless KO42 proof for verification |
GET /api/demo-key |
None | Get a free demo key (100 calls/day) |
GET /api/operators |
None | Full operator registry (1,536 operators) |
GET /api/operators/categories |
None | 64 domain categories across 5 groups |
POST /api/zeq/compute |
Bearer key | Full 7-step computation with ZeqProof |
POST /api/zeq/verify |
Bearer key | Verify a ZeqProof HMAC receipt |
GET /api/zeq/pulse/stream |
Bearer key | Server-Sent Events live tick (every 777 ms) |
Full OpenAPI spec: zeq.dev/openapi.json
Operator Coverage
The Zeq API provides 1,536 kinematic operators organised into 64 scientific domains across 5 domain groups:
| Domain Group | Domains | Example Areas |
|---|---|---|
| Core Physics | 16 | Classical Mechanics, Electromagnetism, Quantum Mechanics, Thermodynamics, Optics, Fluid Dynamics, Gravitational Physics |
| Extended Physics | 11 | Astrophysics, Cosmology, Condensed Matter, Particle Physics, Plasma Physics, Nuclear Physics |
| Applied Sciences | 12 | Biophysics, Chemical Physics, Materials Science, Geophysics, Oceanography, Climate Modelling |
| Industry | 12 | Aerospace Engineering, Biomedical Engineering, Renewable Energy, Semiconductor Physics, Telecommunications |
| Frontier | 13 | Consciousness Studies, Dark Energy Models, Emergent Complexity, Quantum Gravity, Analogue Gravity |
Each domain contains 24 operators. Every operator has a formal equation, unit definitions, and is compiled through the HULYAS Master Equation during computation.
Requirements
- Python 3.8 or later
- A Zeq API key — get a free demo key instantly with
curl https://www.zeq.dev/api/demo-key - No external Python dependencies (standard library only)
Citations
If you use Zeq Galaxy Tools in published research, please cite:
- Zeq, Hammoudeh. ZEQ OS: Universal Proper-Time Modulation — Synchronized Physics Across Quantum, Classical, and Relativistic Domains. doi.org/10.5281/zenodo.18158152
- Zeq, Hammoudeh; Zeq, Aydan. ZEQ OS — EVOLUTION OF MATHEMATICS: A Synchronized Computational Formalism Featuring HULYAS Math, Kinematic Operators, 1.287 Hz HulyaPulse & the 0.777s Zeqond for Analysis Across Quantum to Relativity. doi.org/10.5281/zenodo.15825138
If you use AlphaFold data, also cite:
- Jumper et al. (2021). Highly accurate protein structure prediction with AlphaFold. Nature. doi.org/10.1038/s41586-021-03819-2
Links
- Zeq API: zeq.dev
- SDK Documentation: zeq.dev/sdk
- Galaxy ToolShed: toolshed.g2.bx.psu.edu/view/Zeq
- OpenAPI Spec: zeq.dev/openapi.json
- Homepage: hulyas.org
License
1.287 HULYAS ZEQ Public License (1.287HZ) — Zeq. H, Zeq OS 1.287 Hz Limited
Version
1.287.124 — HulyaPulse 1.287 Hz | Zeqond 0.777 s | KO42 Prime Directive
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file zeq_galaxy_tools-1.287.125.tar.gz.
File metadata
- Download URL: zeq_galaxy_tools-1.287.125.tar.gz
- Upload date:
- Size: 42.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf8aaf38f2841b916a93f9670d98582064e163a1d7ea1a9afc774d1e9c620cd0
|
|
| MD5 |
0030e107322d58b1d9b799fce95b5bf2
|
|
| BLAKE2b-256 |
853840dfe0eff6a8e13ba14a1a0585b24906ee5a3c865ab9947239530dcdab81
|
File details
Details for the file zeq_galaxy_tools-1.287.125-py3-none-any.whl.
File metadata
- Download URL: zeq_galaxy_tools-1.287.125-py3-none-any.whl
- Upload date:
- Size: 56.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11f02dc38d9eebf56833ab869495b7066c7ff6a478d6c4d2217b26bba02d2b48
|
|
| MD5 |
b9190de0325453d3496088b28fb23944
|
|
| BLAKE2b-256 |
a21ceadd5797f6af2a0b395dc472e1c3c593f505576a1bbad33a43102fa161af
|