-
Notifications
You must be signed in to change notification settings - Fork 3
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 #2 from Kitaolab/ver1.1
Ver1.1
- Loading branch information
Showing
42 changed files
with
497 additions
and
181 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -164,3 +164,5 @@ trial* | |
!trial.py | ||
inputs | ||
docs/book/ | ||
MSM/*_test.ipynb | ||
test/ |
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
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,14 +1,17 @@ | ||
# genfeature | ||
- This command is used after executing `pacs mdrun`. | ||
- This command generates data that will be used for MSM analysis. | ||
- This command supports parallel process. | ||
|
||
|
||
| feature | mdtraj | gmx | cpptraj | | ||
| ------- | ------ | --- | ------- | | ||
| comdist | o | x | x | | ||
| comvec | o | x | x | | ||
| pca | o | x | x | | ||
| tica | o | x | x | | ||
| rmsd | o | x | x | | ||
| xyz | o | x | x | | ||
- This command should be executed after running `pacs mdrun`. | ||
- It generates feature data in `.npy` format, which is cconvenient for MSM analysis in Python. | ||
- Feature data files (e.g., `t001c002r010.npy`) are stored in the directory specified with the `-od` option. | ||
- Each `.npy` file has the `np.arry` in the shape as described in the table below. | ||
- This command supports parallel processing. | ||
|
||
|
||
Currently implemented analysis tools and the shape of the output data in `.npy` files. | ||
|
||
|
||
| feature | mdtraj | gmx | cpptraj | shape of `.npy` | | ||
| ------- | ------ | --- | ------- | ---------------------- | | ||
| comdist | o | x | x | (n_frames,) | | ||
| comvec | o | x | x | (n_frames, 3) | | ||
| rmsd | o | x | x | (n_frames,) | | ||
| xyz | o | x | x | (n_frames, n_atoms, 3) | |
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
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
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
Oops, something went wrong.