[][src]Struct bam::sam::SamWriter

pub struct SamWriter<W: Write> { /* fields omitted */ }

Writes records in SAM format.

Can be created as

let writer = SamWriter::from_path("out.sam", header).unwrap();

or using a builder

let writer = SamWriter::build()
    .header(header)
    .from_path("out.sam").unwrap();

You can clone a header from SAM/BAM reader or create one yourself.

You need to import RecordWriter to write records:

use bam::RecordWriter;
let mut writer = bam::SamWriter::from_path("out.sam", header).unwrap();
let mut record = bam::Record::new();
// Filling the record.
writer.write(&record).unwrap();

Methods

impl SamWriter<BufWriter<File>>[src]

pub fn build() -> SamWriterBuilder[src]

Create a builder.

pub fn from_path<P: AsRef<Path>>(path: P, header: Header) -> Result<Self>[src]

Creates a SAM writer from a path and a header.

impl<W: Write> SamWriter<W>[src]

pub fn from_stream(stream: W, header: Header) -> Result<Self>[src]

Creates a SAM writer from a stream and a header. Preferably the stream should be wrapped in a buffer writer, such as BufWriter.

pub fn header(&self) -> &Header[src]

Returns header.

pub fn flush(&mut self) -> Result<()>[src]

Flushes contents to output.

Trait Implementations

impl<W: Write> RecordWriter for SamWriter<W>[src]

fn write(&mut self, record: &Record) -> Result<()>[src]

Writes a single record in SAM format.

Auto Trait Implementations

impl<W> Send for SamWriter<W> where
    W: Send

impl<W> Unpin for SamWriter<W> where
    W: Unpin

impl<W> Sync for SamWriter<W> where
    W: Sync

impl<W> UnwindSafe for SamWriter<W> where
    W: UnwindSafe

impl<W> RefUnwindSafe for SamWriter<W> where
    W: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]