mdsa-tools 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mdsa_tools-0.1.0/MANIFEST.in +3 -0
- mdsa_tools-0.1.0/PKG-INFO +74 -0
- mdsa_tools-0.1.0/README.md +55 -0
- mdsa_tools-0.1.0/mdsa_tools/Analysis.py +868 -0
- mdsa_tools-0.1.0/mdsa_tools/Convenience.py +136 -0
- mdsa_tools-0.1.0/mdsa_tools/Data_gen_hbond.py +448 -0
- mdsa_tools-0.1.0/mdsa_tools/Viz.py +709 -0
- mdsa_tools-0.1.0/mdsa_tools/__init__.py +0 -0
- mdsa_tools-0.1.0/mdsa_tools/mdsa_tools.egg-info/PKG-INFO +74 -0
- mdsa_tools-0.1.0/mdsa_tools/mdsa_tools.egg-info/SOURCES.txt +13 -0
- mdsa_tools-0.1.0/mdsa_tools/mdsa_tools.egg-info/dependency_links.txt +1 -0
- mdsa_tools-0.1.0/mdsa_tools/mdsa_tools.egg-info/requires.txt +8 -0
- mdsa_tools-0.1.0/mdsa_tools/mdsa_tools.egg-info/top_level.txt +1 -0
- mdsa_tools-0.1.0/pyproject.toml +52 -0
- mdsa_tools-0.1.0/setup.cfg +4 -0
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mdsa-tools
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: The Weir Labs H-bond Systems Analyses modules!
|
|
5
|
+
Author-email: Luis Perez <lperez@wesleyan.edu>
|
|
6
|
+
License: MIT
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Requires-Python: >=3.7
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: numpy
|
|
12
|
+
Requires-Dist: pandas
|
|
13
|
+
Requires-Dist: matplotlib
|
|
14
|
+
Requires-Dist: seaborn
|
|
15
|
+
Requires-Dist: scikit-learn
|
|
16
|
+
Requires-Dist: mdtraj==1.10.3
|
|
17
|
+
Requires-Dist: umap-learn
|
|
18
|
+
Requires-Dist: python-circos
|
|
19
|
+
|
|
20
|
+
# mdsa-tools: A set of tools for performing systems analyses of Molecular Dynamics (MD) simulations.
|
|
21
|
+
|
|
22
|
+

|
|
23
|
+
[]()
|
|
24
|
+
[]()
|
|
25
|
+

|
|
26
|
+
[]()
|
|
27
|
+
|
|
28
|
+
## A pipeline for performing systems analyses:
|
|
29
|
+

|
|
30
|
+
|
|
31
|
+
Pictured is a directed graph describing the pipeline for our MD trajectory analysis. From left to right, we begin with a trajectory file, and convert it into a set of networks (one for each trajectory frame), which that can be represented as either graphs or adjacency matrices. Each frame adjacency is flattened into a vector by concatenating the matrix’s rows (vector reduction). The frame vectors are vertically concatenated to create a feature matrix that can be used as input to either K-means clustering or PCA, whose results can then be visualized using graphs, scatter plots, MDCcircos plots, (of residue H-bonding), or MD replicate maps of frame measurements of interest.
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
We also provide an additional module for taking theese various results and using clustering results as input substates for markov state model analyses.
|
|
35
|
+
|
|
36
|
+
## Use pip install to get started.
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
|
|
40
|
+
##################
|
|
41
|
+
#PyPi coming soon#
|
|
42
|
+
##################
|
|
43
|
+
|
|
44
|
+
#At the moment you can pip install directly from our repo
|
|
45
|
+
pip install git+https://github.com/zeper-eng/workspace.git
|
|
46
|
+
|
|
47
|
+
###############
|
|
48
|
+
#Alternatively#
|
|
49
|
+
###############
|
|
50
|
+
|
|
51
|
+
# First fork the repository over
|
|
52
|
+
git clone https://github.com/zeper-eng/workspace.git
|
|
53
|
+
cd workspace
|
|
54
|
+
|
|
55
|
+
#Now from inside of the workspace folder simply pip install!
|
|
56
|
+
|
|
57
|
+
pip install .
|
|
58
|
+
|
|
59
|
+
#Regardless of the python environment you should be good to go
|
|
60
|
+
pip show workspace
|
|
61
|
+
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
## Systems Problem Area:
|
|
65
|
+
|
|
66
|
+

|
|
67
|
+
|
|
68
|
+
At the Weir Lab at Wesleyan University, we perform molecular dynamics (MD) simulations of a ribosomal subsystem to study tuning of protein translation by the CAR interaction surface- a ribosomal interface identified by the lab that interacts with the +1 codon (poised to enter the ribosome A site). Our "computational genetics" research focuses on modifying adjacent codon identities at the A-site and the +1 positions to model how changes at these sites influence the behavior of the CAR surface and corellate with translation rate variations.
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# mdsa-tools: A set of tools for performing systems analyses of Molecular Dynamics (MD) simulations.
|
|
2
|
+
|
|
3
|
+

|
|
4
|
+
[]()
|
|
5
|
+
[]()
|
|
6
|
+

|
|
7
|
+
[]()
|
|
8
|
+
|
|
9
|
+
## A pipeline for performing systems analyses:
|
|
10
|
+

|
|
11
|
+
|
|
12
|
+
Pictured is a directed graph describing the pipeline for our MD trajectory analysis. From left to right, we begin with a trajectory file, and convert it into a set of networks (one for each trajectory frame), which that can be represented as either graphs or adjacency matrices. Each frame adjacency is flattened into a vector by concatenating the matrix’s rows (vector reduction). The frame vectors are vertically concatenated to create a feature matrix that can be used as input to either K-means clustering or PCA, whose results can then be visualized using graphs, scatter plots, MDCcircos plots, (of residue H-bonding), or MD replicate maps of frame measurements of interest.
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
We also provide an additional module for taking theese various results and using clustering results as input substates for markov state model analyses.
|
|
16
|
+
|
|
17
|
+
## Use pip install to get started.
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
|
|
21
|
+
##################
|
|
22
|
+
#PyPi coming soon#
|
|
23
|
+
##################
|
|
24
|
+
|
|
25
|
+
#At the moment you can pip install directly from our repo
|
|
26
|
+
pip install git+https://github.com/zeper-eng/workspace.git
|
|
27
|
+
|
|
28
|
+
###############
|
|
29
|
+
#Alternatively#
|
|
30
|
+
###############
|
|
31
|
+
|
|
32
|
+
# First fork the repository over
|
|
33
|
+
git clone https://github.com/zeper-eng/workspace.git
|
|
34
|
+
cd workspace
|
|
35
|
+
|
|
36
|
+
#Now from inside of the workspace folder simply pip install!
|
|
37
|
+
|
|
38
|
+
pip install .
|
|
39
|
+
|
|
40
|
+
#Regardless of the python environment you should be good to go
|
|
41
|
+
pip show workspace
|
|
42
|
+
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Systems Problem Area:
|
|
46
|
+
|
|
47
|
+

|
|
48
|
+
|
|
49
|
+
At the Weir Lab at Wesleyan University, we perform molecular dynamics (MD) simulations of a ribosomal subsystem to study tuning of protein translation by the CAR interaction surface- a ribosomal interface identified by the lab that interacts with the +1 codon (poised to enter the ribosome A site). Our "computational genetics" research focuses on modifying adjacent codon identities at the A-site and the +1 positions to model how changes at these sites influence the behavior of the CAR surface and corellate with translation rate variations.
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|