guppy_basecaller --disable_pings --compress_fastq -c dna_r9.4.1_450bps_fast.cfg -i flongle_fast5_pass/ -s flongle_test2 -x 'auto' --recursive
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
#!/usr/bin/env python | |
from py2neo import neo4j | |
import sys | |
import logging | |
import argparse | |
from inspect import getmembers | |
from pprint import pprint | |
parser = argparse.ArgumentParser() | |
parser.add_argument("acc1", |
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
#!/usr/bin/python | |
import os, sys, time, uuid | |
# get self code | |
self_content = file(sys.argv[0]).read() | |
while True: | |
# wait 10 seconds | |
time.sleep(10) |