calipho-sib / feature-viewer

Library to visualize protein sequence features in javascript using D3 - From SIB CALIPHO group; neXtProt project
http://calipho-sib.github.io/feature-viewer/examples/
Other
112 stars 32 forks source link

Fixes bug which mutates line(histogram) data #17

Open fredludlow opened 8 years ago

fredludlow commented 8 years ago

Minor bugfix: If you pass an object for a line-type feature, the data attribute ends up being converted in to a triply-nested array. Passing in the same feature-spec again won't draw that feature (because the data[0][0] is an array, rather than the first {x:1, y:0.5} pair). This PR changes the point at which the extra layer of array is added (i.e. it doesn't change the input data in to a form that won't render).