Skip to content

Instantly share code, notes, and snippets.

View mvelinder's full-sized avatar
🤘

Matt Velinder mvelinder

🤘
View GitHub Profile
@mvelinder
mvelinder / notatr.sh
Created October 27, 2020 17:17
bcftools csq and vcfanno to avoid vep
set -oexu pipefail
VCF=$1
bcftools csq \
-f /scratch/ucgd/lustre/work/u0691312/reference/ucgd_reference/GRCh38/human_g1k_v38_decoy_phix.fasta \
-g /scratch/ucgd/lustre/work/u0691312/reference/Homo_sapiens.GRCh38.100.gff3.gz \
$VCF \
| vcfanno -p 12 \
/scratch/ucgd/lustre/work/u0691312/reference/vcfanno_revel.toml \
@mvelinder
mvelinder / amelie.py
Created April 23, 2020 19:09
AMELIE API query from command line inputs
#! /usr/bin/env python2
# $1 gene list
# $2 HPO term list
import urllib3
import requests
import json
import sys
import os