Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Peakoscope is a python package for hierarchical analysis of peak and valley regions in numeric data.
Compute the tree of nested peak regions in a data set:
>>> import peakoscope
>>> data = [10, 30, 40, 30, 10, 50, 70, 70, 50, 80]
>>> print(peakoscope.tree(data))
0:10
├─5:10
│ ├─9:10
│ └─6:8
└─1:4
└─2:3
From the tree, select default peak regions and print their subarrays of data:
>>> for peak in peakoscope.tree(data).size_filter():
... print(peak.subarray(data))
...
[80]
[70, 70]
[30, 40, 30]
The github repo contains tutorials and a glossary:
Copyright (C) 2021-2024 Eivind Tøstesen. This software is licensed under GPLv3
Citation can include one or more of:
Peakoscope + version
Github URL: https://github.com/eivindtostesen/hierarchical_peak_finding
PyPI URL: https://pypi.org/project/peakoscope/
The open-access article:
Tøstesen, E. A stitch in time: Efficient computation of genomic DNA melting bubbles. Algorithms for Molecular Biology, 3, 10 (2008). DOI: 10.1186/1748-7188-3-10
FAQs
Data analysis of peak and valley regions
We found that peakoscope demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.