The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.
scLightGAT Data
This repository contains the training and testing datasets for scLightGAT: A range-constrained Graph Attention Network for single-cell clustering and annotation.
These files are structured to be compatible with the scLightGAT project.
Dataset Structure
The dataset contains processed .h5ad files organized for the scLightGAT pipelines.
Integrated_training/: Containstrain.h5ad, the large-scale reference training set used for the DVAE and GAT models.Independent_testing/: Contains independent datasets used for benchmarking and inference (e.g.,sapiens_full,lung_full,GSE115978, etc.).caf.data/: Additional data specific to Cancer-Associated Fibroblasts (CAF) experiments.
Directory Layout
When downloaded, the data should follow this structure to work with run_sclight.gat.sh:
scLightGAT_data/
βββ Integrated_training/
β βββ train.h5ad
βββ Independent_testing/
β βββ GSE115978.h5ad
β βββ GSE123139.h5ad
β βββ GSE153935.h5ad
β βββ GSE166555.h5ad
β βββ Zhengsorted.h5ad
β βββ lung_full.h5ad
β βββ sapiens_full.h5ad
βββ caf.data/
βββ caf_train.h5ad
βββ caf_test.h5ad
How to Use
1. Automated Download (Recommended)
You can use the download_hf_data.sh script provided in the scLightGAT repository to automatically fetch and place this data.
2. Manual Download
If you are manually setting up the project, download all files from this repository and place them in a directory named scLightGAT_data inside your project's data/ folder.
Project Structure Example:
scLightGAT_Project/
βββ scLightGAT.main/ # Code repository
β βββ run_sclight.gat.sh
β βββ ...
βββ data/
βββ scLightGAT_data/ # This dataset (Downloaded here)
βββ Integrated_training/
βββ Independent_testing/
βββ caf.data/
Python Access
You can also access the files directly via huggingface_hub:
from huggingface_hub import hf_hub_download
import scanpy as sc
# Example: Load the training data
file_path = hf_hub_download(
repo_id="Alfiechuang/scLightGAT",
filename="Integrated_training/train.h5ad",
repo_type="dataset"
)
adata = sc.read_h5ad(file_path)
- Downloads last month
- 1