瀏覽代碼

CIF parser fix

David Sehnal 7 年之前
父節點
當前提交
184181c827
共有 2 個文件被更改,包括 262 次插入1118 次删除
  1. 261 1117
      package-lock.json
  2. 1 1
      src/mol-io/reader/cif/text/parser.ts

文件差異過大導致無法顯示
+ 261 - 1117
package-lock.json


+ 1 - 1
src/mol-io/reader/cif/text/parser.ts

@@ -502,7 +502,7 @@ async function handleLoop(tokenizer: TokenizerState, ctx: FrameContext): Promise
         moveNext(tokenizer);
     }
 
-    const rowCountEstimate = name === 'atom_site' ? (tokenizer.data.length / 100) | 0 : 32;
+    const rowCountEstimate = name === '_atom_site' ? (tokenizer.data.length / 100) | 0 : 32;
     const tokens: Tokens[] = [];
     const fieldCount = fieldNames.length;
     for (let i = 0; i < fieldCount; i++) tokens[i] = TokenBuilder.create(tokenizer, rowCountEstimate);

部分文件因文件數量過多而無法顯示