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
| import os, sys | |
| # source | |
| # http://stackoverflow.com/questions/298314/find-files-in-git-repo-over-x-megabytes-that-dont-exist-in-head | |
| def getOutput(cmd): | |
| return os.popen(cmd).read() | |
| if (len(sys.argv) <> 2): | |
| print "usage: %s size_in_bytes" % sys.argv[0] |
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 | |
| """ | |
| Usage: ./run_sim.py <pdb> <cuda_device> <output_name> | |
| """ | |
| from __future__ import print_function | |
| from simtk.openmm import app | |
| import simtk.openmm as mm | |
| from simtk import unit |
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
| import tables | |
| import numpy as np | |
| class CheetahCXI(object): | |
| """ | |
| A parser for the CXIdb files generated by cheetah at LCLS. | |
| """ | |
| def __init__(self, filename): |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 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
| import h5py | |
| import numpy as np | |
| from scipy import fftpack | |
| import matplotlib.pyplot as plt | |
| from odin import xray | |
| def PCA(A): |
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 bash | |
| """ | |
| Generates a selenomethionine (MSE) or telluromethionine (MTE) mutant. | |
| usage: ./heavy_mutant <pdb> | |
| """ | |
| import sys |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 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 | |
| import csv | |
| import numpy as np | |
| from openeye.oechem import * | |
| from openeye.oemolprop import * | |
| from openeye.oespicoli import * | |
| from openeye.oeomega import * |