Changes between Version 1 and Version 2 of net.sf.basedb.varsearch/using
- Timestamp:
- Mar 19, 2021, 11:13:54 AM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
net.sf.basedb.varsearch/using
v1 v2 32 32 * `cosmic:COSV52706449`: Find variants for the COSMIC ID 33 33 * `rsid:rs1057519977`: Find variants for the dbSNP ID 34 * `gt:1/1`: Find variants that are homozygous 35 * `dp:>=100`: Find variants that has been sequenced to a depth 100 or more 36 * `vd:>=100`: Find variants where at least 100 alternate alleles have been found 37 * `af:>0.8`: Find variants where the alternate allele frequency is larger than 0.8 38 * `effect:synonymous`: Find variants where the predicted effect is synonymous 34 39 35 40 **Tip! ** The prefix can in many cases be skipped since it is almost always possible to automatically make an educated guess about the field with some pattern matching on the query string. The **gene:** field is the default and will be used if a field can't be automatically guessed. … … 41 46 * `COSV52706449`: 'COSV' follwed by numbers 42 47 * `rs1057519977`: 'rs' followed by numbers 48 * `1/1`: 0 or 1 with forward slash in-between 43 49 44 50 **Note! ** If a query don't return the expected result always try again 45 with explicit field prefixes. 51 with explicit field prefixes. The following fields are **never** auto-detected: 52 53 * `dp` 54 * `vd` 55 * `af` 56 * `effect` 46 57 47 58 It is possible to specify multiple conditions with **AND** and **OR**. … … 68 79 * `chrom:` Name of chromosome(eg. ''chr1'', ''chr2'', etc) 69 80 * `pos:` Location within the chromosome. The location is also indexed using the chromsome name as a field name. Thus, the query string `chrom:chr17 AND pos:7675189` can be written as `chr17:7675189` (recommended). 81 * `effect:` Expected effect of the variant as determined by !SnpEff. There is a [https://pcingola.github.io/SnpEff/se_inputoutput/#effect-prediction-details table with a list of possible values]. The `_variant` suffix is ignored for those values that have it. 82 * `gt:`: Genotype of the variant. Can be one of `0/1`, `1/0` or `1/1`. 83 * `dp:`: Depth at the variant location. 84 * `vd:`: Depth of the alternate allele at the variant location. 85 * `af:`: Allele frequency of the alternate allele. 70 86