zxjsdp / NodeFinderGUI

GUI for NodeFinder Program

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

如果配置行最后有分号(;)则会出现在树中间部分,导致输出的Newick树不合法

zxjsdp opened this issue · comments

例如对于如下Newick树:

((a ,((b, c), (d, e))), (f, g));

若配置文件为:

f, g, >0.1<0.2;
d, e, >0.04<0.05;

则会导致输出的树为:

((a ,((b, c), (d, e)>0.04<0.05;)), (f, g)>0.1<0.2;);

应检测并将配置行最后的分号 ; 去除。