noodles_cram/crai/record.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 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 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
//! CRAM index record and fields.
mod field;
pub use self::field::Field;
use std::{error, fmt, num, str::FromStr};
use noodles_core::Position;
const FIELD_DELIMITER: char = '\t';
const MAX_FIELDS: usize = 6;
/// A CRAM index record.
#[derive(Clone, Debug, Default, Eq, PartialEq)]
pub struct Record {
reference_sequence_id: Option<usize>,
alignment_start: Option<Position>,
alignment_span: usize,
offset: u64,
landmark: u64,
slice_length: u64,
}
impl Record {
/// Creates a CRAM index record.
///
/// # Examples
///
/// ```
/// use noodles_core::Position;
/// use noodles_cram::crai;
///
/// let record = crai::Record::new(
/// Some(0),
/// Position::new(10946),
/// 6765,
/// 17711,
/// 233,
/// 317811,
/// );
/// ```
pub fn new(
reference_sequence_id: Option<usize>,
alignment_start: Option<Position>,
alignment_span: usize,
offset: u64,
landmark: u64,
slice_length: u64,
) -> Self {
Self {
reference_sequence_id,
alignment_start,
alignment_span,
offset,
landmark,
slice_length,
}
}
/// Returns the reference sequence ID.
///
/// # Examples
///
/// ```
/// use noodles_core::Position;
/// use noodles_cram::crai;
///
/// let record = crai::Record::new(
/// Some(0),
/// Position::new(10946),
/// 6765,
/// 17711,
/// 233,
/// 317811,
/// );
///
/// assert_eq!(record.reference_sequence_id(), Some(0));
/// ```
pub fn reference_sequence_id(&self) -> Option<usize> {
self.reference_sequence_id
}
/// Returns the alignment start.
///
/// # Examples
///
/// ```
/// use noodles_core::Position;
/// use noodles_cram::crai;
///
/// let record = crai::Record::new(
/// Some(0),
/// Position::new(10946),
/// 6765,
/// 17711,
/// 233,
/// 317811,
/// );
///
/// assert_eq!(record.alignment_start(), Position::new(10946));
/// ```
pub fn alignment_start(&self) -> Option<Position> {
self.alignment_start
}
/// Returns the alignment span.
///
/// # Examples
///
/// ```
/// use noodles_core::Position;
/// use noodles_cram::crai;
///
/// let record = crai::Record::new(
/// Some(0),
/// Position::new(10946),
/// 6765,
/// 17711,
/// 233,
/// 317811,
/// );
///
/// assert_eq!(record.alignment_span(), 6765);
/// ```
pub fn alignment_span(&self) -> usize {
self.alignment_span
}
/// Returns the offset of the container from the start of the stream.
///
/// # Examples
///
/// ```
/// use noodles_core::Position;
/// use noodles_cram::crai;
///
/// let record = crai::Record::new(
/// Some(0),
/// Position::new(10946),
/// 6765,
/// 17711,
/// 233,
/// 317811,
/// );
///
/// assert_eq!(record.offset(), 17711);
/// ```
pub fn offset(&self) -> u64 {
self.offset
}
/// Returns the offset of the slice from the start of the container.
///
/// # Examples
///
/// ```
/// use noodles_core::Position;
/// use noodles_cram::crai;
///
/// let record = crai::Record::new(
/// Some(0),
/// Position::new(10946),
/// 6765,
/// 17711,
/// 233,
/// 317811,
/// );
///
/// assert_eq!(record.landmark(), 233);
/// ```
pub fn landmark(&self) -> u64 {
self.landmark
}
/// Returns the size of the slice in bytes.
///
/// # Examples
///
/// ```
/// use noodles_core::Position;
/// use noodles_cram::crai;
///
/// let record = crai::Record::new(
/// Some(0),
/// Position::new(10946),
/// 6765,
/// 17711,
/// 233,
/// 317811,
/// );
///
/// assert_eq!(record.slice_length(), 317811);
/// ```
pub fn slice_length(&self) -> u64 {
self.slice_length
}
}
impl fmt::Display for Record {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const UNMAPPED: i32 = -1;
if let Some(id) = self.reference_sequence_id() {
write!(f, "{id}\t")?;
} else {
write!(f, "{UNMAPPED}\t")?;
};
let alignment_start = self.alignment_start().map(usize::from).unwrap_or_default();
write!(
f,
"{}\t{}\t{}\t{}\t{}",
alignment_start, self.alignment_span, self.offset, self.landmark, self.slice_length
)
}
}
/// An error returned when a raw CRAM index record fails to parse.
#[derive(Clone, Debug, Eq, PartialEq)]
pub enum ParseError {
/// A field is missing.
Missing(Field),
/// A field is invalid.
Invalid(Field, std::num::ParseIntError),
/// The reference sequence ID is invalid.
InvalidReferenceSequenceId(num::TryFromIntError),
}
impl error::Error for ParseError {
fn source(&self) -> Option<&(dyn error::Error + 'static)> {
match self {
Self::Missing(_) => None,
Self::Invalid(_, e) => Some(e),
Self::InvalidReferenceSequenceId(e) => Some(e),
}
}
}
impl fmt::Display for ParseError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::Missing(field) => write!(f, "missing field: {field:?}"),
Self::Invalid(field, _) => write!(f, "invalid field: {field:?}"),
Self::InvalidReferenceSequenceId(_) => f.write_str("invalid reference sequence ID"),
}
}
}
impl FromStr for Record {
type Err = ParseError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
const UNMAPPED: i32 = -1;
let mut fields = s.splitn(MAX_FIELDS, FIELD_DELIMITER);
let reference_sequence_id =
parse_i32(&mut fields, Field::ReferenceSequenceId).and_then(|n| match n {
UNMAPPED => Ok(None),
_ => usize::try_from(n)
.map(Some)
.map_err(ParseError::InvalidReferenceSequenceId),
})?;
let alignment_start = parse_position(&mut fields, Field::AlignmentStart)?;
let alignment_span = parse_span(&mut fields, Field::AlignmentSpan)?;
let offset = parse_u64(&mut fields, Field::Offset)?;
let landmark = parse_u64(&mut fields, Field::Landmark)?;
let slice_length = parse_u64(&mut fields, Field::SliceLength)?;
Ok(Record::new(
reference_sequence_id,
alignment_start,
alignment_span,
offset,
landmark,
slice_length,
))
}
}
fn parse_i32<'a, I>(fields: &mut I, field: Field) -> Result<i32, ParseError>
where
I: Iterator<Item = &'a str>,
{
fields
.next()
.ok_or(ParseError::Missing(field))
.and_then(|s| s.parse().map_err(|e| ParseError::Invalid(field, e)))
}
fn parse_u64<'a, I>(fields: &mut I, field: Field) -> Result<u64, ParseError>
where
I: Iterator<Item = &'a str>,
{
fields
.next()
.ok_or(ParseError::Missing(field))
.and_then(|s| s.parse().map_err(|e| ParseError::Invalid(field, e)))
}
fn parse_position<'a, I>(fields: &mut I, field: Field) -> Result<Option<Position>, ParseError>
where
I: Iterator<Item = &'a str>,
{
fields
.next()
.ok_or(ParseError::Missing(field))
.and_then(|s| s.parse().map_err(|e| ParseError::Invalid(field, e)))
.map(Position::new)
}
fn parse_span<'a, I>(fields: &mut I, field: Field) -> Result<usize, ParseError>
where
I: Iterator<Item = &'a str>,
{
fields
.next()
.ok_or(ParseError::Missing(field))
.and_then(|s| s.parse().map_err(|e| ParseError::Invalid(field, e)))
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_fmt() {
let record = Record::new(None, Position::new(10946), 6765, 17711, 233, 317811);
let actual = record.to_string();
let expected = "-1\t10946\t6765\t17711\t233\t317811";
assert_eq!(actual, expected);
}
#[test]
fn test_from_str() -> Result<(), Box<dyn std::error::Error>> {
let actual: Record = "0\t10946\t6765\t17711\t233\t317811".parse()?;
let expected = Record {
reference_sequence_id: Some(0),
alignment_start: Position::new(10946),
alignment_span: 6765,
offset: 17711,
landmark: 233,
slice_length: 317811,
};
assert_eq!(actual, expected);
Ok(())
}
#[test]
fn test_from_str_with_invalid_records() {
assert_eq!(
"0\t10946".parse::<Record>(),
Err(ParseError::Missing(Field::AlignmentSpan))
);
assert!(matches!(
"0\t10946\tnoodles".parse::<Record>(),
Err(ParseError::Invalid(Field::AlignmentSpan, _))
));
assert!(matches!(
"-8\t10946\t6765\t17711\t233\t317811".parse::<Record>(),
Err(ParseError::InvalidReferenceSequenceId(_))
));
}
}