ghga-transpiler 2.1.3__tar.gz → 2.1.4__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.
- {ghga_transpiler-2.1.3/src/ghga_transpiler.egg-info → ghga_transpiler-2.1.4}/PKG-INFO +1 -1
- {ghga_transpiler-2.1.3 → ghga_transpiler-2.1.4}/pyproject.toml +2 -2
- {ghga_transpiler-2.1.3 → ghga_transpiler-2.1.4}/src/ghga_transpiler/__init__.py +1 -1
- ghga_transpiler-2.1.4/src/ghga_transpiler/configs/0.10.yaml +135 -0
- ghga_transpiler-2.1.4/src/ghga_transpiler/configs/1.0.yaml +135 -0
- ghga_transpiler-2.1.4/src/ghga_transpiler/configs/1.1.yaml +135 -0
- {ghga_transpiler-2.1.3 → ghga_transpiler-2.1.4/src/ghga_transpiler.egg-info}/PKG-INFO +1 -1
- {ghga_transpiler-2.1.3 → ghga_transpiler-2.1.4}/src/ghga_transpiler.egg-info/SOURCES.txt +3 -0
- {ghga_transpiler-2.1.3 → ghga_transpiler-2.1.4}/LICENSE +0 -0
- {ghga_transpiler-2.1.3 → ghga_transpiler-2.1.4}/README.md +0 -0
- {ghga_transpiler-2.1.3 → ghga_transpiler-2.1.4}/setup.cfg +0 -0
- {ghga_transpiler-2.1.3 → ghga_transpiler-2.1.4}/src/ghga_transpiler/__main__.py +0 -0
- {ghga_transpiler-2.1.3 → ghga_transpiler-2.1.4}/src/ghga_transpiler/cli.py +0 -0
- {ghga_transpiler-2.1.3 → ghga_transpiler-2.1.4}/src/ghga_transpiler/config/__init__.py +0 -0
- {ghga_transpiler-2.1.3 → ghga_transpiler-2.1.4}/src/ghga_transpiler/config/config.py +0 -0
- {ghga_transpiler-2.1.3 → ghga_transpiler-2.1.4}/src/ghga_transpiler/config/exceptions.py +0 -0
- {ghga_transpiler-2.1.3 → ghga_transpiler-2.1.4}/src/ghga_transpiler/configs/__init__.py +0 -0
- {ghga_transpiler-2.1.3 → ghga_transpiler-2.1.4}/src/ghga_transpiler/core.py +0 -0
- {ghga_transpiler-2.1.3 → ghga_transpiler-2.1.4}/src/ghga_transpiler/io.py +0 -0
- {ghga_transpiler-2.1.3 → ghga_transpiler-2.1.4}/src/ghga_transpiler/transformations.py +0 -0
- {ghga_transpiler-2.1.3 → ghga_transpiler-2.1.4}/src/ghga_transpiler.egg-info/dependency_links.txt +0 -0
- {ghga_transpiler-2.1.3 → ghga_transpiler-2.1.4}/src/ghga_transpiler.egg-info/entry_points.txt +0 -0
- {ghga_transpiler-2.1.3 → ghga_transpiler-2.1.4}/src/ghga_transpiler.egg-info/requires.txt +0 -0
- {ghga_transpiler-2.1.3 → ghga_transpiler-2.1.4}/src/ghga_transpiler.egg-info/top_level.txt +0 -0
- {ghga_transpiler-2.1.3 → ghga_transpiler-2.1.4}/tests/test_convert_workbook.py +0 -0
- {ghga_transpiler-2.1.3 → ghga_transpiler-2.1.4}/tests/test_create_config.py +0 -0
- {ghga_transpiler-2.1.3 → ghga_transpiler-2.1.4}/tests/test_io.py +0 -0
- {ghga_transpiler-2.1.3 → ghga_transpiler-2.1.4}/tests/test_process_workbook.py +0 -0
|
@@ -21,7 +21,7 @@ classifiers = [
|
|
|
21
21
|
"Intended Audience :: Developers",
|
|
22
22
|
]
|
|
23
23
|
name = "ghga_transpiler"
|
|
24
|
-
version = "2.1.
|
|
24
|
+
version = "2.1.4"
|
|
25
25
|
description = "GHGA-Transpiler - excel to JSON converter"
|
|
26
26
|
dependencies = [
|
|
27
27
|
"typer >= 0.12",
|
|
@@ -47,7 +47,7 @@ where = [
|
|
|
47
47
|
]
|
|
48
48
|
|
|
49
49
|
[tool.setuptools.package-data]
|
|
50
|
-
configs = [
|
|
50
|
+
"ghga_transpiler.configs" = [
|
|
51
51
|
"*.yaml",
|
|
52
52
|
]
|
|
53
53
|
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
ghga_metadata_version: 0.10.0
|
|
2
|
+
default_settings:
|
|
3
|
+
header_row: 1
|
|
4
|
+
start_row: 7
|
|
5
|
+
start_column: 1
|
|
6
|
+
transformations:
|
|
7
|
+
attributes: !!python/object/apply:ghga_transpiler.transformations.to_attributes []
|
|
8
|
+
format: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
9
|
+
forward_or_reverse: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
10
|
+
worksheets:
|
|
11
|
+
- settings:
|
|
12
|
+
end_column: 6
|
|
13
|
+
name: analyses
|
|
14
|
+
sheet_name: Analysis
|
|
15
|
+
- settings:
|
|
16
|
+
end_column: 8
|
|
17
|
+
name: analysis_process_output_files
|
|
18
|
+
sheet_name: AnalysisProcessOutputFile
|
|
19
|
+
- settings:
|
|
20
|
+
end_column: 5
|
|
21
|
+
name: analysis_processes
|
|
22
|
+
transformations:
|
|
23
|
+
study_input_files: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
24
|
+
sample_input_files: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
25
|
+
sequencing_process_input_files: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
26
|
+
sheet_name: AnalysisProcess
|
|
27
|
+
- settings:
|
|
28
|
+
end_column: 9
|
|
29
|
+
name: biospecimens
|
|
30
|
+
transformations:
|
|
31
|
+
vital_status_at_sampling: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
32
|
+
age_at_sampling: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
33
|
+
sheet_name: Biospecimen
|
|
34
|
+
- settings:
|
|
35
|
+
end_column: 9
|
|
36
|
+
name: conditions
|
|
37
|
+
transformations:
|
|
38
|
+
disease_or_healthy: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
39
|
+
case_control_status: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
40
|
+
mutant_or_wildtype: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
41
|
+
sheet_name: Condition
|
|
42
|
+
- settings:
|
|
43
|
+
end_column: 3
|
|
44
|
+
name: data_access_committees
|
|
45
|
+
sheet_name: DataAccessCommittee
|
|
46
|
+
- settings:
|
|
47
|
+
end_column: 8
|
|
48
|
+
name: data_access_policies
|
|
49
|
+
transformations:
|
|
50
|
+
data_use_modifiers: !!python/object/apply:ghga_transpiler.transformations.to_snake_case_list []
|
|
51
|
+
data_use_permission: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
52
|
+
sheet_name: DataAccessPolicy
|
|
53
|
+
- settings:
|
|
54
|
+
end_column: 5
|
|
55
|
+
name: datasets
|
|
56
|
+
transformations:
|
|
57
|
+
types: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
58
|
+
sheet_name: Dataset
|
|
59
|
+
- settings:
|
|
60
|
+
end_column: 8
|
|
61
|
+
name: individuals
|
|
62
|
+
transformations:
|
|
63
|
+
ancestries: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
64
|
+
phenotypic_features: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
65
|
+
karyotype: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
66
|
+
sex: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
67
|
+
sheet_name: Individual
|
|
68
|
+
- settings:
|
|
69
|
+
end_column: 14
|
|
70
|
+
name: library_preparation_protocols
|
|
71
|
+
transformations:
|
|
72
|
+
target_regions: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
73
|
+
attributes: !!python/object/apply:ghga_transpiler.transformations.to_attributes []
|
|
74
|
+
library_layout: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
75
|
+
library_type: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
76
|
+
library_selection: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
77
|
+
library_preparation_kit_retail_name: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
78
|
+
rnaseq_strandedness: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
79
|
+
primer: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
80
|
+
end_bias: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
81
|
+
sheet_name: LibraryPreparationProtocol
|
|
82
|
+
- settings:
|
|
83
|
+
end_column: 9
|
|
84
|
+
name: publications
|
|
85
|
+
transformations:
|
|
86
|
+
xref: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
87
|
+
sheet_name: Publication
|
|
88
|
+
- settings:
|
|
89
|
+
end_column: 8
|
|
90
|
+
name: sample_files
|
|
91
|
+
sheet_name: SampleFile
|
|
92
|
+
- settings:
|
|
93
|
+
end_column: 10
|
|
94
|
+
name: samples
|
|
95
|
+
transformations:
|
|
96
|
+
xref: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
97
|
+
type: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
98
|
+
sheet_name: Sample
|
|
99
|
+
- settings:
|
|
100
|
+
end_column: 7
|
|
101
|
+
name: sequencing_experiments
|
|
102
|
+
sheet_name: SequencingExperiment
|
|
103
|
+
- settings:
|
|
104
|
+
end_column: 8
|
|
105
|
+
name: sequencing_process_files
|
|
106
|
+
sheet_name: SequencingProcessFile
|
|
107
|
+
- settings:
|
|
108
|
+
end_column: 10
|
|
109
|
+
name: sequencing_processes
|
|
110
|
+
sheet_name: SequencingProcess
|
|
111
|
+
- settings:
|
|
112
|
+
end_column: 20
|
|
113
|
+
name: sequencing_protocols
|
|
114
|
+
transformations:
|
|
115
|
+
instrument_model: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
116
|
+
flow_cell_type: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
117
|
+
umi_barcode_read: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
118
|
+
sample_barcode_read: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
119
|
+
sheet_name: SequencingProtocol
|
|
120
|
+
- settings:
|
|
121
|
+
end_column: 6
|
|
122
|
+
name: studies
|
|
123
|
+
transformations:
|
|
124
|
+
affiliations: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
125
|
+
attributes: !!python/object/apply:ghga_transpiler.transformations.to_attributes []
|
|
126
|
+
type: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
127
|
+
sheet_name: Study
|
|
128
|
+
- settings:
|
|
129
|
+
end_column: 8
|
|
130
|
+
name: study_files
|
|
131
|
+
sheet_name: StudyFile
|
|
132
|
+
- settings:
|
|
133
|
+
end_column: 4
|
|
134
|
+
name: trios
|
|
135
|
+
sheet_name: Trio
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
ghga_metadata_version: 1.0.0
|
|
2
|
+
default_settings:
|
|
3
|
+
header_row: 1
|
|
4
|
+
start_row: 7
|
|
5
|
+
start_column: 1
|
|
6
|
+
transformations:
|
|
7
|
+
attributes: !!python/object/apply:ghga_transpiler.transformations.to_attributes []
|
|
8
|
+
format: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
9
|
+
forward_or_reverse: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
10
|
+
worksheets:
|
|
11
|
+
- settings:
|
|
12
|
+
end_column: 6
|
|
13
|
+
name: analyses
|
|
14
|
+
sheet_name: Analysis
|
|
15
|
+
- settings:
|
|
16
|
+
end_column: 9
|
|
17
|
+
name: analysis_process_output_files
|
|
18
|
+
sheet_name: AnalysisProcessOutputFile
|
|
19
|
+
- settings:
|
|
20
|
+
end_column: 5
|
|
21
|
+
name: analysis_processes
|
|
22
|
+
transformations:
|
|
23
|
+
study_input_files: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
24
|
+
sample_input_files: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
25
|
+
sequencing_process_input_files: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
26
|
+
sheet_name: AnalysisProcess
|
|
27
|
+
- settings:
|
|
28
|
+
end_column: 10
|
|
29
|
+
name: biospecimens
|
|
30
|
+
transformations:
|
|
31
|
+
vital_status_at_sampling: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
32
|
+
age_at_sampling: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
33
|
+
sheet_name: Biospecimen
|
|
34
|
+
- settings:
|
|
35
|
+
end_column: 9
|
|
36
|
+
name: conditions
|
|
37
|
+
transformations:
|
|
38
|
+
disease_or_healthy: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
39
|
+
case_control_status: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
40
|
+
mutant_or_wildtype: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
41
|
+
sheet_name: Condition
|
|
42
|
+
- settings:
|
|
43
|
+
end_column: 3
|
|
44
|
+
name: data_access_committees
|
|
45
|
+
sheet_name: DataAccessCommittee
|
|
46
|
+
- settings:
|
|
47
|
+
end_column: 8
|
|
48
|
+
name: data_access_policies
|
|
49
|
+
transformations:
|
|
50
|
+
data_use_modifiers: !!python/object/apply:ghga_transpiler.transformations.to_snake_case_list []
|
|
51
|
+
data_use_permission: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
52
|
+
sheet_name: DataAccessPolicy
|
|
53
|
+
- settings:
|
|
54
|
+
end_column: 5
|
|
55
|
+
name: datasets
|
|
56
|
+
transformations:
|
|
57
|
+
types: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
58
|
+
sheet_name: Dataset
|
|
59
|
+
- settings:
|
|
60
|
+
end_column: 6
|
|
61
|
+
name: individuals
|
|
62
|
+
transformations:
|
|
63
|
+
ancestries: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
64
|
+
phenotypic_features: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
65
|
+
karyotype: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
66
|
+
sex: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
67
|
+
sheet_name: Individual
|
|
68
|
+
- settings:
|
|
69
|
+
end_column: 14
|
|
70
|
+
name: library_preparation_protocols
|
|
71
|
+
transformations:
|
|
72
|
+
target_regions: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
73
|
+
attributes: !!python/object/apply:ghga_transpiler.transformations.to_attributes []
|
|
74
|
+
library_layout: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
75
|
+
library_type: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
76
|
+
library_selection: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
77
|
+
library_preparation_kit_retail_name: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
78
|
+
rnaseq_strandedness: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
79
|
+
primer: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
80
|
+
end_bias: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
81
|
+
sheet_name: LibraryPreparationProtocol
|
|
82
|
+
- settings:
|
|
83
|
+
end_column: 9
|
|
84
|
+
name: publications
|
|
85
|
+
transformations:
|
|
86
|
+
xref: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
87
|
+
sheet_name: Publication
|
|
88
|
+
- settings:
|
|
89
|
+
end_column: 9
|
|
90
|
+
name: sample_files
|
|
91
|
+
sheet_name: SampleFile
|
|
92
|
+
- settings:
|
|
93
|
+
end_column: 10
|
|
94
|
+
name: samples
|
|
95
|
+
transformations:
|
|
96
|
+
xref: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
97
|
+
type: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
98
|
+
sheet_name: Sample
|
|
99
|
+
- settings:
|
|
100
|
+
end_column: 7
|
|
101
|
+
name: sequencing_experiments
|
|
102
|
+
sheet_name: SequencingExperiment
|
|
103
|
+
- settings:
|
|
104
|
+
end_column: 9
|
|
105
|
+
name: sequencing_process_files
|
|
106
|
+
sheet_name: SequencingProcessFile
|
|
107
|
+
- settings:
|
|
108
|
+
end_column: 12
|
|
109
|
+
name: sequencing_processes
|
|
110
|
+
sheet_name: SequencingProcess
|
|
111
|
+
- settings:
|
|
112
|
+
end_column: 17
|
|
113
|
+
name: sequencing_protocols
|
|
114
|
+
transformations:
|
|
115
|
+
instrument_model: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
116
|
+
flow_cell_type: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
117
|
+
umi_barcode_read: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
118
|
+
sample_barcode_read: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
119
|
+
sheet_name: SequencingProtocol
|
|
120
|
+
- settings:
|
|
121
|
+
end_column: 6
|
|
122
|
+
name: studies
|
|
123
|
+
transformations:
|
|
124
|
+
affiliations: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
125
|
+
attributes: !!python/object/apply:ghga_transpiler.transformations.to_attributes []
|
|
126
|
+
type: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
127
|
+
sheet_name: Study
|
|
128
|
+
- settings:
|
|
129
|
+
end_column: 9
|
|
130
|
+
name: study_files
|
|
131
|
+
sheet_name: StudyFile
|
|
132
|
+
- settings:
|
|
133
|
+
end_column: 4
|
|
134
|
+
name: trios
|
|
135
|
+
sheet_name: Trio
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
ghga_metadata_version: 1.1.0
|
|
2
|
+
default_settings:
|
|
3
|
+
header_row: 1
|
|
4
|
+
start_row: 7
|
|
5
|
+
start_column: 1
|
|
6
|
+
transformations:
|
|
7
|
+
attributes: !!python/object/apply:ghga_transpiler.transformations.to_attributes []
|
|
8
|
+
format: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
9
|
+
forward_or_reverse: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
10
|
+
worksheets:
|
|
11
|
+
- settings:
|
|
12
|
+
end_column: 6
|
|
13
|
+
name: analyses
|
|
14
|
+
sheet_name: Analysis
|
|
15
|
+
- settings:
|
|
16
|
+
end_column: 9
|
|
17
|
+
name: analysis_process_output_files
|
|
18
|
+
sheet_name: AnalysisProcessOutputFile
|
|
19
|
+
- settings:
|
|
20
|
+
end_column: 5
|
|
21
|
+
name: analysis_processes
|
|
22
|
+
transformations:
|
|
23
|
+
study_input_files: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
24
|
+
sample_input_files: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
25
|
+
sequencing_process_input_files: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
26
|
+
sheet_name: AnalysisProcess
|
|
27
|
+
- settings:
|
|
28
|
+
end_column: 10
|
|
29
|
+
name: biospecimens
|
|
30
|
+
transformations:
|
|
31
|
+
vital_status_at_sampling: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
32
|
+
age_at_sampling: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
33
|
+
sheet_name: Biospecimen
|
|
34
|
+
- settings:
|
|
35
|
+
end_column: 9
|
|
36
|
+
name: conditions
|
|
37
|
+
transformations:
|
|
38
|
+
disease_or_healthy: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
39
|
+
case_control_status: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
40
|
+
mutant_or_wildtype: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
41
|
+
sheet_name: Condition
|
|
42
|
+
- settings:
|
|
43
|
+
end_column: 3
|
|
44
|
+
name: data_access_committees
|
|
45
|
+
sheet_name: DataAccessCommittee
|
|
46
|
+
- settings:
|
|
47
|
+
end_column: 8
|
|
48
|
+
name: data_access_policies
|
|
49
|
+
transformations:
|
|
50
|
+
data_use_modifiers: !!python/object/apply:ghga_transpiler.transformations.to_snake_case_list []
|
|
51
|
+
data_use_permission: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
52
|
+
sheet_name: DataAccessPolicy
|
|
53
|
+
- settings:
|
|
54
|
+
end_column: 5
|
|
55
|
+
name: datasets
|
|
56
|
+
transformations:
|
|
57
|
+
types: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
58
|
+
sheet_name: Dataset
|
|
59
|
+
- settings:
|
|
60
|
+
end_column: 6
|
|
61
|
+
name: individuals
|
|
62
|
+
transformations:
|
|
63
|
+
ancestries: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
64
|
+
phenotypic_features: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
65
|
+
karyotype: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
66
|
+
sex: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
67
|
+
sheet_name: Individual
|
|
68
|
+
- settings:
|
|
69
|
+
end_column: 14
|
|
70
|
+
name: library_preparation_protocols
|
|
71
|
+
transformations:
|
|
72
|
+
target_regions: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
73
|
+
attributes: !!python/object/apply:ghga_transpiler.transformations.to_attributes []
|
|
74
|
+
library_layout: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
75
|
+
library_type: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
76
|
+
library_selection: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
77
|
+
library_preparation_kit_retail_name: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
78
|
+
rnaseq_strandedness: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
79
|
+
primer: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
80
|
+
end_bias: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
81
|
+
sheet_name: LibraryPreparationProtocol
|
|
82
|
+
- settings:
|
|
83
|
+
end_column: 9
|
|
84
|
+
name: publications
|
|
85
|
+
transformations:
|
|
86
|
+
xref: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
87
|
+
sheet_name: Publication
|
|
88
|
+
- settings:
|
|
89
|
+
end_column: 9
|
|
90
|
+
name: sample_files
|
|
91
|
+
sheet_name: SampleFile
|
|
92
|
+
- settings:
|
|
93
|
+
end_column: 10
|
|
94
|
+
name: samples
|
|
95
|
+
transformations:
|
|
96
|
+
xref: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
97
|
+
type: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
98
|
+
sheet_name: Sample
|
|
99
|
+
- settings:
|
|
100
|
+
end_column: 7
|
|
101
|
+
name: sequencing_experiments
|
|
102
|
+
sheet_name: SequencingExperiment
|
|
103
|
+
- settings:
|
|
104
|
+
end_column: 9
|
|
105
|
+
name: sequencing_process_files
|
|
106
|
+
sheet_name: SequencingProcessFile
|
|
107
|
+
- settings:
|
|
108
|
+
end_column: 12
|
|
109
|
+
name: sequencing_processes
|
|
110
|
+
sheet_name: SequencingProcess
|
|
111
|
+
- settings:
|
|
112
|
+
end_column: 17
|
|
113
|
+
name: sequencing_protocols
|
|
114
|
+
transformations:
|
|
115
|
+
instrument_model: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
116
|
+
flow_cell_type: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
117
|
+
umi_barcode_read: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
118
|
+
sample_barcode_read: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
119
|
+
sheet_name: SequencingProtocol
|
|
120
|
+
- settings:
|
|
121
|
+
end_column: 6
|
|
122
|
+
name: studies
|
|
123
|
+
transformations:
|
|
124
|
+
affiliations: !!python/object/apply:ghga_transpiler.transformations.to_list []
|
|
125
|
+
attributes: !!python/object/apply:ghga_transpiler.transformations.to_attributes []
|
|
126
|
+
type: !!python/object/apply:ghga_transpiler.transformations.to_snake_case []
|
|
127
|
+
sheet_name: Study
|
|
128
|
+
- settings:
|
|
129
|
+
end_column: 9
|
|
130
|
+
name: study_files
|
|
131
|
+
sheet_name: StudyFile
|
|
132
|
+
- settings:
|
|
133
|
+
end_column: 4
|
|
134
|
+
name: trios
|
|
135
|
+
sheet_name: Trio
|
|
@@ -16,6 +16,9 @@ src/ghga_transpiler.egg-info/top_level.txt
|
|
|
16
16
|
src/ghga_transpiler/config/__init__.py
|
|
17
17
|
src/ghga_transpiler/config/config.py
|
|
18
18
|
src/ghga_transpiler/config/exceptions.py
|
|
19
|
+
src/ghga_transpiler/configs/0.10.yaml
|
|
20
|
+
src/ghga_transpiler/configs/1.0.yaml
|
|
21
|
+
src/ghga_transpiler/configs/1.1.yaml
|
|
19
22
|
src/ghga_transpiler/configs/__init__.py
|
|
20
23
|
tests/test_convert_workbook.py
|
|
21
24
|
tests/test_create_config.py
|
|
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
|
{ghga_transpiler-2.1.3 → ghga_transpiler-2.1.4}/src/ghga_transpiler.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{ghga_transpiler-2.1.3 → ghga_transpiler-2.1.4}/src/ghga_transpiler.egg-info/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|