Skip to content

Commit

Permalink
Updated PD.ts File
Browse files Browse the repository at this point in the history
Signed-off-by: Adithya Krishna <[email protected]>
  • Loading branch information
Adithya Krishna committed Jul 10, 2023
1 parent c80d860 commit 6357419
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parsers/PDB.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export function PDB(str: string, options: ParserOptionsSpec) {
var atoms: any[] & Record<string, any> = []; //a separate list for each model
var sslookup = {}; //stores SHEET and HELIX info, which is shared across models
atoms.modelData = [];
var lines = str.split(/\r?\n|\r/);
var lines: any = str.split(/\r?\n|\r/);
while (lines.length > 0) {
var pdbinfo = getSinglePDB(lines, options, sslookup);
var modelatoms = pdbinfo[0];
Expand Down

0 comments on commit 6357419

Please sign in to comment.