我有这个VCF 格式文件,我想在 R 中读取这个文件。但是,这个文件包含一些我想跳过的冗余行。我想得到类似于行以匹配行开头的结果#CHROM
。
这是我尝试过的:
chromo1<-try(scan(myfile.vcf,what=character(),n=5000,sep="\n",skip=0,fill=TRUE,na.strings="",quote="\"")) ## find the start of the vcf file
skip.lines<-grep("^#CHROM",chromo1)
column.labels<-read.delim(myfile.vcf,header=F,nrows=1,skip=(skip.lines-1),sep="\t",fill=TRUE,stringsAsFactors=FALSE,na.strings="",quote="\"")
num.vars<-dim(column.labels)[2]
我的文件.vcf
#not wanted line
#unnecessary line
#junk line
#CHROM POS ID REF ALT
11 33443 3 A T
12 33445 5 A G
结果
#CHROM POS ID REF ALT
11 33443 3 A T
12 33445 5 A G