Documentation
¶
Overview ¶
Package bed is used to read bed features. ref: https://genome.ucsc.edu/FAQ/FAQformat.html#format1 ref: https://github.com/biogo/biogo/blob/master/io/featio/bed/bed.go
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrBadBEDType error ErrBadBEDType = errors.New("bad BED type") // ErrBadBrowserLine error ErrBadBrowserLine = errors.New("bad browser line") )
View Source
var TrackItemRegexp = regexp.MustCompile(`(\w+)="?[^#]+?"?`)
TrackItemRegexp is regular expression for parsing track items
Functions ¶
This section is empty.
Types ¶
type BED12 ¶
type BED12 struct { Chrom string ChromStart int ChromEnd int FeatName string FeatScore int FeatStrand *string ThickStart int ThickEnd int RGB string BlockCount int BlockSizes []int BlockStarts []int }
BED12 struct
type BED6 ¶
type BED6 struct { Chrom string ChromStart int ChromEnd int FeatName string FeatScore int FeatStrand *string }
BED6 struct
Click to show internal directories.
Click to hide internal directories.