Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bionode-bwa

Package Overview
Dependencies
Maintainers
3
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bionode-bwa - npm Package Compare versions

Comparing version 0.0.9 to 1.0.0

3

lib/bionode-bwa.js

@@ -214,2 +214,5 @@ // # bionode-bwa

})
bwa.on('error', function (error) {
console.warn(error)
})
}

@@ -216,0 +219,0 @@ }

2

package.json
{
"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 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc