What follows is output from locus zoom followed by a sample of the first 20 lines and first 12 columns of a vcf file. The vcf file is bgzipped and tabixed. It was created directly from plink1.9.
I'm receiving the message "Error: no valid markers in VCF file to compute LD from.."
I am writing to ask if anyone has encountered a similar problem while using either locuszoom or plink1.9. I have not contacted the authors of locuszoom because in the past I never received a response to another query. Any help would be much appreciated.
LZ output:
Using /share/apps/ngs-ccts/locuszoom/locuszoom-1.3/bin/locuszoom.R..
Beginning plotting sequence for: chr5_7512611-8512611
Extracting region of interest (chr5:7512611-8512611) from input file..
Attempting to find best SNP in region..
Found: chr5:8012611
Using user-specified VCF file to calculate LD with reference SNP chr5:8012611..
Error: no valid markers in VCF file to compute LD from..
Grabbing annotations from SQLite database..
Creating plot..
Warning message:
No usable LD information.
Deleting temporary files..
Time required: 0d:0h:0m:35s
command used to display file: zcat MTRR_area_ra_susc.vcf.gz | head -20 | awk '{print $1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12}'
output of command
##fileformat=VCFv4.2
##fileDate=20160531
##source=PLINKv1.90
##contig=<id=5,length=9999893>
##INFO=<id=pr,number=0,type=flag,description=provisional reference="" allele,="" may="" not="" be="" based="" on="" real="" reference="" genome="">
##FORMAT=<id=gt,number=1,type=string,description=genotype>
#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT 0_1501_1 1_1502_1 2_1503_1
5 6000051 rs17818165 C T . . PR GT 0/1 0/0 0/0
5 6000064 rs466640 A T . . PR GT 0/1 0/0 0/1
5 6000282 rs7718138 C T . . PR GT 0/0 0/0 0/0
5 6000403 rs823742 T C . . PR GT 0/1 0/0 0/1
5 6000494 rs823743 C T . . PR GT 0/1 0/0 0/1
5 6000584 rs258972 G A . . PR GT 0/0 0/0 0/1
5 6000847 rs823568 C T . . PR GT 0/1 0/0 0/1
5 6001581 rs466015 A G . . PR GT 0/1 0/0 0/1
5 6001813 rs460967 C G . . PR GT 0/1 0/0 0/1
5 6001868 rs461940 A G . . PR GT 0/1 0/0 0/1
5 6001992 rs464210 A T . . PR GT 0/1 0/0 0/1
5 6002069 rs435787 G T . . PR GT 0/1 1/1 0/1
5 6002085 rs258971 C G . . PR GT 0/0 0/0 0/0
The actual VCF file is tab-delimited, the quick and dirty awk command is why it becomes single space delimited. Has anyone dealt with an issue like this?
Thank you for your suggestion, I changed '.' to 'PASS' in the FILTER column and it worked