VCF SNP analysis
Hello
Any advice on the best (easiest) way to handle VCF files (to find SNPs) i.e. using R or VCFtools within Linux.
Sorry if this is basic but just need to get started.
Regards Marion
snp
r
vcftools
• 3,157 views
•
link
written
by
marion.ryan •
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
Germline and somatic SNPs in same or different allele
written by Nacho del Valle •Dear community, I have access to germline and somatic vcf files for a cohort of patients (each patient has a vcf file with germline snps …
-
Filter max-missing multiple time removes more SNPs
written by QPaps04 •Please can someone explain to me why this happens? Here are the steps I take 1. I carry out a filter on max missing using: …
-
Predictive model from gene expression profile of diseased samples
written by marion.ryan •Hello, I am looking for some advice. I have 18 diseased tissue's, 11 normal and 21 DE genes. I want to find the best predictors …
-
Filter all the common SNP's in different vcf files(corresponding to different samples)
written by shubhra.bhattacharyaI have 10 different vcf files which are of different samples. I want to find the SNPs common between all of them i.e the snp …
-
VCFtools intersect vs. GATK intersect
written by ciemanekI need to intersect multiple VCF files. I've been trying to use vcf-isec from VCFtools and GATK CombineVariants and later on SelectVariants as follows: **VCFtools:** …
-
Getting 1000 Genomes phase one MAF values
written by eurioste •I need to get the global 1000 genomes phase 1 minor allele frequencies for all 1000 Genomes low coverage phase 1 SNPs. I have the …
-
When running the vcfutils.pl varFilter command there is no "PASS" comments in the Filter column.
written by Ann •Hello, I'm trying to filter the good quality SNPs on a vcf file using the below command: vcfutils.pl varFilter –p –Q50 –d5 –a3 sample1_mpileup.unfilt2.vcf > …
-
How to extractreference allele from fasta file
written by xinhui.wangI am running vcftools to get ped file from a list of vcf files. I would like to know the reference allele for these snps …
-
Checking Frameshifts And Stop Codons In Gene
written by bioinfo<p>I have a vcf file of my Snps and another vcf file for my indels produced by BWA and GATK. Is there any commands in …
-
Extracting Columns From Vcf File Using Vcftools/Perl
written by bioinfo<p>What's the easiest way to extract 2 or more columns simultaneously from my vcf SNP file and export them in CSV format from command line …
define:
way to handleTo clarify (in case OP was not aware), VCF files already contain the SNPs.
Just to chime in. Please read the structure of VCF and how VCFTools work and what they can do. Then read about SNP and what format of file represent them. Once you read them you can answer your own question. Man page of VCFTool is pretty descriptive. Read and then formulate your query where you get stuck we will be happy to help and yes VCF already contain SNPs (check for the column with #rsID's they are SNPs) . Well also understand difference between SNPs and SNVs. ;)
Good luck!
Thanks for the quick answers, I am looking for the best tool with which to navigate and explore the VCF files derived from an RNAseq experiment in order to obtain specific SNPs relating to particular genes and also compare the samples in relation to specific SNPs, so any tips in relation to the best tools would be great, but I will read up myself also. sorry I should have been a bit clearer. Regards Marion
Please use
ADD COMMENT/ADD REPLYwhen responding to existing posts to keep threads logically organized.You can start with this guide from GATK people:
https://gatkforums.broadinstitute.org/gatk/discussion/1268/what-is-a-vcf-and-how-should-i-interpret-it
so if you are trying to find mutations or variants from RNASeq then samtools workflow or STAR/GATK workflow should be fine. I personally like STAR/GATK owing to the statistical model and robustness that you can add to it. Having said that, once you have VCF you can always plot stats to see how many of your variants have PASS flag and what are the DP,AF scores of them. Then again are you looking at somatic or germline? Once you have done following with the GATK workflows you should have significant calls whereby you will have variants , some of which will be SNPs meaning they have been identified as SNPs with #rsID , rest should be novel.
If you have the id of the SNPs with you probably a list of vcf with the rsID then you can always overlap them with your VCF file and pull out the scores to make some summarisation calls. Whatever you do, you will need to annotate the variants and associate the consequences in order to find some biological relevance.