msreport 0.0.27__py3-none-any.whl → 0.0.29__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.
- msreport/__init__.py +4 -6
- msreport/aggregate/condense.py +1 -1
- msreport/aggregate/pivot.py +1 -0
- msreport/aggregate/summarize.py +2 -2
- msreport/analyze.py +117 -36
- msreport/errors.py +5 -2
- msreport/export.py +16 -13
- msreport/fasta.py +2 -1
- msreport/helper/__init__.py +7 -7
- msreport/helper/calc.py +14 -15
- msreport/helper/maxlfq.py +2 -2
- msreport/helper/table.py +5 -6
- msreport/impute.py +4 -3
- msreport/isobar.py +10 -9
- msreport/normalize.py +2 -1
- msreport/peptidoform.py +6 -4
- msreport/plot/__init__.py +41 -0
- msreport/plot/_partial_plots.py +159 -0
- msreport/plot/comparison.py +490 -0
- msreport/plot/distribution.py +253 -0
- msreport/plot/multivariate.py +355 -0
- msreport/plot/quality.py +431 -0
- msreport/plot/style.py +286 -0
- msreport/plot/style_sheets/msreport-notebook.mplstyle +57 -0
- msreport/plot/style_sheets/seaborn-whitegrid.mplstyle +45 -0
- msreport/qtable.py +109 -17
- msreport/reader.py +235 -86
- msreport/rinterface/__init__.py +16 -3
- msreport/rinterface/limma.py +2 -1
- msreport/rinterface/rinstaller.py +3 -3
- msreport-0.0.29.dist-info/METADATA +136 -0
- msreport-0.0.29.dist-info/RECORD +38 -0
- {msreport-0.0.27.dist-info → msreport-0.0.29.dist-info}/WHEEL +1 -1
- msreport/plot.py +0 -1134
- msreport-0.0.27.dist-info/METADATA +0 -129
- msreport-0.0.27.dist-info/RECORD +0 -30
- {msreport-0.0.27.dist-info → msreport-0.0.29.dist-info}/licenses/LICENSE.txt +0 -0
- {msreport-0.0.27.dist-info → msreport-0.0.29.dist-info}/top_level.txt +0 -0
|
@@ -1,129 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: msreport
|
|
3
|
-
Version: 0.0.27
|
|
4
|
-
Summary: Post processing and analysis of quantitative proteomics data
|
|
5
|
-
Author-email: "David M. Hollenstein" <hollenstein.david@gmail.com>
|
|
6
|
-
License: Apache-2.0
|
|
7
|
-
Keywords: mass spectrometry,proteomics,post processing,data analysis
|
|
8
|
-
Classifier: Development Status :: 3 - Alpha
|
|
9
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
10
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
11
|
-
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
|
|
12
|
-
Requires-Python: >=3.9
|
|
13
|
-
Description-Content-Type: text/markdown
|
|
14
|
-
License-File: LICENSE.txt
|
|
15
|
-
Requires-Dist: adjustText<1.0.0,>=0.7.0
|
|
16
|
-
Requires-Dist: matplotlib>=3.5.2
|
|
17
|
-
Requires-Dist: numpy>=1.21.5
|
|
18
|
-
Requires-Dist: pandas>=1.4.4
|
|
19
|
-
Requires-Dist: profasta>=0.0.4
|
|
20
|
-
Requires-Dist: pyteomics>=4.6.0
|
|
21
|
-
Requires-Dist: pyyaml>=6.0.0
|
|
22
|
-
Requires-Dist: rpy2>=3.5.3
|
|
23
|
-
Requires-Dist: scikit-learn>=1.0.0
|
|
24
|
-
Requires-Dist: scipy>=1.9.1
|
|
25
|
-
Requires-Dist: seaborn>=0.12.0
|
|
26
|
-
Requires-Dist: statsmodels>=0.13.2
|
|
27
|
-
Requires-Dist: typing_extensions>=4
|
|
28
|
-
Dynamic: license-file
|
|
29
|
-
|
|
30
|
-
[](https://www.repostatus.org/#wip)
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
# MsReport
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
## Introduction
|
|
37
|
-
|
|
38
|
-
MsReport is a python library that allows simple and standardized post processing of
|
|
39
|
-
quantitative proteomics data from bottom up, mass spectrometry experiments. Currently
|
|
40
|
-
working with label free protein quantification reports from MaxQuant and FragPipe is
|
|
41
|
-
fully supported. Other data analysis pipelines can be added by writing a software
|
|
42
|
-
specific reader function.
|
|
43
|
-
|
|
44
|
-
MsReport is primarily developed as a tool for the Mass Spectrometry Facility at the Max
|
|
45
|
-
Perutz Labs (University of Vienna), to allow the generation of Quantitative Protein and
|
|
46
|
-
PTM reports, and to facilitate project specific data analysis tasks.
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
## Release
|
|
50
|
-
|
|
51
|
-
Development is currently in early alpha and the interface is not yet stable.
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
## Scope
|
|
55
|
-
|
|
56
|
-
The `reader` module contains software specific reader classes that provide access to the
|
|
57
|
-
outputs of the respective software. Reader instances allow importing protein and ion
|
|
58
|
-
tables, and provide the ability to standardize column names and data formats during the
|
|
59
|
-
import. To do so, reader classes must know the file structure and naming conventions of
|
|
60
|
-
the respective software.
|
|
61
|
-
|
|
62
|
-
The `qtable` class allows storing and accessing quantitative data from a particular
|
|
63
|
-
level of abstraction, such as proteins or ions, and an experimental design table that
|
|
64
|
-
describes to which experiment a sample belongs to. The quantitative data are in the wide
|
|
65
|
-
format, i.e. the quantification data of each sample is stored in a separate column. The
|
|
66
|
-
`Qtable` allows convenient handling and access to quantitative data through information
|
|
67
|
-
from the experimental design, and represents the data structure used by the `analyze`,
|
|
68
|
-
`plot`, and `export` modules.
|
|
69
|
-
|
|
70
|
-
The `analyze` module provides a high-level interface for post-processing of quantitative
|
|
71
|
-
data, such as filtering valid values, normalization between samples, imputation of
|
|
72
|
-
missing values, and statistical testing with the R package LIMMA.
|
|
73
|
-
|
|
74
|
-
The `plot` module allows generation of quality control and data analysis plots.
|
|
75
|
-
|
|
76
|
-
Using methods from the `export` module allows conversion and export of quantitative data
|
|
77
|
-
into the Amica input format, and generating contaminant tables for the inspection of
|
|
78
|
-
potential contaminants.
|
|
79
|
-
|
|
80
|
-
Additional scripts
|
|
81
|
-
|
|
82
|
-
- The `excel_report` module enables the creation of a formatted excel protein report
|
|
83
|
-
by using the XlsxReport library.
|
|
84
|
-
- The `benchmark` module contains functions to generate benchmark plots from multiple
|
|
85
|
-
`Qtable` instances, and can be used for method or software comparison.
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
## Install
|
|
89
|
-
|
|
90
|
-
If you do not already have a Python installation, we recommend installing the
|
|
91
|
-
[Anaconda distribution](https://www.continuum.io/downloads) of Continuum Analytics,
|
|
92
|
-
which already contains a large number of popular Python packages for Data Science.
|
|
93
|
-
Alternatively, you can also get Python from the
|
|
94
|
-
[Python homepage](https://www.python.org/downloads/windows). MsReport requires Python
|
|
95
|
-
version 3.9 or higher.
|
|
96
|
-
|
|
97
|
-
You can use pip to install MsReport from the distribution file with the following
|
|
98
|
-
command:
|
|
99
|
-
|
|
100
|
-
```
|
|
101
|
-
pip install msreport-X.Y.Z-py3-none-any.whl
|
|
102
|
-
```
|
|
103
|
-
|
|
104
|
-
To uninstall the MsReport library type:
|
|
105
|
-
|
|
106
|
-
```
|
|
107
|
-
pip uninstall msreport
|
|
108
|
-
```
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
### Installation when using Anaconda
|
|
112
|
-
If you are using Anaconda, you will need to install the MsReport package into a conda
|
|
113
|
-
environment. Open the Anaconda navigator, activate the conda environment you want to
|
|
114
|
-
use, run the "CMD.exe" application to open a terminal, and then use the pip install
|
|
115
|
-
command as described above.
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
### Additional requirements
|
|
119
|
-
|
|
120
|
-
MsReport provides an interface to the R package LIMMA for differential expression
|
|
121
|
-
analysis, which requires a local installation of R (R version 3.4 or higher) and the
|
|
122
|
-
system environment variable "R_HOME" to be set to the R home directory. Note that it
|
|
123
|
-
might be necessary to restart the computer after adding the "R_HOME" variable. The R
|
|
124
|
-
home directory can also be found from within R by using the command below, and might
|
|
125
|
-
look similar to "C:\Program Files\R\R-4.2.1" on windows.
|
|
126
|
-
|
|
127
|
-
```
|
|
128
|
-
normalizePath(R.home("home"))
|
|
129
|
-
```
|
msreport-0.0.27.dist-info/RECORD
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
msreport/__init__.py,sha256=RPN5o7ubtWIQgnnnG7kAq9pBQzM40dSeeMlr_TYp1n8,343
|
|
2
|
-
msreport/analyze.py,sha256=ihdHqqmaRrCI8NXJP-jUfmvNAtSRUwVU7ixOkpgW9z4,28048
|
|
3
|
-
msreport/errors.py,sha256=qJan3lzRX6uwnByg9LfAfGKEKC2tm9SYUBvk3TdH_AM,300
|
|
4
|
-
msreport/export.py,sha256=pyB8D1VjvfJWO6ka6uMnHsbc6SRlmCyhUB2sfBlhYDQ,20095
|
|
5
|
-
msreport/fasta.py,sha256=oS7n_wNu-4num5nMUiL5cTpMRU3dBe4Xurz09bGm9ZE,1083
|
|
6
|
-
msreport/impute.py,sha256=cBFAaMTlzjdG99ABDHtiN6ZcHpddnx5lfqUp-A4Vr3M,10341
|
|
7
|
-
msreport/isobar.py,sha256=H6AJA81AJQ-gGoc8NEFpNAe6ofwzoK4BGnxQHZ80GlA,6551
|
|
8
|
-
msreport/normalize.py,sha256=Dm3loQjNqFWG1D-k5lAhwKzB_2G6ufa4R5cF5gqqYuE,20158
|
|
9
|
-
msreport/peptidoform.py,sha256=C0IWyvnKivGyizkrtpA_i_lLgw8YZgIxuFBtURrE6rw,11879
|
|
10
|
-
msreport/plot.py,sha256=gyMCMy5uDuqdGH71wRW_jJdohB5yaWeYbX5jvA0kSWc,44186
|
|
11
|
-
msreport/qtable.py,sha256=g9hrVyUdQbiNkBnnFNp4JXNiEAEb_yddrefy34gYMgM,22947
|
|
12
|
-
msreport/reader.py,sha256=PngSiFqX0uFcXCwyU9lwKANGgG8PeoejpcMB3EmlvQc,104972
|
|
13
|
-
msreport/aggregate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
-
msreport/aggregate/condense.py,sha256=sNBEsSqCej-zvzd8QeyaScBxUnP_UcaZWzQx9dvRAD8,5860
|
|
15
|
-
msreport/aggregate/pivot.py,sha256=tCxdhSdXAgEobnsp-n2DX91PwTiNYbx_FYgY6SOef4M,5079
|
|
16
|
-
msreport/aggregate/summarize.py,sha256=aI0YP9Kg4ZTVjS6c9gzu3xqvLOTsYJ5ZT3FcUJyg1vk,12155
|
|
17
|
-
msreport/helper/__init__.py,sha256=8B7gdXn5tFeZATBF30TMaWu0ppc7xFa72JLxMYt_qUM,535
|
|
18
|
-
msreport/helper/calc.py,sha256=yZ-mp2V9_XrCf75mpOlmyZV3Q3lVINqROMVp33TXW6A,4246
|
|
19
|
-
msreport/helper/maxlfq.py,sha256=DE9yX4vjMRSmolffrpC9UkCXmSs-rCN15cnlNzma4zw,14938
|
|
20
|
-
msreport/helper/table.py,sha256=N-veDU3vQ2NeOfKcxUop5SfCv2iW038akkSKxU2yjzg,11464
|
|
21
|
-
msreport/helper/temp.py,sha256=jNulgDATf9sKXEFWMXAhjflciOZPAqlxg_7QZS7IkW8,3736
|
|
22
|
-
msreport/rinterface/__init__.py,sha256=Z1I-4buERXTPIZmhdaTKZWfbJv_qVcqnUVqIJZx1Du8,146
|
|
23
|
-
msreport/rinterface/limma.py,sha256=ATtsVyGSnqUGkyodQTgdpIFhEb4dJZ6wvSjrRsCrNRY,5421
|
|
24
|
-
msreport/rinterface/rinstaller.py,sha256=sm6CJD0-XSxdDpUnL9EAI_CAIgo1NucYxPI9gL93zqw,1377
|
|
25
|
-
msreport/rinterface/rscripts/limma.R,sha256=gr_yjMm_YoG45irDhWOo6gkRQSTwj_7uU_p3NBRHPm8,4331
|
|
26
|
-
msreport-0.0.27.dist-info/licenses/LICENSE.txt,sha256=Pd-b5cKP4n2tFDpdx27qJSIq0d1ok0oEcGTlbtL6QMU,11560
|
|
27
|
-
msreport-0.0.27.dist-info/METADATA,sha256=zieStsBUYoc7mBg3Xx1SyUuQgd7I99CrgKMimJxIeb0,5376
|
|
28
|
-
msreport-0.0.27.dist-info/WHEEL,sha256=ck4Vq1_RXyvS4Jt6SI0Vz6fyVs4GWg7AINwpsaGEgPE,91
|
|
29
|
-
msreport-0.0.27.dist-info/top_level.txt,sha256=Drl8mCckJHFIw-Ovh5AnyjKnqvLJltDOBUr1JAcHAlI,9
|
|
30
|
-
msreport-0.0.27.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|