Ver Fonte

path TODO

JonStargaryen há 4 anos atrás
pai
commit
017676c148

+ 2 - 1
src/servers/model/config.ts

@@ -82,7 +82,8 @@ const DefaultModelServerConfig = {
             //     }
             // },
             wwPDB: {
-                chemCompBondTablePath: '/Users/sebastian/Downloads/ccb.bcif'
+                // TODO make parameter / serve at RCSB?
+                chemCompBondTablePath: '/Users/sebastian/ccb.bcif'
             }
         }
     },

+ 1 - 1
src/servers/model/ligand-writer/ligand-encoder.ts

@@ -38,7 +38,7 @@ export abstract class LigandEncoder implements Encoder<string> {
 
     abstract encode(): void;
 
-    abstract _writeCategory<Ctx>(category: Category<Ctx>, context?: Ctx): void;
+    protected abstract _writeCategory<Ctx>(category: Category<Ctx>, context?: Ctx): void;
 
     protected abstract writeFullCategory<Ctx>(sb: StringBuilder, category: Category<Ctx>, context?: Ctx): void;