Skip to content

fixed last failing test: changed PhyloNetworks.* --> SNaQ.* #11

fixed last failing test: changed PhyloNetworks.* --> SNaQ.*

fixed last failing test: changed PhyloNetworks.* --> SNaQ.* #11

Triggered via push October 25, 2024 19:23
Status Failure
Total duration 7m 34s
Artifacts

CI.yml

on: push
Matrix: test
Fit to window
Zoom out
Zoom in

Annotations

10 errors and 1 notice
Documentation: src/types.jl#L57
doctest failure in ~/work/SNaQ.jl/SNaQ.jl/src/types.jl:57-98 ```jldoctest julia> using PhyloNetworks julia> net0 = readTopology("(s17:13.76,(((s3:10.98,(s4:8.99,s5:8.99)I1:1.99)I2:0.47,(((s6:2.31,s7:2.31)I3:4.02,(s8:4.97,#H24:0.0::0.279)I4:1.36)I5:3.64,((s9:8.29,((s10:2.37,s11:2.37)I6:3.02,(s12:2.67,s13:2.67)I7:2.72)I8:2.89)I9:0.21,((s14:2.83,(s15:1.06,s16:1.06)I10:1.78)I11:2.14)#H24:3.52::0.72)I12:1.47)I13:1.48)I14:1.26,(((s18:5.46,s19:5.46)I15:0.59,(s20:4.72,(s21:2.40,s22:2.40)I16:2.32)I17:1.32)I18:2.68,(s23:8.56,(s1:4.64,s2:4.64)I19:3.92)I20:0.16)I21:3.98)I22:1.05);"); julia> net = readTopologyLevel1(writeTopology(net0)) ## need level1 attributes for functions below HybridNetwork, Un-rooted Network 46 edges 46 nodes: 23 tips, 1 hybrid nodes, 22 internal tree nodes. tip labels: s17, s3, s4, s5, ... (s4:8.99,s5:8.99,(s3:10.0,((((s6:2.31,s7:2.31)I3:4.02,(s8:4.97,#H24:0.0::0.279)I4:1.36)I5:3.64,((s9:8.29,((s10:2.37,s11:2.37)I6:3.02,(s12:2.67,s13:2.67)I7:2.72)I8:2.89)I9:0.21,((s14:2.83,(s15:1.06,s16:1.06)I10:1.78)I11:2.14)#H24:3.52::0.721)I12:1.47)I13:1.48,((((s18:5.46,s19:5.46)I15:0.59,(s20:4.72,(s21:2.4,s22:2.4)I16:2.32)I17:1.32)I18:2.68,(s23:8.56,(s1:4.64,s2:4.64)I19:3.92)I20:0.16)I21:3.98,s17:10.0)I22:1.26)I14:0.47)I2:1.99)I1; julia> q1 = Quartet(1,["s1", "s16", "s18", "s23"],[0.296,0.306,0.398]) number: 1 taxon names: ["s1", "s16", "s18", "s23"] observed CF: [0.296, 0.306, 0.398] pseudo-deviance under last used network: 0.0 (meaningless before estimation) expected CF under last used network: Float64[] (meaningless before estimation) julia> qnet = SNaQ.extractQuartet!(net,q1) taxa: ["s1", "s16", "s18", "s23"] number of hybrid nodes: 1 julia> sum([e.istIdentifiable for e in net.edge]) ## 23 identifiable edges in net 23 julia> idedges = [ee.number for ee in net.edge[[e.istIdentifiable for e in net.edge]]]; julia> print(idedges) [5, 6, 9, 11, 12, 13, 17, 20, 21, 22, 26, 27, 28, 29, 30, 31, 34, 38, 39, 40, 44, 45, 46] julia> length(qnet.hasEdge) ## 24 = 1 gamma + 23 identifiable edges 24 julia> sum(qnet.hasEdge) ## 8 = 1 gamma + 7 identifiable edges in qnet 8 julia> print(idedges[qnet.hasEdge[2:end]]) ## 7 id. edges: [12, 13, 29, 30, 31, 45, 46] [12, 13, 29, 30, 31, 45, 46] julia> qnet.edge[qnet.index[1]].number ## 11 = minor hybrid edge 11 ``` Subexpression: net0 = readTopology("(s17:13.76,(((s3:10.98,(s4:8.99,s5:8.99)I1:1.99)I2:0.47,(((s6:2.31,s7:2.31)I3:4.02,(s8:4.97,#H24:0.0::0.279)I4:1.36)I5:3.64,((s9:8.29,((s10:2.37,s11:2.37)I6:3.02,(s12:2.67,s13:2.67)I7:2.72)I8:2.89)I9:0.21,((s14:2.83,(s15:1.06,s16:1.06)I10:1.78)I11:2.14)#H24:3.52::0.72)I12:1.47)I13:1.48)I14:1.26,(((s18:5.46,s19:5.46)I15:0.59,(s20:4.72,(s21:2.40,s22:2.40)I16:2.32)I17:1.32)I18:2.68,(s23:8.56,(s1:4.64,s2:4.64)I19:3.92)I20:0.16)I21:3.98)I22:1.05);"); Evaluated output: ERROR: UndefVarError: `readTopology` not defined in `Main` Suggestion: check for spelling errors or missing imports. Hint: a global variable of this name may be made accessible by importing PhyloNetworks in the current active module Main Stacktrace: [1] top-level scope @ none:1 Expected output: using PhyloNetworks diff = Warning: Diff output requires color. using PhyloNetworksERROR: UndefVarError: `readTopology` not defined in `Main` Suggestion: check for spelling errors or missing imports. Hint: a global variable of this name may be made accessible by importing PhyloNetworks in the current active module Main Stacktrace: [1] top-level scope @ none:1
Documentation: src/types.jl#L57
doctest failure in ~/work/SNaQ.jl/SNaQ.jl/src/types.jl:57-98 ```jldoctest julia> using PhyloNetworks julia> net0 = readTopology("(s17:13.76,(((s3:10.98,(s4:8.99,s5:8.99)I1:1.99)I2:0.47,(((s6:2.31,s7:2.31)I3:4.02,(s8:4.97,#H24:0.0::0.279)I4:1.36)I5:3.64,((s9:8.29,((s10:2.37,s11:2.37)I6:3.02,(s12:2.67,s13:2.67)I7:2.72)I8:2.89)I9:0.21,((s14:2.83,(s15:1.06,s16:1.06)I10:1.78)I11:2.14)#H24:3.52::0.72)I12:1.47)I13:1.48)I14:1.26,(((s18:5.46,s19:5.46)I15:0.59,(s20:4.72,(s21:2.40,s22:2.40)I16:2.32)I17:1.32)I18:2.68,(s23:8.56,(s1:4.64,s2:4.64)I19:3.92)I20:0.16)I21:3.98)I22:1.05);"); julia> net = readTopologyLevel1(writeTopology(net0)) ## need level1 attributes for functions below HybridNetwork, Un-rooted Network 46 edges 46 nodes: 23 tips, 1 hybrid nodes, 22 internal tree nodes. tip labels: s17, s3, s4, s5, ... (s4:8.99,s5:8.99,(s3:10.0,((((s6:2.31,s7:2.31)I3:4.02,(s8:4.97,#H24:0.0::0.279)I4:1.36)I5:3.64,((s9:8.29,((s10:2.37,s11:2.37)I6:3.02,(s12:2.67,s13:2.67)I7:2.72)I8:2.89)I9:0.21,((s14:2.83,(s15:1.06,s16:1.06)I10:1.78)I11:2.14)#H24:3.52::0.721)I12:1.47)I13:1.48,((((s18:5.46,s19:5.46)I15:0.59,(s20:4.72,(s21:2.4,s22:2.4)I16:2.32)I17:1.32)I18:2.68,(s23:8.56,(s1:4.64,s2:4.64)I19:3.92)I20:0.16)I21:3.98,s17:10.0)I22:1.26)I14:0.47)I2:1.99)I1; julia> q1 = Quartet(1,["s1", "s16", "s18", "s23"],[0.296,0.306,0.398]) number: 1 taxon names: ["s1", "s16", "s18", "s23"] observed CF: [0.296, 0.306, 0.398] pseudo-deviance under last used network: 0.0 (meaningless before estimation) expected CF under last used network: Float64[] (meaningless before estimation) julia> qnet = SNaQ.extractQuartet!(net,q1) taxa: ["s1", "s16", "s18", "s23"] number of hybrid nodes: 1 julia> sum([e.istIdentifiable for e in net.edge]) ## 23 identifiable edges in net 23 julia> idedges = [ee.number for ee in net.edge[[e.istIdentifiable for e in net.edge]]]; julia> print(idedges) [5, 6, 9, 11, 12, 13, 17, 20, 21, 22, 26, 27, 28, 29, 30, 31, 34, 38, 39, 40, 44, 45, 46] julia> length(qnet.hasEdge) ## 24 = 1 gamma + 23 identifiable edges 24 julia> sum(qnet.hasEdge) ## 8 = 1 gamma + 7 identifiable edges in qnet 8 julia> print(idedges[qnet.hasEdge[2:end]]) ## 7 id. edges: [12, 13, 29, 30, 31, 45, 46] [12, 13, 29, 30, 31, 45, 46] julia> qnet.edge[qnet.index[1]].number ## 11 = minor hybrid edge 11 ``` Subexpression: net = readTopologyLevel1(writeTopology(net0)) ## need level1 attributes for functions below Evaluated output: ERROR: UndefVarError: `writeTopology` not defined in `Main` Suggestion: check for spelling errors or missing imports. Hint: a global variable of this name may be made accessible by importing PhyloNetworks in the current active module Main Stacktrace: [1] top-level scope @ none:1 Expected output: diff = Warning: Diff output requires color. ERROR: UndefVarError: `writeTopology` not defined in `Main` Suggestion: check for spelling errors or missing imports. Hint: a global variable of this name may be made accessible by importing PhyloNetworks in the current active module Main Stacktrace: [1] top-level scope @ none:1
Documentation: src/types.jl#L57
doctest failure in ~/work/SNaQ.jl/SNaQ.jl/src/types.jl:57-98 ```jldoctest julia> using PhyloNetworks julia> net0 = readTopology("(s17:13.76,(((s3:10.98,(s4:8.99,s5:8.99)I1:1.99)I2:0.47,(((s6:2.31,s7:2.31)I3:4.02,(s8:4.97,#H24:0.0::0.279)I4:1.36)I5:3.64,((s9:8.29,((s10:2.37,s11:2.37)I6:3.02,(s12:2.67,s13:2.67)I7:2.72)I8:2.89)I9:0.21,((s14:2.83,(s15:1.06,s16:1.06)I10:1.78)I11:2.14)#H24:3.52::0.72)I12:1.47)I13:1.48)I14:1.26,(((s18:5.46,s19:5.46)I15:0.59,(s20:4.72,(s21:2.40,s22:2.40)I16:2.32)I17:1.32)I18:2.68,(s23:8.56,(s1:4.64,s2:4.64)I19:3.92)I20:0.16)I21:3.98)I22:1.05);"); julia> net = readTopologyLevel1(writeTopology(net0)) ## need level1 attributes for functions below HybridNetwork, Un-rooted Network 46 edges 46 nodes: 23 tips, 1 hybrid nodes, 22 internal tree nodes. tip labels: s17, s3, s4, s5, ... (s4:8.99,s5:8.99,(s3:10.0,((((s6:2.31,s7:2.31)I3:4.02,(s8:4.97,#H24:0.0::0.279)I4:1.36)I5:3.64,((s9:8.29,((s10:2.37,s11:2.37)I6:3.02,(s12:2.67,s13:2.67)I7:2.72)I8:2.89)I9:0.21,((s14:2.83,(s15:1.06,s16:1.06)I10:1.78)I11:2.14)#H24:3.52::0.721)I12:1.47)I13:1.48,((((s18:5.46,s19:5.46)I15:0.59,(s20:4.72,(s21:2.4,s22:2.4)I16:2.32)I17:1.32)I18:2.68,(s23:8.56,(s1:4.64,s2:4.64)I19:3.92)I20:0.16)I21:3.98,s17:10.0)I22:1.26)I14:0.47)I2:1.99)I1; julia> q1 = Quartet(1,["s1", "s16", "s18", "s23"],[0.296,0.306,0.398]) number: 1 taxon names: ["s1", "s16", "s18", "s23"] observed CF: [0.296, 0.306, 0.398] pseudo-deviance under last used network: 0.0 (meaningless before estimation) expected CF under last used network: Float64[] (meaningless before estimation) julia> qnet = SNaQ.extractQuartet!(net,q1) taxa: ["s1", "s16", "s18", "s23"] number of hybrid nodes: 1 julia> sum([e.istIdentifiable for e in net.edge]) ## 23 identifiable edges in net 23 julia> idedges = [ee.number for ee in net.edge[[e.istIdentifiable for e in net.edge]]]; julia> print(idedges) [5, 6, 9, 11, 12, 13, 17, 20, 21, 22, 26, 27, 28, 29, 30, 31, 34, 38, 39, 40, 44, 45, 46] julia> length(qnet.hasEdge) ## 24 = 1 gamma + 23 identifiable edges 24 julia> sum(qnet.hasEdge) ## 8 = 1 gamma + 7 identifiable edges in qnet 8 julia> print(idedges[qnet.hasEdge[2:end]]) ## 7 id. edges: [12, 13, 29, 30, 31, 45, 46] [12, 13, 29, 30, 31, 45, 46] julia> qnet.edge[qnet.index[1]].number ## 11 = minor hybrid edge 11 ``` Subexpression: q1 = Quartet(1,["s1", "s16", "s18", "s23"],[0.296,0.306,0.398]) Evaluated output: number: 1 taxon names: ["s1", "s16", "s18", "s23"] observed CF: [0.296, 0.306, 0.398] pseudo-deviance under last used network: 0.0 (meaningless before estimation) expected CF under last used network: Float64[] (meaningless before estimation) Expected output: HybridNetwork, Un-rooted Network 46 edges 46 nodes: 23 tips, 1 hybrid nodes, 22 internal tree nodes. tip labels: s17, s3, s4, s5, ... (s4:8.99,s5:8.99,(s3:10.0,((((s6:2.31,s7:2.31)I3:4.02,(s8:4.97,#H24:0.0::0.279)I4:1.36)I5:3.64,((s9:8.29,((s10:2.37,s11:2.37)I6:3.02,(s12:2.67,s13:2.67)I7:2.72)I8:2.89)I9:0.21,((s14:2.83,(s15:1.06,s16:1.06)I10:1.78)I11:2.14)#H24:3.52::0.721)I12:1.47)I13:1.48,((((s18:5.46,s19:5.46)I15:0.59,(s20:4.72,(s21:2.4,s22:2.4)I16:2.32)I17:1.32)I18:2.68,(s23:8.56,(s1:4.64,s2:4.64)I19:3.92)I20:0.16)I21:3.98,s17:10.0)I22:1.26)I14:0.47)I2:1.99)I1; diff = Warning: Diff output requires color. HybridNetwork, Un-rooted Network 46 edges 46 nodes: 23 tips, 1 hybrid nodes, 22 internal tree nodes. tip labels: s17, s3, s4, s5, ... (s4:8.99,s5:8.99,(s3:10.0,((((s6:2.31,s7:2.31)I3:4.02,(s8:4.97,#H24:0.0::0.279)I4:1.36)I5:3.64,((s9:8.29,((s10:2.37,s11:2.37)I6:3.02,(s12:2.67,s13:2.67)I7:2.72)I8:2.89)I9:0.21,((s14:2.83,(s15:1.06,s16:1.06)I10:1.78)I11:2.14)#H24:3.52::0.721)I12:1.47)I13:1.48,((((s18:5.46,s19:5.46)I15:0.59,(s20:4.72,(s21:2.4,s22:2.4)I16:2.32)I17:1.32)I18:2.68,(s23:8.56,(s1:4.64,s2:4.64)I19:3.92)I20:0.16)I21:3.98,s17:10.0)I22:1.26)I14:0.47)I2:1.99)I1;number: 1 taxon names: ["s1", "s16", "s18", "s23"] observed CF: [0.296, 0.306, 0.398] pseudo-deviance under last used network: 0.0 (meaningless before estimation) expected CF under last used network: Float64[]
Documentation: src/types.jl#L57
doctest failure in ~/work/SNaQ.jl/SNaQ.jl/src/types.jl:57-98 ```jldoctest julia> using PhyloNetworks julia> net0 = readTopology("(s17:13.76,(((s3:10.98,(s4:8.99,s5:8.99)I1:1.99)I2:0.47,(((s6:2.31,s7:2.31)I3:4.02,(s8:4.97,#H24:0.0::0.279)I4:1.36)I5:3.64,((s9:8.29,((s10:2.37,s11:2.37)I6:3.02,(s12:2.67,s13:2.67)I7:2.72)I8:2.89)I9:0.21,((s14:2.83,(s15:1.06,s16:1.06)I10:1.78)I11:2.14)#H24:3.52::0.72)I12:1.47)I13:1.48)I14:1.26,(((s18:5.46,s19:5.46)I15:0.59,(s20:4.72,(s21:2.40,s22:2.40)I16:2.32)I17:1.32)I18:2.68,(s23:8.56,(s1:4.64,s2:4.64)I19:3.92)I20:0.16)I21:3.98)I22:1.05);"); julia> net = readTopologyLevel1(writeTopology(net0)) ## need level1 attributes for functions below HybridNetwork, Un-rooted Network 46 edges 46 nodes: 23 tips, 1 hybrid nodes, 22 internal tree nodes. tip labels: s17, s3, s4, s5, ... (s4:8.99,s5:8.99,(s3:10.0,((((s6:2.31,s7:2.31)I3:4.02,(s8:4.97,#H24:0.0::0.279)I4:1.36)I5:3.64,((s9:8.29,((s10:2.37,s11:2.37)I6:3.02,(s12:2.67,s13:2.67)I7:2.72)I8:2.89)I9:0.21,((s14:2.83,(s15:1.06,s16:1.06)I10:1.78)I11:2.14)#H24:3.52::0.721)I12:1.47)I13:1.48,((((s18:5.46,s19:5.46)I15:0.59,(s20:4.72,(s21:2.4,s22:2.4)I16:2.32)I17:1.32)I18:2.68,(s23:8.56,(s1:4.64,s2:4.64)I19:3.92)I20:0.16)I21:3.98,s17:10.0)I22:1.26)I14:0.47)I2:1.99)I1; julia> q1 = Quartet(1,["s1", "s16", "s18", "s23"],[0.296,0.306,0.398]) number: 1 taxon names: ["s1", "s16", "s18", "s23"] observed CF: [0.296, 0.306, 0.398] pseudo-deviance under last used network: 0.0 (meaningless before estimation) expected CF under last used network: Float64[] (meaningless before estimation) julia> qnet = SNaQ.extractQuartet!(net,q1) taxa: ["s1", "s16", "s18", "s23"] number of hybrid nodes: 1 julia> sum([e.istIdentifiable for e in net.edge]) ## 23 identifiable edges in net 23 julia> idedges = [ee.number for ee in net.edge[[e.istIdentifiable for e in net.edge]]]; julia> print(idedges) [5, 6, 9, 11, 12, 13, 17, 20, 21, 22, 26, 27, 28, 29, 30, 31, 34, 38, 39, 40, 44, 45, 46] julia> length(qnet.hasEdge) ## 24 = 1 gamma + 23 identifiable edges 24 julia> sum(qnet.hasEdge) ## 8 = 1 gamma + 7 identifiable edges in qnet 8 julia> print(idedges[qnet.hasEdge[2:end]]) ## 7 id. edges: [12, 13, 29, 30, 31, 45, 46] [12, 13, 29, 30, 31, 45, 46] julia> qnet.edge[qnet.index[1]].number ## 11 = minor hybrid edge 11 ``` Subexpression: qnet = SNaQ.extractQuartet!(net,q1) Evaluated output: ERROR: UndefVarError: `net` not defined in `Main` Suggestion: check for spelling errors or missing imports. Stacktrace: [1] top-level scope @ none:1 Expected output: number: 1 taxon names: ["s1", "s16", "s18", "s23"] observed CF: [0.296, 0.306, 0.398] pseudo-deviance under last used network: 0.0 (meaningless before estimation) expected CF under last used network: Float64[] (meaningless before estimation) diff = Warning: Diff output requires color. number: 1 taxon names: ["s1", "s16", "s18", "s23"] observed CF: [0.296, 0.306, 0.398] pseudo-deviance under last used network: 0.0 (meaningless before estimation) expected CF under last used network: Float64[] (meaningless before estimation)ERROR: UndefVarError: `net` not defined in `Main` Suggestion: check for spelling errors or missing imports. Stacktrace: [1] top-level scope @ none:1
Documentation: src/types.jl#L57
doctest failure in ~/work/SNaQ.jl/SNaQ.jl/src/types.jl:57-98 ```jldoctest julia> using PhyloNetworks julia> net0 = readTopology("(s17:13.76,(((s3:10.98,(s4:8.99,s5:8.99)I1:1.99)I2:0.47,(((s6:2.31,s7:2.31)I3:4.02,(s8:4.97,#H24:0.0::0.279)I4:1.36)I5:3.64,((s9:8.29,((s10:2.37,s11:2.37)I6:3.02,(s12:2.67,s13:2.67)I7:2.72)I8:2.89)I9:0.21,((s14:2.83,(s15:1.06,s16:1.06)I10:1.78)I11:2.14)#H24:3.52::0.72)I12:1.47)I13:1.48)I14:1.26,(((s18:5.46,s19:5.46)I15:0.59,(s20:4.72,(s21:2.40,s22:2.40)I16:2.32)I17:1.32)I18:2.68,(s23:8.56,(s1:4.64,s2:4.64)I19:3.92)I20:0.16)I21:3.98)I22:1.05);"); julia> net = readTopologyLevel1(writeTopology(net0)) ## need level1 attributes for functions below HybridNetwork, Un-rooted Network 46 edges 46 nodes: 23 tips, 1 hybrid nodes, 22 internal tree nodes. tip labels: s17, s3, s4, s5, ... (s4:8.99,s5:8.99,(s3:10.0,((((s6:2.31,s7:2.31)I3:4.02,(s8:4.97,#H24:0.0::0.279)I4:1.36)I5:3.64,((s9:8.29,((s10:2.37,s11:2.37)I6:3.02,(s12:2.67,s13:2.67)I7:2.72)I8:2.89)I9:0.21,((s14:2.83,(s15:1.06,s16:1.06)I10:1.78)I11:2.14)#H24:3.52::0.721)I12:1.47)I13:1.48,((((s18:5.46,s19:5.46)I15:0.59,(s20:4.72,(s21:2.4,s22:2.4)I16:2.32)I17:1.32)I18:2.68,(s23:8.56,(s1:4.64,s2:4.64)I19:3.92)I20:0.16)I21:3.98,s17:10.0)I22:1.26)I14:0.47)I2:1.99)I1; julia> q1 = Quartet(1,["s1", "s16", "s18", "s23"],[0.296,0.306,0.398]) number: 1 taxon names: ["s1", "s16", "s18", "s23"] observed CF: [0.296, 0.306, 0.398] pseudo-deviance under last used network: 0.0 (meaningless before estimation) expected CF under last used network: Float64[] (meaningless before estimation) julia> qnet = SNaQ.extractQuartet!(net,q1) taxa: ["s1", "s16", "s18", "s23"] number of hybrid nodes: 1 julia> sum([e.istIdentifiable for e in net.edge]) ## 23 identifiable edges in net 23 julia> idedges = [ee.number for ee in net.edge[[e.istIdentifiable for e in net.edge]]]; julia> print(idedges) [5, 6, 9, 11, 12, 13, 17, 20, 21, 22, 26, 27, 28, 29, 30, 31, 34, 38, 39, 40, 44, 45, 46] julia> length(qnet.hasEdge) ## 24 = 1 gamma + 23 identifiable edges 24 julia> sum(qnet.hasEdge) ## 8 = 1 gamma + 7 identifiable edges in qnet 8 julia> print(idedges[qnet.hasEdge[2:end]]) ## 7 id. edges: [12, 13, 29, 30, 31, 45, 46] [12, 13, 29, 30, 31, 45, 46] julia> qnet.edge[qnet.index[1]].number ## 11 = minor hybrid edge 11 ``` Subexpression: sum([e.istIdentifiable for e in net.edge]) ## 23 identifiable edges in net Evaluated output: ERROR: UndefVarError: `net` not defined in `Main` Suggestion: check for spelling errors or missing imports. Stacktrace: [1] top-level scope @ none:1 Expected output: taxa: ["s1", "s16", "s18", "s23"] number of hybrid nodes: 1 diff = Warning: Diff output requires color. taxa: ["s1", "s16", "s18", "s23"] number of hybrid nodes: 1ERROR: UndefVarError: `net` not defined in `Main` Suggestion: check for spelling errors or missing imports. Stacktrace: [1] top-level scope @ none:1
Documentation: src/types.jl#L57
doctest failure in ~/work/SNaQ.jl/SNaQ.jl/src/types.jl:57-98 ```jldoctest julia> using PhyloNetworks julia> net0 = readTopology("(s17:13.76,(((s3:10.98,(s4:8.99,s5:8.99)I1:1.99)I2:0.47,(((s6:2.31,s7:2.31)I3:4.02,(s8:4.97,#H24:0.0::0.279)I4:1.36)I5:3.64,((s9:8.29,((s10:2.37,s11:2.37)I6:3.02,(s12:2.67,s13:2.67)I7:2.72)I8:2.89)I9:0.21,((s14:2.83,(s15:1.06,s16:1.06)I10:1.78)I11:2.14)#H24:3.52::0.72)I12:1.47)I13:1.48)I14:1.26,(((s18:5.46,s19:5.46)I15:0.59,(s20:4.72,(s21:2.40,s22:2.40)I16:2.32)I17:1.32)I18:2.68,(s23:8.56,(s1:4.64,s2:4.64)I19:3.92)I20:0.16)I21:3.98)I22:1.05);"); julia> net = readTopologyLevel1(writeTopology(net0)) ## need level1 attributes for functions below HybridNetwork, Un-rooted Network 46 edges 46 nodes: 23 tips, 1 hybrid nodes, 22 internal tree nodes. tip labels: s17, s3, s4, s5, ... (s4:8.99,s5:8.99,(s3:10.0,((((s6:2.31,s7:2.31)I3:4.02,(s8:4.97,#H24:0.0::0.279)I4:1.36)I5:3.64,((s9:8.29,((s10:2.37,s11:2.37)I6:3.02,(s12:2.67,s13:2.67)I7:2.72)I8:2.89)I9:0.21,((s14:2.83,(s15:1.06,s16:1.06)I10:1.78)I11:2.14)#H24:3.52::0.721)I12:1.47)I13:1.48,((((s18:5.46,s19:5.46)I15:0.59,(s20:4.72,(s21:2.4,s22:2.4)I16:2.32)I17:1.32)I18:2.68,(s23:8.56,(s1:4.64,s2:4.64)I19:3.92)I20:0.16)I21:3.98,s17:10.0)I22:1.26)I14:0.47)I2:1.99)I1; julia> q1 = Quartet(1,["s1", "s16", "s18", "s23"],[0.296,0.306,0.398]) number: 1 taxon names: ["s1", "s16", "s18", "s23"] observed CF: [0.296, 0.306, 0.398] pseudo-deviance under last used network: 0.0 (meaningless before estimation) expected CF under last used network: Float64[] (meaningless before estimation) julia> qnet = SNaQ.extractQuartet!(net,q1) taxa: ["s1", "s16", "s18", "s23"] number of hybrid nodes: 1 julia> sum([e.istIdentifiable for e in net.edge]) ## 23 identifiable edges in net 23 julia> idedges = [ee.number for ee in net.edge[[e.istIdentifiable for e in net.edge]]]; julia> print(idedges) [5, 6, 9, 11, 12, 13, 17, 20, 21, 22, 26, 27, 28, 29, 30, 31, 34, 38, 39, 40, 44, 45, 46] julia> length(qnet.hasEdge) ## 24 = 1 gamma + 23 identifiable edges 24 julia> sum(qnet.hasEdge) ## 8 = 1 gamma + 7 identifiable edges in qnet 8 julia> print(idedges[qnet.hasEdge[2:end]]) ## 7 id. edges: [12, 13, 29, 30, 31, 45, 46] [12, 13, 29, 30, 31, 45, 46] julia> qnet.edge[qnet.index[1]].number ## 11 = minor hybrid edge 11 ``` Subexpression: idedges = [ee.number for ee in net.edge[[e.istIdentifiable for e in net.edge]]]; Evaluated output: ERROR: UndefVarError: `net` not defined in `Main` Suggestion: check for spelling errors or missing imports. Stacktrace: [1] top-level scope @ none:1 Expected output: 23 diff = Warning: Diff output requires color. 23ERROR: UndefVarError: `net` not defined in `Main` Suggestion: check for spelling errors or missing imports. Stacktrace: [1] top-level scope @ none:1
Documentation: src/types.jl#L57
doctest failure in ~/work/SNaQ.jl/SNaQ.jl/src/types.jl:57-98 ```jldoctest julia> using PhyloNetworks julia> net0 = readTopology("(s17:13.76,(((s3:10.98,(s4:8.99,s5:8.99)I1:1.99)I2:0.47,(((s6:2.31,s7:2.31)I3:4.02,(s8:4.97,#H24:0.0::0.279)I4:1.36)I5:3.64,((s9:8.29,((s10:2.37,s11:2.37)I6:3.02,(s12:2.67,s13:2.67)I7:2.72)I8:2.89)I9:0.21,((s14:2.83,(s15:1.06,s16:1.06)I10:1.78)I11:2.14)#H24:3.52::0.72)I12:1.47)I13:1.48)I14:1.26,(((s18:5.46,s19:5.46)I15:0.59,(s20:4.72,(s21:2.40,s22:2.40)I16:2.32)I17:1.32)I18:2.68,(s23:8.56,(s1:4.64,s2:4.64)I19:3.92)I20:0.16)I21:3.98)I22:1.05);"); julia> net = readTopologyLevel1(writeTopology(net0)) ## need level1 attributes for functions below HybridNetwork, Un-rooted Network 46 edges 46 nodes: 23 tips, 1 hybrid nodes, 22 internal tree nodes. tip labels: s17, s3, s4, s5, ... (s4:8.99,s5:8.99,(s3:10.0,((((s6:2.31,s7:2.31)I3:4.02,(s8:4.97,#H24:0.0::0.279)I4:1.36)I5:3.64,((s9:8.29,((s10:2.37,s11:2.37)I6:3.02,(s12:2.67,s13:2.67)I7:2.72)I8:2.89)I9:0.21,((s14:2.83,(s15:1.06,s16:1.06)I10:1.78)I11:2.14)#H24:3.52::0.721)I12:1.47)I13:1.48,((((s18:5.46,s19:5.46)I15:0.59,(s20:4.72,(s21:2.4,s22:2.4)I16:2.32)I17:1.32)I18:2.68,(s23:8.56,(s1:4.64,s2:4.64)I19:3.92)I20:0.16)I21:3.98,s17:10.0)I22:1.26)I14:0.47)I2:1.99)I1; julia> q1 = Quartet(1,["s1", "s16", "s18", "s23"],[0.296,0.306,0.398]) number: 1 taxon names: ["s1", "s16", "s18", "s23"] observed CF: [0.296, 0.306, 0.398] pseudo-deviance under last used network: 0.0 (meaningless before estimation) expected CF under last used network: Float64[] (meaningless before estimation) julia> qnet = SNaQ.extractQuartet!(net,q1) taxa: ["s1", "s16", "s18", "s23"] number of hybrid nodes: 1 julia> sum([e.istIdentifiable for e in net.edge]) ## 23 identifiable edges in net 23 julia> idedges = [ee.number for ee in net.edge[[e.istIdentifiable for e in net.edge]]]; julia> print(idedges) [5, 6, 9, 11, 12, 13, 17, 20, 21, 22, 26, 27, 28, 29, 30, 31, 34, 38, 39, 40, 44, 45, 46] julia> length(qnet.hasEdge) ## 24 = 1 gamma + 23 identifiable edges 24 julia> sum(qnet.hasEdge) ## 8 = 1 gamma + 7 identifiable edges in qnet 8 julia> print(idedges[qnet.hasEdge[2:end]]) ## 7 id. edges: [12, 13, 29, 30, 31, 45, 46] [12, 13, 29, 30, 31, 45, 46] julia> qnet.edge[qnet.index[1]].number ## 11 = minor hybrid edge 11 ``` Subexpression: print(idedges) Evaluated output: ERROR: UndefVarError: `idedges` not defined in `Main` Suggestion: check for spelling errors or missing imports. Stacktrace: [1] top-level scope @ none:1 Expected output: diff = Warning: Diff output requires color. ERROR: UndefVarError: `idedges` not defined in `Main` Suggestion: check for spelling errors or missing imports. Stacktrace: [1] top-level scope @ none:1
Documentation: src/types.jl#L57
doctest failure in ~/work/SNaQ.jl/SNaQ.jl/src/types.jl:57-98 ```jldoctest julia> using PhyloNetworks julia> net0 = readTopology("(s17:13.76,(((s3:10.98,(s4:8.99,s5:8.99)I1:1.99)I2:0.47,(((s6:2.31,s7:2.31)I3:4.02,(s8:4.97,#H24:0.0::0.279)I4:1.36)I5:3.64,((s9:8.29,((s10:2.37,s11:2.37)I6:3.02,(s12:2.67,s13:2.67)I7:2.72)I8:2.89)I9:0.21,((s14:2.83,(s15:1.06,s16:1.06)I10:1.78)I11:2.14)#H24:3.52::0.72)I12:1.47)I13:1.48)I14:1.26,(((s18:5.46,s19:5.46)I15:0.59,(s20:4.72,(s21:2.40,s22:2.40)I16:2.32)I17:1.32)I18:2.68,(s23:8.56,(s1:4.64,s2:4.64)I19:3.92)I20:0.16)I21:3.98)I22:1.05);"); julia> net = readTopologyLevel1(writeTopology(net0)) ## need level1 attributes for functions below HybridNetwork, Un-rooted Network 46 edges 46 nodes: 23 tips, 1 hybrid nodes, 22 internal tree nodes. tip labels: s17, s3, s4, s5, ... (s4:8.99,s5:8.99,(s3:10.0,((((s6:2.31,s7:2.31)I3:4.02,(s8:4.97,#H24:0.0::0.279)I4:1.36)I5:3.64,((s9:8.29,((s10:2.37,s11:2.37)I6:3.02,(s12:2.67,s13:2.67)I7:2.72)I8:2.89)I9:0.21,((s14:2.83,(s15:1.06,s16:1.06)I10:1.78)I11:2.14)#H24:3.52::0.721)I12:1.47)I13:1.48,((((s18:5.46,s19:5.46)I15:0.59,(s20:4.72,(s21:2.4,s22:2.4)I16:2.32)I17:1.32)I18:2.68,(s23:8.56,(s1:4.64,s2:4.64)I19:3.92)I20:0.16)I21:3.98,s17:10.0)I22:1.26)I14:0.47)I2:1.99)I1; julia> q1 = Quartet(1,["s1", "s16", "s18", "s23"],[0.296,0.306,0.398]) number: 1 taxon names: ["s1", "s16", "s18", "s23"] observed CF: [0.296, 0.306, 0.398] pseudo-deviance under last used network: 0.0 (meaningless before estimation) expected CF under last used network: Float64[] (meaningless before estimation) julia> qnet = SNaQ.extractQuartet!(net,q1) taxa: ["s1", "s16", "s18", "s23"] number of hybrid nodes: 1 julia> sum([e.istIdentifiable for e in net.edge]) ## 23 identifiable edges in net 23 julia> idedges = [ee.number for ee in net.edge[[e.istIdentifiable for e in net.edge]]]; julia> print(idedges) [5, 6, 9, 11, 12, 13, 17, 20, 21, 22, 26, 27, 28, 29, 30, 31, 34, 38, 39, 40, 44, 45, 46] julia> length(qnet.hasEdge) ## 24 = 1 gamma + 23 identifiable edges 24 julia> sum(qnet.hasEdge) ## 8 = 1 gamma + 7 identifiable edges in qnet 8 julia> print(idedges[qnet.hasEdge[2:end]]) ## 7 id. edges: [12, 13, 29, 30, 31, 45, 46] [12, 13, 29, 30, 31, 45, 46] julia> qnet.edge[qnet.index[1]].number ## 11 = minor hybrid edge 11 ``` Subexpression: length(qnet.hasEdge) ## 24 = 1 gamma + 23 identifiable edges Evaluated output: ERROR: UndefVarError: `qnet` not defined in `Main` Suggestion: check for spelling errors or missing imports. Stacktrace: [1] top-level scope @ none:1 Expected output: [5, 6, 9, 11, 12, 13, 17, 20, 21, 22, 26, 27, 28, 29, 30, 31, 34, 38, 39, 40, 44, 45, 46] diff = Warning: Diff output requires color. [5, 6, 9, 11, 12, 13, 17, 20, 21, 22, 26, 27, 28, 29, 30, 31, 34, 38, 39, 40, 44, 45, 46]ERROR: UndefVarError: `qnet` not defined in `Main` Suggestion: check for spelling errors or missing imports. Stacktrace: [1] top-level scope @ none:1
Documentation: src/types.jl#L57
doctest failure in ~/work/SNaQ.jl/SNaQ.jl/src/types.jl:57-98 ```jldoctest julia> using PhyloNetworks julia> net0 = readTopology("(s17:13.76,(((s3:10.98,(s4:8.99,s5:8.99)I1:1.99)I2:0.47,(((s6:2.31,s7:2.31)I3:4.02,(s8:4.97,#H24:0.0::0.279)I4:1.36)I5:3.64,((s9:8.29,((s10:2.37,s11:2.37)I6:3.02,(s12:2.67,s13:2.67)I7:2.72)I8:2.89)I9:0.21,((s14:2.83,(s15:1.06,s16:1.06)I10:1.78)I11:2.14)#H24:3.52::0.72)I12:1.47)I13:1.48)I14:1.26,(((s18:5.46,s19:5.46)I15:0.59,(s20:4.72,(s21:2.40,s22:2.40)I16:2.32)I17:1.32)I18:2.68,(s23:8.56,(s1:4.64,s2:4.64)I19:3.92)I20:0.16)I21:3.98)I22:1.05);"); julia> net = readTopologyLevel1(writeTopology(net0)) ## need level1 attributes for functions below HybridNetwork, Un-rooted Network 46 edges 46 nodes: 23 tips, 1 hybrid nodes, 22 internal tree nodes. tip labels: s17, s3, s4, s5, ... (s4:8.99,s5:8.99,(s3:10.0,((((s6:2.31,s7:2.31)I3:4.02,(s8:4.97,#H24:0.0::0.279)I4:1.36)I5:3.64,((s9:8.29,((s10:2.37,s11:2.37)I6:3.02,(s12:2.67,s13:2.67)I7:2.72)I8:2.89)I9:0.21,((s14:2.83,(s15:1.06,s16:1.06)I10:1.78)I11:2.14)#H24:3.52::0.721)I12:1.47)I13:1.48,((((s18:5.46,s19:5.46)I15:0.59,(s20:4.72,(s21:2.4,s22:2.4)I16:2.32)I17:1.32)I18:2.68,(s23:8.56,(s1:4.64,s2:4.64)I19:3.92)I20:0.16)I21:3.98,s17:10.0)I22:1.26)I14:0.47)I2:1.99)I1; julia> q1 = Quartet(1,["s1", "s16", "s18", "s23"],[0.296,0.306,0.398]) number: 1 taxon names: ["s1", "s16", "s18", "s23"] observed CF: [0.296, 0.306, 0.398] pseudo-deviance under last used network: 0.0 (meaningless before estimation) expected CF under last used network: Float64[] (meaningless before estimation) julia> qnet = SNaQ.extractQuartet!(net,q1) taxa: ["s1", "s16", "s18", "s23"] number of hybrid nodes: 1 julia> sum([e.istIdentifiable for e in net.edge]) ## 23 identifiable edges in net 23 julia> idedges = [ee.number for ee in net.edge[[e.istIdentifiable for e in net.edge]]]; julia> print(idedges) [5, 6, 9, 11, 12, 13, 17, 20, 21, 22, 26, 27, 28, 29, 30, 31, 34, 38, 39, 40, 44, 45, 46] julia> length(qnet.hasEdge) ## 24 = 1 gamma + 23 identifiable edges 24 julia> sum(qnet.hasEdge) ## 8 = 1 gamma + 7 identifiable edges in qnet 8 julia> print(idedges[qnet.hasEdge[2:end]]) ## 7 id. edges: [12, 13, 29, 30, 31, 45, 46] [12, 13, 29, 30, 31, 45, 46] julia> qnet.edge[qnet.index[1]].number ## 11 = minor hybrid edge 11 ``` Subexpression: sum(qnet.hasEdge) ## 8 = 1 gamma + 7 identifiable edges in qnet Evaluated output: ERROR: UndefVarError: `qnet` not defined in `Main` Suggestion: check for spelling errors or missing imports. Stacktrace: [1] top-level scope @ none:1 Expected output: 24 diff = Warning: Diff output requires color. 24ERROR: UndefVarError: `qnet` not defined in `Main` Suggestion: check for spelling errors or missing imports. Stacktrace: [1] top-level scope @ none:1
Documentation: src/types.jl#L57
doctest failure in ~/work/SNaQ.jl/SNaQ.jl/src/types.jl:57-98 ```jldoctest julia> using PhyloNetworks julia> net0 = readTopology("(s17:13.76,(((s3:10.98,(s4:8.99,s5:8.99)I1:1.99)I2:0.47,(((s6:2.31,s7:2.31)I3:4.02,(s8:4.97,#H24:0.0::0.279)I4:1.36)I5:3.64,((s9:8.29,((s10:2.37,s11:2.37)I6:3.02,(s12:2.67,s13:2.67)I7:2.72)I8:2.89)I9:0.21,((s14:2.83,(s15:1.06,s16:1.06)I10:1.78)I11:2.14)#H24:3.52::0.72)I12:1.47)I13:1.48)I14:1.26,(((s18:5.46,s19:5.46)I15:0.59,(s20:4.72,(s21:2.40,s22:2.40)I16:2.32)I17:1.32)I18:2.68,(s23:8.56,(s1:4.64,s2:4.64)I19:3.92)I20:0.16)I21:3.98)I22:1.05);"); julia> net = readTopologyLevel1(writeTopology(net0)) ## need level1 attributes for functions below HybridNetwork, Un-rooted Network 46 edges 46 nodes: 23 tips, 1 hybrid nodes, 22 internal tree nodes. tip labels: s17, s3, s4, s5, ... (s4:8.99,s5:8.99,(s3:10.0,((((s6:2.31,s7:2.31)I3:4.02,(s8:4.97,#H24:0.0::0.279)I4:1.36)I5:3.64,((s9:8.29,((s10:2.37,s11:2.37)I6:3.02,(s12:2.67,s13:2.67)I7:2.72)I8:2.89)I9:0.21,((s14:2.83,(s15:1.06,s16:1.06)I10:1.78)I11:2.14)#H24:3.52::0.721)I12:1.47)I13:1.48,((((s18:5.46,s19:5.46)I15:0.59,(s20:4.72,(s21:2.4,s22:2.4)I16:2.32)I17:1.32)I18:2.68,(s23:8.56,(s1:4.64,s2:4.64)I19:3.92)I20:0.16)I21:3.98,s17:10.0)I22:1.26)I14:0.47)I2:1.99)I1; julia> q1 = Quartet(1,["s1", "s16", "s18", "s23"],[0.296,0.306,0.398]) number: 1 taxon names: ["s1", "s16", "s18", "s23"] observed CF: [0.296, 0.306, 0.398] pseudo-deviance under last used network: 0.0 (meaningless before estimation) expected CF under last used network: Float64[] (meaningless before estimation) julia> qnet = SNaQ.extractQuartet!(net,q1) taxa: ["s1", "s16", "s18", "s23"] number of hybrid nodes: 1 julia> sum([e.istIdentifiable for e in net.edge]) ## 23 identifiable edges in net 23 julia> idedges = [ee.number for ee in net.edge[[e.istIdentifiable for e in net.edge]]]; julia> print(idedges) [5, 6, 9, 11, 12, 13, 17, 20, 21, 22, 26, 27, 28, 29, 30, 31, 34, 38, 39, 40, 44, 45, 46] julia> length(qnet.hasEdge) ## 24 = 1 gamma + 23 identifiable edges 24 julia> sum(qnet.hasEdge) ## 8 = 1 gamma + 7 identifiable edges in qnet 8 julia> print(idedges[qnet.hasEdge[2:end]]) ## 7 id. edges: [12, 13, 29, 30, 31, 45, 46] [12, 13, 29, 30, 31, 45, 46] julia> qnet.edge[qnet.index[1]].number ## 11 = minor hybrid edge 11 ``` Subexpression: print(idedges[qnet.hasEdge[2:end]]) ## 7 id. edges: [12, 13, 29, 30, 31, 45, 46] Evaluated output: ERROR: UndefVarError: `idedges` not defined in `Main` Suggestion: check for spelling errors or missing imports. Stacktrace: [1] top-level scope @ none:1 Expected output: 8 diff = Warning: Diff output requires color. 8ERROR: UndefVarError: `idedges` not defined in `Main` Suggestion: check for spelling errors or missing imports. Stacktrace: [1] top-level scope @ none:1
[julia-buildpkg] Caching of the julia depot was not detected
Consider using `julia-actions/cache` to speed up runs https://github.com/julia-actions/cache. To ignore, set input `ignore-no-cache: true`