Lukas Weil

Results 24 issues of Lukas Weil

**Is your feature request related to a problem? Please describe.** Many Machine learning algorithms take additional hyper parameters which can affect the model performance quite a bit. Finding the best...

### Description Some of the functions in module Algebra are callable from outside even though they should be encapsulated. Example: FSharp.Stats.Algebra.EVD.SymmetricEvd

project-structure
priority-low

Hey, I created a function for joining two frames with different rowkeys. For each frame an additional function is given which maps the rowkey of the frame to a rowkey...

**Is your feature request related to a problem? Please describe.** I have a task where I need to `create OBO terms` programmatically and then `write` them out `into an OBO...

FeatureRequest

**Describe the bug** Pairwise alignment does not correctly score gap opening. Instead of making a low cost, big gap it tends to make smaller gaps where single positions match. **To...

bug

**Is your feature request related to a problem? Please describe.** Using the [ClustalOWrapper](https://github.com/CSBiology/BioFSharp/blob/developer/src/BioFSharp.IO/ClustalOWrapper.fs) in automatic combination with the [Clustal File Parser](https://github.com/CSBiology/BioFSharp/blob/developer/src/BioFSharp.IO/Clustal.fs), one can seamlessly integrate ClustalO in an FSharp scripting...

project-IO
FeatureRequest

### The Problem Using the Pairwise alignment in BioFSharp.Algorithms works fine but the only implemented way to write out this alignment in a correct format is in the BioFSharp.IO.Clustal module....

priority-medium
FeatureRequest

**Is your feature request related to a problem? Please describe.** In recent libary changes (#31), the folder structure and namespaces where adjusted quite a bit. ATM it does not seem...

### Repro steps open FSharp.FGL.Undirected let rnd = System.Random() let myGraph = FSharp.FGL.Directed.Models.gilbert (fun i -> i,i) 4 0.3 |> FSharp.FGL.Directed.Edges.undirect (fun _ _ -> 1) myGraph |> Edges.map (fun...

### Description Custom hash functions are never called on Record Types. ### Repro code #### test.fsx ```fsharp [] [] type MyRecord = {Name : string; Age: int } override this.Equals(that)...