Downloads · 30 days
78
9% of all-time downloads
yangliz5/deepchopper
deepchopper is a token classification model from yangliz5. Use it when you need labels on individual words, such as names. It is set up for deepchopper. The card lists the license as apache-2.0.
DeepChopper is a genomic language model designed to accurately detect and remove chimera artifacts in Nanopore direct RNA sequencing data. It uses a HyenaDNA backbone with a token classification head to identify artif…
Downloads · 30 days
78
9% of all-time downloads
All-time downloads
914
Public
Parameters
5.4M
21.5 MB on disk
Likes
1
Public
Click a slice to open those files.
.safetensors21.5 MB · 100%
From the Hugging Face model README
DeepChopper is a genomic language model designed to accurately detect and remove chimera artifacts in Nanopore direct RNA sequencing data. It uses a HyenaDNA backbone with a token classification head to identify artificial adapter sequences within reads.
DeepChopper leverages the HyenaDNA-small-32k backbone, a genomic foundation model, combined with a specialized token classification head to detect chimeric artifacts in nanopore direct RNA sequencing reads. The model processes both sequence information and base quality scores to make accurate predictions.
DeepChopper is designed for:
The cleaned data can be used for:
This model is NOT designed for:
The model was trained on Nanopore direct RNA sequencing data with manually curated annotations of chimeric artifacts and adapter sequences.
The model is evaluated on held-out test sets using:
DeepChopper significantly improves downstream analysis quality by accurately removing chimeric artifacts that would otherwise confound transcriptome analyses.
pip install deepchopper
import deepchopper
# Load the pretrained model
model = deepchopper.DeepChopper.from_pretrained("yangliz5/deepchopper-rna004")
# The model is ready for inference
# Use with deepchopper's predict pipeline
# Step 1: Encode your FASTQ data
deepchopper encode input.fq
# Step 2: Predict chimeric artifacts
deepchopper predict input.parquet --output predictions
# Step 3: Remove artifacts and generate clean FASTQ
deepchopper chop predictions input.fq
For GPU acceleration:
deepchopper predict input.parquet --output predictions --gpus 1
Try DeepChopper online without installation:
deepchopper webIf you use DeepChopper in your research, please cite:
@article{Li2024.10.23.619929,
author = {Li, Yangyang and Wang, Ting-You and Guo, Qingxiang and Ren, Yanan and Lu, Xiaotong and Cao, Qi and Yang, Rendong},
title = {A Genomic Language Model for Chimera Artifact Detection in Nanopore Direct RNA Sequencing},
year = {2024},
doi = {10.1101/2024.10.23.619929},
journal = {bioRxiv}
}
YLab Team
For questions about this model, please open an issue on the GitHub repository.