Sha256: e5c8a98cfb74e3b7621a2110bd23758a0b46ba7cb1c68e781a3f2a1ee0b08d95

Contents?: true

Size: 1.33 KB

Versions: 255

Compression:

Stored size: 1.33 KB

Contents

var DNA = require('./point-mutations');

describe('DNA', function() {

  it('no difference between empty strands', function() {
    var dna = new DNA('');
    expect(dna.hammingDistance('')).toEqual(0);
  });

  xit('no difference between identical strands', function() {
    var dna = new DNA('GGACTGA');
    expect(dna.hammingDistance('GGACTGA')).toEqual(0);
  });

  xit('complete hamming distance in small strand', function() {
    var dna = new DNA('ACT');
    expect(dna.hammingDistance('GGA')).toEqual(3);
  });

  xit('hamming distance in off by one strand', function() {
    var dna = new DNA('GGACGGATTCTGACCTGGACTAATTTTGGGG');
    expect(dna.hammingDistance('AGGACGGATTCTGACCTGGACTAATTTTGGGG')).toEqual(19);
  });

  xit('small hamming distance in middle somewhere', function() {
    var dna = new DNA('GGACG');
    expect(dna.hammingDistance('GGTCG')).toEqual(1);
  });

  xit('larger distance', function() {
    var dna = new DNA('ACCAGGG');
    expect(dna.hammingDistance('ACTATGG')).toEqual(2);
  });

  xit('shortens other strand when longer', function() {
    var dna = new DNA('AAACTAGGGG');
    expect(dna.hammingDistance('AGGCTAGCGGTAGGAC')).toEqual(3);
  });

  xit('shortens original strand when longer', function() {
    var dna = new DNA('GACTACGGACAGGGTAGGGAAT');
    expect(dna.hammingDistance('GACATCGCACACC')).toEqual(5);
  });

});

Version data entries

255 entries across 255 versions & 1 rubygems

Version Path
trackler-2.2.0.4 tracks/javascript/exercises/point-mutations/point-mutations.spec.js
trackler-2.2.0.3 tracks/javascript/exercises/point-mutations/point-mutations.spec.js
trackler-2.2.0.2 tracks/javascript/exercises/point-mutations/point-mutations.spec.js
trackler-2.2.0.1 tracks/javascript/exercises/point-mutations/point-mutations.spec.js
trackler-2.2.0.0 tracks/javascript/exercises/point-mutations/point-mutations.spec.js
trackler-2.1.0.55 tracks/javascript/exercises/point-mutations/point-mutations.spec.js
trackler-2.1.0.54 tracks/javascript/exercises/point-mutations/point-mutations.spec.js
trackler-2.1.0.53 tracks/javascript/exercises/point-mutations/point-mutations.spec.js
trackler-2.1.0.52 tracks/javascript/exercises/point-mutations/point-mutations.spec.js
trackler-2.1.0.51 tracks/javascript/exercises/point-mutations/point-mutations.spec.js
trackler-2.1.0.50 tracks/javascript/exercises/point-mutations/point-mutations.spec.js
trackler-2.1.0.49 tracks/javascript/exercises/point-mutations/point-mutations.spec.js
trackler-2.1.0.48 tracks/javascript/exercises/point-mutations/point-mutations.spec.js
trackler-2.1.0.47 tracks/javascript/exercises/point-mutations/point-mutations.spec.js
trackler-2.1.0.46 tracks/javascript/exercises/point-mutations/point-mutations.spec.js
trackler-2.1.0.45 tracks/javascript/exercises/point-mutations/point-mutations.spec.js
trackler-2.1.0.44 tracks/javascript/exercises/point-mutations/point-mutations.spec.js
trackler-2.1.0.43 tracks/javascript/exercises/point-mutations/point-mutations.spec.js
trackler-2.1.0.42 tracks/javascript/exercises/point-mutations/point-mutations.spec.js
trackler-2.1.0.41 tracks/javascript/exercises/point-mutations/point-mutations.spec.js