Hey one of the requirements of my task is that I do not use type annotation.
Currently my code looks like this
let (currentSeq: string) =
specie
|> Map.tryFind geneId
|> Option.get
let seq1 = currentSeq.[0..pos - 1]
let seq2 = currentSeq.[pos..String.length currentSeq - 1]`
I have been racking my brain for a while now, but I can not figure out how to index a 'chunk' of the string currentSeq, without type annotating it.