Sha256: 1369d12f7fe2b3d98e5de042a11dcd2accea507e3c7dc8ac29ca725fa39c303c

Contents?: true

Size: 1.98 KB

Versions: 107

Compression:

Stored size: 1.98 KB

Contents

# Hamming

Calculate the Hamming difference between two DNA strands.

A mutation is simply a mistake that occurs during the creation or
copying of a nucleic acid, in particular DNA. Because nucleic acids are
vital to cellular functions, mutations tend to cause a ripple effect
throughout the cell. Although mutations are technically mistakes, a very
rare mutation may equip the cell with a beneficial attribute. In fact,
the macro effects of evolution are attributable by the accumulated
result of beneficial microscopic mutations over many generations.

The simplest and most common type of nucleic acid mutation is a point
mutation, which replaces one base with another at a single nucleotide.

By counting the number of differences between two homologous DNA strands
taken from different genomes with a common ancestor, we get a measure of
the minimum number of point mutations that could have occurred on the
evolutionary path between the two strands.

This is called the 'Hamming distance'.

It is found by comparing two DNA strands and counting how many of the
nucleotides are different from their equivalent in the other string.

    GAGCCTACTAACGGGAT
    CATCGTAATGACGGCCT
    ^ ^ ^  ^ ^    ^^

The Hamming distance between these two DNA strands is 7.

# Implementation notes

The Hamming distance is only defined for sequences of equal length. This means
that based on the definition, each language could deal with getting sequences
of equal length differently.

## Making the Test Suite Pass

1. Get [PHPUnit].

        % wget --no-check-certificate https://phar.phpunit.de/phpunit.phar
        % chmod +x phpunit.phar

2. Execute the tests for an assignment.

        % phpunit.phar wordy/wordy_test.php

[PHPUnit]: http://phpunit.de


## Source

The Calculating Point Mutations problem at Rosalind [http://rosalind.info/problems/hamm/](http://rosalind.info/problems/hamm/)

## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

Version data entries

107 entries across 107 versions & 1 rubygems

Version Path
trackler-2.2.1.103 tracks/php/exercises/hamming/README.md
trackler-2.2.1.102 tracks/php/exercises/hamming/README.md
trackler-2.2.1.101 tracks/php/exercises/hamming/README.md
trackler-2.2.1.100 tracks/php/exercises/hamming/README.md
trackler-2.2.1.99 tracks/php/exercises/hamming/README.md
trackler-2.2.1.98 tracks/php/exercises/hamming/README.md
trackler-2.2.1.97 tracks/php/exercises/hamming/README.md
trackler-2.2.1.96 tracks/php/exercises/hamming/README.md
trackler-2.2.1.95 tracks/php/exercises/hamming/README.md
trackler-2.2.1.94 tracks/php/exercises/hamming/README.md
trackler-2.2.1.93 tracks/php/exercises/hamming/README.md
trackler-2.2.1.92 tracks/php/exercises/hamming/README.md
trackler-2.2.1.91 tracks/php/exercises/hamming/README.md
trackler-2.2.1.90 tracks/php/exercises/hamming/README.md
trackler-2.2.1.89 tracks/php/exercises/hamming/README.md
trackler-2.2.1.88 tracks/php/exercises/hamming/README.md
trackler-2.2.1.87 tracks/php/exercises/hamming/README.md
trackler-2.2.1.86 tracks/php/exercises/hamming/README.md
trackler-2.2.1.85 tracks/php/exercises/hamming/README.md
trackler-2.2.1.84 tracks/php/exercises/hamming/README.md