it's not missing , after -a i wrote Galaxy96-[Galaxy45-[VarScan_on_data_44].vcf].vcf
I have vcf file that I obtained from the galaxy and I want to run bcftools annotate. I ran the following command:
bcftools annotate -a Galaxy96-\[Galaxy45-\[VarScan_on_data_44\].vcf\].vcf -o samtools_annotated.vcf
But no output file is generated? How can I use different parameters of bcf tools successfully
1 answer
bcftools annotate -a Galaxy96-\[Galaxy45-\[VarScan_on_data_44\].vcf\].vcf -o samtools_annotated.vcf
1) this is a strange path.
2) here you gave the argument for the -a option
-a, --annotations FILE VCF file or tabix-indexed FILE with annotations: CHR\tPOS[\tVALUE]+
but there is no input VCF. by the way the file for '-a' CANNOT be a plain vcf file. It must be a bgzf file. Unless this strange path was your input file and therefore the path for the option -a is missing
it's not missing , after -a i wrote Galaxy96-[Galaxy45-[VarScan_on_data_44].vcf].vcf
so tell me. What is the name of the annotation file and what is the name of the input vcf ?
I only have input file named "Galaxy96-[Galaxy45-[VarScan_on_data_44].vcf].vcf"
if you want to annotate this VCF file, you need an annotation file... Quod erat faciendum
Do you mean just the annotation file or vcf file?
if you want to annotate this VCF file, you need an annotation file
They're obviously two different files. Read about the VCF annotation process before attempting to annotate VCF files on your own. At this point, your questions are starting to look like attempts at trolling.
Log in to answer this question.
please, don't use a screenshot, when you can just copy-n-paste the text.
There are certain conventions in usage documents:
The first line in usage says
You've provided an optional parameter but are missing the required parameter. This sort of mistake happens a lot, so this advice should help you with most tools' usage docs.