quantms-utils 0.0.17__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 BigBio Stack
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,82 @@
1
+ Metadata-Version: 2.1
2
+ Name: quantms-utils
3
+ Version: 0.0.17
4
+ Summary: Python scripts and helpers for the quantMS workflow
5
+ License: MIT
6
+ Keywords: quantms,proteomics,mass-spectrometry,data-analysis,big data
7
+ Author: Yasset Perez-Riverol
8
+ Author-email: ypriverol@gmail.com
9
+ Classifier: Development Status :: 5 - Production/Stable
10
+ Classifier: Intended Audience :: Science/Research
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Operating System :: OS Independent
13
+ Classifier: Programming Language :: Python :: 2
14
+ Classifier: Programming Language :: Python :: 2.7
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.4
17
+ Classifier: Programming Language :: Python :: 3.5
18
+ Classifier: Programming Language :: Python :: 3.6
19
+ Classifier: Programming Language :: Python :: 3.7
20
+ Classifier: Programming Language :: Python :: 3.8
21
+ Classifier: Programming Language :: Python :: 3.9
22
+ Classifier: Programming Language :: Python :: 3.10
23
+ Classifier: Programming Language :: Python :: 3.11
24
+ Classifier: Programming Language :: Python :: 3.12
25
+ Classifier: Programming Language :: Python :: 3.13
26
+ Classifier: Programming Language :: Python :: 3 :: Only
27
+ Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
28
+ Requires-Dist: click
29
+ Requires-Dist: pandas
30
+ Requires-Dist: pyarrow (>=16.1.0)
31
+ Requires-Dist: pyopenms (>=3.2.0)
32
+ Requires-Dist: scipy
33
+ Requires-Dist: sdrf-pipelines (>=0.0.31)
34
+ Project-URL: GitHub, https://github.com/bigbio/quantms-utils
35
+ Project-URL: LICENSE, https://github.com/bigbio/quantms-utils/blob/main/LICENSE
36
+ Project-URL: PyPi, https://pypi.org/project/quantms-utils/
37
+ Project-URL: Quantms, https://quantms.org
38
+ Description-Content-Type: text/markdown
39
+
40
+ # quantms-utils
41
+ [![Python application](https://github.com/bigbio/quantms-utils/actions/workflows/python-app.yml/badge.svg)](https://github.com/bigbio/quantms-utils/actions/workflows/python-app.yml)
42
+ [![Python package](https://github.com/bigbio/quantms-utils/actions/workflows/python-package.yml/badge.svg)](https://github.com/bigbio/quantms-utils/actions/workflows/python-package.yml)
43
+ [![Codacy Badge](https://app.codacy.com/project/badge/Grade/ea6903630b3a4d15b674a16b8ce594a7)](https://app.codacy.com/gh/bigbio/quantms-utils/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
44
+ [![PyPI version](https://badge.fury.io/py/quantms-utils.svg)](https://badge.fury.io/py/quantms-utils)
45
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
46
+
47
+ Python package with scripts and functions for the [quantms workflow](https://github.com/bigbio/quantms) for the analysis of quantitative proteomics data.
48
+
49
+ The package is available on PyPI: [quantms-utils](https://pypi.org/project/quantms-utils/)
50
+ ```
51
+ pip install quantms-utils
52
+ ```
53
+
54
+ ## Available Scripts
55
+
56
+ The following functionalities are available in the package:
57
+
58
+ ### Diann scripts
59
+
60
+ - `dianncfg` - Create a configuration file for Diann including enzymes, modifications, and other parameters.
61
+ - `diann2mztab` - Convert Diann output to mzTab format. In addition, convert DIA-NN output to MSstats, Triqler or mzTab.
62
+ The output formats are used for quality control and downstream analysis in quantms.
63
+
64
+ ### SDRF scripts
65
+
66
+ - `openms2sample` - Extra sample information from OpenMS experimental design file. An example of OpenMS experimental design file is available [here](https://github.com/bigbio/quantms-utils/blob/dev/tests/test_data/BSA_design_urls.tsv).
67
+ - `checksamplesheet` - Check the sample sheet for errors and inconsistencies. The experimental design coult be an OpenMS experimental design file or and SDRF file.
68
+
69
+ ### Features to percolator scripts
70
+
71
+ - `sage2feature` - The add_sage_feature function enhances an idXML file by appending additional features from a Sage feature table, excluding those generated by 'psm_file'.
72
+ - `spectrum2feature` - Add the signal-to-noise ratio (SNR) to the feature table for percolator.
73
+
74
+ ### Other scripts
75
+
76
+ - `psmconvert` - The convert_psm function converts peptide spectrum matches (PSMs) from an idXML file to a CSV file, optionally filtering out decoy matches. It extracts and processes data from both the idXML and an associated spectra file, handling multiple search engines and scoring systems.
77
+ - `mzmlstats` - The `mzmlstats` processes mass spectrometry data files in either `.mzML` or `Bruker .d` formats to extract and compile statistics about the spectra. It supports generating detailed or ID-only CSV files based on the spectra data.
78
+
79
+ ## Contributions and issues
80
+
81
+ Contributions and issues are welcome. Please, open an issue in the [GitHub repository](https://github.com/bigbio/quantms) or PR in the [GitHub repository](https://github.com/bigbio/quantms-utils).
82
+
@@ -0,0 +1,21 @@
1
+ quantmsutils/__init__.py,sha256=WlMBNrzKywm5RAbqEVgEgcG7Opc4cf3-wpAnO8PdoEI,23
2
+ quantmsutils/diann/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ quantmsutils/diann/diann2mztab.py,sha256=T8OAPT5VxPUHRZ8cYkysIUNoS-U5h_4d-eL3qnPBhio,60527
4
+ quantmsutils/diann/dianncfg.py,sha256=13mdg1lpxeCM24_tBrcWxyolECnQTn-fiQ1ke48KwKc,4533
5
+ quantmsutils/features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ quantmsutils/features/sage_feature.py,sha256=6DKNPcS0YhmpFPi3ddLVwpa2FboT6Ja33WpLzGRQBtU,1488
7
+ quantmsutils/features/snr.py,sha256=hfTts2UogxcuPpVyf_7s4z5skAOdiii0DmOamjlTLn4,4027
8
+ quantmsutils/mzml/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ quantmsutils/mzml/mzml_statistics.py,sha256=SlUyIjwHqmHR8PuwwLaO4emMzcHocZVm0lT7OrtQQdI,14152
10
+ quantmsutils/psm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ quantmsutils/psm/psm_conversion.py,sha256=xC6L7S4u4JUrm3B-9xu2GwpNaYyck4JNfsUbUH8Brkg,6382
12
+ quantmsutils/quantmsutilsc.py,sha256=zqB0FjIFmjriI0H0pbDoT0-izcCC5GfcrEfUEY-h0w8,1191
13
+ quantmsutils/sdrf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ quantmsutils/sdrf/check_samplesheet.py,sha256=GqJwq6MrVTCxE8603VFBfiGF0f-jvzQUIOQGAOfYZ04,7294
15
+ quantmsutils/sdrf/extract_sample.py,sha256=yY5LiZ70L8Z8ad69IbqwGW4vT9NlS2l5diUZ5R8dRV4,1720
16
+ quantmsutils/utils/constants.py,sha256=XXp0oBoQjI_gzkErhghnw7540uXDY56IX-eDcFfplqQ,748
17
+ quantms_utils-0.0.17.dist-info/LICENSE,sha256=1ROMIyV2fiUdem2FvA7a801c0EHmNLPBqxb6dRLcS3s,1069
18
+ quantms_utils-0.0.17.dist-info/METADATA,sha256=5YaPom4_oIWyR68KZEFoCFPu4LmLoa74bGcBRLGHfdI,4730
19
+ quantms_utils-0.0.17.dist-info/WHEEL,sha256=iAMR_6Qh95yyjYIwRxyjpiFq4FhDPemrEV-SyWIQB3U,92
20
+ quantms_utils-0.0.17.dist-info/entry_points.txt,sha256=LZokFAxG-aWo80akmJjFhX0QRrOtZCweVyKABMuMAxc,65
21
+ quantms_utils-0.0.17.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 1.9.1
3
+ Root-Is-Purelib: true
4
+ Tag: py2.py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ quantmsutilsc=quantmsutils.quantmsutilsc:main
3
+
@@ -0,0 +1 @@
1
+ __version__ = "0.0.17"
File without changes