CoolFace
Datasetpublic

SkyWhal3/stxbp1-pubmed-central-fulltext

source_datasets: - PubMed Central STXBP1 PubMed Central Full-Text Dataset v2 A comprehensive collection of 31,786 full-text scientific articles from PubMed Central related to STXBP1, synaptic function, and neurological research. ๐Ÿ†• Version 2 Updates (December 2025) Complete re-extraction with improved HTML parsing Full main text with proper section headers Enhanced metadata extraction 99.7% figure-image matching (see companion multimodal dataset)โ€ฆ See the full description on the dataset page: https://huggingface.co/datasets/SkyWhal3/stxbp1-pubmed-central-fulltext.

sourceHugging Facecc-by-4.0updated 10mo agoView on Hugging Face
0likes50downloads
Dataset Card

source_datasets:

  • โ€”PubMed Central ---

STXBP1 PubMed Central Full-Text Dataset v2

A comprehensive collection of 31,786 full-text scientific articles from PubMed Central related to STXBP1, synaptic function, and neurological research.

๐Ÿ†• Version 2 Updates (December 2025)

  • โ€”Complete re-extraction with improved HTML parsing
  • โ€”Full main text with proper section headers
  • โ€”Enhanced metadata extraction
  • โ€”99.7% figure-image matching (see companion multimodal dataset)

Dataset Overview

MetricValue
Total Articles31,786
Articles with STXBP1 mentions1,335
Articles with Munc18 mentions1,200+
Articles with abstract: 30,856
Total Abstract Characters~45 million
Articles with main_text: 31,684
Total Main Text Characters~1.44 billion
Average Abstract Length1,421 chars
Average Main Text Length45,391 chars

Schema

ColumnTypeDescription
pmc_idstringPubMed Central ID (e.g., "PMC10196665")
titlestringArticle title
abstractstringArticle abstract
main_textstringFull article text with section headers
authorsstringAuthor list
journalstringJournal name
doistringDigital Object Identifier
pmidstringPubMed ID
publish_datestringPublication date
stxbp1_mentionsintCount of STXBP1 mentions in text
munc18_mentionsintCount of Munc18 mentions in text
num_figuresintNumber of figures in article
num_imagesintNumber of matched figure images
abstract_lengthintCharacter count of abstract
main_text_lengthintCharacter count of main text

Usage

Load with Hugging Face Datasets

python
from datasets import load_dataset

dataset = load_dataset("SkyWhal3/stxbp1-pubmed-central-fulltext")

# Access the data
df = dataset['train'].to_pandas()

# Filter STXBP1-specific articles
stxbp1_articles = df[df['stxbp1_mentions'] > 0]
print(f"Found {len(stxbp1_articles)} STXBP1-related articles")

Load with Pandas

python
import pandas as pd

df = pd.read_parquet("hf://datasets/SkyWhal3/stxbp1-pubmed-central-fulltext/stxbp1_pubmed_articles.parquet")

Example Queries

python
# Find articles about specific topics
seizure_articles = df[df['main_text'].str.contains('seizure', case=False, na=False)]

# Get articles with most STXBP1 mentions
top_stxbp1 = df.nlargest(10, 'stxbp1_mentions')[['pmc_id', 'title', 'stxbp1_mentions']]

# Find articles by keyword in title
crispr_articles = df[df['title'].str.contains('CRISPR|gene therapy', case=False, na=False)]

Related Resources

ResourceDescriptionLink
Multimodal DatasetSame articles + 170K figure imagesSkyWhal3/STXBP1_PubMed_Central_Multimodal_Dataset
ClinVar DatasetSTXBP1 genetic variantsSkyWhal3/stxbp1-clinvar
Trained ModelFine-tuned Qwen3-VL-8BComing soon!

About STXBP1

STXBP1 (Syntaxin-Binding Protein 1), also known as Munc18-1, is essential for synaptic vesicle fusion and neurotransmitter release. Mutations cause STXBP1 Encephalopathy, a rare neurological disorder characterized by:

  • โ€”Early-onset epilepsy
  • โ€”Developmental delays
  • โ€”Movement disorders
  • โ€”Intellectual disability

This dataset supports AI-powered research into understanding and treating STXBP1-related conditions.


Citation

bibtex
@dataset{stxbp1_fulltext_2025,
  author = {SkyWhal3},
  title = {STXBP1 PubMed Central Full-Text Dataset},
  year = {2025},
  publisher = {Hugging Face},
  url = {https://huggingface.co/datasets/SkyWhal3/stxbp1-pubmed-central-fulltext}
}

License

CC-BY-4.0. Source articles are from PubMed Central's Open Access subset.


Changelog

v2.0 (December 2025)

  • โ€”Complete re-extraction with improved parsing
  • โ€”Added section headers to main_text
  • โ€”Enhanced metadata fields
  • โ€”Added figure/image counts
  • โ€”Added text length statistics

v1.0 (December 2025)

  • โ€”Initial release

This dataset is dedicated to all children and families affected by STXBP1 Encephalopathy.