|
1 | 1 | ### VcfAnnotateFromBed tool help
|
2 |
| - VcfAnnotateFromBed (2021_03-100-g09f25a25) |
| 2 | + VcfAnnotateFromBed (2021_06-89-gbbd16264) |
3 | 3 |
|
4 | 4 | Annotates the INFO column of a VCF with data from a BED file.
|
5 | 5 |
|
|
9 | 9 | -> %0A; -> %0D; -> %20; , -> %2C; ; -> %3B; = -> %3D;
|
10 | 10 |
|
11 | 11 | Mandatory parameters:
|
12 |
| - -bed <file> BED file used as source of annotations (name column). |
13 |
| - -name <string> Annotation name in INFO column of output VCF file. |
| 12 | + -bed <file> BED file used as source of annotations (name column). |
| 13 | + -name <string> Annotation name in INFO column of output VCF file. |
14 | 14 |
|
15 | 15 | Optional parameters:
|
16 |
| - -in <file> Input VCF file. If unset, reads from STDIN. |
17 |
| - Default value: '' |
18 |
| - -out <file> Output VCF list. If unset, writes to STDOUT. |
19 |
| - Default value: '' |
20 |
| - -sep <string> Separator used if there are several matches for one variant. |
21 |
| - Default value: ':' |
| 16 | + -in <file> Input VCF file. If unset, reads from STDIN. |
| 17 | + Default value: '' |
| 18 | + -out <file> Output VCF list. If unset, writes to STDOUT. |
| 19 | + Default value: '' |
| 20 | + -sep <string> Separator used if there are several matches for one variant. |
| 21 | + Default value: ':' |
| 22 | + -threads <int> The number of threads used to read, process and write files. |
| 23 | + Default value: '1' |
| 24 | + -block_size <int> Number of lines processed in one chunk. |
| 25 | + Default value: '5000' |
| 26 | + -prefetch <int> Maximum number of chunks that may be pre-fetched into memory. |
| 27 | + Default value: '64' |
| 28 | + -debug <int> Enables debug output at the given interval in milliseconds (disabled by default, cannot be combined with writing to STDOUT). |
| 29 | + Default value: '-1' |
22 | 30 |
|
23 | 31 | Special parameters:
|
24 |
| - --help Shows this help and exits. |
25 |
| - --version Prints version and exits. |
26 |
| - --changelog Prints changeloge and exits. |
27 |
| - --tdx Writes a Tool Definition Xml file. The file name is the application name with the suffix '.tdx'. |
| 32 | + --help Shows this help and exits. |
| 33 | + --version Prints version and exits. |
| 34 | + --changelog Prints changeloge and exits. |
| 35 | + --tdx Writes a Tool Definition Xml file. The file name is the application name with the suffix '.tdx'. |
28 | 36 |
|
29 | 37 | ### VcfAnnotateFromBed changelog
|
30 |
| - VcfAnnotateFromBed 2021_03-100-g09f25a25 |
| 38 | + VcfAnnotateFromBed 2021_06-89-gbbd16264 |
31 | 39 |
|
| 40 | + 2021-09-18 Prefetch only part of input file (to save memory). |
| 41 | + 2021-08-24 Added multithread support. |
32 | 42 | 2021-06-15 Added 'sep' parameter.
|
33 | 43 | 2019-12-06 Added URL encoding for INFO values.
|
34 | 44 | 2017-03-14 Initial implementation.
|
|
0 commit comments