-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDR_old.py
77 lines (51 loc) · 1.21 KB
/
DR_old.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Mon Apr 15 13:55:59 2019
@author: albertsmith
"""
#from r_class import all_sens as sens
#from data.data_class import data
#from Struct.structure import molecule
#from data import fitting
#from data import in_out as io
#from plots import plotting_funs as plotting
#from tools import DRtools as tools
#from iRED import Ct_fast
#from Struct import eval_fr as frames
#from chimera import chimeraX_funs as chimeraX
#
#
#
"Temporary hack to recover old data objects that have been saved"
#from r_class import DIFRATE_funs
import os
curdir=os.getcwd()
DRloc=os.path.dirname(os.path.abspath(__file__))
os.chdir(DRloc)
os.chdir('r_class')
from sens import rates
from Ctsens import Ct
from detectors import detect
import DIFRATE_funs as funs
os.chdir('../data')
from data_class import data
import fitting
import in_out as io
os.chdir('../iRED')
import iRED_ana as iRED
import Ct_ana
import Ct_fast
os.chdir('../Struct')
from structure import molecule
#import frame2traj
os.chdir('../chimera')
import chimera_funs as chimera
os.chdir('../tools')
import DRtools as tools
os.chdir('../plots')
import plotting_funs as plot
os.chdir(curdir)
del(curdir)
del(DRloc)
del(os)