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
#!/usr/bin/env python3 | |
import argparse | |
import os | |
import subprocess | |
import sys | |
from shutil import which | |
import tempfile | |
from collections import defaultdict | |
from Bio import SeqIO |
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
#!/usr/bin/env python3 | |
''' | |
Use py2neo to create a Neo4J Wine database. | |
Data is stored in YAML files like this: | |
region: Cotes du Rhone | |
country: France | |
comment: Mostly Grenache. Thin, sour, unpleasant. | |
winemaker: Joseph Sabon | |
year: 2006 |
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
#!/usr/bin/env python3 | |
import requests | |
import argparse | |
import re | |
from collections import defaultdict | |
''' | |
Query the v2 NIH Reporter API |