1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
//! BCF writer.
mod builder;
pub(crate) mod header;
mod record;
use std::io::{self, Write};
use byteorder::WriteBytesExt;
use noodles_bgzf as bgzf;
use noodles_vcf::{self as vcf, header::StringMaps};
pub use self::builder::Builder;
use self::header::write_header;
pub(crate) use self::record::write_record;
use crate::Record;
pub(crate) const MAJOR: u8 = 2;
pub(crate) const MINOR: u8 = 2;
/// A BCF writer.
pub struct Writer<W> {
inner: W,
string_maps: StringMaps,
}
impl<W> Writer<W>
where
W: Write,
{
/// Returns a reference to the underlying writer.
///
/// # Examples
///
/// ```
/// use noodles_bcf as bcf;
/// let writer = bcf::io::Writer::from(Vec::new());
/// assert!(writer.get_ref().is_empty());
/// ```
pub fn get_ref(&self) -> &W {
&self.inner
}
/// Returns a mutable reference to the underlying writer.
///
/// # Examples
///
/// ```
/// use noodles_bcf as bcf;
/// let mut writer = bcf::io::Writer::from(Vec::new());
/// assert!(writer.get_mut().is_empty());
/// ```
pub fn get_mut(&mut self) -> &mut W {
&mut self.inner
}
/// Returns the underlying writer.
///
/// # Examples
///
/// ```
/// use noodles_bcf as bcf;
/// let mut writer = bcf::io::Writer::from(Vec::new());
/// assert!(writer.into_inner().is_empty());
/// ```
pub fn into_inner(self) -> W {
self.inner
}
/// Writes a VCF header.
///
/// # Examples
///
/// ```
/// # use std::io;
/// use noodles_bcf as bcf;
/// use noodles_vcf as vcf;
///
/// let mut writer = bcf::io::Writer::new(io::sink());
///
/// let header = vcf::Header::default();
/// writer.write_header(&header)?;
/// # Ok::<(), io::Error>(())
/// ```
pub fn write_header(&mut self, header: &vcf::Header) -> io::Result<()> {
write_file_format(&mut self.inner)?;
self.string_maps = StringMaps::try_from(header)
.map_err(|e| io::Error::new(io::ErrorKind::InvalidInput, e))?;
write_header(&mut self.inner, header)
}
/// Writes a record.
///
/// # Examples
///
/// ```
/// # use std::io;
/// use noodles_bcf as bcf;
/// use noodles_core::Position;
/// use noodles_vcf::{
/// self as vcf,
/// header::{
/// record::value::{map::Contig, Map},
/// StringMaps,
/// },
/// };
///
/// let mut writer = bcf::io::Writer::new(io::sink());
///
/// let mut header = vcf::Header::builder()
/// .add_contig("sq0", Map::<Contig>::new())
/// .build();
/// *header.string_maps_mut() = StringMaps::try_from(&header)?;
///
/// writer.write_header(&header)?;
///
/// let record = bcf::Record::default();
/// writer.write_record(&header, &record)?;
/// # Ok::<_, Box<dyn std::error::Error>>(())
/// ```
pub fn write_record(&mut self, header: &vcf::Header, record: &Record) -> io::Result<()> {
write_record(&mut self.inner, header, &self.string_maps, record)
}
}
impl<W> Writer<bgzf::Writer<W>>
where
W: Write,
{
/// Creates a BCF writer with a default compression level.
///
/// The given stream is wrapped in a BGZF encoder.
///
/// # Examples
///
/// ```
/// # use std::io;
/// use noodles_bcf as bcf;
/// let writer = bcf::io::Writer::new(io::sink());
/// ```
pub fn new(writer: W) -> Self {
Self::from(bgzf::Writer::new(writer))
}
/// Attempts to finish the output stream.
///
/// This is typically only manually called if the underlying stream is needed before the writer
/// is dropped.
///
/// # Examples
///
/// ```
/// # use std::io;
/// use noodles_bcf as bcf;
/// let mut writer = bcf::io::Writer::new(io::sink());
/// writer.try_finish()?;
/// # Ok::<(), io::Error>(())
/// ```
pub fn try_finish(&mut self) -> io::Result<()> {
self.inner.try_finish()
}
}
impl<W> From<W> for Writer<W> {
fn from(inner: W) -> Self {
Self {
inner,
string_maps: StringMaps::default(),
}
}
}
impl<W> vcf::variant::io::Write for Writer<W>
where
W: Write,
{
fn write_variant_header(&mut self, header: &vcf::Header) -> io::Result<()> {
self.write_header(header)
}
fn write_variant_record(
&mut self,
header: &vcf::Header,
record: &dyn vcf::variant::Record,
) -> io::Result<()> {
write_record(&mut self.inner, header, &self.string_maps, record)
}
}
fn write_file_format<W>(writer: &mut W) -> io::Result<()>
where
W: Write,
{
use crate::MAGIC_NUMBER;
writer.write_all(MAGIC_NUMBER)?;
writer.write_u8(MAJOR)?;
writer.write_u8(MINOR)?;
Ok(())
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_write_file_format() -> io::Result<()> {
let mut buf = Vec::new();
write_file_format(&mut buf)?;
let expected = [
b'B', b'C', b'F', // magic
0x02, // major
0x02, // minor
];
assert_eq!(buf, expected);
Ok(())
}
}