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
This script generates a png file for each entry in a vcf file, a bed file or a manually specified region.
19
19
@@ -30,15 +30,20 @@ optional arguments:
30
30
--base_quality INT Minimum base quality for the variant, [default = 13]
31
31
--max_depth_plot INT Maximum read depth used to plot the high coverage region, [default = 500]
32
32
--vaf Include the VAF of the central position in the plot title. Requires reference genome
33
+
--for_gSmVs For the gSmVs workflow used internally in DKFZ, the VAFs are directly sourced from the input VCF.
33
34
--vcf FILE input vcf file ( as an alternative use --bed )
34
35
--bed FILE input bed file ( as an alternative use --vcf )
35
-
--annotations FILE annotation track indexed with tabix
36
+
--annotations FILE Annotation track in bed format is indexed with a tabix. The fourth column could contain the annotation text for the segments. A comma can separate multiple files.
37
+
--annotation_names STR
38
+
annotation names separated by comma. Same length as annotation files
36
39
--prefix PREFIX target directory and file name prefix for generated output files, [default = smvplot]
37
40
--window N the output file for position X will show the region [X-window,X+window], [default = 100]
38
41
--samtoolsbin N the path to the samtools binary, [default = samtools]
39
42
--tabixbin N the path to the tabix binary, [default = tabix]
40
43
--plot_dir DIR subfolder for the plots
41
44
--out_format STR Output format of the plot, [default = pdf]
45
+
--ref_base STR Reference base for the variant entry, [default = ]
46
+
--alt_base STR Alternate base for the variant entry, [default = ]
42
47
```
43
48
44
49
### Example plots
@@ -85,6 +90,9 @@ smvplot \
85
90
```
86
91
### Changelog
87
92
93
+
**0.1.0**
94
+
- Minor: Read sorting by input ref/alt based via cmd parameter
0 commit comments