예제 #1
0
This software is distributed under the GNU General Public License.
See the file COPYING for details.
"""

from .io_tools import trace, log
from .util import typecheck, typecheckfn

from . import stats
from . import aweclasses
from . import workqueue
from . import io_tools
from . import resample
from . import structures

from .aweclasses import Walker, AWE, Cell, System, SinkStates
from .workqueue import Config
from .stats import time
from .structures import PDB

from . import voronoi

import prody

### compatibility with different versions of prody
try:
    prody.setVerbosity('error')
except AttributeError:
    prody.confProDy(verbosity='error')

stats.time.start()
예제 #2
0
파일: __init__.py 프로젝트: crosvera/ProDy
    def __call__(self, parser, namespace, values, option_string=None):
        import prody

        prody.setVerbosity("warning")
예제 #3
0
This software is distributed under the GNU General Public License.
See the file COPYING for details.
"""

from io import trace, log
from util import typecheck, typecheckfn

import stats
import aweclasses
import workqueue
import io
import resample
import structures

from aweclasses import Walker, AWE, Cell, System, SinkStates
from workqueue import Config
from stats import time
from structures import PDB

import voronoi

import prody

### compatibility with different versions of prody
try:
    prody.setVerbosity('error')
except AttributeError:
    prody.confProDy(verbosity='error')

stats.time.start()