Documentation
¶
Overview ¶
Package bed handles BED I/O.
Format ¶
This package uses the format described in: https://en.wikipedia.org/wiki/BED_(file_format)
Index ¶
Constants ¶
View Source
const ( PlusStrand = "+" MinusStrand = "-" NoStrand = "." )
Valid values for the strand field.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BED ¶ added in v0.1.2
type BED struct { Chrom string ChromStart int // 0-based ChromEnd int // 0-based exclusive Name string Score int Strand string ThickStart int ThickEnd int ItemRGB [3]byte BlockCount int BlockSizes []int // Length should match BlockCount BlockStarts []int // Length should match BlockCount }
BED is a single line in a BED file.
Click to show internal directories.
Click to hide internal directories.