Skip to content

Commit 280f239

Browse files
committed
Javadoc fix: some more errors from structure module
1 parent ed7ab8e commit 280f239

File tree

5 files changed

+17
-12
lines changed

5 files changed

+17
-12
lines changed

biojava-structure/src/main/java/org/biojava/nbio/structure/align/ce/CeParameters.java

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,8 @@ public void setDistanceIncrement(Double distanceIncrement)
342342

343343

344344

345-
/** Get the Original RMSD threshold from which the alignment optimization is started
345+
/**
346+
* Get the Original RMSD threshold from which the alignment optimization is started
346347
*
347348
* @return oRMSDThreshold
348349
*/
@@ -353,7 +354,8 @@ public Double getORmsdThr()
353354

354355

355356

356-
/** Set the Original RMSD threshold from which the alignment optimization is started
357+
/**
358+
* Set the Original RMSD threshold from which the alignment optimization is started
357359
*
358360
* @param oRmsdThr the threshold
359361
*/
@@ -363,16 +365,17 @@ public void setORmsdThr(Double oRmsdThr)
363365
}
364366

365367

366-
/** Get the maximum nr of times the (slow) optimiziation of alignment should iterate. Default: unlimited
368+
/**
369+
* Get the maximum nr of times the (slow) optimiziation of alignment should iterate. Default: unlimited
367370
*
368-
* @param maxNrIterationsForOptimization
369371
*/
370372
public int getMaxNrIterationsForOptimization() {
371373
return maxNrIterationsForOptimization;
372374
}
373375

374376

375-
/** Set the maximum nr of times the (slow) optimiziation of alignment should iterate. Default: unlimited
377+
/**
378+
* Set the maximum nr of times the (slow) optimiziation of alignment should iterate. Default: unlimited
376379
*
377380
* @param maxNrIterationsForOptimization
378381
*/
@@ -381,7 +384,8 @@ public void setMaxNrIterationsForOptimization(int maxNrIterationsForOptimization
381384
}
382385

383386

384-
/** Should sequence conservation be considered as part of the alignment? If yes, this weight factor allows to determine how much.
387+
/**
388+
* Should sequence conservation be considered as part of the alignment? If yes, this weight factor allows to determine how much.
385389
* By default this is set to 0, meaning no contribution of the sequence alignment score.
386390
*
387391
* @return seqWeight the weight factor (default 0)
@@ -392,7 +396,8 @@ public double getSeqWeight() {
392396
}
393397

394398

395-
/** Should sequence conservation be considered as part of the alignment? If yes, this weight factor allows to determine how much.
399+
/**
400+
* Should sequence conservation be considered as part of the alignment? If yes, this weight factor allows to determine how much.
396401
* By default this is set to 0, meaning no contribution of the sequence alignment score.
397402
*
398403
* @param seqWeight the weight factor (default 0)

biojava-structure/src/main/java/org/biojava/nbio/structure/align/multiple/Block.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public interface Block extends ScoresCache {
8989
* Returns the total number of aligned positions (columns) in the Block.
9090
*
9191
* @return int number of aligned residues.
92-
* @see #getCoreLength();
92+
* @see #getCoreLength()
9393
* @see #size()
9494
*/
9595
public int length();

biojava-structure/src/main/java/org/biojava/nbio/structure/align/multiple/BlockSet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public interface BlockSet extends ScoresCache {
111111
* This may trigger other properties to update which depend on the
112112
* superposition.
113113
*
114-
* @param matrices
114+
* @param transformations
115115
*/
116116
public void setTransformations(List<Matrix4d> transformations);
117117

biojava-structure/src/main/java/org/biojava/nbio/structure/ecod/EcodInstallation.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public class EcodInstallation implements EcodDatabase {
9797
* installations at the same path can lead to race conditions when downloading
9898
* files.
9999
* @param cacheLocation Location to save files, typically from the PDB_CACHE_DIR parameter
100-
* @param requestedVersion ECOD requestedVersion to fetch
100+
* @param version ECOD requestedVersion to fetch
101101
*/
102102
public EcodInstallation(String cacheLocation, String version) {
103103
domainsFileLock = new ReentrantReadWriteLock();
@@ -295,7 +295,7 @@ public String getUrl() {
295295

296296
/**
297297
* Specify a different mirror for the ECOD server.
298-
* @param urlFormat the urlFormat to set
298+
* @param url the urlFormat to set
299299
*/
300300
public void setUrl(String url) {
301301
this.url = url;

biojava-structure/src/main/java/org/biojava/nbio/structure/geometry/CalcPoint.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ private CalcPoint() {
4040
}
4141

4242
/**
43-
* Center a cloud of points. This means subtracting the {@lin
43+
* Center a cloud of points. This means subtracting the {@link
4444
* #centroid(Point3d[])} of the cloud to each point.
4545
*
4646
* @param x

0 commit comments

Comments
 (0)