//! Domain-specific file format support
//!
//! This module provides specialized file format support for various scientific domains:
//! - Bioinformatics: FASTA, FASTQ, SAM/BAM, VCF
//! - Geospatial: GeoTIFF, Shapefile, GeoJSON, KML
//! - Astronomical: FITS, VOTable
//!
//! These formats are commonly used in their respective fields and require
//! specialized handling for efficient processing and metadata preservation.
/// Bioinformatics file formats
///
/// Provides support for common bioinformatics file formats:
/// - FASTA: Nucleotide and protein sequences
/// - FASTQ: Sequences with quality scores
/// - SAM/BAM: Sequence alignment data
/// - VCF: Variant Call Format for genomic variations