Changes between Version 10 and Version 11 of SOPs/vcf_manipulation
- Timestamp:
- 07/19/16 09:12:32 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOPs/vcf_manipulation
v10 v11 61 61 }}} 62 62 63 Similar sorts of tasks can be performed with [http://snpeff.sourceforge.net/SnpSift.html#filter SnpSift's filter] command, like 64 {{{ 65 # Get sites where first sample is reference and the second sample is homozygous for the variant 66 cat Variants.vcf | java -jar SnpSift.jar filter "isRef(GEN[0]) & isHom(GEN[1]) & isVariant(GEN[1])" > Selected_variants.vcf 67 }}} 68 63 69 Annotate variants with SNP IDs (if they overlap known SNPs) 64 70 {{{