scout-browser 4.79.1__tar.gz → 4.86.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1143) hide show
  1. scout-browser-4.86.1/CHANGELOG.md +2700 -0
  2. scout-browser-4.86.1/PKG-INFO +300 -0
  3. scout-browser-4.86.1/README.md +280 -0
  4. scout-browser-4.86.1/requirements.txt +49 -0
  5. scout-browser-4.86.1/scout/__version__.py +1 -0
  6. scout-browser-4.86.1/scout/adapter/client.py +62 -0
  7. scout-browser-4.86.1/scout/adapter/mongo/base.py +142 -0
  8. scout-browser-4.86.1/scout/adapter/mongo/case.py +1513 -0
  9. scout-browser-4.86.1/scout/adapter/mongo/case_events.py +852 -0
  10. scout-browser-4.86.1/scout/adapter/mongo/cytoband.py +84 -0
  11. scout-browser-4.86.1/scout/adapter/mongo/disease_terms.py +155 -0
  12. scout-browser-4.86.1/scout/adapter/mongo/filter.py +273 -0
  13. scout-browser-4.86.1/scout/adapter/mongo/hgnc.py +494 -0
  14. scout-browser-4.86.1/scout/adapter/mongo/institute.py +185 -0
  15. scout-browser-4.86.1/scout/adapter/mongo/omics_variant.py +145 -0
  16. scout-browser-4.86.1/scout/adapter/mongo/panel.py +611 -0
  17. scout-browser-4.86.1/scout/adapter/mongo/query.py +814 -0
  18. scout-browser-4.86.1/scout/adapter/mongo/variant.py +943 -0
  19. scout-browser-4.86.1/scout/adapter/mongo/variant_loader.py +757 -0
  20. scout-browser-4.86.1/scout/build/case.py +312 -0
  21. scout-browser-4.86.1/scout/build/genes/hgnc_gene.py +23 -0
  22. scout-browser-4.86.1/scout/build/managed_variant.py +50 -0
  23. scout-browser-4.86.1/scout/build/variant/genotype.py +36 -0
  24. scout-browser-4.86.1/scout/build/variant/variant.py +478 -0
  25. scout-browser-4.86.1/scout/commands/base.py +138 -0
  26. scout-browser-4.86.1/scout/commands/download/ensembl.py +61 -0
  27. scout-browser-4.86.1/scout/commands/download/everything.py +40 -0
  28. scout-browser-4.86.1/scout/commands/download/exac.py +35 -0
  29. scout-browser-4.86.1/scout/commands/download/hgnc.py +35 -0
  30. scout-browser-4.86.1/scout/commands/download/hpo.py +86 -0
  31. scout-browser-4.86.1/scout/commands/download/omim.py +41 -0
  32. scout-browser-4.86.1/scout/commands/export/database.py +75 -0
  33. scout-browser-4.86.1/scout/commands/load/panel.py +108 -0
  34. scout-browser-4.86.1/scout/commands/load/report.py +103 -0
  35. scout-browser-4.86.1/scout/commands/update/case.py +180 -0
  36. scout-browser-4.86.1/scout/commands/update/genes.py +178 -0
  37. scout-browser-4.86.1/scout/commands/update/individual.py +103 -0
  38. scout-browser-4.86.1/scout/commands/update/omim.py +80 -0
  39. scout-browser-4.86.1/scout/commands/update/panelapp.py +46 -0
  40. scout-browser-4.86.1/scout/constants/__init__.py +257 -0
  41. scout-browser-4.86.1/scout/constants/case_tags.py +288 -0
  42. scout-browser-4.86.1/scout/constants/clinvar.py +192 -0
  43. scout-browser-4.86.1/scout/constants/file_types.py +121 -0
  44. scout-browser-4.86.1/scout/constants/filters.py +36 -0
  45. scout-browser-4.86.1/scout/constants/indexes.py +167 -0
  46. scout-browser-4.86.1/scout/constants/query_terms.py +64 -0
  47. scout-browser-4.86.1/scout/constants/variant_tags.py +525 -0
  48. scout-browser-4.86.1/scout/constants/variants_export.py +84 -0
  49. scout-browser-4.86.1/scout/demo/643594.clinical.mei.vcf.gz +0 -0
  50. scout-browser-4.86.1/scout/demo/643594.clinical.mei.vcf.gz.tbi +0 -0
  51. scout-browser-4.86.1/scout/demo/643594.config.yaml +153 -0
  52. scout-browser-4.86.1/scout/demo/drop/fraser_top_hits_clinical.tsv +5 -0
  53. scout-browser-4.86.1/scout/demo/drop/outrider_top_hits_clinical.tsv +10 -0
  54. scout-browser-4.86.1/scout/export/exon.py +110 -0
  55. scout-browser-4.86.1/scout/load/__init__.py +6 -0
  56. scout-browser-4.86.1/scout/load/all.py +107 -0
  57. scout-browser-4.86.1/scout/load/hgnc_gene.py +132 -0
  58. scout-browser-4.86.1/scout/load/panel.py +289 -0
  59. scout-browser-4.86.1/scout/load/setup.py +250 -0
  60. scout-browser-4.86.1/scout/models/case/case_loading_models.py +569 -0
  61. scout-browser-4.86.1/scout/models/clinvar.py +78 -0
  62. scout-browser-4.86.1/scout/models/hgnc_map.py +118 -0
  63. scout-browser-4.86.1/scout/models/omics_variant.py +227 -0
  64. scout-browser-4.86.1/scout/models/phenotype_term.py +29 -0
  65. scout-browser-4.86.1/scout/models/variant/variant.py +118 -0
  66. scout-browser-4.86.1/scout/parse/case.py +338 -0
  67. scout-browser-4.86.1/scout/parse/disease_terms.py +177 -0
  68. scout-browser-4.86.1/scout/parse/hgnc.py +108 -0
  69. scout-browser-4.86.1/scout/parse/omics_variant/__init__.py +11 -0
  70. scout-browser-4.86.1/scout/parse/omics_variant/drop.py +19 -0
  71. scout-browser-4.86.1/scout/parse/omim.py +380 -0
  72. scout-browser-4.86.1/scout/parse/orpha.py +125 -0
  73. scout-browser-4.86.1/scout/parse/panel.py +429 -0
  74. scout-browser-4.86.1/scout/parse/variant/callers.py +66 -0
  75. scout-browser-4.86.1/scout/parse/variant/conservation.py +101 -0
  76. scout-browser-4.86.1/scout/parse/variant/frequency.py +233 -0
  77. scout-browser-4.86.1/scout/parse/variant/genotype.py +505 -0
  78. scout-browser-4.86.1/scout/parse/variant/transcript.py +365 -0
  79. scout-browser-4.86.1/scout/parse/variant/variant.py +691 -0
  80. scout-browser-4.86.1/scout/resources/__init__.py +17 -0
  81. scout-browser-4.86.1/scout/server/app.py +313 -0
  82. scout-browser-4.86.1/scout/server/blueprints/alignviewers/controllers.py +326 -0
  83. scout-browser-4.86.1/scout/server/blueprints/alignviewers/templates/alignviewers/igv_sashimi_viewer.html +126 -0
  84. scout-browser-4.86.1/scout/server/blueprints/alignviewers/templates/alignviewers/igv_viewer.html +193 -0
  85. scout-browser-4.86.1/scout/server/blueprints/alignviewers/templates/alignviewers/utils.html +5 -0
  86. scout-browser-4.86.1/scout/server/blueprints/alignviewers/views.py +153 -0
  87. scout-browser-4.86.1/scout/server/blueprints/api/views.py +112 -0
  88. scout-browser-4.86.1/scout/server/blueprints/cases/controllers.py +1467 -0
  89. scout-browser-4.86.1/scout/server/blueprints/cases/templates/cases/case.html +794 -0
  90. scout-browser-4.86.1/scout/server/blueprints/cases/templates/cases/case_bionano.html +148 -0
  91. scout-browser-4.86.1/scout/server/blueprints/cases/templates/cases/case_report.html +1450 -0
  92. scout-browser-4.86.1/scout/server/blueprints/cases/templates/cases/case_sma.html +128 -0
  93. scout-browser-4.86.1/scout/server/blueprints/cases/templates/cases/chanjo2_form.html +47 -0
  94. scout-browser-4.86.1/scout/server/blueprints/cases/templates/cases/collapsible_actionbar.html +594 -0
  95. scout-browser-4.86.1/scout/server/blueprints/cases/templates/cases/gene_panel.html +221 -0
  96. scout-browser-4.86.1/scout/server/blueprints/cases/templates/cases/individuals_table.html +194 -0
  97. scout-browser-4.86.1/scout/server/blueprints/cases/templates/cases/phenotype.html +355 -0
  98. scout-browser-4.86.1/scout/server/blueprints/cases/templates/cases/utils.html +723 -0
  99. scout-browser-4.86.1/scout/server/blueprints/cases/views.py +1106 -0
  100. scout-browser-4.86.1/scout/server/blueprints/clinvar/controllers.py +620 -0
  101. scout-browser-4.86.1/scout/server/blueprints/clinvar/form.py +139 -0
  102. scout-browser-4.86.1/scout/server/blueprints/clinvar/templates/clinvar/clinvar_submissions.html +334 -0
  103. scout-browser-4.86.1/scout/server/blueprints/clinvar/templates/clinvar/multistep_add_variant.html +601 -0
  104. scout-browser-4.86.1/scout/server/blueprints/clinvar/views.py +155 -0
  105. scout-browser-4.86.1/scout/server/blueprints/dashboard/controllers.py +331 -0
  106. scout-browser-4.86.1/scout/server/blueprints/dashboard/static/charts.js +191 -0
  107. scout-browser-4.86.1/scout/server/blueprints/dashboard/templates/dashboard/dashboard_general.html +173 -0
  108. scout-browser-4.86.1/scout/server/blueprints/diagnoses/controllers.py +48 -0
  109. scout-browser-4.86.1/scout/server/blueprints/diagnoses/templates/diagnoses/diagnoses.html +110 -0
  110. scout-browser-4.86.1/scout/server/blueprints/institutes/controllers.py +887 -0
  111. scout-browser-4.86.1/scout/server/blueprints/institutes/forms.py +170 -0
  112. scout-browser-4.86.1/scout/server/blueprints/institutes/static/select2_darktheme.css +62 -0
  113. scout-browser-4.86.1/scout/server/blueprints/institutes/templates/overview/cases.html +325 -0
  114. scout-browser-4.86.1/scout/server/blueprints/institutes/templates/overview/gene_variants.html +228 -0
  115. scout-browser-4.86.1/scout/server/blueprints/institutes/templates/overview/institute_settings.html +128 -0
  116. scout-browser-4.86.1/scout/server/blueprints/institutes/templates/overview/institute_sidebar.html +79 -0
  117. scout-browser-4.86.1/scout/server/blueprints/institutes/views.py +243 -0
  118. scout-browser-4.86.1/scout/server/blueprints/managed_variants/templates/managed_variants/managed_variants.html +435 -0
  119. scout-browser-4.86.1/scout/server/blueprints/managed_variants/views.py +77 -0
  120. scout-browser-4.86.1/scout/server/blueprints/omics_variants/__init__.py +1 -0
  121. scout-browser-4.86.1/scout/server/blueprints/omics_variants/controllers.py +122 -0
  122. scout-browser-4.86.1/scout/server/blueprints/omics_variants/templates/omics_variants/outliers.html +262 -0
  123. scout-browser-4.86.1/scout/server/blueprints/omics_variants/views.py +106 -0
  124. scout-browser-4.86.1/scout/server/blueprints/panels/controllers.py +389 -0
  125. scout-browser-4.86.1/scout/server/blueprints/panels/forms.py +21 -0
  126. scout-browser-4.86.1/scout/server/blueprints/panels/templates/panels/panel.html +332 -0
  127. scout-browser-4.86.1/scout/server/blueprints/panels/templates/panels/panel_pdf_case_hits.html +88 -0
  128. scout-browser-4.86.1/scout/server/blueprints/panels/templates/panels/panel_pdf_simple.html +74 -0
  129. scout-browser-4.86.1/scout/server/blueprints/panels/templates/panels/panels.html +333 -0
  130. scout-browser-4.86.1/scout/server/blueprints/panels/views.py +419 -0
  131. scout-browser-4.86.1/scout/server/blueprints/phenotypes/templates/phenotypes/hpo_terms.html +70 -0
  132. scout-browser-4.86.1/scout/server/blueprints/variant/controllers.py +701 -0
  133. scout-browser-4.86.1/scout/server/blueprints/variant/templates/variant/acmg.html +178 -0
  134. scout-browser-4.86.1/scout/server/blueprints/variant/templates/variant/buttons.html +141 -0
  135. scout-browser-4.86.1/scout/server/blueprints/variant/templates/variant/components.html +412 -0
  136. scout-browser-4.86.1/scout/server/blueprints/variant/templates/variant/str-variant-reviewer.html +61 -0
  137. scout-browser-4.86.1/scout/server/blueprints/variant/templates/variant/utils.html +445 -0
  138. scout-browser-4.86.1/scout/server/blueprints/variant/templates/variant/variant.html +457 -0
  139. scout-browser-4.86.1/scout/server/blueprints/variant/templates/variant/variant_details.html +435 -0
  140. scout-browser-4.86.1/scout/server/blueprints/variant/utils.py +623 -0
  141. scout-browser-4.86.1/scout/server/blueprints/variant/views.py +408 -0
  142. scout-browser-4.86.1/scout/server/blueprints/variants/controllers.py +2058 -0
  143. scout-browser-4.86.1/scout/server/blueprints/variants/forms.py +289 -0
  144. scout-browser-4.86.1/scout/server/blueprints/variants/templates/variants/components.html +394 -0
  145. scout-browser-4.86.1/scout/server/blueprints/variants/templates/variants/fusion-variants.html +128 -0
  146. scout-browser-4.86.1/scout/server/blueprints/variants/templates/variants/str-variants.html +245 -0
  147. scout-browser-4.86.1/scout/server/blueprints/variants/templates/variants/utils.html +1139 -0
  148. scout-browser-4.86.1/scout/server/blueprints/variants/templates/variants/variants.html +224 -0
  149. scout-browser-4.86.1/scout/server/blueprints/variants/utils.py +20 -0
  150. scout-browser-4.86.1/scout/server/blueprints/variants/views.py +788 -0
  151. scout-browser-4.86.1/scout/server/config.py +153 -0
  152. scout-browser-4.86.1/scout/server/extensions/__init__.py +39 -0
  153. scout-browser-4.86.1/scout/server/extensions/beacon_extension.py +251 -0
  154. scout-browser-4.86.1/scout/server/extensions/bionano_extension.py +201 -0
  155. scout-browser-4.86.1/scout/server/extensions/chanjo_extension.py +59 -0
  156. scout-browser-4.86.1/scout/server/extensions/clinvar_extension.py +86 -0
  157. scout-browser-4.86.1/scout/server/extensions/gens_extension.py +39 -0
  158. scout-browser-4.86.1/scout/server/extensions/ldap_extension.py +72 -0
  159. scout-browser-4.86.1/scout/server/extensions/loqus_extension.py +350 -0
  160. scout-browser-4.86.1/scout/server/extensions/matchmaker_extension.py +153 -0
  161. scout-browser-4.86.1/scout/server/extensions/mongo_extension.py +30 -0
  162. scout-browser-4.86.1/scout/server/extensions/phenopacket_extension.py +206 -0
  163. scout-browser-4.86.1/scout/server/extensions/rerunner_extension.py +42 -0
  164. scout-browser-4.86.1/scout/server/links.py +909 -0
  165. scout-browser-4.86.1/scout/server/static/bs_styles.css +392 -0
  166. scout-browser-4.86.1/scout/server/templates/bootstrap_global.html +87 -0
  167. scout-browser-4.86.1/scout/server/templates/report_base.html +29 -0
  168. scout-browser-4.86.1/scout/server/templates/utils.html +249 -0
  169. scout-browser-4.86.1/scout/server/utils.py +398 -0
  170. scout-browser-4.86.1/scout/utils/acmg.py +247 -0
  171. scout-browser-4.86.1/scout/utils/ensembl_rest_clients.py +92 -0
  172. scout-browser-4.86.1/scout/utils/scout_requests.py +382 -0
  173. scout-browser-4.86.1/scout/utils/sort.py +21 -0
  174. scout-browser-4.86.1/scout/utils/track_resources.py +70 -0
  175. scout-browser-4.86.1/scout_browser.egg-info/PKG-INFO +300 -0
  176. scout-browser-4.86.1/scout_browser.egg-info/SOURCES.txt +906 -0
  177. scout-browser-4.86.1/scout_browser.egg-info/entry_points.txt +2 -0
  178. scout-browser-4.86.1/scout_browser.egg-info/requires.txt +42 -0
  179. scout-browser-4.86.1/tests/adapter/conftest.py +67 -0
  180. scout-browser-4.86.1/tests/adapter/mongo/test_case_events.py +51 -0
  181. scout-browser-4.86.1/tests/adapter/mongo/test_case_handling.py +1148 -0
  182. scout-browser-4.86.1/tests/adapter/mongo/test_comment_handling.py +232 -0
  183. scout-browser-4.86.1/tests/adapter/mongo/test_evaluated_variants.py +266 -0
  184. scout-browser-4.86.1/tests/adapter/mongo/test_event_handling.py +711 -0
  185. scout-browser-4.86.1/tests/adapter/mongo/test_gene_handler.py +600 -0
  186. scout-browser-4.86.1/tests/adapter/mongo/test_institute_handler.py +228 -0
  187. scout-browser-4.86.1/tests/adapter/mongo/test_query.py +902 -0
  188. scout-browser-4.86.1/tests/adapter/mongo/test_sanger_validation.py +160 -0
  189. scout-browser-4.86.1/tests/adapter/mongo/test_transcript_handler.py +329 -0
  190. scout-browser-4.86.1/tests/adapter/mongo/test_variant_events.py +507 -0
  191. scout-browser-4.86.1/tests/adapter/mongo/test_variant_handling.py +238 -0
  192. scout-browser-4.86.1/tests/adapter/mongo/test_variant_loader.py +28 -0
  193. scout-browser-4.86.1/tests/build/conftest.py +73 -0
  194. scout-browser-4.86.1/tests/build/test_build_hgnc_gene.py +65 -0
  195. scout-browser-4.86.1/tests/commands/conftest.py +29 -0
  196. scout-browser-4.86.1/tests/commands/delete/test_delete_cmd.py +620 -0
  197. scout-browser-4.86.1/tests/commands/export/test_export_cases_cmd.py +120 -0
  198. scout-browser-4.86.1/tests/commands/export/test_export_gene.py +56 -0
  199. scout-browser-4.86.1/tests/commands/export/test_export_hpo_cmd.py +43 -0
  200. scout-browser-4.86.1/tests/commands/export/test_export_mt_report_cmd.py +33 -0
  201. scout-browser-4.86.1/tests/commands/export/test_export_transcripts_cmd.py +49 -0
  202. scout-browser-4.86.1/tests/commands/export/test_export_variant_cmd.py +121 -0
  203. scout-browser-4.86.1/tests/commands/load/test_load_case_cmd.py +193 -0
  204. scout-browser-4.86.1/tests/commands/load/test_load_institute_cmd.py +86 -0
  205. scout-browser-4.86.1/tests/commands/load/test_load_user_cmd.py +40 -0
  206. scout-browser-4.86.1/tests/commands/load/test_load_variants_cmd.py +148 -0
  207. scout-browser-4.86.1/tests/commands/test_convert_cmd.py +40 -0
  208. scout-browser-4.86.1/tests/commands/update/test_update_individual_cmd.py +136 -0
  209. scout-browser-4.86.1/tests/commands/view/test_view_cases.py +105 -0
  210. scout-browser-4.86.1/tests/commands/view/test_view_cases_cmd.py +65 -0
  211. scout-browser-4.86.1/tests/commands/view/test_view_institutes_cmd.py +46 -0
  212. scout-browser-4.86.1/tests/commands/view/test_view_transcripts_cmd.py +61 -0
  213. scout-browser-4.86.1/tests/conftest.py +1894 -0
  214. scout-browser-4.86.1/tests/load/test_load_exons.py +28 -0
  215. scout-browser-4.86.1/tests/load/test_load_hgnc_genes.py +89 -0
  216. scout-browser-4.86.1/tests/load/test_load_institute.py +17 -0
  217. scout-browser-4.86.1/tests/load/test_load_panel.py +24 -0
  218. scout-browser-4.86.1/tests/load/test_load_transcripts.py +20 -0
  219. scout-browser-4.86.1/tests/load/test_load_variant.py +496 -0
  220. scout-browser-4.86.1/tests/parse/conftest.py +206 -0
  221. scout-browser-4.86.1/tests/parse/test_frequency.py +197 -0
  222. scout-browser-4.86.1/tests/parse/test_parse_case.py +476 -0
  223. scout-browser-4.86.1/tests/parse/test_parse_transcripts.py +260 -0
  224. scout-browser-4.86.1/tests/server/blueprints/alignviewers/test_alignviewers_controllers.py +125 -0
  225. scout-browser-4.86.1/tests/server/blueprints/cases/conftest.py +58 -0
  226. scout-browser-4.86.1/tests/server/blueprints/cases/test_cases_controllers.py +265 -0
  227. scout-browser-4.86.1/tests/server/blueprints/cases/test_cases_views.py +1012 -0
  228. scout-browser-4.86.1/tests/server/blueprints/cases/test_matchmaker_controllers.py +282 -0
  229. scout-browser-4.86.1/tests/server/blueprints/clinvar/test_clinvar_views.py +436 -0
  230. scout-browser-4.86.1/tests/server/blueprints/dashboard/test_dashboard_controllers.py +163 -0
  231. scout-browser-4.86.1/tests/server/blueprints/institutes/test_institute_views.py +519 -0
  232. scout-browser-4.86.1/tests/server/blueprints/omics_variants/omics_variants.py +51 -0
  233. scout-browser-4.86.1/tests/server/blueprints/variant/test_variant_controllers.py +502 -0
  234. scout-browser-4.86.1/tests/server/blueprints/variant/test_variant_views.py +359 -0
  235. scout-browser-4.86.1/tests/server/blueprints/variants/test_variants_views.py +542 -0
  236. scout-browser-4.86.1/tests/server/conftest.py +611 -0
  237. scout-browser-4.86.1/tests/server/extensions/conftest.py +197 -0
  238. scout-browser-4.86.1/tests/server/extensions/test_beacon_extension.py +174 -0
  239. scout-browser-4.86.1/tests/server/extensions/test_bionano_extension.py +35 -0
  240. scout-browser-4.86.1/tests/server/extensions/test_execute_command.py +34 -0
  241. scout-browser-4.86.1/tests/server/extensions/test_loqusdb_api_extension.py +114 -0
  242. scout-browser-4.86.1/tests/server/extensions/test_rerunner_extension.py +10 -0
  243. scout-browser-4.86.1/tests/server/test_server_utils.py +227 -0
  244. scout-browser-4.86.1/tests/update/test_update_institute.py +17 -0
  245. scout-browser-4.86.1/tests/utils/conftest.py +140 -0
  246. scout-browser-4.86.1/tests/utils/test_acmg.py +419 -0
  247. scout-browser-4.86.1/tests/utils/test_custom_tracks.py +55 -0
  248. scout-browser-4.86.1/tests/utils/test_scout_requests.py +460 -0
  249. scout-browser-4.86.1/tests/utils/test_sort.py +36 -0
  250. scout-browser-4.79.1/CHANGELOG.md +0 -2525
  251. scout-browser-4.79.1/PKG-INFO +0 -300
  252. scout-browser-4.79.1/README.md +0 -279
  253. scout-browser-4.79.1/requirements.txt +0 -49
  254. scout-browser-4.79.1/scout/__version__.py +0 -1
  255. scout-browser-4.79.1/scout/adapter/client.py +0 -61
  256. scout-browser-4.79.1/scout/adapter/mongo/base.py +0 -140
  257. scout-browser-4.79.1/scout/adapter/mongo/case.py +0 -1512
  258. scout-browser-4.79.1/scout/adapter/mongo/case_events.py +0 -756
  259. scout-browser-4.79.1/scout/adapter/mongo/cytoband.py +0 -71
  260. scout-browser-4.79.1/scout/adapter/mongo/disease_terms.py +0 -152
  261. scout-browser-4.79.1/scout/adapter/mongo/filter.py +0 -238
  262. scout-browser-4.79.1/scout/adapter/mongo/hgnc.py +0 -477
  263. scout-browser-4.79.1/scout/adapter/mongo/institute.py +0 -191
  264. scout-browser-4.79.1/scout/adapter/mongo/panel.py +0 -610
  265. scout-browser-4.79.1/scout/adapter/mongo/query.py +0 -792
  266. scout-browser-4.79.1/scout/adapter/mongo/variant.py +0 -927
  267. scout-browser-4.79.1/scout/adapter/mongo/variant_loader.py +0 -742
  268. scout-browser-4.79.1/scout/build/case.py +0 -307
  269. scout-browser-4.79.1/scout/build/genes/hgnc_gene.py +0 -152
  270. scout-browser-4.79.1/scout/build/managed_variant.py +0 -39
  271. scout-browser-4.79.1/scout/build/variant/genotype.py +0 -34
  272. scout-browser-4.79.1/scout/build/variant/variant.py +0 -472
  273. scout-browser-4.79.1/scout/commands/base.py +0 -137
  274. scout-browser-4.79.1/scout/commands/download/ensembl.py +0 -60
  275. scout-browser-4.79.1/scout/commands/download/everything.py +0 -39
  276. scout-browser-4.79.1/scout/commands/download/exac.py +0 -34
  277. scout-browser-4.79.1/scout/commands/download/hgnc.py +0 -34
  278. scout-browser-4.79.1/scout/commands/download/hpo.py +0 -85
  279. scout-browser-4.79.1/scout/commands/download/omim.py +0 -40
  280. scout-browser-4.79.1/scout/commands/export/database.py +0 -74
  281. scout-browser-4.79.1/scout/commands/load/panel.py +0 -107
  282. scout-browser-4.79.1/scout/commands/load/report.py +0 -102
  283. scout-browser-4.79.1/scout/commands/update/case.py +0 -180
  284. scout-browser-4.79.1/scout/commands/update/genes.py +0 -182
  285. scout-browser-4.79.1/scout/commands/update/individual.py +0 -98
  286. scout-browser-4.79.1/scout/commands/update/omim.py +0 -79
  287. scout-browser-4.79.1/scout/commands/update/panelapp.py +0 -45
  288. scout-browser-4.79.1/scout/constants/__init__.py +0 -252
  289. scout-browser-4.79.1/scout/constants/case_tags.py +0 -287
  290. scout-browser-4.79.1/scout/constants/clinvar.py +0 -189
  291. scout-browser-4.79.1/scout/constants/file_types.py +0 -17
  292. scout-browser-4.79.1/scout/constants/filters.py +0 -32
  293. scout-browser-4.79.1/scout/constants/indexes.py +0 -148
  294. scout-browser-4.79.1/scout/constants/query_terms.py +0 -62
  295. scout-browser-4.79.1/scout/constants/variant_tags.py +0 -522
  296. scout-browser-4.79.1/scout/constants/variants_export.py +0 -73
  297. scout-browser-4.79.1/scout/demo/643594.clinical.mei.vcf.gz +0 -0
  298. scout-browser-4.79.1/scout/demo/643594.clinical.mei.vcf.gz.tbi +0 -0
  299. scout-browser-4.79.1/scout/demo/643594.config.yaml +0 -149
  300. scout-browser-4.79.1/scout/export/exon.py +0 -109
  301. scout-browser-4.79.1/scout/load/__init__.py +0 -7
  302. scout-browser-4.79.1/scout/load/all.py +0 -104
  303. scout-browser-4.79.1/scout/load/case.py +0 -36
  304. scout-browser-4.79.1/scout/load/hgnc_gene.py +0 -99
  305. scout-browser-4.79.1/scout/load/panel.py +0 -260
  306. scout-browser-4.79.1/scout/load/setup.py +0 -249
  307. scout-browser-4.79.1/scout/models/case/case_loading_models.py +0 -534
  308. scout-browser-4.79.1/scout/models/clinvar.py +0 -77
  309. scout-browser-4.79.1/scout/models/hgnc_map.py +0 -155
  310. scout-browser-4.79.1/scout/models/phenotype_term.py +0 -29
  311. scout-browser-4.79.1/scout/models/variant/variant.py +0 -117
  312. scout-browser-4.79.1/scout/parse/case.py +0 -339
  313. scout-browser-4.79.1/scout/parse/disease_terms.py +0 -176
  314. scout-browser-4.79.1/scout/parse/hgnc.py +0 -107
  315. scout-browser-4.79.1/scout/parse/omim.py +0 -379
  316. scout-browser-4.79.1/scout/parse/orpha.py +0 -124
  317. scout-browser-4.79.1/scout/parse/panel.py +0 -404
  318. scout-browser-4.79.1/scout/parse/variant/callers.py +0 -63
  319. scout-browser-4.79.1/scout/parse/variant/conservation.py +0 -100
  320. scout-browser-4.79.1/scout/parse/variant/frequency.py +0 -223
  321. scout-browser-4.79.1/scout/parse/variant/genotype.py +0 -431
  322. scout-browser-4.79.1/scout/parse/variant/transcript.py +0 -357
  323. scout-browser-4.79.1/scout/parse/variant/variant.py +0 -669
  324. scout-browser-4.79.1/scout/resources/__init__.py +0 -14
  325. scout-browser-4.79.1/scout/server/app.py +0 -353
  326. scout-browser-4.79.1/scout/server/blueprints/alignviewers/controllers.py +0 -317
  327. scout-browser-4.79.1/scout/server/blueprints/alignviewers/templates/alignviewers/igv_sashimi_viewer.html +0 -122
  328. scout-browser-4.79.1/scout/server/blueprints/alignviewers/templates/alignviewers/igv_viewer.html +0 -143
  329. scout-browser-4.79.1/scout/server/blueprints/alignviewers/templates/alignviewers/utils.html +0 -5
  330. scout-browser-4.79.1/scout/server/blueprints/alignviewers/views.py +0 -150
  331. scout-browser-4.79.1/scout/server/blueprints/api/views.py +0 -100
  332. scout-browser-4.79.1/scout/server/blueprints/cases/controllers.py +0 -1442
  333. scout-browser-4.79.1/scout/server/blueprints/cases/templates/cases/case.html +0 -774
  334. scout-browser-4.79.1/scout/server/blueprints/cases/templates/cases/case_bionano.html +0 -167
  335. scout-browser-4.79.1/scout/server/blueprints/cases/templates/cases/case_report.html +0 -1441
  336. scout-browser-4.79.1/scout/server/blueprints/cases/templates/cases/case_sma.html +0 -137
  337. scout-browser-4.79.1/scout/server/blueprints/cases/templates/cases/clinvar.html +0 -48
  338. scout-browser-4.79.1/scout/server/blueprints/cases/templates/cases/collapsible_actionbar.html +0 -584
  339. scout-browser-4.79.1/scout/server/blueprints/cases/templates/cases/gene_panel.html +0 -219
  340. scout-browser-4.79.1/scout/server/blueprints/cases/templates/cases/individuals_table.html +0 -204
  341. scout-browser-4.79.1/scout/server/blueprints/cases/templates/cases/phenotype.html +0 -350
  342. scout-browser-4.79.1/scout/server/blueprints/cases/templates/cases/utils.html +0 -643
  343. scout-browser-4.79.1/scout/server/blueprints/cases/views.py +0 -1104
  344. scout-browser-4.79.1/scout/server/blueprints/clinvar/controllers.py +0 -612
  345. scout-browser-4.79.1/scout/server/blueprints/clinvar/form.py +0 -134
  346. scout-browser-4.79.1/scout/server/blueprints/clinvar/templates/clinvar/clinvar_submissions.html +0 -307
  347. scout-browser-4.79.1/scout/server/blueprints/clinvar/templates/clinvar/multistep_add_variant.html +0 -558
  348. scout-browser-4.79.1/scout/server/blueprints/clinvar/views.py +0 -143
  349. scout-browser-4.79.1/scout/server/blueprints/dashboard/controllers.py +0 -300
  350. scout-browser-4.79.1/scout/server/blueprints/dashboard/static/charts.js +0 -181
  351. scout-browser-4.79.1/scout/server/blueprints/dashboard/templates/dashboard/dashboard_general.html +0 -173
  352. scout-browser-4.79.1/scout/server/blueprints/diagnoses/controllers.py +0 -46
  353. scout-browser-4.79.1/scout/server/blueprints/diagnoses/templates/diagnoses/diagnoses.html +0 -110
  354. scout-browser-4.79.1/scout/server/blueprints/institutes/controllers.py +0 -849
  355. scout-browser-4.79.1/scout/server/blueprints/institutes/forms.py +0 -168
  356. scout-browser-4.79.1/scout/server/blueprints/institutes/templates/overview/cases.html +0 -311
  357. scout-browser-4.79.1/scout/server/blueprints/institutes/templates/overview/gene_variants.html +0 -215
  358. scout-browser-4.79.1/scout/server/blueprints/institutes/templates/overview/institute_settings.html +0 -128
  359. scout-browser-4.79.1/scout/server/blueprints/institutes/templates/overview/institute_sidebar.html +0 -79
  360. scout-browser-4.79.1/scout/server/blueprints/institutes/views.py +0 -250
  361. scout-browser-4.79.1/scout/server/blueprints/managed_variants/templates/managed_variants/managed_variants.html +0 -435
  362. scout-browser-4.79.1/scout/server/blueprints/managed_variants/views.py +0 -79
  363. scout-browser-4.79.1/scout/server/blueprints/panels/controllers.py +0 -395
  364. scout-browser-4.79.1/scout/server/blueprints/panels/forms.py +0 -20
  365. scout-browser-4.79.1/scout/server/blueprints/panels/templates/panels/panel.html +0 -317
  366. scout-browser-4.79.1/scout/server/blueprints/panels/templates/panels/panel_pdf_case_hits.html +0 -88
  367. scout-browser-4.79.1/scout/server/blueprints/panels/templates/panels/panel_pdf_simple.html +0 -74
  368. scout-browser-4.79.1/scout/server/blueprints/panels/templates/panels/panels.html +0 -325
  369. scout-browser-4.79.1/scout/server/blueprints/panels/views.py +0 -426
  370. scout-browser-4.79.1/scout/server/blueprints/phenotypes/templates/phenotypes/hpo_terms.html +0 -69
  371. scout-browser-4.79.1/scout/server/blueprints/variant/controllers.py +0 -702
  372. scout-browser-4.79.1/scout/server/blueprints/variant/templates/variant/acmg.html +0 -169
  373. scout-browser-4.79.1/scout/server/blueprints/variant/templates/variant/buttons.html +0 -136
  374. scout-browser-4.79.1/scout/server/blueprints/variant/templates/variant/components.html +0 -407
  375. scout-browser-4.79.1/scout/server/blueprints/variant/templates/variant/str-variant-reviewer.html +0 -61
  376. scout-browser-4.79.1/scout/server/blueprints/variant/templates/variant/utils.html +0 -443
  377. scout-browser-4.79.1/scout/server/blueprints/variant/templates/variant/variant.html +0 -452
  378. scout-browser-4.79.1/scout/server/blueprints/variant/templates/variant/variant_details.html +0 -371
  379. scout-browser-4.79.1/scout/server/blueprints/variant/utils.py +0 -676
  380. scout-browser-4.79.1/scout/server/blueprints/variant/views.py +0 -404
  381. scout-browser-4.79.1/scout/server/blueprints/variants/controllers.py +0 -1964
  382. scout-browser-4.79.1/scout/server/blueprints/variants/forms.py +0 -233
  383. scout-browser-4.79.1/scout/server/blueprints/variants/templates/variants/components.html +0 -338
  384. scout-browser-4.79.1/scout/server/blueprints/variants/templates/variants/fusion-variants.html +0 -175
  385. scout-browser-4.79.1/scout/server/blueprints/variants/templates/variants/str-variants.html +0 -242
  386. scout-browser-4.79.1/scout/server/blueprints/variants/templates/variants/utils.html +0 -1109
  387. scout-browser-4.79.1/scout/server/blueprints/variants/templates/variants/variants.html +0 -224
  388. scout-browser-4.79.1/scout/server/blueprints/variants/utils.py +0 -23
  389. scout-browser-4.79.1/scout/server/blueprints/variants/views.py +0 -752
  390. scout-browser-4.79.1/scout/server/config.py +0 -134
  391. scout-browser-4.79.1/scout/server/extensions/__init__.py +0 -37
  392. scout-browser-4.79.1/scout/server/extensions/beacon_extension.py +0 -250
  393. scout-browser-4.79.1/scout/server/extensions/bionano_extension.py +0 -200
  394. scout-browser-4.79.1/scout/server/extensions/clinvar_extension.py +0 -78
  395. scout-browser-4.79.1/scout/server/extensions/gens_extension.py +0 -38
  396. scout-browser-4.79.1/scout/server/extensions/ldap_extension.py +0 -70
  397. scout-browser-4.79.1/scout/server/extensions/loqus_extension.py +0 -348
  398. scout-browser-4.79.1/scout/server/extensions/matchmaker_extension.py +0 -152
  399. scout-browser-4.79.1/scout/server/extensions/mongo_extension.py +0 -29
  400. scout-browser-4.79.1/scout/server/extensions/phenopacket_extension.py +0 -205
  401. scout-browser-4.79.1/scout/server/extensions/rerunner_extension.py +0 -41
  402. scout-browser-4.79.1/scout/server/links.py +0 -909
  403. scout-browser-4.79.1/scout/server/static/bs_styles.css +0 -374
  404. scout-browser-4.79.1/scout/server/templates/bootstrap_global.html +0 -90
  405. scout-browser-4.79.1/scout/server/templates/report_base.html +0 -29
  406. scout-browser-4.79.1/scout/server/templates/utils.html +0 -219
  407. scout-browser-4.79.1/scout/server/utils.py +0 -359
  408. scout-browser-4.79.1/scout/utils/acmg.py +0 -234
  409. scout-browser-4.79.1/scout/utils/cloud_resources.py +0 -61
  410. scout-browser-4.79.1/scout/utils/ensembl_rest_clients.py +0 -91
  411. scout-browser-4.79.1/scout/utils/scout_requests.py +0 -381
  412. scout-browser-4.79.1/scout_browser.egg-info/PKG-INFO +0 -300
  413. scout-browser-4.79.1/scout_browser.egg-info/SOURCES.txt +0 -893
  414. scout-browser-4.79.1/scout_browser.egg-info/entry_points.txt +0 -3
  415. scout-browser-4.79.1/scout_browser.egg-info/requires.txt +0 -42
  416. scout-browser-4.79.1/tests/adapter/conftest.py +0 -67
  417. scout-browser-4.79.1/tests/adapter/mongo/test_case_events.py +0 -51
  418. scout-browser-4.79.1/tests/adapter/mongo/test_case_handling.py +0 -1119
  419. scout-browser-4.79.1/tests/adapter/mongo/test_comment_handling.py +0 -232
  420. scout-browser-4.79.1/tests/adapter/mongo/test_evaluated_variants.py +0 -266
  421. scout-browser-4.79.1/tests/adapter/mongo/test_event_handling.py +0 -708
  422. scout-browser-4.79.1/tests/adapter/mongo/test_gene_handler.py +0 -574
  423. scout-browser-4.79.1/tests/adapter/mongo/test_institute_handler.py +0 -228
  424. scout-browser-4.79.1/tests/adapter/mongo/test_query.py +0 -885
  425. scout-browser-4.79.1/tests/adapter/mongo/test_sanger_validation.py +0 -163
  426. scout-browser-4.79.1/tests/adapter/mongo/test_transcript_handler.py +0 -329
  427. scout-browser-4.79.1/tests/adapter/mongo/test_variant_events.py +0 -507
  428. scout-browser-4.79.1/tests/adapter/mongo/test_variant_handling.py +0 -225
  429. scout-browser-4.79.1/tests/adapter/mongo/test_variant_loader.py +0 -28
  430. scout-browser-4.79.1/tests/build/conftest.py +0 -72
  431. scout-browser-4.79.1/tests/build/test_build_hgnc_gene.py +0 -66
  432. scout-browser-4.79.1/tests/commands/conftest.py +0 -28
  433. scout-browser-4.79.1/tests/commands/delete/test_delete_cmd.py +0 -621
  434. scout-browser-4.79.1/tests/commands/export/test_export_cases_cmd.py +0 -120
  435. scout-browser-4.79.1/tests/commands/export/test_export_gene.py +0 -56
  436. scout-browser-4.79.1/tests/commands/export/test_export_hpo_cmd.py +0 -43
  437. scout-browser-4.79.1/tests/commands/export/test_export_mt_report_cmd.py +0 -33
  438. scout-browser-4.79.1/tests/commands/export/test_export_transcripts_cmd.py +0 -49
  439. scout-browser-4.79.1/tests/commands/export/test_export_variant_cmd.py +0 -121
  440. scout-browser-4.79.1/tests/commands/load/test_load_case_cmd.py +0 -193
  441. scout-browser-4.79.1/tests/commands/load/test_load_institute_cmd.py +0 -86
  442. scout-browser-4.79.1/tests/commands/load/test_load_user_cmd.py +0 -40
  443. scout-browser-4.79.1/tests/commands/load/test_load_variants_cmd.py +0 -148
  444. scout-browser-4.79.1/tests/commands/test_convert_cmd.py +0 -39
  445. scout-browser-4.79.1/tests/commands/update/test_update_individual_cmd.py +0 -135
  446. scout-browser-4.79.1/tests/commands/view/test_view_cases.py +0 -105
  447. scout-browser-4.79.1/tests/commands/view/test_view_cases_cmd.py +0 -65
  448. scout-browser-4.79.1/tests/commands/view/test_view_institutes_cmd.py +0 -46
  449. scout-browser-4.79.1/tests/commands/view/test_view_transcripts_cmd.py +0 -61
  450. scout-browser-4.79.1/tests/conftest.py +0 -1892
  451. scout-browser-4.79.1/tests/load/test_load_case.py +0 -38
  452. scout-browser-4.79.1/tests/load/test_load_exons.py +0 -28
  453. scout-browser-4.79.1/tests/load/test_load_hgnc_genes.py +0 -67
  454. scout-browser-4.79.1/tests/load/test_load_institute.py +0 -17
  455. scout-browser-4.79.1/tests/load/test_load_panel.py +0 -24
  456. scout-browser-4.79.1/tests/load/test_load_transcripts.py +0 -20
  457. scout-browser-4.79.1/tests/load/test_load_variant.py +0 -496
  458. scout-browser-4.79.1/tests/parse/conftest.py +0 -191
  459. scout-browser-4.79.1/tests/parse/test_frequency.py +0 -156
  460. scout-browser-4.79.1/tests/parse/test_parse_case.py +0 -474
  461. scout-browser-4.79.1/tests/parse/test_parse_transcripts.py +0 -246
  462. scout-browser-4.79.1/tests/server/blueprints/alignviewers/test_alignviewers_controllers.py +0 -125
  463. scout-browser-4.79.1/tests/server/blueprints/cases/conftest.py +0 -57
  464. scout-browser-4.79.1/tests/server/blueprints/cases/test_cases_controllers.py +0 -264
  465. scout-browser-4.79.1/tests/server/blueprints/cases/test_cases_views.py +0 -1014
  466. scout-browser-4.79.1/tests/server/blueprints/cases/test_matchmaker_controllers.py +0 -284
  467. scout-browser-4.79.1/tests/server/blueprints/clinvar/test_clinvar_views.py +0 -395
  468. scout-browser-4.79.1/tests/server/blueprints/dashboard/test_dashboard_controllers.py +0 -163
  469. scout-browser-4.79.1/tests/server/blueprints/institutes/test_institute_views.py +0 -519
  470. scout-browser-4.79.1/tests/server/blueprints/variant/test_variant_controllers.py +0 -502
  471. scout-browser-4.79.1/tests/server/blueprints/variant/test_variant_views.py +0 -360
  472. scout-browser-4.79.1/tests/server/blueprints/variants/test_variants_views.py +0 -536
  473. scout-browser-4.79.1/tests/server/conftest.py +0 -612
  474. scout-browser-4.79.1/tests/server/extensions/conftest.py +0 -196
  475. scout-browser-4.79.1/tests/server/extensions/test_beacon_extension.py +0 -176
  476. scout-browser-4.79.1/tests/server/extensions/test_bionano_extension.py +0 -34
  477. scout-browser-4.79.1/tests/server/extensions/test_execute_command.py +0 -33
  478. scout-browser-4.79.1/tests/server/extensions/test_loqusdb_api_extension.py +0 -116
  479. scout-browser-4.79.1/tests/server/extensions/test_rerunner_extension.py +0 -9
  480. scout-browser-4.79.1/tests/server/test_server_utils.py +0 -197
  481. scout-browser-4.79.1/tests/update/test_update_institute.py +0 -17
  482. scout-browser-4.79.1/tests/utils/conftest.py +0 -166
  483. scout-browser-4.79.1/tests/utils/test_acmg.py +0 -413
  484. scout-browser-4.79.1/tests/utils/test_cloud_resources.py +0 -14
  485. scout-browser-4.79.1/tests/utils/test_scout_requests.py +0 -459
  486. {scout-browser-4.79.1 → scout-browser-4.86.1}/LICENSE +0 -0
  487. {scout-browser-4.79.1 → scout-browser-4.86.1}/MANIFEST.in +0 -0
  488. {scout-browser-4.79.1 → scout-browser-4.86.1}/requirements-dev.txt +0 -0
  489. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/__init__.py +0 -0
  490. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/adapter/__init__.py +0 -0
  491. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/adapter/mongo/__init__.py +0 -0
  492. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/adapter/mongo/acmg.py +0 -0
  493. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/adapter/mongo/case_group.py +0 -0
  494. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/adapter/mongo/clinvar.py +0 -0
  495. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/adapter/mongo/event.py +0 -0
  496. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/adapter/mongo/hpo.py +0 -0
  497. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/adapter/mongo/index.py +0 -0
  498. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/adapter/mongo/managed_variant.py +0 -0
  499. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/adapter/mongo/matchmaker.py +0 -0
  500. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/adapter/mongo/phenomodel.py +0 -0
  501. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/adapter/mongo/rank_model.py +0 -0
  502. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/adapter/mongo/transcript.py +0 -0
  503. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/adapter/mongo/user.py +0 -0
  504. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/adapter/mongo/variant_events.py +0 -0
  505. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/build/__init__.py +0 -0
  506. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/build/acmg.py +0 -0
  507. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/build/disease.py +0 -0
  508. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/build/genes/__init__.py +0 -0
  509. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/build/genes/exon.py +0 -0
  510. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/build/genes/transcript.py +0 -0
  511. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/build/hpo.py +0 -0
  512. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/build/individual.py +0 -0
  513. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/build/institute.py +0 -0
  514. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/build/panel.py +0 -0
  515. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/build/user.py +0 -0
  516. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/build/variant/__init__.py +0 -0
  517. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/build/variant/clnsig.py +0 -0
  518. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/build/variant/compound.py +0 -0
  519. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/build/variant/gene.py +0 -0
  520. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/build/variant/transcript.py +0 -0
  521. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/__init__.py +0 -0
  522. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/convert.py +0 -0
  523. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/delete/__init__.py +0 -0
  524. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/delete/delete_command.py +0 -0
  525. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/download/__init__.py +0 -0
  526. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/download/download_command.py +0 -0
  527. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/download/orpha.py +0 -0
  528. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/export/__init__.py +0 -0
  529. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/export/case.py +0 -0
  530. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/export/exon.py +0 -0
  531. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/export/export_command.py +0 -0
  532. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/export/export_handler.py +0 -0
  533. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/export/gene.py +0 -0
  534. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/export/hpo.py +0 -0
  535. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/export/mitochondrial_report.py +0 -0
  536. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/export/panel.py +0 -0
  537. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/export/transcript.py +0 -0
  538. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/export/utils.py +0 -0
  539. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/export/variant.py +0 -0
  540. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/index_command.py +0 -0
  541. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/load/__init__.py +0 -0
  542. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/load/base.py +0 -0
  543. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/load/case.py +0 -0
  544. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/load/cytoband.py +0 -0
  545. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/load/exons.py +0 -0
  546. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/load/institute.py +0 -0
  547. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/load/region.py +0 -0
  548. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/load/research.py +0 -0
  549. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/load/user.py +0 -0
  550. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/load/variants.py +0 -0
  551. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/serve.py +0 -0
  552. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/setup/__init__.py +0 -0
  553. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/setup/setup_scout.py +0 -0
  554. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/update/__init__.py +0 -0
  555. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/update/base.py +0 -0
  556. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/update/compounds.py +0 -0
  557. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/update/disease.py +0 -0
  558. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/update/hpo.py +0 -0
  559. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/update/institute.py +0 -0
  560. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/update/panel.py +0 -0
  561. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/update/phenotype_groups.py +0 -0
  562. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/update/user.py +0 -0
  563. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/utils.py +0 -0
  564. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/view/__init__.py +0 -0
  565. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/view/aliases.py +0 -0
  566. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/view/base.py +0 -0
  567. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/view/case.py +0 -0
  568. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/view/collections.py +0 -0
  569. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/view/diseases.py +0 -0
  570. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/view/hgnc.py +0 -0
  571. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/view/hpo.py +0 -0
  572. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/view/index.py +0 -0
  573. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/view/individuals.py +0 -0
  574. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/view/institutes.py +0 -0
  575. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/view/intervals.py +0 -0
  576. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/view/panels.py +0 -0
  577. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/view/transcripts.py +0 -0
  578. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/view/users.py +0 -0
  579. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/commands/wipe_database.py +0 -0
  580. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/constants/acmg.py +0 -0
  581. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/constants/clnsig.py +0 -0
  582. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/constants/disease_parsing.py +0 -0
  583. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/constants/gene_tags.py +0 -0
  584. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/constants/igv_tracks.py +0 -0
  585. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/constants/phenotype.py +0 -0
  586. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/constants/so_terms.py +0 -0
  587. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643594.clinical.SV.vcf.gz +0 -0
  588. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643594.clinical.SV.vcf.gz.tbi +0 -0
  589. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643594.clinical.str.annotated.limits.vcf.gz +0 -0
  590. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643594.clinical.str.annotated.limits.vcf.gz.tbi +0 -0
  591. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643594.clinical.str.annotated.vcf.gz +0 -0
  592. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643594.clinical.str.annotated.vcf.gz.tbi +0 -0
  593. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643594.clinical.str.stranger.vcf.gz +0 -0
  594. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643594.clinical.str.stranger.vcf.gz.tbi +0 -0
  595. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643594.clinical.str.vcf.gz +0 -0
  596. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643594.clinical.str.vcf.gz.tbi +0 -0
  597. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643594.clinical.vcf.gz +0 -0
  598. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643594.clinical.vcf.gz.tbi +0 -0
  599. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643594.ped +0 -0
  600. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643594.ped_check.csv +0 -0
  601. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643594.peddy.ped +0 -0
  602. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643594.research.SV.vcf.gz +0 -0
  603. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643594.research.SV.vcf.gz.tbi +0 -0
  604. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643594.research.mei.vcf.gz +0 -0
  605. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643594.research.mei.vcf.gz.tbi +0 -0
  606. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643594.research.vcf.gz +0 -0
  607. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643594.research.vcf.gz.tbi +0 -0
  608. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643594.sex_check.csv +0 -0
  609. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643594.solo.smn.tsv +0 -0
  610. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643595.clinical.SV.vcf.gz +0 -0
  611. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643595.clinical.SV.vcf.gz.tbi +0 -0
  612. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643595.clinical.str.stranger.vcf.gz +0 -0
  613. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643595.clinical.str.stranger.vcf.gz.tbi +0 -0
  614. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643595.clinical.vcf.gz +0 -0
  615. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643595.clinical.vcf.gz.tbi +0 -0
  616. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/643595.config.yaml +0 -0
  617. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/999-99.test.cgh +0 -0
  618. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/ACC5963A1_lanes_1234_star_sorted_sj_filtered.bigWig +0 -0
  619. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/ACC5963A1_lanes_1234_star_sorted_sj_filtered_sorted.bed.gz +0 -0
  620. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/ACC5963A1_lanes_1234_star_sorted_sj_filtered_sorted.bed.gz.tbi +0 -0
  621. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/ADM1059A1.d4 +0 -0
  622. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/ADM1059A1.test.cgh +0 -0
  623. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/ADM1059A2.d4 +0 -0
  624. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/ADM1059A2.test.cgh +0 -0
  625. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/ADM1059A3.d4 +0 -0
  626. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/ADM1059A3.test.cgh +0 -0
  627. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/REViewer_test_data/catalog_test.json +0 -0
  628. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/REViewer_test_data/justhusky_exphun_hugelymodelbat.vcf +0 -0
  629. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/REViewer_test_data/justhusky_exphun_hugelymodelbat_realigned.bam +0 -0
  630. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/REViewer_test_data/justhusky_exphun_hugelymodelbat_realigned.bam.bai +0 -0
  631. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/__init__.py +0 -0
  632. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/cancer.load_config.yaml +0 -0
  633. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/cancer_cnv_report.pdf +0 -0
  634. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/cancer_coverage_qc_report.html +0 -0
  635. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/cancer_test.ped +0 -0
  636. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/cancer_test.vcf.gz +0 -0
  637. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/cancer_test.vcf.gz.tbi +0 -0
  638. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/chanjo4_demo.sql +0 -0
  639. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/customannotations_one.vcf.gz +0 -0
  640. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/customannotations_one.vcf.gz.tbi +0 -0
  641. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/delivery_report.html +0 -0
  642. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/draw-fusions-example.pdf +0 -0
  643. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/empty.clinical.SV.vcf.gz +0 -0
  644. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/empty.clinical.SV.vcf.gz.tbi +0 -0
  645. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/exe_ver.yaml +0 -0
  646. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/fusion_data.vcf +0 -0
  647. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/autozygous_regions1.png +0 -0
  648. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/autozygous_regions10.png +0 -0
  649. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/autozygous_regions11.png +0 -0
  650. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/autozygous_regions12.png +0 -0
  651. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/autozygous_regions13.png +0 -0
  652. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/autozygous_regions14.png +0 -0
  653. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/autozygous_regions15.png +0 -0
  654. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/autozygous_regions16.png +0 -0
  655. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/autozygous_regions17.png +0 -0
  656. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/autozygous_regions18.png +0 -0
  657. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/autozygous_regions19.png +0 -0
  658. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/autozygous_regions2.png +0 -0
  659. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/autozygous_regions20.png +0 -0
  660. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/autozygous_regions21.png +0 -0
  661. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/autozygous_regions22.png +0 -0
  662. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/autozygous_regions3.png +0 -0
  663. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/autozygous_regions4.png +0 -0
  664. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/autozygous_regions5.png +0 -0
  665. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/autozygous_regions6.png +0 -0
  666. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/autozygous_regions7.png +0 -0
  667. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/autozygous_regions8.png +0 -0
  668. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/autozygous_regions9.png +0 -0
  669. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/autozygous_regionsM.png +0 -0
  670. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/autozygous_regionsX.png +0 -0
  671. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/autozygous_regionsY.png +0 -0
  672. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/coverage1.png +0 -0
  673. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/coverage10.png +0 -0
  674. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/coverage11.png +0 -0
  675. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/coverage12.png +0 -0
  676. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/coverage13.png +0 -0
  677. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/coverage14.png +0 -0
  678. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/coverage15.png +0 -0
  679. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/coverage16.png +0 -0
  680. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/coverage17.png +0 -0
  681. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/coverage18.png +0 -0
  682. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/coverage19.png +0 -0
  683. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/coverage2.png +0 -0
  684. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/coverage20.png +0 -0
  685. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/coverage21.png +0 -0
  686. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/coverage22.png +0 -0
  687. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/coverage3.png +0 -0
  688. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/coverage4.png +0 -0
  689. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/coverage5.png +0 -0
  690. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/coverage6.png +0 -0
  691. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/coverage7.png +0 -0
  692. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/coverage8.png +0 -0
  693. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/coverage9.png +0 -0
  694. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/coverageM.png +0 -0
  695. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/coverageX.png +0 -0
  696. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/coverageY.png +0 -0
  697. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_regions1.png +0 -0
  698. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_regions10.png +0 -0
  699. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_regions11.png +0 -0
  700. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_regions12.png +0 -0
  701. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_regions13.png +0 -0
  702. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_regions14.png +0 -0
  703. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_regions15.png +0 -0
  704. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_regions16.png +0 -0
  705. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_regions17.png +0 -0
  706. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_regions18.png +0 -0
  707. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_regions19.png +0 -0
  708. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_regions2.png +0 -0
  709. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_regions20.png +0 -0
  710. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_regions21.png +0 -0
  711. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_regions22.png +0 -0
  712. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_regions3.png +0 -0
  713. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_regions4.png +0 -0
  714. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_regions5.png +0 -0
  715. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_regions6.png +0 -0
  716. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_regions7.png +0 -0
  717. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_regions8.png +0 -0
  718. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_regions9.png +0 -0
  719. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_regionsM.png +0 -0
  720. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_regionsX.png +0 -0
  721. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_regionsY.png +0 -0
  722. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_sites_1.png +0 -0
  723. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_sites_10.png +0 -0
  724. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_sites_11.png +0 -0
  725. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_sites_12.png +0 -0
  726. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_sites_13.png +0 -0
  727. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_sites_14.png +0 -0
  728. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_sites_15.png +0 -0
  729. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_sites_16.png +0 -0
  730. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_sites_17.png +0 -0
  731. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_sites_18.png +0 -0
  732. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_sites_19.png +0 -0
  733. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_sites_2.png +0 -0
  734. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_sites_20.png +0 -0
  735. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_sites_21.png +0 -0
  736. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_sites_22.png +0 -0
  737. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_sites_3.png +0 -0
  738. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_sites_4.png +0 -0
  739. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_sites_5.png +0 -0
  740. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_sites_6.png +0 -0
  741. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_sites_7.png +0 -0
  742. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_sites_8.png +0 -0
  743. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_sites_9.png +0 -0
  744. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_sites_M.png +0 -0
  745. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_sites_X.png +0 -0
  746. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/chromograph_demo/upd_sites_Y.png +0 -0
  747. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/custom_images/640x480_one.png +0 -0
  748. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/custom_images/640x480_three.svg +0 -0
  749. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/custom_images/640x480_two.jpg +0 -0
  750. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/custom_images/replicons/640x480_AR.svg +0 -0
  751. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/images/custom_images/replicons/640x480_ATN1.svg +0 -0
  752. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/madeline.xml +0 -0
  753. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/manta_vep_94_annotated_sv_cancer_file.vcf.gz +0 -0
  754. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/mitodel_test_files/earlycasualcaiman_lanes_1_sorted_md_mitodel.txt +0 -0
  755. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/mitodel_test_files/hugelymodelbat_lanes_1_sorted_md_mitodel.txt +0 -0
  756. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/mitodel_test_files/slowlycivilbuck_lanes_1_sorted_md_mitodel.txt +0 -0
  757. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/panel_1.csv +0 -0
  758. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/panel_1.txt +0 -0
  759. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/panelapp_test_panel.json +0 -0
  760. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/reduced_mt.bam +0 -0
  761. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/reduced_mt.bam.bai +0 -0
  762. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/reference_info.yaml +0 -0
  763. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/resources/__init__.py +0 -0
  764. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/resources/chanjo4_structure.sql +0 -0
  765. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/resources/en_product9_ages_reduced.xml +0 -0
  766. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/resources/ensembl_exons_37_reduced.txt +0 -0
  767. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/resources/ensembl_exons_38_reduced.txt +0 -0
  768. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/resources/ensembl_genes_37_reduced.txt +0 -0
  769. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/resources/ensembl_genes_38_reduced.txt +0 -0
  770. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/resources/ensembl_transcripts_37_reduced.txt +0 -0
  771. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/resources/ensembl_transcripts_38_reduced.txt +0 -0
  772. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/resources/forweb_cleaned_exac_r03_march16_z_data_pLI_reduced.txt +0 -0
  773. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/resources/genemap2_reduced.txt +0 -0
  774. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/resources/genes_to_phenotype_reduced.txt +0 -0
  775. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/resources/gnomad.v4.0.constraint_metrics_reduced.tsv +0 -0
  776. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/resources/hgnc_reduced_set.txt +0 -0
  777. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/resources/hpo_terms.csv +0 -0
  778. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/resources/mim2gene_reduced.txt +0 -0
  779. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/resources/orphadata_en_product4_reduced.xml +0 -0
  780. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/resources/orphadata_en_product6_reduced.xml +0 -0
  781. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/resources/phenotype_to_genes_reduced.txt +0 -0
  782. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/resources/reduced.hpo.obo +0 -0
  783. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/resources/reduced.phenotype.hpoa +0 -0
  784. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/rnafusion.load_config.yaml +0 -0
  785. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/rnafusion_inspector_example.html +0 -0
  786. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/rnafusion_report_example.html +0 -0
  787. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/scout_example_tumor_only.SV.CNV.sorted.vcf.gz +0 -0
  788. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/scout_example_tumor_only.SV.CNV.sorted.vcf.gz.tbi +0 -0
  789. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/scout_example_tumor_only.snv.indel.sorted.vcf.gz +0 -0
  790. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/scout_example_tumor_only.snv.indel.sorted.vcf.gz.tbi +0 -0
  791. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/vep104_annotated.vcf +0 -0
  792. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/demo/vep97_annotated_clnsig_conservation_revel.vcf +0 -0
  793. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/exceptions/__init__.py +0 -0
  794. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/exceptions/config.py +0 -0
  795. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/exceptions/database.py +0 -0
  796. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/exceptions/pedigree.py +0 -0
  797. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/exceptions/vcf.py +0 -0
  798. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/export/__init__.py +0 -0
  799. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/export/gene.py +0 -0
  800. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/export/panel.py +0 -0
  801. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/export/transcript.py +0 -0
  802. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/export/variant.py +0 -0
  803. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/load/cytoband.py +0 -0
  804. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/load/disease.py +0 -0
  805. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/load/exon.py +0 -0
  806. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/load/hpo.py +0 -0
  807. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/load/institute.py +0 -0
  808. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/load/report.py +0 -0
  809. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/load/transcript.py +0 -0
  810. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/log/__init__.py +0 -0
  811. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/log/handlers.py +0 -0
  812. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/log/log.py +0 -0
  813. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/models/__init__.py +0 -0
  814. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/models/acmg_evaluation.py +0 -0
  815. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/models/case/__init__.py +0 -0
  816. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/models/case/case.py +0 -0
  817. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/models/disease_term.py +0 -0
  818. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/models/event.py +0 -0
  819. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/models/institute.py +0 -0
  820. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/models/managed_variant.py +0 -0
  821. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/models/panel.py +0 -0
  822. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/models/phenomodel.py +0 -0
  823. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/models/user.py +0 -0
  824. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/models/variant/__init__.py +0 -0
  825. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/models/variant/gene.py +0 -0
  826. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/models/variant/transcript.py +0 -0
  827. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/parse/__init__.py +0 -0
  828. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/parse/cytoband.py +0 -0
  829. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/parse/ensembl.py +0 -0
  830. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/parse/exac.py +0 -0
  831. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/parse/hpo_mappings.py +0 -0
  832. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/parse/hpo_terms.py +0 -0
  833. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/parse/matchmaker.py +0 -0
  834. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/parse/mitodel.py +0 -0
  835. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/parse/peddy.py +0 -0
  836. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/parse/smn.py +0 -0
  837. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/parse/variant/__init__.py +0 -0
  838. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/parse/variant/clnsig.py +0 -0
  839. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/parse/variant/compound.py +0 -0
  840. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/parse/variant/coordinates.py +0 -0
  841. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/parse/variant/deleteriousness.py +0 -0
  842. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/parse/variant/gene.py +0 -0
  843. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/parse/variant/headers.py +0 -0
  844. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/parse/variant/ids.py +0 -0
  845. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/parse/variant/managed_variant.py +0 -0
  846. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/parse/variant/models.py +0 -0
  847. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/parse/variant/rank_score.py +0 -0
  848. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/resources/cytoBand_hg19.txt.gz +0 -0
  849. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/resources/cytoBand_hg38.txt.gz +0 -0
  850. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/__init__.py +0 -0
  851. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/auto.py +0 -0
  852. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/__init__.py +0 -0
  853. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/alignviewers/__init__.py +0 -0
  854. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/alignviewers/partial.py +0 -0
  855. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/api/__init__.py +0 -0
  856. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/cases/__init__.py +0 -0
  857. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/cases/static/case_images.js +0 -0
  858. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/cases/static/case_styles.css +0 -0
  859. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/cases/static/edit_pedigree.js +0 -0
  860. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/cases/static/madeline.js +0 -0
  861. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/cases/templates/cases/case_tabular_view.html +0 -0
  862. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/cases/templates/cases/diseases.html +0 -0
  863. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/cases/templates/cases/index.html +0 -0
  864. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/cases/templates/cases/institutes_sidebar.html +0 -0
  865. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/cases/templates/cases/matchmaker.html +0 -0
  866. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/clinvar/__init__.py +0 -0
  867. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/clinvar/static/form_style.css +0 -0
  868. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/clinvar/templates/clinvar/clinvar_howto.html +0 -0
  869. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/dashboard/__init__.py +0 -0
  870. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/dashboard/forms.py +0 -0
  871. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/dashboard/views.py +0 -0
  872. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/diagnoses/__init__.py +0 -0
  873. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/diagnoses/static/diagnoses.js +0 -0
  874. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/diagnoses/templates/diagnoses/disease_term.html +0 -0
  875. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/diagnoses/views.py +0 -0
  876. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/genes/__init__.py +0 -0
  877. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/genes/controllers.py +0 -0
  878. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/genes/templates/genes/gene.html +0 -0
  879. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/genes/templates/genes/genes.html +0 -0
  880. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/genes/templates/genes/layout.html +0 -0
  881. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/genes/views.py +0 -0
  882. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/institutes/__init__.py +0 -0
  883. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/institutes/static/form_scripts.js +0 -0
  884. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/institutes/static/timeline_styles.css +0 -0
  885. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/institutes/static/variants_list_scripts.js +0 -0
  886. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/institutes/templates/overview/causatives.html +0 -0
  887. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/institutes/templates/overview/filters.html +0 -0
  888. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/institutes/templates/overview/timeline.html +0 -0
  889. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/institutes/templates/overview/users.html +0 -0
  890. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/institutes/templates/overview/utils.html +0 -0
  891. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/institutes/templates/overview/verified.html +0 -0
  892. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/login/__init__.py +0 -0
  893. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/login/controllers.py +0 -0
  894. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/login/models.py +0 -0
  895. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/login/static/aspirant.svg +0 -0
  896. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/login/static/commander.svg +0 -0
  897. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/login/static/commissioner.svg +0 -0
  898. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/login/static/constable.svg +0 -0
  899. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/login/static/dick_tracy.svg +0 -0
  900. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/login/static/inspector.svg +0 -0
  901. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/login/static/sergeant.svg +0 -0
  902. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/login/static/superintendent.svg +0 -0
  903. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/login/templates/login/users.html +0 -0
  904. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/login/views.py +0 -0
  905. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/managed_variants/__init__.py +0 -0
  906. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/managed_variants/controllers.py +0 -0
  907. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/managed_variants/forms.py +0 -0
  908. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/panels/__init__.py +0 -0
  909. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/panels/templates/panels/gene-edit.html +0 -0
  910. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/phenomodels/__init__.py +0 -0
  911. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/phenomodels/controllers.py +0 -0
  912. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/phenomodels/forms.py +0 -0
  913. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/phenomodels/templates/phenomodel.html +0 -0
  914. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/phenomodels/templates/phenomodels.html +0 -0
  915. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/phenomodels/views.py +0 -0
  916. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/phenotypes/__init__.py +0 -0
  917. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/phenotypes/controllers.py +0 -0
  918. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/phenotypes/views.py +0 -0
  919. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/__init__.py +0 -0
  920. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/GMS-logo-dark.png +0 -0
  921. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/file-earmark-x.svg +0 -0
  922. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/ideograms/chromosome-1.png +0 -0
  923. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/ideograms/chromosome-10.png +0 -0
  924. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/ideograms/chromosome-11.png +0 -0
  925. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/ideograms/chromosome-12.png +0 -0
  926. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/ideograms/chromosome-13.png +0 -0
  927. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/ideograms/chromosome-14.png +0 -0
  928. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/ideograms/chromosome-15.png +0 -0
  929. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/ideograms/chromosome-16.png +0 -0
  930. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/ideograms/chromosome-17.png +0 -0
  931. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/ideograms/chromosome-18.png +0 -0
  932. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/ideograms/chromosome-19.png +0 -0
  933. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/ideograms/chromosome-2.png +0 -0
  934. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/ideograms/chromosome-20.png +0 -0
  935. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/ideograms/chromosome-21.png +0 -0
  936. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/ideograms/chromosome-22.png +0 -0
  937. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/ideograms/chromosome-3.png +0 -0
  938. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/ideograms/chromosome-4.png +0 -0
  939. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/ideograms/chromosome-5.png +0 -0
  940. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/ideograms/chromosome-6.png +0 -0
  941. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/ideograms/chromosome-7.png +0 -0
  942. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/ideograms/chromosome-8.png +0 -0
  943. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/ideograms/chromosome-9.png +0 -0
  944. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/ideograms/chromosome-M.png +0 -0
  945. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/ideograms/chromosome-X.png +0 -0
  946. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/ideograms/chromosome-Y.png +0 -0
  947. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/logo-gms.png +0 -0
  948. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/logo-karolinska-srgb.jpg +0 -0
  949. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/logo-karolinska.png +0 -0
  950. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/logo-lund-university-hospital.png +0 -0
  951. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/logo-scilifelab.png +0 -0
  952. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/scout-logo.png +0 -0
  953. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/static/swedac-1926-iso17025.png +0 -0
  954. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/templates/public/index.html +0 -0
  955. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/public/views.py +0 -0
  956. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/variant/__init__.py +0 -0
  957. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/variant/templates/variant/cancer-variant.html +0 -0
  958. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/variant/templates/variant/gene_disease_relations.html +0 -0
  959. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/variant/templates/variant/rank_score_results.html +0 -0
  960. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/variant/templates/variant/sanger.html +0 -0
  961. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/variant/templates/variant/sv-variant.html +0 -0
  962. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/variant/templates/variant/tx_overview.html +0 -0
  963. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/variant/verification_controllers.py +0 -0
  964. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/variants/__init__.py +0 -0
  965. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/variants/static/form_scripts.js +0 -0
  966. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/variants/templates/variants/cancer-sv-variants.html +0 -0
  967. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/variants/templates/variants/cancer-variants.html +0 -0
  968. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/variants/templates/variants/indicators.html +0 -0
  969. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/variants/templates/variants/mei-variants.html +0 -0
  970. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/blueprints/variants/templates/variants/sv-variants.html +0 -0
  971. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/static/custom_images.js +0 -0
  972. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/static/favicon.ico +0 -0
  973. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/static/humans.txt +0 -0
  974. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/static/robots.txt +0 -0
  975. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/templates/layout.html +0 -0
  976. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/translations/sv/LC_MESSAGES/messages.mo +0 -0
  977. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/server/translations/sv/LC_MESSAGES/messages.po +0 -0
  978. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/update/__init__.py +0 -0
  979. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/update/panel.py +0 -0
  980. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/utils/__init__.py +0 -0
  981. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/utils/algorithms.py +0 -0
  982. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/utils/convert.py +0 -0
  983. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/utils/coordinates.py +0 -0
  984. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/utils/date.py +0 -0
  985. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/utils/dict_utils.py +0 -0
  986. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/utils/ensembl_biomart_clients.py +0 -0
  987. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/utils/gene.py +0 -0
  988. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/utils/handle.py +0 -0
  989. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/utils/hgvs.py +0 -0
  990. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/utils/link.py +0 -0
  991. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout/utils/md5.py +0 -0
  992. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout_browser.egg-info/dependency_links.txt +0 -0
  993. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout_browser.egg-info/not-zip-safe +0 -0
  994. {scout-browser-4.79.1 → scout-browser-4.86.1}/scout_browser.egg-info/top_level.txt +0 -0
  995. {scout-browser-4.79.1 → scout-browser-4.86.1}/setup.cfg +0 -0
  996. {scout-browser-4.79.1 → scout-browser-4.86.1}/setup.py +0 -0
  997. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/adapter/mongo/test_base.py +0 -0
  998. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/adapter/mongo/test_case_group_handling.py +0 -0
  999. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/adapter/mongo/test_clinvar.py +0 -0
  1000. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/adapter/mongo/test_connect.py +0 -0
  1001. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/adapter/mongo/test_cytoband.py +0 -0
  1002. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/adapter/mongo/test_diagnosis_handler.py +0 -0
  1003. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/adapter/mongo/test_hpo_handler.py +0 -0
  1004. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/adapter/mongo/test_index_handling.py +0 -0
  1005. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/adapter/mongo/test_load_adapter_case.py +0 -0
  1006. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/adapter/mongo/test_matchmaker.py +0 -0
  1007. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/adapter/mongo/test_panel_handler.py +0 -0
  1008. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/adapter/mongo/test_rank_model.py +0 -0
  1009. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/adapter/mongo/test_update_synopsis +0 -0
  1010. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/adapter/mongo/test_user_handling.py +0 -0
  1011. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/build/test_build_case.py +0 -0
  1012. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/build/test_build_clnsig.py +0 -0
  1013. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/build/test_build_disease.py +0 -0
  1014. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/build/test_build_exon.py +0 -0
  1015. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/build/test_build_gene.py +0 -0
  1016. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/build/test_build_hgnc_transcript.py +0 -0
  1017. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/build/test_build_hpo.py +0 -0
  1018. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/build/test_build_individual.py +0 -0
  1019. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/build/test_build_institute.py +0 -0
  1020. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/build/test_build_panel.py +0 -0
  1021. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/build/test_build_user.py +0 -0
  1022. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/build/test_build_variant.py +0 -0
  1023. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/download/test_download_ensembl_cmd.py +0 -0
  1024. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/download/test_download_exac_cmd.py +0 -0
  1025. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/download/test_download_hgnc_cmd.py +0 -0
  1026. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/download/test_download_hpo_cmd.py +0 -0
  1027. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/download/test_download_omim_cmd.py +0 -0
  1028. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/download/test_download_orpha_cmd.py +0 -0
  1029. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/export/test_export_exons.py +0 -0
  1030. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/export/test_export_panel_cmd.py +0 -0
  1031. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/load/test_load_cnv_report_cmd.py +0 -0
  1032. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/load/test_load_coverage_qc_report_cmd.py +0 -0
  1033. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/load/test_load_cytoband_cmd.py +0 -0
  1034. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/load/test_load_delivery_report_cmd.py +0 -0
  1035. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/load/test_load_exons_cmd.py +0 -0
  1036. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/load/test_load_panel_cmd.py +0 -0
  1037. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/load/test_load_region_cmd.py +0 -0
  1038. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/load/test_load_report_cmd.py +0 -0
  1039. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/load/test_load_research_cmd.py +0 -0
  1040. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/test_base_command.py +0 -0
  1041. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/test_delete_case_cmd.py +0 -0
  1042. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/test_index_cmd.py +0 -0
  1043. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/test_serve_cmd.py +0 -0
  1044. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/test_setup_cmd.py +0 -0
  1045. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/test_wipe_database.py +0 -0
  1046. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/update/test_update_case_cmd.py +0 -0
  1047. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/update/test_update_compounds_cli.py +0 -0
  1048. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/update/test_update_disease_cmd.py +0 -0
  1049. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/update/test_update_genes_cmd.py +0 -0
  1050. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/update/test_update_groups_cmd.py +0 -0
  1051. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/update/test_update_hpo_cmd.py +0 -0
  1052. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/update/test_update_institute_cmd.py +0 -0
  1053. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/update/test_update_omim_cmd.py +0 -0
  1054. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/update/test_update_panel_cmd.py +0 -0
  1055. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/update/test_update_panelapp_green.py +0 -0
  1056. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/update/test_update_user_cmd.py +0 -0
  1057. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/view/test_panels_cmd.py +0 -0
  1058. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/view/test_view_aliases_cmd.py +0 -0
  1059. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/view/test_view_collections_cmd.py +0 -0
  1060. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/view/test_view_diseases_cmd.py +0 -0
  1061. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/view/test_view_hgnc.py +0 -0
  1062. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/view/test_view_hpo_cmd.py +0 -0
  1063. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/view/test_view_index_cmd.py +0 -0
  1064. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/view/test_view_individuals_cmd.py +0 -0
  1065. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/view/test_view_intervals_cmd.py +0 -0
  1066. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/commands/view/test_view_users_cmd.py +0 -0
  1067. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/export/test_export_variants.py +0 -0
  1068. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/fixtures/bams/reduced_mt.bam +0 -0
  1069. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/fixtures/peds/clinvar.ped +0 -0
  1070. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/fixtures/vcfs/clinvar.vcf +0 -0
  1071. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/fixtures/vcfs/no_clinvar.vcf +0 -0
  1072. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/load/test_load_diseases.py +0 -0
  1073. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/load/test_load_hpo.py +0 -0
  1074. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/load/test_setup_scout.py +0 -0
  1075. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/models/test_disease_term.py +0 -0
  1076. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/parse/test_ids.py +0 -0
  1077. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/parse/test_parse_callers.py +0 -0
  1078. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/parse/test_parse_clnsig.py +0 -0
  1079. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/parse/test_parse_compounds.py +0 -0
  1080. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/parse/test_parse_conservation.py +0 -0
  1081. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/parse/test_parse_coordinates.py +0 -0
  1082. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/parse/test_parse_deleteriousness.py +0 -0
  1083. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/parse/test_parse_disease_terms.py +0 -0
  1084. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/parse/test_parse_ensembl_exons.py +0 -0
  1085. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/parse/test_parse_ensembl_transcripts.py +0 -0
  1086. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/parse/test_parse_exac_genes.py +0 -0
  1087. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/parse/test_parse_genes.py +0 -0
  1088. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/parse/test_parse_genotype.py +0 -0
  1089. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/parse/test_parse_headers.py +0 -0
  1090. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/parse/test_parse_hgnc.py +0 -0
  1091. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/parse/test_parse_hpo_mappings.py +0 -0
  1092. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/parse/test_parse_hpo_terms.py +0 -0
  1093. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/parse/test_parse_managed_variant.py +0 -0
  1094. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/parse/test_parse_matchmaker.py +0 -0
  1095. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/parse/test_parse_omim.py +0 -0
  1096. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/parse/test_parse_orpha.py +0 -0
  1097. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/parse/test_parse_panel.py +0 -0
  1098. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/parse/test_parse_rank_score.py +0 -0
  1099. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/parse/test_parse_variant.py +0 -0
  1100. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/parse/vcfs/one_cnvnator.vcf +0 -0
  1101. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/blueprints/alignviewers/test_alignviewers_views.py +0 -0
  1102. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/blueprints/api/test_api_views.py +0 -0
  1103. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/blueprints/cases/test_cases_templates.py +0 -0
  1104. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/blueprints/cases/test_cases_utils.py +0 -0
  1105. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/blueprints/dashboard/test_dashboard_views.py +0 -0
  1106. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/blueprints/diagnoses/test_diagnoses_views.py +0 -0
  1107. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/blueprints/genes/test_genes_views.py +0 -0
  1108. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/blueprints/institutes/test_institute_api.py +0 -0
  1109. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/blueprints/login/conftest.py +0 -0
  1110. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/blueprints/login/test_controllers.py +0 -0
  1111. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/blueprints/login/test_models.py +0 -0
  1112. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/blueprints/login/test_views.py +0 -0
  1113. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/blueprints/managed_variants/test_managed_variants_controllers.py +0 -0
  1114. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/blueprints/managed_variants/test_managed_variants_views.py +0 -0
  1115. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/blueprints/panels/test_panels_controllers.py +0 -0
  1116. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/blueprints/panels/test_panels_views.py +0 -0
  1117. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/blueprints/phenomodels/test_phenomodels_controllers.py +0 -0
  1118. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/blueprints/phenomodels/test_phenomodels_views.py +0 -0
  1119. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/blueprints/phenotypes/conftest.py +0 -0
  1120. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/blueprints/phenotypes/test_phenotypes_controllers.py +0 -0
  1121. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/blueprints/phenotypes/test_phenotypes_views.py +0 -0
  1122. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/blueprints/public/test_public_views.py +0 -0
  1123. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/blueprints/variant/test_variant_utils.py +0 -0
  1124. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/blueprints/variant/test_variant_verification_controllers.py +0 -0
  1125. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/blueprints/variants/test_variants_controllers.py +0 -0
  1126. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/blueprints/variants/test_variants_utils.py +0 -0
  1127. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/extensions/test_gens_extension.py +0 -0
  1128. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/extensions/test_loqusdb_exe_extension.py +0 -0
  1129. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/extensions/test_matchmaker_extension.py +0 -0
  1130. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/extensions/test_phenopacket_extension.py +0 -0
  1131. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/test_app.py +0 -0
  1132. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/server/test_links.py +0 -0
  1133. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/update/test_update_compounds.py +0 -0
  1134. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/update/test_update_panel.py +0 -0
  1135. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/utils/test_algorithms.py +0 -0
  1136. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/utils/test_convert.py +0 -0
  1137. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/utils/test_date.py +0 -0
  1138. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/utils/test_dict_utils.py +0 -0
  1139. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/utils/test_ensembl_biomart_cients.py +0 -0
  1140. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/utils/test_ensembl_rest_clients.py +0 -0
  1141. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/utils/test_hgvs.py +0 -0
  1142. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/utils/test_link_genes.py +0 -0
  1143. {scout-browser-4.79.1 → scout-browser-4.86.1}/tests/utils/test_par.py +0 -0
