Created
February 4, 2015 19:01
-
-
Save max-l/56179eaa401082d53ebf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export HOME_DIR="/home/adminphen/tools/snpEff" | |
export DB="/home/adminphen/tools/dbsnp137.hg19.vcf" | |
export JVM_ARGS="-Djava.io.tmpdir=/tmp -XX:ParallelGCThreads=2 -Xmx8G" | |
cd $HOME_DIR | |
java $JVM_ARGS -jar $HOME_DIR/SnpSift.jar \ | |
annotate $DB $1 \ | |
> "$1.step1" | |
java $JVM_ARGS -jar $HOME_DIR/snpEff.jar \ | |
eff -c $HOME_DIR/snpEff.config -o vcf -i vcf -csvStats -stats ? ? \ | |
> "$1.step2" | |
java $JVM_ARGS -jar $HOME_DIR/SnpSift.jar \ | |
dbnsfp -v ? ? \ | |
> "$1.step3" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment