Skip to content

Commit

Permalink
Restored default config values
Browse files Browse the repository at this point in the history
  • Loading branch information
fyvon committed Mar 20, 2024
1 parent 52cd30f commit fb48ad2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions curation/config.py
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
curation_directories = {
'template_schema': './curation/templates/TemplateColumns2Models.xlsx',
'scoring_schema': './curation/templates/ScoringFileSchema.xlsx',
'studies_dir': '/home/florent/PGS_Catalog/Releases/Import_Next',
'scoring_dir': '/home/florent/PGS_Catalog/Releases/Import_Next/ScoringFiles/'
'studies_dir': '<studies_dir_path>',
'scoring_dir': '<studies_dir_path>/ScoringFiles/'
}

study_names_list = [
{'name': 'Truong2024_AuthorSub'}
{'name': '<study_name>'},
]

default_curation_status = 'IP'

scoringfiles_format_version = '2.0'

skip_scoringfiles = True
skip_scoringfiles = False

skip_curationtracker = True
skip_curationtracker = False

variant_positions_qc_config = {
'skip': True, # Set to True to ignore the variant positions QC step
'n_requests': 1, # Maximum number of requests allowed per score to the Ensembl REST API
'skip': False, # Set to True to ignore the variant positions QC step
'n_requests': 4, # Maximum number of requests allowed per score to the Ensembl REST API
'ensembl_max_variation_req_size': 10, # Maximum number of variants per request to the Ensembl variation REST API
'ensembl_max_sequence_req_size': 50, # Maximum number of variants per request to the Ensembl sequence REST API
'minimum_match_rate': 0.9 # The minimum required match rate for the QC to be satisfactory
Expand Down

0 comments on commit fb48ad2

Please sign in to comment.