changeset 3:879d0f13a737 draft

Deleted selected files
author ulfschaefer
date Fri, 11 Dec 2015 10:07:34 -0500
parents b05ed83dc773
children 5dfc843979c2
files filter_vcf.sh
diffstat 1 files changed, 0 insertions(+), 14 deletions(-) [+]
line wrap: on
line diff
--- a/filter_vcf.sh	Fri Dec 11 09:41:41 2015 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
-#!/bin/bash
-
-OUTPUT=$1
-shift
-VCF=$1
-shift
-FILTERS=$@
-
-FILTERS=$(echo -n $FILTERS | sed 's/ /,/g')
-
-CMD="filter_vcf.py --vcf $VCF --filters $FILTERS --output $OUTPUT"
-
-echo "CMD: "$CMD
-eval $CMD