ECRECer is the official implementation of the hierarchical dual-core multitask learning framework described in the ECRECer papers. It is an Enzyme Commission (EC) number prediction and recommendation tool that accepts protein FASTA sequences and returns EC predictions, ranked EC recommendations, or hybrid results that combine prediction, recommendation, and sequence alignment.
For the simplest use, visit the ECRECer web server:
https://ecrecer.biodesign.ac.cn
- Zhenkun Shi, Qianqian Yuan, Ruoyu Wang, Haoran Li, Xiaoping Liao, and Hongwu Ma. ECRECer: Enzyme Commission Number Recommendation and Benchmarking based on Multiagent Dual-core Learning. arXiv:2202.03632.
- Zhenkun Shi, Rui Deng, Qianqian Yuan, Zhitao Mao, Ruoyu Wang, Haoran Li, Xiaoping Liao, and Hongwu Ma. Enzyme Commission Number Prediction and Benchmarking with Hierarchical Dual-core Multitask Learning Framework. Research, 2023.
Install the Python package from a built wheel or PyPI package:
python -m pip install ecrecerThe package installs the Python runtime dependencies needed for local inference. Large runtime artifacts are prepared with ecrecer-setup after installation.
- Install ECRECer:
python -m pip install ecrecer- Download and prepare runtime artifacts. This creates the directory layout, installs the bundled label dictionaries and sample FASTA file, and downloads the trained models, UniProt cache, and ESM32 feature bank:
ecrecer-setup --target ~/ecrecer_artifactsThe default artifact download is about 4.2 GB. For hybrid mode, also download the DIAMOND database:
ecrecer-setup --target ~/ecrecer_artifacts --with-hybrid- Point ECRECer at the artifact directory:
export ECRECER_ROOT=~/ecrecer_artifacts- Run the bundled sample in recommendation mode:
ecrecer -i "$ECRECER_ROOT/data/sample_10.fasta" -o ecrecer_sample10.tsv -mode r -topk 5
sed -n 1,5p ecrecer_sample10.tsv- Run your own FASTA file:
ecrecer -i input.fasta -o output.tsv -mode p -topk 5ecrecer-setup creates an ECRECER_ROOT directory with this runtime artifact layout:
ECRECER_ROOT/
data/
dict/
featureBank/
uniprot/
model/
results/
tmp/
Required production artifacts include:
data/uniprot/sprot_latest.featherdata/featureBank/embd_esm32.featherdata/dict/dict_label_task1.h5data/dict/dict_label_task2.h5data/dict/dict_label_task3.h5model/isenzyme.h5model/howmany_enzyme.h5model/ec.h5
Preprocessed benchmark datasets are available separately from the public archive:
https://tibd-public-datasets.s3.amazonaws.com/ecrecer/ecrecer_datasets.zip
Prediction mode writes final EC predictions:
ecrecer -i input.fasta -o output.tsv -mode p -topk 5Recommendation mode writes top-k EC candidates with scores:
ecrecer -i input.fasta -o recommendations.tsv -mode r -topk 10Hybrid mode also uses DIAMOND sequence alignment and requires a DIAMOND executable plus a production BLAST database under data/uniprot_blast_db/:
ecrecer -i input.fasta -o hybrid.tsv -mode h -topk 10Legacy script usage is still supported:
python production.py -i input.fasta -o output.tsv -mode p -topk 5Input is a standard FASTA file:
>query_1
MKTAYIAKQRQISFVKSHFSRQDILD
>query_2
MGSSHHHHHHSSGLVPRGSHM
Prediction mode (-mode p) writes a tab-separated table with one row per input sequence:
id_input ec_pred
query_1 2.6.1.19
query_2 -
Recommendation mode (-mode r) returns top-k candidate EC numbers and probabilities:
id_input dmlf_recomendations
query_1 [('2.6.1.19', 0.685800), ('2.6.1.22', 0.248600)]
- indicates a predicted non-enzyme or no EC assignment. For exact values, use the output generated by the installed model artifacts.
ECRECer uses the installed TensorFlow and PyTorch runtimes automatically. No separate ECRECer package is needed for different NVIDIA GPU models. For GPU acceleration, use a recent NVIDIA driver and a Python environment where TensorFlow and PyTorch can see the GPU; otherwise ECRECer runs with the available CPU/GPU backend.
Container images remain useful for users who prefer a prebuilt runtime:
docker pull kingstdio/ecrecer
# GPU runtime
sudo docker run -it -d --gpus all --name ecrecer -v "$PWD":/home kingstdio/ecrecer
# CPU runtime
sudo docker run -it -d --name ecrecer -v "$PWD":/home kingstdio/ecrecer
sudo docker exec ecrecer python /ecrecer/production.py -i /home/input.fasta -o /home/output.tsv -mode h -topk 10wget -c https://tibd-public-datasets.s3.us-east-1.amazonaws.com/ecrecer/sifimages/ecrecer.sif
singularity run --nv ecrecer.sif python /ecrecer/production.py -i input.fasta -o output.tsv -mode h -topk 10
# CPU runtime
singularity run ecrecer.sif python /ecrecer/production.py -i input.fasta -o output.tsv -mode h -topk 10If ECRECer is useful in your work, please cite:
@article{shi2023enzyme,
title={Enzyme Commission Number Prediction and Benchmarking with Hierarchical Dual-core Multitask Learning Framework},
author={Shi, Zhenkun and Deng, Rui and Yuan, Qianqian and Mao, Zhitao and Wang, Ruoyu and Li, Haoran and Liao, Xiaoping and Ma, Hongwu},
journal={Research},
year={2023},
publisher={AAAS}
}Earlier preprint:
Shi, Zhenkun, Qianqian Yuan, Ruoyu Wang, Haoran Li, Xiaoping Liao, and Hongwu Ma. ECRECer: Enzyme Commission Number Recommendation and Benchmarking based on Multiagent Dual-core Learning. arXiv:2202.03632.
ECRECer is released under the MIT License. See LICENSE.