Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/protein.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python
# encoding: utf-8
# Copyright (c) 2009 Ch. Fufezan.
# Copyright (c) 2009, 2014 Ch. Fufezan., T. Bald
# module is distributed under the terms of the GNU General Public License

'''
Expand Down Expand Up @@ -39,6 +39,12 @@
import p3d.atom
import p3d.parser

# fix for renamed xrange in python3
try:
xrange
except NameError:
xrange = range


hash_list = ['chain','atype','resid','resname','non-aa-resname',\
'aa-resname','model','bkb','oxygen','altconf',
Expand Down