mirror of
https://github.com/correl/elm.git
synced 2024-11-16 19:19:28 +00:00
16 lines
334 B
Text
16 lines
334 B
Text
module NucleotideCount (..) where
|
|
|
|
import String
|
|
|
|
|
|
nucleotideCounts : String -> { a : Int, t : Int, c : Int, g : Int }
|
|
nucleotideCounts sequence =
|
|
let
|
|
getCount n =
|
|
String.filter (\c -> c == n) sequence |> String.length
|
|
in
|
|
{ a = getCount 'A'
|
|
, t = getCount 'T'
|
|
, c = getCount 'C'
|
|
, g = getCount 'G'
|
|
}
|