We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Found undocumented code? Please link it here The newly implemented functionality in the query model has yet to be documented and thoroughly tested.
Recently, I added a test arc to the test repo and plan to add tests and documentation in the following days:
Tests that came to my mind
The text was updated successfully, but these errors were encountered:
given the current test Arc (.\tests\ARCtrl.Querymodel.Tests\TestObjects\TestArc) I made this observation:
i.ArcTables.LastNodes |> List.ofSeq |> List.map (fun x -> x.Name)
returns: ["sampleOutCold.txt"; "sampleOutCold.txt"; "sampleOutCold.txt"; "sampleOutCold.txt"; "sampleOutCold.txt"; "sampleOutCold.txt"; "sampleOutHeat.txt"; "sampleOutHeat.txt"; "sampleOutHeat.txt"; "sampleOutHeat.txt"; "sampleOutHeat.txt"; "sampleOutHeat.txt"]
but I think it should return: val it: string list = ["sampleOutCold.txt"; "sampleOutHeat.txt"]
in this special case, since all last nodes are samples, the behaviour should mimic:
i.ArcTables.LastSamples |> List.map (fun x -> x.Name)
Sorry, something went wrong.
related: let lastNodesHeat = i.GetAssay("MSEval_Heat").LastNodes |> Seq.map (fun x -> x.Name) |> Array.ofSeq returns: [|"sampleOutHeat.txt"; "sampleOutHeat.txt"; "sampleOutHeat.txt"; "sampleOutHeat.txt"; "sampleOutHeat.txt"; "sampleOutHeat.txt"|] while: let lastSamplesHeat = i.GetAssay("MSEval_Heat").LastSamples |> List.map (fun x -> x.Name) |> Array.ofSeq correctly returns: val lastSamplesHeat: string array = [|"sampleOutHeat.txt"|]
let lastNodesHeat = i.GetAssay("MSEval_Heat").LastNodes |> Seq.map (fun x -> x.Name) |> Array.ofSeq
let lastSamplesHeat = i.GetAssay("MSEval_Heat").LastSamples |> List.map (fun x -> x.Name) |> Array.ofSeq
let nodeName = "sampleOutHeat.txt" let protocolName = "MS" i.ArcTables.ValuesOf(nodeName,protocolName) |> Seq.toList |> List.map (fun x -> x.NameText)
should return all the values related to sampleOutHeat.txt in this sheet, however it returns: []
ZimmerD
No branches or pull requests
Found undocumented code? Please link it here
The newly implemented functionality in the query model has yet to be documented and thoroughly tested.
Recently, I added a test arc to the test repo and plan to add tests and documentation in the following days:
Tests that came to my mind
The text was updated successfully, but these errors were encountered: