Hoogle Search
Within LTS Haskell 24.46 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
freqSumEntryToText :: FreqSumEntry -> ByteStringsequence-formats SequenceFormats.FreqSum This function converts a single freqSum entry to a printable freqSum line.
-
sequence-formats SequenceFormats.FreqSum A function that writes a freqSum file. Expects the FilePath and the freqSum header as arguments, and then returns a Consumer that accepts freqSum entries.
-
sequence-formats SequenceFormats.FreqSum A function to write freqSum data to StdOut. Expects the freqSum header as argument, and then returns a Consumer that accepts freqSum entries.
readFreqSumFile :: MonadSafe m => FilePath -> m (FreqSumHeader, Producer FreqSumEntry m ())sequence-formats SequenceFormats.FreqSum A function to read a freqsum file from a file. Returns a pair of a freqSum Header and a Producer over all lines.
readFreqSumStdIn :: (MonadIO m, MonadThrow m) => m (FreqSumHeader, Producer FreqSumEntry m ())sequence-formats SequenceFormats.FreqSum A function to read a freqsum file from StdIn. Returns a pair of a freqSum Header and a Producer over all lines.
-
sequence-formats SequenceFormats.Utils A helper function to parse a text producer, properly reporting all errors to stderr.
-
sequence-formats SequenceFormats.Utils No documentation available.
vcfToFreqSumEntry :: MonadThrow m => VCFentry -> m FreqSumEntrysequence-formats SequenceFormats.VCF Converts a VCFentry to the simpler FreqSum format
addConsumes :: [MediaType] -> Swagger -> Swaggerservant-swagger Servant.Swagger.Internal Add accepted content types to every operation in the spec.
windowPowerSum :: forall (m :: Type -> Type) a . (Monad m, Num a) => Int -> Fold m (a, Maybe a) astreamly-core Streamly.Internal.Data.Fold Sum of the <math>th power of all the elements in a rolling window: <math>
>>> powerSum k = lmap (^ k) sum
Space: <math> Time: <math>