1#!/bin/bash
2
3
4NAME=$(echo $2 | sed -e 's/\.recode.*//g')
5
6grep -vwf <(cut -f1 $1) $2 > $NAME.filtered.vcf
7
8