-
Notifications
You must be signed in to change notification settings - Fork 13
Dataset Specification
josquint edited this page Jun 19, 2018
·
1 revision
Please note that this document is a work in progress, with large sections of content missing.
The ambition for Pretzel is the flexibility to handle the range of structured genetic datasets commonly used today. Work on this capability is in active development. Currently, a specialised dataset specification has been used for development of Pretzel, as summarised in this document.
Two example genetic maps that can be consumed by Pretzel are outlined below. Note that this specification is likely to change soon for more flexibility :
# cat resources/example_map1.json
{ "geneticmap":
{
"name": "MyMap1",
"chromosomes":
[
{
"name": "MrChr",
"markers":
[
{
"name": "markerA",
"position": 1
},
{
"name": "markerB",
"position": 1.5
}
]
}
]
}
}
# cat resources/example_map2.json
{ "geneticmap":
{
"name": "MyMap2",
"chromosomes":
[
{
"name": "MyChr",
"markers":
[
{
"name": "markerA",
"position": 0
},
{
"name": "markerB",
"position": 1.3
}
]
}
]
}
}
User Guide / Tutorials
- Pretzel Introduction / Workshop - Notes
- Uploading Datasets
- Search
- Sequence Search
- Multiple Pretzel Data Sources.
Advanced Topics