Skip to content

XGMML download not working #132

@ErdaradunGaztea

Description

@ErdaradunGaztea

There's a problem with edge data containing sequences in tibble format. Turns out BioNet::saveNetwork(type = "XGMML") calls BioNet:::.XGMML.edges(), which in turn saves edge attributes in text; and this text requires string/integer/real values, not tibbles. Would reversing the parsing made to the sequence columns before saving with BioNet work? This would change

graph_from_data_frame(
  edges[["table"]],
  vertices = ag_data_nodes()
)

to something like

graph_from_data_frame(
  deparse_chains(edges[["table"]]),
  vertices = ag_data_nodes()
)

Metadata

Metadata

Labels

bugSomething isn't working

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions