Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
git clone https://github.com/hail-is/hail | |
cd hail | |
./gradlew installDist | |
./gradlew shadowJar | |
function hail() { | |
num_executors=$1 | |
shift | |
spark2-submit \ | |
--master yarn-client \ | |
--driver-memory 3G \ |
This file contains 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
# Raw data is here: ftp://ftp.broadinstitute.org/pub/ExAC_release/release0.3.1/ | |
# In particular: ftp://ftp.broadinstitute.org/pub/ExAC_release/release0.3.1/ExAC.r0.3.1.sites.vep.vcf.gz | |
# Use Hail to annotate: https://github.com/broadinstitute/hail/blob/master/docs/ImportAnnotations.md#AnnoVar | |
# Query from Impala. This ties in to the Omics use case, which is to enable access from multiple Hadoop tools. | |
# Build Hail | |
gradle clean shadowJar |