Skip to content

Commit

Permalink
Escaped closing brace in readCoords()
Browse files Browse the repository at this point in the history
Shouldn't affect output although, oddly, it
seems to change the order of the bonds...
  • Loading branch information
tromo committed May 8, 2018
1 parent 757958d commit a495b5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/gmxdump2pdb.pl
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ sub readCoords {

while (<>) {
chomp;
if (/^\s+x\[\s*\d+\]=\{(.+)}$/) {
if (/^\s+x\[\s*\d+\]=\{(.+)\}$/) {
my $c = $1;
$c =~ s/\s//g;
my @coord = split(/,/, $c);
Expand Down

0 comments on commit a495b5c

Please sign in to comment.