brukerconverter
Advanced tools
Comparing version 5.0.2-pre.1667228020 to 5.0.2-pre.1667669682
import { DoubleArray } from 'cheminfo-types'; | ||
import type { FileCollectionItem, FileCollection } from 'filelist-utils'; | ||
import { DoubleMatrix } from 'ml-spectra-processing'; | ||
@@ -135,4 +134,4 @@ type FirstLevelKeys = | ||
export interface MinMax { | ||
z: DoubleMatrix; | ||
export interface MinMaxContent { | ||
z: DoubleArray[]; | ||
minZ: number; | ||
@@ -145,2 +144,4 @@ maxZ: number; | ||
} | ||
export type MinMax = Record<string, MinMaxContent>; | ||
export interface SpectraData2D { | ||
@@ -147,0 +148,0 @@ spectra: Spectrum2D[]; |
@@ -349,3 +349,3 @@ 'use strict'; | ||
const deltaX = toSave.deltaX; | ||
const x = mlSpectraProcessing.xSequentialFill({ from: offset, step: deltaX }); | ||
const x = mlSpectraProcessing.xSequentialFill({ from: offset, step: deltaX, size: td }); | ||
const datum = {}; | ||
@@ -352,0 +352,0 @@ for (const key in buffers) { |
{ | ||
"name": "brukerconverter", | ||
"version": "5.0.2-pre.1667228020", | ||
"version": "5.0.2-pre.1667669682", | ||
"description": "Parse and convert Bruker raw data", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -51,3 +51,3 @@ import { IOBuffer } from 'iobuffer'; | ||
const deltaX = toSave.deltaX; | ||
const x = xSequentialFill({ from: offset, step: deltaX }); | ||
const x = xSequentialFill({ from: offset, step: deltaX, size: td }); | ||
const datum = {}; | ||
@@ -54,0 +54,0 @@ for (const key in buffers) { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
52948