Enabled & functioning edrfile reader.

This commit is contained in:
Niels Müller
2016-09-27 15:45:12 +02:00
parent db06925a0d
commit 9cf16bc602
5 changed files with 69 additions and 20 deletions

View File

@ -9,14 +9,15 @@ import os
from .tpxio import TPXReader
from .xtcio import XTCReader
# from .enxio import EDRFile
from .enxio import EDRFile
from .errors import FileTypeError
from .gromacs.reader import index_filename_for_xtc
from .gromacs.xtcindex import index_xtcfile
FILE_EXTENSIONS = {
'xtc': XTCReader,
'tpr': TPXReader
'tpr': TPXReader,
'edr': EDRFile,
}