@@ -0,0 +1,2700 @@
1
+ # Change Log
2
+ All notable changes to this project will be documented in this file.
3
+ This project adheres to [Semantic Versioning](http://semver.org/).
4
+
5
+ About changelog [here](https://keepachangelog.com/en/1.0.0/)
6
+
7
+ ## [4.86.1]
8
+ ### Fixed
9
+ - Loading and updating PanelApp panels, including PanelApp green
10
+
11
+ ## [4.86]
12
+ ### Added
13
+ - Display samples' name (tooltip) and affected status directly on caseS page
14
+ - Search SVs across all cases, in given genes
15
+ - `CLINVAR_API_URL` param can be specified in app settings to override the URL used to send ClinVar submissions to. Intended for testing.
16
+ - Support for loading and storing OMICS data
17
+ - Parse DROP Fraser and Outrider TSVs
18
+ - Display omics variants - wts outliers (Fraser, Outrider)
19
+ - Parse GNOMAD `gnomad_af` and `gnomad_popmax_af` keys from variants annotated with `echtvar`
20
+ - Make removed panel optionally visible to non-admin or non maintainers
21
+ - Parse CoLoRSdb frequencies annotated in the variant INFO field with the `colorsdb_af` key
22
+ - Download -omics variants using the `Filter and export button`
23
+ - Clickable COSMIC links on IGV tracks
24
+ - Possibility to un-audit previously audited filters
25
+ - Reverted table style and removed font awesome style from IGV template
26
+ - Case status tags displayed on dashboard case overview
27
+ ### Changed
28
+ - Updated igv.js to v3.0.1
29
+ - Alphabetically sort IGV track available for custom selection
30
+ - Updated wokeignore to avoid unfixable warning
31
+ - Update Chart.js to v4.4.3
32
+ - Use tornado library version >= 6.4.1
33
+ - Fewer variants in the MEI demo file
34
+ - Switch to FontAwesome v.6 instead of using icons v.5 + kit with icons v.6
35
+ - Show time (hours and minutes) additionally to date on comments and activity panel
36
+ ### Fixed
37
+ - Only add expected caller keys to variant (FOUND_IN or SVDB_ORIGIN)
38
+ - Splice junction merged track height offset in IGV.js
39
+ - Splice junction initiation crash with empty variant obj
40
+ - Splice junction variant routing for cases with WTS but without outlier data
41
+ - Variant links to ExAC, now pointing to gnomAD, since the ExAC browser is no longer available
42
+ - Style of HPO terms assigned to a case, now one phenotype per line
43
+ - RNA sashimi view rendering should work also if the gene track is user disabled
44
+ - Respect IGV tracks chosen by user in variant IGV settings
45
+
46
+ ## [4.85]
47
+ ### Added
48
+ - Load also genes which are missing Ensembl gene ID (72 in both builds), including immunoglobulins and fragile sites
49
+ ### Changed
50
+ - Unfreeze werkzeug again
51
+ - Show "(Removed)" after removed panels in dropdown
52
+ - The REVEL score is collected as the maximum REVEL score from all of the variant's transcripts
53
+ - Parse GNOMAD POPMAX values only if they are numerical when loading variants
54
+ ### Fixed
55
+ - Alphabetically sort "select default panels" dropdown menu options on case page
56
+ - Show gene panel removed status on case page
57
+ - Fixed visibility of the following buttons: remove assignee, remove pinned/causative, remove comment, remove case from group
58
+
59
+ ## [4.84]
60
+ ### Changed
61
+ - Clearer error message when a loqusdb query fails for an instance that initially connected
62
+ - Do not load chanjo-report module if not needed and more visible message when it fails loading
63
+ - Converted the HgncGene class into a Pydantic class
64
+ - Swap menu open and collapse indicator chevrons - down is now displayed-open, right hidden-closed
65
+ - Linters and actions now all use python 3.11
66
+ ### Fixed
67
+ - Safer way to update variant genes and compounds that avoids saving temporary decorators into variants' database documents
68
+ - Link to HGNC gene report on gene page
69
+ - Case file load priority so that e.g. SNV get loaded before SV, or clinical before research, for consistent variant_id collisions
70
+
71
+ ## [4.83]
72
+ ### Added
73
+ - Edit ACMG classifications from variant page (only for classifications with criteria)
74
+ - Events for case CLI events (load case, update case, update individual)
75
+ - Support for loading and displaying local custom IGV tracks
76
+ - MANE IGV track to be used as a local track for igv.js (see scout demo config file)
77
+ - Optional separate MT VCFs, for `nf-core/raredisease`
78
+ ### Changed
79
+ - Avoid passing verbs from CaseHandler - functions for case sample and individual in CaseEventHandler
80
+ - Hide mtDNA report and coverage report links on case sidebar for cases with WTS data only
81
+ - Modified OMIM-AUTO gene panel to include genes in both genome builds
82
+ - Moved chanjo code into a dedicated extension
83
+ - Optimise the function that collects "match-safe" genes for an institute by avoiding duplicated genes from different panels
84
+ - Users must actively select "show matching causatives/managed" on a case page to see matching numbers
85
+ - Upgraded python version from 3.8 to 3.11 in Docker images
86
+ ### Fixed
87
+ - Fix several tests that relied on number of events after setup to be 0
88
+ - Removed unused load case function
89
+ - Artwork logo sync sketch with png and export svg
90
+ - Clearer exception handling on chanjo-report setup - fail early and visibly
91
+ - mtDNA report crashing when one or more samples from a case is not in the chanjo database
92
+ - Case page crashing on missing phenotype terms
93
+ - ACMG benign modifiers
94
+ - Speed up tests by caching python env correctly in Github action and adding two more test groups
95
+ - Agile issue templates were added globally to the CG-org. Adding custom issue templates to avoid exposing customers
96
+ - PanelApp panel not saving genes with empty `EnsembleGeneIds` list
97
+ - Speed up checking outdated gene panels
98
+ - Do not load research variants automatically when loading a case
99
+
100
+ ## [4.82.2]
101
+ ### Fixed
102
+ - Warning icon in case pages for individuals where `confirmed_sex` is false
103
+ - Show allele sizes form ExpansionHunter on STR variantS page again
104
+
105
+ ## [4.82.1]
106
+ ### Fixed
107
+ - Revert the installation of flask-ldapconn to use the version available on PyPI to be able to push new scout releases to PyPI
108
+
109
+ ## [4.82]
110
+ ### Added
111
+ - Tooltip for combined score in tables for compounds and overlapping variants
112
+ - Checkbox to filter variants by excluding genes listed in selected gene panels, files or provided as list
113
+ - STR variant information card with database links, replacing empty frequency panel
114
+ - Display paging and number of HPO terms available in the database on Phenotypes page
115
+ - On case page, typeahead hints when searching for a disease using substrings containing source ("OMIM:", "ORPHA:")
116
+ - Button to monitor the status of submissions on ClinVar Submissions page
117
+ - Option to filter cancer variants by number of observations in somatic and germline archived database
118
+ - Documentation for integrating chanjo2
119
+ - More up-to-date VEP CSQ dbNSFP frequency keys
120
+ - Parse PacBio TRGT (Tandem repeat genotyping tool) Short Tandem Repeat VCFs
121
+ ### Changed
122
+ - In the case_report #panel-tables has a fixed width
123
+ - Updated IGV.js to 2.15.11
124
+ - Fusion variants in case report now contain same info as on fusion variantS page
125
+ - Block submission of somatic variants to ClinVar until we harmonise with their changed API
126
+ - Additional control on the format of conditions provided in ClinVar form
127
+ - Errors while loading managed variants from file are now displayed on the Managed Variants page
128
+ - Chanjo2 coverage button visible only when query will contain a list of HGNC gene IDs
129
+ - Use Python-Markdown directly instead of the unmaintained Flask-Markdown
130
+ - Use Markupsafe instead of long deprecated, now removed Flask Markup
131
+ - Prepare to unfreeze Werkzeug, but don't actually activate until chanjo can deal with the change
132
+ ### Fixed
133
+ - Submit requests to Chanjo2 using HTML forms instead of JSON data
134
+ - `Research somatic variants` link name on caseS page
135
+ - Broken `Install the HTML 2 PDF renderer` step in a GitHub action
136
+ - Fix ClinVar form parsing to not include ":" in conditionType.id when condition conditionType.db is Orphanet
137
+ - Fix condition dropdown and pre-selection on ClinVar form for cases with associated ORPHA diagnoses
138
+ - Improved visibility of ClinVar form in dark mode
139
+ - End coordinates for indels in ClinVar form
140
+ - Diagnoses API search crashing with empty search string
141
+ - Variant's overlapping panels should show overlapping of variant genes against the latest version of the panel
142
+ - Case page crashing when case has both variants in a ClinVar submission and pinned not loaded variants
143
+ - Installation of git in second build stage of Dockerfile, allowing correct installation of libraries
144
+
145
+ ## [4.81]
146
+ ### Added
147
+ - Tag for somatic SV IGH-DUX4 detection samtools script
148
+ ### Changed
149
+ - Upgraded Bootstrap version in reports from 4.3.1 to 5.1.3
150
+ ### Fixed
151
+ - Buttons layout in HPO genes panel on case page
152
+ - Added back old variant rankscore index with different key order to help loading on demo instance
153
+ - Cancer case_report panel-table no longer contains inheritance information
154
+ - Case report pinned variants card now displays info text if all pinned variants are present in causatives
155
+ - Darkmode setting now applies to the comment-box accordion
156
+ - Typo in case report causing `cancer_rank_options is undefined` error
157
+
158
+ ## [4.80]
159
+ ### Added
160
+ - Support for .d4 files coverage using chanjo2 (Case page sidebar link) with test
161
+ - Link to chanjo2 coverage report and coverage gene overview on gene panel page
162
+ - Link to chanjo2 coverage report on Case page, HPO dynamic gene list
163
+ - Link to genes coverage overview report on Case page, HPO dynamic gene list
164
+ ### Changed
165
+ - All links in disease table on diagnosis page now open in a new tab
166
+ - Dark mode settings applied to multi-selects on institute settings page
167
+ - Comments on case and variant pages can be viewed by expanding an accordion
168
+ - On case page information on pinned variants and variants submitted to ClinVar are displayed in the same table
169
+ - Demo case file paths are now stored as absolute paths
170
+ - Optimised indices to address slow queries
171
+ - On case page default panels are now found at the top of the table, and it can be sorted by this trait
172
+ ### Fixed
173
+ - On variants page, search for variants in genes present only in build 38 returning no results
174
+ - Pin/unpin with API was not able to make event links
175
+ - A new field `Explanation for multiple conditions` is available in ClinVar for submitting variants with more than one associated condition
176
+ - Fusion genes with partners lacking gene HGNC id will still be fully loaded
177
+ - Fusion variantS export now contains fusion variant specific columns
178
+ - When Loqusdb observations count is one the table includes information on if observation was for the current or another case
179
+
180
+ ## [4.79.1]
181
+ ### Fixed
182
+ - Exporting variants without rank score causing page to crash
183
+ - Display custom annotations also on cancer variant page
184
+
185
+ ## [4.79]
186
+ ### Added
187
+ - Added tags for Sniffles and CNVpytor, two LRS SV callers
188
+ - Button on case page for displaying STR variants occurring in the dynamic HPO panel
189
+ - Display functional annotation relative to variant gene's MANE transcripts on variant summary, when available
190
+ - Links to ACMG structural variant pathogenicity classification guidelines
191
+ - Phenomodels checkboxes can now include orpha terms
192
+ - Add incidental finding to case tags
193
+ - Get an alert on caseS page when somebody validates variants you ordered Sanger sequencing for
194
+ ### Changed
195
+ - In the diagnoses page genes associated with a disease are displayed using hgnc symbol instead of hgnc id
196
+ - Refactor view route to allow navigation directly to unique variant document id, improve permissions check
197
+ - Do not show MANE and MANE Plus Clinical transcripts annotated from VEP (saved in variants) but collect this info from the transcripts database collection
198
+ - Refactor view route to allow navigation directly to unique case id (in particular for gens)
199
+ - `Institutes to share cases with` on institute's settings page now displays institutes names and IDs
200
+ - View route with document id selects view template based on variant category
201
+ ### Fixed
202
+ - Refactored code in cases blueprints and variant_events adapter (set diseases for partial causative variants) to use "disease" instead of "omim" to encompass also ORPHA terms
203
+ - Refactored code in `scout/parse/omim.py` and `scout/parse/disease_terms.py` to use "disease" instead of "phenotype" to differentiate from HPO terms
204
+ - Be more careful about checking access to variant on API access
205
+ - Show also ACMG VUS on general report (could be missing if not e.g. pinned)
206
+
207
+ ## [4.78]
208
+ ### Added
209
+ - Case status labels can be added, giving more finegrained details on a solved status (provisional, diagnostic, carrier, UPD, SMN, ...)
210
+ - New SO terms: `sequence_variant` and `coding_transcript_variant`
211
+ - More MEI specific annotation is shown on the variant page
212
+ - Parse and save MANE transcripts info when updating genes in build 38
213
+ - ClinVar submission can now be downloaded as a json file
214
+ - `Mane Select` and `Mane Plus Clinical` badges on Gene page, when available
215
+ - ClinVar submission can now be downloaded as a json file
216
+ - API endpoint to pin variant
217
+ - Display common/uncommon/rare on summary of mei variant page
218
+ ### Changed
219
+ - In the ClinVar form, database and id of assertion criteria citation are now separate inputs
220
+ - Customise institute settings to be able to display all cases with a certain status on cases page (admin users)
221
+ - Renamed `Clinical Significance` to `Germline Classification` on multistep ClinVar form
222
+ - Changed the "x" in cases.utils.remove_form button text to red for better visibility in dark mode
223
+ - Update GitHub actions
224
+ - Default loglevel up to INFO, making logs with default start easier to read
225
+ - Add XTR region to PAR region definition
226
+ - Diagnoses can be searched on diagnoses page without waiting for load first
227
+ ### Fixed
228
+ - Removed log info showing hgnc IDs used in variantS search
229
+ - Maintain Matchmaker Exchange and Beacon submission status when a case is re-uploaded
230
+ - Inheritance mode from ORPHA should not be confounded with the OMIM inheritance model
231
+ - Decipher link URL changes
232
+ - Refactored code in cases blueprints to use "disease" instead of "omim" to encompass also ORPHA terms
233
+
234
+ ## [4.77]
235
+ ### Added
236
+ - Orpha disease terms now include information on inheritance
237
+ - Case loading via .yaml config file accepts subject_id and phenotype_groups (if previously defined as constant default or added per institute)
238
+ - Possibility to submit variants associated with Orphanet conditions to ClinVar
239
+ - Option update path to .d4 files path for individuals of an existing case using the command line
240
+ - More constraint information is displayed per gene in addition to pLi: missense and LoF OE, CI (inluding LOEUF) and Z-score.
241
+ ### Changed
242
+ - Introduce validation in the ClinVar multistep form to make sure users provide at least one variant-associated condition
243
+ - CLI scout update individual accepts subject_id
244
+ - Update ClinVar inheritance models to reflect changes in ClinVar submission API
245
+ - Handle variant-associated condition ID format in background when creating ClinVar submissions
246
+ - Replace the code that downloads Ensembl genes, transcripts and exons with the Schug web app
247
+ - Add more info to error log when transcript variant frequency parsing fails.
248
+ - GnomAD v4 constraint information replaces ExAC constraints (pLi).
249
+ ### Fixed
250
+ - Text input of associated condition in ClinVar form now aligns to the left
251
+ - Alignment of contents in the case report has been updated
252
+ - Missing number of phenotypes and genes from case diagnoses
253
+ - Associate OMIM and/or ORPHA diagnoses with partial causatives
254
+ - Visualization of partial causatives' diagnoses on case page: style and links
255
+ - Revert style of pinned variants window on the case page
256
+ - Rename `Clinical significanc` to `Germline classification` in ClinVar submissions exported files
257
+ - Rename `Clinical significance citations` to `Classification citations` in ClinVar submissions exported files
258
+ - Rename `Comment on clinical significance` to `Comment on classification` in ClinVar submissions exported files
259
+ - Show matching partial causatives on variant page
260
+ - Matching causatives shown on case page consisting only of variant matching the default panels of the case - bug introduced since scout v4.72 (Oct 18, 2023)
261
+ - Missing somatic variant read depth leading to report division by zero
262
+
263
+ ## [4.76]
264
+ ### Added
265
+ - Orphacodes are visible in phenotype tables
266
+ - Pydantic validation of image paths provided in case load config file
267
+ - Info on the user which created a ClinVar submission, when available
268
+ - Associate .d4 files to case individuals when loading a case via config file
269
+ ### Changed
270
+ - In diagnoses page the load of diseases are initiated by clicking a button
271
+ - Revel score, Revel rank score and SpliceAI values are also displayed in Causatives and Validated variants tables
272
+ - Remove unused functions and tests
273
+ - Analysis type and direct link from cases list for OGM cases
274
+ - Removed unused `case_obj` parameter from server/blueprints/variant/controllers/observations function
275
+ - Possibility to reset ClinVar submission ID
276
+ - Allow ClinVar submissions with custom API key for users registered as ClinVar submitters or when institute doesn't have a preset list of ClinVar submitters
277
+ - Ordered event verbs alphabetically and created ClinVar-related user events
278
+ - Removed the unused "no-variants" option from the load case command line
279
+ ### Fixed
280
+ - All disease_terms have gene HGNC ids as integers when added to the scout database
281
+ - Disease_term identifiers are now prefixed with the name of the coding system
282
+ - Command line crashing with error when updating a user that doesn't exist
283
+ - Thaw coloredlogs - 15.0.1 restores errorhandler issue
284
+ - Thaw crypography - current base image and library version allow Docker builds
285
+ - Missing delete icons on phenomodels page
286
+ - Missing cryptography lib error while running Scout container on an ARM processor
287
+ - Round CADD values with many decimals on causatives and validated variants pages
288
+ - Dark-mode visibility of some fields on causatives and validated variants pages
289
+ - Clinvar submitters would be cleared when unprivileged users saved institute settings page
290
+ - Added a default empty string in cases search form to avoid None default value
291
+ - Page crashing when user tries to remove the same variant from a ClinVar submission in different browser tabs
292
+ - Update more GnomAD links to GnomAD v4 (v38 SNVs, MT vars, STRs)
293
+ - Empty cells for RNA fusion variants in Causatives and Verified variants page
294
+ - Submenu icons missing from collapsible actionbar
295
+ - The collapsible actionbar had some non-collapsing overly long entries
296
+ - Cancer observations for SVs not appearing in the variant details view
297
+ - Archived local observations not visible on cancer variantS page
298
+ - Empty Population Frequency column in the Cancer SV Variants view
299
+ - Capital letters in ClinVar events description shown on case page
300
+
301
+ ## [4.75]
302
+ ### Added
303
+ - Hovertip to gene panel names with associated genes in variant view, when variant covers more than one gene
304
+ - Tests for panel to genes
305
+ - Download of Orphadata en_product6 and en_product4 from CLI
306
+ - Parse and save `database_found` key/values for RNA fusion variants
307
+ - Added fusion_score, ffpm, split_reads, junction_reads and fusion_caller to the list of filters on RNA fusion variants page
308
+ - Renamed the function `get_mei_info` to `set_mei_info` to be consistent with the other functions
309
+ - Fixed removing None key/values from parsed variants
310
+ - Orphacodes are included in the database disease_terms
311
+ ### Changed
312
+ - Allow use of projections when retrieving gene panels
313
+ - Do not save custom images as binary data into case and variant database documents
314
+ - Retrieve and display case and variant custom images using image's saved path
315
+ - Cases are activated by viewing FSHD and SMA reports
316
+ - Split multi-gene SNV variants into single genes when submitting to Matchmaker Exchange
317
+ - Alamut links also on the gene level, using transcript and HGVS: better for indels. Keep variant link for missing HGVS
318
+ - Thaw WTForms - explicitly coerce form decimal field entries when filters fetched from db
319
+ ### Fixed
320
+ - Removed some extra characters from top of general report left over from FontAwsome fix
321
+ - Do not save fusion variants-specific key/values in other types of variants
322
+ - Alamut link for MT variants in build 38
323
+ - Convert RNA fusions variants `tool_hits` and `fusion_score` keys from string to numbers
324
+ - Fix genotype reference and alternative sequencing depths defaulting to -1 when values are 0
325
+ - DecimalFields were limited to two decimal places for several forms - lifting restrictions on AF, CADD etc.
326
+
327
+ ## [4.74.1]
328
+ ### Changed
329
+ - Parse and save into database also OMIM terms not associated to genes
330
+ ### Fixed
331
+ - BioNano API FSHD report requests are GET in Access 1.8, were POST in 1.7
332
+ - Update more FontAwesome icons to avoid Pro icons
333
+ - Test if files still exist before attempting to load research variants
334
+ - Parsing of genotypes error, resulting in -1 values when alt or ref read depths are 0
335
+
336
+ ## [4.74]
337
+ ### Added
338
+ - SNVs and Indels, MEI and str variants genes have links to Decipher
339
+ - An `owner + case display name` index for cases database collection
340
+ - Test and fixtures for RNA fusion case page
341
+ - Load and display fusion variants from VCF files as the other variant types
342
+ - Option to update case document with path to mei variants (clinical and research)
343
+ ### Changed
344
+ - Details on variant type and category for audit filters on case general report
345
+ - Enable Gens CN profile button also in somatic case view
346
+ - Fix case of analysis type check for Gens analysis button - only show for WGS
347
+ ### Fixed
348
+ - loqusdb table no longer has empty row below each loqusid
349
+ - MatchMaker submission details page crashing because of change in date format returned by PatientMatcher
350
+ - Variant external links buttons style does not change color when visited
351
+ - Hide compounds with compounds follow filter for region or function would fail for variants in multiple genes
352
+ - Updated FontAwesome version to fix missing icons
353
+
354
+ ## [4.73]
355
+ ### Added
356
+ - Shortcut button for HPO panel MEI variants from case page
357
+ - Export managed variants from CLI
358
+ ### Changed
359
+ - STRs visualization on case panel to emphasize abnormal repeat count and associated condition
360
+ - Removed cytoband column from STRs variant view on case report
361
+ - More long integers formatted with thin spaces, and copy to clipboard buttons added
362
+ ### Fixed
363
+ - OMIM table is scrollable if higher than 700px on SV page
364
+ - Pinned variants validation badge is now red for false positives.
365
+ - Case display name defaulting to case ID when `family_name` or `display_name` are missing from case upload config file
366
+ - Expanded menu visible at screen sizes below 1000px now has background color
367
+ - The image in ClinVar howto-modal is now responsive
368
+ - Clicking on a case in case groups when case was already removed from group in another browser tab
369
+ - Page crashing when saving filters for mei variants
370
+ - Link visited color of images
371
+
372
+ ## [4.72.4]
373
+ ### Changed
374
+ - Automatic test mongod version increased to v7
375
+ ### Fixed
376
+ - GnomAD now defaults to hg38 - change build 37 links accordingly
377
+
378
+ ## [4.72.3]
379
+ ### Fixed
380
+ - Somatic general case report small variant table can crash with unclassified variants
381
+
382
+ ## [4.72.2]
383
+ ### Changed
384
+ - A gunicorn maxrequests parameter for Docker server image - default to 1200
385
+ - STR export limit increased to 500, as for other variants
386
+ - Prevent long number wrapping and use thin spaces for separation, as per standards from SI, NIST, IUPAC, BIPM.
387
+ - Speed up case retrieval and lower memory use by projecting case queries
388
+ - Make relatedness check fails stand out a little more to new users
389
+ - Speed up case retrieval and lower memory use by projecting case queries
390
+ - Speed up variant pages by projecting only the necessary keys in disease collection query
391
+ ### Fixed
392
+ - Huge memory use caused by cases and variants pages pulling complete disease documents from DB
393
+ - Do not include genes fetched from HPO terms when loading diseases
394
+ - Consider the renamed fields `Approved Symbol` -> `Approved Gene Symbol` and `Gene Symbols` -> `Gene/Locus And Other Related Symbols` when parsing OMIM terms from genemap2.txt file
395
+
396
+ ## [4.72.1]
397
+ ### Fixed
398
+ - Jinja filter that renders long integers
399
+ - Case cache when looking for causatives in other cases causing the server to hang
400
+
401
+ ## [4.72]
402
+ ### Added
403
+ - A GitHub action that checks for broken internal links in docs pages
404
+ - Link validation settings in mkdocs.yml file
405
+ - Load and display full RNA alignments on alignment viewer
406
+ - Genome build check when loading a case
407
+ - Extend event index to previous causative variants and always load them
408
+ ### Fixed
409
+ - Documentation nav links for a few documents
410
+ - Slightly extended the BioNano Genomics Access integration docs
411
+ - Loading of SVs when VCF is missing the INFO.END field but has INFO.SVLEN field
412
+ - Escape protein sequence name (if available) in case general report to render special characters correctly
413
+ - CaseS HPO term searches for multiple terms works independent of order
414
+ - CaseS search regexp should not allow backslash
415
+ - CaseS cohort tags can contain whitespace and still match
416
+ - Remove diagnoses from cases even if OMIM term is not found in the database
417
+ - Parsing of disease-associated genes
418
+ - Removed an annoying warning while updating database's disease terms
419
+ - Displaying custom case images loaded with scout version <= 4.71
420
+ - Use pydantic version >=2 in requirements.txt file
421
+ ### Changed
422
+ - Column width adjustment on caseS page
423
+ - Use Python 3.11 in tests
424
+ - Update some github actions
425
+ - Upgraded Pydantic to version 2
426
+ - Case validation fails on loading when associated files (alignments, VCFs and reports) are not present on disk
427
+ - Case validation fails on loading when custom images have format different then ["gif", "svg", "png", "jpg", "jpeg"]
428
+ - Custom images keys `case` and `str` in case config yaml file are renamed to `case_images` and `str_variants_images`
429
+ - Simplify and speed up case general report code
430
+ - Speed up case retrieval in case_matching_causatives
431
+ - Upgrade pymongo to version 4
432
+ - When updating disease terms, check that all terms are consistent with a DiseaseTerm model before dropping the old collection
433
+ - Better separation between modules loading HPO terms and diseases
434
+ - Deleted unused scout.build.phenotype module
435
+ - Stricter validation of mandatory genome build key when loading a case. Allowed values are ['37','38',37,38]
436
+ - Improved readability of variants length and coordinates on variantS pages
437
+
438
+ ## [4.71]
439
+ ### Added
440
+ - Added Balsamic keys for SweGen and loqusdb local archive frequecies, SNV and SV
441
+ - New filter option for Cancer variantS: local archive RD loqusdb
442
+ - Show annotated observations on SV variantS view, also for cancer somatic SVs
443
+ - Revel filter for variantS
444
+ - Show case default panel on caseS page
445
+ - CADD filter for Cancer Somatic SNV variantS - show score
446
+ - SpliceAI-lookup link (BROAD, shows SpliceAI and Pangolin) from variant page
447
+ - BioNano Access server API - check projects, samples and fetch FSHD reports
448
+ ### Fixed
449
+ - Name of reference genome build for RNA for compatibility with IGV locus search change
450
+ - Howto to run the Docker image on Mac computers in `admin-guide/containers/container-deploy.md`
451
+ - Link to Weasyprint installation howto in README file
452
+ - Avoid filling up disk by creating a reduced VCF file for every variant that is visualized
453
+ - Remove legacy incorrectly formatted CODEOWNERS file
454
+ - Restrain variant_type requests to variantS views to "clinical" or "research"
455
+ - Visualization of cancer variants where cancer case has no affected individual
456
+ - ProteinPaint gene link (small StJude API change)
457
+ - Causative MEI variant link on causatives page
458
+ - Bionano access api settings commented out by default in Scout demo config file.
459
+ - Do not show FSHD button on freshly loaded cases without bionano_access individuals
460
+ - Truncate long variants' HGVS on causative/Clinically significant and pinned variants case panels
461
+ ### Changed
462
+ - Remove function call that tracks users' browser version
463
+ - Include three more splice variant SO terms in clinical filter severe SO terms
464
+ - Drop old HPO term collection only after parsing and validation of new terms completes
465
+ - Move score to own column on Cancer Somatic SNV variantS page
466
+ - Refactored a few complex case operations, breaking out sub functionalities
467
+
468
+ ## [4.70]
469
+ ### Added
470
+ - Download a list of Gene Variants (max 500) resulting from SNVs and Indels search
471
+ - Variant PubMed link to search for gene symbol and any aliases
472
+ ### Changed
473
+ - Clearer gnomAD values in Variants page
474
+ ### Fixed
475
+ - CaseS page uniform column widths
476
+ - Include ClinVar variants into a scrollable div element on Case page
477
+ - `canonical_transcript` variable not initialized in get_hgvs function (server.blueprints.institutes.controllers.py)
478
+ - Catch and display any error while importing Phenopacket info
479
+ - Modified Docker files to use python:3.8-slim-bullseye to prevent gunicorn workers booting error
480
+
481
+ ## [4.69]
482
+ ### Added
483
+ - ClinVar submission howto available also on Case page
484
+ - Somatic score and filtering for somatic SV callers, if available
485
+ - Show caller as a tooltip on variantS list
486
+ ### Fixed
487
+ - Crash when attempting to export phenotype from a case that had never had phenotypes
488
+ - Aesthetic fix to Causative and Pinned Variants on Case page
489
+ - Structural inconsistency for ClinVar Blueprint templates
490
+ - Updated igv.js to 2.15.8 to fix track default color bug
491
+ - Fixed release versions for actions.
492
+ - Freeze tornado below 6.3.0 for compatibility with livereload 2.6.3
493
+ - Force update variants count on case re-upload
494
+ - IGV locus search not working - add genome reference id
495
+ - Pin links to MEI variants should end up on MEI not SV variant view
496
+ - Load also matching MEI variants on forced region load
497
+ - Allow excluding MEI from case variant deletion
498
+ - Fixed the name of the assigned user when the internal user ID is different from the user email address
499
+ - Gene variantS should display gene function, region and full hgvs
500
+ ### Changed
501
+ - FontAwesome integrity check fail (updated resource)
502
+ - Removed ClinVar API validation buttons in favour of direct API submission
503
+ - Improved layout of Institute settings page
504
+ - ClinVar API key and allowed submitters are set in the Institute settings page
505
+
506
+
507
+ ## [4.68]
508
+ ### Added
509
+ - Rare Disease Mobile Element Insertion variants view
510
+ ### Changed
511
+ - Updated igv.js to 2.15.6
512
+ ### Fixed
513
+ - Docker stage build pycairo.
514
+ - Restore SNV and SV rank models versions on Causatives and Verified pages
515
+ - Saving `REVEL_RANKSCORE` value in a field named `revel` in variants database documents
516
+
517
+ ## [4.67]
518
+ ### Added
519
+ - Prepare to filter local SV frequency
520
+ ### Changed
521
+ - Speed up instituteS page loading by refactoring cases/institutes query
522
+ - Clinical Filter for SVs includes `splice_polypyrimidine_tract_variant` as a severe consequence
523
+ - Clinical Filter for SVs includes local variant frequency freeze ("old") for filtering, starting at 30 counts
524
+ - Speed up caseS page loading by adding status to index and refactoring totals count
525
+ - HPO file parsing is updated to reflect that HPO have changed a few downloadable file formats with their 230405 release.
526
+ ### Fixed
527
+ - Page crashing when a user tries to edit a comment that was removed
528
+ - Warning instead of crashed page when attempting to retrieve a non-existent Phenopacket
529
+ - Fixed StJude ProteinPaint gene link (URL change)
530
+ - Freeze of werkzeug library to version<2.3 to avoid problems resulting from the consequential upgrade of the Flask lib
531
+ - Huge list of genes in case report for megabases-long structural variants.
532
+ - Fix displaying institutes without associated cases on institutes page
533
+ - Fix default panel selection on SVs in cancer case report
534
+
535
+ ## [4.66]
536
+ ### Changed
537
+ - Moved Phenomodels code under a dedicated blueprint
538
+ - Updated the instructions to load custom case report under admin guide
539
+ - Keep variants filter window collapsed except when user expands it to filter
540
+ ### Added
541
+ - A summary table of pinned variants on the cancer case general report
542
+ - New openable matching causatives and managed variants lists for default gene panels only for convenience
543
+ ### Fixed
544
+ - Gens structural variant page link individual id typo
545
+
546
+ ## [4.65.2]
547
+ ### Fixed
548
+ - Generating general case report with str variants containing comments
549
+
550
+ ## [4.65.1]
551
+ ### Fixed
552
+ - Visibility of `Gene(s)` badges on SV VariantS page
553
+ - Hide dismiss bar on SV page not working well
554
+ - Delivery report PDF download
555
+ - Saving Pipeline version file when loading a case
556
+ - Backport compatible import of importlib metadata for old python versions (<3.8)
557
+
558
+ ## [4.65]
559
+ ### Added
560
+ - Option to mark a ClinVar submission as submitted
561
+ - Docs on how to create/update the PanelApp green genes as a system admin
562
+ - `individual_id`-parameter to both Gens links
563
+ - Download a gene panel in TXT format from gene panel page
564
+ - Panel gene comments on variant page: genes in panels can have comments that describe the gene in a panel context
565
+ ### Changed
566
+ - Always show each case category on caseS page, even if 0 cases in total or after current query
567
+ - Improved sorting of ClinVar submissions
568
+ - Pre-populate SV type select in ClinVar submission form, when possible
569
+ - Show comment badges in related comments tables on general report
570
+ - Updated version of several GitHub actions
571
+ - Migrate from deprecated `pkg_resources` lib to `importlib_resources`
572
+ - Dismiss bar on variantS pages is thinner.
573
+ - Dismiss bar on variantS pages can be toggled open or closed for the duration of a login session.
574
+ ### Fixed
575
+ - Fixed Sanger order / Cancel order modal close buttons
576
+ - Visibility of SV type in ClinVar submission form
577
+ - Fixed a couple of creations where now was called twice, so updated_at and created_at could differ
578
+ - Deprecated Ubuntu version 18.04 in one GitHub action
579
+ - Panels that have been removed (hidden) should not be visible in views where overlapping gene panels for genes are shown
580
+ - Gene panel test pointing to the right function
581
+
582
+ ## [4.64]
583
+ ### Added
584
+ - Create/Update a gene panel containing all PanelApp green genes (`scout update panelapp-green -i <cust_id>`)
585
+ - Links for ACMG pathogenicity impact modification on the ACMG classification page
586
+ ### Changed
587
+ - Open local observation matching cases in new windows
588
+ ### Fixed
589
+ - Matching manual ranked variants are now shown also on the somatic variant page
590
+ - VarSome links to hg19/GRCh37
591
+ - Managed variants filter settings lost when navigating to additional pages
592
+ - Collect the right variant category after submitting filter form from research variantS page
593
+ - Beacon links are templated and support variants in genome build 38
594
+
595
+ ## [4.63]
596
+ ### Added
597
+ - Display data sharing info for ClinVar, Matchmaker Exchange and Beacon in a dedicated column on Cases page
598
+ - Test for `commands.download.omim.print_omim`
599
+ - Display dismissed variants comments on general case report
600
+ - Modify ACMG pathogenicity impact (most commonly PVS1, PS3) based on strength of evidence with lab director's professional judgement
601
+ - REViewer button on STR variant page
602
+ - Alamut institution parameter in institute settings for Alamut Visual Plus software
603
+ - Added Manual Ranks Risk Factor, Likely Risk Factor and Uncertain Risk Factor
604
+ - Display matching manual ranks from previous cases the user has access to on VariantS and Variant pages
605
+ - Link to gnomAD gene SVs v2.1 for SV variants with gnomAD frequency
606
+ - Support for nf-core/rnafusion reports
607
+ ### Changed
608
+ - Display chrY for sex unknown
609
+ - Deprecate legacy scout_load() method API call.
610
+ - Message shown when variant tag is updated for a variant
611
+ - When all ACMG classifications are deleted from a variant, the current variant classification status is also reset.
612
+ - Refactored the functions that collect causative variants
613
+ - Removed `scripts/generate_test_data.py`
614
+ ### Fixed
615
+ - Default IGV tracks (genes, ClinVar, ClinVar CNVs) showing even if user unselects them all
616
+ - Freeze Flask-Babel below v3.0 due to issue with a locale decorator
617
+ - Thaw Flask-Babel and fix according to v3 standard. Thank you @TkTech!
618
+ - Show matching causatives on somatic structural variant page
619
+ - Visibility of gene names and functional annotations on Causatives/Verified pages
620
+ - Panel version can be manually set to floating point numbers, when modified
621
+ - Causatives page showing also non-causative variants matching causatives in other cases
622
+ - ClinVar form submission for variants with no selected transcript and HGVS
623
+ - Validating and submitting ClinVar objects not containing both Variant and Casedata info
624
+
625
+ ## [4.62.1]
626
+ ### Fixed
627
+ - Case page crashing when adding a case to a group without providing a valid case name
628
+
629
+ ## [4.62]
630
+ ### Added
631
+ - Validate ClinVar submission objects using the ClinVar API
632
+ - Wrote tests for case and variant API endpoints
633
+ - Create ClinVar submissions from Scout using the ClinVar API
634
+ - Export Phenopacket for affected individual
635
+ - Import Phenopacket from JSON file or Phenopacket API backend server
636
+ - Use the new case name option for GENS requests
637
+ - Pre-validate refseq:HGVS items using VariantValidator in ClinVar submission form
638
+ ### Fixed
639
+ - Fallback for empty alignment index for REViewer service
640
+ - Source link out for MIP 11.1 reference STR annotation
641
+ - Avoid duplicate causatives and pinned variants
642
+ - ClinVar clinical significance displays only the ACMG terms when user selects ACMG 2015 as assertion criteria
643
+ - Spacing between icon and text on Beacon and MatchMaker links on case page sidebar
644
+ - Truncate IDs and HGVS representations in ClinVar pages if longer than 25 characters
645
+ - Update ClinVar submission ID form
646
+ - Handle connection timeout when sending requests requests to external web services
647
+ - Validate any ClinVar submission regardless of its status
648
+ - Empty Phenopackets import crashes
649
+ - Stop Spinner on Phenopacket JSON download
650
+ ### Changed
651
+ - Updated ClinVar submission instructions
652
+
653
+ ## [4.61.1]
654
+ ### Fixed
655
+ - Added `UMLS` as an option of `Condition ID type` in ClinVar Variant downloaded files
656
+ - Missing value for `Condition ID type` in ClinVar Variant downloaded files
657
+ - Possibility to open, close or delete a ClinVar submission even if it doesn't have an associated name
658
+ - Save SV type, ref and alt n. copies to exported ClinVar files
659
+ - Inner and outer start and stop SV coordinates not exported in ClinVar files
660
+ - ClinVar submissions page crashing when SV files don't contain breakpoint exact coordinates
661
+ - Align OMIM diagnoses with delete diagnosis button on case page
662
+ - In ClinVar form, reset condition list and customize help when condition ID changes
663
+
664
+ ## [4.61]
665
+ ### Added
666
+ - Filter case list by cases with variants in ClinVar submission
667
+ - Filter case list by cases containing RNA-seq data - gene_fusion_reports and sample-level tracks (splice junctions and RNA coverage)
668
+ - Additional case category `Ignored`, to be used for cases that don't fall in the existing 'inactive', 'archived', 'solved', 'prioritized' categories
669
+ - Display number of cases shown / total number of cases available for each category on Cases page
670
+ - Moved buttons to modify case status from sidebar to main case page
671
+ - Link to Mutalyzer Normalizer tool on variant's transcripts overview to retrieve official HVGS descriptions
672
+ - Option to manually load RNA MULTIQC report using the command `scout load report -t multiqc_rna`
673
+ - Load RNA MULTIQC automatically for a case if config file contains the `multiqc_rna` key/value
674
+ - Instructions in admin-guide on how to load case reports via the command line
675
+ - Possibility to filter RD variants by a specific genotype call
676
+ - Distinct colors for different inheritance models on RD Variant page
677
+ - Gene panels PDF export with case variants hits by variant type
678
+ - A couple of additional README badges for GitHub stats
679
+ - Upload and display of pipeline reference info and executable version yaml files as custom reports
680
+ - Testing CLI on hasta in PR template
681
+ ### Changed
682
+ - Instructions on how to call dibs on scout-stage server in pull request template
683
+ - Deprecated CLI commands `scout load <delivery_report, gene_fusion_report, coverage_qc_report, cnv_report>` to replace them with command `scout load report -t <report type>`
684
+ - Refactored code to display and download custom case reports
685
+ - Do not export `Assertion method` and `Assertion method citation` to ClinVar submission files according to changes to ClinVar's submission spreadsheet templates.
686
+ - Simplified code to create and download ClinVar CSV files
687
+ - Colorize inheritance models badges by category on VariantS page
688
+ - `Safe variants matching` badge more visible on case page
689
+ ### Fixed
690
+ - Non-admin users saving institute settings would clear loqusdb instance selection
691
+ - Layout of variant position, cytoband and type in SV variant summary
692
+ - Broken `Build Status - GitHub badge` on GitHub README page
693
+ - Visibility of text on grey badges in gene panels PDF exports
694
+ - Labels for dashboard search controls
695
+ - Dark mode visibility for ClinVar submission
696
+ - Whitespaces on outdated panel in extent report
697
+
698
+ ## [4.60]
699
+ ### Added
700
+ - Mitochondrial deletion signatures (mitosign) can be uploaded and shown with mtDNA report
701
+ - A `Type of analysis` column on Causatives and Validated variants pages
702
+ - List of "safe" gene panels available for matching causatives and managed variants in institute settings, to avoid secondary findings
703
+ - `svdb_origin` as a synonym for `FOUND_IN` to complement `set` for variants found by all callers
704
+ ### Changed
705
+ - Hide removed gene panels by default in panels page
706
+ - Removed option for filtering cancer SVs by Tumor and Normal alt AF
707
+ - Hide links to coverage report from case dynamic HPO panel if cancer analysis
708
+ - Remove rerun emails and redirect users to the analysis order portal instead
709
+ - Updated clinical SVs igv.js track (dbVar) and added example of external track from `https://trackhubregistry.org/`
710
+ - Rewrote the ClinVar export module to simplify and add one variant at the time
711
+ - ClinVar submissions with phenotype conditions from: [OMIM, MedGen, Orphanet, MeSH, HP, MONDO]
712
+ ### Fixed
713
+ - If trying to load a badly formatted .tsv file an error message is displayed.
714
+ - Avoid showing case as rerun when first attempt at case upload failed
715
+ - Dynamic autocomplete search not working on phenomodels page
716
+ - Callers added to variant when loading case
717
+ - Now possible to update managed variant from file without deleting it first
718
+ - Missing preselected chromosome when editing a managed variant
719
+ - Preselected variant type and subtype when editing a managed variant
720
+ - Typo in dbVar ClinVar track, hg19
721
+
722
+
723
+ ## [4.59]
724
+ ### Added
725
+ - Button to go directly to HPO SV filter variantS page from case
726
+ - `Scout-REViewer-Service` integration - show `REViewer` picture if available
727
+ - Link to HPO panel coverage overview on Case page
728
+ - Specify a confidence threshold (green|amber|red) when loading PanelApp panels
729
+ - Functional annotations in variants lists exports (all variants)
730
+ - Cancer/Normal VAFs and COSMIC ids in in variants lists exports (cancer variants)
731
+ ### Changed
732
+ - Better visualization of regional annotation for long lists of genes in large SVs in Variants tables
733
+ - Order of cells in variants tables
734
+ - More evident links to gene coverage from Variant page
735
+ - Gene panels sorted by display name in the entire Case page
736
+ - Round CADD and GnomAD values in variants export files
737
+ ### Fixed
738
+ - HPO filter button on SV variantS page
739
+ - Spacing between region|function cells in SVs lists
740
+ - Labels on gene panel Chanjo report
741
+ - Fixed ambiguous duplicated response headers when requesting a BAM file from /static
742
+ - Visited color link on gene coverage button (Variant page)
743
+
744
+ ## [4.58.1]
745
+ ### Fixed
746
+ - Case search with search strings that contain characters that can be escaped
747
+
748
+ ## [4.58]
749
+ ### Added
750
+ - Documentation on how to create/update PanelApp panels
751
+ - Add filter by local observations (archive) to structural variants filters
752
+ - Add more splicing consequences to SO term definitions
753
+ - Search for a specific gene in all gene panels
754
+ - Institute settings option to force show all variants on VariantS page for all cases of an institute
755
+ - Filter cases by validation pending status
756
+ - Link to The Clinical Knowledgebase (CKB) (https://ckb.jax.org/) in cancer variant's page
757
+ ### Fixed
758
+ - Added a not-authorized `auto-login` fixture according to changes in Flask-Login 0.6.2
759
+ - Renamed `cache_timeout` param name of flask.send_file function to `max_age` (Flask 2.2 compliant)
760
+ - Replaced deprecated `app.config["JSON_SORT_KEYS"]` with app.json.sort_keys in app settings
761
+ - Bug in gene variants page (All SNVs and INDELs) when variant gene doesn't have a hgnc id that is found in the database
762
+ - Broken export of causatives table
763
+ - Query for genes in build 38 on `Search SNVs and INDELs` page
764
+ - Prevent typing special characters `^<>?!=\/` in case search form
765
+ - Search matching causatives also among research variants in other cases
766
+ - Links to variants in Verified variants page
767
+ - Broken filter institute cases by pinned gene
768
+ - Better visualization of long lists of genes in large SVs on Causative and Verified Variants page
769
+ - Reintroduced missing button to export Causative variants
770
+ - Better linking and display of matching causatives and managed variants
771
+ - Reduced code complexity in `scout/parse/variant/variant.py`
772
+ - Reduced complexity of code in `scout/build/variant/variant.py`
773
+
774
+ ### Changed
775
+ - State that loqusdb observation is in current case if observations count is one and no cases are shown
776
+ - Better pagination and number of variants returned by queries in `Search SNVs and INDELs` page
777
+ - Refactored and simplified code used for collecting gene variants for `Search SNVs and INDELs` page
778
+ - Fix sidebar panel icons in Case view
779
+ - Fix panel spacing in Case view
780
+ - Removed unused database `sanger_ordered` and `case_id,category,rank_score` indexes (variant collection)
781
+ - Verified variants displayed in a dedicated page reachable from institute sidebar
782
+ - Unified stats in dashboard page
783
+ - Improved gene info for large SVs and cancer SVs
784
+ - Remove the unused `variant.str_variant` endpoint from variant views
785
+ - Easier editing of HPO gene panel on case page
786
+ - Assign phenotype panel less cramped on Case page
787
+ - Causatives and Verified variants pages to use the same template macro
788
+ - Allow hyphens in panel names
789
+ - Reduce resolution of example images
790
+ - Remove some animations in web gui which where rendered slow
791
+
792
+
793
+ ## [4.57.4]
794
+ ### Fixed
795
+ - Parsing of variant.FORMAT "DR" key in parse variant file
796
+
797
+ ## [4.57.3]
798
+ ### Fixed
799
+ - Export of STR verified variants
800
+ - Do not download as verified variants first verified and then reset to not validated
801
+ - Avoid duplicated lines in downloaded verified variants reflecting changes in variant validation status
802
+
803
+ ## [4.57.2]
804
+ ### Fixed
805
+ - Export of verified variants when variant gene has no transcripts
806
+ - HTTP 500 when visiting a the details page for a cancer variant that had been ranked with genmod
807
+
808
+ ## [4.57.1]
809
+ ### Fixed
810
+ - Updating/replacing a gene panel from file with a corrupted or malformed file
811
+
812
+ ## [4.57]
813
+ ### Added
814
+ - Display last 50 or 500 events for a user in a timeline
815
+ - Show dismiss count from other cases on matching variantS
816
+ - Save Beacon-related events in events collection
817
+ - Institute settings allow saving multiple loqusdb instances for one institute
818
+ - Display stats from multiple instances of loqusdb on variant page
819
+ - Display date and frequency of obs derived from count of local archive observations from MIP11 (requires fix in MIP)
820
+ ### Changed
821
+ - Prior ACMG classifications view is no longer limited by pathogenicity
822
+ ### Fixed
823
+ - Visibility of Sanger ordered badge on case page, light mode
824
+ - Some of the DataTables tables (Phenotypes and Diagnoses pages) got a bit dark in dark mode
825
+ - Remove all redundancies when displaying timeline events (some events are saved both as case-related and variant-related)
826
+ - Missing link in saved MatchMaker-related events
827
+ - Genes with mixed case gene symbols missing in PanelApp panels
828
+ - Alignment of elements on the Beacon submission modal window
829
+ - Locus info links from STR variantS page open in new browser tabs
830
+
831
+ ## [4.56]
832
+ ### Added
833
+ - Test for PanelApp panels loading
834
+ - `panel-umi` tag option when loading cancer analyses
835
+ ### Changed
836
+ - Black text to make comments more visible in dark mode
837
+ - Loading PanelApp panels replaces pre-existing panels with same version
838
+ - Removed sidebar from Causatives page - navigation is available on the top bar for now
839
+ - Create ClinVar submissions from pinned variants list in case page
840
+ - Select which pinned variants will be included in ClinVar submission documents
841
+ ### Fixed
842
+ - Remove a:visited css style from all buttons
843
+ - Update of HPO terms via command line
844
+ - Background color of `MIXED` and `PANEL-UMI` sequencing types on cases page
845
+ - Fixed regex error when searching for cases with query ending with `\ `
846
+ - Gene symbols on Causatives page lighter in dark mode
847
+ - SpliceAI tooltip of multigene variants
848
+
849
+ ## [4.55]
850
+ ### Changed
851
+ - Represent different tumor samples as vials in cases page
852
+ - Option to force-update the OMIM panel
853
+ ### Fixed
854
+ - Low tumor purity badge alignment in cancer samples table on cancer case view
855
+ - VariantS comment popovers reactivate on hover
856
+ - Updating database genes in build 37
857
+ - ACMG classification summary hidden by sticky navbar
858
+ - Logo backgrounds fixed to white on welcome page
859
+ - Visited links turn purple again
860
+ - Style of link buttons and dropdown menus
861
+ - Update KUH and GMS logos
862
+ - Link color for Managed variants
863
+
864
+ ## [4.54]
865
+ ### Added
866
+ - Dark mode, using browser/OS media preference
867
+ - Allow marking case as solved without defining causative variants
868
+ - Admin users can create missing beacon datasets from the institute's settings page
869
+ - GenCC links on gene and variant pages
870
+ - Deprecation warnings when launching the app using a .yaml config file or loading cases using .ped files
871
+ ### Changed
872
+ - Improved HTML syntax in case report template
873
+ - Modified message displayed when variant rank stats could not be calculated
874
+ - Expanded instructions on how to test on CG development server (cg-vm1)
875
+ - Added more somatic variant callers (Balsamic v9 SNV, develop SV)
876
+ ### Fixed
877
+ - Remove load demo case command from docker-compose.yml
878
+ - Text elements being split across pages in PDF reports
879
+ - Made login password field of type `password` in LDAP login form
880
+ - Gene panels HTML select in institute's settings page
881
+ - Bootstrap upgraded to version 5
882
+ - Fix some Sourcery and SonarCloud suggestions
883
+ - Escape special characters in case search on institute and dashboard pages
884
+ - Broken case PDF reports when no Madeline pedigree image can be created
885
+ - Removed text-white links style that were invisible in new pages style
886
+ - Variants pagination after pressing "Filter variants" or "Clinical filter"
887
+ - Layout of buttons Matchmaker submission panel (case page)
888
+ - Removing cases from Matchmaker (simplified code and fixed functionality)
889
+ - Reintroduce check for missing alignment files purged from server
890
+
891
+ ## [4.53]
892
+ ### Added
893
+ ### Changed
894
+ - Point Alamut API key docs link to new API version
895
+ - Parse dbSNP id from ID only if it says "rs", else use VEP CSQ fields
896
+ - Removed MarkupSafe from the dependencies
897
+ ### Fixed
898
+ - Reintroduced loading of SVs for demo case 643595
899
+ - Successful parse of FOUND_IN should avoid GATK caller default
900
+ - All vulnerabilities flagged by SonarCloud
901
+
902
+ ## [4.52]
903
+ ### Added
904
+ - Demo cancer case gets loaded together with demo RD case in demo instance
905
+ - Parse REVEL_score alongside REVEL_rankscore from csq field and display it on SNV variant page
906
+ - Rank score results now show the ranking range
907
+ - cDNA and protein changes displayed on institute causatives pages
908
+ - Optional SESSION_TIMEOUT_MINUTES configuration in app config files
909
+ - Script to convert old OMIM case format (list of integers) to new format (list of dictionaries)
910
+ - Additional check for user logged in status before serving alignment files
911
+ - Download .cgh files from cancer samples table on cancer case page
912
+ - Number of documents and date of last update on genes page
913
+ ### Changed
914
+ - Verify user before redirecting to IGV alignments and sashimi plots
915
+ - Build case IGV tracks starting from case and variant objects instead of passing all params in a form
916
+ - Unfreeze Werkzeug lib since Flask_login v.0.6 with bugfix has been released
917
+ - Sort gene panels by name (panelS and variant page)
918
+ - Removed unused `server.blueprints.alignviewers.unindexed_remote_static` endpoint
919
+ - User sessions to check files served by `server.blueprints.alignviewers.remote_static` endpoint
920
+ - Moved Beacon-related functions to a dedicated app extension
921
+ - Audit Filter now also loads filter displaying the variants for it
922
+ ### Fixed
923
+ - Handle `attachment_filename` parameter renamed to `download_name` when Flask 2.2 will be released
924
+ - Removed cursor timeout param in cases find adapter function to avoid many code warnings
925
+ - Removed stream argument deprecation warning in tests
926
+ - Handle `no intervals found` warning in load_region test
927
+ - Beacon remove variants
928
+ - Protect remote_cors function in alignviewers view from Server-Side Request Forgery (SSRF)
929
+ - Check creation date of last document in gene collection to display when genes collection was updated last
930
+
931
+ ## [4.51]
932
+ ### Added
933
+ - Config file containing codecov settings for pull requests
934
+ - Add an IGV.js direct link button from case page
935
+ - Security policy file
936
+ - Hide/shade compound variants based on rank score on variantS from filter
937
+ - Chromograph legend documentation direct link
938
+ ### Changed
939
+ - Updated deprecated Codecov GitHub action to v.2
940
+ - Simplified code of scout/adapter/mongo/variant
941
+ - Update IGV.js to v2.11.2
942
+ - Show summary number of variant gene panels on general report if more than 3
943
+ ### Fixed
944
+ - Marrvel link for variants in genome build 38 (using liftover to build 37)
945
+ - Remove flags from codecov config file
946
+ - Fixed filter bug with high negative SPIDEX scores
947
+ - Renamed IARC TP53 button to to `TP53 Database`, modified also link since IARC has been moved to the US NCI: `https://tp53.isb-cgc.org/`
948
+ - Parsing new format of OMIM case info when exporting patients to Matchmaker
949
+ - Remove flask-debugtoolbar lib dependency that is using deprecated code and causes app to crash after new release of Jinja2 (3.1)
950
+ - Variant page crashing for cases with old OMIM terms structure (a list of integers instead of dictionary)
951
+ - Variant page crashing when creating MARRVEL link for cases with no genome build
952
+ - SpliceAI documentation link
953
+ - Fix deprecated `safe_str_cmp` import from `werkzeug.security` by freezing Werkzeug lib to v2.0 until Flask_login v.0.6 with bugfix is released
954
+ - List gene names densely in general report for SVs that contain more than 3 genes
955
+ - Show transcript ids on refseq genes on hg19 in IGV.js, using refgene source
956
+ - Display correct number of genes in general report for SVs that contain more than 32 genes
957
+ - Broken Google login after new major release of `lepture/authlib`
958
+ - Fix frequency and callers display on case general report
959
+
960
+ ## [4.50.1]
961
+ ### Fixed
962
+ - Show matching causative STR_repid for legacy str variants (pre Stranger hgnc_id)
963
+
964
+ ## [4.50]
965
+ ### Added
966
+ - Individual-specific OMIM terms
967
+ - OMIM disease descriptions in ClinVar submission form
968
+ - Add a toggle for melter rerun monitoring of cases
969
+ - Add a config option to show the rerun monitoring toggle
970
+ - Add a cli option to export cases with rerun monitoring enabled
971
+ - Add a link to STRipy for STR variants; shallow for ARX and HOXA13
972
+ - Hide by default variants only present in unaffected individuals in variants filters
973
+ - OMIM terms in general case report
974
+ - Individual-level info on OMIM and HPO terms in general case report
975
+ - PanelApp gene link among the external links on variant page
976
+ - Dashboard case filters fields help
977
+ - Filter cases by OMIM terms in cases and dashboard pages
978
+ ### Fixed
979
+ - A malformed panel id request would crash with exception: now gives user warning flash with redirect
980
+ - Link to HPO resource file hosted on `http://purl.obolibrary.org`
981
+ - Gene search form when gene exists only in build 38
982
+ - Fixed odd redirect error and poor error message on missing column for gene panel csv upload
983
+ - Typo in parse variant transcripts function
984
+ - Modified keys name used to parse local observations (archived) frequencies to reflect change in MIP keys naming
985
+ - Better error handling for partly broken/timed out chanjo reports
986
+ - Broken javascript code when case Chromograph data is malformed
987
+ - Broader space for case synopsis in general report
988
+ - Show partial causatives on causatives and matching causatives panels
989
+ - Partial causative assignment in cases with no OMIM or HPO terms
990
+ - Partial causative OMIM select options in variant page
991
+ ### Changed
992
+ - Slightly smaller and improved layout of content in case PDF report
993
+ - Relabel more cancer variant pages somatic for navigation
994
+ - Unify caseS nav links
995
+ - Removed unused `add_compounds` param from variant controllers function
996
+ - Changed default hg19 genome for IGV.js to legacy hg19_1kg_decoy to fix a few problematic loci
997
+ - Reduce code complexity (parse/ensembl.py)
998
+ - Silence certain fields in ClinVar export if prioritised ones exist (chrom-start-end if hgvs exist)
999
+ - Made phenotype non-mandatory when marking a variant as partial causative
1000
+ - Only one phenotype condition type (OMIM or HPO) per variant is used in ClinVar submissions
1001
+ - ClinVar submission variant condition prefers OMIM over HPO if available
1002
+ - Use lighter version of gene objects in Omim MongoDB adapter, panels controllers, panels views and institute controllers
1003
+ - Gene-variants table size is now adaptive
1004
+ - Remove unused file upload on gene-variants page
1005
+
1006
+ ## [4.49]
1007
+ ### Fixed
1008
+ - Pydantic model types for genome_build, madeline_info, peddy_ped_check and peddy_sex_check, rank_model_version and sv_rank_model_version
1009
+ - Replace `MatchMaker` with `Matchmaker` in all places visible by a user
1010
+ - Save diagnosis labels along with OMIM terms in Matchmaker Exchange submission objects
1011
+ - `libegl-mesa0_21.0.3-0ubuntu0.3~20.04.5_amd64.deb` lib not found by GitHub actions Docker build
1012
+ - Remove unused `chromograph_image_files` and `chromograph_prefixes` keys saved when creating or updating an RD case
1013
+ - Search managed variants by description and with ignore case
1014
+ ### Changed
1015
+ - Introduced page margins on exported PDF reports
1016
+ - Smaller gene fonts in downloaded HPO genes PDF reports
1017
+ - Reintroduced gene coverage data in the PDF-exported general report of rare-disease cases
1018
+ - Check for existence of case report files before creating sidebar links
1019
+ - Better description of HPO and OMIM terms for patients submitted to Matchmaker Exchange
1020
+ - Remove null non-mandatory key/values when updating a case
1021
+ - Freeze WTForms<3 due to several form input rendering changes
1022
+
1023
+ ## [4.48.1]
1024
+ ### Fixed
1025
+ - General case PDF report for recent cases with no pedigree
1026
+
1027
+ ## [4.48]
1028
+ ### Added
1029
+ - Option to cancel a request for research variants in case page
1030
+ ### Changed
1031
+ - Update igv.js to v2.10.5
1032
+ - Updated example of a case delivery report
1033
+ - Unfreeze cyvcf2
1034
+ - Builder images used in Scout Dockerfiles
1035
+ - Crash report email subject gives host name
1036
+ - Export general case report to PDF using PDFKit instead of WeasyPrint
1037
+ - Do not include coverage report in PDF case report since they might have different orientation
1038
+ - Export cancer cases's "Coverage and QC report" to PDF using PDFKit instead of Weasyprint
1039
+ - Updated cancer "Coverage and QC report" example
1040
+ - Keep portrait orientation in PDF delivery report
1041
+ - Export delivery report to PDF using PDFKit instead of Weasyprint
1042
+ - PDF export of clinical and research HPO panels using PDFKit instead of Weasyprint
1043
+ - Export gene panel report to PDF using PDFKit
1044
+ - Removed WeasyPrint lib dependency
1045
+
1046
+ ### Fixed
1047
+ - Reintroduced missing links to Swegen and Beacon and dbSNP in RD variant page, summary section
1048
+ - Demo delivery report orientation to fit new columns
1049
+ - Missing delivery report in demo case
1050
+ - Cast MNVs to SNV for test
1051
+ - Export verified variants from all institutes when user is admin
1052
+ - Cancer coverage and QC report not found for demo cancer case
1053
+ - Pull request template instructions on how to deploy to test server
1054
+ - PDF Delivery report not showing Swedac logo
1055
+ - Fix code typos
1056
+ - Disable codefactor raised by ESLint for javascript functions located on another file
1057
+ - Loading spinner stuck after downloading a PDF gene panel report
1058
+ - IGV browser crashing when file system with alignment files is not mounted
1059
+
1060
+ ## [4.47]
1061
+ ### Added
1062
+ - Added CADD, GnomAD and genotype calls to variantS export
1063
+ ### Changed
1064
+ - Pull request template, to illustrate how to deploy pull request branches on cg-vm1 stage server
1065
+ ### Fixed
1066
+ - Compiled Docker image contains a patched version (v4.9) of chanjo-report
1067
+
1068
+ ## [4.46.1]
1069
+ ### Fixed
1070
+ - Downloading of files generated within the app container (MT-report, verified variants, pedigrees, ..)
1071
+
1072
+ ## [4.46]
1073
+ ### Added
1074
+ - Created a Dockefile to be used to serve the dockerized app in production
1075
+ - Modified the code to collect database params specified as env vars
1076
+ - Created a GitHub action that pushes the Dockerfile-server image to Docker Hub (scout-server-stage) every time a PR is opened
1077
+ - Created a GitHub action that pushes the Dockerfile-server image to Docker Hub (scout-server) every time a new release is created
1078
+ - Reassign MatchMaker Exchange submission to another user when a Scout user is deleted
1079
+ - Expose public API JSON gene panels endpoint, primarily to enable automated rerun checking for updates
1080
+ - Add utils for dictionary type
1081
+ - Filter institute cases using multiple HPO terms
1082
+ - Vulture GitHub action to identify and remove unused variables and imports
1083
+ ### Changed
1084
+ - Updated the python config file documentation in admin guide
1085
+ - Case configuration parsing now uses Pydantic for improved typechecking and config handling
1086
+ - Removed test matrices to speed up automatic testing of PRs
1087
+ - Switch from Coveralls to Codecov to handle CI test coverage
1088
+ - Speed-up CI tests by caching installation of libs and splitting tests into randomized groups using pytest-test-groups
1089
+ - Improved LDAP login documentation
1090
+ - Use lib flask-ldapconn instead of flask_ldap3_login> to handle ldap authentication
1091
+ - Updated Managed variant documentation in user guide
1092
+ - Fix and simplify creating and editing of gene panels
1093
+ - Simplified gene variants search code
1094
+ - Increased the height of the genes track in the IGV viewer
1095
+ ### Fixed
1096
+ - Validate uploaded managed variant file lines, warning the user.
1097
+ - Exporting validated variants with missing "genes" database key
1098
+ - No results returned when searching for gene variants using a phenotype term
1099
+ - Variants filtering by gene symbols file
1100
+ - Make gene HGNC symbols field mandatory in gene variants page and run search only on form submit
1101
+ - Make sure collaborator gene variants are still visible, even if HPO filter is used
1102
+
1103
+ ## [4.45]
1104
+ ### Added
1105
+ ### Changed
1106
+ - Start Scout also when loqusdbapi is not reachable
1107
+ - Clearer definition of manual standard and custom inheritance models in gene panels
1108
+ - Allow searching multiple chromosomes in filters
1109
+ ### Fixed
1110
+ - Gene panel crashing on edit action
1111
+
1112
+ ## [4.44]
1113
+ ### Added
1114
+ ### Changed
1115
+ - Display Gene track beneath each sample track when displaying splice junctions in igv browser
1116
+ - Check outdated gene symbols and update with aliases for both RD and cancer variantS
1117
+ ### Fixed
1118
+ - Added query input check and fixed the Genes API endpoint to return a json formatted error when request is malformed
1119
+ - Typo in ACMG BP6 tooltip
1120
+
1121
+ ## [4.43.1]
1122
+ ### Added
1123
+ - Added database index for OMIM disease term genes
1124
+ ### Changed
1125
+ ### Fixed
1126
+ - Do not drop HPO terms collection when updating HPO terms via the command line
1127
+ - Do not drop disease (OMIM) terms collection when updating diseases via the command line
1128
+
1129
+ ## [4.43]
1130
+ ### Added
1131
+ - Specify which collection(s) update/build indexes for
1132
+ ### Fixed
1133
+ - Do not drop genes and transcripts collections when updating genes via the command line
1134
+
1135
+ ## [4.42.1]
1136
+ ### Added
1137
+ ### Changed
1138
+ ### Fixed
1139
+ - Freeze PyMongo lib to version<4.0 to keep supporting previous MongoDB versions
1140
+ - Speed up gene panels creation and update by collecting only light gene info from database
1141
+ - Avoid case page crash on Phenomizer queries timeout
1142
+
1143
+ ## [4.42]
1144
+ ### Added
1145
+ - Choose custom pinned variants to submit to MatchMaker Exchange
1146
+ - Submit structural variant as genes to the MatchMaker Exchange
1147
+ - Added function for maintainers and admins to remove gene panels
1148
+ - Admins can restore deleted gene panels
1149
+ - A development docker-compose file illustrating the scout/chanjo-report integration
1150
+ - Show AD on variants view for cancer SV (tumor and normal)
1151
+ - Cancer SV variants filter AD, AF (tumor and normal)
1152
+ - Hiding the variants score column also from cancer SVs, as for the SNVs
1153
+ ### Changed
1154
+ - Enforce same case _id and display_name when updating a case
1155
+ - Enforce same individual ids, display names and affected status when updating a case
1156
+ - Improved documentation for connecting to loqusdb instances (including loqusdbapi)
1157
+ - Display and download HPO gene panels' gene symbols in italics
1158
+ - A faster-built and lighter Docker image
1159
+ - Reduce complexity of `panels` endpoint moving some code to the panels controllers
1160
+ - Update requirements to use flask-ldap3-login>=0.9.17 instead of freezing WTForm
1161
+ ### Fixed
1162
+ - Use of deprecated TextField after the upgrade of WTF to v3.0
1163
+ - Freeze to WTForms to version < 3
1164
+ - Remove the extra files (bed files and madeline.svg) introduced by mistake
1165
+ - Cli command loading demo data in docker-compose when case custom images exist and is None
1166
+ - Increased MongoDB connection serverSelectionTimeoutMS parameter to 30K (default value according to MongoDB documentation)
1167
+ - Better differentiate old obs counts 0 vs N/A
1168
+ - Broken cancer variants page when default gene panel was deleted
1169
+ - Typo in tx_overview function in variant controllers file
1170
+ - Fixed loqusdbapi SV search URL
1171
+ - SV variants filtering using Decipher criterion
1172
+ - Removing old gene panels that don't contain the `maintainer` key.
1173
+
1174
+ ## [4.41.1]
1175
+ ### Fixed
1176
+ - General reports crash for variant annotations with same variant on other cases
1177
+
1178
+ ## [4.41]
1179
+ ### Added
1180
+ - Extended the instructions for running the Scout Docker image (web app and cli).
1181
+ - Enabled inclusion of custom images to STR variant view
1182
+ ### Fixed
1183
+ - General case report sorting comments for variants with None genetic models
1184
+ - Do not crash but redirect to variants page with error when a variant is not found for a case
1185
+ - UCSC links coordinates for SV variants with start chromosome different than end chromosome
1186
+ - Human readable variants name in case page for variants having start chromosome different from end chromosome
1187
+ - Avoid always loading all transcripts when checking gene symbol: introduce gene captions
1188
+ - Slow queries for evaluated variants on e.g. case page - use events instead
1189
+ ### Changed
1190
+ - Rearrange variant page again, moving severity predictions down.
1191
+ - More reactive layout width steps on variant page
1192
+
1193
+ ## [4.40.1]
1194
+ ### Added
1195
+ ### Fixed
1196
+ - Variants dismissed with inconsistent inheritance pattern can again be shown in general case report
1197
+ - General report page for variants with genes=None
1198
+ - General report crashing when variants have no panels
1199
+ - Added other missing keys to case and variant dictionaries passed to general report
1200
+ ### Changed
1201
+
1202
+ ## [4.40]
1203
+ ### Added
1204
+ - A .cff citation file
1205
+ - Phenotype search API endpoint
1206
+ - Added pagination to phenotype API
1207
+ - Extend case search to include internal MongoDB id
1208
+ - Support for connecting to a MongoDB replica set (.py config files)
1209
+ - Support for connecting to a MongoDB replica set (.yaml config files)
1210
+ ### Fixed
1211
+ - Command to load the OMIM gene panel (`scout load panel --omim`)
1212
+ - Unify style of pinned and causative variants' badges on case page
1213
+ - Removed automatic spaces after punctuation in comments
1214
+ - Remove the hardcoded number of total individuals from the variant's old observations panel
1215
+ - Send delete requests to a connected Beacon using the DELETE method
1216
+ - Layout of the SNV and SV variant page - move frequency up
1217
+ ### Changed
1218
+ - Stop updating database indexes after loading exons via command line
1219
+ - Display validation status badge also for not Sanger-sequenced variants
1220
+ - Moved Frequencies, Severity and Local observations panels up in RD variants page
1221
+ - Enabled Flask CORS to communicate CORS status to js apps
1222
+ - Moved the code preparing the transcripts overview to the backend
1223
+ - Refactored and filtered json data used in general case report
1224
+ - Changed the database used in docker-compose file to use the official MongoDB v4.4 image
1225
+ - Modified the Python (3.6, 3.8) and MongoDB (3.2, 4.4, 5.0) versions used in testing matrices (GitHub actions)
1226
+ - Capitalize case search terms on institute and dashboard pages
1227
+
1228
+
1229
+ ## [4.39]
1230
+ ### Added
1231
+ - COSMIC IDs collected from CSQ field named `COSMIC`
1232
+ ### Fixed
1233
+ - Link to other causative variants on variant page
1234
+ - Allow multiple COSMIC links for a cancer variant
1235
+ - Fix floating text in severity box #2808
1236
+ - Fixed MitoMap and HmtVar links for hg38 cases
1237
+ - Do not open new browser tabs when downloading files
1238
+ - Selectable IGV tracks on variant page
1239
+ - Missing splice junctions button on variant page
1240
+ - Refactor variantS representative gene selection, and use it also for cancer variant summary
1241
+ ### Changed
1242
+ - Improve Javascript performance for displaying Chromograph images
1243
+ - Make ClinVar classification more evident in cancer variant page
1244
+
1245
+ ## [4.38]
1246
+ ### Added
1247
+ - Option to hide Alamut button in the app config file
1248
+ ### Fixed
1249
+ - Library deprecation warning fixed (insert is deprecated. Use insert_one or insert_many instead)
1250
+ - Update genes command will not trigger an update of database indices any more
1251
+ - Missing resources in temporary downloading directory when updating genes using the command line
1252
+ - Restore previous variant ACMG classification in a scrollable div
1253
+ - Loading spinner not stopping after downloading PDF case reports and variant list export
1254
+ - Add extra Alamut links higher up on variant pages
1255
+ - Improve UX for phenotypes in case page
1256
+ - Filter and export of STR variants
1257
+ - Update look of variants page navigation buttons
1258
+ ### Changed
1259
+
1260
+ ## [4.37]
1261
+ ### Added
1262
+ - Highlight and show version number for RefSeq MANE transcripts.
1263
+ - Added integration to a rerunner service for toggling reanalysis with updated pedigree information
1264
+ - SpliceAI display and parsing from VEP CSQ
1265
+ - Display matching tiered variants for cancer variants
1266
+ - Display a loading icon (spinner) until the page loads completely
1267
+ - Display filter badges in cancer variants list
1268
+ - Update genes from pre-downloaded file resources
1269
+ - On login, OS, browser version and screen size are saved anonymously to understand how users are using Scout
1270
+ - API returning institutes data for a given user: `/api/v1/institutes`
1271
+ - API returning case data for a given institute: `/api/v1/institutes/<institute_id>/cases`
1272
+ - Added GMS and Lund university hospital logos to login page
1273
+ - Made display of Swedac logo configurable
1274
+ - Support for displaying custom images in case view
1275
+ - Individual-specific HPO terms
1276
+ - Optional alamut_key in institute settings for Alamut Plus software
1277
+ - Case report API endpoint
1278
+ - Tooltip in case explaining that genes with genome build different than case genome build will not be added to dynamic HPO panel.
1279
+ - Add DeepVariant as a caller
1280
+ ### Fixed
1281
+ - Updated IGV to v2.8.5 to solve missing gene labels on some zoom levels
1282
+ - Demo cancer case config file to load somatic SNVs and SVs only.
1283
+ - Expand list of refseq trancripts in ClinVar submission form
1284
+ - Renamed `All SNVs and INDELs` institute sidebar element to `Search SNVs and INDELs` and fixed its style.
1285
+ - Add missing parameters to case load-config documentation
1286
+ - Allow creating/editing gene panels and dynamic gene panels with genes present in genome build 38
1287
+ - Bugfix broken Pytests
1288
+ - Bulk dismissing variants error due to key conversion from string to integer
1289
+ - Fix typo in index documentation
1290
+ - Fixed crash in institute settings page if "collaborators" key is not set in database
1291
+ - Don't stop Scout execution if LoqusDB call fails and print stacktrace to log
1292
+ - Bug when case contains custom images with value `None`
1293
+ - Bug introduced when fixing another bug in Scout-LoqusDB interaction
1294
+ - Loading of OMIM diagnoses in Scout demo instance
1295
+ - Remove the docker-compose with chanjo integration because it doesn't work yet.
1296
+ - Fixed standard docker-compose with scout demo data and database
1297
+ - Clinical variant assessments not present for pinned and causative variants on case page.
1298
+ - MatchMaker matching one node at the time only
1299
+ - Remove link from previously tiered variants badge in cancer variants page
1300
+ - Typo in gene cell on cancer variants page
1301
+ - Managed variants filter form
1302
+ ### Changed
1303
+ - Better naming for variants buttons on cancer track (somatic, germline). Also show cancer research button if available.
1304
+ - Load case with missing panels in config files, but show warning.
1305
+ - Changing the (Female, Male) symbols to (F/M) letters in individuals_table and case-sma.
1306
+ - Print stacktrace if case load command fails
1307
+ - Added sort icon and a pointer to the cursor to all tables with sortable fields
1308
+ - Moved variant, gene and panel info from the basic pane to summary panel for all variants.
1309
+ - Renamed `Basics` panel to `Classify` on variant page.
1310
+ - Revamped `Basics` panel to a panel dedicated to classify variants
1311
+ - Revamped the summary panel to be more compact.
1312
+ - Added dedicated template for cancer variants
1313
+ - Removed Gene models, Gene annotations and Conservation panels for cancer variants
1314
+ - Reorganized the orders of panels for variant and cancer variant views
1315
+ - Added dedicated variant quality panel and removed relevant panes
1316
+ - A more compact case page
1317
+ - Removed OMIM genes panel
1318
+ - Make genes panel, pinned variants panel, causative variants panel and ClinVar panel scrollable on case page
1319
+ - Update to Scilifelab's 2020 logo
1320
+ - Update Gens URL to support Gens v2.0 format
1321
+ - Refactor tests for parsing case configurations
1322
+ - Updated links to HPO downloadable resources
1323
+ - Managed variants filtering defaults to all variant categories
1324
+ - Changing the (Kind) drop-down according to (Category) drop-down in Managed variant add variant
1325
+ - Moved Gens button to individuals table
1326
+ - Check resource files availability before starting updating OMIM diagnoses
1327
+ - Fix typo in `SHOW_OBSERVED_VARIANT_ARCHIVE` config param
1328
+
1329
+ ## [4.36]
1330
+ ### Added
1331
+ - Parse and save splice junction tracks from case config file
1332
+ - Tooltip in observations panel, explaining that case variants with no link might be old variants, not uploaded after a case rerun
1333
+ ### Fixed
1334
+ - Warning on overwriting variants with same position was no longer shown
1335
+ - Increase the height of the dropdowns to 425px
1336
+ - More indices for the case table as it grows, specifically for causatives queries
1337
+ - Splice junction tracks not centered over variant genes
1338
+ - Total number of research variants count
1339
+ - Update variants stats in case documents every time new variants are loaded
1340
+ - Bug in flashing warning messages when filtering variants
1341
+ ### Changed
1342
+ - Clearer warning messages for genes and gene/gene-panels searches in variants filters
1343
+
1344
+ ## [4.35]
1345
+ ### Added
1346
+ - A new index for hgnc_symbol in the hgnc_gene collection
1347
+ - A Pedigree panel in STR page
1348
+ - Display Tier I and II variants in case view causatives card for cancer cases
1349
+ ### Fixed
1350
+ - Send partial file data to igv.js when visualizing sashimi plots with splice junction tracks
1351
+ - Research variants filtering by gene
1352
+ - Do not attempt to populate annotations for not loaded pinned/causatives
1353
+ - Add max-height to all dropdowns in filters
1354
+ ### Changed
1355
+ - Switch off non-clinical gene warnings when filtering research variants
1356
+ - Don't display OMIM disease card in case view for cancer cases
1357
+ - Refactored Individuals and Causative card in case view for cancer cases
1358
+ - Update and style STR case report
1359
+
1360
+ ## [4.34]
1361
+ ### Added
1362
+ - Saved filter lock and unlock
1363
+ - Filters can optionally be marked audited, logging the filter name, user and date on the case events and general report.
1364
+ - Added `ClinVar hits` and `Cosmic hits` in cancer SNVs filters
1365
+ - Added `ClinVar hits` to variants filter (rare disease track)
1366
+ - Load cancer demo case in docker-compose files (default and demo file)
1367
+ - Inclusive-language check using [woke](https://github.com/get-woke/woke) github action
1368
+ - Add link to HmtVar for mitochondrial variants (if VCF is annotated with HmtNote)
1369
+ - Grey background for dismissed compounds in variants list and variant page
1370
+ - Pin badge for pinned compounds in variants list and variant page
1371
+ - Support LoqusDB REST API queries
1372
+ - Add a docker-compose-matchmaker under scout/containers/development to test matchmaker locally
1373
+ - Script to investigate consequences of symbol search bug
1374
+ - Added GATK to list of SV and cancer SV callers
1375
+ ### Fixed
1376
+ - Make MitoMap link work for hg38 again
1377
+ - Export Variants feature crashing when one of the variants has no primary transcripts
1378
+ - Redirect to last visited variantS page when dismissing variants from variants list
1379
+ - Improved matching of SVs Loqus occurrences in other cases
1380
+ - Remove padding from the list inside (Matching causatives from other cases) panel
1381
+ - Pass None to get_app function in CLI base since passing script_info to app factory functions was deprecated in Flask 2.0
1382
+ - Fixed failing tests due to Flask update to version 2.0
1383
+ - Speed up user events view
1384
+ - Causative view sort out of memory error
1385
+ - Use hgnc_id for gene filter query
1386
+ - Typo in case controllers displaying an error every time a patient is matched against external MatchMaker nodes
1387
+ - Do not crash while attempting an update for variant documents that are too big (> 16 MB)
1388
+ - Old STR causatives (and other variants) may not have HGNC symbols - fix sort lambda
1389
+ - Check if gene_obj has primary_transcript before trying to access it
1390
+ - Warn if a gene manually searched is in a clinical panel with an outdated name when filtering variants
1391
+ - ChrPos split js not needed on STR page yet
1392
+ ### Changed
1393
+ - Remove parsing of case `genome_version`, since it's not used anywhere downstream
1394
+ - Introduce deprecation warning for Loqus configs that are not dictionaries
1395
+ - SV clinical filter no longer filters out sub 100 nt variants
1396
+ - Count cases in LoqusDB by variant type
1397
+ - Commit pulse repo badge temporarily set to weekly
1398
+ - Sort ClinVar submissions objects by ascending "Last evaluated" date
1399
+ - Refactored the MatchMaker integration as an extension
1400
+ - Replaced some sensitive words as suggested by woke linter
1401
+ - Documentation for load-configuration rewritten.
1402
+ - Add styles to MatchMaker matches table
1403
+ - More detailed info on the data shared in MatchMaker submission form
1404
+
1405
+ ## [4.33.1]
1406
+ ### Fixed
1407
+ - Include markdown for release autodeploy docs
1408
+ - Use standard inheritance model in ClinVar (https://ftp.ncbi.nlm.nih.gov/pub/GTR/standard_terms/Mode_of_inheritance.txt)
1409
+ - Fix issue crash with variants that have been unflagged causative not being available in other causatives
1410
+ ### Added
1411
+ ### Changed
1412
+
1413
+ ## [4.33]
1414
+ ### Fixed
1415
+ - Command line crashing when updating an individual not found in database
1416
+ - Dashboard page crashing when filters return no data
1417
+ - Cancer variants filter by chromosome
1418
+ - /api/v1/genes now searches for genes in all genome builds by default
1419
+ - Upgraded igv.js to version 2.8.1 (Fixed Unparsable bed record error)
1420
+ ### Added
1421
+ - Autodeploy docs on release
1422
+ - Documentation for updating case individuals tracks
1423
+ - Filter cases and dashboard stats by analysis track
1424
+ ### Changed
1425
+ - Changed from deprecated db update method
1426
+ - Pre-selected fields to run queries with in dashboard page
1427
+ - Do not filter by any institute when first accessing the dashboard
1428
+ - Removed OMIM panel in case view for cancer cases
1429
+ - Display Tier I and II variants in case view causatives panel for cancer cases
1430
+ - Refactored Individuals and Causative panels in case view for cancer cases
1431
+
1432
+ ## [4.32.1]
1433
+ ### Fixed
1434
+ - iSort lint check only
1435
+ ### Changed
1436
+ - Institute cases page crashing when a case has track:Null
1437
+ ### Added
1438
+
1439
+ ## [4.32]
1440
+ ### Added
1441
+ - Load and show MITOMAP associated diseases from VCF (INFO field: MitomapAssociatedDiseases, via HmtNote)
1442
+ - Show variant allele frequencies for mitochondrial variants (GRCh38 cases)
1443
+ - Extend "public" json API with diseases (OMIM) and phenotypes (HPO)
1444
+ - HPO gene list download now has option for clinical and non-clinical genes
1445
+ - Display gene splice junctions data in sashimi plots
1446
+ - Update case individuals with splice junctions tracks
1447
+ - Simple Docker compose for development with local build
1448
+ - Make Phenomodels subpanels collapsible
1449
+ - User side documentation of cytogenomics features (Gens, Chromograph, vcf2cytosure, rhocall)
1450
+ - iSort GitHub Action
1451
+ - Support LoqusDB REST API queries
1452
+ ### Fixed
1453
+ - Show other causative once, even if several events point to it
1454
+ - Filtering variants by mitochondrial chromosome for cases with genome build=38
1455
+ - HPO gene search button triggers any warnings for clinical / non-existing genes also on first search
1456
+ - Fixed a bug in variants pages caused by MT variants without alt_frequency
1457
+ - Tests for CADD score parsing function
1458
+ - Fixed the look of IGV settings on SNV variant page
1459
+ - Cases analyzed once shown as `rerun`
1460
+ - Missing case track on case re-upload
1461
+ - Fixed severity rank for SO term "regulatory region ablation"
1462
+ ### Changed
1463
+ - Refactor according to CodeFactor - mostly reuse of duplicated code
1464
+ - Phenomodels language adjustment
1465
+ - Open variants in a new window (from variants page)
1466
+ - Open overlapping and compound variants in a new window (from variant page)
1467
+ - gnomAD link points to gnomAD v.3 (build GRCh38) for mitochondrial variants.
1468
+ - Display only number of affected genes for dismissed SVs in general report
1469
+ - Chromosome build check when populating the variants filter chromosome selection
1470
+ - Display mitochondrial and rare diseases coverage report in cases with missing 'rare' track
1471
+
1472
+ ## [4.31.1]
1473
+ ### Added
1474
+ ### Changed
1475
+ - Remove mitochondrial and coverage report from cancer cases sidebar
1476
+ ### Fixed
1477
+ - ClinVar page when dbSNP id is None
1478
+
1479
+ ## [4.31]
1480
+ ### Added
1481
+ - gnomAD annotation field in admin guide
1482
+ - Export also dynamic panel genes not associated to an HPO term when downloading the HPO panel
1483
+ - Primary HGNC transcript info in variant export files
1484
+ - Show variant quality (QUAL field from vcf) in the variant summary
1485
+ - Load/update PDF gene fusion reports (clinical and research) generated with Arriba
1486
+ - Support new MANE annotations from VEP (both MANE Select and MANE Plus Clinical)
1487
+ - Display on case activity the event of a user resetting all dismissed variants
1488
+ - Support gnomAD population frequencies for mitochondrial variants
1489
+ - Anchor links in Casedata ClinVar panels to redirect after renaming individuals
1490
+ ### Fixed
1491
+ - Replace old docs link www.clinicalgenomics.se/scout with new https://clinical-genomics.github.io/scout
1492
+ - Page formatting issues whenever case and variant comments contain extremely long strings with no spaces
1493
+ - Chromograph images can be one column and have scrollbar. Removed legacy code.
1494
+ - Column labels for ClinVar case submission
1495
+ - Page crashing looking for LoqusDB observation when variant doesn't exist
1496
+ - Missing inheritance models and custom inheritance models on newly created gene panels
1497
+ - Accept only numbers in managed variants filter as position and end coordinates
1498
+ - SNP id format and links in Variant page, ClinVar submission form and general report
1499
+ - Case groups tooltip triggered only when mouse is on the panel header
1500
+ ### Changed
1501
+ - A more compact case groups panel
1502
+ - Added landscape orientation CSS style to cancer coverage and QC demo report
1503
+ - Improve user documentation to create and save new gene panels
1504
+ - Removed option to use space as separator when uploading gene panels
1505
+ - Separating the columns of standard and custom inheritance models in gene panels
1506
+ - Improved ClinVar instructions for users using non-English Excel
1507
+
1508
+ ## [4.30.2]
1509
+ ### Added
1510
+ ### Fixed
1511
+ - Use VEP RefSeq ID if RefSeq list is empty in RefSeq transcripts overview
1512
+ - Bug creating variant links for variants with no end_chrom
1513
+ ### Changed
1514
+
1515
+ ## [4.30.1]
1516
+ ### Added
1517
+ ### Fixed
1518
+ - Cryptography dependency fixed to use version < 3.4
1519
+ ### Changed
1520
+
1521
+ ## [4.30]
1522
+ ### Added
1523
+ - Introduced a `reset dismiss variant` verb
1524
+ - Button to reset all dismissed variants for a case
1525
+ - Add black border to Chromograph ideograms
1526
+ - Show ClinVar annotations on variantS page
1527
+ - Added integration with GENS, copy number visualization tool
1528
+ - Added a VUS label to the manual classification variant tags
1529
+ - Add additional information to SNV verification emails
1530
+ - Tooltips documenting manual annotations from default panels
1531
+ - Case groups now show bam files from all cases on align view
1532
+ ### Fixed
1533
+ - Center initial igv view on variant start with SNV/indels
1534
+ - Don't set initial igv view to negative coordinates
1535
+ - Display of GQ for SV and STR
1536
+ - Parsing of AD and related info for STRs
1537
+ - LoqusDB field in institute settings accepts only existing Loqus instances
1538
+ - Fix DECIPHER link to work after DECIPHER migrated to GRCh38
1539
+ - Removed visibility window param from igv.js genes track
1540
+ - Updated HPO download URL
1541
+ - Patch HPO download test correctly
1542
+ - Reference size on STR hover not needed (also wrong)
1543
+ - Introduced genome build check (allowed values: 37, 38, "37", "38") on case load
1544
+ - Improve case searching by assignee full name
1545
+ - Populating the LoqusDB select in institute settings
1546
+ ### Changed
1547
+ - Cancer variants table header (pop freq etc)
1548
+ - Only admin users can modify LoqusDB instance in Institute settings
1549
+ - Style of case synopsis, variants and case comments
1550
+ - Switched to igv.js 2.7.5
1551
+ - Do not choke if case is missing research variants when research requested
1552
+ - Count cases in LoqusDB by variant type
1553
+ - Introduce deprecation warning for Loqus configs that are not dictionaries
1554
+ - Improve create new gene panel form validation
1555
+ - Make XM- transcripts less visible if they don't overlap with transcript refseq_id in variant page
1556
+ - Color of gene panels and comments panels on cases and variant pages
1557
+ - Do not choke if case is missing research variants when reserch requested
1558
+
1559
+ ## [4.29.1]
1560
+ ### Added
1561
+ ### Fixed
1562
+ - Always load STR variants regardless of RankScore threshold (hotfix)
1563
+ ### Changed
1564
+
1565
+ ## [4.29]
1566
+ ### Added
1567
+ - Added a page about migrating potentially breaking changes to the documentation
1568
+ - markdown_include in development requirements file
1569
+ - STR variants filter
1570
+ - Display source, Z-score, inheritance pattern for STR annotations from Stranger (>0.6.1) if available
1571
+ - Coverage and quality report to cancer view
1572
+ ### Fixed
1573
+ - ACMG classification page crashing when trying to visualize a classification that was removed
1574
+ - Pretty print HGVS on gene variants (URL-decode VEP)
1575
+ - Broken or missing link in the documentation
1576
+ - Multiple gene names in ClinVar submission form
1577
+ - Inheritance model select field in ClinVar submission
1578
+ - IGV.js >2.7.0 has an issue with the gene track zoom levels - temp freeze at 2.7.0
1579
+ - Revert CORS-anywhere and introduce a local http proxy for cloud tracks
1580
+ ### Changed
1581
+
1582
+ ## [4.28]
1583
+ ### Added
1584
+ - Chromograph integration for displaying PNGs in case-page
1585
+ - Add VAF to cancer case general report, and remove some of its unused fields
1586
+ - Variants filter compatible with genome browser location strings
1587
+ - Support for custom public igv tracks stored on the cloud
1588
+ - Add tests to increase testing coverage
1589
+ - Update case variants count after deleting variants
1590
+ - Update IGV.js to latest (v2.7.4)
1591
+ - Bypass igv.js CORS check using `https://github.com/Rob--W/cors-anywhere`
1592
+ - Documentation on default and custom IGV.js tracks (admin docs)
1593
+ - Lock phenomodels so they're editable by admins only
1594
+ - Small case group assessment sharing
1595
+ - Tutorial and files for deploying app on containers (Kubernetes pods)
1596
+ - Canonical transcript and protein change of canonical transcript in exported variants excel sheet
1597
+ - Support for Font Awesome version 6
1598
+ - Submit to Beacon from case page sidebar
1599
+ - Hide dismissed variants in variants pages and variants export function
1600
+ - Systemd service files and instruction to deploy Scout using podman
1601
+ ### Fixed
1602
+ - Bugfix: unused `chromgraph_prefix |tojson` removed
1603
+ - Freeze coloredlogs temporarily
1604
+ - Marrvel link
1605
+ - Don't show TP53 link for silent or synonymous changes
1606
+ - OMIM gene field accepts any custom number as OMIM gene
1607
+ - Fix Pytest single quote vs double quote string
1608
+ - Bug in gene variants search by similar cases and no similar case is found
1609
+ - Delete unused file `userpanel.py`
1610
+ - Primary transcripts in variant overview and general report
1611
+ - Google OAuth2 login setup in README file
1612
+ - Redirect to 'missing file'-icon if configured Chromograph file is missing
1613
+ - Javascript error in case page
1614
+ - Fix compound matching during variant loading for hg38
1615
+ - Cancer variants view containing variants dismissed with cancer-specific reasons
1616
+ - Zoom to SV variant length was missing IGV contig select
1617
+ - Tooltips on case page when case has no default gene panels
1618
+ ### Changed
1619
+ - Save case variants count in case document and not in sessions
1620
+ - Style of gene panels multiselect on case page
1621
+ - Collapse/expand main HPO checkboxes in phenomodel preview
1622
+ - Replaced GQ (Genotype quality) with VAF (Variant allele frequency) in cancer variants GT table
1623
+ - Allow loading of cancer cases with no tumor_purity field
1624
+ - Truncate cDNA and protein changes in case report if longer than 20 characters
1625
+
1626
+
1627
+ ## [4.27]
1628
+ ### Added
1629
+ - Exclude one or more variant categories when running variants delete command
1630
+ ### Fixed
1631
+ ### Changed
1632
+
1633
+ ## [4.26.1]
1634
+ ### Added
1635
+ ### Fixed
1636
+ - Links with 1-letter aa codes crash on frameshift etc
1637
+ ### Changed
1638
+
1639
+ ## [4.26]
1640
+ ### Added
1641
+ - Extend the delete variants command to print analysis date, track, institute, status and research status
1642
+ - Delete variants by type of analysis (wgs|wes|panel)
1643
+ - Links to cBioPortal, MutanTP53, IARC TP53, OncoKB, MyCancerGenome, CIViC
1644
+ ### Fixed
1645
+ - Deleted variants count
1646
+ ### Changed
1647
+ - Print output of variants delete command as a tab separated table
1648
+
1649
+ ## [4.25]
1650
+ ### Added
1651
+ - Command line function to remove variants from one or all cases
1652
+ ### Fixed
1653
+ - Parse SMN None calls to None rather than False
1654
+
1655
+ ## [4.24.1]
1656
+ ### Fixed
1657
+ - Install requirements.txt via setup file
1658
+
1659
+ ## [4.24]
1660
+ ### Added
1661
+ - Institute-level phenotype models with sub-panels containing HPO and OMIM terms
1662
+ - Runnable Docker demo
1663
+ - Docker image build and push github action
1664
+ - Makefile with shortcuts to docker commands
1665
+ - Parse and save synopsis, phenotype and cohort terms from config files upon case upload
1666
+ ### Fixed
1667
+ - Update dismissed variant status when variant dismissed key is missing
1668
+ - Breakpoint two IGV button now shows correct chromosome when different from bp1
1669
+ - Missing font lib in Docker image causing the PDF report download page to crash
1670
+ - Sentieon Manta calls lack Somaticscore - load anyway
1671
+ - ClinVar submissions crashing due to pinned variants that are not loaded
1672
+ - Point ExAC pLI score to new gnomad server address
1673
+ - Bug uploading cases missing phenotype terms in config file
1674
+ - STRs loaded but not shown on browser page
1675
+ - Bug when using adapter.variant.get_causatives with case_id without causatives
1676
+ - Problem with fetching "solved" from scout export cases cli
1677
+ - Better serialising of datetime and bson.ObjectId
1678
+ - Added `volumes` folder to .gitignore
1679
+ ### Changed
1680
+ - Make matching causative and managed variants foldable on case page
1681
+ - Remove calls to PyMongo functions marked as deprecated in backend and frontend(as of version 3.7).
1682
+ - Improved `scout update individual` command
1683
+ - Export dynamic phenotypes with ordered gene lists as PDF
1684
+
1685
+
1686
+ ## [4.23]
1687
+ ### Added
1688
+ - Save custom IGV track settings
1689
+ - Show a flash message with clear info about non-valid genes when gene panel creation fails
1690
+ - CNV report link in cancer case side navigation
1691
+ - Return to comment section after editing, deleting or submitting a comment
1692
+ - Managed variants
1693
+ - MT vs 14 chromosome mean coverage stats if Scout is connected to Chanjo
1694
+ ### Fixed
1695
+ - missing `vcf_cancer_sv` and `vcf_cancer_sv_research` to manual.
1696
+ - Split ClinVar multiple clnsig values (slash-separated) and strip them of underscore for annotations without accession number
1697
+ - Timeout of `All SNVs and INDELs` page when no valid gene is provided in the search
1698
+ - Round CADD (MIPv9)
1699
+ - Missing default panel value
1700
+ - Invisible other causatives lines when other causatives lack gene symbols
1701
+ ### Changed
1702
+ - Do not freeze mkdocs-material to version 4.6.1
1703
+ - Remove pre-commit dependency
1704
+
1705
+ ## [4.22]
1706
+ ### Added
1707
+ - Editable cases comments
1708
+ - Editable variants comments
1709
+ ### Fixed
1710
+ - Empty variant activity panel
1711
+ - STRs variants popover
1712
+ - Split new ClinVar multiple significance terms for a variant
1713
+ - Edit the selected comment, not the latest
1714
+ ### Changed
1715
+ - Updated RELEASE docs.
1716
+ - Pinned variants card style on the case page
1717
+ - Merged `scout export exons` and `scout view exons` commands
1718
+
1719
+
1720
+ ## [4.21.2]
1721
+ ### Added
1722
+ ### Fixed
1723
+ - Do not pre-filter research variants by (case-default) gene panels
1724
+ - Show OMIM disease tooltip reliably
1725
+ ### Changed
1726
+
1727
+ ## [4.21.1]
1728
+ ### Added
1729
+ ### Fixed
1730
+ - Small change to Pop Freq column in variants ang gene panels to avoid strange text shrinking on small screens
1731
+ - Direct use of HPO list for Clinical HPO SNV (and cancer SNV) filtering
1732
+ - PDF coverage report redirecting to login page
1733
+ ### Changed
1734
+ - Remove the option to dismiss single variants from all variants pages
1735
+ - Bulk dismiss SNVs, SVs and cancer SNVs from variants pages
1736
+
1737
+ ## [4.21]
1738
+ ### Added
1739
+ - Support to configure LoqusDB per institute
1740
+ - Highlight causative variants in the variants list
1741
+ - Add tests. Mostly regarding building internal datatypes.
1742
+ - Remove leading and trailing whitespaces from panel_name and display_name when panel is created
1743
+ - Mark MANE transcript in list of transcripts in "Transcript overview" on variant page
1744
+ - Show default panel name in case sidebar
1745
+ - Previous buttons for variants pagination
1746
+ - Adds a gh action that checks that the changelog is updated
1747
+ - Adds a gh action that deploys new releases automatically to pypi
1748
+ - Warn users if case default panels are outdated
1749
+ - Define institute-specific gene panels for filtering in institute settings
1750
+ - Use institute-specific gene panels in variants filtering
1751
+ - Show somatic VAF for pinned and causative variants on case page
1752
+
1753
+ ### Fixed
1754
+ - Report pages redirect to login instead of crashing when session expires
1755
+ - Variants filter loading in cancer variants page
1756
+ - User, Causative and Cases tables not scaling to full page
1757
+ - Improved docs for an initial production setup
1758
+ - Compatibility with latest version of Black
1759
+ - Fixed tests for Click>7
1760
+ - Clinical filter required an extra click to Filter to return variants
1761
+ - Restore pagination and shrink badges in the variants page tables
1762
+ - Removing a user from the command line now inactivates the case only if user is last assignee and case is active
1763
+ - Bugfix, LoqusDB per institute feature crashed when institute id was empty string
1764
+ - Bugfix, LoqusDB calls where missing case count
1765
+ - filter removal and upload for filters deleted from another page/other user
1766
+ - Visualize outdated gene panels info in a popover instead of a tooltip in case page side panel
1767
+
1768
+ ### Changed
1769
+ - Highlight color on normal STRs in the variants table from green to blue
1770
+ - Display breakpoints coordinates in verification emails only for structural variants
1771
+
1772
+
1773
+ ## [4.20]
1774
+ ### Added
1775
+ - Display number of filtered variants vs number of total variants in variants page
1776
+ - Search case by HPO terms
1777
+ - Dismiss variant column in the variants tables
1778
+ - Black and pre-commit packages to dev requirements
1779
+
1780
+ ### Fixed
1781
+ - Bug occurring when rerun is requested twice
1782
+ - Peddy info fields in the demo config file
1783
+ - Added load config safety check for multiple alignment files for one individual
1784
+ - Formatting of cancer variants table
1785
+ - Missing Score in SV variants table
1786
+
1787
+ ### Changed
1788
+ - Updated the documentation on how to create a new software release
1789
+ - Genome build-aware cytobands coordinates
1790
+ - Styling update of the Matchmaker card
1791
+ - Select search type in case search form
1792
+
1793
+
1794
+ ## [4.19]
1795
+
1796
+ ### Added
1797
+ - Show internal ID for case
1798
+ - Add internal ID for downloaded CGH files
1799
+ - Export dynamic HPO gene list from case page
1800
+ - Remove users as case assignees when their account is deleted
1801
+ - Keep variants filters panel expanded when filters have been used
1802
+
1803
+ ### Fixed
1804
+ - Handle the ProxyFix ModuleNotFoundError when Werkzeug installed version is >1.0
1805
+ - General report formatting issues whenever case and variant comments contain extremely long strings with no spaces
1806
+
1807
+ ### Changed
1808
+ - Created an institute wrapper page that contains list of cases, causatives, SNVs & Indels, user list, shared data and institute settings
1809
+ - Display case name instead of case ID on clinVar submissions
1810
+ - Changed icon of sample update in clinVar submissions
1811
+
1812
+
1813
+ ## [4.18]
1814
+
1815
+ ### Added
1816
+ - Filter cancer variants on cytoband coordinates
1817
+ - Show dismiss reasons in a badge with hover for clinical variants
1818
+ - Show an ellipsis if 10 cases or more to display with loqusdb matches
1819
+ - A new blog post for version 4.17
1820
+ - Tooltip to better describe Tumor and Normal columns in cancer variants
1821
+ - Filter cancer SNVs and SVs by chromosome coordinates
1822
+ - Default export of `Assertion method citation` to clinVar variants submission file
1823
+ - Button to export up to 500 cancer variants, filtered or not
1824
+ - Rename samples of a clinVar submission file
1825
+
1826
+ ### Fixed
1827
+ - Apply default gene panel on return to cancer variantS from variant view
1828
+ - Revert to certificate checking when asking for Chanjo reports
1829
+ - `scout download everything` command failing while downloading HPO terms
1830
+
1831
+ ### Changed
1832
+ - Turn tumor and normal allelic fraction to decimal numbers in tumor variants page
1833
+ - Moved clinVar submissions code to the institutes blueprints
1834
+ - Changed name of clinVar export files to FILENAME.Variant.csv and FILENAME.CaseData.csv
1835
+ - Switched Google login libraries from Flask-OAuthlib to Authlib
1836
+
1837
+
1838
+ ## [4.17.1]
1839
+
1840
+ ### Fixed
1841
+ - Load cytobands for cases with chromosome build not "37" or "38"
1842
+
1843
+
1844
+ ## [4.17]
1845
+
1846
+ ### Added
1847
+ - COSMIC badge shown in cancer variants
1848
+ - Default gene-panel in non-cancer structural view in url
1849
+ - Filter SNVs and SVs by cytoband coordinates
1850
+ - Filter cancer SNV variants by alt allele frequency in tumor
1851
+ - Correct genome build in UCSC link from structural variant page
1852
+
1853
+
1854
+
1855
+ ### Fixed
1856
+ - Bug in clinVar form when variant has no gene
1857
+ - Bug when sharing cases with the same institute twice
1858
+ - Page crashing when removing causative variant tag
1859
+ - Do not default to GATK caller when no caller info is provided for cancer SNVs
1860
+
1861
+
1862
+ ## [4.16.1]
1863
+
1864
+ ### Fixed
1865
+ - Fix the fix for handling of delivery reports for rerun cases
1866
+
1867
+ ## [4.16]
1868
+
1869
+ ### Added
1870
+ - Adds possibility to add "lims_id" to cases. Currently only stored in database, not shown anywhere
1871
+ - Adds verification comment box to SVs (previously only available for small variants)
1872
+ - Scrollable pedigree panel
1873
+
1874
+ ### Fixed
1875
+ - Error caused by changes in WTForm (new release 2.3.x)
1876
+ - Bug in OMIM case page form, causing the page to crash when a string was provided instead of a numerical OMIM id
1877
+ - Fix Alamut link to work properly on hg38
1878
+ - Better handling of delivery reports for rerun cases
1879
+ - Small CodeFactor style issues: matchmaker results counting, a couple of incomplete tests and safer external xml
1880
+ - Fix an issue with Phenomizer introduced by CodeFactor style changes
1881
+
1882
+ ### Changed
1883
+ - Updated the version of igv.js to 2.5.4
1884
+
1885
+ ## [4.15.1]
1886
+
1887
+ ### Added
1888
+ - Display gene names in ClinVar submissions page
1889
+ - Links to Varsome in variant transcripts table
1890
+
1891
+ ### Fixed
1892
+ - Small fixes to ClinVar submission form
1893
+ - Gene panel page crash when old panel has no maintainers
1894
+
1895
+ ## [4.15]
1896
+
1897
+ ### Added
1898
+ - Clinvar CNVs IGV track
1899
+ - Gene panels can have maintainers
1900
+ - Keep variant actions (dismissed, manual rank, mosaic, acmg, comments) upon variant re-upload
1901
+ - Keep variant actions also on full case re-upload
1902
+
1903
+ ### Fixed
1904
+ - Fix the link to Ensembl for SV variants when genome build 38.
1905
+ - Arrange information in columns on variant page
1906
+ - Fix so that new cosmic identifier (COSV) is also acceptable #1304
1907
+ - Fixed COSMIC tag in INFO (outside of CSQ) to be parses as well with `&` splitter.
1908
+ - COSMIC stub URL changed to https://cancer.sanger.ac.uk/cosmic/search?q= instead.
1909
+ - Updated to a version of IGV where bigBed tracks are visualized correctly
1910
+ - Clinvar submission files are named according to the content (variant_data and case_data)
1911
+ - Always show causatives from other cases in case overview
1912
+ - Correct disease associations for gene symbol aliases that exist as separate genes
1913
+ - Re-add "custom annotations" for SV variants
1914
+ - The override ClinVar P/LP add-in in the Clinical Filter failed for new CSQ strings
1915
+
1916
+ ### Changed
1917
+ - Runs all CI checks in github actions
1918
+
1919
+ ## [4.14.1]
1920
+
1921
+ ### Fixed
1922
+ - Error when variant found in loqusdb is not loaded for other case
1923
+
1924
+ ## [4.14]
1925
+
1926
+ ### Added
1927
+ - Use github actions to run tests
1928
+ - Adds CLI command to update individual alignments path
1929
+ - Update HPO terms using downloaded definitions files
1930
+ - Option to use alternative flask config when running `scout serve`
1931
+ - Requirement to use loqusdb >= 2.5 if integrated
1932
+
1933
+ ### Fixed
1934
+ - Do not display Pedigree panel in cancer view
1935
+ - Do not rely on internet connection and services available when running CI tests
1936
+ - Variant loading assumes GATK if no caller set given and GATK filter status is seen in FILTER
1937
+ - Pass genome build param all the way in order to get the right gene mappings for cases with build 38
1938
+ - Parse correctly variants with zero frequency values
1939
+ - Continue even if there are problems to create a region vcf
1940
+ - STR and cancer variant navigation back to variants pages could fail
1941
+
1942
+ ### Changed
1943
+ - Improved code that sends requests to the external APIs
1944
+ - Updates ranges for user ranks to fit todays usage
1945
+ - Run coveralls on github actions instead of travis
1946
+ - Run pip checks on github actions instead of coveralls
1947
+ - For hg38 cases, change gnomAD link to point to version 3.0 (which is hg38 based)
1948
+ - Show pinned or causative STR variants a bit more human readable
1949
+
1950
+ ## [4.13.1]
1951
+
1952
+ ### Added
1953
+ ### Fixed
1954
+ - Typo that caused not all clinvar conflicting interpretations to be loaded no matter what
1955
+ - Parse and retrieve clinvar annotations from VEP-annotated (VEP 97+) CSQ VCF field
1956
+ - Variant clinvar significance shown as `not provided` whenever is `Uncertain significance`
1957
+ - Phenomizer query crashing when case has no HPO terms assigned
1958
+ - Fixed a bug affecting `All SNVs and INDELs` page when variants don't have canonical transcript
1959
+ - Add gene name or id in cancer variant view
1960
+
1961
+ ### Changed
1962
+ - Cancer Variant view changed "Variant:Transcript:Exon:HGVS" to "Gene:Transcript:Exon:HGVS"
1963
+
1964
+ ## [4.13]
1965
+
1966
+ ### Added
1967
+ - ClinVar SNVs track in IGV
1968
+ - Add SMA view with SMN Copy Number data
1969
+ - Easier to assign OMIM diagnoses from case page
1970
+ - OMIM terms and specific OMIM term page
1971
+
1972
+ ### Fixed
1973
+ - Bug when adding a new gene to a panel
1974
+ - Restored missing recent delivery reports
1975
+ - Fixed style and links to other reports in case side panel
1976
+ - Deleting cases using display_name and institute not deleting its variants
1977
+ - Fixed bug that caused coordinates filter to override other filters
1978
+ - Fixed a problem with finding some INS in loqusdb
1979
+ - Layout on SV page when local observations without cases are present
1980
+ - Make scout compatible with the new HPO definition files from `http://compbio.charite.de/jenkins/`
1981
+ - General report visualization error when SNVs display names are very long
1982
+
1983
+
1984
+ ### Changed
1985
+
1986
+
1987
+ ## [4.12.4]
1988
+
1989
+ ### Fixed
1990
+ - Layout on SV page when local observations without cases are present
1991
+
1992
+ ## [4.12.3]
1993
+
1994
+ ### Fixed
1995
+ - Case report when causative or pinned SVs have non null allele frequencies
1996
+
1997
+ ## [4.12.2]
1998
+
1999
+ ### Fixed
2000
+ - SV variant links now take you to the SV variant page again
2001
+ - Cancer variant view has cleaner table data entries for "N/A" data
2002
+ - Pinned variant case level display hotfix for cancer and str - more on this later
2003
+ - Cancer variants show correct alt/ref reads mirroring alt frequency now
2004
+ - Always load all clinical STR variants even if a region load is attempted - index may be missing
2005
+ - Same case repetition in variant local observations
2006
+
2007
+ ## [4.12.1]
2008
+
2009
+ ### Fixed
2010
+ - Bug in variant.gene when gene has no HGVS description
2011
+
2012
+
2013
+ ## [4.12]
2014
+
2015
+ ### Added
2016
+ - Accepts `alignment_path` in load config to pass bam/cram files
2017
+ - Display all phenotypes on variant page
2018
+ - Display hgvs coordinates on pinned and causatives
2019
+ - Clear panel pending changes
2020
+ - Adds option to setup the database with static files
2021
+ - Adds cli command to download the resources from CLI that scout needs
2022
+ - Adds test files for merged somatic SV and CNV; as well as merged SNV, and INDEL part of #1279
2023
+ - Allows for upload of OMIM-AUTO gene panel from static files without api-key
2024
+
2025
+ ### Fixed
2026
+ - Cancer case HPO panel variants link
2027
+ - Fix so that some drop downs have correct size
2028
+ - First IGV button in str variants page
2029
+ - Cancer case activates on SNV variants
2030
+ - Cases activate when STR variants are viewed
2031
+ - Always calculate code coverage
2032
+ - Pinned/Classification/comments in all types of variants pages
2033
+ - Null values for panel's custom_inheritance_models
2034
+ - Discrepancy between the manual disease transcripts and those in database in gene-edit page
2035
+ - ACMG classification not showing for some causatives
2036
+ - Fix bug which caused IGV.js to use hg19 reference files for hg38 data
2037
+ - Bug when multiple bam files sources with non-null values are available
2038
+
2039
+
2040
+ ### Changed
2041
+ - Renamed `requests` file to `scout_requests`
2042
+ - Cancer variant view shows two, instead of four, decimals for allele and normal
2043
+
2044
+
2045
+ ## [4.11.1]
2046
+
2047
+ ### Fixed
2048
+ - Institute settings page
2049
+ - Link institute settings to sharing institutes choices
2050
+
2051
+ ## [4.11.0]
2052
+
2053
+ ### Added
2054
+ - Display locus name on STR variant page
2055
+ - Alternative key `GNOMADAF_popmax` for Gnomad popmax allele frequency
2056
+ - Automatic suggestions on how to improve the code on Pull Requests
2057
+ - Parse GERP, phastCons and phyloP annotations from vep annotated CSQ fields
2058
+ - Avoid flickering comment popovers in variant list
2059
+ - Parse REVEL score from vep annotated CSQ fields
2060
+ - Allow users to modify general institute settings
2061
+ - Optionally format code automatically on commit
2062
+ - Adds command to backup vital parts `scout export database`
2063
+ - Parsing and displaying cancer SV variants from Manta annotated VCF files
2064
+ - Dismiss cancer snv variants with cancer-specific options
2065
+ - Add IGV.js UPD, RHO and TIDDIT coverage wig tracks.
2066
+
2067
+
2068
+ ### Fixed
2069
+ - Slightly darker page background
2070
+ - Fixed an issued with parsed conservation values from CSQ
2071
+ - Clinvar submissions accessible to all users of an institute
2072
+ - Header toolbar when on Clinvar page now shows institute name correctly
2073
+ - Case should not always inactivate upon update
2074
+ - Show dismissed snv cancer variants as grey on the cancer variants page
2075
+ - Improved style of mappability link and local observations on variant page
2076
+ - Convert all the GET requests to the igv view to POST request
2077
+ - Error when updating gene panels using a file containing BOM chars
2078
+ - Add/replace gene radio button not working in gene panels
2079
+
2080
+
2081
+ ## [4.10.1]
2082
+
2083
+ ### Fixed
2084
+ - Fixed issue with opening research variants
2085
+ - Problem with coveralls not called by Travis CI
2086
+ - Handle Biomart service down in tests
2087
+
2088
+
2089
+ ## [4.10.0]
2090
+
2091
+ ### Added
2092
+ - Rank score model in causatives page
2093
+ - Exportable HPO terms from phenotypes page
2094
+ - AMP guideline tiers for cancer variants
2095
+ - Adds scroll for the transcript tab
2096
+ - Added CLI option to query cases on time since case event was added
2097
+ - Shadow clinical assessments also on research variants display
2098
+ - Support for CRAM alignment files
2099
+ - Improved str variants view : sorting by locus, grouped by allele.
2100
+ - Delivery report PDF export
2101
+ - New mosaicism tag option
2102
+ - Add or modify individuals' age or tissue type from case page
2103
+ - Display GC and allele depth in causatives table.
2104
+ - Included primary reference transcript in general report
2105
+ - Included partial causative variants in general report
2106
+ - Remove dependency of loqusdb by utilising the CLI
2107
+
2108
+ ### Fixed
2109
+ - Fixed update OMIM command bug due to change in the header of the genemap2 file
2110
+ - Removed Mosaic Tag from Cancer variants
2111
+ - Fixes issue with unaligned table headers that comes with hidden Datatables
2112
+ - Layout in general report PDF export
2113
+ - Fixed issue on the case statistics view. The validation bars didn't show up when all institutes were selected. Now they do.
2114
+ - Fixed missing path import by importing pathlib.Path
2115
+ - Handle index inconsistencies in the update index functions
2116
+ - Fixed layout problems
2117
+
2118
+
2119
+ ## [4.9.0]
2120
+
2121
+ ### Added
2122
+ - Improved MatchMaker pages, including visible patient contacts email address
2123
+ - New badges for the github repo
2124
+ - Links to [GENEMANIA](genemania.org)
2125
+ - Sort gene panel list on case view.
2126
+ - More automatic tests
2127
+ - Allow loading of custom annotations in VCF using the SCOUT_CUSTOM info tag.
2128
+
2129
+ ### Fixed
2130
+ - Fix error when a gene is added to an empty dynamic gene panel
2131
+ - Fix crash when attempting to add genes on incorrect format to dynamic gene panel
2132
+ - Manual rank variant tags could be saved in a "Select a tag"-state, a problem in the variants view.
2133
+ - Same case evaluations are no longer shown as gray previous evaluations on the variants page
2134
+ - Stay on research pages, even if reset, next first buttons are pressed..
2135
+ - Overlapping variants will now be visible on variant page again
2136
+ - Fix missing classification comments and links in evaluations page
2137
+ - All prioritized cases are shown on cases page
2138
+
2139
+
2140
+ ## [4.8.3]
2141
+
2142
+ ### Added
2143
+
2144
+ ### Fixed
2145
+ - Bug when ordering sanger
2146
+ - Improved scrolling over long list of genes/transcripts
2147
+
2148
+
2149
+ ## [4.8.2]
2150
+
2151
+ ### Added
2152
+
2153
+ ### Fixed
2154
+ - Avoid opening extra tab for coverage report
2155
+ - Fixed a problem when rank model version was saved as floats and not strings
2156
+ - Fixed a problem with displaying dismiss variant reasons on the general report
2157
+ - Disable load and delete filter buttons if there are no saved filters
2158
+ - Fix problem with missing verifications
2159
+ - Remove duplicate users and merge their data and activity
2160
+
2161
+
2162
+ ## [4.8.1]
2163
+
2164
+ ### Added
2165
+
2166
+ ### Fixed
2167
+ - Prevent login fail for users with id defined by ObjectId and not email
2168
+ - Prevent the app from crashing with `AttributeError: 'NoneType' object has no attribute 'message'`
2169
+
2170
+
2171
+ ## [4.8.0]
2172
+
2173
+ ### Added
2174
+ - Updated Scout to use Bootstrap 4.3
2175
+ - New looks for Scout
2176
+ - Improved dashboard using Chart.js
2177
+ - Ask before inactivating a case where last assigned user leaves it
2178
+ - Genes can be manually added to the dynamic gene list directly on the case page
2179
+ - Dynamic gene panels can optionally be used with clinical filter, instead of default gene panel
2180
+ - Dynamic gene panels get link out to chanjo-report for coverage report
2181
+ - Load all clinvar variants with clinvar Pathogenic, Likely Pathogenic and Conflicting pathogenic
2182
+ - Show transcripts with exon numbers for structural variants
2183
+ - Case sort order can now be toggled between ascending and descending.
2184
+ - Variants can be marked as partial causative if phenotype is available for case.
2185
+ - Show a frequency tooltip hover for SV-variants.
2186
+ - Added support for LDAP login system
2187
+ - Search snv and structural variants by chromosomal coordinates
2188
+ - Structural variants can be marked as partial causative if phenotype is available for case.
2189
+ - Show normal and pathologic limits for STRs in the STR variants view.
2190
+ - Institute level persistent variant filter settings that can be retrieved and used.
2191
+ - export causative variants to Excel
2192
+ - Add support for ROH, WIG and chromosome PNGs in case-view
2193
+
2194
+ ### Fixed
2195
+ - Fixed missing import for variants with comments
2196
+ - Instructions on how to build docs
2197
+ - Keep sanger order + verification when updating/reloading variants
2198
+ - Fixed and moved broken filter actions (HPO gene panel and reset filter)
2199
+ - Fixed string conversion to number
2200
+ - UCSC links for structural variants are now separated per breakpoint (and whole variant where applicable)
2201
+ - Reintroduced missing coverage report
2202
+ - Fixed a bug preventing loading samples using the command line
2203
+ - Better inheritance models customization for genes in gene panels
2204
+ - STR variant page back to list button now does its one job.
2205
+ - Allows to setup scout without a omim api key
2206
+ - Fixed error causing "favicon not found" flash messages
2207
+ - Removed flask --version from base cli
2208
+ - Request rerun no longer changes case status. Active or archived cases inactivate on upload.
2209
+ - Fixed missing tooltip on the cancer variants page
2210
+ - Fixed weird Rank cell in variants page
2211
+ - Next and first buttons order swap
2212
+ - Added pagination (and POST capability) to cancer variants.
2213
+ - Improves loading speed for variant page
2214
+ - Problem with updating variant rank when no variants
2215
+ - Improved Clinvar submission form
2216
+ - General report crashing when dismissed variant has no valid dismiss code
2217
+ - Also show collaborative case variants on the All variants view.
2218
+ - Improved phenotype search using dataTables.js on phenotypes page
2219
+ - Search and delete users with `email` instead of `_id`
2220
+ - Fixed css styles so that multiselect options will all fit one column
2221
+
2222
+
2223
+ ## [4.7.3]
2224
+
2225
+ ### Added
2226
+ - RankScore can be used with VCFs for vcf_cancer files
2227
+
2228
+ ### Fixed
2229
+ - Fix issue with STR view next page button not doing its one job.
2230
+
2231
+ ### Deleted
2232
+ - Removed pileup as a bam viewing option. This is replaced by IGV
2233
+
2234
+
2235
+ ## [4.7.2]
2236
+
2237
+ ### Added
2238
+ - Show earlier ACMG classification in the variant list
2239
+
2240
+ ### Fixed
2241
+ - Fixed igv search not working due to igv.js dist 2.2.17
2242
+ - Fixed searches for cases with a gene with variants pinned or marked causative.
2243
+ - Load variant pages faster after fixing other causatives query
2244
+ - Fixed mitochondrial report bug for variants without genes
2245
+
2246
+ ## [4.7.1]
2247
+
2248
+ ### Added
2249
+
2250
+ ### Fixed
2251
+ - Fixed bug on genes page
2252
+
2253
+
2254
+ ## [4.7.0]
2255
+
2256
+ ### Added
2257
+ - Export genes and gene panels in build GRCh38
2258
+ - Search for cases with variants pinned or marked causative in a given gene.
2259
+ - Search for cases phenotypically similar to a case also from WUI.
2260
+ - Case variant searches can be limited to similar cases, matching HPO-terms,
2261
+ phenogroups and cohorts.
2262
+ - De-archive reruns and flag them as 'inactive' if archived
2263
+ - Sort cases by analysis_date, track or status
2264
+ - Display cases in the following order: prioritized, active, inactive, archived, solved
2265
+ - Assign case to user when user activates it or asks for rerun
2266
+ - Case becomes inactive when it has no assignees
2267
+ - Fetch refseq version from entrez and use it in clinvar form
2268
+ - Load and export of exons for all genes, independent on refseq
2269
+ - Documentation for loading/updating exons
2270
+ - Showing SV variant annotations: SV cgh frequencies, gnomad-SV, local SV frequencies
2271
+ - Showing transcripts mapping score in segmental duplications
2272
+ - Handle requests to Ensembl Rest API
2273
+ - Handle requests to Ensembl Rest Biomart
2274
+ - STR variants view now displays GT and IGV link.
2275
+ - Description field for gene panels
2276
+ - Export exons in build 37 and 38 using the command line
2277
+
2278
+ ### Fixed
2279
+ - Fixes of and induced by build tests
2280
+ - Fixed bug affecting variant observations in other cases
2281
+ - Fixed a bug that showed wrong gene coverage in general panel PDF export
2282
+ - MT report only shows variants occurring in the specific individual of the excel sheet
2283
+ - Disable SSL certifcate verification in requests to chanjo
2284
+ - Updates how intervaltree and pymongo is used to void deprecated functions
2285
+ - Increased size of IGV sample tracks
2286
+ - Optimized tests
2287
+
2288
+
2289
+ ## [4.6.1]
2290
+
2291
+ ### Added
2292
+
2293
+ ### Fixed
2294
+ - Missing 'father' and 'mother' keys when parsing single individual cases
2295
+
2296
+
2297
+ ## [4.6.0]
2298
+
2299
+ ### Added
2300
+ - Description of Scout branching model in CONTRIBUTING doc
2301
+ - Causatives in alphabetical order, display ACMG classification and filter by gene.
2302
+ - Added 'external' to the list of analysis type options
2303
+ - Adds functionality to display "Tissue type". Passed via load config.
2304
+ - Update to IGV 2.
2305
+
2306
+ ### Fixed
2307
+ - Fixed alignment visualization and vcf2cytosure availability for demo case samples
2308
+ - Fixed 3 bugs affecting SV pages visualization
2309
+ - Reintroduced the --version cli option
2310
+ - Fixed variants query by panel (hpo panel + gene panel).
2311
+ - Downloaded MT report contains excel files with individuals' display name
2312
+ - Refactored code in parsing of config files.
2313
+
2314
+
2315
+ ## [4.5.1]
2316
+
2317
+ ### Added
2318
+
2319
+ ### Fixed
2320
+ - update requirement to use PyYaml version >= 5.1
2321
+ - Safer code when loading config params in cli base
2322
+
2323
+
2324
+ ## [4.5.0]
2325
+
2326
+ ### Added
2327
+ - Search for similar cases from scout view CLI
2328
+ - Scout cli is now invoked from the app object and works under the app context
2329
+
2330
+ ### Fixed
2331
+ - PyYaml dependency fixed to use version >= 5.1
2332
+
2333
+
2334
+ ## [4.4.1]
2335
+
2336
+ ### Added
2337
+ - Display SV rank model version when available
2338
+
2339
+ ### Fixed
2340
+ - Fixed upload of delivery report via API
2341
+
2342
+
2343
+ ## [4.4.0]
2344
+
2345
+ ### Added
2346
+ - Displaying more info on the Causatives page and hiding those not causative at the case level
2347
+ - Add a comment text field to Sanger order request form, allowing a message to be included in the email
2348
+ - MatchMaker Exchange integration
2349
+ - List cases with empty synopsis, missing HPO terms and phenotype groups.
2350
+ - Search for cases with open research list, or a given case status (active, inactive, archived)
2351
+
2352
+ ### Fixed
2353
+ - Variant query builder split into several functions
2354
+ - Fixed delivery report load bug
2355
+
2356
+
2357
+ ## [4.3.3]
2358
+
2359
+ ### Added
2360
+ - Different individual table for cancer cases
2361
+
2362
+ ### Fixed
2363
+ - Dashboard collects validated variants from verification events instead of using 'sanger' field
2364
+ - Cases shared with collaborators are visible again in cases page
2365
+ - Force users to select a real institute to share cases with (actionbar select fix)
2366
+
2367
+
2368
+ ## [4.3.2]
2369
+
2370
+ ### Added
2371
+ - Dashboard data can be filtered using filters available in cases page
2372
+ - Causatives for each institute are displayed on a dedicated page
2373
+ - SNVs and and SVs are searchable across cases by gene and rank score
2374
+ - A more complete report with validated variants is downloadable from dashboard
2375
+
2376
+ ### Fixed
2377
+ - Clinsig filter is fixed so clinsig numerical values are returned
2378
+ - Split multi clinsig string values in different elements of clinsig array
2379
+ - Regex to search in multi clinsig string values or multi revstat string values
2380
+ - It works to upload vcf files with no variants now
2381
+ - Combined Pileup and IGV alignments for SVs having variant start and stop on the same chromosome
2382
+
2383
+
2384
+ ## [4.3.1]
2385
+
2386
+ ### Added
2387
+ - Show calls from all callers even if call is not available
2388
+ - Instructions to install cairo and pango libs from WeasyPrint page
2389
+ - Display cases with number of variants from CLI
2390
+ - Only display cases with number of variants above certain treshold. (Also CLI)
2391
+ - Export of verified variants by CLI or from the dashboard
2392
+ - Extend case level queries with default panels, cohorts and phenotype groups.
2393
+ - Slice dashboard statistics display using case level queries
2394
+ - Add a view where all variants for an institute can be searched across cases, filtering on gene and rank score. Allows searching research variants for cases that have research open.
2395
+
2396
+ ### Fixed
2397
+ - Fixed code to extract variant conservation (gerp, phyloP, phastCons)
2398
+ - Visualization of PDF-exported gene panels
2399
+ - Reintroduced the exon/intron number in variant verification email
2400
+ - Sex and affected status is correctly displayed on general report
2401
+ - Force number validation in SV filter by size
2402
+ - Display ensembl transcripts when no refseq exists
2403
+
2404
+
2405
+ ## [4.3.0]
2406
+
2407
+ ### Added
2408
+ - Mosaicism tag on variants
2409
+ - Show and filter on SweGen frequency for SVs
2410
+ - Show annotations for STR variants
2411
+ - Show all transcripts in verification email
2412
+ - Added mitochondrial export
2413
+ - Adds alternative to search for SVs shorter that the given length
2414
+ - Look for 'bcftools' in the `set` field of VCFs
2415
+ - Display digenic inheritance from OMIM
2416
+ - Displays what refseq transcript that is primary in hgnc
2417
+
2418
+ ### Fixed
2419
+
2420
+ - Archived panels displays the correct date (not retroactive change)
2421
+ - Fixed problem with waiting times in gene panel exports
2422
+ - Clinvar fiter not working with human readable clinsig values
2423
+
2424
+ ## [4.2.2]
2425
+
2426
+ ### Fixed
2427
+ - Fixed gene panel create/modify from CSV file utf-8 decoding error
2428
+ - Updating genes in gene panels now supports edit comments and entry version
2429
+ - Gene panel export timeout error
2430
+
2431
+ ## [4.2.1]
2432
+
2433
+ ### Fixed
2434
+ - Re-introduced gene name(s) in verification email subject
2435
+ - Better PDF rendering for excluded variants in report
2436
+ - Problem to access old case when `is_default` did not exist on a panel
2437
+
2438
+
2439
+ ## [4.2.0]
2440
+
2441
+ ### Added
2442
+ - New index on variant_id for events
2443
+ - Display overlapping compounds on variants view
2444
+
2445
+ ### Fixed
2446
+ - Fixed broken clinical filter
2447
+
2448
+
2449
+ ## [4.1.4]
2450
+
2451
+ ### Added
2452
+ - Download of filtered SVs
2453
+
2454
+ ### Fixed
2455
+ - Fixed broken download of filtered variants
2456
+ - Fixed visualization issue in gene panel PDF export
2457
+ - Fixed bug when updating gene names in variant controller
2458
+
2459
+
2460
+ ## [4.1.3]
2461
+
2462
+ ### Fixed
2463
+ - Displays all primary transcripts
2464
+
2465
+
2466
+ ## [4.1.2]
2467
+
2468
+ ### Added
2469
+ - Option add/replace when updating a panel via CSV file
2470
+ - More flexible versioning of the gene panels
2471
+ - Printing coverage report on the bottom of the pdf case report
2472
+ - Variant verification option for SVs
2473
+ - Logs uri without pwd when connecting
2474
+ - Disease-causing transcripts in case report
2475
+ - Thicker lines in case report
2476
+ - Supports HPO search for cases, both terms or if described in synopsis
2477
+ - Adds sanger information to dashboard
2478
+
2479
+ ### Fixed
2480
+ - Use db name instead of **auth** as default for authentication
2481
+ - Fixes so that reports can be generated even with many variants
2482
+ - Fixed sanger validation popup to show individual variants queried by user and institute.
2483
+ - Fixed problem with setting up scout
2484
+ - Fixes problem when exac file is not available through broad ftp
2485
+ - Fetch transcripts for correct build in `adapter.hgnc_gene`
2486
+
2487
+ ## [4.1.1]
2488
+ - Fix problem with institute authentication flash message in utils
2489
+ - Fix problem with comments
2490
+ - Fix problem with ensembl link
2491
+
2492
+
2493
+ ## [4.1.0]
2494
+
2495
+ ### Added
2496
+ - OMIM phenotypes to case report
2497
+ - Command to download all panel app gene panels `scout load panel --panel-app`
2498
+ - Links to genenames.org and omim on gene page
2499
+ - Popup on gene at variants page with gene information
2500
+ - reset sanger status to "Not validated" for pinned variants
2501
+ - highlight cases with variants to be evaluated by Sanger on the cases page
2502
+ - option to point to local reference files to the genome viewer pileup.js. Documented in `docs.admin-guide.server`
2503
+ - option to export single variants in `scout export variants`
2504
+ - option to load a multiqc report together with a case(add line in load config)
2505
+ - added a view for searching HPO terms. It is accessed from the top left corner menu
2506
+ - Updates the variants view for cancer variants. Adds a small cancer specific filter for known variants
2507
+ - Adds hgvs information on cancer variants page
2508
+ - Adds option to update phenotype groups from CLI
2509
+
2510
+ ### Fixed
2511
+ - Improved Clinvar to submit variants from different cases. Fixed HPO terms in casedata according to feedback
2512
+ - Fixed broken link to case page from Sanger modal in cases view
2513
+ - Now only cases with non empty lists of causative variants are returned in `adapter.case(has_causatives=True)`
2514
+ - Can handle Tumor only samples
2515
+ - Long lists of HGNC symbols are now possible. This was previously difficult with manual, uploaded or by HPO search when changing filter settings due to GET request limitations. Relevant pages now use POST requests. Adds the dynamic HPO panel as a selection on the gene panel dropdown.
2516
+ - Variant filter defaults to default panels also on SV and Cancer variants pages.
2517
+
2518
+ ## [4.0.0]
2519
+
2520
+ ### WARNING ###
2521
+
2522
+ This is a major version update and will require that the backend of pre releases is updated.
2523
+ Run commands:
2524
+
2525
+ ```
2526
+ $scout update genes
2527
+ $scout update hpo
2528
+ ```
2529
+
2530
+ - Created a Clinvar submission tool, to speed up Clinvar submission of SNVs and SVs
2531
+ - Added an analysis report page (html and PDF format) containing phenotype, gene panels and variants that are relevant to solve a case.
2532
+
2533
+ ### Fixed
2534
+ - Optimized evaluated variants to speed up creation of case report
2535
+ - Moved igv and pileup viewer under a common folder
2536
+ - Fixed MT alignment view pileup.js
2537
+ - Fixed coordinates for SVs with start chromosome different from end chromosome
2538
+ - Global comments shown across cases and institutes. Case-specific variant comments are shown only for that specific case.
2539
+ - Links to clinvar submitted variants at the cases level
2540
+ - Adapts clinvar parsing to new format
2541
+ - Fixed problem in `scout update user` when the user object had no roles
2542
+ - Makes pileup.js use online genome resources when viewing alignments. Now any instance of Scout can make use of this functionality.
2543
+ - Fix ensembl link for structural variants
2544
+ - Works even when cases does not have `'madeline_info'`
2545
+ - Parses Polyphen in correct way again
2546
+ - Fix problem with parsing gnomad from VEP
2547
+
2548
+ ### Added
2549
+ - Added a PDF export function for gene panels
2550
+ - Added a "Filter and export" button to export custom-filtered SNVs to CSV file
2551
+ - Dismiss SVs
2552
+ - Added IGV alignments viewer
2553
+ - Read delivery report path from case config or CLI command
2554
+ - Filter for spidex scores
2555
+ - All HPO terms are now added and fetched from the correct source (https://github.com/obophenotype/human-phenotype-ontology/blob/master/hp.obo)
2556
+ - New command `scout update hpo`
2557
+ - New command `scout update genes` will fetch all the latest information about genes and update them
2558
+ - Load **all** variants found on chromosome **MT**
2559
+ - Adds choice in cases overview do show as many cases as user like
2560
+
2561
+ ### Removed
2562
+ - pileup.min.js and pileup css are imported from a remote web location now
2563
+ - All source files for HPO information, this is instead fetched directly from source
2564
+ - All source files for gene information, this is instead fetched directly from source
2565
+
2566
+ ## [3.0.0]
2567
+ ### Fixed
2568
+ - hide pedigree panel unless it exists
2569
+
2570
+ ## [1.5.1] - 2016-07-27
2571
+ ### Fixed
2572
+ - look for both ".bam.bai" and ".bai" extensions
2573
+
2574
+ ## [1.4.0] - 2016-03-22
2575
+ ### Added
2576
+ - support for local frequency through loqusdb
2577
+ - bunch of other stuff
2578
+
2579
+ ## [1.3.0] - 2016-02-19
2580
+ ### Fixed
2581
+ - Update query-phenomizer and add username/password
2582
+
2583
+ ### Changed
2584
+ - Update the way a case is checked for rerun-status
2585
+
2586
+ ### Added
2587
+ - Add new button to mark a case as "checked"
2588
+ - Link to clinical variants _without_ 1000G annotation
2589
+
2590
+ ## [1.2.2] - 2016-02-18
2591
+ ### Fixed
2592
+ - avoid filtering out variants lacking ExAC and 1000G annotations
2593
+
2594
+ ## [1.1.3] - 2015-10-01
2595
+ ### Fixed
2596
+ - persist (clinical) filter when clicking load more
2597
+ - fix #154 by robustly setting clinical filter func. terms
2598
+
2599
+ ## [1.1.2] - 2015-09-07
2600
+ ### Fixed
2601
+ - avoid replacing coverage report with none
2602
+ - update SO terms, refactored
2603
+
2604
+ ## [1.1.1] - 2015-08-20
2605
+ ### Fixed
2606
+ - fetch case based on collaborator status (not owner)
2607
+
2608
+ ## [1.1.0] - 2015-05-29
2609
+ ### Added
2610
+ - link(s) to SNPedia based on RS-numbers
2611
+ - new Jinja filter to "humanize" decimal numbers
2612
+ - show gene panels in variant view
2613
+ - new Jinja filter for decoding URL encoding
2614
+ - add indicator to variants in list that have comments
2615
+ - add variant number threshold and rank score threshold to load function
2616
+ - add event methods to mongo adapter
2617
+ - add tests for models
2618
+ - show badge "old" if comment was written for a previous analysis
2619
+
2620
+ ### Changed
2621
+ - show cDNA change in transcript summary unless variant is exonic
2622
+ - moved compounds table further up the page
2623
+ - show dates for case uploads in ISO format
2624
+ - moved variant comments higher up on page
2625
+ - updated documentation for pages
2626
+ - read in coverage report as blob in database and serve directly
2627
+ - change ``OmimPhenotype`` to ``PhenotypeTerm``
2628
+ - reorganize models sub-package
2629
+ - move events (and comments) to separate collection
2630
+ - only display prev/next links for the research list
2631
+ - include variant type in breadcrumbs e.g. "Clinical variants"
2632
+
2633
+ ### Removed
2634
+ - drop dependency on moment.js
2635
+
2636
+ ### Fixed
2637
+ - show the same level of detail for all frequencies on all pages
2638
+ - properly decode URL encoded symbols in amino acid/cDNA change strings
2639
+ - fixed issue with wipe permissions in MongoDB
2640
+ - include default gene lists in "variants" link in breadcrumbs
2641
+
2642
+ ## [1.0.2] - 2015-05-20
2643
+ ### Changed
2644
+ - update case fetching function
2645
+
2646
+ ### Fixed
2647
+ - handle multiple cases with same id
2648
+
2649
+ ## [1.0.1] - 2015-04-28
2650
+ ### Fixed
2651
+ - Fix building URL parameters in cases list Vue component
2652
+
2653
+ ## [1.0.0] - 2015-04-12
2654
+ Codename: Sara Lund
2655
+
2656
+ ![Release 1.0](artwork/releases/release-1-0.jpg)
2657
+
2658
+ ### Added
2659
+ - Add email logging for unexpected errors
2660
+ - New command line tool for deleting case
2661
+
2662
+ ### Changed
2663
+ - Much improved logging overall
2664
+ - Updated documentation/usage guide
2665
+ - Removed non-working IGV link
2666
+
2667
+ ### Fixed
2668
+ - Show sample display name in GT call
2669
+ - Various small bug fixes
2670
+ - Make it easier to hover over popups
2671
+
2672
+ ## [0.0.2-rc1] - 2015-03-04
2673
+ ### Added
2674
+ - add protein table for each variant
2675
+ - add many more external links
2676
+ - add coverage reports as PDFs
2677
+
2678
+ ### Changed
2679
+ - incorporate user feedback updates
2680
+ - big refactor of load scripts
2681
+
2682
+ ## [0.0.2-rc2] - 2015-03-04
2683
+ ### Changes
2684
+ - add gene table with gene description
2685
+ - reorganize inheritance models box
2686
+
2687
+ ### Fixed
2688
+ - avoid overwriting gene list on "research" load
2689
+ - fix various bugs in external links
2690
+
2691
+ ## [0.0.2-rc3] - 2015-03-05
2692
+ ### Added
2693
+ - Activity log feed to variant view
2694
+ - Adds protein change strings to ODM and Sanger email
2695
+
2696
+ ### Changed
2697
+ - Extract activity log component to macro
2698
+
2699
+ ### Fixes
2700
+ - Make Ensembl transcript links use archive website