Browse Source

added todo for gro parser regarding reusing static model parts

Alexander Rose 4 years ago
parent
commit
ddafa7aac1
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/mol-model-formats/structure/gro.ts

+ 3 - 0
src/mol-model-formats/structure/gro.ts

@@ -113,6 +113,9 @@ namespace GroFormat {
     }
 }
 
+// TODO reuse static model parts when hierarchy is identical
+//      need to pass all gro.structures as one table into createModels
+
 export function trajectoryFromGRO(gro: GroFile): Task<Model.Trajectory> {
     return Task.create('Parse GRO', async ctx => {
         const format = GroFormat.fromGro(gro);