Closed nawtrey closed 5 years ago
Need to create an rms module as in MDAnalysis.analysis.rms for RMSF. Instead of having pmda.rmsf all in one file, we will make a submodule:
rms/__init__.py rmsd.py rmsf.py
rms/__init__.py
rmsd.py
rmsf.py
and in __init__.py we will have:
in __init__.py
from __future__ import absolute_import` from .rmsf import RMSF from .rmsd import RMSD __all__ = ["RMSD", "RMSF"]
This will require doc restructuring.
@nawtrey do you think you could do the refactoring? This is the main thing that holds up 0.3.0 #106 .
Yes, I will make new PR here shortly.
Need to create an rms module as in MDAnalysis.analysis.rms for RMSF. Instead of having pmda.rmsf all in one file, we will make a submodule:
rms/__init__.py
rmsd.py
rmsf.py
and
in __init__.py
we will have:This will require doc restructuring.