Skip to content

Commit 9870db5

Browse files
committed
fix CruiseControl javadoc warnings
git-svn-id: http://code.open-bio.org/repos/biojava/biojava-live/trunk@8436 7c6358e6-4a41-0410-a743-a5b2a554c398
1 parent f74f409 commit 9870db5

4 files changed

Lines changed: 3 additions & 5 deletions

File tree

biojava3-alignment/src/main/java/org/biojava3/alignment/Alignments.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public static enum PairInProfileScorerType {
5858
*/
5959
public static enum PairwiseSequenceAlignerType {
6060
GLOBAL, // Needleman-Wunsch/Gotoh
61-
GLOBAL_LINEAR_SPACE, // Myers-Miller/Thompson
61+
GLOBAL_LINEAR_SPACE, // Guan-Uberbacher
6262
LOCAL, // Smith-Waterman/Gotoh
6363
LOCAL_LINEAR_SPACE // Smith-Waterman/Gotoh with smart traceback at each maximum
6464
}
@@ -131,7 +131,6 @@ public static <S extends Sequence<C>, C extends Compound> List<SequencePair<S, C
131131
* @param <S> each {@link Sequence} of the {@link List} is of type S
132132
* @param <C> each element of a {@link Sequence} is a {@link Compound} of type C
133133
* @param sequences the {@link List} of {@link Sequence}s to align
134-
* @param type chosen type from list of multiple sequence alignment routines
135134
* @param settings optional settings that adjust the alignment
136135
* @return multiple sequence alignment {@link Profile}
137136
*/

biojava3-alignment/src/main/java/org/biojava3/alignment/routines/AlignerHelper.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,6 @@ public static Cut[] getCuts(int k, int[] subproblem, int[] dim, boolean anchor0)
192192
* next subproblem and this method returns {@code null}.
193193
*
194194
* @param anchors current list of anchors
195-
* @param targetLength length of the target sequence
196195
* @return the coordinates for the next subproblem
197196
*/
198197
public static int[] getNextSubproblem(int[] anchors) {

biojava3-alignment/src/main/java/org/biojava3/alignment/template/GuideTreeNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public interface GuideTreeNode<S extends Sequence<C>, C extends Compound> extend
9393
/**
9494
* Stores the given profile future. This allows concurrent execution of alignment tasks.
9595
*
96-
* @param profile new profile to be calculated and then stored at this node
96+
* @param profileFuture new profile to be calculated and then stored at this node
9797
*/
9898
void setProfileFuture(Future<ProfilePair<S, C>> profileFuture);
9999

biojava3-alignment/src/main/java/org/biojava3/alignment/template/MutableProfile.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
public interface MutableProfile<S extends Sequence<C>, C extends Compound> extends Profile<S, C> {
3939

4040
/**
41-
* Sets entirely new set of {@link AlignedSequences}.
41+
* Sets entirely new set of {@link AlignedSequence}s.
4242
*
4343
* @param sequences new set of sequences
4444
* @throws IllegalArgumentException if sequences have different lengths

0 commit comments

Comments
 (0)