cloud_download

CircRNA Data Download

About These Datasets

These datasets contain circular RNA genomic coordinates and annotations in BED format, which can be used for:

  • Visualization in genome browsers (UCSC, IGV, etc.)
  • Overlap analysis with other genomic features
  • Batch processing of circRNA data
  • Integration with other bioinformatics workflows
dataset Human circRNAs
download Download

BED format data for all human circular RNAs in the database

category Species: Human
storage Size: 186.5 MB
format_list_numbered Records: 1,845,311
dataset Mouse circRNAs
download Download

BED format data for all mouse circular RNAs in the database

category Species: Mouse
storage Size: 38.4 MB
format_list_numbered Records: 393,527
dataset Rhesus macaque circRNAs
download Download

BED format data for all rhesus macaque circular RNAs in the database

category Species: Rhesus macaque
storage Size: 12.3 MB
format_list_numbered Records: 89,642
dataset Crab-eating macaque circRNAs
download Download

BED format data for all crab-eating macaque circular RNAs in the database

category Species: Crab-eating macaque
storage Size: 9.7 MB
format_list_numbered Records: 76,843
dataset Brown rat circRNAs
download Download

BED format data for all brown rat circular RNAs in the database

category Species: Brown rat
storage Size: 6.5 MB
format_list_numbered Records: 42,953

File Format Information

description BED Format Specification

All circRNA data is provided in BED format, a tab-delimited text format used for describing genomic features. Each line represents a circRNA and contains the following fields:

chromosome start end name score strand thickStart thickEnd itemRgb blockCount blockSizes blockStarts

Example of a circRNA entry:

chr1 1234567 1234890 circRNA_001 1000 + 1234567 1234890 0,0,255 2 50,120 0,223

Where:

  • chromosome: The chromosome name
  • start: The starting position (0-based)
  • end: The end position (exclusive)
  • name: CircRNA identifier
  • score: A score between 0-1000
  • strand: + or - for strand orientation
  • thickStart/thickEnd: The positions where features are drawn thickly
  • itemRgb: RGB value for display color
  • blockCount: Number of exons
  • blockSizes: Comma-separated list of exon sizes
  • blockStarts: Comma-separated list of exon starts relative to start

settings Using BED Files

These BED files can be used in various ways:

  • Genome Browsers: Upload to UCSC Genome Browser or IGV to visualize circRNAs in genomic context.
  • Bioinformatics Tools: Use with BEDTools, bedops, or similar utilities for genomic analyses.
  • Custom Analysis: Parse with Python, R, or other programming languages using libraries like pybedtools or GenomicRanges.

Example command to count overlaps with another feature:

$ bedtools intersect -a human_circrnas.bed -b your_features.bed -c > overlaps.bed