博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Extracting info from VCF files
阅读量:5282 次
发布时间:2019-06-14

本文共 1652 字,大约阅读时间需要 5 分钟。

R, Bioconductor

filterVcf: Extract Variants of Interest from a Large VCF File (Paul Shannon)

We demonstrate three methods:  filtering by genomic region,  filtering on attributes of

each specific variant call, and intersecting with known regions of interest (exons, splice
sites, regulatory regions, etc.).

 

Java

SelectVariants -- Select a subset of variants from a larger callset ( GATK SelectVariants )

Often, a VCF containing many samples and/or variants will need to be subset in order to facilitate certain analyses (e.g. comparing and contrasting cases vs. controls; extracting variant or non-variant loci that meet certain requirements, displaying just a few samples in a browser like IGV, etc.). SelectVariants can be used for this purpose.

 

Biostars

Question: How To Split Multiple Samples In Vcf File Generated By Gatk?

I did variant calling using BWA + PiCard + GATK and have just got the filtered VCF files from GATK. In the process of running GATK, I used list of inputs (11 samples) and for most steps, I had only one output file for each step. Now, I got two VCF files (one for SNPs and the other is for indels), each of which contains 11 samples. I can see the names of the 11 samples in the header of vcf files, and each sample seems to have one column of data. So I am wondering how to split each VCF files into individual sample vcf files?

 

bcftools

for file in *.vcf*; do  for sample in `bcftools view -h $file | grep "^#CHROM" | cut -f10-`; do    bcftools view -c1 -Oz -s $sample -o ${
file/.vcf*/.$sample.vcf.gz} $file donedone

 

vcf-subset

vcf-subset -c S1 bigfile.vcf > S1.vcf

 

REF:

转载于:https://www.cnblogs.com/emanlee/p/4561961.html

你可能感兴趣的文章
IT人生的价值和意义 感觉真的有了
查看>>
Linux命令之df
查看>>
JS DOM对象
查看>>
python正则表达式
查看>>
OGR – Merging Multiple SHP files
查看>>
创业公司该不该被收购?(转)
查看>>
sqlserver 行转列、列转行[转]
查看>>
【IScroll深入学习】解决IScroll疑难杂症
查看>>
python 数据类型
查看>>
108-PHP类成员protected和private成员属性不能被查看数值
查看>>
ajax post data 获取不到数据,注意contentType
查看>>
css控制height充满浏览器视口
查看>>
Linux 系统目录结构
查看>>
查看CPU数量和核心数
查看>>
Android异步加载网络图片
查看>>
python学习之 - XML
查看>>
css问题小计
查看>>
Laravel学习笔记(三)数据库 数据库迁移
查看>>
ORACLE查看并修改最大连接数
查看>>
box-flex不均分问题
查看>>