1c02d7c115b216d3bcb70d760c35d727b01739e3
chmalee
  Mon Jul 15 14:57:57 2019 -0700
Use /usr/bin/env so api client works on mac

diff --git src/utils/ucscApiClient src/utils/ucscApiClient
index ae28d80..9109ba5 100755
--- src/utils/ucscApiClient
+++ src/utils/ucscApiClient
@@ -1,16 +1,16 @@
-#!/bin/env python
+#!/usr/bin/env python
 
 """
 This code is inspired by the Ensembl python client
 https://github.com/Ensembl/ensembl-rest/wiki/Example-Python-Client
 """
 import argparse
 import json
 import sys
 from collections import OrderedDict
 
 # support python2 and 3
 try:
     from urllib.parse import urlparse, urlencode
     from urllib.request import urlopen, Request
     from urllib.error import HTTPError