noodles-bed 0.34.0

BED (Browser Extensible Data) reader and writer
Documentation
1
2
3
4
5
6
7
8
/// A BED record feature strand.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum Strand {
    /// Forward (sense or coding) strand.
    Forward,
    /// Reverse (antisense or complementary) strand.
    Reverse,
}