Skip to content

Commit

Permalink
Pair-HMM alignment algorithm description fix (#5528)
Browse files Browse the repository at this point in the history
  • Loading branch information
rick-heig authored and droazen committed Jan 16, 2019
1 parent 74999b7 commit 9b3ee90
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import static org.broadinstitute.hellbender.utils.pairhmm.PairHMMModel.*;

/**
* Util class for performing the pair HMM for local alignment. Figure 4.3 in Durbin 1998 book.
* Util class for performing the pair HMM for global alignment. Figure 4.1 in Durbin 1998 book.
*/
public final class Log10PairHMM extends N2MemoryPairHMM {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import java.util.function.Function;

/**
* Class for performing the pair HMM for local alignment. Figure 4.3 in Durbin 1998 book.
* Class for performing the pair HMM for global alignment. Figure 4.1 in Durbin 1998 book.
*/
public abstract class PairHMM implements Closeable{
protected static final Logger logger = LogManager.getLogger(PairHMM.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import java.util.Map;

/**
* Class for performing the pair HMM for local alignment using AVX instructions contained in a native shared library.
* Class for performing the pair HMM for global alignment using AVX instructions contained in a native shared library.
*/
public final class VectorLoglessPairHMM extends LoglessPairHMM {

Expand Down

0 comments on commit 9b3ee90

Please sign in to comment.