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
class dotdict(dict): | |
'''A dict with dot access and autocompletion. | |
The idea and most of the code was taken from | |
http://stackoverflow.com/a/23689767, | |
http://code.activestate.com/recipes/52308-the-simple-but-handy-collector-of-a-bunch-of-named/ | |
http://stackoverflow.com/questions/2390827/how-to-properly-subclass-dict-and-override-get-set | |
''' | |
def __init__(self,*a,**kw): |
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
def gridspec_inches( | |
wcols, | |
hrows, | |
fig_kwargs={}): | |
import matplotlib as mpl | |
import matplotlib.pyplot as plt | |
fig_height_inches = ( | |
sum(hrows) |
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
import bpy | |
import mathutils | |
import numpy as np | |
def add_curve( | |
coords, | |
thickness = 0.2, | |
name='polymer', | |
resolution=4, | |
kind='BEZIER'): |
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
#!/bin/sh | |
if ! type "efetch" > /dev/null; then | |
print "Please install E-utilitie." | |
fi | |
GSM_LIST=$1 | |
GSMs=`cat $GSM_LIST|cut -f1` | |
#echo $SRRs | |
! type "foo" > /dev/null 2>&1; | |
for GSM in $GSMs; do |
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
import subprocess | |
import shutil | |
import argparse | |
import pathlib | |
parser = argparse.ArgumentParser(description='Download all SRAs from a GSM.') | |
parser.add_argument('GSMs', metavar='GSMs', type=str, nargs='+', | |
help='GSMs to download, can be more than one') | |
parser.add_argument('-g', '--guess-title', | |
help='If specified, guess the title of each GSMs and use it to store SRRs', |
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
chrom | start | end | |
---|---|---|---|
chrVII | 496916 | 497034 | |
chrVI | 148509 | 148626 | |
chrV | 151987 | 152104 | |
chrIV | 449712 | 449822 | |
chrIII | 114385 | 114501 | |
chrII | 238206 | 238322 | |
chrI | 151465 | 151582 | |
chrIX | 355629 | 355745 | |
chrVIII | 105591 | 105708 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
OlderNewer