-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgel_report_config.py
38 lines (29 loc) · 1.76 KB
/
gel_report_config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
####################### Where the App lives##############
app_home="/home/mokaguys/Apps/CIP_API/" # note trailing slash!!
####################### Authentication ##################
# path to files containing
username = app_home + "auth_username.txt"
pw = app_home + "auth_pw.txt"
####################### Requests module ##################
#the proxy settings for requests module
proxy={'http':'proxy:80'} # if proxy is not required remove/comment this line do not leave blank
################# report modifications #####################
# Where the patient information template can be found
new_patientinfo_table = app_home + "patient_info_table_template.html"
new_clinician_table = app_home + "referring_clinic_table_template.html"
# what logo do you want to replace the gel logo with?
new_logo = app_home + "images/viapathlogo_white.png"
#report title
report_title = "100,000 Genomes Project Rare Disease Primary Findings"
# warning message if there is an error reported when generating the report
warning_message = "Warning! Error making the report.\nIf issue continues for this sample contact GEL Helpdesk @ [email protected].\nError message = "
########################### CIP information ##########################
# which CIP is to be used. options are "omicia", "congenica" , "nextcode","genomics_england","illumina","exomiser"
CIP = "omicia"
########################### pdfkit ##########################
# path to the wkhtmltopdf executable
wkhtmltopdf_path = "/home/mokaguys/Apps/wkhtmltox/bin/wkhtmltopdf"
########################### Report location #################
# Where do you want the outputs?
html_reports = "/home/mokaguys/Documents/GeL_reports/html/" # intermediate html files
pdf_dir = "/home/mokaguys/Documents/GeL_reports/"