view vcf2lv.sh @ 4:58815aed4ec3 draft default tip

few bugfixes in VCF-2-variantlist
author saskia-hiltemann
date Wed, 04 Nov 2015 05:06:12 -0500
parents 885ba15c2564
children
line wrap: on
line source

#!/bin/bash

vcffile=$1
outputfile=$2

# vcf columns: CHROM-POS-ID-REF-ALT
# LV cloumns: variantId-chromosome-start-end-reference-alleleSeq-xRef 


# add chr prefix if not present
# determine varType (snp, ins, del, sub)
# convert coordinates to 0-based halfopen
# calculate end coordinate from position and length
# remove leading reference base from the non-SNP variants, update position

awk 'BEGIN{
		FS="\t";
		OFS="\t";	
		count=0;
		
		#output new header
		print "variantId", "chromosome", "begin", "end", "varType", "reference", "alleleSeq", "xRef" > "headerline.txt"
	}{

		if(substr($0,1,1)!="#" && $5 != "."){ #skip header or nonvariant entries (period in ALT column)
						
			# detect multivariants
			chrom=$1
			pos=$2
			ref=$4
			#alt=$5
			reflen=length($4)	
			
			# excel adds quotes sometimes :s
			gsub(/"/,"",ref)
			gsub(/"/,"",alt)
			
			# add chr prefix if needed
			if(substr($1,1,3)!="chr")
				chromosome="chr"$1
			else
				chromosome=chrom
			
			# split ALT column in case of multiple variant alleles
			split($5,alleles,",");
		
			for (i in alleles) {
				alt=alleles[i]
							
				
				# determine varType
				if(length(ref) == 1 && length(alt) == 1)
					varType="snp"
				else if (length(ref) == 1 && substr(ref,1,1)==substr(alt,1,1) )
					varType="ins"
				else if (length(alt) == 1 && substr(ref,1,1)==substr(alt,1,1) )
					varType="del"
				else 
					varType="sub"
					
				# determine start and end coordinates in 0-based half-open coordinate system
					
				if (varType=="snp"){
					start=pos-1
					end=pos			
				}
				else if (varType=="ins"){
					start=pos
					end=pos
				}
				else if (varType=="del"){
					start=pos
					end=pos+(reflen-1)			
				}
				else if (varType=="sub"){
					start=pos-1
					end=pos+(reflen-1)			
				}		
	
				# remove leading reference base
			   	if ( varType!="snp" && substr(ref,1,1)==substr(alt,1,1) ){ #subs not mandatory leading reference base :s
					reference=substr(ref,2)	
					alleleSeq=substr(alt,2)	
					if (varType =="sub"){
					   start+=1
                                        }
				}
				else{
					reference=ref
					alleleSeq=alt
				}
		
				#print output variant(s)
		
				if(chromosome == "chr1" || chromosome == "chr2" || chromosome == "chr3" || chromosome == "chr4" || chromosome == "chr5" || chromosome == "chr6" || chromosome == "chr7" || chromosome == "chr8" || chromosome == "chr9" || chromosome == "chr10" || chromosome == "chr11" || chromosome == "chr12" || chromosome == "chr13" || chromosome == "chr14" || chromosome == "chr15" || chromosome == "chr16" || chromosome == "chr17" ||chromosome == "chr18" ||chromosome == "chr19" ||chromosome == "chr20" ||chromosome == "chr21" ||chromosome == "chr22" ||chromosome == "chrX" ||chromosome == "chrY" )
					print count, chromosome, start, end, varType, reference, alleleSeq, ""
			
				count+=1
			}
		}
	}END{}' $vcffile > $outputfile.almost
	
	

# due to overlapping variants that we reduce to more canonical forms, variants may have become out of order, so resort to be sure
sort -k2,2V -k3,3g $outputfile.almost > $outputfile.almost2

cat headerline.txt $outputfile.almost2 > $outputfile



	
#from 100Genomes site:

#CHROM chromosome: an identifier from the reference genome. All entries for a specific CHROM should form a contiguous block within the VCF file.(Alphanumeric String, Required)
#POS position: The reference position, with the 1st base having position 1. Positions are sorted numerically, in increasing order, within each reference sequence CHROM. (Integer, Required)
#ID semi-colon separated list of unique identifiers where available. If this is a dbSNP variant it is encouraged to use the rs number(s). No identifier should be present in more than one data record. If there is no identifier available, then the missing value should be used. (Alphanumeric String)
#REF reference base(s): Each base must be one of A,C,G,T,N. Bases should be in uppercase. Multiple bases are permitted. The value in the POS field refers to the position of the first base in the String. For InDels, the reference String must include the base before the event (which must be reflected in the POS field). (String, Required).
#ALT comma separated list of alternate non-reference alleles called on at least one of the samples. Options are base Strings made up of the bases A,C,G,T,N, or an angle-bracketed ID String (”<ID>”). If there are no alternative alleles, then the missing value should be used. Bases should be in uppercase. (Alphanumeric String; no whitespace, commas, or angle-brackets are permitted in the ID String itself)