noodles_cram/io/writer/builder.rs
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
use std::{
fs::File,
io::{self, Write},
path::Path,
};
use noodles_fasta as fasta;
use super::{Options, Writer};
use crate::{
codecs::Encoder, data_container::BlockContentEncoderMap, file_definition::Version,
DataContainer,
};
/// A CRAM writer builder.
#[derive(Default)]
pub struct Builder {
reference_sequence_repository: fasta::Repository,
options: Options,
}
impl Builder {
/// Sets the reference sequence repository.
///
/// # Examples
///
/// ```
/// use noodles_cram::io::writer::Builder;
/// use noodles_fasta as fasta;
///
/// let repository = fasta::Repository::default();
/// let builder = Builder::default()
/// .set_reference_sequence_repository(repository);
/// ```
pub fn set_reference_sequence_repository(
mut self,
reference_sequence_repository: fasta::Repository,
) -> Self {
self.reference_sequence_repository = reference_sequence_repository;
self
}
/// Sets whether to preserve read names.
///
/// If `false`, read names are discarded.
///
/// The default is `true`.
///
/// # Examples
///
/// ```
/// use noodles_cram::io::writer::Builder;
/// let builder = Builder::default().preserve_read_names(false);
/// ```
pub fn preserve_read_names(mut self, value: bool) -> Self {
self.options.preserve_read_names = value;
self
}
/// Sets whether to encode alignment start positions as deltas.
///
/// If `false`, record alignment start positions are written with their actual values.
///
/// The default is `true`.
///
/// # Examples
///
/// ```
/// use noodles_cram::io::writer::Builder;
/// let builder = Builder::default()
/// .encode_alignment_start_positions_as_deltas(false);
/// ```
pub fn encode_alignment_start_positions_as_deltas(mut self, value: bool) -> Self {
self.options.encode_alignment_start_positions_as_deltas = value;
self
}
/// Sets the block content-encoder map.
///
/// # Examples
///
/// ```
/// use noodles_cram::{data_container::BlockContentEncoderMap, io::writer::Builder};
///
/// let block_content_encoder_map = BlockContentEncoderMap::default();
/// let builder = Builder::default()
/// .set_block_content_encoder_map(block_content_encoder_map);
/// ```
pub fn set_block_content_encoder_map(mut self, map: BlockContentEncoderMap) -> Self {
self.options.block_content_encoder_map = map;
self
}
/// Builds a CRAM writer from a path.
///
/// # Examples
///
/// ```no_run
/// use noodles_cram::io::writer::Builder;
/// let writer = Builder::default().build_from_path("out.cram")?;
/// # Ok::<_, std::io::Error>(())
/// ```
pub fn build_from_path<P>(self, dst: P) -> io::Result<Writer<File>>
where
P: AsRef<Path>,
{
File::create(dst).map(|file| self.build_from_writer(file))
}
/// Builds a CRAM writer from a path.
#[deprecated(since = "0.68.0", note = "Use `Builder::build_from_path` instead.")]
pub fn build_with_path<P>(self, dst: P) -> io::Result<Writer<File>>
where
P: AsRef<Path>,
{
self.build_from_path(dst)
}
/// Builds a CRAM writer from a writer.
///
/// # Examples
///
/// ```
/// use noodles_cram::io::writer::Builder;
/// let writer = Builder::default().build_from_writer(Vec::new());
/// ```
pub fn build_from_writer<W>(mut self, writer: W) -> Writer<W>
where
W: Write,
{
if uses_cram_3_1_codecs(&self.options.block_content_encoder_map) {
self.options.version = Version::new(3, 1);
}
Writer {
inner: writer,
reference_sequence_repository: self.reference_sequence_repository,
options: self.options,
data_container_builder: DataContainer::builder(0),
record_counter: 0,
}
}
/// Builds a CRAM writer from a writer.
#[deprecated(since = "0.68.0", note = "Use `Builder::build_from_writer` instead.")]
pub fn build_with_writer<W>(self, writer: W) -> Writer<W>
where
W: Write,
{
self.build_from_writer(writer)
}
}
pub fn uses_cram_3_1_codecs(block_content_encoder_map: &BlockContentEncoderMap) -> bool {
fn is_cram_3_1_codec(encoder: &Encoder) -> bool {
matches!(
encoder,
Encoder::RansNx16(_) | Encoder::AdaptiveArithmeticCoding(_) | Encoder::NameTokenizer
)
}
if let Some(encoder) = block_content_encoder_map.core_data_encoder() {
if is_cram_3_1_codec(encoder) {
return true;
}
}
block_content_encoder_map
.data_series_encoders()
.iter()
.chain(block_content_encoder_map.tag_values_encoders().values())
.flatten()
.any(is_cram_3_1_codec)
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_uses_cram_3_1_codecs() {
use crate::codecs::rans_nx16::Flags;
let block_content_encoder_map = BlockContentEncoderMap::default();
assert!(!uses_cram_3_1_codecs(&block_content_encoder_map));
let block_content_encoder_map = BlockContentEncoderMap::builder()
.set_core_data_encoder(Some(Encoder::RansNx16(Flags::empty())))
.build();
assert!(uses_cram_3_1_codecs(&block_content_encoder_map));
}
}