You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-10Lines changed: 14 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,8 @@ The germline variant annotator (*gvanno*) is a software package intended for ana
15
15
*gvanno* accepts query files encoded in the VCF format, and can analyze both SNVs and short InDels. The workflow relies heavily upon [Ensembl’s Variant Effect Predictor (VEP)](http://www.ensembl.org/info/docs/tools/vep/index.html), and [vcfanno](https://github.com/brentp/vcfanno). It produces an annotated VCF file and a file of tab-separated values (.tsv), the latter listing all annotations pr. variant record. Note that if your input VCF contains data (genotypes) from multiple samples (i.e. a multisample VCF), the output TSV file will contain one line/record __per sample variant__.
16
16
17
17
### News
18
+
* September 26th 2022 - **1.5.1 release**
19
+
* Added option `--vep_coding_only` - only report variants that fall into coding regions of transcripts (VEP option `--coding_only`)
18
20
* September 24th 2022 - **1.5.0 release**
19
21
* Data updates: ClinVar, GENCODE GWAS catalog, CancerMine, Open Targets Platform
20
22
* Software updates: VEP 107
@@ -25,7 +27,7 @@ The germline variant annotator (*gvanno*) is a software package intended for ana
25
27
* August 25th 2021 - **1.4.3 release**
26
28
* Data updates: ClinVar, GWAS catalog, CancerMine, UniProt, Open Targets Platform
27
29
28
-
### Annotation resources (v1.5.0)
30
+
### Annotation resources (v1.5.1)
29
31
30
32
*[VEP](http://www.ensembl.org/info/docs/tools/vep/index.html) - Variant Effect Predictor v107 (GENCODE v41/v19 as the gene reference dataset)
31
33
*[dBNSFP](https://sites.google.com/site/jpopgen/dbNSFP) - Database of non-synonymous functional predictions (v4.2, March 2021)
@@ -71,17 +73,17 @@ An installation of Python (version >=_3.6_) is required to run *gvanno*. Check t
71
73
72
74
#### STEP 2: Download *gvanno* and data bundle
73
75
74
-
1.[Download the latest version](https://github.com/sigven/gvanno/releases/tag/v1.5.0) (gvanno run script, v1.5.0)
76
+
1.[Download the latest version](https://github.com/sigven/gvanno/releases/tag/v1.5.1) (gvanno run script, v1.5.1)
75
77
2. Download (preferably using `wget`) and unpack the latest assembly-specific data bundle in the gvanno directory
76
78
*[grch37 data bundle](http://insilico.hpc.uio.no/pcgr/gvanno/gvanno.databundle.grch37.20220921.tgz) (approx 20Gb)
77
79
*[grch38 data bundle](http://insilico.hpc.uio.no/pcgr/gvanno/gvanno.databundle.grch38.20220921.tgz) (approx 28Gb)
optional.add_argument('--no_vcf_validate', action="store_true",help="Skip validation of input VCF with Ensembl's vcf-validator, default: %(default)s")
39
39
optional.add_argument('--docker_uid', dest='docker_user_id', help='Docker user ID. default is the host system user ID. If you are experiencing permission errors, try setting this up to root (`--docker-uid root`)')
40
-
optional_vep.add_argument('--vep_regulatory', action='store_true', help='Enable Variant Effect Predictor (VEP) to look for overlap with regulatory regions (option --regulatory in VEP).')
41
-
optional_vep.add_argument('--vep_gencode_all', action='store_true', help='Consider all GENCODE transcripts with Variant Effect Predictor (VEP) (option --gencode_basic in VEP is used by default in gvanno).')
40
+
optional_vep.add_argument('--vep_regulatory', action='store_true', help='Enable VEP to look for overlap with regulatory regions (option --regulatory in VEP).')
41
+
optional_vep.add_argument('--vep_gencode_all', action='store_true', help='Consider all GENCODE transcripts with VEP (option --gencode_basic in VEP is used by default in gvanno).')
42
42
optional_vep.add_argument('--vep_lof_prediction', action="store_true", help="Predict loss-of-function variants with Loftee plugin "+ \
43
-
"in Variant Effect Predictor (VEP), default: %(default)s")
44
-
optional_vep.add_argument('--vep_n_forks', default=4, help="Number of forks for Variant Effect Predictor (VEP) processing, default: %(default)s")
43
+
"in VEP, default: %(default)s")
44
+
optional_vep.add_argument('--vep_n_forks', default=4, help="Number of forks for VEP processing, default: %(default)s")
optional_vep.add_argument('--vep_coding_only', action="store_true", help="Only return consequences that fall in the coding regions of transcripts (VEP), default: %(default)s")
50
51
optional.add_argument('--vcfanno_n_processes', default=4, help="Number of processes for vcfanno "+ \
51
52
"processing (see https://github.com/brentp/vcfanno#-p), default: %(default)s")
52
53
required.add_argument('--query_vcf', help='VCF input file with germline query variants (SNVs/InDels).', required=True)
logger.warning('Variant record '+str(variant_id) +' does not have CSQ tag from Variant Effect Predictor (vep_skip_intergenic in config set to true?) - variant will be skipped')
#logger.warning('Variant record ' + str(variant_id) + ' does not have CSQ tag from Variant Effect Predictor (--vep_skip_intergenic or --vep_coding_only turned ON?) - variant will be skipped')
0 commit comments