Entering edit mode
9.9 years ago
Hans
▴
140
Hello
I need to get the statistics of VCF file. I would like to see the distribution of read depth for each sample at each SNP.
I would like also to filter by this depth, sey, set the data point to NULL when the value is below a threshold.
Thank you
Hanan
Thank you for your response
I have used Bioconductor - VariantAnnotation R package so I can easily manipulate the statistics.
read vcf file with
obj<-readVcf( )
and look at theobj@assays$data@listData[["DP"]
matrix.Hanan