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
|
.\" Automatically generated by Pandoc 2.19.2
.\"
.\" Define V font for inline verbatim, using C font in formats
.\" that render this, and otherwise B font.
.ie "\f[CB]x\f[]"x" \{\
. ftr V B
. ftr VI BI
. ftr VB B
. ftr VBI BI
.\}
.el \{\
. ftr V CR
. ftr VI CI
. ftr VB CB
. ftr VBI CBI
.\}
.TH "VCFNULLDOTSLASHDOT" "1" "" "vcfnulldotslashdot" "Convert VCF . to ./."
.hy
.SH NAME
.PP
vcfnulldotslashdot converts single dots to ./.
.PP
This is useful for some downstream analysis tools.
.SH SYNOPSIS
.PP
\f[B]vcf2tsv\f[R] < \f[I]file\f[R]
.SH DESCRIPTION
.PP
vcfnulldotslashdot converts single dots to ./.
.PP
This is useful for some downstream analysis tools.
.SH EXIT VALUES
.TP
\f[B]0\f[R]
Success
.TP
\f[B]not 0\f[R]
Failure
.SH EXAMPLES
.PP
vcf2tsv converts a VCF to VCF
.IP
.nf
\f[C]
>>> cat(\[dq]../scripts/vcfnulldotslashdot data/issue_307_vcfnulldotslashdot.vcf\[dq])
##fileformat=VCFv4.1
##fileDate=20210209
##source=freeBayes v0.9.21
##reference=ahy.fa
##phasing=none
##filter=\[dq]TYPE = snp & QUAL > 30 & AF > 0.05 & AF < 0.95 genotypes filtered with: GQ > 20\[dq]
##INFO=<ID=AC,Number=A,Type=Integer,Description=\[dq]Total number of alternate alleles in called genotypes\[dq]>
##INFO=<ID=AF,Number=A,Type=Float,Description=\[dq]Estimated allele frequency in the range (0,1]\[dq]>
##INFO=<ID=TYPE,Number=A,Type=String,Description=\[dq]The type of allele, either snp, mnp, ins, del, or complex.\[dq]>
##INFO=<ID=LEN,Number=A,Type=Integer,Description=\[dq]allele length\[dq]>
##FORMAT=<ID=GT,Number=1,Type=String,Description=\[dq]Genotype\[dq]>
#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT rab-field.AH13
contig71493_103113 50 . G A 79.0603 . AC=5;AF=0.078125;LEN=1;TYPE=snp GT ./.:0,0,0
\f[R]
.fi
.SH LICENSE
.PP
Copyright 2021 (C) Erik Garrison and vcflib contributors.
MIT licensed.
.SH AUTHORS
Erik Garrison and other vcflib contributors.
|