chromatography
Advanced tools
Comparing version 3.7.0 to 3.9.0
{ | ||
"name": "chromatography", | ||
"version": "3.7.0", | ||
"version": "3.9.0", | ||
"description": "Tools for storing, search and analize GC/MS spectra", | ||
@@ -61,8 +61,9 @@ "main": "lib/index.js", | ||
"mf-parser": "^0.6.4", | ||
"ml-array-max": "^1.0.0", | ||
"ml-array-mean": "^1.0.0", | ||
"ml-array-max": "^1.1.0", | ||
"ml-array-mean": "^1.1.0", | ||
"ml-gsd": "^2.0.2", | ||
"ml-regression-polynomial": "^1.0.2", | ||
"mzdata": "^1.1.0", | ||
"netcdf-gcms": "^1.1.0", | ||
"mzmjs": "^0.2.0", | ||
"netcdf-gcms": "^1.2.2", | ||
"num-sort": "^1.0.0", | ||
@@ -69,0 +70,0 @@ "xy-parser": "^2.2.0" |
@@ -7,6 +7,15 @@ import { readFileSync } from 'fs'; | ||
test('load NetCDF', () => { | ||
const path = join(__dirname, '../../../testFiles/netcdf/test.cdf'); | ||
const path = join(__dirname, '../../../testFiles/netcdf/bruker-gcms.cdf'); | ||
const netcdf = readFileSync(path); | ||
const chrom = fromNetCDF(netcdf); | ||
expect(chrom.getSerieNames()).toEqual(['tic', 'ms']); | ||
expect(chrom).toHaveLength(4513); | ||
}); | ||
test('load agilent HPLC cdf', () => { | ||
const path = join(__dirname, '../../../testFiles/netcdf/agilent-hplc.cdf'); | ||
const netcdf = readFileSync(path); | ||
const chrom = fromNetCDF(netcdf); | ||
expect(chrom.getSerieNames()).toEqual(['uv254']); | ||
expect(chrom).toHaveLength(4651); | ||
}); |
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
175683
4996
13
+ Addedmzmjs@^0.2.0
+ Addedmzmjs@0.2.0(transitive)
+ Addedsax@1.4.1(transitive)
Updatedml-array-max@^1.1.0
Updatedml-array-mean@^1.1.0
Updatednetcdf-gcms@^1.2.2