Skip to content
Snippets Groups Projects
Commit 7b714b92 authored by David Sehnal's avatar David Sehnal
Browse files

model-server: fix RCSB props source

parent f21f5f5d
No related branches found
No related tags found
No related merge requests found
......@@ -53,7 +53,7 @@ const config = {
customProperties: <import('./property-provider').ModelPropertyProviderConfig | string>{
sources: [
'./properties/pdbe',
// './properties/rcsb'
'./properties/rcsb'
],
params: {
PDBe: {
......
......@@ -4,9 +4,9 @@
* @author Alexander Rose <alexander.rose@weirdbyte.de>
*/
import { Model } from 'mol-model/structure';
import { AssemblySymmetry } from 'mol-model-props/rcsb/symmetry';
import { AttachModelProperty } from '../../property-provider';
export function RCSB_assemblySymmetry(model: Model) {
export const RCSB_assemblySymmetry: AttachModelProperty = ({ model }) => {
return AssemblySymmetry.attachFromCifOrAPI(model)
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment