AdvancedAnalysisFileParser 0.1.0__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.
- AdvancedAnalysisFileParser/AdvancedAnalysisConstants.py +9 -0
- AdvancedAnalysisFileParser/AdvancedAnalysisParser.py +129 -0
- AdvancedAnalysisFileParser/Models/ConditionOperator.py +9 -0
- AdvancedAnalysisFileParser/Models/FieldCondition.py +29 -0
- AdvancedAnalysisFileParser/Models/FieldWarningConfig.py +4 -0
- AdvancedAnalysisFileParser/Models/JsonDict.py +2 -0
- AdvancedAnalysisFileParser/Models/SectionConfig.py +8 -0
- AdvancedAnalysisFileParser/Models/__init__.py +13 -0
- AdvancedAnalysisFileParser/Parsers/AdvancedAnalysisFileParserFactory.py +36 -0
- AdvancedAnalysisFileParser/Parsers/DragenTruSightOncology500TSVParser.py +102 -0
- AdvancedAnalysisFileParser/Parsers/IAdvancedAnalysisFileParser.py +86 -0
- AdvancedAnalysisFileParser/Parsers/JsonSectionParser.py +39 -0
- AdvancedAnalysisFileParser/Parsers/OneLineTsvParser.py +26 -0
- AdvancedAnalysisFileParser/Parsers/__init__.py +7 -0
- AdvancedAnalysisFileParser/README.md +570 -0
- AdvancedAnalysisFileParser/Test/TruSightOncology500.CombinedVariantOutput.tsv +1586 -0
- AdvancedAnalysisFileParser/Test/dragen424.targeted.json +202 -0
- AdvancedAnalysisFileParser/Test/dummy_gba_affected_nonrecomb_acn2.targeted.json +21 -0
- AdvancedAnalysisFileParser/Test/dummy_gba_carrier_one_recomb_only.targeted.json +14 -0
- AdvancedAnalysisFileParser/Test/dummy_gba_phase_unknown_one_recomb_plus_variant.targeted.json +21 -0
- AdvancedAnalysisFileParser/Test/dummy_warnset_1.targeted.json +132 -0
- AdvancedAnalysisFileParser/Test/dummy_warnset_2.targeted.json +145 -0
- AdvancedAnalysisFileParser/Test/dummy_warnset_3.targeted.json +146 -0
- AdvancedAnalysisFileParser/Test/gba.tsv +2 -0
- AdvancedAnalysisFileParser/Test/gba_carrier_1.json +96 -0
- AdvancedAnalysisFileParser/Test/gba_carrier_2.json +101 -0
- AdvancedAnalysisFileParser/Test/gba_multiple_phase_unknown_1.json +101 -0
- AdvancedAnalysisFileParser/Test/gba_multiple_phase_unknown_2.json +105 -0
- AdvancedAnalysisFileParser/Test/gba_positive_1.json +96 -0
- AdvancedAnalysisFileParser/Test/gba_positive_2.json +101 -0
- AdvancedAnalysisFileParser/Test/hba_carrier_1.json +96 -0
- AdvancedAnalysisFileParser/Test/hba_carrier_2.json +96 -0
- AdvancedAnalysisFileParser/Test/hba_carrier_3.json +96 -0
- AdvancedAnalysisFileParser/Test/hba_carrier_4.json +96 -0
- AdvancedAnalysisFileParser/Test/hba_hemoglobin_h_disease.json +96 -0
- AdvancedAnalysisFileParser/Test/hba_silent_carrier.json +96 -0
- AdvancedAnalysisFileParser/Test/smn.tsv +2 -0
- AdvancedAnalysisFileParser/Test/smn_carrier.json +96 -0
- AdvancedAnalysisFileParser/Test/smn_positive.json +96 -0
- AdvancedAnalysisFileParser/Test/smn_silent_carrier_risk.json +101 -0
- AdvancedAnalysisFileParser/Test_AdvancedAnalysisParser.py +342 -0
- AdvancedAnalysisFileParser/Warnings/CarrierPositiveWarning.py +18 -0
- AdvancedAnalysisFileParser/Warnings/ConditionWarning.py +20 -0
- AdvancedAnalysisFileParser/Warnings/GbaWarning.py +50 -0
- AdvancedAnalysisFileParser/Warnings/GenotypeWarning.py +22 -0
- AdvancedAnalysisFileParser/Warnings/IWarning.py +7 -0
- AdvancedAnalysisFileParser/Warnings/SmnWarning.py +29 -0
- AdvancedAnalysisFileParser/Warnings/WarningFactory.py +31 -0
- AdvancedAnalysisFileParser/Warnings/__init__.py +7 -0
- AdvancedAnalysisFileParser/__init__.py +18 -0
- AdvancedAnalysisFileParser/advConfig.json +96 -0
- AdvancedAnalysisFileParser/dragen_500_tsv_config.json +53 -0
- AdvancedAnalysisFileParser/gba_tsv_config.json +23 -0
- AdvancedAnalysisFileParser/run_test_parser.py +29 -0
- AdvancedAnalysisFileParser/smn_tsv_config.json +23 -0
- advancedanalysisfileparser-0.1.0.dist-info/METADATA +152 -0
- advancedanalysisfileparser-0.1.0.dist-info/RECORD +60 -0
- advancedanalysisfileparser-0.1.0.dist-info/WHEEL +5 -0
- advancedanalysisfileparser-0.1.0.dist-info/licenses/LICENSE +9 -0
- advancedanalysisfileparser-0.1.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
{
|
|
2
|
+
"LPA": {
|
|
3
|
+
"Warning": null
|
|
4
|
+
},
|
|
5
|
+
"SMN": {
|
|
6
|
+
"Warning": {
|
|
7
|
+
"type": "smn",
|
|
8
|
+
"caller_name": "SMN Caller",
|
|
9
|
+
"disease_name": "Spinal Muscular Atrophy",
|
|
10
|
+
"silent_carrier_variant": "NM_000344.4:c.*3+80T>G",
|
|
11
|
+
"silent_carrier_min_allele_copy": 1
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"HBA": {
|
|
15
|
+
"Warning": {
|
|
16
|
+
"type": "genotype",
|
|
17
|
+
"caller_name": "HBA Special Caller",
|
|
18
|
+
"genotype_data_key": "genotype",
|
|
19
|
+
"phenotypeGenotypeMapping": {
|
|
20
|
+
"normal": ["aa/aa"],
|
|
21
|
+
"carrier": [
|
|
22
|
+
"--/aaa3.7",
|
|
23
|
+
"--/aaa4.2",
|
|
24
|
+
"-a3.7/-a3.7",
|
|
25
|
+
"-a4.2/-a4.2",
|
|
26
|
+
"-a3.7/-a4.2",
|
|
27
|
+
"--/aa",
|
|
28
|
+
"-a20.5/-a20.5",
|
|
29
|
+
"-a20.5/-a3.7",
|
|
30
|
+
"-a20.5/-a4.2",
|
|
31
|
+
"--/aaa20.5"
|
|
32
|
+
],
|
|
33
|
+
"silent carrier": [
|
|
34
|
+
"-a3.7/aa",
|
|
35
|
+
"-a4.2/aa",
|
|
36
|
+
"-a20.5/aa"
|
|
37
|
+
],
|
|
38
|
+
"positive for hemoglobin Bart's hydrops fetalis disease": ["--/--"],
|
|
39
|
+
"positive for hemoglobin H disease": [
|
|
40
|
+
"--/-a3.7",
|
|
41
|
+
"--/-a4.2",
|
|
42
|
+
"--/-a20.5"
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
"genotypeReference": [
|
|
46
|
+
"aaa3.7/aa",
|
|
47
|
+
"aaa4.2/aa",
|
|
48
|
+
"aaa20.5/aa",
|
|
49
|
+
"aaa20.5/aaa3.7",
|
|
50
|
+
"aaa20.5/aaa4.2",
|
|
51
|
+
"aaa20.5/aaa20.5",
|
|
52
|
+
"aa/aa",
|
|
53
|
+
"-a3.7/aa",
|
|
54
|
+
"-a4.2/aa",
|
|
55
|
+
"-a20.5/aa",
|
|
56
|
+
"--/aaa3.7",
|
|
57
|
+
"--/aaa4.2",
|
|
58
|
+
"--/aaa20.5",
|
|
59
|
+
"-a3.7/aaa20.5",
|
|
60
|
+
"-a4.2/aaa20.5",
|
|
61
|
+
"-a20.5/aaa3.7",
|
|
62
|
+
"-a20.5/aaa4.2",
|
|
63
|
+
"-a3.7/-a3.7",
|
|
64
|
+
"-a4.2/-a4.2",
|
|
65
|
+
"-a20.5/-a20.5",
|
|
66
|
+
"-a3.7/-a4.2",
|
|
67
|
+
"-a20.5/-a3.7",
|
|
68
|
+
"-a20.5/-a4.2",
|
|
69
|
+
"--/aa",
|
|
70
|
+
"--/-a3.7",
|
|
71
|
+
"--/-a4.2",
|
|
72
|
+
"--/-a20.5",
|
|
73
|
+
"--/--"
|
|
74
|
+
]
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"RH": {
|
|
78
|
+
"Warning": null
|
|
79
|
+
},
|
|
80
|
+
"CYP2D6": {
|
|
81
|
+
"Warning": null
|
|
82
|
+
},
|
|
83
|
+
"CYP2B6": {
|
|
84
|
+
"Warning": null
|
|
85
|
+
},
|
|
86
|
+
"CYP21A2": {
|
|
87
|
+
"Warning": null
|
|
88
|
+
},
|
|
89
|
+
"GBA": {
|
|
90
|
+
"Warning": {
|
|
91
|
+
"type": "gba",
|
|
92
|
+
"caller_name": "GBA Caller",
|
|
93
|
+
"disease_name": "Gaucher disease"
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"MSI": {
|
|
3
|
+
"caller_name": "Percent Unstable MSI Sites",
|
|
4
|
+
"fields":{
|
|
5
|
+
"Usable MSI Sites":{
|
|
6
|
+
"Warning":{
|
|
7
|
+
"type": "condition",
|
|
8
|
+
"conditions":[
|
|
9
|
+
{
|
|
10
|
+
"operator": "GT",
|
|
11
|
+
"value": 10,
|
|
12
|
+
"message": "MSI>10 detected in this sample"
|
|
13
|
+
}
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"TMB": {
|
|
20
|
+
"caller_name": "Total TMB",
|
|
21
|
+
"fields":{
|
|
22
|
+
"Total TMB":{
|
|
23
|
+
"Warning":{
|
|
24
|
+
"type": "condition",
|
|
25
|
+
"conditions":[
|
|
26
|
+
{
|
|
27
|
+
"operator": "GT",
|
|
28
|
+
"value": 10,
|
|
29
|
+
"message": "TMB>10 detected in this sample"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"GIS": {
|
|
37
|
+
"caller_name": "Genomic Instability Score",
|
|
38
|
+
"fields":{
|
|
39
|
+
"Genomic Instability Score":{
|
|
40
|
+
"Warning": {
|
|
41
|
+
"type": "condition",
|
|
42
|
+
"conditions": [
|
|
43
|
+
{
|
|
44
|
+
"operator": "GT",
|
|
45
|
+
"value": 42,
|
|
46
|
+
"message": "GIS>42 detected in this sample"
|
|
47
|
+
}
|
|
48
|
+
]
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"GBA": {
|
|
3
|
+
"caller_name": "GBA Special Caller",
|
|
4
|
+
"Warning": {
|
|
5
|
+
"type": "condition",
|
|
6
|
+
"disease_name": "Gaucher disease",
|
|
7
|
+
"conditions": [
|
|
8
|
+
{
|
|
9
|
+
"field": "is_carrier",
|
|
10
|
+
"value": true,
|
|
11
|
+
"operator": "EQ",
|
|
12
|
+
"message": "Based on the GBA Caller, this sample is positive for Gaucher disease"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"field": "is_biallelic",
|
|
16
|
+
"value": true,
|
|
17
|
+
"operator": "EQ",
|
|
18
|
+
"message": "Based on the GBA Caller, this sample is positive for Gaucher disease"
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import json
|
|
2
|
+
import os
|
|
3
|
+
import sys
|
|
4
|
+
|
|
5
|
+
# Ensure package import works when running this file directly
|
|
6
|
+
CURRENT_DIR = os.path.dirname(__file__)
|
|
7
|
+
PARENT_DIR = os.path.dirname(CURRENT_DIR)
|
|
8
|
+
if PARENT_DIR not in sys.path:
|
|
9
|
+
sys.path.insert(0, PARENT_DIR)
|
|
10
|
+
|
|
11
|
+
from AdvancedAnalysisFileParser import AdvancedAnalysisParser
|
|
12
|
+
|
|
13
|
+
def main():
|
|
14
|
+
base = os.path.join(os.path.dirname(__file__), "Test")
|
|
15
|
+
filename = "gba_positive_1.json"
|
|
16
|
+
request = {
|
|
17
|
+
"input_dir": base,
|
|
18
|
+
"output_dir": base,
|
|
19
|
+
"output_json": "adv_output.json",
|
|
20
|
+
"map_files": {
|
|
21
|
+
filename: {}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
parser = AdvancedAnalysisParser(request)
|
|
25
|
+
result = parser.run(return_dict=True)
|
|
26
|
+
print(json.dumps(result, indent=2))
|
|
27
|
+
|
|
28
|
+
if __name__ == "__main__":
|
|
29
|
+
main()
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"SMN1": {
|
|
3
|
+
"caller_name": "SMN Special Caller",
|
|
4
|
+
"Warning": {
|
|
5
|
+
"type": "condition",
|
|
6
|
+
"disease_name": "Spinal Muscular Atrophy",
|
|
7
|
+
"conditions": [
|
|
8
|
+
{
|
|
9
|
+
"field": "isSMA",
|
|
10
|
+
"value": true,
|
|
11
|
+
"operator": "EQ",
|
|
12
|
+
"message": "Based on the SMN Caller, this sample is positive for Spinal Muscular Atrophy"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"field": "isCarrier",
|
|
16
|
+
"value": true,
|
|
17
|
+
"operator": "EQ",
|
|
18
|
+
"message": "Based on the SMN Caller, this sample is positive for Spinal Muscular Atrophy"
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: AdvancedAnalysisFileParser
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Parse Illumina-DRAGEN TSV/JSON outputs to unified geneyx JSON with warnings.
|
|
5
|
+
Author: Bar Cohen
|
|
6
|
+
Author-email: Bar Cohen <bar@geneyx.com>
|
|
7
|
+
License: MIT License
|
|
8
|
+
|
|
9
|
+
Copyright (c) 2026 Geneyx
|
|
10
|
+
|
|
11
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
16
|
+
Requires-Python: >=3.7
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
License-File: LICENSE
|
|
19
|
+
Dynamic: license-file
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
# AdvancedAnalysisFileParser
|
|
24
|
+
|
|
25
|
+

|
|
26
|
+
|
|
27
|
+
A Python package to parse Illumina-DRAGEN "special caller" outputs (TSV/JSON) into a unified JSON format, with automatic warnings based on user-defined or default conditions. Supports oncology, GBA, SMN, HBA, and more.
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## Features
|
|
32
|
+
|
|
33
|
+
- Unified JSON output for multiple DRAGEN caller types (TSV/JSON)
|
|
34
|
+
- Automatic warnings for each file type, based on config or defaults
|
|
35
|
+
- Pluggable parser architecture for new file types
|
|
36
|
+
- CLI and Python API usage
|
|
37
|
+
- Example configs and test data included
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## Installation
|
|
42
|
+
|
|
43
|
+
Install from PyPI (recommended):
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
pip install AdvancedAnalysisFileParser
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
Or from source:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
git clone https://github.com/geneyx/geneyx.analysis.api.git
|
|
53
|
+
cd geneyx.analysis.api/scripts/AdvancedAnalysisFileParser
|
|
54
|
+
pip install -e .
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
## Quickstart
|
|
60
|
+
|
|
61
|
+
### Python API Usage
|
|
62
|
+
|
|
63
|
+
```python
|
|
64
|
+
from AdvancedAnalysisFileParser.AdvancedAnalysisParser import AdvancedAnalysisParser
|
|
65
|
+
|
|
66
|
+
request = {
|
|
67
|
+
"input_dir": "./Test",
|
|
68
|
+
"output_dir": "./Test",
|
|
69
|
+
"output_json": "adv_output.json",
|
|
70
|
+
# Optionally, you can specify input_files or map_files for custom configs
|
|
71
|
+
}
|
|
72
|
+
parser = AdvancedAnalysisParser(request)
|
|
73
|
+
parser.run() # writes output to adv_output.json
|
|
74
|
+
|
|
75
|
+
# Or get result as dict:
|
|
76
|
+
result = parser.run(return_dict=True)
|
|
77
|
+
print(result)
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
### Command-Line Usage
|
|
81
|
+
|
|
82
|
+
Create a config file (e.g. `config.json`):
|
|
83
|
+
|
|
84
|
+
```json
|
|
85
|
+
{
|
|
86
|
+
"input_dir": "./Test",
|
|
87
|
+
"output_dir": "./Test",
|
|
88
|
+
"output_json": "adv_output.json"
|
|
89
|
+
}
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
Then run:
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
python -m AdvancedAnalysisFileParser.AdvancedAnalysisParser -c config.json
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
---
|
|
99
|
+
|
|
100
|
+
## Configuration
|
|
101
|
+
|
|
102
|
+
The parser uses config files (JSON) to define how to parse and warn for each file type. Default configs are provided for:
|
|
103
|
+
|
|
104
|
+
- GBA: `gba_tsv_config.json`
|
|
105
|
+
- SMN: `smn_tsv_config.json`
|
|
106
|
+
- Oncology: `dragen_500_tsv_config.json`
|
|
107
|
+
- JSON: `advConfig.json`
|
|
108
|
+
|
|
109
|
+
You can override or extend these by providing your own config in the `map_files` key of the request.
|
|
110
|
+
|
|
111
|
+
### Example request/config structure
|
|
112
|
+
|
|
113
|
+
| Key | Type | Description |
|
|
114
|
+
| ------------- | ------ | --------------------------------------------------------------------- |
|
|
115
|
+
| `output_json` | string | Filename for the generated JSON (default: `adv_analysis_output.json`) |
|
|
116
|
+
| `input_dir` | string | Directory containing all input files |
|
|
117
|
+
| `input_files` | list | (Optional) List of files to parse |
|
|
118
|
+
| `map_files` | object | (Optional) Mapping of filenames → caller definitions |
|
|
119
|
+
|
|
120
|
+
---
|
|
121
|
+
|
|
122
|
+
## Warnings
|
|
123
|
+
|
|
124
|
+
Warnings are generated automatically for each caller/file type, based on the config. Each config defines conditions for warnings (see `*_config.json` files for examples). You can customize these for your use case.
|
|
125
|
+
|
|
126
|
+
---
|
|
127
|
+
|
|
128
|
+
## Testing
|
|
129
|
+
|
|
130
|
+
Run the test suite to validate all parsing and warning logic:
|
|
131
|
+
|
|
132
|
+
```bash
|
|
133
|
+
pytest AdvancedAnalysisFileParser/Test_AdvancedAnalysisParser.py
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
Or run the test script:
|
|
137
|
+
|
|
138
|
+
```bash
|
|
139
|
+
python AdvancedAnalysisFileParser/run_test_parser.py
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
---
|
|
143
|
+
|
|
144
|
+
## Example Data
|
|
145
|
+
|
|
146
|
+
See the `Test/` folder for example input files (TSV/JSON) and expected outputs.
|
|
147
|
+
|
|
148
|
+
---
|
|
149
|
+
|
|
150
|
+
## License
|
|
151
|
+
|
|
152
|
+
MIT
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
AdvancedAnalysisFileParser/AdvancedAnalysisConstants.py,sha256=K7hjlqtK9mZseMkku7XapoLS8laF5R9NftXPPzukkYA,338
|
|
2
|
+
AdvancedAnalysisFileParser/AdvancedAnalysisParser.py,sha256=wthDgpNMXg7v5REHLbZXKJNnSwpdiJeAg91ffilkEbI,5594
|
|
3
|
+
AdvancedAnalysisFileParser/README.md,sha256=7WzqoQNz7YUSFzihCU6DCIwuIClPNidu8Y9xM5oIP2g,16032
|
|
4
|
+
AdvancedAnalysisFileParser/Test_AdvancedAnalysisParser.py,sha256=fgBNiZwSYDfC49dvjF38p3_MprDZ1bohr4aRKekoAus,12127
|
|
5
|
+
AdvancedAnalysisFileParser/__init__.py,sha256=W164sLWIb-KpHkkzcasves9lrfh0lv8905uXKxewsLY,653
|
|
6
|
+
AdvancedAnalysisFileParser/advConfig.json,sha256=ZxzJYsCD6xTYSE8BaMjKRiak2-aiuQ87ipmnfmonYQk,2642
|
|
7
|
+
AdvancedAnalysisFileParser/dragen_500_tsv_config.json,sha256=42J2_5IY3V5aFQqvRejPDgJ8Q4pfnzaxk3jzpq8qS6A,1501
|
|
8
|
+
AdvancedAnalysisFileParser/gba_tsv_config.json,sha256=rfxxXM_raswCqrNmJ1Fvrn9MqpgoxOrhIciSk86gPUo,731
|
|
9
|
+
AdvancedAnalysisFileParser/run_test_parser.py,sha256=JwOlEPRltESNFELalFuVmmjjV8NDtkzMitqm4Itqicw,759
|
|
10
|
+
AdvancedAnalysisFileParser/smn_tsv_config.json,sha256=nuS8Q2AqQr3AGN0TAdgp1yvESjvHAJkQzkGexMm9qPY,748
|
|
11
|
+
AdvancedAnalysisFileParser/Models/ConditionOperator.py,sha256=Ut8Mw5lYpQdoV2K8vQg1HMr6QeIOcBZHXbugOKPqDVU,309
|
|
12
|
+
AdvancedAnalysisFileParser/Models/FieldCondition.py,sha256=ZNm0rxBcoyokpoMU0fG9ZEXhDn7jmz7wIWoPWaeuoSw,1262
|
|
13
|
+
AdvancedAnalysisFileParser/Models/FieldWarningConfig.py,sha256=tFp9KQfS-ooQPZKYW73Hscxq2lXlKlwLsMx4VBEQUuM,141
|
|
14
|
+
AdvancedAnalysisFileParser/Models/JsonDict.py,sha256=28NijxJIOuLBaHYuXMg-m-FMy4w_yWG-vIghuYMMWlQ,54
|
|
15
|
+
AdvancedAnalysisFileParser/Models/SectionConfig.py,sha256=0RwZgl2SO1LVPtkMOWsK_nd8qzViTN8g91zmIv1Wzwo,234
|
|
16
|
+
AdvancedAnalysisFileParser/Models/__init__.py,sha256=S3N8EbMLfYxf7vAwmW_AZTUhNzT06rm-45nSOnJY5QM,338
|
|
17
|
+
AdvancedAnalysisFileParser/Parsers/AdvancedAnalysisFileParserFactory.py,sha256=OVv4p7U1C_RTDwapxFEspnHNQOnqsOkLQUxbwOmL4ZI,2130
|
|
18
|
+
AdvancedAnalysisFileParser/Parsers/DragenTruSightOncology500TSVParser.py,sha256=80e1-hgrgfXMW_vP3b-VkeGcaRWfP4lNyzAw5htQRS8,4277
|
|
19
|
+
AdvancedAnalysisFileParser/Parsers/IAdvancedAnalysisFileParser.py,sha256=MoF4Uc1sufDLA5bATZnjWU7GHivytqCeLncGYATIYyo,3769
|
|
20
|
+
AdvancedAnalysisFileParser/Parsers/JsonSectionParser.py,sha256=yRFhIaCmXHrXoPdqcNkWUwYGSAmatGytEppC9HrXrXE,1712
|
|
21
|
+
AdvancedAnalysisFileParser/Parsers/OneLineTsvParser.py,sha256=0Ri-4HOjRFuhPC1m-LQ7Yrtdf8mwSrLSxbLHFygzMGU,1079
|
|
22
|
+
AdvancedAnalysisFileParser/Parsers/__init__.py,sha256=_EhznMIotrjrQR-rf65rp7_XSJa6RUZlKV031p1w6CA,240
|
|
23
|
+
AdvancedAnalysisFileParser/Test/TruSightOncology500.CombinedVariantOutput.tsv,sha256=-Myq_kr9o-30Pfq3V_wNXdRKYR3s760j378cuYcAtCc,122034
|
|
24
|
+
AdvancedAnalysisFileParser/Test/dragen424.targeted.json,sha256=3KYM2DCkxyRI8YYiuJm_2wnaO11fP7IB4iKg1FOM55c,4845
|
|
25
|
+
AdvancedAnalysisFileParser/Test/dummy_gba_affected_nonrecomb_acn2.targeted.json,sha256=UqLyQiMSnv4G9lSniWFF4IicXW0g12r550A_8C8fEgI,426
|
|
26
|
+
AdvancedAnalysisFileParser/Test/dummy_gba_carrier_one_recomb_only.targeted.json,sha256=iryYc2zJv8qQ_EOn9NFEo9fwuPWSTo6yW9MK5HCPfGs,302
|
|
27
|
+
AdvancedAnalysisFileParser/Test/dummy_gba_phase_unknown_one_recomb_plus_variant.targeted.json,sha256=NmW0JbHAYS8rM05D2dlJO3PJOtvUPxEtY89hN_aGZ8I,459
|
|
28
|
+
AdvancedAnalysisFileParser/Test/dummy_warnset_1.targeted.json,sha256=sfhC0NfamT6LP1OIJlj4wN3oHtWI2WvB3VTpzudv__k,3109
|
|
29
|
+
AdvancedAnalysisFileParser/Test/dummy_warnset_2.targeted.json,sha256=5D-P1SsS6oiCe8DrKfgDq_9um9Pa-Wymu5FNbxXreBw,3358
|
|
30
|
+
AdvancedAnalysisFileParser/Test/dummy_warnset_3.targeted.json,sha256=uluDTTTdK1Z5ezRi4r3rigLlvhGEB-iRhzF71qLRjY4,3367
|
|
31
|
+
AdvancedAnalysisFileParser/Test/gba.tsv,sha256=av5a_OQjLXnHbSjBif_YitZnndVPo6XUGx4h-n1H_dY,182
|
|
32
|
+
AdvancedAnalysisFileParser/Test/gba_carrier_1.json,sha256=76qrCaEx3MmJ3cOB7UnIIqAfTn7KUYI2bppx1aHZz9U,2193
|
|
33
|
+
AdvancedAnalysisFileParser/Test/gba_carrier_2.json,sha256=20ckvOyxpvI4AYsInGFErNGKroGchgkEIoDZrNwKrAA,2268
|
|
34
|
+
AdvancedAnalysisFileParser/Test/gba_multiple_phase_unknown_1.json,sha256=HXeROtyW2WgHNnihsTlwg1uYLlcV3ycVPor0bHYuzBc,2272
|
|
35
|
+
AdvancedAnalysisFileParser/Test/gba_multiple_phase_unknown_2.json,sha256=qmgzE_Ujyl9wfNqJbSZYfCbecwQ1MQ-SOVm7jaK8xFE,2343
|
|
36
|
+
AdvancedAnalysisFileParser/Test/gba_positive_1.json,sha256=egcWh-WmEx9EnHrjPcRadma4nvO0nUMMjBX8PDzjJHQ,2197
|
|
37
|
+
AdvancedAnalysisFileParser/Test/gba_positive_2.json,sha256=O5eqUljORPGH898N7Ou-QP-41MLIhqwwc1hMR3ecD8A,2268
|
|
38
|
+
AdvancedAnalysisFileParser/Test/hba_carrier_1.json,sha256=ykiooEAqdU3TJFPutVvrcr0pu0f5JOdZ_ZUdJv_5J4o,2197
|
|
39
|
+
AdvancedAnalysisFileParser/Test/hba_carrier_2.json,sha256=GipgZAmTtJzYTaN3fgP8gfGPm1SSGX4QMb-tQNOwBiA,2196
|
|
40
|
+
AdvancedAnalysisFileParser/Test/hba_carrier_3.json,sha256=bwfVl5JhPR6eJMGxYvo7iJ54cekDIRCCIoMwUE3MyY8,2196
|
|
41
|
+
AdvancedAnalysisFileParser/Test/hba_carrier_4.json,sha256=J4hajfzCI7paik8hkyKRcpu5T3GQ87Axx7qVW7B8WYw,2194
|
|
42
|
+
AdvancedAnalysisFileParser/Test/hba_hemoglobin_h_disease.json,sha256=hCq-PHJHb9wL-IZq3QEyNZzngZ0ci5j8SiX47JDAkgM,2193
|
|
43
|
+
AdvancedAnalysisFileParser/Test/hba_silent_carrier.json,sha256=QR8IVHdx7VfC9ygIb1mSQlE-CNNnr1bJhNh4BARkX_U,2193
|
|
44
|
+
AdvancedAnalysisFileParser/Test/smn.tsv,sha256=RZDqQB8vbSK3AZMd03-K_m6OOqLRGfULsOh9e3Hz_BQ,179
|
|
45
|
+
AdvancedAnalysisFileParser/Test/smn_carrier.json,sha256=24aLs-ha8YmmwpoFgKTkQ8jNSQxSGeI1T0UUUZ6kPME,2189
|
|
46
|
+
AdvancedAnalysisFileParser/Test/smn_positive.json,sha256=mmGAdUWTmG3WBbYP6PrQnLlLO4pwiBYzYifEmPd3FcE,2189
|
|
47
|
+
AdvancedAnalysisFileParser/Test/smn_silent_carrier_risk.json,sha256=CMn_hEz-yR2AFg44ifiGCWiPA39f5RN0go4_qPnW41I,2286
|
|
48
|
+
AdvancedAnalysisFileParser/Warnings/CarrierPositiveWarning.py,sha256=MQt-HjlkGemMVrS4FRaCi8qgzFTLo_xvfiCOXtMP1P0,866
|
|
49
|
+
AdvancedAnalysisFileParser/Warnings/ConditionWarning.py,sha256=VqPHn2f_wBt8R_vddpm3wWCkCfgeKEKIBiRpmhhtIj4,880
|
|
50
|
+
AdvancedAnalysisFileParser/Warnings/GbaWarning.py,sha256=CX3rlXd9Gn1lPA_r_GFRb8Ju76h_nN326HZFuiCuGeU,2166
|
|
51
|
+
AdvancedAnalysisFileParser/Warnings/GenotypeWarning.py,sha256=qZO6txKAMTBcBH3FJ2ttCsu4uHVj-SeyUI5_jPSGTfk,1161
|
|
52
|
+
AdvancedAnalysisFileParser/Warnings/IWarning.py,sha256=DCfpTdSEzeVjrB1yYEP83w-v-OrjJO5lHpdd5Jzkk20,184
|
|
53
|
+
AdvancedAnalysisFileParser/Warnings/SmnWarning.py,sha256=VXj-fy40ywZmzLcCwdq_CheKjK0DrrZao0QNQuVsnqY,1779
|
|
54
|
+
AdvancedAnalysisFileParser/Warnings/WarningFactory.py,sha256=RYwyONBpA84GL-1hIWjR4C9mGuSBthUcDJfX1eui3uU,1340
|
|
55
|
+
AdvancedAnalysisFileParser/Warnings/__init__.py,sha256=v8-22YDAbR87sZdFRpEUmXIQzmXhE-Eq9wa9sC6qoaM,127
|
|
56
|
+
advancedanalysisfileparser-0.1.0.dist-info/licenses/LICENSE,sha256=-qHDWhmLWnBi2Pz88Kd-wacLV754EhSbV6jV0rcOn-s,1070
|
|
57
|
+
advancedanalysisfileparser-0.1.0.dist-info/METADATA,sha256=w_7FT-Qu1JxVh063ZPTNgTEtHQ7FIqYGcUlUJLqTw3A,4742
|
|
58
|
+
advancedanalysisfileparser-0.1.0.dist-info/WHEEL,sha256=YCfwYGOYMi5Jhw2fU4yNgwErybb2IX5PEwBKV4ZbdBo,91
|
|
59
|
+
advancedanalysisfileparser-0.1.0.dist-info/top_level.txt,sha256=qktb0ZKlTD_sOMGxTg44cJ3zwuHamcsYPVwXHBCSF5U,27
|
|
60
|
+
advancedanalysisfileparser-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Geneyx
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
+
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
AdvancedAnalysisFileParser
|