Skip to content

Commit

Permalink
adding database parameters to conf for ri-tools image
Browse files Browse the repository at this point in the history
  • Loading branch information
costero-e committed Aug 30, 2024
1 parent 614282c commit 21119cb
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions deploy/ri-tools/conf/conf.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
#### Input and Output files config parameters ####
csv_folder = './csv/examples/'
csv_folder = './csv/DATOS-CAT/'
output_docs_folder='./output_docs/'

#### VCF Conversion config parameters ####
allele_frequency=1 # introduce float number, leave 1 if you want to convert all the variants
reference_genome='GRCh38' # Choose one between NCBI36, GRCh37, GRCh38
reference_genome='GRCh38' # Choose one between NCBI36, GRCh37, GRCh38

### MongoDB parameters ###
database_host = 'mongo'
database_port = 27017
database_user = 'root'
database_password = 'example'
database_name = 'beacon'
database_auth_source = 'admin'

0 comments on commit 21119cb

Please sign in to comment.