Struct bio::io::bed::Writer [] [src]

pub struct Writer<W: Write> {
    // some fields omitted
}

A BED writer.

Methods

impl Writer<File>
[src]

fn to_file<P: AsRef<Path>>(path: P) -> Result<Self>

Write to a given file path.

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

fn new(writer: W) -> Self

Write to a given writer.

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

Write a given BED record.