Skip to content

Commit 8494d94

Browse files
committed
Remove some unimplemented methods in phylo
1 parent ef81887 commit 8494d94

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

biojava-alignment/src/main/java/org/biojava/nbio/phylo/DistanceMatrixCalculator.java

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ public static <C extends Sequence<D>, D extends Compound> DistanceMatrix pamMLdi
391391
// Need to import PAM1 matrix to biojava TODO
392392
//SubstitutionMatrix<AminoAcidCompound> PAM1 = SubstitutionMatrixHelper.getPAM250();
393393

394-
return null;
394+
throw new IllegalStateException("PAM ML distance calculation not implemented!");
395395
}
396396

397397
/**
@@ -447,18 +447,4 @@ public static <C extends Sequence<D>, D extends Compound> DistanceMatrix structu
447447
return DM;
448448
}
449449

450-
/**
451-
* The joint sequence-structure distance (d<sub>SS</sub>) is a combination
452-
* of the sequence-based and the structure-based distances.
453-
*
454-
* @param rmsdMat
455-
* RMSD matrix for all structure pairs (symmetric matrix)
456-
* @return DistanceMatrix
457-
*/
458-
public static <C extends Sequence<D>, D extends Compound> DistanceMatrix jointSeqStrucDistance(
459-
double[][] rmsdMat) {
460-
// TODO
461-
return null;
462-
}
463-
464450
}

0 commit comments

Comments
 (0)