i-VRESSE / haddock3-analysis-components

Components to be used by analyse command of haddock3
Apache License 2.0
0 stars 0 forks source link

Caprieval report component #2

Closed sverhoeven closed 7 months ago

sverhoeven commented 1 year ago

I would be nice to have a component that can render the whole caprieval report based on the tsv files.

Something like

<CaprievalReport 
  clusters_file="capri_clt.tsv"
  structures_file="capri_ss.tsv"
>
    <ClusterTable
      onStructureViewClick={(pdb_path) => viewStructure(pdb_path)}
    />
    <ScatterPlotMatrix/>
    <ClusterBoxPlots/>
</Report>
sverhoeven commented 1 year ago

Instead of parsing tsv files it could also consume a json document generated by the Python code.

sverhoeven commented 7 months ago

Instead of parsing tsv files it could also consume a json document generated by the Python code.

Implemented this in https://github.com/haddocking/haddock3/pull/769 and https://github.com/i-VRESSE/haddock3-webapp/pull/51