-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to suppress mean zero noise only
- Loading branch information
Han Zhu
committed
Jul 23, 2024
1 parent
9121897
commit b59b995
Showing
3 changed files
with
55 additions
and
24 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 |
---|---|---|
|
@@ -160,4 +160,5 @@ cython_debug/ | |
#.idea/ | ||
|
||
CryoREAD_Predict_Result/ | ||
output_test/ | ||
output_test/ | ||
examples/ |
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,25 +1,46 @@ | ||
# AutoClass3D | ||
A deep learning based tool to automatically select the best reconstructed 3D maps within a group of maps. | ||
|
||
A deep learning based tool to automatically select the best reconstructed 3D maps within a group of maps. | ||
|
||
## Installation | ||
|
||
clone the repository: | ||
|
||
``` | ||
git clone github.itap.purdue.edu/kiharalab/AutoClass3D | ||
``` | ||
|
||
create conda environment: | ||
|
||
``` | ||
conda env create -f environment.yml | ||
``` | ||
|
||
## Arguments (All required) | ||
## Arguments for Class3D/InitialModel Selection (All required) | ||
|
||
``` | ||
-F: Class3D MRC files to be examine, separated by space | ||
-G: The GPU ID to use for the computation, use comma to seperate multiple GPUs | ||
-J: The Job Name | ||
``` | ||
|
||
## Example | ||
## Example for Class3D/InitialModel Selection | ||
|
||
``` | ||
python main.py -F ./Class3D/job052/class1.mrc ./Class3D/job052/class2.mrc ./Class3D/job052/class3.mrc -G 0,1,2 -J job052_select | ||
``` | ||
``` | ||
|
||
## Arguments for Auto Contouring | ||
|
||
``` | ||
-i: Input MRC map file to determine the contour | ||
-o: Output folder to store all the files | ||
-p: Plot all components (Optional, False by default) | ||
-n: Number of intializations (Optional, 3 by default) | ||
``` | ||
|
||
## Example for generating | ||
|
||
``` | ||
python gmm_contour.py -i ./Class3D/job052/class1.mrc -o ./output_folder -p | ||
``` |
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