ghga-transpiler 2.2.0__tar.gz → 2.2.1__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.
Files changed (29) hide show
  1. {ghga_transpiler-2.2.0/src/ghga_transpiler.egg-info → ghga_transpiler-2.2.1}/PKG-INFO +1 -1
  2. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/pyproject.toml +1 -1
  3. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/src/ghga_transpiler/__init__.py +1 -1
  4. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/src/ghga_transpiler/configs/2.0.yaml +8 -0
  5. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1/src/ghga_transpiler.egg-info}/PKG-INFO +1 -1
  6. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/LICENSE +0 -0
  7. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/README.md +0 -0
  8. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/setup.cfg +0 -0
  9. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/src/ghga_transpiler/__main__.py +0 -0
  10. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/src/ghga_transpiler/cli.py +0 -0
  11. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/src/ghga_transpiler/config/__init__.py +0 -0
  12. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/src/ghga_transpiler/config/config.py +0 -0
  13. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/src/ghga_transpiler/config/exceptions.py +0 -0
  14. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/src/ghga_transpiler/configs/0.10.yaml +0 -0
  15. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/src/ghga_transpiler/configs/1.0.yaml +0 -0
  16. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/src/ghga_transpiler/configs/1.1.yaml +0 -0
  17. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/src/ghga_transpiler/configs/__init__.py +0 -0
  18. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/src/ghga_transpiler/core.py +0 -0
  19. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/src/ghga_transpiler/io.py +0 -0
  20. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/src/ghga_transpiler/transformations.py +0 -0
  21. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/src/ghga_transpiler.egg-info/SOURCES.txt +0 -0
  22. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/src/ghga_transpiler.egg-info/dependency_links.txt +0 -0
  23. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/src/ghga_transpiler.egg-info/entry_points.txt +0 -0
  24. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/src/ghga_transpiler.egg-info/requires.txt +0 -0
  25. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/src/ghga_transpiler.egg-info/top_level.txt +0 -0
  26. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/tests/test_convert_workbook.py +0 -0
  27. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/tests/test_create_config.py +0 -0
  28. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/tests/test_io.py +0 -0
  29. {ghga_transpiler-2.2.0 → ghga_transpiler-2.2.1}/tests/test_process_workbook.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ghga_transpiler
3
- Version: 2.2.0
3
+ Version: 2.2.1
4
4
  Summary: GHGA-Transpiler - excel to JSON converter
5
5
  Author-email: "German Human Genome Phenome Archive (GHGA)" <contact@ghga.de>
6
6
  License: Apache 2.0
@@ -21,7 +21,7 @@ classifiers = [
21
21
  "Intended Audience :: Developers",
22
22
  ]
23
23
  name = "ghga_transpiler"
24
- version = "2.2.0"
24
+ version = "2.2.1"
25
25
  description = "GHGA-Transpiler - excel to JSON converter"
26
26
  dependencies = [
27
27
  "typer >= 0.12",
@@ -18,7 +18,7 @@
18
18
 
19
19
  from openpyxl.xml import DEFUSEDXML
20
20
 
21
- __version__ = "2.2.0"
21
+ __version__ = "2.2.1"
22
22
 
23
23
  if not DEFUSEDXML:
24
24
  raise RuntimeError(
@@ -39,6 +39,8 @@ worksheets:
39
39
  !!python/object/apply:ghga_transpiler.transformations.to_attributes []
40
40
  types:
41
41
  !!python/object/apply:ghga_transpiler.transformations.to_snake_case_list []
42
+ attributes:
43
+ !!python/object/apply:ghga_transpiler.transformations.to_attributes []
42
44
  sheet_name: Study
43
45
  - settings:
44
46
  end_column: 10
@@ -84,6 +86,8 @@ worksheets:
84
86
  !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
85
87
  biospecimen_storage:
86
88
  !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
89
+ attributes:
90
+ !!python/object/apply:ghga_transpiler.transformations.to_attributes []
87
91
  sheet_name: Sample
88
92
  - settings:
89
93
  end_column: 23
@@ -113,6 +117,8 @@ worksheets:
113
117
  !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
114
118
  sequencing_layout:
115
119
  !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
120
+ attributes:
121
+ !!python/object/apply:ghga_transpiler.transformations.to_attributes []
116
122
  sheet_name: ExperimentMethod
117
123
  - settings:
118
124
  end_column: 7
@@ -128,6 +134,8 @@ worksheets:
128
134
  transformations:
129
135
  experiments:
130
136
  !!python/object/apply:ghga_transpiler.transformations.to_list []
137
+ format:
138
+ !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
131
139
  sheet_name: ResearchDataFile
132
140
  - settings:
133
141
  end_column: 7
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ghga_transpiler
3
- Version: 2.2.0
3
+ Version: 2.2.1
4
4
  Summary: GHGA-Transpiler - excel to JSON converter
5
5
  Author-email: "German Human Genome Phenome Archive (GHGA)" <contact@ghga.de>
6
6
  License: Apache 2.0
File without changes