cytoscape / RCy3

New version of RCy3, redesigned and collaboratively maintained by Cytoscape developer community
MIT License
48 stars 20 forks source link

Why does getTableColumns('node') return single column? #77

Closed kozo2 closed 4 years ago

kozo2 commented 4 years ago

getTableColumns('node') returns single column when the table has missing values. But getTableColumns('edge') does not return single column even when the table has missing values.

What is the reason for this difference?

How to reproduce this

library(RCy3)
installApp('KEGGscape')
library(httr)
GET("http://localhost:1234/keggscape/v1/mmu04150")
getTableColumns('edge')
getTableColumns('node')
AlexanderPico commented 4 years ago

That was to cover problems with NA handling in CyREST. But it looks like those are fixed now. So, I've removed that filter. All columns and rows are now returned for both nodes and edges. Install from github.

kozo2 commented 4 years ago

Sorry for my late reply. getTableColumns('node') works well now (version2.6.0). Thank you.