Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
luponzo86 committed Apr 30, 2020
1 parent 5b883d6 commit 2b3c203
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rhapsody/features/Uniprot.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,9 @@ def alignCustomPDB(self, PDB, chain='all', title=None, recover=False):
pdb = pd.parsePDB(PDB, subset='calpha')
except Exception as e:
msg = (
'Unable to import PDB: PDB ID might be invalid or ',
'Unable to import PDB: PDB ID might be invalid or '
f'PDB file might be corrupted. Error message: {e}')
raise LOGGER.error(msg)
LOGGER.error(msg)
if title is None:
title = os.path.basename(PDB.strip())
title = title.replace(' ', '_')
Expand Down

0 comments on commit 2b3c203

Please sign in to comment.