glygener / glygen-issues

Repository for public GlyGen tickets
GNU General Public License v3.0
0 stars 0 forks source link

Info needed for dataset-masterlist.json documentation #867

Open jeet-vora opened 10 months ago

jeet-vora commented 10 months ago

Robel can you tell what the different values are for the below two fields and how can they be used for various datasets, in integration status in the dataset-masterlist.json?

"integration_status": { "status": "integrate_none", "excludelist": []

@kmartinez834 @JingyueWu

rykahsay commented 10 months ago

The following tells my scripts that all "*_protein_genelocus.csv" dataset files will be used to make JSON objects.

{
                "name": "genelocus",
                "format": "csv",
               "target_objects": [
                        "protein"
                ],
                "integration_status": {
                        "status": "integrate_all",
                        "excludelist": []
                },
                ...
}

This is not real example but it would tell my scripts to use all "*_protein_genelocus.csv" dataset files excluding "yeast_protein_genelocus.csv" to make JSON objects

{
                "name": "genelocus",
                "format": "csv",
                "target_objects": [
                        "protein"
                ],
                "integration_status": {
                        "status": "integrate_all",
                        "excludelist": ["yeast"]
                },
                ...
}

This says none of the "*_protein_mutation_cancer_glycosylation_loss.csv" files will be used to make JSON objects.

{
                "name": "mutation_cancer_glycosylation_loss",
                "format": "csv",
                 "target_objects": [
                        "protein"
                ],
                "integration_status": {
                        "status": "integrate_none",
                        "excludelist": []
                }
                ...
}
jeet-vora commented 5 days ago

@ubhuiyan @katewarner FYI

@ubhuiyan Can you add to the documentation if not added already