Explorar o código

mol-model: changed assembly operator naming

David Sehnal %!s(int64=5) %!d(string=hai) anos
pai
achega
845dd4115d
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/mol-model-formats/structure/mmcif/assembly.ts

+ 1 - 1
src/mol-model-formats/structure/mmcif/assembly.ts

@@ -117,7 +117,7 @@ function getAssemblyOperators(matrices: Matrices, operatorNames: string[][], sta
             Mat4.mul(m, m, matrices.get(op[i])!);
         }
         index++
-        operators[operators.length] = SymmetryOperator.create(`A-${index}`, m, { id: assemblyId, operList: op });
+        operators[operators.length] = SymmetryOperator.create(`ASM_${index}`, m, { id: assemblyId, operList: op });
     }
 
     return operators;