flexynesis 0.2.7__tar.gz → 0.2.9__tar.gz
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.
- flexynesis-0.2.7/LICENCE → flexynesis-0.2.9/LICENSE +0 -2
- {flexynesis-0.2.7 → flexynesis-0.2.9}/PKG-INFO +26 -2
- {flexynesis-0.2.7 → flexynesis-0.2.9}/flexynesis.egg-info/PKG-INFO +26 -2
- {flexynesis-0.2.7 → flexynesis-0.2.9}/flexynesis.egg-info/SOURCES.txt +1 -1
- {flexynesis-0.2.7 → flexynesis-0.2.9}/pyproject.toml +1 -1
- {flexynesis-0.2.7 → flexynesis-0.2.9}/README.md +0 -0
- {flexynesis-0.2.7 → flexynesis-0.2.9}/flexynesis/__init__.py +0 -0
- {flexynesis-0.2.7 → flexynesis-0.2.9}/flexynesis/__main__.py +0 -0
- {flexynesis-0.2.7 → flexynesis-0.2.9}/flexynesis/cli.py +0 -0
- {flexynesis-0.2.7 → flexynesis-0.2.9}/flexynesis/config.py +0 -0
- {flexynesis-0.2.7 → flexynesis-0.2.9}/flexynesis/data.py +0 -0
- {flexynesis-0.2.7 → flexynesis-0.2.9}/flexynesis/feature_selection.py +0 -0
- {flexynesis-0.2.7 → flexynesis-0.2.9}/flexynesis/main.py +0 -0
- {flexynesis-0.2.7 → flexynesis-0.2.9}/flexynesis/models/__init__.py +0 -0
- {flexynesis-0.2.7 → flexynesis-0.2.9}/flexynesis/models/crossmodal_pred.py +0 -0
- {flexynesis-0.2.7 → flexynesis-0.2.9}/flexynesis/models/direct_pred.py +0 -0
- {flexynesis-0.2.7 → flexynesis-0.2.9}/flexynesis/models/gnn_early.py +0 -0
- {flexynesis-0.2.7 → flexynesis-0.2.9}/flexynesis/models/on_ice/direct_pred_cnn.py +0 -0
- {flexynesis-0.2.7 → flexynesis-0.2.9}/flexynesis/models/on_ice/direct_pred_gcnn.py +0 -0
- {flexynesis-0.2.7 → flexynesis-0.2.9}/flexynesis/models/on_ice/modules_on_ice.py +0 -0
- {flexynesis-0.2.7 → flexynesis-0.2.9}/flexynesis/models/supervised_vae.py +0 -0
- {flexynesis-0.2.7 → flexynesis-0.2.9}/flexynesis/models/triplet_encoder.py +0 -0
- {flexynesis-0.2.7 → flexynesis-0.2.9}/flexynesis/modules.py +0 -0
- {flexynesis-0.2.7 → flexynesis-0.2.9}/flexynesis/utils.py +0 -0
- {flexynesis-0.2.7 → flexynesis-0.2.9}/flexynesis.egg-info/dependency_links.txt +0 -0
- {flexynesis-0.2.7 → flexynesis-0.2.9}/flexynesis.egg-info/entry_points.txt +0 -0
- {flexynesis-0.2.7 → flexynesis-0.2.9}/flexynesis.egg-info/requires.txt +0 -0
- {flexynesis-0.2.7 → flexynesis-0.2.9}/flexynesis.egg-info/top_level.txt +0 -0
- {flexynesis-0.2.7 → flexynesis-0.2.9}/setup.cfg +0 -0
- {flexynesis-0.2.7 → flexynesis-0.2.9}/tests/__init__.py +0 -0
- {flexynesis-0.2.7 → flexynesis-0.2.9}/tests/unit/__init__.py +0 -0
- {flexynesis-0.2.7 → flexynesis-0.2.9}/tests/unit/test_smoke.py +0 -0
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
```txt
|
|
2
1
|
Modified MIT License for Academic and Non-Commercial Use
|
|
3
2
|
|
|
4
3
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
@@ -22,4 +21,3 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
22
21
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
23
22
|
SOFTWARE.
|
|
24
23
|
|
|
25
|
-
```
|
|
@@ -1,15 +1,39 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: flexynesis
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.9
|
|
4
4
|
Summary: A deep-learning based multi-omics bulk sequencing data integration suite with a focus on (pre-)clinical endpoint prediction.
|
|
5
5
|
Author-email: Bora Uyar <bora.uyar@mdc-berlin.de>, Taras Savchyn <Taras.Savchyn@mdc-berlin.de>, Ricardo Wurmus <Ricardo.Wurmus@mdc-berlin.de>, Ahmet Sarigun <Ahmet.Sariguen@mdc-berlin.de>
|
|
6
|
+
License: Modified MIT License for Academic and Non-Commercial Use
|
|
7
|
+
|
|
8
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
9
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
10
|
+
in the Software for academic, research, and educational purposes without
|
|
11
|
+
restriction, including without limitation the rights to use, copy, modify,
|
|
12
|
+
merge, publish, and distribute copies of the Software, and to permit persons
|
|
13
|
+
to whom the Software is furnished to do so, subject to the following conditions:
|
|
14
|
+
|
|
15
|
+
Commercial use of this software or any derivative works is prohibited without
|
|
16
|
+
explicit permission and a separate commercial license from the copyright holders.
|
|
17
|
+
|
|
18
|
+
The above copyright notice and this permission notice shall be included in all
|
|
19
|
+
copies or substantial portions of the Software.
|
|
20
|
+
|
|
21
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
25
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
26
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
27
|
+
SOFTWARE.
|
|
28
|
+
|
|
29
|
+
|
|
6
30
|
Project-URL: homepage, https://github.com/BIMSBbioinfo/flexynesis
|
|
7
31
|
Classifier: Development Status :: 3 - Alpha
|
|
8
32
|
Classifier: Intended Audience :: Developers
|
|
9
33
|
Classifier: Programming Language :: Python :: 3.11
|
|
10
34
|
Requires-Python: <3.12,>=3.11
|
|
11
35
|
Description-Content-Type: text/markdown
|
|
12
|
-
License-File:
|
|
36
|
+
License-File: LICENSE
|
|
13
37
|
Requires-Dist: matplotlib
|
|
14
38
|
Requires-Dist: numpy
|
|
15
39
|
Requires-Dist: pandas
|
|
@@ -1,15 +1,39 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: flexynesis
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.9
|
|
4
4
|
Summary: A deep-learning based multi-omics bulk sequencing data integration suite with a focus on (pre-)clinical endpoint prediction.
|
|
5
5
|
Author-email: Bora Uyar <bora.uyar@mdc-berlin.de>, Taras Savchyn <Taras.Savchyn@mdc-berlin.de>, Ricardo Wurmus <Ricardo.Wurmus@mdc-berlin.de>, Ahmet Sarigun <Ahmet.Sariguen@mdc-berlin.de>
|
|
6
|
+
License: Modified MIT License for Academic and Non-Commercial Use
|
|
7
|
+
|
|
8
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
9
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
10
|
+
in the Software for academic, research, and educational purposes without
|
|
11
|
+
restriction, including without limitation the rights to use, copy, modify,
|
|
12
|
+
merge, publish, and distribute copies of the Software, and to permit persons
|
|
13
|
+
to whom the Software is furnished to do so, subject to the following conditions:
|
|
14
|
+
|
|
15
|
+
Commercial use of this software or any derivative works is prohibited without
|
|
16
|
+
explicit permission and a separate commercial license from the copyright holders.
|
|
17
|
+
|
|
18
|
+
The above copyright notice and this permission notice shall be included in all
|
|
19
|
+
copies or substantial portions of the Software.
|
|
20
|
+
|
|
21
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
25
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
26
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
27
|
+
SOFTWARE.
|
|
28
|
+
|
|
29
|
+
|
|
6
30
|
Project-URL: homepage, https://github.com/BIMSBbioinfo/flexynesis
|
|
7
31
|
Classifier: Development Status :: 3 - Alpha
|
|
8
32
|
Classifier: Intended Audience :: Developers
|
|
9
33
|
Classifier: Programming Language :: Python :: 3.11
|
|
10
34
|
Requires-Python: <3.12,>=3.11
|
|
11
35
|
Description-Content-Type: text/markdown
|
|
12
|
-
License-File:
|
|
36
|
+
License-File: LICENSE
|
|
13
37
|
Requires-Dist: matplotlib
|
|
14
38
|
Requires-Dist: numpy
|
|
15
39
|
Requires-Dist: pandas
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|