Hi,
I am attempting to use denovogear to identify denovo variants from a parent-child trio, and am getting an error message when it parses the bcf file:
# START ERROR MESSAGE
XD Model
PED file : trio.ped, BCF file : trio.bcf
The number of trios in the ped file : 1
The number of paired samples in the ped file : 0
Created SNP lookup table - XD
First mrate 1 Last 1
First code 6 Last 6
First tgt AA/AA/AA Last TT/TT/TT
First tref 0.0001791 Last 0.744757
Created indel lookup table - XD
First code 6 Last 6
First tgt RR/RR/RR Last DD/DD/DD
First prior 0.0375 Last 0.0855
BCF PARSING ERROR ! -7
Exiting !
# END ERROR MESSAGE
The guide to using denovogear is here:
http://sourceforge.net/p/denovogear/wiki/Home/
It requires a bcf of called variants for the trio, and ped file to describe the trio.
I'm running it with the following command:
denovogear dnm XD --bcf output.bcf --ped trio.ped
My ped file looks like this
FAM001 child dad mum 2 2
FAM001 mum 0 0 1 0
FAM001 dad 0 0 2 0
affected child is female, normal parents.. is this correctly formatted?
I created the bcf from a multi-sample vcf containing the same individuals in the trio as so:
bcftools view -S -b -D ucsc_hg19.dict trio.vcf > trio.bcf
I generated the sequence dictionary with Picard:
java -jar /usr/local/lib/picard_tools/CreateSequenceDictionary.jar \
REFERENCE=$ref_genome \
OUTPUT=genome.dict
Any ideas what I'm doing wrong?
Cheers,
Chris
I am attempting to use denovogear to identify denovo variants from a parent-child trio, and am getting an error message when it parses the bcf file:
# START ERROR MESSAGE
XD Model
PED file : trio.ped, BCF file : trio.bcf
The number of trios in the ped file : 1
The number of paired samples in the ped file : 0
Created SNP lookup table - XD
First mrate 1 Last 1
First code 6 Last 6
First tgt AA/AA/AA Last TT/TT/TT
First tref 0.0001791 Last 0.744757
Created indel lookup table - XD
First code 6 Last 6
First tgt RR/RR/RR Last DD/DD/DD
First prior 0.0375 Last 0.0855
BCF PARSING ERROR ! -7
Exiting !
# END ERROR MESSAGE
The guide to using denovogear is here:
http://sourceforge.net/p/denovogear/wiki/Home/
It requires a bcf of called variants for the trio, and ped file to describe the trio.
I'm running it with the following command:
denovogear dnm XD --bcf output.bcf --ped trio.ped
My ped file looks like this
FAM001 child dad mum 2 2
FAM001 mum 0 0 1 0
FAM001 dad 0 0 2 0
affected child is female, normal parents.. is this correctly formatted?
I created the bcf from a multi-sample vcf containing the same individuals in the trio as so:
bcftools view -S -b -D ucsc_hg19.dict trio.vcf > trio.bcf
I generated the sequence dictionary with Picard:
java -jar /usr/local/lib/picard_tools/CreateSequenceDictionary.jar \
REFERENCE=$ref_genome \
OUTPUT=genome.dict
Any ideas what I'm doing wrong?
Cheers,
Chris
Comment