Skip to content

Commit 28a96f1

Browse files
committed
/* CE Parameters */
1 parent d9cfc93 commit 28a96f1

2 files changed

Lines changed: 25 additions & 24 deletions

File tree

wiki/BioJava:CookBook:PDB:CE_Algorithm.md

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -108,24 +108,25 @@ CE Parameters
108108

109109
This CE implementation allows to specify a couple of custom parameters.
110110

111-
1. int winSize : (default 8) The window size used for the calculation
112-
of the initial Aligned Fragment Pairs
113-
2. double rmsdThr; (default 3.0) RMSD threshold used while tracing the
114-
AFP fragments
115-
3. double rmsdThrJoin; (default 4.0) RMSD threshold used to decide if
116-
two AFPs should be joined
117-
4. String[] alignmentAtoms; (default CA) allows to configure which
111+
1. private int **maxGapSize**; (default 30) The Max gap size parameter
112+
G , which has been obtained empirically in the CE paper. The larger
113+
the max gap size, the longer the compute time, but in same cases
114+
drastically improved results. (e.g. 1CDG.A vs. 1TIM.A) For no limit
115+
set this parameter to -1.
116+
2. boolean **checkCircular**; (default false) A flag that determines if
117+
CE should check for Circular Permutations (CP). Increases
118+
calculation time significantly, but can detect CPs.
119+
3. int **winSize** : (default 8) The window size used for the
120+
calculation of the initial Aligned Fragment Pairs
121+
4. double **rmsdThr**; (default 3.0) RMSD threshold used while tracing
122+
the AFP fragments
123+
5. double **rmsdThrJoin**; (default 4.0) RMSD threshold used to decide
124+
if two AFPs should be joined
125+
6. String[] **alignmentAtoms**; (default CA) allows to configure which
118126
atoms to use. At the present only supports "CA" and "CA","CB"
119127
settings
120-
5. private int maxGapSize; (default 30) The Max gap size parameter G ,
121-
which was described to have been obtained empirically in the CE
122-
paper. the larger the max gap size, the longer the compute time, but
123-
in same cases drastically improved results. (e.g. 1CDG.A vs. 1TIM.A)
124-
For NO LIMIT set it to -1.
125-
6. boolean showAFPRanges; (default false) A print flag that allows to
126-
view the ranges of the inital AFPs, prior to alignment optimization.
127-
7. boolean checkCircular; (default false) A flag that determines if CE
128-
should check for Circular Permutations (CP). Increases calculation
129-
time significantly, but can detect CPs.
128+
7. boolean **showAFPRanges**; (default false) A print flag that allows
129+
to view the ranges of the inital AFPs, prior to alignment
130+
optimization.
130131

131132
back to <BioJava:CookBook:PDB:align>

wiki/BioJava:CookBook:PDB:CE_Algorithm.mediawiki

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,12 @@ Using BioJava3 it is possible to align any set of atoms with the CE algorithm. T
9292

9393
This CE implementation allows to specify a couple of custom parameters.
9494

95-
# int winSize : (default 8) The window size used for the calculation of the initial Aligned Fragment Pairs
96-
# double rmsdThr; (default 3.0) RMSD threshold used while tracing the AFP fragments
97-
# double rmsdThrJoin; (default 4.0) RMSD threshold used to decide if two AFPs should be joined
98-
# String[] alignmentAtoms; (default CA) allows to configure which atoms to use. At the present only supports "CA" and "CA","CB" settings
99-
# private int maxGapSize; (default 30) The Max gap size parameter G , which was described to have been obtained empirically in the CE paper. the larger the max gap size, the longer the compute time, but in same cases drastically improved results. (e.g. 1CDG.A vs. 1TIM.A) For NO LIMIT set it to -1.
100-
# boolean showAFPRanges; (default false) A print flag that allows to view the ranges of the inital AFPs, prior to alignment optimization.
101-
# boolean checkCircular; (default false) A flag that determines if CE should check for Circular Permutations (CP). Increases calculation time significantly, but can detect CPs.
95+
# private int '''maxGapSize'''; (default 30) The Max gap size parameter G , which has been obtained empirically in the CE paper. The larger the max gap size, the longer the compute time, but in same cases drastically improved results. (e.g. 1CDG.A vs. 1TIM.A) For no limit set this parameter to -1.
96+
# boolean '''checkCircular'''; (default false) A flag that determines if CE should check for Circular Permutations (CP). Increases calculation time significantly, but can detect CPs.
97+
# int '''winSize''' : (default 8) The window size used for the calculation of the initial Aligned Fragment Pairs
98+
# double '''rmsdThr'''; (default 3.0) RMSD threshold used while tracing the AFP fragments
99+
# double '''rmsdThrJoin'''; (default 4.0) RMSD threshold used to decide if two AFPs should be joined
100+
# String[] '''alignmentAtoms'''; (default CA) allows to configure which atoms to use. At the present only supports "CA" and "CA","CB" settings
101+
# boolean '''showAFPRanges'''; (default false) A print flag that allows to view the ranges of the inital AFPs, prior to alignment optimization.
102102
103103
back to [[BioJava:CookBook:PDB:align]]

0 commit comments

Comments
 (0)