This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open BioFSharp | |
open FSharpAux.IO.SeqIO | |
///Returns a function to format a given value as string | |
let inline stringFunction (separator: string) (flatten: bool) (input: 'a) = | |
let o = box input | |
match o with | |
//match string first so that it doesn't get treated as a char array | |
| :? string -> | |
fun (x: obj) -> |