Socket
Socket
Sign inDemoInstall

convert-to-jcamp

Package Overview
Dependencies
12
Maintainers
5
Versions
49
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    convert-to-jcamp

Convert strings into JCAMP


Version published
Weekly downloads
586
decreased by-7.13%
Maintainers
5
Install size
2.09 MB
Created
Weekly downloads
 

Changelog

Source

5.4.10 (2024-03-16)

Bug Fixes

  • update dependencies (3327a64)
  • update dependencies and allow DoubleArray (52db01d)

Readme

Source

convert-to-jcamp

Convert strings into JCAMP.

Zakodium logo

Maintained by Zakodium

NPM version build status Test coverage npm download DOI

Installation

$ npm install convert-to-jcamp

Usage

From Variables

const { fromVariables } = require('convert-to-jcamp');
const variables = {
  x: {
    data: [1, 2, 3, 4],
    label: 'x value',
    units: 'x unit',
    isDependent: false,
  },
  y: { data: [2, 3, 4, 5], label: 'y value', units: 'y unit' },
};

const jcamp = fromVariables(variables, {
  forceNtuples: true,
  meta: {
    meta1: 'value1',
    meta2: 'value2',
  },
  info: {
    title: 'Hello world',
    dataType: 'TEST',
  },
});

There are two functions for NMR. from1DNMRVariables and from2DNMRVariables generates a nmr jcamp file from variables.

const { from2DNMRVariables } = require('convert-to-jcamp');

const variables = {
  y: {
    data: [1, 2],
    symbol: 'F1',
    label: 'y',
    units: 'Hz a',
    isDependent: false,
  },
  x: {
    data: [0, 1, 2, 3, 4],
    symbol: 'F2',
    label: 'x',
    units: 'Hz',
    isDependent: false,
  },
  z: {
    data: [
      [2, 3, 4, 5, 7],
      [1, 2, 3, 4, 5],
    ],
    symbol: 'Y',
    label: 'z',
    units: 'arbitrary',
    isDependent: true,
  },
};
const jcamp = from2DNMRVariables(variables, {
  xyEncoding: 'DIFDUP',
  meta: { SFO2: 100, SFO1: 400, NUC1: '1H', NUC2: '13C' },
  info: {
    dataType: 'nD NMR SPECTRUM',
    '.OBSERVE NUCLEUS': '1H',
    '.OBSERVER FREQUENCY': 400,
  },
});
const { from1DNMRVariables } = require('convert-to-jcamp');

const variables = {
  x: {
    data: xMultiply(data.x, observeFrequency),
    label: 'Frequencies',
    units: 'Hz',
    symbol: 'X',
    isDependent: false,
  },
  r: {
    data: data.re,
    label: 'real data',
    units: 'arbitratry units',
    symbol: 'R',
    isDependent: true,
  },
  i: {
    data: data.im,
    label: 'imaginary data',
    units: 'arbitratry units',
    symbol: 'I',
    isDependent: true,
  },
};

const jcamp = from1DNMRVariables(variables, {
  xyEncoding: 'DIFDUP',
  info: {
    title: 'jcamp 1D',
    owner: 'cheminfo',
    dataType: 'NMR Spectrum',
    '.OBSERVE FREQUENCY': 600,
    '.OBSERVE NUCLEUS': '1H',
  },
  meta: { SFO1: 400, NUC1: '1H' },
});

An example for 1D NMR bruker-to-jcamp conversion is in the demo folder

API Documentation

License

MIT

FAQs

Last updated on 16 Mar 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc