Browse Source

path TODO

JonStargaryen 4 years ago
parent
commit
017676c148
2 changed files with 3 additions and 2 deletions
  1. 2 1
      src/servers/model/config.ts
  2. 1 1
      src/servers/model/ligand-writer/ligand-encoder.ts

+ 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;