bionode-bwa
Advanced tools
Comparing version 0.0.9 to 1.0.0
@@ -214,2 +214,5 @@ // # bionode-bwa | ||
}) | ||
bwa.on('error', function (error) { | ||
console.warn(error) | ||
}) | ||
} | ||
@@ -216,0 +219,0 @@ } |
{ | ||
"name": "bionode-bwa", | ||
"description": "A Node.js wrapper for the Burrow-Wheeler Aligner (BWA).", | ||
"version": "0.0.9", | ||
"version": "1.0.0", | ||
"homepage": "http://github.com/bionode/bionode-bwa", | ||
@@ -6,0 +6,0 @@ "repository": { |
@@ -22,3 +22,3 @@ var bwa = require('../') | ||
] | ||
async.parallel(downloads, alignReadsToRef) | ||
async.series(downloads, alignReadsToRef) | ||
@@ -44,6 +44,8 @@ function alignReadsToRef() { | ||
var write = fs.createWriteStream(path) | ||
read | ||
.pipe(write) | ||
read.pipe(write) | ||
write | ||
.on('finish', callback) | ||
.on('error', callback) | ||
.on('error', function (error) { | ||
console.warn(error) | ||
}) | ||
} | ||
@@ -50,0 +52,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
1163753
1687
0
8