sequence-formats-1.11.0.2: A package with basic parsing utilities for several Bioinformatic data formats.
Safe HaskellNone
LanguageHaskell2010

SequenceFormats.Bed

Documentation

data BedEntry Source #

Constructors

BedEntry Chrom Int Int 

Instances

Instances details
Show BedEntry Source # 
Instance details

Defined in SequenceFormats.Bed

Eq BedEntry Source # 
Instance details

Defined in SequenceFormats.Bed

readBedFile :: forall (m :: Type -> Type). MonadSafe m => FilePath -> Producer BedEntry m () Source #

filterThroughBed :: forall (m :: Type -> Type) a. Monad m => Producer BedEntry m () -> (a -> (Chrom, Int)) -> Producer a m () -> Producer a m () Source #