genomediff
Advanced tools
Comparing version 1.1.3 to 1.1.4
@@ -13,8 +13,8 @@ var parser_1 = require('./parser'); | ||
GenomeDiff.prototype[Symbol.iterator] = function () { | ||
var items = new Array(this.length); | ||
var items = []; | ||
var props = Object.keys(this); | ||
for (var _i = 0; _i < props.length; _i++) { | ||
var property = props[_i]; | ||
if (property !== 'metadata' && property !== 'mutations' && property !== 'evidence' && property !== 'validation') { | ||
items[property] = this[property]; | ||
if (property !== 'metadata' && property !== 'mutations' && property !== 'evidence' && property !== 'validation' && property !== 'length') { | ||
items.push(this[property]); | ||
} | ||
@@ -21,0 +21,0 @@ } |
{ | ||
"name": "genomediff", | ||
"version": "1.1.3", | ||
"version": "1.1.4", | ||
"description": "Parses strings from files in the GenomeDiff format generated by the breseq variant caller for haploid microbial organisms.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
30287