Research
Security News
Malicious PyPI Package ‘pycord-self’ Targets Discord Developers with Token Theft and Backdoor Exploit
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
convert-to-jcamp
Advanced tools
Convert strings into JCAMP.
Maintained by Zakodium
$ npm install convert-to-jcamp
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
FAQs
Convert strings into JCAMP
The npm package convert-to-jcamp receives a total of 532 weekly downloads. As such, convert-to-jcamp popularity was classified as not popular.
We found that convert-to-jcamp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
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.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.