-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #131 from MDAnalysis/release-102
release 1.0.2 preparations
- Loading branch information
Showing
2 changed files
with
22 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
from __future__ import absolute_import | ||
|
||
from pkg_resources import resource_filename | ||
import importlib.resources as importlib_resources | ||
|
||
__all__ = ["DX", "CCP4", "gOpenMol"] | ||
|
||
DX = resource_filename(__name__, 'test.dx') | ||
DXGZ = resource_filename(__name__, 'test.dx.gz') | ||
CCP4 = resource_filename(__name__, 'test.ccp4') | ||
DX = importlib_resources.files(__name__) / 'test.dx' | ||
DXGZ = importlib_resources.files(__name__) / 'test.dx.gz' | ||
CCP4 = importlib_resources.files(__name__) / 'test.ccp4' | ||
# from http://www.ebi.ac.uk/pdbe/coordinates/files/1jzv.ccp4 | ||
# (see issue #57) | ||
CCP4_1JZV = resource_filename(__name__, '1jzv.ccp4') | ||
CCP4_1JZV = importlib_resources.files(__name__) / '1jzv.ccp4' | ||
# from https://github.com/ccpem/mrcfile/blob/master/tests/test_data/EMD-3001.map.bz2 | ||
MRC_EMD3001 = resource_filename(__name__, 'EMD-3001.map.bz2') | ||
MRC_EMD3001 = importlib_resources.files(__name__) / 'EMD-3001.map.bz2' | ||
# water density around M2 TM helices of nAChR from MD simulations | ||
# [O. Beckstein and M. S. P. Sansom. Physical Biology 3(2):147-159, 2006] | ||
gOpenMol = resource_filename(__name__, 'nAChR_M2_water.plt') | ||
gOpenMol = importlib_resources.files(__name__) / 'nAChR_M2_water.plt' |