Comparing version 6.6.0 to 6.6.1
# Changelog | ||
### [6.6.1](https://www.github.com/mljs/global-spectral-deconvolution/compare/v6.6.0...v6.6.1) (2021-03-24) | ||
### Bug Fixes | ||
* update dependencies ([bf6ee4b](https://www.github.com/mljs/global-spectral-deconvolution/commit/bf6ee4b246e4d964945b034b6b430aa576caaded)) | ||
## [6.6.0](https://www.github.com/mljs/global-spectral-deconvolution/compare/v6.5.0...v6.6.0) (2021-01-21) | ||
@@ -92,1 +99,59 @@ | ||
* update travis ([3120a4a](https://www.github.com/mljs/global-spectral-deconvolution/commit/3120a4a673d4d1826e92c3073a7803eef07b8d4b)) | ||
# [5.0.0](https://github.com/mljs/global-spectral-deconvolution/compare/v4.0.0...v5.0.0) (2020-05-19) | ||
# [4.0.0](https://github.com/mljs/global-spectral-deconvolution/compare/v3.0.1...v4.0.0) (2020-03-20) | ||
### Features | ||
* broadenPeaks takes into account the inflection points if available ([d9302c7](https://github.com/mljs/global-spectral-deconvolution/commit/d9302c74a937f1202dc0898b0ca86bf684edf2c2)) | ||
## [3.0.1](https://github.com/mljs/global-spectral-deconvolution/compare/v3.0.0...v3.0.1) (2020-02-28) | ||
# [3.0.0](https://github.com/mljs/global-spectral-deconvolution/compare/v2.0.6...v3.0.0) (2020-02-27) | ||
## [2.0.5](https://github.com/mljs/global-spectral-deconvolution/compare/v2.0.4...v2.0.5) (2019-01-09) | ||
## [2.0.4](https://github.com/mljs/global-spectral-deconvolution/compare/v2.0.3...v2.0.4) (2019-01-09) | ||
<a name="2.0.3"></a> | ||
## [2.0.3](https://github.com/mljs/global-spectral-deconvolution/compare/v2.0.2...v2.0.3) (2018-11-01) | ||
<a name="2.0.2"></a> | ||
## [2.0.2](https://github.com/mljs/global-spectral-deconvolution/compare/v2.0.1...v2.0.2) (2018-08-03) | ||
<a name="2.0.0"></a> | ||
# [2.0.0](https://github.com/mljs/global-spectral-deconvolution/compare/v1.1.6...v2.0.0) (2016-11-08) | ||
### Bug Fixes | ||
* **gsd:** more understandable variable names ([e8e9ccb](https://github.com/mljs/global-spectral-deconvolution/commit/e8e9ccb)) | ||
### Features | ||
* **gsd:** fix a threshold for first derivative ([4cd0fbb](https://github.com/mljs/global-spectral-deconvolution/commit/4cd0fbb)) | ||
* **gsd:** returns as option the boundaries and real height of each peak ([cf7d895](https://github.com/mljs/global-spectral-deconvolution/commit/cf7d895)) | ||
### BREAKING CHANGES | ||
* gsd: rename i for index |
{ | ||
"name": "ml-gsd", | ||
"version": "6.6.0", | ||
"version": "6.6.1", | ||
"description": "Global Spectra Deconvolution", | ||
@@ -57,28 +57,25 @@ "main": "lib/index.js", | ||
"devDependencies": { | ||
"@babel/plugin-transform-modules-commonjs": "^7.12.1", | ||
"@types/jest": "^26.0.19", | ||
"@babel/plugin-transform-modules-commonjs": "^7.13.8", | ||
"@types/jest": "^26.0.21", | ||
"chemcalc": "^3.4.1", | ||
"cheminfo-build": "^1.1.8", | ||
"eslint": "^7.15.0", | ||
"eslint-config-cheminfo": "^5.2.2", | ||
"eslint-plugin-import": "^2.22.1", | ||
"eslint-plugin-jest": "^24.1.3", | ||
"eslint-plugin-prettier": "^3.3.0", | ||
"cheminfo-build": "^1.1.10", | ||
"eslint": "^7.22.0", | ||
"eslint-config-cheminfo": "^5.2.3", | ||
"esm": "^3.2.25", | ||
"jest": "^26.6.3", | ||
"jest-matcher-deep-close-to": "^2.0.1", | ||
"mf-global": "^1.3.0", | ||
"mf-global": "^1.3.4", | ||
"ml-stat": "^1.3.3", | ||
"nodemon": "^2.0.6", | ||
"nodemon": "^2.0.7", | ||
"prettier": "^2.2.1", | ||
"rollup": "^2.35.1", | ||
"spectrum-generator": "^4.6.0", | ||
"xy-parser": "^3.0.0" | ||
"rollup": "^2.42.3", | ||
"spectrum-generator": "^4.7.1", | ||
"xy-parser": "^3.1.1" | ||
}, | ||
"dependencies": { | ||
"ml-peak-shape-generator": "^0.12.0", | ||
"ml-peak-shape-generator": "^1.0.0", | ||
"ml-savitzky-golay-generalized": "2.0.3", | ||
"ml-spectra-fitting": "^0.13.0", | ||
"ml-spectra-processing": "^4.10.0" | ||
"ml-spectra-fitting": "^1.0.0", | ||
"ml-spectra-processing": "^5.8.0" | ||
} | ||
} |
# global-spectral-deconvolution | ||
[![NPM version][npm-image]][npm-url] | ||
[![David deps][david-image]][david-url] | ||
[![build status][ci-image]][ci-url] | ||
[![Test coverage][codecov-image]][codecov-url] | ||
[![npm download][download-image]][download-url] | ||
@@ -11,3 +12,3 @@ | ||
The second algorithm (`optimizePeaks`) will optimize the width as a FWHM to match the original peak. After optimization the width with therefore be always FWHM whichever is the function used. | ||
The second algorithm (`optimizePeaks`) will optimize the width as a FWHM to match the original peak. After optimization the width with therefore be always FWHM whichever is the function used. | ||
@@ -87,5 +88,2 @@ ## [API documentation](http://mljs.github.io/global-spectral-deconvolution/) | ||
console.log(optimized); // array of peaks {x,y,width}, width = FWHM | ||
``` | ||
@@ -97,7 +95,9 @@ | ||
[npm-image]: https://img.shields.io/npm/v/ml-gsd.svg?style=flat-square | ||
[npm-image]: https://img.shields.io/npm/v/ml-gsd.svg | ||
[npm-url]: https://npmjs.org/package/ml-gsd | ||
[david-image]: https://img.shields.io/david/mljs/global-spectral-deconvolution.svg?style=flat-square | ||
[david-url]: https://david-dm.org/mljs/global-spectral-deconvolution | ||
[download-image]: https://img.shields.io/npm/dm/ml-gsd.svg?style=flat-square | ||
[codecov-image]: https://img.shields.io/codecov/c/github/mljs/global-spectral-deconvolution.svg | ||
[codecov-url]: https://codecov.io/gh/mljs/global-spectral-deconvolution | ||
[ci-image]: https://github.com/mljs/global-spectral-deconvolution/workflows/Node.js%20CI/badge.svg?branch=master | ||
[ci-url]: https://github.com/mljs/global-spectral-deconvolution/actions?query=workflow%3A%22Node.js+CI%22 | ||
[download-image]: https://img.shields.io/npm/dm/ml-gsd.svg | ||
[download-url]: https://npmjs.org/package/ml-gsd |
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
5866092
16
31
+ Addedis-any-array@1.0.1(transitive)
+ Addedml-levenberg-marquardt@3.1.1(transitive)
+ Addedml-peak-shape-generator@1.0.0(transitive)
+ Addedml-spectra-fitting@1.0.0(transitive)
+ Addedml-spectra-processing@5.10.0(transitive)
- Removed@types/estree@1.0.6(transitive)
- Removed@types/node@22.10.2(transitive)
- Removedacorn@7.4.1(transitive)
- Removedis-any-array@0.1.00.1.1(transitive)
- Removedml-levenberg-marquardt@3.1.0(transitive)
- Removedml-peak-shape-generator@0.12.0(transitive)
- Removedml-spectra-fitting@0.13.0(transitive)
- Removedml-spectra-processing@4.12.0(transitive)
- Removedrollup@1.32.1(transitive)
- Removedundici-types@6.20.0(transitive)
Updatedml-spectra-fitting@^1.0.0
Updatedml-spectra-processing@^5.8.0