comparison snpEff-pipe.sh @ 0:abde5b0387c8 draft

Uploaded
author dereeper
date Mon, 23 Mar 2015 05:17:19 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:abde5b0387c8
1 #!/bin/bash
2 vcf=$1
3 genome=$2
4 gff=$3
5 output=$4
6 html=$5
7 log=$6
8
9 directory=`dirname $0`
10
11 /usr/bin/perl $directory/SnpEff.pl -i $vcf -f $genome -g $gff -o $output -h $html >>$log 2>&1
12
13
14