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

convert-to-jcamp

Package Overview
Dependencies
Maintainers
0
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

convert-to-jcamp

Convert strings into JCAMP

  • 5.4.11
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
308
increased by43.26%
Maintainers
0
Weekly downloads
 
Created
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

Package last updated on 27 Aug 2024

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc