bcftools cnv -c conrol_sample -s query_sample -o outdir/ -p 0 file.vcf+
bcftools cnv -c control_sample -s query_sample -o outdir/ -p 0 file.vcf
diff --git a/howtos/FAQ.html b/howtos/FAQ.html index 1237d6d5..f646b1d4 100644 --- a/howtos/FAQ.html +++ b/howtos/FAQ.html @@ -110,7 +110,7 @@
The error above is printed when different number of values is encoutered, for example AC=1
or AC=1,1,1
in the example above.
The error above is printed when different number of values is encountered, for example AC=1
or AC=1,1,1
in the example above.
Other such definitions are Number=R
(there must be as many values as there are REF+ALT alleles in total),
diff --git a/howtos/FAQ.txt b/howtos/FAQ.txt
index ffbd3e39..279a982d 100644
--- a/howtos/FAQ.txt
+++ b/howtos/FAQ.txt
@@ -20,7 +20,7 @@ and expects a value for each ALT allele, for example
----
chr1 64334 . A C,T . . AC=1,1 GT 0/1 0/1
----
-The error above is printed when different number of values is encoutered, for example `AC=1` or `AC=1,1,1` in the example above.
+The error above is printed when different number of values is encountered, for example `AC=1` or `AC=1,1,1` in the example above.
Other such definitions are `Number=R` (there must be as many values as there are REF+ALT alleles in total),
and `Number=G` (this is more complicated, see the section 1.4.2 of the link:http://samtools.github.io/hts-specs/VCFv4.3.pdf[VCF specification]).
diff --git a/howtos/bcftools.txt b/howtos/bcftools.txt
index 71ea2901..8f99d80a 100644
--- a/howtos/bcftools.txt
+++ b/howtos/bcftools.txt
@@ -408,7 +408,7 @@ Add or remove annotations.
# Annotate from a tab-delimited file with regions (1-based coordinates, inclusive)
tabix -s1 -b2 -e3 annots.tab.gz
- bcftools annotate -a annots.tab.gz -h annots.hdr -c CHROM,FROM,TO,TAG inut.vcf
+ bcftools annotate -a annots.tab.gz -h annots.hdr -c CHROM,FROM,TO,TAG input.vcf
# Annotate from a bed file (0-based coordinates, half-closed, half-open intervals)
bcftools annotate -a annots.bed.gz -h annots.hdr -c CHROM,FROM,TO,TAG input.vcf
@@ -1022,7 +1022,7 @@ See the usage examples below.
# %TBCSQ .. print consequences in both haplotypes in separate columns
# %TBCSQ{0} .. print the first haplotype only
# %TBCSQ{1} .. print the second haplotype only
- # %TBCSQ{*} .. print a list of unique consquences present in either haplotype
+ # %TBCSQ{*} .. print a list of unique consequences present in either haplotype
bcftools query -f'[%CHROM\t%POS\t%SAMPLE\t%TBCSQ\n]' out.bcf
----
@@ -2069,7 +2069,7 @@ Extracts fields from VCF or BCF files and outputs them in user-defined format.
%SAMPLE Sample name
%POS0 POS in 0-based coordinates
%END End position of the REF allele
- %END0 End position of the REF allele in 0-based cordinates
+ %END0 End position of the REF allele in 0-based coordinates
\n new line
\t tab character
diff --git a/howtos/cnv-calling.html b/howtos/cnv-calling.html
index 8e3bd529..8438c19b 100644
--- a/howtos/cnv-calling.html
+++ b/howtos/cnv-calling.html
@@ -181,7 +181,7 @@
bcftools cnv -c conrol_sample -s query_sample -o outdir/ -p 0 file.vcf+
bcftools cnv -c control_sample -s query_sample -o outdir/ -p 0 file.vcf
BCFtools is a program for variant calling and manipulating files in the Variant Call Format (VCF) and its binary counterpart BCF. All commands work transparently with both VCFs and BCFs, both uncompressed and BGZF-compressed. -In order to avoid tedious repetion, throughout this document we will use +In order to avoid tedious repetition, throughout this document we will use "VCF" and "BCF" interchangeably, unless specifically noted.
In the most extreme case when nothing else is working, one can simply force -the unambigous alleles onto the forward strand and drop the ambigous genotypes.
+the unambiguous alleles onto the forward strand and drop the ambiguous genotypes.In this example, the -f
otion defines the output format. The %POS
string
+
In this example, the -f
option defines the output format. The %POS
string
indicates that for each VCF line we want the POS column printed. The \n
stands for a newline character, a notation commonly used in the
world of computer programming. Any characters without a special meaning
diff --git a/howtos/query.txt b/howtos/query.txt
index d4ba4fee..a2bff8bb 100644
--- a/howtos/query.txt
+++ b/howtos/query.txt
@@ -25,7 +25,7 @@ bcftools query -l file.bcf | wc -l
----
bcftools query -f '%POS\n' file.bcf
----
-In this example, the `-f` otion defines the output format. The `%POS` string
+In this example, the `-f` option defines the output format. The `%POS` string
indicates that for each VCF line we want the POS column printed. The `\n`
stands for a newline character, a notation commonly used in the
world of computer programming. Any characters without a special meaning
diff --git a/howtos/roh-calling.html b/howtos/roh-calling.html
index 5a7d71f1..8bb6f77f 100644
--- a/howtos/roh-calling.html
+++ b/howtos/roh-calling.html
@@ -230,7 +230,7 @@
If the number of the processed sites is too low, check what was the reason for exluding +
If the number of the processed sites is too low, check what was the reason for excluding them. This command should give the number of sites that were processed: