Skip to content

Commit

Permalink
close #50
Browse files Browse the repository at this point in the history
  • Loading branch information
demianriccardi committed Mar 16, 2018
1 parent 3010f99 commit 8761302
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Revision history for {{$dist->name}}

{{$NEXT}}
* remove uc( chain ) issue #50

0.047 2017-12-28 19:50:18-07:00 America/Denver
* added mol_disulfide_bonds($mol,$fudge) to HackaMol.pm
Expand Down
2 changes: 1 addition & 1 deletion lib/HackaMol/Roles/ReadPdbRole.pm
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ sub read_pdb_atoms {
if ( $charge =~ m/\d/ ) { $charge = _qstring_num($charge) }
else { $charge = 0 }

if ( $chainID =~ m/\w/ ) { $chainID = uc( _trim($chainID) ) }
if ( $chainID =~ m/\w/ ) { $chainID = _trim($chainID) }
else { $chainID = ' ' }

$name = _trim($name);
Expand Down

0 comments on commit 8761302

Please sign in to comment.