David Sehnal

Results 234 comments of David Sehnal

The 2nd argument to `createStructureRepresentationParams` is a Structure. It should work to pass undefined in this case.

Play with `colorParams: { ... }`.

Maybe you can make a PR which enables the optional customization you are after? A good place to add this could be `PluginUISpec?.components?.sequence`.

How about just the ability to pass a component that renders instead of the default `SequenceViewer`? The component can just access the plug-in via `useContext` and any extra props it...

That's a lot of namespaces. I guess a parallel goal to this effort could be: - Ability to compile the source code with `isolatedModules: true`. This is more or less...

One idea is to do a "namespaced" bundle (and still include the dependencies). So you would access functions as say `molstar.io.cif.Writer()`. This could include `molstar.deps.react` too for example. We could...

We already have the `-viewer` tasks for the faster builds. You suggestion is nice, but the drawback is that the examples will no longer recompile automatically when changing the core...

I have tried to load an AF structure on my 16.3+ iPhone 13 with Safari and it works on `https://molstar.org/viewer`. Maybe there is something about how you are embedding the...

I was able to reproduce the black structure with the AF structure with `tryUseGpu: true`. Setting `tryUseGpu: false` fixed this. => adding `typeParams: { tryUseGpu: false }` should resolve it...

In the core, we currently only support (Binary)CIF export, the code is [here](https://github.com/molstar/molstar/blob/master/src/mol-model/structure/export/mmcif.ts#L1). There is also [mol2 writer](https://github.com/molstar/molstar/blob/47c2d153aa7f5471e88b4df4df77e7e888bd74e2/src/mol-io/writer/mol2.ts#L1). This format is quite similar to PDB and it might be a...