-
Notifications
You must be signed in to change notification settings - Fork 116
/
plugin_config.txt
1854 lines (1736 loc) · 64.8 KB
/
plugin_config.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
my $VEP_PLUGIN_CONFIG = {
"plugins" => [
## PATHOGENICITY PREDICTIONS
############################
# dbNSFP
# https://github.com/ensembl-variation/VEP_plugins/blob/main/dbNSFP.pm
# Requires tabix-indexed data file as first param
# Field names are listed below and rendered as a multi-selectable autocomplete text field
# Human, GRCh38 only (3.x), for GRCh37 use 2.9.x
{
"key" => "dbNSFP",
"label" => "dbNSFP",
"available" => 0,
"enabled" => 0,
"section" => "Pathogenicity predictions",
"helptip" => "dbNSFP provides pathogenicity predictions for missense variants from various algorithms",
"plugin_url" => "https://raw.githubusercontent.com/Ensembl/VEP_plugins/release/113/dbNSFP.pm",
"requires_data" => 1,
"requires_install" => 1,
"params" => [
#"/path/to/dbNSFP4.7c_grch38.gz",
"@*"
],
"species" => [
"homo_sapiens"
],
"form" => [
{
"name" => "dbNSFP_fields",
"label" => "Fields to include",
"helptip" => "Fields to fetch from dbNSFP; hold down the Ctrl (Windows) / Command (Mac) button to select multiple options",
"value" => "",
'type' => 'dropdown',
'multiple' => 1,
'style' => 'height:150px',
'required' => 1,
'notes' => 'Field descriptions in <a rel="external" href="https://usf.box.com/s/h9mqovab0on1r3hpopwypcjr9i9mf0s3">dbNSFP README</a>',
# "class" => "jquery-multiselect",
"values" => [
#"#chr",
#"pos(1-based)",
#"ref",
#"alt",
#"aaref",
#"aaalt",
#"rs_dbSNP",
#"hg19_chr",
#"hg19_pos(1-based)",
#"hg18_chr",
#"hg18_pos(1-based)",
"aapos",
"genename",
"Ensembl_geneid",
"Ensembl_transcriptid",
"Ensembl_proteinid",
"Uniprot_acc",
"Uniprot_entry",
#"HGVSc_ANNOVAR",
#"HGVSp_ANNOVAR",
#"HGVSc_snpEff",
#"HGVSp_snpEff",
#"HGVSc_VEP",
#"HGVSp_VEP",
#"APPRIS",
#"GENCODE_basic",
#"TSL",
#"VEP_canonical",
#"cds_strand",
#"refcodon",
#"codonpos",
"codon_degeneracy",
"Ancestral_allele",
"AltaiNeandertal",
"Denisova",
"VindijiaNeandertal",
"ChagyrskayaNeandertal",
#"SIFT_score",
#"SIFT_converted_rankscore",
#"SIFT_pred",
#"SIFT4G_score",
#"SIFT4G_converted_rankscore",
#"SIFT4G_pred",
"LRT_score",
"LRT_converted_rankscore",
"LRT_pred",
"LRT_Omega",
"MutationTaster_score",
"MutationTaster_converted_rankscore",
"MutationTaster_pred",
"MutationTaster_model",
"MutationTaster_AAE",
"MutationAssessor_score",
"MutationAssessor_rankscore",
"MutationAssessor_pred",
"FATHMM_score",
"FATHMM_converted_rankscore",
"FATHMM_pred",
"PROVEAN_score",
"PROVEAN_converted_rankscore",
"PROVEAN_pred",
"MetaSVM_score",
"MetaSVM_rankscore",
"MetaSVM_pred",
"MetaLR_score",
"MetaLR_rankscore",
"MetaLR_pred",
"Reliability_index",
"MetaRNN_score",
"MetaRNN_rankscore",
"MetaRNN_pred",
"M-CAP_score",
"M-CAP_rankscore",
"M-CAP_pred",
"MutPred_score",
"MutPred_rankscore",
"MutPred_protID",
"MutPred_AAchange",
"MutPred_Top5features",
"MVP_score",
"MVP_rankscore",
"gMVP_score",
"gMVP_rankscore",
"MPC_score",
"MPC_rankscore",
"PrimateAI_score",
"PrimateAI_rankscore",
"PrimateAI_pred",
"DEOGEN2_score",
"DEOGEN2_rankscore",
"DEOGEN2_pred",
"BayesDel_addAF_score",
"BayesDel_addAF_rankscore",
"BayesDel_addAF_pred",
"BayesDel_noAF_score",
"BayesDel_noAF_rankscore",
"BayesDel_noAF_pred",
"LIST-S2_score",
"LIST-S2_rankscore",
"LIST-S2_pred",
"VARITY_R_score",
"VARITY_R_rankscore",
"VARITY_ER_score",
"VARITY_ER_rankscore",
"VARITY_R_LOO_score",
"VARITY_R_LOO_rankscore",
"VARITY_ER_LOO_score",
"VARITY_ER_LOO_rankscore",
"ESM1b_score",
"ESM1b_rankscore",
"ESM1b_pred",
"EVE_score",
"EVE_rankscore",
"EVE_Class10_pred",
"EVE_Class20_pred",
"EVE_Class25_pred",
"EVE_Class30_pred",
"EVE_Class40_pred",
"EVE_Class50_pred",
"EVE_Class60_pred",
"EVE_Class70_pred",
"EVE_Class75_pred",
"EVE_Class80_pred",
"EVE_Class90_pred",
"Aloft_Fraction_transcripts_affected",
"Aloft_prob_Tolerant",
"Aloft_prob_Recessive",
"Aloft_prob_Dominant",
"Aloft_pred",
"Aloft_Confidence",
"DANN_score",
"DANN_rankscore",
"fathmm-MKL_coding_score",
"fathmm-MKL_coding_rankscore",
"fathmm-MKL_coding_pred",
"fathmm-MKL_coding_group",
"fathmm-XF_coding_score",
"fathmm-XF_coding_rankscore",
"fathmm-XF_coding_pred",
"Eigen-raw_coding",
"Eigen-raw_coding_rankscore",
"Eigen-phred_coding",
"Eigen-PC-raw_coding",
"Eigen-PC-raw_coding_rankscore",
"Eigen-PC-phred_coding",
"integrated_fitCons_score",
"integrated_fitCons_rankscore",
"integrated_confidence_value",
"GM12878_fitCons_score",
"GM12878_fitCons_rankscore",
"GM12878_confidence_value",
"H1-hESC_fitCons_score",
"H1-hESC_fitCons_rankscore",
"H1-hESC_confidence_value",
"HUVEC_fitCons_score",
"HUVEC_fitCons_rankscore",
"HUVEC_confidence_value",
"GERP++_NR",
"GERP++_RS",
"GERP++_RS_rankscore",
"phyloP100way_vertebrate",
"phyloP100way_vertebrate_rankscore",
"phyloP470way_mammalian",
"phyloP470way_mammalian_rankscore",
"phyloP17way_primate",
"phyloP17way_primate_rankscore",
"phastCons100way_vertebrate",
"phastCons100way_vertebrate_rankscore",
"phastCons470way_mammalian",
"phastCons470way_mammalian_rankscore",
"phastCons17way_primate",
"phastCons17way_primate_rankscore",
"SiPhy_29way_pi",
"SiPhy_29way_logOdds",
"SiPhy_29way_logOdds_rankscore",
"bStatistic",
"bStatistic_converted_rankscore",
"1000Gp3_AC",
"1000Gp3_AF",
"1000Gp3_AFR_AC",
"1000Gp3_AFR_AF",
"1000Gp3_EUR_AC",
"1000Gp3_EUR_AF",
"1000Gp3_AMR_AC",
"1000Gp3_AMR_AF",
"1000Gp3_EAS_AC",
"1000Gp3_EAS_AF",
"1000Gp3_SAS_AC",
"1000Gp3_SAS_AF",
"TWINSUK_AC",
"TWINSUK_AF",
"ALSPAC_AC",
"ALSPAC_AF",
"UK10K_AC",
"UK10K_AF",
"ESP6500_AA_AC",
"ESP6500_AA_AF",
"ESP6500_EA_AC",
"ESP6500_EA_AF",
"ExAC_AC",
"ExAC_AF",
"ExAC_Adj_AC",
"ExAC_Adj_AF",
"ExAC_AFR_AC",
"ExAC_AFR_AF",
"ExAC_AMR_AC",
"ExAC_AMR_AF",
"ExAC_EAS_AC",
"ExAC_EAS_AF",
"ExAC_FIN_AC",
"ExAC_FIN_AF",
"ExAC_NFE_AC",
"ExAC_NFE_AF",
"ExAC_SAS_AC",
"ExAC_SAS_AF",
"ExAC_nonTCGA_AC",
"ExAC_nonTCGA_AF",
"ExAC_nonTCGA_Adj_AC",
"ExAC_nonTCGA_Adj_AF",
"ExAC_nonTCGA_AFR_AC",
"ExAC_nonTCGA_AFR_AF",
"ExAC_nonTCGA_AMR_AC",
"ExAC_nonTCGA_AMR_AF",
"ExAC_nonTCGA_EAS_AC",
"ExAC_nonTCGA_EAS_AF",
"ExAC_nonTCGA_FIN_AC",
"ExAC_nonTCGA_FIN_AF",
"ExAC_nonTCGA_NFE_AC",
"ExAC_nonTCGA_NFE_AF",
"ExAC_nonTCGA_SAS_AC",
"ExAC_nonTCGA_SAS_AF",
"ExAC_nonpsych_AC",
"ExAC_nonpsych_AF",
"ExAC_nonpsych_Adj_AC",
"ExAC_nonpsych_Adj_AF",
"ExAC_nonpsych_AFR_AC",
"ExAC_nonpsych_AFR_AF",
"ExAC_nonpsych_AMR_AC",
"ExAC_nonpsych_AMR_AF",
"ExAC_nonpsych_EAS_AC",
"ExAC_nonpsych_EAS_AF",
"ExAC_nonpsych_FIN_AC",
"ExAC_nonpsych_FIN_AF",
"ExAC_nonpsych_NFE_AC",
"ExAC_nonpsych_NFE_AF",
"ExAC_nonpsych_SAS_AC",
"ExAC_nonpsych_SAS_AF",
"gnomAD_exomes_flag",
"gnomAD_exomes_AC",
"gnomAD_exomes_AN",
"gnomAD_exomes_AF",
"gnomAD_exomes_nhomalt",
"gnomAD_exomes_POPMAX_AC",
"gnomAD_exomes_POPMAX_AN",
"gnomAD_exomes_POPMAX_AF",
"gnomAD_exomes_POPMAX_nhomalt",
"gnomAD_exomes_AFR_AC",
"gnomAD_exomes_AFR_AN",
"gnomAD_exomes_AFR_AF",
"gnomAD_exomes_AFR_nhomalt",
"gnomAD_exomes_AMR_AC",
"gnomAD_exomes_AMR_AN",
"gnomAD_exomes_AMR_AF",
"gnomAD_exomes_AMR_nhomalt",
"gnomAD_exomes_ASJ_AC",
"gnomAD_exomes_ASJ_AN",
"gnomAD_exomes_ASJ_AF",
"gnomAD_exomes_ASJ_nhomalt",
"gnomAD_exomes_EAS_AC",
"gnomAD_exomes_EAS_AN",
"gnomAD_exomes_EAS_AF",
"gnomAD_exomes_EAS_nhomalt",
"gnomAD_exomes_FIN_AC",
"gnomAD_exomes_FIN_AN",
"gnomAD_exomes_FIN_AF",
"gnomAD_exomes_FIN_nhomalt",
"gnomAD_exomes_MID_AC",
"gnomAD_exomes_MID_AN",
"gnomAD_exomes_MID_AF",
"gnomAD_exomes_MID_nhomalt",
"gnomAD_exomes_NFE_AC",
"gnomAD_exomes_NFE_AN",
"gnomAD_exomes_NFE_AF",
"gnomAD_exomes_NFE_nhomalt",
"gnomAD_exomes_SAS_AC",
"gnomAD_exomes_SAS_AN",
"gnomAD_exomes_SAS_AF",
"gnomAD_exomes_SAS_nhomalt",
"gnomAD_exomes_non_ukb_AC",
"gnomAD_exomes_non_ukb_AN",
"gnomAD_exomes_non_ukb_AF",
"gnomAD_exomes_non_ukb_nhomalt",
"gnomAD_exomes_non_ukb_AFR_AC",
"gnomAD_exomes_non_ukb_AFR_AN",
"gnomAD_exomes_non_ukb_AFR_AF",
"gnomAD_exomes_non_ukb_AFR_nhomalt",
"gnomAD_exomes_non_ukb_AMR_AC",
"gnomAD_exomes_non_ukb_AMR_AN",
"gnomAD_exomes_non_ukb_AMR_AF",
"gnomAD_exomes_non_ukb_AMR_nhomalt",
"gnomAD_exomes_non_ukb_ASJ_AC",
"gnomAD_exomes_non_ukb_ASJ_AN",
"gnomAD_exomes_non_ukb_ASJ_AF",
"gnomAD_exomes_non_ukb_ASJ_nhomalt",
"gnomAD_exomes_non_ukb_EAS_AC",
"gnomAD_exomes_non_ukb_EAS_AN",
"gnomAD_exomes_non_ukb_EAS_AF",
"gnomAD_exomes_non_ukb_EAS_nhomalt",
"gnomAD_exomes_non_ukb_FIN_AC",
"gnomAD_exomes_non_ukb_FIN_AN",
"gnomAD_exomes_non_ukb_FIN_AF",
"gnomAD_exomes_non_ukb_FIN_nhomalt",
"gnomAD_exomes_non_ukb_MID_AC",
"gnomAD_exomes_non_ukb_MID_AN",
"gnomAD_exomes_non_ukb_MID_AF",
"gnomAD_exomes_non_ukb_MID_nhomalt",
"gnomAD_exomes_non_ukb_NFE_AC",
"gnomAD_exomes_non_ukb_NFE_AN",
"gnomAD_exomes_non_ukb_NFE_AF",
"gnomAD_exomes_non_ukb_NFE_nhomalt",
"gnomAD_exomes_non_ukb_SAS_AC",
"gnomAD_exomes_non_ukb_SAS_AN",
"gnomAD_exomes_non_ukb_SAS_AF",
"gnomAD_exomes_non_ukb_SAS_nhomalt",
"gnomAD_genomes_flag",
"gnomAD_genomes_AC",
"gnomAD_genomes_AN",
"gnomAD_genomes_AF",
"gnomAD_genomes_nhomalt",
"gnomAD_genomes_POPMAX_AC",
"gnomAD_genomes_POPMAX_AN",
"gnomAD_genomes_POPMAX_AF",
"gnomAD_genomes_POPMAX_nhomalt",
"gnomAD_genomes_AFR_AC",
"gnomAD_genomes_AFR_AN",
"gnomAD_genomes_AFR_AF",
"gnomAD_genomes_AFR_nhomalt",
"gnomAD_genomes_AMI_AC",
"gnomAD_genomes_AMI_AN",
"gnomAD_genomes_AMI_AF",
"gnomAD_genomes_AMI_nhomalt",
"gnomAD_genomes_AMR_AC",
"gnomAD_genomes_AMR_AN",
"gnomAD_genomes_AMR_AF",
"gnomAD_genomes_AMR_nhomalt",
"gnomAD_genomes_ASJ_AC",
"gnomAD_genomes_ASJ_AN",
"gnomAD_genomes_ASJ_AF",
"gnomAD_genomes_ASJ_nhomalt",
"gnomAD_genomes_EAS_AC",
"gnomAD_genomes_EAS_AN",
"gnomAD_genomes_EAS_AF",
"gnomAD_genomes_EAS_nhomalt",
"gnomAD_genomes_FIN_AC",
"gnomAD_genomes_FIN_AN",
"gnomAD_genomes_FIN_AF",
"gnomAD_genomes_FIN_nhomalt",
"gnomAD_genomes_MID_AC",
"gnomAD_genomes_MID_AN",
"gnomAD_genomes_MID_AF",
"gnomAD_genomes_MID_nhomalt",
"gnomAD_genomes_NFE_AC",
"gnomAD_genomes_NFE_AN",
"gnomAD_genomes_NFE_AF",
"gnomAD_genomes_NFE_nhomalt",
"gnomAD_genomes_SAS_AC",
"gnomAD_genomes_SAS_AN",
"gnomAD_genomes_SAS_AF",
"gnomAD_genomes_SAS_nhomalt",
"ALFA_European_AC",
"ALFA_European_AN",
"ALFA_European_AF",
"ALFA_African_Others_AC",
"ALFA_African_Others_AN",
"ALFA_African_Others_AF",
"ALFA_East_Asian_AC",
"ALFA_East_Asian_AN",
"ALFA_East_Asian_AF",
"ALFA_African_American_AC",
"ALFA_African_American_AN",
"ALFA_African_American_AF",
"ALFA_Latin_American_1_AC",
"ALFA_Latin_American_1_AN",
"ALFA_Latin_American_1_AF",
"ALFA_Latin_American_2_AC",
"ALFA_Latin_American_2_AN",
"ALFA_Latin_American_2_AF",
"ALFA_Other_Asian_AC",
"ALFA_Other_Asian_AN",
"ALFA_Other_Asian_AF",
"ALFA_South_Asian_AC",
"ALFA_South_Asian_AN",
"ALFA_South_Asian_AF",
"ALFA_Other_AC",
"ALFA_Other_AN",
"ALFA_Other_AF",
"ALFA_African_AC",
"ALFA_African_AN",
"ALFA_African_AF",
"ALFA_Asian_AC",
"ALFA_Asian_AN",
"ALFA_Asian_AF",
"ALFA_Total_AC",
"ALFA_Total_AN",
"ALFA_Total_AF",
"clinvar_id",
"clinvar_clnsig",
"clinvar_trait",
"clinvar_review",
"clinvar_hgvs",
"clinvar_var_source",
"clinvar_MedGen_id",
"clinvar_OMIM_id",
"clinvar_Orphanet_id",
"Interpro_domain",
"GTEx_V8_eQTL_gene",
"GTEx_V8_eQTL_tissue",
"GTEx_V8_sQTL_gene",
"GTEx_V8_sQTL_tissue",
"eQTLGen_snp_id",
"eQTLGen_gene_id",
"eQTLGen_gene_symbol",
"eQTLGen_cis_or_trans",
"Geuvadis_eQTL_target_gene",
],
},
{
"name" => "dbNSFP_transcript_match",
"label" => "Transcript match",
"helptip" => "By default, some dbNSFP fields contain values for all Ensembl transcripts. Select this to only return values for the matched Ensembl transcript.",
"value" => "transcript_match=1",
"type" => "checkbox",
"style" => "height:150px"
}
]
},
# AlphaMissense
{
"key" => "AlphaMissense",
"label" => "AlphaMissense",
"available" => 0,
"enabled" => 0,
"section" => "Pathogenicity predictions",
"plugin_url" => "https://raw.githubusercontent.com/Ensembl/VEP_plugins/release/113/AlphaMissense.pm",
"helptip" => "Annotates missense variants with the pre-computed AlphaMissense pathogenicity scores. AlphaMissense is a deep learning model developed by Google DeepMind that predicts the pathogenicity of single nucleotide missense variants.",
"requires_data" => 1,
"species" => [
"homo_sapiens"
],
"params" => [
#"file=/path/to/AlphaMissense_hg38.tsv.gz"
]
},
# AVADA
{
"key" => "AVADA",
"label" => "AVADA",
"available" => 0,
"enabled" => 0,
"section" => "Phenotype data and citations",
"plugin_url" => "https://raw.githubusercontent.com/Ensembl/VEP_plugins/release/113/AVADA.pm",
},
# CADD
# https://github.com/ensembl-variation/VEP_plugins/blob/main/CADD.pm
{
"key" => "CADD",
"label" => "CADD",
"available" => 0,
"enabled" => 0,
"section" => "Pathogenicity predictions",
"helptip" => "Combined Annotation Dependent Depletion (CADD) is a tool for scoring the deleteriousness of single nucleotide variants and insertion/deletion variants in the human genome. CADD integrates multiple annotations into one metric by contrasting variants that survived natural selection with simulated mutations. CADD is only available here for non-commercial use. See CADD website for more information.",
"plugin_url" => "https://raw.githubusercontent.com/Ensembl/VEP_plugins/release/113/CADD.pm",
"requires_data" => 1,
"species" => [
"homo_sapiens",
"sus_scrofa"
],
"form" => [
{
"name" => "file_type",
"label" => "Select annotation file",
"type" => "dropdown",
"helptip" => "Select type of CADD annotation file to be used. Caution to be taken while using snv, indels or snv_indels options with structural variants as input. It can match unnecessary huge amount of lines in annotation file and in such cases no CADD annotation will be made.",
"values" => [
{ "value" => "snv_indels", "caption" => "CADD SNVs and InDels annotation file", "class" => "_stt_Homo_sapiens" },
{ "value" => "snv", "caption" => "CADD SNVs annotation file" },
{ "value" => "indels", "caption" => "CADD InDels annotation file", "class" => "_stt_Homo_sapiens" },
{ "value" => "sv", "caption" => "CADD-SV annotation file (supported only in GRCh38)", "class" => "_stt_Homo_sapiens" }
],
"value" => "snv_indels",
},
],
"params" => [
#"snv=/path/to/CADD_whole_genome_SNVs.tsv.gz",
#"indels=/path/to/CADD_GRCh38_1.6_InDels.tsv.gz",
#"snv_pig=/path/to/ALL_pCADD-PHRED-scores.tsv.gz",
#"sv=/path/to/CADD_prescored_variants.tsv.gz"
]
},
# CAPICE
# https://github.com/ensembl-variation/VEP_plugins/blob/main/CAPICE.pm
# Requires tabix-indexed data files as params (one for InDels, another for SNVs)
# No other parameters so no form required
# data file currently only available for GRCh37
{
"key" => "CAPICE",
"label" => "CAPICE",
"available" => 0,
"enabled" => 0,
"section" => "Pathogenicity predictions",
"helptip" => "Consequence-Agnostic Pathogenicity Interpretation of Clinical Exome variations (CAPICE) is a tool for scoring the pathogenicity of single nucleotide variants and insertion/deletion variants in the human genome. CAPICE uses a gradient boosting tree model trained with multiple genomic annotations used by CADD score and based on clinical significance.",
"plugin_url" => "https://raw.githubusercontent.com/Ensembl/VEP_plugins/release/113/CAPICE.pm",
"requires_data" => 1,
"species" => [
"homo_sapiens"
],
"params" => [
#"/path/to/capice_v1.0_build37_indels.tsv.gz",
#"/path/to/capice_v1.0_build37_snvs.tsv.gz"
]
},
# FATHMM
{
"key" => "FATHMM",
"label" => "FATHMM",
"available" => 0,
"enabled" => 0,
"section" => "Pathogenicity predictions",
"plugin_url" => "https://raw.githubusercontent.com/Ensembl/VEP_plugins/release/113/FATHMM.pm"
},
# FATHMM-MKL
# https://github.com/ensembl-variation/VEP_plugins/blob/main/FATHMM_MKL.pm
# Requires tabix-indexed data file as first param
# No other parameters so no form required
# data file currently only available for GRCh37
{
"key" => "FATHMM_MKL",
"label" => "FATHMM-MKL",
"available" => 0,
"enabled" => 0,
"section" => "Pathogenicity predictions",
"helptip" => "FATHMM-MKL predicts functional consequences of variants, both coding and non-coding.",
"plugin_url" => "https://raw.githubusercontent.com/Ensembl/VEP_plugins/release/113/FATHMM_MKL.pm",
"requires_data" => 1,
"species" => [
"homo_sapiens"
],
"params" => [
#"/path/to/fathmm-MKL_Current.tab.gz"
]
},
# GWAVA
# https://www.sanger.ac.uk/sanger/StatGen_Gwava
# Requires tabix-indexed BED data file from ftp://ftp.sanger.ac.uk/pub/resources/software/gwava/v1.0/VEP_plugin/
# data file currently only available for GRCh37
{
"key" => "Gwava",
"label" => "GWAVA",
"available" => 0,
"enabled" => 0,
"section" => "Pathogenicity predictions",
"helptip" => "Retrieves precomputed Genome Wide Annotation of VAriants (GWAVA) scores for any variant that overlaps a known variant from the Ensembl variation database",
"plugin_url" => "ftp://ftp.sanger.ac.uk/pub/resources/software/gwava/v1.0/VEP_plugin/Gwava.pm",
"requires_data" => 1,
"species" => [
"homo_sapiens"
],
"params" => [
"@*",
# "/path/to/gwava_scores.bed.gz"
],
"form" => [
{
"name" => "model",
"label" => "Model",
"type" => "dropdown",
"values" => [
{ "value" => "region", "caption" => "Region" },
{ "value" => "tss", "caption" => "TSS" },
{ "value" => "unmatched", "caption" => "Unmatched" }
],
"value" => "region",
},
],
},
# Carol
# https://github.com/ensembl-variation/VEP_plugins/blob/main/Carol.pm
# Requires Math/CDF Perl module
{
"key" => "Carol",
"helptip" => "Calculates the Combined Annotation scoRing toOL (CAROL) score for a missense mutation based on the pre-calculated SIFT and PolyPhen scores",
"available" => 0,
"enabled" => 0,
"section" => "Pathogenicity predictions",
"plugin_url" => "https://raw.githubusercontent.com/Ensembl/VEP_plugins/release/113/Carol.pm",
"requires_install" => 1,
"species" => [
"homo_sapiens"
],
},
# Condel
# https://github.com/ensembl-variation/VEP_plugins/blob/main/Condel.pm
# Requires path to config directory as first param
# config directory is checked out as part of VEP_plugins repo, as /[path]/VEP_plugins/config/Condel/config
# Within that dir, edit condel_SP.conf so that condel.dir points to /[path]/VEP_plugins/config/Condel
{
"key" => "Condel",
"helptip" => "Calculates the Consensus Deleteriousness (Condel) score for a missense mutation based on the pre-calculated SIFT and PolyPhen scores",
"available" => 0,
"enabled" => 0,
"section" => "Pathogenicity predictions",
"plugin_url" => "https://raw.githubusercontent.com/Ensembl/VEP_plugins/release/113/Condel.pm",
"requires_install" => 1,
"species" => [
"homo_sapiens"
],
"params" => [
# "/path/to/config/Condel/config",
"@*"
],
"form" => [
{
"name" => "score_pred",
"label" => "Score/prediction",
"type" => "dropdown",
"values" => [
{ "value" => "b", "caption" => "Prediction and score" },
{ "value" => "p", "caption" => "Prediction only" },
{ "value" => "s", "caption" => "Score only" }
],
"value" => "b",
},
],
},
# LOFTEE
# See https://github.com/konradjk/loftee for details
{
"key" => "LoF",
"helptip" => "LOFTEE identifies LoF (loss-of-function) variation",
"available" => 0,
"enabled" => 0,
"section" => "Pathogenicity predictions",
"plugin_url" => "https://raw.githubusercontent.com/konradjk/loftee/master/LoF.pm",
"requires_data" => 1,
"requires_install" => 1,
"params" => [
"@*"
]
},
# LoFtool
# Requires LoFtool_scores.txt file as first param (available in VEP_plugins GitHub repo)
{
"key" => "LoFtool",
"helptip" => "Provides a per-gene rank of genic intolerance and consequent susceptibility to disease based on the ratio of Loss-of-function (LoF) to synonymous mutations in ExAC data",
"available" => 0,
"enabled" => 0,
"section" => "Pathogenicity predictions",
"plugin_url" => "https://raw.githubusercontent.com/Ensembl/VEP_plugins/release/113/LoFtool.pm",
"requires_data" => 1,
"species" => [
"homo_sapiens"
],
"params" => [
# "/path/to/LoFtool_scores.txt"
]
},
# MPC
# Requires fordist_constraint_official_mpc_values.txt.gz data file
{
"key" => "MPC",
"helptip" => "MPC is a missense deleteriousness metric based on the analysis of genic regions depleted of missense mutations in ExAC",
"available" => 0,
"enabled" => 0,
"section" => "Pathogenicity predictions",
"plugin_url" => "https://raw.githubusercontent.com/Ensembl/VEP_plugins/release/113/MPC.pm",
"requires_data" => 1,
"species" => [
"homo_sapiens"
],
"params" => [
# "/path/to/fordist_constraint_official_mpc_values.txt.gz"
]
},
# MTR
# Requires mtrflatfile_1.0.txt.gz data file from ftp://mtr-viewer.mdhs.unimelb.edu.au/pub
{
"key" => "MTR",
"helptip" => "MTR scores quantify the amount of purifying selection acting specifically on missense variants in a given window of protein-coding sequence",
"available" => 0,
"enabled" => 0,
"section" => "Pathogenicity predictions",
"plugin_url" => "https://raw.githubusercontent.com/Ensembl/VEP_plugins/release/113/MTR.pm",
"requires_data" => 1,
"species" => [
"homo_sapiens"
],
"params" => [
# "/path/to/mtrflatfile_1.0.txt.gz"
]
},
# PrimateAI
# Requires PrimateAI_scores_v0.2.tsv.gz or PrimateAI_scores_v0.2_hg38.tsv.gz from https://basespace.illumina.com/s/yYGFdGih1rXL.
{
"key" => "PrimateAI",
"helptip" => "PrimateAI scores can be used to assess pathogenicity of variants in humans",
"available" => 0,
"enabled" => 0,
"section" => "Pathogenicity predictions",
"plugin_url" => "https://raw.githubusercontent.com/Ensembl/VEP_plugins/release/113/PrimateAI.pm",
"requires_data" => 1,
"species" => [
"homo_sapiens"
],
"params" => [
# "/path/to/PrimateAI_scores_v0.2_GRCh38_sorted.tsv.bgz
]
},
# REVEL
# Requires data file processed from revel_all_chromosomes.csv.zip
{
"key" => "REVEL",
"helptip" => "An ensemble method for predicting the pathogenicity of rare missense variants",
"available" => 0,
"enabled" => 0,
"section" => "Pathogenicity predictions",
"plugin_url" => "https://raw.githubusercontent.com/Ensembl/VEP_plugins/release/113/REVEL.pm",
"requires_data" => 1,
"species" => [
"homo_sapiens"
],
"params" => [
# "/path/to/revel_all_chromosomes.tsv.gz"
]
},
# PON_P2
{
"key" => "PON_P2",
"label" => "PON_P2",
"available" => 0,
"enabled" => 0,
"section" => "Pathogenicity predictions",
"plugin_url" => "https://raw.githubusercontent.com/Ensembl/VEP_plugins/release/113/PON_P2.pm"
},
# ClinPred
# Requires data file processed from ClinPred.txt.gz
{
"key" => "ClinPred",
"helptip" => "A prediction tool for the identification of disease-relevant nonsynonymous single nucleotide variants",
"available" => 0,
"enabled" => 0,
"section" => "Pathogenicity predictions",
"plugin_url" => "https://raw.githubusercontent.com/Ensembl/VEP_plugins/release/113/ClinPred.pm",
"requires_data" => 1,
"species" => [
"homo_sapiens"
],
"params" => [
# "/path/to/ClinPred_tabbed.tsv.gz"
]
},
# EVE
# https://github.com/ensembl-variation/VEP_plugins/blob/main/EVE.pm
# Requires tabix-indexed data file as params
# No other parameters so no form required
# data file currently only available for GRCh38
# We only report EVE scores for input variants and
# don't consider adjacent variants.
{
"key" => "EVE",
"label" => "EVE",
"available" => 0,
"enabled" => 0,
"section" => "Pathogenicity predictions",
"helptip" => "EVE (evolutionary model of variant effect) is a computational method for the classification of human genetic variants trained solely on evolutionary sequences.",
"plugin_url" => "https://raw.githubusercontent.com/Ensembl/VEP_plugins/release/113/EVE.pm",
"requires_data" => 1,
"species" => [
"homo_sapiens"
],
"params" => [
#"/path/to/eve_merged.vcf.gz"
]
},
# Paralogues
{
"key" => "Paralogues",
"label" => "Paralogue variants",
"available" => 0,
"enabled" => 0,
"section" => "Variant data",
"helptip" => "Retrieves ClinVar variants that overlap genomic coordinates corresponding to aligned amino acid positions in paralogous proteins",
"plugin_url" => "https://raw.githubusercontent.com/Ensembl/VEP_plugins/release/113/Paralogues.pm",
"requires_data" => 1,
"species" => [
"homo_sapiens"
],
"params" => [
#"matches=/path/to/paralogues_matches.tsv.gz",
"@*"
],
"form" => [
{
"name" => "clnsig",
"label" => "Clinical significance",
"helptip" => "Clinical significance term used to filter paralogue variants",
"type" => "dropdown",
"values" => [
{ "value" => "clnsig=pathogenic", "caption" => "Pathogenic" },
{ "value" => "clnsig=benign", "caption" => "Benign" },
{ "value" => "clnsig=uncertain_significance", "caption" => "Uncertain significance" },
{ "value" => "clnsig=ignore", "caption" => "Ignore (fetch all paralogue variants)" }
],
"value" => "clnsig=pathogenic"
},
{
"name" => "clnsig_match",
"label" => "Clinical significance match type",
"helptip" => "Type of match when filtering paralogue variants based on clinical significance (e.g., using 'Pathogenic' and 'Partial match' will fetch variants that are pathogenic and likely pathogenic, whereas 'Exact match' will only fetch pathogenic variants)",
"type" => "dropdown",
"values" => [
{ "value" => "clnsig_match=partial", "caption" => "Partial match" },
{ "value" => "clnsig_match=exact", "caption" => "Exact match" }
],
"value" => "clnsig_match=partial"
}
]
},
# BayesDel
{
"key" => "BayesDel",
"label" => "BayesDel",
"available" => 0,
"enabled" => 0,
"section" => "Pathogenicity predictions",
"helptip" => "BayesDel adds a deleteriousness meta-score combining multiple deleteriousness predictors.",
"plugin_url" => "https://raw.githubusercontent.com/Ensembl/VEP_plugins/release/113/BayesDel.pm",
"requires_data" => 1,
"species" => [
"homo_sapiens"
],
"params" => [
#"/path/to/BayesDel.vcf.gz"
]
},
# PolyPhen_SIFT
{
"key" => "PolyPhen_SIFT",
"available" => 0,
"enabled" => 0,
"section" => "Pathogenicity predictions",
"plugin_url" => "https://raw.githubusercontent.com/Ensembl/VEP_plugins/release/113/PolyPhen_SIFT.pm",
},
## SPLICING PREDICTIONS
#######################
# dbscSNV
{
"key" => "dbscSNV",
"label" => "dbscSNV",
"available" => 0,
"enabled" => 0,
"section" => "Splicing predictions",
"helptip" => "Retrieves data for splicing variants from a tabix-indexed dbscSNV file",
"plugin_url" => "https://raw.githubusercontent.com/Ensembl/VEP_plugins/release/113/dbscSNV.pm",
"requires_data" => 1,
"requires_install" => 1,
"params" => [
#"/path/to/dbscSNV1.1.txt.gz"
],
"species" => [
"homo_sapiens"
],
},
# GeneSplicer
{
"key" => "GeneSplicer",
"label" => "GeneSplicer",
"helptip" => "Detects splice sites in genomic DNA",
"available" => 0,
"enabled" => 0,
"section" => "Splicing predictions",
"plugin_url" => "https://raw.githubusercontent.com/Ensembl/VEP_plugins/release/113/GeneSplicer.pm",
"requires_install" => 1,
"species" => [
"homo_sapiens"
],
"params" => [
#"/path/to/genesplicer/bin/linux/genesplicer",
#"/path/to/genesplicer/human",
"@*"
]
},
# MaxEntScan
{
"key" => "MaxEntScan",
"label" => "MaxEntScan",
"helptip" => "Sequence motif and maximum entropy based splice site consensus predictions",
"available" => 0,
"enabled" => 0,
"section" => "Splicing predictions",
"plugin_url" => "https://raw.githubusercontent.com/Ensembl/VEP_plugins/release/113/MaxEntScan.pm",
"requires_install" => 1,
"species" => [
"homo_sapiens"
],
"params" => [
#"/path/to/maxentscan"
]
},
# SpliceRegion
{
"key" => "SpliceRegion",
"label" => "SpliceRegion",
"helptip" => "More granular predictions of splicing effects",
"available" => 0,
"enabled" => 0,
"section" => "Splicing predictions",
"plugin_url" => "https://raw.githubusercontent.com/Ensembl/VEP_plugins/release/113/SpliceRegion.pm",
},
# SpliceAI
{
"key" => "SpliceAI",
"label" => "SpliceAI",
"helptip" => "Pre-calculated annotations from SpliceAI a deep neural network, developed by Illumina, Inc that predicts splice junctions from an arbitrary pre-mRNA transcript sequence. Used for non-commercial purposes (https://github.com/Illumina/SpliceAI)",
"available" => 0,
"enabled" => 0,
"section" => "Splicing predictions",
"plugin_url" => "https://raw.githubusercontent.com/Ensembl/VEP_plugins/release/113/SpliceAI.pm",
"species" => [
"homo_sapiens"
],
"form" => [
{