New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

nucleotide

Package Overview
Dependencies
Maintainers
1
Versions
66
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nucleotide - npm Package Compare versions

Comparing version 0.6.4 to 0.7.0

4

package.json

@@ -23,6 +23,6 @@ {

},
"version": "0.6.4",
"version": "0.7.0",
"devDependencies": {
"mf-parser": "^0.6.4"
"mf-parser": "^0.7.0"
}
}

@@ -6,20 +6,4 @@ 'use strict';

describe('test generate fragments', () => {
test('nucleotide fragmentation a of HODadeDtmpDcmpH', () => {
let fragments = generateFragments('HODadeDtmpDcmpH', { a: true });
expect(fragments).toMatchSnapshot();
});
test('nucleotide fragmentation ab of HODadeDtmpDcmpH', () => {
let fragments = generateFragments('HODadeDtmpDcmpH', { ab: true });
expect(fragments).toMatchSnapshot();
});
test('nucleotide fragmentation y of HODadeDtmpDcmpH', () => {
let fragments = generateFragments('HODadeDtmpDcmpH', { y: true });
expect(fragments).toMatchSnapshot();
});
test('nucleotide to sequence of HODampDtmpDcmpH', () => {
test('nucleotide to sequence of OHDampDtmpDcmpH', () => {
let fragments = generateFragments('HODampDtmpDcmpH', { a: true });
expect(fragments).toMatchSnapshot();
});

@@ -26,0 +10,0 @@ test('nucleotide to sequence of HODampDtmpDcmpH', () => {

@@ -44,5 +44,4 @@ 'use strict';

function addFiveTerm(mfs, fiveTerm, i, options) {
if (options.a) mfs.push(fiveTerm + 'O-1H-1$a' + i);
if (options.ab && i > 1)
mfs.push(furanThreeTerm(fiveTerm) + '$a' + i + ' - B');
if (options.a) mfs.push(fiveTerm + 'O-1$a' + i);
if (options.ab) mfs.push(furanThreeTerm(fiveTerm) + '$a' + i + ' - B');
if (options.b) mfs.push(fiveTerm + '$b' + i);

@@ -49,0 +48,0 @@ if (options.c) mfs.push(fiveTerm + 'PO2H$c' + i);

Sorry, the diff of this file is not supported yet

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